Version Description
Download this release
Release Info
Developer | calvinyeh |
Plugin | All-in-One Event Calendar |
Version | 2.5.19 |
Comparing to | |
See all releases |
Code changes from version 2.5.18 to 2.5.19
- all-in-one-event-calendar.php +1 -1
- app/config/constants.php +1 -1
- app/model/api/api-abstract.php +36 -7
- app/view/admin/add-new-event.php +1 -1
- app/view/calendar/view/agenda.php +1 -0
- app/view/calendar/view/month.php +1 -0
- app/view/calendar/view/oneday.php +1 -0
- app/view/calendar/view/week.php +1 -0
- app/view/event/single.php +4 -6
- language/all-in-one-event-calendar-ar.po +28 -25
- language/all-in-one-event-calendar-bg_BG.po +28 -25
- language/all-in-one-event-calendar-ca.po +28 -25
- language/all-in-one-event-calendar-cs_CZ.mo +0 -0
- language/all-in-one-event-calendar-cs_CZ.po +35 -32
- language/all-in-one-event-calendar-da_DK.po +28 -25
- language/all-in-one-event-calendar-de_CH.po +28 -25
- language/all-in-one-event-calendar-de_DE.po +28 -25
- language/all-in-one-event-calendar-el.po +28 -25
- language/all-in-one-event-calendar-en_AU.po +28 -25
- language/all-in-one-event-calendar-en_GB.po +28 -25
- language/all-in-one-event-calendar-es_ES.po +28 -25
- language/all-in-one-event-calendar-et.po +28 -25
- language/all-in-one-event-calendar-eu.po +28 -25
- language/all-in-one-event-calendar-fi.po +28 -25
- language/all-in-one-event-calendar-fr_FR.po +28 -25
- language/all-in-one-event-calendar-gl_ES.po +28 -25
- language/all-in-one-event-calendar-he_IL.po +28 -25
- language/all-in-one-event-calendar-hi.po +28 -25
- language/all-in-one-event-calendar-hr.po +28 -25
- language/all-in-one-event-calendar-hu_HU.po +28 -25
- language/all-in-one-event-calendar-id_ID.po +28 -25
- language/all-in-one-event-calendar-is.po +28 -25
- language/all-in-one-event-calendar-it_IT.po +28 -25
- language/all-in-one-event-calendar-ja.po +28 -25
- language/all-in-one-event-calendar-lv.po +28 -25
- language/all-in-one-event-calendar-nb_NO.po +28 -25
- language/all-in-one-event-calendar-nl_NL.po +28 -25
- language/all-in-one-event-calendar-pl_PL.po +28 -25
- language/all-in-one-event-calendar-pt_BR.po +28 -25
- language/all-in-one-event-calendar-pt_PT.po +28 -25
- language/all-in-one-event-calendar-ro_RO.po +28 -25
- language/all-in-one-event-calendar-ru_RU.po +28 -25
- language/all-in-one-event-calendar-sk_SK.po +28 -25
- language/all-in-one-event-calendar-sl_SI.po +28 -25
- language/all-in-one-event-calendar-sv_SE.po +28 -25
- language/all-in-one-event-calendar-th.po +28 -25
- language/all-in-one-event-calendar-tr_TR.po +28 -25
- language/all-in-one-event-calendar-uk.po +28 -25
- language/all-in-one-event-calendar-zh_CN.po +28 -25
- language/all-in-one-event-calendar.mo +0 -0
- language/all-in-one-event-calendar.po +33 -31
- language/all-in-one-event-calendar.pot +28 -25
- lib/bootstrap/loader-map.php +0 -420
- lib/iCal/helper/SG_iCal_Parser.php +2 -3
- lib/notification/admin.php +2 -2
- public/admin/box_inline_warning.php +1 -0
- public/admin/on_the_select.php +1 -0
- public/admin/plugins/ics/import_feed.php +29 -3
- public/admin/subscription_button.php +1 -0
- public/themes-ai1ec/gamma/css/ai1ec_parsed_css.css +1 -1
- public/themes-ai1ec/gamma/index.php +1 -0
- public/themes-ai1ec/gamma/less.sha1.map.php +0 -10
- public/themes-ai1ec/plana/css/ai1ec_parsed_css.css +0 -1
all-in-one-event-calendar.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: Time.ly Network Inc.
|
7 |
* Author URI: http://time.ly/
|
8 |
-
* Version: 2.5.
|
9 |
* Text Domain: all-in-one-event-calendar
|
10 |
* Domain Path: /language
|
11 |
*/
|
5 |
* Description: A calendar system with month, week, day, agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
* Author: Time.ly Network Inc.
|
7 |
* Author URI: http://time.ly/
|
8 |
+
* Version: 2.5.19
|
9 |
* Text Domain: all-in-one-event-calendar
|
10 |
* Domain Path: /language
|
11 |
*/
|
app/config/constants.php
CHANGED
@@ -50,7 +50,7 @@ function ai1ec_initiate_constants( $ai1ec_base_dir, $ai1ec_base_url ) {
|
|
50 |
// = Plugin Version =
|
51 |
// ==================
|
52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
53 |
-
define( 'AI1EC_VERSION', '2.5.
|
54 |
}
|
55 |
|
56 |
// ================
|
50 |
// = Plugin Version =
|
51 |
// ==================
|
52 |
if ( ! defined( 'AI1EC_VERSION' ) ) {
|
53 |
+
define( 'AI1EC_VERSION', '2.5.19' );
|
54 |
}
|
55 |
|
56 |
// ================
|
app/model/api/api-abstract.php
CHANGED
@@ -385,8 +385,8 @@ abstract class Ai1ec_Api_Abstract extends Ai1ec_App {
|
|
385 |
$subscriptions = array();
|
386 |
}
|
387 |
|
388 |
-
// Save for
|
389 |
-
$minutes =
|
390 |
set_transient( 'ai1ec_api_subscriptions', $subscriptions, $minutes * 60 );
|
391 |
}
|
392 |
|
@@ -408,19 +408,48 @@ abstract class Ai1ec_Api_Abstract extends Ai1ec_App {
|
|
408 |
public function subscription_has_reached_limit( $feature ) {
|
409 |
$has_reached_limit = true;
|
410 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
$subscriptions = $this->get_subscriptions();
|
412 |
|
413 |
if ( array_key_exists( $feature, $subscriptions ) ) {
|
414 |
$quantity = (array) $subscriptions[$feature];
|
|
|
415 |
$provided = $quantity['provided'];
|
416 |
-
|
417 |
|
418 |
-
|
419 |
-
|
420 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
}
|
422 |
|
423 |
-
return $
|
424 |
}
|
425 |
|
426 |
/**
|
385 |
$subscriptions = array();
|
386 |
}
|
387 |
|
388 |
+
// Save for 5 minutes
|
389 |
+
$minutes = 5;
|
390 |
set_transient( 'ai1ec_api_subscriptions', $subscriptions, $minutes * 60 );
|
391 |
}
|
392 |
|
408 |
public function subscription_has_reached_limit( $feature ) {
|
409 |
$has_reached_limit = true;
|
410 |
|
411 |
+
$provided = $this->subscription_get_quantity_limit( $feature );
|
412 |
+
$used = $this->subscription_get_used_quantity( $feature );
|
413 |
+
|
414 |
+
if ( $provided - $used > 0 ) {
|
415 |
+
$has_reached_limit = false;
|
416 |
+
}
|
417 |
+
|
418 |
+
return $has_reached_limit;
|
419 |
+
}
|
420 |
+
|
421 |
+
/**
|
422 |
+
* Get feature quantity limit
|
423 |
+
*/
|
424 |
+
public function subscription_get_quantity_limit( $feature ) {
|
425 |
+
$provided = 0;
|
426 |
+
|
427 |
$subscriptions = $this->get_subscriptions();
|
428 |
|
429 |
if ( array_key_exists( $feature, $subscriptions ) ) {
|
430 |
$quantity = (array) $subscriptions[$feature];
|
431 |
+
|
432 |
$provided = $quantity['provided'];
|
433 |
+
}
|
434 |
|
435 |
+
return $provided;
|
436 |
+
}
|
437 |
+
|
438 |
+
/**
|
439 |
+
* Get feature used quantity
|
440 |
+
*/
|
441 |
+
public function subscription_get_used_quantity( $feature ) {
|
442 |
+
$used = 0;
|
443 |
+
|
444 |
+
$subscriptions = $this->get_subscriptions();
|
445 |
+
|
446 |
+
if ( array_key_exists( $feature, $subscriptions ) ) {
|
447 |
+
$quantity = (array) $subscriptions[$feature];
|
448 |
+
|
449 |
+
$used = $quantity['used'];
|
450 |
}
|
451 |
|
452 |
+
return $used;
|
453 |
}
|
454 |
|
455 |
/**
|
app/view/admin/add-new-event.php
CHANGED
@@ -422,7 +422,7 @@ class Ai1ec_View_Add_New_Event extends Ai1ec_Base {
|
|
422 |
}
|
423 |
$submitted_by .= sprintf( '<a href="mailto:%s" target="_top">%s</a>', $submitter_info['email'], $submitter_info['email'] ) ;
|
424 |
}
|
425 |
-
$submitter_html = sprintf( Ai1ec_I18n::__( '<span class="ai1ec-info-text">The event was submitted by %s.</span>' ),
|
426 |
$submitted_by
|
427 |
);
|
428 |
}
|
422 |
}
|
423 |
$submitted_by .= sprintf( '<a href="mailto:%s" target="_top">%s</a>', $submitter_info['email'], $submitter_info['email'] ) ;
|
424 |
}
|
425 |
+
$submitter_html = sprintf( Ai1ec_I18n::__( '<span class="ai1ec-info-text">The event was submitted by %s.</span>' ),
|
426 |
$submitted_by
|
427 |
);
|
428 |
}
|
app/view/calendar/view/agenda.php
CHANGED
@@ -328,6 +328,7 @@ class Ai1ec_Calendar_View_Agenda extends Ai1ec_Calendar_View_Abstract {
|
|
328 |
);
|
329 |
if ( $timely_tickets ) {
|
330 |
$event_props['ticket_url'] = $timely_tickets;
|
|
|
331 |
}
|
332 |
}
|
333 |
if (
|
328 |
);
|
329 |
if ( $timely_tickets ) {
|
330 |
$event_props['ticket_url'] = $timely_tickets;
|
331 |
+
$event->set( 'ticket_url', $event_props['ticket_url'] );
|
332 |
}
|
333 |
}
|
334 |
if (
|
app/view/calendar/view/month.php
CHANGED
@@ -400,6 +400,7 @@ class Ai1ec_Calendar_View_Month extends Ai1ec_Calendar_View_Abstract {
|
|
400 |
);
|
401 |
if ( $timely_tickets ) {
|
402 |
$event_data['ticket_url'] = $timely_tickets;
|
|
|
403 |
}
|
404 |
}
|
405 |
if (
|
400 |
);
|
401 |
if ( $timely_tickets ) {
|
402 |
$event_data['ticket_url'] = $timely_tickets;
|
403 |
+
$evt->set( 'ticket_url', $event_data['ticket_url'] );
|
404 |
}
|
405 |
}
|
406 |
if (
|
app/view/calendar/view/oneday.php
CHANGED
@@ -341,6 +341,7 @@ class Ai1ec_Calendar_View_Oneday extends Ai1ec_Calendar_View_Abstract {
|
|
341 |
);
|
342 |
if ( $timely_tickets ) {
|
343 |
$event['ticket_url'] = $timely_tickets;
|
|
|
344 |
}
|
345 |
}
|
346 |
if (
|
341 |
);
|
342 |
if ( $timely_tickets ) {
|
343 |
$event['ticket_url'] = $timely_tickets;
|
344 |
+
$evt->set( 'ticket_url', $event['ticket_url'] );
|
345 |
}
|
346 |
}
|
347 |
if (
|
app/view/calendar/view/week.php
CHANGED
@@ -382,6 +382,7 @@ class Ai1ec_Calendar_View_Week extends Ai1ec_Calendar_View_Abstract {
|
|
382 |
);
|
383 |
if ( $timely_tickets ) {
|
384 |
$event['ticket_url'] = $timely_tickets;
|
|
|
385 |
}
|
386 |
}
|
387 |
if (
|
382 |
);
|
383 |
if ( $timely_tickets ) {
|
384 |
$event['ticket_url'] = $timely_tickets;
|
385 |
+
$evt->set( 'ticket_url', $event['ticket_url'] );
|
386 |
}
|
387 |
}
|
388 |
if (
|
app/view/event/single.php
CHANGED
@@ -162,11 +162,9 @@ class Ai1ec_View_Event_Single extends Ai1ec_Base {
|
|
162 |
$aco = $this->_registry->get( 'acl.aco' );
|
163 |
if ( ! $aco->is_our_post_type() ) return;
|
164 |
|
165 |
-
// Get Event and process
|
166 |
-
$instance_id
|
167 |
-
|
168 |
-
$instance_id = $_GET[ 'instance_id' ];
|
169 |
-
}
|
170 |
if ( !is_null( $instance_id ) ) {
|
171 |
$instance_id = preg_replace( '/\D/', '', $instance_id );
|
172 |
}
|
@@ -181,7 +179,7 @@ class Ai1ec_View_Event_Single extends Ai1ec_Base {
|
|
181 |
$desc = substr( $desc, 0, 300 );
|
182 |
|
183 |
$og = array(
|
184 |
-
'url' => home_url( add_query_arg( null, null ) ),
|
185 |
'title' => htmlspecialchars(
|
186 |
$event->get( 'post' )->post_title .
|
187 |
' (' . substr( $event->get( 'start' ) , 0, 10 ) . ')'
|
162 |
$aco = $this->_registry->get( 'acl.aco' );
|
163 |
if ( ! $aco->is_our_post_type() ) return;
|
164 |
|
165 |
+
// Get Event and process description
|
166 |
+
$instance_id = ( isset( $_GET[ 'instance_id' ] ) ) ? $_GET[ 'instance_id' ] : null;
|
167 |
+
|
|
|
|
|
168 |
if ( !is_null( $instance_id ) ) {
|
169 |
$instance_id = preg_replace( '/\D/', '', $instance_id );
|
170 |
}
|
179 |
$desc = substr( $desc, 0, 300 );
|
180 |
|
181 |
$og = array(
|
182 |
+
'url' => home_url( esc_url( add_query_arg( null, null ) ) ),
|
183 |
'title' => htmlspecialchars(
|
184 |
$event->get( 'post' )->post_title .
|
185 |
' (' . substr( $event->get( 'start' ) , 0, 10 ) . ')'
|
language/all-in-one-event-calendar-ar.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-bg_BG.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Премахни"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Успешно импортнати събития:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Разрешени са коментари на импортнати събития"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Покажи карта на импортнантите събития"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Импортване на всички етикети/категории предоставени от абонамента, в допълнение на избраните горе"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Покажи карта"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Запази оригиналните категории и етикети на събитията"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Приключва на"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Приключва след"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Моля изчакайте…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Приложи"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Отмени"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Купи билети"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Редактирай това повторение (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Това събитие е заимствано от друг сайт <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Виж оригинала"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Успешно импортнати събития:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Разрешени са коментари на импортнати събития"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Покажи карта на импортнантите събития"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Импортване на всички етикети/категории предоставени от абонамента, в допълнение на избраните горе"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Запази оригиналните категории и етикети на събитията"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Приключва след"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Моля изчакайте…"
|
1203 |
|
1206 |
msgstr "Приложи"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Отмени"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Редактирай това повторение (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Това събитие е заимствано от друг сайт <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Виж оригинала"
|
2149 |
|
language/all-in-one-event-calendar-ca.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Espereu si us plau…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Cancel·lar"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Aquest esdeveniment és una còpia obtinguda del <a href=\"%s\" title=\"canal d'iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> canal del calendari</a> d'un altre lloc web."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Espereu si us plau…"
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Cancel·lar"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Aquest esdeveniment és una còpia obtinguda del <a href=\"%s\" title=\"canal d'iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> canal del calendari</a> d'un altre lloc web."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-cs_CZ.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar-cs_CZ.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the 2.3 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2017-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -10,25 +10,35 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
-
msgstr ""
|
16 |
|
17 |
#: app/view/admin/settings.php:211
|
18 |
msgid "Tourism"
|
19 |
-
msgstr ""
|
20 |
|
21 |
#: app/view/admin/settings.php:212
|
22 |
msgid "Media"
|
23 |
-
msgstr ""
|
24 |
|
25 |
#: app/view/admin/settings.php:213
|
26 |
msgid "Community Hubs"
|
27 |
-
msgstr ""
|
28 |
|
29 |
#: app/view/admin/settings.php:214
|
30 |
msgid "Education"
|
31 |
-
msgstr ""
|
32 |
|
33 |
#: app/view/admin/settings.php:215
|
34 |
msgid "Venue/Business"
|
@@ -48,13 +58,13 @@ msgstr ""
|
|
48 |
|
49 |
#: app/view/admin/settings.php:219
|
50 |
msgid "Other"
|
51 |
-
msgstr ""
|
52 |
|
53 |
#: app/view/admin/add-new-event.php:312
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -85,7 +95,7 @@ msgstr ""
|
|
85 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tdata-original-title=\"K zobrazení mapy může Google vyžadovat API key\">\n"
|
86 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
87 |
|
88 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
89 |
msgid "Convert event's date/time to calendar's timezone"
|
90 |
msgstr "Převést čas a datum události do časového pásma kalendáře"
|
91 |
|
@@ -109,7 +119,7 @@ msgstr "Aktualizovat daň & nastavení faktury"
|
|
109 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
110 |
msgstr "Přečetl jsem a akceptuji <a href=\"https://time.ly/tos\" target=\"_blank\">smluvní podmínky</a>."
|
111 |
|
112 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
113 |
msgid "Feed URL:"
|
114 |
msgstr "URL feedu:"
|
115 |
|
@@ -123,13 +133,13 @@ msgid "Removing"
|
|
123 |
msgstr "Odstraňuji"
|
124 |
|
125 |
#: public/admin/plugins/ics/display_feeds.php:6
|
126 |
-
#: public/admin/plugins/ics/import_feed.php:
|
127 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
128 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
129 |
msgstr "Pro správu svých feedů se prosím přihlašte do sítě <b>Timely Network.</b> "
|
130 |
|
131 |
#: public/admin/plugins/ics/display_feeds.php:10
|
132 |
-
#: public/admin/plugins/ics/import_feed.php:
|
133 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
134 |
msgid "Sign In to Timely Network"
|
135 |
msgstr "Přihlásit k Timely Network"
|
@@ -152,25 +162,18 @@ msgstr "Moje importované feedy:"
|
|
152 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
153 |
msgstr "Mé importované Události (pokud chcete vidět jednotlivě naimportované události, klikněte na feed):"
|
154 |
|
155 |
-
#: public/admin/plugins/ics/import_feed.php:
|
156 |
msgid ""
|
157 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
158 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
159 |
"\t\tsupports \"Import Feeds\"."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: public/admin/plugins/ics/import_feed.php:
|
163 |
-
msgid ""
|
164 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
165 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
166 |
-
"\t\tsupports more feeds."
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
170 |
msgid "Import feed"
|
171 |
msgstr "Importovat feed"
|
172 |
|
173 |
-
#: public/admin/plugins/ics/import_feed.php:
|
174 |
msgid "Update feed"
|
175 |
msgstr "Aktualizovat feed"
|
176 |
|
@@ -608,7 +611,7 @@ msgstr "Klikněte zde pro technické detaily"
|
|
608 |
msgid "API URL: %s.<br/>Detail: %s"
|
609 |
msgstr "API URL: %s.<br/>Detail: %s"
|
610 |
|
611 |
-
#: app/model/api/api-abstract.php:
|
612 |
msgid "Error decoding the response"
|
613 |
msgstr "Chyba při dekódování odpovědi"
|
614 |
|
@@ -946,15 +949,15 @@ msgstr "Odstranit"
|
|
946 |
msgid "Successfully imported events:"
|
947 |
msgstr "Úspěšně naimportované události:"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Allow comments on imported events"
|
951 |
msgstr "Povolit komentáře u importovaných událostí"
|
952 |
|
953 |
-
#: public/admin/plugins/ics/import_feed.php:
|
954 |
msgid "Show map on imported events"
|
955 |
msgstr "Zobrazit mapu v importovaných událostech"
|
956 |
|
957 |
-
#: public/admin/plugins/ics/import_feed.php:
|
958 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
959 |
msgstr "Importovat jakékoli štítky/kategorie z odebíraného kanálu, kromě výše vybraných"
|
960 |
|
@@ -1066,7 +1069,7 @@ msgstr "Zobrazit mapu"
|
|
1066 |
msgid "Keep original events categories and tags"
|
1067 |
msgstr "Zachovat původní kategorie událostí a štítky"
|
1068 |
|
1069 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1070 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1071 |
msgstr "Při obnovení zachovat dřívější události, které v importu již chybí"
|
1072 |
|
@@ -1202,7 +1205,7 @@ msgstr "Konec"
|
|
1202 |
msgid "Ending after"
|
1203 |
msgstr "Končí před"
|
1204 |
|
1205 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1206 |
msgid "Please wait…"
|
1207 |
msgstr "Prosím čekejte…"
|
1208 |
|
@@ -1211,7 +1214,7 @@ msgid "Apply"
|
|
1211 |
msgstr "Použít"
|
1212 |
|
1213 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1214 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1215 |
msgid "Cancel"
|
1216 |
msgstr "Zrušit"
|
1217 |
|
@@ -2144,11 +2147,11 @@ msgstr "Koupit vstupenky"
|
|
2144 |
msgid "Edit this occurrence (%s)"
|
2145 |
msgstr "Upravit tento výskyt (%s)"
|
2146 |
|
2147 |
-
#: app/view/event/single.php:
|
2148 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2149 |
msgstr "Tento příspěvek byl zkopírován z jiného webu <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2150 |
|
2151 |
-
#: app/view/event/single.php:
|
2152 |
msgid "View original"
|
2153 |
msgstr "Zobrazit originál"
|
2154 |
|
2 |
# This file is distributed under the same license as the 2.3 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2017-04-17 20:46:27+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr "neomezené"
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
+
msgstr "Typ kalendáře:"
|
26 |
|
27 |
#: app/view/admin/settings.php:211
|
28 |
msgid "Tourism"
|
29 |
+
msgstr "Turistika"
|
30 |
|
31 |
#: app/view/admin/settings.php:212
|
32 |
msgid "Media"
|
33 |
+
msgstr "Média"
|
34 |
|
35 |
#: app/view/admin/settings.php:213
|
36 |
msgid "Community Hubs"
|
37 |
+
msgstr "Komunitní huby"
|
38 |
|
39 |
#: app/view/admin/settings.php:214
|
40 |
msgid "Education"
|
41 |
+
msgstr "Vzdělání"
|
42 |
|
43 |
#: app/view/admin/settings.php:215
|
44 |
msgid "Venue/Business"
|
58 |
|
59 |
#: app/view/admin/settings.php:219
|
60 |
msgid "Other"
|
61 |
+
msgstr "Ostatní"
|
62 |
|
63 |
#: app/view/admin/add-new-event.php:312
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
95 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tdata-original-title=\"K zobrazení mapy může Google vyžadovat API key\">\n"
|
96 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
97 |
|
98 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
99 |
msgid "Convert event's date/time to calendar's timezone"
|
100 |
msgstr "Převést čas a datum události do časového pásma kalendáře"
|
101 |
|
119 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
120 |
msgstr "Přečetl jsem a akceptuji <a href=\"https://time.ly/tos\" target=\"_blank\">smluvní podmínky</a>."
|
121 |
|
122 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
123 |
msgid "Feed URL:"
|
124 |
msgstr "URL feedu:"
|
125 |
|
133 |
msgstr "Odstraňuji"
|
134 |
|
135 |
#: public/admin/plugins/ics/display_feeds.php:6
|
136 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
137 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
138 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
139 |
msgstr "Pro správu svých feedů se prosím přihlašte do sítě <b>Timely Network.</b> "
|
140 |
|
141 |
#: public/admin/plugins/ics/display_feeds.php:10
|
142 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
143 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
144 |
msgid "Sign In to Timely Network"
|
145 |
msgstr "Přihlásit k Timely Network"
|
162 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
163 |
msgstr "Mé importované Události (pokud chcete vidět jednotlivě naimportované události, klikněte na feed):"
|
164 |
|
165 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
166 |
msgid ""
|
167 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
168 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
169 |
"\t\tsupports \"Import Feeds\"."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
msgid "Import feed"
|
174 |
msgstr "Importovat feed"
|
175 |
|
176 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
177 |
msgid "Update feed"
|
178 |
msgstr "Aktualizovat feed"
|
179 |
|
611 |
msgid "API URL: %s.<br/>Detail: %s"
|
612 |
msgstr "API URL: %s.<br/>Detail: %s"
|
613 |
|
614 |
+
#: app/model/api/api-abstract.php:492
|
615 |
msgid "Error decoding the response"
|
616 |
msgstr "Chyba při dekódování odpovědi"
|
617 |
|
949 |
msgid "Successfully imported events:"
|
950 |
msgstr "Úspěšně naimportované události:"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
953 |
msgid "Allow comments on imported events"
|
954 |
msgstr "Povolit komentáře u importovaných událostí"
|
955 |
|
956 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
957 |
msgid "Show map on imported events"
|
958 |
msgstr "Zobrazit mapu v importovaných událostech"
|
959 |
|
960 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
961 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
962 |
msgstr "Importovat jakékoli štítky/kategorie z odebíraného kanálu, kromě výše vybraných"
|
963 |
|
1069 |
msgid "Keep original events categories and tags"
|
1070 |
msgstr "Zachovat původní kategorie událostí a štítky"
|
1071 |
|
1072 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1073 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1074 |
msgstr "Při obnovení zachovat dřívější události, které v importu již chybí"
|
1075 |
|
1205 |
msgid "Ending after"
|
1206 |
msgstr "Končí před"
|
1207 |
|
1208 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1209 |
msgid "Please wait…"
|
1210 |
msgstr "Prosím čekejte…"
|
1211 |
|
1214 |
msgstr "Použít"
|
1215 |
|
1216 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1217 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1218 |
msgid "Cancel"
|
1219 |
msgstr "Zrušit"
|
1220 |
|
2147 |
msgid "Edit this occurrence (%s)"
|
2148 |
msgstr "Upravit tento výskyt (%s)"
|
2149 |
|
2150 |
+
#: app/view/event/single.php:208
|
2151 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2152 |
msgstr "Tento příspěvek byl zkopírován z jiného webu <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2153 |
|
2154 |
+
#: app/view/event/single.php:225
|
2155 |
msgid "View original"
|
2156 |
msgstr "Zobrazit originál"
|
2157 |
|
language/all-in-one-event-calendar-da_DK.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -85,7 +95,7 @@ msgstr ""
|
|
85 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tdata-original-title=\"Google kan kræve en API nøgle for at kunne vise kortet\">\n"
|
86 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tGoogle Maps API nøgle</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Hent en API nøgle</a>)"
|
87 |
|
88 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
89 |
msgid "Convert event's date/time to calendar's timezone"
|
90 |
msgstr "Indstil begivenhedens dato/tid til at følge kalenderens tidszone"
|
91 |
|
@@ -109,7 +119,7 @@ msgstr "Opdter moms & Fakturaindstillinger (påkrævet) "
|
|
109 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
110 |
msgstr "Jeg har læst og accepterer <a href=\"https://time.ly/tos\" target=\"_blank\">vilkår og betingelser</a>."
|
111 |
|
112 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
113 |
msgid "Feed URL:"
|
114 |
msgstr "Feed URL:"
|
115 |
|
@@ -123,13 +133,13 @@ msgid "Removing"
|
|
123 |
msgstr "Fjerner"
|
124 |
|
125 |
#: public/admin/plugins/ics/display_feeds.php:6
|
126 |
-
#: public/admin/plugins/ics/import_feed.php:
|
127 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
128 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
129 |
msgstr "Log venligst ind på <b>Timely Network</b> for at håndtere dine feeds."
|
130 |
|
131 |
#: public/admin/plugins/ics/display_feeds.php:10
|
132 |
-
#: public/admin/plugins/ics/import_feed.php:
|
133 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
134 |
msgid "Sign In to Timely Network"
|
135 |
msgstr "Log ind på Timely Network"
|
@@ -152,25 +162,18 @@ msgstr "Mine importerede feeds:"
|
|
152 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
153 |
msgstr "Mine importerede begivenheder (klik på hver enkelt feed for at se de importerede begivenheder):"
|
154 |
|
155 |
-
#: public/admin/plugins/ics/import_feed.php:
|
156 |
msgid ""
|
157 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
158 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
159 |
"\t\tsupports \"Import Feeds\"."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: public/admin/plugins/ics/import_feed.php:
|
163 |
-
msgid ""
|
164 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
165 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
166 |
-
"\t\tsupports more feeds."
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
170 |
msgid "Import feed"
|
171 |
msgstr "Importer feed"
|
172 |
|
173 |
-
#: public/admin/plugins/ics/import_feed.php:
|
174 |
msgid "Update feed"
|
175 |
msgstr "Opdater feed"
|
176 |
|
@@ -608,7 +611,7 @@ msgstr "Klik her for tekniske detaljer"
|
|
608 |
msgid "API URL: %s.<br/>Detail: %s"
|
609 |
msgstr "API URL: %s.<br/>Detail: %s"
|
610 |
|
611 |
-
#: app/model/api/api-abstract.php:
|
612 |
msgid "Error decoding the response"
|
613 |
msgstr "Fejl i afkodning af svaret"
|
614 |
|
@@ -946,15 +949,15 @@ msgstr "Fjern"
|
|
946 |
msgid "Successfully imported events:"
|
947 |
msgstr "Importerede begivenheder:"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Allow comments on imported events"
|
951 |
msgstr "Tillad kommentarer på importerede begivenheder"
|
952 |
|
953 |
-
#: public/admin/plugins/ics/import_feed.php:
|
954 |
msgid "Show map on imported events"
|
955 |
msgstr "Vis kort på importerede begivenheder"
|
956 |
|
957 |
-
#: public/admin/plugins/ics/import_feed.php:
|
958 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
959 |
msgstr "Importer hvilke som helst tags/kategorier leveret med feed udover dem som er valgt ovenover"
|
960 |
|
@@ -1066,7 +1069,7 @@ msgstr "Vis kort"
|
|
1066 |
msgid "Keep original events categories and tags"
|
1067 |
msgstr "Bevar originale begivenhedskategorier og -tags"
|
1068 |
|
1069 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1070 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1071 |
msgstr "Ved genindlæsning: Bevar tidligere importerede begivenheder som mangler i feed "
|
1072 |
|
@@ -1202,7 +1205,7 @@ msgstr "Slutter"
|
|
1202 |
msgid "Ending after"
|
1203 |
msgstr "Slutter efter"
|
1204 |
|
1205 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1206 |
msgid "Please wait…"
|
1207 |
msgstr "Vent venligst…"
|
1208 |
|
@@ -1211,7 +1214,7 @@ msgid "Apply"
|
|
1211 |
msgstr "Tilføj"
|
1212 |
|
1213 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1214 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1215 |
msgid "Cancel"
|
1216 |
msgstr "Fortryd"
|
1217 |
|
@@ -2144,11 +2147,11 @@ msgstr "Køb billetter"
|
|
2144 |
msgid "Edit this occurrence (%s)"
|
2145 |
msgstr "Rediger denne forekomst (%s)"
|
2146 |
|
2147 |
-
#: app/view/event/single.php:
|
2148 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2149 |
msgstr "Dette indlæg er oprettet som en kopi af en anden hjemmesides <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalenderfeed</a>."
|
2150 |
|
2151 |
-
#: app/view/event/single.php:
|
2152 |
msgid "View original"
|
2153 |
msgstr "Vis oprindelige"
|
2154 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
95 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tdata-original-title=\"Google kan kræve en API nøgle for at kunne vise kortet\">\n"
|
96 |
"→\t→\t→\t→\t→\t→\t→\t→\t→\tGoogle Maps API nøgle</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Hent en API nøgle</a>)"
|
97 |
|
98 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
99 |
msgid "Convert event's date/time to calendar's timezone"
|
100 |
msgstr "Indstil begivenhedens dato/tid til at følge kalenderens tidszone"
|
101 |
|
119 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
120 |
msgstr "Jeg har læst og accepterer <a href=\"https://time.ly/tos\" target=\"_blank\">vilkår og betingelser</a>."
|
121 |
|
122 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
123 |
msgid "Feed URL:"
|
124 |
msgstr "Feed URL:"
|
125 |
|
133 |
msgstr "Fjerner"
|
134 |
|
135 |
#: public/admin/plugins/ics/display_feeds.php:6
|
136 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
137 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
138 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
139 |
msgstr "Log venligst ind på <b>Timely Network</b> for at håndtere dine feeds."
|
140 |
|
141 |
#: public/admin/plugins/ics/display_feeds.php:10
|
142 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
143 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
144 |
msgid "Sign In to Timely Network"
|
145 |
msgstr "Log ind på Timely Network"
|
162 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
163 |
msgstr "Mine importerede begivenheder (klik på hver enkelt feed for at se de importerede begivenheder):"
|
164 |
|
165 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
166 |
msgid ""
|
167 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
168 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
169 |
"\t\tsupports \"Import Feeds\"."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
msgid "Import feed"
|
174 |
msgstr "Importer feed"
|
175 |
|
176 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
177 |
msgid "Update feed"
|
178 |
msgstr "Opdater feed"
|
179 |
|
611 |
msgid "API URL: %s.<br/>Detail: %s"
|
612 |
msgstr "API URL: %s.<br/>Detail: %s"
|
613 |
|
614 |
+
#: app/model/api/api-abstract.php:492
|
615 |
msgid "Error decoding the response"
|
616 |
msgstr "Fejl i afkodning af svaret"
|
617 |
|
949 |
msgid "Successfully imported events:"
|
950 |
msgstr "Importerede begivenheder:"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
953 |
msgid "Allow comments on imported events"
|
954 |
msgstr "Tillad kommentarer på importerede begivenheder"
|
955 |
|
956 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
957 |
msgid "Show map on imported events"
|
958 |
msgstr "Vis kort på importerede begivenheder"
|
959 |
|
960 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
961 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
962 |
msgstr "Importer hvilke som helst tags/kategorier leveret med feed udover dem som er valgt ovenover"
|
963 |
|
1069 |
msgid "Keep original events categories and tags"
|
1070 |
msgstr "Bevar originale begivenhedskategorier og -tags"
|
1071 |
|
1072 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1073 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1074 |
msgstr "Ved genindlæsning: Bevar tidligere importerede begivenheder som mangler i feed "
|
1075 |
|
1205 |
msgid "Ending after"
|
1206 |
msgstr "Slutter efter"
|
1207 |
|
1208 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1209 |
msgid "Please wait…"
|
1210 |
msgstr "Vent venligst…"
|
1211 |
|
1214 |
msgstr "Tilføj"
|
1215 |
|
1216 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1217 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1218 |
msgid "Cancel"
|
1219 |
msgstr "Fortryd"
|
1220 |
|
2147 |
msgid "Edit this occurrence (%s)"
|
2148 |
msgstr "Rediger denne forekomst (%s)"
|
2149 |
|
2150 |
+
#: app/view/event/single.php:208
|
2151 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2152 |
msgstr "Dette indlæg er oprettet som en kopi af en anden hjemmesides <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalenderfeed</a>."
|
2153 |
|
2154 |
+
#: app/view/event/single.php:225
|
2155 |
msgid "View original"
|
2156 |
msgstr "Vis oprindelige"
|
2157 |
|
language/all-in-one-event-calendar-de_CH.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Enfernen"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Erfolgreich hinzugefügte Veranstaltungen:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Kommentare bei importierten Veranstaltungen erlauben"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Karte bei importierten Veranstaltungen anzeigen "
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Alle Schlagwörter/Kategorien, die durch das Feed übermittelt werden, importieren - zusätzlich zu den oben ausgewählten"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Karte anzeigen"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehalten"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Behalte beim Aktualisieren die zuvor importierten Veranstaltungen, die im Feed fehlen"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Ende"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Endet nach"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Bitte warten…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Anwenden"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Abbrechen"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Tickets kaufen"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Dieses Ereignis bearbeiten (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Dieser Beitrag ist ein Replikat vom <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender-Feed</a> einer anderen Seite."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Original ansehen"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Erfolgreich hinzugefügte Veranstaltungen:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Kommentare bei importierten Veranstaltungen erlauben"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Karte bei importierten Veranstaltungen anzeigen "
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Alle Schlagwörter/Kategorien, die durch das Feed übermittelt werden, importieren - zusätzlich zu den oben ausgewählten"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehalten"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Behalte beim Aktualisieren die zuvor importierten Veranstaltungen, die im Feed fehlen"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Endet nach"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Bitte warten…"
|
1203 |
|
1206 |
msgstr "Anwenden"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Abbrechen"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Dieses Ereignis bearbeiten (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Dieser Beitrag ist ein Replikat vom <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender-Feed</a> einer anderen Seite."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Original ansehen"
|
2149 |
|
language/all-in-one-event-calendar-de_DE.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Enfernen"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Erfolgreich hinzugefügte Veranstaltungen:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Kommentare bei importierten Veranstaltungen erlauben"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Karte bei importierten Veranstaltungen anzeigen "
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Alle Schlagwörter/Kategorien, die durch das Feed übermittelt werden, importieren - zusätzlich zu den oben ausgewählten"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Karte anzeigen"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehalten"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Behalte beim Aktualisieren die zuvor importierten Veranstaltungen, die im Feed fehlen"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Ende"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Endet nach"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Bitte warten…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Anwenden"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Abbrechen"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Karten kaufen"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Dieses Ereignis bearbeiten (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Dieser Beitrag ist ein Replikat vom <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender-Feed</a> einer anderen Seite."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Original ansehen"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Erfolgreich hinzugefügte Veranstaltungen:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Kommentare bei importierten Veranstaltungen erlauben"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Karte bei importierten Veranstaltungen anzeigen "
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Alle Schlagwörter/Kategorien, die durch das Feed übermittelt werden, importieren - zusätzlich zu den oben ausgewählten"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Ursprüngliche Kategorien und Schlagwörter der Veranstaltungen beibehalten"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Behalte beim Aktualisieren die zuvor importierten Veranstaltungen, die im Feed fehlen"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Endet nach"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Bitte warten…"
|
1203 |
|
1206 |
msgstr "Anwenden"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Abbrechen"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Dieses Ereignis bearbeiten (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Dieser Beitrag ist ein Replikat vom <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Kalender-Feed</a> einer anderen Seite."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Original ansehen"
|
2149 |
|
language/all-in-one-event-calendar-el.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Κάταργηση"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Επιτυχής εισαγωγή εκδηλώσεων:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Αφήστε τα σχόλια επί των εισαγόμενων εκδηλώσεων"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Εμφάνιση χάρτη στις εισαγόμενες εκδηλώσεις"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Εισαγωγή ετικετών / κατηγοριών που προβλέπονται από την τροφοδοσία, εκτός από εκείνα που έχουν επιλεγεί παραπάνω"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Δείξε χάρτη"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Κρατήστε τις αρχικές κατηγορίες και ετικέτες των εκδηλώσεων"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Τέλος"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Τελειώνει μετά"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Παρακαλώ περιμένετε…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Εφάρμοσε"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Ακύρωση"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Αγορά Εισιτηρίων"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Επεξεργαστείτε το συμβάν (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Επιτυχής εισαγωγή εκδηλώσεων:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Αφήστε τα σχόλια επί των εισαγόμενων εκδηλώσεων"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Εμφάνιση χάρτη στις εισαγόμενες εκδηλώσεις"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Εισαγωγή ετικετών / κατηγοριών που προβλέπονται από την τροφοδοσία, εκτός από εκείνα που έχουν επιλεγεί παραπάνω"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Κρατήστε τις αρχικές κατηγορίες και ετικέτες των εκδηλώσεων"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Τελειώνει μετά"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Παρακαλώ περιμένετε…"
|
1203 |
|
1206 |
msgstr "Εφάρμοσε"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Ακύρωση"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Επεξεργαστείτε το συμβάν (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-en_AU.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Remove"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Successfully imported events:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Allow comments on imported events"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Show map on imported events"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Import any tags/categories provided by feed, in addition those selected above"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Show map"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Keep original events categories and tags"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "End"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Ending after"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Please wait…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Apply"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Cancel"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Buy Tickets"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Edit this occurrence (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "View original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Successfully imported events:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Allow comments on imported events"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Show map on imported events"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Import any tags/categories provided by feed, in addition those selected above"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Keep original events categories and tags"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Ending after"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Please wait…"
|
1203 |
|
1206 |
msgstr "Apply"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Cancel"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Edit this occurrence (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "View original"
|
2149 |
|
language/all-in-one-event-calendar-en_GB.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Remove"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Successfully imported events:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Allow comments on imported events"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Show map on imported events"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Import any tags/categories provided by feed, in addition those selected above"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Show map"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Keep original events categories and tags"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "End"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Ending after"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Please wait…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Apply"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Cancel"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Buy Tickets"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Edit this occurrence (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Successfully imported events:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Allow comments on imported events"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Show map on imported events"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Import any tags/categories provided by feed, in addition those selected above"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Keep original events categories and tags"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Ending after"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Please wait…"
|
1203 |
|
1206 |
msgstr "Apply"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Cancel"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Edit this occurrence (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-es_ES.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Eliminar"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Eventos importados correctamente:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Permitir comentarios en eventos importados"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Mostrar mapa en eventos importados"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importar cualquier etiquetas/categorías proporcionadas por la fuente además de las que se seleccionaron más arriba"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Mostrar mapa"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Mantener categorías y etiquetas originales de eventos"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Al refrescar, preservar los eventos previamente importados que falten del feed"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Fin"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Termina tras"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Por favor, espera…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Aplicar"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Cancelar"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Comprar entradas"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Edita esta ocurrencia (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Esta publicación fue replicada desde un <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>feed de calendario</a> de otro sitio web."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Ver original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Eventos importados correctamente:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Permitir comentarios en eventos importados"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Mostrar mapa en eventos importados"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importar cualquier etiquetas/categorías proporcionadas por la fuente además de las que se seleccionaron más arriba"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Mantener categorías y etiquetas originales de eventos"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Al refrescar, preservar los eventos previamente importados que falten del feed"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Termina tras"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Por favor, espera…"
|
1203 |
|
1206 |
msgstr "Aplicar"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Cancelar"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Edita esta ocurrencia (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Esta publicación fue replicada desde un <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>feed de calendario</a> de otro sitio web."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Ver original"
|
2149 |
|
language/all-in-one-event-calendar-et.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-eu.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-fi.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Poista"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Näytä kartta"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Loppu"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Päättyy"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Ole hyvä ja odota…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Ota käyttöön"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Peruuta"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Päättyy"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Ole hyvä ja odota…"
|
1203 |
|
1206 |
msgstr "Ota käyttöön"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Peruuta"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-fr_FR.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Supprimer"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Événements importés avec succès :"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Autoriser les commentaires sur les évènements importés"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Afficher la carte sur les événements importés"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importer tous les mots-clés/catégories fournies par le flux, en plus de ceux sélectionnés ci-dessous."
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Afficher la carte"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Garder les catégories et mots-clés originaux des événements"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Lors du rafraichissement, conserver les événements précédemment importés qui manquent dans le flux"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Fin"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Fin après"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Patientez s'il vous plaît…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Appliquer"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Annuler"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Acheter des tickets"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Modifier cette occurrence (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Cette publication a été copiée depuis le <a href=\"%s\" title=\"Flux iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>flux agenda</a> d'un autre site."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Voir l'original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Événements importés avec succès :"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Autoriser les commentaires sur les évènements importés"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Afficher la carte sur les événements importés"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importer tous les mots-clés/catégories fournies par le flux, en plus de ceux sélectionnés ci-dessous."
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Garder les catégories et mots-clés originaux des événements"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Lors du rafraichissement, conserver les événements précédemment importés qui manquent dans le flux"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Fin après"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Patientez s'il vous plaît…"
|
1203 |
|
1206 |
msgstr "Appliquer"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Annuler"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Modifier cette occurrence (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Cette publication a été copiée depuis le <a href=\"%s\" title=\"Flux iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>flux agenda</a> d'un autre site."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Voir l'original"
|
2149 |
|
language/all-in-one-event-calendar-gl_ES.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-he_IL.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "הסר"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "אפשר תגובות על אירועים מיובאים"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "בעת רענון, שמר אירועים שיובאו קודם, הנעדרים מהפיד"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "סוף"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "מסתיים אחרי"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "אנא המתן…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "החל"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "ביטול"
|
1209 |
|
@@ -2138,11 +2141,11 @@ msgstr "רכישת כרטיסים"
|
|
2138 |
msgid "Edit this occurrence (%s)"
|
2139 |
msgstr "ערוך אירוע זה (%s)"
|
2140 |
|
2141 |
-
#: app/view/event/single.php:
|
2142 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2143 |
msgstr "פוסט זה שוכפל מ<a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> פיד לוח שנה</a> של אתר אחר."
|
2144 |
|
2145 |
-
#: app/view/event/single.php:
|
2146 |
msgid "View original"
|
2147 |
msgstr "צפה במקור"
|
2148 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "אפשר תגובות על אירועים מיובאים"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "בעת רענון, שמר אירועים שיובאו קודם, הנעדרים מהפיד"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "מסתיים אחרי"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "אנא המתן…"
|
1203 |
|
1206 |
msgstr "החל"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "ביטול"
|
1212 |
|
2141 |
msgid "Edit this occurrence (%s)"
|
2142 |
msgstr "ערוך אירוע זה (%s)"
|
2143 |
|
2144 |
+
#: app/view/event/single.php:208
|
2145 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2146 |
msgstr "פוסט זה שוכפל מ<a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> פיד לוח שנה</a> של אתר אחר."
|
2147 |
|
2148 |
+
#: app/view/event/single.php:225
|
2149 |
msgid "View original"
|
2150 |
msgstr "צפה במקור"
|
2151 |
|
language/all-in-one-event-calendar-hi.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-hr.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Uspješno uvezeni događaji:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Kraj"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Završava nakon"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Primijeni"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Otkaži"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Kupi ulaznice"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Uspješno uvezeni događaji:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Završava nakon"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr "Primijeni"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Otkaži"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-hu_HU.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Eltávolítás"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Sikeresen importált események:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Importált események esetében kommentek engedélyezése"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Importált események esetén a térkép mutatása"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Újabb címkék/ kategóriák importálása a fent kiválasztottakon túl."
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Térkép mutatása"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Eredeti esemény kategóriák és címkék megtartása"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Vége"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Után vége"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Kérem várjon…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Alkalmaz"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Mégsem"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Jegyek vásárlása"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Előfordulás szerkesztése (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Sikeresen importált események:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Importált események esetében kommentek engedélyezése"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Importált események esetén a térkép mutatása"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Újabb címkék/ kategóriák importálása a fent kiválasztottakon túl."
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Eredeti esemény kategóriák és címkék megtartása"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Után vége"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Kérem várjon…"
|
1203 |
|
1206 |
msgstr "Alkalmaz"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Mégsem"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Előfordulás szerkesztése (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-id_ID.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-is.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Fjarlægja"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Sýna kort"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Hættir eftir"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Hætta við"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Kaupa miða"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Hættir eftir"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Hætta við"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-it_IT.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Rimuovi"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Eventi importati:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Permetti commenti su eventi importati"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Visualizza mappa su eventi importati"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importa qualsiasi tag/categoria fornito dal feed, in aggiunta a quelli selezionati sopra"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Visualizza mappa"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Mantieni categorie e tags originali degli eventi"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "In caso di refresh, conserva gli eventi importati precedentemente che mancano in questo feed"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Fine"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Finisce dopo"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Prego attendere…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Applica"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Annulla"
|
1209 |
|
@@ -2138,11 +2141,11 @@ msgstr "Acquista Biglietti"
|
|
2138 |
msgid "Edit this occurrence (%s)"
|
2139 |
msgstr "Modifica questo avvenimento (%s)"
|
2140 |
|
2141 |
-
#: app/view/event/single.php:
|
2142 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2143 |
msgstr "Questo post è stato replicato da un'altro <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Feed Calendario</a>."
|
2144 |
|
2145 |
-
#: app/view/event/single.php:
|
2146 |
msgid "View original"
|
2147 |
msgstr "Visualizza originale"
|
2148 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Eventi importati:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Permetti commenti su eventi importati"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Visualizza mappa su eventi importati"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importa qualsiasi tag/categoria fornito dal feed, in aggiunta a quelli selezionati sopra"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Mantieni categorie e tags originali degli eventi"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "In caso di refresh, conserva gli eventi importati precedentemente che mancano in questo feed"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Finisce dopo"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Prego attendere…"
|
1203 |
|
1206 |
msgstr "Applica"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Annulla"
|
1212 |
|
2141 |
msgid "Edit this occurrence (%s)"
|
2142 |
msgstr "Modifica questo avvenimento (%s)"
|
2143 |
|
2144 |
+
#: app/view/event/single.php:208
|
2145 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2146 |
msgstr "Questo post è stato replicato da un'altro <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> Feed Calendario</a>."
|
2147 |
|
2148 |
+
#: app/view/event/single.php:225
|
2149 |
msgid "View original"
|
2150 |
msgstr "Visualizza originale"
|
2151 |
|
language/all-in-one-event-calendar-ja.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "削除"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "インポートに成功したイベント:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "インポートされたイベントにコメントを許可"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "インポートされたイベントに地図を表示する"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "上で選択されたものに加えて、フィードに提供されたタグ・カテゴリをすべて持ち込む。"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "地図を表示"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "元のカテゴリとタグを残す"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "リフレッシュ時に、フィードから失われる、以前にインポートされたイベントを取っておく。"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "終了"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "この後終了"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "お待ちください…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "適用"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "キャンセル"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "チケットを買う"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "この回(%s)を編集"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "この投稿は別なサイトの<a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>カレンダーフィード</a>から複製されました。"
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "元を見る"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "インポートに成功したイベント:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "インポートされたイベントにコメントを許可"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "インポートされたイベントに地図を表示する"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "上で選択されたものに加えて、フィードに提供されたタグ・カテゴリをすべて持ち込む。"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "元のカテゴリとタグを残す"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "リフレッシュ時に、フィードから失われる、以前にインポートされたイベントを取っておく。"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "この後終了"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "お待ちください…"
|
1203 |
|
1206 |
msgstr "適用"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "キャンセル"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "この回(%s)を編集"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "この投稿は別なサイトの<a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i>カレンダーフィード</a>から複製されました。"
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "元を見る"
|
2149 |
|
language/all-in-one-event-calendar-lv.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Dzēst"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Veiksmīgi importēti pasākumi:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Importētajiem pasākumiem atļaut komentārus"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Importētajos pasākumos rādīt karti"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importēt visas birkas/kategorijas, ko piedāvā barotne, papildus tām, kas izvēlētas augstāk"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Rādīt karti"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Paturēt oriģinālās pasākumu kategorijas un birkas"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Beigas"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Beidzas pēc"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Lūdzu uzgaidiet"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Pieteikties"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Atcelt"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Pirkt biļetes"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Rediģēt šo notikumu (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Veiksmīgi importēti pasākumi:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Importētajiem pasākumiem atļaut komentārus"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Importētajos pasākumos rādīt karti"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importēt visas birkas/kategorijas, ko piedāvā barotne, papildus tām, kas izvēlētas augstāk"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Paturēt oriģinālās pasākumu kategorijas un birkas"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Beidzas pēc"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Lūdzu uzgaidiet"
|
1203 |
|
1206 |
msgstr "Pieteikties"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Atcelt"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Rediģēt šo notikumu (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-nb_NO.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Slett"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Importerte hendelser:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Tillat kommentarer på importerte hendelser"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Vis kart på importerte hendelser"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Vis kart"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Behold originale hendelseskategorier og tags"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Under oppdatering, bevar tidligere importerte hendelser som mangler fra strømmen"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Slutt"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Slutter etter"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Vennlist vent…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Tilføy"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Avslutt"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Kjøp billetter"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Rediger denne forekomsten (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Dette innlegget ble kopiert fra et annet nettsted's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalender strøm</a>."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Vis original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Importerte hendelser:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Tillat kommentarer på importerte hendelser"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Vis kart på importerte hendelser"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Behold originale hendelseskategorier og tags"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Under oppdatering, bevar tidligere importerte hendelser som mangler fra strømmen"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Slutter etter"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Vennlist vent…"
|
1203 |
|
1206 |
msgstr "Tilføy"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Avslutt"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Rediger denne forekomsten (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Dette innlegget ble kopiert fra et annet nettsted's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalender strøm</a>."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Vis original"
|
2149 |
|
language/all-in-one-event-calendar-nl_NL.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Verwijder"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Succesvol geïmporteerde activiteiten:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Commentaar op geïmporteerde activiteiten toegestaan"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Toon kaart bij geïmporteerde activiteiten"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importeer alle labels/categorieën uit de feed, ter aanvulling op de hierboven geselecteerde"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Toon kaart"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Behoud originele activiteit categorieën en labels"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Bij het verversen, bewaar de hiervoor geïmporteerde activiteiten die ontbreken van de de feed."
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Einde"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Eindigt na"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Even wachten aub…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Pas toe"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Annuleer"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Koop kaartjes"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Pas deze activiteit aan (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Dit bericht is een kopie van een <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalender feed</a> van een adere website."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Bekijk orgineel"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Succesvol geïmporteerde activiteiten:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Commentaar op geïmporteerde activiteiten toegestaan"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Toon kaart bij geïmporteerde activiteiten"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importeer alle labels/categorieën uit de feed, ter aanvulling op de hierboven geselecteerde"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Behoud originele activiteit categorieën en labels"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Bij het verversen, bewaar de hiervoor geïmporteerde activiteiten die ontbreken van de de feed."
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Eindigt na"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Even wachten aub…"
|
1203 |
|
1206 |
msgstr "Pas toe"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Annuleer"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Pas deze activiteit aan (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Dit bericht is een kopie van een <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalender feed</a> van een adere website."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Bekijk orgineel"
|
2149 |
|
language/all-in-one-event-calendar-pl_PL.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Usuń"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Wydarzenia zaimportowane z sukcesem"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Pozwól na komentowanie zaimportowanych wydarzeń"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Pokaż mapę w importowanych wydarzeniach"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importowanie znaczników/kategorii powiązanych z treścią dodatkowych do wyróżnionych powyżej."
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Pokaż mapę"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Zachowaj oryginalne kategorie i znaczniki wydarzeń"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Koniec"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Koniec po"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Proszę czekać…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Zastosuj"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Anuluj"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Kup bilety"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Edytuj to wystąpienie (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Zobacz oryginał"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Wydarzenia zaimportowane z sukcesem"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Pozwól na komentowanie zaimportowanych wydarzeń"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Pokaż mapę w importowanych wydarzeniach"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importowanie znaczników/kategorii powiązanych z treścią dodatkowych do wyróżnionych powyżej."
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Zachowaj oryginalne kategorie i znaczniki wydarzeń"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Koniec po"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Proszę czekać…"
|
1203 |
|
1206 |
msgstr "Zastosuj"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Anuluj"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Edytuj to wystąpienie (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Zobacz oryginał"
|
2149 |
|
language/all-in-one-event-calendar-pt_BR.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Exclui"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Eventos importados com sucesso"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Permita comentários em eventos importados"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Mostrar mapa em eventos importados"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importar todas as tags/categorias providenciadas pelo feed, em adição às que foram selecionadas acima"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Mostrar mapa"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Mantenha categorias de eventos e tags originais"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Ao recarregar, preservar eventos importados anteriormente que estejam faltando no feed"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Fim"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Terminando após"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Por favor espere…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Aplicar"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Cancelar"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Comprar Ingressos"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Altere esta ocorrência (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Este post foi replicado de um <a href=\"%s\" title=\"feed iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> feed de calendário</a> de outro site."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Ver Original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Eventos importados com sucesso"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Permita comentários em eventos importados"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Mostrar mapa em eventos importados"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importar todas as tags/categorias providenciadas pelo feed, em adição às que foram selecionadas acima"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Mantenha categorias de eventos e tags originais"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Ao recarregar, preservar eventos importados anteriormente que estejam faltando no feed"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Terminando após"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Por favor espere…"
|
1203 |
|
1206 |
msgstr "Aplicar"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Cancelar"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Altere esta ocorrência (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Este post foi replicado de um <a href=\"%s\" title=\"feed iCalendar\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> feed de calendário</a> de outro site."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Ver Original"
|
2149 |
|
language/all-in-one-event-calendar-pt_PT.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Remover"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Eventos importados com sucesso:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Permitir comentários em eventos importados"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Mostrar mapa em eventos importados"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importar quaisquer tags/categorias providenciadas por feed, ainda os seleccionados acima"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Mostrar Mapa"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Manter categorias e tags originais do evento"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Fim"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Terminando depois"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Por favor aguarde…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Aplicar"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Cancelar"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Comprar Bilhetes"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Editar esta Ocorrência (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Este post foi replicado de outro site com <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendário</a>."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Ver o original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Eventos importados com sucesso:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Permitir comentários em eventos importados"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Mostrar mapa em eventos importados"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importar quaisquer tags/categorias providenciadas por feed, ainda os seleccionados acima"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Manter categorias e tags originais do evento"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Terminando depois"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Por favor aguarde…"
|
1203 |
|
1206 |
msgstr "Aplicar"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Cancelar"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Editar esta Ocorrência (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Este post foi replicado de outro site com <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendário</a>."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Ver o original"
|
2149 |
|
language/all-in-one-event-calendar-ro_RO.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Elimină"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Evenimente importate cu succes:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Permiteți comentarii la evenimentele importate"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Arătați hartă la evenimentele importate"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importă orice etichete/categorii furnizate de feed, pe lângă cele selectate mai sus"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Arată harta"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Păstrați categoriile și etichetele originale ale evenimentelor"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "La împrospătare, păstrează evenimentele importate anterior care lipsesc din feed"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Sfârșit"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Se termină după"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Vă rugăm să așteptați…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Aplică"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Renunță"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Cumpărați Bilet"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Această postare a fost replicată după <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> feed-ul de evenimente (calendar feed)</a> al altui site."
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Vizualizați originalul"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Evenimente importate cu succes:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Permiteți comentarii la evenimentele importate"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Arătați hartă la evenimentele importate"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importă orice etichete/categorii furnizate de feed, pe lângă cele selectate mai sus"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Păstrați categoriile și etichetele originale ale evenimentelor"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "La împrospătare, păstrează evenimentele importate anterior care lipsesc din feed"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Se termină după"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Vă rugăm să așteptați…"
|
1203 |
|
1206 |
msgstr "Aplică"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Renunță"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Această postare a fost replicată după <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> feed-ul de evenimente (calendar feed)</a> al altui site."
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Vizualizați originalul"
|
2149 |
|
language/all-in-one-event-calendar-ru_RU.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Удалить"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Успешно импортированные события:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Разрешить комментарии к импортированным событиям"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Показывать карту для импортированных событий"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Дополнительно к выбранным выше тегам/категориям импортировать любые, предоставленные из фида"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Показать карту"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Сохранить оригинальные категории и метки"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Конец"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Окончание после"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Подождите…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Применить"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Отмена"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Купить билет"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Редактировать данное событие (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Отобразить оригинал"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Успешно импортированные события:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Разрешить комментарии к импортированным событиям"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Показывать карту для импортированных событий"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Дополнительно к выбранным выше тегам/категориям импортировать любые, предоставленные из фида"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Сохранить оригинальные категории и метки"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Окончание после"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Подождите…"
|
1203 |
|
1206 |
msgstr "Применить"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Отмена"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Редактировать данное событие (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Отобразить оригинал"
|
2149 |
|
language/all-in-one-event-calendar-sk_SK.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Odstrániť"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Úspešne importované udalosti:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Povoliť komentáre pre importované udalosti"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Ukáž na mape"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Ponechať pôvodné kategórie a tagy eventu"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Koniec"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Koniec po"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Prosím čakaj…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Vykonaj"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Zrušiť"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Kúpiť lístky"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Úspešne importované udalosti:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Povoliť komentáre pre importované udalosti"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Ponechať pôvodné kategórie a tagy eventu"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Koniec po"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Prosím čakaj…"
|
1203 |
|
1206 |
msgstr "Vykonaj"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Zrušiť"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-sl_SI.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Odstrani"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Uspešno uvoženi dogodki"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Dovoli komentarje na uvožene dogodke"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Prikaži zemljevid na uvoženih dogodkih"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Prikaži zemljevid"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Konec"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Zaključi po"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "uporabi"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "prekliči"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Uredi ta ponavljajoč dogodek (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Uspešno uvoženi dogodki"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Dovoli komentarje na uvožene dogodke"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Prikaži zemljevid na uvoženih dogodkih"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Zaključi po"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr "uporabi"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "prekliči"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Uredi ta ponavljajoč dogodek (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-sv_SE.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr "Radera"
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr "Aktiviteter som importerades korrekt:"
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr "Tillåt kommentarer på importerade aktiviteter"
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr "Visa karta i importerade aktiviteter"
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr "Importera dessutom etiketter/kategorier från flödet"
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr "Visa karta"
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr "Behåll ursprunglig aktivitetskategori/etikett"
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr "Vid omladdning: bevara tidigare importerade aktiviteter som saknas i flödet"
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr "Upphör"
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr "Upphör efter"
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr "Vänligen vänta…"
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr "Använd"
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr "Avbryt"
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr "Köp biljetter"
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr "Redigera denna förekomst (%s)"
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr "Detta inlägg replikerades från en annan sidas <a href=\"%s\" title=\"iCalendar-flöde\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalenderflöde</a>"
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr "Visa original"
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr "Aktiviteter som importerades korrekt:"
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr "Tillåt kommentarer på importerade aktiviteter"
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr "Visa karta i importerade aktiviteter"
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr "Importera dessutom etiketter/kategorier från flödet"
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr "Behåll ursprunglig aktivitetskategori/etikett"
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr "Vid omladdning: bevara tidigare importerade aktiviteter som saknas i flödet"
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr "Upphör efter"
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr "Vänligen vänta…"
|
1203 |
|
1206 |
msgstr "Använd"
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr "Avbryt"
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr "Redigera denna förekomst (%s)"
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr "Detta inlägg replikerades från en annan sidas <a href=\"%s\" title=\"iCalendar-flöde\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> kalenderflöde</a>"
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr "Visa original"
|
2149 |
|
language/all-in-one-event-calendar-th.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-tr_TR.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-uk.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar-zh_CN.po
CHANGED
@@ -10,6 +10,16 @@ msgstr ""
|
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
#: app/view/admin/settings.php:209
|
14 |
msgid "Calendar Type:"
|
15 |
msgstr ""
|
@@ -54,7 +64,7 @@ msgstr ""
|
|
54 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: app/view/event/single.php:
|
58 |
msgid "This post was imported from a CSV/ICS file."
|
59 |
msgstr ""
|
60 |
|
@@ -82,7 +92,7 @@ msgid ""
|
|
82 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
86 |
msgid "Convert event's date/time to calendar's timezone"
|
87 |
msgstr ""
|
88 |
|
@@ -106,7 +116,7 @@ msgstr ""
|
|
106 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
110 |
msgid "Feed URL:"
|
111 |
msgstr ""
|
112 |
|
@@ -120,13 +130,13 @@ msgid "Removing"
|
|
120 |
msgstr ""
|
121 |
|
122 |
#: public/admin/plugins/ics/display_feeds.php:6
|
123 |
-
#: public/admin/plugins/ics/import_feed.php:
|
124 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
125 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
126 |
msgstr ""
|
127 |
|
128 |
#: public/admin/plugins/ics/display_feeds.php:10
|
129 |
-
#: public/admin/plugins/ics/import_feed.php:
|
130 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
131 |
msgid "Sign In to Timely Network"
|
132 |
msgstr ""
|
@@ -146,25 +156,18 @@ msgstr ""
|
|
146 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: public/admin/plugins/ics/import_feed.php:
|
150 |
msgid ""
|
151 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
152 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
153 |
"\t\tsupports \"Import Feeds\"."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: public/admin/plugins/ics/import_feed.php:
|
157 |
-
msgid ""
|
158 |
-
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
159 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade here</a> to a plan that\n"
|
160 |
-
"\t\tsupports more feeds."
|
161 |
-
msgstr ""
|
162 |
-
|
163 |
-
#: public/admin/plugins/ics/import_feed.php:110
|
164 |
msgid "Import feed"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: public/admin/plugins/ics/import_feed.php:
|
168 |
msgid "Update feed"
|
169 |
msgstr ""
|
170 |
|
@@ -600,7 +603,7 @@ msgstr ""
|
|
600 |
msgid "API URL: %s.<br/>Detail: %s"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/model/api/api-abstract.php:
|
604 |
msgid "Error decoding the response"
|
605 |
msgstr ""
|
606 |
|
@@ -938,15 +941,15 @@ msgstr ""
|
|
938 |
msgid "Successfully imported events:"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: public/admin/plugins/ics/import_feed.php:
|
942 |
msgid "Allow comments on imported events"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: public/admin/plugins/ics/import_feed.php:
|
946 |
msgid "Show map on imported events"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: public/admin/plugins/ics/import_feed.php:
|
950 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
951 |
msgstr ""
|
952 |
|
@@ -1058,7 +1061,7 @@ msgstr ""
|
|
1058 |
msgid "Keep original events categories and tags"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
1062 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1063 |
msgstr ""
|
1064 |
|
@@ -1194,7 +1197,7 @@ msgstr ""
|
|
1194 |
msgid "Ending after"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
1198 |
msgid "Please wait…"
|
1199 |
msgstr ""
|
1200 |
|
@@ -1203,7 +1206,7 @@ msgid "Apply"
|
|
1203 |
msgstr ""
|
1204 |
|
1205 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1206 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1207 |
msgid "Cancel"
|
1208 |
msgstr ""
|
1209 |
|
@@ -2136,11 +2139,11 @@ msgstr ""
|
|
2136 |
msgid "Edit this occurrence (%s)"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: app/view/event/single.php:
|
2140 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: app/view/event/single.php:
|
2144 |
msgid "View original"
|
2145 |
msgstr ""
|
2146 |
|
10 |
"X-Generator: GlotPress/1.0-alpha-1100\n"
|
11 |
"Project-Id-Version: 2.3\n"
|
12 |
|
13 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
14 |
+
msgid "unlimited"
|
15 |
+
msgstr ""
|
16 |
+
|
17 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
18 |
+
msgid ""
|
19 |
+
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
20 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/\" target=\"_blank\">here</a>."
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
#: app/view/admin/settings.php:209
|
24 |
msgid "Calendar Type:"
|
25 |
msgstr ""
|
64 |
msgid "Timely Ticketing saves time & money. Create ticketing/registration right here and now. You do not pay any ticketing fees (other than regular PayPal transaction costs). Create as many ticketing/registration as you'd like.<br /><br />Ticketing feature is not enabled for this website. Please sign up for Ticketing plan <a href=\"https://time.ly/tickets-existing-users/\" target=\"_blank\">here</a>."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: app/view/event/single.php:212
|
68 |
msgid "This post was imported from a CSV/ICS file."
|
69 |
msgstr ""
|
70 |
|
92 |
"\t\t\t\t\t\t\t\t\tGoogle Maps API Key</span> (<a target=\"_blank\" href=\"https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key\">Get an API key</a>)"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
96 |
msgid "Convert event's date/time to calendar's timezone"
|
97 |
msgstr ""
|
98 |
|
116 |
msgid "I read and accept the <a href=\"https://time.ly/tos\" target=\"_blank\">terms of service</a>."
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
120 |
msgid "Feed URL:"
|
121 |
msgstr ""
|
122 |
|
130 |
msgstr ""
|
131 |
|
132 |
#: public/admin/plugins/ics/display_feeds.php:6
|
133 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
134 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
135 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
136 |
msgstr ""
|
137 |
|
138 |
#: public/admin/plugins/ics/display_feeds.php:10
|
139 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
140 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
141 |
msgid "Sign In to Timely Network"
|
142 |
msgstr ""
|
156 |
msgid "My imported Events (click on the feed to see the individually imported events):"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
160 |
msgid ""
|
161 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
162 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade here</a> to a plan that\n"
|
163 |
"\t\tsupports \"Import Feeds\"."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
msgid "Import feed"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
171 |
msgid "Update feed"
|
172 |
msgstr ""
|
173 |
|
603 |
msgid "API URL: %s.<br/>Detail: %s"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: app/model/api/api-abstract.php:492
|
607 |
msgid "Error decoding the response"
|
608 |
msgstr ""
|
609 |
|
941 |
msgid "Successfully imported events:"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
945 |
msgid "Allow comments on imported events"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
949 |
msgid "Show map on imported events"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
953 |
msgid "Import any tags/categories provided by feed, in addition those selected above"
|
954 |
msgstr ""
|
955 |
|
1061 |
msgid "Keep original events categories and tags"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
1065 |
msgid "On refresh, preserve previously imported events that are missing from the feed"
|
1066 |
msgstr ""
|
1067 |
|
1197 |
msgid "Ending after"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
1201 |
msgid "Please wait…"
|
1202 |
msgstr ""
|
1203 |
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1209 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1210 |
msgid "Cancel"
|
1211 |
msgstr ""
|
1212 |
|
2139 |
msgid "Edit this occurrence (%s)"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: app/view/event/single.php:208
|
2143 |
msgid "This post was replicated from another site's <a href=\"%s\" title=\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar feed</a>."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: app/view/event/single.php:225
|
2147 |
msgid "View original"
|
2148 |
msgstr ""
|
2149 |
|
language/all-in-one-event-calendar.mo
CHANGED
Binary file
|
language/all-in-one-event-calendar.po
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: Timely <support@time.ly>\n"
|
13 |
"Language-Team:\n"
|
14 |
|
@@ -375,7 +375,7 @@ msgstr ""
|
|
375 |
"%s. Please try again. If this error persists, please contact us at %s. In "
|
376 |
"your report please include the information below.<br/>%s."
|
377 |
|
378 |
-
#: app/model/api/api-abstract.php:
|
379 |
msgid "Error decoding the response"
|
380 |
msgstr "Error decoding the response"
|
381 |
|
@@ -1311,7 +1311,7 @@ msgstr ""
|
|
1311 |
"closed”."
|
1312 |
|
1313 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1314 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1315 |
msgid "Cancel"
|
1316 |
msgstr "Cancel"
|
1317 |
|
@@ -1992,7 +1992,7 @@ msgstr "Buy Tickets"
|
|
1992 |
msgid "Edit this occurrence (%s)"
|
1993 |
msgstr "Edit this occurrence (%s)"
|
1994 |
|
1995 |
-
#: app/view/event/single.php:
|
1996 |
msgid ""
|
1997 |
"This post was replicated from another site's <a href=\"%s\" title="
|
1998 |
"\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar "
|
@@ -2002,11 +2002,11 @@ msgstr ""
|
|
2002 |
"\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar "
|
2003 |
"feed</a>."
|
2004 |
|
2005 |
-
#: app/view/event/single.php:
|
2006 |
msgid "This post was imported from a CSV/ICS file."
|
2007 |
msgstr "This post was imported from a CSV/ICS file."
|
2008 |
|
2009 |
-
#: app/view/event/single.php:
|
2010 |
msgid "View original"
|
2011 |
msgstr "View original"
|
2012 |
|
@@ -3347,7 +3347,7 @@ msgstr "End"
|
|
3347 |
msgid "Ending after"
|
3348 |
msgstr "Ending after"
|
3349 |
|
3350 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
3351 |
msgid "Please wait…"
|
3352 |
msgstr "Please wait…"
|
3353 |
|
@@ -3499,7 +3499,7 @@ msgstr "Hourly"
|
|
3499 |
msgid "Twice Daily"
|
3500 |
msgstr "Twice Daily"
|
3501 |
|
3502 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
3503 |
msgid "Feed URL:"
|
3504 |
msgstr "Feed URL:"
|
3505 |
|
@@ -3523,7 +3523,7 @@ msgstr "Show map"
|
|
3523 |
msgid "Keep original events categories and tags"
|
3524 |
msgstr "Keep original events categories and tags"
|
3525 |
|
3526 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
3527 |
msgid ""
|
3528 |
"On refresh, preserve previously imported events that are missing from the "
|
3529 |
"feed"
|
@@ -3531,7 +3531,7 @@ msgstr ""
|
|
3531 |
"On refresh, preserve previously imported events that are missing from the "
|
3532 |
"feed"
|
3533 |
|
3534 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
3535 |
msgid "Convert event's date/time to calendar's timezone"
|
3536 |
msgstr "Convert event's date/time to calendar's timezone"
|
3537 |
|
@@ -3566,13 +3566,13 @@ msgid "Successfully imported events:"
|
|
3566 |
msgstr "Successfully imported events:"
|
3567 |
|
3568 |
#: public/admin/plugins/ics/display_feeds.php:6
|
3569 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3570 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
3571 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
3572 |
msgstr "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
3573 |
|
3574 |
#: public/admin/plugins/ics/display_feeds.php:10
|
3575 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3576 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
3577 |
msgid "Sign In to Timely Network"
|
3578 |
msgstr "Sign In to Timely Network"
|
@@ -3601,49 +3601,51 @@ msgstr ""
|
|
3601 |
"My imported Events (click on the feed to see the individually imported "
|
3602 |
"events):"
|
3603 |
|
3604 |
-
#: public/admin/plugins/ics/import_feed.php:
|
|
|
|
|
|
|
|
|
3605 |
msgid ""
|
3606 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
3607 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade
|
3608 |
-
"that\n"
|
3609 |
"\t\tsupports \"Import Feeds\"."
|
3610 |
msgstr ""
|
3611 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
3612 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade
|
3613 |
-
"that\n"
|
3614 |
"\t\tsupports \"Import Feeds\"."
|
3615 |
|
3616 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3617 |
msgid ""
|
3618 |
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
3619 |
-
"\t\tPlease <a href=\"https://time.ly/
|
3620 |
-
"
|
3621 |
-
"\t\tsupports more feeds."
|
3622 |
msgstr ""
|
3623 |
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
3624 |
-
"\t\tPlease <a href=\"https://time.ly/
|
3625 |
-
"
|
3626 |
-
"\t\tsupports more feeds."
|
3627 |
|
3628 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3629 |
msgid "Allow comments on imported events"
|
3630 |
msgstr "Allow comments on imported events"
|
3631 |
|
3632 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3633 |
msgid "Show map on imported events"
|
3634 |
msgstr "Show map on imported events"
|
3635 |
|
3636 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3637 |
msgid ""
|
3638 |
"Import any tags/categories provided by feed, in addition those selected above"
|
3639 |
msgstr ""
|
3640 |
"Import any tags/categories provided by feed, in addition those selected above"
|
3641 |
|
3642 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3643 |
msgid "Import feed"
|
3644 |
msgstr "Import feed"
|
3645 |
|
3646 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3647 |
msgid "Update feed"
|
3648 |
msgstr "Update feed"
|
3649 |
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.19\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2017-04-25 20:36:02+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2017-04-25 20:36+0000\n"
|
12 |
"Last-Translator: Timely <support@time.ly>\n"
|
13 |
"Language-Team:\n"
|
14 |
|
375 |
"%s. Please try again. If this error persists, please contact us at %s. In "
|
376 |
"your report please include the information below.<br/>%s."
|
377 |
|
378 |
+
#: app/model/api/api-abstract.php:492
|
379 |
msgid "Error decoding the response"
|
380 |
msgstr "Error decoding the response"
|
381 |
|
1311 |
"closed”."
|
1312 |
|
1313 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1314 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1315 |
msgid "Cancel"
|
1316 |
msgstr "Cancel"
|
1317 |
|
1992 |
msgid "Edit this occurrence (%s)"
|
1993 |
msgstr "Edit this occurrence (%s)"
|
1994 |
|
1995 |
+
#: app/view/event/single.php:208
|
1996 |
msgid ""
|
1997 |
"This post was replicated from another site's <a href=\"%s\" title="
|
1998 |
"\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar "
|
2002 |
"\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar "
|
2003 |
"feed</a>."
|
2004 |
|
2005 |
+
#: app/view/event/single.php:212
|
2006 |
msgid "This post was imported from a CSV/ICS file."
|
2007 |
msgstr "This post was imported from a CSV/ICS file."
|
2008 |
|
2009 |
+
#: app/view/event/single.php:225
|
2010 |
msgid "View original"
|
2011 |
msgstr "View original"
|
2012 |
|
3347 |
msgid "Ending after"
|
3348 |
msgstr "Ending after"
|
3349 |
|
3350 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
3351 |
msgid "Please wait…"
|
3352 |
msgstr "Please wait…"
|
3353 |
|
3499 |
msgid "Twice Daily"
|
3500 |
msgstr "Twice Daily"
|
3501 |
|
3502 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
3503 |
msgid "Feed URL:"
|
3504 |
msgstr "Feed URL:"
|
3505 |
|
3523 |
msgid "Keep original events categories and tags"
|
3524 |
msgstr "Keep original events categories and tags"
|
3525 |
|
3526 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
3527 |
msgid ""
|
3528 |
"On refresh, preserve previously imported events that are missing from the "
|
3529 |
"feed"
|
3531 |
"On refresh, preserve previously imported events that are missing from the "
|
3532 |
"feed"
|
3533 |
|
3534 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
3535 |
msgid "Convert event's date/time to calendar's timezone"
|
3536 |
msgstr "Convert event's date/time to calendar's timezone"
|
3537 |
|
3566 |
msgstr "Successfully imported events:"
|
3567 |
|
3568 |
#: public/admin/plugins/ics/display_feeds.php:6
|
3569 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
3570 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
3571 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
3572 |
msgstr "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
3573 |
|
3574 |
#: public/admin/plugins/ics/display_feeds.php:10
|
3575 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
3576 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
3577 |
msgid "Sign In to Timely Network"
|
3578 |
msgstr "Sign In to Timely Network"
|
3601 |
"My imported Events (click on the feed to see the individually imported "
|
3602 |
"events):"
|
3603 |
|
3604 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
3605 |
+
msgid "unlimited"
|
3606 |
+
msgstr "unlimited"
|
3607 |
+
|
3608 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
3609 |
msgid ""
|
3610 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
3611 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade "
|
3612 |
+
"here</a> to a plan that\n"
|
3613 |
"\t\tsupports \"Import Feeds\"."
|
3614 |
msgstr ""
|
3615 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
3616 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade "
|
3617 |
+
"here</a> to a plan that\n"
|
3618 |
"\t\tsupports \"Import Feeds\"."
|
3619 |
|
3620 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
3621 |
msgid ""
|
3622 |
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
3623 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/"
|
3624 |
+
"\" target=\"_blank\">here</a>."
|
|
|
3625 |
msgstr ""
|
3626 |
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
3627 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/"
|
3628 |
+
"\" target=\"_blank\">here</a>."
|
|
|
3629 |
|
3630 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
3631 |
msgid "Allow comments on imported events"
|
3632 |
msgstr "Allow comments on imported events"
|
3633 |
|
3634 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
3635 |
msgid "Show map on imported events"
|
3636 |
msgstr "Show map on imported events"
|
3637 |
|
3638 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
3639 |
msgid ""
|
3640 |
"Import any tags/categories provided by feed, in addition those selected above"
|
3641 |
msgstr ""
|
3642 |
"Import any tags/categories provided by feed, in addition those selected above"
|
3643 |
|
3644 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
3645 |
msgid "Import feed"
|
3646 |
msgstr "Import feed"
|
3647 |
|
3648 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
3649 |
msgid "Update feed"
|
3650 |
msgstr "Update feed"
|
3651 |
|
language/all-in-one-event-calendar.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -334,7 +334,7 @@ msgid ""
|
|
334 |
"your report please include the information below.<br/>%s."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: app/model/api/api-abstract.php:
|
338 |
msgid "Error decoding the response"
|
339 |
msgstr ""
|
340 |
|
@@ -1184,7 +1184,7 @@ msgid ""
|
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1187 |
-
#: public/admin/plugins/ics/import_feed.php:
|
1188 |
msgid "Cancel"
|
1189 |
msgstr ""
|
1190 |
|
@@ -1828,18 +1828,18 @@ msgstr ""
|
|
1828 |
msgid "Edit this occurrence (%s)"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: app/view/event/single.php:
|
1832 |
msgid ""
|
1833 |
"This post was replicated from another site's <a href=\"%s\" title="
|
1834 |
"\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar "
|
1835 |
"feed</a>."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: app/view/event/single.php:
|
1839 |
msgid "This post was imported from a CSV/ICS file."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#: app/view/event/single.php:
|
1843 |
msgid "View original"
|
1844 |
msgstr ""
|
1845 |
|
@@ -3082,7 +3082,7 @@ msgstr ""
|
|
3082 |
msgid "Ending after"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:
|
3086 |
msgid "Please wait…"
|
3087 |
msgstr ""
|
3088 |
|
@@ -3230,7 +3230,7 @@ msgstr ""
|
|
3230 |
msgid "Twice Daily"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:
|
3234 |
msgid "Feed URL:"
|
3235 |
msgstr ""
|
3236 |
|
@@ -3254,13 +3254,13 @@ msgstr ""
|
|
3254 |
msgid "Keep original events categories and tags"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:
|
3258 |
msgid ""
|
3259 |
"On refresh, preserve previously imported events that are missing from the "
|
3260 |
"feed"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:
|
3264 |
msgid "Convert event's date/time to calendar's timezone"
|
3265 |
msgstr ""
|
3266 |
|
@@ -3295,13 +3295,13 @@ msgid "Successfully imported events:"
|
|
3295 |
msgstr ""
|
3296 |
|
3297 |
#: public/admin/plugins/ics/display_feeds.php:6
|
3298 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3299 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
3300 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
3301 |
msgstr ""
|
3302 |
|
3303 |
#: public/admin/plugins/ics/display_feeds.php:10
|
3304 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3305 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
3306 |
msgid "Sign In to Timely Network"
|
3307 |
msgstr ""
|
@@ -3324,40 +3324,43 @@ msgid ""
|
|
3324 |
"events):"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: public/admin/plugins/ics/import_feed.php:
|
|
|
|
|
|
|
|
|
3328 |
msgid ""
|
3329 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
3330 |
-
"\t\tPlease <a href=\"https://time.ly/pricing/\">upgrade
|
3331 |
-
"that\n"
|
3332 |
"\t\tsupports \"Import Feeds\"."
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3336 |
msgid ""
|
3337 |
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
3338 |
-
"\t\tPlease <a href=\"https://time.ly/
|
3339 |
-
"
|
3340 |
-
"\t\tsupports more feeds."
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3344 |
msgid "Allow comments on imported events"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3348 |
msgid "Show map on imported events"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3352 |
msgid ""
|
3353 |
"Import any tags/categories provided by feed, in addition those selected above"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3357 |
msgid "Import feed"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
-
#: public/admin/plugins/ics/import_feed.php:
|
3361 |
msgid "Update feed"
|
3362 |
msgstr ""
|
3363 |
|
2 |
# This file is distributed under the same license as the All-in-One Event Calendar by Time.ly package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: All-in-One Event Calendar by Time.ly 2.5.19\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
7 |
+
"POT-Creation-Date: 2017-04-25 20:36:02+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
334 |
"your report please include the information below.<br/>%s."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: app/model/api/api-abstract.php:492
|
338 |
msgid "Error decoding the response"
|
339 |
msgstr ""
|
340 |
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: app/view/admin/settings.php:205 public/admin/box_repeat.php:116
|
1187 |
+
#: public/admin/plugins/ics/import_feed.php:127
|
1188 |
msgid "Cancel"
|
1189 |
msgstr ""
|
1190 |
|
1828 |
msgid "Edit this occurrence (%s)"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: app/view/event/single.php:208
|
1832 |
msgid ""
|
1833 |
"This post was replicated from another site's <a href=\"%s\" title="
|
1834 |
"\"iCalendar feed\"><i class=\"ai1ec-fa ai1ec-fa-calendar\"></i> calendar "
|
1835 |
"feed</a>."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: app/view/event/single.php:212
|
1839 |
msgid "This post was imported from a CSV/ICS file."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: app/view/event/single.php:225
|
1843 |
msgid "View original"
|
1844 |
msgstr ""
|
1845 |
|
3082 |
msgid "Ending after"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
+
#: public/admin/box_repeat.php:109 public/admin/plugins/ics/import_feed.php:133
|
3086 |
msgid "Please wait…"
|
3087 |
msgstr ""
|
3088 |
|
3230 |
msgid "Twice Daily"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: public/admin/feed_row.php:16 public/admin/plugins/ics/import_feed.php:67
|
3234 |
msgid "Feed URL:"
|
3235 |
msgstr ""
|
3236 |
|
3254 |
msgid "Keep original events categories and tags"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: public/admin/feed_row.php:82 public/admin/plugins/ics/import_feed.php:111
|
3258 |
msgid ""
|
3259 |
"On refresh, preserve previously imported events that are missing from the "
|
3260 |
"feed"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: public/admin/feed_row.php:93 public/admin/plugins/ics/import_feed.php:118
|
3264 |
msgid "Convert event's date/time to calendar's timezone"
|
3265 |
msgstr ""
|
3266 |
|
3295 |
msgstr ""
|
3296 |
|
3297 |
#: public/admin/plugins/ics/display_feeds.php:6
|
3298 |
+
#: public/admin/plugins/ics/import_feed.php:15
|
3299 |
#: public/admin/plugins/suggested/display_feeds.php:6
|
3300 |
msgid "Please, Sign In to <b>Timely Network</b> to manage your feeds."
|
3301 |
msgstr ""
|
3302 |
|
3303 |
#: public/admin/plugins/ics/display_feeds.php:10
|
3304 |
+
#: public/admin/plugins/ics/import_feed.php:19
|
3305 |
#: public/admin/plugins/suggested/display_feeds.php:10
|
3306 |
msgid "Sign In to Timely Network"
|
3307 |
msgstr ""
|
3324 |
"events):"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
+
#: public/admin/plugins/ics/import_feed.php:8
|
3328 |
+
msgid "unlimited"
|
3329 |
+
msgstr ""
|
3330 |
+
|
3331 |
+
#: public/admin/plugins/ics/import_feed.php:26
|
3332 |
msgid ""
|
3333 |
"<b>You don't have a subscription for this feature.</b><br>\n"
|
3334 |
+
"\t\tPlease <a href=\"https://time.ly/pricing/\" target=\"_blank\">upgrade "
|
3335 |
+
"here</a> to a plan that\n"
|
3336 |
"\t\tsupports \"Import Feeds\"."
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: public/admin/plugins/ics/import_feed.php:45
|
3340 |
msgid ""
|
3341 |
"<b>You have reached the limit of how many feeds you can import.</b><br>\n"
|
3342 |
+
"\t\tPlease sign up for EventBoost plan <a href=\"https://time.ly/eventboost/"
|
3343 |
+
"\" target=\"_blank\">here</a>."
|
|
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: public/admin/plugins/ics/import_feed.php:89
|
3347 |
msgid "Allow comments on imported events"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: public/admin/plugins/ics/import_feed.php:96
|
3351 |
msgid "Show map on imported events"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: public/admin/plugins/ics/import_feed.php:103
|
3355 |
msgid ""
|
3356 |
"Import any tags/categories provided by feed, in addition those selected above"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: public/admin/plugins/ics/import_feed.php:136
|
3360 |
msgid "Import feed"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: public/admin/plugins/ics/import_feed.php:139
|
3364 |
msgid "Update feed"
|
3365 |
msgstr ""
|
3366 |
|
lib/bootstrap/loader-map.php
CHANGED
@@ -2796,18 +2796,6 @@
|
|
2796 |
'c' => 'Twig_TokenStream',
|
2797 |
'i' => 'g',
|
2798 |
),
|
2799 |
-
'__TwigTemplate_04184c73b8c7ce7223d1dfe1e6f79fe17690e8b74969b07b58a06c2994a0d9e6' =>
|
2800 |
-
array (
|
2801 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '04' . DIRECTORY_SEPARATOR . '18' . DIRECTORY_SEPARATOR . '4c73b8c7ce7223d1dfe1e6f79fe17690e8b74969b07b58a06c2994a0d9e6.php',
|
2802 |
-
'c' => '__TwigTemplate_04184c73b8c7ce7223d1dfe1e6f79fe17690e8b74969b07b58a06c2994a0d9e6',
|
2803 |
-
'i' => 'g',
|
2804 |
-
),
|
2805 |
-
'__TwigTemplate_0637d929bcaa80c8f95cc2e341066aa553f8bc8d62a627a097e42516253258f7' =>
|
2806 |
-
array (
|
2807 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '06' . DIRECTORY_SEPARATOR . '37' . DIRECTORY_SEPARATOR . 'd929bcaa80c8f95cc2e341066aa553f8bc8d62a627a097e42516253258f7.php',
|
2808 |
-
'c' => '__TwigTemplate_0637d929bcaa80c8f95cc2e341066aa553f8bc8d62a627a097e42516253258f7',
|
2809 |
-
'i' => 'g',
|
2810 |
-
),
|
2811 |
'__TwigTemplate_08e44d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00' =>
|
2812 |
array (
|
2813 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '08' . DIRECTORY_SEPARATOR . 'e4' . DIRECTORY_SEPARATOR . '4d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00.php',
|
@@ -2820,30 +2808,12 @@
|
|
2820 |
'c' => '__TwigTemplate_08e7a5bd54ab9b43437fff4031a8e8c3224eb244e422102529eb80b45d19a1dc',
|
2821 |
'i' => 'g',
|
2822 |
),
|
2823 |
-
'__TwigTemplate_0a29c1dadb694d38bbd3df612d552f2b3f8c013559207293814d0b2b4fa0d366' =>
|
2824 |
-
array (
|
2825 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0a' . DIRECTORY_SEPARATOR . '29' . DIRECTORY_SEPARATOR . 'c1dadb694d38bbd3df612d552f2b3f8c013559207293814d0b2b4fa0d366.php',
|
2826 |
-
'c' => '__TwigTemplate_0a29c1dadb694d38bbd3df612d552f2b3f8c013559207293814d0b2b4fa0d366',
|
2827 |
-
'i' => 'g',
|
2828 |
-
),
|
2829 |
'__TwigTemplate_0aaa4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46' =>
|
2830 |
array (
|
2831 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0a' . DIRECTORY_SEPARATOR . 'aa' . DIRECTORY_SEPARATOR . '4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46.php',
|
2832 |
'c' => '__TwigTemplate_0aaa4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46',
|
2833 |
'i' => 'g',
|
2834 |
),
|
2835 |
-
'__TwigTemplate_0cc64b226b86022e2ab387c055486effa6a739b5a4e7f519aec8bdc3b1a46402' =>
|
2836 |
-
array (
|
2837 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0c' . DIRECTORY_SEPARATOR . 'c6' . DIRECTORY_SEPARATOR . '4b226b86022e2ab387c055486effa6a739b5a4e7f519aec8bdc3b1a46402.php',
|
2838 |
-
'c' => '__TwigTemplate_0cc64b226b86022e2ab387c055486effa6a739b5a4e7f519aec8bdc3b1a46402',
|
2839 |
-
'i' => 'g',
|
2840 |
-
),
|
2841 |
-
'__TwigTemplate_15c540b97f3b673d1c5b63d048cc19cdfa170289c32a08f3fd7e9922a5c3de8d' =>
|
2842 |
-
array (
|
2843 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '15' . DIRECTORY_SEPARATOR . 'c5' . DIRECTORY_SEPARATOR . '40b97f3b673d1c5b63d048cc19cdfa170289c32a08f3fd7e9922a5c3de8d.php',
|
2844 |
-
'c' => '__TwigTemplate_15c540b97f3b673d1c5b63d048cc19cdfa170289c32a08f3fd7e9922a5c3de8d',
|
2845 |
-
'i' => 'g',
|
2846 |
-
),
|
2847 |
'__TwigTemplate_1db441d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550' =>
|
2848 |
array (
|
2849 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '1d' . DIRECTORY_SEPARATOR . 'b4' . DIRECTORY_SEPARATOR . '41d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550.php',
|
@@ -2868,12 +2838,6 @@
|
|
2868 |
'c' => '__TwigTemplate_1fc7b71ee92dc515fa667ee7831c98ab6c28baf9d40bd7616eb6cebd71888ce5',
|
2869 |
'i' => 'g',
|
2870 |
),
|
2871 |
-
'__TwigTemplate_21549c984e33c51910634335892378071c294cf9eda3538e86f53158bbb3db8b' =>
|
2872 |
-
array (
|
2873 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '21' . DIRECTORY_SEPARATOR . '54' . DIRECTORY_SEPARATOR . '9c984e33c51910634335892378071c294cf9eda3538e86f53158bbb3db8b.php',
|
2874 |
-
'c' => '__TwigTemplate_21549c984e33c51910634335892378071c294cf9eda3538e86f53158bbb3db8b',
|
2875 |
-
'i' => 'g',
|
2876 |
-
),
|
2877 |
'__TwigTemplate_21cfb7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099' =>
|
2878 |
array (
|
2879 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '21' . DIRECTORY_SEPARATOR . 'cf' . DIRECTORY_SEPARATOR . 'b7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099.php',
|
@@ -2916,36 +2880,12 @@
|
|
2916 |
'c' => '__TwigTemplate_2e4133d05bb6c6796937bc9a3340d448d39d5e6c81ad15c2e3e8d9fa2be2d09b',
|
2917 |
'i' => 'g',
|
2918 |
),
|
2919 |
-
'__TwigTemplate_329deb0ec180c4f8841124bdaf197b12ef9a98a20063c07a36cdeb9375af3c8e' =>
|
2920 |
-
array (
|
2921 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '32' . DIRECTORY_SEPARATOR . '9d' . DIRECTORY_SEPARATOR . 'eb0ec180c4f8841124bdaf197b12ef9a98a20063c07a36cdeb9375af3c8e.php',
|
2922 |
-
'c' => '__TwigTemplate_329deb0ec180c4f8841124bdaf197b12ef9a98a20063c07a36cdeb9375af3c8e',
|
2923 |
-
'i' => 'g',
|
2924 |
-
),
|
2925 |
'__TwigTemplate_33e16cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc' =>
|
2926 |
array (
|
2927 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '33' . DIRECTORY_SEPARATOR . 'e1' . DIRECTORY_SEPARATOR . '6cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc.php',
|
2928 |
'c' => '__TwigTemplate_33e16cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc',
|
2929 |
'i' => 'g',
|
2930 |
),
|
2931 |
-
'__TwigTemplate_35f5b771fa3fe38ac3b01abb483d7c344c4d8911ded676dda19493aaef438958' =>
|
2932 |
-
array (
|
2933 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '35' . DIRECTORY_SEPARATOR . 'f5' . DIRECTORY_SEPARATOR . 'b771fa3fe38ac3b01abb483d7c344c4d8911ded676dda19493aaef438958.php',
|
2934 |
-
'c' => '__TwigTemplate_35f5b771fa3fe38ac3b01abb483d7c344c4d8911ded676dda19493aaef438958',
|
2935 |
-
'i' => 'g',
|
2936 |
-
),
|
2937 |
-
'__TwigTemplate_3714fa01bbe4d4ffa4f03a4cba6fb9acbd490824785b969c9e705534675c60f5' =>
|
2938 |
-
array (
|
2939 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '37' . DIRECTORY_SEPARATOR . '14' . DIRECTORY_SEPARATOR . 'fa01bbe4d4ffa4f03a4cba6fb9acbd490824785b969c9e705534675c60f5.php',
|
2940 |
-
'c' => '__TwigTemplate_3714fa01bbe4d4ffa4f03a4cba6fb9acbd490824785b969c9e705534675c60f5',
|
2941 |
-
'i' => 'g',
|
2942 |
-
),
|
2943 |
-
'__TwigTemplate_3bab47dfc4fbc3c5a406c1aa6b31c84f3f484fb540d2bac9f23124f34560b65d' =>
|
2944 |
-
array (
|
2945 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '3b' . DIRECTORY_SEPARATOR . 'ab' . DIRECTORY_SEPARATOR . '47dfc4fbc3c5a406c1aa6b31c84f3f484fb540d2bac9f23124f34560b65d.php',
|
2946 |
-
'c' => '__TwigTemplate_3bab47dfc4fbc3c5a406c1aa6b31c84f3f484fb540d2bac9f23124f34560b65d',
|
2947 |
-
'i' => 'g',
|
2948 |
-
),
|
2949 |
'__TwigTemplate_43d9a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c' =>
|
2950 |
array (
|
2951 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '43' . DIRECTORY_SEPARATOR . 'd9' . DIRECTORY_SEPARATOR . 'a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c.php',
|
@@ -2958,18 +2898,6 @@
|
|
2958 |
'c' => '__TwigTemplate_44e780d28fcb39e51f58b8da586efcf36a11fa245f32a8e34b91a5cf80c9f32c',
|
2959 |
'i' => 'g',
|
2960 |
),
|
2961 |
-
'__TwigTemplate_46ed759a94b51b01ee816f1284b0d720be675cc825203ec0e8eeb8523a08688f' =>
|
2962 |
-
array (
|
2963 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '46' . DIRECTORY_SEPARATOR . 'ed' . DIRECTORY_SEPARATOR . '759a94b51b01ee816f1284b0d720be675cc825203ec0e8eeb8523a08688f.php',
|
2964 |
-
'c' => '__TwigTemplate_46ed759a94b51b01ee816f1284b0d720be675cc825203ec0e8eeb8523a08688f',
|
2965 |
-
'i' => 'g',
|
2966 |
-
),
|
2967 |
-
'__TwigTemplate_49294ad9cd36d21fe430ba084a63deb5d45e92fe34f3684d5fd5e04e7ceb6b55' =>
|
2968 |
-
array (
|
2969 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '49' . DIRECTORY_SEPARATOR . '29' . DIRECTORY_SEPARATOR . '4ad9cd36d21fe430ba084a63deb5d45e92fe34f3684d5fd5e04e7ceb6b55.php',
|
2970 |
-
'c' => '__TwigTemplate_49294ad9cd36d21fe430ba084a63deb5d45e92fe34f3684d5fd5e04e7ceb6b55',
|
2971 |
-
'i' => 'g',
|
2972 |
-
),
|
2973 |
'__TwigTemplate_4932ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a' =>
|
2974 |
array (
|
2975 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '49' . DIRECTORY_SEPARATOR . '32' . DIRECTORY_SEPARATOR . 'ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a.php',
|
@@ -2982,12 +2910,6 @@
|
|
2982 |
'c' => '__TwigTemplate_4b73ad41c82ac11e1da2a2b82814007e2577ceed36443b62877d9d35f45941e0',
|
2983 |
'i' => 'g',
|
2984 |
),
|
2985 |
-
'__TwigTemplate_51ae339e7b73209ab3096bb8373aca1202e04782f6d750bff88dcf9ddce7b8a6' =>
|
2986 |
-
array (
|
2987 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '51' . DIRECTORY_SEPARATOR . 'ae' . DIRECTORY_SEPARATOR . '339e7b73209ab3096bb8373aca1202e04782f6d750bff88dcf9ddce7b8a6.php',
|
2988 |
-
'c' => '__TwigTemplate_51ae339e7b73209ab3096bb8373aca1202e04782f6d750bff88dcf9ddce7b8a6',
|
2989 |
-
'i' => 'g',
|
2990 |
-
),
|
2991 |
'__TwigTemplate_5438397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543' =>
|
2992 |
array (
|
2993 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '54' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . '397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543.php',
|
@@ -3036,30 +2958,12 @@
|
|
3036 |
'c' => '__TwigTemplate_6ba7e4e0127d71c495538e6589eb4449b221341af0d97c3095751a16d5f18d65',
|
3037 |
'i' => 'g',
|
3038 |
),
|
3039 |
-
'__TwigTemplate_6bc867b118d27a8b0e303fbc9b3c0a4bf1ad9590bd15e7efb47928d649b191b7' =>
|
3040 |
-
array (
|
3041 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6b' . DIRECTORY_SEPARATOR . 'c8' . DIRECTORY_SEPARATOR . '67b118d27a8b0e303fbc9b3c0a4bf1ad9590bd15e7efb47928d649b191b7.php',
|
3042 |
-
'c' => '__TwigTemplate_6bc867b118d27a8b0e303fbc9b3c0a4bf1ad9590bd15e7efb47928d649b191b7',
|
3043 |
-
'i' => 'g',
|
3044 |
-
),
|
3045 |
-
'__TwigTemplate_6cb171aa729c805f35e7a349ef5c11984f7f8eb59474c0b463ce70cd8536e0e2' =>
|
3046 |
-
array (
|
3047 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6c' . DIRECTORY_SEPARATOR . 'b1' . DIRECTORY_SEPARATOR . '71aa729c805f35e7a349ef5c11984f7f8eb59474c0b463ce70cd8536e0e2.php',
|
3048 |
-
'c' => '__TwigTemplate_6cb171aa729c805f35e7a349ef5c11984f7f8eb59474c0b463ce70cd8536e0e2',
|
3049 |
-
'i' => 'g',
|
3050 |
-
),
|
3051 |
'__TwigTemplate_6e01f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1' =>
|
3052 |
array (
|
3053 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6e' . DIRECTORY_SEPARATOR . '01' . DIRECTORY_SEPARATOR . 'f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1.php',
|
3054 |
'c' => '__TwigTemplate_6e01f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1',
|
3055 |
'i' => 'g',
|
3056 |
),
|
3057 |
-
'__TwigTemplate_6ed17afc566bba82f63196085117e4f7492ff0fd119cd986c8f3be11f55efdb0' =>
|
3058 |
-
array (
|
3059 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6e' . DIRECTORY_SEPARATOR . 'd1' . DIRECTORY_SEPARATOR . '7afc566bba82f63196085117e4f7492ff0fd119cd986c8f3be11f55efdb0.php',
|
3060 |
-
'c' => '__TwigTemplate_6ed17afc566bba82f63196085117e4f7492ff0fd119cd986c8f3be11f55efdb0',
|
3061 |
-
'i' => 'g',
|
3062 |
-
),
|
3063 |
'__TwigTemplate_70fdf46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854' =>
|
3064 |
array (
|
3065 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '70' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . 'f46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854.php',
|
@@ -3084,36 +2988,12 @@
|
|
3084 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
3085 |
'i' => 'g',
|
3086 |
),
|
3087 |
-
'__TwigTemplate_7a118b4d92f97f1deee45684469b3beb98e214e0d5a32c9a259b9bcf81a41145' =>
|
3088 |
-
array (
|
3089 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '7a' . DIRECTORY_SEPARATOR . '11' . DIRECTORY_SEPARATOR . '8b4d92f97f1deee45684469b3beb98e214e0d5a32c9a259b9bcf81a41145.php',
|
3090 |
-
'c' => '__TwigTemplate_7a118b4d92f97f1deee45684469b3beb98e214e0d5a32c9a259b9bcf81a41145',
|
3091 |
-
'i' => 'g',
|
3092 |
-
),
|
3093 |
-
'__TwigTemplate_82b0255fefe74fca92677a6a96c9e569117eabff494d93e0b5f6b38cdaaea0b0' =>
|
3094 |
-
array (
|
3095 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '82' . DIRECTORY_SEPARATOR . 'b0' . DIRECTORY_SEPARATOR . '255fefe74fca92677a6a96c9e569117eabff494d93e0b5f6b38cdaaea0b0.php',
|
3096 |
-
'c' => '__TwigTemplate_82b0255fefe74fca92677a6a96c9e569117eabff494d93e0b5f6b38cdaaea0b0',
|
3097 |
-
'i' => 'g',
|
3098 |
-
),
|
3099 |
'__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
3100 |
array (
|
3101 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
3102 |
'c' => '__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740',
|
3103 |
'i' => 'g',
|
3104 |
),
|
3105 |
-
'__TwigTemplate_862f5bd0aae3cdc2eb247965d6758532defae4940dfe30c68378e622f1d1148c' =>
|
3106 |
-
array (
|
3107 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '86' . DIRECTORY_SEPARATOR . '2f' . DIRECTORY_SEPARATOR . '5bd0aae3cdc2eb247965d6758532defae4940dfe30c68378e622f1d1148c.php',
|
3108 |
-
'c' => '__TwigTemplate_862f5bd0aae3cdc2eb247965d6758532defae4940dfe30c68378e622f1d1148c',
|
3109 |
-
'i' => 'g',
|
3110 |
-
),
|
3111 |
-
'__TwigTemplate_869ac7d2b6b1d89bdcee51070c36a6ea888f629b97a5bad0c33296cf96206d44' =>
|
3112 |
-
array (
|
3113 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '86' . DIRECTORY_SEPARATOR . '9a' . DIRECTORY_SEPARATOR . 'c7d2b6b1d89bdcee51070c36a6ea888f629b97a5bad0c33296cf96206d44.php',
|
3114 |
-
'c' => '__TwigTemplate_869ac7d2b6b1d89bdcee51070c36a6ea888f629b97a5bad0c33296cf96206d44',
|
3115 |
-
'i' => 'g',
|
3116 |
-
),
|
3117 |
'__TwigTemplate_8738aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4' =>
|
3118 |
array (
|
3119 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '87' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . 'aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4.php',
|
@@ -3126,12 +3006,6 @@
|
|
3126 |
'c' => '__TwigTemplate_89d906e4eee3169b93edc33ec32aac5ff78e197d36969e2b8d0437bf2f0283a2',
|
3127 |
'i' => 'g',
|
3128 |
),
|
3129 |
-
'__TwigTemplate_8ab3a406d66e131df0ce2cd5f806db207bd6b5c7b1b0a7d4aea4080218183ebd' =>
|
3130 |
-
array (
|
3131 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '8a' . DIRECTORY_SEPARATOR . 'b3' . DIRECTORY_SEPARATOR . 'a406d66e131df0ce2cd5f806db207bd6b5c7b1b0a7d4aea4080218183ebd.php',
|
3132 |
-
'c' => '__TwigTemplate_8ab3a406d66e131df0ce2cd5f806db207bd6b5c7b1b0a7d4aea4080218183ebd',
|
3133 |
-
'i' => 'g',
|
3134 |
-
),
|
3135 |
'__TwigTemplate_8c5c438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f' =>
|
3136 |
array (
|
3137 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '8c' . DIRECTORY_SEPARATOR . '5c' . DIRECTORY_SEPARATOR . '438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f.php',
|
@@ -3150,18 +3024,6 @@
|
|
3150 |
'c' => '__TwigTemplate_93258ffeefdb7cc88b2ceebeb99c01d6127558f2032d79cdd2c8f438717cc6a9',
|
3151 |
'i' => 'g',
|
3152 |
),
|
3153 |
-
'__TwigTemplate_93a570aa246f915b25d0cc5498a75e6e200a989b8055e168a3f0ca025a42f30b' =>
|
3154 |
-
array (
|
3155 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '93' . DIRECTORY_SEPARATOR . 'a5' . DIRECTORY_SEPARATOR . '70aa246f915b25d0cc5498a75e6e200a989b8055e168a3f0ca025a42f30b.php',
|
3156 |
-
'c' => '__TwigTemplate_93a570aa246f915b25d0cc5498a75e6e200a989b8055e168a3f0ca025a42f30b',
|
3157 |
-
'i' => 'g',
|
3158 |
-
),
|
3159 |
-
'__TwigTemplate_93f23cf1a8174a2e643e26f4d95003178715074614b7db6a07d5167ccf4a8b7e' =>
|
3160 |
-
array (
|
3161 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '93' . DIRECTORY_SEPARATOR . 'f2' . DIRECTORY_SEPARATOR . '3cf1a8174a2e643e26f4d95003178715074614b7db6a07d5167ccf4a8b7e.php',
|
3162 |
-
'c' => '__TwigTemplate_93f23cf1a8174a2e643e26f4d95003178715074614b7db6a07d5167ccf4a8b7e',
|
3163 |
-
'i' => 'g',
|
3164 |
-
),
|
3165 |
'__TwigTemplate_943e432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71' =>
|
3166 |
array (
|
3167 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '94' . DIRECTORY_SEPARATOR . '3e' . DIRECTORY_SEPARATOR . '432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71.php',
|
@@ -3186,24 +3048,12 @@
|
|
3186 |
'c' => '__TwigTemplate_9c3c1820db174d7efba416743bbb9bf744e8454155f8129f69296092b49c45d3',
|
3187 |
'i' => 'g',
|
3188 |
),
|
3189 |
-
'__TwigTemplate_a0b5c5f142553bce77d9ecb2d6ce8b7a93ce48a0598b12e09b72553299358e12' =>
|
3190 |
-
array (
|
3191 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a0' . DIRECTORY_SEPARATOR . 'b5' . DIRECTORY_SEPARATOR . 'c5f142553bce77d9ecb2d6ce8b7a93ce48a0598b12e09b72553299358e12.php',
|
3192 |
-
'c' => '__TwigTemplate_a0b5c5f142553bce77d9ecb2d6ce8b7a93ce48a0598b12e09b72553299358e12',
|
3193 |
-
'i' => 'g',
|
3194 |
-
),
|
3195 |
'__TwigTemplate_a2d63fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd' =>
|
3196 |
array (
|
3197 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a2' . DIRECTORY_SEPARATOR . 'd6' . DIRECTORY_SEPARATOR . '3fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd.php',
|
3198 |
'c' => '__TwigTemplate_a2d63fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd',
|
3199 |
'i' => 'g',
|
3200 |
),
|
3201 |
-
'__TwigTemplate_a370ab0617601b3ce5e7887582c71bde1106963956baa13cd4fc1bffe5a0a57f' =>
|
3202 |
-
array (
|
3203 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a3' . DIRECTORY_SEPARATOR . '70' . DIRECTORY_SEPARATOR . 'ab0617601b3ce5e7887582c71bde1106963956baa13cd4fc1bffe5a0a57f.php',
|
3204 |
-
'c' => '__TwigTemplate_a370ab0617601b3ce5e7887582c71bde1106963956baa13cd4fc1bffe5a0a57f',
|
3205 |
-
'i' => 'g',
|
3206 |
-
),
|
3207 |
'__TwigTemplate_a54faca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a' =>
|
3208 |
array (
|
3209 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a5' . DIRECTORY_SEPARATOR . '4f' . DIRECTORY_SEPARATOR . 'aca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a.php',
|
@@ -3240,12 +3090,6 @@
|
|
3240 |
'c' => '__TwigTemplate_aa616d3f918f480e4f6f0dabdeee1324d87d759ec18352a21a1cfcee8802f528',
|
3241 |
'i' => 'g',
|
3242 |
),
|
3243 |
-
'__TwigTemplate_af91c04e4ada13bcc6fc2d99142467f2d7aa2f7dc5b5e55b0cfab5398039de83' =>
|
3244 |
-
array (
|
3245 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'af' . DIRECTORY_SEPARATOR . '91' . DIRECTORY_SEPARATOR . 'c04e4ada13bcc6fc2d99142467f2d7aa2f7dc5b5e55b0cfab5398039de83.php',
|
3246 |
-
'c' => '__TwigTemplate_af91c04e4ada13bcc6fc2d99142467f2d7aa2f7dc5b5e55b0cfab5398039de83',
|
3247 |
-
'i' => 'g',
|
3248 |
-
),
|
3249 |
'__TwigTemplate_b1af5b1cfc01f62c430dd9a064f9459384693440bf30e05d6a34dcdfa47540e4' =>
|
3250 |
array (
|
3251 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'b1' . DIRECTORY_SEPARATOR . 'af' . DIRECTORY_SEPARATOR . '5b1cfc01f62c430dd9a064f9459384693440bf30e05d6a34dcdfa47540e4.php',
|
@@ -3264,18 +3108,6 @@
|
|
3264 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
3265 |
'i' => 'g',
|
3266 |
),
|
3267 |
-
'__TwigTemplate_b7740cbe0a1d12ad983e03d0c9bb369ea941ba9f941c5cf86a696dff0bf8fbca' =>
|
3268 |
-
array (
|
3269 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'b7' . DIRECTORY_SEPARATOR . '74' . DIRECTORY_SEPARATOR . '0cbe0a1d12ad983e03d0c9bb369ea941ba9f941c5cf86a696dff0bf8fbca.php',
|
3270 |
-
'c' => '__TwigTemplate_b7740cbe0a1d12ad983e03d0c9bb369ea941ba9f941c5cf86a696dff0bf8fbca',
|
3271 |
-
'i' => 'g',
|
3272 |
-
),
|
3273 |
-
'__TwigTemplate_bd58105129520dc62d0ed213bddf5dc0730cd1c01a6fe246415e27736cfa717f' =>
|
3274 |
-
array (
|
3275 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'bd' . DIRECTORY_SEPARATOR . '58' . DIRECTORY_SEPARATOR . '105129520dc62d0ed213bddf5dc0730cd1c01a6fe246415e27736cfa717f.php',
|
3276 |
-
'c' => '__TwigTemplate_bd58105129520dc62d0ed213bddf5dc0730cd1c01a6fe246415e27736cfa717f',
|
3277 |
-
'i' => 'g',
|
3278 |
-
),
|
3279 |
'__TwigTemplate_c1804f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
3280 |
array (
|
3281 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
@@ -3288,42 +3120,12 @@
|
|
3288 |
'c' => '__TwigTemplate_c7b4ce46e9ae5c124b3dbcfdc4840954da6e06763de6bef42553c2fec4a6f949',
|
3289 |
'i' => 'g',
|
3290 |
),
|
3291 |
-
'__TwigTemplate_cb6d407da76863fefdcf32705abf50873f55ca4a7aaee29919bff38771bc5990' =>
|
3292 |
-
array (
|
3293 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'cb' . DIRECTORY_SEPARATOR . '6d' . DIRECTORY_SEPARATOR . '407da76863fefdcf32705abf50873f55ca4a7aaee29919bff38771bc5990.php',
|
3294 |
-
'c' => '__TwigTemplate_cb6d407da76863fefdcf32705abf50873f55ca4a7aaee29919bff38771bc5990',
|
3295 |
-
'i' => 'g',
|
3296 |
-
),
|
3297 |
-
'__TwigTemplate_cf9e797599131d5cc2805a27b7f8ba6551f70b0a339a263a0186f575ab3fc4e7' =>
|
3298 |
-
array (
|
3299 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'cf' . DIRECTORY_SEPARATOR . '9e' . DIRECTORY_SEPARATOR . '797599131d5cc2805a27b7f8ba6551f70b0a339a263a0186f575ab3fc4e7.php',
|
3300 |
-
'c' => '__TwigTemplate_cf9e797599131d5cc2805a27b7f8ba6551f70b0a339a263a0186f575ab3fc4e7',
|
3301 |
-
'i' => 'g',
|
3302 |
-
),
|
3303 |
'__TwigTemplate_d0fd53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed' =>
|
3304 |
array (
|
3305 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd0' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . '53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed.php',
|
3306 |
'c' => '__TwigTemplate_d0fd53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed',
|
3307 |
'i' => 'g',
|
3308 |
),
|
3309 |
-
'__TwigTemplate_d17e18699bb993718ba965d9361d31c10b44921f8fe8eb0781ccafb2fee8fd68' =>
|
3310 |
-
array (
|
3311 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd1' . DIRECTORY_SEPARATOR . '7e' . DIRECTORY_SEPARATOR . '18699bb993718ba965d9361d31c10b44921f8fe8eb0781ccafb2fee8fd68.php',
|
3312 |
-
'c' => '__TwigTemplate_d17e18699bb993718ba965d9361d31c10b44921f8fe8eb0781ccafb2fee8fd68',
|
3313 |
-
'i' => 'g',
|
3314 |
-
),
|
3315 |
-
'__TwigTemplate_d3f3335fc71118036792c4c9e75e0e70bf7091b1f569bd5590c98f0e54d84cb2' =>
|
3316 |
-
array (
|
3317 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd3' . DIRECTORY_SEPARATOR . 'f3' . DIRECTORY_SEPARATOR . '335fc71118036792c4c9e75e0e70bf7091b1f569bd5590c98f0e54d84cb2.php',
|
3318 |
-
'c' => '__TwigTemplate_d3f3335fc71118036792c4c9e75e0e70bf7091b1f569bd5590c98f0e54d84cb2',
|
3319 |
-
'i' => 'g',
|
3320 |
-
),
|
3321 |
-
'__TwigTemplate_d5d752a8ad80734954cb45cc46492036db7869bbe1923929a300900e979b8482' =>
|
3322 |
-
array (
|
3323 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd5' . DIRECTORY_SEPARATOR . 'd7' . DIRECTORY_SEPARATOR . '52a8ad80734954cb45cc46492036db7869bbe1923929a300900e979b8482.php',
|
3324 |
-
'c' => '__TwigTemplate_d5d752a8ad80734954cb45cc46492036db7869bbe1923929a300900e979b8482',
|
3325 |
-
'i' => 'g',
|
3326 |
-
),
|
3327 |
'__TwigTemplate_dc78b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545' =>
|
3328 |
array (
|
3329 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'dc' . DIRECTORY_SEPARATOR . '78' . DIRECTORY_SEPARATOR . 'b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php',
|
@@ -3336,12 +3138,6 @@
|
|
3336 |
'c' => '__TwigTemplate_de0716785a3d8825b0cbf777e4c74a47dba507a53d659b5dce15bcb5ef20b41b',
|
3337 |
'i' => 'g',
|
3338 |
),
|
3339 |
-
'__TwigTemplate_de80d3e7f783d4ca654ee9ec55cc2e17034e25e1447990e186fe4f4b4f459c5c' =>
|
3340 |
-
array (
|
3341 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'de' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . 'd3e7f783d4ca654ee9ec55cc2e17034e25e1447990e186fe4f4b4f459c5c.php',
|
3342 |
-
'c' => '__TwigTemplate_de80d3e7f783d4ca654ee9ec55cc2e17034e25e1447990e186fe4f4b4f459c5c',
|
3343 |
-
'i' => 'g',
|
3344 |
-
),
|
3345 |
'__TwigTemplate_e0be9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec' =>
|
3346 |
array (
|
3347 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'e0' . DIRECTORY_SEPARATOR . 'be' . DIRECTORY_SEPARATOR . '9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec.php',
|
@@ -3384,12 +3180,6 @@
|
|
3384 |
'c' => '__TwigTemplate_eeeaebb8da9bb78c051017293e6e38b7b9b5b9ce2693c48fc571b498eaf0027d',
|
3385 |
'i' => 'g',
|
3386 |
),
|
3387 |
-
'__TwigTemplate_f05703afef869c4fea0061567a42872d377423a41be579565d0cdf32260df05f' =>
|
3388 |
-
array (
|
3389 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'f0' . DIRECTORY_SEPARATOR . '57' . DIRECTORY_SEPARATOR . '03afef869c4fea0061567a42872d377423a41be579565d0cdf32260df05f.php',
|
3390 |
-
'c' => '__TwigTemplate_f05703afef869c4fea0061567a42872d377423a41be579565d0cdf32260df05f',
|
3391 |
-
'i' => 'g',
|
3392 |
-
),
|
3393 |
'__TwigTemplate_f0915421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb' =>
|
3394 |
array (
|
3395 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'f0' . DIRECTORY_SEPARATOR . '91' . DIRECTORY_SEPARATOR . '5421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb.php',
|
@@ -5015,18 +4805,6 @@
|
|
5015 |
'i' => 'g',
|
5016 |
'r' => 'y',
|
5017 |
),
|
5018 |
-
'twig.04.18.4c73b8c7ce7223d1dfe1e6f79fe17690e8b74969b07b58a06c2994a0d9e6' =>
|
5019 |
-
array (
|
5020 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '04' . DIRECTORY_SEPARATOR . '18' . DIRECTORY_SEPARATOR . '4c73b8c7ce7223d1dfe1e6f79fe17690e8b74969b07b58a06c2994a0d9e6.php',
|
5021 |
-
'c' => '__TwigTemplate_04184c73b8c7ce7223d1dfe1e6f79fe17690e8b74969b07b58a06c2994a0d9e6',
|
5022 |
-
'i' => 'g',
|
5023 |
-
),
|
5024 |
-
'twig.06.37.d929bcaa80c8f95cc2e341066aa553f8bc8d62a627a097e42516253258f7' =>
|
5025 |
-
array (
|
5026 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '06' . DIRECTORY_SEPARATOR . '37' . DIRECTORY_SEPARATOR . 'd929bcaa80c8f95cc2e341066aa553f8bc8d62a627a097e42516253258f7.php',
|
5027 |
-
'c' => '__TwigTemplate_0637d929bcaa80c8f95cc2e341066aa553f8bc8d62a627a097e42516253258f7',
|
5028 |
-
'i' => 'g',
|
5029 |
-
),
|
5030 |
'twig.08.e4.4d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00' =>
|
5031 |
array (
|
5032 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '08' . DIRECTORY_SEPARATOR . 'e4' . DIRECTORY_SEPARATOR . '4d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00.php',
|
@@ -5039,30 +4817,12 @@
|
|
5039 |
'c' => '__TwigTemplate_08e7a5bd54ab9b43437fff4031a8e8c3224eb244e422102529eb80b45d19a1dc',
|
5040 |
'i' => 'g',
|
5041 |
),
|
5042 |
-
'twig.0a.29.c1dadb694d38bbd3df612d552f2b3f8c013559207293814d0b2b4fa0d366' =>
|
5043 |
-
array (
|
5044 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0a' . DIRECTORY_SEPARATOR . '29' . DIRECTORY_SEPARATOR . 'c1dadb694d38bbd3df612d552f2b3f8c013559207293814d0b2b4fa0d366.php',
|
5045 |
-
'c' => '__TwigTemplate_0a29c1dadb694d38bbd3df612d552f2b3f8c013559207293814d0b2b4fa0d366',
|
5046 |
-
'i' => 'g',
|
5047 |
-
),
|
5048 |
'twig.0a.aa.4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46' =>
|
5049 |
array (
|
5050 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0a' . DIRECTORY_SEPARATOR . 'aa' . DIRECTORY_SEPARATOR . '4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46.php',
|
5051 |
'c' => '__TwigTemplate_0aaa4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46',
|
5052 |
'i' => 'g',
|
5053 |
),
|
5054 |
-
'twig.0c.c6.4b226b86022e2ab387c055486effa6a739b5a4e7f519aec8bdc3b1a46402' =>
|
5055 |
-
array (
|
5056 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0c' . DIRECTORY_SEPARATOR . 'c6' . DIRECTORY_SEPARATOR . '4b226b86022e2ab387c055486effa6a739b5a4e7f519aec8bdc3b1a46402.php',
|
5057 |
-
'c' => '__TwigTemplate_0cc64b226b86022e2ab387c055486effa6a739b5a4e7f519aec8bdc3b1a46402',
|
5058 |
-
'i' => 'g',
|
5059 |
-
),
|
5060 |
-
'twig.15.c5.40b97f3b673d1c5b63d048cc19cdfa170289c32a08f3fd7e9922a5c3de8d' =>
|
5061 |
-
array (
|
5062 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '15' . DIRECTORY_SEPARATOR . 'c5' . DIRECTORY_SEPARATOR . '40b97f3b673d1c5b63d048cc19cdfa170289c32a08f3fd7e9922a5c3de8d.php',
|
5063 |
-
'c' => '__TwigTemplate_15c540b97f3b673d1c5b63d048cc19cdfa170289c32a08f3fd7e9922a5c3de8d',
|
5064 |
-
'i' => 'g',
|
5065 |
-
),
|
5066 |
'twig.1d.b4.41d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550' =>
|
5067 |
array (
|
5068 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '1d' . DIRECTORY_SEPARATOR . 'b4' . DIRECTORY_SEPARATOR . '41d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550.php',
|
@@ -5087,12 +4847,6 @@
|
|
5087 |
'c' => '__TwigTemplate_1fc7b71ee92dc515fa667ee7831c98ab6c28baf9d40bd7616eb6cebd71888ce5',
|
5088 |
'i' => 'g',
|
5089 |
),
|
5090 |
-
'twig.21.54.9c984e33c51910634335892378071c294cf9eda3538e86f53158bbb3db8b' =>
|
5091 |
-
array (
|
5092 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '21' . DIRECTORY_SEPARATOR . '54' . DIRECTORY_SEPARATOR . '9c984e33c51910634335892378071c294cf9eda3538e86f53158bbb3db8b.php',
|
5093 |
-
'c' => '__TwigTemplate_21549c984e33c51910634335892378071c294cf9eda3538e86f53158bbb3db8b',
|
5094 |
-
'i' => 'g',
|
5095 |
-
),
|
5096 |
'twig.21.cf.b7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099' =>
|
5097 |
array (
|
5098 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '21' . DIRECTORY_SEPARATOR . 'cf' . DIRECTORY_SEPARATOR . 'b7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099.php',
|
@@ -5135,36 +4889,12 @@
|
|
5135 |
'c' => '__TwigTemplate_2e4133d05bb6c6796937bc9a3340d448d39d5e6c81ad15c2e3e8d9fa2be2d09b',
|
5136 |
'i' => 'g',
|
5137 |
),
|
5138 |
-
'twig.32.9d.eb0ec180c4f8841124bdaf197b12ef9a98a20063c07a36cdeb9375af3c8e' =>
|
5139 |
-
array (
|
5140 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '32' . DIRECTORY_SEPARATOR . '9d' . DIRECTORY_SEPARATOR . 'eb0ec180c4f8841124bdaf197b12ef9a98a20063c07a36cdeb9375af3c8e.php',
|
5141 |
-
'c' => '__TwigTemplate_329deb0ec180c4f8841124bdaf197b12ef9a98a20063c07a36cdeb9375af3c8e',
|
5142 |
-
'i' => 'g',
|
5143 |
-
),
|
5144 |
'twig.33.e1.6cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc' =>
|
5145 |
array (
|
5146 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '33' . DIRECTORY_SEPARATOR . 'e1' . DIRECTORY_SEPARATOR . '6cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc.php',
|
5147 |
'c' => '__TwigTemplate_33e16cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc',
|
5148 |
'i' => 'g',
|
5149 |
),
|
5150 |
-
'twig.35.f5.b771fa3fe38ac3b01abb483d7c344c4d8911ded676dda19493aaef438958' =>
|
5151 |
-
array (
|
5152 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '35' . DIRECTORY_SEPARATOR . 'f5' . DIRECTORY_SEPARATOR . 'b771fa3fe38ac3b01abb483d7c344c4d8911ded676dda19493aaef438958.php',
|
5153 |
-
'c' => '__TwigTemplate_35f5b771fa3fe38ac3b01abb483d7c344c4d8911ded676dda19493aaef438958',
|
5154 |
-
'i' => 'g',
|
5155 |
-
),
|
5156 |
-
'twig.37.14.fa01bbe4d4ffa4f03a4cba6fb9acbd490824785b969c9e705534675c60f5' =>
|
5157 |
-
array (
|
5158 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '37' . DIRECTORY_SEPARATOR . '14' . DIRECTORY_SEPARATOR . 'fa01bbe4d4ffa4f03a4cba6fb9acbd490824785b969c9e705534675c60f5.php',
|
5159 |
-
'c' => '__TwigTemplate_3714fa01bbe4d4ffa4f03a4cba6fb9acbd490824785b969c9e705534675c60f5',
|
5160 |
-
'i' => 'g',
|
5161 |
-
),
|
5162 |
-
'twig.3b.ab.47dfc4fbc3c5a406c1aa6b31c84f3f484fb540d2bac9f23124f34560b65d' =>
|
5163 |
-
array (
|
5164 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '3b' . DIRECTORY_SEPARATOR . 'ab' . DIRECTORY_SEPARATOR . '47dfc4fbc3c5a406c1aa6b31c84f3f484fb540d2bac9f23124f34560b65d.php',
|
5165 |
-
'c' => '__TwigTemplate_3bab47dfc4fbc3c5a406c1aa6b31c84f3f484fb540d2bac9f23124f34560b65d',
|
5166 |
-
'i' => 'g',
|
5167 |
-
),
|
5168 |
'twig.43.d9.a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c' =>
|
5169 |
array (
|
5170 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '43' . DIRECTORY_SEPARATOR . 'd9' . DIRECTORY_SEPARATOR . 'a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c.php',
|
@@ -5177,18 +4907,6 @@
|
|
5177 |
'c' => '__TwigTemplate_44e780d28fcb39e51f58b8da586efcf36a11fa245f32a8e34b91a5cf80c9f32c',
|
5178 |
'i' => 'g',
|
5179 |
),
|
5180 |
-
'twig.46.ed.759a94b51b01ee816f1284b0d720be675cc825203ec0e8eeb8523a08688f' =>
|
5181 |
-
array (
|
5182 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '46' . DIRECTORY_SEPARATOR . 'ed' . DIRECTORY_SEPARATOR . '759a94b51b01ee816f1284b0d720be675cc825203ec0e8eeb8523a08688f.php',
|
5183 |
-
'c' => '__TwigTemplate_46ed759a94b51b01ee816f1284b0d720be675cc825203ec0e8eeb8523a08688f',
|
5184 |
-
'i' => 'g',
|
5185 |
-
),
|
5186 |
-
'twig.49.29.4ad9cd36d21fe430ba084a63deb5d45e92fe34f3684d5fd5e04e7ceb6b55' =>
|
5187 |
-
array (
|
5188 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '49' . DIRECTORY_SEPARATOR . '29' . DIRECTORY_SEPARATOR . '4ad9cd36d21fe430ba084a63deb5d45e92fe34f3684d5fd5e04e7ceb6b55.php',
|
5189 |
-
'c' => '__TwigTemplate_49294ad9cd36d21fe430ba084a63deb5d45e92fe34f3684d5fd5e04e7ceb6b55',
|
5190 |
-
'i' => 'g',
|
5191 |
-
),
|
5192 |
'twig.49.32.ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a' =>
|
5193 |
array (
|
5194 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '49' . DIRECTORY_SEPARATOR . '32' . DIRECTORY_SEPARATOR . 'ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a.php',
|
@@ -5201,12 +4919,6 @@
|
|
5201 |
'c' => '__TwigTemplate_4b73ad41c82ac11e1da2a2b82814007e2577ceed36443b62877d9d35f45941e0',
|
5202 |
'i' => 'g',
|
5203 |
),
|
5204 |
-
'twig.51.ae.339e7b73209ab3096bb8373aca1202e04782f6d750bff88dcf9ddce7b8a6' =>
|
5205 |
-
array (
|
5206 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '51' . DIRECTORY_SEPARATOR . 'ae' . DIRECTORY_SEPARATOR . '339e7b73209ab3096bb8373aca1202e04782f6d750bff88dcf9ddce7b8a6.php',
|
5207 |
-
'c' => '__TwigTemplate_51ae339e7b73209ab3096bb8373aca1202e04782f6d750bff88dcf9ddce7b8a6',
|
5208 |
-
'i' => 'g',
|
5209 |
-
),
|
5210 |
'twig.54.38.397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543' =>
|
5211 |
array (
|
5212 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '54' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . '397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543.php',
|
@@ -5255,30 +4967,12 @@
|
|
5255 |
'c' => '__TwigTemplate_6ba7e4e0127d71c495538e6589eb4449b221341af0d97c3095751a16d5f18d65',
|
5256 |
'i' => 'g',
|
5257 |
),
|
5258 |
-
'twig.6b.c8.67b118d27a8b0e303fbc9b3c0a4bf1ad9590bd15e7efb47928d649b191b7' =>
|
5259 |
-
array (
|
5260 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6b' . DIRECTORY_SEPARATOR . 'c8' . DIRECTORY_SEPARATOR . '67b118d27a8b0e303fbc9b3c0a4bf1ad9590bd15e7efb47928d649b191b7.php',
|
5261 |
-
'c' => '__TwigTemplate_6bc867b118d27a8b0e303fbc9b3c0a4bf1ad9590bd15e7efb47928d649b191b7',
|
5262 |
-
'i' => 'g',
|
5263 |
-
),
|
5264 |
-
'twig.6c.b1.71aa729c805f35e7a349ef5c11984f7f8eb59474c0b463ce70cd8536e0e2' =>
|
5265 |
-
array (
|
5266 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6c' . DIRECTORY_SEPARATOR . 'b1' . DIRECTORY_SEPARATOR . '71aa729c805f35e7a349ef5c11984f7f8eb59474c0b463ce70cd8536e0e2.php',
|
5267 |
-
'c' => '__TwigTemplate_6cb171aa729c805f35e7a349ef5c11984f7f8eb59474c0b463ce70cd8536e0e2',
|
5268 |
-
'i' => 'g',
|
5269 |
-
),
|
5270 |
'twig.6e.01.f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1' =>
|
5271 |
array (
|
5272 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6e' . DIRECTORY_SEPARATOR . '01' . DIRECTORY_SEPARATOR . 'f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1.php',
|
5273 |
'c' => '__TwigTemplate_6e01f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1',
|
5274 |
'i' => 'g',
|
5275 |
),
|
5276 |
-
'twig.6e.d1.7afc566bba82f63196085117e4f7492ff0fd119cd986c8f3be11f55efdb0' =>
|
5277 |
-
array (
|
5278 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6e' . DIRECTORY_SEPARATOR . 'd1' . DIRECTORY_SEPARATOR . '7afc566bba82f63196085117e4f7492ff0fd119cd986c8f3be11f55efdb0.php',
|
5279 |
-
'c' => '__TwigTemplate_6ed17afc566bba82f63196085117e4f7492ff0fd119cd986c8f3be11f55efdb0',
|
5280 |
-
'i' => 'g',
|
5281 |
-
),
|
5282 |
'twig.70.fd.f46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854' =>
|
5283 |
array (
|
5284 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '70' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . 'f46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854.php',
|
@@ -5303,36 +4997,12 @@
|
|
5303 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
5304 |
'i' => 'g',
|
5305 |
),
|
5306 |
-
'twig.7a.11.8b4d92f97f1deee45684469b3beb98e214e0d5a32c9a259b9bcf81a41145' =>
|
5307 |
-
array (
|
5308 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '7a' . DIRECTORY_SEPARATOR . '11' . DIRECTORY_SEPARATOR . '8b4d92f97f1deee45684469b3beb98e214e0d5a32c9a259b9bcf81a41145.php',
|
5309 |
-
'c' => '__TwigTemplate_7a118b4d92f97f1deee45684469b3beb98e214e0d5a32c9a259b9bcf81a41145',
|
5310 |
-
'i' => 'g',
|
5311 |
-
),
|
5312 |
-
'twig.82.b0.255fefe74fca92677a6a96c9e569117eabff494d93e0b5f6b38cdaaea0b0' =>
|
5313 |
-
array (
|
5314 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '82' . DIRECTORY_SEPARATOR . 'b0' . DIRECTORY_SEPARATOR . '255fefe74fca92677a6a96c9e569117eabff494d93e0b5f6b38cdaaea0b0.php',
|
5315 |
-
'c' => '__TwigTemplate_82b0255fefe74fca92677a6a96c9e569117eabff494d93e0b5f6b38cdaaea0b0',
|
5316 |
-
'i' => 'g',
|
5317 |
-
),
|
5318 |
'twig.84.a6.c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
5319 |
array (
|
5320 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
5321 |
'c' => '__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740',
|
5322 |
'i' => 'g',
|
5323 |
),
|
5324 |
-
'twig.86.2f.5bd0aae3cdc2eb247965d6758532defae4940dfe30c68378e622f1d1148c' =>
|
5325 |
-
array (
|
5326 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '86' . DIRECTORY_SEPARATOR . '2f' . DIRECTORY_SEPARATOR . '5bd0aae3cdc2eb247965d6758532defae4940dfe30c68378e622f1d1148c.php',
|
5327 |
-
'c' => '__TwigTemplate_862f5bd0aae3cdc2eb247965d6758532defae4940dfe30c68378e622f1d1148c',
|
5328 |
-
'i' => 'g',
|
5329 |
-
),
|
5330 |
-
'twig.86.9a.c7d2b6b1d89bdcee51070c36a6ea888f629b97a5bad0c33296cf96206d44' =>
|
5331 |
-
array (
|
5332 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '86' . DIRECTORY_SEPARATOR . '9a' . DIRECTORY_SEPARATOR . 'c7d2b6b1d89bdcee51070c36a6ea888f629b97a5bad0c33296cf96206d44.php',
|
5333 |
-
'c' => '__TwigTemplate_869ac7d2b6b1d89bdcee51070c36a6ea888f629b97a5bad0c33296cf96206d44',
|
5334 |
-
'i' => 'g',
|
5335 |
-
),
|
5336 |
'twig.87.38.aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4' =>
|
5337 |
array (
|
5338 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '87' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . 'aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4.php',
|
@@ -5345,12 +5015,6 @@
|
|
5345 |
'c' => '__TwigTemplate_89d906e4eee3169b93edc33ec32aac5ff78e197d36969e2b8d0437bf2f0283a2',
|
5346 |
'i' => 'g',
|
5347 |
),
|
5348 |
-
'twig.8a.b3.a406d66e131df0ce2cd5f806db207bd6b5c7b1b0a7d4aea4080218183ebd' =>
|
5349 |
-
array (
|
5350 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '8a' . DIRECTORY_SEPARATOR . 'b3' . DIRECTORY_SEPARATOR . 'a406d66e131df0ce2cd5f806db207bd6b5c7b1b0a7d4aea4080218183ebd.php',
|
5351 |
-
'c' => '__TwigTemplate_8ab3a406d66e131df0ce2cd5f806db207bd6b5c7b1b0a7d4aea4080218183ebd',
|
5352 |
-
'i' => 'g',
|
5353 |
-
),
|
5354 |
'twig.8c.5c.438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f' =>
|
5355 |
array (
|
5356 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '8c' . DIRECTORY_SEPARATOR . '5c' . DIRECTORY_SEPARATOR . '438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f.php',
|
@@ -5369,18 +5033,6 @@
|
|
5369 |
'c' => '__TwigTemplate_93258ffeefdb7cc88b2ceebeb99c01d6127558f2032d79cdd2c8f438717cc6a9',
|
5370 |
'i' => 'g',
|
5371 |
),
|
5372 |
-
'twig.93.a5.70aa246f915b25d0cc5498a75e6e200a989b8055e168a3f0ca025a42f30b' =>
|
5373 |
-
array (
|
5374 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '93' . DIRECTORY_SEPARATOR . 'a5' . DIRECTORY_SEPARATOR . '70aa246f915b25d0cc5498a75e6e200a989b8055e168a3f0ca025a42f30b.php',
|
5375 |
-
'c' => '__TwigTemplate_93a570aa246f915b25d0cc5498a75e6e200a989b8055e168a3f0ca025a42f30b',
|
5376 |
-
'i' => 'g',
|
5377 |
-
),
|
5378 |
-
'twig.93.f2.3cf1a8174a2e643e26f4d95003178715074614b7db6a07d5167ccf4a8b7e' =>
|
5379 |
-
array (
|
5380 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '93' . DIRECTORY_SEPARATOR . 'f2' . DIRECTORY_SEPARATOR . '3cf1a8174a2e643e26f4d95003178715074614b7db6a07d5167ccf4a8b7e.php',
|
5381 |
-
'c' => '__TwigTemplate_93f23cf1a8174a2e643e26f4d95003178715074614b7db6a07d5167ccf4a8b7e',
|
5382 |
-
'i' => 'g',
|
5383 |
-
),
|
5384 |
'twig.94.3e.432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71' =>
|
5385 |
array (
|
5386 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '94' . DIRECTORY_SEPARATOR . '3e' . DIRECTORY_SEPARATOR . '432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71.php',
|
@@ -6341,24 +5993,12 @@
|
|
6341 |
'c' => 'Twig_TokenStream',
|
6342 |
'i' => 'g',
|
6343 |
),
|
6344 |
-
'twig.a0.b5.c5f142553bce77d9ecb2d6ce8b7a93ce48a0598b12e09b72553299358e12' =>
|
6345 |
-
array (
|
6346 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a0' . DIRECTORY_SEPARATOR . 'b5' . DIRECTORY_SEPARATOR . 'c5f142553bce77d9ecb2d6ce8b7a93ce48a0598b12e09b72553299358e12.php',
|
6347 |
-
'c' => '__TwigTemplate_a0b5c5f142553bce77d9ecb2d6ce8b7a93ce48a0598b12e09b72553299358e12',
|
6348 |
-
'i' => 'g',
|
6349 |
-
),
|
6350 |
'twig.a2.d6.3fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd' =>
|
6351 |
array (
|
6352 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a2' . DIRECTORY_SEPARATOR . 'd6' . DIRECTORY_SEPARATOR . '3fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd.php',
|
6353 |
'c' => '__TwigTemplate_a2d63fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd',
|
6354 |
'i' => 'g',
|
6355 |
),
|
6356 |
-
'twig.a3.70.ab0617601b3ce5e7887582c71bde1106963956baa13cd4fc1bffe5a0a57f' =>
|
6357 |
-
array (
|
6358 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a3' . DIRECTORY_SEPARATOR . '70' . DIRECTORY_SEPARATOR . 'ab0617601b3ce5e7887582c71bde1106963956baa13cd4fc1bffe5a0a57f.php',
|
6359 |
-
'c' => '__TwigTemplate_a370ab0617601b3ce5e7887582c71bde1106963956baa13cd4fc1bffe5a0a57f',
|
6360 |
-
'i' => 'g',
|
6361 |
-
),
|
6362 |
'twig.a5.4f.aca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a' =>
|
6363 |
array (
|
6364 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a5' . DIRECTORY_SEPARATOR . '4f' . DIRECTORY_SEPARATOR . 'aca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a.php',
|
@@ -6395,12 +6035,6 @@
|
|
6395 |
'c' => '__TwigTemplate_aa616d3f918f480e4f6f0dabdeee1324d87d759ec18352a21a1cfcee8802f528',
|
6396 |
'i' => 'g',
|
6397 |
),
|
6398 |
-
'twig.af.91.c04e4ada13bcc6fc2d99142467f2d7aa2f7dc5b5e55b0cfab5398039de83' =>
|
6399 |
-
array (
|
6400 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'af' . DIRECTORY_SEPARATOR . '91' . DIRECTORY_SEPARATOR . 'c04e4ada13bcc6fc2d99142467f2d7aa2f7dc5b5e55b0cfab5398039de83.php',
|
6401 |
-
'c' => '__TwigTemplate_af91c04e4ada13bcc6fc2d99142467f2d7aa2f7dc5b5e55b0cfab5398039de83',
|
6402 |
-
'i' => 'g',
|
6403 |
-
),
|
6404 |
'twig.ai1ec-extension' =>
|
6405 |
array (
|
6406 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'ai1ec-extension.php',
|
@@ -6425,18 +6059,6 @@
|
|
6425 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
6426 |
'i' => 'g',
|
6427 |
),
|
6428 |
-
'twig.b7.74.0cbe0a1d12ad983e03d0c9bb369ea941ba9f941c5cf86a696dff0bf8fbca' =>
|
6429 |
-
array (
|
6430 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'b7' . DIRECTORY_SEPARATOR . '74' . DIRECTORY_SEPARATOR . '0cbe0a1d12ad983e03d0c9bb369ea941ba9f941c5cf86a696dff0bf8fbca.php',
|
6431 |
-
'c' => '__TwigTemplate_b7740cbe0a1d12ad983e03d0c9bb369ea941ba9f941c5cf86a696dff0bf8fbca',
|
6432 |
-
'i' => 'g',
|
6433 |
-
),
|
6434 |
-
'twig.bd.58.105129520dc62d0ed213bddf5dc0730cd1c01a6fe246415e27736cfa717f' =>
|
6435 |
-
array (
|
6436 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'bd' . DIRECTORY_SEPARATOR . '58' . DIRECTORY_SEPARATOR . '105129520dc62d0ed213bddf5dc0730cd1c01a6fe246415e27736cfa717f.php',
|
6437 |
-
'c' => '__TwigTemplate_bd58105129520dc62d0ed213bddf5dc0730cd1c01a6fe246415e27736cfa717f',
|
6438 |
-
'i' => 'g',
|
6439 |
-
),
|
6440 |
'twig.c1.80.4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
6441 |
array (
|
6442 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
@@ -6456,42 +6078,12 @@
|
|
6456 |
'i' => 'g',
|
6457 |
'r' => 'y',
|
6458 |
),
|
6459 |
-
'twig.cb.6d.407da76863fefdcf32705abf50873f55ca4a7aaee29919bff38771bc5990' =>
|
6460 |
-
array (
|
6461 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'cb' . DIRECTORY_SEPARATOR . '6d' . DIRECTORY_SEPARATOR . '407da76863fefdcf32705abf50873f55ca4a7aaee29919bff38771bc5990.php',
|
6462 |
-
'c' => '__TwigTemplate_cb6d407da76863fefdcf32705abf50873f55ca4a7aaee29919bff38771bc5990',
|
6463 |
-
'i' => 'g',
|
6464 |
-
),
|
6465 |
-
'twig.cf.9e.797599131d5cc2805a27b7f8ba6551f70b0a339a263a0186f575ab3fc4e7' =>
|
6466 |
-
array (
|
6467 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'cf' . DIRECTORY_SEPARATOR . '9e' . DIRECTORY_SEPARATOR . '797599131d5cc2805a27b7f8ba6551f70b0a339a263a0186f575ab3fc4e7.php',
|
6468 |
-
'c' => '__TwigTemplate_cf9e797599131d5cc2805a27b7f8ba6551f70b0a339a263a0186f575ab3fc4e7',
|
6469 |
-
'i' => 'g',
|
6470 |
-
),
|
6471 |
'twig.d0.fd.53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed' =>
|
6472 |
array (
|
6473 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd0' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . '53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed.php',
|
6474 |
'c' => '__TwigTemplate_d0fd53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed',
|
6475 |
'i' => 'g',
|
6476 |
),
|
6477 |
-
'twig.d1.7e.18699bb993718ba965d9361d31c10b44921f8fe8eb0781ccafb2fee8fd68' =>
|
6478 |
-
array (
|
6479 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd1' . DIRECTORY_SEPARATOR . '7e' . DIRECTORY_SEPARATOR . '18699bb993718ba965d9361d31c10b44921f8fe8eb0781ccafb2fee8fd68.php',
|
6480 |
-
'c' => '__TwigTemplate_d17e18699bb993718ba965d9361d31c10b44921f8fe8eb0781ccafb2fee8fd68',
|
6481 |
-
'i' => 'g',
|
6482 |
-
),
|
6483 |
-
'twig.d3.f3.335fc71118036792c4c9e75e0e70bf7091b1f569bd5590c98f0e54d84cb2' =>
|
6484 |
-
array (
|
6485 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd3' . DIRECTORY_SEPARATOR . 'f3' . DIRECTORY_SEPARATOR . '335fc71118036792c4c9e75e0e70bf7091b1f569bd5590c98f0e54d84cb2.php',
|
6486 |
-
'c' => '__TwigTemplate_d3f3335fc71118036792c4c9e75e0e70bf7091b1f569bd5590c98f0e54d84cb2',
|
6487 |
-
'i' => 'g',
|
6488 |
-
),
|
6489 |
-
'twig.d5.d7.52a8ad80734954cb45cc46492036db7869bbe1923929a300900e979b8482' =>
|
6490 |
-
array (
|
6491 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd5' . DIRECTORY_SEPARATOR . 'd7' . DIRECTORY_SEPARATOR . '52a8ad80734954cb45cc46492036db7869bbe1923929a300900e979b8482.php',
|
6492 |
-
'c' => '__TwigTemplate_d5d752a8ad80734954cb45cc46492036db7869bbe1923929a300900e979b8482',
|
6493 |
-
'i' => 'g',
|
6494 |
-
),
|
6495 |
'twig.dc.78.b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545' =>
|
6496 |
array (
|
6497 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'dc' . DIRECTORY_SEPARATOR . '78' . DIRECTORY_SEPARATOR . 'b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php',
|
@@ -6504,12 +6096,6 @@
|
|
6504 |
'c' => '__TwigTemplate_de0716785a3d8825b0cbf777e4c74a47dba507a53d659b5dce15bcb5ef20b41b',
|
6505 |
'i' => 'g',
|
6506 |
),
|
6507 |
-
'twig.de.80.d3e7f783d4ca654ee9ec55cc2e17034e25e1447990e186fe4f4b4f459c5c' =>
|
6508 |
-
array (
|
6509 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'de' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . 'd3e7f783d4ca654ee9ec55cc2e17034e25e1447990e186fe4f4b4f459c5c.php',
|
6510 |
-
'c' => '__TwigTemplate_de80d3e7f783d4ca654ee9ec55cc2e17034e25e1447990e186fe4f4b4f459c5c',
|
6511 |
-
'i' => 'g',
|
6512 |
-
),
|
6513 |
'twig.e0.be.9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec' =>
|
6514 |
array (
|
6515 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'e0' . DIRECTORY_SEPARATOR . 'be' . DIRECTORY_SEPARATOR . '9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec.php',
|
@@ -6558,12 +6144,6 @@
|
|
6558 |
'c' => 'Ai1ec_Twig_Environment',
|
6559 |
'i' => 'g',
|
6560 |
),
|
6561 |
-
'twig.f0.57.03afef869c4fea0061567a42872d377423a41be579565d0cdf32260df05f' =>
|
6562 |
-
array (
|
6563 |
-
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'f0' . DIRECTORY_SEPARATOR . '57' . DIRECTORY_SEPARATOR . '03afef869c4fea0061567a42872d377423a41be579565d0cdf32260df05f.php',
|
6564 |
-
'c' => '__TwigTemplate_f05703afef869c4fea0061567a42872d377423a41be579565d0cdf32260df05f',
|
6565 |
-
'i' => 'g',
|
6566 |
-
),
|
6567 |
'twig.f0.91.5421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb' =>
|
6568 |
array (
|
6569 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'f0' . DIRECTORY_SEPARATOR . '91' . DIRECTORY_SEPARATOR . '5421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb.php',
|
2796 |
'c' => 'Twig_TokenStream',
|
2797 |
'i' => 'g',
|
2798 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2799 |
'__TwigTemplate_08e44d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00' =>
|
2800 |
array (
|
2801 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '08' . DIRECTORY_SEPARATOR . 'e4' . DIRECTORY_SEPARATOR . '4d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00.php',
|
2808 |
'c' => '__TwigTemplate_08e7a5bd54ab9b43437fff4031a8e8c3224eb244e422102529eb80b45d19a1dc',
|
2809 |
'i' => 'g',
|
2810 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
2811 |
'__TwigTemplate_0aaa4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46' =>
|
2812 |
array (
|
2813 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0a' . DIRECTORY_SEPARATOR . 'aa' . DIRECTORY_SEPARATOR . '4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46.php',
|
2814 |
'c' => '__TwigTemplate_0aaa4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46',
|
2815 |
'i' => 'g',
|
2816 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2817 |
'__TwigTemplate_1db441d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550' =>
|
2818 |
array (
|
2819 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '1d' . DIRECTORY_SEPARATOR . 'b4' . DIRECTORY_SEPARATOR . '41d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550.php',
|
2838 |
'c' => '__TwigTemplate_1fc7b71ee92dc515fa667ee7831c98ab6c28baf9d40bd7616eb6cebd71888ce5',
|
2839 |
'i' => 'g',
|
2840 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
2841 |
'__TwigTemplate_21cfb7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099' =>
|
2842 |
array (
|
2843 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '21' . DIRECTORY_SEPARATOR . 'cf' . DIRECTORY_SEPARATOR . 'b7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099.php',
|
2880 |
'c' => '__TwigTemplate_2e4133d05bb6c6796937bc9a3340d448d39d5e6c81ad15c2e3e8d9fa2be2d09b',
|
2881 |
'i' => 'g',
|
2882 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
2883 |
'__TwigTemplate_33e16cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc' =>
|
2884 |
array (
|
2885 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '33' . DIRECTORY_SEPARATOR . 'e1' . DIRECTORY_SEPARATOR . '6cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc.php',
|
2886 |
'c' => '__TwigTemplate_33e16cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc',
|
2887 |
'i' => 'g',
|
2888 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2889 |
'__TwigTemplate_43d9a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c' =>
|
2890 |
array (
|
2891 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '43' . DIRECTORY_SEPARATOR . 'd9' . DIRECTORY_SEPARATOR . 'a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c.php',
|
2898 |
'c' => '__TwigTemplate_44e780d28fcb39e51f58b8da586efcf36a11fa245f32a8e34b91a5cf80c9f32c',
|
2899 |
'i' => 'g',
|
2900 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2901 |
'__TwigTemplate_4932ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a' =>
|
2902 |
array (
|
2903 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '49' . DIRECTORY_SEPARATOR . '32' . DIRECTORY_SEPARATOR . 'ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a.php',
|
2910 |
'c' => '__TwigTemplate_4b73ad41c82ac11e1da2a2b82814007e2577ceed36443b62877d9d35f45941e0',
|
2911 |
'i' => 'g',
|
2912 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
2913 |
'__TwigTemplate_5438397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543' =>
|
2914 |
array (
|
2915 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '54' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . '397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543.php',
|
2958 |
'c' => '__TwigTemplate_6ba7e4e0127d71c495538e6589eb4449b221341af0d97c3095751a16d5f18d65',
|
2959 |
'i' => 'g',
|
2960 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2961 |
'__TwigTemplate_6e01f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1' =>
|
2962 |
array (
|
2963 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6e' . DIRECTORY_SEPARATOR . '01' . DIRECTORY_SEPARATOR . 'f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1.php',
|
2964 |
'c' => '__TwigTemplate_6e01f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1',
|
2965 |
'i' => 'g',
|
2966 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
2967 |
'__TwigTemplate_70fdf46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854' =>
|
2968 |
array (
|
2969 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '70' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . 'f46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854.php',
|
2988 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
2989 |
'i' => 'g',
|
2990 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2991 |
'__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
2992 |
array (
|
2993 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
2994 |
'c' => '__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740',
|
2995 |
'i' => 'g',
|
2996 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2997 |
'__TwigTemplate_8738aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4' =>
|
2998 |
array (
|
2999 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '87' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . 'aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4.php',
|
3006 |
'c' => '__TwigTemplate_89d906e4eee3169b93edc33ec32aac5ff78e197d36969e2b8d0437bf2f0283a2',
|
3007 |
'i' => 'g',
|
3008 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
3009 |
'__TwigTemplate_8c5c438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f' =>
|
3010 |
array (
|
3011 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '8c' . DIRECTORY_SEPARATOR . '5c' . DIRECTORY_SEPARATOR . '438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f.php',
|
3024 |
'c' => '__TwigTemplate_93258ffeefdb7cc88b2ceebeb99c01d6127558f2032d79cdd2c8f438717cc6a9',
|
3025 |
'i' => 'g',
|
3026 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3027 |
'__TwigTemplate_943e432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71' =>
|
3028 |
array (
|
3029 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '94' . DIRECTORY_SEPARATOR . '3e' . DIRECTORY_SEPARATOR . '432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71.php',
|
3048 |
'c' => '__TwigTemplate_9c3c1820db174d7efba416743bbb9bf744e8454155f8129f69296092b49c45d3',
|
3049 |
'i' => 'g',
|
3050 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
3051 |
'__TwigTemplate_a2d63fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd' =>
|
3052 |
array (
|
3053 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a2' . DIRECTORY_SEPARATOR . 'd6' . DIRECTORY_SEPARATOR . '3fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd.php',
|
3054 |
'c' => '__TwigTemplate_a2d63fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd',
|
3055 |
'i' => 'g',
|
3056 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
3057 |
'__TwigTemplate_a54faca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a' =>
|
3058 |
array (
|
3059 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a5' . DIRECTORY_SEPARATOR . '4f' . DIRECTORY_SEPARATOR . 'aca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a.php',
|
3090 |
'c' => '__TwigTemplate_aa616d3f918f480e4f6f0dabdeee1324d87d759ec18352a21a1cfcee8802f528',
|
3091 |
'i' => 'g',
|
3092 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
3093 |
'__TwigTemplate_b1af5b1cfc01f62c430dd9a064f9459384693440bf30e05d6a34dcdfa47540e4' =>
|
3094 |
array (
|
3095 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'b1' . DIRECTORY_SEPARATOR . 'af' . DIRECTORY_SEPARATOR . '5b1cfc01f62c430dd9a064f9459384693440bf30e05d6a34dcdfa47540e4.php',
|
3108 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
3109 |
'i' => 'g',
|
3110 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3111 |
'__TwigTemplate_c1804f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
3112 |
array (
|
3113 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
3120 |
'c' => '__TwigTemplate_c7b4ce46e9ae5c124b3dbcfdc4840954da6e06763de6bef42553c2fec4a6f949',
|
3121 |
'i' => 'g',
|
3122 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3123 |
'__TwigTemplate_d0fd53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed' =>
|
3124 |
array (
|
3125 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd0' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . '53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed.php',
|
3126 |
'c' => '__TwigTemplate_d0fd53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed',
|
3127 |
'i' => 'g',
|
3128 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3129 |
'__TwigTemplate_dc78b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545' =>
|
3130 |
array (
|
3131 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'dc' . DIRECTORY_SEPARATOR . '78' . DIRECTORY_SEPARATOR . 'b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php',
|
3138 |
'c' => '__TwigTemplate_de0716785a3d8825b0cbf777e4c74a47dba507a53d659b5dce15bcb5ef20b41b',
|
3139 |
'i' => 'g',
|
3140 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
3141 |
'__TwigTemplate_e0be9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec' =>
|
3142 |
array (
|
3143 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'e0' . DIRECTORY_SEPARATOR . 'be' . DIRECTORY_SEPARATOR . '9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec.php',
|
3180 |
'c' => '__TwigTemplate_eeeaebb8da9bb78c051017293e6e38b7b9b5b9ce2693c48fc571b498eaf0027d',
|
3181 |
'i' => 'g',
|
3182 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
3183 |
'__TwigTemplate_f0915421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb' =>
|
3184 |
array (
|
3185 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'f0' . DIRECTORY_SEPARATOR . '91' . DIRECTORY_SEPARATOR . '5421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb.php',
|
4805 |
'i' => 'g',
|
4806 |
'r' => 'y',
|
4807 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4808 |
'twig.08.e4.4d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00' =>
|
4809 |
array (
|
4810 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '08' . DIRECTORY_SEPARATOR . 'e4' . DIRECTORY_SEPARATOR . '4d5fc50332367b2d7e81902230ac0e7ea950ee003ec7a490752fc6534c00.php',
|
4817 |
'c' => '__TwigTemplate_08e7a5bd54ab9b43437fff4031a8e8c3224eb244e422102529eb80b45d19a1dc',
|
4818 |
'i' => 'g',
|
4819 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
4820 |
'twig.0a.aa.4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46' =>
|
4821 |
array (
|
4822 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '0a' . DIRECTORY_SEPARATOR . 'aa' . DIRECTORY_SEPARATOR . '4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46.php',
|
4823 |
'c' => '__TwigTemplate_0aaa4ba5781b15aad143ead2d0ddb31cf05f6ab74784b9253fe937041083cb46',
|
4824 |
'i' => 'g',
|
4825 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4826 |
'twig.1d.b4.41d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550' =>
|
4827 |
array (
|
4828 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '1d' . DIRECTORY_SEPARATOR . 'b4' . DIRECTORY_SEPARATOR . '41d4c46644d462caf5fabce3486fec28bb3dee4455a13411a01b9c384550.php',
|
4847 |
'c' => '__TwigTemplate_1fc7b71ee92dc515fa667ee7831c98ab6c28baf9d40bd7616eb6cebd71888ce5',
|
4848 |
'i' => 'g',
|
4849 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
4850 |
'twig.21.cf.b7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099' =>
|
4851 |
array (
|
4852 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '21' . DIRECTORY_SEPARATOR . 'cf' . DIRECTORY_SEPARATOR . 'b7e0c7543e64053052e7d3df401f7fdde0a3873bf1f837c0be10edd95099.php',
|
4889 |
'c' => '__TwigTemplate_2e4133d05bb6c6796937bc9a3340d448d39d5e6c81ad15c2e3e8d9fa2be2d09b',
|
4890 |
'i' => 'g',
|
4891 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
4892 |
'twig.33.e1.6cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc' =>
|
4893 |
array (
|
4894 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '33' . DIRECTORY_SEPARATOR . 'e1' . DIRECTORY_SEPARATOR . '6cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc.php',
|
4895 |
'c' => '__TwigTemplate_33e16cf8aa9822e97c186ffb4cb4ca897e21f410bfd489328566d22b282224cc',
|
4896 |
'i' => 'g',
|
4897 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4898 |
'twig.43.d9.a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c' =>
|
4899 |
array (
|
4900 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '43' . DIRECTORY_SEPARATOR . 'd9' . DIRECTORY_SEPARATOR . 'a3164d7fa60d25b4a46b810ae815835482309c33dfad5604c4ba6055e99c.php',
|
4907 |
'c' => '__TwigTemplate_44e780d28fcb39e51f58b8da586efcf36a11fa245f32a8e34b91a5cf80c9f32c',
|
4908 |
'i' => 'g',
|
4909 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4910 |
'twig.49.32.ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a' =>
|
4911 |
array (
|
4912 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '49' . DIRECTORY_SEPARATOR . '32' . DIRECTORY_SEPARATOR . 'ea4178e92f66ddbdb1feb9ec1496773dcb031265fc870a3e981abc68ca2a.php',
|
4919 |
'c' => '__TwigTemplate_4b73ad41c82ac11e1da2a2b82814007e2577ceed36443b62877d9d35f45941e0',
|
4920 |
'i' => 'g',
|
4921 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
4922 |
'twig.54.38.397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543' =>
|
4923 |
array (
|
4924 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '54' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . '397cd9464722671fd647af1253048c35b31f97a6d5372f3c78b5bc143543.php',
|
4967 |
'c' => '__TwigTemplate_6ba7e4e0127d71c495538e6589eb4449b221341af0d97c3095751a16d5f18d65',
|
4968 |
'i' => 'g',
|
4969 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4970 |
'twig.6e.01.f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1' =>
|
4971 |
array (
|
4972 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '6e' . DIRECTORY_SEPARATOR . '01' . DIRECTORY_SEPARATOR . 'f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1.php',
|
4973 |
'c' => '__TwigTemplate_6e01f7b633075695c9bd632326ff59da1a8f98dcfec6a6bbfbc28b12c0bc45d1',
|
4974 |
'i' => 'g',
|
4975 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
4976 |
'twig.70.fd.f46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854' =>
|
4977 |
array (
|
4978 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '70' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . 'f46b19d586d910f695b6a0bf8fb906984e357f35d882adecd3846d6d2854.php',
|
4997 |
'c' => '__TwigTemplate_788a05e53df23570bd080700c3d94ab1071e6da70305581541040dbcedef230f',
|
4998 |
'i' => 'g',
|
4999 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5000 |
'twig.84.a6.c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740' =>
|
5001 |
array (
|
5002 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '84' . DIRECTORY_SEPARATOR . 'a6' . DIRECTORY_SEPARATOR . 'c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740.php',
|
5003 |
'c' => '__TwigTemplate_84a6c5284ab521b3c47b938e332f63481454c6f1376259daf34884343b8b6740',
|
5004 |
'i' => 'g',
|
5005 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5006 |
'twig.87.38.aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4' =>
|
5007 |
array (
|
5008 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '87' . DIRECTORY_SEPARATOR . '38' . DIRECTORY_SEPARATOR . 'aa294570b2a85a442a17cdfa79373b77254570956b003b0309707c0a3aa4.php',
|
5015 |
'c' => '__TwigTemplate_89d906e4eee3169b93edc33ec32aac5ff78e197d36969e2b8d0437bf2f0283a2',
|
5016 |
'i' => 'g',
|
5017 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
5018 |
'twig.8c.5c.438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f' =>
|
5019 |
array (
|
5020 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '8c' . DIRECTORY_SEPARATOR . '5c' . DIRECTORY_SEPARATOR . '438803e41f884dbf4e4b50d7b9a7360a971a329595c86d2bbcb90a37629f.php',
|
5033 |
'c' => '__TwigTemplate_93258ffeefdb7cc88b2ceebeb99c01d6127558f2032d79cdd2c8f438717cc6a9',
|
5034 |
'i' => 'g',
|
5035 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5036 |
'twig.94.3e.432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71' =>
|
5037 |
array (
|
5038 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . '94' . DIRECTORY_SEPARATOR . '3e' . DIRECTORY_SEPARATOR . '432a0dcbd7fe60a569412aaad985e131799f5363073300d0a6cd788b4d71.php',
|
5993 |
'c' => 'Twig_TokenStream',
|
5994 |
'i' => 'g',
|
5995 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
5996 |
'twig.a2.d6.3fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd' =>
|
5997 |
array (
|
5998 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a2' . DIRECTORY_SEPARATOR . 'd6' . DIRECTORY_SEPARATOR . '3fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd.php',
|
5999 |
'c' => '__TwigTemplate_a2d63fbda218850f7e089e33254a2a7e597c13d99697a035b078e57b486b58fd',
|
6000 |
'i' => 'g',
|
6001 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
6002 |
'twig.a5.4f.aca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a' =>
|
6003 |
array (
|
6004 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'a5' . DIRECTORY_SEPARATOR . '4f' . DIRECTORY_SEPARATOR . 'aca929c567a44d5e4e2e7cf06d45c14508bd3d07f5bdfb60a7ddce3ec07a.php',
|
6035 |
'c' => '__TwigTemplate_aa616d3f918f480e4f6f0dabdeee1324d87d759ec18352a21a1cfcee8802f528',
|
6036 |
'i' => 'g',
|
6037 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
6038 |
'twig.ai1ec-extension' =>
|
6039 |
array (
|
6040 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'ai1ec-extension.php',
|
6059 |
'c' => '__TwigTemplate_b69bc1a2e974a2cc888cbb54b361d86981c0c2cc33fd8a93ba2368fb485deacb',
|
6060 |
'i' => 'g',
|
6061 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6062 |
'twig.c1.80.4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c' =>
|
6063 |
array (
|
6064 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'c1' . DIRECTORY_SEPARATOR . '80' . DIRECTORY_SEPARATOR . '4f545c5b33b8114cc21fe6cb5c59952fa8c7d680d237c3ca4d3f63b96c1c.php',
|
6078 |
'i' => 'g',
|
6079 |
'r' => 'y',
|
6080 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6081 |
'twig.d0.fd.53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed' =>
|
6082 |
array (
|
6083 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'd0' . DIRECTORY_SEPARATOR . 'fd' . DIRECTORY_SEPARATOR . '53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed.php',
|
6084 |
'c' => '__TwigTemplate_d0fd53d3e74d5ca87482d078ffb8d74c0fecfd7106a9092d9a28cce902c86fed',
|
6085 |
'i' => 'g',
|
6086 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6087 |
'twig.dc.78.b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545' =>
|
6088 |
array (
|
6089 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'dc' . DIRECTORY_SEPARATOR . '78' . DIRECTORY_SEPARATOR . 'b950182efb8f436b144938fb0dc48cf395d7daabe20293234dbcf2b26545.php',
|
6096 |
'c' => '__TwigTemplate_de0716785a3d8825b0cbf777e4c74a47dba507a53d659b5dce15bcb5ef20b41b',
|
6097 |
'i' => 'g',
|
6098 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
6099 |
'twig.e0.be.9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec' =>
|
6100 |
array (
|
6101 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'e0' . DIRECTORY_SEPARATOR . 'be' . DIRECTORY_SEPARATOR . '9029cc923fc647cc9fe9735ba608a9ba80e9e5a13e2eeaf05ccd663cb0ec.php',
|
6144 |
'c' => 'Ai1ec_Twig_Environment',
|
6145 |
'i' => 'g',
|
6146 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
6147 |
'twig.f0.91.5421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb' =>
|
6148 |
array (
|
6149 |
'f' => AI1EC_PATH . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR . 'twig' . DIRECTORY_SEPARATOR . 'f0' . DIRECTORY_SEPARATOR . '91' . DIRECTORY_SEPARATOR . '5421eb30386d27f75f584e4cc07ba290c43e8fc2c085f751b0c25ad606bb.php',
|
lib/iCal/helper/SG_iCal_Parser.php
CHANGED
@@ -53,9 +53,8 @@ class SG_iCal_Parser {
|
|
53 |
}
|
54 |
curl_setopt($c, CURLOPT_COOKIESESSION, true);
|
55 |
curl_setopt($c, CURLOPT_HEADER, true);
|
56 |
-
|
57 |
-
|
58 |
-
}
|
59 |
$content = curl_exec($c);
|
60 |
$ct = curl_getinfo($c, CURLINFO_CONTENT_TYPE);
|
61 |
$enc = preg_replace('/^.*charset=([-a-zA-Z0-9]+).*$/', '$1', $ct);
|
53 |
}
|
54 |
curl_setopt($c, CURLOPT_COOKIESESSION, true);
|
55 |
curl_setopt($c, CURLOPT_HEADER, true);
|
56 |
+
curl_setopt($c, CURLOPT_FOLLOWLOCATION, true);
|
57 |
+
|
|
|
58 |
$content = curl_exec($c);
|
59 |
$ct = curl_getinfo($c, CURLINFO_CONTENT_TYPE);
|
60 |
$enc = preg_replace('/^.*charset=([-a-zA-Z0-9]+).*$/', '$1', $ct);
|
lib/notification/admin.php
CHANGED
@@ -177,9 +177,9 @@ class Ai1ec_Notification_Admin extends Ai1ec_Notification {
|
|
177 |
}
|
178 |
$entity['text_label'] = apply_filters(
|
179 |
'ai1ec_notification_label',
|
180 |
-
|
181 |
);
|
182 |
-
$entity['text_dismiss_button'] =
|
183 |
$file = $theme->get_file(
|
184 |
'notification/admin.twig',
|
185 |
$entity,
|
177 |
}
|
178 |
$entity['text_label'] = apply_filters(
|
179 |
'ai1ec_notification_label',
|
180 |
+
Ai1ec_I18n::__( 'All-in-One Event Calendar' )
|
181 |
);
|
182 |
+
$entity['text_dismiss_button'] = Ai1ec_I18n::__( 'Got it – dismiss this' );
|
183 |
$file = $theme->get_file(
|
184 |
'notification/admin.twig',
|
185 |
$entity,
|
public/admin/box_inline_warning.php
CHANGED
@@ -1 +1,2 @@
|
|
|
|
1 |
<div id="ai1ec_event_inline_alert" class="timely ai1ec-alert ai1ec-alert-danger ai1ec-hidden"></div>
|
1 |
+
<?php ?>
|
2 |
<div id="ai1ec_event_inline_alert" class="timely ai1ec-alert ai1ec-alert-danger ai1ec-hidden"></div>
|
public/admin/on_the_select.php
CHANGED
@@ -0,0 +1 @@
|
|
|
1 |
+
<?php ?>
|
public/admin/plugins/ics/import_feed.php
CHANGED
@@ -1,4 +1,13 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
if ( ! $api_signed ):
|
3 |
?>
|
4 |
<div class="ai1ec-ics-signup-box">
|
@@ -16,23 +25,40 @@
|
|
16 |
<div class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
17 |
<?php _e(
|
18 |
'<b>You don\'t have a subscription for this feature.</b><br>
|
19 |
-
Please <a href="https://time.ly/pricing/">upgrade here</a> to a plan that
|
20 |
supports "Import Feeds".', AI1EC_PLUGIN_NAME )
|
21 |
?>
|
22 |
</div>
|
23 |
<?php
|
24 |
elseif ( $reached_limit ):
|
25 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
<div class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
27 |
<?php _e(
|
28 |
'<b>You have reached the limit of how many feeds you can import.</b><br>
|
29 |
-
Please <a href="https://time.ly/
|
30 |
-
supports more feeds.', AI1EC_PLUGIN_NAME )
|
31 |
?>
|
32 |
</div>
|
33 |
<?php
|
34 |
else:
|
35 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
<div id="ai1ec-feeds-after"
|
37 |
class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
38 |
<div class="ai1ec-form-group ai1ec-row">
|
1 |
<?php
|
2 |
+
$feature = Ai1ec_Api_Features::CODE_IMPORT_FEEDS;
|
3 |
+
$api = $this->_registry->get( 'model.api.api-feeds' );
|
4 |
+
$provided = $api->subscription_get_quantity_limit( $feature );
|
5 |
+
$used = $api->subscription_get_used_quantity( $feature );
|
6 |
+
|
7 |
+
if ( $provided >= 1000000 ) {
|
8 |
+
$provided = __( 'unlimited', AI1EC_PLUGIN_NAME );
|
9 |
+
}
|
10 |
+
|
11 |
if ( ! $api_signed ):
|
12 |
?>
|
13 |
<div class="ai1ec-ics-signup-box">
|
25 |
<div class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
26 |
<?php _e(
|
27 |
'<b>You don\'t have a subscription for this feature.</b><br>
|
28 |
+
Please <a href="https://time.ly/pricing/" target="_blank">upgrade here</a> to a plan that
|
29 |
supports "Import Feeds".', AI1EC_PLUGIN_NAME )
|
30 |
?>
|
31 |
</div>
|
32 |
<?php
|
33 |
elseif ( $reached_limit ):
|
34 |
?>
|
35 |
+
<div class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
36 |
+
<?php _e(
|
37 |
+
sprintf(
|
38 |
+
__( 'You are importing %s feed(s) out of %s.', AI1EC_PLUGIN_NAME ),
|
39 |
+
$used,
|
40 |
+
$provided
|
41 |
+
) )
|
42 |
+
?>
|
43 |
+
</div>
|
44 |
<div class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
45 |
<?php _e(
|
46 |
'<b>You have reached the limit of how many feeds you can import.</b><br>
|
47 |
+
Please sign up for EventBoost plan <a href="https://time.ly/eventboost/" target="_blank">here</a>.', AI1EC_PLUGIN_NAME )
|
|
|
48 |
?>
|
49 |
</div>
|
50 |
<?php
|
51 |
else:
|
52 |
?>
|
53 |
+
<div class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
54 |
+
<?php _e(
|
55 |
+
sprintf(
|
56 |
+
__( 'You are importing %s feed(s) out of %s.', AI1EC_PLUGIN_NAME ),
|
57 |
+
$used,
|
58 |
+
$provided
|
59 |
+
) )
|
60 |
+
?>
|
61 |
+
</div>
|
62 |
<div id="ai1ec-feeds-after"
|
63 |
class="ai1ec-feed-container ai1ec-well ai1ec-well-sm ai1ec-clearfix">
|
64 |
<div class="ai1ec-form-group ai1ec-row">
|
public/admin/subscription_button.php
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
|
2 |
<input type="hidden" name="cmd" value="_s-xclick" />
|
3 |
<input type="hidden" name="hosted_button_id" value="RGE42APRSL5UA" />
|
1 |
+
<?php ?>
|
2 |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
|
3 |
<input type="hidden" name="cmd" value="_s-xclick" />
|
4 |
<input type="hidden" name="hosted_button_id" value="RGE42APRSL5UA" />
|
public/themes-ai1ec/gamma/css/ai1ec_parsed_css.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.ai1ec-btn-lg{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.ai1ec-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}@font-face{font-family:'Timely_FontAwesome';src:url('../font/fontawesome-webfont.eot?v=4.0.3');src:url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'), url('../font/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype');font-weight:normal;font-style:normal;}.ai1ec-fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.ai1ec-fa-lg{font-size:1.3333333333333em;line-height:0.75em;vertical-align:-15%;}.ai1ec-fa-2x{font-size:2em;}.ai1ec-fa-3x{font-size:3em;}.ai1ec-fa-4x{font-size:4em;}.ai1ec-fa-5x{font-size:5em;}.ai1ec-fa-fw{width:1.2857142857143em;text-align:center;}.ai1ec-fa-ul{padding-left:0;margin-left:2.1428571428571em;list-style-type:none;}.ai1ec-fa-ul > li{position:relative;}.ai1ec-fa-li{position:absolute;left:-2.1428571428571em;width:2.1428571428571em;top:0.14285714285714em;text-align:center;}.ai1ec-fa-li.ai1ec-fa-lg{left:-1.8571428571429em;}.ai1ec-fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);}100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);}100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);}100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);}100%{transform:rotate(359deg);}}.ai1ec-fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle;}.ai1ec-fa-stack-1x,.ai1ec-fa-stack-2x{position:absolute;left:0;width:100%;text-align:center;}.ai1ec-fa-stack-1x{line-height:inherit;}.ai1ec-fa-stack-2x{font-size:2em;}.ai1ec-fa-inverse{color:#fff;}.ai1ec-fa-glass:before{content:"\f000";}.ai1ec-fa-music:before{content:"\f001";}.ai1ec-fa-search:before{content:"\f002";}.ai1ec-fa-envelope-o:before{content:"\f003";}.ai1ec-fa-heart:before{content:"\f004";}.ai1ec-fa-star:before{content:"\f005";}.ai1ec-fa-star-o:before{content:"\f006";}.ai1ec-fa-user:before{content:"\f007";}.ai1ec-fa-film:before{content:"\f008";}.ai1ec-fa-th-large:before{content:"\f009";}.ai1ec-fa-th:before{content:"\f00a";}.ai1ec-fa-th-list:before{content:"\f00b";}.ai1ec-fa-check:before{content:"\f00c";}.ai1ec-fa-times:before{content:"\f00d";}.ai1ec-fa-search-plus:before{content:"\f00e";}.ai1ec-fa-search-minus:before{content:"\f010";}.ai1ec-fa-power-off:before{content:"\f011";}.ai1ec-fa-signal:before{content:"\f012";}.ai1ec-fa-gear:before,.ai1ec-fa-cog:before{content:"\f013";}.ai1ec-fa-trash-o:before{content:"\f014";}.ai1ec-fa-home:before{content:"\f015";}.ai1ec-fa-file-o:before{content:"\f016";}.ai1ec-fa-clock-o:before{content:"\f017";}.ai1ec-fa-road:before{content:"\f018";}.ai1ec-fa-download:before{content:"\f019";}.ai1ec-fa-arrow-circle-o-down:before{content:"\f01a";}.ai1ec-fa-arrow-circle-o-up:before{content:"\f01b";}.ai1ec-fa-inbox:before{content:"\f01c";}.ai1ec-fa-play-circle-o:before{content:"\f01d";}.ai1ec-fa-rotate-right:before,.ai1ec-fa-repeat:before{content:"\f01e";}.ai1ec-fa-refresh:before{content:"\f021";}.ai1ec-fa-list-alt:before{content:"\f022";}.ai1ec-fa-lock:before{content:"\f023";}.ai1ec-fa-flag:before{content:"\f024";}.ai1ec-fa-headphones:before{content:"\f025";}.ai1ec-fa-volume-off:before{content:"\f026";}.ai1ec-fa-volume-down:before{content:"\f027";}.ai1ec-fa-volume-up:before{content:"\f028";}.ai1ec-fa-qrcode:before{content:"\f029";}.ai1ec-fa-barcode:before{content:"\f02a";}.ai1ec-fa-tag:before{content:"\f02b";}.ai1ec-fa-tags:before{content:"\f02c";}.ai1ec-fa-book:before{content:"\f02d";}.ai1ec-fa-bookmark:before{content:"\f02e";}.ai1ec-fa-print:before{content:"\f02f";}.ai1ec-fa-camera:before{content:"\f030";}.ai1ec-fa-font:before{content:"\f031";}.ai1ec-fa-bold:before{content:"\f032";}.ai1ec-fa-italic:before{content:"\f033";}.ai1ec-fa-text-height:before{content:"\f034";}.ai1ec-fa-text-width:before{content:"\f035";}.ai1ec-fa-align-left:before{content:"\f036";}.ai1ec-fa-align-center:before{content:"\f037";}.ai1ec-fa-align-right:before{content:"\f038";}.ai1ec-fa-align-justify:before{content:"\f039";}.ai1ec-fa-list:before{content:"\f03a";}.ai1ec-fa-dedent:before,.ai1ec-fa-outdent:before{content:"\f03b";}.ai1ec-fa-indent:before{content:"\f03c";}.ai1ec-fa-video-camera:before{content:"\f03d";}.ai1ec-fa-picture-o:before{content:"\f03e";}.ai1ec-fa-pencil:before{content:"\f040";}.ai1ec-fa-map-marker:before{content:"\f041";}.ai1ec-fa-adjust:before{content:"\f042";}.ai1ec-fa-tint:before{content:"\f043";}.ai1ec-fa-edit:before,.ai1ec-fa-pencil-square-o:before{content:"\f044";}.ai1ec-fa-share-square-o:before{content:"\f045";}.ai1ec-fa-check-square-o:before{content:"\f046";}.ai1ec-fa-arrows:before{content:"\f047";}.ai1ec-fa-step-backward:before{content:"\f048";}.ai1ec-fa-fast-backward:before{content:"\f049";}.ai1ec-fa-backward:before{content:"\f04a";}.ai1ec-fa-play:before{content:"\f04b";}.ai1ec-fa-pause:before{content:"\f04c";}.ai1ec-fa-stop:before{content:"\f04d";}.ai1ec-fa-forward:before{content:"\f04e";}.ai1ec-fa-fast-forward:before{content:"\f050";}.ai1ec-fa-step-forward:before{content:"\f051";}.ai1ec-fa-eject:before{content:"\f052";}.ai1ec-fa-chevron-left:before{content:"\f053";}.ai1ec-fa-chevron-right:before{content:"\f054";}.ai1ec-fa-plus-circle:before{content:"\f055";}.ai1ec-fa-minus-circle:before{content:"\f056";}.ai1ec-fa-times-circle:before{content:"\f057";}.ai1ec-fa-check-circle:before{content:"\f058";}.ai1ec-fa-question-circle:before{content:"\f059";}.ai1ec-fa-info-circle:before{content:"\f05a";}.ai1ec-fa-crosshairs:before{content:"\f05b";}.ai1ec-fa-times-circle-o:before{content:"\f05c";}.ai1ec-fa-check-circle-o:before{content:"\f05d";}.ai1ec-fa-ban:before{content:"\f05e";}.ai1ec-fa-arrow-left:before{content:"\f060";}.ai1ec-fa-arrow-right:before{content:"\f061";}.ai1ec-fa-arrow-up:before{content:"\f062";}.ai1ec-fa-arrow-down:before{content:"\f063";}.ai1ec-fa-mail-forward:before,.ai1ec-fa-share:before{content:"\f064";}.ai1ec-fa-expand:before{content:"\f065";}.ai1ec-fa-compress:before{content:"\f066";}.ai1ec-fa-plus:before{content:"\f067";}.ai1ec-fa-minus:before{content:"\f068";}.ai1ec-fa-asterisk:before{content:"\f069";}.ai1ec-fa-exclamation-circle:before{content:"\f06a";}.ai1ec-fa-gift:before{content:"\f06b";}.ai1ec-fa-leaf:before{content:"\f06c";}.ai1ec-fa-fire:before{content:"\f06d";}.ai1ec-fa-eye:before{content:"\f06e";}.ai1ec-fa-eye-slash:before{content:"\f070";}.ai1ec-fa-warning:before,.ai1ec-fa-exclamation-triangle:before{content:"\f071";}.ai1ec-fa-plane:before{content:"\f072";}.ai1ec-fa-calendar:before{content:"\f073";}.ai1ec-fa-random:before{content:"\f074";}.ai1ec-fa-comment:before{content:"\f075";}.ai1ec-fa-magnet:before{content:"\f076";}.ai1ec-fa-chevron-up:before{content:"\f077";}.ai1ec-fa-chevron-down:before{content:"\f078";}.ai1ec-fa-retweet:before{content:"\f079";}.ai1ec-fa-shopping-cart:before{content:"\f07a";}.ai1ec-fa-folder:before{content:"\f07b";}.ai1ec-fa-folder-open:before{content:"\f07c";}.ai1ec-fa-arrows-v:before{content:"\f07d";}.ai1ec-fa-arrows-h:before{content:"\f07e";}.ai1ec-fa-bar-chart-o:before{content:"\f080";}.ai1ec-fa-twitter-square:before{content:"\f081";}.ai1ec-fa-facebook-square:before{content:"\f082";}.ai1ec-fa-camera-retro:before{content:"\f083";}.ai1ec-fa-key:before{content:"\f084";}.ai1ec-fa-gears:before,.ai1ec-fa-cogs:before{content:"\f085";}.ai1ec-fa-comments:before{content:"\f086";}.ai1ec-fa-thumbs-o-up:before{content:"\f087";}.ai1ec-fa-thumbs-o-down:before{content:"\f088";}.ai1ec-fa-star-half:before{content:"\f089";}.ai1ec-fa-heart-o:before{content:"\f08a";}.ai1ec-fa-sign-out:before{content:"\f08b";}.ai1ec-fa-linkedin-square:before{content:"\f08c";}.ai1ec-fa-thumb-tack:before{content:"\f08d";}.ai1ec-fa-external-link:before{content:"\f08e";}.ai1ec-fa-sign-in:before{content:"\f090";}.ai1ec-fa-trophy:before{content:"\f091";}.ai1ec-fa-github-square:before{content:"\f092";}.ai1ec-fa-upload:before{content:"\f093";}.ai1ec-fa-lemon-o:before{content:"\f094";}.ai1ec-fa-phone:before{content:"\f095";}.ai1ec-fa-square-o:before{content:"\f096";}.ai1ec-fa-bookmark-o:before{content:"\f097";}.ai1ec-fa-phone-square:before{content:"\f098";}.ai1ec-fa-twitter:before{content:"\f099";}.ai1ec-fa-facebook:before{content:"\f09a";}.ai1ec-fa-github:before{content:"\f09b";}.ai1ec-fa-unlock:before{content:"\f09c";}.ai1ec-fa-credit-card:before{content:"\f09d";}.ai1ec-fa-rss:before{content:"\f09e";}.ai1ec-fa-hdd-o:before{content:"\f0a0";}.ai1ec-fa-bullhorn:before{content:"\f0a1";}.ai1ec-fa-bell:before{content:"\f0f3";}.ai1ec-fa-certificate:before{content:"\f0a3";}.ai1ec-fa-hand-o-right:before{content:"\f0a4";}.ai1ec-fa-hand-o-left:before{content:"\f0a5";}.ai1ec-fa-hand-o-up:before{content:"\f0a6";}.ai1ec-fa-hand-o-down:before{content:"\f0a7";}.ai1ec-fa-arrow-circle-left:before{content:"\f0a8";}.ai1ec-fa-arrow-circle-right:before{content:"\f0a9";}.ai1ec-fa-arrow-circle-up:before{content:"\f0aa";}.ai1ec-fa-arrow-circle-down:before{content:"\f0ab";}.ai1ec-fa-globe:before{content:"\f0ac";}.ai1ec-fa-wrench:before{content:"\f0ad";}.ai1ec-fa-tasks:before{content:"\f0ae";}.ai1ec-fa-filter:before{content:"\f0b0";}.ai1ec-fa-briefcase:before{content:"\f0b1";}.ai1ec-fa-arrows-alt:before{content:"\f0b2";}.ai1ec-fa-group:before,.ai1ec-fa-users:before{content:"\f0c0";}.ai1ec-fa-chain:before,.ai1ec-fa-link:before{content:"\f0c1";}.ai1ec-fa-cloud:before{content:"\f0c2";}.ai1ec-fa-flask:before{content:"\f0c3";}.ai1ec-fa-cut:before,.ai1ec-fa-scissors:before{content:"\f0c4";}.ai1ec-fa-copy:before,.ai1ec-fa-files-o:before{content:"\f0c5";}.ai1ec-fa-paperclip:before{content:"\f0c6";}.ai1ec-fa-save:before,.ai1ec-fa-floppy-o:before{content:"\f0c7";}.ai1ec-fa-square:before{content:"\f0c8";}.ai1ec-fa-bars:before{content:"\f0c9";}.ai1ec-fa-list-ul:before{content:"\f0ca";}.ai1ec-fa-list-ol:before{content:"\f0cb";}.ai1ec-fa-strikethrough:before{content:"\f0cc";}.ai1ec-fa-underline:before{content:"\f0cd";}.ai1ec-fa-table:before{content:"\f0ce";}.ai1ec-fa-magic:before{content:"\f0d0";}.ai1ec-fa-truck:before{content:"\f0d1";}.ai1ec-fa-pinterest:before{content:"\f0d2";}.ai1ec-fa-pinterest-square:before{content:"\f0d3";}.ai1ec-fa-google-plus-square:before{content:"\f0d4";}.ai1ec-fa-google-plus:before{content:"\f0d5";}.ai1ec-fa-money:before{content:"\f0d6";}.ai1ec-fa-caret-down:before{content:"\f0d7";}.ai1ec-fa-caret-up:before{content:"\f0d8";}.ai1ec-fa-caret-left:before{content:"\f0d9";}.ai1ec-fa-caret-right:before{content:"\f0da";}.ai1ec-fa-columns:before{content:"\f0db";}.ai1ec-fa-unsorted:before,.ai1ec-fa-sort:before{content:"\f0dc";}.ai1ec-fa-sort-down:before,.ai1ec-fa-sort-asc:before{content:"\f0dd";}.ai1ec-fa-sort-up:before,.ai1ec-fa-sort-desc:before{content:"\f0de";}.ai1ec-fa-envelope:before{content:"\f0e0";}.ai1ec-fa-linkedin:before{content:"\f0e1";}.ai1ec-fa-rotate-left:before,.ai1ec-fa-undo:before{content:"\f0e2";}.ai1ec-fa-legal:before,.ai1ec-fa-gavel:before{content:"\f0e3";}.ai1ec-fa-dashboard:before,.ai1ec-fa-tachometer:before{content:"\f0e4";}.ai1ec-fa-comment-o:before{content:"\f0e5";}.ai1ec-fa-comments-o:before{content:"\f0e6";}.ai1ec-fa-flash:before,.ai1ec-fa-bolt:before{content:"\f0e7";}.ai1ec-fa-sitemap:before{content:"\f0e8";}.ai1ec-fa-umbrella:before{content:"\f0e9";}.ai1ec-fa-paste:before,.ai1ec-fa-clipboard:before{content:"\f0ea";}.ai1ec-fa-lightbulb-o:before{content:"\f0eb";}.ai1ec-fa-exchange:before{content:"\f0ec";}.ai1ec-fa-cloud-download:before{content:"\f0ed";}.ai1ec-fa-cloud-upload:before{content:"\f0ee";}.ai1ec-fa-user-md:before{content:"\f0f0";}.ai1ec-fa-stethoscope:before{content:"\f0f1";}.ai1ec-fa-suitcase:before{content:"\f0f2";}.ai1ec-fa-bell-o:before{content:"\f0a2";}.ai1ec-fa-coffee:before{content:"\f0f4";}.ai1ec-fa-cutlery:before{content:"\f0f5";}.ai1ec-fa-file-text-o:before{content:"\f0f6";}.ai1ec-fa-building-o:before{content:"\f0f7";}.ai1ec-fa-hospital-o:before{content:"\f0f8";}.ai1ec-fa-ambulance:before{content:"\f0f9";}.ai1ec-fa-medkit:before{content:"\f0fa";}.ai1ec-fa-fighter-jet:before{content:"\f0fb";}.ai1ec-fa-beer:before{content:"\f0fc";}.ai1ec-fa-h-square:before{content:"\f0fd";}.ai1ec-fa-plus-square:before{content:"\f0fe";}.ai1ec-fa-angle-double-left:before{content:"\f100";}.ai1ec-fa-angle-double-right:before{content:"\f101";}.ai1ec-fa-angle-double-up:before{content:"\f102";}.ai1ec-fa-angle-double-down:before{content:"\f103";}.ai1ec-fa-angle-left:before{content:"\f104";}.ai1ec-fa-angle-right:before{content:"\f105";}.ai1ec-fa-angle-up:before{content:"\f106";}.ai1ec-fa-angle-down:before{content:"\f107";}.ai1ec-fa-desktop:before{content:"\f108";}.ai1ec-fa-laptop:before{content:"\f109";}.ai1ec-fa-tablet:before{content:"\f10a";}.ai1ec-fa-mobile-phone:before,.ai1ec-fa-mobile:before{content:"\f10b";}.ai1ec-fa-circle-o:before{content:"\f10c";}.ai1ec-fa-quote-left:before{content:"\f10d";}.ai1ec-fa-quote-right:before{content:"\f10e";}.ai1ec-fa-spinner:before{content:"\f110";}.ai1ec-fa-circle:before{content:"\f111";}.ai1ec-fa-mail-reply:before,.ai1ec-fa-reply:before{content:"\f112";}.ai1ec-fa-github-alt:before{content:"\f113";}.ai1ec-fa-folder-o:before{content:"\f114";}.ai1ec-fa-folder-open-o:before{content:"\f115";}.ai1ec-fa-smile-o:before{content:"\f118";}.ai1ec-fa-frown-o:before{content:"\f119";}.ai1ec-fa-meh-o:before{content:"\f11a";}.ai1ec-fa-gamepad:before{content:"\f11b";}.ai1ec-fa-keyboard-o:before{content:"\f11c";}.ai1ec-fa-flag-o:before{content:"\f11d";}.ai1ec-fa-flag-checkered:before{content:"\f11e";}.ai1ec-fa-terminal:before{content:"\f120";}.ai1ec-fa-code:before{content:"\f121";}.ai1ec-fa-reply-all:before{content:"\f122";}.ai1ec-fa-mail-reply-all:before{content:"\f122";}.ai1ec-fa-star-half-empty:before,.ai1ec-fa-star-half-full:before,.ai1ec-fa-star-half-o:before{content:"\f123";}.ai1ec-fa-location-arrow:before{content:"\f124";}.ai1ec-fa-crop:before{content:"\f125";}.ai1ec-fa-code-fork:before{content:"\f126";}.ai1ec-fa-unlink:before,.ai1ec-fa-chain-broken:before{content:"\f127";}.ai1ec-fa-question:before{content:"\f128";}.ai1ec-fa-info:before{content:"\f129";}.ai1ec-fa-exclamation:before{content:"\f12a";}.ai1ec-fa-superscript:before{content:"\f12b";}.ai1ec-fa-subscript:before{content:"\f12c";}.ai1ec-fa-eraser:before{content:"\f12d";}.ai1ec-fa-puzzle-piece:before{content:"\f12e";}.ai1ec-fa-microphone:before{content:"\f130";}.ai1ec-fa-microphone-slash:before{content:"\f131";}.ai1ec-fa-shield:before{content:"\f132";}.ai1ec-fa-calendar-o:before{content:"\f133";}.ai1ec-fa-fire-extinguisher:before{content:"\f134";}.ai1ec-fa-rocket:before{content:"\f135";}.ai1ec-fa-maxcdn:before{content:"\f136";}.ai1ec-fa-chevron-circle-left:before{content:"\f137";}.ai1ec-fa-chevron-circle-right:before{content:"\f138";}.ai1ec-fa-chevron-circle-up:before{content:"\f139";}.ai1ec-fa-chevron-circle-down:before{content:"\f13a";}.ai1ec-fa-html5:before{content:"\f13b";}.ai1ec-fa-css3:before{content:"\f13c";}.ai1ec-fa-anchor:before{content:"\f13d";}.ai1ec-fa-unlock-alt:before{content:"\f13e";}.ai1ec-fa-bullseye:before{content:"\f140";}.ai1ec-fa-ellipsis-h:before{content:"\f141";}.ai1ec-fa-ellipsis-v:before{content:"\f142";}.ai1ec-fa-rss-square:before{content:"\f143";}.ai1ec-fa-play-circle:before{content:"\f144";}.ai1ec-fa-ticket:before{content:"\f145";}.ai1ec-fa-minus-square:before{content:"\f146";}.ai1ec-fa-minus-square-o:before{content:"\f147";}.ai1ec-fa-level-up:before{content:"\f148";}.ai1ec-fa-level-down:before{content:"\f149";}.ai1ec-fa-check-square:before{content:"\f14a";}.ai1ec-fa-pencil-square:before{content:"\f14b";}.ai1ec-fa-external-link-square:before{content:"\f14c";}.ai1ec-fa-share-square:before{content:"\f14d";}.ai1ec-fa-compass:before{content:"\f14e";}.ai1ec-fa-toggle-down:before,.ai1ec-fa-caret-square-o-down:before{content:"\f150";}.ai1ec-fa-toggle-up:before,.ai1ec-fa-caret-square-o-up:before{content:"\f151";}.ai1ec-fa-toggle-right:before,.ai1ec-fa-caret-square-o-right:before{content:"\f152";}.ai1ec-fa-euro:before,.ai1ec-fa-eur:before{content:"\f153";}.ai1ec-fa-gbp:before{content:"\f154";}.ai1ec-fa-dollar:before,.ai1ec-fa-usd:before{content:"\f155";}.ai1ec-fa-rupee:before,.ai1ec-fa-inr:before{content:"\f156";}.ai1ec-fa-cny:before,.ai1ec-fa-rmb:before,.ai1ec-fa-yen:before,.ai1ec-fa-jpy:before{content:"\f157";}.ai1ec-fa-ruble:before,.ai1ec-fa-rouble:before,.ai1ec-fa-rub:before{content:"\f158";}.ai1ec-fa-won:before,.ai1ec-fa-krw:before{content:"\f159";}.ai1ec-fa-bitcoin:before,.ai1ec-fa-btc:before{content:"\f15a";}.ai1ec-fa-file:before{content:"\f15b";}.ai1ec-fa-file-text:before{content:"\f15c";}.ai1ec-fa-sort-alpha-asc:before{content:"\f15d";}.ai1ec-fa-sort-alpha-desc:before{content:"\f15e";}.ai1ec-fa-sort-amount-asc:before{content:"\f160";}.ai1ec-fa-sort-amount-desc:before{content:"\f161";}.ai1ec-fa-sort-numeric-asc:before{content:"\f162";}.ai1ec-fa-sort-numeric-desc:before{content:"\f163";}.ai1ec-fa-thumbs-up:before{content:"\f164";}.ai1ec-fa-thumbs-down:before{content:"\f165";}.ai1ec-fa-youtube-square:before{content:"\f166";}.ai1ec-fa-youtube:before{content:"\f167";}.ai1ec-fa-xing:before{content:"\f168";}.ai1ec-fa-xing-square:before{content:"\f169";}.ai1ec-fa-youtube-play:before{content:"\f16a";}.ai1ec-fa-dropbox:before{content:"\f16b";}.ai1ec-fa-stack-overflow:before{content:"\f16c";}.ai1ec-fa-instagram:before{content:"\f16d";}.ai1ec-fa-flickr:before{content:"\f16e";}.ai1ec-fa-adn:before{content:"\f170";}.ai1ec-fa-bitbucket:before{content:"\f171";}.ai1ec-fa-bitbucket-square:before{content:"\f172";}.ai1ec-fa-tumblr:before{content:"\f173";}.ai1ec-fa-tumblr-square:before{content:"\f174";}.ai1ec-fa-long-arrow-down:before{content:"\f175";}.ai1ec-fa-long-arrow-up:before{content:"\f176";}.ai1ec-fa-long-arrow-left:before{content:"\f177";}.ai1ec-fa-long-arrow-right:before{content:"\f178";}.ai1ec-fa-apple:before{content:"\f179";}.ai1ec-fa-windows:before{content:"\f17a";}.ai1ec-fa-android:before{content:"\f17b";}.ai1ec-fa-linux:before{content:"\f17c";}.ai1ec-fa-dribbble:before{content:"\f17d";}.ai1ec-fa-skype:before{content:"\f17e";}.ai1ec-fa-foursquare:before{content:"\f180";}.ai1ec-fa-trello:before{content:"\f181";}.ai1ec-fa-female:before{content:"\f182";}.ai1ec-fa-male:before{content:"\f183";}.ai1ec-fa-gittip:before{content:"\f184";}.ai1ec-fa-sun-o:before{content:"\f185";}.ai1ec-fa-moon-o:before{content:"\f186";}.ai1ec-fa-archive:before{content:"\f187";}.ai1ec-fa-bug:before{content:"\f188";}.ai1ec-fa-vk:before{content:"\f189";}.ai1ec-fa-weibo:before{content:"\f18a";}.ai1ec-fa-renren:before{content:"\f18b";}.ai1ec-fa-pagelines:before{content:"\f18c";}.ai1ec-fa-stack-exchange:before{content:"\f18d";}.ai1ec-fa-arrow-circle-o-right:before{content:"\f18e";}.ai1ec-fa-arrow-circle-o-left:before{content:"\f190";}.ai1ec-fa-toggle-left:before,.ai1ec-fa-caret-square-o-left:before{content:"\f191";}.ai1ec-fa-dot-circle-o:before{content:"\f192";}.ai1ec-fa-wheelchair:before{content:"\f193";}.ai1ec-fa-vimeo-square:before{content:"\f194";}.ai1ec-fa-turkish-lira:before,.ai1ec-fa-try:before{content:"\f195";}.ai1ec-fa-plus-square-o:before{content:"\f196";}.ai1ec-fa{font-family:Timely_FontAwesome;}a.ai1ec-fa.ai1ec-hide{display:none;}li .ai1ec-fa,li .ai1ec-fa-lg:before{width:auto;}.timely small.ai1ec-fa-stack{font-size:90%;height:1.53em;vertical-align:-11%;top:-0.1em;}.ai1ec-fa-stack .ai1ec-icon-timely{left:0.05em;top:-0.05em;}@font-face{font-family:'Timely Logo Icon';src:url('../font/ai1ec-icons.eot');src:url(data:application/x-font-woff;charset=utf-8;base64,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9yaKFYyGiYeHh4iHhomGiwhiiwWGi4eNh46IjomQi4+JtIGyerB6sHWrcKZwpmuhZpxmnGSVYo2Gi4eNiI+IjomQi48Ii7QFi5CNkI+Ojo+PjJCLCIyLBb2Ju4C4drl3tG+uZ69op2KfXp9dl1uNWQgOZ/eOyBWLj4uPio+Kj4qOio6KjoqPiI6Jj4mNiY6KjYiOiI6Hj4mNiY2JjIiOh46GjoiNiowIiY2IjYaOh46IjYqMh4uHjISLgYuBioGKgYmBiYCHgYiBh4OFg4aFhIaChYKJgYt/CIt+joCSgZKAlIOWhpaFloaXiZeIl4mXi5eLlYyVjpaNlI+UkJSQkpKQlJGUjZWLlwhp94sVi5aJl4iYiJiHl4WXhZeDlYGTgZN/j3+LeYt9hIJ+gX6Ge4t5i4KMgo2BjYGPgY+BCJCBkIKRg5KDkoWUhpOGlYmUi56LmJCUl5OWj5uLnghm9xsV9xCLZXVkiwWZgpV/k3ySe497i3uLfIl/hoCHgIaChIWFhIWFhIWFhoaFhoWHhYmEi4SLhoyHj4YIjoaPh5CGkIeQhpKGkYeRhZGGkYWRhJCFkISPg46BjoKNgYuAi219cHFzbnJjf1iLCH+LgIx/jYCNf46Aj3+QgZCCkoKSg5OGlYWWiJaLmIuXj5iSmZGXlJWXlJeUmZKakAibj5qPmY2ZjZmMmox+m4WZi5eLjouNjI2LjYyNi42MjIyNjI6MjYuNjI2DioSKhosIbotzlXeddp6Bo4uni6WUo52gnaCimaWRnY+djJ2LCPe8QhWLZ0KLi0Jni4vUQouLr9SLi9Svi4tC1IsFDvsB+CL3GRWEc39ze3NyZnN4couCi36OeZJ7kX2OfouAi32IfIR7hX+IgYtui26jb71vvH27i7kIi7eWrqCnoaemmKuLmYuciJ+Gn4WYiJGLlIuZjp2Sn5Gbj5mLoYughJ1/lISVgpV+CHx/gH+Fgn55hXeLdotzknaYeJh4mn+chggg9+MVi3+IfoV9hn2Cfn9/gICBhYGHhImBiX6KjKiSo5mgmp+ima2Ti4qLioyKi4mLiouLCIuKi4qLioyKi4qLiggOZ/dX91UVi/tO+1eli/c091eLBYv3aBWL+1D7V4uL9zUF+G/7TRWL+3X7l6+L91H3l4sFi/eOFYv7dvuXi4v3UwUO+JQU+JQViwwKAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPF6AeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAWAAAABIAEAADAAIAAQAh5gXwc/Ce8NXxev/9//8AAAAAACDmAPBz8J7w1fF5//3//wAB/+MaBQ+YD24POA6VAAMAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAADKJX6LXw889QALAgAAAAAAz7uKWgAAAADPu4paAAD/4AIAAeAAAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAAgAAAQAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAABAAAAAgAAAgIAAFICAABSAgAADAIAAFICAABTAgAADAHcAAABkwAAAdwAAAGTAAAB3AAAAABQAAAQAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgAoAGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgAoAGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('woff'), url('../font/ai1ec-icons.eot?#iefix&v=4.0.3') format('embedded-opentype');font-weight:normal;font-style:normal;}[class^="ai1ec-icon-"]:before,[class*=" ai1ec-icon-"]:before{display:inline-block;font-family:'Timely Logo Icon';font-style:normal;font-weight:normal;speak:none;vertical-align:baseline;}.ai1ec-icon-agenda:before{content:"\e603";}.ai1ec-icon-oneday:before{content:"\e604";}.ai1ec-icon-month:before{content:"\e602";}.ai1ec-icon-week:before{content:"\e605";}.ai1ec-icon-posterboard:before{content:"\e600";}.ai1ec-icon-stream:before{content:"\e601";}.ai1ec-icon-calendar:before{content:"\f073";}.ai1ec-icon-rss:before{content:"\f09e";}.ai1ec-icon-google:before{content:"\f0d5";}.ai1ec-icon-apple:before{content:"\f179";}.ai1ec-icon-windows:before{content:"\f17a";}.ai1ec-icon-timely:before{content:"\21";}.timely-icon-timely-logomark:before{content:"\21";}.timely-icon-import-events:before{content:"\22";}.timely-icon-export-events:before{content:"\23";}.timely-icon-facebook-sync:before{content:"\24";}.timely-icon-filter-tag-category:before{content:"\25";}.timely-icon-subscribe-events:before{content:"\26";}.timely-icon-recurring-events:before{content:"\27";}.timely-icon-multiple-views:before{content:"\28";}.timely-icon-customizable-views:before{content:"\29";}.timely-icon-upcoming-events-widget:before{content:"\2a";}.timely-icon-locations-maps:before{content:"\2b";}.timely-icon-seo-optimized:before{content:"\2c";}.timely-icon-dedicated-support:before{content:"\2d";}.timely-icon-plus-sign:before{content:"\2e";}.timely-icon-minus-sign:before{content:"\2f";}.timely-icon-chevron-right:before{content:"\30";}.timely-icon-chevron-left:before{content:"\31";}.timely-icon-chevron-down:before{content:"\32";}.timely-icon-chevron-up:before{content:"\33";}.timely-icon-arrow-right:before{content:"\34";}.timely-icon-arrow-left:before{content:"\35";}.timely-icon-arrow-up:before{content:"\36";}.timely-icon-arrow-down:before{content:"\37";}.timely-icon-pencil:before{content:"\3c";}.timely-icon-gear:before{content:"\3e";}.timely-icon-tag:before{content:"\3f";}.timely-icon-forward:before{content:"\3b";}.timely-icon-close:before{content:"\3a";}.timely-icon-heart:before{content:"\3d";}.timely-icon-folder:before{content:"\40";}.timely-icon-grid:before{content:"\41";}.timely-icon-plus:before{content:"\42";}.timely-icon-minus:before{content:"\43";}.timely-icon-print:before{content:"\38";}.timely article,.timely aside,.timely details,.timely figcaption,.timely figure,.timely footer,.timely header,.timely hgroup,.timely main,.timely nav,.timely section,.timely summary{display:block;}.timely audio,.timely canvas,.timely video{display:inline-block;}.timely audio:not([controls]){display:none;height:0;}.timely [hidden],.timely template{display:none;}.timely html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}.timely body{margin:0;}.timely a{background:transparent;}.timely a:focus{outline:thin dotted;}.timely a:active,.timely a:hover{outline:0;}.timely h1{font-size:2em;margin:0.67em 0;}.timely abbr[title]{border-bottom:1px dotted;}.timely b,.timely strong{font-weight:bold;}.timely dfn{font-style:italic;}.timely hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}.timely mark{background:#ff0;color:#000;}.timely code,.timely kbd,.timely pre,.timely samp{font-family:monospace, serif;font-size:1em;}.timely pre{white-space:pre-wrap;}.timely q{quotes:"\201C" "\201D" "\2018" "\2019";}.timely small{font-size:80%;}.timely sub,.timely sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}.timely sup{top:-0.5em;}.timely sub{bottom:-0.25em;}.timely img{border:0;}.timely svg:not(:root){overflow:hidden;}.timely figure{margin:0;}.timely fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}.timely legend{border:0;padding:0;}.timely button,.timely input,.timely select,.timely textarea{font-family:inherit;font-size:100%;margin:0;}.timely button,.timely input{line-height:normal;}.timely button,.timely select{text-transform:none;}.timely button,.timely html input[type="button"],.timely input[type="reset"],.timely input[type="submit"]{-webkit-appearance:button;cursor:pointer;}.timely button[disabled],.timely html input[disabled]{cursor:default;}.timely input[type="checkbox"],.timely input[type="radio"]{box-sizing:border-box;padding:0;}.timely input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.timely input[type="search"]::-webkit-search-cancel-button,.timely input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}.timely button::-moz-focus-inner,.timely input::-moz-focus-inner{border:0;padding:0;}.timely textarea{overflow:auto;vertical-align:top;}.timely table{border-collapse:collapse;border-spacing:0;}@media print{.timely *{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;}.timely a,.timely a:visited{text-decoration:underline;}.timely a[href]:after{content:" (" attr(href) ")";}.timely abbr[title]:after{content:" (" attr(title) ")";}.timely a[href^="javascript:"]:after,.timely a[href^="#"]:after{content:"";}.timely pre,.timely blockquote{border:1px solid #999;page-break-inside:avoid;}.timely thead{display:table-header-group;}.timely tr,.timely img{page-break-inside:avoid;}.timely img{max-width:100% !important;}@page{margin:2cm .5cm;}.timely p,.timely h2,.timely h3{orphans:3;widows:3;}.timely h2,.timely h3{page-break-after:avoid;}.timely select{background:#fff !important;}.timely .ai1ec-navbar{display:none;}.timely .ai1ec-table td,.timely .ai1ec-table th{background-color:#fff !important;}.timely .ai1ec-btn > .ai1ec-caret,.timely .ai1ec-dropup > .ai1ec-btn > .ai1ec-caret{border-top-color:#000 !important;}.timely .ai1ec-label{border:1px solid #000;}.timely .ai1ec-table{border-collapse:collapse !important;}.timely .ai1ec-table-bordered th,.timely .ai1ec-table-bordered td{border:1px solid #ddd !important;}}.timely *,.timely *:before,.timely *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.timely html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0);}.timely body{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;color:#333;background-color:#fff;}.timely input,.timely button,.timely select,.timely textarea{font-family:inherit;font-size:inherit;line-height:inherit;}.timely a{color:#3d6b99;text-decoration:none;}.timely a:hover,.timely a:focus{color:#335980;text-decoration:underline;}.timely a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely img{vertical-align:middle;}.timely .ai1ec-img-responsive{display:block;max-width:100%;height:auto;}.timely .ai1ec-img-rounded{border-radius:6px;}.timely .ai1ec-img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto;}.timely .ai1ec-img-circle{border-radius:50%;}.timely hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee;}.timely .ai1ec-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;}.ai1ec-container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;}.ai1ec-container:before,.ai1ec-container:after{content:" ";display:table;}.ai1ec-container:after{clear:both;}.ai1ec-container:before,.ai1ec-container:after{content:" ";display:table;}.ai1ec-container:after{clear:both;}@media (min-width: 768px){.ai1ec-container{width:750px;}}@media (min-width: 992px){.ai1ec-container{width:970px;}}@media (min-width: 1200px){.ai1ec-container{width:1170px;}}.ai1ec-row{margin-left:-15px;margin-right:-15px;}.ai1ec-row:before,.ai1ec-row:after{content:" ";display:table;}.ai1ec-row:after{clear:both;}.ai1ec-row:before,.ai1ec-row:after{content:" ";display:table;}.ai1ec-row:after{clear:both;}.ai1ec-col-xs-1, .ai1ec-col-sm-1, .ai1ec-col-md-1, .ai1ec-col-lg-1, .ai1ec-col-xs-2, .ai1ec-col-sm-2, .ai1ec-col-md-2, .ai1ec-col-lg-2, .ai1ec-col-xs-3, .ai1ec-col-sm-3, .ai1ec-col-md-3, .ai1ec-col-lg-3, .ai1ec-col-xs-4, .ai1ec-col-sm-4, .ai1ec-col-md-4, .ai1ec-col-lg-4, .ai1ec-col-xs-5, .ai1ec-col-sm-5, .ai1ec-col-md-5, .ai1ec-col-lg-5, .ai1ec-col-xs-6, .ai1ec-col-sm-6, .ai1ec-col-md-6, .ai1ec-col-lg-6, .ai1ec-col-xs-7, .ai1ec-col-sm-7, .ai1ec-col-md-7, .ai1ec-col-lg-7, .ai1ec-col-xs-8, .ai1ec-col-sm-8, .ai1ec-col-md-8, .ai1ec-col-lg-8, .ai1ec-col-xs-9, .ai1ec-col-sm-9, .ai1ec-col-md-9, .ai1ec-col-lg-9, .ai1ec-col-xs-10, .ai1ec-col-sm-10, .ai1ec-col-md-10, .ai1ec-col-lg-10, .ai1ec-col-xs-11, .ai1ec-col-sm-11, .ai1ec-col-md-11, .ai1ec-col-lg-11, .ai1ec-col-xs-12, .ai1ec-col-sm-12, .ai1ec-col-md-12, .ai1ec-col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px;}.ai1ec-col-xs-1, .ai1ec-col-xs-2, .ai1ec-col-xs-3, .ai1ec-col-xs-4, .ai1ec-col-xs-5, .ai1ec-col-xs-6, .ai1ec-col-xs-7, .ai1ec-col-xs-8, .ai1ec-col-xs-9, .ai1ec-col-xs-10, .ai1ec-col-xs-11, .ai1ec-col-xs-12{float:left;}.ai1ec-col-xs-12{width:100%;}.ai1ec-col-xs-11{width:91.666666666667%;}.ai1ec-col-xs-10{width:83.333333333333%;}.ai1ec-col-xs-9{width:75%;}.ai1ec-col-xs-8{width:66.666666666667%;}.ai1ec-col-xs-7{width:58.333333333333%;}.ai1ec-col-xs-6{width:50%;}.ai1ec-col-xs-5{width:41.666666666667%;}.ai1ec-col-xs-4{width:33.333333333333%;}.ai1ec-col-xs-3{width:25%;}.ai1ec-col-xs-2{width:16.666666666667%;}.ai1ec-col-xs-1{width:8.3333333333333%;}.ai1ec-col-xs-pull-12{right:100%;}.ai1ec-col-xs-pull-11{right:91.666666666667%;}.ai1ec-col-xs-pull-10{right:83.333333333333%;}.ai1ec-col-xs-pull-9{right:75%;}.ai1ec-col-xs-pull-8{right:66.666666666667%;}.ai1ec-col-xs-pull-7{right:58.333333333333%;}.ai1ec-col-xs-pull-6{right:50%;}.ai1ec-col-xs-pull-5{right:41.666666666667%;}.ai1ec-col-xs-pull-4{right:33.333333333333%;}.ai1ec-col-xs-pull-3{right:25%;}.ai1ec-col-xs-pull-2{right:16.666666666667%;}.ai1ec-col-xs-pull-1{right:8.3333333333333%;}.ai1ec-col-xs-pull-0{right:0%;}.ai1ec-col-xs-push-12{left:100%;}.ai1ec-col-xs-push-11{left:91.666666666667%;}.ai1ec-col-xs-push-10{left:83.333333333333%;}.ai1ec-col-xs-push-9{left:75%;}.ai1ec-col-xs-push-8{left:66.666666666667%;}.ai1ec-col-xs-push-7{left:58.333333333333%;}.ai1ec-col-xs-push-6{left:50%;}.ai1ec-col-xs-push-5{left:41.666666666667%;}.ai1ec-col-xs-push-4{left:33.333333333333%;}.ai1ec-col-xs-push-3{left:25%;}.ai1ec-col-xs-push-2{left:16.666666666667%;}.ai1ec-col-xs-push-1{left:8.3333333333333%;}.ai1ec-col-xs-push-0{left:0%;}.ai1ec-col-xs-offset-12{margin-left:100%;}.ai1ec-col-xs-offset-11{margin-left:91.666666666667%;}.ai1ec-col-xs-offset-10{margin-left:83.333333333333%;}.ai1ec-col-xs-offset-9{margin-left:75%;}.ai1ec-col-xs-offset-8{margin-left:66.666666666667%;}.ai1ec-col-xs-offset-7{margin-left:58.333333333333%;}.ai1ec-col-xs-offset-6{margin-left:50%;}.ai1ec-col-xs-offset-5{margin-left:41.666666666667%;}.ai1ec-col-xs-offset-4{margin-left:33.333333333333%;}.ai1ec-col-xs-offset-3{margin-left:25%;}.ai1ec-col-xs-offset-2{margin-left:16.666666666667%;}.ai1ec-col-xs-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-xs-offset-0{margin-left:0%;}@media (min-width: 768px){.ai1ec-col-sm-1, .ai1ec-col-sm-2, .ai1ec-col-sm-3, .ai1ec-col-sm-4, .ai1ec-col-sm-5, .ai1ec-col-sm-6, .ai1ec-col-sm-7, .ai1ec-col-sm-8, .ai1ec-col-sm-9, .ai1ec-col-sm-10, .ai1ec-col-sm-11, .ai1ec-col-sm-12{float:left;}.ai1ec-col-sm-12{width:100%;}.ai1ec-col-sm-11{width:91.666666666667%;}.ai1ec-col-sm-10{width:83.333333333333%;}.ai1ec-col-sm-9{width:75%;}.ai1ec-col-sm-8{width:66.666666666667%;}.ai1ec-col-sm-7{width:58.333333333333%;}.ai1ec-col-sm-6{width:50%;}.ai1ec-col-sm-5{width:41.666666666667%;}.ai1ec-col-sm-4{width:33.333333333333%;}.ai1ec-col-sm-3{width:25%;}.ai1ec-col-sm-2{width:16.666666666667%;}.ai1ec-col-sm-1{width:8.3333333333333%;}.ai1ec-col-sm-pull-12{right:100%;}.ai1ec-col-sm-pull-11{right:91.666666666667%;}.ai1ec-col-sm-pull-10{right:83.333333333333%;}.ai1ec-col-sm-pull-9{right:75%;}.ai1ec-col-sm-pull-8{right:66.666666666667%;}.ai1ec-col-sm-pull-7{right:58.333333333333%;}.ai1ec-col-sm-pull-6{right:50%;}.ai1ec-col-sm-pull-5{right:41.666666666667%;}.ai1ec-col-sm-pull-4{right:33.333333333333%;}.ai1ec-col-sm-pull-3{right:25%;}.ai1ec-col-sm-pull-2{right:16.666666666667%;}.ai1ec-col-sm-pull-1{right:8.3333333333333%;}.ai1ec-col-sm-pull-0{right:0%;}.ai1ec-col-sm-push-12{left:100%;}.ai1ec-col-sm-push-11{left:91.666666666667%;}.ai1ec-col-sm-push-10{left:83.333333333333%;}.ai1ec-col-sm-push-9{left:75%;}.ai1ec-col-sm-push-8{left:66.666666666667%;}.ai1ec-col-sm-push-7{left:58.333333333333%;}.ai1ec-col-sm-push-6{left:50%;}.ai1ec-col-sm-push-5{left:41.666666666667%;}.ai1ec-col-sm-push-4{left:33.333333333333%;}.ai1ec-col-sm-push-3{left:25%;}.ai1ec-col-sm-push-2{left:16.666666666667%;}.ai1ec-col-sm-push-1{left:8.3333333333333%;}.ai1ec-col-sm-push-0{left:0%;}.ai1ec-col-sm-offset-12{margin-left:100%;}.ai1ec-col-sm-offset-11{margin-left:91.666666666667%;}.ai1ec-col-sm-offset-10{margin-left:83.333333333333%;}.ai1ec-col-sm-offset-9{margin-left:75%;}.ai1ec-col-sm-offset-8{margin-left:66.666666666667%;}.ai1ec-col-sm-offset-7{margin-left:58.333333333333%;}.ai1ec-col-sm-offset-6{margin-left:50%;}.ai1ec-col-sm-offset-5{margin-left:41.666666666667%;}.ai1ec-col-sm-offset-4{margin-left:33.333333333333%;}.ai1ec-col-sm-offset-3{margin-left:25%;}.ai1ec-col-sm-offset-2{margin-left:16.666666666667%;}.ai1ec-col-sm-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-sm-offset-0{margin-left:0%;}}@media (min-width: 992px){.ai1ec-col-md-1, .ai1ec-col-md-2, .ai1ec-col-md-3, .ai1ec-col-md-4, .ai1ec-col-md-5, .ai1ec-col-md-6, .ai1ec-col-md-7, .ai1ec-col-md-8, .ai1ec-col-md-9, .ai1ec-col-md-10, .ai1ec-col-md-11, .ai1ec-col-md-12{float:left;}.ai1ec-col-md-12{width:100%;}.ai1ec-col-md-11{width:91.666666666667%;}.ai1ec-col-md-10{width:83.333333333333%;}.ai1ec-col-md-9{width:75%;}.ai1ec-col-md-8{width:66.666666666667%;}.ai1ec-col-md-7{width:58.333333333333%;}.ai1ec-col-md-6{width:50%;}.ai1ec-col-md-5{width:41.666666666667%;}.ai1ec-col-md-4{width:33.333333333333%;}.ai1ec-col-md-3{width:25%;}.ai1ec-col-md-2{width:16.666666666667%;}.ai1ec-col-md-1{width:8.3333333333333%;}.ai1ec-col-md-pull-12{right:100%;}.ai1ec-col-md-pull-11{right:91.666666666667%;}.ai1ec-col-md-pull-10{right:83.333333333333%;}.ai1ec-col-md-pull-9{right:75%;}.ai1ec-col-md-pull-8{right:66.666666666667%;}.ai1ec-col-md-pull-7{right:58.333333333333%;}.ai1ec-col-md-pull-6{right:50%;}.ai1ec-col-md-pull-5{right:41.666666666667%;}.ai1ec-col-md-pull-4{right:33.333333333333%;}.ai1ec-col-md-pull-3{right:25%;}.ai1ec-col-md-pull-2{right:16.666666666667%;}.ai1ec-col-md-pull-1{right:8.3333333333333%;}.ai1ec-col-md-pull-0{right:0%;}.ai1ec-col-md-push-12{left:100%;}.ai1ec-col-md-push-11{left:91.666666666667%;}.ai1ec-col-md-push-10{left:83.333333333333%;}.ai1ec-col-md-push-9{left:75%;}.ai1ec-col-md-push-8{left:66.666666666667%;}.ai1ec-col-md-push-7{left:58.333333333333%;}.ai1ec-col-md-push-6{left:50%;}.ai1ec-col-md-push-5{left:41.666666666667%;}.ai1ec-col-md-push-4{left:33.333333333333%;}.ai1ec-col-md-push-3{left:25%;}.ai1ec-col-md-push-2{left:16.666666666667%;}.ai1ec-col-md-push-1{left:8.3333333333333%;}.ai1ec-col-md-push-0{left:0%;}.ai1ec-col-md-offset-12{margin-left:100%;}.ai1ec-col-md-offset-11{margin-left:91.666666666667%;}.ai1ec-col-md-offset-10{margin-left:83.333333333333%;}.ai1ec-col-md-offset-9{margin-left:75%;}.ai1ec-col-md-offset-8{margin-left:66.666666666667%;}.ai1ec-col-md-offset-7{margin-left:58.333333333333%;}.ai1ec-col-md-offset-6{margin-left:50%;}.ai1ec-col-md-offset-5{margin-left:41.666666666667%;}.ai1ec-col-md-offset-4{margin-left:33.333333333333%;}.ai1ec-col-md-offset-3{margin-left:25%;}.ai1ec-col-md-offset-2{margin-left:16.666666666667%;}.ai1ec-col-md-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-md-offset-0{margin-left:0%;}}@media (min-width: 1200px){.ai1ec-col-lg-1, .ai1ec-col-lg-2, .ai1ec-col-lg-3, .ai1ec-col-lg-4, .ai1ec-col-lg-5, .ai1ec-col-lg-6, .ai1ec-col-lg-7, .ai1ec-col-lg-8, .ai1ec-col-lg-9, .ai1ec-col-lg-10, .ai1ec-col-lg-11, .ai1ec-col-lg-12{float:left;}.ai1ec-col-lg-12{width:100%;}.ai1ec-col-lg-11{width:91.666666666667%;}.ai1ec-col-lg-10{width:83.333333333333%;}.ai1ec-col-lg-9{width:75%;}.ai1ec-col-lg-8{width:66.666666666667%;}.ai1ec-col-lg-7{width:58.333333333333%;}.ai1ec-col-lg-6{width:50%;}.ai1ec-col-lg-5{width:41.666666666667%;}.ai1ec-col-lg-4{width:33.333333333333%;}.ai1ec-col-lg-3{width:25%;}.ai1ec-col-lg-2{width:16.666666666667%;}.ai1ec-col-lg-1{width:8.3333333333333%;}.ai1ec-col-lg-pull-12{right:100%;}.ai1ec-col-lg-pull-11{right:91.666666666667%;}.ai1ec-col-lg-pull-10{right:83.333333333333%;}.ai1ec-col-lg-pull-9{right:75%;}.ai1ec-col-lg-pull-8{right:66.666666666667%;}.ai1ec-col-lg-pull-7{right:58.333333333333%;}.ai1ec-col-lg-pull-6{right:50%;}.ai1ec-col-lg-pull-5{right:41.666666666667%;}.ai1ec-col-lg-pull-4{right:33.333333333333%;}.ai1ec-col-lg-pull-3{right:25%;}.ai1ec-col-lg-pull-2{right:16.666666666667%;}.ai1ec-col-lg-pull-1{right:8.3333333333333%;}.ai1ec-col-lg-pull-0{right:0%;}.ai1ec-col-lg-push-12{left:100%;}.ai1ec-col-lg-push-11{left:91.666666666667%;}.ai1ec-col-lg-push-10{left:83.333333333333%;}.ai1ec-col-lg-push-9{left:75%;}.ai1ec-col-lg-push-8{left:66.666666666667%;}.ai1ec-col-lg-push-7{left:58.333333333333%;}.ai1ec-col-lg-push-6{left:50%;}.ai1ec-col-lg-push-5{left:41.666666666667%;}.ai1ec-col-lg-push-4{left:33.333333333333%;}.ai1ec-col-lg-push-3{left:25%;}.ai1ec-col-lg-push-2{left:16.666666666667%;}.ai1ec-col-lg-push-1{left:8.3333333333333%;}.ai1ec-col-lg-push-0{left:0%;}.ai1ec-col-lg-offset-12{margin-left:100%;}.ai1ec-col-lg-offset-11{margin-left:91.666666666667%;}.ai1ec-col-lg-offset-10{margin-left:83.333333333333%;}.ai1ec-col-lg-offset-9{margin-left:75%;}.ai1ec-col-lg-offset-8{margin-left:66.666666666667%;}.ai1ec-col-lg-offset-7{margin-left:58.333333333333%;}.ai1ec-col-lg-offset-6{margin-left:50%;}.ai1ec-col-lg-offset-5{margin-left:41.666666666667%;}.ai1ec-col-lg-offset-4{margin-left:33.333333333333%;}.ai1ec-col-lg-offset-3{margin-left:25%;}.ai1ec-col-lg-offset-2{margin-left:16.666666666667%;}.ai1ec-col-lg-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-lg-offset-0{margin-left:0%;}}.timely fieldset{padding:0;margin:0;border:0;}.timely legend{display:block;width:100%;padding:0;margin-bottom:18px;font-size:19.5px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5;}.timely label{display:inline-block;margin-bottom:5px;font-weight:bold;}.timely input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.timely input[type="radio"],.timely input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal;}.timely input[type="file"]{display:block;}.timely select[multiple],.timely select[size]{height:auto;}.timely select optgroup{font-size:inherit;font-style:inherit;font-family:inherit;}.timely input[type="file"]:focus,.timely input[type="radio"]:focus,.timely input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely input[type="number"]::-webkit-outer-spin-button,.timely input[type="number"]::-webkit-inner-spin-button{height:auto;}.timely output{display:block;padding-top:7px;font-size:13px;line-height:1.428571429;color:#555;vertical-align:middle;}.timely .ai1ec-form-control{display:block;width:100%;height:32px;padding:6px 12px;font-size:13px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;}.timely .ai1ec-form-control:focus{border-color:rgba(82,168,236,0.8);outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6);}.timely .ai1ec-form-control:-moz-placeholder{color:#999;}.timely .ai1ec-form-control::-moz-placeholder{color:#999;opacity:1;}.timely .ai1ec-form-control:-ms-input-placeholder{color:#999;}.timely .ai1ec-form-control::-webkit-input-placeholder{color:#999;}.timely .ai1ec-form-control[disabled],.timely .ai1ec-form-control[readonly],fieldset[disabled] .timely .ai1ec-form-control{cursor:not-allowed;background-color:#eee;}textarea.timely .ai1ec-form-control{height:auto;}.timely .ai1ec-form-group{margin-bottom:15px;}.timely .ai1ec-radio,.timely .ai1ec-checkbox{display:block;min-height:18px;margin-top:10px;margin-bottom:10px;padding-left:20px;vertical-align:middle;}.timely .ai1ec-radio label,.timely .ai1ec-checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer;}.timely .ai1ec-radio input[type="radio"],.timely .ai1ec-radio-inline input[type="radio"],.timely .ai1ec-checkbox input[type="checkbox"],.timely .ai1ec-checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px;}.timely .ai1ec-radio + .ai1ec-radio,.timely .ai1ec-checkbox + .ai1ec-checkbox{margin-top:-5px;}.timely .ai1ec-radio-inline,.timely .ai1ec-checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer;}.timely .ai1ec-radio-inline + .ai1ec-radio-inline,.timely .ai1ec-checkbox-inline + .ai1ec-checkbox-inline{margin-top:0;margin-left:10px;}.timely input[type="radio"][disabled],fieldset[disabled] .timely input[type="radio"],.timely input[type="checkbox"][disabled],fieldset[disabled] .timely input[type="checkbox"],.timely .ai1ec-radio[disabled],fieldset[disabled] .timely .ai1ec-radio,.timely .ai1ec-radio-inline[disabled],fieldset[disabled] .timely .ai1ec-radio-inline,.timely .ai1ec-checkbox[disabled],fieldset[disabled] .timely .ai1ec-checkbox,.timely .ai1ec-checkbox-inline[disabled],fieldset[disabled] .timely .ai1ec-checkbox-inline{cursor:not-allowed;}.timely .ai1ec-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}select.timely .ai1ec-input-sm{height:30px;line-height:30px;}textarea.timely .ai1ec-input-sm{height:auto;}.timely .ai1ec-input-lg{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}select.timely .ai1ec-input-lg{height:45px;line-height:45px;}textarea.timely .ai1ec-input-lg{height:auto;}.timely .ai1ec-has-warning .ai1ec-help-block,.timely .ai1ec-has-warning .ai1ec-control-label,.timely .ai1ec-has-warning .ai1ec-radio,.timely .ai1ec-has-warning .ai1ec-checkbox,.timely .ai1ec-has-warning .ai1ec-radio-inline,.timely .ai1ec-has-warning .ai1ec-checkbox-inline{color:#8a6d3b;}.timely .ai1ec-has-warning .ai1ec-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-warning .ai1ec-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;}.timely .ai1ec-has-warning .ai1ec-input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3;}.timely .ai1ec-has-error .ai1ec-help-block,.timely .ai1ec-has-error .ai1ec-control-label,.timely .ai1ec-has-error .ai1ec-radio,.timely .ai1ec-has-error .ai1ec-checkbox,.timely .ai1ec-has-error .ai1ec-radio-inline,.timely .ai1ec-has-error .ai1ec-checkbox-inline{color:#a94442;}.timely .ai1ec-has-error .ai1ec-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-error .ai1ec-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;}.timely .ai1ec-has-error .ai1ec-input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede;}.timely .ai1ec-has-success .ai1ec-help-block,.timely .ai1ec-has-success .ai1ec-control-label,.timely .ai1ec-has-success .ai1ec-radio,.timely .ai1ec-has-success .ai1ec-checkbox,.timely .ai1ec-has-success .ai1ec-radio-inline,.timely .ai1ec-has-success .ai1ec-checkbox-inline{color:#3c763d;}.timely .ai1ec-has-success .ai1ec-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-success .ai1ec-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;}.timely .ai1ec-has-success .ai1ec-input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8;}.timely .ai1ec-form-control-static{margin-bottom:0;}.timely .ai1ec-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373;}@media (min-width: 768px){.timely .ai1ec-form-inline .ai1ec-form-group{display:inline-block;margin-bottom:0;vertical-align:middle;}.timely .ai1ec-form-inline .ai1ec-form-control{display:inline-block;}.timely .ai1ec-form-inline select.ai1ec-form-control{width:auto;}.timely .ai1ec-form-inline .ai1ec-radio,.timely .ai1ec-form-inline .ai1ec-checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;}.timely .ai1ec-form-inline .ai1ec-radio input[type="radio"],.timely .ai1ec-form-inline .ai1ec-checkbox input[type="checkbox"]{float:none;margin-left:0;}}.timely .ai1ec-form-horizontal .ai1ec-control-label,.timely .ai1ec-form-horizontal .ai1ec-radio,.timely .ai1ec-form-horizontal .ai1ec-checkbox,.timely .ai1ec-form-horizontal .ai1ec-radio-inline,.timely .ai1ec-form-horizontal .ai1ec-checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px;}.timely .ai1ec-form-horizontal .ai1ec-radio,.timely .ai1ec-form-horizontal .ai1ec-checkbox{min-height:25px;}.timely .ai1ec-form-horizontal .ai1ec-form-group{margin-left:-15px;margin-right:-15px;}.timely .ai1ec-form-horizontal .ai1ec-form-group:before,.timely .ai1ec-form-horizontal .ai1ec-form-group:after{content:" ";display:table;}.timely .ai1ec-form-horizontal .ai1ec-form-group:after{clear:both;}.timely .ai1ec-form-horizontal .ai1ec-form-group:before,.timely .ai1ec-form-horizontal .ai1ec-form-group:after{content:" ";display:table;}.timely .ai1ec-form-horizontal .ai1ec-form-group:after{clear:both;}.timely .ai1ec-form-horizontal .ai1ec-form-control-static{padding-top:7px;}@media (min-width: 768px){.timely .ai1ec-form-horizontal .ai1ec-control-label{text-align:right;}}.timely .ai1ec-btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:13px;line-height:1.428571429;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.timely .ai1ec-btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely .ai1ec-btn:hover,.timely .ai1ec-btn:focus{color:#333;text-decoration:none;}.timely .ai1ec-btn:active,.timely .ai1ec-btn.ai1ec-active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);}.timely .ai1ec-btn.ai1ec-disabled,.timely .ai1ec-btn[disabled],fieldset[disabled] .timely .ai1ec-btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-default{color:#333;background-color:#fff;border-color:#ccc;}.timely .ai1ec-btn-default:hover,.timely .ai1ec-btn-default:focus,.timely .ai1ec-btn-default:active,.timely .ai1ec-btn-default.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-default{color:#333;background-color:#ebebeb;border-color:#adadad;}.timely .ai1ec-btn-default:active,.timely .ai1ec-btn-default.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-default{background-image:none;}.timely .ai1ec-btn-default.ai1ec-disabled,.timely .ai1ec-btn-default.ai1ec-disabled:hover,.timely .ai1ec-btn-default.ai1ec-disabled:focus,.timely .ai1ec-btn-default.ai1ec-disabled:active,.timely .ai1ec-btn-default.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-default[disabled],.timely .ai1ec-btn-default[disabled]:hover,.timely .ai1ec-btn-default[disabled]:focus,.timely .ai1ec-btn-default[disabled]:active,.timely .ai1ec-btn-default[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-default,fieldset[disabled] .timely .ai1ec-btn-default:hover,fieldset[disabled] .timely .ai1ec-btn-default:focus,fieldset[disabled] .timely .ai1ec-btn-default:active,fieldset[disabled] .timely .ai1ec-btn-default.ai1ec-active{background-color:#fff;border-color:#ccc;}.timely .ai1ec-btn-default .ai1ec-badge{color:#fff;background-color:#fff;}.timely .ai1ec-btn-primary{color:#fff;background-color:#6dbb4f;border-color:#61ad43;}.timely .ai1ec-btn-primary:hover,.timely .ai1ec-btn-primary:focus,.timely .ai1ec-btn-primary:active,.timely .ai1ec-btn-primary.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-primary{color:#fff;background-color:#5aa23f;border-color:#488132;}.timely .ai1ec-btn-primary:active,.timely .ai1ec-btn-primary.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-primary{background-image:none;}.timely .ai1ec-btn-primary.ai1ec-disabled,.timely .ai1ec-btn-primary.ai1ec-disabled:hover,.timely .ai1ec-btn-primary.ai1ec-disabled:focus,.timely .ai1ec-btn-primary.ai1ec-disabled:active,.timely .ai1ec-btn-primary.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-primary[disabled],.timely .ai1ec-btn-primary[disabled]:hover,.timely .ai1ec-btn-primary[disabled]:focus,.timely .ai1ec-btn-primary[disabled]:active,.timely .ai1ec-btn-primary[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-primary,fieldset[disabled] .timely .ai1ec-btn-primary:hover,fieldset[disabled] .timely .ai1ec-btn-primary:focus,fieldset[disabled] .timely .ai1ec-btn-primary:active,fieldset[disabled] .timely .ai1ec-btn-primary.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.timely .ai1ec-btn-primary .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.timely .ai1ec-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236;}.timely .ai1ec-btn-warning:hover,.timely .ai1ec-btn-warning:focus,.timely .ai1ec-btn-warning:active,.timely .ai1ec-btn-warning.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512;}.timely .ai1ec-btn-warning:active,.timely .ai1ec-btn-warning.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-warning{background-image:none;}.timely .ai1ec-btn-warning.ai1ec-disabled,.timely .ai1ec-btn-warning.ai1ec-disabled:hover,.timely .ai1ec-btn-warning.ai1ec-disabled:focus,.timely .ai1ec-btn-warning.ai1ec-disabled:active,.timely .ai1ec-btn-warning.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-warning[disabled],.timely .ai1ec-btn-warning[disabled]:hover,.timely .ai1ec-btn-warning[disabled]:focus,.timely .ai1ec-btn-warning[disabled]:active,.timely .ai1ec-btn-warning[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-warning,fieldset[disabled] .timely .ai1ec-btn-warning:hover,fieldset[disabled] .timely .ai1ec-btn-warning:focus,fieldset[disabled] .timely .ai1ec-btn-warning:active,fieldset[disabled] .timely .ai1ec-btn-warning.ai1ec-active{background-color:#f0ad4e;border-color:#eea236;}.timely .ai1ec-btn-warning .ai1ec-badge{color:#f0ad4e;background-color:#fff;}.timely .ai1ec-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a;}.timely .ai1ec-btn-danger:hover,.timely .ai1ec-btn-danger:focus,.timely .ai1ec-btn-danger:active,.timely .ai1ec-btn-danger.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925;}.timely .ai1ec-btn-danger:active,.timely .ai1ec-btn-danger.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-danger{background-image:none;}.timely .ai1ec-btn-danger.ai1ec-disabled,.timely .ai1ec-btn-danger.ai1ec-disabled:hover,.timely .ai1ec-btn-danger.ai1ec-disabled:focus,.timely .ai1ec-btn-danger.ai1ec-disabled:active,.timely .ai1ec-btn-danger.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-danger[disabled],.timely .ai1ec-btn-danger[disabled]:hover,.timely .ai1ec-btn-danger[disabled]:focus,.timely .ai1ec-btn-danger[disabled]:active,.timely .ai1ec-btn-danger[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-danger,fieldset[disabled] .timely .ai1ec-btn-danger:hover,fieldset[disabled] .timely .ai1ec-btn-danger:focus,fieldset[disabled] .timely .ai1ec-btn-danger:active,fieldset[disabled] .timely .ai1ec-btn-danger.ai1ec-active{background-color:#d9534f;border-color:#d43f3a;}.timely .ai1ec-btn-danger .ai1ec-badge{color:#d9534f;background-color:#fff;}.timely .ai1ec-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.timely .ai1ec-btn-success:hover,.timely .ai1ec-btn-success:focus,.timely .ai1ec-btn-success:active,.timely .ai1ec-btn-success.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-success{color:#fff;background-color:#47a447;border-color:#398439;}.timely .ai1ec-btn-success:active,.timely .ai1ec-btn-success.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-success{background-image:none;}.timely .ai1ec-btn-success.ai1ec-disabled,.timely .ai1ec-btn-success.ai1ec-disabled:hover,.timely .ai1ec-btn-success.ai1ec-disabled:focus,.timely .ai1ec-btn-success.ai1ec-disabled:active,.timely .ai1ec-btn-success.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-success[disabled],.timely .ai1ec-btn-success[disabled]:hover,.timely .ai1ec-btn-success[disabled]:focus,.timely .ai1ec-btn-success[disabled]:active,.timely .ai1ec-btn-success[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-success,fieldset[disabled] .timely .ai1ec-btn-success:hover,fieldset[disabled] .timely .ai1ec-btn-success:focus,fieldset[disabled] .timely .ai1ec-btn-success:active,fieldset[disabled] .timely .ai1ec-btn-success.ai1ec-active{background-color:#5cb85c;border-color:#4cae4c;}.timely .ai1ec-btn-success .ai1ec-badge{color:#5cb85c;background-color:#fff;}.timely .ai1ec-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da;}.timely .ai1ec-btn-info:hover,.timely .ai1ec-btn-info:focus,.timely .ai1ec-btn-info:active,.timely .ai1ec-btn-info.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc;}.timely .ai1ec-btn-info:active,.timely .ai1ec-btn-info.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-info{background-image:none;}.timely .ai1ec-btn-info.ai1ec-disabled,.timely .ai1ec-btn-info.ai1ec-disabled:hover,.timely .ai1ec-btn-info.ai1ec-disabled:focus,.timely .ai1ec-btn-info.ai1ec-disabled:active,.timely .ai1ec-btn-info.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-info[disabled],.timely .ai1ec-btn-info[disabled]:hover,.timely .ai1ec-btn-info[disabled]:focus,.timely .ai1ec-btn-info[disabled]:active,.timely .ai1ec-btn-info[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-info,fieldset[disabled] .timely .ai1ec-btn-info:hover,fieldset[disabled] .timely .ai1ec-btn-info:focus,fieldset[disabled] .timely .ai1ec-btn-info:active,fieldset[disabled] .timely .ai1ec-btn-info.ai1ec-active{background-color:#5bc0de;border-color:#46b8da;}.timely .ai1ec-btn-info .ai1ec-badge{color:#5bc0de;background-color:#fff;}.timely .ai1ec-btn-inactive{cursor:default;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-link{color:#3d6b99;font-weight:normal;cursor:pointer;border-radius:0;}.timely .ai1ec-btn-link,.timely .ai1ec-btn-link:active,.timely .ai1ec-btn-link[disabled],fieldset[disabled] .timely .ai1ec-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-link,.timely .ai1ec-btn-link:hover,.timely .ai1ec-btn-link:focus,.timely .ai1ec-btn-link:active{border-color:transparent;}.timely .ai1ec-btn-link:hover,.timely .ai1ec-btn-link:focus{color:#335980;text-decoration:underline;background-color:transparent;}.timely .ai1ec-btn-link[disabled]:hover,.timely .ai1ec-btn-link[disabled]:focus,fieldset[disabled] .timely .ai1ec-btn-link:hover,fieldset[disabled] .timely .ai1ec-btn-link:focus{color:#999;text-decoration:none;}.timely .ai1ec-btn-lg{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.timely .ai1ec-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.timely .ai1ec-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}.timely .ai1ec-btn-block{display:block;width:100%;padding-left:0;padding-right:0;}.timely .ai1ec-btn-block + .ai1ec-btn-block{margin-top:5px;}.timely input[type="submit"].ai1ec-btn-block,.timely input[type="reset"].ai1ec-btn-block,.timely input[type="button"].ai1ec-btn-block{width:100%;}.timely h1,.timely h2,.timely h3,.timely h4,.timely h5,.timely h6,.timely .ai1ec-h1,.timely .ai1ec-h2,.timely .ai1ec-h3,.timely .ai1ec-h4,.timely .ai1ec-h5,.timely .ai1ec-h6{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:;}.timely h1 small,.timely h1 .ai1ec-small,.timely h2 small,.timely h2 .ai1ec-small,.timely h3 small,.timely h3 .ai1ec-small,.timely h4 small,.timely h4 .ai1ec-small,.timely h5 small,.timely h5 .ai1ec-small,.timely h6 small,.timely h6 .ai1ec-small,.timely .ai1ec-h1 small,.timely .ai1ec-h1 .ai1ec-small,.timely .ai1ec-h2 small,.timely .ai1ec-h2 .ai1ec-small,.timely .ai1ec-h3 small,.timely .ai1ec-h3 .ai1ec-small,.timely .ai1ec-h4 small,.timely .ai1ec-h4 .ai1ec-small,.timely .ai1ec-h5 small,.timely .ai1ec-h5 .ai1ec-small,.timely .ai1ec-h6 small,.timely .ai1ec-h6 .ai1ec-small{font-weight:normal;line-height:1;color:#999;}.timely h1,.timely h2,.timely h3{margin-top:18px;margin-bottom:9px;}.timely h1 small,.timely h1 .ai1ec-small,.timely h2 small,.timely h2 .ai1ec-small,.timely h3 small,.timely h3 .ai1ec-small{font-size:65%;}.timely h4,.timely h5,.timely h6{margin-top:9px;margin-bottom:9px;}.timely h4 small,.timely h4 .ai1ec-small,.timely h5 small,.timely h5 .ai1ec-small,.timely h6 small,.timely h6 .ai1ec-small{font-size:75%;}.timely h1,.timely .ai1ec-h1{font-size:33px;}.timely h2,.timely .ai1ec-h2{font-size:27px;}.timely h3,.timely .ai1ec-h3{font-size:23px;}.timely h4,.timely .ai1ec-h4{font-size:17px;}.timely h5,.timely .ai1ec-h5{font-size:13px;}.timely h6,.timely .ai1ec-h6{font-size:12px;}.timely p{margin:0 0 9px;}.timely .ai1ec-lead{margin-bottom:18px;font-size:14px;font-weight:200;line-height:1.4;}@media (min-width: 768px){.timely .ai1ec-lead{font-size:19.5px;}}.timely small,.timely .ai1ec-small{font-size:85%;}.timely cite{font-style:normal;}.timely .ai1ec-text-muted{color:#858585;}.timely .ai1ec-text-primary{color:#6dbb4f;}.timely .ai1ec-text-primary:hover{color:#569b3c;}.timely .ai1ec-text-warning{color:#8a6d3b;}.timely .ai1ec-text-warning:hover{color:#66512c;}.timely .ai1ec-text-danger{color:#a94442;}.timely .ai1ec-text-danger:hover{color:#843534;}.timely .ai1ec-text-success{color:#3c763d;}.timely .ai1ec-text-success:hover{color:#2b542c;}.timely .ai1ec-text-info{color:#418cc7;}.timely .ai1ec-text-info:hover{color:#3071a5;}.timely .ai1ec-text-left{text-align:left;}.timely .ai1ec-text-right{text-align:right;}.timely .ai1ec-text-center{text-align:center;}.timely .ai1ec-page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee;}.timely ul,.timely ol{margin-top:0;margin-bottom:9px;}.timely ul ul,.timely ul ol,.timely ol ul,.timely ol ol{margin-bottom:0;}.timely .ai1ec-list-unstyled{padding-left:0;list-style:none;}.timely .ai1ec-list-inline{padding-left:0;list-style:none;}.timely .ai1ec-list-inline > li{display:inline-block;padding-left:5px;padding-right:5px;}.timely .ai1ec-list-inline > li:first-child{padding-left:0;}.timely dl{margin-top:0;margin-bottom:18px;}.timely dt,.timely dd{line-height:1.428571429;}.timely dt{font-weight:bold;}.timely dd{margin-left:0;}@media (min-width: 768px){.timely .ai1ec-dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.timely .ai1ec-dl-horizontal dd{margin-left:180px;}.timely .ai1ec-dl-horizontal dd:before,.timely .ai1ec-dl-horizontal dd:after{content:" ";display:table;}.timely .ai1ec-dl-horizontal dd:after{clear:both;}.timely .ai1ec-dl-horizontal dd:before,.timely .ai1ec-dl-horizontal dd:after{content:" ";display:table;}.timely .ai1ec-dl-horizontal dd:after{clear:both;}}.timely abbr[title],.timely abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999;}.timely .ai1ec-initialism{font-size:90%;text-transform:uppercase;}.timely blockquote{padding:9px 18px;margin:0 0 18px;border-left:5px solid #eee;}.timely blockquote p{font-size:16.25px;font-weight:300;line-height:1.25;}.timely blockquote p:last-child{margin-bottom:0;}.timely blockquote small,.timely blockquote .ai1ec-small{display:block;line-height:1.428571429;color:#999;}.timely blockquote small:before,.timely blockquote .ai1ec-small:before{content:'\2014 \00A0';}.timely blockquote.ai1ec-pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;}.timely blockquote.ai1ec-pull-right p,.timely blockquote.ai1ec-pull-right small,.timely blockquote.ai1ec-pull-right .ai1ec-small{text-align:right;}.timely blockquote.ai1ec-pull-right small:before,.timely blockquote.ai1ec-pull-right .ai1ec-small:before{content:'';}.timely blockquote.ai1ec-pull-right small:after,.timely blockquote.ai1ec-pull-right .ai1ec-small:after{content:'\00A0 \2014';}.timely blockquote:before,.timely blockquote:after{content:"";}.timely address{margin-bottom:18px;font-style:normal;line-height:1.428571429;}.ai1ec-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear;}.ai1ec-fade.ai1ec-in{opacity:1;}.ai1ec-collapse{display:none;}.ai1ec-collapse.ai1ec-in{display:block;}.ai1ec-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease;}.ai1ec-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent;}.ai1ec-dropdown{position:relative;}.ai1ec-dropdown-toggle:focus{outline:0;}.ai1ec-dropdown-menu{position:absolute;top:100%;left:0;z-index:10000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:13px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box;}.ai1ec-dropdown-menu.ai1ec-pull-right{right:0;left:auto;}.ai1ec-dropdown-menu .ai1ec-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;}.ai1ec-dropdown-menu > li > a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap;}.ai1ec-dropdown-menu > li > a:hover,.ai1ec-dropdown-menu > li > a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5;}.ai1ec-dropdown-menu > .ai1ec-active > a,.ai1ec-dropdown-menu > .ai1ec-active > a:hover,.ai1ec-dropdown-menu > .ai1ec-active > a:focus{color:#fff;text-decoration:none;outline:0;background-color:#6489ad;}.ai1ec-dropdown-menu > .ai1ec-disabled > a,.ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{color:#999;}.ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed;}.ai1ec-open > .ai1ec-dropdown-menu{display:block;}.ai1ec-open > a{outline:0;}.ai1ec-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999;}.ai1ec-dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:9990;}.ai1ec-pull-right > .ai1ec-dropdown-menu{right:0;left:auto;}.ai1ec-dropup .ai1ec-caret,.ai1ec-navbar-fixed-bottom .ai1ec-dropdown .ai1ec-caret{border-top:0;border-bottom:4px solid;content:"";}.ai1ec-dropup .ai1ec-dropdown-menu,.ai1ec-navbar-fixed-bottom .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}.ai1ec-btn-group,.ai1ec-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle;}.ai1ec-btn-group > .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn{position:relative;float:left;}.ai1ec-btn-group > .ai1ec-btn:hover,.ai1ec-btn-group > .ai1ec-btn:focus,.ai1ec-btn-group > .ai1ec-btn:active,.ai1ec-btn-group > .ai1ec-btn.ai1ec-active,.ai1ec-btn-group-vertical > .ai1ec-btn:hover,.ai1ec-btn-group-vertical > .ai1ec-btn:focus,.ai1ec-btn-group-vertical > .ai1ec-btn:active,.ai1ec-btn-group-vertical > .ai1ec-btn.ai1ec-active{z-index:2;}.ai1ec-btn-group > .ai1ec-btn:focus,.ai1ec-btn-group-vertical > .ai1ec-btn:focus{outline:none;}.ai1ec-btn-group .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-group .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-group .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-group .ai1ec-btn-group + .ai1ec-btn-group{margin-left:-1px;}.ai1ec-btn-toolbar:before,.ai1ec-btn-toolbar:after{content:" ";display:table;}.ai1ec-btn-toolbar:after{clear:both;}.ai1ec-btn-toolbar:before,.ai1ec-btn-toolbar:after{content:" ";display:table;}.ai1ec-btn-toolbar:after{clear:both;}.ai1ec-btn-toolbar .ai1ec-btn-group{float:left;}.ai1ec-btn-toolbar > .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-toolbar > .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-toolbar > .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-toolbar > .ai1ec-btn-group + .ai1ec-btn-group{margin-left:5px;}.ai1ec-btn-group > .ai1ec-btn:not(:first-child):not(:last-child):not(.ai1ec-dropdown-toggle){border-radius:0;}.ai1ec-btn-group > .ai1ec-btn:first-child{margin-left:0;}.ai1ec-btn-group > .ai1ec-btn:first-child:not(:last-child):not(.ai1ec-dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0;}.ai1ec-btn-group > .ai1ec-btn:last-child:not(:first-child),.ai1ec-btn-group > .ai1ec-dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group{float:left;}.ai1ec-btn-group > .ai1ec-btn-group:not(:first-child):not(:last-child) > .ai1ec-btn{border-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group:first-child > .ai1ec-btn:last-child,.ai1ec-btn-group > .ai1ec-btn-group:first-child > .ai1ec-dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group:last-child > .ai1ec-btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0;}.ai1ec-btn-group .ai1ec-dropdown-toggle:active,.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle{outline:0;}.ai1ec-btn-group-xs > .ai1ec-btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-group-sm > .ai1ec-btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-group-lg > .ai1ec-btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.ai1ec-btn-group > .ai1ec-btn + .ai1ec-dropdown-toggle{padding-left:8px;padding-right:8px;}.ai1ec-btn-group > .ai1ec-btn-lg + .ai1ec-dropdown-toggle{padding-left:12px;padding-right:12px;}.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);}.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-btn-link{-webkit-box-shadow:none;box-shadow:none;}.ai1ec-btn .ai1ec-caret{margin-left:0;}.ai1ec-btn-lg .ai1ec-caret{border-width:5px 5px 0;border-bottom-width:0;}.ai1ec-dropup .ai1ec-btn-lg .ai1ec-caret{border-width:0 5px 5px;}.ai1ec-btn-group-vertical > .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn-group,.ai1ec-btn-group-vertical > .ai1ec-btn-group > .ai1ec-btn{display:block;float:none;width:100%;max-width:100%;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:before,.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{content:" ";display:table;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{clear:both;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:before,.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{content:" ";display:table;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{clear:both;}.ai1ec-btn-group-vertical > .ai1ec-btn-group > .ai1ec-btn{float:none;}.ai1ec-btn-group-vertical > .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-group-vertical > .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn-group + .ai1ec-btn-group{margin-top:-1px;margin-left:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:not(:first-child):not(:last-child){border-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:not(:first-child):not(:last-child) > .ai1ec-btn{border-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:first-child > .ai1ec-btn:last-child,.ai1ec-btn-group-vertical > .ai1ec-btn-group:first-child > .ai1ec-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:last-child > .ai1ec-btn:first-child{border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate;}.ai1ec-btn-group-justified > .ai1ec-btn,.ai1ec-btn-group-justified > .ai1ec-btn-group{float:none;display:table-cell;width:1%;}.ai1ec-btn-group-justified > .ai1ec-btn-group .ai1ec-btn{width:100%;}[data-toggle="buttons"] > .ai1ec-btn > input[type="radio"],[data-toggle="buttons"] > .ai1ec-btn > input[type="checkbox"]{display:none;}.timely .ai1ec-nav{margin-bottom:0;padding-left:0;list-style:none;}.timely .ai1ec-nav:before,.timely .ai1ec-nav:after{content:" ";display:table;}.timely .ai1ec-nav:after{clear:both;}.timely .ai1ec-nav:before,.timely .ai1ec-nav:after{content:" ";display:table;}.timely .ai1ec-nav:after{clear:both;}.timely .ai1ec-nav > li{position:relative;display:block;}.timely .ai1ec-nav > li > a{position:relative;display:block;padding:10px 15px;}.timely .ai1ec-nav > li > a:hover,.timely .ai1ec-nav > li > a:focus{text-decoration:none;background-color:#eee;}.timely .ai1ec-nav > li.ai1ec-disabled > a{color:#999;}.timely .ai1ec-nav > li.ai1ec-disabled > a:hover,.timely .ai1ec-nav > li.ai1ec-disabled > a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed;}.timely .ai1ec-nav .ai1ec-open > a,.timely .ai1ec-nav .ai1ec-open > a:hover,.timely .ai1ec-nav .ai1ec-open > a:focus{background-color:#eee;border-color:#3d6b99;}.timely .ai1ec-nav .ai1ec-nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;}.timely .ai1ec-nav > li > a > img{max-width:none;}.timely .ai1ec-nav-tabs{border-bottom:1px solid #ddd;}.timely .ai1ec-nav-tabs > li{float:left;margin-bottom:-1px;}.timely .ai1ec-nav-tabs > li > a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs > li > a:hover{border-color:#eee #eee #ddd;}.timely .ai1ec-nav-tabs > li.ai1ec-active > a,.timely .ai1ec-nav-tabs > li.ai1ec-active > a:hover,.timely .ai1ec-nav-tabs > li.ai1ec-active > a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified{width:100%;border-bottom:0;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li{float:none;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{text-align:center;margin-bottom:5px;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;left:auto;}@media (min-width: 768px){.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li{display:table-cell;width:1%;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{margin-bottom:0;}}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{margin-right:0;border-radius:4px;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:focus{border:1px solid #ddd;}@media (min-width: 768px){.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:focus{border-bottom-color:#fff;}}.timely .ai1ec-nav-pills > li{float:left;}.timely .ai1ec-nav-pills > li > a{border-radius:4px;}.timely .ai1ec-nav-pills > li + li{margin-left:2px;}.timely .ai1ec-nav-pills > li.ai1ec-active > a,.timely .ai1ec-nav-pills > li.ai1ec-active > a:hover,.timely .ai1ec-nav-pills > li.ai1ec-active > a:focus{color:#fff;background-color:#6dbb4f;}.timely .ai1ec-nav-stacked > li{float:none;}.timely .ai1ec-nav-stacked > li + li{margin-top:2px;margin-left:0;}.timely .ai1ec-nav-justified{width:100%;}.timely .ai1ec-nav-justified > li{float:none;}.timely .ai1ec-nav-justified > li > a{text-align:center;margin-bottom:5px;}.timely .ai1ec-nav-justified > .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;left:auto;}@media (min-width: 768px){.timely .ai1ec-nav-justified > li{display:table-cell;width:1%;}.timely .ai1ec-nav-justified > li > a{margin-bottom:0;}}.timely .ai1ec-nav-tabs-justified{border-bottom:0;}.timely .ai1ec-nav-tabs-justified > li > a{margin-right:0;border-radius:4px;}.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:focus{border:1px solid #ddd;}@media (min-width: 768px){.timely .ai1ec-nav-tabs-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:focus{border-bottom-color:#fff;}}.timely .ai1ec-tab-content > .ai1ec-tab-pane{display:none;}.timely .ai1ec-tab-content > .ai1ec-active{display:block;}.timely .ai1ec-nav-tabs .ai1ec-dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-thumbnail{display:block;padding:4px;margin-bottom:18px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;}.ai1ec-thumbnail > img,.ai1ec-thumbnail a > img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto;}a.ai1ec-thumbnail:hover,a.ai1ec-thumbnail:focus,a.ai1ec-thumbnail.ai1ec-active{border-color:#3d6b99;}.ai1ec-thumbnail .ai1ec-caption{padding:9px;color:#333;}.ai1ec-alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:4px;}.ai1ec-alert h4{margin-top:0;color:inherit;}.ai1ec-alert .ai1ec-alert-link{font-weight:bold;}.ai1ec-alert > p,.ai1ec-alert > ul{margin-bottom:0;}.ai1ec-alert > p + p{margin-top:5px;}.ai1ec-alert-dismissable{padding-right:35px;}.ai1ec-alert-dismissable .ai1ec-close{position:relative;top:-2px;right:-21px;color:inherit;}.ai1ec-alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d;}.ai1ec-alert-success hr{border-top-color:#c9e2b3;}.ai1ec-alert-success .ai1ec-alert-link{color:#2b542c;}.ai1ec-alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#418cc7;}.ai1ec-alert-info hr{border-top-color:#a6e1ec;}.ai1ec-alert-info .ai1ec-alert-link{color:#3071a5;}.ai1ec-alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b;}.ai1ec-alert-warning hr{border-top-color:#f7e1b5;}.ai1ec-alert-warning .ai1ec-alert-link{color:#66512c;}.ai1ec-alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442;font-size:13px;font-family:sans-serif;line-height:1.8;}.ai1ec-alert-danger hr{border-top-color:#e4b9c0;}.ai1ec-alert-danger .ai1ec-alert-link{color:#843534;}.ai1ec-alert-danger a{line-height:1.8;text-decoration:underline !important;}.ai1ec-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);}.ai1ec-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15);}.ai1ec-well-lg{padding:24px;border-radius:6px;}.ai1ec-well-sm{padding:9px;border-radius:3px;}.timely .ai1ec-close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#333;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20);}.timely .ai1ec-close:hover,.timely .ai1ec-close:focus{color:#333;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50);}button.timely .ai1ec-close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}.ai1ec-modal-open{overflow:hidden;}.ai1ec-modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:10040;}.ai1ec-modal.ai1ec-fade .ai1ec-modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out;}.ai1ec-modal.ai1ec-in .ai1ec-modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);}.ai1ec-modal-dialog{position:relative;width:auto;margin:10px;z-index:10050;}.ai1ec-modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid #c2c2c2;border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none;}.ai1ec-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10030;background-color:#fff;}.ai1ec-modal-backdrop.ai1ec-fade{opacity:0;filter:alpha(opacity=0);}.ai1ec-modal-backdrop.ai1ec-in{opacity:.5;filter:alpha(opacity=50);}.ai1ec-modal-header{padding:15px;border-bottom:1px solid #c2c2c2;min-height:16.428571429px;}.ai1ec-modal-header .ai1ec-close{margin-top:-2px;}.ai1ec-modal-title{margin:0;line-height:1.428571429;}.ai1ec-modal-body{position:relative;padding:20px;}.ai1ec-modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #c2c2c2;}.ai1ec-modal-footer:before,.ai1ec-modal-footer:after{content:" ";display:table;}.ai1ec-modal-footer:after{clear:both;}.ai1ec-modal-footer:before,.ai1ec-modal-footer:after{content:" ";display:table;}.ai1ec-modal-footer:after{clear:both;}.ai1ec-modal-footer .ai1ec-btn + .ai1ec-btn{margin-left:5px;margin-bottom:0;}.ai1ec-modal-footer .ai1ec-btn-group .ai1ec-btn + .ai1ec-btn{margin-left:-1px;}.ai1ec-modal-footer .ai1ec-btn-block + .ai1ec-btn-block{margin-left:0;}@media screen and (min-width: 768px){.ai1ec-modal-dialog{width:600px;margin:30px auto;}.ai1ec-modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5);}}.ai1ec-tooltip{position:absolute;z-index:10035;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.ai1ec-tooltip.ai1ec-in{opacity:.9;filter:alpha(opacity=90);}.ai1ec-tooltip.ai1ec-top{margin-top:-3px;padding:5px 0;}.ai1ec-tooltip.ai1ec-right{margin-left:3px;padding:0 5px;}.ai1ec-tooltip.ai1ec-bottom{margin-top:3px;padding:5px 0;}.ai1ec-tooltip.ai1ec-left{margin-left:-3px;padding:0 5px;}.ai1ec-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;}.ai1ec-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}.ai1ec-tooltip.ai1ec-top .ai1ec-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-top-left .ai1ec-tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-top-right .ai1ec-tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-right .ai1ec-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000;}.ai1ec-tooltip.ai1ec-left .ai1ec-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000;}.ai1ec-tooltip.ai1ec-bottom .ai1ec-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-tooltip.ai1ec-bottom-left .ai1ec-tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-tooltip.ai1ec-bottom-right .ai1ec-tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-popover{position:absolute;top:0;left:0;z-index:10010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal;}.ai1ec-popover.ai1ec-top{margin-top:-10px;}.ai1ec-popover.ai1ec-right{margin-left:10px;}.ai1ec-popover.ai1ec-bottom{margin-top:10px;}.ai1ec-popover.ai1ec-left{margin-left:-10px;}.ai1ec-popover-title{margin:0;padding:8px 14px;font-size:13px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;}.ai1ec-popover-content{padding:9px 14px;}.ai1ec-popover .ai1ec-arrow,.ai1ec-popover .ai1ec-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;}.ai1ec-popover .ai1ec-arrow{border-width:6px;}.ai1ec-popover .ai1ec-arrow:after{border-width:5px;content:"";}.ai1ec-popover.ai1ec-top .ai1ec-arrow{left:50%;margin-left:-6px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-6px;}.ai1ec-popover.ai1ec-top .ai1ec-arrow:after{content:" ";bottom:1px;margin-left:-5px;border-bottom-width:0;border-top-color:#fff;}.ai1ec-popover.ai1ec-right .ai1ec-arrow{top:50%;left:-6px;margin-top:-6px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);}.ai1ec-popover.ai1ec-right .ai1ec-arrow:after{content:" ";left:1px;bottom:-5px;border-left-width:0;border-right-color:#fff;}.ai1ec-popover.ai1ec-bottom .ai1ec-arrow{left:50%;margin-left:-6px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-6px;}.ai1ec-popover.ai1ec-bottom .ai1ec-arrow:after{content:" ";top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#fff;}.ai1ec-popover.ai1ec-left .ai1ec-arrow{top:50%;right:-6px;margin-top:-6px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);}.ai1ec-popover.ai1ec-left .ai1ec-arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-5px;}.ai1ec-clearfix:before,.ai1ec-clearfix:after{content:" ";display:table;}.ai1ec-clearfix:after{clear:both;}.ai1ec-center-block{display:block;margin-left:auto;margin-right:auto;}.ai1ec-pull-right{float:right !important;}.ai1ec-pull-left{float:left !important;}.ai1ec-hide{display:none !important;}.ai1ec-show{display:block !important;}.ai1ec-invisible{visibility:hidden;}.ai1ec-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}.ai1ec-hidden{display:none !important;visibility:hidden !important;}.ai1ec-affix{position:fixed;}@-ms-viewport{width:device-width;}.ai1ec-visible-xs,tr.ai1ec-visible-xs,th.ai1ec-visible-xs,td.ai1ec-visible-xs{display:none !important;}@media (max-width: 767px){.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-xs,td.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-xs.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-sm,td.ai1ec-visible-xs.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-xs.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-md{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-md,td.ai1ec-visible-xs.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-xs.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-lg,td.ai1ec-visible-xs.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-sm,tr.ai1ec-visible-sm,th.ai1ec-visible-sm,td.ai1ec-visible-sm{display:none !important;}@media (max-width: 767px){.ai1ec-visible-sm.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-xs,td.ai1ec-visible-sm.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-sm,td.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-sm.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-md{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-md,td.ai1ec-visible-sm.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-sm.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-lg,td.ai1ec-visible-sm.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-md,tr.ai1ec-visible-md,th.ai1ec-visible-md,td.ai1ec-visible-md{display:none !important;}@media (max-width: 767px){.ai1ec-visible-md.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-md.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-xs,td.ai1ec-visible-md.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-md.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-md.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-sm,td.ai1ec-visible-md.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-md{display:table;}tr.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-md,td.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-md.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-md.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-lg,td.ai1ec-visible-md.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-lg,tr.ai1ec-visible-lg,th.ai1ec-visible-lg,td.ai1ec-visible-lg{display:none !important;}@media (max-width: 767px){.ai1ec-visible-lg.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-xs,td.ai1ec-visible-lg.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-lg.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-sm,td.ai1ec-visible-lg.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-lg.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-md{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-md,td.ai1ec-visible-lg.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-lg,td.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-hidden-xs{display:block !important;}table.ai1ec-hidden-xs{display:table;}tr.ai1ec-hidden-xs{display:table-row !important;}th.ai1ec-hidden-xs,td.ai1ec-hidden-xs{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-xs,tr.ai1ec-hidden-xs,th.ai1ec-hidden-xs,td.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-xs.ai1ec-hidden-sm,tr.ai1ec-hidden-xs.ai1ec-hidden-sm,th.ai1ec-hidden-xs.ai1ec-hidden-sm,td.ai1ec-hidden-xs.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-xs.ai1ec-hidden-md,tr.ai1ec-hidden-xs.ai1ec-hidden-md,th.ai1ec-hidden-xs.ai1ec-hidden-md,td.ai1ec-hidden-xs.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-xs.ai1ec-hidden-lg,tr.ai1ec-hidden-xs.ai1ec-hidden-lg,th.ai1ec-hidden-xs.ai1ec-hidden-lg,td.ai1ec-hidden-xs.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-sm{display:block !important;}table.ai1ec-hidden-sm{display:table;}tr.ai1ec-hidden-sm{display:table-row !important;}th.ai1ec-hidden-sm,td.ai1ec-hidden-sm{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-sm.ai1ec-hidden-xs,tr.ai1ec-hidden-sm.ai1ec-hidden-xs,th.ai1ec-hidden-sm.ai1ec-hidden-xs,td.ai1ec-hidden-sm.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-sm,tr.ai1ec-hidden-sm,th.ai1ec-hidden-sm,td.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-sm.ai1ec-hidden-md,tr.ai1ec-hidden-sm.ai1ec-hidden-md,th.ai1ec-hidden-sm.ai1ec-hidden-md,td.ai1ec-hidden-sm.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-sm.ai1ec-hidden-lg,tr.ai1ec-hidden-sm.ai1ec-hidden-lg,th.ai1ec-hidden-sm.ai1ec-hidden-lg,td.ai1ec-hidden-sm.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-md{display:block !important;}table.ai1ec-hidden-md{display:table;}tr.ai1ec-hidden-md{display:table-row !important;}th.ai1ec-hidden-md,td.ai1ec-hidden-md{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-md.ai1ec-hidden-xs,tr.ai1ec-hidden-md.ai1ec-hidden-xs,th.ai1ec-hidden-md.ai1ec-hidden-xs,td.ai1ec-hidden-md.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-md.ai1ec-hidden-sm,tr.ai1ec-hidden-md.ai1ec-hidden-sm,th.ai1ec-hidden-md.ai1ec-hidden-sm,td.ai1ec-hidden-md.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-md,tr.ai1ec-hidden-md,th.ai1ec-hidden-md,td.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-md.ai1ec-hidden-lg,tr.ai1ec-hidden-md.ai1ec-hidden-lg,th.ai1ec-hidden-md.ai1ec-hidden-lg,td.ai1ec-hidden-md.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-lg{display:block !important;}table.ai1ec-hidden-lg{display:table;}tr.ai1ec-hidden-lg{display:table-row !important;}th.ai1ec-hidden-lg,td.ai1ec-hidden-lg{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-lg.ai1ec-hidden-xs,tr.ai1ec-hidden-lg.ai1ec-hidden-xs,th.ai1ec-hidden-lg.ai1ec-hidden-xs,td.ai1ec-hidden-lg.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-lg.ai1ec-hidden-sm,tr.ai1ec-hidden-lg.ai1ec-hidden-sm,th.ai1ec-hidden-lg.ai1ec-hidden-sm,td.ai1ec-hidden-lg.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-lg.ai1ec-hidden-md,tr.ai1ec-hidden-lg.ai1ec-hidden-md,th.ai1ec-hidden-lg.ai1ec-hidden-md,td.ai1ec-hidden-lg.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-lg,tr.ai1ec-hidden-lg,th.ai1ec-hidden-lg,td.ai1ec-hidden-lg{display:none !important;}}.ai1ec-visible-print,tr.ai1ec-visible-print,th.ai1ec-visible-print,td.ai1ec-visible-print{display:none !important;}@media print{.ai1ec-visible-print{display:block !important;}table.ai1ec-visible-print{display:table;}tr.ai1ec-visible-print{display:table-row !important;}th.ai1ec-visible-print,td.ai1ec-visible-print{display:table-cell !important;}.ai1ec-hidden-print,tr.ai1ec-hidden-print,th.ai1ec-hidden-print,td.ai1ec-hidden-print{display:none !important;}}.select2-container{position:relative;display:inline-block;zoom:1;*display:inline;vertical-align:top;}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.select2-container .select2-choice{display:block;height:26px;padding:0 0 0 8px;overflow:hidden;position:relative;border:1px solid #aaa;white-space:nowrap;line-height:26px;color:#444;text-decoration:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#eee 0%,white 50%);background-image:-moz-linear-gradient(center bottom,#eee 0%,white 50%);background-image:-o-linear-gradient(bottom,#eee 0%,#fff 50%);background-image:-ms-linear-gradient(top,#fff 0%,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#fff 0%,#eee 50%);}.select2-container.select2-drop-above .select2-choice{border-bottom-color:#aaa;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.9,white));background-image:-webkit-linear-gradient(center bottom,#eee 0%,white 90%);background-image:-moz-linear-gradient(center bottom,#eee 0%,white 90%);background-image:-o-linear-gradient(bottom,#eee 0%,white 90%);background-image:-ms-linear-gradient(top,#eee 0%,#fff 90%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#eee 0%,#fff 90%);}.select2-container .select2-choice span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.select2-container .select2-choice abbr{display:block;width:12px;height:12px;position:absolute;right:26px;top:8px;font-size:1px;text-decoration:none;border:0;background:url('../img/select2.png') right top no-repeat;cursor:pointer;outline:0;}.select2-container .select2-choice abbr:hover{background-position:right -11px;cursor:pointer;}.select2-drop-mask{position:absolute;left:0;top:0;z-index:9998;opacity:0;}.select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:9999;top:100%;background:#fff;color:#000;border:1px solid #aaa;border-top:0;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-webkit-box-shadow:0 4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 4px 5px rgba(0,0,0,0.15);box-shadow:0 4px 5px rgba(0,0,0,0.15);}.select2-drop.select2-drop-above{margin-top:1px;border-top:1px solid #aaa;border-bottom:0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;-webkit-box-shadow:0 -4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 -4px 5px rgba(0,0,0,0.15);box-shadow:0 -4px 5px rgba(0,0,0,0.15);}.select2-container .select2-choice div{display:block;width:18px;height:100%;position:absolute;right:0;top:0;border-left:1px solid #aaa;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;background:#ccc;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#ccc),color-stop(0.6,#eee));background-image:-webkit-linear-gradient(center bottom,#ccc 0%,#eee 60%);background-image:-moz-linear-gradient(center bottom,#ccc 0%,#eee 60%);background-image:-o-linear-gradient(bottom,#ccc 0%,#eee 60%);background-image:-ms-linear-gradient(top,#ccc 0%,#eee 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#cccccc',GradientType=0);background-image:linear-gradient(top,#ccc 0%,#eee 60%);}.select2-container .select2-choice div b{display:block;width:100%;height:100%;background:url('../img/select2.png') no-repeat 0 1px;}.select2-search{display:inline-block;width:100%;min-height:26px;margin:0;padding-left:4px;padding-right:4px;position:relative;z-index:10000;white-space:nowrap;}.select2-search-hidden{display:block;position:absolute;left:-10000px;}.select2-search input{width:100%;height:auto !important;min-height:26px;padding:4px 20px 4px 5px;margin:0;outline:0;font-family:sans-serif;font-size:1em;border:1px solid #aaa;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:#fff url('../img/select2.png') no-repeat 100% -22px;background:url('../img/select2.png') no-repeat 100% -22px, -webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('../img/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, linear-gradient(top,#fff 85%,#eee 99%);}.select2-drop.select2-drop-above .select2-search input{margin-top:4px;}.select2-search input.select2-active{background:#fff url('../img/ajax-loader-small.gif') no-repeat 100%;background:url('../img/ajax-loader-small.gif') no-repeat 100%, -webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('../img/ajax-loader-small.gif') no-repeat 100%, -webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -o-linear-gradient(bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, linear-gradient(top,#fff 85%,#eee 99%);}.select2-container-active .select2-choice,.select2-container-active .select2-choices{border:1px solid #5897fb;outline:none;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);}.select2-dropdown-open .select2-choice{border-bottom-color:transparent;-webkit-box-shadow:0 1px 0 #fff inset;-moz-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;background-color:#eee;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,white),color-stop(0.5,#eee));background-image:-webkit-linear-gradient(center bottom,white 0%,#eee 50%);background-image:-moz-linear-gradient(center bottom,white 0%,#eee 50%);background-image:-o-linear-gradient(bottom,white 0%,#eee 50%);background-image:-ms-linear-gradient(top,#fff 0%,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0);background-image:linear-gradient(top,#fff 0%,#eee 50%);}.select2-dropdown-open .select2-choice div{background:transparent;border-left:none;filter:none;}.select2-dropdown-open .select2-choice div b{background-position:-18px 1px;}.select2-results{max-height:200px;padding:0 0 0 4px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);}.select2-results ul.select2-result-sub{margin:0;padding-left:0;}.select2-results ul.select2-result-sub > li .select2-result-label{padding-left:20px;}.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:40px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:60px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:80px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:100px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:110px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:120px;}.select2-results li{list-style:none;display:list-item;background-image:none;}.select2-results li.select2-result-with-children > .select2-result-label{font-weight:bold;}.select2-results .select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.select2-results .select2-highlighted{background:#3875d7;color:#fff;}.select2-results li em{background:#feffde;font-style:normal;}.select2-results .select2-highlighted em{background:transparent;}.select2-results .select2-highlighted ul{background:white;color:#000;}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4;display:list-item;}.select2-results .select2-disabled.select2-highlighted{color:#666;background:#f4f4f4;display:list-item;cursor:default;}.select2-results .select2-disabled{background:#f4f4f4;display:list-item;cursor:default;}.select2-results .select2-selected{display:none;}.select2-more-results.select2-active{background:#f4f4f4 url('../img/ajax-loader-small.gif') no-repeat 100%;}.select2-more-results{background:#f4f4f4;display:list-item;}.select2-container.select2-container-disabled .select2-choice{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default;}.select2-container.select2-container-disabled .select2-choice div{background-color:#f4f4f4;background-image:none;border-left:0;}.select2-container.select2-container-disabled .select2-choice abbr{display:none;}.select2-container-multi .select2-choices{height:auto !important;height:1%;margin:0;padding:0;position:relative;border:1px solid #aaa;cursor:text;overflow:hidden;background-color:#fff;background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(top,#eee 1%,#fff 15%);background-image:-moz-linear-gradient(top,#eee 1%,#fff 15%);background-image:-o-linear-gradient(top,#eee 1%,#fff 15%);background-image:-ms-linear-gradient(top,#eee 1%,#fff 15%);background-image:linear-gradient(top,#eee 1%,#fff 15%);}.select2-locked{padding:3px 5px 3px 5px !important;}.select2-container-multi .select2-choices{min-height:26px;}.select2-container-multi.select2-container-active .select2-choices{border:1px solid #5897fb;outline:none;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);}.select2-container-multi .select2-choices li{float:left;list-style:none;}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap;}.select2-container-multi .select2-choices .select2-search-field input{padding:5px;margin:1px 0;font-family:sans-serif;font-size:100%;color:#666;outline:0;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:transparent !important;}.select2-container-multi .select2-choices .select2-search-field input.select2-active{background:#fff url('../img/ajax-loader-small.gif') no-repeat 100% !important;}.select2-default{color:#999 !important;}.select2-container-multi .select2-choices .select2-search-choice{padding:3px 5px 3px 18px;margin:3px 0 3px 5px;position:relative;line-height:13px;color:#333;cursor:default;border:1px solid #aaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#e4e4e4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#f4f4f4',GradientType=0);background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-ms-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);}.select2-container-multi .select2-choices .select2-search-choice span{cursor:default;}.select2-container-multi .select2-choices .select2-search-choice-focus{background:#d4d4d4;}.select2-search-choice-close{display:block;width:12px;height:13px;position:absolute;right:3px;top:4px;font-size:1px;outline:none;background:url('../img/select2.png') right top no-repeat;}.select2-container-multi .select2-search-choice-close{left:3px;}.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover{background-position:right -11px;}.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close{background-position:right -11px;}.select2-container-multi.select2-container-disabled .select2-choices{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default;}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{padding:3px 5px 3px 5px;border:1px solid #ddd;background-image:none;background-color:#f4f4f4;}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none;}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline;}.select2-offscreen{position:absolute;left:-10000px;}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi){.select2-search input,.select2-search-choice-close,.select2-container .select2-choice abbr,.select2-container .select2-choice div b{background-image:url('../img/select2x2.png') !important;background-repeat:no-repeat !important;background-size:60px 40px !important;}.select2-search input{background-position:100% -21px !important;}}.ai1ec-btn-file{overflow:hidden;position:relative;vertical-align:middle;}.ai1ec-btn-file > input{position:absolute;top:0;right:0;margin:0;padding:0;height:32px;border:solid transparent;opacity:0;filter:alpha(opacity=0);direction:ltr;cursor:pointer;}.ai1ec-fileupload{margin-bottom:9px;}.ai1ec-fileupload .ai1ec-uneditable-input{display:inline-block;margin-bottom:0px;vertical-align:middle;cursor:text;}.ai1ec-fileupload .ai1ec-thumbnail{overflow:hidden;display:inline-block;margin-bottom:5px;vertical-align:middle;text-align:center;}.ai1ec-fileupload .ai1ec-thumbnail > img{display:inline-block;vertical-align:middle;max-height:100%;}.ai1ec-fileupload .ai1ec-btn{vertical-align:middle;}.ai1ec-fileupload-exists .ai1ec-fileupload-new,.ai1ec-fileupload-new .ai1ec-fileupload-exists{display:none;}.ai1ec-fileupload-inline .ai1ec-fileupload-controls{display:inline;}.ai1ec-fileupload-new .ai1ec-input-append .ai1ec-btn-file{border-radius:0 3px 3px 0;}.ai1ec-thumbnail-borderless .ai1ec-thumbnail{border:none;padding:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;}.ai1ec-fileupload-new.ai1ec-thumbnail-borderless .ai1ec-thumbnail{border:1px solid #ddd;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-uneditable-input{color:#a47e3c;border-color:#a47e3c;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-fileupload-preview{color:#a47e3c;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-thumbnail{border-color:#a47e3c;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-uneditable-input{color:#b94a48;border-color:#b94a48;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-fileupload-preview{color:#b94a48;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-thumbnail{border-color:#b94a48;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-uneditable-input{color:#468847;border-color:#468847;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-fileupload-preview{color:#468847;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-thumbnail{border-color:#468847;}.ai1ec-datepicker{padding:4px;border-radius:4px;direction:ltr;}.ai1ec-datepicker-inline{width:220px;}.ai1ec-datepicker.ai1ec-datepicker-rtl{direction:rtl;}.ai1ec-datepicker.ai1ec-datepicker-rtl table tr td span{float:right;}.ai1ec-datepicker-dropdown{top:0;left:0;}.ai1ec-datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-top:0;border-bottom-color:rgba(0,0,0,0.2);position:absolute;}.ai1ec-datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-left:before{left:6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-left:after{left:7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-right:before{right:6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-right:after{right:7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-top:before{top:-7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-top:after{top:-6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff;}.ai1ec-datepicker >div{display:none;}.ai1ec-datepicker.ai1ec-days div.ai1ec-datepicker-days{display:block;}.ai1ec-datepicker.ai1ec-months div.ai1ec-datepicker-months{display:block;}.ai1ec-datepicker.ai1ec-years div.ai1ec-datepicker-years{display:block;}.ai1ec-datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ai1ec-datepicker table tr td,.ai1ec-datepicker table tr th{text-align:center;width:30px;height:30px;border-radius:4px;border:none;}.ai1ec-table-striped .ai1ec-datepicker table tr td,.ai1ec-table-striped .ai1ec-datepicker table tr th{background-color:transparent;}.ai1ec-datepicker table tr td.ai1ec-day:hover,.ai1ec-datepicker table tr td.ai1ec-day.ai1ec-focused{background:#eee;cursor:pointer;}.ai1ec-datepicker table tr td.ai1ec-old,.ai1ec-datepicker table tr td.ai1ec-new{color:#999;}.ai1ec-datepicker table tr td.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-disabled:hover{background:none;color:#999;cursor:default;}.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#ffdb99;border-color:#ffb733;}.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today:focus,.ai1ec-datepicker table tr td.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#ffcd70;border-color:#f59e00;}.ai1ec-datepicker table tr td.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today[disabled],.ai1ec-datepicker table tr td.ai1ec-today[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active{background-color:#ffdb99;border-color:#ffb733;}.ai1ec-datepicker table tr td.ai1ec-today .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover .ai1ec-badge{color:#ffdb99;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-today:hover:hover{color:#000;}.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active:hover{color:#fff;}.ai1ec-datepicker table tr td.ai1ec-range,.ai1ec-datepicker table tr td.ai1ec-range:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-disabled:hover{background:#eee;border-radius:0;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#f7ca77;border-color:#f1a417;border-radius:0;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#f4bb51;border-color:#bf800c;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active{background-color:#f7ca77;border-color:#f1a417;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover .ai1ec-badge{color:#f7ca77;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{color:#fff;background-color:#999;border-color:#555;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected:focus,.ai1ec-datepicker table tr td.ai1ec-selected:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{color:#fff;background-color:#858585;border-color:#373737;}.ai1ec-datepicker table tr td.ai1ec-selected:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected[disabled],.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active{background-color:#999;border-color:#555;}.ai1ec-datepicker table tr td.ai1ec-selected .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover .ai1ec-badge{color:#999;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#6dbb4f;border-color:#61ad43;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active:focus,.ai1ec-datepicker table tr td.ai1ec-active:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#5aa23f;border-color:#488132;}.ai1ec-datepicker table tr td.ai1ec-active:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active[disabled],.ai1ec-datepicker table tr td.ai1ec-active[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.ai1ec-datepicker table tr td.ai1ec-active .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.ai1ec-datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;border-radius:4px;}.ai1ec-datepicker table tr td span:hover{background:#eee;}.ai1ec-datepicker table tr td span.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-disabled:hover{background:none;color:#999;cursor:default;}.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#6dbb4f;border-color:#61ad43;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active:focus,.ai1ec-datepicker table tr td span.ai1ec-active:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#5aa23f;border-color:#488132;}.ai1ec-datepicker table tr td span.ai1ec-active:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active[disabled],.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled],.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.ai1ec-datepicker table tr td span.ai1ec-active .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active:hover .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.ai1ec-datepicker table tr td span.ai1ec-old,.ai1ec-datepicker table tr td span.ai1ec-new{color:#999;}.ai1ec-datepicker th.ai1ec-datepicker-switch{width:145px;}.ai1ec-datepicker thead tr:first-child th,.ai1ec-datepicker tfoot tr th{cursor:pointer;}.ai1ec-datepicker thead tr:first-child th:hover,.ai1ec-datepicker tfoot tr th:hover{background:#eee;}.ai1ec-datepicker .ai1ec-cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle;}.ai1ec-datepicker thead tr:first-child th.ai1ec-cw{cursor:default;background-color:transparent;}.ai1ec-input-group.ai1ec-date .ai1ec-input-group-addon i{cursor:pointer;width:16px;height:16px;}.ai1ec-input-daterange input{text-align:center;}.ai1ec-input-daterange input:first-child{border-radius:3px 0 0 3px;}.ai1ec-input-daterange input:last-child{border-radius:0 3px 3px 0;}.ai1ec-input-daterange .ai1ec-input-group-addon{width:auto;min-width:16px;padding:4px 5px;font-weight:normal;line-height:1.428571429;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:solid #ccc;border-width:1px 0;margin-left:-5px;margin-right:-5px;}.ai1ec-bootstrap-timepicker{position:relative;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu{left:auto;right:0;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:before{left:auto;right:12px;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:after{left:auto;right:13px;}.ai1ec-bootstrap-timepicker .ai1ec-input-group-addon{cursor:pointer;}.ai1ec-bootstrap-timepicker .ai1ec-input-group-addon i{display:inline-block;width:16px;height:16px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu{padding:4px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu.ai1ec-open{display:inline-block;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:before{border-bottom:7px solid rgba(0,0,0,0.2);border-left:7px solid transparent;border-right:7px solid transparent;content:"";display:inline-block;position:absolute;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:after{border-bottom:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;content:"";display:inline-block;position:absolute;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-left:before{left:6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-left:after{left:7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-right:before{right:6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-right:after{right:7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-top:before{top:-7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-top:after{top:-6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff;}.ai1ec-bootstrap-timepicker-widget a.ai1ec-btn,.ai1ec-bootstrap-timepicker-widget input{border-radius:4px;}.ai1ec-bootstrap-timepicker-widget table{width:100%;margin:0;}.ai1ec-bootstrap-timepicker-widget table td{text-align:center;height:30px;margin:0;padding:2px;}.ai1ec-bootstrap-timepicker-widget table td:not(.ai1ec-separator){min-width:30px;}.ai1ec-bootstrap-timepicker-widget table td span{width:100%;}.ai1ec-bootstrap-timepicker-widget table td a{border:1px transparent solid;width:100%;display:inline-block;margin:0;padding:8px 0;outline:0;color:#333;}.ai1ec-bootstrap-timepicker-widget table td a:hover{text-decoration:none;background-color:#eee;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border-color:#ddd;}.ai1ec-bootstrap-timepicker-widget table td a i{margin-top:2px;font-size:18px;}.ai1ec-bootstrap-timepicker-widget table td input{width:25px;margin:0;text-align:center;}.ai1ec-bootstrap-timepicker-widget .ai1ec-modal-body{padding:4px;}@media (min-width: 768px){.ai1ec-bootstrap-timepicker-widget.ai1ec-modal{width:200px;}}@media (max-width: 991px){.ai1ec-bootstrap-timepicker{width:100%;}.ai1ec-bootstrap-timepicker .ai1ec-dropdown-menu{width:100%;}}#ai1ec-event-modal{padding:20px;}@media (max-width: 767px){#ai1ec-event-modal{padding:5px;}}#ai1ec-event-modal .ai1ec-modal-dialog{width:auto;max-width:1199px;margin:0 auto;}#ai1ec-event-modal .ai1ec-modal-body{min-height:300px;}#ai1ec-event-modal .ai1ec-close{font-size:2em;margin:0.25em 0.5em 0 0;position:relative;z-index:10051;}#ai1ec-event-modal .ai1ec-category,#ai1ec-event-modal .ai1ec-tag{cursor:default;color:inherit;border:inherit;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);}#ai1ec-event-modal .ai1ec-category:hover,#ai1ec-event-modal .ai1ec-tag:hover{color:inherit;background-color:inherit;border:inherit;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);}.ai1ec-btn-toolbar{margin:0;}.ai1ec-btn-toolbar .ai1ec-btn-group{margin-bottom:6px;}.ai1ec-btn-toolbar .ai1ec-btn-group.ai1ec-btn-group-xs{margin-top:5px;}.ai1ec-btn-group > .ai1ec-btn-primary{z-index:3;}.ai1ec-btn-group > .ai1ec-btn,.ai1ec-btn-group > .ai1ec-dropdown-menu,.ai1ec-btn-group > .ai1ec-popover{font-size:13px;}.ai1ec-btn-group > .ai1ec-btn-xs{font-size:11px;}.ai1ec-btn-group > .ai1ec-btn-sm{font-size:11px;}.ai1ec-btn-group > .ai1ec-btn-lg{font-size:15px;}.ai1ec-btn-group > .ai1ec-btn:after{content:'\200A';margin-right:-0.25em;}.ai1ec-btn-primary{color:#fff !important;}.ai1ec-dropdown-toggle{cursor:pointer;}.ai1ec-dropdown-menu,ul.ai1ec-dropdown-menu{margin:0;text-align:left;list-style:none;}.ai1ec-dropdown-menu li,ul.ai1ec-dropdown-menu li{margin:0;padding:0;list-style:none;}.ai1ec-dropdown-menu > div > a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap;}.ai1ec-dropdown-menu > div > a:hover,.ai1ec-dropdown-menu > div > a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5;}.ai1ec-dropdown{overflow:visible !important;background-image:none !important;}.ai1ec-modal-footer{margin-top:0;}.ai1ec-tooltip{margin:0 !important;}.single-ai1ec_event .ai1ec-tooltip{width:auto;white-space:pre;}span.ai1ec-hidden-xs{display:inline !important;}@media (max-width: 767px){span.ai1ec-hidden-xs{display:none !important;}}.select2-container input[type="text"]:focus{-webkit-box-shadow:none;box-shadow:none;}.entry-content .select2-choices{padding:inherit !important;line-height:inherit !important;list-style-type:none !important;}.select2-container-multi .select2-choices{background-color:#fff;background-image:none;border-color:#ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.select2-dropdown-open.select2-container-multi .select2-choices{border-bottom-color:#fff;border-radius:4px 4px 0 0;}.select2-drop-above.select2-dropdown-open.select2-container-multi .select2-choices{border-bottom-color:#ccc;border-top-color:#fff;border-radius:0 0 4px 4px;}.select2-container-multi .select2-choices .select2-search-field input{color:#555;margin:0;padding:6px 12px 4px;}.select2-container-multi .select2-choices .select2-search-field input.select2-default{color:#999 !important;}.select2-container-multi .select2-choices .select2-search-choice{margin:4px 0 0 8px;}.select2-drop-mask{z-index:9999;}.ai1ec-modal-open .select2-drop-mask,.ai1ec-has-affixed-toolbar .select2-drop-mask{z-index:19999;}.select2-drop{background-color:#fff;border-color:rgba(82,168,236,0.8);color:#333;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;z-index:10000;}.ai1ec-modal-open .select2-drop,.ai1ec-has-affixed-toolbar .select2-drop{z-index:20000;}.select2-results{margin:4px 0;padding:0;}.select2-results .select2-highlighted{color:#333;background-color:#f5f5f5;}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background-color:#ebebeb;}.timely a.select2-search-choice-close{-webkit-transition:none;transition:none;background:url('../img/select2.png') right top no-repeat;left:5px;top:3px;}.select2-container .ai1ec-color-swatch,.select2-container .ai1ec-color-swatch-empty,.select2-drop .ai1ec-color-swatch,.select2-drop .ai1ec-color-swatch-empty{width:7px;height:7px;}.ai1ec-s2-with-icon{position:relative;}.ai1ec-s2-with-icon > i{font-size:1.25em;left:10px;line-height:1em;position:absolute;top:8px;}.ai1ec-s2-with-icon .select2-choices{padding-left:1.8em;}input.ai1ec-datepicker[readonly],input.ai1ec-timepicker[readonly]{cursor:pointer;}.ai1ec-datepicker{font-size:11.05px;padding:5.525px;margin-left:5px;}.ai1ec-datepicker.ai1ec-right-aligned{margin-left:0;}.ai1ec-datepicker.ai1ec-right-aligned:before{left:auto;right:6px;}.ai1ec-datepicker.ai1ec-right-aligned:after{left:auto;right:7px;}.ai1ec-datepicker table th,.ai1ec-datepicker table td{padding:0;vertical-align:middle;}.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{background:#f5f5d5;}.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active.ai1ec-disabled:hover{background:#6489ad;color:#fff;text-shadow:none;}.ai1ec-datepicker table tr td.ai1ec-day:hover,.ai1ec-datepicker table tr td.ai1ec-day.ai1ec-focused{background-color:#f5f5f5;}.ai1ec-datepicker table tr td.ai1ec-old,.ai1ec-datepicker table tr td.ai1ec-new{color:#858585;}.ai1ec-datepicker table tr td.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-disabled:hover{background:none;color:#c2c2c2;}.ai1ec-datepicker table tr td span:hover{background-color:#f5f5f5;}.ai1ec-datepicker table tr td span.ai1ec-old{color:#858585;}.ai1ec-datepicker table tr td span.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-disabled:hover{background:none;color:#c2c2c2;}.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{background-color:#f5f5f5;-webkit-box-shadow:none;box-shadow:none;color:#333;text-shadow:none;}.ai1ec-datepicker th{font-weight:bold;}.ai1ec-datepicker thead tr:first-child th:hover,.ai1ec-datepicker tfoot tr:first-child th:hover{background-color:#f5f5f5;}.ai1ec-datepicker thead tr:first-child th.today,.ai1ec-datepicker tfoot tr:first-child th.today{display:table-cell !important;filter:alpha(opacity=100) !important;margin:0 !important;overflow:visible !important;opacity:1 !important;padding:0 !important;height:22.1px !important;width:24.31px !important;}.ai1ec-bootstrap-timepicker table{border:none;}.ai1ec-bootstrap-timepicker table td{height:auto;}.ai1ec-bootstrap-timepicker table td a:hover{background-color:#f5f5f5;border:none;}.ai1ec-datepicker:before,.ai1ec-bootstrap-timepicker.ai1ec-dropdown-menu:before{border-bottom-color:rgba(0,0,0,0.15);}.ai1ec-datepicker:after,.ai1ec-bootstrap-timepicker.ai1ec-dropdown-menu:after{border-bottom-color:#fff;}.ai1ec-collapse.ai1ec-in.ai1ec-timepicker-visible{overflow:visible;}.ai1ec-fileupload{margin-bottom:0;}.timely a,.timely a:link,.timely a:visited,.timely a:active,.timely a:hover,#ai1ec-container a,#ai1ec-container a:link,#ai1ec-container a:visited,#ai1ec-container a:active,#ai1ec-container a:hover{font-weight:normal;text-decoration:none !important;box-shadow:none;}.timely img,#ai1ec-container img{background:none;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;max-width:none;margin:0;padding:0;}.timely .alignleft,.timely.alignleft,#ai1ec-container .alignleft,#ai1ec-container.alignleft{float:left;margin:0 16px 8px 0;}.timely .alignright,.timely.alignright,#ai1ec-container .alignright,#ai1ec-container.alignright{float:right;margin:0 0 8px 16px;}.timely small,#ai1ec-container small{margin:0 !important;}.timely table,#ai1ec-container table{line-height:inherit;}.timely tr,.timely th,.timely td,#ai1ec-container tr,#ai1ec-container th,#ai1ec-container td{background:none;border:0;padding:0;}.timely .ai1ec-pagination a.ai1ec-prev-page i,.timely .ai1ec-pagination a.ai1ec-next-page i,#ai1ec-container .ai1ec-pagination a.ai1ec-prev-page i,#ai1ec-container .ai1ec-pagination a.ai1ec-next-page i{font-size:inherit !important;}.timely{margin:0;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;color:#333;word-wrap:break-word;}.timely a{border:none;}.timely form{margin:0;}.timely .ai1ec-placeholder{color:#999;}.timely .ai1ec-form-control[disabled],.timely .ai1ec-form-control[readonly]{border-color:#d9d9d9;cursor:auto;}.timely .ai1ec-form-control[readonly]{background-color:#fff;border-color:#ccc;}.timely input[type="radio"],.timely input[type="checkbox"]{margin-top:3px;}.timely textarea.ai1ec-form-control{height:auto;}.timely .ai1ec-help-block{margin-top:2px;margin-bottom:5px;}.timely .ai1ec-form-group{margin-bottom:10px;}.timely label{font-weight:normal;}.timely button.ai1ec-close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}.ai1ec-modal-open{position:static;}.ai1ec-modal-open .ai1ec-dropdown-menu{z-index:20040 !important;}.ai1ec-modal-open .ai1ec-dropdown.ai1ec-open{*z-index:20040 !important;}.ai1ec-modal-open .ai1ec-popover{z-index:20050 !important;}.ai1ec-modal-open .ai1ec-tooltip{z-index:20075 !important;}.ai1ec-loading{position:absolute;z-index:9;top:0;left:0;width:100%;height:100%;background:url('../img/ajax-loader.gif') no-repeat center center;background-color:rgba(255,255,255,0.5);display:none;}#ai1ec-calendar-view-container .ai1ec-loading{background-color:transparent;background-position:center 150px;}.ai1ec-modal > .ai1ec-loading{border-radius:5px;}.timely-widget{min-height:62px;position:relative;}.ai1ec-widget-loading{position:absolute;z-index:2;width:100%;}.ai1ec-widget-loading > small{border-radius:4px;background:#fff;color:#333 !important;display:inline-block;opacity:0.8;filter:alpha(opacity=80);padding:0.5em;}.entry-content .timely a,.comment-content .timely a,.site-footer .widget .timely a{color:#3d6b99;}.entry-content .timely a:visited,.comment-content .timely a:visited,.site-footer .widget .timely a:visited{color:#3d6b99;}.entry-content .timely a:hover,.comment-content .timely a:hover,.site-footer .widget .timely a:hover{color:#335980;}.entry-content .timely .ai1ec-btn-default,.comment-content .timely .ai1ec-btn-default,.site-footer .widget .timely .ai1ec-btn-default{color:#333 !important;}.entry-content .timely .ai1ec-btn-default:hover,.comment-content .timely .ai1ec-btn-default:hover,.site-footer .widget .timely .ai1ec-btn-default:hover{color:#333 !important;}.entry-content .timely .ai1ec-dropdown-menu > li > a,.comment-content .timely .ai1ec-dropdown-menu > li > a,.site-footer .widget .timely .ai1ec-dropdown-menu > li > a{color:#333;}.entry-content .timely .ai1ec-dropdown-menu > li > a:hover,.entry-content .timely .ai1ec-dropdown-menu > li > a:focus,.comment-content .timely .ai1ec-dropdown-menu > li > a:hover,.comment-content .timely .ai1ec-dropdown-menu > li > a:focus,.site-footer .widget .timely .ai1ec-dropdown-menu > li > a:hover,.site-footer .widget .timely .ai1ec-dropdown-menu > li > a:focus{color:#262626;}.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:hover,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:focus,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:hover,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:focus,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-active > a,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-active > a:hover,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-active > a:focus{color:#fff;}.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:focus,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:focus,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{color:#999;}.entry-content .timely .ai1ec-nav > li,.comment-content .timely .ai1ec-nav > li,.site-footer .widget .timely .ai1ec-nav > li{margin:0;}.entry-content .ai1ec-agenda-widget-view .ai1ec-date-title,.entry-content .ai1ec-agenda-view .ai1ec-date-title,.comment-content .ai1ec-agenda-widget-view .ai1ec-date-title,.comment-content .ai1ec-agenda-view .ai1ec-date-title,.site-footer .widget .ai1ec-agenda-widget-view .ai1ec-date-title,.site-footer .widget .ai1ec-agenda-view .ai1ec-date-title{color:#525252;}.ai1ec-field-label{font-size:12.155px;font-weight:bold;color:#aaa;text-transform:uppercase;text-align:right;}@media (max-width: 767px){.ai1ec-field-label{text-align:left;}}.ai1ec-allday-badge{background:#3d6b99;border-radius:0.9em;-webkit-box-shadow:;box-shadow:;color:#fff;display:inline-block;font-size:0.85em;font-weight:normal;margin:0 0 1px;opacity:0.9;filter:alpha(opacity=90);padding:0 0.7em 0.05em;vertical-align:middle;}.ai1ec-no-results{color:#858585;}.ai1ec-centered{text-align:center;}.ai1ec-prose p,.ai1ec-prose ul,.ai1ec-prose ol,.ai1ec-prose li{font-size:14.04px;line-height:1.7142857148;}.ai1ec-prose p,.ai1ec-prose ul,.ai1ec-prose ol{margin-bottom:10.8px;}.ai1ec-category{border-radius:4px;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);cursor:pointer;display:inline-block;font-size:0.9em;line-height:2em !important;margin:1px 0;padding:0 0.5em !important;text-transform:uppercase;white-space:nowrap;color:#333;}.ai1ec-category:hover,.ai1ec-active > .ai1ec-category{background-color:#f5f5f5;border-color:#f5f5f5;-webkit-box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;color:#262626;}.ai1ec-color-swatch,.ai1ec-color-swatch-empty{display:inline-block;height:8px;margin:0 1px;padding:1px;width:8px;}.ai1ec-color-swatch{border-radius:5px;border-color:rgba(0,0,0,0.5);opacity:0.8;filter:alpha(opacity=80);}.ai1ec-tag{border-radius:4px;color:#3d6b99;cursor:pointer;display:inline-block !important;line-height:1.7em !important;margin:1px 0 0;padding:0 4px !important;white-space:nowrap;}.ai1ec-tag i{padding-right:3px;}a.ai1ec-custom-filter{border-radius:4px;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);cursor:pointer;display:inline-block;font-size:0.9em;line-height:2em !important;margin:1px 0;padding:0 0.5em !important;text-transform:uppercase;white-space:nowrap;color:#333;}.ai1ec-tag:hover,.ai1ec-active > .ai1ec-tag{background-color:#f5f5f5;border-color:#f5f5f5;-webkit-box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;color:#262626;}.ai1ec-event-avatar{background-color:#fff;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.4);box-shadow:0 1px 4px rgba(0,0,0,0.4);}.ai1ec-event-avatar img{height:auto;display:block;min-height:90px;width:auto;}.ai1ec-agenda-widget-view .ai1ec-date-title,.ai1ec-agenda-view .ai1ec-date-title{border:1px solid #c2c2c2;border-top:none;border-radius:5px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.08);box-shadow:0 2px 2px rgba(0,0,0,0.08);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#525252;float:left;font-weight:bold !important;background-image:-webkit-linear-gradient(#fff,#fff 1em,#e7e7e7);background-image:linear-gradient(#fff,#fff 1em,#e7e7e7);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);filter:none \9;line-height:1.2em;margin:6.5px 0.75em;overflow:hidden;text-align:center;text-shadow:0 1px 0 #fff;width:4em;}.ai1ec-agenda-widget-view .ai1ec-date-title:hover,.ai1ec-agenda-view .ai1ec-date-title:hover{color:#333 !important;}.ai1ec-agenda-widget-view .ai1ec-month,.ai1ec-agenda-view .ai1ec-month{background:#6689ac;border-radius:4px 4px 0 0;color:#fff;font-size:0.8em;letter-spacing:0.2em;padding:0 0.2em;text-transform:uppercase;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-agenda-widget-view .ai1ec-day,.ai1ec-agenda-view .ai1ec-day{font-size:2em;padding:0.35em 0 0.22em;}.ai1ec-agenda-widget-view .ai1ec-weekday,.ai1ec-agenda-view .ai1ec-weekday{font-size:0.8em;padding:0 0 0.2em;}.ai1ec-agenda-widget-view .ai1ec-year,.ai1ec-agenda-view .ai1ec-year{background-color:#e4e4e4;-webkit-box-shadow:inset 0 3px 3px rgba(0,0,0,0.08);box-shadow:inset 0 3px 3px rgba(0,0,0,0.08);font-size:0.7em;letter-spacing:0.2em;padding:0 0.2em;}.ai1ec-agenda-widget-view .ai1ec-date,.ai1ec-agenda-view .ai1ec-date{border-top:1px solid #e5e5e5;background:#f5f5f5;background:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),color-stop(1em,#f2f2f2),to(#fff));background:-webkit-linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background:-moz-linear-gradient(top,#f2f2f2,#f2f2f2 1em,#fff);background:-ms-linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background:-o-linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background:linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background-repeat:no-repeat;}.ai1ec-agenda-widget-view .ai1ec-date.ai1ec-today,.ai1ec-agenda-view .ai1ec-date.ai1ec-today{border-top:1px solid #f0f0a9;background:#f6f6cc;background:-webkit-gradient(linear,0 0,0 100%,from(#f4f4bf),color-stop(1em,#f4f4bf),to(#fff));background:-webkit-linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background:-moz-linear-gradient(top,#f4f4bf,#f4f4bf 1em,#fff);background:-ms-linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background:-o-linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background:linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background-repeat:no-repeat;}.ai1ec-agenda-widget-view .ai1ec-event-description img,.ai1ec-agenda-view .ai1ec-event-description img{max-width:100% !important;}.ai1ec-agenda-widget-view{max-width:500px;}.ai1ec-agenda-widget-view .ai1ec-date-events{margin:0 0.5em 0 0;}.ai1ec-agenda-widget-view .ai1ec-date{float:left;width:100%;}.ai1ec-agenda-widget-view .ai1ec-date-title{font-size:0.9em;}.ai1ec-agenda-widget-view .ai1ec-event{clear:right;margin:6.5px 0 6.5px 4.8em;padding:0;position:relative;}.ai1ec-agenda-widget-view .ai1ec-event > a{color:#3d6b99;display:block;background:#fff;border:1px solid #ccc;border-radius:0.4em;padding:0.2em 0.4em;}.ai1ec-agenda-widget-view .ai1ec-event > a:hover{border-color:#808080;color:#335980;}.ai1ec-agenda-widget-view .ai1ec-event .ai1ec-event-time{font-weight:bold;}.ai1ec-agenda-widget-view .ai1ec-event .ai1ec-event-title{font-weight:normal;}.ai1ec-agenda-widget-view .ai1ec-event .ai1ec-allday-badge{vertical-align:bottom;}.ai1ec-subscribe-dropdown{padding:0 !important;}.ai1ec-subscribe-dropdown > .ai1ec-subscribe{display:inline-block;padding:5px 10px;}.ai1ec-subscribe-dropdown.ai1ec-btn-xs > .ai1ec-subscribe{padding:1px 5px;}.ai1ec-popover.ai1ec-popup{text-align:left;border-color:#ccc;width:190px;}.ai1ec-popover.ai1ec-popup .ai1ec-popover-content{background:#fff;color:#333;font-size:13px;font-weight:normal;padding:5px 8px;position:relative;z-index:2;}.ai1ec-popover.ai1ec-popup .ai1ec-event-time{background:#eee;font-size:11.05px;font-weight:bold;margin:2px -8px 0;padding:1px 8px;}.ai1ec-popover.ai1ec-popup .ai1ec-event-avatar{margin:6px auto;position:relative;width:85%;}.ai1ec-popover.ai1ec-popup .ai1ec-event-avatar img{width:100%;}.ai1ec-popover.ai1ec-popup .ai1ec-color-swatches{float:right;font-size:0.9em;}.ai1ec-popover.ai1ec-popup .ai1ec-color-swatch{padding:1px;}.ai1ec-popover.ai1ec-popup .post-edit-link{font-size:11px;margin-left:2px;white-space:nowrap;}.ai1ec-popover.ai1ec-popup .post-edit-link i{font-size:13px;}.ai1ec-popover.ai1ec-popup.ai1ec-left.ai1ec-popup-in-oneday-view{margin-left:49px;}.ai1ec-popup-title{font-size:12.35px;font-weight:bold;line-height:1.428571429;background:none;border-bottom:none;padding:0;}.ai1ec-popup-title a{font-weight:bold !important;}.ai1ec-popup-title a.ai1ec-buy-tickets{font-weight:normal !important;}.ai1ec-popup-excerpt{font-size:11.05px;margin-top:2px;}img[data-ai1ec-hidden]{display:none;}.timely input.ai1ec-search-input{height:22px;}.timely a.ai1ec-search-button{margin-top:-2px;}.ai1ec-single-event .ai1ec-event-details,.ai1ec-multi-event .ai1ec-event-details{margin:13.5px 0;}.ai1ec-single-event .ai1ec-event-details .ai1ec-row,.ai1ec-multi-event .ai1ec-event-details .ai1ec-row{margin-bottom:4.5px;}.ai1ec-single-event .ai1ec-field-label,.ai1ec-multi-event .ai1ec-field-label{line-height:25px;}.ai1ec-single-event .ai1ec-time .ai1ec-field-value,.ai1ec-multi-event .ai1ec-time .ai1ec-field-value{font-size:1.2em;}.ai1ec-single-event .ai1ec-time .ai1ec-field-value .ai1ec-allday-badge,.ai1ec-multi-event .ai1ec-time .ai1ec-field-value .ai1ec-allday-badge{font-size:0.75em;line-height:1.4em;}.ai1ec-single-event .ai1ec-recurrence,.ai1ec-multi-event .ai1ec-recurrence{vertical-align:bottom;}.ai1ec-single-event .ai1ec-recurrence .ai1ec-btn.ai1ec-disabled,.ai1ec-multi-event .ai1ec-recurrence .ai1ec-btn.ai1ec-disabled{cursor:default;opacity:1;filter:alpha(opacity=100);pointer-events:auto;}.ai1ec-single-event .ai1ec-category,.ai1ec-multi-event .ai1ec-category{font-size:0.8em;}.ai1ec-single-event .ai1ec-tag,.ai1ec-multi-event .ai1ec-tag{font-size:0.85em;}.ai1ec-single-event .ai1ec-gmap-container,.ai1ec-multi-event .ai1ec-gmap-container{border:1px solid #ddd;border-radius:4px;position:relative;}.ai1ec-single-event #ai1ec-gmap-canvas,.ai1ec-multi-event #ai1ec-gmap-canvas{width:100%;height:200px;}.ai1ec-single-event .ai1ec-gmap-link,.ai1ec-multi-event .ai1ec-gmap-link{bottom:-1px;display:none;margin:0;position:absolute;right:-1px;}.ai1ec-single-event .ai1ec-gmap-container:hover .ai1ec-gmap-link,.ai1ec-multi-event .ai1ec-gmap-container:hover .ai1ec-gmap-link{display:block;}.ai1ec-single-event #ai1ec-gmap-canvas input,.ai1ec-multi-event #ai1ec-gmap-canvas input{margin:0 !important;}.ai1ec-single-event .ai1ec-gmap-placeholder,.ai1ec-multi-event .ai1ec-gmap-placeholder{border-radius:4px;color:#3d6b99;cursor:pointer;height:12em;border:1px dashed #ddd;min-width:18em;margin-bottom:0.3em;text-align:center;width:100%;}.ai1ec-single-event .ai1ec-gmap-placeholder:hover,.ai1ec-multi-event .ai1ec-gmap-placeholder:hover{border-color:#b7b7b7;color:#335980;}.ai1ec-single-event .ai1ec-gmap-placeholder strong,.ai1ec-multi-event .ai1ec-gmap-placeholder strong{position:relative;top:45%;}.ai1ec-single-event .ai1ec-gmap-container-hidden,.ai1ec-multi-event .ai1ec-gmap-container-hidden{position:absolute !important;visibility:hidden;}.ai1ec-single-event .ai1ec-contact span,.ai1ec-multi-event .ai1ec-contact span{display:inline-block;white-space:nowrap;}.ai1ec-single-event .ai1ec-contact span i:first-child:before,.ai1ec-multi-event .ai1ec-contact span i:first-child:before{text-align:center;width:1.7em;}.ai1ec-single-event{position:relative;font-size:14.3px;line-height:22.5px;}.ai1ec-single-event .ai1ec-event-avatar{max-width:40%;}.ai1ec-single-event .ai1ec-event-avatar img{max-width:300px;max-height:300px;min-height:0;width:100%;}.ai1ec-single-event .ai1ec-event-details{overflow:hidden;}.ai1ec-single-event .ai1ec-actions{float:right !important;margin-left:10px;}.ai1ec-single-event .ai1ec-actions .ai1ec-btn-group-vertical{margin-bottom:10px;display:block;}.ai1ec-single-event .ai1ec-actions .ai1ec-btn{font-size:12px;text-align:left;}.ai1ec-single-event .ai1ec-actions .ai1ec-fa-fw{width:20px;}.ai1ec-single-event .timely-tickets-row td{vertical-align:top;padding-bottom:10px;}.ai1ec-single-event .timely-tickets-row td.ai1ec-tickets-info{padding-left:12px;}.ai1ec-single-event .timely-tickets-row td.ai1ec-tickets-info .ai1ec-tickets-description{color:#666;line-height:1.1;font-size:12px;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-info-inactive .ai1ec-tickets-title{text-decoration:line-through;color:#666;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-availability{font-size:12px;white-space:nowrap;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-amount{text-align:right;width:1px;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-amount select{min-width:48px !important;}.ai1ec-single-event .ai1ec-table{border:none;table-layout:inherit;}.ai1ec-recurrence-exclude{font-size:smaller;color:#858585;}.ai1ec-multi-event,.ai1ec-excerpt{font-size:12.87px;line-height:20.25px;}.ai1ec-multi-event .ai1ec-field-label,.ai1ec-excerpt .ai1ec-field-label{margin-top:1.43px;}.ai1ec-excerpt{margin-bottom:11.25px;}.ai1ec-event-footer{color:#858585;clear:both;margin:9px 0;}#ai1ec-container{clear:both;}#ai1ec-calendar-view-container{position:relative;-webkit-transform:translateZ(0);z-index:1;}#ai1ec-calendar-view .post-edit-link{white-space:nowrap;}.ai1ec-calendar-toolbar{background-color:#fff;border:1px solid #dbdbdb;border-radius:6px;margin-bottom:8px;padding:0 8px;}.ai1ec-calendar-toolbar .ai1ec-nav{margin:0 !important;padding:0 !important;}.timely .ai1ec-calendar-toolbar .ai1ec-nav-pills > li > a{border-radius:0;}.ai1ec-calendar-toolbar.ai1ec-affix{z-index:10030;top:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-transition:border-radius 0.3s;transition:border-radius 0.3s;-webkit-transition:box-shadow 0.4s;transition:box-shadow 0.4s;-webkit-box-shadow:0 3px 12px rgba(0,0,0,0.2);box-shadow:0 3px 12px rgba(0,0,0,0.2);}.ai1ec-calendar-toolbar.ai1ec-affix .ai1ec-views-dropdown{margin-bottom:4px;clear:both;}.ai1ec-calendar-toolbar.ai1ec-affix .ai1ec-clearfix{padding-top:8px;}.ai1ec-calendar-toolbar.ai1ec-empty-toolbar.ai1ec-affix-top{border:none;margin:0;}.ai1ec-title-buttons .ai1ec-btn-group{margin-left:8px;}.ai1ec-title-buttons .ai1ec-contribution-buttons{float:right;margin-top:5px;}#ai1ec-bs-modes{width:0;height:0;overflow:hidden;}.no-touch .ai1ec-calendar-toolbar .ai1ec-dropdown:hover > .ai1ec-dropdown-menu{display:block;}.ai1ec-views-dropdown{margin-left:5px;}.ai1ec-views-dropdown i{font-size:1.9em;line-height:0.75em;vertical-align:-37%;}.ai1ec-views-dropdown .ai1ec-dropdown-menu{min-width:0;}.ai1ec-category-filter .ai1ec-category{display:block;}.ai1ec-filters .ai1ec-color-swatch{height:7px;width:7px;}.ai1ec-filters .ai1ec-dropdown-toggle > i{font-size:1.25em;line-height:0.8em;vertical-align:-15%;}.ai1ec-filters .ai1ec-dropdown-menu{padding:1px 2px;}.ai1ec-tag-filter .ai1ec-dropdown-menu{max-height:250px;min-width:200px;overflow:auto;}.ai1ec-select2-filters{clear:both;}.ai1ec-select2-filters .select2-container{margin:2px 0;width:100%;}.ai1ec-clear-filter{cursor:pointer;display:none !important;}.ai1ec-dropdown.ai1ec-active > .ai1ec-dropdown-toggle > i{display:none !important;}.ai1ec-dropdown.ai1ec-active > .ai1ec-dropdown-toggle .ai1ec-clear-filter{display:inline !important;}.ai1ec-pagination > .ai1ec-btn{text-transform:uppercase;}.ai1ec-calendar-title,.ai1ec-calendar-title-short{font-size:13px;line-height:1em;}.ai1ec-calendar-title-short{display:none;}@media screen and (max-width: 767px){.ai1ec-calendar-title{display:none;}.ai1ec-calendar-title-short{display:inline;}}.ai1ec-minical-trigger{font-weight:bold !important;}.ai1ec-minical-trigger i{vertical-align:baseline;}#ai1ec-print-button i{font-size:14px;margin-top:-2px;}table.ai1ec-month-view,.ai1ec-week-view table,.ai1ec-oneday-view table{border-collapse:collapse;border:1px solid #ddd !important;margin:0 !important;background:#fff;table-layout:fixed !important;clear:both;width:100% !important;}table.ai1ec-month-view a.ai1ec-multiday,.ai1ec-week-view table a.ai1ec-multiday,.ai1ec-oneday-view table a.ai1ec-multiday{-webkit-transition:none !important;transition:none !important;}table.ai1ec-month-view{margin-bottom:6px !important;}table.ai1ec-week-view-original,table.ai1ec-oneday-view-original{visibility:hidden;height:400px;}table.ai1ec-week-view-original.tablescroll_body,table.ai1ec-oneday-view-original.tablescroll_body{visibility:visible;height:auto;}table.ai1ec-week-view-original.tablescroll_body,table.ai1ec-week-view-original.tablescroll_body tr:first-child td,table.ai1ec-oneday-view-original.tablescroll_body,table.ai1ec-oneday-view-original.tablescroll_body tr:first-child td{border-top:none !important;}.ai1ec-week-view .tablescroll_wrapper,.ai1ec-oneday-view .tablescroll_wrapper{border-bottom:1px solid #ddd;margin-bottom:6px;position:relative;width:auto !important;}.ai1ec-week-view table.tablescroll_head,.ai1ec-oneday-view table.tablescroll_head{border-bottom:none !important;}.ai1ec-week-view table.tablescroll_head th,.ai1ec-oneday-view table.tablescroll_head th{border-bottom:none !important;padding:2.48px !important;}.ai1ec-week-view .ai1ec-reveal-full-day,.ai1ec-oneday-view .ai1ec-reveal-full-day{float:right;margin:3px 3px 3px -3em;position:relative;}.ai1ec-week-view .ai1ec-day,.ai1ec-oneday-view .ai1ec-day{height:1440px;}.ai1ec-week-view th,.ai1ec-oneday-view th{position:relative;}.ai1ec-week-view th .ai1ec-weekday-date,.ai1ec-oneday-view th .ai1ec-weekday-date{font-size:15px;font-weight:normal;}.ai1ec-week-view th .ai1ec-weekday-day,.ai1ec-oneday-view th .ai1ec-weekday-day{font-size:12px;font-weight:normal;}.ai1ec-month-view td,.ai1ec-week-view td,.ai1ec-oneday-view td{border:1px solid #ddd !important;background:none !important;padding:0 !important;text-align:left;vertical-align:top;}.ai1ec-month-view th,.ai1ec-week-view th,.ai1ec-oneday-view th{border:none !important;background:#f5f5f5 !important;padding:0.2em !important;}.ai1ec-month-view td.ai1ec-empty{background:#f5f5f5 !important;}.ai1ec-month-view th,.ai1ec-week-view th,.ai1ec-week-view .ai1ec-hour-marker div,.ai1ec-week-view .ai1ec-allday-label,.ai1ec-oneday-view th,.ai1ec-oneday-view .ai1ec-hour-marker div,.ai1ec-oneday-view .ai1ec-allday-label{color:#9e9e9e !important;text-shadow:0 1px 0 #fff;}.ai1ec-month-view th,.ai1ec-oneday-view th{text-align:center !important;}.ai1ec-week-view th{text-align:left !important;}.ai1ec-month-view .ai1ec-day,.ai1ec-week-view .ai1ec-day,.ai1ec-week-view .ai1ec-allday-events,.ai1ec-oneday-view .ai1ec-day,.ai1ec-oneday-view .ai1ec-allday-events{position:relative;}.ai1ec-month-view .ai1ec-day-stretcher{float:left;height:94px;width:0;}.ai1ec-month-view .ai1ec-today,.ai1ec-week-view .ai1ec-today{background:#ffd !important;}.ai1ec-month-view .ai1ec-date{background:#eaf4ff;color:#a1a7ad;font-size:10pt;line-height:13px;height:13px;margin-bottom:1px;padding:0 0.4em;font-size:8pt;text-align:right;text-shadow:0 1px 0 #fff;}.ai1ec-week-view,.ai1ec-oneday-view{clear:both;}.ai1ec-week-view .ai1ec-grid-container,.ai1ec-oneday-view .ai1ec-grid-container{position:absolute;top:auto;left:0;right:0;}.ai1ec-week-view .ai1ec-now-marker,.ai1ec-week-view .ai1ec-hour-marker,.ai1ec-week-view .ai1ec-quarter-marker,.ai1ec-oneday-view .ai1ec-now-marker,.ai1ec-oneday-view .ai1ec-hour-marker,.ai1ec-oneday-view .ai1ec-quarter-marker{position:absolute;left:0;right:0;}.ai1ec-week-view .ai1ec-hour-marker,.ai1ec-oneday-view .ai1ec-hour-marker{border-top:1px solid #ddd;border-top:1px solid rgba(221,221,221,0.7);height:60px;background:rgba(221,221,221,0.4) !important;}.ai1ec-week-view .ai1ec-hour-marker.ai1ec-business-hour,.ai1ec-oneday-view .ai1ec-hour-marker.ai1ec-business-hour{background:none !important;}.ai1ec-week-view .ai1ec-hour-marker div,.ai1ec-week-view .ai1ec-allday-label,.ai1ec-oneday-view .ai1ec-hour-marker div,.ai1ec-oneday-view .ai1ec-allday-label{position:relative;z-index:2;margin-left:1px;padding:0 3px;font-size:8pt !important;font-weight:normal !important;background:#f5f5f5;float:left;border-radius:3px;}.ai1ec-week-view .ai1ec-allday-label,.ai1ec-oneday-view .ai1ec-allday-label{margin-top:1px;}.ai1ec-week-view .ai1ec-quarter-marker,.ai1ec-oneday-view .ai1ec-quarter-marker{border-top:1px solid #ddd;border-top:1px solid rgba(221,221,221,0.4);}.ai1ec-week-view .ai1ec-now-marker,.ai1ec-oneday-view .ai1ec-now-marker{border-top:2px solid #f2c539;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.35);box-shadow:inset 0 1px 1px rgba(0,0,0,0.35);height:4px;text-shadow:0 1px 1px rgba(0,0,0,0.4);z-index:2;}.ai1ec-week-view .ai1ec-now-marker div,.ai1ec-oneday-view .ai1ec-now-marker div{background-color:#f2c539;border-radius:0 0 3px 3px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.35);box-shadow:0 1px 1px rgba(0,0,0,0.35);color:#fff;opacity:0;filter:alpha(opacity=0);font-size:11px;float:left;padding:1px 4px;-webkit-transition:opacity 0.1s;transition:opacity 0.1s;}.ai1ec-week-view .ai1ec-now-marker:hover div,.ai1ec-oneday-view .ai1ec-now-marker:hover div{opacity:1;filter:alpha(opacity=100);}.ai1ec-month-view a.ai1ec-event-container,.ai1ec-week-view a.ai1ec-event-container,.ai1ec-oneday-view a.ai1ec-event-container{border:none;display:block;font-size:12px;opacity:0.85;filter:alpha(opacity=85);}.ai1ec-month-view a.ai1ec-event-container:hover,.ai1ec-month-view a.ai1ec-event-container.ai1ec-hover,.ai1ec-week-view a.ai1ec-event-container:hover,.ai1ec-week-view a.ai1ec-event-container.ai1ec-hover,.ai1ec-oneday-view a.ai1ec-event-container:hover,.ai1ec-oneday-view a.ai1ec-event-container.ai1ec-hover{opacity:1;filter:alpha(opacity=100);}.ai1ec-month-view .ai1ec-event,.ai1ec-week-view .ai1ec-event,.ai1ec-oneday-view .ai1ec-event{max-height:100%;overflow:hidden;margin:1px 0 0;padding:0 3px 1px;white-space:nowrap;}.ai1ec-month-view .ai1ec-event-time,.ai1ec-week-view .ai1ec-event-time,.ai1ec-oneday-view .ai1ec-event-time{font-weight:bold;font-size:11px;}.ai1ec-month-view a.ai1ec-event-container,.ai1ec-week-view .ai1ec-allday-events a.ai1ec-event-container,.ai1ec-oneday-view .ai1ec-allday-events a.ai1ec-event-container{position:relative;}.ai1ec-month-view .ai1ec-allday .ai1ec-event,.ai1ec-month-view .ai1ec-multiday .ai1ec-event,.ai1ec-week-view .ai1ec-allday-events .ai1ec-allday .ai1ec-event,.ai1ec-week-view .ai1ec-allday-events .ai1ec-multiday .ai1ec-event,.ai1ec-oneday-view .ai1ec-allday-events .ai1ec-allday .ai1ec-event,.ai1ec-oneday-view .ai1ec-allday-events .ai1ec-multiday .ai1ec-event{border-radius:3px;background-color:#3d6b99;color:#fff;text-shadow:0 1px 1px rgba(0,0,0,0.4);}.ai1ec-oneday-view a.ai1ec-event-container{margin-right:10px;}.ai1ec-oneday-view .ai1ec-allday-events a.ai1ec-event-container{margin:0 0 0 53px;}.ai1ec-week-view .ai1ec-week a.ai1ec-event-container,.ai1ec-oneday-view .ai1ec-oneday a.ai1ec-event-container{background-color:#fff;background-image:-webkit-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:-moz-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:-ms-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:-o-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:linear-gradient(top,#f5f8fa,#c5d3e0 120px);border:1px solid #9eb5cc;border-radius:3px;-webkit-box-shadow:1px 2px 4px rgba(0,0,0,0.15);box-shadow:1px 2px 4px rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:15px;margin:0 -1px;min-height:34px;position:absolute;right:0;text-shadow:0 1px 0 #fff;}.ai1ec-week-view .ai1ec-week a.ai1ec-event-container.ai1ec-raised,.ai1ec-oneday-view .ai1ec-oneday a.ai1ec-event-container.ai1ec-raised{z-index:5;}.ai1ec-week-view .ai1ec-week a.ai1ec-event-container:hover,.ai1ec-oneday-view .ai1ec-oneday a.ai1ec-event-container:hover{border-color:#99acc0;}.ai1ec-week-view .ai1ec-week .ai1ec-event,.ai1ec-oneday-view .ai1ec-oneday .ai1ec-event{margin:0;position:absolute;bottom:1px;left:0;right:0;top:1px;}.ai1ec-week-view .ai1ec-week .ai1ec-event-title,.ai1ec-oneday-view .ai1ec-oneday .ai1ec-event-title{display:block;white-space:normal;}.ai1ec-month-view .ai1ec-event{height:14px;line-height:14px;margin:0 0 1px;}.ai1ec-word-wrap.ai1ec-month-view .ai1ec-event{border-bottom:1px dotted #ddd;height:auto;overflow:visible;padding-top:1px;padding-bottom:2px;white-space:normal;}.ai1ec-word-wrap.ai1ec-month-view .ai1ec-multiday .ai1ec-event{border-bottom:none;overflow:hidden;padding-top:0;padding-bottom:1px;white-space:nowrap;}.ai1ec-word-wrap.ai1ec-month-view .ai1ec-allday .ai1ec-event{border-bottom:none;}.ai1ec-month-view .ai1ec-allday{padding-left:1px;width:97.5%;}.ai1ec-month-view .ai1ec-allday.ai1ec-multiday{padding-left:0;}.ai1ec-month-view .ai1ec-multiday{z-index:1;}.ai1ec-month-view .ai1ec-multiday-arrow1{background:#3d6b99;border:7px solid #fff;border-left-color:#3d6b99;border-right-width:0;height:1px;position:absolute;right:0;top:0;width:0;}.ai1ec-month-view .ai1ec-multiday-arrow2{border:7px solid #3d6b99;border-left-color:#fff;border-right-width:2px;height:1px;left:0;position:absolute;top:0;width:0;}.ai1ec-month-view .ai1ec-multiday-bar{background:#3d6b99;border-radius:3px;height:14px;left:0;position:absolute;top:0;}.ai1ec-month-view .ai1ec-multiday-bar .ai1ec-event-title{margin-left:7px;}.ai1ec-month-view .ai1ec-multiday-bar .ai1ec-event{margin:0;}.ai1ec-month-view .ai1ec-multiday-bar .ai1ec-event-time{display:none;}.ai1ec-month-view .ai1ec-event-dropdown{background:#fff;border:1px solid #e7e7e7;border-top:0;left:-1px;position:absolute;top:78px;width:90px;z-index:1000;}.ai1ec-month-view .ai1ec-obscured{display:none !important;}.ai1ec-month-view a.ai1ec-scroll-up,.ai1ec-month-view a.ai1ec-scroll-down{border:1px solid #ddd;border-radius:0.2em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;left:50%;height:16px;line-height:14px;margin-left:-8px;position:relative;text-align:center;width:16px;}.ai1ec-month-view a.ai1ec-scroll-up:hover,.ai1ec-month-view a.ai1ec-scroll-down:hover{background-color:#ddd;}.ai1ec-month-view a.ai1ec-scroll-up.ai1ec-disabled,.ai1ec-month-view a.ai1ec-scroll-down.ai1ec-disabled{border:none;cursor:default;opacity:0.2;filter:alpha(opacity=20);padding:1px;}.ai1ec-month-view a.ai1ec-scroll-up.ai1ec-disabled:hover,.ai1ec-month-view a.ai1ec-scroll-down.ai1ec-disabled:hover{background-color:transparent;}.ai1ec-oneday-view .ai1ec-start-truncated .ai1ec-event-time,.ai1ec-week-view .ai1ec-start-truncated .ai1ec-event-time{display:none;}.ai1ec-oneday-view .ai1ec-start-truncated,.ai1ec-week-view .ai1ec-start-truncated{border-top-left-radius:0;border-top-right-radius:0;}.ai1ec-oneday-view .ai1ec-end-truncated,.ai1ec-week-view .ai1ec-end-truncated{border-bottom-left-radius:0;border-bottom-right-radius:0;}.ai1ec-oneday-view .ai1ec-start-truncator,.ai1ec-oneday-view .ai1ec-end-truncator,.ai1ec-week-view .ai1ec-start-truncator,.ai1ec-week-view .ai1ec-end-truncator{position:absolute;line-height:1em;font-size:7px;text-shadow:none;opacity:0.5;filter:alpha(opacity=50);}.ai1ec-oneday-view .ai1ec-start-truncator,.ai1ec-week-view .ai1ec-start-truncator{top:-1px;left:-1px;}.ai1ec-oneday-view .ai1ec-end-truncator,.ai1ec-week-view .ai1ec-end-truncator{bottom:-1px;right:-1px;}.ai1ec-agenda-view{clear:both;overflow:hidden;margin:0 0 6px;}.ai1ec-agenda-view .ai1ec-date-events{overflow:hidden;margin:0 0.75em 0 0;}@media screen and (-webkit-min-device-pixel-ratio: 0){.ai1ec-agenda-view .ai1ec-date-events{overflow:visible;display:-webkit-flex;-webkit-flex-wrap:wrap;}}.ai1ec-agenda-view .ai1ec-date{overflow:hidden;}.ai1ec-agenda-view .ai1ec-event-toggle{float:right;font-size:14px;font-weight:bold;color:#adadad;-webkit-transition:color 0.1s;transition:color 0.1s;}.ai1ec-agenda-view .ai1ec-event-toggle .ai1ec-fa-minus-circle{display:none;}.ai1ec-agenda-view .ai1ec-event{background:#fff;border:1px solid #ccc;border-radius:0.5em;clear:right;margin:6.5px 0;overflow:hidden;position:relative;padding:0.6em;-webkit-transition:border-color 0.1s;transition:border-color 0.1s;}@media screen and (-webkit-min-device-pixel-ratio: 0){.ai1ec-agenda-view .ai1ec-event{overflow:visible;width:100%;}.ai1ec-agenda-view .ai1ec-event + .ai1ec-event{margin:0 0 6.5px 0;}}.ai1ec-agenda-view .ai1ec-event.ai1ec-expanded{border-color:#808080;-webkit-box-shadow:0 2px 4px #e0e0e0;box-shadow:0 2px 4px #e0e0e0;}.ai1ec-agenda-view .ai1ec-event.ai1ec-expanded .ai1ec-event-toggle .ai1ec-fa-minus-circle{display:inline-block;}.ai1ec-agenda-view .ai1ec-event.ai1ec-expanded .ai1ec-event-toggle .ai1ec-fa-plus-circle{display:none;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-header{cursor:pointer;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-header:hover .ai1ec-event-toggle{color:#525252;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-title{color:#3d6b99;font-weight:bold;font-size:10.5pt;margin:0 0 0.4em;-webkit-transition:color 0.1s;transition:color 0.1s;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-time{font-size:9pt;font-weight:bold;opacity:0.8;filter:alpha(opacity=80);}.ai1ec-agenda-view .ai1ec-event .post-edit-link{opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity 0.1s;transition:opacity 0.1s;}.ai1ec-agenda-view .ai1ec-event:hover{border-color:#808080;}.ai1ec-agenda-view .ai1ec-event:hover .ai1ec-event-title{color:#335980;}.ai1ec-agenda-view .ai1ec-event:hover .post-edit-link{opacity:1;filter:alpha(opacity=100);}.ai1ec-agenda-view .ai1ec-event-summary{display:none;}.ai1ec-agenda-view .ai1ec-event-summary.ai1ec-expanded{display:block;}.ai1ec-agenda-view .ai1ec-event-avatar{float:left;margin:0 16px 8px 0;max-width:40%;}.ai1ec-agenda-view .ai1ec-event-avatar img{max-width:300px;max-height:300px;min-height:0;width:100%;}.ai1ec-agenda-view .ai1ec-event-description{font-size:9pt;line-height:1.5em;margin-top:9px;}.ai1ec-agenda-view .ai1ec-event-summary-footer{clear:both;padding-top:10px;}.ai1ec-agenda-view .ai1ec-event-summary-footer .ai1ec-field-label{font-size:8pt;}.ai1ec-agenda-view .ai1ec-categories,.ai1ec-agenda-view .ai1ec-tags{font-size:8pt;margin-right:0.5em;}.ai1ec-agenda-view .ai1ec-actions{float:right;margin-top:-5px;}.ai1ec-print *{background:white !important;color:black !important;}.ai1ec-print body{margin:0;text-align:left;}.ai1ec-print #wpadminbar,.ai1ec-print #comments,.ai1ec-print #page > header{display:none;}.ai1ec-print #ai1ec-container{position:absolute;left:0;top:0;width:100%;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event.ai1ec-expanded{box-shadow:none;border:2px solid gray !important;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-summary-footer{display:none;}.ai1ec-print .ai1ec-agenda-view .ai1ec-date-title{border-color:#cacaca;}.ai1ec-print .ai1ec-agenda-view .ai1ec-date-title:after{display:none;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-summary .ai1ec-event-title{display:inline;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-summary .ai1ec-event-time{display:inline;border:none !important;box-shadow:none !important;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-description{padding:0 !important;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event.ai1ec-allday .ai1ec-allday-label{border:none !important;box-shadow:none !important;padding-left:0.2em !important;}.ai1ec-print .timely .entry-meta,.ai1ec-print .timely .ai1ec-subscribe,.ai1ec-print .timely .ai1ec-subscribe-google,.ai1ec-print .ai1ec-agenda-view .ai1ec-event-expand,.ai1ec-print .ai1ec-btn-toolbar,.ai1ec-print .ai1ec-pagination,.ai1ec-print .ai1ec-calendar-toolbar,.ai1ec-print .ai1ec-read-more,.ai1ec-print .ai1ec-color-swatch,.ai1ec-print .post-edit-link,.ai1ec-print .ai1ec-event-toggle,.ai1ec-print .ai1ec-views-dropdown{display:none !important;}.ai1ec-print .ai1ec-event-header{cursor:text !important;}#ai1ec_clear_saved_view{margin-left:-4px;margin-right:5px;}.ai1ec-collapsible-toggle{cursor:pointer;}.ai1ec-subscribe-container .ai1ec-fa.ai1ec-fa-fw{width:20px;}.ai1ec-event:hover .ai1ec-sas-actions,.ai1ec-popover .ai1ec-sas-actions{display:block;white-space:nowrap;}.ai1ec-event:hover .ai1ec-sas-actions .ai1ec-sas-action,.ai1ec-popover .ai1ec-sas-actions .ai1ec-sas-action{display:inline-block;}.ai1ec-event:hover .ai1ec-sas-actions .ai1ec-sas-action-tickets,.ai1ec-popover .ai1ec-sas-actions .ai1ec-sas-action-tickets{display:none;}.ai1ec-event[data-ticket-url] .ai1ec-sas-action-tickets,.ai1ec-popover.ai1ec-has-tickets-button .ai1ec-sas-action-tickets{display:inline-block !important;}:not( .ai1ec-has-product-buy-button ) .ai1ec-event:not( [data-ticket-url] ) .ai1ec-sas-action-tickets,:not( .ai1ec-has-product-buy-button ) .ai1ec-popover:not( .ai1ec-has-tickets-button ) .ai1ec-sas-action-tickets{display:none !important;}.ai1ec-sas-actions{display:block;}.ai1ec-sas-actions .ai1ec-sas-action{display:none;border-radius:0;}.ai1ec-sas-actions .ai1ec-sas-action:hover span,.ai1ec-sas-actions .ai1ec-active > .ai1ec-sas-action span{display:inline;}.single-ai1ec_event .ai1ec-sas-actions{display:block;}.single-ai1ec_event .ai1ec-sas-actions a{text-align:center !important;}.ai1ec-sas-narrow .ai1ec-sas-save-and-share-buttons span{display:none !important;}.ai1ec-agenda-view .ai1ec-event .ai1ec-sas-actions{float:right;margin:0 10px;}@media (max-width: 992px){.ai1ec-agenda-view .ai1ec-event .ai1ec-sas-actions span{display:none !important;}}.ai1ec-posterboard-view .ai1ec-sas-actions,.ai1ec-popover .ai1ec-sas-actions{text-align:center;}.ai1ec-posterboard-view .ai1ec-sas-actions a.ai1ec-btn,.ai1ec-popover .ai1ec-sas-actions a.ai1ec-btn{float:none;}.ai1ec-posterboard-view .ai1ec-sas-action-tickets{float:left !important;margin-top:1px;}.ai1ec-stream-view .ai1ec-sas-actions{float:right;margin:0 10px;position:absolute;right:0px;}@media (max-width: 992px){.ai1ec-stream-view .ai1ec-sas-actions span{display:none !important;}}.ai1ec-stream-view .post-edit-link{margin-top:28px;}.ai1ec-month-view .ai1ec-sas-actions{display:block !important;}.ai1ec-month-view .ai1ec-sas-action{display:block !important;}.ai1ec-popup .ai1ec-sas-actions{margin:5px 0;}.ai1ec-contribution-buttons{margin:11px 0 11px 3px;}.ai1ec-create-event-form .ai1ec-checkbox-label,.ai1ec-submit-ics-form .ai1ec-checkbox-label{margin:0;padding:5px 0 9px;vertical-align:top;}.ai1ec-create-event-form .ai1ec-checkbox-label span,.ai1ec-submit-ics-form .ai1ec-checkbox-label span{vertical-align:top;}.ai1ec-create-event-form .ai1ec-checkbox-label input[type="checkbox"],.ai1ec-submit-ics-form .ai1ec-checkbox-label input[type="checkbox"]{margin:0 0 3px;}.ai1ec-create-event-form .ai1ec-select2-multiselect-selector,.ai1ec-create-event-form .ai1ec-tags-selector,.ai1ec-create-event-form .select2-container,.ai1ec-submit-ics-form .ai1ec-select2-multiselect-selector,.ai1ec-submit-ics-form .ai1ec-tags-selector,.ai1ec-submit-ics-form .select2-container{width:100%;}.ai1ec-create-event-form .ai1ec-timezone-select label,.ai1ec-submit-ics-form .ai1ec-timezone-select label{padding-top:4px;}.ai1ec-create-event-form .ai1ec-fileupload .ai1ec-thumbnail,.ai1ec-submit-ics-form .ai1ec-fileupload .ai1ec-thumbnail{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;min-width:26px;height:26px;margin-bottom:0;padding:2px;}.ai1ec-create-event-form .ai1ec-captcha,.ai1ec-submit-ics-form .ai1ec-captcha{background:#f5f5f5;border:1px solid #e0e0e0;padding:0.5em 0;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff;}.ai1ec-create-event-form .ai1ec-captcha #recaptcha_image img,.ai1ec-submit-ics-form .ai1ec-captcha #recaptcha_image img{-webkit-box-shadow:0 0 1px rgba(0,0,0,0.5);box-shadow:0 0 1px rgba(0,0,0,0.5);}.ai1ec-create-event-form .ai1ec-captcha #recaptcha_area,.ai1ec-submit-ics-form .ai1ec-captcha #recaptcha_area{margin:0 auto;}.ai1ec-create-event-form .ai1ec-captcha .ai1ec-initializing-message,.ai1ec-submit-ics-form .ai1ec-captcha .ai1ec-initializing-message{display:none;text-align:center;}.ai1ec-create-event-form .ai1ec-captcha.ai1ec-initializing,.ai1ec-submit-ics-form .ai1ec-captcha.ai1ec-initializing{background:url('../img/ajax-loader.gif') no-repeat center 10px;}.ai1ec-create-event-form .ai1ec-captcha.ai1ec-initializing .ai1ec-initializing-message,.ai1ec-submit-ics-form .ai1ec-captcha.ai1ec-initializing .ai1ec-initializing-message{color:#858585;margin:50px 0 10px;display:block;}.ai1ec-create-event-form .ai1ec-nocaptcha > div,.ai1ec-submit-ics-form .ai1ec-nocaptcha > div{width:50%;margin:auto;}.ai1ec-create-event-form .ai1ec-with-time{display:none;}.ai1ec-create-event-form #ai1ec-end-time-wrap .col-sm-6:last-child{margin-left:4%;width:47%;}.ai1ec-create-event-form #ai1ec_map_canvas{height:100px;margin-bottom:9px;}.ai1ec-create-event-form #ai1ec-description{max-width:100%;}@media (min-width: 768px){.ai1ec-create-event-form .ai1ec-start-time{margin-bottom:0;}}.ai1ec-submit-ics-form .ai1ec-captcha{margin-bottom:9px;}#open_require_disclaimer{text-decoration:underline !important;font-weight:bold !important;}.ai1ec-geo-ac-results-not-ready{visibility:hidden;}.ai1ec-geo-ac-results img{float:left;margin-right:5px;}.ai1ec-geo-ac-results .ai1ec-dropdown-menu{display:block;width:275px;}.ai1ec-geo-ac-results .ai1ec-dropdown-menu li{clear:left;color:#333;cursor:pointer;margin:2px 0;padding:0 5px;}.ai1ec-geo-ac-results .ai1ec-dropdown-menu li:hover{color:#262626;background-color:#f5f5f5;}.ai1ec-modal-open .ai1ec-geo-ac-results{z-index:20040;}#ai1ec-venue-details .ai1ec-with-venue-image{background-repeat:no-repeat;background-position:center center;background-size:cover;border-radius:5px 5px 0 0;height:350px;overflow:hidden;position:relative;}#ai1ec-venue-details .ai1ec-with-venue-image .ai1ec-title-shading{border-radius:5px 5px 0 0;bottom:0;background-image:-webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);background-image:linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);height:100px;left:0;position:absolute;width:100%;}#ai1ec-venue-details .ai1ec-with-venue-image .ai1ec-modal-header-inner{height:100%;position:relative;}#ai1ec-venue-details .ai1ec-with-venue-image h2{bottom:0;color:#fff;position:absolute;text-shadow:0 0 3px rgba(0,0,0,0.8);}#ai1ec-venue-details .ai1ec-with-venue-image address{margin-bottom:9px;}#ai1ec-venue-details .ai1ec-with-venue-image .ai1ec-alert-info{margin-bottom:0;}#ai1ec-venue-details #ai1ecv_map_container{height:180px;margin-bottom:15px;}
|
1 |
+
.ai1ec-btn-lg{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.ai1ec-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}@font-face{font-family:'Timely_FontAwesome';src:url('../font/fontawesome-webfont.eot?v=4.0.3');src:url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'), url('../font/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype');font-weight:normal;font-style:normal;}.ai1ec-fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.ai1ec-fa-lg{font-size:1.3333333333333em;line-height:0.75em;vertical-align:-15%;}.ai1ec-fa-2x{font-size:2em;}.ai1ec-fa-3x{font-size:3em;}.ai1ec-fa-4x{font-size:4em;}.ai1ec-fa-5x{font-size:5em;}.ai1ec-fa-fw{width:1.2857142857143em;text-align:center;}.ai1ec-fa-ul{padding-left:0;margin-left:2.1428571428571em;list-style-type:none;}.ai1ec-fa-ul > li{position:relative;}.ai1ec-fa-li{position:absolute;left:-2.1428571428571em;width:2.1428571428571em;top:0.14285714285714em;text-align:center;}.ai1ec-fa-li.ai1ec-fa-lg{left:-1.8571428571429em;}.ai1ec-fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);}100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);}100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);}100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);}100%{transform:rotate(359deg);}}.ai1ec-fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle;}.ai1ec-fa-stack-1x,.ai1ec-fa-stack-2x{position:absolute;left:0;width:100%;text-align:center;}.ai1ec-fa-stack-1x{line-height:inherit;}.ai1ec-fa-stack-2x{font-size:2em;}.ai1ec-fa-inverse{color:#fff;}.ai1ec-fa-glass:before{content:"\f000";}.ai1ec-fa-music:before{content:"\f001";}.ai1ec-fa-search:before{content:"\f002";}.ai1ec-fa-envelope-o:before{content:"\f003";}.ai1ec-fa-heart:before{content:"\f004";}.ai1ec-fa-star:before{content:"\f005";}.ai1ec-fa-star-o:before{content:"\f006";}.ai1ec-fa-user:before{content:"\f007";}.ai1ec-fa-film:before{content:"\f008";}.ai1ec-fa-th-large:before{content:"\f009";}.ai1ec-fa-th:before{content:"\f00a";}.ai1ec-fa-th-list:before{content:"\f00b";}.ai1ec-fa-check:before{content:"\f00c";}.ai1ec-fa-times:before{content:"\f00d";}.ai1ec-fa-search-plus:before{content:"\f00e";}.ai1ec-fa-search-minus:before{content:"\f010";}.ai1ec-fa-power-off:before{content:"\f011";}.ai1ec-fa-signal:before{content:"\f012";}.ai1ec-fa-gear:before,.ai1ec-fa-cog:before{content:"\f013";}.ai1ec-fa-trash-o:before{content:"\f014";}.ai1ec-fa-home:before{content:"\f015";}.ai1ec-fa-file-o:before{content:"\f016";}.ai1ec-fa-clock-o:before{content:"\f017";}.ai1ec-fa-road:before{content:"\f018";}.ai1ec-fa-download:before{content:"\f019";}.ai1ec-fa-arrow-circle-o-down:before{content:"\f01a";}.ai1ec-fa-arrow-circle-o-up:before{content:"\f01b";}.ai1ec-fa-inbox:before{content:"\f01c";}.ai1ec-fa-play-circle-o:before{content:"\f01d";}.ai1ec-fa-rotate-right:before,.ai1ec-fa-repeat:before{content:"\f01e";}.ai1ec-fa-refresh:before{content:"\f021";}.ai1ec-fa-list-alt:before{content:"\f022";}.ai1ec-fa-lock:before{content:"\f023";}.ai1ec-fa-flag:before{content:"\f024";}.ai1ec-fa-headphones:before{content:"\f025";}.ai1ec-fa-volume-off:before{content:"\f026";}.ai1ec-fa-volume-down:before{content:"\f027";}.ai1ec-fa-volume-up:before{content:"\f028";}.ai1ec-fa-qrcode:before{content:"\f029";}.ai1ec-fa-barcode:before{content:"\f02a";}.ai1ec-fa-tag:before{content:"\f02b";}.ai1ec-fa-tags:before{content:"\f02c";}.ai1ec-fa-book:before{content:"\f02d";}.ai1ec-fa-bookmark:before{content:"\f02e";}.ai1ec-fa-print:before{content:"\f02f";}.ai1ec-fa-camera:before{content:"\f030";}.ai1ec-fa-font:before{content:"\f031";}.ai1ec-fa-bold:before{content:"\f032";}.ai1ec-fa-italic:before{content:"\f033";}.ai1ec-fa-text-height:before{content:"\f034";}.ai1ec-fa-text-width:before{content:"\f035";}.ai1ec-fa-align-left:before{content:"\f036";}.ai1ec-fa-align-center:before{content:"\f037";}.ai1ec-fa-align-right:before{content:"\f038";}.ai1ec-fa-align-justify:before{content:"\f039";}.ai1ec-fa-list:before{content:"\f03a";}.ai1ec-fa-dedent:before,.ai1ec-fa-outdent:before{content:"\f03b";}.ai1ec-fa-indent:before{content:"\f03c";}.ai1ec-fa-video-camera:before{content:"\f03d";}.ai1ec-fa-picture-o:before{content:"\f03e";}.ai1ec-fa-pencil:before{content:"\f040";}.ai1ec-fa-map-marker:before{content:"\f041";}.ai1ec-fa-adjust:before{content:"\f042";}.ai1ec-fa-tint:before{content:"\f043";}.ai1ec-fa-edit:before,.ai1ec-fa-pencil-square-o:before{content:"\f044";}.ai1ec-fa-share-square-o:before{content:"\f045";}.ai1ec-fa-check-square-o:before{content:"\f046";}.ai1ec-fa-arrows:before{content:"\f047";}.ai1ec-fa-step-backward:before{content:"\f048";}.ai1ec-fa-fast-backward:before{content:"\f049";}.ai1ec-fa-backward:before{content:"\f04a";}.ai1ec-fa-play:before{content:"\f04b";}.ai1ec-fa-pause:before{content:"\f04c";}.ai1ec-fa-stop:before{content:"\f04d";}.ai1ec-fa-forward:before{content:"\f04e";}.ai1ec-fa-fast-forward:before{content:"\f050";}.ai1ec-fa-step-forward:before{content:"\f051";}.ai1ec-fa-eject:before{content:"\f052";}.ai1ec-fa-chevron-left:before{content:"\f053";}.ai1ec-fa-chevron-right:before{content:"\f054";}.ai1ec-fa-plus-circle:before{content:"\f055";}.ai1ec-fa-minus-circle:before{content:"\f056";}.ai1ec-fa-times-circle:before{content:"\f057";}.ai1ec-fa-check-circle:before{content:"\f058";}.ai1ec-fa-question-circle:before{content:"\f059";}.ai1ec-fa-info-circle:before{content:"\f05a";}.ai1ec-fa-crosshairs:before{content:"\f05b";}.ai1ec-fa-times-circle-o:before{content:"\f05c";}.ai1ec-fa-check-circle-o:before{content:"\f05d";}.ai1ec-fa-ban:before{content:"\f05e";}.ai1ec-fa-arrow-left:before{content:"\f060";}.ai1ec-fa-arrow-right:before{content:"\f061";}.ai1ec-fa-arrow-up:before{content:"\f062";}.ai1ec-fa-arrow-down:before{content:"\f063";}.ai1ec-fa-mail-forward:before,.ai1ec-fa-share:before{content:"\f064";}.ai1ec-fa-expand:before{content:"\f065";}.ai1ec-fa-compress:before{content:"\f066";}.ai1ec-fa-plus:before{content:"\f067";}.ai1ec-fa-minus:before{content:"\f068";}.ai1ec-fa-asterisk:before{content:"\f069";}.ai1ec-fa-exclamation-circle:before{content:"\f06a";}.ai1ec-fa-gift:before{content:"\f06b";}.ai1ec-fa-leaf:before{content:"\f06c";}.ai1ec-fa-fire:before{content:"\f06d";}.ai1ec-fa-eye:before{content:"\f06e";}.ai1ec-fa-eye-slash:before{content:"\f070";}.ai1ec-fa-warning:before,.ai1ec-fa-exclamation-triangle:before{content:"\f071";}.ai1ec-fa-plane:before{content:"\f072";}.ai1ec-fa-calendar:before{content:"\f073";}.ai1ec-fa-random:before{content:"\f074";}.ai1ec-fa-comment:before{content:"\f075";}.ai1ec-fa-magnet:before{content:"\f076";}.ai1ec-fa-chevron-up:before{content:"\f077";}.ai1ec-fa-chevron-down:before{content:"\f078";}.ai1ec-fa-retweet:before{content:"\f079";}.ai1ec-fa-shopping-cart:before{content:"\f07a";}.ai1ec-fa-folder:before{content:"\f07b";}.ai1ec-fa-folder-open:before{content:"\f07c";}.ai1ec-fa-arrows-v:before{content:"\f07d";}.ai1ec-fa-arrows-h:before{content:"\f07e";}.ai1ec-fa-bar-chart-o:before{content:"\f080";}.ai1ec-fa-twitter-square:before{content:"\f081";}.ai1ec-fa-facebook-square:before{content:"\f082";}.ai1ec-fa-camera-retro:before{content:"\f083";}.ai1ec-fa-key:before{content:"\f084";}.ai1ec-fa-gears:before,.ai1ec-fa-cogs:before{content:"\f085";}.ai1ec-fa-comments:before{content:"\f086";}.ai1ec-fa-thumbs-o-up:before{content:"\f087";}.ai1ec-fa-thumbs-o-down:before{content:"\f088";}.ai1ec-fa-star-half:before{content:"\f089";}.ai1ec-fa-heart-o:before{content:"\f08a";}.ai1ec-fa-sign-out:before{content:"\f08b";}.ai1ec-fa-linkedin-square:before{content:"\f08c";}.ai1ec-fa-thumb-tack:before{content:"\f08d";}.ai1ec-fa-external-link:before{content:"\f08e";}.ai1ec-fa-sign-in:before{content:"\f090";}.ai1ec-fa-trophy:before{content:"\f091";}.ai1ec-fa-github-square:before{content:"\f092";}.ai1ec-fa-upload:before{content:"\f093";}.ai1ec-fa-lemon-o:before{content:"\f094";}.ai1ec-fa-phone:before{content:"\f095";}.ai1ec-fa-square-o:before{content:"\f096";}.ai1ec-fa-bookmark-o:before{content:"\f097";}.ai1ec-fa-phone-square:before{content:"\f098";}.ai1ec-fa-twitter:before{content:"\f099";}.ai1ec-fa-facebook:before{content:"\f09a";}.ai1ec-fa-github:before{content:"\f09b";}.ai1ec-fa-unlock:before{content:"\f09c";}.ai1ec-fa-credit-card:before{content:"\f09d";}.ai1ec-fa-rss:before{content:"\f09e";}.ai1ec-fa-hdd-o:before{content:"\f0a0";}.ai1ec-fa-bullhorn:before{content:"\f0a1";}.ai1ec-fa-bell:before{content:"\f0f3";}.ai1ec-fa-certificate:before{content:"\f0a3";}.ai1ec-fa-hand-o-right:before{content:"\f0a4";}.ai1ec-fa-hand-o-left:before{content:"\f0a5";}.ai1ec-fa-hand-o-up:before{content:"\f0a6";}.ai1ec-fa-hand-o-down:before{content:"\f0a7";}.ai1ec-fa-arrow-circle-left:before{content:"\f0a8";}.ai1ec-fa-arrow-circle-right:before{content:"\f0a9";}.ai1ec-fa-arrow-circle-up:before{content:"\f0aa";}.ai1ec-fa-arrow-circle-down:before{content:"\f0ab";}.ai1ec-fa-globe:before{content:"\f0ac";}.ai1ec-fa-wrench:before{content:"\f0ad";}.ai1ec-fa-tasks:before{content:"\f0ae";}.ai1ec-fa-filter:before{content:"\f0b0";}.ai1ec-fa-briefcase:before{content:"\f0b1";}.ai1ec-fa-arrows-alt:before{content:"\f0b2";}.ai1ec-fa-group:before,.ai1ec-fa-users:before{content:"\f0c0";}.ai1ec-fa-chain:before,.ai1ec-fa-link:before{content:"\f0c1";}.ai1ec-fa-cloud:before{content:"\f0c2";}.ai1ec-fa-flask:before{content:"\f0c3";}.ai1ec-fa-cut:before,.ai1ec-fa-scissors:before{content:"\f0c4";}.ai1ec-fa-copy:before,.ai1ec-fa-files-o:before{content:"\f0c5";}.ai1ec-fa-paperclip:before{content:"\f0c6";}.ai1ec-fa-save:before,.ai1ec-fa-floppy-o:before{content:"\f0c7";}.ai1ec-fa-square:before{content:"\f0c8";}.ai1ec-fa-bars:before{content:"\f0c9";}.ai1ec-fa-list-ul:before{content:"\f0ca";}.ai1ec-fa-list-ol:before{content:"\f0cb";}.ai1ec-fa-strikethrough:before{content:"\f0cc";}.ai1ec-fa-underline:before{content:"\f0cd";}.ai1ec-fa-table:before{content:"\f0ce";}.ai1ec-fa-magic:before{content:"\f0d0";}.ai1ec-fa-truck:before{content:"\f0d1";}.ai1ec-fa-pinterest:before{content:"\f0d2";}.ai1ec-fa-pinterest-square:before{content:"\f0d3";}.ai1ec-fa-google-plus-square:before{content:"\f0d4";}.ai1ec-fa-google-plus:before{content:"\f0d5";}.ai1ec-fa-money:before{content:"\f0d6";}.ai1ec-fa-caret-down:before{content:"\f0d7";}.ai1ec-fa-caret-up:before{content:"\f0d8";}.ai1ec-fa-caret-left:before{content:"\f0d9";}.ai1ec-fa-caret-right:before{content:"\f0da";}.ai1ec-fa-columns:before{content:"\f0db";}.ai1ec-fa-unsorted:before,.ai1ec-fa-sort:before{content:"\f0dc";}.ai1ec-fa-sort-down:before,.ai1ec-fa-sort-asc:before{content:"\f0dd";}.ai1ec-fa-sort-up:before,.ai1ec-fa-sort-desc:before{content:"\f0de";}.ai1ec-fa-envelope:before{content:"\f0e0";}.ai1ec-fa-linkedin:before{content:"\f0e1";}.ai1ec-fa-rotate-left:before,.ai1ec-fa-undo:before{content:"\f0e2";}.ai1ec-fa-legal:before,.ai1ec-fa-gavel:before{content:"\f0e3";}.ai1ec-fa-dashboard:before,.ai1ec-fa-tachometer:before{content:"\f0e4";}.ai1ec-fa-comment-o:before{content:"\f0e5";}.ai1ec-fa-comments-o:before{content:"\f0e6";}.ai1ec-fa-flash:before,.ai1ec-fa-bolt:before{content:"\f0e7";}.ai1ec-fa-sitemap:before{content:"\f0e8";}.ai1ec-fa-umbrella:before{content:"\f0e9";}.ai1ec-fa-paste:before,.ai1ec-fa-clipboard:before{content:"\f0ea";}.ai1ec-fa-lightbulb-o:before{content:"\f0eb";}.ai1ec-fa-exchange:before{content:"\f0ec";}.ai1ec-fa-cloud-download:before{content:"\f0ed";}.ai1ec-fa-cloud-upload:before{content:"\f0ee";}.ai1ec-fa-user-md:before{content:"\f0f0";}.ai1ec-fa-stethoscope:before{content:"\f0f1";}.ai1ec-fa-suitcase:before{content:"\f0f2";}.ai1ec-fa-bell-o:before{content:"\f0a2";}.ai1ec-fa-coffee:before{content:"\f0f4";}.ai1ec-fa-cutlery:before{content:"\f0f5";}.ai1ec-fa-file-text-o:before{content:"\f0f6";}.ai1ec-fa-building-o:before{content:"\f0f7";}.ai1ec-fa-hospital-o:before{content:"\f0f8";}.ai1ec-fa-ambulance:before{content:"\f0f9";}.ai1ec-fa-medkit:before{content:"\f0fa";}.ai1ec-fa-fighter-jet:before{content:"\f0fb";}.ai1ec-fa-beer:before{content:"\f0fc";}.ai1ec-fa-h-square:before{content:"\f0fd";}.ai1ec-fa-plus-square:before{content:"\f0fe";}.ai1ec-fa-angle-double-left:before{content:"\f100";}.ai1ec-fa-angle-double-right:before{content:"\f101";}.ai1ec-fa-angle-double-up:before{content:"\f102";}.ai1ec-fa-angle-double-down:before{content:"\f103";}.ai1ec-fa-angle-left:before{content:"\f104";}.ai1ec-fa-angle-right:before{content:"\f105";}.ai1ec-fa-angle-up:before{content:"\f106";}.ai1ec-fa-angle-down:before{content:"\f107";}.ai1ec-fa-desktop:before{content:"\f108";}.ai1ec-fa-laptop:before{content:"\f109";}.ai1ec-fa-tablet:before{content:"\f10a";}.ai1ec-fa-mobile-phone:before,.ai1ec-fa-mobile:before{content:"\f10b";}.ai1ec-fa-circle-o:before{content:"\f10c";}.ai1ec-fa-quote-left:before{content:"\f10d";}.ai1ec-fa-quote-right:before{content:"\f10e";}.ai1ec-fa-spinner:before{content:"\f110";}.ai1ec-fa-circle:before{content:"\f111";}.ai1ec-fa-mail-reply:before,.ai1ec-fa-reply:before{content:"\f112";}.ai1ec-fa-github-alt:before{content:"\f113";}.ai1ec-fa-folder-o:before{content:"\f114";}.ai1ec-fa-folder-open-o:before{content:"\f115";}.ai1ec-fa-smile-o:before{content:"\f118";}.ai1ec-fa-frown-o:before{content:"\f119";}.ai1ec-fa-meh-o:before{content:"\f11a";}.ai1ec-fa-gamepad:before{content:"\f11b";}.ai1ec-fa-keyboard-o:before{content:"\f11c";}.ai1ec-fa-flag-o:before{content:"\f11d";}.ai1ec-fa-flag-checkered:before{content:"\f11e";}.ai1ec-fa-terminal:before{content:"\f120";}.ai1ec-fa-code:before{content:"\f121";}.ai1ec-fa-reply-all:before{content:"\f122";}.ai1ec-fa-mail-reply-all:before{content:"\f122";}.ai1ec-fa-star-half-empty:before,.ai1ec-fa-star-half-full:before,.ai1ec-fa-star-half-o:before{content:"\f123";}.ai1ec-fa-location-arrow:before{content:"\f124";}.ai1ec-fa-crop:before{content:"\f125";}.ai1ec-fa-code-fork:before{content:"\f126";}.ai1ec-fa-unlink:before,.ai1ec-fa-chain-broken:before{content:"\f127";}.ai1ec-fa-question:before{content:"\f128";}.ai1ec-fa-info:before{content:"\f129";}.ai1ec-fa-exclamation:before{content:"\f12a";}.ai1ec-fa-superscript:before{content:"\f12b";}.ai1ec-fa-subscript:before{content:"\f12c";}.ai1ec-fa-eraser:before{content:"\f12d";}.ai1ec-fa-puzzle-piece:before{content:"\f12e";}.ai1ec-fa-microphone:before{content:"\f130";}.ai1ec-fa-microphone-slash:before{content:"\f131";}.ai1ec-fa-shield:before{content:"\f132";}.ai1ec-fa-calendar-o:before{content:"\f133";}.ai1ec-fa-fire-extinguisher:before{content:"\f134";}.ai1ec-fa-rocket:before{content:"\f135";}.ai1ec-fa-maxcdn:before{content:"\f136";}.ai1ec-fa-chevron-circle-left:before{content:"\f137";}.ai1ec-fa-chevron-circle-right:before{content:"\f138";}.ai1ec-fa-chevron-circle-up:before{content:"\f139";}.ai1ec-fa-chevron-circle-down:before{content:"\f13a";}.ai1ec-fa-html5:before{content:"\f13b";}.ai1ec-fa-css3:before{content:"\f13c";}.ai1ec-fa-anchor:before{content:"\f13d";}.ai1ec-fa-unlock-alt:before{content:"\f13e";}.ai1ec-fa-bullseye:before{content:"\f140";}.ai1ec-fa-ellipsis-h:before{content:"\f141";}.ai1ec-fa-ellipsis-v:before{content:"\f142";}.ai1ec-fa-rss-square:before{content:"\f143";}.ai1ec-fa-play-circle:before{content:"\f144";}.ai1ec-fa-ticket:before{content:"\f145";}.ai1ec-fa-minus-square:before{content:"\f146";}.ai1ec-fa-minus-square-o:before{content:"\f147";}.ai1ec-fa-level-up:before{content:"\f148";}.ai1ec-fa-level-down:before{content:"\f149";}.ai1ec-fa-check-square:before{content:"\f14a";}.ai1ec-fa-pencil-square:before{content:"\f14b";}.ai1ec-fa-external-link-square:before{content:"\f14c";}.ai1ec-fa-share-square:before{content:"\f14d";}.ai1ec-fa-compass:before{content:"\f14e";}.ai1ec-fa-toggle-down:before,.ai1ec-fa-caret-square-o-down:before{content:"\f150";}.ai1ec-fa-toggle-up:before,.ai1ec-fa-caret-square-o-up:before{content:"\f151";}.ai1ec-fa-toggle-right:before,.ai1ec-fa-caret-square-o-right:before{content:"\f152";}.ai1ec-fa-euro:before,.ai1ec-fa-eur:before{content:"\f153";}.ai1ec-fa-gbp:before{content:"\f154";}.ai1ec-fa-dollar:before,.ai1ec-fa-usd:before{content:"\f155";}.ai1ec-fa-rupee:before,.ai1ec-fa-inr:before{content:"\f156";}.ai1ec-fa-cny:before,.ai1ec-fa-rmb:before,.ai1ec-fa-yen:before,.ai1ec-fa-jpy:before{content:"\f157";}.ai1ec-fa-ruble:before,.ai1ec-fa-rouble:before,.ai1ec-fa-rub:before{content:"\f158";}.ai1ec-fa-won:before,.ai1ec-fa-krw:before{content:"\f159";}.ai1ec-fa-bitcoin:before,.ai1ec-fa-btc:before{content:"\f15a";}.ai1ec-fa-file:before{content:"\f15b";}.ai1ec-fa-file-text:before{content:"\f15c";}.ai1ec-fa-sort-alpha-asc:before{content:"\f15d";}.ai1ec-fa-sort-alpha-desc:before{content:"\f15e";}.ai1ec-fa-sort-amount-asc:before{content:"\f160";}.ai1ec-fa-sort-amount-desc:before{content:"\f161";}.ai1ec-fa-sort-numeric-asc:before{content:"\f162";}.ai1ec-fa-sort-numeric-desc:before{content:"\f163";}.ai1ec-fa-thumbs-up:before{content:"\f164";}.ai1ec-fa-thumbs-down:before{content:"\f165";}.ai1ec-fa-youtube-square:before{content:"\f166";}.ai1ec-fa-youtube:before{content:"\f167";}.ai1ec-fa-xing:before{content:"\f168";}.ai1ec-fa-xing-square:before{content:"\f169";}.ai1ec-fa-youtube-play:before{content:"\f16a";}.ai1ec-fa-dropbox:before{content:"\f16b";}.ai1ec-fa-stack-overflow:before{content:"\f16c";}.ai1ec-fa-instagram:before{content:"\f16d";}.ai1ec-fa-flickr:before{content:"\f16e";}.ai1ec-fa-adn:before{content:"\f170";}.ai1ec-fa-bitbucket:before{content:"\f171";}.ai1ec-fa-bitbucket-square:before{content:"\f172";}.ai1ec-fa-tumblr:before{content:"\f173";}.ai1ec-fa-tumblr-square:before{content:"\f174";}.ai1ec-fa-long-arrow-down:before{content:"\f175";}.ai1ec-fa-long-arrow-up:before{content:"\f176";}.ai1ec-fa-long-arrow-left:before{content:"\f177";}.ai1ec-fa-long-arrow-right:before{content:"\f178";}.ai1ec-fa-apple:before{content:"\f179";}.ai1ec-fa-windows:before{content:"\f17a";}.ai1ec-fa-android:before{content:"\f17b";}.ai1ec-fa-linux:before{content:"\f17c";}.ai1ec-fa-dribbble:before{content:"\f17d";}.ai1ec-fa-skype:before{content:"\f17e";}.ai1ec-fa-foursquare:before{content:"\f180";}.ai1ec-fa-trello:before{content:"\f181";}.ai1ec-fa-female:before{content:"\f182";}.ai1ec-fa-male:before{content:"\f183";}.ai1ec-fa-gittip:before{content:"\f184";}.ai1ec-fa-sun-o:before{content:"\f185";}.ai1ec-fa-moon-o:before{content:"\f186";}.ai1ec-fa-archive:before{content:"\f187";}.ai1ec-fa-bug:before{content:"\f188";}.ai1ec-fa-vk:before{content:"\f189";}.ai1ec-fa-weibo:before{content:"\f18a";}.ai1ec-fa-renren:before{content:"\f18b";}.ai1ec-fa-pagelines:before{content:"\f18c";}.ai1ec-fa-stack-exchange:before{content:"\f18d";}.ai1ec-fa-arrow-circle-o-right:before{content:"\f18e";}.ai1ec-fa-arrow-circle-o-left:before{content:"\f190";}.ai1ec-fa-toggle-left:before,.ai1ec-fa-caret-square-o-left:before{content:"\f191";}.ai1ec-fa-dot-circle-o:before{content:"\f192";}.ai1ec-fa-wheelchair:before{content:"\f193";}.ai1ec-fa-vimeo-square:before{content:"\f194";}.ai1ec-fa-turkish-lira:before,.ai1ec-fa-try:before{content:"\f195";}.ai1ec-fa-plus-square-o:before{content:"\f196";}.ai1ec-fa{font-family:Timely_FontAwesome;}a.ai1ec-fa.ai1ec-hide{display:none;}li .ai1ec-fa,li .ai1ec-fa-lg:before{width:auto;}.timely small.ai1ec-fa-stack{font-size:90%;height:1.53em;vertical-align:-11%;top:-0.1em;}.ai1ec-fa-stack .ai1ec-icon-timely{left:0.05em;top:-0.05em;}@font-face{font-family:'Timely Logo Icon';src:url('../font/ai1ec-icons.eot');src:url(data:application/x-font-woff;charset=utf-8;base64,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9yaKFYyGiYeHh4iHhomGiwhiiwWGi4eNh46IjomQi4+JtIGyerB6sHWrcKZwpmuhZpxmnGSVYo2Gi4eNiI+IjomQi48Ii7QFi5CNkI+Ojo+PjJCLCIyLBb2Ju4C4drl3tG+uZ69op2KfXp9dl1uNWQgOZ/eOyBWLj4uPio+Kj4qOio6KjoqPiI6Jj4mNiY6KjYiOiI6Hj4mNiY2JjIiOh46GjoiNiowIiY2IjYaOh46IjYqMh4uHjISLgYuBioGKgYmBiYCHgYiBh4OFg4aFhIaChYKJgYt/CIt+joCSgZKAlIOWhpaFloaXiZeIl4mXi5eLlYyVjpaNlI+UkJSQkpKQlJGUjZWLlwhp94sVi5aJl4iYiJiHl4WXhZeDlYGTgZN/j3+LeYt9hIJ+gX6Ge4t5i4KMgo2BjYGPgY+BCJCBkIKRg5KDkoWUhpOGlYmUi56LmJCUl5OWj5uLnghm9xsV9xCLZXVkiwWZgpV/k3ySe497i3uLfIl/hoCHgIaChIWFhIWFhIWFhoaFhoWHhYmEi4SLhoyHj4YIjoaPh5CGkIeQhpKGkYeRhZGGkYWRhJCFkISPg46BjoKNgYuAi219cHFzbnJjf1iLCH+LgIx/jYCNf46Aj3+QgZCCkoKSg5OGlYWWiJaLmIuXj5iSmZGXlJWXlJeUmZKakAibj5qPmY2ZjZmMmox+m4WZi5eLjouNjI2LjYyNi42MjIyNjI6MjYuNjI2DioSKhosIbotzlXeddp6Bo4uni6WUo52gnaCimaWRnY+djJ2LCPe8QhWLZ0KLi0Jni4vUQouLr9SLi9Svi4tC1IsFDvsB+CL3GRWEc39ze3NyZnN4couCi36OeZJ7kX2OfouAi32IfIR7hX+IgYtui26jb71vvH27i7kIi7eWrqCnoaemmKuLmYuciJ+Gn4WYiJGLlIuZjp2Sn5Gbj5mLoYughJ1/lISVgpV+CHx/gH+Fgn55hXeLdotzknaYeJh4mn+chggg9+MVi3+IfoV9hn2Cfn9/gICBhYGHhImBiX6KjKiSo5mgmp+ima2Ti4qLioyKi4mLiouLCIuKi4qLioyKi4qLiggOZ/dX91UVi/tO+1eli/c091eLBYv3aBWL+1D7V4uL9zUF+G/7TRWL+3X7l6+L91H3l4sFi/eOFYv7dvuXi4v3UwUO+JQU+JQViwwKAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPF6AeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAWAAAABIAEAADAAIAAQAh5gXwc/Ce8NXxev/9//8AAAAAACDmAPBz8J7w1fF5//3//wAB/+MaBQ+YD24POA6VAAMAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAADKJX6LXw889QALAgAAAAAAz7uKWgAAAADPu4paAAD/4AIAAeAAAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAAgAAAQAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAABAAAAAgAAAgIAAFICAABSAgAADAIAAFICAABTAgAADAHcAAABkwAAAdwAAAGTAAAB3AAAAABQAAAQAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgAoAGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgAoAGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('woff'), url('../font/ai1ec-icons.eot?#iefix&v=4.0.3') format('embedded-opentype');font-weight:normal;font-style:normal;}[class^="ai1ec-icon-"]:before,[class*=" ai1ec-icon-"]:before{display:inline-block;font-family:'Timely Logo Icon';font-style:normal;font-weight:normal;speak:none;vertical-align:baseline;}.ai1ec-icon-agenda:before{content:"\e603";}.ai1ec-icon-oneday:before{content:"\e604";}.ai1ec-icon-month:before{content:"\e602";}.ai1ec-icon-week:before{content:"\e605";}.ai1ec-icon-posterboard:before{content:"\e600";}.ai1ec-icon-stream:before{content:"\e601";}.ai1ec-icon-calendar:before{content:"\f073";}.ai1ec-icon-rss:before{content:"\f09e";}.ai1ec-icon-google:before{content:"\f0d5";}.ai1ec-icon-apple:before{content:"\f179";}.ai1ec-icon-windows:before{content:"\f17a";}.ai1ec-icon-timely:before{content:"\21";}.timely-icon-timely-logomark:before{content:"\21";}.timely-icon-import-events:before{content:"\22";}.timely-icon-export-events:before{content:"\23";}.timely-icon-facebook-sync:before{content:"\24";}.timely-icon-filter-tag-category:before{content:"\25";}.timely-icon-subscribe-events:before{content:"\26";}.timely-icon-recurring-events:before{content:"\27";}.timely-icon-multiple-views:before{content:"\28";}.timely-icon-customizable-views:before{content:"\29";}.timely-icon-upcoming-events-widget:before{content:"\2a";}.timely-icon-locations-maps:before{content:"\2b";}.timely-icon-seo-optimized:before{content:"\2c";}.timely-icon-dedicated-support:before{content:"\2d";}.timely-icon-plus-sign:before{content:"\2e";}.timely-icon-minus-sign:before{content:"\2f";}.timely-icon-chevron-right:before{content:"\30";}.timely-icon-chevron-left:before{content:"\31";}.timely-icon-chevron-down:before{content:"\32";}.timely-icon-chevron-up:before{content:"\33";}.timely-icon-arrow-right:before{content:"\34";}.timely-icon-arrow-left:before{content:"\35";}.timely-icon-arrow-up:before{content:"\36";}.timely-icon-arrow-down:before{content:"\37";}.timely-icon-pencil:before{content:"\3c";}.timely-icon-gear:before{content:"\3e";}.timely-icon-tag:before{content:"\3f";}.timely-icon-forward:before{content:"\3b";}.timely-icon-close:before{content:"\3a";}.timely-icon-heart:before{content:"\3d";}.timely-icon-folder:before{content:"\40";}.timely-icon-grid:before{content:"\41";}.timely-icon-plus:before{content:"\42";}.timely-icon-minus:before{content:"\43";}.timely-icon-print:before{content:"\38";}.timely article,.timely aside,.timely details,.timely figcaption,.timely figure,.timely footer,.timely header,.timely hgroup,.timely main,.timely nav,.timely section,.timely summary{display:block;}.timely audio,.timely canvas,.timely video{display:inline-block;}.timely audio:not([controls]){display:none;height:0;}.timely [hidden],.timely template{display:none;}.timely html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}.timely body{margin:0;}.timely a{background:transparent;}.timely a:focus{outline:thin dotted;}.timely a:active,.timely a:hover{outline:0;}.timely h1{font-size:2em;margin:0.67em 0;}.timely abbr[title]{border-bottom:1px dotted;}.timely b,.timely strong{font-weight:bold;}.timely dfn{font-style:italic;}.timely hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}.timely mark{background:#ff0;color:#000;}.timely code,.timely kbd,.timely pre,.timely samp{font-family:monospace, serif;font-size:1em;}.timely pre{white-space:pre-wrap;}.timely q{quotes:"\201C" "\201D" "\2018" "\2019";}.timely small{font-size:80%;}.timely sub,.timely sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}.timely sup{top:-0.5em;}.timely sub{bottom:-0.25em;}.timely img{border:0;}.timely svg:not(:root){overflow:hidden;}.timely figure{margin:0;}.timely fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}.timely legend{border:0;padding:0;}.timely button,.timely input,.timely select,.timely textarea{font-family:inherit;font-size:100%;margin:0;}.timely button,.timely input{line-height:normal;}.timely button,.timely select{text-transform:none;}.timely button,.timely html input[type="button"],.timely input[type="reset"],.timely input[type="submit"]{-webkit-appearance:button;cursor:pointer;}.timely button[disabled],.timely html input[disabled]{cursor:default;}.timely input[type="checkbox"],.timely input[type="radio"]{box-sizing:border-box;padding:0;}.timely input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.timely input[type="search"]::-webkit-search-cancel-button,.timely input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}.timely button::-moz-focus-inner,.timely input::-moz-focus-inner{border:0;padding:0;}.timely textarea{overflow:auto;vertical-align:top;}.timely table{border-collapse:collapse;border-spacing:0;}@media print{.timely *{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;}.timely a,.timely a:visited{text-decoration:underline;}.timely a[href]:after{content:" (" attr(href) ")";}.timely abbr[title]:after{content:" (" attr(title) ")";}.timely a[href^="javascript:"]:after,.timely a[href^="#"]:after{content:"";}.timely pre,.timely blockquote{border:1px solid #999;page-break-inside:avoid;}.timely thead{display:table-header-group;}.timely tr,.timely img{page-break-inside:avoid;}.timely img{max-width:100% !important;}@page{margin:2cm .5cm;}.timely p,.timely h2,.timely h3{orphans:3;widows:3;}.timely h2,.timely h3{page-break-after:avoid;}.timely select{background:#fff !important;}.timely .ai1ec-navbar{display:none;}.timely .ai1ec-table td,.timely .ai1ec-table th{background-color:#fff !important;}.timely .ai1ec-btn > .ai1ec-caret,.timely .ai1ec-dropup > .ai1ec-btn > .ai1ec-caret{border-top-color:#000 !important;}.timely .ai1ec-label{border:1px solid #000;}.timely .ai1ec-table{border-collapse:collapse !important;}.timely .ai1ec-table-bordered th,.timely .ai1ec-table-bordered td{border:1px solid #ddd !important;}}.timely *,.timely *:before,.timely *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.timely html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0);}.timely body{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;color:#333;background-color:#fff;}.timely input,.timely button,.timely select,.timely textarea{font-family:inherit;font-size:inherit;line-height:inherit;}.timely a{color:#3d6b99;text-decoration:none;}.timely a:hover,.timely a:focus{color:#335980;text-decoration:underline;}.timely a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely img{vertical-align:middle;}.timely .ai1ec-img-responsive{display:block;max-width:100%;height:auto;}.timely .ai1ec-img-rounded{border-radius:6px;}.timely .ai1ec-img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto;}.timely .ai1ec-img-circle{border-radius:50%;}.timely hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee;}.timely .ai1ec-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;}.ai1ec-container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;}.ai1ec-container:before,.ai1ec-container:after{content:" ";display:table;}.ai1ec-container:after{clear:both;}.ai1ec-container:before,.ai1ec-container:after{content:" ";display:table;}.ai1ec-container:after{clear:both;}@media (min-width: 768px){.ai1ec-container{width:750px;}}@media (min-width: 992px){.ai1ec-container{width:970px;}}@media (min-width: 1200px){.ai1ec-container{width:1170px;}}.ai1ec-row{margin-left:-15px;margin-right:-15px;}.ai1ec-row:before,.ai1ec-row:after{content:" ";display:table;}.ai1ec-row:after{clear:both;}.ai1ec-row:before,.ai1ec-row:after{content:" ";display:table;}.ai1ec-row:after{clear:both;}.ai1ec-col-xs-1, .ai1ec-col-sm-1, .ai1ec-col-md-1, .ai1ec-col-lg-1, .ai1ec-col-xs-2, .ai1ec-col-sm-2, .ai1ec-col-md-2, .ai1ec-col-lg-2, .ai1ec-col-xs-3, .ai1ec-col-sm-3, .ai1ec-col-md-3, .ai1ec-col-lg-3, .ai1ec-col-xs-4, .ai1ec-col-sm-4, .ai1ec-col-md-4, .ai1ec-col-lg-4, .ai1ec-col-xs-5, .ai1ec-col-sm-5, .ai1ec-col-md-5, .ai1ec-col-lg-5, .ai1ec-col-xs-6, .ai1ec-col-sm-6, .ai1ec-col-md-6, .ai1ec-col-lg-6, .ai1ec-col-xs-7, .ai1ec-col-sm-7, .ai1ec-col-md-7, .ai1ec-col-lg-7, .ai1ec-col-xs-8, .ai1ec-col-sm-8, .ai1ec-col-md-8, .ai1ec-col-lg-8, .ai1ec-col-xs-9, .ai1ec-col-sm-9, .ai1ec-col-md-9, .ai1ec-col-lg-9, .ai1ec-col-xs-10, .ai1ec-col-sm-10, .ai1ec-col-md-10, .ai1ec-col-lg-10, .ai1ec-col-xs-11, .ai1ec-col-sm-11, .ai1ec-col-md-11, .ai1ec-col-lg-11, .ai1ec-col-xs-12, .ai1ec-col-sm-12, .ai1ec-col-md-12, .ai1ec-col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px;}.ai1ec-col-xs-1, .ai1ec-col-xs-2, .ai1ec-col-xs-3, .ai1ec-col-xs-4, .ai1ec-col-xs-5, .ai1ec-col-xs-6, .ai1ec-col-xs-7, .ai1ec-col-xs-8, .ai1ec-col-xs-9, .ai1ec-col-xs-10, .ai1ec-col-xs-11, .ai1ec-col-xs-12{float:left;}.ai1ec-col-xs-12{width:100%;}.ai1ec-col-xs-11{width:91.666666666667%;}.ai1ec-col-xs-10{width:83.333333333333%;}.ai1ec-col-xs-9{width:75%;}.ai1ec-col-xs-8{width:66.666666666667%;}.ai1ec-col-xs-7{width:58.333333333333%;}.ai1ec-col-xs-6{width:50%;}.ai1ec-col-xs-5{width:41.666666666667%;}.ai1ec-col-xs-4{width:33.333333333333%;}.ai1ec-col-xs-3{width:25%;}.ai1ec-col-xs-2{width:16.666666666667%;}.ai1ec-col-xs-1{width:8.3333333333333%;}.ai1ec-col-xs-pull-12{right:100%;}.ai1ec-col-xs-pull-11{right:91.666666666667%;}.ai1ec-col-xs-pull-10{right:83.333333333333%;}.ai1ec-col-xs-pull-9{right:75%;}.ai1ec-col-xs-pull-8{right:66.666666666667%;}.ai1ec-col-xs-pull-7{right:58.333333333333%;}.ai1ec-col-xs-pull-6{right:50%;}.ai1ec-col-xs-pull-5{right:41.666666666667%;}.ai1ec-col-xs-pull-4{right:33.333333333333%;}.ai1ec-col-xs-pull-3{right:25%;}.ai1ec-col-xs-pull-2{right:16.666666666667%;}.ai1ec-col-xs-pull-1{right:8.3333333333333%;}.ai1ec-col-xs-pull-0{right:0%;}.ai1ec-col-xs-push-12{left:100%;}.ai1ec-col-xs-push-11{left:91.666666666667%;}.ai1ec-col-xs-push-10{left:83.333333333333%;}.ai1ec-col-xs-push-9{left:75%;}.ai1ec-col-xs-push-8{left:66.666666666667%;}.ai1ec-col-xs-push-7{left:58.333333333333%;}.ai1ec-col-xs-push-6{left:50%;}.ai1ec-col-xs-push-5{left:41.666666666667%;}.ai1ec-col-xs-push-4{left:33.333333333333%;}.ai1ec-col-xs-push-3{left:25%;}.ai1ec-col-xs-push-2{left:16.666666666667%;}.ai1ec-col-xs-push-1{left:8.3333333333333%;}.ai1ec-col-xs-push-0{left:0%;}.ai1ec-col-xs-offset-12{margin-left:100%;}.ai1ec-col-xs-offset-11{margin-left:91.666666666667%;}.ai1ec-col-xs-offset-10{margin-left:83.333333333333%;}.ai1ec-col-xs-offset-9{margin-left:75%;}.ai1ec-col-xs-offset-8{margin-left:66.666666666667%;}.ai1ec-col-xs-offset-7{margin-left:58.333333333333%;}.ai1ec-col-xs-offset-6{margin-left:50%;}.ai1ec-col-xs-offset-5{margin-left:41.666666666667%;}.ai1ec-col-xs-offset-4{margin-left:33.333333333333%;}.ai1ec-col-xs-offset-3{margin-left:25%;}.ai1ec-col-xs-offset-2{margin-left:16.666666666667%;}.ai1ec-col-xs-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-xs-offset-0{margin-left:0%;}@media (min-width: 768px){.ai1ec-col-sm-1, .ai1ec-col-sm-2, .ai1ec-col-sm-3, .ai1ec-col-sm-4, .ai1ec-col-sm-5, .ai1ec-col-sm-6, .ai1ec-col-sm-7, .ai1ec-col-sm-8, .ai1ec-col-sm-9, .ai1ec-col-sm-10, .ai1ec-col-sm-11, .ai1ec-col-sm-12{float:left;}.ai1ec-col-sm-12{width:100%;}.ai1ec-col-sm-11{width:91.666666666667%;}.ai1ec-col-sm-10{width:83.333333333333%;}.ai1ec-col-sm-9{width:75%;}.ai1ec-col-sm-8{width:66.666666666667%;}.ai1ec-col-sm-7{width:58.333333333333%;}.ai1ec-col-sm-6{width:50%;}.ai1ec-col-sm-5{width:41.666666666667%;}.ai1ec-col-sm-4{width:33.333333333333%;}.ai1ec-col-sm-3{width:25%;}.ai1ec-col-sm-2{width:16.666666666667%;}.ai1ec-col-sm-1{width:8.3333333333333%;}.ai1ec-col-sm-pull-12{right:100%;}.ai1ec-col-sm-pull-11{right:91.666666666667%;}.ai1ec-col-sm-pull-10{right:83.333333333333%;}.ai1ec-col-sm-pull-9{right:75%;}.ai1ec-col-sm-pull-8{right:66.666666666667%;}.ai1ec-col-sm-pull-7{right:58.333333333333%;}.ai1ec-col-sm-pull-6{right:50%;}.ai1ec-col-sm-pull-5{right:41.666666666667%;}.ai1ec-col-sm-pull-4{right:33.333333333333%;}.ai1ec-col-sm-pull-3{right:25%;}.ai1ec-col-sm-pull-2{right:16.666666666667%;}.ai1ec-col-sm-pull-1{right:8.3333333333333%;}.ai1ec-col-sm-pull-0{right:0%;}.ai1ec-col-sm-push-12{left:100%;}.ai1ec-col-sm-push-11{left:91.666666666667%;}.ai1ec-col-sm-push-10{left:83.333333333333%;}.ai1ec-col-sm-push-9{left:75%;}.ai1ec-col-sm-push-8{left:66.666666666667%;}.ai1ec-col-sm-push-7{left:58.333333333333%;}.ai1ec-col-sm-push-6{left:50%;}.ai1ec-col-sm-push-5{left:41.666666666667%;}.ai1ec-col-sm-push-4{left:33.333333333333%;}.ai1ec-col-sm-push-3{left:25%;}.ai1ec-col-sm-push-2{left:16.666666666667%;}.ai1ec-col-sm-push-1{left:8.3333333333333%;}.ai1ec-col-sm-push-0{left:0%;}.ai1ec-col-sm-offset-12{margin-left:100%;}.ai1ec-col-sm-offset-11{margin-left:91.666666666667%;}.ai1ec-col-sm-offset-10{margin-left:83.333333333333%;}.ai1ec-col-sm-offset-9{margin-left:75%;}.ai1ec-col-sm-offset-8{margin-left:66.666666666667%;}.ai1ec-col-sm-offset-7{margin-left:58.333333333333%;}.ai1ec-col-sm-offset-6{margin-left:50%;}.ai1ec-col-sm-offset-5{margin-left:41.666666666667%;}.ai1ec-col-sm-offset-4{margin-left:33.333333333333%;}.ai1ec-col-sm-offset-3{margin-left:25%;}.ai1ec-col-sm-offset-2{margin-left:16.666666666667%;}.ai1ec-col-sm-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-sm-offset-0{margin-left:0%;}}@media (min-width: 992px){.ai1ec-col-md-1, .ai1ec-col-md-2, .ai1ec-col-md-3, .ai1ec-col-md-4, .ai1ec-col-md-5, .ai1ec-col-md-6, .ai1ec-col-md-7, .ai1ec-col-md-8, .ai1ec-col-md-9, .ai1ec-col-md-10, .ai1ec-col-md-11, .ai1ec-col-md-12{float:left;}.ai1ec-col-md-12{width:100%;}.ai1ec-col-md-11{width:91.666666666667%;}.ai1ec-col-md-10{width:83.333333333333%;}.ai1ec-col-md-9{width:75%;}.ai1ec-col-md-8{width:66.666666666667%;}.ai1ec-col-md-7{width:58.333333333333%;}.ai1ec-col-md-6{width:50%;}.ai1ec-col-md-5{width:41.666666666667%;}.ai1ec-col-md-4{width:33.333333333333%;}.ai1ec-col-md-3{width:25%;}.ai1ec-col-md-2{width:16.666666666667%;}.ai1ec-col-md-1{width:8.3333333333333%;}.ai1ec-col-md-pull-12{right:100%;}.ai1ec-col-md-pull-11{right:91.666666666667%;}.ai1ec-col-md-pull-10{right:83.333333333333%;}.ai1ec-col-md-pull-9{right:75%;}.ai1ec-col-md-pull-8{right:66.666666666667%;}.ai1ec-col-md-pull-7{right:58.333333333333%;}.ai1ec-col-md-pull-6{right:50%;}.ai1ec-col-md-pull-5{right:41.666666666667%;}.ai1ec-col-md-pull-4{right:33.333333333333%;}.ai1ec-col-md-pull-3{right:25%;}.ai1ec-col-md-pull-2{right:16.666666666667%;}.ai1ec-col-md-pull-1{right:8.3333333333333%;}.ai1ec-col-md-pull-0{right:0%;}.ai1ec-col-md-push-12{left:100%;}.ai1ec-col-md-push-11{left:91.666666666667%;}.ai1ec-col-md-push-10{left:83.333333333333%;}.ai1ec-col-md-push-9{left:75%;}.ai1ec-col-md-push-8{left:66.666666666667%;}.ai1ec-col-md-push-7{left:58.333333333333%;}.ai1ec-col-md-push-6{left:50%;}.ai1ec-col-md-push-5{left:41.666666666667%;}.ai1ec-col-md-push-4{left:33.333333333333%;}.ai1ec-col-md-push-3{left:25%;}.ai1ec-col-md-push-2{left:16.666666666667%;}.ai1ec-col-md-push-1{left:8.3333333333333%;}.ai1ec-col-md-push-0{left:0%;}.ai1ec-col-md-offset-12{margin-left:100%;}.ai1ec-col-md-offset-11{margin-left:91.666666666667%;}.ai1ec-col-md-offset-10{margin-left:83.333333333333%;}.ai1ec-col-md-offset-9{margin-left:75%;}.ai1ec-col-md-offset-8{margin-left:66.666666666667%;}.ai1ec-col-md-offset-7{margin-left:58.333333333333%;}.ai1ec-col-md-offset-6{margin-left:50%;}.ai1ec-col-md-offset-5{margin-left:41.666666666667%;}.ai1ec-col-md-offset-4{margin-left:33.333333333333%;}.ai1ec-col-md-offset-3{margin-left:25%;}.ai1ec-col-md-offset-2{margin-left:16.666666666667%;}.ai1ec-col-md-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-md-offset-0{margin-left:0%;}}@media (min-width: 1200px){.ai1ec-col-lg-1, .ai1ec-col-lg-2, .ai1ec-col-lg-3, .ai1ec-col-lg-4, .ai1ec-col-lg-5, .ai1ec-col-lg-6, .ai1ec-col-lg-7, .ai1ec-col-lg-8, .ai1ec-col-lg-9, .ai1ec-col-lg-10, .ai1ec-col-lg-11, .ai1ec-col-lg-12{float:left;}.ai1ec-col-lg-12{width:100%;}.ai1ec-col-lg-11{width:91.666666666667%;}.ai1ec-col-lg-10{width:83.333333333333%;}.ai1ec-col-lg-9{width:75%;}.ai1ec-col-lg-8{width:66.666666666667%;}.ai1ec-col-lg-7{width:58.333333333333%;}.ai1ec-col-lg-6{width:50%;}.ai1ec-col-lg-5{width:41.666666666667%;}.ai1ec-col-lg-4{width:33.333333333333%;}.ai1ec-col-lg-3{width:25%;}.ai1ec-col-lg-2{width:16.666666666667%;}.ai1ec-col-lg-1{width:8.3333333333333%;}.ai1ec-col-lg-pull-12{right:100%;}.ai1ec-col-lg-pull-11{right:91.666666666667%;}.ai1ec-col-lg-pull-10{right:83.333333333333%;}.ai1ec-col-lg-pull-9{right:75%;}.ai1ec-col-lg-pull-8{right:66.666666666667%;}.ai1ec-col-lg-pull-7{right:58.333333333333%;}.ai1ec-col-lg-pull-6{right:50%;}.ai1ec-col-lg-pull-5{right:41.666666666667%;}.ai1ec-col-lg-pull-4{right:33.333333333333%;}.ai1ec-col-lg-pull-3{right:25%;}.ai1ec-col-lg-pull-2{right:16.666666666667%;}.ai1ec-col-lg-pull-1{right:8.3333333333333%;}.ai1ec-col-lg-pull-0{right:0%;}.ai1ec-col-lg-push-12{left:100%;}.ai1ec-col-lg-push-11{left:91.666666666667%;}.ai1ec-col-lg-push-10{left:83.333333333333%;}.ai1ec-col-lg-push-9{left:75%;}.ai1ec-col-lg-push-8{left:66.666666666667%;}.ai1ec-col-lg-push-7{left:58.333333333333%;}.ai1ec-col-lg-push-6{left:50%;}.ai1ec-col-lg-push-5{left:41.666666666667%;}.ai1ec-col-lg-push-4{left:33.333333333333%;}.ai1ec-col-lg-push-3{left:25%;}.ai1ec-col-lg-push-2{left:16.666666666667%;}.ai1ec-col-lg-push-1{left:8.3333333333333%;}.ai1ec-col-lg-push-0{left:0%;}.ai1ec-col-lg-offset-12{margin-left:100%;}.ai1ec-col-lg-offset-11{margin-left:91.666666666667%;}.ai1ec-col-lg-offset-10{margin-left:83.333333333333%;}.ai1ec-col-lg-offset-9{margin-left:75%;}.ai1ec-col-lg-offset-8{margin-left:66.666666666667%;}.ai1ec-col-lg-offset-7{margin-left:58.333333333333%;}.ai1ec-col-lg-offset-6{margin-left:50%;}.ai1ec-col-lg-offset-5{margin-left:41.666666666667%;}.ai1ec-col-lg-offset-4{margin-left:33.333333333333%;}.ai1ec-col-lg-offset-3{margin-left:25%;}.ai1ec-col-lg-offset-2{margin-left:16.666666666667%;}.ai1ec-col-lg-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-lg-offset-0{margin-left:0%;}}.timely fieldset{padding:0;margin:0;border:0;}.timely legend{display:block;width:100%;padding:0;margin-bottom:18px;font-size:19.5px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5;}.timely label{display:inline-block;margin-bottom:5px;font-weight:bold;}.timely input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.timely input[type="radio"],.timely input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal;}.timely input[type="file"]{display:block;}.timely select[multiple],.timely select[size]{height:auto;}.timely select optgroup{font-size:inherit;font-style:inherit;font-family:inherit;}.timely input[type="file"]:focus,.timely input[type="radio"]:focus,.timely input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely input[type="number"]::-webkit-outer-spin-button,.timely input[type="number"]::-webkit-inner-spin-button{height:auto;}.timely output{display:block;padding-top:7px;font-size:13px;line-height:1.428571429;color:#555;vertical-align:middle;}.timely .ai1ec-form-control{display:block;width:100%;height:32px;padding:6px 12px;font-size:13px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;}.timely .ai1ec-form-control:focus{border-color:rgba(82,168,236,0.8);outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6);}.timely .ai1ec-form-control:-moz-placeholder{color:#999;}.timely .ai1ec-form-control::-moz-placeholder{color:#999;opacity:1;}.timely .ai1ec-form-control:-ms-input-placeholder{color:#999;}.timely .ai1ec-form-control::-webkit-input-placeholder{color:#999;}.timely .ai1ec-form-control[disabled],.timely .ai1ec-form-control[readonly],fieldset[disabled] .timely .ai1ec-form-control{cursor:not-allowed;background-color:#eee;}textarea.timely .ai1ec-form-control{height:auto;}.timely .ai1ec-form-group{margin-bottom:15px;}.timely .ai1ec-radio,.timely .ai1ec-checkbox{display:block;min-height:18px;margin-top:10px;margin-bottom:10px;padding-left:20px;vertical-align:middle;}.timely .ai1ec-radio label,.timely .ai1ec-checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer;}.timely .ai1ec-radio input[type="radio"],.timely .ai1ec-radio-inline input[type="radio"],.timely .ai1ec-checkbox input[type="checkbox"],.timely .ai1ec-checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px;}.timely .ai1ec-radio + .ai1ec-radio,.timely .ai1ec-checkbox + .ai1ec-checkbox{margin-top:-5px;}.timely .ai1ec-radio-inline,.timely .ai1ec-checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer;}.timely .ai1ec-radio-inline + .ai1ec-radio-inline,.timely .ai1ec-checkbox-inline + .ai1ec-checkbox-inline{margin-top:0;margin-left:10px;}.timely input[type="radio"][disabled],fieldset[disabled] .timely input[type="radio"],.timely input[type="checkbox"][disabled],fieldset[disabled] .timely input[type="checkbox"],.timely .ai1ec-radio[disabled],fieldset[disabled] .timely .ai1ec-radio,.timely .ai1ec-radio-inline[disabled],fieldset[disabled] .timely .ai1ec-radio-inline,.timely .ai1ec-checkbox[disabled],fieldset[disabled] .timely .ai1ec-checkbox,.timely .ai1ec-checkbox-inline[disabled],fieldset[disabled] .timely .ai1ec-checkbox-inline{cursor:not-allowed;}.timely .ai1ec-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}select.timely .ai1ec-input-sm{height:30px;line-height:30px;}textarea.timely .ai1ec-input-sm{height:auto;}.timely .ai1ec-input-lg{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}select.timely .ai1ec-input-lg{height:45px;line-height:45px;}textarea.timely .ai1ec-input-lg{height:auto;}.timely .ai1ec-has-warning .ai1ec-help-block,.timely .ai1ec-has-warning .ai1ec-control-label,.timely .ai1ec-has-warning .ai1ec-radio,.timely .ai1ec-has-warning .ai1ec-checkbox,.timely .ai1ec-has-warning .ai1ec-radio-inline,.timely .ai1ec-has-warning .ai1ec-checkbox-inline{color:#8a6d3b;}.timely .ai1ec-has-warning .ai1ec-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-warning .ai1ec-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;}.timely .ai1ec-has-warning .ai1ec-input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3;}.timely .ai1ec-has-error .ai1ec-help-block,.timely .ai1ec-has-error .ai1ec-control-label,.timely .ai1ec-has-error .ai1ec-radio,.timely .ai1ec-has-error .ai1ec-checkbox,.timely .ai1ec-has-error .ai1ec-radio-inline,.timely .ai1ec-has-error .ai1ec-checkbox-inline{color:#a94442;}.timely .ai1ec-has-error .ai1ec-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-error .ai1ec-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;}.timely .ai1ec-has-error .ai1ec-input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede;}.timely .ai1ec-has-success .ai1ec-help-block,.timely .ai1ec-has-success .ai1ec-control-label,.timely .ai1ec-has-success .ai1ec-radio,.timely .ai1ec-has-success .ai1ec-checkbox,.timely .ai1ec-has-success .ai1ec-radio-inline,.timely .ai1ec-has-success .ai1ec-checkbox-inline{color:#3c763d;}.timely .ai1ec-has-success .ai1ec-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-success .ai1ec-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;}.timely .ai1ec-has-success .ai1ec-input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8;}.timely .ai1ec-form-control-static{margin-bottom:0;}.timely .ai1ec-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373;}@media (min-width: 768px){.timely .ai1ec-form-inline .ai1ec-form-group{display:inline-block;margin-bottom:0;vertical-align:middle;}.timely .ai1ec-form-inline .ai1ec-form-control{display:inline-block;}.timely .ai1ec-form-inline select.ai1ec-form-control{width:auto;}.timely .ai1ec-form-inline .ai1ec-radio,.timely .ai1ec-form-inline .ai1ec-checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;}.timely .ai1ec-form-inline .ai1ec-radio input[type="radio"],.timely .ai1ec-form-inline .ai1ec-checkbox input[type="checkbox"]{float:none;margin-left:0;}}.timely .ai1ec-form-horizontal .ai1ec-control-label,.timely .ai1ec-form-horizontal .ai1ec-radio,.timely .ai1ec-form-horizontal .ai1ec-checkbox,.timely .ai1ec-form-horizontal .ai1ec-radio-inline,.timely .ai1ec-form-horizontal .ai1ec-checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px;}.timely .ai1ec-form-horizontal .ai1ec-radio,.timely .ai1ec-form-horizontal .ai1ec-checkbox{min-height:25px;}.timely .ai1ec-form-horizontal .ai1ec-form-group{margin-left:-15px;margin-right:-15px;}.timely .ai1ec-form-horizontal .ai1ec-form-group:before,.timely .ai1ec-form-horizontal .ai1ec-form-group:after{content:" ";display:table;}.timely .ai1ec-form-horizontal .ai1ec-form-group:after{clear:both;}.timely .ai1ec-form-horizontal .ai1ec-form-group:before,.timely .ai1ec-form-horizontal .ai1ec-form-group:after{content:" ";display:table;}.timely .ai1ec-form-horizontal .ai1ec-form-group:after{clear:both;}.timely .ai1ec-form-horizontal .ai1ec-form-control-static{padding-top:7px;}@media (min-width: 768px){.timely .ai1ec-form-horizontal .ai1ec-control-label{text-align:right;}}.timely .ai1ec-btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:13px;line-height:1.428571429;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.timely .ai1ec-btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely .ai1ec-btn:hover,.timely .ai1ec-btn:focus{color:#333;text-decoration:none;}.timely .ai1ec-btn:active,.timely .ai1ec-btn.ai1ec-active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);}.timely .ai1ec-btn.ai1ec-disabled,.timely .ai1ec-btn[disabled],fieldset[disabled] .timely .ai1ec-btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-default{color:#333;background-color:#fff;border-color:#ccc;}.timely .ai1ec-btn-default:hover,.timely .ai1ec-btn-default:focus,.timely .ai1ec-btn-default:active,.timely .ai1ec-btn-default.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-default{color:#333;background-color:#ebebeb;border-color:#adadad;}.timely .ai1ec-btn-default:active,.timely .ai1ec-btn-default.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-default{background-image:none;}.timely .ai1ec-btn-default.ai1ec-disabled,.timely .ai1ec-btn-default.ai1ec-disabled:hover,.timely .ai1ec-btn-default.ai1ec-disabled:focus,.timely .ai1ec-btn-default.ai1ec-disabled:active,.timely .ai1ec-btn-default.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-default[disabled],.timely .ai1ec-btn-default[disabled]:hover,.timely .ai1ec-btn-default[disabled]:focus,.timely .ai1ec-btn-default[disabled]:active,.timely .ai1ec-btn-default[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-default,fieldset[disabled] .timely .ai1ec-btn-default:hover,fieldset[disabled] .timely .ai1ec-btn-default:focus,fieldset[disabled] .timely .ai1ec-btn-default:active,fieldset[disabled] .timely .ai1ec-btn-default.ai1ec-active{background-color:#fff;border-color:#ccc;}.timely .ai1ec-btn-default .ai1ec-badge{color:#fff;background-color:#fff;}.timely .ai1ec-btn-primary{color:#fff;background-color:#6dbb4f;border-color:#61ad43;}.timely .ai1ec-btn-primary:hover,.timely .ai1ec-btn-primary:focus,.timely .ai1ec-btn-primary:active,.timely .ai1ec-btn-primary.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-primary{color:#fff;background-color:#5aa23f;border-color:#488132;}.timely .ai1ec-btn-primary:active,.timely .ai1ec-btn-primary.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-primary{background-image:none;}.timely .ai1ec-btn-primary.ai1ec-disabled,.timely .ai1ec-btn-primary.ai1ec-disabled:hover,.timely .ai1ec-btn-primary.ai1ec-disabled:focus,.timely .ai1ec-btn-primary.ai1ec-disabled:active,.timely .ai1ec-btn-primary.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-primary[disabled],.timely .ai1ec-btn-primary[disabled]:hover,.timely .ai1ec-btn-primary[disabled]:focus,.timely .ai1ec-btn-primary[disabled]:active,.timely .ai1ec-btn-primary[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-primary,fieldset[disabled] .timely .ai1ec-btn-primary:hover,fieldset[disabled] .timely .ai1ec-btn-primary:focus,fieldset[disabled] .timely .ai1ec-btn-primary:active,fieldset[disabled] .timely .ai1ec-btn-primary.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.timely .ai1ec-btn-primary .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.timely .ai1ec-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236;}.timely .ai1ec-btn-warning:hover,.timely .ai1ec-btn-warning:focus,.timely .ai1ec-btn-warning:active,.timely .ai1ec-btn-warning.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512;}.timely .ai1ec-btn-warning:active,.timely .ai1ec-btn-warning.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-warning{background-image:none;}.timely .ai1ec-btn-warning.ai1ec-disabled,.timely .ai1ec-btn-warning.ai1ec-disabled:hover,.timely .ai1ec-btn-warning.ai1ec-disabled:focus,.timely .ai1ec-btn-warning.ai1ec-disabled:active,.timely .ai1ec-btn-warning.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-warning[disabled],.timely .ai1ec-btn-warning[disabled]:hover,.timely .ai1ec-btn-warning[disabled]:focus,.timely .ai1ec-btn-warning[disabled]:active,.timely .ai1ec-btn-warning[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-warning,fieldset[disabled] .timely .ai1ec-btn-warning:hover,fieldset[disabled] .timely .ai1ec-btn-warning:focus,fieldset[disabled] .timely .ai1ec-btn-warning:active,fieldset[disabled] .timely .ai1ec-btn-warning.ai1ec-active{background-color:#f0ad4e;border-color:#eea236;}.timely .ai1ec-btn-warning .ai1ec-badge{color:#f0ad4e;background-color:#fff;}.timely .ai1ec-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a;}.timely .ai1ec-btn-danger:hover,.timely .ai1ec-btn-danger:focus,.timely .ai1ec-btn-danger:active,.timely .ai1ec-btn-danger.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925;}.timely .ai1ec-btn-danger:active,.timely .ai1ec-btn-danger.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-danger{background-image:none;}.timely .ai1ec-btn-danger.ai1ec-disabled,.timely .ai1ec-btn-danger.ai1ec-disabled:hover,.timely .ai1ec-btn-danger.ai1ec-disabled:focus,.timely .ai1ec-btn-danger.ai1ec-disabled:active,.timely .ai1ec-btn-danger.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-danger[disabled],.timely .ai1ec-btn-danger[disabled]:hover,.timely .ai1ec-btn-danger[disabled]:focus,.timely .ai1ec-btn-danger[disabled]:active,.timely .ai1ec-btn-danger[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-danger,fieldset[disabled] .timely .ai1ec-btn-danger:hover,fieldset[disabled] .timely .ai1ec-btn-danger:focus,fieldset[disabled] .timely .ai1ec-btn-danger:active,fieldset[disabled] .timely .ai1ec-btn-danger.ai1ec-active{background-color:#d9534f;border-color:#d43f3a;}.timely .ai1ec-btn-danger .ai1ec-badge{color:#d9534f;background-color:#fff;}.timely .ai1ec-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.timely .ai1ec-btn-success:hover,.timely .ai1ec-btn-success:focus,.timely .ai1ec-btn-success:active,.timely .ai1ec-btn-success.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-success{color:#fff;background-color:#47a447;border-color:#398439;}.timely .ai1ec-btn-success:active,.timely .ai1ec-btn-success.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-success{background-image:none;}.timely .ai1ec-btn-success.ai1ec-disabled,.timely .ai1ec-btn-success.ai1ec-disabled:hover,.timely .ai1ec-btn-success.ai1ec-disabled:focus,.timely .ai1ec-btn-success.ai1ec-disabled:active,.timely .ai1ec-btn-success.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-success[disabled],.timely .ai1ec-btn-success[disabled]:hover,.timely .ai1ec-btn-success[disabled]:focus,.timely .ai1ec-btn-success[disabled]:active,.timely .ai1ec-btn-success[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-success,fieldset[disabled] .timely .ai1ec-btn-success:hover,fieldset[disabled] .timely .ai1ec-btn-success:focus,fieldset[disabled] .timely .ai1ec-btn-success:active,fieldset[disabled] .timely .ai1ec-btn-success.ai1ec-active{background-color:#5cb85c;border-color:#4cae4c;}.timely .ai1ec-btn-success .ai1ec-badge{color:#5cb85c;background-color:#fff;}.timely .ai1ec-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da;}.timely .ai1ec-btn-info:hover,.timely .ai1ec-btn-info:focus,.timely .ai1ec-btn-info:active,.timely .ai1ec-btn-info.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc;}.timely .ai1ec-btn-info:active,.timely .ai1ec-btn-info.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-info{background-image:none;}.timely .ai1ec-btn-info.ai1ec-disabled,.timely .ai1ec-btn-info.ai1ec-disabled:hover,.timely .ai1ec-btn-info.ai1ec-disabled:focus,.timely .ai1ec-btn-info.ai1ec-disabled:active,.timely .ai1ec-btn-info.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-info[disabled],.timely .ai1ec-btn-info[disabled]:hover,.timely .ai1ec-btn-info[disabled]:focus,.timely .ai1ec-btn-info[disabled]:active,.timely .ai1ec-btn-info[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-info,fieldset[disabled] .timely .ai1ec-btn-info:hover,fieldset[disabled] .timely .ai1ec-btn-info:focus,fieldset[disabled] .timely .ai1ec-btn-info:active,fieldset[disabled] .timely .ai1ec-btn-info.ai1ec-active{background-color:#5bc0de;border-color:#46b8da;}.timely .ai1ec-btn-info .ai1ec-badge{color:#5bc0de;background-color:#fff;}.timely .ai1ec-btn-inactive{cursor:default;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-link{color:#3d6b99;font-weight:normal;cursor:pointer;border-radius:0;}.timely .ai1ec-btn-link,.timely .ai1ec-btn-link:active,.timely .ai1ec-btn-link[disabled],fieldset[disabled] .timely .ai1ec-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-link,.timely .ai1ec-btn-link:hover,.timely .ai1ec-btn-link:focus,.timely .ai1ec-btn-link:active{border-color:transparent;}.timely .ai1ec-btn-link:hover,.timely .ai1ec-btn-link:focus{color:#335980;text-decoration:underline;background-color:transparent;}.timely .ai1ec-btn-link[disabled]:hover,.timely .ai1ec-btn-link[disabled]:focus,fieldset[disabled] .timely .ai1ec-btn-link:hover,fieldset[disabled] .timely .ai1ec-btn-link:focus{color:#999;text-decoration:none;}.timely .ai1ec-btn-lg{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.timely .ai1ec-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.timely .ai1ec-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}.timely .ai1ec-btn-block{display:block;width:100%;padding-left:0;padding-right:0;}.timely .ai1ec-btn-block + .ai1ec-btn-block{margin-top:5px;}.timely input[type="submit"].ai1ec-btn-block,.timely input[type="reset"].ai1ec-btn-block,.timely input[type="button"].ai1ec-btn-block{width:100%;}.timely h1,.timely h2,.timely h3,.timely h4,.timely h5,.timely h6,.timely .ai1ec-h1,.timely .ai1ec-h2,.timely .ai1ec-h3,.timely .ai1ec-h4,.timely .ai1ec-h5,.timely .ai1ec-h6{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:;}.timely h1 small,.timely h1 .ai1ec-small,.timely h2 small,.timely h2 .ai1ec-small,.timely h3 small,.timely h3 .ai1ec-small,.timely h4 small,.timely h4 .ai1ec-small,.timely h5 small,.timely h5 .ai1ec-small,.timely h6 small,.timely h6 .ai1ec-small,.timely .ai1ec-h1 small,.timely .ai1ec-h1 .ai1ec-small,.timely .ai1ec-h2 small,.timely .ai1ec-h2 .ai1ec-small,.timely .ai1ec-h3 small,.timely .ai1ec-h3 .ai1ec-small,.timely .ai1ec-h4 small,.timely .ai1ec-h4 .ai1ec-small,.timely .ai1ec-h5 small,.timely .ai1ec-h5 .ai1ec-small,.timely .ai1ec-h6 small,.timely .ai1ec-h6 .ai1ec-small{font-weight:normal;line-height:1;color:#999;}.timely h1,.timely h2,.timely h3{margin-top:18px;margin-bottom:9px;}.timely h1 small,.timely h1 .ai1ec-small,.timely h2 small,.timely h2 .ai1ec-small,.timely h3 small,.timely h3 .ai1ec-small{font-size:65%;}.timely h4,.timely h5,.timely h6{margin-top:9px;margin-bottom:9px;}.timely h4 small,.timely h4 .ai1ec-small,.timely h5 small,.timely h5 .ai1ec-small,.timely h6 small,.timely h6 .ai1ec-small{font-size:75%;}.timely h1,.timely .ai1ec-h1{font-size:33px;}.timely h2,.timely .ai1ec-h2{font-size:27px;}.timely h3,.timely .ai1ec-h3{font-size:23px;}.timely h4,.timely .ai1ec-h4{font-size:17px;}.timely h5,.timely .ai1ec-h5{font-size:13px;}.timely h6,.timely .ai1ec-h6{font-size:12px;}.timely p{margin:0 0 9px;}.timely .ai1ec-lead{margin-bottom:18px;font-size:14px;font-weight:200;line-height:1.4;}@media (min-width: 768px){.timely .ai1ec-lead{font-size:19.5px;}}.timely small,.timely .ai1ec-small{font-size:85%;}.timely cite{font-style:normal;}.timely .ai1ec-text-muted{color:#858585;}.timely .ai1ec-text-primary{color:#6dbb4f;}.timely .ai1ec-text-primary:hover{color:#569b3c;}.timely .ai1ec-text-warning{color:#8a6d3b;}.timely .ai1ec-text-warning:hover{color:#66512c;}.timely .ai1ec-text-danger{color:#a94442;}.timely .ai1ec-text-danger:hover{color:#843534;}.timely .ai1ec-text-success{color:#3c763d;}.timely .ai1ec-text-success:hover{color:#2b542c;}.timely .ai1ec-text-info{color:#418cc7;}.timely .ai1ec-text-info:hover{color:#3071a5;}.timely .ai1ec-text-left{text-align:left;}.timely .ai1ec-text-right{text-align:right;}.timely .ai1ec-text-center{text-align:center;}.timely .ai1ec-page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee;}.timely ul,.timely ol{margin-top:0;margin-bottom:9px;}.timely ul ul,.timely ul ol,.timely ol ul,.timely ol ol{margin-bottom:0;}.timely .ai1ec-list-unstyled{padding-left:0;list-style:none;}.timely .ai1ec-list-inline{padding-left:0;list-style:none;}.timely .ai1ec-list-inline > li{display:inline-block;padding-left:5px;padding-right:5px;}.timely .ai1ec-list-inline > li:first-child{padding-left:0;}.timely dl{margin-top:0;margin-bottom:18px;}.timely dt,.timely dd{line-height:1.428571429;}.timely dt{font-weight:bold;}.timely dd{margin-left:0;}@media (min-width: 768px){.timely .ai1ec-dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.timely .ai1ec-dl-horizontal dd{margin-left:180px;}.timely .ai1ec-dl-horizontal dd:before,.timely .ai1ec-dl-horizontal dd:after{content:" ";display:table;}.timely .ai1ec-dl-horizontal dd:after{clear:both;}.timely .ai1ec-dl-horizontal dd:before,.timely .ai1ec-dl-horizontal dd:after{content:" ";display:table;}.timely .ai1ec-dl-horizontal dd:after{clear:both;}}.timely abbr[title],.timely abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999;}.timely .ai1ec-initialism{font-size:90%;text-transform:uppercase;}.timely blockquote{padding:9px 18px;margin:0 0 18px;border-left:5px solid #eee;}.timely blockquote p{font-size:16.25px;font-weight:300;line-height:1.25;}.timely blockquote p:last-child{margin-bottom:0;}.timely blockquote small,.timely blockquote .ai1ec-small{display:block;line-height:1.428571429;color:#999;}.timely blockquote small:before,.timely blockquote .ai1ec-small:before{content:'\2014 \00A0';}.timely blockquote.ai1ec-pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;}.timely blockquote.ai1ec-pull-right p,.timely blockquote.ai1ec-pull-right small,.timely blockquote.ai1ec-pull-right .ai1ec-small{text-align:right;}.timely blockquote.ai1ec-pull-right small:before,.timely blockquote.ai1ec-pull-right .ai1ec-small:before{content:'';}.timely blockquote.ai1ec-pull-right small:after,.timely blockquote.ai1ec-pull-right .ai1ec-small:after{content:'\00A0 \2014';}.timely blockquote:before,.timely blockquote:after{content:"";}.timely address{margin-bottom:18px;font-style:normal;line-height:1.428571429;}.ai1ec-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear;}.ai1ec-fade.ai1ec-in{opacity:1;}.ai1ec-collapse{display:none;}.ai1ec-collapse.ai1ec-in{display:block;}.ai1ec-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease;}.ai1ec-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent;}.ai1ec-dropdown{position:relative;}.ai1ec-dropdown-toggle:focus{outline:0;}.ai1ec-dropdown-menu{position:absolute;top:100%;left:0;z-index:10000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:13px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box;}.ai1ec-dropdown-menu.ai1ec-pull-right{right:0;left:auto;}.ai1ec-dropdown-menu .ai1ec-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;}.ai1ec-dropdown-menu > li > a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap;}.ai1ec-dropdown-menu > li > a:hover,.ai1ec-dropdown-menu > li > a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5;}.ai1ec-dropdown-menu > .ai1ec-active > a,.ai1ec-dropdown-menu > .ai1ec-active > a:hover,.ai1ec-dropdown-menu > .ai1ec-active > a:focus{color:#fff;text-decoration:none;outline:0;background-color:#6489ad;}.ai1ec-dropdown-menu > .ai1ec-disabled > a,.ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{color:#999;}.ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed;}.ai1ec-open > .ai1ec-dropdown-menu{display:block;}.ai1ec-open > a{outline:0;}.ai1ec-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999;}.ai1ec-dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:9990;}.ai1ec-pull-right > .ai1ec-dropdown-menu{right:0;left:auto;}.ai1ec-dropup .ai1ec-caret,.ai1ec-navbar-fixed-bottom .ai1ec-dropdown .ai1ec-caret{border-top:0;border-bottom:4px solid;content:"";}.ai1ec-dropup .ai1ec-dropdown-menu,.ai1ec-navbar-fixed-bottom .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}.ai1ec-btn-group,.ai1ec-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle;}.ai1ec-btn-group > .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn{position:relative;float:left;}.ai1ec-btn-group > .ai1ec-btn:hover,.ai1ec-btn-group > .ai1ec-btn:focus,.ai1ec-btn-group > .ai1ec-btn:active,.ai1ec-btn-group > .ai1ec-btn.ai1ec-active,.ai1ec-btn-group-vertical > .ai1ec-btn:hover,.ai1ec-btn-group-vertical > .ai1ec-btn:focus,.ai1ec-btn-group-vertical > .ai1ec-btn:active,.ai1ec-btn-group-vertical > .ai1ec-btn.ai1ec-active{z-index:2;}.ai1ec-btn-group > .ai1ec-btn:focus,.ai1ec-btn-group-vertical > .ai1ec-btn:focus{outline:none;}.ai1ec-btn-group .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-group .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-group .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-group .ai1ec-btn-group + .ai1ec-btn-group{margin-left:-1px;}.ai1ec-btn-toolbar:before,.ai1ec-btn-toolbar:after{content:" ";display:table;}.ai1ec-btn-toolbar:after{clear:both;}.ai1ec-btn-toolbar:before,.ai1ec-btn-toolbar:after{content:" ";display:table;}.ai1ec-btn-toolbar:after{clear:both;}.ai1ec-btn-toolbar .ai1ec-btn-group{float:left;}.ai1ec-btn-toolbar > .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-toolbar > .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-toolbar > .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-toolbar > .ai1ec-btn-group + .ai1ec-btn-group{margin-left:5px;}.ai1ec-btn-group > .ai1ec-btn:not(:first-child):not(:last-child):not(.ai1ec-dropdown-toggle){border-radius:0;}.ai1ec-btn-group > .ai1ec-btn:first-child{margin-left:0;}.ai1ec-btn-group > .ai1ec-btn:first-child:not(:last-child):not(.ai1ec-dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0;}.ai1ec-btn-group > .ai1ec-btn:last-child:not(:first-child),.ai1ec-btn-group > .ai1ec-dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group{float:left;}.ai1ec-btn-group > .ai1ec-btn-group:not(:first-child):not(:last-child) > .ai1ec-btn{border-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group:first-child > .ai1ec-btn:last-child,.ai1ec-btn-group > .ai1ec-btn-group:first-child > .ai1ec-dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group:last-child > .ai1ec-btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0;}.ai1ec-btn-group .ai1ec-dropdown-toggle:active,.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle{outline:0;}.ai1ec-btn-group-xs > .ai1ec-btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-group-sm > .ai1ec-btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-group-lg > .ai1ec-btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.ai1ec-btn-group > .ai1ec-btn + .ai1ec-dropdown-toggle{padding-left:8px;padding-right:8px;}.ai1ec-btn-group > .ai1ec-btn-lg + .ai1ec-dropdown-toggle{padding-left:12px;padding-right:12px;}.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);}.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-btn-link{-webkit-box-shadow:none;box-shadow:none;}.ai1ec-btn .ai1ec-caret{margin-left:0;}.ai1ec-btn-lg .ai1ec-caret{border-width:5px 5px 0;border-bottom-width:0;}.ai1ec-dropup .ai1ec-btn-lg .ai1ec-caret{border-width:0 5px 5px;}.ai1ec-btn-group-vertical > .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn-group,.ai1ec-btn-group-vertical > .ai1ec-btn-group > .ai1ec-btn{display:block;float:none;width:100%;max-width:100%;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:before,.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{content:" ";display:table;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{clear:both;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:before,.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{content:" ";display:table;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{clear:both;}.ai1ec-btn-group-vertical > .ai1ec-btn-group > .ai1ec-btn{float:none;}.ai1ec-btn-group-vertical > .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-group-vertical > .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn-group + .ai1ec-btn-group{margin-top:-1px;margin-left:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:not(:first-child):not(:last-child){border-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:not(:first-child):not(:last-child) > .ai1ec-btn{border-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:first-child > .ai1ec-btn:last-child,.ai1ec-btn-group-vertical > .ai1ec-btn-group:first-child > .ai1ec-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:last-child > .ai1ec-btn:first-child{border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate;}.ai1ec-btn-group-justified > .ai1ec-btn,.ai1ec-btn-group-justified > .ai1ec-btn-group{float:none;display:table-cell;width:1%;}.ai1ec-btn-group-justified > .ai1ec-btn-group .ai1ec-btn{width:100%;}[data-toggle="buttons"] > .ai1ec-btn > input[type="radio"],[data-toggle="buttons"] > .ai1ec-btn > input[type="checkbox"]{display:none;}.timely .ai1ec-nav{margin-bottom:0;padding-left:0;list-style:none;}.timely .ai1ec-nav:before,.timely .ai1ec-nav:after{content:" ";display:table;}.timely .ai1ec-nav:after{clear:both;}.timely .ai1ec-nav:before,.timely .ai1ec-nav:after{content:" ";display:table;}.timely .ai1ec-nav:after{clear:both;}.timely .ai1ec-nav > li{position:relative;display:block;}.timely .ai1ec-nav > li > a{position:relative;display:block;padding:10px 15px;}.timely .ai1ec-nav > li > a:hover,.timely .ai1ec-nav > li > a:focus{text-decoration:none;background-color:#eee;}.timely .ai1ec-nav > li.ai1ec-disabled > a{color:#999;}.timely .ai1ec-nav > li.ai1ec-disabled > a:hover,.timely .ai1ec-nav > li.ai1ec-disabled > a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed;}.timely .ai1ec-nav .ai1ec-open > a,.timely .ai1ec-nav .ai1ec-open > a:hover,.timely .ai1ec-nav .ai1ec-open > a:focus{background-color:#eee;border-color:#3d6b99;}.timely .ai1ec-nav .ai1ec-nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;}.timely .ai1ec-nav > li > a > img{max-width:none;}.timely .ai1ec-nav-tabs{border-bottom:1px solid #ddd;}.timely .ai1ec-nav-tabs > li{float:left;margin-bottom:-1px;}.timely .ai1ec-nav-tabs > li > a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs > li > a:hover{border-color:#eee #eee #ddd;}.timely .ai1ec-nav-tabs > li.ai1ec-active > a,.timely .ai1ec-nav-tabs > li.ai1ec-active > a:hover,.timely .ai1ec-nav-tabs > li.ai1ec-active > a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified{width:100%;border-bottom:0;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li{float:none;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{text-align:center;margin-bottom:5px;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;left:auto;}@media (min-width: 768px){.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li{display:table-cell;width:1%;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{margin-bottom:0;}}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{margin-right:0;border-radius:4px;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:focus{border:1px solid #ddd;}@media (min-width: 768px){.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:focus{border-bottom-color:#fff;}}.timely .ai1ec-nav-pills > li{float:left;}.timely .ai1ec-nav-pills > li > a{border-radius:4px;}.timely .ai1ec-nav-pills > li + li{margin-left:2px;}.timely .ai1ec-nav-pills > li.ai1ec-active > a,.timely .ai1ec-nav-pills > li.ai1ec-active > a:hover,.timely .ai1ec-nav-pills > li.ai1ec-active > a:focus{color:#fff;background-color:#6dbb4f;}.timely .ai1ec-nav-stacked > li{float:none;}.timely .ai1ec-nav-stacked > li + li{margin-top:2px;margin-left:0;}.timely .ai1ec-nav-justified{width:100%;}.timely .ai1ec-nav-justified > li{float:none;}.timely .ai1ec-nav-justified > li > a{text-align:center;margin-bottom:5px;}.timely .ai1ec-nav-justified > .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;left:auto;}@media (min-width: 768px){.timely .ai1ec-nav-justified > li{display:table-cell;width:1%;}.timely .ai1ec-nav-justified > li > a{margin-bottom:0;}}.timely .ai1ec-nav-tabs-justified{border-bottom:0;}.timely .ai1ec-nav-tabs-justified > li > a{margin-right:0;border-radius:4px;}.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:focus{border:1px solid #ddd;}@media (min-width: 768px){.timely .ai1ec-nav-tabs-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:focus{border-bottom-color:#fff;}}.timely .ai1ec-tab-content > .ai1ec-tab-pane{display:none;}.timely .ai1ec-tab-content > .ai1ec-active{display:block;}.timely .ai1ec-nav-tabs .ai1ec-dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-thumbnail{display:block;padding:4px;margin-bottom:18px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;}.ai1ec-thumbnail > img,.ai1ec-thumbnail a > img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto;}a.ai1ec-thumbnail:hover,a.ai1ec-thumbnail:focus,a.ai1ec-thumbnail.ai1ec-active{border-color:#3d6b99;}.ai1ec-thumbnail .ai1ec-caption{padding:9px;color:#333;}.ai1ec-alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:4px;}.ai1ec-alert h4{margin-top:0;color:inherit;}.ai1ec-alert .ai1ec-alert-link{font-weight:bold;}.ai1ec-alert > p,.ai1ec-alert > ul{margin-bottom:0;}.ai1ec-alert > p + p{margin-top:5px;}.ai1ec-alert-dismissable{padding-right:35px;}.ai1ec-alert-dismissable .ai1ec-close{position:relative;top:-2px;right:-21px;color:inherit;}.ai1ec-alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d;}.ai1ec-alert-success hr{border-top-color:#c9e2b3;}.ai1ec-alert-success .ai1ec-alert-link{color:#2b542c;}.ai1ec-alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#418cc7;}.ai1ec-alert-info hr{border-top-color:#a6e1ec;}.ai1ec-alert-info .ai1ec-alert-link{color:#3071a5;}.ai1ec-alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b;}.ai1ec-alert-warning hr{border-top-color:#f7e1b5;}.ai1ec-alert-warning .ai1ec-alert-link{color:#66512c;}.ai1ec-alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442;font-size:13px;font-family:sans-serif;line-height:1.8;}.ai1ec-alert-danger hr{border-top-color:#e4b9c0;}.ai1ec-alert-danger .ai1ec-alert-link{color:#843534;}.ai1ec-alert-danger a{line-height:1.8;text-decoration:underline !important;}.ai1ec-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);}.ai1ec-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15);}.ai1ec-well-lg{padding:24px;border-radius:6px;}.ai1ec-well-sm{padding:9px;border-radius:3px;}.timely .ai1ec-close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#333;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20);}.timely .ai1ec-close:hover,.timely .ai1ec-close:focus{color:#333;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50);}button.timely .ai1ec-close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}.ai1ec-modal-open{overflow:hidden;}.ai1ec-modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:10040;}.ai1ec-modal.ai1ec-fade .ai1ec-modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out;}.ai1ec-modal.ai1ec-in .ai1ec-modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);}.ai1ec-modal-dialog{position:relative;width:auto;margin:10px;z-index:10050;}.ai1ec-modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid #c2c2c2;border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none;}.ai1ec-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10030;background-color:#fff;}.ai1ec-modal-backdrop.ai1ec-fade{opacity:0;filter:alpha(opacity=0);}.ai1ec-modal-backdrop.ai1ec-in{opacity:.5;filter:alpha(opacity=50);}.ai1ec-modal-header{padding:15px;border-bottom:1px solid #c2c2c2;min-height:16.428571429px;}.ai1ec-modal-header .ai1ec-close{margin-top:-2px;}.ai1ec-modal-title{margin:0;line-height:1.428571429;}.ai1ec-modal-body{position:relative;padding:20px;}.ai1ec-modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #c2c2c2;}.ai1ec-modal-footer:before,.ai1ec-modal-footer:after{content:" ";display:table;}.ai1ec-modal-footer:after{clear:both;}.ai1ec-modal-footer:before,.ai1ec-modal-footer:after{content:" ";display:table;}.ai1ec-modal-footer:after{clear:both;}.ai1ec-modal-footer .ai1ec-btn + .ai1ec-btn{margin-left:5px;margin-bottom:0;}.ai1ec-modal-footer .ai1ec-btn-group .ai1ec-btn + .ai1ec-btn{margin-left:-1px;}.ai1ec-modal-footer .ai1ec-btn-block + .ai1ec-btn-block{margin-left:0;}@media screen and (min-width: 768px){.ai1ec-modal-dialog{width:600px;margin:30px auto;}.ai1ec-modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5);}}.ai1ec-tooltip{position:absolute;z-index:10035;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.ai1ec-tooltip.ai1ec-in{opacity:.9;filter:alpha(opacity=90);}.ai1ec-tooltip.ai1ec-top{margin-top:-3px;padding:5px 0;}.ai1ec-tooltip.ai1ec-right{margin-left:3px;padding:0 5px;}.ai1ec-tooltip.ai1ec-bottom{margin-top:3px;padding:5px 0;}.ai1ec-tooltip.ai1ec-left{margin-left:-3px;padding:0 5px;}.ai1ec-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;}.ai1ec-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}.ai1ec-tooltip.ai1ec-top .ai1ec-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-top-left .ai1ec-tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-top-right .ai1ec-tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-right .ai1ec-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000;}.ai1ec-tooltip.ai1ec-left .ai1ec-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000;}.ai1ec-tooltip.ai1ec-bottom .ai1ec-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-tooltip.ai1ec-bottom-left .ai1ec-tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-tooltip.ai1ec-bottom-right .ai1ec-tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-popover{position:absolute;top:0;left:0;z-index:10010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal;}.ai1ec-popover.ai1ec-top{margin-top:-10px;}.ai1ec-popover.ai1ec-right{margin-left:10px;}.ai1ec-popover.ai1ec-bottom{margin-top:10px;}.ai1ec-popover.ai1ec-left{margin-left:-10px;}.ai1ec-popover-title{margin:0;padding:8px 14px;font-size:13px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;}.ai1ec-popover-content{padding:9px 14px;}.ai1ec-popover .ai1ec-arrow,.ai1ec-popover .ai1ec-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;}.ai1ec-popover .ai1ec-arrow{border-width:6px;}.ai1ec-popover .ai1ec-arrow:after{border-width:5px;content:"";}.ai1ec-popover.ai1ec-top .ai1ec-arrow{left:50%;margin-left:-6px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-6px;}.ai1ec-popover.ai1ec-top .ai1ec-arrow:after{content:" ";bottom:1px;margin-left:-5px;border-bottom-width:0;border-top-color:#fff;}.ai1ec-popover.ai1ec-right .ai1ec-arrow{top:50%;left:-6px;margin-top:-6px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);}.ai1ec-popover.ai1ec-right .ai1ec-arrow:after{content:" ";left:1px;bottom:-5px;border-left-width:0;border-right-color:#fff;}.ai1ec-popover.ai1ec-bottom .ai1ec-arrow{left:50%;margin-left:-6px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-6px;}.ai1ec-popover.ai1ec-bottom .ai1ec-arrow:after{content:" ";top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#fff;}.ai1ec-popover.ai1ec-left .ai1ec-arrow{top:50%;right:-6px;margin-top:-6px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);}.ai1ec-popover.ai1ec-left .ai1ec-arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-5px;}.ai1ec-clearfix:before,.ai1ec-clearfix:after{content:" ";display:table;}.ai1ec-clearfix:after{clear:both;}.ai1ec-center-block{display:block;margin-left:auto;margin-right:auto;}.ai1ec-pull-right{float:right !important;}.ai1ec-pull-left{float:left !important;}.ai1ec-hide{display:none !important;}.ai1ec-show{display:block !important;}.ai1ec-invisible{visibility:hidden;}.ai1ec-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}.ai1ec-hidden{display:none !important;visibility:hidden !important;}.ai1ec-affix{position:fixed;}@-ms-viewport{width:device-width;}.ai1ec-visible-xs,tr.ai1ec-visible-xs,th.ai1ec-visible-xs,td.ai1ec-visible-xs{display:none !important;}@media (max-width: 767px){.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-xs,td.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-xs.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-sm,td.ai1ec-visible-xs.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-xs.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-md{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-md,td.ai1ec-visible-xs.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-xs.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-lg,td.ai1ec-visible-xs.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-sm,tr.ai1ec-visible-sm,th.ai1ec-visible-sm,td.ai1ec-visible-sm{display:none !important;}@media (max-width: 767px){.ai1ec-visible-sm.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-xs,td.ai1ec-visible-sm.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-sm,td.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-sm.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-md{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-md,td.ai1ec-visible-sm.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-sm.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-lg,td.ai1ec-visible-sm.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-md,tr.ai1ec-visible-md,th.ai1ec-visible-md,td.ai1ec-visible-md{display:none !important;}@media (max-width: 767px){.ai1ec-visible-md.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-md.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-xs,td.ai1ec-visible-md.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-md.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-md.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-sm,td.ai1ec-visible-md.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-md{display:table;}tr.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-md,td.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-md.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-md.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-lg,td.ai1ec-visible-md.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-lg,tr.ai1ec-visible-lg,th.ai1ec-visible-lg,td.ai1ec-visible-lg{display:none !important;}@media (max-width: 767px){.ai1ec-visible-lg.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-xs,td.ai1ec-visible-lg.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-lg.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-sm,td.ai1ec-visible-lg.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-lg.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-md{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-md,td.ai1ec-visible-lg.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-lg,td.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-hidden-xs{display:block !important;}table.ai1ec-hidden-xs{display:table;}tr.ai1ec-hidden-xs{display:table-row !important;}th.ai1ec-hidden-xs,td.ai1ec-hidden-xs{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-xs,tr.ai1ec-hidden-xs,th.ai1ec-hidden-xs,td.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-xs.ai1ec-hidden-sm,tr.ai1ec-hidden-xs.ai1ec-hidden-sm,th.ai1ec-hidden-xs.ai1ec-hidden-sm,td.ai1ec-hidden-xs.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-xs.ai1ec-hidden-md,tr.ai1ec-hidden-xs.ai1ec-hidden-md,th.ai1ec-hidden-xs.ai1ec-hidden-md,td.ai1ec-hidden-xs.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-xs.ai1ec-hidden-lg,tr.ai1ec-hidden-xs.ai1ec-hidden-lg,th.ai1ec-hidden-xs.ai1ec-hidden-lg,td.ai1ec-hidden-xs.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-sm{display:block !important;}table.ai1ec-hidden-sm{display:table;}tr.ai1ec-hidden-sm{display:table-row !important;}th.ai1ec-hidden-sm,td.ai1ec-hidden-sm{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-sm.ai1ec-hidden-xs,tr.ai1ec-hidden-sm.ai1ec-hidden-xs,th.ai1ec-hidden-sm.ai1ec-hidden-xs,td.ai1ec-hidden-sm.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-sm,tr.ai1ec-hidden-sm,th.ai1ec-hidden-sm,td.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-sm.ai1ec-hidden-md,tr.ai1ec-hidden-sm.ai1ec-hidden-md,th.ai1ec-hidden-sm.ai1ec-hidden-md,td.ai1ec-hidden-sm.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-sm.ai1ec-hidden-lg,tr.ai1ec-hidden-sm.ai1ec-hidden-lg,th.ai1ec-hidden-sm.ai1ec-hidden-lg,td.ai1ec-hidden-sm.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-md{display:block !important;}table.ai1ec-hidden-md{display:table;}tr.ai1ec-hidden-md{display:table-row !important;}th.ai1ec-hidden-md,td.ai1ec-hidden-md{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-md.ai1ec-hidden-xs,tr.ai1ec-hidden-md.ai1ec-hidden-xs,th.ai1ec-hidden-md.ai1ec-hidden-xs,td.ai1ec-hidden-md.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-md.ai1ec-hidden-sm,tr.ai1ec-hidden-md.ai1ec-hidden-sm,th.ai1ec-hidden-md.ai1ec-hidden-sm,td.ai1ec-hidden-md.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-md,tr.ai1ec-hidden-md,th.ai1ec-hidden-md,td.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-md.ai1ec-hidden-lg,tr.ai1ec-hidden-md.ai1ec-hidden-lg,th.ai1ec-hidden-md.ai1ec-hidden-lg,td.ai1ec-hidden-md.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-lg{display:block !important;}table.ai1ec-hidden-lg{display:table;}tr.ai1ec-hidden-lg{display:table-row !important;}th.ai1ec-hidden-lg,td.ai1ec-hidden-lg{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-lg.ai1ec-hidden-xs,tr.ai1ec-hidden-lg.ai1ec-hidden-xs,th.ai1ec-hidden-lg.ai1ec-hidden-xs,td.ai1ec-hidden-lg.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-lg.ai1ec-hidden-sm,tr.ai1ec-hidden-lg.ai1ec-hidden-sm,th.ai1ec-hidden-lg.ai1ec-hidden-sm,td.ai1ec-hidden-lg.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-lg.ai1ec-hidden-md,tr.ai1ec-hidden-lg.ai1ec-hidden-md,th.ai1ec-hidden-lg.ai1ec-hidden-md,td.ai1ec-hidden-lg.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-lg,tr.ai1ec-hidden-lg,th.ai1ec-hidden-lg,td.ai1ec-hidden-lg{display:none !important;}}.ai1ec-visible-print,tr.ai1ec-visible-print,th.ai1ec-visible-print,td.ai1ec-visible-print{display:none !important;}@media print{.ai1ec-visible-print{display:block !important;}table.ai1ec-visible-print{display:table;}tr.ai1ec-visible-print{display:table-row !important;}th.ai1ec-visible-print,td.ai1ec-visible-print{display:table-cell !important;}.ai1ec-hidden-print,tr.ai1ec-hidden-print,th.ai1ec-hidden-print,td.ai1ec-hidden-print{display:none !important;}}.select2-container{position:relative;display:inline-block;zoom:1;*display:inline;vertical-align:top;}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.select2-container .select2-choice{display:block;height:26px;padding:0 0 0 8px;overflow:hidden;position:relative;border:1px solid #aaa;white-space:nowrap;line-height:26px;color:#444;text-decoration:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#eee 0%,white 50%);background-image:-moz-linear-gradient(center bottom,#eee 0%,white 50%);background-image:-o-linear-gradient(bottom,#eee 0%,#fff 50%);background-image:-ms-linear-gradient(top,#fff 0%,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#fff 0%,#eee 50%);}.select2-container.select2-drop-above .select2-choice{border-bottom-color:#aaa;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.9,white));background-image:-webkit-linear-gradient(center bottom,#eee 0%,white 90%);background-image:-moz-linear-gradient(center bottom,#eee 0%,white 90%);background-image:-o-linear-gradient(bottom,#eee 0%,white 90%);background-image:-ms-linear-gradient(top,#eee 0%,#fff 90%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#eee 0%,#fff 90%);}.select2-container .select2-choice span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.select2-container .select2-choice abbr{display:block;width:12px;height:12px;position:absolute;right:26px;top:8px;font-size:1px;text-decoration:none;border:0;background:url('../img/select2.png') right top no-repeat;cursor:pointer;outline:0;}.select2-container .select2-choice abbr:hover{background-position:right -11px;cursor:pointer;}.select2-drop-mask{position:absolute;left:0;top:0;z-index:9998;opacity:0;}.select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:9999;top:100%;background:#fff;color:#000;border:1px solid #aaa;border-top:0;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-webkit-box-shadow:0 4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 4px 5px rgba(0,0,0,0.15);box-shadow:0 4px 5px rgba(0,0,0,0.15);}.select2-drop.select2-drop-above{margin-top:1px;border-top:1px solid #aaa;border-bottom:0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;-webkit-box-shadow:0 -4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 -4px 5px rgba(0,0,0,0.15);box-shadow:0 -4px 5px rgba(0,0,0,0.15);}.select2-container .select2-choice div{display:block;width:18px;height:100%;position:absolute;right:0;top:0;border-left:1px solid #aaa;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;background:#ccc;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#ccc),color-stop(0.6,#eee));background-image:-webkit-linear-gradient(center bottom,#ccc 0%,#eee 60%);background-image:-moz-linear-gradient(center bottom,#ccc 0%,#eee 60%);background-image:-o-linear-gradient(bottom,#ccc 0%,#eee 60%);background-image:-ms-linear-gradient(top,#ccc 0%,#eee 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#cccccc',GradientType=0);background-image:linear-gradient(top,#ccc 0%,#eee 60%);}.select2-container .select2-choice div b{display:block;width:100%;height:100%;background:url('../img/select2.png') no-repeat 0 1px;}.select2-search{display:inline-block;width:100%;min-height:26px;margin:0;padding-left:4px;padding-right:4px;position:relative;z-index:10000;white-space:nowrap;}.select2-search-hidden{display:block;position:absolute;left:-10000px;}.select2-search input{width:100%;height:auto !important;min-height:26px;padding:4px 20px 4px 5px;margin:0;outline:0;font-family:sans-serif;font-size:1em;border:1px solid #aaa;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:#fff url('../img/select2.png') no-repeat 100% -22px;background:url('../img/select2.png') no-repeat 100% -22px, -webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('../img/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, linear-gradient(top,#fff 85%,#eee 99%);}.select2-drop.select2-drop-above .select2-search input{margin-top:4px;}.select2-search input.select2-active{background:#fff url('../img/ajax-loader-small.gif') no-repeat 100%;background:url('../img/ajax-loader-small.gif') no-repeat 100%, -webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('../img/ajax-loader-small.gif') no-repeat 100%, -webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -o-linear-gradient(bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, linear-gradient(top,#fff 85%,#eee 99%);}.select2-container-active .select2-choice,.select2-container-active .select2-choices{border:1px solid #5897fb;outline:none;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);}.select2-dropdown-open .select2-choice{border-bottom-color:transparent;-webkit-box-shadow:0 1px 0 #fff inset;-moz-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;background-color:#eee;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,white),color-stop(0.5,#eee));background-image:-webkit-linear-gradient(center bottom,white 0%,#eee 50%);background-image:-moz-linear-gradient(center bottom,white 0%,#eee 50%);background-image:-o-linear-gradient(bottom,white 0%,#eee 50%);background-image:-ms-linear-gradient(top,#fff 0%,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0);background-image:linear-gradient(top,#fff 0%,#eee 50%);}.select2-dropdown-open .select2-choice div{background:transparent;border-left:none;filter:none;}.select2-dropdown-open .select2-choice div b{background-position:-18px 1px;}.select2-results{max-height:200px;padding:0 0 0 4px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);}.select2-results ul.select2-result-sub{margin:0;padding-left:0;}.select2-results ul.select2-result-sub > li .select2-result-label{padding-left:20px;}.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:40px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:60px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:80px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:100px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:110px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:120px;}.select2-results li{list-style:none;display:list-item;background-image:none;}.select2-results li.select2-result-with-children > .select2-result-label{font-weight:bold;}.select2-results .select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.select2-results .select2-highlighted{background:#3875d7;color:#fff;}.select2-results li em{background:#feffde;font-style:normal;}.select2-results .select2-highlighted em{background:transparent;}.select2-results .select2-highlighted ul{background:white;color:#000;}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4;display:list-item;}.select2-results .select2-disabled.select2-highlighted{color:#666;background:#f4f4f4;display:list-item;cursor:default;}.select2-results .select2-disabled{background:#f4f4f4;display:list-item;cursor:default;}.select2-results .select2-selected{display:none;}.select2-more-results.select2-active{background:#f4f4f4 url('../img/ajax-loader-small.gif') no-repeat 100%;}.select2-more-results{background:#f4f4f4;display:list-item;}.select2-container.select2-container-disabled .select2-choice{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default;}.select2-container.select2-container-disabled .select2-choice div{background-color:#f4f4f4;background-image:none;border-left:0;}.select2-container.select2-container-disabled .select2-choice abbr{display:none;}.select2-container-multi .select2-choices{height:auto !important;height:1%;margin:0;padding:0;position:relative;border:1px solid #aaa;cursor:text;overflow:hidden;background-color:#fff;background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(top,#eee 1%,#fff 15%);background-image:-moz-linear-gradient(top,#eee 1%,#fff 15%);background-image:-o-linear-gradient(top,#eee 1%,#fff 15%);background-image:-ms-linear-gradient(top,#eee 1%,#fff 15%);background-image:linear-gradient(top,#eee 1%,#fff 15%);}.select2-locked{padding:3px 5px 3px 5px !important;}.select2-container-multi .select2-choices{min-height:26px;}.select2-container-multi.select2-container-active .select2-choices{border:1px solid #5897fb;outline:none;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);}.select2-container-multi .select2-choices li{float:left;list-style:none;}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap;}.select2-container-multi .select2-choices .select2-search-field input{padding:5px;margin:1px 0;font-family:sans-serif;font-size:100%;color:#666;outline:0;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:transparent !important;}.select2-container-multi .select2-choices .select2-search-field input.select2-active{background:#fff url('../img/ajax-loader-small.gif') no-repeat 100% !important;}.select2-default{color:#999 !important;}.select2-container-multi .select2-choices .select2-search-choice{padding:3px 5px 3px 18px;margin:3px 0 3px 5px;position:relative;line-height:13px;color:#333;cursor:default;border:1px solid #aaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#e4e4e4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#f4f4f4',GradientType=0);background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-ms-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);}.select2-container-multi .select2-choices .select2-search-choice span{cursor:default;}.select2-container-multi .select2-choices .select2-search-choice-focus{background:#d4d4d4;}.select2-search-choice-close{display:block;width:12px;height:13px;position:absolute;right:3px;top:4px;font-size:1px;outline:none;background:url('../img/select2.png') right top no-repeat;}.select2-container-multi .select2-search-choice-close{left:3px;}.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover{background-position:right -11px;}.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close{background-position:right -11px;}.select2-container-multi.select2-container-disabled .select2-choices{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default;}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{padding:3px 5px 3px 5px;border:1px solid #ddd;background-image:none;background-color:#f4f4f4;}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none;}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline;}.select2-offscreen{position:absolute;left:-10000px;}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi){.select2-search input,.select2-search-choice-close,.select2-container .select2-choice abbr,.select2-container .select2-choice div b{background-image:url('../img/select2x2.png') !important;background-repeat:no-repeat !important;background-size:60px 40px !important;}.select2-search input{background-position:100% -21px !important;}}.ai1ec-btn-file{overflow:hidden;position:relative;vertical-align:middle;}.ai1ec-btn-file > input{position:absolute;top:0;right:0;margin:0;padding:0;height:32px;border:solid transparent;opacity:0;filter:alpha(opacity=0);direction:ltr;cursor:pointer;}.ai1ec-fileupload{margin-bottom:9px;}.ai1ec-fileupload .ai1ec-uneditable-input{display:inline-block;margin-bottom:0px;vertical-align:middle;cursor:text;}.ai1ec-fileupload .ai1ec-thumbnail{overflow:hidden;display:inline-block;margin-bottom:5px;vertical-align:middle;text-align:center;}.ai1ec-fileupload .ai1ec-thumbnail > img{display:inline-block;vertical-align:middle;max-height:100%;}.ai1ec-fileupload .ai1ec-btn{vertical-align:middle;}.ai1ec-fileupload-exists .ai1ec-fileupload-new,.ai1ec-fileupload-new .ai1ec-fileupload-exists{display:none;}.ai1ec-fileupload-inline .ai1ec-fileupload-controls{display:inline;}.ai1ec-fileupload-new .ai1ec-input-append .ai1ec-btn-file{border-radius:0 3px 3px 0;}.ai1ec-thumbnail-borderless .ai1ec-thumbnail{border:none;padding:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;}.ai1ec-fileupload-new.ai1ec-thumbnail-borderless .ai1ec-thumbnail{border:1px solid #ddd;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-uneditable-input{color:#a47e3c;border-color:#a47e3c;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-fileupload-preview{color:#a47e3c;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-thumbnail{border-color:#a47e3c;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-uneditable-input{color:#b94a48;border-color:#b94a48;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-fileupload-preview{color:#b94a48;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-thumbnail{border-color:#b94a48;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-uneditable-input{color:#468847;border-color:#468847;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-fileupload-preview{color:#468847;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-thumbnail{border-color:#468847;}.ai1ec-datepicker{padding:4px;border-radius:4px;direction:ltr;}.ai1ec-datepicker-inline{width:220px;}.ai1ec-datepicker.ai1ec-datepicker-rtl{direction:rtl;}.ai1ec-datepicker.ai1ec-datepicker-rtl table tr td span{float:right;}.ai1ec-datepicker-dropdown{top:0;left:0;}.ai1ec-datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-top:0;border-bottom-color:rgba(0,0,0,0.2);position:absolute;}.ai1ec-datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-left:before{left:6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-left:after{left:7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-right:before{right:6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-right:after{right:7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-top:before{top:-7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-top:after{top:-6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff;}.ai1ec-datepicker >div{display:none;}.ai1ec-datepicker.ai1ec-days div.ai1ec-datepicker-days{display:block;}.ai1ec-datepicker.ai1ec-months div.ai1ec-datepicker-months{display:block;}.ai1ec-datepicker.ai1ec-years div.ai1ec-datepicker-years{display:block;}.ai1ec-datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ai1ec-datepicker table tr td,.ai1ec-datepicker table tr th{text-align:center;width:30px;height:30px;border-radius:4px;border:none;}.ai1ec-table-striped .ai1ec-datepicker table tr td,.ai1ec-table-striped .ai1ec-datepicker table tr th{background-color:transparent;}.ai1ec-datepicker table tr td.ai1ec-day:hover,.ai1ec-datepicker table tr td.ai1ec-day.ai1ec-focused{background:#eee;cursor:pointer;}.ai1ec-datepicker table tr td.ai1ec-old,.ai1ec-datepicker table tr td.ai1ec-new{color:#999;}.ai1ec-datepicker table tr td.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-disabled:hover{background:none;color:#999;cursor:default;}.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#ffdb99;border-color:#ffb733;}.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today:focus,.ai1ec-datepicker table tr td.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#ffcd70;border-color:#f59e00;}.ai1ec-datepicker table tr td.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today[disabled],.ai1ec-datepicker table tr td.ai1ec-today[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active{background-color:#ffdb99;border-color:#ffb733;}.ai1ec-datepicker table tr td.ai1ec-today .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover .ai1ec-badge{color:#ffdb99;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-today:hover:hover{color:#000;}.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active:hover{color:#fff;}.ai1ec-datepicker table tr td.ai1ec-range,.ai1ec-datepicker table tr td.ai1ec-range:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-disabled:hover{background:#eee;border-radius:0;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#f7ca77;border-color:#f1a417;border-radius:0;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#f4bb51;border-color:#bf800c;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active{background-color:#f7ca77;border-color:#f1a417;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover .ai1ec-badge{color:#f7ca77;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{color:#fff;background-color:#999;border-color:#555;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected:focus,.ai1ec-datepicker table tr td.ai1ec-selected:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{color:#fff;background-color:#858585;border-color:#373737;}.ai1ec-datepicker table tr td.ai1ec-selected:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected[disabled],.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active{background-color:#999;border-color:#555;}.ai1ec-datepicker table tr td.ai1ec-selected .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover .ai1ec-badge{color:#999;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#6dbb4f;border-color:#61ad43;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active:focus,.ai1ec-datepicker table tr td.ai1ec-active:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#5aa23f;border-color:#488132;}.ai1ec-datepicker table tr td.ai1ec-active:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active[disabled],.ai1ec-datepicker table tr td.ai1ec-active[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.ai1ec-datepicker table tr td.ai1ec-active .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.ai1ec-datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;border-radius:4px;}.ai1ec-datepicker table tr td span:hover{background:#eee;}.ai1ec-datepicker table tr td span.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-disabled:hover{background:none;color:#999;cursor:default;}.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#6dbb4f;border-color:#61ad43;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active:focus,.ai1ec-datepicker table tr td span.ai1ec-active:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#5aa23f;border-color:#488132;}.ai1ec-datepicker table tr td span.ai1ec-active:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active[disabled],.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled],.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.ai1ec-datepicker table tr td span.ai1ec-active .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active:hover .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.ai1ec-datepicker table tr td span.ai1ec-old,.ai1ec-datepicker table tr td span.ai1ec-new{color:#999;}.ai1ec-datepicker th.ai1ec-datepicker-switch{width:145px;}.ai1ec-datepicker thead tr:first-child th,.ai1ec-datepicker tfoot tr th{cursor:pointer;}.ai1ec-datepicker thead tr:first-child th:hover,.ai1ec-datepicker tfoot tr th:hover{background:#eee;}.ai1ec-datepicker .ai1ec-cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle;}.ai1ec-datepicker thead tr:first-child th.ai1ec-cw{cursor:default;background-color:transparent;}.ai1ec-input-group.ai1ec-date .ai1ec-input-group-addon i{cursor:pointer;width:16px;height:16px;}.ai1ec-input-daterange input{text-align:center;}.ai1ec-input-daterange input:first-child{border-radius:3px 0 0 3px;}.ai1ec-input-daterange input:last-child{border-radius:0 3px 3px 0;}.ai1ec-input-daterange .ai1ec-input-group-addon{width:auto;min-width:16px;padding:4px 5px;font-weight:normal;line-height:1.428571429;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:solid #ccc;border-width:1px 0;margin-left:-5px;margin-right:-5px;}.ai1ec-bootstrap-timepicker{position:relative;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu{left:auto;right:0;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:before{left:auto;right:12px;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:after{left:auto;right:13px;}.ai1ec-bootstrap-timepicker .ai1ec-input-group-addon{cursor:pointer;}.ai1ec-bootstrap-timepicker .ai1ec-input-group-addon i{display:inline-block;width:16px;height:16px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu{padding:4px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu.ai1ec-open{display:inline-block;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:before{border-bottom:7px solid rgba(0,0,0,0.2);border-left:7px solid transparent;border-right:7px solid transparent;content:"";display:inline-block;position:absolute;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:after{border-bottom:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;content:"";display:inline-block;position:absolute;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-left:before{left:6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-left:after{left:7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-right:before{right:6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-right:after{right:7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-top:before{top:-7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-top:after{top:-6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff;}.ai1ec-bootstrap-timepicker-widget a.ai1ec-btn,.ai1ec-bootstrap-timepicker-widget input{border-radius:4px;}.ai1ec-bootstrap-timepicker-widget table{width:100%;margin:0;}.ai1ec-bootstrap-timepicker-widget table td{text-align:center;height:30px;margin:0;padding:2px;}.ai1ec-bootstrap-timepicker-widget table td:not(.ai1ec-separator){min-width:30px;}.ai1ec-bootstrap-timepicker-widget table td span{width:100%;}.ai1ec-bootstrap-timepicker-widget table td a{border:1px transparent solid;width:100%;display:inline-block;margin:0;padding:8px 0;outline:0;color:#333;}.ai1ec-bootstrap-timepicker-widget table td a:hover{text-decoration:none;background-color:#eee;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border-color:#ddd;}.ai1ec-bootstrap-timepicker-widget table td a i{margin-top:2px;font-size:18px;}.ai1ec-bootstrap-timepicker-widget table td input{width:25px;margin:0;text-align:center;}.ai1ec-bootstrap-timepicker-widget .ai1ec-modal-body{padding:4px;}@media (min-width: 768px){.ai1ec-bootstrap-timepicker-widget.ai1ec-modal{width:200px;}}@media (max-width: 991px){.ai1ec-bootstrap-timepicker{width:100%;}.ai1ec-bootstrap-timepicker .ai1ec-dropdown-menu{width:100%;}}#ai1ec-event-modal{padding:20px;}@media (max-width: 767px){#ai1ec-event-modal{padding:5px;}}#ai1ec-event-modal .ai1ec-modal-dialog{width:auto;max-width:1199px;margin:0 auto;}#ai1ec-event-modal .ai1ec-modal-body{min-height:300px;}#ai1ec-event-modal .ai1ec-close{font-size:2em;margin:0.25em 0.5em 0 0;position:relative;z-index:10051;}#ai1ec-event-modal .ai1ec-category,#ai1ec-event-modal .ai1ec-tag{cursor:default;color:inherit;border:inherit;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);}#ai1ec-event-modal .ai1ec-category:hover,#ai1ec-event-modal .ai1ec-tag:hover{color:inherit;background-color:inherit;border:inherit;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);}.ai1ec-btn-toolbar{margin:0;}.ai1ec-btn-toolbar .ai1ec-btn-group{margin-bottom:6px;}.ai1ec-btn-toolbar .ai1ec-btn-group.ai1ec-btn-group-xs{margin-top:5px;}.ai1ec-btn-group > .ai1ec-btn-primary{z-index:3;}.ai1ec-btn-group > .ai1ec-btn,.ai1ec-btn-group > .ai1ec-dropdown-menu,.ai1ec-btn-group > .ai1ec-popover{font-size:13px;}.ai1ec-btn-group > .ai1ec-btn-xs{font-size:11px;}.ai1ec-btn-group > .ai1ec-btn-sm{font-size:11px;}.ai1ec-btn-group > .ai1ec-btn-lg{font-size:15px;}.ai1ec-btn-group > .ai1ec-btn:after{content:'\200A';margin-right:-0.25em;}.ai1ec-btn-primary{color:#fff !important;}.ai1ec-dropdown-toggle{cursor:pointer;}.ai1ec-dropdown-menu,ul.ai1ec-dropdown-menu{margin:0;text-align:left;list-style:none;}.ai1ec-dropdown-menu li,ul.ai1ec-dropdown-menu li{margin:0;padding:0;list-style:none;}.ai1ec-dropdown-menu > div > a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap;}.ai1ec-dropdown-menu > div > a:hover,.ai1ec-dropdown-menu > div > a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5;}.ai1ec-dropdown{overflow:visible !important;background-image:none !important;}.ai1ec-modal-footer{margin-top:0;}.ai1ec-tooltip{margin:0 !important;}.single-ai1ec_event .ai1ec-tooltip{width:auto;white-space:pre;}span.ai1ec-hidden-xs{display:inline !important;}@media (max-width: 767px){span.ai1ec-hidden-xs{display:none !important;}}.select2-container input[type="text"]:focus{-webkit-box-shadow:none;box-shadow:none;}.entry-content .select2-choices{padding:inherit !important;line-height:inherit !important;list-style-type:none !important;}.select2-container-multi .select2-choices{background-color:#fff;background-image:none;border-color:#ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.select2-dropdown-open.select2-container-multi .select2-choices{border-bottom-color:#fff;border-radius:4px 4px 0 0;}.select2-drop-above.select2-dropdown-open.select2-container-multi .select2-choices{border-bottom-color:#ccc;border-top-color:#fff;border-radius:0 0 4px 4px;}.select2-container-multi .select2-choices .select2-search-field input{color:#555;margin:0;padding:6px 12px 4px;}.select2-container-multi .select2-choices .select2-search-field input.select2-default{color:#999 !important;}.select2-container-multi .select2-choices .select2-search-choice{margin:4px 0 0 8px;}.select2-drop-mask{z-index:9999;}.ai1ec-modal-open .select2-drop-mask,.ai1ec-has-affixed-toolbar .select2-drop-mask{z-index:19999;}.select2-drop{background-color:#fff;border-color:rgba(82,168,236,0.8);color:#333;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;z-index:10000;}.ai1ec-modal-open .select2-drop,.ai1ec-has-affixed-toolbar .select2-drop{z-index:20000;}.select2-results{margin:4px 0;padding:0;}.select2-results .select2-highlighted{color:#333;background-color:#f5f5f5;}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background-color:#ebebeb;}.timely a.select2-search-choice-close{-webkit-transition:none;transition:none;background:url('../img/select2.png') right top no-repeat;left:5px;top:3px;}.select2-container .ai1ec-color-swatch,.select2-container .ai1ec-color-swatch-empty,.select2-drop .ai1ec-color-swatch,.select2-drop .ai1ec-color-swatch-empty{width:7px;height:7px;}.ai1ec-s2-with-icon{position:relative;}.ai1ec-s2-with-icon > i{font-size:1.25em;left:10px;line-height:1em;position:absolute;top:8px;}.ai1ec-s2-with-icon .select2-choices{padding-left:1.8em;}input.ai1ec-datepicker[readonly],input.ai1ec-timepicker[readonly]{cursor:pointer;}.ai1ec-datepicker{font-size:11.05px;padding:5.525px;margin-left:5px;}.ai1ec-datepicker.ai1ec-right-aligned{margin-left:0;}.ai1ec-datepicker.ai1ec-right-aligned:before{left:auto;right:6px;}.ai1ec-datepicker.ai1ec-right-aligned:after{left:auto;right:7px;}.ai1ec-datepicker table th,.ai1ec-datepicker table td{padding:0;vertical-align:middle;}.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{background:#f5f5d5;}.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active.ai1ec-disabled:hover{background:#6489ad;color:#fff;text-shadow:none;}.ai1ec-datepicker table tr td.ai1ec-day:hover,.ai1ec-datepicker table tr td.ai1ec-day.ai1ec-focused{background-color:#f5f5f5;}.ai1ec-datepicker table tr td.ai1ec-old,.ai1ec-datepicker table tr td.ai1ec-new{color:#858585;}.ai1ec-datepicker table tr td.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-disabled:hover{background:none;color:#c2c2c2;}.ai1ec-datepicker table tr td span:hover{background-color:#f5f5f5;}.ai1ec-datepicker table tr td span.ai1ec-old{color:#858585;}.ai1ec-datepicker table tr td span.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-disabled:hover{background:none;color:#c2c2c2;}.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{background-color:#f5f5f5;-webkit-box-shadow:none;box-shadow:none;color:#333;text-shadow:none;}.ai1ec-datepicker th{font-weight:bold;}.ai1ec-datepicker thead tr:first-child th:hover,.ai1ec-datepicker tfoot tr:first-child th:hover{background-color:#f5f5f5;}.ai1ec-datepicker thead tr:first-child th.today,.ai1ec-datepicker tfoot tr:first-child th.today{display:table-cell !important;filter:alpha(opacity=100) !important;margin:0 !important;overflow:visible !important;opacity:1 !important;padding:0 !important;height:22.1px !important;width:24.31px !important;}.ai1ec-bootstrap-timepicker table{border:none;}.ai1ec-bootstrap-timepicker table td{height:auto;}.ai1ec-bootstrap-timepicker table td a:hover{background-color:#f5f5f5;border:none;}.ai1ec-datepicker:before,.ai1ec-bootstrap-timepicker.ai1ec-dropdown-menu:before{border-bottom-color:rgba(0,0,0,0.15);}.ai1ec-datepicker:after,.ai1ec-bootstrap-timepicker.ai1ec-dropdown-menu:after{border-bottom-color:#fff;}.ai1ec-collapse.ai1ec-in.ai1ec-timepicker-visible{overflow:visible;}.ai1ec-fileupload{margin-bottom:0;}.timely a,.timely a:link,.timely a:visited,.timely a:active,.timely a:hover,#ai1ec-container a,#ai1ec-container a:link,#ai1ec-container a:visited,#ai1ec-container a:active,#ai1ec-container a:hover{font-weight:normal;text-decoration:none !important;box-shadow:none;}.timely img,#ai1ec-container img{background:none;border:none;border-radius:0;-webkit-box-shadow:none;box-shadow:none;max-width:none;margin:0;padding:0;}.timely .alignleft,.timely.alignleft,#ai1ec-container .alignleft,#ai1ec-container.alignleft{float:left;margin:0 16px 8px 0;}.timely .alignright,.timely.alignright,#ai1ec-container .alignright,#ai1ec-container.alignright{float:right;margin:0 0 8px 16px;}.timely small,#ai1ec-container small{margin:0 !important;}.timely table,#ai1ec-container table{line-height:inherit;}.timely tr,.timely th,.timely td,#ai1ec-container tr,#ai1ec-container th,#ai1ec-container td{background:none;border:0;padding:0;}.timely .ai1ec-pagination a.ai1ec-prev-page i,.timely .ai1ec-pagination a.ai1ec-next-page i,#ai1ec-container .ai1ec-pagination a.ai1ec-prev-page i,#ai1ec-container .ai1ec-pagination a.ai1ec-next-page i{font-size:inherit !important;}.timely{margin:0;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;color:#333;word-wrap:break-word;}.timely a{border:none;}.timely form{margin:0;}.timely .ai1ec-placeholder{color:#999;}.timely .ai1ec-form-control[disabled],.timely .ai1ec-form-control[readonly]{border-color:#d9d9d9;cursor:auto;}.timely .ai1ec-form-control[readonly]{background-color:#fff;border-color:#ccc;}.timely input[type="radio"],.timely input[type="checkbox"]{margin-top:3px;}.timely textarea.ai1ec-form-control{height:auto;}.timely .ai1ec-help-block{margin-top:2px;margin-bottom:5px;}.timely .ai1ec-form-group{margin-bottom:10px;}.timely label{font-weight:normal;}.timely button.ai1ec-close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}.ai1ec-modal-open{position:static;}.ai1ec-modal-open .ai1ec-dropdown-menu{z-index:20040 !important;}.ai1ec-modal-open .ai1ec-dropdown.ai1ec-open{*z-index:20040 !important;}.ai1ec-modal-open .ai1ec-popover{z-index:20050 !important;}.ai1ec-modal-open .ai1ec-tooltip{z-index:20075 !important;}.ai1ec-loading{position:absolute;z-index:9;top:0;left:0;width:100%;height:100%;background:url('../img/ajax-loader.gif') no-repeat center center;background-color:rgba(255,255,255,0.5);display:none;}#ai1ec-calendar-view-container .ai1ec-loading{background-color:transparent;background-position:center 150px;}.ai1ec-modal > .ai1ec-loading{border-radius:5px;}.timely-widget{min-height:62px;position:relative;}.ai1ec-widget-loading{position:absolute;z-index:2;width:100%;}.ai1ec-widget-loading > small{border-radius:4px;background:#fff;color:#333 !important;display:inline-block;opacity:0.8;filter:alpha(opacity=80);padding:0.5em;}.entry-content .timely a,.comment-content .timely a,.site-footer .widget .timely a{color:#3d6b99;}.entry-content .timely a:visited,.comment-content .timely a:visited,.site-footer .widget .timely a:visited{color:#3d6b99;}.entry-content .timely a:hover,.comment-content .timely a:hover,.site-footer .widget .timely a:hover{color:#335980;}.entry-content .timely .ai1ec-btn-default,.comment-content .timely .ai1ec-btn-default,.site-footer .widget .timely .ai1ec-btn-default{color:#333 !important;}.entry-content .timely .ai1ec-btn-default:hover,.comment-content .timely .ai1ec-btn-default:hover,.site-footer .widget .timely .ai1ec-btn-default:hover{color:#333 !important;}.entry-content .timely .ai1ec-dropdown-menu > li > a,.comment-content .timely .ai1ec-dropdown-menu > li > a,.site-footer .widget .timely .ai1ec-dropdown-menu > li > a{color:#333;}.entry-content .timely .ai1ec-dropdown-menu > li > a:hover,.entry-content .timely .ai1ec-dropdown-menu > li > a:focus,.comment-content .timely .ai1ec-dropdown-menu > li > a:hover,.comment-content .timely .ai1ec-dropdown-menu > li > a:focus,.site-footer .widget .timely .ai1ec-dropdown-menu > li > a:hover,.site-footer .widget .timely .ai1ec-dropdown-menu > li > a:focus{color:#262626;}.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:hover,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:focus,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:hover,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-active > a:focus,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-active > a,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-active > a:hover,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-active > a:focus{color:#fff;}.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.entry-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:focus,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.comment-content .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:focus,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.site-footer .widget .timely .ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{color:#999;}.entry-content .timely .ai1ec-nav > li,.comment-content .timely .ai1ec-nav > li,.site-footer .widget .timely .ai1ec-nav > li{margin:0;}.entry-content .ai1ec-agenda-widget-view .ai1ec-date-title,.entry-content .ai1ec-agenda-view .ai1ec-date-title,.comment-content .ai1ec-agenda-widget-view .ai1ec-date-title,.comment-content .ai1ec-agenda-view .ai1ec-date-title,.site-footer .widget .ai1ec-agenda-widget-view .ai1ec-date-title,.site-footer .widget .ai1ec-agenda-view .ai1ec-date-title{color:#525252;}.ai1ec-field-label{font-size:12.155px;font-weight:bold;color:#aaa;text-transform:uppercase;text-align:right;}@media (max-width: 767px){.ai1ec-field-label{text-align:left;}}.ai1ec-allday-badge{background:#3d6b99;border-radius:0.9em;-webkit-box-shadow:;box-shadow:;color:#fff;display:inline-block;font-size:0.85em;font-weight:normal;margin:0 0 1px;opacity:0.9;filter:alpha(opacity=90);padding:0 0.7em 0.05em;vertical-align:middle;}.ai1ec-no-results{color:#858585;}.ai1ec-centered{text-align:center;}.ai1ec-prose p,.ai1ec-prose ul,.ai1ec-prose ol,.ai1ec-prose li{font-size:14.04px;line-height:1.7142857148;}.ai1ec-prose p,.ai1ec-prose ul,.ai1ec-prose ol{margin-bottom:10.8px;}.ai1ec-category{border-radius:4px;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);cursor:pointer;display:inline-block;font-size:0.9em;line-height:2em !important;margin:1px 0;padding:0 0.5em !important;text-transform:uppercase;white-space:nowrap;color:#333;}.ai1ec-category:hover,.ai1ec-active > .ai1ec-category{background-color:#f5f5f5;border-color:#f5f5f5;-webkit-box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;color:#262626;}.ai1ec-color-swatch,.ai1ec-color-swatch-empty{display:inline-block;height:8px;margin:0 1px;padding:1px;width:8px;}.ai1ec-color-swatch{border-radius:5px;border-color:rgba(0,0,0,0.5);opacity:0.8;filter:alpha(opacity=80);}.ai1ec-tag{border-radius:4px;color:#3d6b99;cursor:pointer;display:inline-block !important;line-height:1.7em !important;margin:1px 0 0;padding:0 4px !important;white-space:nowrap;}.ai1ec-tag i{padding-right:3px;}a.ai1ec-custom-filter{border-radius:4px;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);cursor:pointer;display:inline-block;font-size:0.9em;line-height:2em !important;margin:1px 0;padding:0 0.5em !important;text-transform:uppercase;white-space:nowrap;color:#333;}.ai1ec-tag:hover,.ai1ec-active > .ai1ec-tag{background-color:#f5f5f5;border-color:#f5f5f5;-webkit-box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;box-shadow:inset 0 0 2px rgba(38,38,38,0.3) ;color:#262626;}.ai1ec-event-avatar{background-color:#fff;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.4);box-shadow:0 1px 4px rgba(0,0,0,0.4);}.ai1ec-event-avatar img{height:auto;display:block;min-height:90px;width:auto;}.ai1ec-agenda-widget-view .ai1ec-date-title,.ai1ec-agenda-view .ai1ec-date-title{border:1px solid #c2c2c2;border-top:none;border-radius:5px;-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.08);box-shadow:0 2px 2px rgba(0,0,0,0.08);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#525252;float:left;font-weight:bold !important;background-image:-webkit-linear-gradient(#fff,#fff 1em,#e7e7e7);background-image:linear-gradient(#fff,#fff 1em,#e7e7e7);background-repeat:no-repeat;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);filter:none \9;line-height:1.2em;margin:6.5px 0.75em;overflow:hidden;text-align:center;text-shadow:0 1px 0 #fff;width:4em;}.ai1ec-agenda-widget-view .ai1ec-date-title:hover,.ai1ec-agenda-view .ai1ec-date-title:hover{color:#333 !important;}.ai1ec-agenda-widget-view .ai1ec-month,.ai1ec-agenda-view .ai1ec-month{background:#6689ac;border-radius:4px 4px 0 0;color:#fff;font-size:0.8em;letter-spacing:0.2em;padding:0 0.2em;text-transform:uppercase;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-agenda-widget-view .ai1ec-day,.ai1ec-agenda-view .ai1ec-day{font-size:2em;padding:0.35em 0 0.22em;}.ai1ec-agenda-widget-view .ai1ec-weekday,.ai1ec-agenda-view .ai1ec-weekday{font-size:0.8em;padding:0 0 0.2em;}.ai1ec-agenda-widget-view .ai1ec-year,.ai1ec-agenda-view .ai1ec-year{background-color:#e4e4e4;-webkit-box-shadow:inset 0 3px 3px rgba(0,0,0,0.08);box-shadow:inset 0 3px 3px rgba(0,0,0,0.08);font-size:0.7em;letter-spacing:0.2em;padding:0 0.2em;}.ai1ec-agenda-widget-view .ai1ec-date,.ai1ec-agenda-view .ai1ec-date{border-top:1px solid #e5e5e5;background:#f5f5f5;background:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),color-stop(1em,#f2f2f2),to(#fff));background:-webkit-linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background:-moz-linear-gradient(top,#f2f2f2,#f2f2f2 1em,#fff);background:-ms-linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background:-o-linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background:linear-gradient(#f2f2f2,#f2f2f2 1em,#fff);background-repeat:no-repeat;}.ai1ec-agenda-widget-view .ai1ec-date.ai1ec-today,.ai1ec-agenda-view .ai1ec-date.ai1ec-today{border-top:1px solid #f0f0a9;background:#f6f6cc;background:-webkit-gradient(linear,0 0,0 100%,from(#f4f4bf),color-stop(1em,#f4f4bf),to(#fff));background:-webkit-linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background:-moz-linear-gradient(top,#f4f4bf,#f4f4bf 1em,#fff);background:-ms-linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background:-o-linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background:linear-gradient(#f4f4bf,#f4f4bf 1em,#fff);background-repeat:no-repeat;}.ai1ec-agenda-widget-view .ai1ec-event-description img,.ai1ec-agenda-view .ai1ec-event-description img{max-width:100% !important;}.ai1ec-agenda-widget-view{max-width:500px;}.ai1ec-agenda-widget-view .ai1ec-date-events{margin:0 0.5em 0 0;}.ai1ec-agenda-widget-view .ai1ec-date{float:left;width:100%;}.ai1ec-agenda-widget-view .ai1ec-date-title{font-size:0.9em;}.ai1ec-agenda-widget-view .ai1ec-event{clear:right;margin:6.5px 0 6.5px 4.8em;padding:0;position:relative;}.ai1ec-agenda-widget-view .ai1ec-event > a{color:#3d6b99;display:block;background:#fff;border:1px solid #ccc;border-radius:0.4em;padding:0.2em 0.4em;}.ai1ec-agenda-widget-view .ai1ec-event > a:hover{border-color:#808080;color:#335980;}.ai1ec-agenda-widget-view .ai1ec-event .ai1ec-event-time{font-weight:bold;}.ai1ec-agenda-widget-view .ai1ec-event .ai1ec-event-title{font-weight:normal;}.ai1ec-agenda-widget-view .ai1ec-event .ai1ec-allday-badge{vertical-align:bottom;}.ai1ec-subscribe-dropdown{padding:0 !important;}.ai1ec-subscribe-dropdown > .ai1ec-subscribe{display:inline-block;padding:5px 10px;}.ai1ec-subscribe-dropdown.ai1ec-btn-xs > .ai1ec-subscribe{padding:1px 5px;}.ai1ec-popover.ai1ec-popup{text-align:left;border-color:#ccc;width:190px;}.ai1ec-popover.ai1ec-popup .ai1ec-popover-content{background:#fff;color:#333;font-size:13px;font-weight:normal;padding:5px 8px;position:relative;z-index:2;}.ai1ec-popover.ai1ec-popup .ai1ec-event-time{background:#eee;font-size:11.05px;font-weight:bold;margin:2px -8px 0;padding:1px 8px;}.ai1ec-popover.ai1ec-popup .ai1ec-event-avatar{margin:6px auto;position:relative;width:85%;}.ai1ec-popover.ai1ec-popup .ai1ec-event-avatar img{width:100%;}.ai1ec-popover.ai1ec-popup .ai1ec-color-swatches{float:right;font-size:0.9em;}.ai1ec-popover.ai1ec-popup .ai1ec-color-swatch{padding:1px;}.ai1ec-popover.ai1ec-popup .post-edit-link{font-size:11px;margin-left:2px;white-space:nowrap;}.ai1ec-popover.ai1ec-popup .post-edit-link i{font-size:13px;}.ai1ec-popover.ai1ec-popup.ai1ec-left.ai1ec-popup-in-oneday-view{margin-left:49px;}.ai1ec-popup-title{font-size:12.35px;font-weight:bold;line-height:1.428571429;background:none;border-bottom:none;padding:0;}.ai1ec-popup-title a{font-weight:bold !important;}.ai1ec-popup-title a.ai1ec-buy-tickets{font-weight:normal !important;}.ai1ec-popup-excerpt{font-size:11.05px;margin-top:2px;}img[data-ai1ec-hidden]{display:none;}.timely input.ai1ec-search-input{height:22px;}.timely a.ai1ec-search-button{margin-top:-2px;}.ai1ec-single-event .ai1ec-event-details,.ai1ec-multi-event .ai1ec-event-details{margin:13.5px 0;}.ai1ec-single-event .ai1ec-event-details .ai1ec-row,.ai1ec-multi-event .ai1ec-event-details .ai1ec-row{margin-bottom:4.5px;}.ai1ec-single-event .ai1ec-field-label,.ai1ec-multi-event .ai1ec-field-label{line-height:25px;}.ai1ec-single-event .ai1ec-time .ai1ec-field-value,.ai1ec-multi-event .ai1ec-time .ai1ec-field-value{font-size:1.2em;}.ai1ec-single-event .ai1ec-time .ai1ec-field-value .ai1ec-allday-badge,.ai1ec-multi-event .ai1ec-time .ai1ec-field-value .ai1ec-allday-badge{font-size:0.75em;line-height:1.4em;}.ai1ec-single-event .ai1ec-recurrence,.ai1ec-multi-event .ai1ec-recurrence{vertical-align:bottom;}.ai1ec-single-event .ai1ec-recurrence .ai1ec-btn.ai1ec-disabled,.ai1ec-multi-event .ai1ec-recurrence .ai1ec-btn.ai1ec-disabled{cursor:default;opacity:1;filter:alpha(opacity=100);pointer-events:auto;}.ai1ec-single-event .ai1ec-category,.ai1ec-multi-event .ai1ec-category{font-size:0.8em;}.ai1ec-single-event .ai1ec-tag,.ai1ec-multi-event .ai1ec-tag{font-size:0.85em;}.ai1ec-single-event .ai1ec-gmap-container,.ai1ec-multi-event .ai1ec-gmap-container{border:1px solid #ddd;border-radius:4px;position:relative;}.ai1ec-single-event #ai1ec-gmap-canvas,.ai1ec-multi-event #ai1ec-gmap-canvas{width:100%;height:200px;}.ai1ec-single-event .ai1ec-gmap-link,.ai1ec-multi-event .ai1ec-gmap-link{bottom:-1px;display:none;margin:0;position:absolute;right:-1px;}.ai1ec-single-event .ai1ec-gmap-container:hover .ai1ec-gmap-link,.ai1ec-multi-event .ai1ec-gmap-container:hover .ai1ec-gmap-link{display:block;}.ai1ec-single-event #ai1ec-gmap-canvas input,.ai1ec-multi-event #ai1ec-gmap-canvas input{margin:0 !important;}.ai1ec-single-event .ai1ec-gmap-placeholder,.ai1ec-multi-event .ai1ec-gmap-placeholder{border-radius:4px;color:#3d6b99;cursor:pointer;height:12em;border:1px dashed #ddd;min-width:18em;margin-bottom:0.3em;text-align:center;width:100%;}.ai1ec-single-event .ai1ec-gmap-placeholder:hover,.ai1ec-multi-event .ai1ec-gmap-placeholder:hover{border-color:#b7b7b7;color:#335980;}.ai1ec-single-event .ai1ec-gmap-placeholder strong,.ai1ec-multi-event .ai1ec-gmap-placeholder strong{position:relative;top:45%;}.ai1ec-single-event .ai1ec-gmap-container-hidden,.ai1ec-multi-event .ai1ec-gmap-container-hidden{position:absolute !important;visibility:hidden;}.ai1ec-single-event .ai1ec-contact span,.ai1ec-multi-event .ai1ec-contact span{display:inline-block;white-space:nowrap;}.ai1ec-single-event .ai1ec-contact span i:first-child:before,.ai1ec-multi-event .ai1ec-contact span i:first-child:before{text-align:center;width:1.7em;}.ai1ec-single-event{position:relative;font-size:14.3px;line-height:22.5px;}.ai1ec-single-event .ai1ec-event-avatar{max-width:40%;}.ai1ec-single-event .ai1ec-event-avatar img{max-width:300px;max-height:300px;min-height:0;width:100%;}.ai1ec-single-event .ai1ec-event-details{overflow:hidden;}.ai1ec-single-event .ai1ec-actions{float:right !important;margin-left:10px;}.ai1ec-single-event .ai1ec-actions .ai1ec-btn-group-vertical{margin-bottom:10px;display:block;}.ai1ec-single-event .ai1ec-actions .ai1ec-btn{font-size:12px;text-align:left;}.ai1ec-single-event .ai1ec-actions .ai1ec-fa-fw{width:20px;}.ai1ec-single-event .timely-tickets-row td{vertical-align:top;padding-bottom:10px;}.ai1ec-single-event .timely-tickets-row td.ai1ec-tickets-info{padding-left:12px;}.ai1ec-single-event .timely-tickets-row td.ai1ec-tickets-info .ai1ec-tickets-description{color:#666;line-height:1.1;font-size:12px;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-info-inactive .ai1ec-tickets-title{text-decoration:line-through;color:#666;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-availability{font-size:12px;white-space:nowrap;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-amount{text-align:right;width:1px;}.ai1ec-single-event .timely-tickets-row .ai1ec-tickets-amount select{min-width:48px !important;}.ai1ec-single-event .ai1ec-table{border:none;table-layout:inherit;}.ai1ec-recurrence-exclude{font-size:smaller;color:#858585;}.ai1ec-multi-event,.ai1ec-excerpt{font-size:12.87px;line-height:20.25px;}.ai1ec-multi-event .ai1ec-field-label,.ai1ec-excerpt .ai1ec-field-label{margin-top:1.43px;}.ai1ec-excerpt{margin-bottom:11.25px;}.ai1ec-event-footer{color:#858585;clear:both;margin:9px 0;}#ai1ec-container{clear:both;}#ai1ec-calendar-view-container{position:relative;-webkit-transform:translateZ(0);z-index:1;}#ai1ec-calendar-view .post-edit-link{white-space:nowrap;}.ai1ec-calendar-toolbar{background-color:#fff;border:1px solid #dbdbdb;border-radius:6px;margin-bottom:8px;padding:0 8px;}.ai1ec-calendar-toolbar .ai1ec-nav{margin:0 !important;padding:0 !important;}.timely .ai1ec-calendar-toolbar .ai1ec-nav-pills > li > a{border-radius:0;}.ai1ec-calendar-toolbar.ai1ec-affix{z-index:10030;top:0;border-top-left-radius:0;border-top-right-radius:0;-webkit-transition:border-radius 0.3s;transition:border-radius 0.3s;-webkit-transition:box-shadow 0.4s;transition:box-shadow 0.4s;-webkit-box-shadow:0 3px 12px rgba(0,0,0,0.2);box-shadow:0 3px 12px rgba(0,0,0,0.2);}.ai1ec-calendar-toolbar.ai1ec-affix .ai1ec-views-dropdown{margin-bottom:4px;clear:both;}.ai1ec-calendar-toolbar.ai1ec-affix .ai1ec-clearfix{padding-top:8px;}.ai1ec-calendar-toolbar.ai1ec-empty-toolbar.ai1ec-affix-top{border:none;margin:0;}.ai1ec-title-buttons .ai1ec-btn-group{margin-left:8px;}.ai1ec-title-buttons .ai1ec-contribution-buttons{float:right;margin-top:5px;}#ai1ec-bs-modes{width:0;height:0;overflow:hidden;}.no-touch .ai1ec-calendar-toolbar .ai1ec-dropdown:hover > .ai1ec-dropdown-menu{display:block;}.ai1ec-views-dropdown{margin-left:5px;}.ai1ec-views-dropdown i{font-size:1.9em;line-height:0.75em;vertical-align:-37%;}.ai1ec-views-dropdown .ai1ec-dropdown-menu{min-width:0;}.ai1ec-category-filter .ai1ec-category{display:block;}.ai1ec-filters .ai1ec-color-swatch{height:7px;width:7px;}.ai1ec-filters .ai1ec-dropdown-toggle > i{font-size:1.25em;line-height:0.8em;vertical-align:-15%;}.ai1ec-filters .ai1ec-dropdown-menu{padding:1px 2px;}.ai1ec-tag-filter .ai1ec-dropdown-menu{max-height:250px;min-width:200px;overflow:auto;}.ai1ec-select2-filters{clear:both;}.ai1ec-select2-filters .select2-container{margin:2px 0;width:100%;}.ai1ec-clear-filter{cursor:pointer;display:none !important;}.ai1ec-dropdown.ai1ec-active > .ai1ec-dropdown-toggle > i{display:none !important;}.ai1ec-dropdown.ai1ec-active > .ai1ec-dropdown-toggle .ai1ec-clear-filter{display:inline !important;}.ai1ec-pagination > .ai1ec-btn{text-transform:uppercase;}.ai1ec-calendar-title,.ai1ec-calendar-title-short{font-size:13px;line-height:1em;}.ai1ec-calendar-title-short{display:none;}@media screen and (max-width: 767px){.ai1ec-calendar-title{display:none;}.ai1ec-calendar-title-short{display:inline;}}.ai1ec-minical-trigger{font-weight:bold !important;}.ai1ec-minical-trigger i{vertical-align:baseline;}#ai1ec-print-button i{font-size:14px;margin-top:-2px;}table.ai1ec-month-view,.ai1ec-week-view table,.ai1ec-oneday-view table{border-collapse:collapse;border:1px solid #ddd !important;margin:0 !important;background:#fff;table-layout:fixed !important;clear:both;width:100% !important;}table.ai1ec-month-view a.ai1ec-multiday,.ai1ec-week-view table a.ai1ec-multiday,.ai1ec-oneday-view table a.ai1ec-multiday{-webkit-transition:none !important;transition:none !important;}table.ai1ec-month-view{margin-bottom:6px !important;}table.ai1ec-week-view-original,table.ai1ec-oneday-view-original{visibility:hidden;height:400px;}table.ai1ec-week-view-original.tablescroll_body,table.ai1ec-oneday-view-original.tablescroll_body{visibility:visible;height:auto;}table.ai1ec-week-view-original.tablescroll_body,table.ai1ec-week-view-original.tablescroll_body tr:first-child td,table.ai1ec-oneday-view-original.tablescroll_body,table.ai1ec-oneday-view-original.tablescroll_body tr:first-child td{border-top:none !important;}.ai1ec-week-view .tablescroll_wrapper,.ai1ec-oneday-view .tablescroll_wrapper{border-bottom:1px solid #ddd;margin-bottom:6px;position:relative;width:auto !important;}.ai1ec-week-view table.tablescroll_head,.ai1ec-oneday-view table.tablescroll_head{border-bottom:none !important;}.ai1ec-week-view table.tablescroll_head th,.ai1ec-oneday-view table.tablescroll_head th{border-bottom:none !important;padding:2.48px !important;}.ai1ec-week-view .ai1ec-reveal-full-day,.ai1ec-oneday-view .ai1ec-reveal-full-day{float:right;margin:3px 3px 3px -3em;position:relative;}.ai1ec-week-view .ai1ec-day,.ai1ec-oneday-view .ai1ec-day{height:1440px;}.ai1ec-week-view th,.ai1ec-oneday-view th{position:relative;}.ai1ec-week-view th .ai1ec-weekday-date,.ai1ec-oneday-view th .ai1ec-weekday-date{font-size:15px;font-weight:normal;}.ai1ec-week-view th .ai1ec-weekday-day,.ai1ec-oneday-view th .ai1ec-weekday-day{font-size:12px;font-weight:normal;}.ai1ec-month-view td,.ai1ec-week-view td,.ai1ec-oneday-view td{border:1px solid #ddd !important;background:none !important;padding:0 !important;text-align:left;vertical-align:top;}.ai1ec-month-view th,.ai1ec-week-view th,.ai1ec-oneday-view th{border:none !important;background:#f5f5f5 !important;padding:0.2em !important;}.ai1ec-month-view td.ai1ec-empty{background:#f5f5f5 !important;}.ai1ec-month-view th,.ai1ec-week-view th,.ai1ec-week-view .ai1ec-hour-marker div,.ai1ec-week-view .ai1ec-allday-label,.ai1ec-oneday-view th,.ai1ec-oneday-view .ai1ec-hour-marker div,.ai1ec-oneday-view .ai1ec-allday-label{color:#9e9e9e !important;text-shadow:0 1px 0 #fff;}.ai1ec-month-view th,.ai1ec-oneday-view th{text-align:center !important;}.ai1ec-week-view th{text-align:left !important;}.ai1ec-month-view .ai1ec-day,.ai1ec-week-view .ai1ec-day,.ai1ec-week-view .ai1ec-allday-events,.ai1ec-oneday-view .ai1ec-day,.ai1ec-oneday-view .ai1ec-allday-events{position:relative;}.ai1ec-month-view .ai1ec-day-stretcher{float:left;height:94px;width:0;}.ai1ec-month-view .ai1ec-today,.ai1ec-week-view .ai1ec-today{background:#ffd !important;}.ai1ec-month-view .ai1ec-date{background:#eaf4ff;color:#a1a7ad;font-size:10pt;line-height:13px;height:13px;margin-bottom:1px;padding:0 0.4em;font-size:8pt;text-align:right;text-shadow:0 1px 0 #fff;}.ai1ec-week-view,.ai1ec-oneday-view{clear:both;}.ai1ec-week-view .ai1ec-grid-container,.ai1ec-oneday-view .ai1ec-grid-container{position:absolute;top:auto;left:0;right:0;}.ai1ec-week-view .ai1ec-now-marker,.ai1ec-week-view .ai1ec-hour-marker,.ai1ec-week-view .ai1ec-quarter-marker,.ai1ec-oneday-view .ai1ec-now-marker,.ai1ec-oneday-view .ai1ec-hour-marker,.ai1ec-oneday-view .ai1ec-quarter-marker{position:absolute;left:0;right:0;}.ai1ec-week-view .ai1ec-hour-marker,.ai1ec-oneday-view .ai1ec-hour-marker{border-top:1px solid #ddd;border-top:1px solid rgba(221,221,221,0.7);height:60px;background:rgba(221,221,221,0.4) !important;}.ai1ec-week-view .ai1ec-hour-marker.ai1ec-business-hour,.ai1ec-oneday-view .ai1ec-hour-marker.ai1ec-business-hour{background:none !important;}.ai1ec-week-view .ai1ec-hour-marker div,.ai1ec-week-view .ai1ec-allday-label,.ai1ec-oneday-view .ai1ec-hour-marker div,.ai1ec-oneday-view .ai1ec-allday-label{position:relative;z-index:2;margin-left:1px;padding:0 3px;font-size:8pt !important;font-weight:normal !important;background:#f5f5f5;float:left;border-radius:3px;}.ai1ec-week-view .ai1ec-allday-label,.ai1ec-oneday-view .ai1ec-allday-label{margin-top:1px;}.ai1ec-week-view .ai1ec-quarter-marker,.ai1ec-oneday-view .ai1ec-quarter-marker{border-top:1px solid #ddd;border-top:1px solid rgba(221,221,221,0.4);}.ai1ec-week-view .ai1ec-now-marker,.ai1ec-oneday-view .ai1ec-now-marker{border-top:2px solid #f2c539;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.35);box-shadow:inset 0 1px 1px rgba(0,0,0,0.35);height:4px;text-shadow:0 1px 1px rgba(0,0,0,0.4);z-index:2;}.ai1ec-week-view .ai1ec-now-marker div,.ai1ec-oneday-view .ai1ec-now-marker div{background-color:#f2c539;border-radius:0 0 3px 3px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.35);box-shadow:0 1px 1px rgba(0,0,0,0.35);color:#fff;opacity:0;filter:alpha(opacity=0);font-size:11px;float:left;padding:1px 4px;-webkit-transition:opacity 0.1s;transition:opacity 0.1s;}.ai1ec-week-view .ai1ec-now-marker:hover div,.ai1ec-oneday-view .ai1ec-now-marker:hover div{opacity:1;filter:alpha(opacity=100);}.ai1ec-month-view a.ai1ec-event-container,.ai1ec-week-view a.ai1ec-event-container,.ai1ec-oneday-view a.ai1ec-event-container{border:none;display:block;font-size:12px;opacity:0.85;filter:alpha(opacity=85);}.ai1ec-month-view a.ai1ec-event-container:hover,.ai1ec-month-view a.ai1ec-event-container.ai1ec-hover,.ai1ec-week-view a.ai1ec-event-container:hover,.ai1ec-week-view a.ai1ec-event-container.ai1ec-hover,.ai1ec-oneday-view a.ai1ec-event-container:hover,.ai1ec-oneday-view a.ai1ec-event-container.ai1ec-hover{opacity:1;filter:alpha(opacity=100);}.ai1ec-month-view .ai1ec-event,.ai1ec-week-view .ai1ec-event,.ai1ec-oneday-view .ai1ec-event{max-height:100%;overflow:hidden;margin:1px 0 0;padding:0 3px 1px;white-space:nowrap;}.ai1ec-month-view .ai1ec-event-time,.ai1ec-week-view .ai1ec-event-time,.ai1ec-oneday-view .ai1ec-event-time{font-weight:bold;font-size:11px;}.ai1ec-month-view a.ai1ec-event-container,.ai1ec-week-view .ai1ec-allday-events a.ai1ec-event-container,.ai1ec-oneday-view .ai1ec-allday-events a.ai1ec-event-container{position:relative;}.ai1ec-month-view .ai1ec-allday .ai1ec-event,.ai1ec-month-view .ai1ec-multiday .ai1ec-event,.ai1ec-week-view .ai1ec-allday-events .ai1ec-allday .ai1ec-event,.ai1ec-week-view .ai1ec-allday-events .ai1ec-multiday .ai1ec-event,.ai1ec-oneday-view .ai1ec-allday-events .ai1ec-allday .ai1ec-event,.ai1ec-oneday-view .ai1ec-allday-events .ai1ec-multiday .ai1ec-event{border-radius:3px;background-color:#3d6b99;color:#fff;text-shadow:0 1px 1px rgba(0,0,0,0.4);}.ai1ec-oneday-view a.ai1ec-event-container{margin-right:10px;}.ai1ec-oneday-view .ai1ec-allday-events a.ai1ec-event-container{margin:0 0 0 53px;}.ai1ec-week-view .ai1ec-week a.ai1ec-event-container,.ai1ec-oneday-view .ai1ec-oneday a.ai1ec-event-container{background-color:#fff;background-image:-webkit-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:-moz-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:-ms-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:-o-linear-gradient(top,#f5f8fa,#c5d3e0 120px);background-image:linear-gradient(top,#f5f8fa,#c5d3e0 120px);border:1px solid #9eb5cc;border-radius:3px;-webkit-box-shadow:1px 2px 4px rgba(0,0,0,0.15);box-shadow:1px 2px 4px rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:15px;margin:0 -1px;min-height:34px;position:absolute;right:0;text-shadow:0 1px 0 #fff;}.ai1ec-week-view .ai1ec-week a.ai1ec-event-container.ai1ec-raised,.ai1ec-oneday-view .ai1ec-oneday a.ai1ec-event-container.ai1ec-raised{z-index:5;}.ai1ec-week-view .ai1ec-week a.ai1ec-event-container:hover,.ai1ec-oneday-view .ai1ec-oneday a.ai1ec-event-container:hover{border-color:#99acc0;}.ai1ec-week-view .ai1ec-week .ai1ec-event,.ai1ec-oneday-view .ai1ec-oneday .ai1ec-event{margin:0;position:absolute;bottom:1px;left:0;right:0;top:1px;}.ai1ec-week-view .ai1ec-week .ai1ec-event-title,.ai1ec-oneday-view .ai1ec-oneday .ai1ec-event-title{display:block;white-space:normal;}.ai1ec-month-view .ai1ec-event{height:14px;line-height:14px;margin:0 0 1px;}.ai1ec-word-wrap.ai1ec-month-view .ai1ec-event{border-bottom:1px dotted #ddd;height:auto;overflow:visible;padding-top:1px;padding-bottom:2px;white-space:normal;}.ai1ec-word-wrap.ai1ec-month-view .ai1ec-multiday .ai1ec-event{border-bottom:none;overflow:hidden;padding-top:0;padding-bottom:1px;white-space:nowrap;}.ai1ec-word-wrap.ai1ec-month-view .ai1ec-allday .ai1ec-event{border-bottom:none;}.ai1ec-month-view .ai1ec-allday{padding-left:1px;width:97.5%;}.ai1ec-month-view .ai1ec-allday.ai1ec-multiday{padding-left:0;}.ai1ec-month-view .ai1ec-multiday{z-index:1;}.ai1ec-month-view .ai1ec-multiday-arrow1{background:#3d6b99;border:7px solid #fff;border-left-color:#3d6b99;border-right-width:0;height:1px;position:absolute;right:0;top:0;width:0;}.ai1ec-month-view .ai1ec-multiday-arrow2{border:7px solid #3d6b99;border-left-color:#fff;border-right-width:2px;height:1px;left:0;position:absolute;top:0;width:0;}.ai1ec-month-view .ai1ec-multiday-bar{background:#3d6b99;border-radius:3px;height:14px;left:0;position:absolute;top:0;}.ai1ec-month-view .ai1ec-multiday-bar .ai1ec-event-title{margin-left:7px;}.ai1ec-month-view .ai1ec-multiday-bar .ai1ec-event{margin:0;}.ai1ec-month-view .ai1ec-multiday-bar .ai1ec-event-time{display:none;}.ai1ec-month-view .ai1ec-event-dropdown{background:#fff;border:1px solid #e7e7e7;border-top:0;left:-1px;position:absolute;top:78px;width:90px;z-index:1000;}.ai1ec-month-view .ai1ec-obscured{display:none !important;}.ai1ec-month-view a.ai1ec-scroll-up,.ai1ec-month-view a.ai1ec-scroll-down{border:1px solid #ddd;border-radius:0.2em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;left:50%;height:16px;line-height:14px;margin-left:-8px;position:relative;text-align:center;width:16px;}.ai1ec-month-view a.ai1ec-scroll-up:hover,.ai1ec-month-view a.ai1ec-scroll-down:hover{background-color:#ddd;}.ai1ec-month-view a.ai1ec-scroll-up.ai1ec-disabled,.ai1ec-month-view a.ai1ec-scroll-down.ai1ec-disabled{border:none;cursor:default;opacity:0.2;filter:alpha(opacity=20);padding:1px;}.ai1ec-month-view a.ai1ec-scroll-up.ai1ec-disabled:hover,.ai1ec-month-view a.ai1ec-scroll-down.ai1ec-disabled:hover{background-color:transparent;}.ai1ec-oneday-view .ai1ec-start-truncated .ai1ec-event-time,.ai1ec-week-view .ai1ec-start-truncated .ai1ec-event-time{display:none;}.ai1ec-oneday-view .ai1ec-start-truncated,.ai1ec-week-view .ai1ec-start-truncated{border-top-left-radius:0;border-top-right-radius:0;}.ai1ec-oneday-view .ai1ec-end-truncated,.ai1ec-week-view .ai1ec-end-truncated{border-bottom-left-radius:0;border-bottom-right-radius:0;}.ai1ec-oneday-view .ai1ec-start-truncator,.ai1ec-oneday-view .ai1ec-end-truncator,.ai1ec-week-view .ai1ec-start-truncator,.ai1ec-week-view .ai1ec-end-truncator{position:absolute;line-height:1em;font-size:7px;text-shadow:none;opacity:0.5;filter:alpha(opacity=50);}.ai1ec-oneday-view .ai1ec-start-truncator,.ai1ec-week-view .ai1ec-start-truncator{top:-1px;left:-1px;}.ai1ec-oneday-view .ai1ec-end-truncator,.ai1ec-week-view .ai1ec-end-truncator{bottom:-1px;right:-1px;}.ai1ec-agenda-view{clear:both;overflow:hidden;margin:0 0 6px;}.ai1ec-agenda-view .ai1ec-date-events{overflow:hidden;margin:0 0.75em 0 0;}@media screen and (-webkit-min-device-pixel-ratio: 0){.ai1ec-agenda-view .ai1ec-date-events{overflow:visible;display:-webkit-flex;-webkit-flex-wrap:wrap;}}.ai1ec-agenda-view .ai1ec-date{overflow:hidden;}.ai1ec-agenda-view .ai1ec-event-toggle{float:right;font-size:14px;font-weight:bold;color:#adadad;-webkit-transition:color 0.1s;transition:color 0.1s;}.ai1ec-agenda-view .ai1ec-event-toggle .ai1ec-fa-minus-circle{display:none;}.ai1ec-agenda-view .ai1ec-event{background:#fff;border:1px solid #ccc;border-radius:0.5em;clear:right;margin:6.5px 0;overflow:hidden;position:relative;padding:0.6em;-webkit-transition:border-color 0.1s;transition:border-color 0.1s;}@media screen and (-webkit-min-device-pixel-ratio: 0){.ai1ec-agenda-view .ai1ec-event{overflow:visible;width:100%;}.ai1ec-agenda-view .ai1ec-event + .ai1ec-event{margin:0 0 6.5px 0;}}.ai1ec-agenda-view .ai1ec-event.ai1ec-expanded{border-color:#808080;-webkit-box-shadow:0 2px 4px #e0e0e0;box-shadow:0 2px 4px #e0e0e0;}.ai1ec-agenda-view .ai1ec-event.ai1ec-expanded .ai1ec-event-toggle .ai1ec-fa-minus-circle{display:inline-block;}.ai1ec-agenda-view .ai1ec-event.ai1ec-expanded .ai1ec-event-toggle .ai1ec-fa-plus-circle{display:none;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-header{cursor:pointer;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-header:hover .ai1ec-event-toggle{color:#525252;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-title{color:#3d6b99;font-weight:bold;font-size:10.5pt;margin:0 0 0.4em;-webkit-transition:color 0.1s;transition:color 0.1s;}.ai1ec-agenda-view .ai1ec-event .ai1ec-event-time{font-size:9pt;font-weight:bold;opacity:0.8;filter:alpha(opacity=80);}.ai1ec-agenda-view .ai1ec-event .post-edit-link{opacity:0;filter:alpha(opacity=0);-webkit-transition:opacity 0.1s;transition:opacity 0.1s;}.ai1ec-agenda-view .ai1ec-event:hover{border-color:#808080;}.ai1ec-agenda-view .ai1ec-event:hover .ai1ec-event-title{color:#335980;}.ai1ec-agenda-view .ai1ec-event:hover .post-edit-link{opacity:1;filter:alpha(opacity=100);}.ai1ec-agenda-view .ai1ec-event-summary{display:none;}.ai1ec-agenda-view .ai1ec-event-summary.ai1ec-expanded{display:block;}.ai1ec-agenda-view .ai1ec-event-avatar{float:left;margin:0 16px 8px 0;max-width:40%;}.ai1ec-agenda-view .ai1ec-event-avatar img{max-width:300px;max-height:300px;min-height:0;width:100%;}.ai1ec-agenda-view .ai1ec-event-description{font-size:9pt;line-height:1.5em;margin-top:9px;}.ai1ec-agenda-view .ai1ec-event-summary-footer{clear:both;padding-top:10px;}.ai1ec-agenda-view .ai1ec-event-summary-footer .ai1ec-field-label{font-size:8pt;}.ai1ec-agenda-view .ai1ec-categories,.ai1ec-agenda-view .ai1ec-tags{font-size:8pt;margin-right:0.5em;}.ai1ec-agenda-view .ai1ec-actions{float:right;margin-top:-5px;}.ai1ec-print *{background:white !important;color:black !important;}.ai1ec-print body{margin:0;text-align:left;}.ai1ec-print #wpadminbar,.ai1ec-print #comments,.ai1ec-print #page > header{display:none;}.ai1ec-print #ai1ec-container{position:absolute;left:0;top:0;width:100%;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event.ai1ec-expanded{box-shadow:none;border:2px solid gray !important;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-summary-footer{display:none;}.ai1ec-print .ai1ec-agenda-view .ai1ec-date-title{border-color:#cacaca;}.ai1ec-print .ai1ec-agenda-view .ai1ec-date-title:after{display:none;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-summary .ai1ec-event-title{display:inline;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-summary .ai1ec-event-time{display:inline;border:none !important;box-shadow:none !important;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event-description{padding:0 !important;}.ai1ec-print .ai1ec-agenda-view .ai1ec-event.ai1ec-allday .ai1ec-allday-label{border:none !important;box-shadow:none !important;padding-left:0.2em !important;}.ai1ec-print .timely .entry-meta,.ai1ec-print .timely .ai1ec-subscribe,.ai1ec-print .timely .ai1ec-subscribe-google,.ai1ec-print .ai1ec-agenda-view .ai1ec-event-expand,.ai1ec-print .ai1ec-btn-toolbar,.ai1ec-print .ai1ec-pagination,.ai1ec-print .ai1ec-calendar-toolbar,.ai1ec-print .ai1ec-read-more,.ai1ec-print .ai1ec-color-swatch,.ai1ec-print .post-edit-link,.ai1ec-print .ai1ec-event-toggle,.ai1ec-print .ai1ec-views-dropdown{display:none !important;}.ai1ec-print .ai1ec-event-header{cursor:text !important;}#ai1ec_clear_saved_view{margin-left:-4px;margin-right:5px;}.ai1ec-collapsible-toggle{cursor:pointer;}.ai1ec-subscribe-container .ai1ec-fa.ai1ec-fa-fw{width:20px;}.ai1ec-event:hover .ai1ec-sas-actions,.ai1ec-popover .ai1ec-sas-actions{display:block;white-space:nowrap;}.ai1ec-event:hover .ai1ec-sas-actions .ai1ec-sas-action,.ai1ec-popover .ai1ec-sas-actions .ai1ec-sas-action{display:inline-block;}.ai1ec-event:hover .ai1ec-sas-actions .ai1ec-sas-action-tickets,.ai1ec-popover .ai1ec-sas-actions .ai1ec-sas-action-tickets{display:none;}.ai1ec-event[data-ticket-url] .ai1ec-sas-action-tickets,.ai1ec-popover.ai1ec-has-tickets-button .ai1ec-sas-action-tickets{display:inline-block !important;}:not( .ai1ec-has-product-buy-button ) .ai1ec-event:not( [data-ticket-url] ) .ai1ec-sas-action-tickets,:not( .ai1ec-has-product-buy-button ) .ai1ec-popover:not( .ai1ec-has-tickets-button ) .ai1ec-sas-action-tickets{display:none !important;}.ai1ec-sas-actions{display:block;}.ai1ec-sas-actions .ai1ec-sas-action{display:none;border-radius:0;}.ai1ec-sas-actions .ai1ec-sas-action:hover span,.ai1ec-sas-actions .ai1ec-active > .ai1ec-sas-action span{display:inline;}.single-ai1ec_event .ai1ec-sas-actions{display:block;}.single-ai1ec_event .ai1ec-sas-actions a{text-align:center !important;}.ai1ec-sas-narrow .ai1ec-sas-save-and-share-buttons span{display:none !important;}.ai1ec-agenda-view .ai1ec-event .ai1ec-sas-actions{float:right;margin:0 10px;}@media (max-width: 992px){.ai1ec-agenda-view .ai1ec-event .ai1ec-sas-actions span{display:none !important;}}.ai1ec-posterboard-view .ai1ec-sas-actions,.ai1ec-popover .ai1ec-sas-actions{text-align:center;}.ai1ec-posterboard-view .ai1ec-sas-actions a.ai1ec-btn,.ai1ec-popover .ai1ec-sas-actions a.ai1ec-btn{float:none;}.ai1ec-posterboard-view .ai1ec-sas-action-tickets{float:left !important;margin-top:1px;}.ai1ec-stream-view .ai1ec-sas-actions{float:right;margin:0 10px;position:absolute;right:0px;}@media (max-width: 992px){.ai1ec-stream-view .ai1ec-sas-actions span{display:none !important;}}.ai1ec-stream-view .post-edit-link{margin-top:28px;}.ai1ec-month-view .ai1ec-sas-actions{display:block !important;}.ai1ec-month-view .ai1ec-sas-action{display:block !important;}.ai1ec-popup .ai1ec-sas-actions{margin:5px 0;}
|
public/themes-ai1ec/gamma/index.php
CHANGED
@@ -0,0 +1 @@
|
|
|
1 |
+
<?php ?>
|
public/themes-ai1ec/gamma/less.sha1.map.php
CHANGED
@@ -337,11 +337,6 @@
|
|
337 |
'size' => 10665,
|
338 |
'sha1' => '8d7d0d81e445093ecc58577605c36320d2741ba7',
|
339 |
),
|
340 |
-
'less\\interactive_frontend.less' =>
|
341 |
-
array (
|
342 |
-
'size' => 2790,
|
343 |
-
'sha1' => '4e0de2217f0b95f318049aff0bdc244b39e765b3',
|
344 |
-
),
|
345 |
'less\\plugins\\datepicker3.less' =>
|
346 |
array (
|
347 |
'size' => 5690,
|
@@ -392,11 +387,6 @@
|
|
392 |
'size' => 1248,
|
393 |
'sha1' => '1d7fcb0178ffdf8a57e8e9c4f2fb2c0dc70e3c7f',
|
394 |
),
|
395 |
-
'less\\venue-details.less' =>
|
396 |
-
array (
|
397 |
-
'size' => 932,
|
398 |
-
'sha1' => 'ddfc94e59e47329dcbb93c36edf5dc07587e5bf3',
|
399 |
-
),
|
400 |
'style.css' =>
|
401 |
array (
|
402 |
'size' => 1726,
|
337 |
'size' => 10665,
|
338 |
'sha1' => '8d7d0d81e445093ecc58577605c36320d2741ba7',
|
339 |
),
|
|
|
|
|
|
|
|
|
|
|
340 |
'less\\plugins\\datepicker3.less' =>
|
341 |
array (
|
342 |
'size' => 5690,
|
387 |
'size' => 1248,
|
388 |
'sha1' => '1d7fcb0178ffdf8a57e8e9c4f2fb2c0dc70e3c7f',
|
389 |
),
|
|
|
|
|
|
|
|
|
|
|
390 |
'style.css' =>
|
391 |
array (
|
392 |
'size' => 1726,
|
public/themes-ai1ec/plana/css/ai1ec_parsed_css.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@charset "UTF-8";.ai1ec-btn-lg{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.ai1ec-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}@font-face{font-family:'Timely_FontAwesome';src:url('../font/fontawesome-webfont.eot?v=4.0.3');src:url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'), url('../font/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype');font-weight:normal;font-style:normal;}.ai1ec-fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.ai1ec-fa-lg{font-size:1.3333333333333em;line-height:0.75em;vertical-align:-15%;}.ai1ec-fa-2x{font-size:2em;}.ai1ec-fa-3x{font-size:3em;}.ai1ec-fa-4x{font-size:4em;}.ai1ec-fa-5x{font-size:5em;}.ai1ec-fa-fw{width:1.2857142857143em;text-align:center;}.ai1ec-fa-ul{padding-left:0;margin-left:2.1428571428571em;list-style-type:none;}.ai1ec-fa-ul > li{position:relative;}.ai1ec-fa-li{position:absolute;left:-2.1428571428571em;width:2.1428571428571em;top:0.14285714285714em;text-align:center;}.ai1ec-fa-li.ai1ec-fa-lg{left:-1.8571428571429em;}.ai1ec-fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);}100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);}100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);}100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);}100%{transform:rotate(359deg);}}.ai1ec-fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle;}.ai1ec-fa-stack-1x,.ai1ec-fa-stack-2x{position:absolute;left:0;width:100%;text-align:center;}.ai1ec-fa-stack-1x{line-height:inherit;}.ai1ec-fa-stack-2x{font-size:2em;}.ai1ec-fa-inverse{color:#fff;}.ai1ec-fa-glass:before{content:"\f000";}.ai1ec-fa-music:before{content:"\f001";}.ai1ec-fa-search:before{content:"\f002";}.ai1ec-fa-envelope-o:before{content:"\f003";}.ai1ec-fa-heart:before{content:"\f004";}.ai1ec-fa-star:before{content:"\f005";}.ai1ec-fa-star-o:before{content:"\f006";}.ai1ec-fa-user:before{content:"\f007";}.ai1ec-fa-film:before{content:"\f008";}.ai1ec-fa-th-large:before{content:"\f009";}.ai1ec-fa-th:before{content:"\f00a";}.ai1ec-fa-th-list:before{content:"\f00b";}.ai1ec-fa-check:before{content:"\f00c";}.ai1ec-fa-times:before{content:"\f00d";}.ai1ec-fa-search-plus:before{content:"\f00e";}.ai1ec-fa-search-minus:before{content:"\f010";}.ai1ec-fa-power-off:before{content:"\f011";}.ai1ec-fa-signal:before{content:"\f012";}.ai1ec-fa-gear:before,.ai1ec-fa-cog:before{content:"\f013";}.ai1ec-fa-trash-o:before{content:"\f014";}.ai1ec-fa-home:before{content:"\f015";}.ai1ec-fa-file-o:before{content:"\f016";}.ai1ec-fa-clock-o:before{content:"\f017";}.ai1ec-fa-road:before{content:"\f018";}.ai1ec-fa-download:before{content:"\f019";}.ai1ec-fa-arrow-circle-o-down:before{content:"\f01a";}.ai1ec-fa-arrow-circle-o-up:before{content:"\f01b";}.ai1ec-fa-inbox:before{content:"\f01c";}.ai1ec-fa-play-circle-o:before{content:"\f01d";}.ai1ec-fa-rotate-right:before,.ai1ec-fa-repeat:before{content:"\f01e";}.ai1ec-fa-refresh:before{content:"\f021";}.ai1ec-fa-list-alt:before{content:"\f022";}.ai1ec-fa-lock:before{content:"\f023";}.ai1ec-fa-flag:before{content:"\f024";}.ai1ec-fa-headphones:before{content:"\f025";}.ai1ec-fa-volume-off:before{content:"\f026";}.ai1ec-fa-volume-down:before{content:"\f027";}.ai1ec-fa-volume-up:before{content:"\f028";}.ai1ec-fa-qrcode:before{content:"\f029";}.ai1ec-fa-barcode:before{content:"\f02a";}.ai1ec-fa-tag:before{content:"\f02b";}.ai1ec-fa-tags:before{content:"\f02c";}.ai1ec-fa-book:before{content:"\f02d";}.ai1ec-fa-bookmark:before{content:"\f02e";}.ai1ec-fa-print:before{content:"\f02f";}.ai1ec-fa-camera:before{content:"\f030";}.ai1ec-fa-font:before{content:"\f031";}.ai1ec-fa-bold:before{content:"\f032";}.ai1ec-fa-italic:before{content:"\f033";}.ai1ec-fa-text-height:before{content:"\f034";}.ai1ec-fa-text-width:before{content:"\f035";}.ai1ec-fa-align-left:before{content:"\f036";}.ai1ec-fa-align-center:before{content:"\f037";}.ai1ec-fa-align-right:before{content:"\f038";}.ai1ec-fa-align-justify:before{content:"\f039";}.ai1ec-fa-list:before{content:"\f03a";}.ai1ec-fa-dedent:before,.ai1ec-fa-outdent:before{content:"\f03b";}.ai1ec-fa-indent:before{content:"\f03c";}.ai1ec-fa-video-camera:before{content:"\f03d";}.ai1ec-fa-picture-o:before{content:"\f03e";}.ai1ec-fa-pencil:before{content:"\f040";}.ai1ec-fa-map-marker:before{content:"\f041";}.ai1ec-fa-adjust:before{content:"\f042";}.ai1ec-fa-tint:before{content:"\f043";}.ai1ec-fa-edit:before,.ai1ec-fa-pencil-square-o:before{content:"\f044";}.ai1ec-fa-share-square-o:before{content:"\f045";}.ai1ec-fa-check-square-o:before{content:"\f046";}.ai1ec-fa-arrows:before{content:"\f047";}.ai1ec-fa-step-backward:before{content:"\f048";}.ai1ec-fa-fast-backward:before{content:"\f049";}.ai1ec-fa-backward:before{content:"\f04a";}.ai1ec-fa-play:before{content:"\f04b";}.ai1ec-fa-pause:before{content:"\f04c";}.ai1ec-fa-stop:before{content:"\f04d";}.ai1ec-fa-forward:before{content:"\f04e";}.ai1ec-fa-fast-forward:before{content:"\f050";}.ai1ec-fa-step-forward:before{content:"\f051";}.ai1ec-fa-eject:before{content:"\f052";}.ai1ec-fa-chevron-left:before{content:"\f053";}.ai1ec-fa-chevron-right:before{content:"\f054";}.ai1ec-fa-plus-circle:before{content:"\f055";}.ai1ec-fa-minus-circle:before{content:"\f056";}.ai1ec-fa-times-circle:before{content:"\f057";}.ai1ec-fa-check-circle:before{content:"\f058";}.ai1ec-fa-question-circle:before{content:"\f059";}.ai1ec-fa-info-circle:before{content:"\f05a";}.ai1ec-fa-crosshairs:before{content:"\f05b";}.ai1ec-fa-times-circle-o:before{content:"\f05c";}.ai1ec-fa-check-circle-o:before{content:"\f05d";}.ai1ec-fa-ban:before{content:"\f05e";}.ai1ec-fa-arrow-left:before{content:"\f060";}.ai1ec-fa-arrow-right:before{content:"\f061";}.ai1ec-fa-arrow-up:before{content:"\f062";}.ai1ec-fa-arrow-down:before{content:"\f063";}.ai1ec-fa-mail-forward:before,.ai1ec-fa-share:before{content:"\f064";}.ai1ec-fa-expand:before{content:"\f065";}.ai1ec-fa-compress:before{content:"\f066";}.ai1ec-fa-plus:before{content:"\f067";}.ai1ec-fa-minus:before{content:"\f068";}.ai1ec-fa-asterisk:before{content:"\f069";}.ai1ec-fa-exclamation-circle:before{content:"\f06a";}.ai1ec-fa-gift:before{content:"\f06b";}.ai1ec-fa-leaf:before{content:"\f06c";}.ai1ec-fa-fire:before{content:"\f06d";}.ai1ec-fa-eye:before{content:"\f06e";}.ai1ec-fa-eye-slash:before{content:"\f070";}.ai1ec-fa-warning:before,.ai1ec-fa-exclamation-triangle:before{content:"\f071";}.ai1ec-fa-plane:before{content:"\f072";}.ai1ec-fa-calendar:before{content:"\f073";}.ai1ec-fa-random:before{content:"\f074";}.ai1ec-fa-comment:before{content:"\f075";}.ai1ec-fa-magnet:before{content:"\f076";}.ai1ec-fa-chevron-up:before{content:"\f077";}.ai1ec-fa-chevron-down:before{content:"\f078";}.ai1ec-fa-retweet:before{content:"\f079";}.ai1ec-fa-shopping-cart:before{content:"\f07a";}.ai1ec-fa-folder:before{content:"\f07b";}.ai1ec-fa-folder-open:before{content:"\f07c";}.ai1ec-fa-arrows-v:before{content:"\f07d";}.ai1ec-fa-arrows-h:before{content:"\f07e";}.ai1ec-fa-bar-chart-o:before{content:"\f080";}.ai1ec-fa-twitter-square:before{content:"\f081";}.ai1ec-fa-facebook-square:before{content:"\f082";}.ai1ec-fa-camera-retro:before{content:"\f083";}.ai1ec-fa-key:before{content:"\f084";}.ai1ec-fa-gears:before,.ai1ec-fa-cogs:before{content:"\f085";}.ai1ec-fa-comments:before{content:"\f086";}.ai1ec-fa-thumbs-o-up:before{content:"\f087";}.ai1ec-fa-thumbs-o-down:before{content:"\f088";}.ai1ec-fa-star-half:before{content:"\f089";}.ai1ec-fa-heart-o:before{content:"\f08a";}.ai1ec-fa-sign-out:before{content:"\f08b";}.ai1ec-fa-linkedin-square:before{content:"\f08c";}.ai1ec-fa-thumb-tack:before{content:"\f08d";}.ai1ec-fa-external-link:before{content:"\f08e";}.ai1ec-fa-sign-in:before{content:"\f090";}.ai1ec-fa-trophy:before{content:"\f091";}.ai1ec-fa-github-square:before{content:"\f092";}.ai1ec-fa-upload:before{content:"\f093";}.ai1ec-fa-lemon-o:before{content:"\f094";}.ai1ec-fa-phone:before{content:"\f095";}.ai1ec-fa-square-o:before{content:"\f096";}.ai1ec-fa-bookmark-o:before{content:"\f097";}.ai1ec-fa-phone-square:before{content:"\f098";}.ai1ec-fa-twitter:before{content:"\f099";}.ai1ec-fa-facebook:before{content:"\f09a";}.ai1ec-fa-github:before{content:"\f09b";}.ai1ec-fa-unlock:before{content:"\f09c";}.ai1ec-fa-credit-card:before{content:"\f09d";}.ai1ec-fa-rss:before{content:"\f09e";}.ai1ec-fa-hdd-o:before{content:"\f0a0";}.ai1ec-fa-bullhorn:before{content:"\f0a1";}.ai1ec-fa-bell:before{content:"\f0f3";}.ai1ec-fa-certificate:before{content:"\f0a3";}.ai1ec-fa-hand-o-right:before{content:"\f0a4";}.ai1ec-fa-hand-o-left:before{content:"\f0a5";}.ai1ec-fa-hand-o-up:before{content:"\f0a6";}.ai1ec-fa-hand-o-down:before{content:"\f0a7";}.ai1ec-fa-arrow-circle-left:before{content:"\f0a8";}.ai1ec-fa-arrow-circle-right:before{content:"\f0a9";}.ai1ec-fa-arrow-circle-up:before{content:"\f0aa";}.ai1ec-fa-arrow-circle-down:before{content:"\f0ab";}.ai1ec-fa-globe:before{content:"\f0ac";}.ai1ec-fa-wrench:before{content:"\f0ad";}.ai1ec-fa-tasks:before{content:"\f0ae";}.ai1ec-fa-filter:before{content:"\f0b0";}.ai1ec-fa-briefcase:before{content:"\f0b1";}.ai1ec-fa-arrows-alt:before{content:"\f0b2";}.ai1ec-fa-group:before,.ai1ec-fa-users:before{content:"\f0c0";}.ai1ec-fa-chain:before,.ai1ec-fa-link:before{content:"\f0c1";}.ai1ec-fa-cloud:before{content:"\f0c2";}.ai1ec-fa-flask:before{content:"\f0c3";}.ai1ec-fa-cut:before,.ai1ec-fa-scissors:before{content:"\f0c4";}.ai1ec-fa-copy:before,.ai1ec-fa-files-o:before{content:"\f0c5";}.ai1ec-fa-paperclip:before{content:"\f0c6";}.ai1ec-fa-save:before,.ai1ec-fa-floppy-o:before{content:"\f0c7";}.ai1ec-fa-square:before{content:"\f0c8";}.ai1ec-fa-bars:before{content:"\f0c9";}.ai1ec-fa-list-ul:before{content:"\f0ca";}.ai1ec-fa-list-ol:before{content:"\f0cb";}.ai1ec-fa-strikethrough:before{content:"\f0cc";}.ai1ec-fa-underline:before{content:"\f0cd";}.ai1ec-fa-table:before{content:"\f0ce";}.ai1ec-fa-magic:before{content:"\f0d0";}.ai1ec-fa-truck:before{content:"\f0d1";}.ai1ec-fa-pinterest:before{content:"\f0d2";}.ai1ec-fa-pinterest-square:before{content:"\f0d3";}.ai1ec-fa-google-plus-square:before{content:"\f0d4";}.ai1ec-fa-google-plus:before{content:"\f0d5";}.ai1ec-fa-money:before{content:"\f0d6";}.ai1ec-fa-caret-down:before{content:"\f0d7";}.ai1ec-fa-caret-up:before{content:"\f0d8";}.ai1ec-fa-caret-left:before{content:"\f0d9";}.ai1ec-fa-caret-right:before{content:"\f0da";}.ai1ec-fa-columns:before{content:"\f0db";}.ai1ec-fa-unsorted:before,.ai1ec-fa-sort:before{content:"\f0dc";}.ai1ec-fa-sort-down:before,.ai1ec-fa-sort-asc:before{content:"\f0dd";}.ai1ec-fa-sort-up:before,.ai1ec-fa-sort-desc:before{content:"\f0de";}.ai1ec-fa-envelope:before{content:"\f0e0";}.ai1ec-fa-linkedin:before{content:"\f0e1";}.ai1ec-fa-rotate-left:before,.ai1ec-fa-undo:before{content:"\f0e2";}.ai1ec-fa-legal:before,.ai1ec-fa-gavel:before{content:"\f0e3";}.ai1ec-fa-dashboard:before,.ai1ec-fa-tachometer:before{content:"\f0e4";}.ai1ec-fa-comment-o:before{content:"\f0e5";}.ai1ec-fa-comments-o:before{content:"\f0e6";}.ai1ec-fa-flash:before,.ai1ec-fa-bolt:before{content:"\f0e7";}.ai1ec-fa-sitemap:before{content:"\f0e8";}.ai1ec-fa-umbrella:before{content:"\f0e9";}.ai1ec-fa-paste:before,.ai1ec-fa-clipboard:before{content:"\f0ea";}.ai1ec-fa-lightbulb-o:before{content:"\f0eb";}.ai1ec-fa-exchange:before{content:"\f0ec";}.ai1ec-fa-cloud-download:before{content:"\f0ed";}.ai1ec-fa-cloud-upload:before{content:"\f0ee";}.ai1ec-fa-user-md:before{content:"\f0f0";}.ai1ec-fa-stethoscope:before{content:"\f0f1";}.ai1ec-fa-suitcase:before{content:"\f0f2";}.ai1ec-fa-bell-o:before{content:"\f0a2";}.ai1ec-fa-coffee:before{content:"\f0f4";}.ai1ec-fa-cutlery:before{content:"\f0f5";}.ai1ec-fa-file-text-o:before{content:"\f0f6";}.ai1ec-fa-building-o:before{content:"\f0f7";}.ai1ec-fa-hospital-o:before{content:"\f0f8";}.ai1ec-fa-ambulance:before{content:"\f0f9";}.ai1ec-fa-medkit:before{content:"\f0fa";}.ai1ec-fa-fighter-jet:before{content:"\f0fb";}.ai1ec-fa-beer:before{content:"\f0fc";}.ai1ec-fa-h-square:before{content:"\f0fd";}.ai1ec-fa-plus-square:before{content:"\f0fe";}.ai1ec-fa-angle-double-left:before{content:"\f100";}.ai1ec-fa-angle-double-right:before{content:"\f101";}.ai1ec-fa-angle-double-up:before{content:"\f102";}.ai1ec-fa-angle-double-down:before{content:"\f103";}.ai1ec-fa-angle-left:before{content:"\f104";}.ai1ec-fa-angle-right:before{content:"\f105";}.ai1ec-fa-angle-up:before{content:"\f106";}.ai1ec-fa-angle-down:before{content:"\f107";}.ai1ec-fa-desktop:before{content:"\f108";}.ai1ec-fa-laptop:before{content:"\f109";}.ai1ec-fa-tablet:before{content:"\f10a";}.ai1ec-fa-mobile-phone:before,.ai1ec-fa-mobile:before{content:"\f10b";}.ai1ec-fa-circle-o:before{content:"\f10c";}.ai1ec-fa-quote-left:before{content:"\f10d";}.ai1ec-fa-quote-right:before{content:"\f10e";}.ai1ec-fa-spinner:before{content:"\f110";}.ai1ec-fa-circle:before{content:"\f111";}.ai1ec-fa-mail-reply:before,.ai1ec-fa-reply:before{content:"\f112";}.ai1ec-fa-github-alt:before{content:"\f113";}.ai1ec-fa-folder-o:before{content:"\f114";}.ai1ec-fa-folder-open-o:before{content:"\f115";}.ai1ec-fa-smile-o:before{content:"\f118";}.ai1ec-fa-frown-o:before{content:"\f119";}.ai1ec-fa-meh-o:before{content:"\f11a";}.ai1ec-fa-gamepad:before{content:"\f11b";}.ai1ec-fa-keyboard-o:before{content:"\f11c";}.ai1ec-fa-flag-o:before{content:"\f11d";}.ai1ec-fa-flag-checkered:before{content:"\f11e";}.ai1ec-fa-terminal:before{content:"\f120";}.ai1ec-fa-code:before{content:"\f121";}.ai1ec-fa-reply-all:before{content:"\f122";}.ai1ec-fa-mail-reply-all:before{content:"\f122";}.ai1ec-fa-star-half-empty:before,.ai1ec-fa-star-half-full:before,.ai1ec-fa-star-half-o:before{content:"\f123";}.ai1ec-fa-location-arrow:before{content:"\f124";}.ai1ec-fa-crop:before{content:"\f125";}.ai1ec-fa-code-fork:before{content:"\f126";}.ai1ec-fa-unlink:before,.ai1ec-fa-chain-broken:before{content:"\f127";}.ai1ec-fa-question:before{content:"\f128";}.ai1ec-fa-info:before{content:"\f129";}.ai1ec-fa-exclamation:before{content:"\f12a";}.ai1ec-fa-superscript:before{content:"\f12b";}.ai1ec-fa-subscript:before{content:"\f12c";}.ai1ec-fa-eraser:before{content:"\f12d";}.ai1ec-fa-puzzle-piece:before{content:"\f12e";}.ai1ec-fa-microphone:before{content:"\f130";}.ai1ec-fa-microphone-slash:before{content:"\f131";}.ai1ec-fa-shield:before{content:"\f132";}.ai1ec-fa-calendar-o:before{content:"\f133";}.ai1ec-fa-fire-extinguisher:before{content:"\f134";}.ai1ec-fa-rocket:before{content:"\f135";}.ai1ec-fa-maxcdn:before{content:"\f136";}.ai1ec-fa-chevron-circle-left:before{content:"\f137";}.ai1ec-fa-chevron-circle-right:before{content:"\f138";}.ai1ec-fa-chevron-circle-up:before{content:"\f139";}.ai1ec-fa-chevron-circle-down:before{content:"\f13a";}.ai1ec-fa-html5:before{content:"\f13b";}.ai1ec-fa-css3:before{content:"\f13c";}.ai1ec-fa-anchor:before{content:"\f13d";}.ai1ec-fa-unlock-alt:before{content:"\f13e";}.ai1ec-fa-bullseye:before{content:"\f140";}.ai1ec-fa-ellipsis-h:before{content:"\f141";}.ai1ec-fa-ellipsis-v:before{content:"\f142";}.ai1ec-fa-rss-square:before{content:"\f143";}.ai1ec-fa-play-circle:before{content:"\f144";}.ai1ec-fa-ticket:before{content:"\f145";}.ai1ec-fa-minus-square:before{content:"\f146";}.ai1ec-fa-minus-square-o:before{content:"\f147";}.ai1ec-fa-level-up:before{content:"\f148";}.ai1ec-fa-level-down:before{content:"\f149";}.ai1ec-fa-check-square:before{content:"\f14a";}.ai1ec-fa-pencil-square:before{content:"\f14b";}.ai1ec-fa-external-link-square:before{content:"\f14c";}.ai1ec-fa-share-square:before{content:"\f14d";}.ai1ec-fa-compass:before{content:"\f14e";}.ai1ec-fa-toggle-down:before,.ai1ec-fa-caret-square-o-down:before{content:"\f150";}.ai1ec-fa-toggle-up:before,.ai1ec-fa-caret-square-o-up:before{content:"\f151";}.ai1ec-fa-toggle-right:before,.ai1ec-fa-caret-square-o-right:before{content:"\f152";}.ai1ec-fa-euro:before,.ai1ec-fa-eur:before{content:"\f153";}.ai1ec-fa-gbp:before{content:"\f154";}.ai1ec-fa-dollar:before,.ai1ec-fa-usd:before{content:"\f155";}.ai1ec-fa-rupee:before,.ai1ec-fa-inr:before{content:"\f156";}.ai1ec-fa-cny:before,.ai1ec-fa-rmb:before,.ai1ec-fa-yen:before,.ai1ec-fa-jpy:before{content:"\f157";}.ai1ec-fa-ruble:before,.ai1ec-fa-rouble:before,.ai1ec-fa-rub:before{content:"\f158";}.ai1ec-fa-won:before,.ai1ec-fa-krw:before{content:"\f159";}.ai1ec-fa-bitcoin:before,.ai1ec-fa-btc:before{content:"\f15a";}.ai1ec-fa-file:before{content:"\f15b";}.ai1ec-fa-file-text:before{content:"\f15c";}.ai1ec-fa-sort-alpha-asc:before{content:"\f15d";}.ai1ec-fa-sort-alpha-desc:before{content:"\f15e";}.ai1ec-fa-sort-amount-asc:before{content:"\f160";}.ai1ec-fa-sort-amount-desc:before{content:"\f161";}.ai1ec-fa-sort-numeric-asc:before{content:"\f162";}.ai1ec-fa-sort-numeric-desc:before{content:"\f163";}.ai1ec-fa-thumbs-up:before{content:"\f164";}.ai1ec-fa-thumbs-down:before{content:"\f165";}.ai1ec-fa-youtube-square:before{content:"\f166";}.ai1ec-fa-youtube:before{content:"\f167";}.ai1ec-fa-xing:before{content:"\f168";}.ai1ec-fa-xing-square:before{content:"\f169";}.ai1ec-fa-youtube-play:before{content:"\f16a";}.ai1ec-fa-dropbox:before{content:"\f16b";}.ai1ec-fa-stack-overflow:before{content:"\f16c";}.ai1ec-fa-instagram:before{content:"\f16d";}.ai1ec-fa-flickr:before{content:"\f16e";}.ai1ec-fa-adn:before{content:"\f170";}.ai1ec-fa-bitbucket:before{content:"\f171";}.ai1ec-fa-bitbucket-square:before{content:"\f172";}.ai1ec-fa-tumblr:before{content:"\f173";}.ai1ec-fa-tumblr-square:before{content:"\f174";}.ai1ec-fa-long-arrow-down:before{content:"\f175";}.ai1ec-fa-long-arrow-up:before{content:"\f176";}.ai1ec-fa-long-arrow-left:before{content:"\f177";}.ai1ec-fa-long-arrow-right:before{content:"\f178";}.ai1ec-fa-apple:before{content:"\f179";}.ai1ec-fa-windows:before{content:"\f17a";}.ai1ec-fa-android:before{content:"\f17b";}.ai1ec-fa-linux:before{content:"\f17c";}.ai1ec-fa-dribbble:before{content:"\f17d";}.ai1ec-fa-skype:before{content:"\f17e";}.ai1ec-fa-foursquare:before{content:"\f180";}.ai1ec-fa-trello:before{content:"\f181";}.ai1ec-fa-female:before{content:"\f182";}.ai1ec-fa-male:before{content:"\f183";}.ai1ec-fa-gittip:before{content:"\f184";}.ai1ec-fa-sun-o:before{content:"\f185";}.ai1ec-fa-moon-o:before{content:"\f186";}.ai1ec-fa-archive:before{content:"\f187";}.ai1ec-fa-bug:before{content:"\f188";}.ai1ec-fa-vk:before{content:"\f189";}.ai1ec-fa-weibo:before{content:"\f18a";}.ai1ec-fa-renren:before{content:"\f18b";}.ai1ec-fa-pagelines:before{content:"\f18c";}.ai1ec-fa-stack-exchange:before{content:"\f18d";}.ai1ec-fa-arrow-circle-o-right:before{content:"\f18e";}.ai1ec-fa-arrow-circle-o-left:before{content:"\f190";}.ai1ec-fa-toggle-left:before,.ai1ec-fa-caret-square-o-left:before{content:"\f191";}.ai1ec-fa-dot-circle-o:before{content:"\f192";}.ai1ec-fa-wheelchair:before{content:"\f193";}.ai1ec-fa-vimeo-square:before{content:"\f194";}.ai1ec-fa-turkish-lira:before,.ai1ec-fa-try:before{content:"\f195";}.ai1ec-fa-plus-square-o:before{content:"\f196";}.ai1ec-fa{font-family:Timely_FontAwesome;}a.ai1ec-fa.ai1ec-hide{display:none;}li .ai1ec-fa,li .ai1ec-fa-lg:before{width:auto;}.timely small.ai1ec-fa-stack{font-size:90%;height:1.53em;vertical-align:-11%;top:-0.1em;}.ai1ec-fa-stack .ai1ec-icon-timely{left:0.05em;top:-0.05em;}@font-face{font-family:'Timely Logo Icon';src:url('../font/ai1ec-icons.eot');src:url(data:application/x-font-woff;charset=utf-8;base64,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9yaKFYyGiYeHh4iHhomGiwhiiwWGi4eNh46IjomQi4+JtIGyerB6sHWrcKZwpmuhZpxmnGSVYo2Gi4eNiI+IjomQi48Ii7QFi5CNkI+Ojo+PjJCLCIyLBb2Ju4C4drl3tG+uZ69op2KfXp9dl1uNWQgOZ/eOyBWLj4uPio+Kj4qOio6KjoqPiI6Jj4mNiY6KjYiOiI6Hj4mNiY2JjIiOh46GjoiNiowIiY2IjYaOh46IjYqMh4uHjISLgYuBioGKgYmBiYCHgYiBh4OFg4aFhIaChYKJgYt/CIt+joCSgZKAlIOWhpaFloaXiZeIl4mXi5eLlYyVjpaNlI+UkJSQkpKQlJGUjZWLlwhp94sVi5aJl4iYiJiHl4WXhZeDlYGTgZN/j3+LeYt9hIJ+gX6Ge4t5i4KMgo2BjYGPgY+BCJCBkIKRg5KDkoWUhpOGlYmUi56LmJCUl5OWj5uLnghm9xsV9xCLZXVkiwWZgpV/k3ySe497i3uLfIl/hoCHgIaChIWFhIWFhIWFhoaFhoWHhYmEi4SLhoyHj4YIjoaPh5CGkIeQhpKGkYeRhZGGkYWRhJCFkISPg46BjoKNgYuAi219cHFzbnJjf1iLCH+LgIx/jYCNf46Aj3+QgZCCkoKSg5OGlYWWiJaLmIuXj5iSmZGXlJWXlJeUmZKakAibj5qPmY2ZjZmMmox+m4WZi5eLjouNjI2LjYyNi42MjIyNjI6MjYuNjI2DioSKhosIbotzlXeddp6Bo4uni6WUo52gnaCimaWRnY+djJ2LCPe8QhWLZ0KLi0Jni4vUQouLr9SLi9Svi4tC1IsFDvsB+CL3GRWEc39ze3NyZnN4couCi36OeZJ7kX2OfouAi32IfIR7hX+IgYtui26jb71vvH27i7kIi7eWrqCnoaemmKuLmYuciJ+Gn4WYiJGLlIuZjp2Sn5Gbj5mLoYughJ1/lISVgpV+CHx/gH+Fgn55hXeLdotzknaYeJh4mn+chggg9+MVi3+IfoV9hn2Cfn9/gICBhYGHhImBiX6KjKiSo5mgmp+ima2Ti4qLioyKi4mLiouLCIuKi4qLioyKi4qLiggOZ/dX91UVi/tO+1eli/c091eLBYv3aBWL+1D7V4uL9zUF+G/7TRWL+3X7l6+L91H3l4sFi/eOFYv7dvuXi4v3UwUO+JQU+JQViwwKAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAPF6AeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAWAAAABIAEAADAAIAAQAh5gXwc/Ce8NXxev/9//8AAAAAACDmAPBz8J7w1fF5//3//wAB/+MaBQ+YD24POA6VAAMAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAADKJX6LXw889QALAgAAAAAAz7uKWgAAAADPu4paAAD/4AIAAeAAAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAAgAAAQAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAABAAAAAgAAAgIAAFICAABSAgAADAIAAFICAABTAgAADAHcAAABkwAAAdwAAAGTAAAB3AAAAABQAAAQAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgAoAGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgAoAGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('woff'), url('../font/ai1ec-icons.eot?#iefix&v=4.0.3') format('embedded-opentype');font-weight:normal;font-style:normal;}[class^="ai1ec-icon-"]:before,[class*=" ai1ec-icon-"]:before{display:inline-block;font-family:'Timely Logo Icon';font-style:normal;font-weight:normal;speak:none;vertical-align:baseline;}.ai1ec-icon-agenda:before{content:"\e603";}.ai1ec-icon-oneday:before{content:"\e604";}.ai1ec-icon-month:before{content:"\e602";}.ai1ec-icon-week:before{content:"\e605";}.ai1ec-icon-posterboard:before{content:"\e600";}.ai1ec-icon-stream:before{content:"\e601";}.ai1ec-icon-calendar:before{content:"\f073";}.ai1ec-icon-rss:before{content:"\f09e";}.ai1ec-icon-google:before{content:"\f0d5";}.ai1ec-icon-apple:before{content:"\f179";}.ai1ec-icon-windows:before{content:"\f17a";}.ai1ec-icon-timely:before{content:"\21";}.timely-icon-timely-logomark:before{content:"\21";}.timely-icon-import-events:before{content:"\22";}.timely-icon-export-events:before{content:"\23";}.timely-icon-facebook-sync:before{content:"\24";}.timely-icon-filter-tag-category:before{content:"\25";}.timely-icon-subscribe-events:before{content:"\26";}.timely-icon-recurring-events:before{content:"\27";}.timely-icon-multiple-views:before{content:"\28";}.timely-icon-customizable-views:before{content:"\29";}.timely-icon-upcoming-events-widget:before{content:"\2a";}.timely-icon-locations-maps:before{content:"\2b";}.timely-icon-seo-optimized:before{content:"\2c";}.timely-icon-dedicated-support:before{content:"\2d";}.timely-icon-plus-sign:before{content:"\2e";}.timely-icon-minus-sign:before{content:"\2f";}.timely-icon-chevron-right:before{content:"\30";}.timely-icon-chevron-left:before{content:"\31";}.timely-icon-chevron-down:before{content:"\32";}.timely-icon-chevron-up:before{content:"\33";}.timely-icon-arrow-right:before{content:"\34";}.timely-icon-arrow-left:before{content:"\35";}.timely-icon-arrow-up:before{content:"\36";}.timely-icon-arrow-down:before{content:"\37";}.timely-icon-pencil:before{content:"\3c";}.timely-icon-gear:before{content:"\3e";}.timely-icon-tag:before{content:"\3f";}.timely-icon-forward:before{content:"\3b";}.timely-icon-close:before{content:"\3a";}.timely-icon-heart:before{content:"\3d";}.timely-icon-folder:before{content:"\40";}.timely-icon-grid:before{content:"\41";}.timely-icon-plus:before{content:"\42";}.timely-icon-minus:before{content:"\43";}.timely-icon-print:before{content:"\38";}.timely article,.timely aside,.timely details,.timely figcaption,.timely figure,.timely footer,.timely header,.timely hgroup,.timely main,.timely nav,.timely section,.timely summary{display:block;}.timely audio,.timely canvas,.timely video{display:inline-block;}.timely audio:not([controls]){display:none;height:0;}.timely [hidden],.timely template{display:none;}.timely html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}.timely body{margin:0;}.timely a{background:transparent;}.timely a:focus{outline:thin dotted;}.timely a:active,.timely a:hover{outline:0;}.timely h1{font-size:2em;margin:0.67em 0;}.timely abbr[title]{border-bottom:1px dotted;}.timely b,.timely strong{font-weight:bold;}.timely dfn{font-style:italic;}.timely hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}.timely mark{background:#ff0;color:#000;}.timely code,.timely kbd,.timely pre,.timely samp{font-family:monospace, serif;font-size:1em;}.timely pre{white-space:pre-wrap;}.timely q{quotes:"\201C" "\201D" "\2018" "\2019";}.timely small{font-size:80%;}.timely sub,.timely sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}.timely sup{top:-0.5em;}.timely sub{bottom:-0.25em;}.timely img{border:0;}.timely svg:not(:root){overflow:hidden;}.timely figure{margin:0;}.timely fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}.timely legend{border:0;padding:0;}.timely button,.timely input,.timely select,.timely textarea{font-family:inherit;font-size:100%;margin:0;}.timely button,.timely input{line-height:normal;}.timely button,.timely select{text-transform:none;}.timely button,.timely html input[type="button"],.timely input[type="reset"],.timely input[type="submit"]{-webkit-appearance:button;cursor:pointer;}.timely button[disabled],.timely html input[disabled]{cursor:default;}.timely input[type="checkbox"],.timely input[type="radio"]{box-sizing:border-box;padding:0;}.timely input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.timely input[type="search"]::-webkit-search-cancel-button,.timely input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}.timely button::-moz-focus-inner,.timely input::-moz-focus-inner{border:0;padding:0;}.timely textarea{overflow:auto;vertical-align:top;}.timely table{border-collapse:collapse;border-spacing:0;}@media print{.timely *{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important;}.timely a,.timely a:visited{text-decoration:underline;}.timely a[href]:after{content:" (" attr(href) ")";}.timely abbr[title]:after{content:" (" attr(title) ")";}.timely a[href^="javascript:"]:after,.timely a[href^="#"]:after{content:"";}.timely pre,.timely blockquote{border:1px solid #999;page-break-inside:avoid;}.timely thead{display:table-header-group;}.timely tr,.timely img{page-break-inside:avoid;}.timely img{max-width:100% !important;}@page{margin:2cm .5cm;}.timely p,.timely h2,.timely h3{orphans:3;widows:3;}.timely h2,.timely h3{page-break-after:avoid;}.timely select{background:#fff !important;}.timely .ai1ec-navbar{display:none;}.timely .ai1ec-table td,.timely .ai1ec-table th{background-color:#fff !important;}.timely .ai1ec-btn > .ai1ec-caret,.timely .ai1ec-dropup > .ai1ec-btn > .ai1ec-caret{border-top-color:#000 !important;}.timely .ai1ec-label{border:1px solid #000;}.timely .ai1ec-table{border-collapse:collapse !important;}.timely .ai1ec-table-bordered th,.timely .ai1ec-table-bordered td{border:1px solid #ddd !important;}}.timely *,.timely *:before,.timely *:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.timely html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0);}.timely body{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:13px;line-height:1.428571429;color:#333;background-color:#fff;}.timely input,.timely button,.timely select,.timely textarea{font-family:inherit;font-size:inherit;line-height:inherit;}.timely a{color:#3d6b99;text-decoration:none;}.timely a:hover,.timely a:focus{color:#335980;text-decoration:underline;}.timely a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely img{vertical-align:middle;}.timely .ai1ec-img-responsive{display:block;max-width:100%;height:auto;}.timely .ai1ec-img-rounded{border-radius:6px;}.timely .ai1ec-img-thumbnail{padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto;}.timely .ai1ec-img-circle{border-radius:50%;}.timely hr{margin-top:18px;margin-bottom:18px;border:0;border-top:1px solid #eee;}.timely .ai1ec-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;}.ai1ec-container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;}.ai1ec-container:before,.ai1ec-container:after{content:" ";display:table;}.ai1ec-container:after{clear:both;}.ai1ec-container:before,.ai1ec-container:after{content:" ";display:table;}.ai1ec-container:after{clear:both;}@media (min-width: 768px){.ai1ec-container{width:750px;}}@media (min-width: 992px){.ai1ec-container{width:970px;}}@media (min-width: 1200px){.ai1ec-container{width:1170px;}}.ai1ec-row{margin-left:-15px;margin-right:-15px;}.ai1ec-row:before,.ai1ec-row:after{content:" ";display:table;}.ai1ec-row:after{clear:both;}.ai1ec-row:before,.ai1ec-row:after{content:" ";display:table;}.ai1ec-row:after{clear:both;}.ai1ec-col-xs-1, .ai1ec-col-sm-1, .ai1ec-col-md-1, .ai1ec-col-lg-1, .ai1ec-col-xs-2, .ai1ec-col-sm-2, .ai1ec-col-md-2, .ai1ec-col-lg-2, .ai1ec-col-xs-3, .ai1ec-col-sm-3, .ai1ec-col-md-3, .ai1ec-col-lg-3, .ai1ec-col-xs-4, .ai1ec-col-sm-4, .ai1ec-col-md-4, .ai1ec-col-lg-4, .ai1ec-col-xs-5, .ai1ec-col-sm-5, .ai1ec-col-md-5, .ai1ec-col-lg-5, .ai1ec-col-xs-6, .ai1ec-col-sm-6, .ai1ec-col-md-6, .ai1ec-col-lg-6, .ai1ec-col-xs-7, .ai1ec-col-sm-7, .ai1ec-col-md-7, .ai1ec-col-lg-7, .ai1ec-col-xs-8, .ai1ec-col-sm-8, .ai1ec-col-md-8, .ai1ec-col-lg-8, .ai1ec-col-xs-9, .ai1ec-col-sm-9, .ai1ec-col-md-9, .ai1ec-col-lg-9, .ai1ec-col-xs-10, .ai1ec-col-sm-10, .ai1ec-col-md-10, .ai1ec-col-lg-10, .ai1ec-col-xs-11, .ai1ec-col-sm-11, .ai1ec-col-md-11, .ai1ec-col-lg-11, .ai1ec-col-xs-12, .ai1ec-col-sm-12, .ai1ec-col-md-12, .ai1ec-col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px;}.ai1ec-col-xs-1, .ai1ec-col-xs-2, .ai1ec-col-xs-3, .ai1ec-col-xs-4, .ai1ec-col-xs-5, .ai1ec-col-xs-6, .ai1ec-col-xs-7, .ai1ec-col-xs-8, .ai1ec-col-xs-9, .ai1ec-col-xs-10, .ai1ec-col-xs-11, .ai1ec-col-xs-12{float:left;}.ai1ec-col-xs-12{width:100%;}.ai1ec-col-xs-11{width:91.666666666667%;}.ai1ec-col-xs-10{width:83.333333333333%;}.ai1ec-col-xs-9{width:75%;}.ai1ec-col-xs-8{width:66.666666666667%;}.ai1ec-col-xs-7{width:58.333333333333%;}.ai1ec-col-xs-6{width:50%;}.ai1ec-col-xs-5{width:41.666666666667%;}.ai1ec-col-xs-4{width:33.333333333333%;}.ai1ec-col-xs-3{width:25%;}.ai1ec-col-xs-2{width:16.666666666667%;}.ai1ec-col-xs-1{width:8.3333333333333%;}.ai1ec-col-xs-pull-12{right:100%;}.ai1ec-col-xs-pull-11{right:91.666666666667%;}.ai1ec-col-xs-pull-10{right:83.333333333333%;}.ai1ec-col-xs-pull-9{right:75%;}.ai1ec-col-xs-pull-8{right:66.666666666667%;}.ai1ec-col-xs-pull-7{right:58.333333333333%;}.ai1ec-col-xs-pull-6{right:50%;}.ai1ec-col-xs-pull-5{right:41.666666666667%;}.ai1ec-col-xs-pull-4{right:33.333333333333%;}.ai1ec-col-xs-pull-3{right:25%;}.ai1ec-col-xs-pull-2{right:16.666666666667%;}.ai1ec-col-xs-pull-1{right:8.3333333333333%;}.ai1ec-col-xs-pull-0{right:0%;}.ai1ec-col-xs-push-12{left:100%;}.ai1ec-col-xs-push-11{left:91.666666666667%;}.ai1ec-col-xs-push-10{left:83.333333333333%;}.ai1ec-col-xs-push-9{left:75%;}.ai1ec-col-xs-push-8{left:66.666666666667%;}.ai1ec-col-xs-push-7{left:58.333333333333%;}.ai1ec-col-xs-push-6{left:50%;}.ai1ec-col-xs-push-5{left:41.666666666667%;}.ai1ec-col-xs-push-4{left:33.333333333333%;}.ai1ec-col-xs-push-3{left:25%;}.ai1ec-col-xs-push-2{left:16.666666666667%;}.ai1ec-col-xs-push-1{left:8.3333333333333%;}.ai1ec-col-xs-push-0{left:0%;}.ai1ec-col-xs-offset-12{margin-left:100%;}.ai1ec-col-xs-offset-11{margin-left:91.666666666667%;}.ai1ec-col-xs-offset-10{margin-left:83.333333333333%;}.ai1ec-col-xs-offset-9{margin-left:75%;}.ai1ec-col-xs-offset-8{margin-left:66.666666666667%;}.ai1ec-col-xs-offset-7{margin-left:58.333333333333%;}.ai1ec-col-xs-offset-6{margin-left:50%;}.ai1ec-col-xs-offset-5{margin-left:41.666666666667%;}.ai1ec-col-xs-offset-4{margin-left:33.333333333333%;}.ai1ec-col-xs-offset-3{margin-left:25%;}.ai1ec-col-xs-offset-2{margin-left:16.666666666667%;}.ai1ec-col-xs-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-xs-offset-0{margin-left:0%;}@media (min-width: 768px){.ai1ec-col-sm-1, .ai1ec-col-sm-2, .ai1ec-col-sm-3, .ai1ec-col-sm-4, .ai1ec-col-sm-5, .ai1ec-col-sm-6, .ai1ec-col-sm-7, .ai1ec-col-sm-8, .ai1ec-col-sm-9, .ai1ec-col-sm-10, .ai1ec-col-sm-11, .ai1ec-col-sm-12{float:left;}.ai1ec-col-sm-12{width:100%;}.ai1ec-col-sm-11{width:91.666666666667%;}.ai1ec-col-sm-10{width:83.333333333333%;}.ai1ec-col-sm-9{width:75%;}.ai1ec-col-sm-8{width:66.666666666667%;}.ai1ec-col-sm-7{width:58.333333333333%;}.ai1ec-col-sm-6{width:50%;}.ai1ec-col-sm-5{width:41.666666666667%;}.ai1ec-col-sm-4{width:33.333333333333%;}.ai1ec-col-sm-3{width:25%;}.ai1ec-col-sm-2{width:16.666666666667%;}.ai1ec-col-sm-1{width:8.3333333333333%;}.ai1ec-col-sm-pull-12{right:100%;}.ai1ec-col-sm-pull-11{right:91.666666666667%;}.ai1ec-col-sm-pull-10{right:83.333333333333%;}.ai1ec-col-sm-pull-9{right:75%;}.ai1ec-col-sm-pull-8{right:66.666666666667%;}.ai1ec-col-sm-pull-7{right:58.333333333333%;}.ai1ec-col-sm-pull-6{right:50%;}.ai1ec-col-sm-pull-5{right:41.666666666667%;}.ai1ec-col-sm-pull-4{right:33.333333333333%;}.ai1ec-col-sm-pull-3{right:25%;}.ai1ec-col-sm-pull-2{right:16.666666666667%;}.ai1ec-col-sm-pull-1{right:8.3333333333333%;}.ai1ec-col-sm-pull-0{right:0%;}.ai1ec-col-sm-push-12{left:100%;}.ai1ec-col-sm-push-11{left:91.666666666667%;}.ai1ec-col-sm-push-10{left:83.333333333333%;}.ai1ec-col-sm-push-9{left:75%;}.ai1ec-col-sm-push-8{left:66.666666666667%;}.ai1ec-col-sm-push-7{left:58.333333333333%;}.ai1ec-col-sm-push-6{left:50%;}.ai1ec-col-sm-push-5{left:41.666666666667%;}.ai1ec-col-sm-push-4{left:33.333333333333%;}.ai1ec-col-sm-push-3{left:25%;}.ai1ec-col-sm-push-2{left:16.666666666667%;}.ai1ec-col-sm-push-1{left:8.3333333333333%;}.ai1ec-col-sm-push-0{left:0%;}.ai1ec-col-sm-offset-12{margin-left:100%;}.ai1ec-col-sm-offset-11{margin-left:91.666666666667%;}.ai1ec-col-sm-offset-10{margin-left:83.333333333333%;}.ai1ec-col-sm-offset-9{margin-left:75%;}.ai1ec-col-sm-offset-8{margin-left:66.666666666667%;}.ai1ec-col-sm-offset-7{margin-left:58.333333333333%;}.ai1ec-col-sm-offset-6{margin-left:50%;}.ai1ec-col-sm-offset-5{margin-left:41.666666666667%;}.ai1ec-col-sm-offset-4{margin-left:33.333333333333%;}.ai1ec-col-sm-offset-3{margin-left:25%;}.ai1ec-col-sm-offset-2{margin-left:16.666666666667%;}.ai1ec-col-sm-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-sm-offset-0{margin-left:0%;}}@media (min-width: 992px){.ai1ec-col-md-1, .ai1ec-col-md-2, .ai1ec-col-md-3, .ai1ec-col-md-4, .ai1ec-col-md-5, .ai1ec-col-md-6, .ai1ec-col-md-7, .ai1ec-col-md-8, .ai1ec-col-md-9, .ai1ec-col-md-10, .ai1ec-col-md-11, .ai1ec-col-md-12{float:left;}.ai1ec-col-md-12{width:100%;}.ai1ec-col-md-11{width:91.666666666667%;}.ai1ec-col-md-10{width:83.333333333333%;}.ai1ec-col-md-9{width:75%;}.ai1ec-col-md-8{width:66.666666666667%;}.ai1ec-col-md-7{width:58.333333333333%;}.ai1ec-col-md-6{width:50%;}.ai1ec-col-md-5{width:41.666666666667%;}.ai1ec-col-md-4{width:33.333333333333%;}.ai1ec-col-md-3{width:25%;}.ai1ec-col-md-2{width:16.666666666667%;}.ai1ec-col-md-1{width:8.3333333333333%;}.ai1ec-col-md-pull-12{right:100%;}.ai1ec-col-md-pull-11{right:91.666666666667%;}.ai1ec-col-md-pull-10{right:83.333333333333%;}.ai1ec-col-md-pull-9{right:75%;}.ai1ec-col-md-pull-8{right:66.666666666667%;}.ai1ec-col-md-pull-7{right:58.333333333333%;}.ai1ec-col-md-pull-6{right:50%;}.ai1ec-col-md-pull-5{right:41.666666666667%;}.ai1ec-col-md-pull-4{right:33.333333333333%;}.ai1ec-col-md-pull-3{right:25%;}.ai1ec-col-md-pull-2{right:16.666666666667%;}.ai1ec-col-md-pull-1{right:8.3333333333333%;}.ai1ec-col-md-pull-0{right:0%;}.ai1ec-col-md-push-12{left:100%;}.ai1ec-col-md-push-11{left:91.666666666667%;}.ai1ec-col-md-push-10{left:83.333333333333%;}.ai1ec-col-md-push-9{left:75%;}.ai1ec-col-md-push-8{left:66.666666666667%;}.ai1ec-col-md-push-7{left:58.333333333333%;}.ai1ec-col-md-push-6{left:50%;}.ai1ec-col-md-push-5{left:41.666666666667%;}.ai1ec-col-md-push-4{left:33.333333333333%;}.ai1ec-col-md-push-3{left:25%;}.ai1ec-col-md-push-2{left:16.666666666667%;}.ai1ec-col-md-push-1{left:8.3333333333333%;}.ai1ec-col-md-push-0{left:0%;}.ai1ec-col-md-offset-12{margin-left:100%;}.ai1ec-col-md-offset-11{margin-left:91.666666666667%;}.ai1ec-col-md-offset-10{margin-left:83.333333333333%;}.ai1ec-col-md-offset-9{margin-left:75%;}.ai1ec-col-md-offset-8{margin-left:66.666666666667%;}.ai1ec-col-md-offset-7{margin-left:58.333333333333%;}.ai1ec-col-md-offset-6{margin-left:50%;}.ai1ec-col-md-offset-5{margin-left:41.666666666667%;}.ai1ec-col-md-offset-4{margin-left:33.333333333333%;}.ai1ec-col-md-offset-3{margin-left:25%;}.ai1ec-col-md-offset-2{margin-left:16.666666666667%;}.ai1ec-col-md-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-md-offset-0{margin-left:0%;}}@media (min-width: 1200px){.ai1ec-col-lg-1, .ai1ec-col-lg-2, .ai1ec-col-lg-3, .ai1ec-col-lg-4, .ai1ec-col-lg-5, .ai1ec-col-lg-6, .ai1ec-col-lg-7, .ai1ec-col-lg-8, .ai1ec-col-lg-9, .ai1ec-col-lg-10, .ai1ec-col-lg-11, .ai1ec-col-lg-12{float:left;}.ai1ec-col-lg-12{width:100%;}.ai1ec-col-lg-11{width:91.666666666667%;}.ai1ec-col-lg-10{width:83.333333333333%;}.ai1ec-col-lg-9{width:75%;}.ai1ec-col-lg-8{width:66.666666666667%;}.ai1ec-col-lg-7{width:58.333333333333%;}.ai1ec-col-lg-6{width:50%;}.ai1ec-col-lg-5{width:41.666666666667%;}.ai1ec-col-lg-4{width:33.333333333333%;}.ai1ec-col-lg-3{width:25%;}.ai1ec-col-lg-2{width:16.666666666667%;}.ai1ec-col-lg-1{width:8.3333333333333%;}.ai1ec-col-lg-pull-12{right:100%;}.ai1ec-col-lg-pull-11{right:91.666666666667%;}.ai1ec-col-lg-pull-10{right:83.333333333333%;}.ai1ec-col-lg-pull-9{right:75%;}.ai1ec-col-lg-pull-8{right:66.666666666667%;}.ai1ec-col-lg-pull-7{right:58.333333333333%;}.ai1ec-col-lg-pull-6{right:50%;}.ai1ec-col-lg-pull-5{right:41.666666666667%;}.ai1ec-col-lg-pull-4{right:33.333333333333%;}.ai1ec-col-lg-pull-3{right:25%;}.ai1ec-col-lg-pull-2{right:16.666666666667%;}.ai1ec-col-lg-pull-1{right:8.3333333333333%;}.ai1ec-col-lg-pull-0{right:0%;}.ai1ec-col-lg-push-12{left:100%;}.ai1ec-col-lg-push-11{left:91.666666666667%;}.ai1ec-col-lg-push-10{left:83.333333333333%;}.ai1ec-col-lg-push-9{left:75%;}.ai1ec-col-lg-push-8{left:66.666666666667%;}.ai1ec-col-lg-push-7{left:58.333333333333%;}.ai1ec-col-lg-push-6{left:50%;}.ai1ec-col-lg-push-5{left:41.666666666667%;}.ai1ec-col-lg-push-4{left:33.333333333333%;}.ai1ec-col-lg-push-3{left:25%;}.ai1ec-col-lg-push-2{left:16.666666666667%;}.ai1ec-col-lg-push-1{left:8.3333333333333%;}.ai1ec-col-lg-push-0{left:0%;}.ai1ec-col-lg-offset-12{margin-left:100%;}.ai1ec-col-lg-offset-11{margin-left:91.666666666667%;}.ai1ec-col-lg-offset-10{margin-left:83.333333333333%;}.ai1ec-col-lg-offset-9{margin-left:75%;}.ai1ec-col-lg-offset-8{margin-left:66.666666666667%;}.ai1ec-col-lg-offset-7{margin-left:58.333333333333%;}.ai1ec-col-lg-offset-6{margin-left:50%;}.ai1ec-col-lg-offset-5{margin-left:41.666666666667%;}.ai1ec-col-lg-offset-4{margin-left:33.333333333333%;}.ai1ec-col-lg-offset-3{margin-left:25%;}.ai1ec-col-lg-offset-2{margin-left:16.666666666667%;}.ai1ec-col-lg-offset-1{margin-left:8.3333333333333%;}.ai1ec-col-lg-offset-0{margin-left:0%;}}.timely fieldset{padding:0;margin:0;border:0;}.timely legend{display:block;width:100%;padding:0;margin-bottom:18px;font-size:19.5px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5;}.timely label{display:inline-block;margin-bottom:5px;font-weight:bold;}.timely input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.timely input[type="radio"],.timely input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal;}.timely input[type="file"]{display:block;}.timely select[multiple],.timely select[size]{height:auto;}.timely select optgroup{font-size:inherit;font-style:inherit;font-family:inherit;}.timely input[type="file"]:focus,.timely input[type="radio"]:focus,.timely input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely input[type="number"]::-webkit-outer-spin-button,.timely input[type="number"]::-webkit-inner-spin-button{height:auto;}.timely output{display:block;padding-top:7px;font-size:13px;line-height:1.428571429;color:#555;vertical-align:middle;}.timely .ai1ec-form-control{display:block;width:100%;height:32px;padding:6px 12px;font-size:13px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;}.timely .ai1ec-form-control:focus{border-color:rgba(82,168,236,0.8);outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,0.6);}.timely .ai1ec-form-control:-moz-placeholder{color:#999;}.timely .ai1ec-form-control::-moz-placeholder{color:#999;opacity:1;}.timely .ai1ec-form-control:-ms-input-placeholder{color:#999;}.timely .ai1ec-form-control::-webkit-input-placeholder{color:#999;}.timely .ai1ec-form-control[disabled],.timely .ai1ec-form-control[readonly],fieldset[disabled] .timely .ai1ec-form-control{cursor:not-allowed;background-color:#eee;}textarea.timely .ai1ec-form-control{height:auto;}.timely .ai1ec-form-group{margin-bottom:15px;}.timely .ai1ec-radio,.timely .ai1ec-checkbox{display:block;min-height:18px;margin-top:10px;margin-bottom:10px;padding-left:20px;vertical-align:middle;}.timely .ai1ec-radio label,.timely .ai1ec-checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer;}.timely .ai1ec-radio input[type="radio"],.timely .ai1ec-radio-inline input[type="radio"],.timely .ai1ec-checkbox input[type="checkbox"],.timely .ai1ec-checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px;}.timely .ai1ec-radio + .ai1ec-radio,.timely .ai1ec-checkbox + .ai1ec-checkbox{margin-top:-5px;}.timely .ai1ec-radio-inline,.timely .ai1ec-checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer;}.timely .ai1ec-radio-inline + .ai1ec-radio-inline,.timely .ai1ec-checkbox-inline + .ai1ec-checkbox-inline{margin-top:0;margin-left:10px;}.timely input[type="radio"][disabled],fieldset[disabled] .timely input[type="radio"],.timely input[type="checkbox"][disabled],fieldset[disabled] .timely input[type="checkbox"],.timely .ai1ec-radio[disabled],fieldset[disabled] .timely .ai1ec-radio,.timely .ai1ec-radio-inline[disabled],fieldset[disabled] .timely .ai1ec-radio-inline,.timely .ai1ec-checkbox[disabled],fieldset[disabled] .timely .ai1ec-checkbox,.timely .ai1ec-checkbox-inline[disabled],fieldset[disabled] .timely .ai1ec-checkbox-inline{cursor:not-allowed;}.timely .ai1ec-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}select.timely .ai1ec-input-sm{height:30px;line-height:30px;}textarea.timely .ai1ec-input-sm{height:auto;}.timely .ai1ec-input-lg{height:45px;padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}select.timely .ai1ec-input-lg{height:45px;line-height:45px;}textarea.timely .ai1ec-input-lg{height:auto;}.timely .ai1ec-has-warning .ai1ec-help-block,.timely .ai1ec-has-warning .ai1ec-control-label,.timely .ai1ec-has-warning .ai1ec-radio,.timely .ai1ec-has-warning .ai1ec-checkbox,.timely .ai1ec-has-warning .ai1ec-radio-inline,.timely .ai1ec-has-warning .ai1ec-checkbox-inline{color:#8a6d3b;}.timely .ai1ec-has-warning .ai1ec-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-warning .ai1ec-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #c0a16b;}.timely .ai1ec-has-warning .ai1ec-input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3;}.timely .ai1ec-has-error .ai1ec-help-block,.timely .ai1ec-has-error .ai1ec-control-label,.timely .ai1ec-has-error .ai1ec-radio,.timely .ai1ec-has-error .ai1ec-checkbox,.timely .ai1ec-has-error .ai1ec-radio-inline,.timely .ai1ec-has-error .ai1ec-checkbox-inline{color:#a94442;}.timely .ai1ec-has-error .ai1ec-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-error .ai1ec-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #ce8483;}.timely .ai1ec-has-error .ai1ec-input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede;}.timely .ai1ec-has-success .ai1ec-help-block,.timely .ai1ec-has-success .ai1ec-control-label,.timely .ai1ec-has-success .ai1ec-radio,.timely .ai1ec-has-success .ai1ec-checkbox,.timely .ai1ec-has-success .ai1ec-radio-inline,.timely .ai1ec-has-success .ai1ec-checkbox-inline{color:#3c763d;}.timely .ai1ec-has-success .ai1ec-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);}.timely .ai1ec-has-success .ai1ec-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075), 0 0 6px #67b168;}.timely .ai1ec-has-success .ai1ec-input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8;}.timely .ai1ec-form-control-static{margin-bottom:0;}.timely .ai1ec-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373;}@media (min-width: 768px){.timely .ai1ec-form-inline .ai1ec-form-group{display:inline-block;margin-bottom:0;vertical-align:middle;}.timely .ai1ec-form-inline .ai1ec-form-control{display:inline-block;}.timely .ai1ec-form-inline select.ai1ec-form-control{width:auto;}.timely .ai1ec-form-inline .ai1ec-radio,.timely .ai1ec-form-inline .ai1ec-checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;}.timely .ai1ec-form-inline .ai1ec-radio input[type="radio"],.timely .ai1ec-form-inline .ai1ec-checkbox input[type="checkbox"]{float:none;margin-left:0;}}.timely .ai1ec-form-horizontal .ai1ec-control-label,.timely .ai1ec-form-horizontal .ai1ec-radio,.timely .ai1ec-form-horizontal .ai1ec-checkbox,.timely .ai1ec-form-horizontal .ai1ec-radio-inline,.timely .ai1ec-form-horizontal .ai1ec-checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px;}.timely .ai1ec-form-horizontal .ai1ec-radio,.timely .ai1ec-form-horizontal .ai1ec-checkbox{min-height:25px;}.timely .ai1ec-form-horizontal .ai1ec-form-group{margin-left:-15px;margin-right:-15px;}.timely .ai1ec-form-horizontal .ai1ec-form-group:before,.timely .ai1ec-form-horizontal .ai1ec-form-group:after{content:" ";display:table;}.timely .ai1ec-form-horizontal .ai1ec-form-group:after{clear:both;}.timely .ai1ec-form-horizontal .ai1ec-form-group:before,.timely .ai1ec-form-horizontal .ai1ec-form-group:after{content:" ";display:table;}.timely .ai1ec-form-horizontal .ai1ec-form-group:after{clear:both;}.timely .ai1ec-form-horizontal .ai1ec-form-control-static{padding-top:7px;}@media (min-width: 768px){.timely .ai1ec-form-horizontal .ai1ec-control-label{text-align:right;}}.timely .ai1ec-btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:13px;line-height:1.428571429;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.timely .ai1ec-btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}.timely .ai1ec-btn:hover,.timely .ai1ec-btn:focus{color:#333;text-decoration:none;}.timely .ai1ec-btn:active,.timely .ai1ec-btn.ai1ec-active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);}.timely .ai1ec-btn.ai1ec-disabled,.timely .ai1ec-btn[disabled],fieldset[disabled] .timely .ai1ec-btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-default{color:#333;background-color:#fff;border-color:#ccc;}.timely .ai1ec-btn-default:hover,.timely .ai1ec-btn-default:focus,.timely .ai1ec-btn-default:active,.timely .ai1ec-btn-default.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-default{color:#333;background-color:#ebebeb;border-color:#adadad;}.timely .ai1ec-btn-default:active,.timely .ai1ec-btn-default.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-default{background-image:none;}.timely .ai1ec-btn-default.ai1ec-disabled,.timely .ai1ec-btn-default.ai1ec-disabled:hover,.timely .ai1ec-btn-default.ai1ec-disabled:focus,.timely .ai1ec-btn-default.ai1ec-disabled:active,.timely .ai1ec-btn-default.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-default[disabled],.timely .ai1ec-btn-default[disabled]:hover,.timely .ai1ec-btn-default[disabled]:focus,.timely .ai1ec-btn-default[disabled]:active,.timely .ai1ec-btn-default[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-default,fieldset[disabled] .timely .ai1ec-btn-default:hover,fieldset[disabled] .timely .ai1ec-btn-default:focus,fieldset[disabled] .timely .ai1ec-btn-default:active,fieldset[disabled] .timely .ai1ec-btn-default.ai1ec-active{background-color:#fff;border-color:#ccc;}.timely .ai1ec-btn-default .ai1ec-badge{color:#fff;background-color:#fff;}.timely .ai1ec-btn-primary{color:#fff;background-color:#6dbb4f;border-color:#61ad43;}.timely .ai1ec-btn-primary:hover,.timely .ai1ec-btn-primary:focus,.timely .ai1ec-btn-primary:active,.timely .ai1ec-btn-primary.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-primary{color:#fff;background-color:#5aa23f;border-color:#488132;}.timely .ai1ec-btn-primary:active,.timely .ai1ec-btn-primary.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-primary{background-image:none;}.timely .ai1ec-btn-primary.ai1ec-disabled,.timely .ai1ec-btn-primary.ai1ec-disabled:hover,.timely .ai1ec-btn-primary.ai1ec-disabled:focus,.timely .ai1ec-btn-primary.ai1ec-disabled:active,.timely .ai1ec-btn-primary.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-primary[disabled],.timely .ai1ec-btn-primary[disabled]:hover,.timely .ai1ec-btn-primary[disabled]:focus,.timely .ai1ec-btn-primary[disabled]:active,.timely .ai1ec-btn-primary[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-primary,fieldset[disabled] .timely .ai1ec-btn-primary:hover,fieldset[disabled] .timely .ai1ec-btn-primary:focus,fieldset[disabled] .timely .ai1ec-btn-primary:active,fieldset[disabled] .timely .ai1ec-btn-primary.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.timely .ai1ec-btn-primary .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.timely .ai1ec-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236;}.timely .ai1ec-btn-warning:hover,.timely .ai1ec-btn-warning:focus,.timely .ai1ec-btn-warning:active,.timely .ai1ec-btn-warning.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512;}.timely .ai1ec-btn-warning:active,.timely .ai1ec-btn-warning.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-warning{background-image:none;}.timely .ai1ec-btn-warning.ai1ec-disabled,.timely .ai1ec-btn-warning.ai1ec-disabled:hover,.timely .ai1ec-btn-warning.ai1ec-disabled:focus,.timely .ai1ec-btn-warning.ai1ec-disabled:active,.timely .ai1ec-btn-warning.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-warning[disabled],.timely .ai1ec-btn-warning[disabled]:hover,.timely .ai1ec-btn-warning[disabled]:focus,.timely .ai1ec-btn-warning[disabled]:active,.timely .ai1ec-btn-warning[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-warning,fieldset[disabled] .timely .ai1ec-btn-warning:hover,fieldset[disabled] .timely .ai1ec-btn-warning:focus,fieldset[disabled] .timely .ai1ec-btn-warning:active,fieldset[disabled] .timely .ai1ec-btn-warning.ai1ec-active{background-color:#f0ad4e;border-color:#eea236;}.timely .ai1ec-btn-warning .ai1ec-badge{color:#f0ad4e;background-color:#fff;}.timely .ai1ec-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a;}.timely .ai1ec-btn-danger:hover,.timely .ai1ec-btn-danger:focus,.timely .ai1ec-btn-danger:active,.timely .ai1ec-btn-danger.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925;}.timely .ai1ec-btn-danger:active,.timely .ai1ec-btn-danger.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-danger{background-image:none;}.timely .ai1ec-btn-danger.ai1ec-disabled,.timely .ai1ec-btn-danger.ai1ec-disabled:hover,.timely .ai1ec-btn-danger.ai1ec-disabled:focus,.timely .ai1ec-btn-danger.ai1ec-disabled:active,.timely .ai1ec-btn-danger.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-danger[disabled],.timely .ai1ec-btn-danger[disabled]:hover,.timely .ai1ec-btn-danger[disabled]:focus,.timely .ai1ec-btn-danger[disabled]:active,.timely .ai1ec-btn-danger[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-danger,fieldset[disabled] .timely .ai1ec-btn-danger:hover,fieldset[disabled] .timely .ai1ec-btn-danger:focus,fieldset[disabled] .timely .ai1ec-btn-danger:active,fieldset[disabled] .timely .ai1ec-btn-danger.ai1ec-active{background-color:#d9534f;border-color:#d43f3a;}.timely .ai1ec-btn-danger .ai1ec-badge{color:#d9534f;background-color:#fff;}.timely .ai1ec-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c;}.timely .ai1ec-btn-success:hover,.timely .ai1ec-btn-success:focus,.timely .ai1ec-btn-success:active,.timely .ai1ec-btn-success.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-success{color:#fff;background-color:#47a447;border-color:#398439;}.timely .ai1ec-btn-success:active,.timely .ai1ec-btn-success.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-success{background-image:none;}.timely .ai1ec-btn-success.ai1ec-disabled,.timely .ai1ec-btn-success.ai1ec-disabled:hover,.timely .ai1ec-btn-success.ai1ec-disabled:focus,.timely .ai1ec-btn-success.ai1ec-disabled:active,.timely .ai1ec-btn-success.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-success[disabled],.timely .ai1ec-btn-success[disabled]:hover,.timely .ai1ec-btn-success[disabled]:focus,.timely .ai1ec-btn-success[disabled]:active,.timely .ai1ec-btn-success[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-success,fieldset[disabled] .timely .ai1ec-btn-success:hover,fieldset[disabled] .timely .ai1ec-btn-success:focus,fieldset[disabled] .timely .ai1ec-btn-success:active,fieldset[disabled] .timely .ai1ec-btn-success.ai1ec-active{background-color:#5cb85c;border-color:#4cae4c;}.timely .ai1ec-btn-success .ai1ec-badge{color:#5cb85c;background-color:#fff;}.timely .ai1ec-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da;}.timely .ai1ec-btn-info:hover,.timely .ai1ec-btn-info:focus,.timely .ai1ec-btn-info:active,.timely .ai1ec-btn-info.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc;}.timely .ai1ec-btn-info:active,.timely .ai1ec-btn-info.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.timely .ai1ec-btn-info{background-image:none;}.timely .ai1ec-btn-info.ai1ec-disabled,.timely .ai1ec-btn-info.ai1ec-disabled:hover,.timely .ai1ec-btn-info.ai1ec-disabled:focus,.timely .ai1ec-btn-info.ai1ec-disabled:active,.timely .ai1ec-btn-info.ai1ec-disabled.ai1ec-active,.timely .ai1ec-btn-info[disabled],.timely .ai1ec-btn-info[disabled]:hover,.timely .ai1ec-btn-info[disabled]:focus,.timely .ai1ec-btn-info[disabled]:active,.timely .ai1ec-btn-info[disabled].ai1ec-active,fieldset[disabled] .timely .ai1ec-btn-info,fieldset[disabled] .timely .ai1ec-btn-info:hover,fieldset[disabled] .timely .ai1ec-btn-info:focus,fieldset[disabled] .timely .ai1ec-btn-info:active,fieldset[disabled] .timely .ai1ec-btn-info.ai1ec-active{background-color:#5bc0de;border-color:#46b8da;}.timely .ai1ec-btn-info .ai1ec-badge{color:#5bc0de;background-color:#fff;}.timely .ai1ec-btn-inactive{cursor:default;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-link{color:#3d6b99;font-weight:normal;cursor:pointer;border-radius:0;}.timely .ai1ec-btn-link,.timely .ai1ec-btn-link:active,.timely .ai1ec-btn-link[disabled],fieldset[disabled] .timely .ai1ec-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none;}.timely .ai1ec-btn-link,.timely .ai1ec-btn-link:hover,.timely .ai1ec-btn-link:focus,.timely .ai1ec-btn-link:active{border-color:transparent;}.timely .ai1ec-btn-link:hover,.timely .ai1ec-btn-link:focus{color:#335980;text-decoration:underline;background-color:transparent;}.timely .ai1ec-btn-link[disabled]:hover,.timely .ai1ec-btn-link[disabled]:focus,fieldset[disabled] .timely .ai1ec-btn-link:hover,fieldset[disabled] .timely .ai1ec-btn-link:focus{color:#999;text-decoration:none;}.timely .ai1ec-btn-lg{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.timely .ai1ec-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.timely .ai1ec-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}.timely .ai1ec-btn-block{display:block;width:100%;padding-left:0;padding-right:0;}.timely .ai1ec-btn-block + .ai1ec-btn-block{margin-top:5px;}.timely input[type="submit"].ai1ec-btn-block,.timely input[type="reset"].ai1ec-btn-block,.timely input[type="button"].ai1ec-btn-block{width:100%;}.timely h1,.timely h2,.timely h3,.timely h4,.timely h5,.timely h6,.timely .ai1ec-h1,.timely .ai1ec-h2,.timely .ai1ec-h3,.timely .ai1ec-h4,.timely .ai1ec-h5,.timely .ai1ec-h6{font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-weight:500;line-height:1.1;color:;}.timely h1 small,.timely h1 .ai1ec-small,.timely h2 small,.timely h2 .ai1ec-small,.timely h3 small,.timely h3 .ai1ec-small,.timely h4 small,.timely h4 .ai1ec-small,.timely h5 small,.timely h5 .ai1ec-small,.timely h6 small,.timely h6 .ai1ec-small,.timely .ai1ec-h1 small,.timely .ai1ec-h1 .ai1ec-small,.timely .ai1ec-h2 small,.timely .ai1ec-h2 .ai1ec-small,.timely .ai1ec-h3 small,.timely .ai1ec-h3 .ai1ec-small,.timely .ai1ec-h4 small,.timely .ai1ec-h4 .ai1ec-small,.timely .ai1ec-h5 small,.timely .ai1ec-h5 .ai1ec-small,.timely .ai1ec-h6 small,.timely .ai1ec-h6 .ai1ec-small{font-weight:normal;line-height:1;color:#999;}.timely h1,.timely h2,.timely h3{margin-top:18px;margin-bottom:9px;}.timely h1 small,.timely h1 .ai1ec-small,.timely h2 small,.timely h2 .ai1ec-small,.timely h3 small,.timely h3 .ai1ec-small{font-size:65%;}.timely h4,.timely h5,.timely h6{margin-top:9px;margin-bottom:9px;}.timely h4 small,.timely h4 .ai1ec-small,.timely h5 small,.timely h5 .ai1ec-small,.timely h6 small,.timely h6 .ai1ec-small{font-size:75%;}.timely h1,.timely .ai1ec-h1{font-size:33px;}.timely h2,.timely .ai1ec-h2{font-size:27px;}.timely h3,.timely .ai1ec-h3{font-size:23px;}.timely h4,.timely .ai1ec-h4{font-size:17px;}.timely h5,.timely .ai1ec-h5{font-size:13px;}.timely h6,.timely .ai1ec-h6{font-size:12px;}.timely p{margin:0 0 9px;}.timely .ai1ec-lead{margin-bottom:18px;font-size:14px;font-weight:200;line-height:1.4;}@media (min-width: 768px){.timely .ai1ec-lead{font-size:19.5px;}}.timely small,.timely .ai1ec-small{font-size:85%;}.timely cite{font-style:normal;}.timely .ai1ec-text-muted{color:#858585;}.timely .ai1ec-text-primary{color:#6dbb4f;}.timely .ai1ec-text-primary:hover{color:#569b3c;}.timely .ai1ec-text-warning{color:#8a6d3b;}.timely .ai1ec-text-warning:hover{color:#66512c;}.timely .ai1ec-text-danger{color:#a94442;}.timely .ai1ec-text-danger:hover{color:#843534;}.timely .ai1ec-text-success{color:#3c763d;}.timely .ai1ec-text-success:hover{color:#2b542c;}.timely .ai1ec-text-info{color:#418cc7;}.timely .ai1ec-text-info:hover{color:#3071a5;}.timely .ai1ec-text-left{text-align:left;}.timely .ai1ec-text-right{text-align:right;}.timely .ai1ec-text-center{text-align:center;}.timely .ai1ec-page-header{padding-bottom:8px;margin:36px 0 18px;border-bottom:1px solid #eee;}.timely ul,.timely ol{margin-top:0;margin-bottom:9px;}.timely ul ul,.timely ul ol,.timely ol ul,.timely ol ol{margin-bottom:0;}.timely .ai1ec-list-unstyled{padding-left:0;list-style:none;}.timely .ai1ec-list-inline{padding-left:0;list-style:none;}.timely .ai1ec-list-inline > li{display:inline-block;padding-left:5px;padding-right:5px;}.timely .ai1ec-list-inline > li:first-child{padding-left:0;}.timely dl{margin-top:0;margin-bottom:18px;}.timely dt,.timely dd{line-height:1.428571429;}.timely dt{font-weight:bold;}.timely dd{margin-left:0;}@media (min-width: 768px){.timely .ai1ec-dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.timely .ai1ec-dl-horizontal dd{margin-left:180px;}.timely .ai1ec-dl-horizontal dd:before,.timely .ai1ec-dl-horizontal dd:after{content:" ";display:table;}.timely .ai1ec-dl-horizontal dd:after{clear:both;}.timely .ai1ec-dl-horizontal dd:before,.timely .ai1ec-dl-horizontal dd:after{content:" ";display:table;}.timely .ai1ec-dl-horizontal dd:after{clear:both;}}.timely abbr[title],.timely abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999;}.timely .ai1ec-initialism{font-size:90%;text-transform:uppercase;}.timely blockquote{padding:9px 18px;margin:0 0 18px;border-left:5px solid #eee;}.timely blockquote p{font-size:16.25px;font-weight:300;line-height:1.25;}.timely blockquote p:last-child{margin-bottom:0;}.timely blockquote small,.timely blockquote .ai1ec-small{display:block;line-height:1.428571429;color:#999;}.timely blockquote small:before,.timely blockquote .ai1ec-small:before{content:'\2014 \00A0';}.timely blockquote.ai1ec-pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;}.timely blockquote.ai1ec-pull-right p,.timely blockquote.ai1ec-pull-right small,.timely blockquote.ai1ec-pull-right .ai1ec-small{text-align:right;}.timely blockquote.ai1ec-pull-right small:before,.timely blockquote.ai1ec-pull-right .ai1ec-small:before{content:'';}.timely blockquote.ai1ec-pull-right small:after,.timely blockquote.ai1ec-pull-right .ai1ec-small:after{content:'\00A0 \2014';}.timely blockquote:before,.timely blockquote:after{content:"";}.timely address{margin-bottom:18px;font-style:normal;line-height:1.428571429;}.ai1ec-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear;}.ai1ec-fade.ai1ec-in{opacity:1;}.ai1ec-collapse{display:none;}.ai1ec-collapse.ai1ec-in{display:block;}.ai1ec-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease;}.ai1ec-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent;}.ai1ec-dropdown{position:relative;}.ai1ec-dropdown-toggle:focus{outline:0;}.ai1ec-dropdown-menu{position:absolute;top:100%;left:0;z-index:10000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:13px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box;}.ai1ec-dropdown-menu.ai1ec-pull-right{right:0;left:auto;}.ai1ec-dropdown-menu .ai1ec-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;}.ai1ec-dropdown-menu > li > a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap;}.ai1ec-dropdown-menu > li > a:hover,.ai1ec-dropdown-menu > li > a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5;}.ai1ec-dropdown-menu > .ai1ec-active > a,.ai1ec-dropdown-menu > .ai1ec-active > a:hover,.ai1ec-dropdown-menu > .ai1ec-active > a:focus{color:#fff;text-decoration:none;outline:0;background-color:#6489ad;}.ai1ec-dropdown-menu > .ai1ec-disabled > a,.ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{color:#999;}.ai1ec-dropdown-menu > .ai1ec-disabled > a:hover,.ai1ec-dropdown-menu > .ai1ec-disabled > a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed;}.ai1ec-open > .ai1ec-dropdown-menu{display:block;}.ai1ec-open > a{outline:0;}.ai1ec-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999;}.ai1ec-dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:9990;}.ai1ec-pull-right > .ai1ec-dropdown-menu{right:0;left:auto;}.ai1ec-dropup .ai1ec-caret,.ai1ec-navbar-fixed-bottom .ai1ec-dropdown .ai1ec-caret{border-top:0;border-bottom:4px solid;content:"";}.ai1ec-dropup .ai1ec-dropdown-menu,.ai1ec-navbar-fixed-bottom .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}.ai1ec-btn-group,.ai1ec-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle;}.ai1ec-btn-group > .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn{position:relative;float:left;}.ai1ec-btn-group > .ai1ec-btn:hover,.ai1ec-btn-group > .ai1ec-btn:focus,.ai1ec-btn-group > .ai1ec-btn:active,.ai1ec-btn-group > .ai1ec-btn.ai1ec-active,.ai1ec-btn-group-vertical > .ai1ec-btn:hover,.ai1ec-btn-group-vertical > .ai1ec-btn:focus,.ai1ec-btn-group-vertical > .ai1ec-btn:active,.ai1ec-btn-group-vertical > .ai1ec-btn.ai1ec-active{z-index:2;}.ai1ec-btn-group > .ai1ec-btn:focus,.ai1ec-btn-group-vertical > .ai1ec-btn:focus{outline:none;}.ai1ec-btn-group .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-group .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-group .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-group .ai1ec-btn-group + .ai1ec-btn-group{margin-left:-1px;}.ai1ec-btn-toolbar:before,.ai1ec-btn-toolbar:after{content:" ";display:table;}.ai1ec-btn-toolbar:after{clear:both;}.ai1ec-btn-toolbar:before,.ai1ec-btn-toolbar:after{content:" ";display:table;}.ai1ec-btn-toolbar:after{clear:both;}.ai1ec-btn-toolbar .ai1ec-btn-group{float:left;}.ai1ec-btn-toolbar > .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-toolbar > .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-toolbar > .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-toolbar > .ai1ec-btn-group + .ai1ec-btn-group{margin-left:5px;}.ai1ec-btn-group > .ai1ec-btn:not(:first-child):not(:last-child):not(.ai1ec-dropdown-toggle){border-radius:0;}.ai1ec-btn-group > .ai1ec-btn:first-child{margin-left:0;}.ai1ec-btn-group > .ai1ec-btn:first-child:not(:last-child):not(.ai1ec-dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0;}.ai1ec-btn-group > .ai1ec-btn:last-child:not(:first-child),.ai1ec-btn-group > .ai1ec-dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group{float:left;}.ai1ec-btn-group > .ai1ec-btn-group:not(:first-child):not(:last-child) > .ai1ec-btn{border-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group:first-child > .ai1ec-btn:last-child,.ai1ec-btn-group > .ai1ec-btn-group:first-child > .ai1ec-dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0;}.ai1ec-btn-group > .ai1ec-btn-group:last-child > .ai1ec-btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0;}.ai1ec-btn-group .ai1ec-dropdown-toggle:active,.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle{outline:0;}.ai1ec-btn-group-xs > .ai1ec-btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-group-sm > .ai1ec-btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px;}.ai1ec-btn-group-lg > .ai1ec-btn{padding:10px 16px;font-size:17px;line-height:1.33;border-radius:6px;}.ai1ec-btn-group > .ai1ec-btn + .ai1ec-dropdown-toggle{padding-left:8px;padding-right:8px;}.ai1ec-btn-group > .ai1ec-btn-lg + .ai1ec-dropdown-toggle{padding-left:12px;padding-right:12px;}.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);}.ai1ec-btn-group.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-btn-link{-webkit-box-shadow:none;box-shadow:none;}.ai1ec-btn .ai1ec-caret{margin-left:0;}.ai1ec-btn-lg .ai1ec-caret{border-width:5px 5px 0;border-bottom-width:0;}.ai1ec-dropup .ai1ec-btn-lg .ai1ec-caret{border-width:0 5px 5px;}.ai1ec-btn-group-vertical > .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn-group,.ai1ec-btn-group-vertical > .ai1ec-btn-group > .ai1ec-btn{display:block;float:none;width:100%;max-width:100%;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:before,.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{content:" ";display:table;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{clear:both;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:before,.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{content:" ";display:table;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:after{clear:both;}.ai1ec-btn-group-vertical > .ai1ec-btn-group > .ai1ec-btn{float:none;}.ai1ec-btn-group-vertical > .ai1ec-btn + .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn + .ai1ec-btn-group,.ai1ec-btn-group-vertical > .ai1ec-btn-group + .ai1ec-btn,.ai1ec-btn-group-vertical > .ai1ec-btn-group + .ai1ec-btn-group{margin-top:-1px;margin-left:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:not(:first-child):not(:last-child){border-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:not(:first-child):not(:last-child) > .ai1ec-btn{border-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:first-child > .ai1ec-btn:last-child,.ai1ec-btn-group-vertical > .ai1ec-btn-group:first-child > .ai1ec-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0;}.ai1ec-btn-group-vertical > .ai1ec-btn-group:last-child > .ai1ec-btn:first-child{border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate;}.ai1ec-btn-group-justified > .ai1ec-btn,.ai1ec-btn-group-justified > .ai1ec-btn-group{float:none;display:table-cell;width:1%;}.ai1ec-btn-group-justified > .ai1ec-btn-group .ai1ec-btn{width:100%;}[data-toggle="buttons"] > .ai1ec-btn > input[type="radio"],[data-toggle="buttons"] > .ai1ec-btn > input[type="checkbox"]{display:none;}.timely .ai1ec-nav{margin-bottom:0;padding-left:0;list-style:none;}.timely .ai1ec-nav:before,.timely .ai1ec-nav:after{content:" ";display:table;}.timely .ai1ec-nav:after{clear:both;}.timely .ai1ec-nav:before,.timely .ai1ec-nav:after{content:" ";display:table;}.timely .ai1ec-nav:after{clear:both;}.timely .ai1ec-nav > li{position:relative;display:block;}.timely .ai1ec-nav > li > a{position:relative;display:block;padding:10px 15px;}.timely .ai1ec-nav > li > a:hover,.timely .ai1ec-nav > li > a:focus{text-decoration:none;background-color:#eee;}.timely .ai1ec-nav > li.ai1ec-disabled > a{color:#999;}.timely .ai1ec-nav > li.ai1ec-disabled > a:hover,.timely .ai1ec-nav > li.ai1ec-disabled > a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed;}.timely .ai1ec-nav .ai1ec-open > a,.timely .ai1ec-nav .ai1ec-open > a:hover,.timely .ai1ec-nav .ai1ec-open > a:focus{background-color:#eee;border-color:#3d6b99;}.timely .ai1ec-nav .ai1ec-nav-divider{height:1px;margin:8px 0;overflow:hidden;background-color:#e5e5e5;}.timely .ai1ec-nav > li > a > img{max-width:none;}.timely .ai1ec-nav-tabs{border-bottom:1px solid #ddd;}.timely .ai1ec-nav-tabs > li{float:left;margin-bottom:-1px;}.timely .ai1ec-nav-tabs > li > a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs > li > a:hover{border-color:#eee #eee #ddd;}.timely .ai1ec-nav-tabs > li.ai1ec-active > a,.timely .ai1ec-nav-tabs > li.ai1ec-active > a:hover,.timely .ai1ec-nav-tabs > li.ai1ec-active > a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified{width:100%;border-bottom:0;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li{float:none;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{text-align:center;margin-bottom:5px;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;left:auto;}@media (min-width: 768px){.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li{display:table-cell;width:1%;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{margin-bottom:0;}}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{margin-right:0;border-radius:4px;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:focus{border:1px solid #ddd;}@media (min-width: 768px){.timely .ai1ec-nav-tabs.ai1ec-nav-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs.ai1ec-nav-justified > .ai1ec-active > a:focus{border-bottom-color:#fff;}}.timely .ai1ec-nav-pills > li{float:left;}.timely .ai1ec-nav-pills > li > a{border-radius:4px;}.timely .ai1ec-nav-pills > li + li{margin-left:2px;}.timely .ai1ec-nav-pills > li.ai1ec-active > a,.timely .ai1ec-nav-pills > li.ai1ec-active > a:hover,.timely .ai1ec-nav-pills > li.ai1ec-active > a:focus{color:#fff;background-color:#6dbb4f;}.timely .ai1ec-nav-stacked > li{float:none;}.timely .ai1ec-nav-stacked > li + li{margin-top:2px;margin-left:0;}.timely .ai1ec-nav-justified{width:100%;}.timely .ai1ec-nav-justified > li{float:none;}.timely .ai1ec-nav-justified > li > a{text-align:center;margin-bottom:5px;}.timely .ai1ec-nav-justified > .ai1ec-dropdown .ai1ec-dropdown-menu{top:auto;left:auto;}@media (min-width: 768px){.timely .ai1ec-nav-justified > li{display:table-cell;width:1%;}.timely .ai1ec-nav-justified > li > a{margin-bottom:0;}}.timely .ai1ec-nav-tabs-justified{border-bottom:0;}.timely .ai1ec-nav-tabs-justified > li > a{margin-right:0;border-radius:4px;}.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:focus{border:1px solid #ddd;}@media (min-width: 768px){.timely .ai1ec-nav-tabs-justified > li > a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0;}.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:hover,.timely .ai1ec-nav-tabs-justified > .ai1ec-active > a:focus{border-bottom-color:#fff;}}.timely .ai1ec-tab-content > .ai1ec-tab-pane{display:none;}.timely .ai1ec-tab-content > .ai1ec-active{display:block;}.timely .ai1ec-nav-tabs .ai1ec-dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0;}.ai1ec-thumbnail{display:block;padding:4px;margin-bottom:18px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;}.ai1ec-thumbnail > img,.ai1ec-thumbnail a > img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto;}a.ai1ec-thumbnail:hover,a.ai1ec-thumbnail:focus,a.ai1ec-thumbnail.ai1ec-active{border-color:#3d6b99;}.ai1ec-thumbnail .ai1ec-caption{padding:9px;color:#333;}.ai1ec-alert{padding:15px;margin-bottom:18px;border:1px solid transparent;border-radius:4px;}.ai1ec-alert h4{margin-top:0;color:inherit;}.ai1ec-alert .ai1ec-alert-link{font-weight:bold;}.ai1ec-alert > p,.ai1ec-alert > ul{margin-bottom:0;}.ai1ec-alert > p + p{margin-top:5px;}.ai1ec-alert-dismissable{padding-right:35px;}.ai1ec-alert-dismissable .ai1ec-close{position:relative;top:-2px;right:-21px;color:inherit;}.ai1ec-alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d;}.ai1ec-alert-success hr{border-top-color:#c9e2b3;}.ai1ec-alert-success .ai1ec-alert-link{color:#2b542c;}.ai1ec-alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#418cc7;}.ai1ec-alert-info hr{border-top-color:#a6e1ec;}.ai1ec-alert-info .ai1ec-alert-link{color:#3071a5;}.ai1ec-alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b;}.ai1ec-alert-warning hr{border-top-color:#f7e1b5;}.ai1ec-alert-warning .ai1ec-alert-link{color:#66512c;}.ai1ec-alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442;font-size:13px;font-family:sans-serif;line-height:1.8;}.ai1ec-alert-danger hr{border-top-color:#e4b9c0;}.ai1ec-alert-danger .ai1ec-alert-link{color:#843534;}.ai1ec-alert-danger a{line-height:1.8;text-decoration:underline !important;}.ai1ec-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);}.ai1ec-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15);}.ai1ec-well-lg{padding:24px;border-radius:6px;}.ai1ec-well-sm{padding:9px;border-radius:3px;}.timely .ai1ec-close{float:right;font-size:19.5px;font-weight:bold;line-height:1;color:#333;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20);}.timely .ai1ec-close:hover,.timely .ai1ec-close:focus{color:#333;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50);}button.timely .ai1ec-close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;}.ai1ec-modal-open{overflow:hidden;}.ai1ec-modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:10040;}.ai1ec-modal.ai1ec-fade .ai1ec-modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out;}.ai1ec-modal.ai1ec-in .ai1ec-modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);}.ai1ec-modal-dialog{position:relative;width:auto;margin:10px;z-index:10050;}.ai1ec-modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid #c2c2c2;border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none;}.ai1ec-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:10030;background-color:#fff;}.ai1ec-modal-backdrop.ai1ec-fade{opacity:0;filter:alpha(opacity=0);}.ai1ec-modal-backdrop.ai1ec-in{opacity:.5;filter:alpha(opacity=50);}.ai1ec-modal-header{padding:15px;border-bottom:1px solid #c2c2c2;min-height:16.428571429px;}.ai1ec-modal-header .ai1ec-close{margin-top:-2px;}.ai1ec-modal-title{margin:0;line-height:1.428571429;}.ai1ec-modal-body{position:relative;padding:20px;}.ai1ec-modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #c2c2c2;}.ai1ec-modal-footer:before,.ai1ec-modal-footer:after{content:" ";display:table;}.ai1ec-modal-footer:after{clear:both;}.ai1ec-modal-footer:before,.ai1ec-modal-footer:after{content:" ";display:table;}.ai1ec-modal-footer:after{clear:both;}.ai1ec-modal-footer .ai1ec-btn + .ai1ec-btn{margin-left:5px;margin-bottom:0;}.ai1ec-modal-footer .ai1ec-btn-group .ai1ec-btn + .ai1ec-btn{margin-left:-1px;}.ai1ec-modal-footer .ai1ec-btn-block + .ai1ec-btn-block{margin-left:0;}@media screen and (min-width: 768px){.ai1ec-modal-dialog{width:600px;margin:30px auto;}.ai1ec-modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5);}}.ai1ec-tooltip{position:absolute;z-index:10035;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.ai1ec-tooltip.ai1ec-in{opacity:.9;filter:alpha(opacity=90);}.ai1ec-tooltip.ai1ec-top{margin-top:-3px;padding:5px 0;}.ai1ec-tooltip.ai1ec-right{margin-left:3px;padding:0 5px;}.ai1ec-tooltip.ai1ec-bottom{margin-top:3px;padding:5px 0;}.ai1ec-tooltip.ai1ec-left{margin-left:-3px;padding:0 5px;}.ai1ec-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px;}.ai1ec-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}.ai1ec-tooltip.ai1ec-top .ai1ec-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-top-left .ai1ec-tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-top-right .ai1ec-tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000;}.ai1ec-tooltip.ai1ec-right .ai1ec-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000;}.ai1ec-tooltip.ai1ec-left .ai1ec-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000;}.ai1ec-tooltip.ai1ec-bottom .ai1ec-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-tooltip.ai1ec-bottom-left .ai1ec-tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-tooltip.ai1ec-bottom-right .ai1ec-tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000;}.ai1ec-popover{position:absolute;top:0;left:0;z-index:10010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal;}.ai1ec-popover.ai1ec-top{margin-top:-10px;}.ai1ec-popover.ai1ec-right{margin-left:10px;}.ai1ec-popover.ai1ec-bottom{margin-top:10px;}.ai1ec-popover.ai1ec-left{margin-left:-10px;}.ai1ec-popover-title{margin:0;padding:8px 14px;font-size:13px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0;}.ai1ec-popover-content{padding:9px 14px;}.ai1ec-popover .ai1ec-arrow,.ai1ec-popover .ai1ec-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;}.ai1ec-popover .ai1ec-arrow{border-width:6px;}.ai1ec-popover .ai1ec-arrow:after{border-width:5px;content:"";}.ai1ec-popover.ai1ec-top .ai1ec-arrow{left:50%;margin-left:-6px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-6px;}.ai1ec-popover.ai1ec-top .ai1ec-arrow:after{content:" ";bottom:1px;margin-left:-5px;border-bottom-width:0;border-top-color:#fff;}.ai1ec-popover.ai1ec-right .ai1ec-arrow{top:50%;left:-6px;margin-top:-6px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);}.ai1ec-popover.ai1ec-right .ai1ec-arrow:after{content:" ";left:1px;bottom:-5px;border-left-width:0;border-right-color:#fff;}.ai1ec-popover.ai1ec-bottom .ai1ec-arrow{left:50%;margin-left:-6px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-6px;}.ai1ec-popover.ai1ec-bottom .ai1ec-arrow:after{content:" ";top:1px;margin-left:-5px;border-top-width:0;border-bottom-color:#fff;}.ai1ec-popover.ai1ec-left .ai1ec-arrow{top:50%;right:-6px;margin-top:-6px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);}.ai1ec-popover.ai1ec-left .ai1ec-arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-5px;}.ai1ec-clearfix:before,.ai1ec-clearfix:after{content:" ";display:table;}.ai1ec-clearfix:after{clear:both;}.ai1ec-center-block{display:block;margin-left:auto;margin-right:auto;}.ai1ec-pull-right{float:right !important;}.ai1ec-pull-left{float:left !important;}.ai1ec-hide{display:none !important;}.ai1ec-show{display:block !important;}.ai1ec-invisible{visibility:hidden;}.ai1ec-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}.ai1ec-hidden{display:none !important;visibility:hidden !important;}.ai1ec-affix{position:fixed;}@-ms-viewport{width:device-width;}.ai1ec-visible-xs,tr.ai1ec-visible-xs,th.ai1ec-visible-xs,td.ai1ec-visible-xs{display:none !important;}@media (max-width: 767px){.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-xs,td.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-xs.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-sm,td.ai1ec-visible-xs.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-xs.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-md{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-md,td.ai1ec-visible-xs.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-xs.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-xs.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-xs.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-xs.ai1ec-visible-lg,td.ai1ec-visible-xs.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-sm,tr.ai1ec-visible-sm,th.ai1ec-visible-sm,td.ai1ec-visible-sm{display:none !important;}@media (max-width: 767px){.ai1ec-visible-sm.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-xs,td.ai1ec-visible-sm.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-sm,td.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-sm.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-md{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-md,td.ai1ec-visible-sm.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-sm.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-sm.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-sm.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-sm.ai1ec-visible-lg,td.ai1ec-visible-sm.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-md,tr.ai1ec-visible-md,th.ai1ec-visible-md,td.ai1ec-visible-md{display:none !important;}@media (max-width: 767px){.ai1ec-visible-md.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-md.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-xs,td.ai1ec-visible-md.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-md.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-md.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-sm,td.ai1ec-visible-md.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-md{display:table;}tr.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-md,td.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-md.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-md.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-md.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-md.ai1ec-visible-lg,td.ai1ec-visible-md.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-visible-lg,tr.ai1ec-visible-lg,th.ai1ec-visible-lg,td.ai1ec-visible-lg{display:none !important;}@media (max-width: 767px){.ai1ec-visible-lg.ai1ec-visible-xs{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-xs{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-xs{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-xs,td.ai1ec-visible-lg.ai1ec-visible-xs{display:table-cell !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-visible-lg.ai1ec-visible-sm{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-sm{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-sm{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-sm,td.ai1ec-visible-lg.ai1ec-visible-sm{display:table-cell !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-visible-lg.ai1ec-visible-md{display:block !important;}table.ai1ec-visible-lg.ai1ec-visible-md{display:table;}tr.ai1ec-visible-lg.ai1ec-visible-md{display:table-row !important;}th.ai1ec-visible-lg.ai1ec-visible-md,td.ai1ec-visible-lg.ai1ec-visible-md{display:table-cell !important;}}@media (min-width: 1200px){.ai1ec-visible-lg{display:block !important;}table.ai1ec-visible-lg{display:table;}tr.ai1ec-visible-lg{display:table-row !important;}th.ai1ec-visible-lg,td.ai1ec-visible-lg{display:table-cell !important;}}.ai1ec-hidden-xs{display:block !important;}table.ai1ec-hidden-xs{display:table;}tr.ai1ec-hidden-xs{display:table-row !important;}th.ai1ec-hidden-xs,td.ai1ec-hidden-xs{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-xs,tr.ai1ec-hidden-xs,th.ai1ec-hidden-xs,td.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-xs.ai1ec-hidden-sm,tr.ai1ec-hidden-xs.ai1ec-hidden-sm,th.ai1ec-hidden-xs.ai1ec-hidden-sm,td.ai1ec-hidden-xs.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-xs.ai1ec-hidden-md,tr.ai1ec-hidden-xs.ai1ec-hidden-md,th.ai1ec-hidden-xs.ai1ec-hidden-md,td.ai1ec-hidden-xs.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-xs.ai1ec-hidden-lg,tr.ai1ec-hidden-xs.ai1ec-hidden-lg,th.ai1ec-hidden-xs.ai1ec-hidden-lg,td.ai1ec-hidden-xs.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-sm{display:block !important;}table.ai1ec-hidden-sm{display:table;}tr.ai1ec-hidden-sm{display:table-row !important;}th.ai1ec-hidden-sm,td.ai1ec-hidden-sm{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-sm.ai1ec-hidden-xs,tr.ai1ec-hidden-sm.ai1ec-hidden-xs,th.ai1ec-hidden-sm.ai1ec-hidden-xs,td.ai1ec-hidden-sm.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-sm,tr.ai1ec-hidden-sm,th.ai1ec-hidden-sm,td.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-sm.ai1ec-hidden-md,tr.ai1ec-hidden-sm.ai1ec-hidden-md,th.ai1ec-hidden-sm.ai1ec-hidden-md,td.ai1ec-hidden-sm.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-sm.ai1ec-hidden-lg,tr.ai1ec-hidden-sm.ai1ec-hidden-lg,th.ai1ec-hidden-sm.ai1ec-hidden-lg,td.ai1ec-hidden-sm.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-md{display:block !important;}table.ai1ec-hidden-md{display:table;}tr.ai1ec-hidden-md{display:table-row !important;}th.ai1ec-hidden-md,td.ai1ec-hidden-md{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-md.ai1ec-hidden-xs,tr.ai1ec-hidden-md.ai1ec-hidden-xs,th.ai1ec-hidden-md.ai1ec-hidden-xs,td.ai1ec-hidden-md.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-md.ai1ec-hidden-sm,tr.ai1ec-hidden-md.ai1ec-hidden-sm,th.ai1ec-hidden-md.ai1ec-hidden-sm,td.ai1ec-hidden-md.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-md,tr.ai1ec-hidden-md,th.ai1ec-hidden-md,td.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-md.ai1ec-hidden-lg,tr.ai1ec-hidden-md.ai1ec-hidden-lg,th.ai1ec-hidden-md.ai1ec-hidden-lg,td.ai1ec-hidden-md.ai1ec-hidden-lg{display:none !important;}}.ai1ec-hidden-lg{display:block !important;}table.ai1ec-hidden-lg{display:table;}tr.ai1ec-hidden-lg{display:table-row !important;}th.ai1ec-hidden-lg,td.ai1ec-hidden-lg{display:table-cell !important;}@media (max-width: 767px){.ai1ec-hidden-lg.ai1ec-hidden-xs,tr.ai1ec-hidden-lg.ai1ec-hidden-xs,th.ai1ec-hidden-lg.ai1ec-hidden-xs,td.ai1ec-hidden-lg.ai1ec-hidden-xs{display:none !important;}}@media (min-width: 768px) and (max-width: 991px){.ai1ec-hidden-lg.ai1ec-hidden-sm,tr.ai1ec-hidden-lg.ai1ec-hidden-sm,th.ai1ec-hidden-lg.ai1ec-hidden-sm,td.ai1ec-hidden-lg.ai1ec-hidden-sm{display:none !important;}}@media (min-width: 992px) and (max-width: 1199px){.ai1ec-hidden-lg.ai1ec-hidden-md,tr.ai1ec-hidden-lg.ai1ec-hidden-md,th.ai1ec-hidden-lg.ai1ec-hidden-md,td.ai1ec-hidden-lg.ai1ec-hidden-md{display:none !important;}}@media (min-width: 1200px){.ai1ec-hidden-lg,tr.ai1ec-hidden-lg,th.ai1ec-hidden-lg,td.ai1ec-hidden-lg{display:none !important;}}.ai1ec-visible-print,tr.ai1ec-visible-print,th.ai1ec-visible-print,td.ai1ec-visible-print{display:none !important;}@media print{.ai1ec-visible-print{display:block !important;}table.ai1ec-visible-print{display:table;}tr.ai1ec-visible-print{display:table-row !important;}th.ai1ec-visible-print,td.ai1ec-visible-print{display:table-cell !important;}.ai1ec-hidden-print,tr.ai1ec-hidden-print,th.ai1ec-hidden-print,td.ai1ec-hidden-print{display:none !important;}}.select2-container{position:relative;display:inline-block;zoom:1;*display:inline;vertical-align:top;}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-khtml-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.select2-container .select2-choice{display:block;height:26px;padding:0 0 0 8px;overflow:hidden;position:relative;border:1px solid #aaa;white-space:nowrap;line-height:26px;color:#444;text-decoration:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#fff;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.5,white));background-image:-webkit-linear-gradient(center bottom,#eee 0%,white 50%);background-image:-moz-linear-gradient(center bottom,#eee 0%,white 50%);background-image:-o-linear-gradient(bottom,#eee 0%,#fff 50%);background-image:-ms-linear-gradient(top,#fff 0%,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#fff 0%,#eee 50%);}.select2-container.select2-drop-above .select2-choice{border-bottom-color:#aaa;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#eee),color-stop(0.9,white));background-image:-webkit-linear-gradient(center bottom,#eee 0%,white 90%);background-image:-moz-linear-gradient(center bottom,#eee 0%,white 90%);background-image:-o-linear-gradient(bottom,#eee 0%,white 90%);background-image:-ms-linear-gradient(top,#eee 0%,#fff 90%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=0);background-image:linear-gradient(top,#eee 0%,#fff 90%);}.select2-container .select2-choice span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;-ms-text-overflow:ellipsis;-o-text-overflow:ellipsis;text-overflow:ellipsis;}.select2-container .select2-choice abbr{display:block;width:12px;height:12px;position:absolute;right:26px;top:8px;font-size:1px;text-decoration:none;border:0;background:url('../img/select2.png') right top no-repeat;cursor:pointer;outline:0;}.select2-container .select2-choice abbr:hover{background-position:right -11px;cursor:pointer;}.select2-drop-mask{position:absolute;left:0;top:0;z-index:9998;opacity:0;}.select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:9999;top:100%;background:#fff;color:#000;border:1px solid #aaa;border-top:0;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;-webkit-box-shadow:0 4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 4px 5px rgba(0,0,0,0.15);box-shadow:0 4px 5px rgba(0,0,0,0.15);}.select2-drop.select2-drop-above{margin-top:1px;border-top:1px solid #aaa;border-bottom:0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;-webkit-box-shadow:0 -4px 5px rgba(0,0,0,0.15);-moz-box-shadow:0 -4px 5px rgba(0,0,0,0.15);box-shadow:0 -4px 5px rgba(0,0,0,0.15);}.select2-container .select2-choice div{display:block;width:18px;height:100%;position:absolute;right:0;top:0;border-left:1px solid #aaa;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;background:#ccc;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,#ccc),color-stop(0.6,#eee));background-image:-webkit-linear-gradient(center bottom,#ccc 0%,#eee 60%);background-image:-moz-linear-gradient(center bottom,#ccc 0%,#eee 60%);background-image:-o-linear-gradient(bottom,#ccc 0%,#eee 60%);background-image:-ms-linear-gradient(top,#ccc 0%,#eee 60%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#cccccc',GradientType=0);background-image:linear-gradient(top,#ccc 0%,#eee 60%);}.select2-container .select2-choice div b{display:block;width:100%;height:100%;background:url('../img/select2.png') no-repeat 0 1px;}.select2-search{display:inline-block;width:100%;min-height:26px;margin:0;padding-left:4px;padding-right:4px;position:relative;z-index:10000;white-space:nowrap;}.select2-search-hidden{display:block;position:absolute;left:-10000px;}.select2-search input{width:100%;height:auto !important;min-height:26px;padding:4px 20px 4px 5px;margin:0;outline:0;font-family:sans-serif;font-size:1em;border:1px solid #aaa;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:#fff url('../img/select2.png') no-repeat 100% -22px;background:url('../img/select2.png') no-repeat 100% -22px, -webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('../img/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -o-linear-gradient(bottom,white 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, -ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('../img/select2.png') no-repeat 100% -22px, linear-gradient(top,#fff 85%,#eee 99%);}.select2-drop.select2-drop-above .select2-search input{margin-top:4px;}.select2-search input.select2-active{background:#fff url('../img/ajax-loader-small.gif') no-repeat 100%;background:url('../img/ajax-loader-small.gif') no-repeat 100%, -webkit-gradient(linear,left bottom,left top,color-stop(0.85,white),color-stop(0.99,#eee));background:url('../img/ajax-loader-small.gif') no-repeat 100%, -webkit-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -moz-linear-gradient(center bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -o-linear-gradient(bottom,white 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, -ms-linear-gradient(top,#fff 85%,#eee 99%);background:url('../img/ajax-loader-small.gif') no-repeat 100%, linear-gradient(top,#fff 85%,#eee 99%);}.select2-container-active .select2-choice,.select2-container-active .select2-choices{border:1px solid #5897fb;outline:none;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);}.select2-dropdown-open .select2-choice{border-bottom-color:transparent;-webkit-box-shadow:0 1px 0 #fff inset;-moz-box-shadow:0 1px 0 #fff inset;box-shadow:0 1px 0 #fff inset;-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;background-color:#eee;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(0,white),color-stop(0.5,#eee));background-image:-webkit-linear-gradient(center bottom,white 0%,#eee 50%);background-image:-moz-linear-gradient(center bottom,white 0%,#eee 50%);background-image:-o-linear-gradient(bottom,white 0%,#eee 50%);background-image:-ms-linear-gradient(top,#fff 0%,#eee 50%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#ffffff',GradientType=0);background-image:linear-gradient(top,#fff 0%,#eee 50%);}.select2-dropdown-open .select2-choice div{background:transparent;border-left:none;filter:none;}.select2-dropdown-open .select2-choice div b{background-position:-18px 1px;}.select2-results{max-height:200px;padding:0 0 0 4px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);}.select2-results ul.select2-result-sub{margin:0;padding-left:0;}.select2-results ul.select2-result-sub > li .select2-result-label{padding-left:20px;}.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:40px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:60px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:80px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:100px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:110px;}.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label{padding-left:120px;}.select2-results li{list-style:none;display:list-item;background-image:none;}.select2-results li.select2-result-with-children > .select2-result-label{font-weight:bold;}.select2-results .select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.select2-results .select2-highlighted{background:#3875d7;color:#fff;}.select2-results li em{background:#feffde;font-style:normal;}.select2-results .select2-highlighted em{background:transparent;}.select2-results .select2-highlighted ul{background:white;color:#000;}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4;display:list-item;}.select2-results .select2-disabled.select2-highlighted{color:#666;background:#f4f4f4;display:list-item;cursor:default;}.select2-results .select2-disabled{background:#f4f4f4;display:list-item;cursor:default;}.select2-results .select2-selected{display:none;}.select2-more-results.select2-active{background:#f4f4f4 url('../img/ajax-loader-small.gif') no-repeat 100%;}.select2-more-results{background:#f4f4f4;display:list-item;}.select2-container.select2-container-disabled .select2-choice{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default;}.select2-container.select2-container-disabled .select2-choice div{background-color:#f4f4f4;background-image:none;border-left:0;}.select2-container.select2-container-disabled .select2-choice abbr{display:none;}.select2-container-multi .select2-choices{height:auto !important;height:1%;margin:0;padding:0;position:relative;border:1px solid #aaa;cursor:text;overflow:hidden;background-color:#fff;background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(1%,#eee),color-stop(15%,#fff));background-image:-webkit-linear-gradient(top,#eee 1%,#fff 15%);background-image:-moz-linear-gradient(top,#eee 1%,#fff 15%);background-image:-o-linear-gradient(top,#eee 1%,#fff 15%);background-image:-ms-linear-gradient(top,#eee 1%,#fff 15%);background-image:linear-gradient(top,#eee 1%,#fff 15%);}.select2-locked{padding:3px 5px 3px 5px !important;}.select2-container-multi .select2-choices{min-height:26px;}.select2-container-multi.select2-container-active .select2-choices{border:1px solid #5897fb;outline:none;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);}.select2-container-multi .select2-choices li{float:left;list-style:none;}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap;}.select2-container-multi .select2-choices .select2-search-field input{padding:5px;margin:1px 0;font-family:sans-serif;font-size:100%;color:#666;outline:0;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:transparent !important;}.select2-container-multi .select2-choices .select2-search-field input.select2-active{background:#fff url('../img/ajax-loader-small.gif') no-repeat 100% !important;}.select2-default{color:#999 !important;}.select2-container-multi .select2-choices .select2-search-choice{padding:3px 5px 3px 18px;margin:3px 0 3px 5px;position:relative;line-height:13px;color:#333;cursor:default;border:1px solid #aaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);-moz-box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);box-shadow:0 0 2px #fff inset, 0 1px 0 rgba(0,0,0,0.05);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:#e4e4e4;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee',endColorstr='#f4f4f4',GradientType=0);background-image:-webkit-gradient(linear,0% 0%,0% 100%,color-stop(20%,#f4f4f4),color-stop(50%,#f0f0f0),color-stop(52%,#e8e8e8),color-stop(100%,#eee));background-image:-webkit-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-moz-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-o-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:-ms-linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);background-image:linear-gradient(top,#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);}.select2-container-multi .select2-choices .select2-search-choice span{cursor:default;}.select2-container-multi .select2-choices .select2-search-choice-focus{background:#d4d4d4;}.select2-search-choice-close{display:block;width:12px;height:13px;position:absolute;right:3px;top:4px;font-size:1px;outline:none;background:url('../img/select2.png') right top no-repeat;}.select2-container-multi .select2-search-choice-close{left:3px;}.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover{background-position:right -11px;}.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close{background-position:right -11px;}.select2-container-multi.select2-container-disabled .select2-choices{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default;}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{padding:3px 5px 3px 5px;border:1px solid #ddd;background-image:none;background-color:#f4f4f4;}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none;}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline;}.select2-offscreen{position:absolute;left:-10000px;}@media only screen and (-webkit-min-device-pixel-ratio: 1.5),only screen and (min-resolution: 144dpi){.select2-search input,.select2-search-choice-close,.select2-container .select2-choice abbr,.select2-container .select2-choice div b{background-image:url('../img/select2x2.png') !important;background-repeat:no-repeat !important;background-size:60px 40px !important;}.select2-search input{background-position:100% -21px !important;}}.ai1ec-btn-file{overflow:hidden;position:relative;vertical-align:middle;}.ai1ec-btn-file > input{position:absolute;top:0;right:0;margin:0;padding:0;height:32px;border:solid transparent;opacity:0;filter:alpha(opacity=0);direction:ltr;cursor:pointer;}.ai1ec-fileupload{margin-bottom:9px;}.ai1ec-fileupload .ai1ec-uneditable-input{display:inline-block;margin-bottom:0px;vertical-align:middle;cursor:text;}.ai1ec-fileupload .ai1ec-thumbnail{overflow:hidden;display:inline-block;margin-bottom:5px;vertical-align:middle;text-align:center;}.ai1ec-fileupload .ai1ec-thumbnail > img{display:inline-block;vertical-align:middle;max-height:100%;}.ai1ec-fileupload .ai1ec-btn{vertical-align:middle;}.ai1ec-fileupload-exists .ai1ec-fileupload-new,.ai1ec-fileupload-new .ai1ec-fileupload-exists{display:none;}.ai1ec-fileupload-inline .ai1ec-fileupload-controls{display:inline;}.ai1ec-fileupload-new .ai1ec-input-append .ai1ec-btn-file{border-radius:0 3px 3px 0;}.ai1ec-thumbnail-borderless .ai1ec-thumbnail{border:none;padding:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;}.ai1ec-fileupload-new.ai1ec-thumbnail-borderless .ai1ec-thumbnail{border:1px solid #ddd;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-uneditable-input{color:#a47e3c;border-color:#a47e3c;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-fileupload-preview{color:#a47e3c;}.ai1ec-form-group.ai1ec-has-warning .ai1ec-fileupload .ai1ec-thumbnail{border-color:#a47e3c;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-uneditable-input{color:#b94a48;border-color:#b94a48;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-fileupload-preview{color:#b94a48;}.ai1ec-form-group.ai1ec-has-error .ai1ec-fileupload .ai1ec-thumbnail{border-color:#b94a48;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-uneditable-input{color:#468847;border-color:#468847;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-fileupload-preview{color:#468847;}.ai1ec-form-group.ai1ec-has-success .ai1ec-fileupload .ai1ec-thumbnail{border-color:#468847;}.ai1ec-datepicker{padding:4px;border-radius:4px;direction:ltr;}.ai1ec-datepicker-inline{width:220px;}.ai1ec-datepicker.ai1ec-datepicker-rtl{direction:rtl;}.ai1ec-datepicker.ai1ec-datepicker-rtl table tr td span{float:right;}.ai1ec-datepicker-dropdown{top:0;left:0;}.ai1ec-datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-top:0;border-bottom-color:rgba(0,0,0,0.2);position:absolute;}.ai1ec-datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-left:before{left:6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-left:after{left:7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-right:before{right:6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-right:after{right:7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-top:before{top:-7px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-top:after{top:-6px;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999;}.ai1ec-datepicker-dropdown.ai1ec-datepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff;}.ai1ec-datepicker >div{display:none;}.ai1ec-datepicker.ai1ec-days div.ai1ec-datepicker-days{display:block;}.ai1ec-datepicker.ai1ec-months div.ai1ec-datepicker-months{display:block;}.ai1ec-datepicker.ai1ec-years div.ai1ec-datepicker-years{display:block;}.ai1ec-datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}.ai1ec-datepicker table tr td,.ai1ec-datepicker table tr th{text-align:center;width:30px;height:30px;border-radius:4px;border:none;}.ai1ec-table-striped .ai1ec-datepicker table tr td,.ai1ec-table-striped .ai1ec-datepicker table tr th{background-color:transparent;}.ai1ec-datepicker table tr td.ai1ec-day:hover,.ai1ec-datepicker table tr td.ai1ec-day.ai1ec-focused{background:#eee;cursor:pointer;}.ai1ec-datepicker table tr td.ai1ec-old,.ai1ec-datepicker table tr td.ai1ec-new{color:#999;}.ai1ec-datepicker table tr td.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-disabled:hover{background:none;color:#999;cursor:default;}.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#ffdb99;border-color:#ffb733;}.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today:focus,.ai1ec-datepicker table tr td.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#ffcd70;border-color:#f59e00;}.ai1ec-datepicker table tr td.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today[disabled],.ai1ec-datepicker table tr td.ai1ec-today[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover.ai1ec-active{background-color:#ffdb99;border-color:#ffb733;}.ai1ec-datepicker table tr td.ai1ec-today .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-disabled:hover .ai1ec-badge{color:#ffdb99;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-today:hover:hover{color:#000;}.ai1ec-datepicker table tr td.ai1ec-today.ai1ec-active:hover{color:#fff;}.ai1ec-datepicker table tr td.ai1ec-range,.ai1ec-datepicker table tr td.ai1ec-range:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-disabled:hover{background:#eee;border-radius:0;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#f7ca77;border-color:#f1a417;border-radius:0;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{color:#000;background-color:#f4bb51;border-color:#bf800c;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover.ai1ec-active{background-color:#f7ca77;border-color:#f1a417;}.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-range.ai1ec-today.ai1ec-disabled:hover .ai1ec-badge{color:#f7ca77;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{color:#fff;background-color:#999;border-color:#555;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected:focus,.ai1ec-datepicker table tr td.ai1ec-selected:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{color:#fff;background-color:#858585;border-color:#373737;}.ai1ec-datepicker table tr td.ai1ec-selected:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected,.ai1ec-datepicker table tr td.ai1ec-selected:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected[disabled],.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover.ai1ec-active{background-color:#999;border-color:#555;}.ai1ec-datepicker table tr td.ai1ec-selected .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-selected.ai1ec-disabled:hover .ai1ec-badge{color:#999;background-color:#fff;}.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#6dbb4f;border-color:#61ad43;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active:focus,.ai1ec-datepicker table tr td.ai1ec-active:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#5aa23f;border-color:#488132;}.ai1ec-datepicker table tr td.ai1ec-active:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active[disabled],.ai1ec-datepicker table tr td.ai1ec-active[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active:hover.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.ai1ec-datepicker table tr td.ai1ec-active .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active:hover .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td.ai1ec-active.ai1ec-disabled:hover .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.ai1ec-datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;border-radius:4px;}.ai1ec-datepicker table tr td span:hover{background:#eee;}.ai1ec-datepicker table tr td span.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-disabled:hover{background:none;color:#999;cursor:default;}.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#6dbb4f;border-color:#61ad43;text-shadow:0 -1px 0 rgba(0,0,0,0.25);}.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active:focus,.ai1ec-datepicker table tr td span.ai1ec-active:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{color:#fff;background-color:#5aa23f;border-color:#488132;}.ai1ec-datepicker table tr td span.ai1ec-active:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active,.ai1ec-open .ai1ec-dropdown-toggle.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover{background-image:none;}.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active[disabled],.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled],.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active:hover.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled],.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-disabled.ai1ec-active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled],.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:hover,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:focus,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled]:active,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover[disabled].ai1ec-active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:hover,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:focus,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover:active,fieldset[disabled] .ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover.ai1ec-active{background-color:#6dbb4f;border-color:#61ad43;}.ai1ec-datepicker table tr td span.ai1ec-active .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active:hover .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled .ai1ec-badge,.ai1ec-datepicker table tr td span.ai1ec-active.ai1ec-disabled:hover .ai1ec-badge{color:#6dbb4f;background-color:#fff;}.ai1ec-datepicker table tr td span.ai1ec-old,.ai1ec-datepicker table tr td span.ai1ec-new{color:#999;}.ai1ec-datepicker th.ai1ec-datepicker-switch{width:145px;}.ai1ec-datepicker thead tr:first-child th,.ai1ec-datepicker tfoot tr th{cursor:pointer;}.ai1ec-datepicker thead tr:first-child th:hover,.ai1ec-datepicker tfoot tr th:hover{background:#eee;}.ai1ec-datepicker .ai1ec-cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle;}.ai1ec-datepicker thead tr:first-child th.ai1ec-cw{cursor:default;background-color:transparent;}.ai1ec-input-group.ai1ec-date .ai1ec-input-group-addon i{cursor:pointer;width:16px;height:16px;}.ai1ec-input-daterange input{text-align:center;}.ai1ec-input-daterange input:first-child{border-radius:3px 0 0 3px;}.ai1ec-input-daterange input:last-child{border-radius:0 3px 3px 0;}.ai1ec-input-daterange .ai1ec-input-group-addon{width:auto;min-width:16px;padding:4px 5px;font-weight:normal;line-height:1.428571429;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border:solid #ccc;border-width:1px 0;margin-left:-5px;margin-right:-5px;}.ai1ec-bootstrap-timepicker{position:relative;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu{left:auto;right:0;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:before{left:auto;right:12px;}.ai1ec-bootstrap-timepicker.ai1ec-pull-right .ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:after{left:auto;right:13px;}.ai1ec-bootstrap-timepicker .ai1ec-input-group-addon{cursor:pointer;}.ai1ec-bootstrap-timepicker .ai1ec-input-group-addon i{display:inline-block;width:16px;height:16px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu{padding:4px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu.ai1ec-open{display:inline-block;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:before{border-bottom:7px solid rgba(0,0,0,0.2);border-left:7px solid transparent;border-right:7px solid transparent;content:"";display:inline-block;position:absolute;}.ai1ec-bootstrap-timepicker-widget.ai1ec-dropdown-menu:after{border-bottom:6px solid #fff;border-left:6px solid transparent;border-right:6px solid transparent;content:"";display:inline-block;position:absolute;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-left:before{left:6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-left:after{left:7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-right:before{right:6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-right:after{right:7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-top:before{top:-7px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-top:after{top:-6px;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-bottom:before{bottom:-7px;border-bottom:0;border-top:7px solid #999;}.ai1ec-bootstrap-timepicker-widget.ai1ec-timepicker-orient-bottom:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff;}.ai1ec-bootstrap-timepicker-widget a.ai1ec-btn,.ai1ec-bootstrap-timepicker-widget input{border-radius:4px;}.ai1ec-bootstrap-timepicker-widget table{width:100%;margin:0;}.ai1ec-bootstrap-timepicker-widget table td{text-align:center;height:30px;margin:0;padding:2px;}.ai1ec-bootstrap-timepicker-widget table td:not(.ai1ec-separator){min-width:30px;}.ai1ec-bootstrap-timepicker-widget table td span{width:100%;}.ai1ec-bootstrap-timepicker-widget table td a{border:1px transparent solid;width:100%;display:inline-block;margin:0;padding:8px 0;outline:0;color:#333;}.ai1ec-bootstrap-timepicker-widget table td a:hover{text-decoration:none;background-color:#eee;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;border-color:#ddd;}.ai1ec-bootstrap-timepicker-widget table td a i{margin-top:2px;font-size:18px;}.ai1ec-bootstrap-timepicker-widget table td input{width:25px;margin:0;text-align:center;}.ai1ec-bootstrap-timepicker-widget .ai1ec-modal-body{padding:4px;}@media (min-width: 768px){.ai1ec-bootstrap-timepicker-widget.ai1ec-modal{width:200px;}}@media (max-width: 991px){.ai1ec-bootstrap-timepicker{width:100%;}.ai1ec-bootstrap-timepicker .ai1ec-dropdown-menu{width:100%;}}#ai1ec-event-modal{padding:20px;}@media (max-width: 767px){#ai1ec-event-modal{padding:5px;}}#ai1ec-event-modal .ai1ec-modal-dialog{width:auto;max-width:1199px;margin:0 auto;}#ai1ec-event-modal .ai1ec-modal-body{min-height:300px;}#ai1ec-event-modal .ai1ec-close{font-size:2em;margin:0.25em 0.5em 0 0;position:relative;z-index:10051;}#ai1ec-event-modal .ai1ec-category,#ai1ec-event-modal .ai1ec-tag{cursor:default;color:inherit;border:inherit;-webkit-box-shadow:inset 0 0 1px rgba(38,38,38,0.5);box-shadow:inset 0 0 1px rgba(38,38,38,0.5);}#ai1ec-event-modal .ai1ec-category:hover,#ai1ec-event-modal .ai1ec-tag:hover{colo
|
|