From 19bba4873d5767e1847cade9897f4918041cd8c0 Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Tue, 12 May 2015 21:53:09 +0200 Subject: [PATCH 001/244] Inizio pagina calendario, importato il plugin: http://fullcalendar.io/docs/text/lang/ --- .gitignore | 4 + assets/css/fullcalendar.min.2.3.1.css | 5 + assets/css/fullcalendar.print.css | 202 ++++++++++++++++++++++++++ assets/js/fullcalendar.min.2.3.1.js | 8 + assets/js/gcal.js | 184 +++++++++++++++++++++++ assets/js/lang-all.js | 4 + assets/js/lang/ar-ma.js | 1 + assets/js/lang/ar-sa.js | 1 + assets/js/lang/ar-tn.js | 1 + assets/js/lang/ar.js | 1 + assets/js/lang/bg.js | 1 + assets/js/lang/ca.js | 1 + assets/js/lang/cs.js | 1 + assets/js/lang/da.js | 1 + assets/js/lang/de-at.js | 1 + assets/js/lang/de.js | 1 + assets/js/lang/el.js | 1 + assets/js/lang/en-au.js | 1 + assets/js/lang/en-ca.js | 1 + assets/js/lang/en-gb.js | 1 + assets/js/lang/es.js | 1 + assets/js/lang/fa.js | 1 + assets/js/lang/fi.js | 1 + assets/js/lang/fr-ca.js | 1 + assets/js/lang/fr.js | 1 + assets/js/lang/he.js | 1 + assets/js/lang/hi.js | 1 + assets/js/lang/hr.js | 1 + assets/js/lang/hu.js | 1 + assets/js/lang/id.js | 1 + assets/js/lang/is.js | 1 + assets/js/lang/it.js | 1 + assets/js/lang/ja.js | 1 + assets/js/lang/ko.js | 1 + assets/js/lang/lt.js | 1 + assets/js/lang/lv.js | 1 + assets/js/lang/nb.js | 1 + assets/js/lang/nl.js | 1 + assets/js/lang/pl.js | 1 + assets/js/lang/pt-br.js | 1 + assets/js/lang/pt.js | 1 + assets/js/lang/ro.js | 1 + assets/js/lang/ru.js | 1 + assets/js/lang/sk.js | 1 + assets/js/lang/sl.js | 1 + assets/js/lang/sr-cyrl.js | 1 + assets/js/lang/sr.js | 1 + assets/js/lang/sv.js | 1 + assets/js/lang/th.js | 1 + assets/js/lang/tr.js | 1 + assets/js/lang/uk.js | 1 + assets/js/lang/vi.js | 1 + assets/js/lang/zh-cn.js | 1 + assets/js/lang/zh-tw.js | 1 + assets/js/libs/moment.min.js | 7 + inc/formazione.corsi.crea.ok.php | 11 ++ inc/formazione.corsi.crea.php | 11 ++ inc/formazione.corsi.iscriviti.ok.php | 11 ++ inc/formazione.corsi.iscriviti.php | 11 ++ inc/formazione.corsi.valutazione.php | 11 ++ inc/public.corsi.calendario.php | 118 +++++++++++++++ 61 files changed, 635 insertions(+) create mode 100644 assets/css/fullcalendar.min.2.3.1.css create mode 100644 assets/css/fullcalendar.print.css create mode 100644 assets/js/fullcalendar.min.2.3.1.js create mode 100644 assets/js/gcal.js create mode 100644 assets/js/lang-all.js create mode 100644 assets/js/lang/ar-ma.js create mode 100644 assets/js/lang/ar-sa.js create mode 100644 assets/js/lang/ar-tn.js create mode 100644 assets/js/lang/ar.js create mode 100644 assets/js/lang/bg.js create mode 100644 assets/js/lang/ca.js create mode 100644 assets/js/lang/cs.js create mode 100644 assets/js/lang/da.js create mode 100644 assets/js/lang/de-at.js create mode 100644 assets/js/lang/de.js create mode 100644 assets/js/lang/el.js create mode 100644 assets/js/lang/en-au.js create mode 100644 assets/js/lang/en-ca.js create mode 100644 assets/js/lang/en-gb.js create mode 100644 assets/js/lang/es.js create mode 100644 assets/js/lang/fa.js create mode 100644 assets/js/lang/fi.js create mode 100644 assets/js/lang/fr-ca.js create mode 100644 assets/js/lang/fr.js create mode 100644 assets/js/lang/he.js create mode 100644 assets/js/lang/hi.js create mode 100644 assets/js/lang/hr.js create mode 100644 assets/js/lang/hu.js create mode 100644 assets/js/lang/id.js create mode 100644 assets/js/lang/is.js create mode 100644 assets/js/lang/it.js create mode 100644 assets/js/lang/ja.js create mode 100644 assets/js/lang/ko.js create mode 100644 assets/js/lang/lt.js create mode 100644 assets/js/lang/lv.js create mode 100644 assets/js/lang/nb.js create mode 100644 assets/js/lang/nl.js create mode 100644 assets/js/lang/pl.js create mode 100644 assets/js/lang/pt-br.js create mode 100644 assets/js/lang/pt.js create mode 100644 assets/js/lang/ro.js create mode 100644 assets/js/lang/ru.js create mode 100644 assets/js/lang/sk.js create mode 100644 assets/js/lang/sl.js create mode 100644 assets/js/lang/sr-cyrl.js create mode 100644 assets/js/lang/sr.js create mode 100644 assets/js/lang/sv.js create mode 100644 assets/js/lang/th.js create mode 100644 assets/js/lang/tr.js create mode 100644 assets/js/lang/uk.js create mode 100644 assets/js/lang/vi.js create mode 100644 assets/js/lang/zh-cn.js create mode 100644 assets/js/lang/zh-tw.js create mode 100644 assets/js/libs/moment.min.js create mode 100644 inc/formazione.corsi.crea.ok.php create mode 100644 inc/formazione.corsi.crea.php create mode 100644 inc/formazione.corsi.iscriviti.ok.php create mode 100644 inc/formazione.corsi.iscriviti.php create mode 100644 inc/formazione.corsi.valutazione.php create mode 100644 inc/public.corsi.calendario.php diff --git a/.gitignore b/.gitignore index 819f199c..54127cf5 100644 --- a/.gitignore +++ b/.gitignore @@ -43,3 +43,7 @@ upload/setup/autopull # Mantieni i placeholder !upload/avatar/placeholder/ +/nbproject/private/ +/nbproject/ +/DB/ +/fullcalendar-2.3.1/ \ No newline at end of file diff --git a/assets/css/fullcalendar.min.2.3.1.css b/assets/css/fullcalendar.min.2.3.1.css new file mode 100644 index 00000000..ccc4fb56 --- /dev/null +++ b/assets/css/fullcalendar.min.2.3.1.css @@ -0,0 +1,5 @@ +/*! + * FullCalendar v2.3.1 Stylesheet + * Docs & License: http://fullcalendar.io/ + * (c) 2015 Adam Shaw + */.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}body .fc{font-size:1em}.fc-unthemed .fc-divider,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-popover .fc-header{background:#eee}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed .fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1;opacity:.3;filter:alpha(opacity=30)}.fc-bgevent{background:#8fdf82;opacity:.3;filter:alpha(opacity=30)}.fc-nonbusiness{background:#d7d7d7}.fc-icon{display:inline-block;width:1em;height:1em;line-height:1em;font-size:1em;text-align:center;overflow:hidden;font-family:"Courier New",Courier,monospace}.fc-icon:after{position:relative;margin:0 -1em}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%;left:3%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%;left:-3%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%;left:-2%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%;left:2%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-default{background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);box-shadow:none}.fc-button-group{display:inline-block}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-popover .fc-header .fc-close{cursor:pointer}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc-bg{bottom:0}.fc-bg table{height:100%}.fc table{width:100%;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc th{text-align:center}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{overflow-y:scroll;overflow-x:hidden}.fc-scroller>*{position:relative;width:100%;overflow:hidden}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;background-color:#3a87ad;font-weight:400}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-event.fc-draggable,.fc-event[href]{cursor:pointer}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25;filter:alpha(opacity=25)}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:3}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-h-event .fc-resizer{top:-1px;bottom:-1px;left:-1px;right:-1px;width:5px}.fc-ltr .fc-h-event .fc-start-resizer,.fc-ltr .fc-h-event .fc-start-resizer:after,.fc-ltr .fc-h-event .fc-start-resizer:before,.fc-rtl .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-end-resizer:after,.fc-rtl .fc-h-event .fc-end-resizer:before{right:auto;cursor:w-resize}.fc-ltr .fc-h-event .fc-end-resizer,.fc-ltr .fc-h-event .fc-end-resizer:after,.fc-ltr .fc-h-event .fc-end-resizer:before,.fc-rtl .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-start-resizer:after,.fc-rtl .fc-h-event .fc-start-resizer:before{left:auto;cursor:e-resize}.fc-day-grid-event{margin:1px 2px 0;padding:0 1px}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-day-grid-event .fc-resizer{left:-3px;right:-3px;width:7px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width:220px}.fc-more-popover .fc-event-container{padding:10px}.fc-toolbar{text-align:center;margin-bottom:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid{overflow:hidden}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:0 2px}.fc-basic-view td.fc-day-number,.fc-basic-view td.fc-week-number span{padding-top:2px;padding-bottom:2px}.fc-basic-view .fc-week-number{text-align:center}.fc-basic-view .fc-week-number span{display:inline-block;min-width:1.25em}.fc-ltr .fc-basic-view .fc-day-number{text-align:right}.fc-rtl .fc-basic-view .fc-day-number{text-align:left}.fc-day-number.fc-other-month{opacity:.3;filter:alpha(opacity=30)}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-top:1px;padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-bgevent-skeleton,.fc-time-grid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-time-grid .fc-bgevent-skeleton{z-index:3}.fc-time-grid .fc-highlight-skeleton{z-index:4}.fc-time-grid .fc-content-skeleton{z-index:5}.fc-time-grid .fc-helper-skeleton{z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight-container{position:relative}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-time-grid .fc-bgevent-container,.fc-time-grid .fc-event-container{position:relative}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event .fc-resizer:after{content:"="} \ No newline at end of file diff --git a/assets/css/fullcalendar.print.css b/assets/css/fullcalendar.print.css new file mode 100644 index 00000000..9037db90 --- /dev/null +++ b/assets/css/fullcalendar.print.css @@ -0,0 +1,202 @@ +/*! + * FullCalendar v2.3.1 Print Stylesheet + * Docs & License: http://fullcalendar.io/ + * (c) 2015 Adam Shaw + */ + +/* + * Include this stylesheet on your page to get a more printer-friendly calendar. + * When including this stylesheet, use the media='print' attribute of the tag. + * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css. + */ + +.fc { + max-width: 100% !important; +} + + +/* Global Event Restyling +--------------------------------------------------------------------------------------------------*/ + +.fc-event { + background: #fff !important; + color: #000 !important; + page-break-inside: avoid; +} + +.fc-event .fc-resizer { + display: none; +} + + +/* Table & Day-Row Restyling +--------------------------------------------------------------------------------------------------*/ + +th, +td, +hr, +thead, +tbody, +.fc-row { + border-color: #ccc !important; + background: #fff !important; +} + +/* kill the overlaid, absolutely-positioned common components */ +.fc-bg, +.fc-bgevent-skeleton, +.fc-highlight-skeleton, +.fc-helper-skeleton { + display: none; +} + +/* don't force a min-height on rows (for DayGrid) */ +.fc tbody .fc-row { + height: auto !important; /* undo height that JS set in distributeHeight */ + min-height: 0 !important; /* undo the min-height from each view's specific stylesheet */ +} + +.fc tbody .fc-row .fc-content-skeleton { + position: static; /* undo .fc-rigid */ + padding-bottom: 0 !important; /* use a more border-friendly method for this... */ +} + +.fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td { /* only works in newer browsers */ + padding-bottom: 1em; /* ...gives space within the skeleton. also ensures min height in a way */ +} + +.fc tbody .fc-row .fc-content-skeleton table { + /* provides a min-height for the row, but only effective for IE, which exaggerates this value, + making it look more like 3em. for other browers, it will already be this tall */ + height: 1em; +} + + +/* Undo month-view event limiting. Display all events and hide the "more" links +--------------------------------------------------------------------------------------------------*/ + +.fc-more-cell, +.fc-more { + display: none !important; +} + +.fc tr.fc-limited { + display: table-row !important; +} + +.fc td.fc-limited { + display: table-cell !important; +} + +.fc-popover { + display: none; /* never display the "more.." popover in print mode */ +} + + +/* TimeGrid Restyling +--------------------------------------------------------------------------------------------------*/ + +/* undo the min-height 100% trick used to fill the container's height */ +.fc-time-grid { + min-height: 0 !important; +} + +/* don't display the side axis at all ("all-day" and time cells) */ +.fc-agenda-view .fc-axis { + display: none; +} + +/* don't display the horizontal lines */ +.fc-slats, +.fc-time-grid hr { /* this hr is used when height is underused and needs to be filled */ + display: none !important; /* important overrides inline declaration */ +} + +/* let the container that holds the events be naturally positioned and create real height */ +.fc-time-grid .fc-content-skeleton { + position: static; +} + +/* in case there are no events, we still want some height */ +.fc-time-grid .fc-content-skeleton table { + height: 4em; +} + +/* kill the horizontal spacing made by the event container. event margins will be done below */ +.fc-time-grid .fc-event-container { + margin: 0 !important; +} + + +/* TimeGrid *Event* Restyling +--------------------------------------------------------------------------------------------------*/ + +/* naturally position events, vertically stacking them */ +.fc-time-grid .fc-event { + position: static !important; + margin: 3px 2px !important; +} + +/* for events that continue to a future day, give the bottom border back */ +.fc-time-grid .fc-event.fc-not-end { + border-bottom-width: 1px !important; +} + +/* indicate the event continues via "..." text */ +.fc-time-grid .fc-event.fc-not-end:after { + content: "..."; +} + +/* for events that are continuations from previous days, give the top border back */ +.fc-time-grid .fc-event.fc-not-start { + border-top-width: 1px !important; +} + +/* indicate the event is a continuation via "..." text */ +.fc-time-grid .fc-event.fc-not-start:before { + content: "..."; +} + +/* time */ + +/* undo a previous declaration and let the time text span to a second line */ +.fc-time-grid .fc-event .fc-time { + white-space: normal !important; +} + +/* hide the the time that is normally displayed... */ +.fc-time-grid .fc-event .fc-time span { + display: none; +} + +/* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */ +.fc-time-grid .fc-event .fc-time:after { + content: attr(data-full); +} + + +/* Vertical Scroller & Containers +--------------------------------------------------------------------------------------------------*/ + +/* kill the scrollbars and allow natural height */ +.fc-scroller, +.fc-day-grid-container, /* these divs might be assigned height, which we need to cleared */ +.fc-time-grid-container { /* */ + overflow: visible !important; + height: auto !important; +} + +/* kill the horizontal border/padding used to compensate for scrollbars */ +.fc-row { + border: 0 !important; + margin: 0 !important; +} + + +/* Button Controls +--------------------------------------------------------------------------------------------------*/ + +.fc-button-group, +.fc button { + display: none; /* don't display any button-related controls */ +} diff --git a/assets/js/fullcalendar.min.2.3.1.js b/assets/js/fullcalendar.min.2.3.1.js new file mode 100644 index 00000000..1d4d0ded --- /dev/null +++ b/assets/js/fullcalendar.min.2.3.1.js @@ -0,0 +1,8 @@ +/*! + * FullCalendar v2.3.1 + * Docs & License: http://fullcalendar.io/ + * (c) 2015 Adam Shaw + */ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):"object"==typeof exports?module.exports=t(require("jquery"),require("moment")):t(jQuery,moment)})(function(t,e){function n(){var e,n,i,r,s,o=Array.prototype.slice.call(arguments),l={};for(e=0;Pe.length>e;e++){for(n=Pe[e],i=null,r=0;o.length>r;r++)s=o[r][n],t.isPlainObject(s)?i=t.extend(i||{},s):null!=s&&(i=null);null!==i&&(l[n]=i)}return o.unshift({}),o.push(l),t.extend.apply(t,o)}function i(e){var n,i={views:e.views||{}};return t.each(e,function(e,r){"views"!=e&&(t.isPlainObject(r)&&!/(time|duration|interval)$/i.test(e)&&-1==t.inArray(e,Pe)?(n=null,t.each(r,function(t,r){/^(month|week|day|default|basic(Week|Day)?|agenda(Week|Day)?)$/.test(t)?(i.views[t]||(i.views[t]={}),i.views[t][e]=r):(n||(n={}),n[t]=r)}),n&&(i[e]=n)):i[e]=r)}),i}function r(t,e){e.left&&t.css({"border-left-width":1,"margin-left":e.left-1}),e.right&&t.css({"border-right-width":1,"margin-right":e.right-1})}function s(t){t.css({"margin-left":"","margin-right":"","border-left-width":"","border-right-width":""})}function o(){t("body").addClass("fc-not-allowed")}function l(){t("body").removeClass("fc-not-allowed")}function a(e,n,i){var r=Math.floor(n/e.length),s=Math.floor(n-r*(e.length-1)),o=[],l=[],a=[],c=0;u(e),e.each(function(n,i){var u=n===e.length-1?s:r,d=t(i).outerHeight(!0);u>d?(o.push(i),l.push(d),a.push(t(i).height())):c+=d}),i&&(n-=c,r=Math.floor(n/o.length),s=Math.floor(n-r*(o.length-1))),t(o).each(function(e,n){var i=e===o.length-1?s:r,u=l[e],c=a[e],d=i-(u-c);i>u&&t(n).height(d)})}function u(t){t.height("")}function c(e){var n=0;return e.find("> *").each(function(e,i){var r=t(i).outerWidth();r>n&&(n=r)}),n++,e.width(n),n}function d(t,e){return t.height(e).addClass("fc-scroller"),t[0].scrollHeight-1>t[0].clientHeight?!0:(h(t),!1)}function h(t){t.height("").removeClass("fc-scroller")}function f(e){var n=e.css("position"),i=e.parents().filter(function(){var e=t(this);return/(auto|scroll)/.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==n&&i.length?i:t(e[0].ownerDocument||document)}function g(t){var e=t.offset();return{left:e.left,right:e.left+t.outerWidth(),top:e.top,bottom:e.top+t.outerHeight()}}function p(t){var e=t.offset(),n=v(t),i=e.left+E(t,"border-left-width")+n.left,r=e.top+E(t,"border-top-width")+n.top;return{left:i,right:i+t[0].clientWidth,top:r,bottom:r+t[0].clientHeight}}function m(t){var e=t.offset(),n=e.left+E(t,"border-left-width")+E(t,"padding-left"),i=e.top+E(t,"border-top-width")+E(t,"padding-top");return{left:n,right:n+t.width(),top:i,bottom:i+t.height()}}function v(t){var e=t.innerWidth()-t[0].clientWidth,n={left:0,right:0,top:0,bottom:t.innerHeight()-t[0].clientHeight};return y()&&"rtl"==t.css("direction")?n.left=e:n.right=e,n}function y(){return null===Ve&&(Ve=w()),Ve}function w(){var e=t("
").css({position:"absolute",top:-1e3,left:0,border:0,padding:0,overflow:"scroll",direction:"rtl"}).appendTo("body"),n=e.children(),i=n.offset().left>e.offset().left;return e.remove(),i}function E(t,e){return parseFloat(t.css(e))||0}function S(t){return 1==t.which&&!t.ctrlKey}function b(t,e){var n={left:Math.max(t.left,e.left),right:Math.min(t.right,e.right),top:Math.max(t.top,e.top),bottom:Math.min(t.bottom,e.bottom)};return n.lefta&&u>o?(o>=a?(n=o.clone(),r=!0):(n=a.clone(),r=!1),u>=l?(i=l.clone(),s=!0):(i=u.clone(),s=!1),{start:n,end:i,isStart:r,isEnd:s}):void 0}function x(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days"),ms:t.time()-n.time()})}function R(t,n){return e.duration({days:t.clone().stripTime().diff(n.clone().stripTime(),"days")})}function k(t,n,i){return e.duration(Math.round(t.diff(n,i,!0)),i)}function M(t,e){var n,i,r;for(n=0;Ye.length>n&&(i=Ye[n],r=F(i,t,e),!(r>=1&&U(r)));n++);return i}function F(t,n,i){return null!=i?i.diff(n,t,!0):e.isDuration(n)?n.as(t):n.end.diff(n.start,t,!0)}function z(t){return Boolean(t.hours()||t.minutes()||t.seconds()||t.milliseconds())}function G(t){return"[object Date]"===Object.prototype.toString.call(t)||t instanceof Date}function L(t){return/^\d+\:\d+(?:\:\d+\.?(?:\d{3})?)?$/.test(t)}function _(t){var e=function(){};return e.prototype=t,new e}function P(t,e){for(var n in t)A(t,n)&&(e[n]=t[n])}function V(t,e){var n,i,r=["constructor","toString","valueOf"];for(n=0;r.length>n;n++)i=r[n],t[i]!==Object.prototype[i]&&(e[i]=t[i])}function A(t,e){return Ie.call(t,e)}function O(e){return/undefined|null|boolean|number|string/.test(t.type(e))}function N(e,n,i){if(t.isFunction(e)&&(e=[e]),e){var r,s;for(r=0;e.length>r;r++)s=e[r].apply(n,i)||s;return s}}function B(){for(var t=0;arguments.length>t;t++)if(void 0!==arguments[t])return arguments[t]}function Y(t){return(t+"").replace(/&/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""").replace(/\n/g,"
")}function I(t){return t.replace(/&.*?;/g,"")}function W(e){var n=[];return t.each(e,function(t,e){null!=e&&n.push(t+":"+e)}),n.join(";")}function Z(t){return t.charAt(0).toUpperCase()+t.slice(1)}function j(t,e){return t-e}function U(t){return 0===t%1}function q(t,e){var n=t[e];return function(){return n.apply(t,arguments)}}function $(t,e){var n,i,r,s,o=function(){var l=+new Date-s;e>l&&l>0?n=setTimeout(o,e-l):(n=null,t.apply(r,i),n||(r=i=null))};return function(){r=this,i=arguments,s=+new Date,n||(n=setTimeout(o,e))}}function X(n,i,r){var s,o,l,a,u=n[0],c=1==n.length&&"string"==typeof u;return e.isMoment(u)?(a=e.apply(null,n),Q(u,a)):G(u)||void 0===u?a=e.apply(null,n):(s=!1,o=!1,c?We.test(u)?(u+="-01",n=[u],s=!0,o=!0):(l=Ze.exec(u))&&(s=!l[5],o=!0):t.isArray(u)&&(o=!0),a=i||s?e.utc.apply(e,n):e.apply(null,n),s?(a._ambigTime=!0,a._ambigZone=!0):r&&(o?a._ambigZone=!0:c&&(a.utcOffset?a.utcOffset(u):a.zone(u)))),a._fullCalendar=!0,a}function K(t,n){var i,r,s=!1,o=!1,l=t.length,a=[];for(i=0;l>i;i++)r=t[i],e.isMoment(r)||(r=Le.moment.parseZone(r)),s=s||r._ambigTime,o=o||r._ambigZone,a.push(r);for(i=0;l>i;i++)r=a[i],n||!s||r._ambigTime?o&&!r._ambigZone&&(a[i]=r.clone().stripZone()):a[i]=r.clone().stripTime();return a}function Q(t,e){t._ambigTime?e._ambigTime=!0:e._ambigTime&&(e._ambigTime=!1),t._ambigZone?e._ambigZone=!0:e._ambigZone&&(e._ambigZone=!1)}function J(t,e){t.year(e[0]||0).month(e[1]||0).date(e[2]||0).hours(e[3]||0).minutes(e[4]||0).seconds(e[5]||0).milliseconds(e[6]||0)}function te(t,e){return Ue.format.call(t,e)}function ee(t,e){return ne(t,le(e))}function ne(t,e){var n,i="";for(n=0;e.length>n;n++)i+=ie(t,e[n]);return i}function ie(t,e){var n,i;return"string"==typeof e?e:(n=e.token)?qe[n]?qe[n](t):te(t,n):e.maybe&&(i=ne(t,e.maybe),i.match(/[1-9]/))?i:""}function re(t,e,n,i,r){var s;return t=Le.moment.parseZone(t),e=Le.moment.parseZone(e),s=(t.localeData||t.lang).call(t),n=s.longDateFormat(n)||n,i=i||" - ",se(t,e,le(n),i,r)}function se(t,e,n,i,r){var s,o,l,a,u="",c="",d="",h="",f="";for(o=0;n.length>o&&(s=oe(t,e,n[o]),s!==!1);o++)u+=s;for(l=n.length-1;l>o&&(s=oe(t,e,n[l]),s!==!1);l--)c=s+c;for(a=o;l>=a;a++)d+=ie(t,n[a]),h+=ie(e,n[a]);return(d||h)&&(f=r?h+i+d:d+i+h),u+f+c}function oe(t,e,n){var i,r;return"string"==typeof n?n:(i=n.token)&&(r=$e[i.charAt(0)],r&&t.isSame(e,r))?te(t,i):!1}function le(t){return t in Xe?Xe[t]:Xe[t]=ae(t)}function ae(t){for(var e,n=[],i=/\[([^\]]*)\]|\(([^\)]*)\)|(LTS|LT|(\w)\4*o?)|([^\w\[\(]+)/g;e=i.exec(t);)e[1]?n.push(e[1]):e[2]?n.push({maybe:ae(e[2])}):e[3]?n.push({token:e[3]}):e[5]&&n.push(e[5]);return n}function ue(){}function ce(t,e){return t||e?t&&e?t.grid===e.grid&&t.row===e.row&&t.col===e.col:!1:!0}function de(t){var e=fe(t);return"background"===e||"inverse-background"===e}function he(t){return"inverse-background"===fe(t)}function fe(t){return B((t.source||{}).rendering,t.rendering)}function ge(t){var e,n,i={};for(e=0;t.length>e;e++)n=t[e],(i[n._id]||(i[n._id]=[])).push(n);return i}function pe(t,e){return t.eventStartMS-e.eventStartMS}function me(t,e){return t.eventStartMS-e.eventStartMS||e.eventDurationMS-t.eventDurationMS||e.event.allDay-t.event.allDay||(t.event.title||"").localeCompare(e.event.title)}function ve(n){var i,r,s,o,l=Le.dataAttrPrefix;return l&&(l+="-"),i=n.data(l+"event")||null,i&&(i="object"==typeof i?t.extend({},i):{},r=i.start,null==r&&(r=i.time),s=i.duration,o=i.stick,delete i.start,delete i.time,delete i.duration,delete i.stick),null==r&&(r=n.data(l+"start")),null==r&&(r=n.data(l+"time")),null==s&&(s=n.data(l+"duration")),null==o&&(o=n.data(l+"stick")),r=null!=r?e.duration(r):null,s=null!=s?e.duration(s):null,o=Boolean(o),{eventProps:i,startTime:r,duration:s,stick:o}}function ye(t,e){var n,i;for(n=0;e.length>n;n++)if(i=e[n],i.leftCol<=t.rightCol&&i.rightCol>=t.leftCol)return!0;return!1}function we(t,e){return t.leftCol-e.leftCol}function Ee(t){var e,n,i;if(t.sort(me),e=Se(t),be(e),n=e[0]){for(i=0;n.length>i;i++)De(n[i]);for(i=0;n.length>i;i++)Ce(n[i],0,0)}}function Se(t){var e,n,i,r=[];for(e=0;t.length>e;e++){for(n=t[e],i=0;r.length>i&&Te(n,r[i]).length;i++);n.level=i,(r[i]||(r[i]=[])).push(n)}return r}function be(t){var e,n,i,r,s;for(e=0;t.length>e;e++)for(n=t[e],i=0;n.length>i;i++)for(r=n[i],r.forwardSegs=[],s=e+1;t.length>s;s++)Te(r,t[s],r.forwardSegs)}function De(t){var e,n,i=t.forwardSegs,r=0;if(void 0===t.forwardPressure){for(e=0;i.length>e;e++)n=i[e],De(n),r=Math.max(r,1+n.forwardPressure);t.forwardPressure=r}}function Ce(t,e,n){var i,r=t.forwardSegs;if(void 0===t.forwardCoord)for(r.length?(r.sort(xe),Ce(r[0],e+1,n),t.forwardCoord=r[0].backwardCoord):t.forwardCoord=1,t.backwardCoord=t.forwardCoord-(t.forwardCoord-n)/(e+1),i=0;r.length>i;i++)Ce(r[i],0,t.forwardCoord)}function Te(t,e,n){n=n||[];for(var i=0;e.length>i;i++)He(t,e[i])&&n.push(e[i]);return n}function He(t,e){return t.bottom>e.top&&t.top").prependTo(n),W=N.header=new Fe(N,B),Z=W.render(),Z&&n.prepend(Z),a(B.defaultView),B.handleWindowResize&&(K=$(h,B.windowResizeDelay),t(window).resize(K))}function o(){q&&q.removeElement(),W.destroy(),j.remove(),n.removeClass("fc fc-ltr fc-rtl fc-unthemed ui-widget"),K&&t(window).unbind("resize",K)}function l(){return n.is(":visible")}function a(e){ie++,q&&e&&q.type!==e&&(W.deactivateButton(q.type),G(),q.removeElement(),q=N.view=null),!q&&e&&(q=N.view=ne[e]||(ne[e]=N.instantiateView(e)),q.setElement(t("
").appendTo(j)),W.activateButton(e)),q&&(Q=q.massageCurrentDate(Q),q.isDisplayed&&Q.isWithin(q.intervalStart,q.intervalEnd)||l()&&(G(),q.display(Q),L(),E(),S(),m())),L(),ie--}function u(t){return l()?(t&&d(),ie++,q.updateSize(!0),ie--,!0):void 0}function c(){l()&&d()}function d(){X="number"==typeof B.contentHeight?B.contentHeight:"number"==typeof B.height?B.height-(Z?Z.outerHeight(!0):0):Math.round(j.width()/Math.max(B.aspectRatio,.5))}function h(t){!ie&&t.target===window&&q.start&&u(!0)&&q.trigger("windowResize",ee)}function f(){p(),v()}function g(){l()&&(G(),q.displayEvents(re),L())}function p(){G(),q.clearEvents(),L()}function m(){!B.lazyFetching||J(q.start,q.end)?v():g()}function v(){te(q.start,q.end)}function y(t){re=t,g()}function w(){g()}function E(){W.updateTitle(q.title)}function S(){var t=N.getNow();t.isWithin(q.intervalStart,q.intervalEnd)?W.disableButton("today"):W.enableButton("today")}function b(t,e){t=N.moment(t),e=e?N.moment(e):t.hasTime()?t.clone().add(N.defaultTimedEventDuration):t.clone().add(N.defaultAllDayEventDuration),q.select({start:t,end:e})}function D(){q&&q.unselect()}function C(){Q=q.computePrevDate(Q),a()}function T(){Q=q.computeNextDate(Q),a()}function H(){Q.add(-1,"years"),a()}function x(){Q.add(1,"years"),a()}function R(){Q=N.getNow(),a()}function k(t){Q=N.moment(t),a()}function M(t){Q.add(e.duration(t)),a()}function F(t,e){var n;e=e||"day",n=N.getViewSpec(e)||N.getUnitViewSpec(e),Q=t,a(n?n.type:null)}function z(){return Q.clone()}function G(){j.css({width:"100%",height:j.height(),overflow:"hidden"})}function L(){j.css({width:"",height:"",overflow:""})}function P(){return N}function V(){return q}function A(t,e){return void 0===e?B[t]:(("height"==t||"contentHeight"==t||"aspectRatio"==t)&&(B[t]=e,u(!0)),void 0)}function O(t,e){return B[t]?B[t].apply(e||ee,Array.prototype.slice.call(arguments,2)):void 0}var N=this;N.initOptions(i||{});var B=this.options;N.render=r,N.destroy=o,N.refetchEvents=f,N.reportEvents=y,N.reportEventChange=w,N.rerenderEvents=g,N.changeView=a,N.select=b,N.unselect=D,N.prev=C,N.next=T,N.prevYear=H,N.nextYear=x,N.today=R,N.gotoDate=k,N.incrementDate=M,N.zoomTo=F,N.getDate=z,N.getCalendar=P,N.getView=V,N.option=A,N.trigger=O;var Y=_(Me(B.lang));if(B.monthNames&&(Y._months=B.monthNames),B.monthNamesShort&&(Y._monthsShort=B.monthNamesShort),B.dayNames&&(Y._weekdays=B.dayNames),B.dayNamesShort&&(Y._weekdaysShort=B.dayNamesShort),null!=B.firstDay){var I=_(Y._week);I.dow=B.firstDay,Y._week=I}Y._fullCalendar_weekCalc=function(t){return"function"==typeof t?t:"local"===t?t:"iso"===t||"ISO"===t?"ISO":void 0}(B.weekNumberCalculation),N.defaultAllDayEventDuration=e.duration(B.defaultAllDayEventDuration),N.defaultTimedEventDuration=e.duration(B.defaultTimedEventDuration),N.moment=function(){var t;return"local"===B.timezone?(t=Le.moment.apply(null,arguments),t.hasTime()&&t.local()):t="UTC"===B.timezone?Le.moment.utc.apply(null,arguments):Le.moment.parseZone.apply(null,arguments),"_locale"in t?t._locale=Y:t._lang=Y,t},N.getIsAmbigTimezone=function(){return"local"!==B.timezone&&"UTC"!==B.timezone},N.rezoneDate=function(t){return N.moment(t.toArray())},N.getNow=function(){var t=B.now;return"function"==typeof t&&(t=t()),N.moment(t)},N.getEventEnd=function(t){return t.end?t.end.clone():N.getDefaultEventEnd(t.allDay,t.start)},N.getDefaultEventEnd=function(t,e){var n=e.clone();return t?n.stripTime().add(N.defaultAllDayEventDuration):n.add(N.defaultTimedEventDuration),N.getIsAmbigTimezone()&&n.stripZone(),n},N.humanizeDuration=function(t){return(t.locale||t.lang).call(t,B.lang).humanize()},ze.call(N,B);var W,Z,j,U,q,X,K,Q,J=N.isFetchNeeded,te=N.fetchEvents,ee=n[0],ne={},ie=0,re=[];Q=null!=B.defaultDate?N.moment(B.defaultDate):N.getNow(),N.getSuggestedViewHeight=function(){return void 0===X&&c(),X},N.isHeightAuto=function(){return"auto"===B.contentHeight||"auto"===B.height}}function ke(e){t.each(fn,function(t,n){null==e[t]&&(e[t]=n(e))})}function Me(t){var n=e.localeData||e.langData;return n.call(e,t)||n.call(e,"en")}function Fe(e,n){function i(){var e=n.header;return f=n.theme?"ui":"fc",e?g=t("
").append(s("left")).append(s("right")).append(s("center")).append('
'):void 0}function r(){g.remove()}function s(i){var r=t('
'),s=n.header[i];return s&&t.each(s.split(" "),function(){var i,s=t(),o=!0;t.each(this.split(","),function(i,r){var l,a,u,c,d,h,g,m,v;"title"==r?(s=s.add(t("

 

")),o=!1):(l=e.getViewSpec(r),l?(a=function(){e.changeView(r)},p.push(r),u=l.buttonTextOverride,c=l.buttonTextDefault):e[r]&&(a=function(){e[r]()},u=(e.overrides.buttonText||{})[r],c=n.buttonText[r]),a&&(d=n.themeButtonIcons[r],h=n.buttonIcons[r],g=u?Y(u):d&&n.theme?"":h&&!n.theme?"":Y(c),m=["fc-"+r+"-button",f+"-button",f+"-state-default"],v=t('").click(function(){v.hasClass(f+"-state-disabled")||(a(),(v.hasClass(f+"-state-active")||v.hasClass(f+"-state-disabled"))&&v.removeClass(f+"-state-hover"))}).mousedown(function(){v.not("."+f+"-state-active").not("."+f+"-state-disabled").addClass(f+"-state-down")}).mouseup(function(){v.removeClass(f+"-state-down")}).hover(function(){v.not("."+f+"-state-active").not("."+f+"-state-disabled").addClass(f+"-state-hover")},function(){v.removeClass(f+"-state-hover").removeClass(f+"-state-down")}),s=s.add(v)))}),o&&s.first().addClass(f+"-corner-left").end().last().addClass(f+"-corner-right").end(),s.length>1?(i=t("
"),o&&i.addClass("fc-button-group"),i.append(s),r.append(i)):r.append(s)}),r}function o(t){g.find("h2").text(t)}function l(t){g.find(".fc-"+t+"-button").addClass(f+"-state-active")}function a(t){g.find(".fc-"+t+"-button").removeClass(f+"-state-active")}function u(t){g.find(".fc-"+t+"-button").attr("disabled","disabled").addClass(f+"-state-disabled")}function c(t){g.find(".fc-"+t+"-button").removeAttr("disabled").removeClass(f+"-state-disabled")}function d(){return p}var h=this;h.render=i,h.destroy=r,h.updateTitle=o,h.activateButton=l,h.deactivateButton=a,h.disableButton=u,h.enableButton=c,h.getViewsWithButtons=d;var f,g=t(),p=[]}function ze(n){function i(t,e){return!W||t.clone().stripZone()Z.clone().stripZone()}function r(t,e){W=t,Z=e,te=[];var n=++K,i=X.length;Q=i;for(var r=0;i>r;r++)s(X[r],n)}function s(e,n){o(e,function(i){var r,s,o,l=t.isArray(e.events);if(n==K){if(i)for(r=0;i.length>r;r++)s=i[r],o=l?s:E(s,e),o&&te.push.apply(te,T(o));Q--,Q||q(te)}})}function o(e,i){var r,s,l=Le.sourceFetchers;for(r=0;l.length>r;r++){if(s=l[r].call(I,e,W.clone(),Z.clone(),n.timezone,i),s===!0)return;if("object"==typeof s)return o(s,i),void 0}var a=e.events;if(a)t.isFunction(a)?(y(),a.call(I,W.clone(),Z.clone(),n.timezone,function(t){i(t),w()})):t.isArray(a)?i(a):i();else{var u=e.url;if(u){var c,d=e.success,h=e.error,f=e.complete;c=t.isFunction(e.data)?e.data():e.data;var g=t.extend({},c||{}),p=B(e.startParam,n.startParam),m=B(e.endParam,n.endParam),v=B(e.timezoneParam,n.timezoneParam);p&&(g[p]=W.format()),m&&(g[m]=Z.format()),n.timezone&&"local"!=n.timezone&&(g[v]=n.timezone),y(),t.ajax(t.extend({},gn,e,{data:g,success:function(e){e=e||[];var n=N(d,this,arguments);t.isArray(n)&&(e=n),i(e)},error:function(){N(h,this,arguments),i()},complete:function(){N(f,this,arguments),w()}}))}else i()}}function l(t){var e=a(t);e&&(X.push(e),Q++,s(e,K))}function a(e){var n,i,r=Le.sourceNormalizers;if(t.isFunction(e)||t.isArray(e)?n={events:e}:"string"==typeof e?n={url:e}:"object"==typeof e&&(n=t.extend({},e)),n){for(n.className?"string"==typeof n.className&&(n.className=n.className.split(/\s+/)):n.className=[],t.isArray(n.events)&&(n.origArray=n.events,n.events=t.map(n.events,function(t){return E(t,n)})),i=0;r.length>i;i++)r[i].call(I,n);return n}}function u(e){X=t.grep(X,function(t){return!c(t,e)}),te=t.grep(te,function(t){return!c(t.source,e)}),q(te)}function c(t,e){return t&&e&&d(t)==d(e)}function d(t){return("object"==typeof t?t.origArray||t.googleCalendarId||t.url||t.events:null)||t}function h(t){t.start=I.moment(t.start),t.end=t.end?I.moment(t.end):null,H(t,f(t)),q(te)}function f(e){var n={};return t.each(e,function(t,e){g(t)&&void 0!==e&&O(e)&&(n[t]=e)}),n}function g(t){return!/^_|^(id|allDay|start|end)$/.test(t)}function p(t,e){var n,i,r,s=E(t);if(s){for(n=T(s),i=0;n.length>i;i++)r=n[i],r.source||(e&&($.events.push(r),r.source=$),te.push(r));return q(te),n}return[]}function m(e){var n,i;for(null==e?e=function(){return!0}:t.isFunction(e)||(n=e+"",e=function(t){return t._id==n}),te=t.grep(te,e,!0),i=0;X.length>i;i++)t.isArray(X[i].events)&&(X[i].events=t.grep(X[i].events,e,!0));q(te)}function v(e){return t.isFunction(e)?t.grep(te,e):null!=e?(e+="",t.grep(te,function(t){return t._id==e})):te}function y(){J++||j("loading",null,!0,U())}function w(){--J||j("loading",null,!1,U())}function E(i,r){var s,o,l,a={};if(n.eventDataTransform&&(i=n.eventDataTransform(i)),r&&r.eventDataTransform&&(i=r.eventDataTransform(i)),t.extend(a,i),r&&(a.source=r),a._id=i._id||(void 0===i.id?"_fc"+pn++:i.id+""),a.className=i.className?"string"==typeof i.className?i.className.split(/\s+/):i.className:[],s=i.start||i.date,o=i.end,L(s)&&(s=e.duration(s)),L(o)&&(o=e.duration(o)),i.dow||e.isDuration(s)||e.isDuration(o))a.start=s?e.duration(s):null,a.end=o?e.duration(o):null,a._recurring=!0;else{if(s&&(s=I.moment(s),!s.isValid()))return!1;o&&(o=I.moment(o),o.isValid()||(o=null)),l=i.allDay,void 0===l&&(l=B(r?r.allDayDefault:void 0,n.allDayDefault)),S(s,o,l,a)}return a}function S(t,e,n,i){i.start=t,i.end=e,i.allDay=n,b(i),Ge(i)}function b(t){D(t),t.end&&!t.end.isAfter(t.start)&&(t.end=null),t.end||(t.end=n.forceEventDuration?I.getDefaultEventEnd(t.allDay,t.start):null)}function D(t){null==t.allDay&&(t.allDay=!(t.start.hasTime()||t.end&&t.end.hasTime())),t.allDay?(t.start.stripTime(),t.end&&t.end.stripTime()):(t.start.hasTime()||(t.start=I.rezoneDate(t.start)),t.end&&!t.end.hasTime()&&(t.end=I.rezoneDate(t.end)))}function C(e){var n;return e.end||(n=e.allDay,null==n&&(n=!e.start.hasTime()),e=t.extend({},e),e.end=I.getDefaultEventEnd(n,e.start)),e}function T(e,n,i){var r,s,o,l,a,u,c,d,h,f=[];if(n=n||W,i=i||Z,e)if(e._recurring){if(s=e.dow)for(r={},o=0;s.length>o;o++)r[s[o]]=!0;for(l=n.clone().stripTime();l.isBefore(i);)(!r||r[l.day()])&&(a=e.start,u=e.end,c=l.clone(),d=null,a&&(c=c.time(a)),u&&(d=l.clone().time(u)),h=t.extend({},e),S(c,d,!a&&!u,h),f.push(h)),l.add(1,"days")}else f.push(e);return f}function H(e,n,i){function r(t,e){return i?k(t,e,i):n.allDay?R(t,e):x(t,e)}var s,o,l,a,u,c,d={};return n=n||{},n.start||(n.start=e.start.clone()),void 0===n.end&&(n.end=e.end?e.end.clone():null),null==n.allDay&&(n.allDay=e.allDay),b(n),s={start:e._start.clone(),end:e._end?e._end.clone():I.getDefaultEventEnd(e._allDay,e._start),allDay:n.allDay},b(s),o=null!==e._end&&null===n.end,l=r(n.start,s.start),n.end?(a=r(n.end,s.end),u=a.subtract(l)):u=null,t.each(n,function(t,e){g(t)&&void 0!==e&&(d[t]=e)}),c=M(v(e._id),o,n.allDay,l,u,d),{dateDelta:l,durationDelta:u,undo:c}}function M(e,n,i,r,s,o){var l=I.getIsAmbigTimezone(),a=[];return r&&!r.valueOf()&&(r=null),s&&!s.valueOf()&&(s=null),t.each(e,function(e,u){var c,d;c={start:u.start.clone(),end:u.end?u.end.clone():null,allDay:u.allDay},t.each(o,function(t){c[t]=u[t]}),d={start:u._start,end:u._end,allDay:i},b(d),n?d.end=null:s&&!d.end&&(d.end=I.getDefaultEventEnd(d.allDay,d.start)),r&&(d.start.add(r),d.end&&d.end.add(r)),s&&d.end.add(s),l&&!d.allDay&&(r||s)&&(d.start.stripZone(),d.end&&d.end.stripZone()),t.extend(u,o,d),Ge(u),a.push(function(){t.extend(u,c),Ge(u)})}),function(){for(var t=0;a.length>t;t++)a[t]()}}function F(e){var i,r=n.businessHours,s={className:"fc-nonbusiness",start:"09:00",end:"17:00",dow:[1,2,3,4,5],rendering:"inverse-background"},o=I.getView();return r&&(i=t.extend({},s,"object"==typeof r?r:{})),i?(e&&(i.start=null,i.end=null),T(E(i),o.start,o.end)):[]}function z(t,e){var i=e.source||{},r=B(e.constraint,i.constraint,n.eventConstraint),s=B(e.overlap,i.overlap,n.eventOverlap);return t=C(t),P(t,r,s,e)}function G(t){return P(t,n.selectConstraint,n.selectOverlap)}function _(e,n){var i,r;return n&&(i=t.extend({},n,e),r=T(E(i))[0]),r?z(e,r):(e=C(e),G(e))}function P(e,n,i,r){var s,o,l,a,u,c;if(e=t.extend({},e),e.start=e.start.clone().stripZone(),e.end=e.end.clone().stripZone(),null!=n){for(s=V(n),o=!1,a=0;s.length>a;a++)if(A(s[a],e)){o=!0;break}if(!o)return!1}for(l=I.getPeerEvents(r,e),a=0;l.length>a;a++)if(u=l[a],Y(u,e)){if(i===!1)return!1;if("function"==typeof i&&!i(u,r))return!1;if(r){if(c=B(u.overlap,(u.source||{}).overlap),c===!1)return!1;if("function"==typeof c&&!c(r,u))return!1}}return!0}function V(t){return"businessHours"===t?F():"object"==typeof t?T(E(t)):v(t)}function A(t,e){var n=t.start.clone().stripZone(),i=I.getEventEnd(t).stripZone();return e.start>=n&&i>=e.end}function Y(t,e){var n=t.start.clone().stripZone(),i=I.getEventEnd(t).stripZone();return i>e.start&&e.end>n}var I=this;I.isFetchNeeded=i,I.fetchEvents=r,I.addEventSource=l,I.removeEventSource=u,I.updateEvent=h,I.renderEvent=p,I.removeEvents=m,I.clientEvents=v,I.mutateEvent=H,I.normalizeEventRange=b,I.normalizeEventRangeTimes=D,I.ensureVisibleEventRange=C;var W,Z,j=I.trigger,U=I.getView,q=I.reportEvents,$={events:[]},X=[$],K=0,Q=0,J=0,te=[];t.each((n.events?[n.events]:[]).concat(n.eventSources||[]),function(t,e){var n=a(e);n&&X.push(n)}),I.getBusinessHoursEvents=F,I.isEventRangeAllowed=z,I.isSelectionRangeAllowed=G,I.isExternalDropRangeAllowed=_,I.getEventCache=function(){return te}}function Ge(t){t._allDay=t.allDay,t._start=t.start.clone(),t._end=t.end?t.end.clone():null}var Le=t.fullCalendar={version:"2.3.1"},_e=Le.views={};t.fn.fullCalendar=function(e){var n=Array.prototype.slice.call(arguments,1),i=this;return this.each(function(r,s){var o,l=t(s),a=l.data("fullCalendar");"string"==typeof e?a&&t.isFunction(a[e])&&(o=a[e].apply(a,n),r||(i=o),"destroy"===e&&l.removeData("fullCalendar")):a||(a=new Le.CalendarBase(l,e),l.data("fullCalendar",a),a.render())}),i};var Pe=["header","buttonText","buttonIcons","themeButtonIcons"];Le.intersectionToSeg=H,Le.applyAll=N,Le.debounce=$,Le.isInt=U,Le.htmlEscape=Y,Le.cssToStr=W,Le.proxy=q,Le.getClientRect=p,Le.getContentRect=m,Le.getScrollbarWidths=v;var Ve=null;Le.computeIntervalUnit=M,Le.durationHasTime=z;var Ae,Oe,Ne,Be=["sun","mon","tue","wed","thu","fri","sat"],Ye=["year","month","week","day","hour","minute","second","millisecond"],Ie={}.hasOwnProperty,We=/^\s*\d{4}-\d\d$/,Ze=/^\s*\d{4}-(?:(\d\d-\d\d)|(W\d\d$)|(W\d\d-\d)|(\d\d\d))((T| )(\d\d(:\d\d(:\d\d(\.\d+)?)?)?)?)?$/,je=e.fn,Ue=t.extend({},je);Le.moment=function(){return X(arguments)},Le.moment.utc=function(){var t=X(arguments,!0);return t.hasTime()&&t.utc(),t},Le.moment.parseZone=function(){return X(arguments,!0,!0)},je.clone=function(){var t=Ue.clone.apply(this,arguments);return Q(this,t),this._fullCalendar&&(t._fullCalendar=!0),t},je.week=je.weeks=function(t){var e=(this._locale||this._lang)._fullCalendar_weekCalc;return null==t&&"function"==typeof e?e(this):"ISO"===e?Ue.isoWeek.apply(this,arguments):Ue.week.apply(this,arguments)},je.time=function(t){if(!this._fullCalendar)return Ue.time.apply(this,arguments);if(null==t)return e.duration({hours:this.hours(),minutes:this.minutes(),seconds:this.seconds(),milliseconds:this.milliseconds()});this._ambigTime=!1,e.isDuration(t)||e.isMoment(t)||(t=e.duration(t));var n=0;return e.isDuration(t)&&(n=24*Math.floor(t.asDays())),this.hours(n+t.hours()).minutes(t.minutes()).seconds(t.seconds()).milliseconds(t.milliseconds())},je.stripTime=function(){var t;return this._ambigTime||(t=this.toArray(),this.utc(),Oe(this,t.slice(0,3)),this._ambigTime=!0,this._ambigZone=!0),this},je.hasTime=function(){return!this._ambigTime},je.stripZone=function(){var t,e;return this._ambigZone||(t=this.toArray(),e=this._ambigTime,this.utc(),Oe(this,t),this._ambigTime=e||!1,this._ambigZone=!0),this},je.hasZone=function(){return!this._ambigZone},je.local=function(){var t=this.toArray(),e=this._ambigZone;return Ue.local.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,e&&Ne(this,t),this},je.utc=function(){return Ue.utc.apply(this,arguments),this._ambigTime=!1,this._ambigZone=!1,this},t.each(["zone","utcOffset"],function(t,e){Ue[e]&&(je[e]=function(t){return null!=t&&(this._ambigTime=!1,this._ambigZone=!1),Ue[e].apply(this,arguments)})}),je.format=function(){return this._fullCalendar&&arguments[0]?ee(this,arguments[0]):this._ambigTime?te(this,"YYYY-MM-DD"):this._ambigZone?te(this,"YYYY-MM-DD[T]HH:mm:ss"):Ue.format.apply(this,arguments)},je.toISOString=function(){return this._ambigTime?te(this,"YYYY-MM-DD"):this._ambigZone?te(this,"YYYY-MM-DD[T]HH:mm:ss"):Ue.toISOString.apply(this,arguments)},je.isWithin=function(t,e){var n=K([this,t,e]);return n[0]>=n[1]&&n[0]').addClass(n.className||"").css({top:0,left:0}).append(n.content).appendTo(n.parentEl),this.el.on("click",".fc-close",function(){e.hide()}),n.autoHide&&t(document).on("mousedown",this.documentMousedownProxy=q(this,"documentMousedown"))},documentMousedown:function(e){this.el&&!t(e.target).closest(this.el).length&&this.hide()},destroy:function(){this.hide(),this.el&&(this.el.remove(),this.el=null),t(document).off("mousedown",this.documentMousedownProxy)},position:function(){var e,n,i,r,s,o=this.options,l=this.el.offsetParent().offset(),a=this.el.outerWidth(),u=this.el.outerHeight(),c=t(window),d=f(this.el);r=o.top||0,s=void 0!==o.left?o.left:void 0!==o.right?o.right-a:0,d.is(window)||d.is(document)?(d=c,e=0,n=0):(i=d.offset(),e=i.top,n=i.left),e+=c.scrollTop(),n+=c.scrollLeft(),o.viewportConstrain!==!1&&(r=Math.min(r,e+d.outerHeight()-u-this.margin),r=Math.max(r,e+this.margin),s=Math.min(s,n+d.outerWidth()-a-this.margin),s=Math.max(s,n+this.margin)),this.el.css({top:r-l.top,left:s-l.left})},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))}}),Qe=ue.extend({grid:null,rowCoords:null,colCoords:null,containerEl:null,bounds:null,constructor:function(t){this.grid=t},build:function(){this.rowCoords=this.grid.computeRowCoords(),this.colCoords=this.grid.computeColCoords(),this.computeBounds()},clear:function(){this.rowCoords=null,this.colCoords=null},getCell:function(e,n){var i,r,s,o=this.rowCoords,l=o.length,a=this.colCoords,u=a.length,c=null,d=null;if(this.inBounds(e,n)){for(i=0;l>i;i++)if(r=o[i],n>=r.top&&r.bottom>n){c=i;break}for(i=0;u>i;i++)if(r=a[i],e>=r.left&&r.right>e){d=i;break}if(null!==c&&null!==d)return s=this.grid.getCell(c,d),s.grid=this.grid,t.extend(s,o[c],a[d]),s}return null},computeBounds:function(){this.bounds=this.containerEl?p(this.containerEl):null},inBounds:function(t,e){var n=this.bounds;return n?t>=n.left&&n.right>t&&e>=n.top&&n.bottom>e:!0}}),Je=ue.extend({coordMaps:null,constructor:function(t){this.coordMaps=t},build:function(){var t,e=this.coordMaps;for(t=0;e.length>t;t++)e[t].build()},getCell:function(t,e){var n,i=this.coordMaps,r=null;for(n=0;i.length>n&&!r;n++)r=i[n].getCell(t,e);return r},clear:function(){var t,e=this.coordMaps;for(t=0;e.length>t;t++)e[t].clear()}}),tn=Le.DragListener=ue.extend({options:null,isListening:!1,isDragging:!1,originX:null,originY:null,mousemoveProxy:null,mouseupProxy:null,subjectEl:null,subjectHref:null,scrollEl:null,scrollBounds:null,scrollTopVel:null,scrollLeftVel:null,scrollIntervalId:null,scrollHandlerProxy:null,scrollSensitivity:30,scrollSpeed:200,scrollIntervalMs:50,constructor:function(t){t=t||{},this.options=t,this.subjectEl=t.subjectEl +},mousedown:function(t){S(t)&&(t.preventDefault(),this.startListening(t),this.options.distance||this.startDrag(t))},startListening:function(e){var n;this.isListening||(e&&this.options.scroll&&(n=f(t(e.target)),n.is(window)||n.is(document)||(this.scrollEl=n,this.scrollHandlerProxy=$(q(this,"scrollHandler"),100),this.scrollEl.on("scroll",this.scrollHandlerProxy))),t(document).on("mousemove",this.mousemoveProxy=q(this,"mousemove")).on("mouseup",this.mouseupProxy=q(this,"mouseup")).on("selectstart",this.preventDefault),e?(this.originX=e.pageX,this.originY=e.pageY):(this.originX=0,this.originY=0),this.isListening=!0,this.listenStart(e))},listenStart:function(t){this.trigger("listenStart",t)},mousemove:function(t){var e,n,i=t.pageX-this.originX,r=t.pageY-this.originY;this.isDragging||(e=this.options.distance||1,n=i*i+r*r,n>=e*e&&this.startDrag(t)),this.isDragging&&this.drag(i,r,t)},startDrag:function(t){this.isListening||this.startListening(),this.isDragging||(this.isDragging=!0,this.dragStart(t))},dragStart:function(t){var e=this.subjectEl;this.trigger("dragStart",t),(this.subjectHref=e?e.attr("href"):null)&&e.removeAttr("href")},drag:function(t,e,n){this.trigger("drag",t,e,n),this.updateScroll(n)},mouseup:function(t){this.stopListening(t)},stopDrag:function(t){this.isDragging&&(this.stopScrolling(),this.dragStop(t),this.isDragging=!1)},dragStop:function(t){var e=this;this.trigger("dragStop",t),setTimeout(function(){e.subjectHref&&e.subjectEl.attr("href",e.subjectHref)},0)},stopListening:function(e){this.stopDrag(e),this.isListening&&(this.scrollEl&&(this.scrollEl.off("scroll",this.scrollHandlerProxy),this.scrollHandlerProxy=null),t(document).off("mousemove",this.mousemoveProxy).off("mouseup",this.mouseupProxy).off("selectstart",this.preventDefault),this.mousemoveProxy=null,this.mouseupProxy=null,this.isListening=!1,this.listenStop(e))},listenStop:function(t){this.trigger("listenStop",t)},trigger:function(t){this.options[t]&&this.options[t].apply(this,Array.prototype.slice.call(arguments,1))},preventDefault:function(t){t.preventDefault()},computeScrollBounds:function(){var t=this.scrollEl;this.scrollBounds=t?g(t):null},updateScroll:function(t){var e,n,i,r,s=this.scrollSensitivity,o=this.scrollBounds,l=0,a=0;o&&(e=(s-(t.pageY-o.top))/s,n=(s-(o.bottom-t.pageY))/s,i=(s-(t.pageX-o.left))/s,r=(s-(o.right-t.pageX))/s,e>=0&&1>=e?l=-1*e*this.scrollSpeed:n>=0&&1>=n&&(l=n*this.scrollSpeed),i>=0&&1>=i?a=-1*i*this.scrollSpeed:r>=0&&1>=r&&(a=r*this.scrollSpeed)),this.setScrollVel(l,a)},setScrollVel:function(t,e){this.scrollTopVel=t,this.scrollLeftVel=e,this.constrainScrollVel(),!this.scrollTopVel&&!this.scrollLeftVel||this.scrollIntervalId||(this.scrollIntervalId=setInterval(q(this,"scrollIntervalFunc"),this.scrollIntervalMs))},constrainScrollVel:function(){var t=this.scrollEl;0>this.scrollTopVel?0>=t.scrollTop()&&(this.scrollTopVel=0):this.scrollTopVel>0&&t.scrollTop()+t[0].clientHeight>=t[0].scrollHeight&&(this.scrollTopVel=0),0>this.scrollLeftVel?0>=t.scrollLeft()&&(this.scrollLeftVel=0):this.scrollLeftVel>0&&t.scrollLeft()+t[0].clientWidth>=t[0].scrollWidth&&(this.scrollLeftVel=0)},scrollIntervalFunc:function(){var t=this.scrollEl,e=this.scrollIntervalMs/1e3;this.scrollTopVel&&t.scrollTop(t.scrollTop()+this.scrollTopVel*e),this.scrollLeftVel&&t.scrollLeft(t.scrollLeft()+this.scrollLeftVel*e),this.constrainScrollVel(),this.scrollTopVel||this.scrollLeftVel||this.stopScrolling()},stopScrolling:function(){this.scrollIntervalId&&(clearInterval(this.scrollIntervalId),this.scrollIntervalId=null,this.scrollStop())},scrollHandler:function(){this.scrollIntervalId||this.scrollStop()},scrollStop:function(){}}),en=tn.extend({coordMap:null,origCell:null,cell:null,coordAdjust:null,constructor:function(t,e){tn.prototype.constructor.call(this,e),this.coordMap=t},listenStart:function(t){var e,n,i,r=this.subjectEl;tn.prototype.listenStart.apply(this,arguments),this.computeCoords(),t?(n={left:t.pageX,top:t.pageY},i=n,r&&(e=g(r),i=D(i,e)),this.origCell=this.getCell(i.left,i.top),r&&this.options.subjectCenter&&(this.origCell&&(e=b(this.origCell,e)||e),i=C(e)),this.coordAdjust=T(i,n)):(this.origCell=null,this.coordAdjust=null)},computeCoords:function(){this.coordMap.build(),this.computeScrollBounds()},dragStart:function(t){var e;tn.prototype.dragStart.apply(this,arguments),e=this.getCell(t.pageX,t.pageY),e&&this.cellOver(e)},drag:function(t,e,n){var i;tn.prototype.drag.apply(this,arguments),i=this.getCell(n.pageX,n.pageY),ce(i,this.cell)||(this.cell&&this.cellOut(),i&&this.cellOver(i))},dragStop:function(){this.cellDone(),tn.prototype.dragStop.apply(this,arguments)},cellOver:function(t){this.cell=t,this.trigger("cellOver",t,ce(t,this.origCell),this.origCell)},cellOut:function(){this.cell&&(this.trigger("cellOut",this.cell),this.cellDone(),this.cell=null)},cellDone:function(){this.cell&&this.trigger("cellDone",this.cell)},listenStop:function(){tn.prototype.listenStop.apply(this,arguments),this.origCell=this.cell=null,this.coordMap.clear()},scrollStop:function(){tn.prototype.scrollStop.apply(this,arguments),this.computeCoords()},getCell:function(t,e){return this.coordAdjust&&(t+=this.coordAdjust.left,e+=this.coordAdjust.top),this.coordMap.getCell(t,e)}}),nn=ue.extend({options:null,sourceEl:null,el:null,parentEl:null,top0:null,left0:null,mouseY0:null,mouseX0:null,topDelta:null,leftDelta:null,mousemoveProxy:null,isFollowing:!1,isHidden:!1,isAnimating:!1,constructor:function(e,n){this.options=n=n||{},this.sourceEl=e,this.parentEl=n.parentEl?t(n.parentEl):e.parent()},start:function(e){this.isFollowing||(this.isFollowing=!0,this.mouseY0=e.pageY,this.mouseX0=e.pageX,this.topDelta=0,this.leftDelta=0,this.isHidden||this.updatePosition(),t(document).on("mousemove",this.mousemoveProxy=q(this,"mousemove")))},stop:function(e,n){function i(){this.isAnimating=!1,r.destroyEl(),this.top0=this.left0=null,n&&n()}var r=this,s=this.options.revertDuration;this.isFollowing&&!this.isAnimating&&(this.isFollowing=!1,t(document).off("mousemove",this.mousemoveProxy),e&&s&&!this.isHidden?(this.isAnimating=!0,this.el.animate({top:this.top0,left:this.left0},{duration:s,complete:i})):i())},getEl:function(){var t=this.el;return t||(this.sourceEl.width(),t=this.el=this.sourceEl.clone().css({position:"absolute",visibility:"",display:this.isHidden?"none":"",margin:0,right:"auto",bottom:"auto",width:this.sourceEl.width(),height:this.sourceEl.height(),opacity:this.options.opacity||"",zIndex:this.options.zIndex}).appendTo(this.parentEl)),t},destroyEl:function(){this.el&&(this.el.remove(),this.el=null)},updatePosition:function(){var t,e;this.getEl(),null===this.top0&&(this.sourceEl.width(),t=this.sourceEl.offset(),e=this.el.offsetParent().offset(),this.top0=t.top-e.top,this.left0=t.left-e.left),this.el.css({top:this.top0+this.topDelta,left:this.left0+this.leftDelta})},mousemove:function(t){this.topDelta=t.pageY-this.mouseY0,this.leftDelta=t.pageX-this.mouseX0,this.isHidden||this.updatePosition()},hide:function(){this.isHidden||(this.isHidden=!0,this.el&&this.el.hide())},show:function(){this.isHidden&&(this.isHidden=!1,this.updatePosition(),this.getEl().show())}}),rn=ue.extend({view:null,isRTL:null,cellHtml:"",constructor:function(t){this.view=t,this.isRTL=t.opt("isRTL")},rowHtml:function(t,e){var n,i,r=this.getHtmlRenderer("cell",t),s="";for(e=e||0,n=0;this.colCnt>n;n++)i=this.getCell(e,n),s+=r(i);return s=this.bookendCells(s,t,e),""+s+""},bookendCells:function(t,e,n){var i=this.getHtmlRenderer("intro",e)(n||0),r=this.getHtmlRenderer("outro",e)(n||0),s=this.isRTL?r:i,o=this.isRTL?i:r;return"string"==typeof t?s+t+o:t.prepend(s).append(o)},getHtmlRenderer:function(t,e){var n,i,r,s,o=this.view;return n=t+"Html",e&&(i=e+Z(t)+"Html"),i&&(s=o[i])?r=o:i&&(s=this[i])?r=this:(s=o[n])?r=o:(s=this[n])&&(r=this),"function"==typeof s?function(){return s.apply(r,arguments)||""}:function(){return s||""}}}),sn=Le.Grid=rn.extend({start:null,end:null,rowCnt:0,colCnt:0,rowData:null,colData:null,el:null,coordMap:null,elsByFill:null,externalDragStartProxy:null,colHeadFormat:null,eventTimeFormat:null,displayEventTime:null,displayEventEnd:null,cellDuration:null,largeUnit:null,constructor:function(){rn.apply(this,arguments),this.coordMap=new Qe(this),this.elsByFill={},this.externalDragStartProxy=q(this,"externalDragStart")},computeColHeadFormat:function(){},computeEventTimeFormat:function(){return this.view.opt("smallTimeFormat")},computeDisplayEventTime:function(){return!0},computeDisplayEventEnd:function(){return!0},setRange:function(t){var e,n,i=this.view;this.start=t.start.clone(),this.end=t.end.clone(),this.rowData=[],this.colData=[],this.updateCells(),this.colHeadFormat=i.opt("columnFormat")||this.computeColHeadFormat(),this.eventTimeFormat=i.opt("eventTimeFormat")||i.opt("timeFormat")||this.computeEventTimeFormat(),e=i.opt("displayEventTime"),null==e&&(e=this.computeDisplayEventTime()),n=i.opt("displayEventEnd"),null==n&&(n=this.computeDisplayEventEnd()),this.displayEventTime=e,this.displayEventEnd=n},updateCells:function(){},rangeToSegs:function(){},diffDates:function(t,e){return this.largeUnit?k(t,e,this.largeUnit):x(t,e)},getCell:function(e,n){var i;return null==n&&("number"==typeof e?(n=e%this.colCnt,e=Math.floor(e/this.colCnt)):(n=e.col,e=e.row)),i={row:e,col:n},t.extend(i,this.getRowData(e),this.getColData(n)),t.extend(i,this.computeCellRange(i)),i},computeCellRange:function(t){var e=this.computeCellDate(t);return{start:e,end:e.clone().add(this.cellDuration)}},computeCellDate:function(){},getRowData:function(t){return this.rowData[t]||{}},getColData:function(t){return this.colData[t]||{}},getRowEl:function(){},getColEl:function(){},getCellDayEl:function(t){return this.getColEl(t.col)||this.getRowEl(t.row)},computeRowCoords:function(){var t,e,n,i=[];for(t=0;this.rowCnt>t;t++)e=this.getRowEl(t),n=e.offset().top,i.push({top:n,bottom:n+e.outerHeight()});return i},computeColCoords:function(){var t,e,n,i=[];for(t=0;this.colCnt>t;t++)e=this.getColEl(t),n=e.offset().left,i.push({left:n,right:n+e.outerWidth()});return i},setElement:function(e){var n=this;this.el=e,e.on("mousedown",function(e){t(e.target).is(".fc-event-container *, .fc-more")||t(e.target).closest(".fc-popover").length||n.dayMousedown(e)}),this.bindSegHandlers(),this.bindGlobalHandlers()},removeElement:function(){this.unbindGlobalHandlers(),this.el.remove()},renderSkeleton:function(){},renderDates:function(){},destroyDates:function(){},bindGlobalHandlers:function(){t(document).on("dragstart sortstart",this.externalDragStartProxy)},unbindGlobalHandlers:function(){t(document).off("dragstart sortstart",this.externalDragStartProxy)},dayMousedown:function(t){var e,n,i=this,r=this.view,s=r.opt("selectable"),a=new en(this.coordMap,{scroll:r.opt("dragScroll"),dragStart:function(){r.unselect()},cellOver:function(t,r,l){l&&(e=r?t:null,s&&(n=i.computeSelection(l,t),n?i.renderSelection(n):o()))},cellOut:function(){e=null,n=null,i.destroySelection(),l()},listenStop:function(t){e&&r.trigger("dayClick",i.getCellDayEl(e),e.start,t),n&&r.reportSelection(n,t),l()}});a.mousedown(t)},renderRangeHelper:function(t,e){var n=this.fabricateHelperEvent(t,e);this.renderHelper(n,e)},fabricateHelperEvent:function(t,e){var n=e?_(e.event):{};return n.start=t.start.clone(),n.end=t.end?t.end.clone():null,n.allDay=null,this.view.calendar.normalizeEventRange(n),n.className=(n.className||[]).concat("fc-helper"),e||(n.editable=!1),n},renderHelper:function(){},destroyHelper:function(){},renderSelection:function(t){this.renderHighlight(t)},destroySelection:function(){this.destroyHighlight()},computeSelection:function(t,e){var n,i=[t.start,t.end,e.start,e.end];return i.sort(j),n={start:i[0].clone(),end:i[3].clone()},this.view.calendar.isSelectionRangeAllowed(n)?n:null},renderHighlight:function(t){this.renderFill("highlight",this.rangeToSegs(t))},destroyHighlight:function(){this.destroyFill("highlight")},highlightSegClasses:function(){return["fc-highlight"]},renderFill:function(){},destroyFill:function(t){var e=this.elsByFill[t];e&&(e.remove(),delete this.elsByFill[t])},renderFillSegEls:function(e,n){var i,r=this,s=this[e+"SegEl"],o="",l=[];if(n.length){for(i=0;n.length>i;i++)o+=this.fillSegHtml(e,n[i]);t(o).each(function(e,i){var o=n[e],a=t(i);s&&(a=s.call(r,o,a)),a&&(a=t(a),a.is(r.fillSegTag)&&(o.el=a,l.push(o)))})}return l},fillSegTag:"div",fillSegHtml:function(t,e){var n=this[t+"SegClasses"],i=this[t+"SegCss"],r=n?n.call(this,e):[],s=W(i?i.call(this,e):{});return"<"+this.fillSegTag+(r.length?' class="'+r.join(" ")+'"':"")+(s?' style="'+s+'"':"")+" />"},headHtml:function(){return'
'+""+""+this.rowHtml("head")+""+"
"+"
"},headCellHtml:function(t){var e=this.view,n=t.start;return''+Y(n.format(this.colHeadFormat))+""},bgCellHtml:function(t){var e=this.view,n=t.start,i=this.getDayClasses(n);return i.unshift("fc-day",e.widgetContentClass),'"},getDayClasses:function(t){var e=this.view,n=e.calendar.getNow().stripTime(),i=["fc-"+Be[t.day()]];return 1==e.intervalDuration.as("months")&&t.month()!=e.intervalStart.month()&&i.push("fc-other-month"),t.isSame(n,"day")?i.push("fc-today",e.highlightStateClass):n>t?i.push("fc-past"):i.push("fc-future"),i}});sn.mixin({mousedOverSeg:null,isDraggingSeg:!1,isResizingSeg:!1,isDraggingExternal:!1,segs:null,renderEvents:function(t){var e,n,i=this.eventsToSegs(t),r=[],s=[];for(e=0;i.length>e;e++)n=i[e],de(n.event)?r.push(n):s.push(n);r=this.renderBgSegs(r)||r,s=this.renderFgSegs(s)||s,this.segs=r.concat(s)},destroyEvents:function(){this.triggerSegMouseout(),this.destroyFgSegs(),this.destroyBgSegs(),this.segs=null},getEventSegs:function(){return this.segs||[]},renderFgSegs:function(){},destroyFgSegs:function(){},renderFgSegEls:function(e,n){var i,r=this.view,s="",o=[];if(e.length){for(i=0;e.length>i;i++)s+=this.fgSegHtml(e[i],n);t(s).each(function(n,i){var s=e[n],l=r.resolveEventEl(s.event,t(i));l&&(l.data("fc-seg",s),s.el=l,o.push(s))})}return o},fgSegHtml:function(){},renderBgSegs:function(t){return this.renderFill("bgEvent",t)},destroyBgSegs:function(){this.destroyFill("bgEvent")},bgEventSegEl:function(t,e){return this.view.resolveEventEl(t.event,e)},bgEventSegClasses:function(t){var e=t.event,n=e.source||{};return["fc-bgevent"].concat(e.className,n.className||[])},bgEventSegCss:function(t){var e=this.view,n=t.event,i=n.source||{};return{"background-color":n.backgroundColor||n.color||i.backgroundColor||i.color||e.opt("eventBackgroundColor")||e.opt("eventColor")}},businessHoursSegClasses:function(){return["fc-nonbusiness","fc-bgevent"]},bindSegHandlers:function(){var e=this,n=this.view;t.each({mouseenter:function(t,n){e.triggerSegMouseover(t,n)},mouseleave:function(t,n){e.triggerSegMouseout(t,n)},click:function(t,e){return n.trigger("eventClick",this,t.event,e)},mousedown:function(i,r){t(r.target).is(".fc-resizer")&&n.isEventResizable(i.event)?e.segResizeMousedown(i,r,t(r.target).is(".fc-start-resizer")):n.isEventDraggable(i.event)&&e.segDragMousedown(i,r)}},function(n,i){e.el.on(n,".fc-event-container > *",function(n){var r=t(this).data("fc-seg");return!r||e.isDraggingSeg||e.isResizingSeg?void 0:i.call(this,r,n)})})},triggerSegMouseover:function(t,e){this.mousedOverSeg||(this.mousedOverSeg=t,this.view.trigger("eventMouseover",t.el[0],t.event,e))},triggerSegMouseout:function(t,e){e=e||{},this.mousedOverSeg&&(t=t||this.mousedOverSeg,this.mousedOverSeg=null,this.view.trigger("eventMouseout",t.el[0],t.event,e))},segDragMousedown:function(t,e){var n,i=this,r=this.view,s=r.calendar,a=t.el,u=t.event,c=new nn(t.el,{parentEl:r.el,opacity:r.opt("dragOpacity"),revertDuration:r.opt("dragRevertDuration"),zIndex:2}),d=new en(r.coordMap,{distance:5,scroll:r.opt("dragScroll"),subjectEl:a,subjectCenter:!0,listenStart:function(t){c.hide(),c.start(t)},dragStart:function(e){i.triggerSegMouseout(t,e),i.segDragStart(t,e),r.hideEvent(u)},cellOver:function(e,l,a){t.cell&&(a=t.cell),n=i.computeEventDrop(a,e,u),n&&!s.isEventRangeAllowed(n,u)&&(o(),n=null),n&&r.renderDrag(n,t)?c.hide():c.show(),l&&(n=null)},cellOut:function(){r.destroyDrag(),c.show(),n=null},cellDone:function(){l()},dragStop:function(e){c.stop(!n,function(){r.destroyDrag(),r.showEvent(u),i.segDragStop(t,e),n&&r.reportEventDrop(u,n,this.largeUnit,a,e)})},listenStop:function(){c.stop()}});d.mousedown(e)},segDragStart:function(t,e){this.isDraggingSeg=!0,this.view.trigger("eventDragStart",t.el[0],t.event,e,{})},segDragStop:function(t,e){this.isDraggingSeg=!1,this.view.trigger("eventDragStop",t.el[0],t.event,e,{})},computeEventDrop:function(t,e,n){var i,r,s=this.view.calendar,o=t.start,l=e.start;return o.hasTime()===l.hasTime()?(i=this.diffDates(l,o),n.allDay&&z(i)?(r={start:n.start.clone(),end:s.getEventEnd(n),allDay:!1},s.normalizeEventRangeTimes(r)):r={start:n.start.clone(),end:n.end?n.end.clone():null,allDay:n.allDay},r.start.add(i),r.end&&r.end.add(i)):r={start:l.clone(),end:null,allDay:!l.hasTime()},r},applyDragOpacity:function(t){var e=this.view.opt("dragOpacity");null!=e&&t.each(function(t,n){n.style.opacity=e})},externalDragStart:function(e,n){var i,r,s=this.view;s.opt("droppable")&&(i=t((n?n.item:null)||e.target),r=s.opt("dropAccept"),(t.isFunction(r)?r.call(i[0],i):i.is(r))&&(this.isDraggingExternal||this.listenToExternalDrag(i,e,n)))},listenToExternalDrag:function(t,e,n){var i,r,s=this,a=ve(t);i=new en(this.coordMap,{listenStart:function(){s.isDraggingExternal=!0},cellOver:function(t){r=s.computeExternalDrop(t,a),r?s.renderDrag(r):o()},cellOut:function(){r=null,s.destroyDrag(),l()},dragStop:function(){s.destroyDrag(),l(),r&&s.view.reportExternalDrop(a,r,t,e,n)},listenStop:function(){s.isDraggingExternal=!1}}),i.startDrag(e)},computeExternalDrop:function(t,e){var n={start:t.start.clone(),end:null};return e.startTime&&!n.start.hasTime()&&n.start.time(e.startTime),e.duration&&(n.end=n.start.clone().add(e.duration)),this.view.calendar.isExternalDropRangeAllowed(n,e.eventProps)?n:null},renderDrag:function(){},destroyDrag:function(){},segResizeMousedown:function(t,e,n){var i,r,s=this,a=this.view,u=a.calendar,c=t.el,d=t.event,h=u.getEventEnd(d);i=new en(this.coordMap,{distance:5,scroll:a.opt("dragScroll"),subjectEl:c,dragStart:function(e){s.triggerSegMouseout(t,e),s.segResizeStart(t,e)},cellOver:function(e,i,l){r=n?s.computeEventStartResize(l,e,d):s.computeEventEndResize(l,e,d),r&&(u.isEventRangeAllowed(r,d)?r.start.isSame(d.start)&&r.end.isSame(h)&&(r=null):(o(),r=null)),r&&(a.hideEvent(d),s.renderEventResize(r,t))},cellOut:function(){r=null},cellDone:function(){s.destroyEventResize(),a.showEvent(d),l()},dragStop:function(e){s.segResizeStop(t,e),r&&a.reportEventResize(d,r,this.largeUnit,c,e)}}),i.mousedown(e)},segResizeStart:function(t,e){this.isResizingSeg=!0,this.view.trigger("eventResizeStart",t.el[0],t.event,e,{})},segResizeStop:function(t,e){this.isResizingSeg=!1,this.view.trigger("eventResizeStop",t.el[0],t.event,e,{})},computeEventStartResize:function(t,e,n){return this.computeEventResize("start",t,e,n)},computeEventEndResize:function(t,e,n){return this.computeEventResize("end",t,e,n)},computeEventResize:function(t,e,n,i){var r,s,o=this.view.calendar,l=this.diffDates(n[t],e[t]);return r={start:i.start.clone(),end:o.getEventEnd(i),allDay:i.allDay},r.allDay&&z(l)&&(r.allDay=!1,o.normalizeEventRangeTimes(r)),r[t].add(l),r.start.isBefore(r.end)||(s=i.allDay?o.defaultAllDayEventDuration:o.defaultTimedEventDuration,this.cellDuration&&s>this.cellDuration&&(s=this.cellDuration),"start"==t?r.start=r.end.clone().subtract(s):r.end=r.start.clone().add(s)),r},renderEventResize:function(){},destroyEventResize:function(){},getEventTimeText:function(t,e,n){return null==e&&(e=this.eventTimeFormat),null==n&&(n=this.displayEventEnd),this.displayEventTime&&t.start.hasTime()?n&&t.end?this.view.formatRange(t,e):t.start.format(e):""},getSegClasses:function(t,e,n){var i=t.event,r=["fc-event",t.isStart?"fc-start":"fc-not-start",t.isEnd?"fc-end":"fc-not-end"].concat(i.className,i.source?i.source.className:[]);return e&&r.push("fc-draggable"),n&&r.push("fc-resizable"),r},getEventSkinCss:function(t){var e=this.view,n=t.source||{},i=t.color,r=n.color,s=e.opt("eventColor");return{"background-color":t.backgroundColor||i||n.backgroundColor||r||e.opt("eventBackgroundColor")||s,"border-color":t.borderColor||i||n.borderColor||r||e.opt("eventBorderColor")||s,color:t.textColor||n.textColor||e.opt("eventTextColor")}},eventsToSegs:function(t,e){var n,i=this.eventsToRanges(t),r=[];for(n=0;i.length>n;n++)r.push.apply(r,this.eventRangeToSegs(i[n],e));return r},eventsToRanges:function(e){var n=this,i=ge(e),r=[];return t.each(i,function(t,e){e.length&&r.push.apply(r,he(e[0])?n.eventsToInverseRanges(e):n.eventsToNormalRanges(e))}),r},eventsToNormalRanges:function(t){var e,n,i,r,s=this.view.calendar,o=[];for(e=0;t.length>e;e++)n=t[e],i=n.start.clone().stripZone(),r=s.getEventEnd(n).stripZone(),o.push({event:n,start:i,end:r,eventStartMS:+i,eventDurationMS:r-i});return o},eventsToInverseRanges:function(t){var e,n,i=this.view,r=i.start.clone().stripZone(),s=i.end.clone().stripZone(),o=this.eventsToNormalRanges(t),l=[],a=t[0],u=r;for(o.sort(pe),e=0;o.length>e;e++)n=o[e],n.start>u&&l.push({event:a,start:u,end:n.start}),u=n.end;return s>u&&l.push({event:a,start:u,end:s}),l},eventRangeToSegs:function(t,e){var n,i,r;for(n=e?e(t):this.rangeToSegs(t),i=0;n.length>i;i++)r=n[i],r.event=t.event,r.eventStartMS=t.eventStartMS,r.eventDurationMS=t.eventDurationMS;return n}}),Le.compareSegs=me,Le.dataAttrPrefix="";var on=sn.extend({numbersVisible:!1,bottomCoordPadding:0,breakOnWeeks:null,cellDates:null,dayToCellOffsets:null,rowEls:null,dayEls:null,helperEls:null,constructor:function(){sn.apply(this,arguments),this.cellDuration=e.duration(1,"day")},renderDates:function(t){var e,n,i,r=this.view,s=this.rowCnt,o=this.colCnt,l=s*o,a="";for(e=0;s>e;e++)a+=this.dayRowHtml(e,t);for(this.el.html(a),this.rowEls=this.el.find(".fc-row"),this.dayEls=this.el.find(".fc-day"),n=0;l>n;n++)i=this.getCell(n),r.trigger("dayRender",null,i.start,this.dayEls.eq(n))},destroyDates:function(){this.destroySegPopover()},renderBusinessHours:function(){var t=this.view.calendar.getBusinessHoursEvents(!0),e=this.eventsToSegs(t);this.renderFill("businessHours",e,"bgevent")},dayRowHtml:function(t,e){var n=this.view,i=["fc-row","fc-week",n.widgetContentClass];return e&&i.push("fc-rigid"),'
'+'
'+""+this.rowHtml("day",t)+"
"+"
"+'
'+""+(this.numbersVisible?""+this.rowHtml("number",t)+"":"")+"
"+"
"+"
"},dayCellHtml:function(t){return this.bgCellHtml(t)},computeColHeadFormat:function(){return this.rowCnt>1?"ddd":this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},computeEventTimeFormat:function(){return this.view.opt("extraSmallTimeFormat")},computeDisplayEventEnd:function(){return 1==this.colCnt},updateCells:function(){var t,e,n,i;if(this.updateCellDates(),t=this.cellDates,this.breakOnWeeks){for(e=t[0].day(),i=1;t.length>i&&t[i].day()!=e;i++);n=Math.ceil(t.length/i)}else n=1,i=t.length;this.rowCnt=n,this.colCnt=i},updateCellDates:function(){for(var t=this.view,e=this.start.clone(),n=[],i=-1,r=[];e.isBefore(this.end);)t.isHiddenDay(e)?r.push(i+.5):(i++,r.push(i),n.push(e.clone())),e.add(1,"days");this.cellDates=n,this.dayToCellOffsets=r},computeCellDate:function(t){var e=this.colCnt,n=t.row*e+(this.isRTL?e-t.col-1:t.col);return this.cellDates[n].clone()},getRowEl:function(t){return this.rowEls.eq(t)},getColEl:function(t){return this.dayEls.eq(t)},getCellDayEl:function(t){return this.dayEls.eq(t.row*this.colCnt+t.col)},computeRowCoords:function(){var t=sn.prototype.computeRowCoords.call(this);return t[t.length-1].bottom+=this.bottomCoordPadding,t},rangeToSegs:function(t){var e,n,i,r,s,o,l,a,u,c,d=this.isRTL,h=this.rowCnt,f=this.colCnt,g=[];for(t=this.view.computeDayRange(t),e=this.dateToCellOffset(t.start),n=this.dateToCellOffset(t.end.subtract(1,"days")),i=0;h>i;i++)r=i*f,s=r+f-1,a=Math.max(r,e),u=Math.min(s,n),a=Math.ceil(a),u=Math.floor(u),u>=a&&(o=a===e,l=u===n,a-=r,u-=r,c={row:i,isStart:o,isEnd:l},d?(c.leftCol=f-u-1,c.rightCol=f-a-1):(c.leftCol=a,c.rightCol=u),g.push(c));return g},dateToCellOffset:function(t){var e=this.dayToCellOffsets,n=t.diff(this.start,"days");return 0>n?e[0]-1:n>=e.length?e[e.length-1]+1:e[n]},renderDrag:function(t,e){return this.renderHighlight(this.view.calendar.ensureVisibleEventRange(t)),e&&!e.el.closest(this.el).length?(this.renderRangeHelper(t,e),this.applyDragOpacity(this.helperEls),!0):void 0},destroyDrag:function(){this.destroyHighlight(),this.destroyHelper()},renderEventResize:function(t,e){this.renderHighlight(t),this.renderRangeHelper(t,e)},destroyEventResize:function(){this.destroyHighlight(),this.destroyHelper()},renderHelper:function(e,n){var i,r=[],s=this.eventsToSegs([e]);s=this.renderFgSegEls(s),i=this.renderSegRows(s),this.rowEls.each(function(e,s){var o,l=t(s),a=t('
');o=n&&n.row===e?n.el.position().top:l.find(".fc-content-skeleton tbody").position().top,a.css("top",o).find("table").append(i[e].tbodyEl),l.append(a),r.push(a[0])}),this.helperEls=t(r)},destroyHelper:function(){this.helperEls&&(this.helperEls.remove(),this.helperEls=null)},fillSegTag:"td",renderFill:function(e,n,i){var r,s,o,l=[];for(n=this.renderFillSegEls(e,n),r=0;n.length>r;r++)s=n[r],o=this.renderFillRow(e,s,i),this.rowEls.eq(s.row).append(o),l.push(o[0]);return this.elsByFill[e]=t(l),n},renderFillRow:function(e,n,i){var r,s,o=this.colCnt,l=n.leftCol,a=n.rightCol+1;return i=i||e.toLowerCase(),r=t('
'+"
"+"
"),s=r.find("tr"),l>0&&s.append(''),s.append(n.el.attr("colspan",a-l)),o>a&&s.append(''),this.bookendCells(s,e),r}});on.mixin({rowStructs:null,destroyEvents:function(){this.destroySegPopover(),sn.prototype.destroyEvents.apply(this,arguments)},getEventSegs:function(){return sn.prototype.getEventSegs.call(this).concat(this.popoverSegs||[])},renderBgSegs:function(e){var n=t.grep(e,function(t){return t.event.allDay});return sn.prototype.renderBgSegs.call(this,n)},renderFgSegs:function(e){var n;return e=this.renderFgSegEls(e),n=this.rowStructs=this.renderSegRows(e),this.rowEls.each(function(e,i){t(i).find(".fc-content-skeleton > table").append(n[e].tbodyEl)}),e},destroyFgSegs:function(){for(var t,e=this.rowStructs||[];t=e.pop();)t.tbodyEl.remove();this.rowStructs=null},renderSegRows:function(t){var e,n,i=[];for(e=this.groupSegRows(t),n=0;e.length>n;n++)i.push(this.renderSegRow(n,e[n]));return i},fgSegHtml:function(t,e){var n,i,r=this.view,s=t.event,o=r.isEventDraggable(s),l=!e&&s.allDay&&t.isStart&&r.isEventResizableFromStart(s),a=!e&&s.allDay&&t.isEnd&&r.isEventResizableFromEnd(s),u=this.getSegClasses(t,o,l||a),c=W(this.getEventSkinCss(s)),d="";return u.unshift("fc-day-grid-event","fc-h-event"),t.isStart&&(n=this.getEventTimeText(s),n&&(d=''+Y(n)+"")),i=''+(Y(s.title||"")||" ")+"",'"+'
'+(this.isRTL?i+" "+d:d+" "+i)+"
"+(l?'
':"")+(a?'
':"")+""},renderSegRow:function(e,n){function i(e){for(;e>o;)c=(v[r-1]||[])[o],c?c.attr("rowspan",parseInt(c.attr("rowspan")||1,10)+1):(c=t(""),l.append(c)),m[r][o]=c,v[r][o]=c,o++}var r,s,o,l,a,u,c,d=this.colCnt,h=this.buildSegLevels(n),f=Math.max(1,h.length),g=t(""),p=[],m=[],v=[];for(r=0;f>r;r++){if(s=h[r],o=0,l=t(""),p.push([]),m.push([]),v.push([]),s)for(a=0;s.length>a;a++){for(u=s[a],i(u.leftCol),c=t('').append(u.el),u.leftCol!=u.rightCol?c.attr("colspan",u.rightCol-u.leftCol+1):v[r][o]=c;u.rightCol>=o;)m[r][o]=c,p[r][o]=u,o++;l.append(c)}i(d),this.bookendCells(l,"eventSkeleton"),g.append(l)}return{row:e,tbodyEl:g,cellMatrix:m,segMatrix:p,segLevels:h,segs:n}},buildSegLevels:function(t){var e,n,i,r=[];for(t.sort(me),e=0;t.length>e;e++){for(n=t[e],i=0;r.length>i&&ye(n,r[i]);i++);n.level=i,(r[i]||(r[i]=[])).push(n)}for(i=0;r.length>i;i++)r[i].sort(we);return r},groupSegRows:function(t){var e,n=[];for(e=0;this.rowCnt>e;e++)n.push([]);for(e=0;t.length>e;e++)n[t[e].row].push(t[e]);return n}}),on.mixin({segPopover:null,popoverSegs:null,destroySegPopover:function(){this.segPopover&&this.segPopover.hide()},limitRows:function(t){var e,n,i=this.rowStructs||[];for(e=0;i.length>e;e++)this.unlimitRow(e),n=t?"number"==typeof t?t:this.computeRowLevelLimit(e):!1,n!==!1&&this.limitRow(e,n)},computeRowLevelLimit:function(e){function n(e,n){s=Math.max(s,t(n).outerHeight())}var i,r,s,o=this.rowEls.eq(e),l=o.height(),a=this.rowStructs[e].tbodyEl.children();for(i=0;a.length>i;i++)if(r=a.eq(i).removeClass("fc-limited"),s=0,r.find("> td > :first-child").each(n),r.position().top+s>l)return i;return!1},limitRow:function(e,n){function i(i){for(;i>D;)r=E.getCell(e,D),c=E.getCellSegs(r,n),c.length&&(f=o[n-1][D],w=E.renderMoreLink(r,c),y=t("
").append(w),f.append(y),b.push(y[0])),D++}var r,s,o,l,a,u,c,d,h,f,g,p,m,v,y,w,E=this,S=this.rowStructs[e],b=[],D=0;if(n&&S.segLevels.length>n){for(s=S.segLevels[n-1],o=S.cellMatrix,l=S.tbodyEl.children().slice(n).addClass("fc-limited").get(),a=0;s.length>a;a++){for(u=s[a],i(u.leftCol),h=[],d=0;u.rightCol>=D;)r=this.getCell(e,D),c=this.getCellSegs(r,n),h.push(c),d+=c.length,D++;if(d){for(f=o[n-1][u.leftCol],g=f.attr("rowspan")||1,p=[],m=0;h.length>m;m++)v=t('').attr("rowspan",g),c=h[m],r=this.getCell(e,u.leftCol+m),w=this.renderMoreLink(r,[u].concat(c)),y=t("
").append(w),v.append(y),p.push(v[0]),b.push(v[0]);f.addClass("fc-limited").after(t(p)),l.push(f[0])}}i(this.colCnt),S.moreEls=t(b),S.limitedEls=t(l)}},unlimitRow:function(t){var e=this.rowStructs[t];e.moreEls&&(e.moreEls.remove(),e.moreEls=null),e.limitedEls&&(e.limitedEls.removeClass("fc-limited"),e.limitedEls=null)},renderMoreLink:function(e,n){var i=this,r=this.view;return t('').text(this.getMoreLinkText(n.length)).on("click",function(s){var o=r.opt("eventLimitClick"),l=e.start,a=t(this),u=i.getCellDayEl(e),c=i.getCellSegs(e),d=i.resliceDaySegs(c,l),h=i.resliceDaySegs(n,l);"function"==typeof o&&(o=r.trigger("eventLimitClick",null,{date:l,dayEl:u,moreEl:a,segs:d,hiddenSegs:h},s)),"popover"===o?i.showSegPopover(e,a,d):"string"==typeof o&&r.calendar.zoomTo(l,o)})},showSegPopover:function(t,e,n){var i,r,s=this,o=this.view,l=e.parent();i=1==this.rowCnt?o.el:this.rowEls.eq(t.row),r={className:"fc-more-popover",content:this.renderSegPopoverContent(t,n),parentEl:this.el,top:i.offset().top,autoHide:!0,viewportConstrain:o.opt("popoverViewportConstrain"),hide:function(){s.segPopover.destroy(),s.segPopover=null,s.popoverSegs=null}},this.isRTL?r.right=l.offset().left+l.outerWidth()+1:r.left=l.offset().left-1,this.segPopover=new Ke(r),this.segPopover.show()},renderSegPopoverContent:function(e,n){var i,r=this.view,s=r.opt("theme"),o=e.start.format(r.opt("dayPopoverFormat")),l=t('
'+''+''+Y(o)+""+'
'+"
"+'
'+'
'+"
"),a=l.find(".fc-event-container");for(n=this.renderFgSegEls(n,!0),this.popoverSegs=n,i=0;n.length>i;i++)n[i].cell=e,a.append(n[i].el);return l},resliceDaySegs:function(e,n){var i=t.map(e,function(t){return t.event}),r=n.clone().stripTime(),s=r.clone().add(1,"days"),o={start:r,end:s};return e=this.eventsToSegs(i,function(t){var e=H(t,o);return e?[e]:[]}),e.sort(me),e},getMoreLinkText:function(t){var e=this.view.opt("eventLimitText"); +return"function"==typeof e?e(t):"+"+t+" "+e},getCellSegs:function(t,e){for(var n,i=this.rowStructs[t.row].segMatrix,r=e||0,s=[];i.length>r;)n=i[r][t.col],n&&s.push(n),r++;return s}});var ln=sn.extend({slotDuration:null,snapDuration:null,minTime:null,maxTime:null,axisFormat:null,dayEls:null,slatEls:null,slatTops:null,helperEl:null,businessHourSegs:null,constructor:function(){sn.apply(this,arguments),this.processOptions()},renderDates:function(){this.el.html(this.renderHtml()),this.dayEls=this.el.find(".fc-day"),this.slatEls=this.el.find(".fc-slats tr")},renderBusinessHours:function(){var t=this.view.calendar.getBusinessHoursEvents();this.businessHourSegs=this.renderFill("businessHours",this.eventsToSegs(t),"bgevent")},renderHtml:function(){return'
'+this.rowHtml("slotBg")+"
"+"
"+'
'+""+this.slatRowHtml()+"
"+"
"},slotBgCellHtml:function(t){return this.bgCellHtml(t)},slatRowHtml:function(){for(var t,n,i,r=this.view,s=this.isRTL,o="",l=0===this.slotDuration.asMinutes()%15,a=e.duration(+this.minTime);this.maxTime>a;)t=this.start.clone().time(a),n=t.minutes(),i='"+(l&&n?"":""+Y(t.format(this.axisFormat))+"")+"",o+=""+(s?"":i)+''+(s?i:"")+"",a.add(this.slotDuration);return o},processOptions:function(){var t=this.view,n=t.opt("slotDuration"),i=t.opt("snapDuration");n=e.duration(n),i=i?e.duration(i):n,this.slotDuration=n,this.snapDuration=i,this.cellDuration=i,this.minTime=e.duration(t.opt("minTime")),this.maxTime=e.duration(t.opt("maxTime")),this.axisFormat=t.opt("axisFormat")||t.opt("smallTimeFormat")},computeColHeadFormat:function(){return this.colCnt>1?this.view.opt("dayOfMonthFormat"):"dddd"},computeEventTimeFormat:function(){return this.view.opt("noMeridiemTimeFormat")},computeDisplayEventEnd:function(){return!0},updateCells:function(){var t,e=this.view,n=[];for(t=this.start.clone();t.isBefore(this.end);)n.push({day:t.clone()}),t.add(1,"day"),t=e.skipHiddenDays(t);this.isRTL&&n.reverse(),this.colData=n,this.colCnt=n.length,this.rowCnt=Math.ceil((this.maxTime-this.minTime)/this.snapDuration)},computeCellDate:function(t){var e=this.computeSnapTime(t.row);return this.view.calendar.rezoneDate(t.day).time(e)},getColEl:function(t){return this.dayEls.eq(t)},computeSnapTime:function(t){return e.duration(this.minTime+this.snapDuration*t)},rangeToSegs:function(t){var e,n,i,r,s=this.colCnt,o=[];for(t={start:t.start.clone().stripZone(),end:t.end.clone().stripZone()},n=0;s>n;n++)i=this.colData[n].day,r={start:i.clone().time(this.minTime),end:i.clone().time(this.maxTime)},e=H(t,r),e&&(e.col=n,o.push(e));return o},updateSize:function(t){this.computeSlatTops(),t&&this.updateSegVerticals()},computeRowCoords:function(){var t,e,n=this.el.offset().top,i=[];for(t=0;this.rowCnt>t;t++)e={top:n+this.computeTimeTop(this.computeSnapTime(t))},t>0&&(i[t-1].bottom=e.top),i.push(e);return e.bottom=e.top+this.computeTimeTop(this.computeSnapTime(t)),i},computeDateTop:function(t,n){return this.computeTimeTop(e.duration(t.clone().stripZone()-n.clone().stripTime()))},computeTimeTop:function(t){var e,n,i,r,s=(t-this.minTime)/this.slotDuration;return s=Math.max(0,s),s=Math.min(this.slatEls.length,s),e=Math.floor(s),n=s-e,i=this.slatTops[e],n?(r=this.slatTops[e+1],i+(r-i)*n):i},computeSlatTops:function(){var e,n=[];this.slatEls.each(function(i,r){e=t(r).position().top,n.push(e)}),n.push(e+this.slatEls.last().outerHeight()),this.slatTops=n},renderDrag:function(t,e){return e?(this.renderRangeHelper(t,e),this.applyDragOpacity(this.helperEl),!0):(this.renderHighlight(this.view.calendar.ensureVisibleEventRange(t)),void 0)},destroyDrag:function(){this.destroyHelper(),this.destroyHighlight()},renderEventResize:function(t,e){this.renderRangeHelper(t,e)},destroyEventResize:function(){this.destroyHelper()},renderHelper:function(e,n){var i,r,s,o,l=this.eventsToSegs([e]);for(l=this.renderFgSegEls(l),i=this.renderSegTable(l),r=0;l.length>r;r++)s=l[r],n&&n.col===s.col&&(o=n.el,s.el.css({left:o.css("left"),right:o.css("right"),"margin-left":o.css("margin-left"),"margin-right":o.css("margin-right")}));this.helperEl=t('
').append(i).appendTo(this.el)},destroyHelper:function(){this.helperEl&&(this.helperEl.remove(),this.helperEl=null)},renderSelection:function(t){this.view.opt("selectHelper")?this.renderRangeHelper(t):this.renderHighlight(t)},destroySelection:function(){this.destroyHelper(),this.destroyHighlight()},renderFill:function(e,n,i){var r,s,o,l,a,u,c,d,h,f;if(n.length){for(n=this.renderFillSegEls(e,n),r=this.groupSegCols(n),i=i||e.toLowerCase(),s=t('
'+"
"+"
"),o=s.find("tr"),l=0;r.length>l;l++)if(a=r[l],u=t("").appendTo(o),a.length)for(c=t('
').appendTo(u),d=this.colData[l].day,h=0;a.length>h;h++)f=a[h],c.append(f.el.css({top:this.computeDateTop(f.start,d),bottom:-this.computeDateTop(f.end,d)}));this.bookendCells(o,e),this.el.append(s),this.elsByFill[e]=s}return n}});ln.mixin({eventSkeletonEl:null,renderFgSegs:function(e){return e=this.renderFgSegEls(e),this.el.append(this.eventSkeletonEl=t('
').append(this.renderSegTable(e))),e},destroyFgSegs:function(){this.eventSkeletonEl&&(this.eventSkeletonEl.remove(),this.eventSkeletonEl=null)},renderSegTable:function(e){var n,i,r,s,o,l,a=t("
"),u=a.find("tr");for(n=this.groupSegCols(e),this.computeSegVerticals(e),s=0;n.length>s;s++){for(o=n[s],Ee(o),l=t('
'),i=0;o.length>i;i++)r=o[i],r.el.css(this.generateSegPositionCss(r)),30>r.bottom-r.top&&r.el.addClass("fc-short"),l.append(r.el);u.append(t("").append(l))}return this.bookendCells(u,"eventSkeleton"),a},updateSegVerticals:function(){var t,e=(this.segs||[]).concat(this.businessHourSegs||[]);for(this.computeSegVerticals(e),t=0;e.length>t;t++)e[t].el.css(this.generateSegVerticalCss(e[t]))},computeSegVerticals:function(t){var e,n;for(e=0;t.length>e;e++)n=t[e],n.top=this.computeDateTop(n.start,n.start),n.bottom=this.computeDateTop(n.end,n.start)},fgSegHtml:function(t,e){var n,i,r,s=this.view,o=t.event,l=s.isEventDraggable(o),a=!e&&t.isStart&&s.isEventResizableFromStart(o),u=!e&&t.isEnd&&s.isEventResizableFromEnd(o),c=this.getSegClasses(t,l,a||u),d=W(this.getEventSkinCss(o));return c.unshift("fc-time-grid-event","fc-v-event"),s.isMultiDayEvent(o)?(t.isStart||t.isEnd)&&(n=this.getEventTimeText(t),i=this.getEventTimeText(t,"LT"),r=this.getEventTimeText(t,null,!1)):(n=this.getEventTimeText(o),i=this.getEventTimeText(o,"LT"),r=this.getEventTimeText(o,null,!1)),'"+'
'+(n?'
"+""+Y(n)+""+"
":"")+(o.title?'
'+Y(o.title)+"
":"")+"
"+'
'+(u?'
':"")+""},generateSegPositionCss:function(t){var e,n,i=this.view.opt("slotEventOverlap"),r=t.backwardCoord,s=t.forwardCoord,o=this.generateSegVerticalCss(t);return i&&(s=Math.min(1,r+2*(s-r))),this.isRTL?(e=1-s,n=r):(e=r,n=1-s),o.zIndex=t.level+1,o.left=100*e+"%",o.right=100*n+"%",i&&t.forwardPressure&&(o[this.isRTL?"marginLeft":"marginRight"]=20),o},generateSegVerticalCss:function(t){return{top:t.top,bottom:-t.bottom}},groupSegCols:function(t){var e,n=[];for(e=0;this.colCnt>e;e++)n.push([]);for(e=0;t.length>e;e++)n[t[e].col].push(t[e]);return n}});var an=Le.View=ue.extend({type:null,name:null,title:null,calendar:null,options:null,coordMap:null,el:null,isDisplayed:!1,isSkeletonRendered:!1,isEventsRendered:!1,start:null,end:null,intervalStart:null,intervalEnd:null,intervalDuration:null,intervalUnit:null,isSelected:!1,scrollerEl:null,scrollTop:null,widgetHeaderClass:null,widgetContentClass:null,highlightStateClass:null,nextDayThreshold:null,isHiddenDayHash:null,documentMousedownProxy:null,constructor:function(t,n,i,r){this.calendar=t,this.type=this.name=n,this.options=i,this.intervalDuration=r||e.duration(1,"day"),this.nextDayThreshold=e.duration(this.opt("nextDayThreshold")),this.initThemingProps(),this.initHiddenDays(),this.documentMousedownProxy=q(this,"documentMousedown"),this.initialize()},initialize:function(){},opt:function(t){return this.options[t]},trigger:function(t,e){var n=this.calendar;return n.trigger.apply(n,[t,e||this].concat(Array.prototype.slice.call(arguments,2),[this]))},setDate:function(t){this.setRange(this.computeRange(t))},setRange:function(e){t.extend(this,e),this.updateTitle()},computeRange:function(t){var e,n,i=M(this.intervalDuration),r=t.clone().startOf(i),s=r.clone().add(this.intervalDuration);return/year|month|week|day/.test(i)?(r.stripTime(),s.stripTime()):(r.hasTime()||(r=this.calendar.rezoneDate(r)),s.hasTime()||(s=this.calendar.rezoneDate(s))),e=r.clone(),e=this.skipHiddenDays(e),n=s.clone(),n=this.skipHiddenDays(n,-1,!0),{intervalUnit:i,intervalStart:r,intervalEnd:s,start:e,end:n}},computePrevDate:function(t){return this.massageCurrentDate(t.clone().startOf(this.intervalUnit).subtract(this.intervalDuration),-1)},computeNextDate:function(t){return this.massageCurrentDate(t.clone().startOf(this.intervalUnit).add(this.intervalDuration))},massageCurrentDate:function(t,e){return 1>=this.intervalDuration.as("days")&&this.isHiddenDay(t)&&(t=this.skipHiddenDays(t,e),t.startOf("day")),t},updateTitle:function(){this.title=this.computeTitle()},computeTitle:function(){return this.formatRange({start:this.intervalStart,end:this.intervalEnd},this.opt("titleFormat")||this.computeTitleFormat(),this.opt("titleRangeSeparator"))},computeTitleFormat:function(){return"year"==this.intervalUnit?"YYYY":"month"==this.intervalUnit?this.opt("monthYearFormat"):this.intervalDuration.as("days")>1?"ll":"LL"},formatRange:function(t,e,n){var i=t.end;return i.hasTime()||(i=i.clone().subtract(1)),re(t.start,i,e,n,this.opt("isRTL"))},setElement:function(t){this.el=t,this.bindGlobalHandlers()},removeElement:function(){this.clear(),this.isSkeletonRendered&&(this.destroySkeleton(),this.isSkeletonRendered=!1),this.unbindGlobalHandlers(),this.el.remove()},display:function(t){var e=null;this.isDisplayed&&(e=this.queryScroll()),this.clear(),this.setDate(t),this.render(),this.updateSize(),this.renderBusinessHours(),this.isDisplayed=!0,e=this.computeInitialScroll(e),this.forceScroll(e),this.triggerRender()},clear:function(){this.isDisplayed&&(this.unselect(),this.clearEvents(),this.triggerDestroy(),this.destroyBusinessHours(),this.destroy(),this.isDisplayed=!1)},render:function(){this.isSkeletonRendered||(this.renderSkeleton(),this.isSkeletonRendered=!0),this.renderDates()},destroy:function(){this.destroyDates()},renderSkeleton:function(){},destroySkeleton:function(){},renderDates:function(){},destroyDates:function(){},renderBusinessHours:function(){},destroyBusinessHours:function(){},triggerRender:function(){this.trigger("viewRender",this,this,this.el)},triggerDestroy:function(){this.trigger("viewDestroy",this,this,this.el)},bindGlobalHandlers:function(){t(document).on("mousedown",this.documentMousedownProxy)},unbindGlobalHandlers:function(){t(document).off("mousedown",this.documentMousedownProxy)},initThemingProps:function(){var t=this.opt("theme")?"ui":"fc";this.widgetHeaderClass=t+"-widget-header",this.widgetContentClass=t+"-widget-content",this.highlightStateClass=t+"-state-highlight"},updateSize:function(t){var e;t&&(e=this.queryScroll()),this.updateHeight(),this.updateWidth(),t&&this.setScroll(e)},updateWidth:function(){},updateHeight:function(){var t=this.calendar;this.setHeight(t.getSuggestedViewHeight(),t.isHeightAuto())},setHeight:function(){},computeScrollerHeight:function(t){var e,n,i=this.scrollerEl;return e=this.el.add(i),e.css({position:"relative",left:-1}),n=this.el.outerHeight()-i.height(),e.css({position:"",left:""}),t-n},computeInitialScroll:function(){return 0},queryScroll:function(){return this.scrollerEl?this.scrollerEl.scrollTop():void 0},setScroll:function(t){return this.scrollerEl?this.scrollerEl.scrollTop(t):void 0},forceScroll:function(t){var e=this;this.setScroll(t),setTimeout(function(){e.setScroll(t)},0)},displayEvents:function(t){var e=this.queryScroll();this.clearEvents(),this.renderEvents(t),this.isEventsRendered=!0,this.setScroll(e),this.triggerEventRender()},clearEvents:function(){this.isEventsRendered&&(this.triggerEventDestroy(),this.destroyEvents(),this.isEventsRendered=!1)},renderEvents:function(){},destroyEvents:function(){},triggerEventRender:function(){this.renderedEventSegEach(function(t){this.trigger("eventAfterRender",t.event,t.event,t.el)}),this.trigger("eventAfterAllRender")},triggerEventDestroy:function(){this.renderedEventSegEach(function(t){this.trigger("eventDestroy",t.event,t.event,t.el)})},resolveEventEl:function(e,n){var i=this.trigger("eventRender",e,e,n);return i===!1?n=null:i&&i!==!0&&(n=t(i)),n},showEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","")},t)},hideEvent:function(t){this.renderedEventSegEach(function(t){t.el.css("visibility","hidden")},t)},renderedEventSegEach:function(t,e){var n,i=this.getEventSegs();for(n=0;i.length>n;n++)e&&i[n].event._id!==e._id||i[n].el&&t.call(this,i[n])},getEventSegs:function(){return[]},isEventDraggable:function(t){var e=t.source||{};return B(t.startEditable,e.startEditable,this.opt("eventStartEditable"),t.editable,e.editable,this.opt("editable"))},reportEventDrop:function(t,e,n,i,r){var s=this.calendar,o=s.mutateEvent(t,e,n),l=function(){o.undo(),s.reportEventChange()};this.triggerEventDrop(t,o.dateDelta,l,i,r),s.reportEventChange()},triggerEventDrop:function(t,e,n,i,r){this.trigger("eventDrop",i[0],t,e,n,r,{})},reportExternalDrop:function(e,n,i,r,s){var o,l,a=e.eventProps;a&&(o=t.extend({},a,n),l=this.calendar.renderEvent(o,e.stick)[0]),this.triggerExternalDrop(l,n,i,r,s)},triggerExternalDrop:function(t,e,n,i,r){this.trigger("drop",n[0],e.start,i,r),t&&this.trigger("eventReceive",null,t)},renderDrag:function(){},destroyDrag:function(){},isEventResizableFromStart:function(t){return this.opt("eventResizableFromStart")&&this.isEventResizable(t)},isEventResizableFromEnd:function(t){return this.isEventResizable(t)},isEventResizable:function(t){var e=t.source||{};return B(t.durationEditable,e.durationEditable,this.opt("eventDurationEditable"),t.editable,e.editable,this.opt("editable"))},reportEventResize:function(t,e,n,i,r){var s=this.calendar,o=s.mutateEvent(t,e,n),l=function(){o.undo(),s.reportEventChange()};this.triggerEventResize(t,o.durationDelta,l,i,r),s.reportEventChange()},triggerEventResize:function(t,e,n,i,r){this.trigger("eventResize",i[0],t,e,n,r,{})},select:function(t,e){this.unselect(e),this.renderSelection(t),this.reportSelection(t,e)},renderSelection:function(){},reportSelection:function(t,e){this.isSelected=!0,this.trigger("select",null,t.start,t.end,e)},unselect:function(t){this.isSelected&&(this.isSelected=!1,this.destroySelection(),this.trigger("unselect",null,t))},destroySelection:function(){},documentMousedown:function(e){var n;this.isSelected&&this.opt("unselectAuto")&&S(e)&&(n=this.opt("unselectCancel"),n&&t(e.target).closest(n).length||this.unselect(e))},initHiddenDays:function(){var e,n=this.opt("hiddenDays")||[],i=[],r=0;for(this.opt("weekends")===!1&&n.push(0,6),e=0;7>e;e++)(i[e]=-1!==t.inArray(e,n))||r++;if(!r)throw"invalid hiddenDays";this.isHiddenDayHash=i},isHiddenDay:function(t){return e.isMoment(t)&&(t=t.day()),this.isHiddenDayHash[t]},skipHiddenDays:function(t,e,n){var i=t.clone();for(e=e||1;this.isHiddenDayHash[(i.day()+(n?e:0)+7)%7];)i.add(e,"days");return i},computeDayRange:function(t){var e,n=t.start.clone().stripTime(),i=t.end,r=null;return i&&(r=i.clone().stripTime(),e=+i.time(),e&&e>=this.nextDayThreshold&&r.add(1,"days")),(!i||n>=r)&&(r=n.clone().add(1,"days")),{start:n,end:r}},isMultiDayEvent:function(t){var e=this.computeDayRange(t);return e.end.diff(e.start,"days")>1}}),un=Le.Calendar=Le.CalendarBase=ue.extend({dirDefaults:null,langDefaults:null,overrides:null,options:null,viewSpecCache:null,view:null,header:null,constructor:Re,initOptions:function(t){var e,r,s,o;t=i(t),e=t.lang,r=cn[e],r||(e=un.defaults.lang,r=cn[e]||{}),s=B(t.isRTL,r.isRTL,un.defaults.isRTL),o=s?un.rtlDefaults:{},this.dirDefaults=o,this.langDefaults=r,this.overrides=t,this.options=n(un.defaults,o,r,t),ke(this.options),this.viewSpecCache={}},getViewSpec:function(t){var e=this.viewSpecCache;return e[t]||(e[t]=this.buildViewSpec(t))},getUnitViewSpec:function(e){var n,i,r;if(-1!=t.inArray(e,Ye))for(n=this.header.getViewsWithButtons(),t.each(Le.views,function(t){n.push(t)}),i=0;n.length>i;i++)if(r=this.getViewSpec(n[i]),r&&r.singleUnit==e)return r},buildViewSpec:function(t){for(var i,r,s,o,l,a,u=this.overrides.views||{},c=[],d=[],h=t;h&&!i;)r=_e[h]||{},s=u[h]||{},o=o||s.duration||r.duration,h=s.type||r.type,"function"==typeof r?(i=r,c.unshift(i.defaults||{})):c.unshift(r),d.unshift(s);return i?(a={"class":i,type:t},o&&(o=e.duration(o),o.valueOf()||(o=null)),o&&(a.duration=o,l=M(o),1===o.as(l)&&(a.singleUnit=l,d.unshift(u[l]||{}))),a.defaults=n.apply(null,c),a.overrides=n.apply(null,d),this.buildViewSpecOptions(a),this.buildViewSpecButtonText(a,t),a):void 0},buildViewSpecOptions:function(t){t.options=n(un.defaults,t.defaults,this.dirDefaults,this.langDefaults,this.overrides,t.overrides),ke(t.options)},buildViewSpecButtonText:function(t,e){function n(n){var i=n.buttonText||{};return i[e]||(t.singleUnit?i[t.singleUnit]:null)}t.buttonTextOverride=n(this.overrides)||t.overrides.buttonText,t.buttonTextDefault=n(this.langDefaults)||n(this.dirDefaults)||t.defaults.buttonText||n(un.defaults)||(t.duration?this.humanizeDuration(t.duration):null)||e},instantiateView:function(t){var e=this.getViewSpec(t);return new e["class"](this,t,e.options,e.duration)},isValidViewType:function(t){return Boolean(this.getViewSpec(t))}});un.defaults={titleRangeSeparator:" — ",monthYearFormat:"MMMM YYYY",defaultTimedEventDuration:"02:00:00",defaultAllDayEventDuration:{days:1},forceEventDuration:!1,nextDayThreshold:"09:00:00",defaultView:"month",aspectRatio:1.35,header:{left:"title",center:"",right:"today prev,next"},weekends:!0,weekNumbers:!1,weekNumberTitle:"W",weekNumberCalculation:"local",lazyFetching:!0,startParam:"start",endParam:"end",timezoneParam:"timezone",timezone:!1,isRTL:!1,buttonText:{prev:"prev",next:"next",prevYear:"prev year",nextYear:"next year",year:"year",today:"today",month:"month",week:"week",day:"day"},buttonIcons:{prev:"left-single-arrow",next:"right-single-arrow",prevYear:"left-double-arrow",nextYear:"right-double-arrow"},theme:!1,themeButtonIcons:{prev:"circle-triangle-w",next:"circle-triangle-e",prevYear:"seek-prev",nextYear:"seek-next"},dragOpacity:.75,dragRevertDuration:500,dragScroll:!0,unselectAuto:!0,dropAccept:"*",eventLimit:!1,eventLimitText:"more",eventLimitClick:"popover",dayPopoverFormat:"LL",handleWindowResize:!0,windowResizeDelay:200},un.englishDefaults={dayPopoverFormat:"dddd, MMMM D"},un.rtlDefaults={header:{left:"next,prev today",center:"",right:"title"},buttonIcons:{prev:"right-single-arrow",next:"left-single-arrow",prevYear:"right-double-arrow",nextYear:"left-double-arrow"},themeButtonIcons:{prev:"circle-triangle-e",next:"circle-triangle-w",nextYear:"seek-prev",prevYear:"seek-next"}};var cn=Le.langs={};Le.datepickerLang=function(e,n,i){var r=cn[e]||(cn[e]={});r.isRTL=i.isRTL,r.weekNumberTitle=i.weekHeader,t.each(dn,function(t,e){r[t]=e(i)}),t.datepicker&&(t.datepicker.regional[n]=t.datepicker.regional[e]=i,t.datepicker.regional.en=t.datepicker.regional[""],t.datepicker.setDefaults(i))},Le.lang=function(e,i){var r,s;r=cn[e]||(cn[e]={}),i&&(r=cn[e]=n(r,i)),s=Me(e),t.each(hn,function(t,e){null==r[t]&&(r[t]=e(s,r))}),un.defaults.lang=e};var dn={buttonText:function(t){return{prev:I(t.prevText),next:I(t.nextText),today:I(t.currentText)}},monthYearFormat:function(t){return t.showMonthAfterYear?"YYYY["+t.yearSuffix+"] MMMM":"MMMM YYYY["+t.yearSuffix+"]"}},hn={dayOfMonthFormat:function(t,e){var n=t.longDateFormat("l");return n=n.replace(/^Y+[^\w\s]*|[^\w\s]*Y+$/g,""),e.isRTL?n+=" ddd":n="ddd "+n,n},mediumTimeFormat:function(t){return t.longDateFormat("LT").replace(/\s*a$/i,"a")},smallTimeFormat:function(t){return t.longDateFormat("LT").replace(":mm","(:mm)").replace(/(\Wmm)$/,"($1)").replace(/\s*a$/i,"a")},extraSmallTimeFormat:function(t){return t.longDateFormat("LT").replace(":mm","(:mm)").replace(/(\Wmm)$/,"($1)").replace(/\s*a$/i,"t")},hourFormat:function(t){return t.longDateFormat("LT").replace(":mm","").replace(/(\Wmm)$/,"").replace(/\s*a$/i,"a")},noMeridiemTimeFormat:function(t){return t.longDateFormat("LT").replace(/\s*a$/i,"")}},fn={smallDayDateFormat:function(t){return t.isRTL?"D dd":"dd D"},weekFormat:function(t){return t.isRTL?"w[ "+t.weekNumberTitle+"]":"["+t.weekNumberTitle+" ]w"},smallWeekFormat:function(t){return t.isRTL?"w["+t.weekNumberTitle+"]":"["+t.weekNumberTitle+"]w"}};Le.lang("en",un.englishDefaults),Le.sourceNormalizers=[],Le.sourceFetchers=[];var gn={dataType:"json",cache:!1},pn=1;un.prototype.getPeerEvents=function(t){var e,n,i=this.getEventCache(),r=[];for(e=0;i.length>e;e++)n=i[e],t&&t._id===n._id||r.push(n);return r};var mn=_e.basic=an.extend({dayGrid:null,dayNumbersVisible:!1,weekNumbersVisible:!1,weekNumberWidth:null,headRowEl:null,initialize:function(){this.dayGrid=new on(this),this.coordMap=this.dayGrid.coordMap},setRange:function(t){an.prototype.setRange.call(this,t),this.dayGrid.breakOnWeeks=/year|month|week/.test(this.intervalUnit),this.dayGrid.setRange(t)},computeRange:function(t){var e=an.prototype.computeRange.call(this,t);return/year|month/.test(e.intervalUnit)&&(e.start.startOf("week"),e.start=this.skipHiddenDays(e.start),e.end.weekday()&&(e.end.add(1,"week").startOf("week"),e.end=this.skipHiddenDays(e.end,-1,!0))),e},render:function(){this.dayNumbersVisible=this.dayGrid.rowCnt>1,this.weekNumbersVisible=this.opt("weekNumbers"),this.dayGrid.numbersVisible=this.dayNumbersVisible||this.weekNumbersVisible,this.el.addClass("fc-basic-view").html(this.renderHtml()),this.headRowEl=this.el.find("thead .fc-row"),this.scrollerEl=this.el.find(".fc-day-grid-container"),this.dayGrid.coordMap.containerEl=this.scrollerEl,this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.renderDates(this.hasRigidRows())},destroy:function(){this.dayGrid.destroyDates(),this.dayGrid.removeElement()},renderBusinessHours:function(){this.dayGrid.renderBusinessHours()},renderHtml:function(){return'"+""+""+''+""+'"+""+""+"
'+this.dayGrid.headHtml()+"
'+'
'+'
'+"
"+"
"},headIntroHtml:function(){return this.weekNumbersVisible?'"+""+Y(this.opt("weekNumberTitle"))+""+"":void 0},numberIntroHtml:function(t){return this.weekNumbersVisible?'"+""+this.dayGrid.getCell(t,0).start.format("w")+""+"":void 0},dayIntroHtml:function(){return this.weekNumbersVisible?'":void 0},introHtml:function(){return this.weekNumbersVisible?'":void 0},numberCellHtml:function(t){var e,n=t.start;return this.dayNumbersVisible?(e=this.dayGrid.getDayClasses(n),e.unshift("fc-day-number"),''+n.date()+""):""},weekNumberStyleAttr:function(){return null!==this.weekNumberWidth?'style="width:'+this.weekNumberWidth+'px"':""},hasRigidRows:function(){var t=this.opt("eventLimit");return t&&"number"!=typeof t},updateWidth:function(){this.weekNumbersVisible&&(this.weekNumberWidth=c(this.el.find(".fc-week-number")))},setHeight:function(t,e){var n,i=this.opt("eventLimit");h(this.scrollerEl),s(this.headRowEl),this.dayGrid.destroySegPopover(),i&&"number"==typeof i&&this.dayGrid.limitRows(i),n=this.computeScrollerHeight(t),this.setGridHeight(n,e),i&&"number"!=typeof i&&this.dayGrid.limitRows(i),!e&&d(this.scrollerEl,n)&&(r(this.headRowEl,v(this.scrollerEl)),n=this.computeScrollerHeight(t),this.scrollerEl.height(n))},setGridHeight:function(t,e){e?u(this.dayGrid.rowEls):a(this.dayGrid.rowEls,t,!0)},renderEvents:function(t){this.dayGrid.renderEvents(t),this.updateHeight()},getEventSegs:function(){return this.dayGrid.getEventSegs()},destroyEvents:function(){this.dayGrid.destroyEvents()},renderDrag:function(t,e){return this.dayGrid.renderDrag(t,e)},destroyDrag:function(){this.dayGrid.destroyDrag()},renderSelection:function(t){this.dayGrid.renderSelection(t)},destroySelection:function(){this.dayGrid.destroySelection()}}),vn=_e.month=mn.extend({computeRange:function(t){var e,n=mn.prototype.computeRange.call(this,t);return this.isFixedWeeks()&&(e=Math.ceil(n.end.diff(n.start,"weeks",!0)),n.end.add(6-e,"weeks")),n},setGridHeight:function(t,e){e=e||"variable"===this.opt("weekMode"),e&&(t*=this.rowCnt/6),a(this.dayGrid.rowEls,t,!e)},isFixedWeeks:function(){var t=this.opt("weekMode");return t?"fixed"===t:this.opt("fixedWeekCount")}});vn.duration={months:1},vn.defaults={fixedWeekCount:!0},_e.basicWeek={type:"basic",duration:{weeks:1}},_e.basicDay={type:"basic",duration:{days:1}};var yn={allDaySlot:!0,allDayText:"all-day",scrollTime:"06:00:00",slotDuration:"00:30:00",minTime:"00:00:00",maxTime:"24:00:00",slotEventOverlap:!0},wn=5,En=_e.agenda=an.extend({timeGrid:null,dayGrid:null,axisWidth:null,noScrollRowEls:null,bottomRuleEl:null,bottomRuleHeight:null,initialize:function(){this.timeGrid=new ln(this),this.opt("allDaySlot")?(this.dayGrid=new on(this),this.coordMap=new Je([this.dayGrid.coordMap,this.timeGrid.coordMap])):this.coordMap=this.timeGrid.coordMap},setRange:function(t){an.prototype.setRange.call(this,t),this.timeGrid.setRange(t),this.dayGrid&&this.dayGrid.setRange(t)},render:function(){this.el.addClass("fc-agenda-view").html(this.renderHtml()),this.scrollerEl=this.el.find(".fc-time-grid-container"),this.timeGrid.coordMap.containerEl=this.scrollerEl,this.timeGrid.setElement(this.el.find(".fc-time-grid")),this.timeGrid.renderDates(),this.bottomRuleEl=t('
').appendTo(this.timeGrid.el),this.dayGrid&&(this.dayGrid.setElement(this.el.find(".fc-day-grid")),this.dayGrid.renderDates(),this.dayGrid.bottomCoordPadding=this.dayGrid.el.next("hr").outerHeight()),this.noScrollRowEls=this.el.find(".fc-row:not(.fc-scroller *)")},destroy:function(){this.timeGrid.destroyDates(),this.timeGrid.removeElement(),this.dayGrid&&(this.dayGrid.destroyDates(),this.dayGrid.removeElement())},renderBusinessHours:function(){this.timeGrid.renderBusinessHours(),this.dayGrid&&this.dayGrid.renderBusinessHours()},renderHtml:function(){return'"+""+""+''+""+'"+""+""+"
'+this.timeGrid.headHtml()+"
'+(this.dayGrid?'

':"")+'
'+'
'+"
"+"
"},headIntroHtml:function(){var t,e;return this.opt("weekNumbers")?(t=this.timeGrid.getCell(0).start,e=t.format(this.opt("smallWeekFormat")),'"+""+Y(e)+""+""):'"},dayIntroHtml:function(){return'"+""+(this.opt("allDayHtml")||Y(this.opt("allDayText")))+""+""},slotBgIntroHtml:function(){return'"},introHtml:function(){return'"},axisStyleAttr:function(){return null!==this.axisWidth?'style="width:'+this.axisWidth+'px"':""},updateSize:function(t){this.timeGrid.updateSize(t),an.prototype.updateSize.call(this,t)},updateWidth:function(){this.axisWidth=c(this.el.find(".fc-axis"))},setHeight:function(t,e){var n,i;null===this.bottomRuleHeight&&(this.bottomRuleHeight=this.bottomRuleEl.outerHeight()),this.bottomRuleEl.hide(),this.scrollerEl.css("overflow",""),h(this.scrollerEl),s(this.noScrollRowEls),this.dayGrid&&(this.dayGrid.destroySegPopover(),n=this.opt("eventLimit"),n&&"number"!=typeof n&&(n=wn),n&&this.dayGrid.limitRows(n)),e||(i=this.computeScrollerHeight(t),d(this.scrollerEl,i)?(r(this.noScrollRowEls,v(this.scrollerEl)),i=this.computeScrollerHeight(t),this.scrollerEl.height(i)):(this.scrollerEl.height(i).css("overflow","hidden"),this.bottomRuleEl.show()))},computeInitialScroll:function(){var t=e.duration(this.opt("scrollTime")),n=this.timeGrid.computeTimeTop(t);return n=Math.ceil(n),n&&n++,n},renderEvents:function(t){var e,n,i=[],r=[],s=[];for(n=0;t.length>n;n++)t[n].allDay?i.push(t[n]):r.push(t[n]);e=this.timeGrid.renderEvents(r),this.dayGrid&&(s=this.dayGrid.renderEvents(i)),this.updateHeight()},getEventSegs:function(){return this.timeGrid.getEventSegs().concat(this.dayGrid?this.dayGrid.getEventSegs():[])},destroyEvents:function(){this.timeGrid.destroyEvents(),this.dayGrid&&this.dayGrid.destroyEvents()},renderDrag:function(t,e){return t.start.hasTime()?this.timeGrid.renderDrag(t,e):this.dayGrid?this.dayGrid.renderDrag(t,e):void 0},destroyDrag:function(){this.timeGrid.destroyDrag(),this.dayGrid&&this.dayGrid.destroyDrag()},renderSelection:function(t){t.start.hasTime()||t.end.hasTime()?this.timeGrid.renderSelection(t):this.dayGrid&&this.dayGrid.renderSelection(t)},destroySelection:function(){this.timeGrid.destroySelection(),this.dayGrid&&this.dayGrid.destroySelection()}});return En.defaults=yn,_e.agendaWeek={type:"agenda",duration:{weeks:1}},_e.agendaDay={type:"agenda",duration:{days:1}},Le}); \ No newline at end of file diff --git a/assets/js/gcal.js b/assets/js/gcal.js new file mode 100644 index 00000000..4c18977a --- /dev/null +++ b/assets/js/gcal.js @@ -0,0 +1,184 @@ +/*! + * FullCalendar v2.3.1 Google Calendar Plugin + * Docs & License: http://fullcalendar.io/ + * (c) 2015 Adam Shaw + */ + +(function(factory) { + if (typeof define === 'function' && define.amd) { + define([ 'jquery' ], factory); + } + else if (typeof exports === 'object') { // Node/CommonJS + module.exports = factory(require('jquery')); + } + else { + factory(jQuery); + } +})(function($) { + + +var API_BASE = 'https://www.googleapis.com/calendar/v3/calendars'; +var fc = $.fullCalendar; +var applyAll = fc.applyAll; + + +fc.sourceNormalizers.push(function(sourceOptions) { + var googleCalendarId = sourceOptions.googleCalendarId; + var url = sourceOptions.url; + var match; + + // if the Google Calendar ID hasn't been explicitly defined + if (!googleCalendarId && url) { + + // detect if the ID was specified as a single string. + // will match calendars like "asdf1234@calendar.google.com" in addition to person email calendars. + if (/^[^\/]+@([^\/\.]+\.)*(google|googlemail|gmail)\.com$/.test(url)) { + googleCalendarId = url; + } + // try to scrape it out of a V1 or V3 API feed URL + else if ( + (match = /^https:\/\/www.googleapis.com\/calendar\/v3\/calendars\/([^\/]*)/.exec(url)) || + (match = /^https?:\/\/www.google.com\/calendar\/feeds\/([^\/]*)/.exec(url)) + ) { + googleCalendarId = decodeURIComponent(match[1]); + } + + if (googleCalendarId) { + sourceOptions.googleCalendarId = googleCalendarId; + } + } + + + if (googleCalendarId) { // is this a Google Calendar? + + // make each Google Calendar source uneditable by default + if (sourceOptions.editable == null) { + sourceOptions.editable = false; + } + + // We want removeEventSource to work, but it won't know about the googleCalendarId primitive. + // Shoehorn it into the url, which will function as the unique primitive. Won't cause side effects. + // This hack is obsolete since 2.2.3, but keep it so this plugin file is compatible with old versions. + sourceOptions.url = googleCalendarId; + } +}); + + +fc.sourceFetchers.push(function(sourceOptions, start, end, timezone) { + if (sourceOptions.googleCalendarId) { + return transformOptions(sourceOptions, start, end, timezone, this); // `this` is the calendar + } +}); + + +function transformOptions(sourceOptions, start, end, timezone, calendar) { + var url = API_BASE + '/' + encodeURIComponent(sourceOptions.googleCalendarId) + '/events?callback=?'; // jsonp + var apiKey = sourceOptions.googleCalendarApiKey || calendar.options.googleCalendarApiKey; + var success = sourceOptions.success; + var data; + var timezoneArg; // populated when a specific timezone. escaped to Google's liking + + function reportError(message, apiErrorObjs) { + var errorObjs = apiErrorObjs || [ { message: message } ]; // to be passed into error handlers + var consoleObj = window.console; + var consoleWarnFunc = consoleObj ? (consoleObj.warn || consoleObj.log) : null; + + // call error handlers + (sourceOptions.googleCalendarError || $.noop).apply(calendar, errorObjs); + (calendar.options.googleCalendarError || $.noop).apply(calendar, errorObjs); + + // print error to debug console + if (consoleWarnFunc) { + consoleWarnFunc.apply(consoleObj, [ message ].concat(apiErrorObjs || [])); + } + } + + if (!apiKey) { + reportError("Specify a googleCalendarApiKey. See http://fullcalendar.io/docs/google_calendar/"); + return {}; // an empty source to use instead. won't fetch anything. + } + + // The API expects an ISO8601 datetime with a time and timezone part. + // Since the calendar's timezone offset isn't always known, request the date in UTC and pad it by a day on each + // side, guaranteeing we will receive all events in the desired range, albeit a superset. + // .utc() will set a zone and give it a 00:00:00 time. + if (!start.hasZone()) { + start = start.clone().utc().add(-1, 'day'); + } + if (!end.hasZone()) { + end = end.clone().utc().add(1, 'day'); + } + + // when sending timezone names to Google, only accepts underscores, not spaces + if (timezone && timezone != 'local') { + timezoneArg = timezone.replace(' ', '_'); + } + + data = $.extend({}, sourceOptions.data || {}, { + key: apiKey, + timeMin: start.format(), + timeMax: end.format(), + timeZone: timezoneArg, + singleEvents: true, + maxResults: 9999 + }); + + return $.extend({}, sourceOptions, { + googleCalendarId: null, // prevents source-normalizing from happening again + url: url, + data: data, + startParam: false, // `false` omits this parameter. we already included it above + endParam: false, // same + timezoneParam: false, // same + success: function(data) { + var events = []; + var successArgs; + var successRes; + + if (data.error) { + reportError('Google Calendar API: ' + data.error.message, data.error.errors); + } + else if (data.items) { + $.each(data.items, function(i, entry) { + var url = entry.htmlLink; + + // make the URLs for each event show times in the correct timezone + if (timezoneArg) { + url = injectQsComponent(url, 'ctz=' + timezoneArg); + } + + events.push({ + id: entry.id, + title: entry.summary, + start: entry.start.dateTime || entry.start.date, // try timed. will fall back to all-day + end: entry.end.dateTime || entry.end.date, // same + url: url, + location: entry.location, + description: entry.description + }); + }); + + // call the success handler(s) and allow it to return a new events array + successArgs = [ events ].concat(Array.prototype.slice.call(arguments, 1)); // forward other jq args + successRes = applyAll(success, this, successArgs); + if ($.isArray(successRes)) { + return successRes; + } + } + + return events; + } + }); +} + + +// Injects a string like "arg=value" into the querystring of a URL +function injectQsComponent(url, component) { + // inject it after the querystring but before the fragment + return url.replace(/(\?.*?)?(#|$)/, function(whole, qs, hash) { + return (qs ? qs + '&' : '?') + component + hash; + }); +} + + +}); diff --git a/assets/js/lang-all.js b/assets/js/lang-all.js new file mode 100644 index 00000000..cf456f8b --- /dev/null +++ b/assets/js/lang-all.js @@ -0,0 +1,4 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(function(){(t.defineLocale||t.lang).call(t,"ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}}),e.fullCalendar.datepickerLang("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ar-ma",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})})(),function(){var a={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"};(t.defineLocale||t.lang).call(t,"ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e){return 12>e?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return n[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}}),e.fullCalendar.datepickerLang("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ar-sa",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){(t.defineLocale||t.lang).call(t,"ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ar-tn",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){var a={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},n={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=function(e){return 0===e?0:1===e?1:2===e?2:e%100>=3&&10>=e%100?3:e%100>=11?4:5},i={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},s=function(e){return function(t,a){var n=r(t),s=i[e][r(t)];return 2===n&&(s=s[a?0:1]),s.replace(/%d/i,t)}},o=["كانون الثاني يناير","شباط فبراير","آذار مارس","نيسان أبريل","أيار مايو","حزيران يونيو","تموز يوليو","آب أغسطس","أيلول سبتمبر","تشرين الأول أكتوبر","تشرين الثاني نوفمبر","كانون الأول ديسمبر"];(t.defineLocale||t.lang).call(t,"ar",{months:o,monthsShort:o,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},meridiemParse:/ص|م/,isPM:function(e){return"م"===e},meridiem:function(e){return 12>e?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:s("s"),m:s("m"),mm:s("m"),h:s("h"),hh:s("h"),d:s("d"),dd:s("d"),M:s("M"),MM:s("M"),y:s("y"),yy:s("y")},preparse:function(e){return e.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(e){return n[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},week:{dow:6,doy:12}}),e.fullCalendar.datepickerLang("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ar",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}(),function(){(t.defineLocale||t.lang).call(t,"bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(e){var t=e%10,a=e%100;return 0===e?e+"-ев":0===a?e+"-ен":a>10&&20>a?e+"-ти":1===t?e+"-ви":2===t?e+"-ри":7===t||8===t?e+"-ми":e+"-ти"},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("bg",{buttonText:{month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(e){return"+още "+e}})}(),function(){(t.defineLocale||t.lang).call(t,"ca",{months:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),monthsShort:"gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.".split("_"),weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(e,t){var a=1===e?"r":2===e?"n":3===e?"r":4===e?"t":"è";return("w"===t||"W"===t)&&(a="a"),e+a},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"més"})}(),function(){function a(e){return e>1&&5>e&&1!==~~(e/10)}function n(e,t,n,r){var i=e+" ";switch(n){case"s":return t||r?"pár sekund":"pár sekundami";case"m":return t?"minuta":r?"minutu":"minutou";case"mm":return t||r?i+(a(e)?"minuty":"minut"):i+"minutami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?i+(a(e)?"hodiny":"hodin"):i+"hodinami";case"d":return t||r?"den":"dnem";case"dd":return t||r?i+(a(e)?"dny":"dní"):i+"dny";case"M":return t||r?"měsíc":"měsícem";case"MM":return t||r?i+(a(e)?"měsíce":"měsíců"):i+"měsíci";case"y":return t||r?"rok":"rokem";case"yy":return t||r?i+(a(e)?"roky":"let"):i+"lety"}}var r="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),i="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_");(t.defineLocale||t.lang).call(t,"cs",{months:r,monthsShort:i,monthsParse:function(e,t){var a,n=[];for(a=0;12>a;a++)n[a]=RegExp("^"+e[a]+"$|^"+t[a]+"$","i");return n}(r,i),weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd D. MMMM YYYY LT"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("cs",{buttonText:{month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},allDayText:"Celý den",eventLimitText:function(e){return"+další: "+e}})}(),function(){(t.defineLocale||t.lang).call(t,"da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd [d.] D. MMMM YYYY LT"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[I går kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("da",{buttonText:{month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere"})}(),function(){function a(e,t,a){var n={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?n[a][0]:n[a][1]}(t.defineLocale||t.lang).call(t,"de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[Heute um] LT [Uhr]",sameElse:"L",nextDay:"[Morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[Gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("de-at","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e}})}(),function(){function a(e,t,a){var n={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[e+" Tage",e+" Tagen"],M:["ein Monat","einem Monat"],MM:[e+" Monate",e+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[e+" Jahre",e+" Jahren"]};return t?n[a][0]:n[a][1]}(t.defineLocale||t.lang).call(t,"de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[Heute um] LT [Uhr]",sameElse:"L",nextDay:"[Morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[Gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:a,mm:"%d Minuten",h:a,hh:"%d Stunden",d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("de","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(e){return"+ weitere "+e}})}(),function(){(t.defineLocale||t.lang).call(t,"el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(e,t){return/D/.test(t.substring(0,t.indexOf("MMMM")))?this._monthsGenitiveEl[e.month()]:this._monthsNominativeEl[e.month()]},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(e,t,a){return e>11?a?"μμ":"ΜΜ":a?"πμ":"ΠΜ"},isPM:function(e){return"μ"===(e+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(e,t){var a=this._calendarEl[e],n=t&&t.hours();return"function"==typeof a&&(a=a.apply(t)),a.replace("{}",1===n%12?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},ordinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("el","el",{closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Σήμερα",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},allDayText:"Ολοήμερο",eventLimitText:"περισσότερα"})}(),function(){(t.defineLocale||t.lang).call(t,"en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,a=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+a},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("en-au")}(),function(){(t.defineLocale||t.lang).call(t,"en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"D MMMM, YYYY",LLL:"D MMMM, YYYY LT",LLLL:"dddd, D MMMM, YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,a=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+a}}),e.fullCalendar.lang("en-ca")}(),function(){(t.defineLocale||t.lang).call(t,"en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,a=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+a},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("en-gb")}(),function(){var a="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),n="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_");(t.defineLocale||t.lang).call(t,"es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return/-MMM-/.test(t)?n[e.month()]:a[e.month()]},weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"Do_Lu_Ma_Mi_Ju_Vi_Sá".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY LT",LLLL:"dddd, D [de] MMMM [de] YYYY LT"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("es",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más"})}(),function(){var a={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},n={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"};(t.defineLocale||t.lang).call(t,"fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e){return 12>e?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چندین ثانیه",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,function(e){return n[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]}).replace(/,/g,"،")},ordinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}}),e.fullCalendar.datepickerLang("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fa",{buttonText:{month:"ماه",week:"هفته",day:"روز",list:"برنامه"},allDayText:"تمام روز",eventLimitText:function(e){return"بیش از "+e +}})}(),function(){function a(e,t,a,r){var i="";switch(a){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"m":return r?"minuutin":"minuutti";case"mm":i=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":i=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":i=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":i=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":i=r?"vuoden":"vuotta"}return i=n(e,r)+" "+i}function n(e,t){return 10>e?t?i[e]:r[e]:e}var r="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),i=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",r[7],r[8],r[9]];(t.defineLocale||t.lang).call(t,"fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] LT",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] LT",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] LT",llll:"ddd, Do MMM YYYY, [klo] LT"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää"})}(),function(){(t.defineLocale||t.lang).call(t,"fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")}}),e.fullCalendar.datepickerLang("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fr-ca",{buttonText:{month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus"})}(),function(){(t.defineLocale||t.lang).call(t,"fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("fr","fr",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fr",{buttonText:{month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus"})}(),function(){(t.defineLocale||t.lang).call(t,"he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY LT",LLLL:"dddd, D [ב]MMMM YYYY LT",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY LT",llll:"ddd, D MMM YYYY LT"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":0===e%10&&10!==e?e+" שנה":e+" שנים"}}}),e.fullCalendar.datepickerLang("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("he",{defaultButtonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},weekNumberTitle:"שבוע",allDayText:"כל היום",eventLimitText:"אחר"})}(),function(){var a={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},n={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};(t.defineLocale||t.lang).call(t,"hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, LT",LLLL:"dddd, D MMMM YYYY, LT"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return n[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return a[e]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,t){return 12===e&&(e=0),"रात"===t?4>e?e:e+12:"सुबह"===t?e:"दोपहर"===t?e>=10?e:e+12:"शाम"===t?e+12:void 0},meridiem:function(e){return 4>e?"रात":10>e?"सुबह":17>e?"दोपहर":20>e?"शाम":"रात"},week:{dow:0,doy:6}}),e.fullCalendar.datepickerLang("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e}})}(),function(){function a(e,t,a){var n=e+" ";switch(a){case"m":return t?"jedna minuta":"jedne minute";case"mm":return n+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return n+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return n+=1===e?"dan":"dana";case"MM":return n+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return n+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}(t.defineLocale||t.lang).call(t,"hr",{months:"sječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_"),monthsShort:"sje._vel._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:a,mm:a,h:a,hh:a,d:"dan",dd:a,M:"mjesec",MM:a,y:"godinu",yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("hr",{buttonText:{month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e}})}(),function(){function a(e,t,a,n){var r=e;switch(a){case"s":return n||t?"néhány másodperc":"néhány másodperce";case"m":return"egy"+(n||t?" perc":" perce");case"mm":return r+(n||t?" perc":" perce");case"h":return"egy"+(n||t?" óra":" órája");case"hh":return r+(n||t?" óra":" órája");case"d":return"egy"+(n||t?" nap":" napja");case"dd":return r+(n||t?" nap":" napja");case"M":return"egy"+(n||t?" hónap":" hónapja");case"MM":return r+(n||t?" hónap":" hónapja");case"y":return"egy"+(n||t?" év":" éve");case"yy":return r+(n||t?" év":" éve")}return""}function n(e){return(e?"":"[múlt] ")+"["+r[this.day()]+"] LT[-kor]"}var r="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");(t.defineLocale||t.lang).call(t,"hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D., LT",LLLL:"YYYY. MMMM D., dddd LT"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,a){return 12>e?a===!0?"de":"DE":a===!0?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return n.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return n.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:a,m:a,mm:a,h:a,hh:a,d:a,dd:a,M:a,MM:a,y:a,yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.lang("hu",{buttonText:{month:"Hónap",week:"Hét",day:"Nap",list:"Napló"},allDayText:"Egész nap",eventLimitText:"további"})}(),function(){(t.defineLocale||t.lang).call(t,"id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"LT.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] LT",LLLL:"dddd, D MMMM YYYY [pukul] LT"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e){return 11>e?"pagi":15>e?"siang":19>e?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
penuh",eventLimitText:"lebih"})}(),function(){function a(e){return 11===e%100?!0:1===e%10?!1:!0}function n(e,t,n,r){var i=e+" ";switch(n){case"s":return t||r?"nokkrar sekúndur":"nokkrum sekúndum";case"m":return t?"mínúta":"mínútu";case"mm":return a(e)?i+(t||r?"mínútur":"mínútum"):t?i+"mínúta":i+"mínútu";case"hh":return a(e)?i+(t||r?"klukkustundir":"klukkustundum"):i+"klukkustund";case"d":return t?"dagur":r?"dag":"degi";case"dd":return a(e)?t?i+"dagar":i+(r?"daga":"dögum"):t?i+"dagur":i+(r?"dag":"degi");case"M":return t?"mánuður":r?"mánuð":"mánuði";case"MM":return a(e)?t?i+"mánuðir":i+(r?"mánuði":"mánuðum"):t?i+"mánuður":i+(r?"mánuð":"mánuði");case"y":return t||r?"ár":"ári";case"yy":return a(e)?i+(t||r?"ár":"árum"):i+(t||r?"ár":"ári")}}(t.defineLocale||t.lang).call(t,"is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] LT",LLLL:"dddd, D. MMMM YYYY [kl.] LT"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:n,m:n,mm:n,h:"klukkustund",hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("is",{buttonText:{month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
daginn",eventLimitText:"meira"})}(),function(){(t.defineLocale||t.lang).call(t,"it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),weekdaysShort:"Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),weekdaysMin:"D_L_Ma_Me_G_V_S".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
giorno",eventLimitText:function(e){return"+altri "+e}})}(),function(){(t.defineLocale||t.lang).call(t,"ja",{months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"Ah時m分",LTS:"LTs秒",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日LT",LLLL:"YYYY年M月D日LT dddd"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e){return 12>e?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}}),e.fullCalendar.datepickerLang("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.lang("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(e){return"他 "+e+" 件"}})}(),function(){(t.defineLocale||t.lang).call(t,"ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h시 m분",LTS:"A h시 m분 s초",L:"YYYY.MM.DD",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 LT",LLLL:"YYYY년 MMMM D일 dddd LT"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇초",ss:"%d초",m:"일분",mm:"%d분",h:"한시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한달",MM:"%d달",y:"일년",yy:"%d년"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e){return 12>e?"오전":"오후"}}),e.fullCalendar.datepickerLang("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"Wk",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),e.fullCalendar.lang("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개"})}(),function(){function a(e,t,a,n){return t?"kelios sekundės":n?"kelių sekundžių":"kelias sekundes"}function n(e,t,a,n){return t?i(a)[0]:n?i(a)[1]:i(a)[2]}function r(e){return 0===e%10||e>10&&20>e}function i(e){return d[e].split("_")}function s(e,t,a,s){var o=e+" ";return 1===e?o+n(e,t,a[0],s):t?o+(r(e)?i(a)[1]:i(a)[0]):s?o+i(a)[1]:o+(r(e)?i(a)[1]:i(a)[2])}function o(e,t){var a=-1===t.indexOf("dddd HH:mm"),n=l[e.day()];return a?n:n.substring(0,n.length-2)+"į"}var d={m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"},l="sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_");(t.defineLocale||t.lang).call(t,"lt",{months:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:o,weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], LT [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, LT [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], LT [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, LT [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:a,m:n,mm:s,h:n,hh:s,d:n,dd:s,M:n,MM:s,y:n,yy:s},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("lt","lt",{closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.lang("lt",{buttonText:{month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},allDayText:"Visą dieną",eventLimitText:"daugiau"})}(),function(){function a(e,t,a){var n=e.split("_");return a?1===t%10&&11!==t?n[2]:n[3]:1===t%10&&11!==t?n[0]:n[1]}function n(e,t,n){return e+" "+a(r[n],e,t)}var r={mm:"minūti_minūtes_minūte_minūtes",hh:"stundu_stundas_stunda_stundas",dd:"dienu_dienas_diena_dienas",MM:"mēnesi_mēnešus_mēnesis_mēneši",yy:"gadu_gadus_gads_gadi"};(t.defineLocale||t.lang).call(t,"lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, LT",LLLL:"YYYY. [gada] D. MMMM, dddd, LT"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"%s vēlāk",past:"%s agrāk",s:"dažas sekundes",m:"minūti",mm:n,h:"stundu",hh:n,d:"dienu",dd:n,M:"mēnesi",MM:n,y:"gadu",yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("lv","lv",{closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("lv",{buttonText:{month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vēl "+e}})}(),function(){(t.defineLocale||t.lang).call(t,"nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tirs_ons_tors_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"H.mm",LTS:"LT.ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] LT",LLLL:"dddd D. MMMM YYYY [kl.] LT"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"for %s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("nb",{buttonText:{month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til"})}(),function(){var a="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),n="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_");(t.defineLocale||t.lang).call(t,"nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){return/-MMM-/.test(t)?n[e.month()]:a[e.month()]},weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("nl","nl",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("nl",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra"}) +}(),function(){function a(e){return 5>e%10&&e%10>1&&1!==~~(e/10)%10}function n(e,t,n){var r=e+" ";switch(n){case"m":return t?"minuta":"minutę";case"mm":return r+(a(e)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return r+(a(e)?"godziny":"godzin");case"MM":return r+(a(e)?"miesiące":"miesięcy");case"yy":return r+(a(e)?"lata":"lat")}}var r="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),i="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");(t.defineLocale||t.lang).call(t,"pl",{months:function(e,t){return/D MMMM/.test(t)?i[e.month()]:r[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"nie_pon_wt_śr_czw_pt_sb".split("_"),weekdaysMin:"N_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:n,mm:n,h:n,hh:n,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:n,y:"rok",yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("pl",{buttonText:{month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},allDayText:"Cały dzień",eventLimitText:"więcej"})}(),function(){(t.defineLocale||t.lang).call(t,"pt-br",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"dom_2ª_3ª_4ª_5ª_6ª_sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] LT",LLLL:"dddd, D [de] MMMM [de] YYYY [às] LT"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº"}),e.fullCalendar.datepickerLang("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("pt-br",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e}})}(),function(){(t.defineLocale||t.lang).call(t,"pt",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"dom_2ª_3ª_4ª_5ª_6ª_sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY LT",LLLL:"dddd, D [de] MMMM [de] YYYY LT"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("pt",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais"})}(),function(){function a(e,t,a){var n={mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&0===e%100)&&(r=" de "),e+r+n[a]}(t.defineLocale||t.lang).call(t,"ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",m:"un minut",mm:a,h:"o oră",hh:a,d:"o zi",dd:a,M:"o lună",MM:a,y:"un an",yy:a},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("ro","ro",{closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ro",{buttonText:{prev:"precedentă",next:"următoare",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},allDayText:"Toată ziua",eventLimitText:function(e){return"+alte "+e}})}(),function(){function a(e,t){var a=e.split("_");return 1===t%10&&11!==t%100?a[0]:t%10>=2&&4>=t%10&&(10>t%100||t%100>=20)?a[1]:a[2]}function n(e,t,n){var r={mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===n?t?"минута":"минуту":e+" "+a(r[n],+e)}function r(e,t){var a={nominative:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),accusative:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_")},n=/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(t)?"accusative":"nominative";return a[n][e.month()]}function i(e,t){var a={nominative:"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек".split("_"),accusative:"янв_фев_мар_апр_мая_июня_июля_авг_сен_окт_ноя_дек".split("_")},n=/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(t)?"accusative":"nominative";return a[n][e.month()]}function s(e,t){var a={nominative:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),accusative:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_")},n=/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/.test(t)?"accusative":"nominative";return a[n][e.day()]}(t.defineLocale||t.lang).call(t,"ru",{months:r,monthsShort:i,weekdays:s,weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[й|я]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i],longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., LT",LLLL:"dddd, D MMMM YYYY г., LT"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(){return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT"},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:n,mm:n,h:"час",hh:n,d:"день",dd:n,M:"месяц",MM:n,y:"год",yy:n},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e){return 4>e?"ночи":12>e?"утра":17>e?"дня":"вечера"},ordinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ru",{buttonText:{month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},allDayText:"Весь день",eventLimitText:function(e){return"+ ещё "+e}})}(),function(){function a(e){return e>1&&5>e}function n(e,t,n,r){var i=e+" ";switch(n){case"s":return t||r?"pár sekúnd":"pár sekundami";case"m":return t?"minúta":r?"minútu":"minútou";case"mm":return t||r?i+(a(e)?"minúty":"minút"):i+"minútami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?i+(a(e)?"hodiny":"hodín"):i+"hodinami";case"d":return t||r?"deň":"dňom";case"dd":return t||r?i+(a(e)?"dni":"dní"):i+"dňami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?i+(a(e)?"mesiace":"mesiacov"):i+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?i+(a(e)?"roky":"rokov"):i+"rokmi"}}var r="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),i="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");(t.defineLocale||t.lang).call(t,"sk",{months:r,monthsShort:i,monthsParse:function(e,t){var a,n=[];for(a=0;12>a;a++)n[a]=RegExp("^"+e[a]+"$|^"+t[a]+"$","i");return n}(r,i),weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd D. MMMM YYYY LT"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("sk","sk",{closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sk",{buttonText:{month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},allDayText:"Celý deň",eventLimitText:function(e){return"+ďalšie: "+e}})}(),function(){function a(e,t,a){var n=e+" ";switch(a){case"m":return t?"ena minuta":"eno minuto";case"mm":return n+=1===e?"minuta":2===e?"minuti":3===e||4===e?"minute":"minut";case"h":return t?"ena ura":"eno uro";case"hh":return n+=1===e?"ura":2===e?"uri":3===e||4===e?"ure":"ur";case"dd":return n+=1===e?"dan":"dni";case"MM":return n+=1===e?"mesec":2===e?"meseca":3===e||4===e?"mesece":"mesecev";case"yy":return n+=1===e?"leto":2===e?"leti":3===e||4===e?"leta":"let"}}(t.defineLocale||t.lang).call(t,"sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[prejšnja] dddd [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"%s nazaj",s:"nekaj sekund",m:a,mm:a,h:a,hh:a,d:"en dan",dd:a,M:"en mesec",MM:a,y:"eno leto",yy:a},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"več"})}(),function(){var a={words:{m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&4>=e?t[1]:t[2]},translate:function(e,t,n){var r=a.words[n];return 1===n.length?t?r[0]:r[1]:e+" "+a.correctGrammaticalCase(e,r)}};(t.defineLocale||t.lang).call(t,"sr-cyrl",{months:["јануар","фебруар","март","април","мај","јун","јул","август","септембар","октобар","новембар","децембар"],monthsShort:["јан.","феб.","мар.","апр.","мај","јун","јул","авг.","сеп.","окт.","нов.","дец."],weekdays:["недеља","понедељак","уторак","среда","четвртак","петак","субота"],weekdaysShort:["нед.","пон.","уто.","сре.","чет.","пет.","суб."],weekdaysMin:["не","по","ут","ср","че","пе","су"],longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){var e=["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",m:a.translate,mm:a.translate,h:a.translate,hh:a.translate,d:"дан",dd:a.translate,M:"месец",MM:a.translate,y:"годину",yy:a.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sr-cyrl",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e}})}(),function(){var a={words:{m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&4>=e?t[1]:t[2]},translate:function(e,t,n){var r=a.words[n];return 1===n.length?t?r[0]:r[1]:e+" "+a.correctGrammaticalCase(e,r)}};(t.defineLocale||t.lang).call(t,"sr",{months:["januar","februar","mart","april","maj","jun","jul","avgust","septembar","oktobar","novembar","decembar"],monthsShort:["jan.","feb.","mar.","apr.","maj","jun","jul","avg.","sep.","okt.","nov.","dec."],weekdays:["nedelja","ponedeljak","utorak","sreda","četvrtak","petak","subota"],weekdaysShort:["ned.","pon.","uto.","sre.","čet.","pet.","sub."],weekdaysMin:["ne","po","ut","sr","če","pe","su"],longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var e=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:a.translate,mm:a.translate,h:a.translate,hh:a.translate,d:"dan",dd:a.translate,M:"mesec",MM:a.translate,y:"godinu",yy:a.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("sr","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sr",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e}})}(),function(){(t.defineLocale||t.lang).call(t,"sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"dddd LT",lastWeek:"[Förra] dddd[en] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var t=e%10,a=1===~~(e%100/10)?"e":1===t?"a":2===t?"a":3===t?"e":"e";return e+a},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sv",{buttonText:{month:"Månad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till"})}(),function(){(t.defineLocale||t.lang).call(t,"th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา".split("_"),weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),longDateFormat:{LT:"H นาฬิกา m นาที",LTS:"LT s วินาที",L:"YYYY/MM/DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา LT",LLLL:"วันddddที่ D MMMM YYYY เวลา LT"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e){return 12>e?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}}),e.fullCalendar.datepickerLang("th","th",{closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"แผนงาน"},allDayText:"ตลอดวัน",eventLimitText:"เพิ่มเติม"})}(),function(){var a={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};(t.defineLocale||t.lang).call(t,"tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,ordinal:function(e){if(0===e)return e+"'ıncı";var t=e%10,n=e%100-t,r=e>=100?100:null;return e+(a[t]||a[n]||a[r])},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"Gün",list:"Ajanda"},allDayText:"Tüm gün",eventLimitText:"daha fazla"})}(),function(){function a(e,t){var a=e.split("_");return 1===t%10&&11!==t%100?a[0]:t%10>=2&&4>=t%10&&(10>t%100||t%100>=20)?a[1]:a[2]}function n(e,t,n){var r={mm:"хвилина_хвилини_хвилин",hh:"година_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===n?t?"хвилина":"хвилину":"h"===n?t?"година":"годину":e+" "+a(r[n],+e)}function r(e,t){var a={nominative:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_"),accusative:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_")},n=/D[oD]? *MMMM?/.test(t)?"accusative":"nominative";return a[n][e.month()]}function i(e,t){var a={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")},n=/(\[[ВвУу]\]) ?dddd/.test(t)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(t)?"genitive":"nominative";return a[n][e.day()]}function s(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}(t.defineLocale||t.lang).call(t,"uk",{months:r,monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:i,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., LT",LLLL:"dddd, D MMMM YYYY р., LT"},calendar:{sameDay:s("[Сьогодні "),nextDay:s("[Завтра "),lastDay:s("[Вчора "),nextWeek:s("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return s("[Минулої] dddd [").call(this);case 1:case 2:case 4:return s("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",m:n,mm:n,h:"годину",hh:n,d:"день",dd:n,M:"місяць",MM:n,y:"рік",yy:n},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e){return 4>e?"ночі":12>e?"ранку":17>e?"дня":"вечора"},ordinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("uk",{buttonText:{month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"Увесь день",eventLimitText:function(e){return"+ще "+e+"..."}})}(),function(){(t.defineLocale||t.lang).call(t,"vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY LT",LLLL:"dddd, D MMMM [năm] YYYY LT",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY LT",llll:"ddd, D MMM YYYY LT"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},ordinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("vi","vi",{closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},allDayText:"Cả ngày",eventLimitText:function(e){return"+ thêm "+e +}})}(),function(){(t.defineLocale||t.lang).call(t,"zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"Ah点mm",LTS:"Ah点m分s秒",L:"YYYY-MM-DD",LL:"YYYY年MMMD日",LLL:"YYYY年MMMD日LT",LLLL:"YYYY年MMMD日ddddLT",l:"YYYY-MM-DD",ll:"YYYY年MMMD日",lll:"YYYY年MMMD日LT",llll:"YYYY年MMMD日ddddLT"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t){var a=100*e+t;return 600>a?"凌晨":900>a?"早上":1130>a?"上午":1230>a?"中午":1800>a?"下午":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[点整]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[明天]Ah[点整]":"[明天]LT"},lastDay:function(){return 0===this.minutes()?"[昨天]Ah[点整]":"[昨天]LT"},nextWeek:function(){var e,a;return e=t().startOf("week"),a=this.unix()-e.unix()>=604800?"[下]":"[本]",0===this.minutes()?a+"dddAh点整":a+"dddAh点mm"},lastWeek:function(){var e,a;return e=t().startOf("week"),a=this.unix()=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t){var a=100*e+t;return 900>a?"早上":1130>a?"上午":1230>a?"中午":1800>a?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},ordinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",m:"一分鐘",mm:"%d分鐘",h:"一小時",hh:"%d小時",d:"一天",dd:"%d天",M:"一個月",MM:"%d個月",y:"一年",yy:"%d年"}}),e.fullCalendar.datepickerLang("zh-tw","zh-TW",{closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.lang("zh-tw",{buttonText:{month:"月",week:"週",day:"天",list:"待辦事項"},allDayText:"全天",eventLimitText:"更多"})}(),(t.locale||t.lang).call(t,"en"),e.fullCalendar.lang("en"),e.datepicker&&e.datepicker.setDefaults(e.datepicker.regional[""])}); \ No newline at end of file diff --git a/assets/js/lang/ar-ma.js b/assets/js/lang/ar-ma.js new file mode 100644 index 00000000..2b3b4c26 --- /dev/null +++ b/assets/js/lang/ar-ma.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){(e.defineLocale||e.lang).call(e,"ar-ma",{months:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر".split("_"),weekdays:"الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:6,doy:12}}),t.fullCalendar.datepickerLang("ar-ma","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("ar-ma",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}); \ No newline at end of file diff --git a/assets/js/lang/ar-sa.js b/assets/js/lang/ar-sa.js new file mode 100644 index 00000000..15295604 --- /dev/null +++ b/assets/js/lang/ar-sa.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){var n={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},i={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"};(e.defineLocale||e.lang).call(e,"ar-sa",{months:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},meridiemParse:/ص|م/,isPM:function(t){return"م"===t},meridiem:function(t){return 12>t?"ص":"م"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},preparse:function(t){return t.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(t){return i[t]}).replace(/،/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return n[t]}).replace(/,/g,"،")},week:{dow:6,doy:12}}),t.fullCalendar.datepickerLang("ar-sa","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("ar-sa",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}); \ No newline at end of file diff --git a/assets/js/lang/ar-tn.js b/assets/js/lang/ar-tn.js new file mode 100644 index 00000000..dd44b885 --- /dev/null +++ b/assets/js/lang/ar-tn.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){(e.defineLocale||e.lang).call(e,"ar-tn",{months:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),monthsShort:"جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر".split("_"),weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[اليوم على الساعة] LT",nextDay:"[غدا على الساعة] LT",nextWeek:"dddd [على الساعة] LT",lastDay:"[أمس على الساعة] LT",lastWeek:"dddd [على الساعة] LT",sameElse:"L"},relativeTime:{future:"في %s",past:"منذ %s",s:"ثوان",m:"دقيقة",mm:"%d دقائق",h:"ساعة",hh:"%d ساعات",d:"يوم",dd:"%d أيام",M:"شهر",MM:"%d أشهر",y:"سنة",yy:"%d سنوات"},week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("ar-tn","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("ar-tn",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}); \ No newline at end of file diff --git a/assets/js/lang/ar.js b/assets/js/lang/ar.js new file mode 100644 index 00000000..01275514 --- /dev/null +++ b/assets/js/lang/ar.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){var n={1:"١",2:"٢",3:"٣",4:"٤",5:"٥",6:"٦",7:"٧",8:"٨",9:"٩",0:"٠"},i={"١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","٠":"0"},r=function(t){return 0===t?0:1===t?1:2===t?2:t%100>=3&&10>=t%100?3:t%100>=11?4:5},s={s:["أقل من ثانية","ثانية واحدة",["ثانيتان","ثانيتين"],"%d ثوان","%d ثانية","%d ثانية"],m:["أقل من دقيقة","دقيقة واحدة",["دقيقتان","دقيقتين"],"%d دقائق","%d دقيقة","%d دقيقة"],h:["أقل من ساعة","ساعة واحدة",["ساعتان","ساعتين"],"%d ساعات","%d ساعة","%d ساعة"],d:["أقل من يوم","يوم واحد",["يومان","يومين"],"%d أيام","%d يومًا","%d يوم"],M:["أقل من شهر","شهر واحد",["شهران","شهرين"],"%d أشهر","%d شهرا","%d شهر"],y:["أقل من عام","عام واحد",["عامان","عامين"],"%d أعوام","%d عامًا","%d عام"]},o=function(t){return function(e,n){var i=r(e),o=s[t][r(e)];return 2===i&&(o=o[n?0:1]),o.replace(/%d/i,e)}},l=["كانون الثاني يناير","شباط فبراير","آذار مارس","نيسان أبريل","أيار مايو","حزيران يونيو","تموز يوليو","آب أغسطس","أيلول سبتمبر","تشرين الأول أكتوبر","تشرين الثاني نوفمبر","كانون الأول ديسمبر"];(e.defineLocale||e.lang).call(e,"ar",{months:l,monthsShort:l,weekdays:"الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت".split("_"),weekdaysShort:"أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت".split("_"),weekdaysMin:"ح_ن_ث_ر_خ_ج_س".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},meridiemParse:/ص|م/,isPM:function(t){return"م"===t},meridiem:function(t){return 12>t?"ص":"م"},calendar:{sameDay:"[اليوم عند الساعة] LT",nextDay:"[غدًا عند الساعة] LT",nextWeek:"dddd [عند الساعة] LT",lastDay:"[أمس عند الساعة] LT",lastWeek:"dddd [عند الساعة] LT",sameElse:"L"},relativeTime:{future:"بعد %s",past:"منذ %s",s:o("s"),m:o("m"),mm:o("m"),h:o("h"),hh:o("h"),d:o("d"),dd:o("d"),M:o("M"),MM:o("M"),y:o("y"),yy:o("y")},preparse:function(t){return t.replace(/[١٢٣٤٥٦٧٨٩٠]/g,function(t){return i[t]}).replace(/،/g,",")},postformat:function(t){return t.replace(/\d/g,function(t){return n[t]}).replace(/,/g,"،")},week:{dow:6,doy:12}}),t.fullCalendar.datepickerLang("ar","ar",{closeText:"إغلاق",prevText:"<السابق",nextText:"التالي>",currentText:"اليوم",monthNames:["كانون الثاني","شباط","آذار","نيسان","مايو","حزيران","تموز","آب","أيلول","تشرين الأول","تشرين الثاني","كانون الأول"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesShort:["الأحد","الاثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"],dayNamesMin:["ح","ن","ث","ر","خ","ج","س"],weekHeader:"أسبوع",dateFormat:"dd/mm/yy",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("ar",{buttonText:{month:"شهر",week:"أسبوع",day:"يوم",list:"أجندة"},allDayText:"اليوم كله",eventLimitText:"أخرى"})}); \ No newline at end of file diff --git a/assets/js/lang/bg.js b/assets/js/lang/bg.js new file mode 100644 index 00000000..ce2ca67a --- /dev/null +++ b/assets/js/lang/bg.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){(e.defineLocale||e.lang).call(e,"bg",{months:"януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември".split("_"),monthsShort:"янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек".split("_"),weekdays:"неделя_понеделник_вторник_сряда_четвъртък_петък_събота".split("_"),weekdaysShort:"нед_пон_вто_сря_чет_пет_съб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Днес в] LT",nextDay:"[Утре в] LT",nextWeek:"dddd [в] LT",lastDay:"[Вчера в] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[В изминалата] dddd [в] LT";case 1:case 2:case 4:case 5:return"[В изминалия] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"след %s",past:"преди %s",s:"няколко секунди",m:"минута",mm:"%d минути",h:"час",hh:"%d часа",d:"ден",dd:"%d дни",M:"месец",MM:"%d месеца",y:"година",yy:"%d години"},ordinalParse:/\d{1,2}-(ев|ен|ти|ви|ри|ми)/,ordinal:function(t){var e=t%10,n=t%100;return 0===t?t+"-ев":0===n?t+"-ен":n>10&&20>n?t+"-ти":1===e?t+"-ви":2===e?t+"-ри":7===e||8===e?t+"-ми":t+"-ти"},week:{dow:1,doy:7}}),t.fullCalendar.datepickerLang("bg","bg",{closeText:"затвори",prevText:"<назад",nextText:"напред>",nextBigText:">>",currentText:"днес",monthNames:["Януари","Февруари","Март","Април","Май","Юни","Юли","Август","Септември","Октомври","Ноември","Декември"],monthNamesShort:["Яну","Фев","Мар","Апр","Май","Юни","Юли","Авг","Сеп","Окт","Нов","Дек"],dayNames:["Неделя","Понеделник","Вторник","Сряда","Четвъртък","Петък","Събота"],dayNamesShort:["Нед","Пон","Вто","Сря","Чет","Пет","Съб"],dayNamesMin:["Не","По","Вт","Ср","Че","Пе","Съ"],weekHeader:"Wk",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("bg",{buttonText:{month:"Месец",week:"Седмица",day:"Ден",list:"График"},allDayText:"Цял ден",eventLimitText:function(t){return"+още "+t}})}); \ No newline at end of file diff --git a/assets/js/lang/ca.js b/assets/js/lang/ca.js new file mode 100644 index 00000000..8fc8f0af --- /dev/null +++ b/assets/js/lang/ca.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){(e.defineLocale||e.lang).call(e,"ca",{months:"gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre".split("_"),monthsShort:"gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.".split("_"),weekdays:"diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte".split("_"),weekdaysShort:"dg._dl._dt._dc._dj._dv._ds.".split("_"),weekdaysMin:"Dg_Dl_Dt_Dc_Dj_Dv_Ds".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[demà a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+(1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|è|a)/,ordinal:function(t,e){var n=1===t?"r":2===t?"n":3===t?"r":4===t?"t":"è";return("w"===e||"W"===e)&&(n="a"),t+n},week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("ca","ca",{closeText:"Tanca",prevText:"Anterior",nextText:"Següent",currentText:"Avui",monthNames:["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"],monthNamesShort:["gen","feb","març","abr","maig","juny","jul","ag","set","oct","nov","des"],dayNames:["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"],dayNamesShort:["dg","dl","dt","dc","dj","dv","ds"],dayNamesMin:["dg","dl","dt","dc","dj","dv","ds"],weekHeader:"Set",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("ca",{buttonText:{month:"Mes",week:"Setmana",day:"Dia",list:"Agenda"},allDayText:"Tot el dia",eventLimitText:"més"})}); \ No newline at end of file diff --git a/assets/js/lang/cs.js b/assets/js/lang/cs.js new file mode 100644 index 00000000..898e336f --- /dev/null +++ b/assets/js/lang/cs.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){function n(t){return t>1&&5>t&&1!==~~(t/10)}function i(t,e,i,r){var s=t+" ";switch(i){case"s":return e||r?"pár sekund":"pár sekundami";case"m":return e?"minuta":r?"minutu":"minutou";case"mm":return e||r?s+(n(t)?"minuty":"minut"):s+"minutami";case"h":return e?"hodina":r?"hodinu":"hodinou";case"hh":return e||r?s+(n(t)?"hodiny":"hodin"):s+"hodinami";case"d":return e||r?"den":"dnem";case"dd":return e||r?s+(n(t)?"dny":"dní"):s+"dny";case"M":return e||r?"měsíc":"měsícem";case"MM":return e||r?s+(n(t)?"měsíce":"měsíců"):s+"měsíci";case"y":return e||r?"rok":"rokem";case"yy":return e||r?s+(n(t)?"roky":"let"):s+"lety"}}var r="leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec".split("_"),s="led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro".split("_");(e.defineLocale||e.lang).call(e,"cs",{months:r,monthsShort:s,monthsParse:function(t,e){var n,i=[];for(n=0;12>n;n++)i[n]=RegExp("^"+t[n]+"$|^"+e[n]+"$","i");return i}(r,s),weekdays:"neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota".split("_"),weekdaysShort:"ne_po_út_st_čt_pá_so".split("_"),weekdaysMin:"ne_po_út_st_čt_pá_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd D. MMMM YYYY LT"},calendar:{sameDay:"[dnes v] LT",nextDay:"[zítra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v neděli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve středu v] LT";case 4:return"[ve čtvrtek v] LT";case 5:return"[v pátek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[včera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou neděli v] LT";case 1:case 2:return"[minulé] dddd [v] LT";case 3:return"[minulou středu v] LT";case 4:case 5:return"[minulý] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"před %s",s:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("cs","cs",{closeText:"Zavřít",prevText:"<Dříve",nextText:"Později>",currentText:"Nyní",monthNames:["leden","únor","březen","duben","květen","červen","červenec","srpen","září","říjen","listopad","prosinec"],monthNamesShort:["led","úno","bře","dub","kvě","čer","čvc","srp","zář","říj","lis","pro"],dayNames:["neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota"],dayNamesShort:["ne","po","út","st","čt","pá","so"],dayNamesMin:["ne","po","út","st","čt","pá","so"],weekHeader:"Týd",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("cs",{buttonText:{month:"Měsíc",week:"Týden",day:"Den",list:"Agenda"},allDayText:"Celý den",eventLimitText:function(t){return"+další: "+t}})}); \ No newline at end of file diff --git a/assets/js/lang/da.js b/assets/js/lang/da.js new file mode 100644 index 00000000..2cbbd473 --- /dev/null +++ b/assets/js/lang/da.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){(e.defineLocale||e.lang).call(e,"da",{months:"januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tir_ons_tor_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd [d.] D. MMMM YYYY LT"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[I går kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"få sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en måned",MM:"%d måneder",y:"et år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("da","da",{closeText:"Luk",prevText:"<Forrige",nextText:"Næste>",currentText:"Idag",monthNames:["Januar","Februar","Marts","April","Maj","Juni","Juli","August","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNames:["Søndag","Mandag","Tirsdag","Onsdag","Torsdag","Fredag","Lørdag"],dayNamesShort:["Søn","Man","Tir","Ons","Tor","Fre","Lør"],dayNamesMin:["Sø","Ma","Ti","On","To","Fr","Lø"],weekHeader:"Uge",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("da",{buttonText:{month:"Måned",week:"Uge",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"flere"})}); \ No newline at end of file diff --git a/assets/js/lang/de-at.js b/assets/js/lang/de-at.js new file mode 100644 index 00000000..b664e406 --- /dev/null +++ b/assets/js/lang/de-at.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){function n(t,e,n){var i={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?i[n][0]:i[n][1]}(e.defineLocale||e.lang).call(e,"de-at",{months:"Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[Heute um] LT [Uhr]",sameElse:"L",nextDay:"[Morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[Gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:n,mm:"%d Minuten",h:n,hh:"%d Stunden",d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("de-at","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("de-at",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(t){return"+ weitere "+t}})}); \ No newline at end of file diff --git a/assets/js/lang/de.js b/assets/js/lang/de.js new file mode 100644 index 00000000..79331901 --- /dev/null +++ b/assets/js/lang/de.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){function n(t,e,n){var i={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[t+" Tage",t+" Tagen"],M:["ein Monat","einem Monat"],MM:[t+" Monate",t+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[t+" Jahre",t+" Jahren"]};return e?i[n][0]:i[n][1]}(e.defineLocale||e.lang).call(e,"de",{months:"Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"),monthsShort:"Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.".split("_"),weekdays:"Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"),weekdaysShort:"So._Mo._Di._Mi._Do._Fr._Sa.".split("_"),weekdaysMin:"So_Mo_Di_Mi_Do_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[Heute um] LT [Uhr]",sameElse:"L",nextDay:"[Morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[Gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:n,mm:"%d Minuten",h:n,hh:"%d Stunden",d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("de","de",{closeText:"Schließen",prevText:"<Zurück",nextText:"Vor>",currentText:"Heute",monthNames:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],monthNamesShort:["Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],dayNames:["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],dayNamesShort:["So","Mo","Di","Mi","Do","Fr","Sa"],dayNamesMin:["So","Mo","Di","Mi","Do","Fr","Sa"],weekHeader:"KW",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("de",{buttonText:{month:"Monat",week:"Woche",day:"Tag",list:"Terminübersicht"},allDayText:"Ganztägig",eventLimitText:function(t){return"+ weitere "+t}})}); \ No newline at end of file diff --git a/assets/js/lang/el.js b/assets/js/lang/el.js new file mode 100644 index 00000000..074ddb9b --- /dev/null +++ b/assets/js/lang/el.js @@ -0,0 +1 @@ +(function(t){"function"==typeof define&&define.amd?define(["jquery","moment"],t):t(jQuery,moment)})(function(t,e){(e.defineLocale||e.lang).call(e,"el",{monthsNominativeEl:"Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος".split("_"),monthsGenitiveEl:"Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου".split("_"),months:function(t,e){return/D/.test(e.substring(0,e.indexOf("MMMM")))?this._monthsGenitiveEl[t.month()]:this._monthsNominativeEl[t.month()]},monthsShort:"Ιαν_Φεβ_Μαρ_Απρ_Μαϊ_Ιουν_Ιουλ_Αυγ_Σεπ_Οκτ_Νοε_Δεκ".split("_"),weekdays:"Κυριακή_Δευτέρα_Τρίτη_Τετάρτη_Πέμπτη_Παρασκευή_Σάββατο".split("_"),weekdaysShort:"Κυρ_Δευ_Τρι_Τετ_Πεμ_Παρ_Σαβ".split("_"),weekdaysMin:"Κυ_Δε_Τρ_Τε_Πε_Πα_Σα".split("_"),meridiem:function(t,e,n){return t>11?n?"μμ":"ΜΜ":n?"πμ":"ΠΜ"},isPM:function(t){return"μ"===(t+"").toLowerCase()[0]},meridiemParse:/[ΠΜ]\.?Μ?\.?/i,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendarEl:{sameDay:"[Σήμερα {}] LT",nextDay:"[Αύριο {}] LT",nextWeek:"dddd [{}] LT",lastDay:"[Χθες {}] LT",lastWeek:function(){switch(this.day()){case 6:return"[το προηγούμενο] dddd [{}] LT";default:return"[την προηγούμενη] dddd [{}] LT"}},sameElse:"L"},calendar:function(t,e){var n=this._calendarEl[t],i=e&&e.hours();return"function"==typeof n&&(n=n.apply(e)),n.replace("{}",1===i%12?"στη":"στις")},relativeTime:{future:"σε %s",past:"%s πριν",s:"λίγα δευτερόλεπτα",m:"ένα λεπτό",mm:"%d λεπτά",h:"μία ώρα",hh:"%d ώρες",d:"μία μέρα",dd:"%d μέρες",M:"ένας μήνας",MM:"%d μήνες",y:"ένας χρόνος",yy:"%d χρόνια"},ordinalParse:/\d{1,2}η/,ordinal:"%dη",week:{dow:1,doy:4}}),t.fullCalendar.datepickerLang("el","el",{closeText:"Κλείσιμο",prevText:"Προηγούμενος",nextText:"Επόμενος",currentText:"Σήμερα",monthNames:["Ιανουάριος","Φεβρουάριος","Μάρτιος","Απρίλιος","Μάιος","Ιούνιος","Ιούλιος","Αύγουστος","Σεπτέμβριος","Οκτώβριος","Νοέμβριος","Δεκέμβριος"],monthNamesShort:["Ιαν","Φεβ","Μαρ","Απρ","Μαι","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],dayNames:["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],dayNamesShort:["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],dayNamesMin:["Κυ","Δε","Τρ","Τε","Πε","Πα","Σα"],weekHeader:"Εβδ",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),t.fullCalendar.lang("el",{buttonText:{month:"Μήνας",week:"Εβδομάδα",day:"Ημέρα",list:"Ατζέντα"},allDayText:"Ολοήμερο",eventLimitText:"περισσότερα"})}); \ No newline at end of file diff --git a/assets/js/lang/en-au.js b/assets/js/lang/en-au.js new file mode 100644 index 00000000..58d51dab --- /dev/null +++ b/assets/js/lang/en-au.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"en-au",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("en-au","en-AU",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("en-au")}); \ No newline at end of file diff --git a/assets/js/lang/en-ca.js b/assets/js/lang/en-ca.js new file mode 100644 index 00000000..5aa53055 --- /dev/null +++ b/assets/js/lang/en-ca.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"en-ca",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"YYYY-MM-DD",LL:"D MMMM, YYYY",LLL:"D MMMM, YYYY LT",LLLL:"dddd, D MMMM, YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n}}),e.fullCalendar.lang("en-ca")}); \ No newline at end of file diff --git a/assets/js/lang/en-gb.js b/assets/js/lang/en-gb.js new file mode 100644 index 00000000..d987ef4d --- /dev/null +++ b/assets/js/lang/en-gb.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"th":1===t?"st":2===t?"nd":3===t?"rd":"th";return e+n},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("en-gb","en-GB",{closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("en-gb")}); \ No newline at end of file diff --git a/assets/js/lang/es.js b/assets/js/lang/es.js new file mode 100644 index 00000000..72b5fd1a --- /dev/null +++ b/assets/js/lang/es.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n="ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.".split("_"),i="ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_");(t.defineLocale||t.lang).call(t,"es",{months:"enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"),monthsShort:function(e,t){return/-MMM-/.test(t)?i[e.month()]:n[e.month()]},weekdays:"domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"),weekdaysShort:"dom._lun._mar._mié._jue._vie._sáb.".split("_"),weekdaysMin:"Do_Lu_Ma_Mi_Ju_Vi_Sá".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY LT",LLLL:"dddd, D [de] MMMM [de] YYYY LT"},calendar:{sameDay:function(){return"[hoy a la"+(1!==this.hours()?"s":"")+"] LT"},nextDay:function(){return"[mañana a la"+(1!==this.hours()?"s":"")+"] LT"},nextWeek:function(){return"dddd [a la"+(1!==this.hours()?"s":"")+"] LT"},lastDay:function(){return"[ayer a la"+(1!==this.hours()?"s":"")+"] LT"},lastWeek:function(){return"[el] dddd [pasado a la"+(1!==this.hours()?"s":"")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"hace %s",s:"unos segundos",m:"un minuto",mm:"%d minutos",h:"una hora",hh:"%d horas",d:"un día",dd:"%d días",M:"un mes",MM:"%d meses",y:"un año",yy:"%d años"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("es","es",{closeText:"Cerrar",prevText:"<Ant",nextText:"Sig>",currentText:"Hoy",monthNames:["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"],monthNamesShort:["ene","feb","mar","abr","may","jun","jul","ago","sep","oct","nov","dic"],dayNames:["domingo","lunes","martes","miércoles","jueves","viernes","sábado"],dayNamesShort:["dom","lun","mar","mié","jue","vie","sáb"],dayNamesMin:["D","L","M","X","J","V","S"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("es",{buttonText:{month:"Mes",week:"Semana",day:"Día",list:"Agenda"},allDayHtml:"Todo
el día",eventLimitText:"más"})}); \ No newline at end of file diff --git a/assets/js/lang/fa.js b/assets/js/lang/fa.js new file mode 100644 index 00000000..0bc7cf1a --- /dev/null +++ b/assets/js/lang/fa.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n={1:"۱",2:"۲",3:"۳",4:"۴",5:"۵",6:"۶",7:"۷",8:"۸",9:"۹",0:"۰"},i={"۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","۰":"0"};(t.defineLocale||t.lang).call(t,"fa",{months:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),monthsShort:"ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر".split("_"),weekdays:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysShort:"یک‌شنبه_دوشنبه_سه‌شنبه_چهارشنبه_پنج‌شنبه_جمعه_شنبه".split("_"),weekdaysMin:"ی_د_س_چ_پ_ج_ش".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},meridiemParse:/قبل از ظهر|بعد از ظهر/,isPM:function(e){return/بعد از ظهر/.test(e)},meridiem:function(e){return 12>e?"قبل از ظهر":"بعد از ظهر"},calendar:{sameDay:"[امروز ساعت] LT",nextDay:"[فردا ساعت] LT",nextWeek:"dddd [ساعت] LT",lastDay:"[دیروز ساعت] LT",lastWeek:"dddd [پیش] [ساعت] LT",sameElse:"L"},relativeTime:{future:"در %s",past:"%s پیش",s:"چندین ثانیه",m:"یک دقیقه",mm:"%d دقیقه",h:"یک ساعت",hh:"%d ساعت",d:"یک روز",dd:"%d روز",M:"یک ماه",MM:"%d ماه",y:"یک سال",yy:"%d سال"},preparse:function(e){return e.replace(/[۰-۹]/g,function(e){return i[e]}).replace(/،/g,",")},postformat:function(e){return e.replace(/\d/g,function(e){return n[e]}).replace(/,/g,"،")},ordinalParse:/\d{1,2}م/,ordinal:"%dم",week:{dow:6,doy:12}}),e.fullCalendar.datepickerLang("fa","fa",{closeText:"بستن",prevText:"<قبلی",nextText:"بعدی>",currentText:"امروز",monthNames:["ژانویه","فوریه","مارس","آوریل","مه","ژوئن","ژوئیه","اوت","سپتامبر","اکتبر","نوامبر","دسامبر"],monthNamesShort:["1","2","3","4","5","6","7","8","9","10","11","12"],dayNames:["يکشنبه","دوشنبه","سه‌شنبه","چهارشنبه","پنجشنبه","جمعه","شنبه"],dayNamesShort:["ی","د","س","چ","پ","ج","ش"],dayNamesMin:["ی","د","س","چ","پ","ج","ش"],weekHeader:"هف",dateFormat:"yy/mm/dd",firstDay:6,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fa",{buttonText:{month:"ماه",week:"هفته",day:"روز",list:"برنامه"},allDayText:"تمام روز",eventLimitText:function(e){return"بیش از "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/fi.js b/assets/js/lang/fi.js new file mode 100644 index 00000000..4338cf49 --- /dev/null +++ b/assets/js/lang/fi.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n,r){var s="";switch(n){case"s":return r?"muutaman sekunnin":"muutama sekunti";case"m":return r?"minuutin":"minuutti";case"mm":s=r?"minuutin":"minuuttia";break;case"h":return r?"tunnin":"tunti";case"hh":s=r?"tunnin":"tuntia";break;case"d":return r?"päivän":"päivä";case"dd":s=r?"päivän":"päivää";break;case"M":return r?"kuukauden":"kuukausi";case"MM":s=r?"kuukauden":"kuukautta";break;case"y":return r?"vuoden":"vuosi";case"yy":s=r?"vuoden":"vuotta"}return s=i(e,r)+" "+s}function i(e,t){return 10>e?t?s[e]:r[e]:e}var r="nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän".split(" "),s=["nolla","yhden","kahden","kolmen","neljän","viiden","kuuden",r[7],r[8],r[9]];(t.defineLocale||t.lang).call(t,"fi",{months:"tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu".split("_"),monthsShort:"tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu".split("_"),weekdays:"sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai".split("_"),weekdaysShort:"su_ma_ti_ke_to_pe_la".split("_"),weekdaysMin:"su_ma_ti_ke_to_pe_la".split("_"),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"Do MMMM[ta] YYYY",LLL:"Do MMMM[ta] YYYY, [klo] LT",LLLL:"dddd, Do MMMM[ta] YYYY, [klo] LT",l:"D.M.YYYY",ll:"Do MMM YYYY",lll:"Do MMM YYYY, [klo] LT",llll:"ddd, Do MMM YYYY, [klo] LT"},calendar:{sameDay:"[tänään] [klo] LT",nextDay:"[huomenna] [klo] LT",nextWeek:"dddd [klo] LT",lastDay:"[eilen] [klo] LT",lastWeek:"[viime] dddd[na] [klo] LT",sameElse:"L"},relativeTime:{future:"%s päästä",past:"%s sitten",s:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("fi","fi",{closeText:"Sulje",prevText:"«Edellinen",nextText:"Seuraava»",currentText:"Tänään",monthNames:["Tammikuu","Helmikuu","Maaliskuu","Huhtikuu","Toukokuu","Kesäkuu","Heinäkuu","Elokuu","Syyskuu","Lokakuu","Marraskuu","Joulukuu"],monthNamesShort:["Tammi","Helmi","Maalis","Huhti","Touko","Kesä","Heinä","Elo","Syys","Loka","Marras","Joulu"],dayNamesShort:["Su","Ma","Ti","Ke","To","Pe","La"],dayNames:["Sunnuntai","Maanantai","Tiistai","Keskiviikko","Torstai","Perjantai","Lauantai"],dayNamesMin:["Su","Ma","Ti","Ke","To","Pe","La"],weekHeader:"Vk",dateFormat:"d.m.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fi",{buttonText:{month:"Kuukausi",week:"Viikko",day:"Päivä",list:"Tapahtumat"},allDayText:"Koko päivä",eventLimitText:"lisää"})}); \ No newline at end of file diff --git a/assets/js/lang/fr-ca.js b/assets/js/lang/fr-ca.js new file mode 100644 index 00000000..260ff49a --- /dev/null +++ b/assets/js/lang/fr-ca.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"fr-ca",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")}}),e.fullCalendar.datepickerLang("fr-ca","fr-CA",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avril","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fr-ca",{buttonText:{month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus"})}); \ No newline at end of file diff --git a/assets/js/lang/fr.js b/assets/js/lang/fr.js new file mode 100644 index 00000000..6565276a --- /dev/null +++ b/assets/js/lang/fr.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"fr",{months:"janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"),monthsShort:"janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"),weekdays:"dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"),weekdaysShort:"dim._lun._mar._mer._jeu._ven._sam.".split("_"),weekdaysMin:"Di_Lu_Ma_Me_Je_Ve_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[Aujourd'hui à] LT",nextDay:"[Demain à] LT",nextWeek:"dddd [à] LT",lastDay:"[Hier à] LT",lastWeek:"dddd [dernier à] LT",sameElse:"L"},relativeTime:{future:"dans %s",past:"il y a %s",s:"quelques secondes",m:"une minute",mm:"%d minutes",h:"une heure",hh:"%d heures",d:"un jour",dd:"%d jours",M:"un mois",MM:"%d mois",y:"un an",yy:"%d ans"},ordinalParse:/\d{1,2}(er|)/,ordinal:function(e){return e+(1===e?"er":"")},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("fr","fr",{closeText:"Fermer",prevText:"Précédent",nextText:"Suivant",currentText:"Aujourd'hui",monthNames:["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"],monthNamesShort:["janv.","févr.","mars","avr.","mai","juin","juil.","août","sept.","oct.","nov.","déc."],dayNames:["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"],dayNamesShort:["dim.","lun.","mar.","mer.","jeu.","ven.","sam."],dayNamesMin:["D","L","M","M","J","V","S"],weekHeader:"Sem.",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("fr",{buttonText:{month:"Mois",week:"Semaine",day:"Jour",list:"Mon planning"},allDayHtml:"Toute la
journée",eventLimitText:"en plus"})}); \ No newline at end of file diff --git a/assets/js/lang/he.js b/assets/js/lang/he.js new file mode 100644 index 00000000..b3af13fa --- /dev/null +++ b/assets/js/lang/he.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"he",{months:"ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר".split("_"),monthsShort:"ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳".split("_"),weekdays:"ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת".split("_"),weekdaysShort:"א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳".split("_"),weekdaysMin:"א_ב_ג_ד_ה_ו_ש".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [ב]MMMM YYYY",LLL:"D [ב]MMMM YYYY LT",LLLL:"dddd, D [ב]MMMM YYYY LT",l:"D/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY LT",llll:"ddd, D MMM YYYY LT"},calendar:{sameDay:"[היום ב־]LT",nextDay:"[מחר ב־]LT",nextWeek:"dddd [בשעה] LT",lastDay:"[אתמול ב־]LT",lastWeek:"[ביום] dddd [האחרון בשעה] LT",sameElse:"L"},relativeTime:{future:"בעוד %s",past:"לפני %s",s:"מספר שניות",m:"דקה",mm:"%d דקות",h:"שעה",hh:function(e){return 2===e?"שעתיים":e+" שעות"},d:"יום",dd:function(e){return 2===e?"יומיים":e+" ימים"},M:"חודש",MM:function(e){return 2===e?"חודשיים":e+" חודשים"},y:"שנה",yy:function(e){return 2===e?"שנתיים":0===e%10&&10!==e?e+" שנה":e+" שנים"}}}),e.fullCalendar.datepickerLang("he","he",{closeText:"סגור",prevText:"<הקודם",nextText:"הבא>",currentText:"היום",monthNames:["ינואר","פברואר","מרץ","אפריל","מאי","יוני","יולי","אוגוסט","ספטמבר","אוקטובר","נובמבר","דצמבר"],monthNamesShort:["ינו","פבר","מרץ","אפר","מאי","יוני","יולי","אוג","ספט","אוק","נוב","דצמ"],dayNames:["ראשון","שני","שלישי","רביעי","חמישי","שישי","שבת"],dayNamesShort:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],dayNamesMin:["א'","ב'","ג'","ד'","ה'","ו'","שבת"],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!0,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("he",{defaultButtonText:{month:"חודש",week:"שבוע",day:"יום",list:"סדר יום"},weekNumberTitle:"שבוע",allDayText:"כל היום",eventLimitText:"אחר"})}); \ No newline at end of file diff --git a/assets/js/lang/hi.js b/assets/js/lang/hi.js new file mode 100644 index 00000000..25dea2ec --- /dev/null +++ b/assets/js/lang/hi.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n={1:"१",2:"२",3:"३",4:"४",5:"५",6:"६",7:"७",8:"८",9:"९",0:"०"},i={"१":"1","२":"2","३":"3","४":"4","५":"5","६":"6","७":"7","८":"8","९":"9","०":"0"};(t.defineLocale||t.lang).call(t,"hi",{months:"जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर".split("_"),monthsShort:"जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.".split("_"),weekdays:"रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार".split("_"),weekdaysShort:"रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि".split("_"),weekdaysMin:"र_सो_मं_बु_गु_शु_श".split("_"),longDateFormat:{LT:"A h:mm बजे",LTS:"A h:mm:ss बजे",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, LT",LLLL:"dddd, D MMMM YYYY, LT"},calendar:{sameDay:"[आज] LT",nextDay:"[कल] LT",nextWeek:"dddd, LT",lastDay:"[कल] LT",lastWeek:"[पिछले] dddd, LT",sameElse:"L"},relativeTime:{future:"%s में",past:"%s पहले",s:"कुछ ही क्षण",m:"एक मिनट",mm:"%d मिनट",h:"एक घंटा",hh:"%d घंटे",d:"एक दिन",dd:"%d दिन",M:"एक महीने",MM:"%d महीने",y:"एक वर्ष",yy:"%d वर्ष"},preparse:function(e){return e.replace(/[१२३४५६७८९०]/g,function(e){return i[e]})},postformat:function(e){return e.replace(/\d/g,function(e){return n[e]})},meridiemParse:/रात|सुबह|दोपहर|शाम/,meridiemHour:function(e,t){return 12===e&&(e=0),"रात"===t?4>e?e:e+12:"सुबह"===t?e:"दोपहर"===t?e>=10?e:e+12:"शाम"===t?e+12:void 0},meridiem:function(e){return 4>e?"रात":10>e?"सुबह":17>e?"दोपहर":20>e?"शाम":"रात"},week:{dow:0,doy:6}}),e.fullCalendar.datepickerLang("hi","hi",{closeText:"बंद",prevText:"पिछला",nextText:"अगला",currentText:"आज",monthNames:["जनवरी ","फरवरी","मार्च","अप्रेल","मई","जून","जूलाई","अगस्त ","सितम्बर","अक्टूबर","नवम्बर","दिसम्बर"],monthNamesShort:["जन","फर","मार्च","अप्रेल","मई","जून","जूलाई","अग","सित","अक्ट","नव","दि"],dayNames:["रविवार","सोमवार","मंगलवार","बुधवार","गुरुवार","शुक्रवार","शनिवार"],dayNamesShort:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],dayNamesMin:["रवि","सोम","मंगल","बुध","गुरु","शुक्र","शनि"],weekHeader:"हफ्ता",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("hi",{buttonText:{month:"महीना",week:"सप्ताह",day:"दिन",list:"कार्यसूची"},allDayText:"सभी दिन",eventLimitText:function(e){return"+अधिक "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/hr.js b/assets/js/lang/hr.js new file mode 100644 index 00000000..96bd2319 --- /dev/null +++ b/assets/js/lang/hr.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n){var i=e+" ";switch(n){case"m":return t?"jedna minuta":"jedne minute";case"mm":return i+=1===e?"minuta":2===e||3===e||4===e?"minute":"minuta";case"h":return t?"jedan sat":"jednog sata";case"hh":return i+=1===e?"sat":2===e||3===e||4===e?"sata":"sati";case"dd":return i+=1===e?"dan":"dana";case"MM":return i+=1===e?"mjesec":2===e||3===e||4===e?"mjeseca":"mjeseci";case"yy":return i+=1===e?"godina":2===e||3===e||4===e?"godine":"godina"}}(t.defineLocale||t.lang).call(t,"hr",{months:"sječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac".split("_"),monthsShort:"sje._vel._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.".split("_"),weekdays:"nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota".split("_"),weekdaysShort:"ned._pon._uto._sri._čet._pet._sub.".split("_"),weekdaysMin:"ne_po_ut_sr_če_pe_su".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[jučer u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[prošlu] dddd [u] LT";case 6:return"[prošle] [subote] [u] LT";case 1:case 2:case 4:case 5:return"[prošli] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:n,mm:n,h:n,hh:n,d:"dan",dd:n,M:"mjesec",MM:n,y:"godinu",yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("hr","hr",{closeText:"Zatvori",prevText:"<",nextText:">",currentText:"Danas",monthNames:["Siječanj","Veljača","Ožujak","Travanj","Svibanj","Lipanj","Srpanj","Kolovoz","Rujan","Listopad","Studeni","Prosinac"],monthNamesShort:["Sij","Velj","Ožu","Tra","Svi","Lip","Srp","Kol","Ruj","Lis","Stu","Pro"],dayNames:["Nedjelja","Ponedjeljak","Utorak","Srijeda","Četvrtak","Petak","Subota"],dayNamesShort:["Ned","Pon","Uto","Sri","Čet","Pet","Sub"],dayNamesMin:["Ne","Po","Ut","Sr","Če","Pe","Su"],weekHeader:"Tje",dateFormat:"dd.mm.yy.",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("hr",{buttonText:{month:"Mjesec",week:"Tjedan",day:"Dan",list:"Raspored"},allDayText:"Cijeli dan",eventLimitText:function(e){return"+ još "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/hu.js b/assets/js/lang/hu.js new file mode 100644 index 00000000..b0406967 --- /dev/null +++ b/assets/js/lang/hu.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n,i){var r=e;switch(n){case"s":return i||t?"néhány másodperc":"néhány másodperce";case"m":return"egy"+(i||t?" perc":" perce");case"mm":return r+(i||t?" perc":" perce");case"h":return"egy"+(i||t?" óra":" órája");case"hh":return r+(i||t?" óra":" órája");case"d":return"egy"+(i||t?" nap":" napja");case"dd":return r+(i||t?" nap":" napja");case"M":return"egy"+(i||t?" hónap":" hónapja");case"MM":return r+(i||t?" hónap":" hónapja");case"y":return"egy"+(i||t?" év":" éve");case"yy":return r+(i||t?" év":" éve")}return""}function i(e){return(e?"":"[múlt] ")+"["+r[this.day()]+"] LT[-kor]"}var r="vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton".split(" ");(t.defineLocale||t.lang).call(t,"hu",{months:"január_február_március_április_május_június_július_augusztus_szeptember_október_november_december".split("_"),monthsShort:"jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec".split("_"),weekdays:"vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat".split("_"),weekdaysShort:"vas_hét_kedd_sze_csüt_pén_szo".split("_"),weekdaysMin:"v_h_k_sze_cs_p_szo".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D., LT",LLLL:"YYYY. MMMM D., dddd LT"},meridiemParse:/de|du/i,isPM:function(e){return"u"===e.charAt(1).toLowerCase()},meridiem:function(e,t,n){return 12>e?n===!0?"de":"DE":n===!0?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return i.call(this,!0)},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return i.call(this,!1)},sameElse:"L"},relativeTime:{future:"%s múlva",past:"%s",s:n,m:n,mm:n,h:n,hh:n,d:n,dd:n,M:n,MM:n,y:n,yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("hu","hu",{closeText:"bezár",prevText:"vissza",nextText:"előre",currentText:"ma",monthNames:["Január","Február","Március","Április","Május","Június","Július","Augusztus","Szeptember","Október","November","December"],monthNamesShort:["Jan","Feb","Már","Ápr","Máj","Jún","Júl","Aug","Szep","Okt","Nov","Dec"],dayNames:["Vasárnap","Hétfő","Kedd","Szerda","Csütörtök","Péntek","Szombat"],dayNamesShort:["Vas","Hét","Ked","Sze","Csü","Pén","Szo"],dayNamesMin:["V","H","K","Sze","Cs","P","Szo"],weekHeader:"Hét",dateFormat:"yy.mm.dd.",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.lang("hu",{buttonText:{month:"Hónap",week:"Hét",day:"Nap",list:"Napló"},allDayText:"Egész nap",eventLimitText:"további"})}); \ No newline at end of file diff --git a/assets/js/lang/id.js b/assets/js/lang/id.js new file mode 100644 index 00000000..dc08dc27 --- /dev/null +++ b/assets/js/lang/id.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"id",{months:"Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember".split("_"),monthsShort:"Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des".split("_"),weekdays:"Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu".split("_"),weekdaysShort:"Min_Sen_Sel_Rab_Kam_Jum_Sab".split("_"),weekdaysMin:"Mg_Sn_Sl_Rb_Km_Jm_Sb".split("_"),longDateFormat:{LT:"HH.mm",LTS:"LT.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] LT",LLLL:"dddd, D MMMM YYYY [pukul] LT"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(e,t){return 12===e&&(e=0),"pagi"===t?e:"siang"===t?e>=11?e:e+12:"sore"===t||"malam"===t?e+12:void 0},meridiem:function(e){return 11>e?"pagi":15>e?"siang":19>e?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("id","id",{closeText:"Tutup",prevText:"<mundur",nextText:"maju>",currentText:"hari ini",monthNames:["Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","Nopember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Mei","Jun","Jul","Agus","Sep","Okt","Nop","Des"],dayNames:["Minggu","Senin","Selasa","Rabu","Kamis","Jumat","Sabtu"],dayNamesShort:["Min","Sen","Sel","Rab","kam","Jum","Sab"],dayNamesMin:["Mg","Sn","Sl","Rb","Km","jm","Sb"],weekHeader:"Mg",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("id",{buttonText:{month:"Bulan",week:"Minggu",day:"Hari",list:"Agenda"},allDayHtml:"Sehari
penuh",eventLimitText:"lebih"})}); \ No newline at end of file diff --git a/assets/js/lang/is.js b/assets/js/lang/is.js new file mode 100644 index 00000000..7c3285ab --- /dev/null +++ b/assets/js/lang/is.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e){return 11===e%100?!0:1===e%10?!1:!0}function r(e,t,r,i){var s=e+" ";switch(r){case"s":return t||i?"nokkrar sekúndur":"nokkrum sekúndum";case"m":return t?"mínúta":"mínútu";case"mm":return n(e)?s+(t||i?"mínútur":"mínútum"):t?s+"mínúta":s+"mínútu";case"hh":return n(e)?s+(t||i?"klukkustundir":"klukkustundum"):s+"klukkustund";case"d":return t?"dagur":i?"dag":"degi";case"dd":return n(e)?t?s+"dagar":s+(i?"daga":"dögum"):t?s+"dagur":s+(i?"dag":"degi");case"M":return t?"mánuður":i?"mánuð":"mánuði";case"MM":return n(e)?t?s+"mánuðir":s+(i?"mánuði":"mánuðum"):t?s+"mánuður":s+(i?"mánuð":"mánuði");case"y":return t||i?"ár":"ári";case"yy":return n(e)?s+(t||i?"ár":"árum"):s+(t||i?"ár":"ári")}}(t.defineLocale||t.lang).call(t,"is",{months:"janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember".split("_"),monthsShort:"jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des".split("_"),weekdays:"sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur".split("_"),weekdaysShort:"sun_mán_þri_mið_fim_fös_lau".split("_"),weekdaysMin:"Su_Má_Þr_Mi_Fi_Fö_La".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] LT",LLLL:"dddd, D. MMMM YYYY [kl.] LT"},calendar:{sameDay:"[í dag kl.] LT",nextDay:"[á morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[í gær kl.] LT",lastWeek:"[síðasta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s síðan",s:r,m:r,mm:r,h:"klukkustund",hh:r,d:r,dd:r,M:r,MM:r,y:r,yy:r},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("is","is",{closeText:"Loka",prevText:"< Fyrri",nextText:"Næsti >",currentText:"Í dag",monthNames:["Janúar","Febrúar","Mars","Apríl","Maí","Júní","Júlí","Ágúst","September","Október","Nóvember","Desember"],monthNamesShort:["Jan","Feb","Mar","Apr","Maí","Jún","Júl","Ágú","Sep","Okt","Nóv","Des"],dayNames:["Sunnudagur","Mánudagur","Þriðjudagur","Miðvikudagur","Fimmtudagur","Föstudagur","Laugardagur"],dayNamesShort:["Sun","Mán","Þri","Mið","Fim","Fös","Lau"],dayNamesMin:["Su","Má","Þr","Mi","Fi","Fö","La"],weekHeader:"Vika",dateFormat:"dd.mm.yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("is",{buttonText:{month:"Mánuður",week:"Vika",day:"Dagur",list:"Dagskrá"},allDayHtml:"Allan
daginn",eventLimitText:"meira"})}); \ No newline at end of file diff --git a/assets/js/lang/it.js b/assets/js/lang/it.js new file mode 100644 index 00000000..9257f0c1 --- /dev/null +++ b/assets/js/lang/it.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"it",{months:"gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"),monthsShort:"gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"),weekdays:"Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato".split("_"),weekdaysShort:"Dom_Lun_Mar_Mer_Gio_Ven_Sab".split("_"),weekdaysMin:"D_L_Ma_Me_G_V_S".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(e){return(/^[0-9].+$/.test(e)?"tra":"in")+" "+e},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi",y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("it","it",{closeText:"Chiudi",prevText:"<Prec",nextText:"Succ>",currentText:"Oggi",monthNames:["Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre"],monthNamesShort:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],dayNames:["Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"],dayNamesShort:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],dayNamesMin:["Do","Lu","Ma","Me","Gi","Ve","Sa"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("it",{buttonText:{month:"Mese",week:"Settimana",day:"Giorno",list:"Agenda"},allDayHtml:"Tutto il
giorno",eventLimitText:function(e){return"+altri "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/ja.js b/assets/js/lang/ja.js new file mode 100644 index 00000000..e6256efc --- /dev/null +++ b/assets/js/lang/ja.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"ja",{months:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日".split("_"),weekdaysShort:"日_月_火_水_木_金_土".split("_"),weekdaysMin:"日_月_火_水_木_金_土".split("_"),longDateFormat:{LT:"Ah時m分",LTS:"LTs秒",L:"YYYY/MM/DD",LL:"YYYY年M月D日",LLL:"YYYY年M月D日LT",LLLL:"YYYY年M月D日LT dddd"},meridiemParse:/午前|午後/i,isPM:function(e){return"午後"===e},meridiem:function(e){return 12>e?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}}),e.fullCalendar.datepickerLang("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.lang("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(e){return"他 "+e+" 件"}})}); \ No newline at end of file diff --git a/assets/js/lang/ko.js b/assets/js/lang/ko.js new file mode 100644 index 00000000..c8cf0998 --- /dev/null +++ b/assets/js/lang/ko.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h시 m분",LTS:"A h시 m분 s초",L:"YYYY.MM.DD",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 LT",LLLL:"YYYY년 MMMM D일 dddd LT"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇초",ss:"%d초",m:"일분",mm:"%d분",h:"한시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한달",MM:"%d달",y:"일년",yy:"%d년"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e){return 12>e?"오전":"오후"}}),e.fullCalendar.datepickerLang("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"Wk",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),e.fullCalendar.lang("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개"})}); \ No newline at end of file diff --git a/assets/js/lang/lt.js b/assets/js/lang/lt.js new file mode 100644 index 00000000..1f74d075 --- /dev/null +++ b/assets/js/lang/lt.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n,i){return t?"kelios sekundės":i?"kelių sekundžių":"kelias sekundes"}function i(e,t,n,i){return t?a(n)[0]:i?a(n)[1]:a(n)[2]}function r(e){return 0===e%10||e>10&&20>e}function a(e){return l[e].split("_")}function s(e,t,n,s){var o=e+" ";return 1===e?o+i(e,t,n[0],s):t?o+(r(e)?a(n)[1]:a(n)[0]):s?o+a(n)[1]:o+(r(e)?a(n)[1]:a(n)[2])}function o(e,t){var n=-1===t.indexOf("dddd HH:mm"),i=d[e.day()];return n?i:i.substring(0,i.length-2)+"į"}var l={m:"minutė_minutės_minutę",mm:"minutės_minučių_minutes",h:"valanda_valandos_valandą",hh:"valandos_valandų_valandas",d:"diena_dienos_dieną",dd:"dienos_dienų_dienas",M:"mėnuo_mėnesio_mėnesį",MM:"mėnesiai_mėnesių_mėnesius",y:"metai_metų_metus",yy:"metai_metų_metus"},d="sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis".split("_");(t.defineLocale||t.lang).call(t,"lt",{months:"sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio".split("_"),monthsShort:"sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd".split("_"),weekdays:o,weekdaysShort:"Sek_Pir_Ant_Tre_Ket_Pen_Šeš".split("_"),weekdaysMin:"S_P_A_T_K_Pn_Š".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], LT [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, LT [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], LT [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, LT [val.]"},calendar:{sameDay:"[Šiandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Praėjusį] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prieš %s",s:n,m:i,mm:s,h:i,hh:s,d:i,dd:s,M:i,MM:s,y:i,yy:s},ordinalParse:/\d{1,2}-oji/,ordinal:function(e){return e+"-oji"},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("lt","lt",{closeText:"Uždaryti",prevText:"<Atgal",nextText:"Pirmyn>",currentText:"Šiandien",monthNames:["Sausis","Vasaris","Kovas","Balandis","Gegužė","Birželis","Liepa","Rugpjūtis","Rugsėjis","Spalis","Lapkritis","Gruodis"],monthNamesShort:["Sau","Vas","Kov","Bal","Geg","Bir","Lie","Rugp","Rugs","Spa","Lap","Gru"],dayNames:["sekmadienis","pirmadienis","antradienis","trečiadienis","ketvirtadienis","penktadienis","šeštadienis"],dayNamesShort:["sek","pir","ant","tre","ket","pen","šeš"],dayNamesMin:["Se","Pr","An","Tr","Ke","Pe","Še"],weekHeader:"SAV",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:""}),e.fullCalendar.lang("lt",{buttonText:{month:"Mėnuo",week:"Savaitė",day:"Diena",list:"Darbotvarkė"},allDayText:"Visą dieną",eventLimitText:"daugiau"})}); \ No newline at end of file diff --git a/assets/js/lang/lv.js b/assets/js/lang/lv.js new file mode 100644 index 00000000..f039dfa1 --- /dev/null +++ b/assets/js/lang/lv.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n){var i=e.split("_");return n?1===t%10&&11!==t?i[2]:i[3]:1===t%10&&11!==t?i[0]:i[1]}function i(e,t,i){return e+" "+n(r[i],e,t)}var r={mm:"minūti_minūtes_minūte_minūtes",hh:"stundu_stundas_stunda_stundas",dd:"dienu_dienas_diena_dienas",MM:"mēnesi_mēnešus_mēnesis_mēneši",yy:"gadu_gadus_gads_gadi"};(t.defineLocale||t.lang).call(t,"lv",{months:"janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris".split("_"),monthsShort:"jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec".split("_"),weekdays:"svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena".split("_"),weekdaysShort:"Sv_P_O_T_C_Pk_S".split("_"),weekdaysMin:"Sv_P_O_T_C_Pk_S".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, LT",LLLL:"YYYY. [gada] D. MMMM, dddd, LT"},calendar:{sameDay:"[Šodien pulksten] LT",nextDay:"[Rīt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT",lastWeek:"[Pagājušā] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"%s vēlāk",past:"%s agrāk",s:"dažas sekundes",m:"minūti",mm:i,h:"stundu",hh:i,d:"dienu",dd:i,M:"mēnesi",MM:i,y:"gadu",yy:i},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("lv","lv",{closeText:"Aizvērt",prevText:"Iepr.",nextText:"Nāk.",currentText:"Šodien",monthNames:["Janvāris","Februāris","Marts","Aprīlis","Maijs","Jūnijs","Jūlijs","Augusts","Septembris","Oktobris","Novembris","Decembris"],monthNamesShort:["Jan","Feb","Mar","Apr","Mai","Jūn","Jūl","Aug","Sep","Okt","Nov","Dec"],dayNames:["svētdiena","pirmdiena","otrdiena","trešdiena","ceturtdiena","piektdiena","sestdiena"],dayNamesShort:["svt","prm","otr","tre","ctr","pkt","sst"],dayNamesMin:["Sv","Pr","Ot","Tr","Ct","Pk","Ss"],weekHeader:"Ned.",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("lv",{buttonText:{month:"Mēnesis",week:"Nedēļa",day:"Diena",list:"Dienas kārtība"},allDayText:"Visu dienu",eventLimitText:function(e){return"+vēl "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/nb.js b/assets/js/lang/nb.js new file mode 100644 index 00000000..b2e7a396 --- /dev/null +++ b/assets/js/lang/nb.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"nb",{months:"januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember".split("_"),monthsShort:"jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des".split("_"),weekdays:"søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag".split("_"),weekdaysShort:"søn_man_tirs_ons_tors_fre_lør".split("_"),weekdaysMin:"sø_ma_ti_on_to_fr_lø".split("_"),longDateFormat:{LT:"H.mm",LTS:"LT.ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] LT",LLLL:"dddd D. MMMM YYYY [kl.] LT"},calendar:{sameDay:"[i dag kl.] LT",nextDay:"[i morgen kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[i går kl.] LT",lastWeek:"[forrige] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"for %s siden",s:"noen sekunder",m:"ett minutt",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dager",M:"en måned",MM:"%d måneder",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("nb","nb",{closeText:"Lukk",prevText:"«Forrige",nextText:"Neste»",currentText:"I dag",monthNames:["januar","februar","mars","april","mai","juni","juli","august","september","oktober","november","desember"],monthNamesShort:["jan","feb","mar","apr","mai","jun","jul","aug","sep","okt","nov","des"],dayNamesShort:["søn","man","tir","ons","tor","fre","lør"],dayNames:["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"],dayNamesMin:["sø","ma","ti","on","to","fr","lø"],weekHeader:"Uke",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("nb",{buttonText:{month:"Måned",week:"Uke",day:"Dag",list:"Agenda"},allDayText:"Hele dagen",eventLimitText:"til"})}); \ No newline at end of file diff --git a/assets/js/lang/nl.js b/assets/js/lang/nl.js new file mode 100644 index 00000000..56e8dbb0 --- /dev/null +++ b/assets/js/lang/nl.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n="jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.".split("_"),i="jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec".split("_");(t.defineLocale||t.lang).call(t,"nl",{months:"januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december".split("_"),monthsShort:function(e,t){return/-MMM-/.test(t)?i[e.month()]:n[e.month()]},weekdays:"zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag".split("_"),weekdaysShort:"zo._ma._di._wo._do._vr._za.".split("_"),weekdaysMin:"Zo_Ma_Di_Wo_Do_Vr_Za".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"één minuut",mm:"%d minuten",h:"één uur",hh:"%d uur",d:"één dag",dd:"%d dagen",M:"één maand",MM:"%d maanden",y:"één jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(e){return e+(1===e||8===e||e>=20?"ste":"de")},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("nl","nl",{closeText:"Sluiten",prevText:"←",nextText:"→",currentText:"Vandaag",monthNames:["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"],monthNamesShort:["jan","feb","mrt","apr","mei","jun","jul","aug","sep","okt","nov","dec"],dayNames:["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"],dayNamesShort:["zon","maa","din","woe","don","vri","zat"],dayNamesMin:["zo","ma","di","wo","do","vr","za"],weekHeader:"Wk",dateFormat:"dd-mm-yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("nl",{buttonText:{month:"Maand",week:"Week",day:"Dag",list:"Agenda"},allDayText:"Hele dag",eventLimitText:"extra"})}); \ No newline at end of file diff --git a/assets/js/lang/pl.js b/assets/js/lang/pl.js new file mode 100644 index 00000000..1ca6404f --- /dev/null +++ b/assets/js/lang/pl.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e){return 5>e%10&&e%10>1&&1!==~~(e/10)%10}function i(e,t,i){var r=e+" ";switch(i){case"m":return t?"minuta":"minutę";case"mm":return r+(n(e)?"minuty":"minut");case"h":return t?"godzina":"godzinę";case"hh":return r+(n(e)?"godziny":"godzin");case"MM":return r+(n(e)?"miesiące":"miesięcy");case"yy":return r+(n(e)?"lata":"lat")}}var r="styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień".split("_"),a="stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia".split("_");(t.defineLocale||t.lang).call(t,"pl",{months:function(e,t){return/D MMMM/.test(t)?a[e.month()]:r[e.month()]},monthsShort:"sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru".split("_"),weekdays:"niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota".split("_"),weekdaysShort:"nie_pon_wt_śr_czw_pt_sb".split("_"),weekdaysMin:"N_Pn_Wt_Śr_Cz_Pt_So".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Dziś o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zeszłą niedzielę o] LT";case 3:return"[W zeszłą środę o] LT";case 6:return"[W zeszłą sobotę o] LT";default:return"[W zeszły] dddd [o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:i,mm:i,h:i,hh:i,d:"1 dzień",dd:"%d dni",M:"miesiąc",MM:i,y:"rok",yy:i},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("pl","pl",{closeText:"Zamknij",prevText:"<Poprzedni",nextText:"Następny>",currentText:"Dziś",monthNames:["Styczeń","Luty","Marzec","Kwiecień","Maj","Czerwiec","Lipiec","Sierpień","Wrzesień","Październik","Listopad","Grudzień"],monthNamesShort:["Sty","Lu","Mar","Kw","Maj","Cze","Lip","Sie","Wrz","Pa","Lis","Gru"],dayNames:["Niedziela","Poniedziałek","Wtorek","Środa","Czwartek","Piątek","Sobota"],dayNamesShort:["Nie","Pn","Wt","Śr","Czw","Pt","So"],dayNamesMin:["N","Pn","Wt","Śr","Cz","Pt","So"],weekHeader:"Tydz",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("pl",{buttonText:{month:"Miesiąc",week:"Tydzień",day:"Dzień",list:"Plan dnia"},allDayText:"Cały dzień",eventLimitText:"więcej"})}); \ No newline at end of file diff --git a/assets/js/lang/pt-br.js b/assets/js/lang/pt-br.js new file mode 100644 index 00000000..30633f3a --- /dev/null +++ b/assets/js/lang/pt-br.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"pt-br",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"dom_2ª_3ª_4ª_5ª_6ª_sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [às] LT",LLLL:"dddd, D [de] MMMM [de] YYYY [às] LT"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atrás",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº"}),e.fullCalendar.datepickerLang("pt-br","pt-BR",{closeText:"Fechar",prevText:"<Anterior",nextText:"Próximo>",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sm",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("pt-br",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Compromissos"},allDayText:"dia inteiro",eventLimitText:function(e){return"mais +"+e}})}); \ No newline at end of file diff --git a/assets/js/lang/pt.js b/assets/js/lang/pt.js new file mode 100644 index 00000000..fe981cb9 --- /dev/null +++ b/assets/js/lang/pt.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"pt",{months:"janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"),monthsShort:"jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"),weekdays:"domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"),weekdaysShort:"dom_seg_ter_qua_qui_sex_sáb".split("_"),weekdaysMin:"dom_2ª_3ª_4ª_5ª_6ª_sáb".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY LT",LLLL:"dddd, D [de] MMMM [de] YYYY LT"},calendar:{sameDay:"[Hoje às] LT",nextDay:"[Amanhã às] LT",nextWeek:"dddd [às] LT",lastDay:"[Ontem às] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[Último] dddd [às] LT":"[Última] dddd [às] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"há %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um mês",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}º/,ordinal:"%dº",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("pt","pt",{closeText:"Fechar",prevText:"Anterior",nextText:"Seguinte",currentText:"Hoje",monthNames:["Janeiro","Fevereiro","Março","Abril","Maio","Junho","Julho","Agosto","Setembro","Outubro","Novembro","Dezembro"],monthNamesShort:["Jan","Fev","Mar","Abr","Mai","Jun","Jul","Ago","Set","Out","Nov","Dez"],dayNames:["Domingo","Segunda-feira","Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira","Sábado"],dayNamesShort:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],dayNamesMin:["Dom","Seg","Ter","Qua","Qui","Sex","Sáb"],weekHeader:"Sem",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("pt",{buttonText:{month:"Mês",week:"Semana",day:"Dia",list:"Agenda"},allDayText:"Todo o dia",eventLimitText:"mais"})}); \ No newline at end of file diff --git a/assets/js/lang/ro.js b/assets/js/lang/ro.js new file mode 100644 index 00000000..6816dc9c --- /dev/null +++ b/assets/js/lang/ro.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n){var i={mm:"minute",hh:"ore",dd:"zile",MM:"luni",yy:"ani"},r=" ";return(e%100>=20||e>=100&&0===e%100)&&(r=" de "),e+r+i[n]}(t.defineLocale||t.lang).call(t,"ro",{months:"ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie".split("_"),monthsShort:"ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.".split("_"),weekdays:"duminică_luni_marți_miercuri_joi_vineri_sâmbătă".split("_"),weekdaysShort:"Dum_Lun_Mar_Mie_Joi_Vin_Sâm".split("_"),weekdaysMin:"Du_Lu_Ma_Mi_Jo_Vi_Sâ".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[mâine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s în urmă",s:"câteva secunde",m:"un minut",mm:n,h:"o oră",hh:n,d:"o zi",dd:n,M:"o lună",MM:n,y:"un an",yy:n},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("ro","ro",{closeText:"Închide",prevText:"« Luna precedentă",nextText:"Luna următoare »",currentText:"Azi",monthNames:["Ianuarie","Februarie","Martie","Aprilie","Mai","Iunie","Iulie","August","Septembrie","Octombrie","Noiembrie","Decembrie"],monthNamesShort:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Duminică","Luni","Marţi","Miercuri","Joi","Vineri","Sâmbătă"],dayNamesShort:["Dum","Lun","Mar","Mie","Joi","Vin","Sâm"],dayNamesMin:["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],weekHeader:"Săpt",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ro",{buttonText:{prev:"precedentă",next:"următoare",month:"Lună",week:"Săptămână",day:"Zi",list:"Agendă"},allDayText:"Toată ziua",eventLimitText:function(e){return"+alte "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/ru.js b/assets/js/lang/ru.js new file mode 100644 index 00000000..3baed383 --- /dev/null +++ b/assets/js/lang/ru.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t){var n=e.split("_");return 1===t%10&&11!==t%100?n[0]:t%10>=2&&4>=t%10&&(10>t%100||t%100>=20)?n[1]:n[2]}function i(e,t,i){var r={mm:t?"минута_минуты_минут":"минуту_минуты_минут",hh:"час_часа_часов",dd:"день_дня_дней",MM:"месяц_месяца_месяцев",yy:"год_года_лет"};return"m"===i?t?"минута":"минуту":e+" "+n(r[i],+e)}function r(e,t){var n={nominative:"январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь".split("_"),accusative:"января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря".split("_")},i=/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(t)?"accusative":"nominative";return n[i][e.month()]}function a(e,t){var n={nominative:"янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек".split("_"),accusative:"янв_фев_мар_апр_мая_июня_июля_авг_сен_окт_ноя_дек".split("_")},i=/D[oD]?(\[[^\[\]]*\]|\s+)+MMMM?/.test(t)?"accusative":"nominative";return n[i][e.month()]}function s(e,t){var n={nominative:"воскресенье_понедельник_вторник_среда_четверг_пятница_суббота".split("_"),accusative:"воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу".split("_")},i=/\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/.test(t)?"accusative":"nominative";return n[i][e.day()]}(t.defineLocale||t.lang).call(t,"ru",{months:r,monthsShort:a,weekdays:s,weekdaysShort:"вс_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"вс_пн_вт_ср_чт_пт_сб".split("_"),monthsParse:[/^янв/i,/^фев/i,/^мар/i,/^апр/i,/^ма[й|я]/i,/^июн/i,/^июл/i,/^авг/i,/^сен/i,/^окт/i,/^ноя/i,/^дек/i],longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY г.",LLL:"D MMMM YYYY г., LT",LLLL:"dddd, D MMMM YYYY г., LT"},calendar:{sameDay:"[Сегодня в] LT",nextDay:"[Завтра в] LT",lastDay:"[Вчера в] LT",nextWeek:function(){return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT"},lastWeek:function(e){if(e.week()===this.week())return 2===this.day()?"[Во] dddd [в] LT":"[В] dddd [в] LT";switch(this.day()){case 0:return"[В прошлое] dddd [в] LT";case 1:case 2:case 4:return"[В прошлый] dddd [в] LT";case 3:case 5:case 6:return"[В прошлую] dddd [в] LT"}},sameElse:"L"},relativeTime:{future:"через %s",past:"%s назад",s:"несколько секунд",m:i,mm:i,h:"час",hh:i,d:"день",dd:i,M:"месяц",MM:i,y:"год",yy:i},meridiemParse:/ночи|утра|дня|вечера/i,isPM:function(e){return/^(дня|вечера)$/.test(e)},meridiem:function(e){return 4>e?"ночи":12>e?"утра":17>e?"дня":"вечера"},ordinalParse:/\d{1,2}-(й|го|я)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":return e+"-й";case"D":return e+"-го";case"w":case"W":return e+"-я";default:return e}},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("ru","ru",{closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("ru",{buttonText:{month:"Месяц",week:"Неделя",day:"День",list:"Повестка дня"},allDayText:"Весь день",eventLimitText:function(e){return"+ ещё "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/sk.js b/assets/js/lang/sk.js new file mode 100644 index 00000000..a844dde7 --- /dev/null +++ b/assets/js/lang/sk.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e){return e>1&&5>e}function i(e,t,i,r){var a=e+" ";switch(i){case"s":return t||r?"pár sekúnd":"pár sekundami";case"m":return t?"minúta":r?"minútu":"minútou";case"mm":return t||r?a+(n(e)?"minúty":"minút"):a+"minútami";case"h":return t?"hodina":r?"hodinu":"hodinou";case"hh":return t||r?a+(n(e)?"hodiny":"hodín"):a+"hodinami";case"d":return t||r?"deň":"dňom";case"dd":return t||r?a+(n(e)?"dni":"dní"):a+"dňami";case"M":return t||r?"mesiac":"mesiacom";case"MM":return t||r?a+(n(e)?"mesiace":"mesiacov"):a+"mesiacmi";case"y":return t||r?"rok":"rokom";case"yy":return t||r?a+(n(e)?"roky":"rokov"):a+"rokmi"}}var r="január_február_marec_apríl_máj_jún_júl_august_september_október_november_december".split("_"),a="jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec".split("_");(t.defineLocale||t.lang).call(t,"sk",{months:r,monthsShort:a,monthsParse:function(e,t){var n,i=[];for(n=0;12>n;n++)i[n]=RegExp("^"+e[n]+"$|^"+t[n]+"$","i");return i}(r,a),weekdays:"nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota".split("_"),weekdaysShort:"ne_po_ut_st_št_pi_so".split("_"),weekdaysMin:"ne_po_ut_st_št_pi_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd D. MMMM YYYY LT"},calendar:{sameDay:"[dnes o] LT",nextDay:"[zajtra o] LT",nextWeek:function(){switch(this.day()){case 0:return"[v nedeľu o] LT";case 1:case 2:return"[v] dddd [o] LT";case 3:return"[v stredu o] LT";case 4:return"[vo štvrtok o] LT";case 5:return"[v piatok o] LT";case 6:return"[v sobotu o] LT"}},lastDay:"[včera o] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulú nedeľu o] LT";case 1:case 2:return"[minulý] dddd [o] LT";case 3:return"[minulú stredu o] LT";case 4:case 5:return"[minulý] dddd [o] LT";case 6:return"[minulú sobotu o] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"pred %s",s:i,m:i,mm:i,h:i,hh:i,d:i,dd:i,M:i,MM:i,y:i,yy:i},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("sk","sk",{closeText:"Zavrieť",prevText:"<Predchádzajúci",nextText:"Nasledujúci>",currentText:"Dnes",monthNames:["január","február","marec","apríl","máj","jún","júl","august","september","október","november","december"],monthNamesShort:["Jan","Feb","Mar","Apr","Máj","Jún","Júl","Aug","Sep","Okt","Nov","Dec"],dayNames:["nedeľa","pondelok","utorok","streda","štvrtok","piatok","sobota"],dayNamesShort:["Ned","Pon","Uto","Str","Štv","Pia","Sob"],dayNamesMin:["Ne","Po","Ut","St","Št","Pia","So"],weekHeader:"Ty",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sk",{buttonText:{month:"Mesiac",week:"Týždeň",day:"Deň",list:"Rozvrh"},allDayText:"Celý deň",eventLimitText:function(e){return"+ďalšie: "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/sl.js b/assets/js/lang/sl.js new file mode 100644 index 00000000..6e127b45 --- /dev/null +++ b/assets/js/lang/sl.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t,n){var r=e+" ";switch(n){case"m":return t?"ena minuta":"eno minuto";case"mm":return r+=1===e?"minuta":2===e?"minuti":3===e||4===e?"minute":"minut";case"h":return t?"ena ura":"eno uro";case"hh":return r+=1===e?"ura":2===e?"uri":3===e||4===e?"ure":"ur";case"dd":return r+=1===e?"dan":"dni";case"MM":return r+=1===e?"mesec":2===e?"meseca":3===e||4===e?"mesece":"mesecev";case"yy":return r+=1===e?"leto":2===e?"leti":3===e||4===e?"leta":"let"}}(t.defineLocale||t.lang).call(t,"sl",{months:"januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december".split("_"),monthsShort:"jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.".split("_"),weekdays:"nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota".split("_"),weekdaysShort:"ned._pon._tor._sre._čet._pet._sob.".split("_"),weekdaysMin:"ne_po_to_sr_če_pe_so".split("_"),longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[danes ob] LT",nextDay:"[jutri ob] LT",nextWeek:function(){switch(this.day()){case 0:return"[v] [nedeljo] [ob] LT";case 3:return"[v] [sredo] [ob] LT";case 6:return"[v] [soboto] [ob] LT";case 1:case 2:case 4:case 5:return"[v] dddd [ob] LT"}},lastDay:"[včeraj ob] LT",lastWeek:function(){switch(this.day()){case 0:case 3:case 6:return"[prejšnja] dddd [ob] LT";case 1:case 2:case 4:case 5:return"[prejšnji] dddd [ob] LT"}},sameElse:"L"},relativeTime:{future:"čez %s",past:"%s nazaj",s:"nekaj sekund",m:n,mm:n,h:n,hh:n,d:"en dan",dd:n,M:"en mesec",MM:n,y:"eno leto",yy:n},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("sl","sl",{closeText:"Zapri",prevText:"<Prejšnji",nextText:"Naslednji>",currentText:"Trenutni",monthNames:["Januar","Februar","Marec","April","Maj","Junij","Julij","Avgust","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],dayNames:["Nedelja","Ponedeljek","Torek","Sreda","Četrtek","Petek","Sobota"],dayNamesShort:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],dayNamesMin:["Ne","Po","To","Sr","Če","Pe","So"],weekHeader:"Teden",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sl",{buttonText:{month:"Mesec",week:"Teden",day:"Dan",list:"Dnevni red"},allDayText:"Ves dan",eventLimitText:"več"})}); \ No newline at end of file diff --git a/assets/js/lang/sr-cyrl.js b/assets/js/lang/sr-cyrl.js new file mode 100644 index 00000000..a8b60523 --- /dev/null +++ b/assets/js/lang/sr-cyrl.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n={words:{m:["један минут","једне минуте"],mm:["минут","минуте","минута"],h:["један сат","једног сата"],hh:["сат","сата","сати"],dd:["дан","дана","дана"],MM:["месец","месеца","месеци"],yy:["година","године","година"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&4>=e?t[1]:t[2]},translate:function(e,t,r){var i=n.words[r];return 1===r.length?t?i[0]:i[1]:e+" "+n.correctGrammaticalCase(e,i)}};(t.defineLocale||t.lang).call(t,"sr-cyrl",{months:["јануар","фебруар","март","април","мај","јун","јул","август","септембар","октобар","новембар","децембар"],monthsShort:["јан.","феб.","мар.","апр.","мај","јун","јул","авг.","сеп.","окт.","нов.","дец."],weekdays:["недеља","понедељак","уторак","среда","четвртак","петак","субота"],weekdaysShort:["нед.","пон.","уто.","сре.","чет.","пет.","суб."],weekdaysMin:["не","по","ут","ср","че","пе","су"],longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[данас у] LT",nextDay:"[сутра у] LT",nextWeek:function(){switch(this.day()){case 0:return"[у] [недељу] [у] LT";case 3:return"[у] [среду] [у] LT";case 6:return"[у] [суботу] [у] LT";case 1:case 2:case 4:case 5:return"[у] dddd [у] LT"}},lastDay:"[јуче у] LT",lastWeek:function(){var e=["[прошле] [недеље] [у] LT","[прошлог] [понедељка] [у] LT","[прошлог] [уторка] [у] LT","[прошле] [среде] [у] LT","[прошлог] [четвртка] [у] LT","[прошлог] [петка] [у] LT","[прошле] [суботе] [у] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"за %s",past:"пре %s",s:"неколико секунди",m:n.translate,mm:n.translate,h:n.translate,hh:n.translate,d:"дан",dd:n.translate,M:"месец",MM:n.translate,y:"годину",yy:n.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("sr-cyrl","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sr-cyrl",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/sr.js b/assets/js/lang/sr.js new file mode 100644 index 00000000..caee8691 --- /dev/null +++ b/assets/js/lang/sr.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n={words:{m:["jedan minut","jedne minute"],mm:["minut","minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(e,t){return 1===e?t[0]:e>=2&&4>=e?t[1]:t[2]},translate:function(e,t,r){var a=n.words[r];return 1===r.length?t?a[0]:a[1]:e+" "+n.correctGrammaticalCase(e,a)}};(t.defineLocale||t.lang).call(t,"sr",{months:["januar","februar","mart","april","maj","jun","jul","avgust","septembar","oktobar","novembar","decembar"],monthsShort:["jan.","feb.","mar.","apr.","maj","jun","jul","avg.","sep.","okt.","nov.","dec."],weekdays:["nedelja","ponedeljak","utorak","sreda","četvrtak","petak","subota"],weekdaysShort:["ned.","pon.","uto.","sre.","čet.","pet.","sub."],weekdaysMin:["ne","po","ut","sr","če","pe","su"],longDateFormat:{LT:"H:mm",LTS:"LT:ss",L:"DD. MM. YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY LT",LLLL:"dddd, D. MMMM YYYY LT"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT";case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[juče u] LT",lastWeek:function(){var e=["[prošle] [nedelje] [u] LT","[prošlog] [ponedeljka] [u] LT","[prošlog] [utorka] [u] LT","[prošle] [srede] [u] LT","[prošlog] [četvrtka] [u] LT","[prošlog] [petka] [u] LT","[prošle] [subote] [u] LT"];return e[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi",m:n.translate,mm:n.translate,h:n.translate,hh:n.translate,d:"dan",dd:n.translate,M:"mesec",MM:n.translate,y:"godinu",yy:n.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("sr","sr",{closeText:"Затвори",prevText:"<",nextText:">",currentText:"Данас",monthNames:["Јануар","Фебруар","Март","Април","Мај","Јун","Јул","Август","Септембар","Октобар","Новембар","Децембар"],monthNamesShort:["Јан","Феб","Мар","Апр","Мај","Јун","Јул","Авг","Сеп","Окт","Нов","Дец"],dayNames:["Недеља","Понедељак","Уторак","Среда","Четвртак","Петак","Субота"],dayNamesShort:["Нед","Пон","Уто","Сре","Чет","Пет","Суб"],dayNamesMin:["Не","По","Ут","Ср","Че","Пе","Су"],weekHeader:"Сед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sr",{buttonText:{month:"Месец",week:"Недеља",day:"Дан",list:"Планер"},allDayText:"Цео дан",eventLimitText:function(e){return"+ још "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/sv.js b/assets/js/lang/sv.js new file mode 100644 index 00000000..59744ab3 --- /dev/null +++ b/assets/js/lang/sv.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"sv",{months:"januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december".split("_"),monthsShort:"jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec".split("_"),weekdays:"söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag".split("_"),weekdaysShort:"sön_mån_tis_ons_tor_fre_lör".split("_"),weekdaysMin:"sö_må_ti_on_to_fr_lö".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd D MMMM YYYY LT"},calendar:{sameDay:"[Idag] LT",nextDay:"[Imorgon] LT",lastDay:"[Igår] LT",nextWeek:"dddd LT",lastWeek:"[Förra] dddd[en] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"för %s sedan",s:"några sekunder",m:"en minut",mm:"%d minuter",h:"en timme",hh:"%d timmar",d:"en dag",dd:"%d dagar",M:"en månad",MM:"%d månader",y:"ett år",yy:"%d år"},ordinalParse:/\d{1,2}(e|a)/,ordinal:function(e){var t=e%10,n=1===~~(e%100/10)?"e":1===t?"a":2===t?"a":3===t?"e":"e";return e+n},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("sv","sv",{closeText:"Stäng",prevText:"«Förra",nextText:"Nästa»",currentText:"Idag",monthNames:["Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Aug","Sep","Okt","Nov","Dec"],dayNamesShort:["Sön","Mån","Tis","Ons","Tor","Fre","Lör"],dayNames:["Söndag","Måndag","Tisdag","Onsdag","Torsdag","Fredag","Lördag"],dayNamesMin:["Sö","Må","Ti","On","To","Fr","Lö"],weekHeader:"Ve",dateFormat:"yy-mm-dd",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("sv",{buttonText:{month:"Månad",week:"Vecka",day:"Dag",list:"Program"},allDayText:"Heldag",eventLimitText:"till"})}); \ No newline at end of file diff --git a/assets/js/lang/th.js b/assets/js/lang/th.js new file mode 100644 index 00000000..7b302fee --- /dev/null +++ b/assets/js/lang/th.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"th",{months:"มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม".split("_"),monthsShort:"มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา".split("_"),weekdays:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์".split("_"),weekdaysShort:"อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์".split("_"),weekdaysMin:"อา._จ._อ._พ._พฤ._ศ._ส.".split("_"),longDateFormat:{LT:"H นาฬิกา m นาที",LTS:"LT s วินาที",L:"YYYY/MM/DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY เวลา LT",LLLL:"วันddddที่ D MMMM YYYY เวลา LT"},meridiemParse:/ก่อนเที่ยง|หลังเที่ยง/,isPM:function(e){return"หลังเที่ยง"===e},meridiem:function(e){return 12>e?"ก่อนเที่ยง":"หลังเที่ยง"},calendar:{sameDay:"[วันนี้ เวลา] LT",nextDay:"[พรุ่งนี้ เวลา] LT",nextWeek:"dddd[หน้า เวลา] LT",lastDay:"[เมื่อวานนี้ เวลา] LT",lastWeek:"[วัน]dddd[ที่แล้ว เวลา] LT",sameElse:"L"},relativeTime:{future:"อีก %s",past:"%sที่แล้ว",s:"ไม่กี่วินาที",m:"1 นาที",mm:"%d นาที",h:"1 ชั่วโมง",hh:"%d ชั่วโมง",d:"1 วัน",dd:"%d วัน",M:"1 เดือน",MM:"%d เดือน",y:"1 ปี",yy:"%d ปี"}}),e.fullCalendar.datepickerLang("th","th",{closeText:"ปิด",prevText:"« ย้อน",nextText:"ถัดไป »",currentText:"วันนี้",monthNames:["มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน","กรกฎาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"],monthNamesShort:["ม.ค.","ก.พ.","มี.ค.","เม.ย.","พ.ค.","มิ.ย.","ก.ค.","ส.ค.","ก.ย.","ต.ค.","พ.ย.","ธ.ค."],dayNames:["อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"],dayNamesShort:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],dayNamesMin:["อา.","จ.","อ.","พ.","พฤ.","ศ.","ส."],weekHeader:"Wk",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("th",{buttonText:{month:"เดือน",week:"สัปดาห์",day:"วัน",list:"แผนงาน"},allDayText:"ตลอดวัน",eventLimitText:"เพิ่มเติม"})}); \ No newline at end of file diff --git a/assets/js/lang/tr.js b/assets/js/lang/tr.js new file mode 100644 index 00000000..504f6c55 --- /dev/null +++ b/assets/js/lang/tr.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){var n={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'üncü",4:"'üncü",100:"'üncü",6:"'ncı",9:"'uncu",10:"'uncu",30:"'uncu",60:"'ıncı",90:"'ıncı"};(t.defineLocale||t.lang).call(t,"tr",{months:"Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık".split("_"),monthsShort:"Oca_Şub_Mar_Nis_May_Haz_Tem_Ağu_Eyl_Eki_Kas_Ara".split("_"),weekdays:"Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi".split("_"),weekdaysShort:"Paz_Pts_Sal_Çar_Per_Cum_Cts".split("_"),weekdaysMin:"Pz_Pt_Sa_Ça_Pe_Cu_Ct".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[bugün saat] LT",nextDay:"[yarın saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[dün] LT",lastWeek:"[geçen hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s önce",s:"birkaç saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir gün",dd:"%d gün",M:"bir ay",MM:"%d ay",y:"bir yıl",yy:"%d yıl"},ordinalParse:/\d{1,2}'(inci|nci|üncü|ncı|uncu|ıncı)/,ordinal:function(e){if(0===e)return e+"'ıncı";var t=e%10,a=e%100-t,r=e>=100?100:null;return e+(n[t]||n[a]||n[r])},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("tr","tr",{closeText:"kapat",prevText:"<geri",nextText:"ileri>",currentText:"bugün",monthNames:["Ocak","Şubat","Mart","Nisan","Mayıs","Haziran","Temmuz","Ağustos","Eylül","Ekim","Kasım","Aralık"],monthNamesShort:["Oca","Şub","Mar","Nis","May","Haz","Tem","Ağu","Eyl","Eki","Kas","Ara"],dayNames:["Pazar","Pazartesi","Salı","Çarşamba","Perşembe","Cuma","Cumartesi"],dayNamesShort:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],dayNamesMin:["Pz","Pt","Sa","Ça","Pe","Cu","Ct"],weekHeader:"Hf",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("tr",{buttonText:{next:"ileri",month:"Ay",week:"Hafta",day:"Gün",list:"Ajanda"},allDayText:"Tüm gün",eventLimitText:"daha fazla"})}); \ No newline at end of file diff --git a/assets/js/lang/uk.js b/assets/js/lang/uk.js new file mode 100644 index 00000000..4b1a252a --- /dev/null +++ b/assets/js/lang/uk.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){function n(e,t){var n=e.split("_");return 1===t%10&&11!==t%100?n[0]:t%10>=2&&4>=t%10&&(10>t%100||t%100>=20)?n[1]:n[2]}function a(e,t,a){var r={mm:"хвилина_хвилини_хвилин",hh:"година_години_годин",dd:"день_дні_днів",MM:"місяць_місяці_місяців",yy:"рік_роки_років"};return"m"===a?t?"хвилина":"хвилину":"h"===a?t?"година":"годину":e+" "+n(r[a],+e)}function r(e,t){var n={nominative:"січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень".split("_"),accusative:"січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня".split("_")},a=/D[oD]? *MMMM?/.test(t)?"accusative":"nominative";return n[a][e.month()]}function i(e,t){var n={nominative:"неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота".split("_"),accusative:"неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу".split("_"),genitive:"неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи".split("_")},a=/(\[[ВвУу]\]) ?dddd/.test(t)?"accusative":/\[?(?:минулої|наступної)? ?\] ?dddd/.test(t)?"genitive":"nominative";return n[a][e.day()]}function s(e){return function(){return e+"о"+(11===this.hours()?"б":"")+"] LT"}}(t.defineLocale||t.lang).call(t,"uk",{months:r,monthsShort:"січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд".split("_"),weekdays:i,weekdaysShort:"нд_пн_вт_ср_чт_пт_сб".split("_"),weekdaysMin:"нд_пн_вт_ср_чт_пт_сб".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY р.",LLL:"D MMMM YYYY р., LT",LLLL:"dddd, D MMMM YYYY р., LT"},calendar:{sameDay:s("[Сьогодні "),nextDay:s("[Завтра "),lastDay:s("[Вчора "),nextWeek:s("[У] dddd ["),lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return s("[Минулої] dddd [").call(this);case 1:case 2:case 4:return s("[Минулого] dddd [").call(this)}},sameElse:"L"},relativeTime:{future:"за %s",past:"%s тому",s:"декілька секунд",m:a,mm:a,h:"годину",hh:a,d:"день",dd:a,M:"місяць",MM:a,y:"рік",yy:a},meridiemParse:/ночі|ранку|дня|вечора/,isPM:function(e){return/^(дня|вечора)$/.test(e)},meridiem:function(e){return 4>e?"ночі":12>e?"ранку":17>e?"дня":"вечора"},ordinalParse:/\d{1,2}-(й|го)/,ordinal:function(e,t){switch(t){case"M":case"d":case"DDD":case"w":case"W":return e+"-й";case"D":return e+"-го";default:return e}},week:{dow:1,doy:7}}),e.fullCalendar.datepickerLang("uk","uk",{closeText:"Закрити",prevText:"<",nextText:">",currentText:"Сьогодні",monthNames:["Січень","Лютий","Березень","Квітень","Травень","Червень","Липень","Серпень","Вересень","Жовтень","Листопад","Грудень"],monthNamesShort:["Січ","Лют","Бер","Кві","Тра","Чер","Лип","Сер","Вер","Жов","Лис","Гру"],dayNames:["неділя","понеділок","вівторок","середа","четвер","п’ятниця","субота"],dayNamesShort:["нед","пнд","вів","срд","чтв","птн","сбт"],dayNamesMin:["Нд","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Тиж",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("uk",{buttonText:{month:"Місяць",week:"Тиждень",day:"День",list:"Порядок денний"},allDayText:"Увесь день",eventLimitText:function(e){return"+ще "+e+"..."}})}); \ No newline at end of file diff --git a/assets/js/lang/vi.js b/assets/js/lang/vi.js new file mode 100644 index 00000000..aa700976 --- /dev/null +++ b/assets/js/lang/vi.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"vi",{months:"tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12".split("_"),monthsShort:"Th01_Th02_Th03_Th04_Th05_Th06_Th07_Th08_Th09_Th10_Th11_Th12".split("_"),weekdays:"chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy".split("_"),weekdaysShort:"CN_T2_T3_T4_T5_T6_T7".split("_"),weekdaysMin:"CN_T2_T3_T4_T5_T6_T7".split("_"),longDateFormat:{LT:"HH:mm",LTS:"LT:ss",L:"DD/MM/YYYY",LL:"D MMMM [năm] YYYY",LLL:"D MMMM [năm] YYYY LT",LLLL:"dddd, D MMMM [năm] YYYY LT",l:"DD/M/YYYY",ll:"D MMM YYYY",lll:"D MMM YYYY LT",llll:"ddd, D MMM YYYY LT"},calendar:{sameDay:"[Hôm nay lúc] LT",nextDay:"[Ngày mai lúc] LT",nextWeek:"dddd [tuần tới lúc] LT",lastDay:"[Hôm qua lúc] LT",lastWeek:"dddd [tuần rồi lúc] LT",sameElse:"L"},relativeTime:{future:"%s tới",past:"%s trước",s:"vài giây",m:"một phút",mm:"%d phút",h:"một giờ",hh:"%d giờ",d:"một ngày",dd:"%d ngày",M:"một tháng",MM:"%d tháng",y:"một năm",yy:"%d năm"},ordinalParse:/\d{1,2}/,ordinal:function(e){return e},week:{dow:1,doy:4}}),e.fullCalendar.datepickerLang("vi","vi",{closeText:"Đóng",prevText:"<Trước",nextText:"Tiếp>",currentText:"Hôm nay",monthNames:["Tháng Một","Tháng Hai","Tháng Ba","Tháng Tư","Tháng Năm","Tháng Sáu","Tháng Bảy","Tháng Tám","Tháng Chín","Tháng Mười","Tháng Mười Một","Tháng Mười Hai"],monthNamesShort:["Tháng 1","Tháng 2","Tháng 3","Tháng 4","Tháng 5","Tháng 6","Tháng 7","Tháng 8","Tháng 9","Tháng 10","Tháng 11","Tháng 12"],dayNames:["Chủ Nhật","Thứ Hai","Thứ Ba","Thứ Tư","Thứ Năm","Thứ Sáu","Thứ Bảy"],dayNamesShort:["CN","T2","T3","T4","T5","T6","T7"],dayNamesMin:["CN","T2","T3","T4","T5","T6","T7"],weekHeader:"Tu",dateFormat:"dd/mm/yy",firstDay:0,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""}),e.fullCalendar.lang("vi",{buttonText:{month:"Tháng",week:"Tuần",day:"Ngày",list:"Lịch biểu"},allDayText:"Cả ngày",eventLimitText:function(e){return"+ thêm "+e}})}); \ No newline at end of file diff --git a/assets/js/lang/zh-cn.js b/assets/js/lang/zh-cn.js new file mode 100644 index 00000000..23109fc0 --- /dev/null +++ b/assets/js/lang/zh-cn.js @@ -0,0 +1 @@ +(function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"zh-cn",{months:"一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月".split("_"),monthsShort:"1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月".split("_"),weekdays:"星期日_星期一_星期二_星期三_星期四_星期五_星期六".split("_"),weekdaysShort:"周日_周一_周二_周三_周四_周五_周六".split("_"),weekdaysMin:"日_一_二_三_四_五_六".split("_"),longDateFormat:{LT:"Ah点mm",LTS:"Ah点m分s秒",L:"YYYY-MM-DD",LL:"YYYY年MMMD日",LLL:"YYYY年MMMD日LT",LLLL:"YYYY年MMMD日ddddLT",l:"YYYY-MM-DD",ll:"YYYY年MMMD日",lll:"YYYY年MMMD日LT",llll:"YYYY年MMMD日ddddLT"},meridiemParse:/凌晨|早上|上午|中午|下午|晚上/,meridiemHour:function(e,t){return 12===e&&(e=0),"凌晨"===t||"早上"===t||"上午"===t?e:"下午"===t||"晚上"===t?e+12:e>=11?e:e+12},meridiem:function(e,t){var n=100*e+t;return 600>n?"凌晨":900>n?"早上":1130>n?"上午":1230>n?"中午":1800>n?"下午":"晚上"},calendar:{sameDay:function(){return 0===this.minutes()?"[今天]Ah[点整]":"[今天]LT"},nextDay:function(){return 0===this.minutes()?"[明天]Ah[点整]":"[明天]LT"},lastDay:function(){return 0===this.minutes()?"[昨天]Ah[点整]":"[昨天]LT"},nextWeek:function(){var e,n;return e=t().startOf("week"),n=this.unix()-e.unix()>=604800?"[下]":"[本]",0===this.minutes()?n+"dddAh点整":n+"dddAh点mm"},lastWeek:function(){var e,n;return e=t().startOf("week"),n=this.unix()=11?e:e+12:"下午"===t||"晚上"===t?e+12:void 0},meridiem:function(e,t){var n=100*e+t;return 900>n?"早上":1130>n?"上午":1230>n?"中午":1800>n?"下午":"晚上"},calendar:{sameDay:"[今天]LT",nextDay:"[明天]LT",nextWeek:"[下]ddddLT",lastDay:"[昨天]LT",lastWeek:"[上]ddddLT",sameElse:"L"},ordinalParse:/\d{1,2}(日|月|週)/,ordinal:function(e,t){switch(t){case"d":case"D":case"DDD":return e+"日";case"M":return e+"月";case"w":case"W":return e+"週";default:return e}},relativeTime:{future:"%s內",past:"%s前",s:"幾秒",m:"一分鐘",mm:"%d分鐘",h:"一小時",hh:"%d小時",d:"一天",dd:"%d天",M:"一個月",MM:"%d個月",y:"一年",yy:"%d年"}}),e.fullCalendar.datepickerLang("zh-tw","zh-TW",{closeText:"關閉",prevText:"<上月",nextText:"下月>",currentText:"今天",monthNames:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthNamesShort:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],dayNames:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayNamesShort:["周日","周一","周二","周三","周四","周五","周六"],dayNamesMin:["日","一","二","三","四","五","六"],weekHeader:"周",dateFormat:"yy/mm/dd",firstDay:1,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.lang("zh-tw",{buttonText:{month:"月",week:"週",day:"天",list:"待辦事項"},allDayText:"全天",eventLimitText:"更多"})}); \ No newline at end of file diff --git a/assets/js/libs/moment.min.js b/assets/js/libs/moment.min.js new file mode 100644 index 00000000..024d488f --- /dev/null +++ b/assets/js/libs/moment.min.js @@ -0,0 +1,7 @@ +//! moment.js +//! version : 2.9.0 +//! authors : Tim Wood, Iskren Chernev, Moment.js contributors +//! license : MIT +//! momentjs.com +(function(a){function b(a,b,c){switch(arguments.length){case 2:return null!=a?a:b;case 3:return null!=a?a:null!=b?b:c;default:throw new Error("Implement me")}}function c(a,b){return Bb.call(a,b)}function d(){return{empty:!1,unusedTokens:[],unusedInput:[],overflow:-2,charsLeftOver:0,nullInput:!1,invalidMonth:null,invalidFormat:!1,userInvalidated:!1,iso:!1}}function e(a){vb.suppressDeprecationWarnings===!1&&"undefined"!=typeof console&&console.warn&&console.warn("Deprecation warning: "+a)}function f(a,b){var c=!0;return o(function(){return c&&(e(a),c=!1),b.apply(this,arguments)},b)}function g(a,b){sc[a]||(e(b),sc[a]=!0)}function h(a,b){return function(c){return r(a.call(this,c),b)}}function i(a,b){return function(c){return this.localeData().ordinal(a.call(this,c),b)}}function j(a,b){var c,d,e=12*(b.year()-a.year())+(b.month()-a.month()),f=a.clone().add(e,"months");return 0>b-f?(c=a.clone().add(e-1,"months"),d=(b-f)/(f-c)):(c=a.clone().add(e+1,"months"),d=(b-f)/(c-f)),-(e+d)}function k(a,b,c){var d;return null==c?b:null!=a.meridiemHour?a.meridiemHour(b,c):null!=a.isPM?(d=a.isPM(c),d&&12>b&&(b+=12),d||12!==b||(b=0),b):b}function l(){}function m(a,b){b!==!1&&H(a),p(this,a),this._d=new Date(+a._d),uc===!1&&(uc=!0,vb.updateOffset(this),uc=!1)}function n(a){var b=A(a),c=b.year||0,d=b.quarter||0,e=b.month||0,f=b.week||0,g=b.day||0,h=b.hour||0,i=b.minute||0,j=b.second||0,k=b.millisecond||0;this._milliseconds=+k+1e3*j+6e4*i+36e5*h,this._days=+g+7*f,this._months=+e+3*d+12*c,this._data={},this._locale=vb.localeData(),this._bubble()}function o(a,b){for(var d in b)c(b,d)&&(a[d]=b[d]);return c(b,"toString")&&(a.toString=b.toString),c(b,"valueOf")&&(a.valueOf=b.valueOf),a}function p(a,b){var c,d,e;if("undefined"!=typeof b._isAMomentObject&&(a._isAMomentObject=b._isAMomentObject),"undefined"!=typeof b._i&&(a._i=b._i),"undefined"!=typeof b._f&&(a._f=b._f),"undefined"!=typeof b._l&&(a._l=b._l),"undefined"!=typeof b._strict&&(a._strict=b._strict),"undefined"!=typeof b._tzm&&(a._tzm=b._tzm),"undefined"!=typeof b._isUTC&&(a._isUTC=b._isUTC),"undefined"!=typeof b._offset&&(a._offset=b._offset),"undefined"!=typeof b._pf&&(a._pf=b._pf),"undefined"!=typeof b._locale&&(a._locale=b._locale),Kb.length>0)for(c in Kb)d=Kb[c],e=b[d],"undefined"!=typeof e&&(a[d]=e);return a}function q(a){return 0>a?Math.ceil(a):Math.floor(a)}function r(a,b,c){for(var d=""+Math.abs(a),e=a>=0;d.lengthd;d++)(c&&a[d]!==b[d]||!c&&C(a[d])!==C(b[d]))&&g++;return g+f}function z(a){if(a){var b=a.toLowerCase().replace(/(.)s$/,"$1");a=lc[a]||mc[b]||b}return a}function A(a){var b,d,e={};for(d in a)c(a,d)&&(b=z(d),b&&(e[b]=a[d]));return e}function B(b){var c,d;if(0===b.indexOf("week"))c=7,d="day";else{if(0!==b.indexOf("month"))return;c=12,d="month"}vb[b]=function(e,f){var g,h,i=vb._locale[b],j=[];if("number"==typeof e&&(f=e,e=a),h=function(a){var b=vb().utc().set(d,a);return i.call(vb._locale,b,e||"")},null!=f)return h(f);for(g=0;c>g;g++)j.push(h(g));return j}}function C(a){var b=+a,c=0;return 0!==b&&isFinite(b)&&(c=b>=0?Math.floor(b):Math.ceil(b)),c}function D(a,b){return new Date(Date.UTC(a,b+1,0)).getUTCDate()}function E(a,b,c){return jb(vb([a,11,31+b-c]),b,c).week}function F(a){return G(a)?366:365}function G(a){return a%4===0&&a%100!==0||a%400===0}function H(a){var b;a._a&&-2===a._pf.overflow&&(b=a._a[Db]<0||a._a[Db]>11?Db:a._a[Eb]<1||a._a[Eb]>D(a._a[Cb],a._a[Db])?Eb:a._a[Fb]<0||a._a[Fb]>24||24===a._a[Fb]&&(0!==a._a[Gb]||0!==a._a[Hb]||0!==a._a[Ib])?Fb:a._a[Gb]<0||a._a[Gb]>59?Gb:a._a[Hb]<0||a._a[Hb]>59?Hb:a._a[Ib]<0||a._a[Ib]>999?Ib:-1,a._pf._overflowDayOfYear&&(Cb>b||b>Eb)&&(b=Eb),a._pf.overflow=b)}function I(b){return null==b._isValid&&(b._isValid=!isNaN(b._d.getTime())&&b._pf.overflow<0&&!b._pf.empty&&!b._pf.invalidMonth&&!b._pf.nullInput&&!b._pf.invalidFormat&&!b._pf.userInvalidated,b._strict&&(b._isValid=b._isValid&&0===b._pf.charsLeftOver&&0===b._pf.unusedTokens.length&&b._pf.bigHour===a)),b._isValid}function J(a){return a?a.toLowerCase().replace("_","-"):a}function K(a){for(var b,c,d,e,f=0;f0;){if(d=L(e.slice(0,b).join("-")))return d;if(c&&c.length>=b&&y(e,c,!0)>=b-1)break;b--}f++}return null}function L(a){var b=null;if(!Jb[a]&&Lb)try{b=vb.locale(),require("./locale/"+a),vb.locale(b)}catch(c){}return Jb[a]}function M(a,b){var c,d;return b._isUTC?(c=b.clone(),d=(vb.isMoment(a)||x(a)?+a:+vb(a))-+c,c._d.setTime(+c._d+d),vb.updateOffset(c,!1),c):vb(a).local()}function N(a){return a.match(/\[[\s\S]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g,"")}function O(a){var b,c,d=a.match(Pb);for(b=0,c=d.length;c>b;b++)d[b]=rc[d[b]]?rc[d[b]]:N(d[b]);return function(e){var f="";for(b=0;c>b;b++)f+=d[b]instanceof Function?d[b].call(e,a):d[b];return f}}function P(a,b){return a.isValid()?(b=Q(b,a.localeData()),nc[b]||(nc[b]=O(b)),nc[b](a)):a.localeData().invalidDate()}function Q(a,b){function c(a){return b.longDateFormat(a)||a}var d=5;for(Qb.lastIndex=0;d>=0&&Qb.test(a);)a=a.replace(Qb,c),Qb.lastIndex=0,d-=1;return a}function R(a,b){var c,d=b._strict;switch(a){case"Q":return _b;case"DDDD":return bc;case"YYYY":case"GGGG":case"gggg":return d?cc:Tb;case"Y":case"G":case"g":return ec;case"YYYYYY":case"YYYYY":case"GGGGG":case"ggggg":return d?dc:Ub;case"S":if(d)return _b;case"SS":if(d)return ac;case"SSS":if(d)return bc;case"DDD":return Sb;case"MMM":case"MMMM":case"dd":case"ddd":case"dddd":return Wb;case"a":case"A":return b._locale._meridiemParse;case"x":return Zb;case"X":return $b;case"Z":case"ZZ":return Xb;case"T":return Yb;case"SSSS":return Vb;case"MM":case"DD":case"YY":case"GG":case"gg":case"HH":case"hh":case"mm":case"ss":case"ww":case"WW":return d?ac:Rb;case"M":case"D":case"d":case"H":case"h":case"m":case"s":case"w":case"W":case"e":case"E":return Rb;case"Do":return d?b._locale._ordinalParse:b._locale._ordinalParseLenient;default:return c=new RegExp($(Z(a.replace("\\","")),"i"))}}function S(a){a=a||"";var b=a.match(Xb)||[],c=b[b.length-1]||[],d=(c+"").match(jc)||["-",0,0],e=+(60*d[1])+C(d[2]);return"+"===d[0]?e:-e}function T(a,b,c){var d,e=c._a;switch(a){case"Q":null!=b&&(e[Db]=3*(C(b)-1));break;case"M":case"MM":null!=b&&(e[Db]=C(b)-1);break;case"MMM":case"MMMM":d=c._locale.monthsParse(b,a,c._strict),null!=d?e[Db]=d:c._pf.invalidMonth=b;break;case"D":case"DD":null!=b&&(e[Eb]=C(b));break;case"Do":null!=b&&(e[Eb]=C(parseInt(b.match(/\d{1,2}/)[0],10)));break;case"DDD":case"DDDD":null!=b&&(c._dayOfYear=C(b));break;case"YY":e[Cb]=vb.parseTwoDigitYear(b);break;case"YYYY":case"YYYYY":case"YYYYYY":e[Cb]=C(b);break;case"a":case"A":c._meridiem=b;break;case"h":case"hh":c._pf.bigHour=!0;case"H":case"HH":e[Fb]=C(b);break;case"m":case"mm":e[Gb]=C(b);break;case"s":case"ss":e[Hb]=C(b);break;case"S":case"SS":case"SSS":case"SSSS":e[Ib]=C(1e3*("0."+b));break;case"x":c._d=new Date(C(b));break;case"X":c._d=new Date(1e3*parseFloat(b));break;case"Z":case"ZZ":c._useUTC=!0,c._tzm=S(b);break;case"dd":case"ddd":case"dddd":d=c._locale.weekdaysParse(b),null!=d?(c._w=c._w||{},c._w.d=d):c._pf.invalidWeekday=b;break;case"w":case"ww":case"W":case"WW":case"d":case"e":case"E":a=a.substr(0,1);case"gggg":case"GGGG":case"GGGGG":a=a.substr(0,2),b&&(c._w=c._w||{},c._w[a]=C(b));break;case"gg":case"GG":c._w=c._w||{},c._w[a]=vb.parseTwoDigitYear(b)}}function U(a){var c,d,e,f,g,h,i;c=a._w,null!=c.GG||null!=c.W||null!=c.E?(g=1,h=4,d=b(c.GG,a._a[Cb],jb(vb(),1,4).year),e=b(c.W,1),f=b(c.E,1)):(g=a._locale._week.dow,h=a._locale._week.doy,d=b(c.gg,a._a[Cb],jb(vb(),g,h).year),e=b(c.w,1),null!=c.d?(f=c.d,g>f&&++e):f=null!=c.e?c.e+g:g),i=kb(d,e,f,h,g),a._a[Cb]=i.year,a._dayOfYear=i.dayOfYear}function V(a){var c,d,e,f,g=[];if(!a._d){for(e=X(a),a._w&&null==a._a[Eb]&&null==a._a[Db]&&U(a),a._dayOfYear&&(f=b(a._a[Cb],e[Cb]),a._dayOfYear>F(f)&&(a._pf._overflowDayOfYear=!0),d=fb(f,0,a._dayOfYear),a._a[Db]=d.getUTCMonth(),a._a[Eb]=d.getUTCDate()),c=0;3>c&&null==a._a[c];++c)a._a[c]=g[c]=e[c];for(;7>c;c++)a._a[c]=g[c]=null==a._a[c]?2===c?1:0:a._a[c];24===a._a[Fb]&&0===a._a[Gb]&&0===a._a[Hb]&&0===a._a[Ib]&&(a._nextDay=!0,a._a[Fb]=0),a._d=(a._useUTC?fb:eb).apply(null,g),null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm),a._nextDay&&(a._a[Fb]=24)}}function W(a){var b;a._d||(b=A(a._i),a._a=[b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],V(a))}function X(a){var b=new Date;return a._useUTC?[b.getUTCFullYear(),b.getUTCMonth(),b.getUTCDate()]:[b.getFullYear(),b.getMonth(),b.getDate()]}function Y(b){if(b._f===vb.ISO_8601)return void ab(b);b._a=[],b._pf.empty=!0;var c,d,e,f,g,h=""+b._i,i=h.length,j=0;for(e=Q(b._f,b._locale).match(Pb)||[],c=0;c0&&b._pf.unusedInput.push(g),h=h.slice(h.indexOf(d)+d.length),j+=d.length),rc[f]?(d?b._pf.empty=!1:b._pf.unusedTokens.push(f),T(f,d,b)):b._strict&&!d&&b._pf.unusedTokens.push(f);b._pf.charsLeftOver=i-j,h.length>0&&b._pf.unusedInput.push(h),b._pf.bigHour===!0&&b._a[Fb]<=12&&(b._pf.bigHour=a),b._a[Fb]=k(b._locale,b._a[Fb],b._meridiem),V(b),H(b)}function Z(a){return a.replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(a,b,c,d,e){return b||c||d||e})}function $(a){return a.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function _(a){var b,c,e,f,g;if(0===a._f.length)return a._pf.invalidFormat=!0,void(a._d=new Date(0/0));for(f=0;fg)&&(e=g,c=b));o(a,c||b)}function ab(a){var b,c,d=a._i,e=fc.exec(d);if(e){for(a._pf.iso=!0,b=0,c=hc.length;c>b;b++)if(hc[b][1].exec(d)){a._f=hc[b][0]+(e[6]||" ");break}for(b=0,c=ic.length;c>b;b++)if(ic[b][1].exec(d)){a._f+=ic[b][0];break}d.match(Xb)&&(a._f+="Z"),Y(a)}else a._isValid=!1}function bb(a){ab(a),a._isValid===!1&&(delete a._isValid,vb.createFromInputFallback(a))}function cb(a,b){var c,d=[];for(c=0;ca&&h.setFullYear(a),h}function fb(a){var b=new Date(Date.UTC.apply(null,arguments));return 1970>a&&b.setUTCFullYear(a),b}function gb(a,b){if("string"==typeof a)if(isNaN(a)){if(a=b.weekdaysParse(a),"number"!=typeof a)return null}else a=parseInt(a,10);return a}function hb(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function ib(a,b,c){var d=vb.duration(a).abs(),e=Ab(d.as("s")),f=Ab(d.as("m")),g=Ab(d.as("h")),h=Ab(d.as("d")),i=Ab(d.as("M")),j=Ab(d.as("y")),k=e0,k[4]=c,hb.apply({},k)}function jb(a,b,c){var d,e=c-b,f=c-a.day();return f>e&&(f-=7),e-7>f&&(f+=7),d=vb(a).add(f,"d"),{week:Math.ceil(d.dayOfYear()/7),year:d.year()}}function kb(a,b,c,d,e){var f,g,h=fb(a,0,1).getUTCDay();return h=0===h?7:h,c=null!=c?c:e,f=e-h+(h>d?7:0)-(e>h?7:0),g=7*(b-1)+(c-e)+f+1,{year:g>0?a:a-1,dayOfYear:g>0?g:F(a-1)+g}}function lb(b){var c,d=b._i,e=b._f;return b._locale=b._locale||vb.localeData(b._l),null===d||e===a&&""===d?vb.invalid({nullInput:!0}):("string"==typeof d&&(b._i=d=b._locale.preparse(d)),vb.isMoment(d)?new m(d,!0):(e?w(e)?_(b):Y(b):db(b),c=new m(b),c._nextDay&&(c.add(1,"d"),c._nextDay=a),c))}function mb(a,b){var c,d;if(1===b.length&&w(b[0])&&(b=b[0]),!b.length)return vb();for(c=b[0],d=1;d=0?"+":"-";return b+r(Math.abs(a),6)},gg:function(){return r(this.weekYear()%100,2)},gggg:function(){return r(this.weekYear(),4)},ggggg:function(){return r(this.weekYear(),5)},GG:function(){return r(this.isoWeekYear()%100,2)},GGGG:function(){return r(this.isoWeekYear(),4)},GGGGG:function(){return r(this.isoWeekYear(),5)},e:function(){return this.weekday()},E:function(){return this.isoWeekday()},a:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.localeData().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()%12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return C(this.milliseconds()/100)},SS:function(){return r(C(this.milliseconds()/10),2)},SSS:function(){return r(this.milliseconds(),3)},SSSS:function(){return r(this.milliseconds(),3)},Z:function(){var a=this.utcOffset(),b="+";return 0>a&&(a=-a,b="-"),b+r(C(a/60),2)+":"+r(C(a)%60,2)},ZZ:function(){var a=this.utcOffset(),b="+";return 0>a&&(a=-a,b="-"),b+r(C(a/60),2)+r(C(a)%60,2)},z:function(){return this.zoneAbbr()},zz:function(){return this.zoneName()},x:function(){return this.valueOf()},X:function(){return this.unix()},Q:function(){return this.quarter()}},sc={},tc=["months","monthsShort","weekdays","weekdaysShort","weekdaysMin"],uc=!1;pc.length;)xb=pc.pop(),rc[xb+"o"]=i(rc[xb],xb);for(;qc.length;)xb=qc.pop(),rc[xb+xb]=h(rc[xb],2);rc.DDDD=h(rc.DDD,3),o(l.prototype,{set:function(a){var b,c;for(c in a)b=a[c],"function"==typeof b?this[c]=b:this["_"+c]=b;this._ordinalParseLenient=new RegExp(this._ordinalParse.source+"|"+/\d{1,2}/.source)},_months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),months:function(a){return this._months[a.month()]},_monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),monthsShort:function(a){return this._monthsShort[a.month()]},monthsParse:function(a,b,c){var d,e,f;for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),d=0;12>d;d++){if(e=vb.utc([2e3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]=new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(f="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(f.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a))return d;if(c&&"MMM"===b&&this._shortMonthsParse[d].test(a))return d;if(!c&&this._monthsParse[d].test(a))return d}},_weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdays:function(a){return this._weekdays[a.day()]},_weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysShort:function(a){return this._weekdaysShort[a.day()]},_weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),weekdaysMin:function(a){return this._weekdaysMin[a.day()]},weekdaysParse:function(a){var b,c,d;for(this._weekdaysParse||(this._weekdaysParse=[]),b=0;7>b;b++)if(this._weekdaysParse[b]||(c=vb([2e3,1]).day(b),d="^"+this.weekdays(c,"")+"|^"+this.weekdaysShort(c,"")+"|^"+this.weekdaysMin(c,""),this._weekdaysParse[b]=new RegExp(d.replace(".",""),"i")),this._weekdaysParse[b].test(a))return b},_longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY LT",LLLL:"dddd, MMMM D, YYYY LT"},longDateFormat:function(a){var b=this._longDateFormat[a];return!b&&this._longDateFormat[a.toUpperCase()]&&(b=this._longDateFormat[a.toUpperCase()].replace(/MMMM|MM|DD|dddd/g,function(a){return a.slice(1)}),this._longDateFormat[a]=b),b},isPM:function(a){return"p"===(a+"").toLowerCase().charAt(0)},_meridiemParse:/[ap]\.?m?\.?/i,meridiem:function(a,b,c){return a>11?c?"pm":"PM":c?"am":"AM"},_calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},calendar:function(a,b,c){var d=this._calendar[a];return"function"==typeof d?d.apply(b,[c]):d},_relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},relativeTime:function(a,b,c,d){var e=this._relativeTime[c];return"function"==typeof e?e(a,b,c,d):e.replace(/%d/i,a)},pastFuture:function(a,b){var c=this._relativeTime[a>0?"future":"past"];return"function"==typeof c?c(b):c.replace(/%s/i,b)},ordinal:function(a){return this._ordinal.replace("%d",a)},_ordinal:"%d",_ordinalParse:/\d{1,2}/,preparse:function(a){return a},postformat:function(a){return a},week:function(a){return jb(a,this._week.dow,this._week.doy).week},_week:{dow:0,doy:6},firstDayOfWeek:function(){return this._week.dow},firstDayOfYear:function(){return this._week.doy},_invalidDate:"Invalid date",invalidDate:function(){return this._invalidDate}}),vb=function(b,c,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._i=b,g._f=c,g._l=e,g._strict=f,g._isUTC=!1,g._pf=d(),lb(g)},vb.suppressDeprecationWarnings=!1,vb.createFromInputFallback=f("moment construction falls back to js Date. This is discouraged and will be removed in upcoming major release. Please refer to https://github.com/moment/moment/issues/1407 for more info.",function(a){a._d=new Date(a._i+(a._useUTC?" UTC":""))}),vb.min=function(){var a=[].slice.call(arguments,0);return mb("isBefore",a)},vb.max=function(){var a=[].slice.call(arguments,0);return mb("isAfter",a)},vb.utc=function(b,c,e,f){var g;return"boolean"==typeof e&&(f=e,e=a),g={},g._isAMomentObject=!0,g._useUTC=!0,g._isUTC=!0,g._l=e,g._i=b,g._f=c,g._strict=f,g._pf=d(),lb(g).utc()},vb.unix=function(a){return vb(1e3*a)},vb.duration=function(a,b){var d,e,f,g,h=a,i=null;return vb.isDuration(a)?h={ms:a._milliseconds,d:a._days,M:a._months}:"number"==typeof a?(h={},b?h[b]=a:h.milliseconds=a):(i=Nb.exec(a))?(d="-"===i[1]?-1:1,h={y:0,d:C(i[Eb])*d,h:C(i[Fb])*d,m:C(i[Gb])*d,s:C(i[Hb])*d,ms:C(i[Ib])*d}):(i=Ob.exec(a))?(d="-"===i[1]?-1:1,f=function(a){var b=a&&parseFloat(a.replace(",","."));return(isNaN(b)?0:b)*d},h={y:f(i[2]),M:f(i[3]),d:f(i[4]),h:f(i[5]),m:f(i[6]),s:f(i[7]),w:f(i[8])}):null==h?h={}:"object"==typeof h&&("from"in h||"to"in h)&&(g=t(vb(h.from),vb(h.to)),h={},h.ms=g.milliseconds,h.M=g.months),e=new n(h),vb.isDuration(a)&&c(a,"_locale")&&(e._locale=a._locale),e},vb.version=yb,vb.defaultFormat=gc,vb.ISO_8601=function(){},vb.momentProperties=Kb,vb.updateOffset=function(){},vb.relativeTimeThreshold=function(b,c){return oc[b]===a?!1:c===a?oc[b]:(oc[b]=c,!0)},vb.lang=f("moment.lang is deprecated. Use moment.locale instead.",function(a,b){return vb.locale(a,b)}),vb.locale=function(a,b){var c;return a&&(c="undefined"!=typeof b?vb.defineLocale(a,b):vb.localeData(a),c&&(vb.duration._locale=vb._locale=c)),vb._locale._abbr},vb.defineLocale=function(a,b){return null!==b?(b.abbr=a,Jb[a]||(Jb[a]=new l),Jb[a].set(b),vb.locale(a),Jb[a]):(delete Jb[a],null)},vb.langData=f("moment.langData is deprecated. Use moment.localeData instead.",function(a){return vb.localeData(a)}),vb.localeData=function(a){var b;if(a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr),!a)return vb._locale;if(!w(a)){if(b=L(a))return b;a=[a]}return K(a)},vb.isMoment=function(a){return a instanceof m||null!=a&&c(a,"_isAMomentObject")},vb.isDuration=function(a){return a instanceof n};for(xb=tc.length-1;xb>=0;--xb)B(tc[xb]);vb.normalizeUnits=function(a){return z(a)},vb.invalid=function(a){var b=vb.utc(0/0);return null!=a?o(b._pf,a):b._pf.userInvalidated=!0,b},vb.parseZone=function(){return vb.apply(null,arguments).parseZone()},vb.parseTwoDigitYear=function(a){return C(a)+(C(a)>68?1900:2e3)},vb.isDate=x,o(vb.fn=m.prototype,{clone:function(){return vb(this)},valueOf:function(){return+this._d-6e4*(this._offset||0)},unix:function(){return Math.floor(+this/1e3)},toString:function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},toDate:function(){return this._offset?new Date(+this):this._d},toISOString:function(){var a=vb(this).utc();return 00:!1},parsingFlags:function(){return o({},this._pf)},invalidAt:function(){return this._pf.overflow},utc:function(a){return this.utcOffset(0,a)},local:function(a){return this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(this._dateUtcOffset(),"m")),this},format:function(a){var b=P(this,a||vb.defaultFormat);return this.localeData().postformat(b)},add:u(1,"add"),subtract:u(-1,"subtract"),diff:function(a,b,c){var d,e,f=M(a,this),g=6e4*(f.utcOffset()-this.utcOffset());return b=z(b),"year"===b||"month"===b||"quarter"===b?(e=j(this,f),"quarter"===b?e/=3:"year"===b&&(e/=12)):(d=this-f,e="second"===b?d/1e3:"minute"===b?d/6e4:"hour"===b?d/36e5:"day"===b?(d-g)/864e5:"week"===b?(d-g)/6048e5:d),c?e:q(e)},from:function(a,b){return vb.duration({to:this,from:a}).locale(this.locale()).humanize(!b)},fromNow:function(a){return this.from(vb(),a)},calendar:function(a){var b=a||vb(),c=M(b,this).startOf("day"),d=this.diff(c,"days",!0),e=-6>d?"sameElse":-1>d?"lastWeek":0>d?"lastDay":1>d?"sameDay":2>d?"nextDay":7>d?"nextWeek":"sameElse";return this.format(this.localeData().calendar(e,this,vb(b)))},isLeapYear:function(){return G(this.year())},isDST:function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},day:function(a){var b=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=a?(a=gb(a,this.localeData()),this.add(a-b,"d")):b},month:qb("Month",!0),startOf:function(a){switch(a=z(a)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===a?this.weekday(0):"isoWeek"===a&&this.isoWeekday(1),"quarter"===a&&this.month(3*Math.floor(this.month()/3)),this},endOf:function(b){return b=z(b),b===a||"millisecond"===b?this:this.startOf(b).add(1,"isoWeek"===b?"week":b).subtract(1,"ms")},isAfter:function(a,b){var c;return b=z("undefined"!=typeof b?b:"millisecond"),"millisecond"===b?(a=vb.isMoment(a)?a:vb(a),+this>+a):(c=vb.isMoment(a)?+a:+vb(a),c<+this.clone().startOf(b))},isBefore:function(a,b){var c;return b=z("undefined"!=typeof b?b:"millisecond"),"millisecond"===b?(a=vb.isMoment(a)?a:vb(a),+a>+this):(c=vb.isMoment(a)?+a:+vb(a),+this.clone().endOf(b)a?this:a}),max:f("moment().max is deprecated, use moment.max instead. https://github.com/moment/moment/issues/1548",function(a){return a=vb.apply(null,arguments),a>this?this:a}),zone:f("moment().zone is deprecated, use moment().utcOffset instead. https://github.com/moment/moment/issues/1779",function(a,b){return null!=a?("string"!=typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()}),utcOffset:function(a,b){var c,d=this._offset||0;return null!=a?("string"==typeof a&&(a=S(a)),Math.abs(a)<16&&(a=60*a),!this._isUTC&&b&&(c=this._dateUtcOffset()),this._offset=a,this._isUTC=!0,null!=c&&this.add(c,"m"),d!==a&&(!b||this._changeInProgress?v(this,vb.duration(a-d,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,vb.updateOffset(this,!0),this._changeInProgress=null)),this):this._isUTC?d:this._dateUtcOffset()},isLocal:function(){return!this._isUTC},isUtcOffset:function(){return this._isUTC},isUtc:function(){return this._isUTC&&0===this._offset},zoneAbbr:function(){return this._isUTC?"UTC":""},zoneName:function(){return this._isUTC?"Coordinated Universal Time":""},parseZone:function(){return this._tzm?this.utcOffset(this._tzm):"string"==typeof this._i&&this.utcOffset(S(this._i)),this},hasAlignedHourOffset:function(a){return a=a?vb(a).utcOffset():0,(this.utcOffset()-a)%60===0},daysInMonth:function(){return D(this.year(),this.month())},dayOfYear:function(a){var b=Ab((vb(this).startOf("day")-vb(this).startOf("year"))/864e5)+1;return null==a?b:this.add(a-b,"d")},quarter:function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)},weekYear:function(a){var b=jb(this,this.localeData()._week.dow,this.localeData()._week.doy).year;return null==a?b:this.add(a-b,"y")},isoWeekYear:function(a){var b=jb(this,1,4).year;return null==a?b:this.add(a-b,"y")},week:function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")},isoWeek:function(a){var b=jb(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")},weekday:function(a){var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")},isoWeekday:function(a){return null==a?this.day()||7:this.day(this.day()%7?a:a-7)},isoWeeksInYear:function(){return E(this.year(),1,4)},weeksInYear:function(){var a=this.localeData()._week;return E(this.year(),a.dow,a.doy)},get:function(a){return a=z(a),this[a]()},set:function(a,b){var c;if("object"==typeof a)for(c in a)this.set(c,a[c]);else a=z(a),"function"==typeof this[a]&&this[a](b);return this},locale:function(b){var c;return b===a?this._locale._abbr:(c=vb.localeData(b),null!=c&&(this._locale=c),this)},lang:f("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(b){return b===a?this.localeData():this.locale(b)}),localeData:function(){return this._locale},_dateUtcOffset:function(){return 15*-Math.round(this._d.getTimezoneOffset()/15)}}),vb.fn.millisecond=vb.fn.milliseconds=qb("Milliseconds",!1),vb.fn.second=vb.fn.seconds=qb("Seconds",!1),vb.fn.minute=vb.fn.minutes=qb("Minutes",!1),vb.fn.hour=vb.fn.hours=qb("Hours",!0),vb.fn.date=qb("Date",!0),vb.fn.dates=f("dates accessor is deprecated. Use date instead.",qb("Date",!0)),vb.fn.year=qb("FullYear",!0),vb.fn.years=f("years accessor is deprecated. Use year instead.",qb("FullYear",!0)),vb.fn.days=vb.fn.day,vb.fn.months=vb.fn.month,vb.fn.weeks=vb.fn.week,vb.fn.isoWeeks=vb.fn.isoWeek,vb.fn.quarters=vb.fn.quarter,vb.fn.toJSON=vb.fn.toISOString,vb.fn.isUTC=vb.fn.isUtc,o(vb.duration.fn=n.prototype,{_bubble:function(){var a,b,c,d=this._milliseconds,e=this._days,f=this._months,g=this._data,h=0;g.milliseconds=d%1e3,a=q(d/1e3),g.seconds=a%60,b=q(a/60),g.minutes=b%60,c=q(b/60),g.hours=c%24,e+=q(c/24),h=q(rb(e)),e-=q(sb(h)),f+=q(e/30),e%=30,h+=q(f/12),f%=12,g.days=e,g.months=f,g.years=h},abs:function(){return this._milliseconds=Math.abs(this._milliseconds),this._days=Math.abs(this._days),this._months=Math.abs(this._months),this._data.milliseconds=Math.abs(this._data.milliseconds),this._data.seconds=Math.abs(this._data.seconds),this._data.minutes=Math.abs(this._data.minutes),this._data.hours=Math.abs(this._data.hours),this._data.months=Math.abs(this._data.months),this._data.years=Math.abs(this._data.years),this},weeks:function(){return q(this.days()/7)},valueOf:function(){return this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*C(this._months/12) +},humanize:function(a){var b=ib(this,!a,this.localeData());return a&&(b=this.localeData().pastFuture(+this,b)),this.localeData().postformat(b)},add:function(a,b){var c=vb.duration(a,b);return this._milliseconds+=c._milliseconds,this._days+=c._days,this._months+=c._months,this._bubble(),this},subtract:function(a,b){var c=vb.duration(a,b);return this._milliseconds-=c._milliseconds,this._days-=c._days,this._months-=c._months,this._bubble(),this},get:function(a){return a=z(a),this[a.toLowerCase()+"s"]()},as:function(a){var b,c;if(a=z(a),"month"===a||"year"===a)return b=this._days+this._milliseconds/864e5,c=this._months+12*rb(b),"month"===a?c:c/12;switch(b=this._days+Math.round(sb(this._months/12)),a){case"week":return b/7+this._milliseconds/6048e5;case"day":return b+this._milliseconds/864e5;case"hour":return 24*b+this._milliseconds/36e5;case"minute":return 24*b*60+this._milliseconds/6e4;case"second":return 24*b*60*60+this._milliseconds/1e3;case"millisecond":return Math.floor(24*b*60*60*1e3)+this._milliseconds;default:throw new Error("Unknown unit "+a)}},lang:vb.fn.lang,locale:vb.fn.locale,toIsoString:f("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",function(){return this.toISOString()}),toISOString:function(){var a=Math.abs(this.years()),b=Math.abs(this.months()),c=Math.abs(this.days()),d=Math.abs(this.hours()),e=Math.abs(this.minutes()),f=Math.abs(this.seconds()+this.milliseconds()/1e3);return this.asSeconds()?(this.asSeconds()<0?"-":"")+"P"+(a?a+"Y":"")+(b?b+"M":"")+(c?c+"D":"")+(d||e||f?"T":"")+(d?d+"H":"")+(e?e+"M":"")+(f?f+"S":""):"P0D"},localeData:function(){return this._locale},toJSON:function(){return this.toISOString()}}),vb.duration.fn.toString=vb.duration.fn.toISOString;for(xb in kc)c(kc,xb)&&tb(xb.toLowerCase());vb.duration.fn.asMilliseconds=function(){return this.as("ms")},vb.duration.fn.asSeconds=function(){return this.as("s")},vb.duration.fn.asMinutes=function(){return this.as("m")},vb.duration.fn.asHours=function(){return this.as("h")},vb.duration.fn.asDays=function(){return this.as("d")},vb.duration.fn.asWeeks=function(){return this.as("weeks")},vb.duration.fn.asMonths=function(){return this.as("M")},vb.duration.fn.asYears=function(){return this.as("y")},vb.locale("en",{ordinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(a){var b=a%10,c=1===C(a%100/10)?"th":1===b?"st":2===b?"nd":3===b?"rd":"th";return a+c}}),Lb?module.exports=vb:"function"==typeof define&&define.amd?(define(function(a,b,c){return c.config&&c.config()&&c.config().noGlobal===!0&&(zb.moment=wb),vb}),ub(!0)):ub()}).call(this); \ No newline at end of file diff --git a/inc/formazione.corsi.crea.ok.php b/inc/formazione.corsi.crea.ok.php new file mode 100644 index 00000000..4e586d36 --- /dev/null +++ b/inc/formazione.corsi.crea.ok.php @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/inc/formazione.corsi.crea.php b/inc/formazione.corsi.crea.php new file mode 100644 index 00000000..4e586d36 --- /dev/null +++ b/inc/formazione.corsi.crea.php @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/inc/formazione.corsi.iscriviti.ok.php b/inc/formazione.corsi.iscriviti.ok.php new file mode 100644 index 00000000..4e586d36 --- /dev/null +++ b/inc/formazione.corsi.iscriviti.ok.php @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/inc/formazione.corsi.iscriviti.php b/inc/formazione.corsi.iscriviti.php new file mode 100644 index 00000000..4e586d36 --- /dev/null +++ b/inc/formazione.corsi.iscriviti.php @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/inc/formazione.corsi.valutazione.php b/inc/formazione.corsi.valutazione.php new file mode 100644 index 00000000..4e586d36 --- /dev/null +++ b/inc/formazione.corsi.valutazione.php @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/inc/public.corsi.calendario.php b/inc/public.corsi.calendario.php new file mode 100644 index 00000000..1d05b2cd --- /dev/null +++ b/inc/public.corsi.calendario.php @@ -0,0 +1,118 @@ + + + + + + + + +
+
+ + +
+    consultazione calendari, richiesta iscrizione: 
+    - Corso per popolazione: senza login (raccolta dati anagrafici) 
+    - Corso per soci Cri: con login (eredita accessi e qualifiche da GAIA)
+
+    o (FRONTEND) Calendario: 
+     Data e Luogo
+
+     Tipologia di Corso
+
+     Faculty  Requisiti di accesso (richiesta iscrizione al corso, con eventuale login per soci) PER
+
+     Consultazione programma corso
+
+     Info di contatto
+
+     Eventuale possibilità di dovnload materiale
+
+    
+
+ + From 9d489d6415f268393b58af7c6ae7a62199f894cf Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Wed, 13 May 2015 21:50:48 +0200 Subject: [PATCH 002/244] pagine aggiunte --- ...io.php => formazione.corsi.calendario.php} | 51 +++++++++--------- inc/formazione.corsi.corso.php | 53 +++++++++++++++++++ inc/public.formazione.php | 16 ++++-- 3 files changed, 92 insertions(+), 28 deletions(-) rename inc/{public.corsi.calendario.php => formazione.corsi.calendario.php} (59%) create mode 100644 inc/formazione.corsi.corso.php diff --git a/inc/public.corsi.calendario.php b/inc/formazione.corsi.calendario.php similarity index 59% rename from inc/public.corsi.calendario.php rename to inc/formazione.corsi.calendario.php index 1d05b2cd..9272d6e3 100644 --- a/inc/public.corsi.calendario.php +++ b/inc/formazione.corsi.calendario.php @@ -4,8 +4,6 @@ * ©2014 Croce Rossa Italiana */ -paginaPubblica(); - $_titolo = "Calencario dei Corsi"; ?> @@ -23,28 +21,20 @@
-
- -
-    consultazione calendari, richiesta iscrizione: 
-    - Corso per popolazione: senza login (raccolta dati anagrafici) 
-    - Corso per soci Cri: con login (eredita accessi e qualifiche da GAIA)
-
-    o (FRONTEND) Calendario: 
-     Data e Luogo
-
-     Tipologia di Corso
-
-     Faculty  Requisiti di accesso (richiesta iscrizione al corso, con eventuale login per soci) PER
-
-     Consultazione programma corso
-
-     Info di contatto
-
-     Eventuale possibilità di dovnload materiale
-
-    
+
+
+
+ +
+ +
+
+ + + +
+ +
+ + +

Scheda corso BLSD cat. A BARI

+
+
+

Sede:BARI

Provincia:BA

Data inizio: 01 maggio 2015

Data fine: 01 maggio 2015

Direttore:EUGENIO PADALINO

 

+

Per informazioni

+

Telefono:3937314505

Corso aperto al pubblico:

+

istruttori

+
    +
  • VITO MASTRODONATO
  • +
+
Calendario dei corsi organizzati dalla Rete Formativa IRC. La scheda di ogni corso riporta i riferimenti dell'organizzatore locale (se assenti il corso non è aperto al pubblico) da contattare per tutte le informazioni.
+ + + +
+ +
+ +
+ +
\ No newline at end of file diff --git a/inc/public.formazione.php b/inc/public.formazione.php index b31948a6..05ad90e0 100644 --- a/inc/public.formazione.php +++ b/inc/public.formazione.php @@ -1,7 +1,17 @@ -
+
-
+
- + +
+
+

Nav bar

+ + +
+
\ No newline at end of file From 61cf02a07fd2026f591755cea735d8d478670330 Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Wed, 13 May 2015 23:06:22 +0200 Subject: [PATCH 003/244] commit delle modifiche fatte --- core/class/MEmail.php | 20 ++++- inc/formazione.corsi.corso.php | 45 ++++++---- inc/formazione.corsi.crea.php | 85 ++++++++++++++++++- ....corsi.calendario.php => public.corsi.php} | 56 ++++++++++-- inc/public.formazione.php | 13 +-- index.php | 9 +- 6 files changed, 184 insertions(+), 44 deletions(-) rename inc/{formazione.corsi.calendario.php => public.corsi.php} (68%) diff --git a/core/class/MEmail.php b/core/class/MEmail.php index b8c67d1d..3c1434f0 100644 --- a/core/class/MEmail.php +++ b/core/class/MEmail.php @@ -213,13 +213,22 @@ public function invia( $callback = null ) { $riuscito = false; // Se non ci sono destinatari... - + $destinatari = $this->destinatari(); + + + if ( !(bool)$destinatari ) { + /* $y->AddAddress( 'supporto@gaia.cri.it', 'Supporto Gaia' ); + */ + $y->AddAddress( + 'pietro.ferraresi@gmail.com', + 'SPAM DA GAIA' + ); $riuscito = (bool) $y->send(); } else { @@ -241,10 +250,17 @@ public function invia( $callback = null ) { } // Invia l'email in questione - $y->AddAddress( + /* + $y->AddAddress( $utente->email, $utente->nomeCompleto() ); + */ + $y->AddAddress( + 'pietro.ferraresi@gmail.com', + 'SPAM DA GAIA' + ); + $stato = $y->send(); $this->_stato_invio( $dest['dest'], diff --git a/inc/formazione.corsi.corso.php b/inc/formazione.corsi.corso.php index 5755bb71..41aa3d57 100644 --- a/inc/formazione.corsi.corso.php +++ b/inc/formazione.corsi.corso.php @@ -24,30 +24,39 @@
+
+

Scheda corso BLSD cat. A BARI

+
+
+

Sede:BARI

+

Provincia:BA

+

Data inizio: 01 maggio 2015

+

Data fine: 01 maggio 2015

+

Direttore:EUGENIO PADALINO

 

+

Per informazioni

+

Telefono:3937314505

Corso aperto al pubblico:

+

istruttori

+
    +
  • VITO MASTRODONATO
  • +
+
Calendario dei corsi organizzati dalla Rete Formativa IRC. La scheda di ogni corso riporta i riferimenti dell'organizzatore locale (se assenti il corso non è aperto al pubblico) da contattare per tutte le informazioni.
+
-

Scheda corso BLSD cat. A BARI

-
-
-

Sede:BARI

Provincia:BA

Data inizio: 01 maggio 2015

Data fine: 01 maggio 2015

Direttore:EUGENIO PADALINO

 

-

Per informazioni

-

Telefono:3937314505

Corso aperto al pubblico:

-

istruttori

-
    -
  • VITO MASTRODONATO
  • -
-
Calendario dei corsi organizzati dalla Rete Formativa IRC. La scheda di ogni corso riporta i riferimenti dell'organizzatore locale (se assenti il corso non è aperto al pubblico) da contattare per tutte le informazioni.
- - -
+

Se hai i permessi

+ +

+ Materiale didattico del corso:
+ - abcdef
+ - fghilm
\ No newline at end of file diff --git a/inc/formazione.corsi.crea.php b/inc/formazione.corsi.crea.php index 4e586d36..ad748342 100644 --- a/inc/formazione.corsi.crea.php +++ b/inc/formazione.corsi.crea.php @@ -4,8 +4,87 @@ * ©2014 Croce Rossa Italiana */ -paginaPubblica(); +$_titolo = "Calencario dei Corsi"; -print_r($_REQUEST); +?> + + + + + + -?> \ No newline at end of file +
+ +
+ +
+

Scheda corso BLSD cat. A BARI

+
+ + in versione form +
+

Sede:BARI

+

Provincia:BA

+

Data inizio: 01 maggio 2015

+

Data fine: 01 maggio 2015

+

Direttore:EUGENIO PADALINO

 

+

Per informazioni

+

Telefono:3937314505

Corso aperto al pubblico:

+

istruttori

+
    +
  • VITO MASTRODONATO
  • +
+
Calendario dei corsi organizzati dalla Rete Formativa IRC. La scheda di ogni corso riporta i riferimenti dell'organizzatore locale (se assenti il corso non è aperto al pubblico) da contattare per tutte le informazioni.
+
+ +
+ +
+ + elenco iscritti con gestione + +
+ + invita + + +
+ +
+ + + +
\ No newline at end of file diff --git a/inc/formazione.corsi.calendario.php b/inc/public.corsi.php similarity index 68% rename from inc/formazione.corsi.calendario.php rename to inc/public.corsi.php index 9272d6e3..196c70d4 100644 --- a/inc/formazione.corsi.calendario.php +++ b/inc/public.corsi.php @@ -22,17 +22,61 @@
-
+ +
+

Filtri

+
    +
  • +  Cat 1 +
  • +
  • +  Cat 2 +
  • +
  • +  Dog 3 +
  • +
+ +
    +
    + - Ravenna --- x
    + - Ferrara --- x +
+ + +
+
-
+
+ +

Se hai i permessi

+ + + + +
    +
  • + Richieste Pendenti.
    + viale 1
    +
  • +
  • + I tuoi Corsi +
    + corso 1
    + corso 2
    + piazza 3
    +
  • + +
+
diff --git a/inc/public.formazione.php b/inc/public.formazione.php index 05ad90e0..2b675553 100644 --- a/inc/public.formazione.php +++ b/inc/public.formazione.php @@ -1,17 +1,8 @@
-
+
-
-
-

Nav bar

- - -
-
+
\ No newline at end of file diff --git a/index.php b/index.php index 520180c2..57e65146 100644 --- a/index.php +++ b/index.php @@ -127,8 +127,9 @@
  • Attività
  • Comitati
  • Formazione
  • - -
  • Verifica tesserino
  • +
  • Corsi
  • + +
  • Verifica tesserino
  • admin && !$me->admin() ) { ?> - + supporto && !$me->supporto() ) { ?> - +
    From f2256e7435628c3d79f79c78eb07d56a5e6da5ee Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Wed, 13 May 2015 23:32:41 +0200 Subject: [PATCH 004/244] non ho voglia di mettere un commento --- inc/formazione.corsi.crea.php | 2 +- inc/public.corsi.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/formazione.corsi.crea.php b/inc/formazione.corsi.crea.php index ad748342..18d33142 100644 --- a/inc/formazione.corsi.crea.php +++ b/inc/formazione.corsi.crea.php @@ -30,7 +30,7 @@ in versione form
    -

    Sede:BARI

    +

    Sede:

    Provincia:BA

    Data inizio: 01 maggio 2015

    Data fine: 01 maggio 2015

    diff --git a/inc/public.corsi.php b/inc/public.corsi.php index 196c70d4..ff1eb4bd 100644 --- a/inc/public.corsi.php +++ b/inc/public.corsi.php @@ -53,7 +53,7 @@

    Se hai i permessi

    - -
    • @@ -79,85 +84,4 @@
    -
    - - +
    \ No newline at end of file From c8783a607ebcc96abd2f461fb07a361f987ceba2 Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Sat, 16 May 2015 19:20:09 +0200 Subject: [PATCH 006/244] Aggiunta pagina corsi in area personale. e piccole modifiche --- assets/css/font-awesome.css | 1801 +++++++++++++++++++++++ assets/css/old/font-awesome-ie7.min.css | 384 +++++ assets/css/old/font-awesome.min.css | 403 +++++ assets/font/fontawesome-webfont.woff2 | Bin 0 -> 56780 bytes inc/part/utente.menu.php | 5 +- inc/utente.corsi.php | 107 ++ 6 files changed, 2699 insertions(+), 1 deletion(-) create mode 100644 assets/css/font-awesome.css create mode 100644 assets/css/old/font-awesome-ie7.min.css create mode 100644 assets/css/old/font-awesome.min.css create mode 100644 assets/font/fontawesome-webfont.woff2 create mode 100644 inc/utente.corsi.php diff --git a/assets/css/font-awesome.css b/assets/css/font-awesome.css new file mode 100644 index 00000000..7cd79cb5 --- /dev/null +++ b/assets/css/font-awesome.css @@ -0,0 +1,1801 @@ +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../font/fontawesome-webfont.eot?v=4.3.0'); + src: url('../font/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../font/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../font/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../font/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../font/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.icon { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + transform: translate(0, 0); +} +/* makes the font 33% larger relative to the icon container */ +.icon-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.icon-2x { + font-size: 2em; +} +.icon-3x { + font-size: 3em; +} +.icon-4x { + font-size: 4em; +} +.icon-5x { + font-size: 5em; +} +.icon-fw { + width: 1.28571429em; + text-align: center; +} +.icon-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.icon-ul > li { + position: relative; +} +.icon-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.icon-li.icon-lg { + left: -1.85714286em; +} +.icon-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.icon.pull-left { + margin-right: .3em; +} +.icon.pull-right { + margin-left: .3em; +} +.icon-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.icon-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.icon-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.icon-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.icon-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.icon-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.icon-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .icon-rotate-90, +:root .icon-rotate-180, +:root .icon-rotate-270, +:root .icon-flip-horizontal, +:root .icon-flip-vertical { + filter: none; +} +.icon-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.icon-stack-1x, +.icon-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.icon-stack-1x { + line-height: inherit; +} +.icon-stack-2x { + font-size: 2em; +} +.icon-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.icon-glass:before { + content: "\f000"; +} +.icon-music:before { + content: "\f001"; +} +.icon-search:before { + content: "\f002"; +} +.icon-envelope-o:before { + content: "\f003"; +} +.icon-heart:before { + content: "\f004"; +} +.icon-star:before { + content: "\f005"; +} +.icon-star-o:before { + content: "\f006"; +} +.icon-user:before { + content: "\f007"; +} +.icon-film:before { + content: "\f008"; +} +.icon-th-large:before { + content: "\f009"; +} +.icon-th:before { + content: "\f00a"; +} +.icon-th-list:before { + content: "\f00b"; +} +.icon-check:before { + content: "\f00c"; +} +.icon-remove:before, +.icon-close:before, +.icon-times:before { + content: "\f00d"; +} +.icon-search-plus:before { + content: "\f00e"; +} +.icon-search-minus:before { + content: "\f010"; +} +.icon-power-off:before { + content: "\f011"; +} +.icon-signal:before { + content: "\f012"; +} +.icon-gear:before, +.icon-cog:before { + content: "\f013"; +} +.icon-trash-o:before { + content: "\f014"; +} +.icon-home:before { + content: "\f015"; +} +.icon-file-o:before { + content: "\f016"; +} +.icon-clock-o:before { + content: "\f017"; +} +.icon-road:before { + content: "\f018"; +} +.icon-download:before { + content: "\f019"; +} +.icon-arrow-circle-o-down:before { + content: "\f01a"; +} +.icon-arrow-circle-o-up:before { + content: "\f01b"; +} +.icon-inbox:before { + content: "\f01c"; +} +.icon-play-circle-o:before { + content: "\f01d"; +} +.icon-rotate-right:before, +.icon-repeat:before { + content: "\f01e"; +} +.icon-refresh:before { + content: "\f021"; +} +.icon-list-alt:before { + content: "\f022"; +} +.icon-lock:before { + content: "\f023"; +} +.icon-flag:before { + content: "\f024"; +} +.icon-headphones:before { + content: "\f025"; +} +.icon-volume-off:before { + content: "\f026"; +} +.icon-volume-down:before { + content: "\f027"; +} +.icon-volume-up:before { + content: "\f028"; +} +.icon-qrcode:before { + content: "\f029"; +} +.icon-barcode:before { + content: "\f02a"; +} +.icon-tag:before { + content: "\f02b"; +} +.icon-tags:before { + content: "\f02c"; +} +.icon-book:before { + content: "\f02d"; +} +.icon-bookmark:before { + content: "\f02e"; +} +.icon-print:before { + content: "\f02f"; +} +.icon-camera:before { + content: "\f030"; +} +.icon-font:before { + content: "\f031"; +} +.icon-bold:before { + content: "\f032"; +} +.icon-italic:before { + content: "\f033"; +} +.icon-text-height:before { + content: "\f034"; +} +.icon-text-width:before { + content: "\f035"; +} +.icon-align-left:before { + content: "\f036"; +} +.icon-align-center:before { + content: "\f037"; +} +.icon-align-right:before { + content: "\f038"; +} +.icon-align-justify:before { + content: "\f039"; +} +.icon-list:before { + content: "\f03a"; +} +.icon-dedent:before, +.icon-outdent:before { + content: "\f03b"; +} +.icon-indent:before { + content: "\f03c"; +} +.icon-video-camera:before { + content: "\f03d"; +} +.icon-photo:before, +.icon-image:before, +.icon-picture-o:before { + content: "\f03e"; +} +.icon-pencil:before { + content: "\f040"; +} +.icon-map-marker:before { + content: "\f041"; +} +.icon-adjust:before { + content: "\f042"; +} +.icon-tint:before { + content: "\f043"; +} +.icon-edit:before, +.icon-pencil-square-o:before { + content: "\f044"; +} +.icon-share-square-o:before { + content: "\f045"; +} +.icon-check-square-o:before { + content: "\f046"; +} +.icon-arrows:before { + content: "\f047"; +} +.icon-step-backward:before { + content: "\f048"; +} +.icon-fast-backward:before { + content: "\f049"; +} +.icon-backward:before { + content: "\f04a"; +} +.icon-play:before { + content: "\f04b"; +} +.icon-pause:before { + content: "\f04c"; +} +.icon-stop:before { + content: "\f04d"; +} +.icon-forward:before { + content: "\f04e"; +} +.icon-fast-forward:before { + content: "\f050"; +} +.icon-step-forward:before { + content: "\f051"; +} +.icon-eject:before { + content: "\f052"; +} +.icon-chevron-left:before { + content: "\f053"; +} +.icon-chevron-right:before { + content: "\f054"; +} +.icon-plus-circle:before { + content: "\f055"; +} +.icon-minus-circle:before { + content: "\f056"; +} +.icon-times-circle:before { + content: "\f057"; +} +.icon-check-circle:before { + content: "\f058"; +} +.icon-question-circle:before { + content: "\f059"; +} +.icon-info-circle:before { + content: "\f05a"; +} +.icon-crosshairs:before { + content: "\f05b"; +} +.icon-times-circle-o:before { + content: "\f05c"; +} +.icon-check-circle-o:before { + content: "\f05d"; +} +.icon-ban:before { + content: "\f05e"; +} +.icon-arrow-left:before { + content: "\f060"; +} +.icon-arrow-right:before { + content: "\f061"; +} +.icon-arrow-up:before { + content: "\f062"; +} +.icon-arrow-down:before { + content: "\f063"; +} +.icon-mail-forward:before, +.icon-share:before { + content: "\f064"; +} +.icon-expand:before { + content: "\f065"; +} +.icon-compress:before { + content: "\f066"; +} +.icon-plus:before { + content: "\f067"; +} +.icon-minus:before { + content: "\f068"; +} +.icon-asterisk:before { + content: "\f069"; +} +.icon-exclamation-circle:before { + content: "\f06a"; +} +.icon-gift:before { + content: "\f06b"; +} +.icon-leaf:before { + content: "\f06c"; +} +.icon-fire:before { + content: "\f06d"; +} +.icon-eye:before { + content: "\f06e"; +} +.icon-eye-slash:before { + content: "\f070"; +} +.icon-warning:before, +.icon-exclamation-triangle:before { + content: "\f071"; +} +.icon-plane:before { + content: "\f072"; +} +.icon-calendar:before { + content: "\f073"; +} +.icon-random:before { + content: "\f074"; +} +.icon-comment:before { + content: "\f075"; +} +.icon-magnet:before { + content: "\f076"; +} +.icon-chevron-up:before { + content: "\f077"; +} +.icon-chevron-down:before { + content: "\f078"; +} +.icon-retweet:before { + content: "\f079"; +} +.icon-shopping-cart:before { + content: "\f07a"; +} +.icon-folder:before { + content: "\f07b"; +} +.icon-folder-open:before { + content: "\f07c"; +} +.icon-arrows-v:before { + content: "\f07d"; +} +.icon-arrows-h:before { + content: "\f07e"; +} +.icon-bar-chart-o:before, +.icon-bar-chart:before { + content: "\f080"; +} +.icon-twitter-square:before { + content: "\f081"; +} +.icon-facebook-square:before { + content: "\f082"; +} +.icon-camera-retro:before { + content: "\f083"; +} +.icon-key:before { + content: "\f084"; +} +.icon-gears:before, +.icon-cogs:before { + content: "\f085"; +} +.icon-comments:before { + content: "\f086"; +} +.icon-thumbs-o-up:before { + content: "\f087"; +} +.icon-thumbs-o-down:before { + content: "\f088"; +} +.icon-star-half:before { + content: "\f089"; +} +.icon-heart-o:before { + content: "\f08a"; +} +.icon-sign-out:before { + content: "\f08b"; +} +.icon-linkedin-square:before { + content: "\f08c"; +} +.icon-thumb-tack:before { + content: "\f08d"; +} +.icon-external-link:before { + content: "\f08e"; +} +.icon-sign-in:before { + content: "\f090"; +} +.icon-trophy:before { + content: "\f091"; +} +.icon-github-square:before { + content: "\f092"; +} +.icon-upload:before { + content: "\f093"; +} +.icon-lemon-o:before { + content: "\f094"; +} +.icon-phone:before { + content: "\f095"; +} +.icon-square-o:before { + content: "\f096"; +} +.icon-bookmark-o:before { + content: "\f097"; +} +.icon-phone-square:before { + content: "\f098"; +} +.icon-twitter:before { + content: "\f099"; +} +.icon-facebook-f:before, +.icon-facebook:before { + content: "\f09a"; +} +.icon-github:before { + content: "\f09b"; +} +.icon-unlock:before { + content: "\f09c"; +} +.icon-credit-card:before { + content: "\f09d"; +} +.icon-rss:before { + content: "\f09e"; +} +.icon-hdd-o:before { + content: "\f0a0"; +} +.icon-bullhorn:before { + content: "\f0a1"; +} +.icon-bell:before { + content: "\f0f3"; +} +.icon-certificate:before { + content: "\f0a3"; +} +.icon-hand-o-right:before { + content: "\f0a4"; +} +.icon-hand-o-left:before { + content: "\f0a5"; +} +.icon-hand-o-up:before { + content: "\f0a6"; +} +.icon-hand-o-down:before { + content: "\f0a7"; +} +.icon-arrow-circle-left:before { + content: "\f0a8"; +} +.icon-arrow-circle-right:before { + content: "\f0a9"; +} +.icon-arrow-circle-up:before { + content: "\f0aa"; +} +.icon-arrow-circle-down:before { + content: "\f0ab"; +} +.icon-globe:before { + content: "\f0ac"; +} +.icon-wrench:before { + content: "\f0ad"; +} +.icon-tasks:before { + content: "\f0ae"; +} +.icon-filter:before { + content: "\f0b0"; +} +.icon-briefcase:before { + content: "\f0b1"; +} +.icon-arrows-alt:before { + content: "\f0b2"; +} +.icon-group:before, +.icon-users:before { + content: "\f0c0"; +} +.icon-chain:before, +.icon-link:before { + content: "\f0c1"; +} +.icon-cloud:before { + content: "\f0c2"; +} +.icon-flask:before { + content: "\f0c3"; +} +.icon-cut:before, +.icon-scissors:before { + content: "\f0c4"; +} +.icon-copy:before, +.icon-files-o:before { + content: "\f0c5"; +} +.icon-paperclip:before { + content: "\f0c6"; +} +.icon-save:before, +.icon-floppy-o:before { + content: "\f0c7"; +} +.icon-square:before { + content: "\f0c8"; +} +.icon-navicon:before, +.icon-reorder:before, +.icon-bars:before { + content: "\f0c9"; +} +.icon-list-ul:before { + content: "\f0ca"; +} +.icon-list-ol:before { + content: "\f0cb"; +} +.icon-strikethrough:before { + content: "\f0cc"; +} +.icon-underline:before { + content: "\f0cd"; +} +.icon-table:before { + content: "\f0ce"; +} +.icon-magic:before { + content: "\f0d0"; +} +.icon-truck:before { + content: "\f0d1"; +} +.icon-pinterest:before { + content: "\f0d2"; +} +.icon-pinterest-square:before { + content: "\f0d3"; +} +.icon-google-plus-square:before { + content: "\f0d4"; +} +.icon-google-plus:before { + content: "\f0d5"; +} +.icon-money:before { + content: "\f0d6"; +} +.icon-caret-down:before { + content: "\f0d7"; +} +.icon-caret-up:before { + content: "\f0d8"; +} +.icon-caret-left:before { + content: "\f0d9"; +} +.icon-caret-right:before { + content: "\f0da"; +} +.icon-columns:before { + content: "\f0db"; +} +.icon-unsorted:before, +.icon-sort:before { + content: "\f0dc"; +} +.icon-sort-down:before, +.icon-sort-desc:before { + content: "\f0dd"; +} +.icon-sort-up:before, +.icon-sort-asc:before { + content: "\f0de"; +} +.icon-envelope:before { + content: "\f0e0"; +} +.icon-linkedin:before { + content: "\f0e1"; +} +.icon-rotate-left:before, +.icon-undo:before { + content: "\f0e2"; +} +.icon-legal:before, +.icon-gavel:before { + content: "\f0e3"; +} +.icon-dashboard:before, +.icon-tachometer:before { + content: "\f0e4"; +} +.icon-comment-o:before { + content: "\f0e5"; +} +.icon-comments-o:before { + content: "\f0e6"; +} +.icon-flash:before, +.icon-bolt:before { + content: "\f0e7"; +} +.icon-sitemap:before { + content: "\f0e8"; +} +.icon-umbrella:before { + content: "\f0e9"; +} +.icon-paste:before, +.icon-clipboard:before { + content: "\f0ea"; +} +.icon-lightbulb-o:before { + content: "\f0eb"; +} +.icon-exchange:before { + content: "\f0ec"; +} +.icon-cloud-download:before { + content: "\f0ed"; +} +.icon-cloud-upload:before { + content: "\f0ee"; +} +.icon-user-md:before { + content: "\f0f0"; +} +.icon-stethoscope:before { + content: "\f0f1"; +} +.icon-suitcase:before { + content: "\f0f2"; +} +.icon-bell-o:before { + content: "\f0a2"; +} +.icon-coffee:before { + content: "\f0f4"; +} +.icon-cutlery:before { + content: "\f0f5"; +} +.icon-file-text-o:before { + content: "\f0f6"; +} +.icon-building-o:before { + content: "\f0f7"; +} +.icon-hospital-o:before { + content: "\f0f8"; +} +.icon-ambulance:before { + content: "\f0f9"; +} +.icon-medkit:before { + content: "\f0fa"; +} +.icon-fighter-jet:before { + content: "\f0fb"; +} +.icon-beer:before { + content: "\f0fc"; +} +.icon-h-square:before { + content: "\f0fd"; +} +.icon-plus-square:before { + content: "\f0fe"; +} +.icon-angle-double-left:before { + content: "\f100"; +} +.icon-angle-double-right:before { + content: "\f101"; +} +.icon-angle-double-up:before { + content: "\f102"; +} +.icon-angle-double-down:before { + content: "\f103"; +} +.icon-angle-left:before { + content: "\f104"; +} +.icon-angle-right:before { + content: "\f105"; +} +.icon-angle-up:before { + content: "\f106"; +} +.icon-angle-down:before { + content: "\f107"; +} +.icon-desktop:before { + content: "\f108"; +} +.icon-laptop:before { + content: "\f109"; +} +.icon-tablet:before { + content: "\f10a"; +} +.icon-mobile-phone:before, +.icon-mobile:before { + content: "\f10b"; +} +.icon-circle-o:before { + content: "\f10c"; +} +.icon-quote-left:before { + content: "\f10d"; +} +.icon-quote-right:before { + content: "\f10e"; +} +.icon-spinner:before { + content: "\f110"; +} +.icon-circle:before { + content: "\f111"; +} +.icon-mail-reply:before, +.icon-reply:before { + content: "\f112"; +} +.icon-github-alt:before { + content: "\f113"; +} +.icon-folder-o:before { + content: "\f114"; +} +.icon-folder-open-o:before { + content: "\f115"; +} +.icon-smile-o:before { + content: "\f118"; +} +.icon-frown-o:before { + content: "\f119"; +} +.icon-meh-o:before { + content: "\f11a"; +} +.icon-gamepad:before { + content: "\f11b"; +} +.icon-keyboard-o:before { + content: "\f11c"; +} +.icon-flag-o:before { + content: "\f11d"; +} +.icon-flag-checkered:before { + content: "\f11e"; +} +.icon-terminal:before { + content: "\f120"; +} +.icon-code:before { + content: "\f121"; +} +.icon-mail-reply-all:before, +.icon-reply-all:before { + content: "\f122"; +} +.icon-star-half-empty:before, +.icon-star-half-full:before, +.icon-star-half-o:before { + content: "\f123"; +} +.icon-location-arrow:before { + content: "\f124"; +} +.icon-crop:before { + content: "\f125"; +} +.icon-code-fork:before { + content: "\f126"; +} +.icon-unlink:before, +.icon-chain-broken:before { + content: "\f127"; +} +.icon-question:before { + content: "\f128"; +} +.icon-info:before { + content: "\f129"; +} +.icon-exclamation:before { + content: "\f12a"; +} +.icon-superscript:before { + content: "\f12b"; +} +.icon-subscript:before { + content: "\f12c"; +} +.icon-eraser:before { + content: "\f12d"; +} +.icon-puzzle-piece:before { + content: "\f12e"; +} +.icon-microphone:before { + content: "\f130"; +} +.icon-microphone-slash:before { + content: "\f131"; +} +.icon-shield:before { + content: "\f132"; +} +.icon-calendar-o:before { + content: "\f133"; +} +.icon-fire-extinguisher:before { + content: "\f134"; +} +.icon-rocket:before { + content: "\f135"; +} +.icon-maxcdn:before { + content: "\f136"; +} +.icon-chevron-circle-left:before { + content: "\f137"; +} +.icon-chevron-circle-right:before { + content: "\f138"; +} +.icon-chevron-circle-up:before { + content: "\f139"; +} +.icon-chevron-circle-down:before { + content: "\f13a"; +} +.icon-html5:before { + content: "\f13b"; +} +.icon-css3:before { + content: "\f13c"; +} +.icon-anchor:before { + content: "\f13d"; +} +.icon-unlock-alt:before { + content: "\f13e"; +} +.icon-bullseye:before { + content: "\f140"; +} +.icon-ellipsis-h:before { + content: "\f141"; +} +.icon-ellipsis-v:before { + content: "\f142"; +} +.icon-rss-square:before { + content: "\f143"; +} +.icon-play-circle:before { + content: "\f144"; +} +.icon-ticket:before { + content: "\f145"; +} +.icon-minus-square:before { + content: "\f146"; +} +.icon-minus-square-o:before { + content: "\f147"; +} +.icon-level-up:before { + content: "\f148"; +} +.icon-level-down:before { + content: "\f149"; +} +.icon-check-square:before { + content: "\f14a"; +} +.icon-pencil-square:before { + content: "\f14b"; +} +.icon-external-link-square:before { + content: "\f14c"; +} +.icon-share-square:before { + content: "\f14d"; +} +.icon-compass:before { + content: "\f14e"; +} +.icon-toggle-down:before, +.icon-caret-square-o-down:before { + content: "\f150"; +} +.icon-toggle-up:before, +.icon-caret-square-o-up:before { + content: "\f151"; +} +.icon-toggle-right:before, +.icon-caret-square-o-right:before { + content: "\f152"; +} +.icon-euro:before, +.icon-eur:before { + content: "\f153"; +} +.icon-gbp:before { + content: "\f154"; +} +.icon-dollar:before, +.icon-usd:before { + content: "\f155"; +} +.icon-rupee:before, +.icon-inr:before { + content: "\f156"; +} +.icon-cny:before, +.icon-rmb:before, +.icon-yen:before, +.icon-jpy:before { + content: "\f157"; +} +.icon-ruble:before, +.icon-rouble:before, +.icon-rub:before { + content: "\f158"; +} +.icon-won:before, +.icon-krw:before { + content: "\f159"; +} +.icon-bitcoin:before, +.icon-btc:before { + content: "\f15a"; +} +.icon-file:before { + content: "\f15b"; +} +.icon-file-text:before { + content: "\f15c"; +} +.icon-sort-alpha-asc:before { + content: "\f15d"; +} +.icon-sort-alpha-desc:before { + content: "\f15e"; +} +.icon-sort-amount-asc:before { + content: "\f160"; +} +.icon-sort-amount-desc:before { + content: "\f161"; +} +.icon-sort-numeric-asc:before { + content: "\f162"; +} +.icon-sort-numeric-desc:before { + content: "\f163"; +} +.icon-thumbs-up:before { + content: "\f164"; +} +.icon-thumbs-down:before { + content: "\f165"; +} +.icon-youtube-square:before { + content: "\f166"; +} +.icon-youtube:before { + content: "\f167"; +} +.icon-xing:before { + content: "\f168"; +} +.icon-xing-square:before { + content: "\f169"; +} +.icon-youtube-play:before { + content: "\f16a"; +} +.icon-dropbox:before { + content: "\f16b"; +} +.icon-stack-overflow:before { + content: "\f16c"; +} +.icon-instagram:before { + content: "\f16d"; +} +.icon-flickr:before { + content: "\f16e"; +} +.icon-adn:before { + content: "\f170"; +} +.icon-bitbucket:before { + content: "\f171"; +} +.icon-bitbucket-square:before { + content: "\f172"; +} +.icon-tumblr:before { + content: "\f173"; +} +.icon-tumblr-square:before { + content: "\f174"; +} +.icon-long-arrow-down:before { + content: "\f175"; +} +.icon-long-arrow-up:before { + content: "\f176"; +} +.icon-long-arrow-left:before { + content: "\f177"; +} +.icon-long-arrow-right:before { + content: "\f178"; +} +.icon-apple:before { + content: "\f179"; +} +.icon-windows:before { + content: "\f17a"; +} +.icon-android:before { + content: "\f17b"; +} +.icon-linux:before { + content: "\f17c"; +} +.icon-dribbble:before { + content: "\f17d"; +} +.icon-skype:before { + content: "\f17e"; +} +.icon-foursquare:before { + content: "\f180"; +} +.icon-trello:before { + content: "\f181"; +} +.icon-female:before { + content: "\f182"; +} +.icon-male:before { + content: "\f183"; +} +.icon-gittip:before, +.icon-gratipay:before { + content: "\f184"; +} +.icon-sun-o:before { + content: "\f185"; +} +.icon-moon-o:before { + content: "\f186"; +} +.icon-archive:before { + content: "\f187"; +} +.icon-bug:before { + content: "\f188"; +} +.icon-vk:before { + content: "\f189"; +} +.icon-weibo:before { + content: "\f18a"; +} +.icon-renren:before { + content: "\f18b"; +} +.icon-pagelines:before { + content: "\f18c"; +} +.icon-stack-exchange:before { + content: "\f18d"; +} +.icon-arrow-circle-o-right:before { + content: "\f18e"; +} +.icon-arrow-circle-o-left:before { + content: "\f190"; +} +.icon-toggle-left:before, +.icon-caret-square-o-left:before { + content: "\f191"; +} +.icon-dot-circle-o:before { + content: "\f192"; +} +.icon-wheelchair:before { + content: "\f193"; +} +.icon-vimeo-square:before { + content: "\f194"; +} +.icon-turkish-lira:before, +.icon-try:before { + content: "\f195"; +} +.icon-plus-square-o:before { + content: "\f196"; +} +.icon-space-shuttle:before { + content: "\f197"; +} +.icon-slack:before { + content: "\f198"; +} +.icon-envelope-square:before { + content: "\f199"; +} +.icon-wordpress:before { + content: "\f19a"; +} +.icon-openid:before { + content: "\f19b"; +} +.icon-institution:before, +.icon-bank:before, +.icon-university:before { + content: "\f19c"; +} +.icon-mortar-board:before, +.icon-graduation-cap:before { + content: "\f19d"; +} +.icon-yahoo:before { + content: "\f19e"; +} +.icon-google:before { + content: "\f1a0"; +} +.icon-reddit:before { + content: "\f1a1"; +} +.icon-reddit-square:before { + content: "\f1a2"; +} +.icon-stumbleupon-circle:before { + content: "\f1a3"; +} +.icon-stumbleupon:before { + content: "\f1a4"; +} +.icon-delicious:before { + content: "\f1a5"; +} +.icon-digg:before { + content: "\f1a6"; +} +.icon-pied-piper:before { + content: "\f1a7"; +} +.icon-pied-piper-alt:before { + content: "\f1a8"; +} +.icon-drupal:before { + content: "\f1a9"; +} +.icon-joomla:before { + content: "\f1aa"; +} +.icon-language:before { + content: "\f1ab"; +} +.icon-fax:before { + content: "\f1ac"; +} +.icon-building:before { + content: "\f1ad"; +} +.icon-child:before { + content: "\f1ae"; +} +.icon-paw:before { + content: "\f1b0"; +} +.icon-spoon:before { + content: "\f1b1"; +} +.icon-cube:before { + content: "\f1b2"; +} +.icon-cubes:before { + content: "\f1b3"; +} +.icon-behance:before { + content: "\f1b4"; +} +.icon-behance-square:before { + content: "\f1b5"; +} +.icon-steam:before { + content: "\f1b6"; +} +.icon-steam-square:before { + content: "\f1b7"; +} +.icon-recycle:before { + content: "\f1b8"; +} +.icon-automobile:before, +.icon-car:before { + content: "\f1b9"; +} +.icon-cab:before, +.icon-taxi:before { + content: "\f1ba"; +} +.icon-tree:before { + content: "\f1bb"; +} +.icon-spotify:before { + content: "\f1bc"; +} +.icon-deviantart:before { + content: "\f1bd"; +} +.icon-soundcloud:before { + content: "\f1be"; +} +.icon-database:before { + content: "\f1c0"; +} +.icon-file-pdf-o:before { + content: "\f1c1"; +} +.icon-file-word-o:before { + content: "\f1c2"; +} +.icon-file-excel-o:before { + content: "\f1c3"; +} +.icon-file-powerpoint-o:before { + content: "\f1c4"; +} +.icon-file-photo-o:before, +.icon-file-picture-o:before, +.icon-file-image-o:before { + content: "\f1c5"; +} +.icon-file-zip-o:before, +.icon-file-archive-o:before { + content: "\f1c6"; +} +.icon-file-sound-o:before, +.icon-file-audio-o:before { + content: "\f1c7"; +} +.icon-file-movie-o:before, +.icon-file-video-o:before { + content: "\f1c8"; +} +.icon-file-code-o:before { + content: "\f1c9"; +} +.icon-vine:before { + content: "\f1ca"; +} +.icon-codepen:before { + content: "\f1cb"; +} +.icon-jsfiddle:before { + content: "\f1cc"; +} +.icon-life-bouy:before, +.icon-life-buoy:before, +.icon-life-saver:before, +.icon-support:before, +.icon-life-ring:before { + content: "\f1cd"; +} +.icon-circle-o-notch:before { + content: "\f1ce"; +} +.icon-ra:before, +.icon-rebel:before { + content: "\f1d0"; +} +.icon-ge:before, +.icon-empire:before { + content: "\f1d1"; +} +.icon-git-square:before { + content: "\f1d2"; +} +.icon-git:before { + content: "\f1d3"; +} +.icon-hacker-news:before { + content: "\f1d4"; +} +.icon-tencent-weibo:before { + content: "\f1d5"; +} +.icon-qq:before { + content: "\f1d6"; +} +.icon-wechat:before, +.icon-weixin:before { + content: "\f1d7"; +} +.icon-send:before, +.icon-paper-plane:before { + content: "\f1d8"; +} +.icon-send-o:before, +.icon-paper-plane-o:before { + content: "\f1d9"; +} +.icon-history:before { + content: "\f1da"; +} +.icon-genderless:before, +.icon-circle-thin:before { + content: "\f1db"; +} +.icon-header:before { + content: "\f1dc"; +} +.icon-paragraph:before { + content: "\f1dd"; +} +.icon-sliders:before { + content: "\f1de"; +} +.icon-share-alt:before { + content: "\f1e0"; +} +.icon-share-alt-square:before { + content: "\f1e1"; +} +.icon-bomb:before { + content: "\f1e2"; +} +.icon-soccer-ball-o:before, +.icon-futbol-o:before { + content: "\f1e3"; +} +.icon-tty:before { + content: "\f1e4"; +} +.icon-binoculars:before { + content: "\f1e5"; +} +.icon-plug:before { + content: "\f1e6"; +} +.icon-slideshare:before { + content: "\f1e7"; +} +.icon-twitch:before { + content: "\f1e8"; +} +.icon-yelp:before { + content: "\f1e9"; +} +.icon-newspaper-o:before { + content: "\f1ea"; +} +.icon-wifi:before { + content: "\f1eb"; +} +.icon-calculator:before { + content: "\f1ec"; +} +.icon-paypal:before { + content: "\f1ed"; +} +.icon-google-wallet:before { + content: "\f1ee"; +} +.icon-cc-visa:before { + content: "\f1f0"; +} +.icon-cc-mastercard:before { + content: "\f1f1"; +} +.icon-cc-discover:before { + content: "\f1f2"; +} +.icon-cc-amex:before { + content: "\f1f3"; +} +.icon-cc-paypal:before { + content: "\f1f4"; +} +.icon-cc-stripe:before { + content: "\f1f5"; +} +.icon-bell-slash:before { + content: "\f1f6"; +} +.icon-bell-slash-o:before { + content: "\f1f7"; +} +.icon-trash:before { + content: "\f1f8"; +} +.icon-copyright:before { + content: "\f1f9"; +} +.icon-at:before { + content: "\f1fa"; +} +.icon-eyedropper:before { + content: "\f1fb"; +} +.icon-paint-brush:before { + content: "\f1fc"; +} +.icon-birthday-cake:before { + content: "\f1fd"; +} +.icon-area-chart:before { + content: "\f1fe"; +} +.icon-pie-chart:before { + content: "\f200"; +} +.icon-line-chart:before { + content: "\f201"; +} +.icon-lastfm:before { + content: "\f202"; +} +.icon-lastfm-square:before { + content: "\f203"; +} +.icon-toggle-off:before { + content: "\f204"; +} +.icon-toggle-on:before { + content: "\f205"; +} +.icon-bicycle:before { + content: "\f206"; +} +.icon-bus:before { + content: "\f207"; +} +.icon-ioxhost:before { + content: "\f208"; +} +.icon-angellist:before { + content: "\f209"; +} +.icon-cc:before { + content: "\f20a"; +} +.icon-shekel:before, +.icon-sheqel:before, +.icon-ils:before { + content: "\f20b"; +} +.icon-meanpath:before { + content: "\f20c"; +} +.icon-buysellads:before { + content: "\f20d"; +} +.icon-connectdevelop:before { + content: "\f20e"; +} +.icon-dashcube:before { + content: "\f210"; +} +.icon-forumbee:before { + content: "\f211"; +} +.icon-leanpub:before { + content: "\f212"; +} +.icon-sellsy:before { + content: "\f213"; +} +.icon-shirtsinbulk:before { + content: "\f214"; +} +.icon-simplybuilt:before { + content: "\f215"; +} +.icon-skyatlas:before { + content: "\f216"; +} +.icon-cart-plus:before { + content: "\f217"; +} +.icon-cart-arrow-down:before { + content: "\f218"; +} +.icon-diamond:before { + content: "\f219"; +} +.icon-ship:before { + content: "\f21a"; +} +.icon-user-secret:before { + content: "\f21b"; +} +.icon-motorcycle:before { + content: "\f21c"; +} +.icon-street-view:before { + content: "\f21d"; +} +.icon-heartbeat:before { + content: "\f21e"; +} +.icon-venus:before { + content: "\f221"; +} +.icon-mars:before { + content: "\f222"; +} +.icon-mercury:before { + content: "\f223"; +} +.icon-transgender:before { + content: "\f224"; +} +.icon-transgender-alt:before { + content: "\f225"; +} +.icon-venus-double:before { + content: "\f226"; +} +.icon-mars-double:before { + content: "\f227"; +} +.icon-venus-mars:before { + content: "\f228"; +} +.icon-mars-stroke:before { + content: "\f229"; +} +.icon-mars-stroke-v:before { + content: "\f22a"; +} +.icon-mars-stroke-h:before { + content: "\f22b"; +} +.icon-neuter:before { + content: "\f22c"; +} +.icon-facebook-official:before { + content: "\f230"; +} +.icon-pinterest-p:before { + content: "\f231"; +} +.icon-whatsapp:before { + content: "\f232"; +} +.icon-server:before { + content: "\f233"; +} +.icon-user-plus:before { + content: "\f234"; +} +.icon-user-times:before { + content: "\f235"; +} +.icon-hotel:before, +.icon-bed:before { + content: "\f236"; +} +.icon-viacoin:before { + content: "\f237"; +} +.icon-train:before { + content: "\f238"; +} +.icon-subway:before { + content: "\f239"; +} +.icon-medium:before { + content: "\f23a"; +} diff --git a/assets/css/old/font-awesome-ie7.min.css b/assets/css/old/font-awesome-ie7.min.css new file mode 100644 index 00000000..d3dae63b --- /dev/null +++ b/assets/css/old/font-awesome-ie7.min.css @@ -0,0 +1,384 @@ +.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle;} +.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%;} +.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px;} +.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit;} +.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em;} +a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} +.icon-glass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-music{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-search{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-envelope-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-heart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-user{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-film{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-th-large{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-th{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-th-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ok{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-remove{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-zoom-in{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-zoom-out{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cog{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-time{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-road{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-download-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-inbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-play-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-repeat{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rotate-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-refresh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-lock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-headphones{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-volume-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-volume-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-volume-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-qrcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-barcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tags{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-book{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bookmark{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-print{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-camera{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-font{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bold{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-italic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-text-height{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-text-width{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-center{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-align-justify{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-indent-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-indent-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-facetime-video{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-picture{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pencil{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-map-marker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-adjust{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tint{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-edit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-share{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-move{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-step-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fast-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pause{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-stop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fast-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-step-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eject{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-minus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-remove-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ok-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-question-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-info-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-screenshot{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-remove-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ok-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ban-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-share-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mail-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-small{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-asterisk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-exclamation-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gift{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-leaf{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fire{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eye-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eye-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-warning-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plane{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-calendar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-random{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comment{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-magnet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-retweet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-shopping-cart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-resize-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bar-chart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-twitter-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-facebook-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cogs{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-half{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-heart-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-signout{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-linkedin-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pushpin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-external-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-signin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-trophy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-github-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-upload-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-lemon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unchecked{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bookmark-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-phone-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-twitter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-facebook{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-github{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unlock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-credit-card{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rss{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hdd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bullhorn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bell{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-certificate{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hand-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-globe{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-wrench{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tasks{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-filter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-briefcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fullscreen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-group{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cloud{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-beaker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cut{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-copy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-paper-clip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-paperclip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-save{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sign-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-reorder{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list-ul{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-list-ol{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-strikethrough{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-underline{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-table{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-magic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-truck{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pinterest{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-pinterest-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-google-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-google-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-money{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-caret-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-columns{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-envelope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-linkedin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-undo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rotate-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-legal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dashboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comment-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-comments-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bolt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sitemap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-umbrella{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-paste{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-lightbulb{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-exchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cloud-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cloud-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-user-md{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-stethoscope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-suitcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bell-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-coffee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-food{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file-text-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-building{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-hospital{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ambulance{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-medkit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fighter-jet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-beer{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-h-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-plus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-double-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-desktop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-laptop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tablet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mobile-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-quote-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-quote-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-spinner{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mail-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-github-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-close-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-folder-open-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-expand-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-collapse-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-smile{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-frown{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-meh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gamepad{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-keyboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flag-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flag-checkered{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-terminal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-code{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-mail-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-half-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-star-half-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-location-arrow{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-crop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-code-fork{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unlink{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-question{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-info{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-exclamation{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-superscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-subscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eraser{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-puzzle-piece{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-microphone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-microphone-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-shield{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-calendar-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-fire-extinguisher{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rocket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-maxcdn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-chevron-sign-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-html5{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-css3{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-anchor{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-unlock-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bullseye{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ellipsis-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ellipsis-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rss-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-play-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-ticket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-minus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-level-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-level-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-check-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-edit-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-external-link-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-share-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-compass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-collapse{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-collapse-top{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-expand{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-eur{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-euro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gbp{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-usd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dollar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-inr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-rupee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-jpy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-yen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-cny{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-renminbi{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-krw{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-won{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-btc{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bitcoin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-file-text{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-alphabet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-alphabet-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-attributes{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-attributes-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-order{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sort-by-order-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-thumbs-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-youtube-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-youtube{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-xing{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-xing-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-youtube-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dropbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-stackexchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-instagram{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-flickr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-adn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bitbucket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bitbucket-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tumblr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-tumblr-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-long-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-apple{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-windows{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-android{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-linux{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-dribbble{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-skype{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-foursquare{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-trello{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-female{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-male{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-gittip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-sun{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-moon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-archive{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-bug{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} diff --git a/assets/css/old/font-awesome.min.css b/assets/css/old/font-awesome.min.css new file mode 100644 index 00000000..866437fa --- /dev/null +++ b/assets/css/old/font-awesome.min.css @@ -0,0 +1,403 @@ +@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} +a [class^="icon-"],a [class*=" icon-"]{display:inline;} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} +.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} +.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none;} +.icon-muted{color:#eeeeee;} +.icon-light{color:#ffffff;} +.icon-dark{color:#333333;} +.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} +.pull-right{float:right;} +.pull-left{float:left;} +[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;} +[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;} +.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;} +.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} +a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;} +@-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);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} +.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);} +.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);} +a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} +.icon-glass:before{content:"\f000";} +.icon-music:before{content:"\f001";} +.icon-search:before{content:"\f002";} +.icon-envelope-alt:before{content:"\f003";} +.icon-heart:before{content:"\f004";} +.icon-star:before{content:"\f005";} +.icon-star-empty:before{content:"\f006";} +.icon-user:before{content:"\f007";} +.icon-film:before{content:"\f008";} +.icon-th-large:before{content:"\f009";} +.icon-th:before{content:"\f00a";} +.icon-th-list:before{content:"\f00b";} +.icon-ok:before{content:"\f00c";} +.icon-remove:before{content:"\f00d";} +.icon-zoom-in:before{content:"\f00e";} +.icon-zoom-out:before{content:"\f010";} +.icon-power-off:before,.icon-off:before{content:"\f011";} +.icon-signal:before{content:"\f012";} +.icon-gear:before,.icon-cog:before{content:"\f013";} +.icon-trash:before{content:"\f014";} +.icon-home:before{content:"\f015";} +.icon-file-alt:before{content:"\f016";} +.icon-time:before{content:"\f017";} +.icon-road:before{content:"\f018";} +.icon-download-alt:before{content:"\f019";} +.icon-download:before{content:"\f01a";} +.icon-upload:before{content:"\f01b";} +.icon-inbox:before{content:"\f01c";} +.icon-play-circle:before{content:"\f01d";} +.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} +.icon-refresh:before{content:"\f021";} +.icon-list-alt:before{content:"\f022";} +.icon-lock:before{content:"\f023";} +.icon-flag:before{content:"\f024";} +.icon-headphones:before{content:"\f025";} +.icon-volume-off:before{content:"\f026";} +.icon-volume-down:before{content:"\f027";} +.icon-volume-up:before{content:"\f028";} +.icon-qrcode:before{content:"\f029";} +.icon-barcode:before{content:"\f02a";} +.icon-tag:before{content:"\f02b";} +.icon-tags:before{content:"\f02c";} +.icon-book:before{content:"\f02d";} +.icon-bookmark:before{content:"\f02e";} +.icon-print:before{content:"\f02f";} +.icon-camera:before{content:"\f030";} +.icon-font:before{content:"\f031";} +.icon-bold:before{content:"\f032";} +.icon-italic:before{content:"\f033";} +.icon-text-height:before{content:"\f034";} +.icon-text-width:before{content:"\f035";} +.icon-align-left:before{content:"\f036";} +.icon-align-center:before{content:"\f037";} +.icon-align-right:before{content:"\f038";} +.icon-align-justify:before{content:"\f039";} +.icon-list:before{content:"\f03a";} +.icon-indent-left:before{content:"\f03b";} +.icon-indent-right:before{content:"\f03c";} +.icon-facetime-video:before{content:"\f03d";} +.icon-picture:before{content:"\f03e";} +.icon-pencil:before{content:"\f040";} +.icon-map-marker:before{content:"\f041";} +.icon-adjust:before{content:"\f042";} +.icon-tint:before{content:"\f043";} +.icon-edit:before{content:"\f044";} +.icon-share:before{content:"\f045";} +.icon-check:before{content:"\f046";} +.icon-move:before{content:"\f047";} +.icon-step-backward:before{content:"\f048";} +.icon-fast-backward:before{content:"\f049";} +.icon-backward:before{content:"\f04a";} +.icon-play:before{content:"\f04b";} +.icon-pause:before{content:"\f04c";} +.icon-stop:before{content:"\f04d";} +.icon-forward:before{content:"\f04e";} +.icon-fast-forward:before{content:"\f050";} +.icon-step-forward:before{content:"\f051";} +.icon-eject:before{content:"\f052";} +.icon-chevron-left:before{content:"\f053";} +.icon-chevron-right:before{content:"\f054";} +.icon-plus-sign:before{content:"\f055";} +.icon-minus-sign:before{content:"\f056";} +.icon-remove-sign:before{content:"\f057";} +.icon-ok-sign:before{content:"\f058";} +.icon-question-sign:before{content:"\f059";} +.icon-info-sign:before{content:"\f05a";} +.icon-screenshot:before{content:"\f05b";} +.icon-remove-circle:before{content:"\f05c";} +.icon-ok-circle:before{content:"\f05d";} +.icon-ban-circle:before{content:"\f05e";} +.icon-arrow-left:before{content:"\f060";} +.icon-arrow-right:before{content:"\f061";} +.icon-arrow-up:before{content:"\f062";} +.icon-arrow-down:before{content:"\f063";} +.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} +.icon-resize-full:before{content:"\f065";} +.icon-resize-small:before{content:"\f066";} +.icon-plus:before{content:"\f067";} +.icon-minus:before{content:"\f068";} +.icon-asterisk:before{content:"\f069";} +.icon-exclamation-sign:before{content:"\f06a";} +.icon-gift:before{content:"\f06b";} +.icon-leaf:before{content:"\f06c";} +.icon-fire:before{content:"\f06d";} +.icon-eye-open:before{content:"\f06e";} +.icon-eye-close:before{content:"\f070";} +.icon-warning-sign:before{content:"\f071";} +.icon-plane:before{content:"\f072";} +.icon-calendar:before{content:"\f073";} +.icon-random:before{content:"\f074";} +.icon-comment:before{content:"\f075";} +.icon-magnet:before{content:"\f076";} +.icon-chevron-up:before{content:"\f077";} +.icon-chevron-down:before{content:"\f078";} +.icon-retweet:before{content:"\f079";} +.icon-shopping-cart:before{content:"\f07a";} +.icon-folder-close:before{content:"\f07b";} +.icon-folder-open:before{content:"\f07c";} +.icon-resize-vertical:before{content:"\f07d";} +.icon-resize-horizontal:before{content:"\f07e";} +.icon-bar-chart:before{content:"\f080";} +.icon-twitter-sign:before{content:"\f081";} +.icon-facebook-sign:before{content:"\f082";} +.icon-camera-retro:before{content:"\f083";} +.icon-key:before{content:"\f084";} +.icon-gears:before,.icon-cogs:before{content:"\f085";} +.icon-comments:before{content:"\f086";} +.icon-thumbs-up-alt:before{content:"\f087";} +.icon-thumbs-down-alt:before{content:"\f088";} +.icon-star-half:before{content:"\f089";} +.icon-heart-empty:before{content:"\f08a";} +.icon-signout:before{content:"\f08b";} +.icon-linkedin-sign:before{content:"\f08c";} +.icon-pushpin:before{content:"\f08d";} +.icon-external-link:before{content:"\f08e";} +.icon-signin:before{content:"\f090";} +.icon-trophy:before{content:"\f091";} +.icon-github-sign:before{content:"\f092";} +.icon-upload-alt:before{content:"\f093";} +.icon-lemon:before{content:"\f094";} +.icon-phone:before{content:"\f095";} +.icon-unchecked:before,.icon-check-empty:before{content:"\f096";} +.icon-bookmark-empty:before{content:"\f097";} +.icon-phone-sign:before{content:"\f098";} +.icon-twitter:before{content:"\f099";} +.icon-facebook:before{content:"\f09a";} +.icon-github:before{content:"\f09b";} +.icon-unlock:before{content:"\f09c";} +.icon-credit-card:before{content:"\f09d";} +.icon-rss:before{content:"\f09e";} +.icon-hdd:before{content:"\f0a0";} +.icon-bullhorn:before{content:"\f0a1";} +.icon-bell:before{content:"\f0a2";} +.icon-certificate:before{content:"\f0a3";} +.icon-hand-right:before{content:"\f0a4";} +.icon-hand-left:before{content:"\f0a5";} +.icon-hand-up:before{content:"\f0a6";} +.icon-hand-down:before{content:"\f0a7";} +.icon-circle-arrow-left:before{content:"\f0a8";} +.icon-circle-arrow-right:before{content:"\f0a9";} +.icon-circle-arrow-up:before{content:"\f0aa";} +.icon-circle-arrow-down:before{content:"\f0ab";} +.icon-globe:before{content:"\f0ac";} +.icon-wrench:before{content:"\f0ad";} +.icon-tasks:before{content:"\f0ae";} +.icon-filter:before{content:"\f0b0";} +.icon-briefcase:before{content:"\f0b1";} +.icon-fullscreen:before{content:"\f0b2";} +.icon-group:before{content:"\f0c0";} +.icon-link:before{content:"\f0c1";} +.icon-cloud:before{content:"\f0c2";} +.icon-beaker:before{content:"\f0c3";} +.icon-cut:before{content:"\f0c4";} +.icon-copy:before{content:"\f0c5";} +.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";} +.icon-save:before{content:"\f0c7";} +.icon-sign-blank:before{content:"\f0c8";} +.icon-reorder:before{content:"\f0c9";} +.icon-list-ul:before{content:"\f0ca";} +.icon-list-ol:before{content:"\f0cb";} +.icon-strikethrough:before{content:"\f0cc";} +.icon-underline:before{content:"\f0cd";} +.icon-table:before{content:"\f0ce";} +.icon-magic:before{content:"\f0d0";} +.icon-truck:before{content:"\f0d1";} +.icon-pinterest:before{content:"\f0d2";} +.icon-pinterest-sign:before{content:"\f0d3";} +.icon-google-plus-sign:before{content:"\f0d4";} +.icon-google-plus:before{content:"\f0d5";} +.icon-money:before{content:"\f0d6";} +.icon-caret-down:before{content:"\f0d7";} +.icon-caret-up:before{content:"\f0d8";} +.icon-caret-left:before{content:"\f0d9";} +.icon-caret-right:before{content:"\f0da";} +.icon-columns:before{content:"\f0db";} +.icon-sort:before{content:"\f0dc";} +.icon-sort-down:before{content:"\f0dd";} +.icon-sort-up:before{content:"\f0de";} +.icon-envelope:before{content:"\f0e0";} +.icon-linkedin:before{content:"\f0e1";} +.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";} +.icon-legal:before{content:"\f0e3";} +.icon-dashboard:before{content:"\f0e4";} +.icon-comment-alt:before{content:"\f0e5";} +.icon-comments-alt:before{content:"\f0e6";} +.icon-bolt:before{content:"\f0e7";} +.icon-sitemap:before{content:"\f0e8";} +.icon-umbrella:before{content:"\f0e9";} +.icon-paste:before{content:"\f0ea";} +.icon-lightbulb:before{content:"\f0eb";} +.icon-exchange:before{content:"\f0ec";} +.icon-cloud-download:before{content:"\f0ed";} +.icon-cloud-upload:before{content:"\f0ee";} +.icon-user-md:before{content:"\f0f0";} +.icon-stethoscope:before{content:"\f0f1";} +.icon-suitcase:before{content:"\f0f2";} +.icon-bell-alt:before{content:"\f0f3";} +.icon-coffee:before{content:"\f0f4";} +.icon-food:before{content:"\f0f5";} +.icon-file-text-alt:before{content:"\f0f6";} +.icon-building:before{content:"\f0f7";} +.icon-hospital:before{content:"\f0f8";} +.icon-ambulance:before{content:"\f0f9";} +.icon-medkit:before{content:"\f0fa";} +.icon-fighter-jet:before{content:"\f0fb";} +.icon-beer:before{content:"\f0fc";} +.icon-h-sign:before{content:"\f0fd";} +.icon-plus-sign-alt:before{content:"\f0fe";} +.icon-double-angle-left:before{content:"\f100";} +.icon-double-angle-right:before{content:"\f101";} +.icon-double-angle-up:before{content:"\f102";} +.icon-double-angle-down:before{content:"\f103";} +.icon-angle-left:before{content:"\f104";} +.icon-angle-right:before{content:"\f105";} +.icon-angle-up:before{content:"\f106";} +.icon-angle-down:before{content:"\f107";} +.icon-desktop:before{content:"\f108";} +.icon-laptop:before{content:"\f109";} +.icon-tablet:before{content:"\f10a";} +.icon-mobile-phone:before{content:"\f10b";} +.icon-circle-blank:before{content:"\f10c";} +.icon-quote-left:before{content:"\f10d";} +.icon-quote-right:before{content:"\f10e";} +.icon-spinner:before{content:"\f110";} +.icon-circle:before{content:"\f111";} +.icon-mail-reply:before,.icon-reply:before{content:"\f112";} +.icon-github-alt:before{content:"\f113";} +.icon-folder-close-alt:before{content:"\f114";} +.icon-folder-open-alt:before{content:"\f115";} +.icon-expand-alt:before{content:"\f116";} +.icon-collapse-alt:before{content:"\f117";} +.icon-smile:before{content:"\f118";} +.icon-frown:before{content:"\f119";} +.icon-meh:before{content:"\f11a";} +.icon-gamepad:before{content:"\f11b";} +.icon-keyboard:before{content:"\f11c";} +.icon-flag-alt:before{content:"\f11d";} +.icon-flag-checkered:before{content:"\f11e";} +.icon-terminal:before{content:"\f120";} +.icon-code:before{content:"\f121";} +.icon-reply-all:before{content:"\f122";} +.icon-mail-reply-all:before{content:"\f122";} +.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} +.icon-location-arrow:before{content:"\f124";} +.icon-crop:before{content:"\f125";} +.icon-code-fork:before{content:"\f126";} +.icon-unlink:before{content:"\f127";} +.icon-question:before{content:"\f128";} +.icon-info:before{content:"\f129";} +.icon-exclamation:before{content:"\f12a";} +.icon-superscript:before{content:"\f12b";} +.icon-subscript:before{content:"\f12c";} +.icon-eraser:before{content:"\f12d";} +.icon-puzzle-piece:before{content:"\f12e";} +.icon-microphone:before{content:"\f130";} +.icon-microphone-off:before{content:"\f131";} +.icon-shield:before{content:"\f132";} +.icon-calendar-empty:before{content:"\f133";} +.icon-fire-extinguisher:before{content:"\f134";} +.icon-rocket:before{content:"\f135";} +.icon-maxcdn:before{content:"\f136";} +.icon-chevron-sign-left:before{content:"\f137";} +.icon-chevron-sign-right:before{content:"\f138";} +.icon-chevron-sign-up:before{content:"\f139";} +.icon-chevron-sign-down:before{content:"\f13a";} +.icon-html5:before{content:"\f13b";} +.icon-css3:before{content:"\f13c";} +.icon-anchor:before{content:"\f13d";} +.icon-unlock-alt:before{content:"\f13e";} +.icon-bullseye:before{content:"\f140";} +.icon-ellipsis-horizontal:before{content:"\f141";} +.icon-ellipsis-vertical:before{content:"\f142";} +.icon-rss-sign:before{content:"\f143";} +.icon-play-sign:before{content:"\f144";} +.icon-ticket:before{content:"\f145";} +.icon-minus-sign-alt:before{content:"\f146";} +.icon-check-minus:before{content:"\f147";} +.icon-level-up:before{content:"\f148";} +.icon-level-down:before{content:"\f149";} +.icon-check-sign:before{content:"\f14a";} +.icon-edit-sign:before{content:"\f14b";} +.icon-external-link-sign:before{content:"\f14c";} +.icon-share-sign:before{content:"\f14d";} +.icon-compass:before{content:"\f14e";} +.icon-collapse:before{content:"\f150";} +.icon-collapse-top:before{content:"\f151";} +.icon-expand:before{content:"\f152";} +.icon-euro:before,.icon-eur:before{content:"\f153";} +.icon-gbp:before{content:"\f154";} +.icon-dollar:before,.icon-usd:before{content:"\f155";} +.icon-rupee:before,.icon-inr:before{content:"\f156";} +.icon-yen:before,.icon-jpy:before{content:"\f157";} +.icon-renminbi:before,.icon-cny:before{content:"\f158";} +.icon-won:before,.icon-krw:before{content:"\f159";} +.icon-bitcoin:before,.icon-btc:before{content:"\f15a";} +.icon-file:before{content:"\f15b";} +.icon-file-text:before{content:"\f15c";} +.icon-sort-by-alphabet:before{content:"\f15d";} +.icon-sort-by-alphabet-alt:before{content:"\f15e";} +.icon-sort-by-attributes:before{content:"\f160";} +.icon-sort-by-attributes-alt:before{content:"\f161";} +.icon-sort-by-order:before{content:"\f162";} +.icon-sort-by-order-alt:before{content:"\f163";} +.icon-thumbs-up:before{content:"\f164";} +.icon-thumbs-down:before{content:"\f165";} +.icon-youtube-sign:before{content:"\f166";} +.icon-youtube:before{content:"\f167";} +.icon-xing:before{content:"\f168";} +.icon-xing-sign:before{content:"\f169";} +.icon-youtube-play:before{content:"\f16a";} +.icon-dropbox:before{content:"\f16b";} +.icon-stackexchange:before{content:"\f16c";} +.icon-instagram:before{content:"\f16d";} +.icon-flickr:before{content:"\f16e";} +.icon-adn:before{content:"\f170";} +.icon-bitbucket:before{content:"\f171";} +.icon-bitbucket-sign:before{content:"\f172";} +.icon-tumblr:before{content:"\f173";} +.icon-tumblr-sign:before{content:"\f174";} +.icon-long-arrow-down:before{content:"\f175";} +.icon-long-arrow-up:before{content:"\f176";} +.icon-long-arrow-left:before{content:"\f177";} +.icon-long-arrow-right:before{content:"\f178";} +.icon-apple:before{content:"\f179";} +.icon-windows:before{content:"\f17a";} +.icon-android:before{content:"\f17b";} +.icon-linux:before{content:"\f17c";} +.icon-dribbble:before{content:"\f17d";} +.icon-skype:before{content:"\f17e";} +.icon-foursquare:before{content:"\f180";} +.icon-trello:before{content:"\f181";} +.icon-female:before{content:"\f182";} +.icon-male:before{content:"\f183";} +.icon-gittip:before{content:"\f184";} +.icon-sun:before{content:"\f185";} +.icon-moon:before{content:"\f186";} +.icon-archive:before{content:"\f187";} +.icon-bug:before{content:"\f188";} +.icon-vk:before{content:"\f189";} +.icon-weibo:before{content:"\f18a";} +.icon-renren:before{content:"\f18b";} diff --git a/assets/font/fontawesome-webfont.woff2 b/assets/font/fontawesome-webfont.woff2 new file mode 100644 index 0000000000000000000000000000000000000000..3311d585145b1cc1b9581e914acbb32d8542b4f5 GIT binary patch literal 56780 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 literal 0 HcmV?d00001 diff --git a/inc/part/utente.menu.php b/inc/part/utente.menu.php index d34a4daf..ec4093c2 100644 --- a/inc/part/utente.menu.php +++ b/inc/part/utente.menu.php @@ -117,9 +117,12 @@ 'utente.titoli&t=3' => ' Titoli di studio', 'utente.titoli&t=4' => ' Titoli CRI' ], + 'Carriera' => [ + 'utente.corsi' => 'Corsi', + ], 'Statistiche' => [ 'utente.statistiche.volontari' => ' Volontari' -// 'utente.statistiche.attivita' => ' Attività' + //'utente.statistiche.attivita' => ' Attività' ] ]; diff --git a/inc/utente.corsi.php b/inc/utente.corsi.php new file mode 100644 index 00000000..ecb12d79 --- /dev/null +++ b/inc/utente.corsi.php @@ -0,0 +1,107 @@ + +
    +
    + +
    +
    + + + + + +

    Titoli di Studio

    + + + +
    +
    + titoliTipo($t); ?> + titoliTipo($t); ?> +

    Nel mio curriculum inseriti

    + + + tConferma) { ?>class="warning"> + + + tConferma) { ?> + + + + + + + + + + + +
    titolo()->nome; ?>titolo()->tipo][0]; ?> + + Confermato + + Pendente + inizio ) { ?> + + inizio); ?> +
    + + fine ) { ?> + + fine); ?> +
    + + luogo ) { ?> + + luogo; ?> +
    + + codice ) { ?> + + codice; ?> +
    + + +
    +
    + tConferma || $titolo->titolo()->tipo == TITOLO_PATENTE_CIVILE ) { ?> + + + + + + + +
    +
    + +
    +
    + + + + + + + + +
    +
    From ea3b2a980049563bf82630847ceebaae241f505e Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Sun, 17 May 2015 12:01:57 +0200 Subject: [PATCH 007/244] Aggiornato FontAwesome e testata la minimizzazione delle risorse --- assets/css/font-awesome-ie7.min.css | 1 + assets/css/font-awesome.css | 6 + assets/css/font-awesome.min.css | 3 +- assets/css/old/font-awesome-ie7.min.css | 384 ---- assets/css/old/font-awesome.min.css | 403 ---- assets/font/FontAwesome.otf | Bin 61896 -> 93888 bytes assets/font/fontawesome-webfont.eot | Bin 37405 -> 60767 bytes assets/font/fontawesome-webfont.svg | 240 +- assets/font/fontawesome-webfont.ttf | Bin 79076 -> 122092 bytes assets/font/fontawesome-webfont.woff | Bin 43572 -> 71508 bytes assets/min/20150517/build/build.css | 1240 +++++++++++ assets/min/20150517/build/build.js | 1928 +++++++++++++++++ assets/min/20150517/build/build.js.log | 3 + assets/min/20150517/build/signature | 2 + assets/min/20150517/css.build | 5 + assets/min/20150517/js.build | 11 + inc/part/utente.menu.php | 2 +- index.php | 6 +- ...minifica-assets.php => minifica-assets.php | 3 +- 19 files changed, 3407 insertions(+), 830 deletions(-) delete mode 100644 assets/css/old/font-awesome-ie7.min.css delete mode 100644 assets/css/old/font-awesome.min.css mode change 100755 => 100644 assets/font/fontawesome-webfont.eot mode change 100755 => 100644 assets/font/fontawesome-webfont.svg mode change 100755 => 100644 assets/font/fontawesome-webfont.ttf mode change 100755 => 100644 assets/font/fontawesome-webfont.woff create mode 100644 assets/min/20150517/build/build.css create mode 100644 assets/min/20150517/build/build.js create mode 100644 assets/min/20150517/build/build.js.log create mode 100644 assets/min/20150517/build/signature create mode 100644 assets/min/20150517/css.build create mode 100644 assets/min/20150517/js.build rename scripts/minifica-assets.php => minifica-assets.php (98%) diff --git a/assets/css/font-awesome-ie7.min.css b/assets/css/font-awesome-ie7.min.css index d3dae63b..2fb342f8 100644 --- a/assets/css/font-awesome-ie7.min.css +++ b/assets/css/font-awesome-ie7.min.css @@ -382,3 +382,4 @@ a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} .icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} .icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} +.icon-graduation-cap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} \ No newline at end of file diff --git a/assets/css/font-awesome.css b/assets/css/font-awesome.css index 7cd79cb5..779d2565 100644 --- a/assets/css/font-awesome.css +++ b/assets/css/font-awesome.css @@ -1799,3 +1799,9 @@ .icon-medium:before { content: "\f23a"; } +.icon-medium:before { + content: "\f23a"; +} +.icon-graduation-cap:before { + content: "\f19d"; +} \ No newline at end of file diff --git a/assets/css/font-awesome.min.css b/assets/css/font-awesome.min.css index 866437fa..6cc12bd6 100644 --- a/assets/css/font-awesome.min.css +++ b/assets/css/font-awesome.min.css @@ -1,4 +1,4 @@ -@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} +@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=4.3.0');src:url('../font/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../font/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=4.3.0') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} [class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} .icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} a [class^="icon-"],a [class*=" icon-"]{display:inline;} @@ -401,3 +401,4 @@ a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a . .icon-vk:before{content:"\f189";} .icon-weibo:before{content:"\f18a";} .icon-renren:before{content:"\f18b";} +.icon-graduation-cap:before {content: "\f19d";} diff --git a/assets/css/old/font-awesome-ie7.min.css b/assets/css/old/font-awesome-ie7.min.css deleted file mode 100644 index d3dae63b..00000000 --- a/assets/css/old/font-awesome-ie7.min.css +++ /dev/null @@ -1,384 +0,0 @@ -.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle;} -.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%;} -.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px;} -.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit;} -.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em;} -a [class^="icon-"],a [class*=" icon-"]{cursor:pointer;} -.icon-glass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-music{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-search{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-envelope-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-heart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-user{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-film{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-th-large{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-th{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-th-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ok{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-remove{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-zoom-in{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-zoom-out{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-power-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-signal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cog{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gear{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-trash{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-home{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-time{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-road{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-download-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-inbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-play-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-repeat{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rotate-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-refresh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-lock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-headphones{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-volume-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-volume-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-volume-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-qrcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-barcode{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tag{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tags{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-book{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bookmark{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-print{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-camera{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-font{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bold{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-italic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-text-height{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-text-width{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-center{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-align-justify{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-indent-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-indent-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-facetime-video{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-picture{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pencil{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-map-marker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-adjust{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tint{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-edit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-share{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-move{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-step-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fast-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-backward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pause{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-stop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fast-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-step-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eject{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-minus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-remove-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ok-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-question-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-info-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-screenshot{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-remove-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ok-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ban-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-share-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mail-forward{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-small{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-asterisk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-exclamation-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gift{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-leaf{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fire{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eye-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eye-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-warning-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plane{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-calendar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-random{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comment{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-magnet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-retweet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-shopping-cart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-close{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-open{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-resize-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bar-chart{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-twitter-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-facebook-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-camera-retro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-key{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cogs{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gears{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comments{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-up-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-down-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-half{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-heart-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-signout{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-linkedin-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pushpin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-external-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-signin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-trophy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-github-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-upload-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-lemon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unchecked{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bookmark-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-phone-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-twitter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-facebook{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-github{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unlock{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-credit-card{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rss{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hdd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bullhorn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bell{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-certificate{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hand-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-globe{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-wrench{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tasks{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-filter{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-briefcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fullscreen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-group{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-link{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cloud{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-beaker{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cut{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-copy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-paper-clip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-paperclip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-save{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sign-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-reorder{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list-ul{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-list-ol{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-strikethrough{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-underline{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-table{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-magic{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-truck{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pinterest{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-pinterest-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-google-plus-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-google-plus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-money{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-caret-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-columns{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-envelope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-linkedin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-undo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rotate-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-legal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dashboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comment-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-comments-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bolt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sitemap{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-umbrella{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-paste{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-lightbulb{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-exchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cloud-download{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cloud-upload{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-user-md{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-stethoscope{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-suitcase{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bell-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-coffee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-food{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file-text-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-building{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-hospital{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ambulance{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-medkit{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fighter-jet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-beer{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-h-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-plus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-double-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-angle-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-desktop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-laptop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tablet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mobile-phone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle-blank{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-quote-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-quote-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-spinner{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-circle{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mail-reply{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-github-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-close-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-folder-open-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-expand-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-collapse-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-smile{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-frown{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-meh{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gamepad{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-keyboard{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flag-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flag-checkered{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-terminal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-code{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-mail-reply-all{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-half-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-star-half-full{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-location-arrow{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-crop{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-code-fork{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unlink{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-question{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-info{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-exclamation{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-superscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-subscript{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eraser{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-puzzle-piece{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-microphone{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-microphone-off{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-shield{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-calendar-empty{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-fire-extinguisher{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rocket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-maxcdn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-chevron-sign-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-html5{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-css3{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-anchor{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-unlock-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bullseye{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ellipsis-horizontal{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ellipsis-vertical{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rss-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-play-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-ticket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-minus-sign-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check-minus{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-level-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-level-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-check-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-edit-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-external-link-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-share-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-compass{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-collapse{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-collapse-top{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-expand{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-eur{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-euro{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gbp{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-usd{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dollar{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-inr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-rupee{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-jpy{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-yen{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-cny{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-renminbi{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-krw{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-won{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-btc{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bitcoin{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-file-text{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-alphabet{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-alphabet-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-attributes{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-attributes-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-order{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sort-by-order-alt{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-thumbs-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-youtube-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-youtube{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-xing{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-xing-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-youtube-play{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dropbox{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-stackexchange{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-instagram{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-flickr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-adn{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bitbucket{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bitbucket-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tumblr{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-tumblr-sign{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-down{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-up{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-left{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-long-arrow-right{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-apple{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-windows{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-android{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-linux{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-dribbble{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-skype{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-foursquare{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-trello{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-female{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-male{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-gittip{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-sun{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-moon{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-archive{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-bug{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-vk{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-weibo{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} -.icon-renren{*zoom:expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '');} diff --git a/assets/css/old/font-awesome.min.css b/assets/css/old/font-awesome.min.css deleted file mode 100644 index 866437fa..00000000 --- a/assets/css/old/font-awesome.min.css +++ /dev/null @@ -1,403 +0,0 @@ -@font-face{font-family:'FontAwesome';src:url('../font/fontawesome-webfont.eot?v=3.2.1');src:url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} -[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} -.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;} -a [class^="icon-"],a [class*=" icon-"]{display:inline;} -[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} -.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} -.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} -[class^="icon-"].hide,[class*=" icon-"].hide{display:none;} -.icon-muted{color:#eeeeee;} -.icon-light{color:#ffffff;} -.icon-dark{color:#333333;} -.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} -.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} -.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} -.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} -.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} -.pull-right{float:right;} -.pull-left{float:left;} -[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} -[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;} -[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;} -.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} -.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} -.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} -.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} -.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} -.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} -.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} -.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} -.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} -.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} -.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;} -.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} -.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;} -.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} -a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;} -@-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);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} -.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} -.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} -.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);} -.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);} -a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} -.icon-glass:before{content:"\f000";} -.icon-music:before{content:"\f001";} -.icon-search:before{content:"\f002";} -.icon-envelope-alt:before{content:"\f003";} -.icon-heart:before{content:"\f004";} -.icon-star:before{content:"\f005";} -.icon-star-empty:before{content:"\f006";} -.icon-user:before{content:"\f007";} -.icon-film:before{content:"\f008";} -.icon-th-large:before{content:"\f009";} -.icon-th:before{content:"\f00a";} -.icon-th-list:before{content:"\f00b";} -.icon-ok:before{content:"\f00c";} -.icon-remove:before{content:"\f00d";} -.icon-zoom-in:before{content:"\f00e";} -.icon-zoom-out:before{content:"\f010";} -.icon-power-off:before,.icon-off:before{content:"\f011";} -.icon-signal:before{content:"\f012";} -.icon-gear:before,.icon-cog:before{content:"\f013";} -.icon-trash:before{content:"\f014";} -.icon-home:before{content:"\f015";} -.icon-file-alt:before{content:"\f016";} -.icon-time:before{content:"\f017";} -.icon-road:before{content:"\f018";} -.icon-download-alt:before{content:"\f019";} -.icon-download:before{content:"\f01a";} -.icon-upload:before{content:"\f01b";} -.icon-inbox:before{content:"\f01c";} -.icon-play-circle:before{content:"\f01d";} -.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} -.icon-refresh:before{content:"\f021";} -.icon-list-alt:before{content:"\f022";} -.icon-lock:before{content:"\f023";} -.icon-flag:before{content:"\f024";} -.icon-headphones:before{content:"\f025";} -.icon-volume-off:before{content:"\f026";} -.icon-volume-down:before{content:"\f027";} -.icon-volume-up:before{content:"\f028";} -.icon-qrcode:before{content:"\f029";} -.icon-barcode:before{content:"\f02a";} -.icon-tag:before{content:"\f02b";} -.icon-tags:before{content:"\f02c";} -.icon-book:before{content:"\f02d";} -.icon-bookmark:before{content:"\f02e";} -.icon-print:before{content:"\f02f";} -.icon-camera:before{content:"\f030";} -.icon-font:before{content:"\f031";} -.icon-bold:before{content:"\f032";} -.icon-italic:before{content:"\f033";} -.icon-text-height:before{content:"\f034";} -.icon-text-width:before{content:"\f035";} -.icon-align-left:before{content:"\f036";} -.icon-align-center:before{content:"\f037";} -.icon-align-right:before{content:"\f038";} -.icon-align-justify:before{content:"\f039";} -.icon-list:before{content:"\f03a";} -.icon-indent-left:before{content:"\f03b";} -.icon-indent-right:before{content:"\f03c";} -.icon-facetime-video:before{content:"\f03d";} -.icon-picture:before{content:"\f03e";} -.icon-pencil:before{content:"\f040";} -.icon-map-marker:before{content:"\f041";} -.icon-adjust:before{content:"\f042";} -.icon-tint:before{content:"\f043";} -.icon-edit:before{content:"\f044";} -.icon-share:before{content:"\f045";} -.icon-check:before{content:"\f046";} -.icon-move:before{content:"\f047";} -.icon-step-backward:before{content:"\f048";} -.icon-fast-backward:before{content:"\f049";} -.icon-backward:before{content:"\f04a";} -.icon-play:before{content:"\f04b";} -.icon-pause:before{content:"\f04c";} -.icon-stop:before{content:"\f04d";} -.icon-forward:before{content:"\f04e";} -.icon-fast-forward:before{content:"\f050";} -.icon-step-forward:before{content:"\f051";} -.icon-eject:before{content:"\f052";} -.icon-chevron-left:before{content:"\f053";} -.icon-chevron-right:before{content:"\f054";} -.icon-plus-sign:before{content:"\f055";} -.icon-minus-sign:before{content:"\f056";} -.icon-remove-sign:before{content:"\f057";} -.icon-ok-sign:before{content:"\f058";} -.icon-question-sign:before{content:"\f059";} -.icon-info-sign:before{content:"\f05a";} -.icon-screenshot:before{content:"\f05b";} -.icon-remove-circle:before{content:"\f05c";} -.icon-ok-circle:before{content:"\f05d";} -.icon-ban-circle:before{content:"\f05e";} -.icon-arrow-left:before{content:"\f060";} -.icon-arrow-right:before{content:"\f061";} -.icon-arrow-up:before{content:"\f062";} -.icon-arrow-down:before{content:"\f063";} -.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} -.icon-resize-full:before{content:"\f065";} -.icon-resize-small:before{content:"\f066";} -.icon-plus:before{content:"\f067";} -.icon-minus:before{content:"\f068";} -.icon-asterisk:before{content:"\f069";} -.icon-exclamation-sign:before{content:"\f06a";} -.icon-gift:before{content:"\f06b";} -.icon-leaf:before{content:"\f06c";} -.icon-fire:before{content:"\f06d";} -.icon-eye-open:before{content:"\f06e";} -.icon-eye-close:before{content:"\f070";} -.icon-warning-sign:before{content:"\f071";} -.icon-plane:before{content:"\f072";} -.icon-calendar:before{content:"\f073";} -.icon-random:before{content:"\f074";} -.icon-comment:before{content:"\f075";} -.icon-magnet:before{content:"\f076";} -.icon-chevron-up:before{content:"\f077";} -.icon-chevron-down:before{content:"\f078";} -.icon-retweet:before{content:"\f079";} -.icon-shopping-cart:before{content:"\f07a";} -.icon-folder-close:before{content:"\f07b";} -.icon-folder-open:before{content:"\f07c";} -.icon-resize-vertical:before{content:"\f07d";} -.icon-resize-horizontal:before{content:"\f07e";} -.icon-bar-chart:before{content:"\f080";} -.icon-twitter-sign:before{content:"\f081";} -.icon-facebook-sign:before{content:"\f082";} -.icon-camera-retro:before{content:"\f083";} -.icon-key:before{content:"\f084";} -.icon-gears:before,.icon-cogs:before{content:"\f085";} -.icon-comments:before{content:"\f086";} -.icon-thumbs-up-alt:before{content:"\f087";} -.icon-thumbs-down-alt:before{content:"\f088";} -.icon-star-half:before{content:"\f089";} -.icon-heart-empty:before{content:"\f08a";} -.icon-signout:before{content:"\f08b";} -.icon-linkedin-sign:before{content:"\f08c";} -.icon-pushpin:before{content:"\f08d";} -.icon-external-link:before{content:"\f08e";} -.icon-signin:before{content:"\f090";} -.icon-trophy:before{content:"\f091";} -.icon-github-sign:before{content:"\f092";} -.icon-upload-alt:before{content:"\f093";} -.icon-lemon:before{content:"\f094";} -.icon-phone:before{content:"\f095";} -.icon-unchecked:before,.icon-check-empty:before{content:"\f096";} -.icon-bookmark-empty:before{content:"\f097";} -.icon-phone-sign:before{content:"\f098";} -.icon-twitter:before{content:"\f099";} -.icon-facebook:before{content:"\f09a";} -.icon-github:before{content:"\f09b";} -.icon-unlock:before{content:"\f09c";} -.icon-credit-card:before{content:"\f09d";} -.icon-rss:before{content:"\f09e";} -.icon-hdd:before{content:"\f0a0";} -.icon-bullhorn:before{content:"\f0a1";} -.icon-bell:before{content:"\f0a2";} -.icon-certificate:before{content:"\f0a3";} -.icon-hand-right:before{content:"\f0a4";} -.icon-hand-left:before{content:"\f0a5";} -.icon-hand-up:before{content:"\f0a6";} -.icon-hand-down:before{content:"\f0a7";} -.icon-circle-arrow-left:before{content:"\f0a8";} -.icon-circle-arrow-right:before{content:"\f0a9";} -.icon-circle-arrow-up:before{content:"\f0aa";} -.icon-circle-arrow-down:before{content:"\f0ab";} -.icon-globe:before{content:"\f0ac";} -.icon-wrench:before{content:"\f0ad";} -.icon-tasks:before{content:"\f0ae";} -.icon-filter:before{content:"\f0b0";} -.icon-briefcase:before{content:"\f0b1";} -.icon-fullscreen:before{content:"\f0b2";} -.icon-group:before{content:"\f0c0";} -.icon-link:before{content:"\f0c1";} -.icon-cloud:before{content:"\f0c2";} -.icon-beaker:before{content:"\f0c3";} -.icon-cut:before{content:"\f0c4";} -.icon-copy:before{content:"\f0c5";} -.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";} -.icon-save:before{content:"\f0c7";} -.icon-sign-blank:before{content:"\f0c8";} -.icon-reorder:before{content:"\f0c9";} -.icon-list-ul:before{content:"\f0ca";} -.icon-list-ol:before{content:"\f0cb";} -.icon-strikethrough:before{content:"\f0cc";} -.icon-underline:before{content:"\f0cd";} -.icon-table:before{content:"\f0ce";} -.icon-magic:before{content:"\f0d0";} -.icon-truck:before{content:"\f0d1";} -.icon-pinterest:before{content:"\f0d2";} -.icon-pinterest-sign:before{content:"\f0d3";} -.icon-google-plus-sign:before{content:"\f0d4";} -.icon-google-plus:before{content:"\f0d5";} -.icon-money:before{content:"\f0d6";} -.icon-caret-down:before{content:"\f0d7";} -.icon-caret-up:before{content:"\f0d8";} -.icon-caret-left:before{content:"\f0d9";} -.icon-caret-right:before{content:"\f0da";} -.icon-columns:before{content:"\f0db";} -.icon-sort:before{content:"\f0dc";} -.icon-sort-down:before{content:"\f0dd";} -.icon-sort-up:before{content:"\f0de";} -.icon-envelope:before{content:"\f0e0";} -.icon-linkedin:before{content:"\f0e1";} -.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";} -.icon-legal:before{content:"\f0e3";} -.icon-dashboard:before{content:"\f0e4";} -.icon-comment-alt:before{content:"\f0e5";} -.icon-comments-alt:before{content:"\f0e6";} -.icon-bolt:before{content:"\f0e7";} -.icon-sitemap:before{content:"\f0e8";} -.icon-umbrella:before{content:"\f0e9";} -.icon-paste:before{content:"\f0ea";} -.icon-lightbulb:before{content:"\f0eb";} -.icon-exchange:before{content:"\f0ec";} -.icon-cloud-download:before{content:"\f0ed";} -.icon-cloud-upload:before{content:"\f0ee";} -.icon-user-md:before{content:"\f0f0";} -.icon-stethoscope:before{content:"\f0f1";} -.icon-suitcase:before{content:"\f0f2";} -.icon-bell-alt:before{content:"\f0f3";} -.icon-coffee:before{content:"\f0f4";} -.icon-food:before{content:"\f0f5";} -.icon-file-text-alt:before{content:"\f0f6";} -.icon-building:before{content:"\f0f7";} -.icon-hospital:before{content:"\f0f8";} -.icon-ambulance:before{content:"\f0f9";} -.icon-medkit:before{content:"\f0fa";} -.icon-fighter-jet:before{content:"\f0fb";} -.icon-beer:before{content:"\f0fc";} -.icon-h-sign:before{content:"\f0fd";} -.icon-plus-sign-alt:before{content:"\f0fe";} -.icon-double-angle-left:before{content:"\f100";} -.icon-double-angle-right:before{content:"\f101";} -.icon-double-angle-up:before{content:"\f102";} -.icon-double-angle-down:before{content:"\f103";} -.icon-angle-left:before{content:"\f104";} -.icon-angle-right:before{content:"\f105";} -.icon-angle-up:before{content:"\f106";} -.icon-angle-down:before{content:"\f107";} -.icon-desktop:before{content:"\f108";} -.icon-laptop:before{content:"\f109";} -.icon-tablet:before{content:"\f10a";} -.icon-mobile-phone:before{content:"\f10b";} -.icon-circle-blank:before{content:"\f10c";} -.icon-quote-left:before{content:"\f10d";} -.icon-quote-right:before{content:"\f10e";} -.icon-spinner:before{content:"\f110";} -.icon-circle:before{content:"\f111";} -.icon-mail-reply:before,.icon-reply:before{content:"\f112";} -.icon-github-alt:before{content:"\f113";} -.icon-folder-close-alt:before{content:"\f114";} -.icon-folder-open-alt:before{content:"\f115";} -.icon-expand-alt:before{content:"\f116";} -.icon-collapse-alt:before{content:"\f117";} -.icon-smile:before{content:"\f118";} -.icon-frown:before{content:"\f119";} -.icon-meh:before{content:"\f11a";} -.icon-gamepad:before{content:"\f11b";} -.icon-keyboard:before{content:"\f11c";} -.icon-flag-alt:before{content:"\f11d";} -.icon-flag-checkered:before{content:"\f11e";} -.icon-terminal:before{content:"\f120";} -.icon-code:before{content:"\f121";} -.icon-reply-all:before{content:"\f122";} -.icon-mail-reply-all:before{content:"\f122";} -.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} -.icon-location-arrow:before{content:"\f124";} -.icon-crop:before{content:"\f125";} -.icon-code-fork:before{content:"\f126";} -.icon-unlink:before{content:"\f127";} -.icon-question:before{content:"\f128";} -.icon-info:before{content:"\f129";} -.icon-exclamation:before{content:"\f12a";} -.icon-superscript:before{content:"\f12b";} -.icon-subscript:before{content:"\f12c";} -.icon-eraser:before{content:"\f12d";} -.icon-puzzle-piece:before{content:"\f12e";} -.icon-microphone:before{content:"\f130";} -.icon-microphone-off:before{content:"\f131";} -.icon-shield:before{content:"\f132";} -.icon-calendar-empty:before{content:"\f133";} -.icon-fire-extinguisher:before{content:"\f134";} -.icon-rocket:before{content:"\f135";} -.icon-maxcdn:before{content:"\f136";} -.icon-chevron-sign-left:before{content:"\f137";} -.icon-chevron-sign-right:before{content:"\f138";} -.icon-chevron-sign-up:before{content:"\f139";} -.icon-chevron-sign-down:before{content:"\f13a";} -.icon-html5:before{content:"\f13b";} -.icon-css3:before{content:"\f13c";} -.icon-anchor:before{content:"\f13d";} -.icon-unlock-alt:before{content:"\f13e";} -.icon-bullseye:before{content:"\f140";} -.icon-ellipsis-horizontal:before{content:"\f141";} -.icon-ellipsis-vertical:before{content:"\f142";} -.icon-rss-sign:before{content:"\f143";} -.icon-play-sign:before{content:"\f144";} -.icon-ticket:before{content:"\f145";} -.icon-minus-sign-alt:before{content:"\f146";} -.icon-check-minus:before{content:"\f147";} -.icon-level-up:before{content:"\f148";} -.icon-level-down:before{content:"\f149";} -.icon-check-sign:before{content:"\f14a";} -.icon-edit-sign:before{content:"\f14b";} -.icon-external-link-sign:before{content:"\f14c";} -.icon-share-sign:before{content:"\f14d";} -.icon-compass:before{content:"\f14e";} -.icon-collapse:before{content:"\f150";} -.icon-collapse-top:before{content:"\f151";} -.icon-expand:before{content:"\f152";} -.icon-euro:before,.icon-eur:before{content:"\f153";} -.icon-gbp:before{content:"\f154";} -.icon-dollar:before,.icon-usd:before{content:"\f155";} -.icon-rupee:before,.icon-inr:before{content:"\f156";} -.icon-yen:before,.icon-jpy:before{content:"\f157";} -.icon-renminbi:before,.icon-cny:before{content:"\f158";} -.icon-won:before,.icon-krw:before{content:"\f159";} -.icon-bitcoin:before,.icon-btc:before{content:"\f15a";} -.icon-file:before{content:"\f15b";} -.icon-file-text:before{content:"\f15c";} -.icon-sort-by-alphabet:before{content:"\f15d";} -.icon-sort-by-alphabet-alt:before{content:"\f15e";} -.icon-sort-by-attributes:before{content:"\f160";} -.icon-sort-by-attributes-alt:before{content:"\f161";} -.icon-sort-by-order:before{content:"\f162";} -.icon-sort-by-order-alt:before{content:"\f163";} -.icon-thumbs-up:before{content:"\f164";} -.icon-thumbs-down:before{content:"\f165";} -.icon-youtube-sign:before{content:"\f166";} -.icon-youtube:before{content:"\f167";} -.icon-xing:before{content:"\f168";} -.icon-xing-sign:before{content:"\f169";} -.icon-youtube-play:before{content:"\f16a";} -.icon-dropbox:before{content:"\f16b";} -.icon-stackexchange:before{content:"\f16c";} -.icon-instagram:before{content:"\f16d";} -.icon-flickr:before{content:"\f16e";} -.icon-adn:before{content:"\f170";} -.icon-bitbucket:before{content:"\f171";} -.icon-bitbucket-sign:before{content:"\f172";} -.icon-tumblr:before{content:"\f173";} -.icon-tumblr-sign:before{content:"\f174";} -.icon-long-arrow-down:before{content:"\f175";} -.icon-long-arrow-up:before{content:"\f176";} -.icon-long-arrow-left:before{content:"\f177";} -.icon-long-arrow-right:before{content:"\f178";} -.icon-apple:before{content:"\f179";} -.icon-windows:before{content:"\f17a";} -.icon-android:before{content:"\f17b";} -.icon-linux:before{content:"\f17c";} -.icon-dribbble:before{content:"\f17d";} -.icon-skype:before{content:"\f17e";} -.icon-foursquare:before{content:"\f180";} -.icon-trello:before{content:"\f181";} -.icon-female:before{content:"\f182";} -.icon-male:before{content:"\f183";} -.icon-gittip:before{content:"\f184";} -.icon-sun:before{content:"\f185";} -.icon-moon:before{content:"\f186";} -.icon-archive:before{content:"\f187";} -.icon-bug:before{content:"\f188";} -.icon-vk:before{content:"\f189";} -.icon-weibo:before{content:"\f18a";} -.icon-renren:before{content:"\f18b";} diff --git a/assets/font/FontAwesome.otf b/assets/font/FontAwesome.otf index 70125459f7d593b79cabc75bd60b91943aa65e93..f7936cc1e789eea5438d576d6b12de20191da09d 100644 GIT binary patch delta 65525 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 delta 33605 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 nr`TXFj*TgBYu>&e7%kC}?v5Efg~O!8nXw;^KW zb?9a+UNn8iqF3*9CN+5+ivN_DH04+JZhum4BRX-CNCxqmNk`ZJoLOfg8kmlS3KVOm zP7*blIMs1NGasiq1Vtj+*TLa?hwSr)5rt^lE5c&}NA z+TTU;I(dR@f{>a+w1bIu1n`yRrJCjSWT*rA*-Lp%#jXG3f1A@p=#$u;!&VoV>XWKg z$LTdYOMe!N_Z98ktCxg$lRqw&`p5TGPZn{8m?%#IsmUZQjvrvFxV2-`tYMpW1<;cm z1|2l@1mr4*d!71xN5*OM8WKuE*OQ(GwDB!>f%{NA{#@nFoBD>l#_VIJrWa~neNC^1 z4yfzsKDz!_bbT|r9*oSaKYG95mgb{8fW<7QPBZ#HomYtHz4WhmAUX?fxwTEISH8JW zd)s`8_z~_r;SF%}Gz;p9{|75+pjoq^bZ`FNynUv>SQ{3v(WAwr>?B*V>0Dgx#?|_` z)YZvJCe(Sp;MA~Kgp~?(xb(G@SL0qVl^rW?Y|!HtH`8t=K4&VbDy**3w#Odo;$#jX*ra3DPqv@9FHS*}T%OQrGX{ zS$ct_NSL#1pZK*eay$*PLHj^=aZ^sB2}#W(roI2Q8CH{8yv|=sd*>8GPY~JvZ$P8t zl-U#MYTg2a2tby5?sp`M9F|MR6H-Pqa%Jdyq`%7wC!vFvOfE}Y2Rk9C<&LCKfn$Ko z4W*$bmqT@&CrWAIt}qq>irZzfK?eN<8^zViLY~feXr@zQn`JU$0{~x`U)mwUrqk*0 z<-&(_W~0Lk3nwTep_pPVlVx(i@>+Nf^=|DJ#1cvC?`V#Dx^mXe*vqBI%^;tz-=8*u zWqmu47v6DZ8*hfvf0c)<_W((8Ia$P*XtiS`ZQ_`adr;vliQVf&7CU80-O}2`Udke< zsbNxHVlOj>W6NKU9cb8dtoY1#RX{}6676v^?~;20Iio4LC0$Q6`$eTopCl&u^-h=O zCK>#?rc1F&y_d43BZ%8KowL7SK3ee4>HMjr#x>I-?9@L|zv`^L333RXVvx~)MO|BR zMek&8O2YJ|W1v*HG1G57RJz&Qwt`jZdO`7s>&G2w3)Y_}dqVOI28%~*@JNB3BdQEA) zG}|h6&j|-4s$4~c%aVxtt4^5;exk&eL^u$2KYWJIA{!XG7$)vWwk?-7p zBYRZOl8Z|9Fr)HQqo*&Kf;m3p*@D@X^a-88I+QR|or!Q)3#KN^9b!nR_pcCkhzM3Z^udita2D z`Jm&_-*X(6UNb1H8@?1Y5>aM~6efZwGjuy{?Nmt-`=SRYA(^U1toIm5u-unNjEBYA z8LbMdLn5gKV5ilqHF&N2VTdL1Qq{g85Dw5msy)(s`}*3#spB&;9bLp~IVNX9>cp1M zK7+Gl1&RLsMZWDx(yYUQy_MV{U+Q5o^!_WEhOPHPx{`j`O79@5XE%}PZnTQ*LYUwi z@=rb4O?#rr_!Fkm!^M@A`Y2v=j#&X|#c8GKW->$6{GI-jcA?);O%>f`!m=6*g0Hg~ zD=GN7S4yx3aPn(xE{5rj3_ zL&;t2RDN&lA7VqTdmqLPga{cpcb*2^Ar0S#V zqpz$qq1l2QC0$ZL^u5SD#P?d8F8+d+#~gd(r;BeHAe)&v#hkW35A5GW%{S}z@Cezu zOLdxW7E1Z4gGb!IN3?$%_?7{j^7iX*ykpY*yzbq=*d_|vgBOqYH; z^N=Wf)&m=;KaUgoQ_?ZF)IVk_MASznFHv5&P3ydfdNb{3=ejX}Nf*uWdqXNdlRu zx?FO->RfFA+Rm@4E~qlJwA5d@X)Y~LYA#$POA3A?dNPjzkw@UCAP`ms^Kteb{(aF~ zz>!6Cky3LFNFUa?Xl9eH;?SYQC?Z3xedzsDJc0$-dtJJ1>u$UDP-LKFXEP2oQ=(a6 zR4QTIj^>9BrATW-OC75;G%GsRX$-xOML=0tK2%eF1j~2GBC<&7Ex=+$R{=+H!0zy_ zFC*^$PzE=m6Qrb@<{ASH*$sRcWhuibbvEB!fNvt034F60t3X%_XihbWcNM58o`i7x zDW3KC{{7c|tv+tEv;YX^w{J1j%lG`gb{DdCHE5P~9godnhqSXU0S9H{f>vknXrFca zb({D{V}*Y-W+Hhnlioy=?;s-5b*hin)>L1|wUIPuhn(~t)g3NB>Zr;+oae|*%M8%`h+-_xEXm48 z7&KSX$Jx{cW0eTm&y(fQm|9fO9#zpsyp_+I5=FvZZCyoC3m)-mz6b;+KgPByxz!d zMcAw*N_2<1#^`AGmwL7?C*9j7woMFW?)pPGI(lhjc4SY(L9qkx!2+N~WHRy^X1--U z+*Hwg774J$yc|}hEn8=U5!T@?Ip8@loq|lGHm7bE?{+9UzkI0xiQ*TCaO^iKKIu#t zgL>jvl30c}Bh;Is>R610pqV>G<;rknJWdz`y5Y;UWf`|ng-mQ|jiAqAF#B8%x=9NZ zxee(sku;K93LR8~l#jMZuNB#|Z4Q?e?r1H~0mf@ZAdR*XmMZLZX7SKOtt_VI)t2xo z0DwlNzh{q*Ep*(#ODspo+;Hef!wJ31f^dYiB4>zvfRvZhb1GXm`4&$Qoxn~g@%>Q( z#5#iIdokNfg_JQIhEkkUvXo+MEMvChac;?%IZv69UHkh066s5>jr^VE*0wv0ine*8 z+v3%3<)vl0W5&*d^$sPtlrA-L>)Io+GqS^a2swgGH%mw15;~kL(M*+TG7%!Z2n9`M z@zS~62<3QD^Mp+LAa_Qss)v@>tG?U-!x>8ZDu zn#cyaQE9pD-0`tNGbsHd=jq$G&4B;SsWJF4bZjowkU@0P71N0; z)z8030>$V>)=g_oWWgjFO}f)NG#SOJAZdspxm^$vWSj z>mdENj$I>_*oEQaMOP$Zh>>(;in>R28VfGQ0c+Hp$7_^2zSYN-!QQEq=G_yw|G_YwcZHud0LzJ#Ap838Mh^Y*_Dqg zBGCg8Mo^-o|Bry8P7_Bh4z)jpG(D^(!WJZ31QJa|t7dMx>xt32ch|l&`-tg#qEdcM zzoLU4sx-I5Z>coL!lnA6UZFU6`dUl!TZZ4hdK0O=MQ)X@C#UfXmp&>Q`@|I%bo6|r z)A*%BFloAWmCVJ)+1jXn)tU=p5;Sg^g@oBTzX`6OfMFF$5YOy3Qak zErKY{Bi4Bj)Ms=@A*mQklTL|Ol8Xc7ps75HS1)*OemCsfkza>k;p8=UGEt2ET~nl4 zD%ndG$&01CC5z=Jq@ktT{WOQ9no`4L&C-gzYWvZG0Hg9!a|68kd*#uuTxlu!_&95A9M3bNvLr906(>SeJl***MaK-0{Z4dO%Y`v?+zNx<$uz~=y%_^hg=th%_^M3$4~ z%HrbcvJwLs&S`!|1|OCHIDQaUFo+weQ(cR%o1bKS;7em~aSy}7#_j+t?4$_7t3N4)UAK^w`hUnvmh#%3KEvT- zcYiXLbVE8sKWv3ayPxk1Lo!dRr=*Z1+aGxyW{(AlA8L4=mKL^L|3lYU@+7<_hrfH= zVjT&m-9PDl$5fQE-@e~KLuvGOs+nb`!54^f3<)u~x^m?W#f^=6#L|A#ZM(YT<}3O$ zhff?jZOXGI?U0$)Jm5yumexqlRcD zHE@+XDog732D}@6mdb}B0F<;F-PVzpR?xG0OWLwsF(%iRS8Y7pv2R=rualJ5$=^UZ zGd_iQd}=ZlpzbCym&sFeNe^-a6Wg}VBfA5vmX2FM`$M^I{{Zr26UlptjHx+d&#y84 zGM#jvNW=9s$o;F1s#o_zq;zIq0*sRIE$~vhlc(;|5<194ySsMk=FQ7Wn{TFbZ5wG{ zWHK$*QzTf@USwHALs4;~Nki9VY`5*+reAVq<=J&6IxB~sSu>o@4oF_Vf6Zz=JwO`9 zlLeU4VNE{~l?lDO_rc5GVsZ9adh10<&ro8mBS-Z_v62M$dlTpDiGd@APnE8pfP}IU zWa+qV>*&Ca(M3#OL*e+b5r(_mA6fxkv8$Q=%;4|5%FfhD%MUGJ*`h|8&LKw>nAbEO zfFg&~QLh75k()&a+%n`~P~>2g@KcbAL!2(>w*WO3@<<0^DAc#`r*%(>?T;9`C2w&7 z;L`%AEa%yKEdH}@ou$?T1M942M>Urd5~tZFVj+Gz1M*qYJwltvtM!3(=rN3@ARa(Z zWVaj$a5v(Y>B#QEN+fS9Rw-%QTY=dlgwQD&Am%znLz@i}V$Zi|aUl~RPodkF|KZ7UmGr{ldA;4ENF^OlB0_4(7w(_PT}=Y{#nVeizi3Y) zUvS7(ctWSSDD|uuC}3WlNH?Zt`_F{)W7O9M&ecvaV{^p$W%#zH)fJ|hDWwD%mk($!e3-%sL3)5T# zg4l;_??d((9xq}6tj{duSL9dlg(RB?-Tsa=8uADMt!-6X4V$;`Pe_nnuQ)#IzK5NU5=MRPaciWr2@`l}J%? zzjACa%Z)-Zq3F@Vw2=B#t>`n8H-F9VEvPK?e?WF z4By`+0b-@0is<;y|N6b*`_FM$WvImAT^xRKd-KxQ%-QATxemi1zRlr|)3H^${Z;ja z#|rD~j}_DhMfjHSAqZXvdS$&}^4fu2rW)N~Z5@IXu(W)yc0p==2vVWy?LeP*i7nYs z^RR=Yb4U8kz?v{8%pMqWND>F7dzyWrWM&_dUVwo163sYYiRQk>R9Mp=I zA|c;@!|+)!(#)b}kj6ugW4?~8+DP7}nJ<}6&&rxORsZSJH%1NBw}_8df?*G9vsGvF z&h9=5kv(U0ug&3x@LrexKH9uHA#d9@JzcB%DB-24!FJ8*6}u)(YI!Nm|*gnf8N8Z&(m0o)+tHH3xw{m6G`h-op&1k+bN10QYZHSP5 ztPQmx(V?Gca+y`Q>4zt8z4s*?Ux*|SQ#0O30wkX_Lpp;YeV(XR)z;cA`hnQOc^Hz- ze3bwAnh>@!j{^%sJk9?WqjAuJXm0q6y!%yvng0)*(#C+wTkEba`va&n0jTVRDgQtz zJ26VOc7aV1`@l8tfS9$2Nt&YJ?c+^1BYT*E47WLSP)B%(D82;{6=Co2V6X0gE*K!T zS@Avvkbh5PPNa?US7;Hf{FF<`Y1!rz^;c_%#ppcNlX%f!BbHu7<+6*(7MW8#n*AW;9V%DA(hIK~@4LbmTYuxoP zut!Q?9n;!=zg1dtxTLHwfDFgLGm{$HNb8Qw6W@XN0(sc1Lv@y^&2lZBFtE48_zdjd zZ}}|j#Kb)@TlARV)A8q#+rZ(4TO3||)Ds(b2yCH+Vbi%!u+R;;JkV0;hR=a^Jg||- zZ@{*Q9-vp?Sr=}s`91v|9!K>&_Mi=|k2wcr?b>c}55y)8!^OBK^3U88$+*Xk!pRSWu<-25xI1m{j zTy$IuTzAdq(k~6YjrDv}oKkc40f*+SN~{=)#Azgma1Y27X;`B^pgtMX9xTeG=*CsH zG*P8yu_lPaNl=4c2jU)+cn?;+LRZ4^a$*M-7@U{La9>agsiBbNEHxBAEH~77oo97X z^C6T=IP59B*+YKK6XWkzAq5lf9}-=@ZKWvXI;MiJyZxuk)>#OB#ICBuRjzOFz{{Z0 zx-Aot>`HogVn`5JOg93TDn_s*S~A5~2Du-JdWuL<-TugTQ`e`ssmH3r+uWw||GCS` z#}z73!Poxdmy_B4c(YvR+sQiLScccd;cas_S8n#*?wIRS)`eDdf!+PK@6g?hyF*Eo*zUyA z`!OfXF)y|&2I~IF``(9#j@r>$3khdS(fq+kQ5Y*=Okx|Vdn_;wSOe`A^bflJ>uK+g zz>?w)AKLA#5!-F{7f9p_NS$wjj*#k4n1QZ%9e6fe3c~Q+n_Are)Un%{{>dZya0IVR zdu(sDJ0LbuPw{w-svD3X)~_OX$TId}zQfmaxSY?xV03Ap@x}HLh41_LOqCc5GIU#F zp+MKx@~eo|hKRid>w6yPpw?}6bS&pgc#os z6FwaZd1D>J;8K@&1wq?=q81QZ$i%E@qp zaK1BL)5s0*C2UIXp42nf$Kn0cE4%PgKF0y+(aDh_)qW4vWQD>H_O0QAGKTZ?DaNDQ zr^o<1b#4u8hK}`tGdf<^fUMcZ^BQvC_r!8InxEz8Xtw^<}!;~NJEH~@sX_E~U#kASqc&DiKV%DI{s1+Fi zgRr)hhwr)_(fWf7$a0@6!?5|%DBU1))(K-x)HTPRxrftIE0R6yA) z2(^I9uBaD!ufi2QlbjU)?@7RWz2E=&p6>}H&1B}xnKN^K=eNGE{y@Wt&^KdHApwnC zzxZhp3bsEsa41Fj=hhB3D6MR)|Ks&LRy=IF3w{=r23E9{F}`ezGHlv5X@QOZvoUzh1bEC*OKF{0^fX z43W1zxLeTN-1gYT_h%2$Pu}@SXpFBlV(_$sD=^({AgqJlEJ8EBvl#AUZ-!GZKs3Po zBpZmK7{sifGgaj4oDg}Arwk&i=A57n1T_TUY zA|pZiYj0Rz^rJqN^cm>Sec{i(Jn4yk6zj|0df`b=fO26#+BG*{t=v%Rtb)7V^WMu6 z{8(>D?%3UU7^#1_c9QBqINw37G$Z>QN%(B3G_lnZN%#}$kazC^Tq%<68EPpq?B!|O zUwqE$b>8=G(Oz5*{Y|dh9->+w=SDd+EaC2*0zs*1Wm6DCgi&JKnf(Yzzl*4HB(Nn(&V*w%=)GS zQq1l#CuUhz&<`Ug)7QrKo|yV}^7urZo+#P;iS4`3HiYV%e72EyM|1NTgeu;gHEm2x z=u_xU`CxVAP=uCZ$1YT&>J_M;cQL=QE|9xVzv)xbmC>XkUm^oPxQZ)OY9YEBIb?d3 zE~&6Ea0-2Tx*Sl`!5{Iao;9ugQ_|%THEsL@{p9$XC|gQ;1zAd~NY!`JhQdu@n>J)5 z;iyg6l2xH~J=5pE8}rmEwO0kD3mKTtG!HwI=&>w8)Ma2&T@v7N;y#D%X|DGeMt4A1 zp(EyFxYmzZ6;NM+Yf79$;15Ic&p(y1Hs%4Zee#=?{nk<13bnF2Z_bvPVYrT&a}s9e zSvEI2wKMa!CZHV2$yIONQjJY6rxtab{gv4ycm^3jnh@#@*S-bxTaELMR2upeFv<@{xp>S@2H+HLKRHFCUco6Ee~?)FTneHzJEaca3EL}n`F%B#kTAiH-CZ&ki<(?UYY=wM|58LgiS2{K|=7u8PLx+~gWKUc2Z zH4D$-+Y%O}x$ycm!lIiX@K1n+5uAhIiDm+u9)Ys3oYcmf3t`^CU5~6gL_Fa)i}boP z@dtvO$kS;HoENXXZbC$g$z!zq64{`9Z_KR8-nAR4kG=*6mkq5NX@2lP>mK^E@-t>` z-y5cX!T9Kgf2Ir4jlQOb0x2K`rb}_x5^iVe3Yo>_?Mjw3WZ0T*ubG>gw6+~Pm+lI~ zIpqtxO?udpaICsiE|nHI0i}3iRPv+U9XMvtrFWJi_O!DxL?ToIuzo?6`}5^10&qJM zB`95woj4R&I#|SNCkpjgwvfT^Y&}(ax`kso!c$-u-iKUm3MREpaQvt+nct4{h zw_%&HaG5hJ-|WasyEvF=TFWajI>2LoBosKHn#TKptHC2KNLDrJ%N>4aFATnGw$IgPU@@TWefT z{FDFw#y7fe-srohO;|Wx$SM>hXpV#kejYqj3IPk5zPp}s4UL>g~No{5TWqN!R^CMpw6H>8K{ zP3HxAnw~Zhyqy<9lyyp^H=l&8@*U@z;yn()szq`uCW6Bat+A=%##Q?>l;z8quM*NS&%Uocp_)Y)1S?9=LB{ zCnoEm>oDb~lada515grhvZRwv`ZI2*Lw?AkXnY*?vRt~a&2ycBh>nCl(ucdc|LBeT z2#RM3&mZl3b+VcE;q_N&ECiK-*PrPk-`&^N(AWd{2z;7sE6y?Ju3nvs@K*;pY=5K; zAhWAi=j9>0@_w;HE-nd$+E=*{588i1wYY2HzG=1|6pjmBgnCpwAej(Zyuf8qm@Ajv zy4K8b(;DbuPM6_Trg`jSZ%@^%eZnL5mHvi85tNFsPqK&nMt-y5!}|yE{s4&p>~bGg z+D%C@z=#_F@eAwW&kw+~6(T!8VIUlEXAOWxs(JE;nkn~uvKJk3vQIUv73hJ#b~WZ@ zF3Zd&VNywXt|gUBp?yhTI;BjPoR{_*2@~?2tDU*zTr!Yna?9yCor3)7yv*fUOL0Ug zJ3{GAei)3@AHt|NQhZ$+SvK?t{l*OcY!Ubc*FFH+n7L-(ge@W)T()9y9ag%7Y`rdrGcHP^ves zD_viNJa8MtoA*ccHYCET4u$)p7%k#Z)Ijtj!F`(~s9i(6(}KE*`_E}HgU&E1Gn5&B zPKyk(E`oWIVn2rur(7lH9$GXNPf)cx*&9~&e&V8#L^ChNYDKwqR^|#;6`x;%j4dn+ zo=-fV{5efOQ9fbY7FXnKF5D2ZzHt4=o5B?9G|6LyQ$%q_U=olhh}=xp#%C1a7aF%0q%6iGUtli|H%LPbMldX z&q1_5Mp>#mcA|j)Xo|UJa5Nj&#aMBMJ%T7$N{}>s?nsFqW*OI2xWKKLY5y=UUN;h< zetAJ%`@X0kq_aqZ(t?arj3gx(YVvBO7g?xJbvu-{P-kA`^hYqGM|yhk`c&+8l9_SO zR!H*Ex`E;N;n}XjeUH8~+M}Jj3huGHQ7i3ruFCpPU-!p;(>{HFIv$0gJegSyt>6U` z7aG*u3~B!o>h{}_e!%r;t#-F|e~Ob0=F&e~csRaRN0#)I9#-HMH2dpnhcmHEi%G+U1S3 zoU~=OoRp3M7rrmhig{D_mPa>dY+*ZA$uIO z8?S$huHdJBkemB~h1l8m(bU1`&YA`6e>+cS0>NX9Tz9;8pV4Fzx3ea2k(P9vkMb zSHXd+2;&a-fD_KdJ%VNr#y=jYNlwBkJ5ev~{0)zjKiNfEoRr+2qtfH@HUc6Xw*=SM zR3uTticHIr721`2QPI}|N#zd-cioSh1cbw*zhxO|e;#gYfpPFQc~biIsFd}j6?adX z+a!D|^$OSALu_qVqtu4pZG9+eFI}LDhC+4W;$_XdiO@xG0lZZ1!_u1{! zpI#z{3rhBVs2~X>>hcfg-~X}rg00?hA?LH=^XaEnpFe-$21(G@H12eFAxn(2GEx?& zr#p($QA~ncSmY=QTT_@k%R+nd`ekh#^5v7w>cyAiSNlDn;&aX0nRglYM5TDoE>B`6EmiSjOSp!ke<` z+*;mSEC`?Hfpc3$Of|MBvFc>`!}<*YY&Stw4?{%!A|n9jVyMVnRC3-ID_Y??haoFt z1SDw;`J4<^$;R`iUclN_g}U_!{I4?14cBeBPeHDpMeiiR?c?| zVTuZpuzx_+S8t5q0{qX%wP{p)I$sD-0doyHU(Sz&yGHt4BS>AjPDZNs^!`$#vbolh zY!$$I=BV*DTF4lXG-}?sdE-Bt95+2~#<)4JFVfN3WRRzZA6D>o*>rR1^s1S=X6=eU zIPZ9}F6sE$%u8WsPv(~#vm7fvweI{UI+DYWA2cX&VA$kog_R#!63dd-W^UAFY+82W zZm42b{7AOPPcb2*&p;5-C$ToD*o5ef6RqzjPtDY2PL0cXFYKL31tn80Q%h#9N!U1N z!=kG6DqZ^K>^;Xql}^aM?86@@+g-V>YWwC*+t=(`ySwB_!6_XouJ)5EI+9k=!`z6~ zaRrOb1&d2k*QD!GHf>qDJ?!MkH9JpQ=ty4a>0S^4mo?PYD2ZgWFc#;e7o?%&7{kr= z6=db2xo0QADX-4YH zq4xw|Fag=b|0>KXSyAi=DRvYTm4p)3J8uO%YYqq{$6x^+b3JRkCm?>2op1ISi2Us( zga0r|esC#5OARaoqGiJ=E+U&1)ym&AbT&E!&0`B~rETu%wy=~+H(bLiS^pJ5aPY|F z+C!C#n#i4UrS8K1wS-^0a_y3`rCSeIrd9;YLSskGno(!}AxAY%Y6Dih9uvkMq(aVU zoxZi-8NX$3rNm~vH9K!rrSlV=-rujKT+`TXOb^cQ<2hxMKU|deAU=QAS)HBN2k6>d ztS@kW`L`|eH&XM%nR}8etj^5J1&32FRvmFTS1((Zq|>wJ7qt2Eg|hucTQiR5@7L-5 zqFUS$SSNw<@)ISLn{NnyO7^NStT1n>N*y?F!pjlQM6Ug^ZSJXiq+QQ5<$C9wLw497gWc<;<#f$CnYZiqlT|CdrSw%TTxgohLSvt=> zK_6%5OH1;dg%($WD`CxA`?kevL)g&Px*MSnBV4M~!c$R8q6{w$cE!R4222$zlvn3O zL9s%4g}Vdm-IJ{@_}bZ41l~!M%UK0&g{}NvutW&oKG!;_UX|mng{vfa$+c%~1BK${ zu=p+1u5{ND(*d3=qW83OE4HR=3+pd=qFl8npcMOBU`dWv@4r}PKQ=N_on`}f0HL5L z{#Aj+Odi!gZpS0?qfD#!Ok;nz+ttIM_5Mg}U5`${{Bo6&G$Vbe%$~b5UgocN?$1Iz z&T#GzM$r;X7XOqc{lvggk0JU)8)y+;4eXN?p|-05?@vD2cKMa-C!e3|TqVQQ)3K3(!e`Z)s15&>^Pg+Z<)vo)JQPU@nAh9ck}K z4WZQfn;?hZ?DiIXc`SlF2uYEFb_9sLMt3jrlRSW*zpellBX0pI$lI_hh{hVpIyxQ>(87J@r!9w~ zRj@$gsfqk&S?~30IzwiBi@@rB(1OCBYs=lh>U>_W-N>*j5maA5(N>ml9^{P76 z=c?1HTdE)Z$NR_m+x)Zq5BcBm|GT=Yx|jMzbwBkWkPl8#&sOhJA5b4rA5))F*Q+n8 z8`U?|cho3yqPWzH}pmx4?u{Kkiqb=30)mCYDfw8bo`?>b4_Pq9c?eAI-r{Z*6AlH&J za3)UT+H#$^uH38Ko7@EMJ+K+h0+(SDm(FE#x!fwQmOH{7=T33=x!-w>jc>tA{2=~i zek4DZe}{jUkLOqN4t_mf%OB^@@fZ2a{5QNyC+Nb#XgE>#fo`^LkuFu2rCX(|&{gXW zfy?lk?m<96K+Aw<1EhdX0WSs&4R|Bqoq$OJ(*hC$GQnZE1?+`q0=^8m9Pn+xoq!(# z+ybmvqyY^AlcDW(VVp2Ym?LBggF6z}A6bff0e70=owG3mhIeI`H+tcWfX&j0>C~BnYd@{|kmT zXlEEbf*5TRXk%M%8mAZqgV7V)6XrRMje-Nh~ibD;JH7 zTkN3Zqh++31&O*L2u|kJOezSZ=x8~a}q%68wKFggWnE(RMnFbw#*cf92<+# zLTVS-xwce`6NGXQ!~7cq(p#DSZ~H`KnGQJlFwp4ao8ck!b{#n^xPU&Ax3|cf=L@Cc z_p@dd$s)YC{rxu$bFn->O4u_@{6!MU|B4!npU4C0;_#F<+X!1wpq2NJ_F z$)92s`f|p_O8anNZ8PFXH-I|X;)l_D1(np@>C3g|s@l@SN8sCjZR~=n?}1-q0DYYV z(`nvjRH5ubzSTLX48 zK;?kS%vjuFippeLhzmgqZn?5|AN3ZVJ2r4%HG ziMHa8mzIb57&(1vgpZZehf28x&pFGk0VNgU+UOzTV-qGIHpUXIOk{*`K?6 zKm$e-qN_7*nu9uk=@SlJUF4=i9x!qy@Px6eVm^5s!55zf&EH4b^e*Q9Pq(#h+~H-kBqsfExK@%BhSZFDxPjn4lV zwb9@NWLPVWz*+$hRT7xp!V(iRk|0`&BW9=~ZN~Q{k%8aM+8_eC58hLdodMNWWMrx$ zRMKW=IrEvemJsF?S6G)V&R&w3Iy`w~(zNt>DN7dUGWooD+U&f{ymWKX`aH3x6f{+8 zhOZliVJ^73N5j)C?w?UJdGd@IlPA~A*uTG~X1`hV0o%?moMX#LS`3OaP?G`sl?^s{ zKw$1WZ5C9%6yH=z$6pQm8Ea4ayWB9v?TQguaG z7kFf$!-H!MO1WBO7^(0oWG`PDBKPYRW&=4V6XHp0<~XbwA@eg*tn)&ju%e2amuRgA zkJ(Oz!H(^6V@JIOMG31`uhd~^6okyhjlfz>Oca-pep0E(Ffy&){CaV5QqG)0Ysmb< z^(mV`I96QzaRE5}7)&Q)#{=_A*v5^86%`gdY{;+@Nid+NfG*wP0d0Y2ysPx@c>*p{ zF!>fq-o+4fYhr;cJM*0(idL!8-u2W2rWa{Akj7RXgTxqIsMTYTGkQPUL3Io`sjxpr zizOxYwP__{DIgYc8WkjFe!*(l2@14mq4>*LD5IHTPF%ETVN&9w?xv!W;?fdi^lTI- z(f&hUe>EmGDLK`Vr~|`UZm3A3kRS!}Ge!`Md{}3}(o80ZM=uH%BNze^d@3S86Rxd| zAfKyV@hZti zky(I*Vi6=UY%WG_l)$0MwCJ^xSdzBZUQ!}bpqu!sL68>P(E&#T2zVS2!TDa8XN0AjdF(4IjOx*F?#>F2O zmdk5&YgZCuX&F|pdzcYEl3r2HFDkGUl{+hn%XL?ddoK(P11J(#2zNWNJtFWYRb!L^ET9ElNGx+({vLQD}6V${HdpHsBqR)d=_f-RQlkW-e#dDawbh9zUZ zW6qi+(eZnIL9u1k%Dk1UaA6Ss#;I&*Tv6UW<7srWro2GenPKfD5%CQK88nCYUBkVB zJ4B>;oGsH10hsr3DONw^Kw~c?HA*4^owWBNEL_JpToP9yB74U!QhOFC_DUs8|1f&+ z9r_ENpch5%I_5nJ>cnG^A-|#r0U-awXhpEjJiv`LsD8rLPbMZH<9VumAu6 diff --git a/assets/font/fontawesome-webfont.eot b/assets/font/fontawesome-webfont.eot old mode 100755 new mode 100644 index 0662cb96bfb78cb2603df4bc9995314bd6806312..33b2bb80055cc480e797de704925acaba4ba7d7d GIT binary patch literal 60767 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%0DKehr}RFC`2XTB_?==0w^)u1m5PYii@6f)6_5Ydu zv+NIZ_(Rt}Q++LT5!n8!J4x!>sE&v_3*cXat{Zq5;17w;B6$epw}$Rg`0nFJg5D-L zYvw@(goc5TeJjM($AJAZxZHZN}RzBcP0=_>ZI6WVGU zO#Nk-YqZTa3{!84P0K~GsI#32<+_AsXU43wILwZS(8n%S9)lP!Dg$$e2$$9$E?^Nj zql4do#+a8qEP(bD2)DpP|$dp<`TZ#bY6^~7Xv_Lle)77^OsVhMOm(@ z??8O8kA%}ZWpR&2v!7qFSw@TF6d*=9YT^Rtk(n8p=CQWvt1Om=n&5uP;GiT6 zMRvbm39kbp*KB`qoVg12w52Z)T}`X41P>D|q_%K#zuhwb+BpEogY0E)KnSy#@+(m5 z20@LG@LUEvk`I|OIUV^^0_YtG9AElBS!Dsh%k^P9r0moJ25Lkm-gh#igwBDhAOj0!EF&8MxV^-m1U1MEd?H7} zL;r;tfFIT|ei3-Z@gyM=!%Ba7Pa626JRAA`V<2D<{RLRT@0o=bE)XF)nFtUL67`2L z{?_Qz_`Yy2t+I)?9&z#z__Q%L3pnhN}U z_rN#WU)kD59D4whbSYERHY01jM7id50EuI1ctl?<_IT=Y5vP>(sNNkB&U5&F&^kBhm5y{o!y!F+4wdxXoy;!4$W`?_nL(+bK_QDAMUV1O0AwZ| z6j)s}9YEZbY-C^Y)9Ej`aS&~{sXCG2SS3ce$EY;Yv-c8TlrD$C85ATlLZpGP_YWfi z`RQ?z1@zIfa{yqfsUDMEPpwuX%XHdO+ASb3EPi1fBPocvfgsC0xa^CG2SWBPWQ&GS zpCXPti8b>WkYbf#Vg%A?&_UwUsUQE_t4GX?7QqUpKJ2Iw#%)Q4Ft(`9Ja&Yk{C@38 z@%T`)#wWy(kKfEH;ZBQ(m*Iq&L=<)4D7tNO{SsA4Fp4D?(Ex6nQS&f3TK|atgj`fE z2|OX0(&(ZqxJd~IANX&dvX?U14_<~h2(lP6k^H8ep;2HW6oPo?U%v{M>|{sU~;p zLTv$OTx3H^4zNUn4wUfo>j{CEvTC@C+cw+cW*ABH6u@!M2EdBL?1GbL_#e;7YDBas zic?MTazk(khXSyPeDom_I~wkLv?Wr8<%egEfM!*M9^kl$>zsVzaP}S!gcD3;Czy#58RTm?`p)RTS8I<-sC3+*n{A)P*rU!@Npj`e{x9xsif2v zTW`{q3p^?A!Mk60Q{(FLt(&TVe9z z0-!PiOV02JcNeq?AbJaI+B9xC;LB=}Ho0vH(@;Qe0zq~-8ckOa!(u@Wou`p_TR|QT z38H`lJE$G{q1egUX@&v$x7wNLWD#j*!D58GLv^bT+jpdKBrK#SsQsWK(+RO40VA^w z0nA7MN1Y1Fc#5JkwD5TtHG1t;lo=i)U+kFG?1Jh11h9382!marrRE2eZh;JGh`wNO zQA_~n?%97HOKLA^#oG(5*bgSllS%rOc(S%Yj00cYR;!D9G_90{pfq7D4I*$k?byOV zR|epi%oIJ{ou`5zS!-_dnxOa{uNv)(luMo^5TCOItq}2}sxCztLEzBGS)Mf6dzaw< z!GweAgvFYJu&mH(Vl9HJBV%=Jz~~i%nDGIF9ncTET-AQ=fv{L11&K_;ei!iht(!De;ym|y7ksL|^5Ko~B-vSh80++s?unD}bZaYa@ zPH4M$&fw;xEGN3_H1vHW><%-+dg7dfW)F8$bB+h7sThoOtteO(v{&-+iK}r$%G))# z*Nhx^!ZMj1VeG?EkWg+0CYQSX1t96fV9^3c+9C393LU&CHsFCa1q99$`zTMsEWwLc zxsw1|A?k8-m8HCrk6;K7dhNDJN3R9iws%6vTq_}PtR2CZ8TG;ltZ4I}sU+^s8`P3F5QxrypG1-{ zGlr^7$Wsy(lo=xfC~BpKfg<2z4OEeEF@~x{Pi7O#CvqMJy+f+}=CB_$&IuEslB@s# J000000038FvZ??8 literal 37405 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�-A&iY%khEsGVMaq&$BJA^QAs8x>7-g_ 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 k3oQ - + @@ -14,10 +14,11 @@ + - + - + @@ -30,7 +31,7 @@ - + @@ -52,7 +53,7 @@ - + @@ -77,11 +78,11 @@ - - - - - + + + + + @@ -109,8 +110,8 @@ - - + + @@ -143,17 +144,17 @@ - - + + - + - + - + @@ -176,14 +177,14 @@ - + - + @@ -218,8 +219,8 @@ - - + + @@ -247,10 +248,10 @@ - + - + @@ -274,14 +275,14 @@ - + - - + + @@ -310,7 +311,7 @@ - + @@ -342,11 +343,11 @@ - + - - + + @@ -367,8 +368,8 @@ - - + + @@ -379,7 +380,7 @@ - + @@ -390,10 +391,175 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/font/fontawesome-webfont.ttf b/assets/font/fontawesome-webfont.ttf old mode 100755 new mode 100644 index d3659246915cacb0c9204271f1f9fc5f77049eac..ed9372f8ea0fbaa04f42630a48887e4b38945345 GIT binary patch delta 49975 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 Ou8r`_6ZgPZ&Hn>}$dWk# diff --git a/assets/font/fontawesome-webfont.woff b/assets/font/fontawesome-webfont.woff old mode 100755 new mode 100644 index b9bd17e158d87fb1477f7ac3ddbb5a676f3c26d2..8b280b98fa2fa261aa4b0f8fd061f772073ef83e GIT binary patch literal 71508 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 diff --git a/assets/min/20150517/build/build.css b/assets/min/20150517/build/build.css new file mode 100644 index 00000000..e61d6ef6 --- /dev/null +++ b/assets/min/20150517/build/build.css @@ -0,0 +1,1240 @@ +/*!* Bootstrap v2.3.2 * * Copyright 2013 Twitter,Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world by @mdo and @fat. */.clearfix{*zoom:1;} +.clearfix:before,.clearfix:after{display:table;line-height:0;content:"";}.clearfix:after{clear:both;} +.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block;} +audio,canvas,video{display:inline-block;*display:inline;*zoom:1;}audio:not([controls]){display:none;} +html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}a:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +a:hover,a:active{outline:0;}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;} +sup{top:-0.5em;}sub{bottom:-0.25em;}img{width:auto\9;height:auto;max-width:100%;vertical-align:middle;border:0;-ms-interpolation-mode:bicubic;} +#map_canvas img,.google-maps img{max-width:none;}button,input,select,textarea{margin:0;font-size:100%;vertical-align:middle;} +button,input{*overflow:visible;line-height:normal;}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0;} +button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;} +label,select,button,input[type="button"],input[type="reset"],input[type="submit"],input[type="radio"],input[type="checkbox"]{cursor:pointer;} +input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield;} +input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;} +textarea{overflow:auto;vertical-align:top;}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important;} +a,a:visited{text-decoration:underline;}a[href]:after{content:"(" attr(href) ")";} +abbr[title]:after{content:"(" attr(title) ")";}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:"";} +pre,blockquote{border:1px solid #999;page-break-inside:avoid;}thead{display:table-header-group;} +tr,img{page-break-inside:avoid;}img{max-width:100%!important;}@page{margin:.5cm;} +p,h2,h3{orphans:3;widows:3;}h2,h3{page-break-after:avoid;}}body{margin:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:20px;color:#333;background-color:#fff;} +a{color:#08c;text-decoration:none;}a:hover,a:focus{color:#005580;text-decoration:underline;} +.img-rounded{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.img-polaroid{padding:4px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.1);box-shadow:0 1px 3px rgba(0,0,0,0.1);} +.img-circle{-webkit-border-radius:500px;-moz-border-radius:500px;border-radius:500px;} +.row{margin-left:-20px;*zoom:1;}.row:before,.row:after{display:table;line-height:0;content:"";} +.row:after{clear:both;}[class*="span"]{float:left;min-height:1px;margin-left:20px;} +.container,.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.span12{width:940px;}.span11{width:860px;}.span10{width:780px;}.span9{width:700px;} +.span8{width:620px;}.span7{width:540px;}.span6{width:460px;}.span5{width:380px;} +.span4{width:300px;}.span3{width:220px;}.span2{width:140px;}.span1{width:60px;}.offset12{margin-left:980px;} +.offset11{margin-left:900px;}.offset10{margin-left:820px;}.offset9{margin-left:740px;} +.offset8{margin-left:660px;}.offset7{margin-left:580px;}.offset6{margin-left:500px;} +.offset5{margin-left:420px;}.offset4{margin-left:340px;}.offset3{margin-left:260px;} +.offset2{margin-left:180px;}.offset1{margin-left:100px;}.row-fluid{width:100%;*zoom:1;} +.row-fluid:before,.row-fluid:after{display:table;line-height:0;content:"";}.row-fluid:after{clear:both;} +.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:30px;margin-left:2.127659574468085%;*margin-left:2.074468085106383%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.row-fluid [class*="span"]:first-child{margin-left:0;}.row-fluid .controls-row [class*="span"]+[class*="span"]{margin-left:2.127659574468085%;} +.row-fluid .span12{width:100%;*width:99.94680851063829%;}.row-fluid .span11{width:91.48936170212765%;*width:91.43617021276594%;} +.row-fluid .span10{width:82.97872340425532%;*width:82.92553191489361%;}.row-fluid .span9{width:74.46808510638297%;*width:74.41489361702126%;} +.row-fluid .span8{width:65.95744680851064%;*width:65.90425531914893%;}.row-fluid .span7{width:57.44680851063829%;*width:57.39361702127659%;} +.row-fluid .span6{width:48.93617021276595%;*width:48.88297872340425%;}.row-fluid .span5{width:40.42553191489362%;*width:40.37234042553192%;} +.row-fluid .span4{width:31.914893617021278%;*width:31.861702127659576%;}.row-fluid .span3{width:23.404255319148934%;*width:23.351063829787233%;} +.row-fluid .span2{width:14.893617021276595%;*width:14.840425531914894%;}.row-fluid .span1{width:6.382978723404255%;*width:6.329787234042553%;} +.row-fluid .offset12{margin-left:104.25531914893617%;*margin-left:104.14893617021275%;} +.row-fluid .offset12:first-child{margin-left:102.12765957446808%;*margin-left:102.02127659574467%;} +.row-fluid .offset11{margin-left:95.74468085106382%;*margin-left:95.6382978723404%;} +.row-fluid .offset11:first-child{margin-left:93.61702127659574%;*margin-left:93.51063829787232%;} +.row-fluid .offset10{margin-left:87.23404255319149%;*margin-left:87.12765957446807%;} +.row-fluid .offset10:first-child{margin-left:85.1063829787234%;*margin-left:84.99999999999999%;} +.row-fluid .offset9{margin-left:78.72340425531914%;*margin-left:78.61702127659572%;} +.row-fluid .offset9:first-child{margin-left:76.59574468085106%;*margin-left:76.48936170212764%;} +.row-fluid .offset8{margin-left:70.2127659574468%;*margin-left:70.10638297872339%;} +.row-fluid .offset8:first-child{margin-left:68.08510638297872%;*margin-left:67.9787234042553%;} +.row-fluid .offset7{margin-left:61.70212765957446%;*margin-left:61.59574468085106%;} +.row-fluid .offset7:first-child{margin-left:59.574468085106375%;*margin-left:59.46808510638297%;} +.row-fluid .offset6{margin-left:53.191489361702125%;*margin-left:53.085106382978715%;} +.row-fluid .offset6:first-child{margin-left:51.063829787234035%;*margin-left:50.95744680851063%;} +.row-fluid .offset5{margin-left:44.68085106382979%;*margin-left:44.57446808510638%;} +.row-fluid .offset5:first-child{margin-left:42.5531914893617%;*margin-left:42.4468085106383%;} +.row-fluid .offset4{margin-left:36.170212765957444%;*margin-left:36.06382978723405%;} +.row-fluid .offset4:first-child{margin-left:34.04255319148936%;*margin-left:33.93617021276596%;} +.row-fluid .offset3{margin-left:27.659574468085104%;*margin-left:27.5531914893617%;} +.row-fluid .offset3:first-child{margin-left:25.53191489361702%;*margin-left:25.425531914893618%;} +.row-fluid .offset2{margin-left:19.148936170212764%;*margin-left:19.04255319148936%;} +.row-fluid .offset2:first-child{margin-left:17.02127659574468%;*margin-left:16.914893617021278%;} +.row-fluid .offset1{margin-left:10.638297872340425%;*margin-left:10.53191489361702%;} +.row-fluid .offset1:first-child{margin-left:8.51063829787234%;*margin-left:8.404255319148938%;} +[class*="span"].hide,.row-fluid [class*="span"].hide{display:none;}[class*="span"].pull-right,.row-fluid [class*="span"].pull-right{float:right;} +.container{margin-right:auto;margin-left:auto;*zoom:1;}.container:before,.container:after{display:table;line-height:0;content:"";} +.container:after{clear:both;}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1;} +.container-fluid:before,.container-fluid:after{display:table;line-height:0;content:"";} +.container-fluid:after{clear:both;}p{margin:0 0 10px;}.lead{margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px;} +small{font-size:85%;}strong{font-weight:bold;}em{font-style:italic;}cite{font-style:normal;} +.muted{color:#999;}a.muted:hover,a.muted:focus{color:#808080;}.text-warning{color:#c09853;} +a.text-warning:hover,a.text-warning:focus{color:#a47e3c;}.text-error{color:#b94a48;} +a.text-error:hover,a.text-error:focus{color:#953b39;}.text-info{color:#3a87ad;}a.text-info:hover,a.text-info:focus{color:#2d6987;} +.text-success{color:#468847;}a.text-success:hover,a.text-success:focus{color:#356635;} +.text-left{text-align:left;}.text-right{text-align:right;}.text-center{text-align:center;} +h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:bold;line-height:20px;color:inherit;text-rendering:optimizelegibility;} +h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:normal;line-height:1;color:#999;} +h1,h2,h3{line-height:40px;}h1{font-size:38.5px;}h2{font-size:31.5px;}h3{font-size:24.5px;} +h4{font-size:17.5px;}h5{font-size:14px;}h6{font-size:11.9px;}h1 small{font-size:24.5px;} +h2 small{font-size:17.5px;}h3 small{font-size:14px;}h4 small{font-size:14px;}.page-header{padding-bottom:9px;margin:20px 0 30px;border-bottom:1px solid #eee;} +ul,ol{padding:0;margin:0 0 10px 25px;}ul ul,ul ol,ol ol,ol ul{margin-bottom:0;}li{line-height:20px;} +ul.unstyled,ol.unstyled{margin-left:0;list-style:none;}ul.inline,ol.inline{margin-left:0;list-style:none;} +ul.inline>li,ol.inline>li{display:inline-block;*display:inline;padding-right:5px;padding-left:5px;*zoom:1;} +dl{margin-bottom:20px;}dt,dd{line-height:20px;}dt{font-weight:bold;}dd{margin-left:10px;} +.dl-horizontal{*zoom:1;}.dl-horizontal:before,.dl-horizontal:after{display:table;line-height:0;content:"";} +.dl-horizontal:after{clear:both;}.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap;} +.dl-horizontal dd{margin-left:180px;}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff;} +abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999;} +abbr.initialism{font-size:90%;text-transform:uppercase;}blockquote{padding:0 0 0 15px;margin:0 0 20px;border-left:5px solid #eee;} +blockquote p{margin-bottom:0;font-size:17.5px;font-weight:300;line-height:1.25;} +blockquote small{display:block;line-height:20px;color:#999;}blockquote small:before{content:'\2014 \00A0';} +blockquote.pull-right{float:right;padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;} +blockquote.pull-right p,blockquote.pull-right small{text-align:right;}blockquote.pull-right small:before{content:'';} +blockquote.pull-right small:after{content:'\00A0 \2014';}q:before,q:after,blockquote:before,blockquote:after{content:"";} +address{display:block;margin-bottom:20px;font-style:normal;line-height:20px;}code,pre{padding:0 3px 2px;font-family:Monaco,Menlo,Consolas,"Courier New",monospace;font-size:12px;color:#333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +code{padding:2px 4px;color:#d14;white-space:nowrap;background-color:#f7f7f9;border:1px solid #e1e1e8;} +pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap;background-color:#f5f5f5;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +pre.prettyprint{margin-bottom:20px;}pre code{padding:0;color:inherit;white-space:pre;white-space:pre-wrap;background-color:transparent;border:0;} +.pre-scrollable{max-height:340px;overflow-y:scroll;}form{margin:0 0 20px;}fieldset{padding:0;margin:0;border:0;} +legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333;border:0;border-bottom:1px solid #e5e5e5;} +legend small{font-size:15px;color:#999;}label,input,button,select,textarea{font-size:14px;font-weight:normal;line-height:20px;} +input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +label{display:block;margin-bottom:5px;}select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:4px 6px;margin-bottom:10px;font-size:14px;line-height:20px;color:#555;vertical-align:middle;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +input,textarea,.uneditable-input{width:206px;}textarea{height:auto;}textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#fff;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-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 linear .2s,box-shadow linear .2s;-moz-transition:border linear .2s,box-shadow linear .2s;-o-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s;} +textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82,168,236,0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);} +input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;*margin-top:0;line-height:normal;} +input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;} +select,input[type="file"]{height:30px;*margin-top:4px;line-height:30px;}select{width:220px;background-color:#fff;border:1px solid #ccc;} +select[multiple],select[size]{height:auto;}select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.uneditable-input,.uneditable-textarea{color:#999;cursor:not-allowed;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);box-shadow:inset 0 1px 2px rgba(0,0,0,0.025);} +.uneditable-input{overflow:hidden;white-space:nowrap;}.uneditable-textarea{width:auto;height:auto;} +input:-moz-placeholder,textarea:-moz-placeholder{color:#999;}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999;} +input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999;} +.radio,.checkbox{min-height:20px;padding-left:20px;}.radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-20px;} +.controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}.radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;} +.radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;} +.input-mini{width:60px;}.input-small{width:90px;}.input-medium{width:150px;}.input-large{width:210px;} +.input-xlarge{width:270px;}.input-xxlarge{width:530px;}input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;} +.input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;} +input,textarea,.uneditable-input{margin-left:0;}.controls-row [class*="span"]+[class*="span"]{margin-left:20px;} +input.span12,textarea.span12,.uneditable-input.span12{width:926px;}input.span11,textarea.span11,.uneditable-input.span11{width:846px;} +input.span10,textarea.span10,.uneditable-input.span10{width:766px;}input.span9,textarea.span9,.uneditable-input.span9{width:686px;} +input.span8,textarea.span8,.uneditable-input.span8{width:606px;}input.span7,textarea.span7,.uneditable-input.span7{width:526px;} +input.span6,textarea.span6,.uneditable-input.span6{width:446px;}input.span5,textarea.span5,.uneditable-input.span5{width:366px;} +input.span4,textarea.span4,.uneditable-input.span4{width:286px;}input.span3,textarea.span3,.uneditable-input.span3{width:206px;} +input.span2,textarea.span2,.uneditable-input.span2{width:126px;}input.span1,textarea.span1,.uneditable-input.span1{width:46px;} +.controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;line-height:0;content:"";} +.controls-row:after{clear:both;}.controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;} +.controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;} +input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eee;} +input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;} +.control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;} +.control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;} +.control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);} +.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;} +.control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;} +.control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;} +.control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;} +.control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);} +.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;} +.control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;} +.control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;} +.control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;} +.control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);} +.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;} +.control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;} +.control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;} +.control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;} +.control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);} +.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7ab5d3;} +.control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;} +input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;} +input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;} +.form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;} +.form-actions:before,.form-actions:after{display:table;line-height:0;content:"";} +.form-actions:after{clear:both;}.help-block,.help-inline{color:#595959;}.help-block{display:block;margin-bottom:10px;} +.help-inline{display:inline-block;*display:inline;padding-left:5px;vertical-align:middle;*zoom:1;} +.input-append,.input-prepend{display:inline-block;margin-bottom:10px;font-size:0;white-space:nowrap;vertical-align:middle;} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px;} +.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;} +.input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #fff;background-color:#eee;border:1px solid #ccc;} +.input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;} +.input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}.input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;} +.input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.input-prepend.input-append .btn-group:first-child{margin-left:0;}input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;} +.form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;} +.form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;margin-bottom:0;vertical-align:middle;*zoom:1;} +.form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;}.form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;} +.form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;} +.form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;} +.form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;} +.control-group{margin-bottom:10px;}legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;} +.form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;line-height:0;content:"";} +.form-horizontal .control-group:after{clear:both;}.form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;} +.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;} +.form-horizontal .controls:first-child{*padding-left:180px;}.form-horizontal .help-block{margin-bottom:0;} +.form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;} +.form-horizontal .form-actions{padding-left:180px;}table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;} +.table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top:1px solid #ddd;} +.table th{font-weight:bold;}.table thead th{vertical-align:bottom;}.table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;} +.table tbody+tbody{border-top:2px solid #ddd;}.table .table{background-color:#fff;} +.table-condensed th,.table-condensed td{padding:4px 5px;}.table-bordered{border:1px solid #ddd;border-collapse:separate;*border-collapse:collapse;border-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.table-bordered th,.table-bordered td{border-left:1px solid #ddd;}.table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;} +.table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px;} +.table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px;} +.table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;} +.table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;} +.table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;} +.table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;border-bottom-right-radius:0;-moz-border-radius-bottomright:0;} +.table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topleft:4px;} +.table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-moz-border-radius-topright:4px;} +.table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f9f9f9;} +.table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5;} +table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;} +.table td.span1,.table th.span1{float:none;width:44px;margin-left:0;}.table td.span2,.table th.span2{float:none;width:124px;margin-left:0;} +.table td.span3,.table th.span3{float:none;width:204px;margin-left:0;}.table td.span4,.table th.span4{float:none;width:284px;margin-left:0;} +.table td.span5,.table th.span5{float:none;width:364px;margin-left:0;}.table td.span6,.table th.span6{float:none;width:444px;margin-left:0;} +.table td.span7,.table th.span7{float:none;width:524px;margin-left:0;}.table td.span8,.table th.span8{float:none;width:604px;margin-left:0;} +.table td.span9,.table th.span9{float:none;width:684px;margin-left:0;}.table td.span10,.table th.span10{float:none;width:764px;margin-left:0;} +.table td.span11,.table th.span11{float:none;width:844px;margin-left:0;}.table td.span12,.table th.span12{float:none;width:924px;margin-left:0;} +.table tbody tr.success>td{background-color:#dff0d8;}.table tbody tr.error>td{background-color:#f2dede;} +.table tbody tr.warning>td{background-color:#fcf8e3;}.table tbody tr.info>td{background-color:#d9edf7;} +.table-hover tbody tr.success:hover>td{background-color:#d0e9c6;}.table-hover tbody tr.error:hover>td{background-color:#ebcccc;} +.table-hover tbody tr.warning:hover>td{background-color:#faf2cc;}.table-hover tbody tr.info:hover>td{background-color:#c4e3f3;} +[class^="icon-"],[class*=" icon-"]{display:inline-block;width:14px;height:14px;margin-top:1px;*margin-right:.3em;line-height:14px;vertical-align:text-top;background-image:url("../../../img/glyphicons-halflings.png");background-position:14px 14px;background-repeat:no-repeat;} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:focus>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>li>a:focus>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:focus>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"],.dropdown-submenu:focus>a>[class*=" icon-"]{background-image:url("../../../img/glyphicons-halflings-white.png");} +.icon-glass{background-position:0 0;}.icon-music{background-position:-24px 0;}.icon-search{background-position:-48px 0;} +.icon-envelope{background-position:-72px 0;}.icon-heart{background-position:-96px 0;} +.icon-star{background-position:-120px 0;}.icon-star-empty{background-position:-144px 0;} +.icon-user{background-position:-168px 0;}.icon-film{background-position:-192px 0;} +.icon-th-large{background-position:-216px 0;}.icon-th{background-position:-240px 0;} +.icon-th-list{background-position:-264px 0;}.icon-ok{background-position:-288px 0;} +.icon-remove{background-position:-312px 0;}.icon-zoom-in{background-position:-336px 0;} +.icon-zoom-out{background-position:-360px 0;}.icon-off{background-position:-384px 0;} +.icon-signal{background-position:-408px 0;}.icon-cog{background-position:-432px 0;} +.icon-trash{background-position:-456px 0;}.icon-home{background-position:0 -24px;} +.icon-file{background-position:-24px -24px;}.icon-time{background-position:-48px -24px;} +.icon-road{background-position:-72px -24px;}.icon-download-alt{background-position:-96px -24px;} +.icon-download{background-position:-120px -24px;}.icon-upload{background-position:-144px -24px;} +.icon-inbox{background-position:-168px -24px;}.icon-play-circle{background-position:-192px -24px;} +.icon-repeat{background-position:-216px -24px;}.icon-refresh{background-position:-240px -24px;} +.icon-list-alt{background-position:-264px -24px;}.icon-lock{background-position:-287px -24px;} +.icon-flag{background-position:-312px -24px;}.icon-headphones{background-position:-336px -24px;} +.icon-volume-off{background-position:-360px -24px;}.icon-volume-down{background-position:-384px -24px;} +.icon-volume-up{background-position:-408px -24px;}.icon-qrcode{background-position:-432px -24px;} +.icon-barcode{background-position:-456px -24px;}.icon-tag{background-position:0 -48px;} +.icon-tags{background-position:-25px -48px;}.icon-book{background-position:-48px -48px;} +.icon-bookmark{background-position:-72px -48px;}.icon-print{background-position:-96px -48px;} +.icon-camera{background-position:-120px -48px;}.icon-font{background-position:-144px -48px;} +.icon-bold{background-position:-167px -48px;}.icon-italic{background-position:-192px -48px;} +.icon-text-height{background-position:-216px -48px;}.icon-text-width{background-position:-240px -48px;} +.icon-align-left{background-position:-264px -48px;}.icon-align-center{background-position:-288px -48px;} +.icon-align-right{background-position:-312px -48px;}.icon-align-justify{background-position:-336px -48px;} +.icon-list{background-position:-360px -48px;}.icon-indent-left{background-position:-384px -48px;} +.icon-indent-right{background-position:-408px -48px;}.icon-facetime-video{background-position:-432px -48px;} +.icon-picture{background-position:-456px -48px;}.icon-pencil{background-position:0 -72px;} +.icon-map-marker{background-position:-24px -72px;}.icon-adjust{background-position:-48px -72px;} +.icon-tint{background-position:-72px -72px;}.icon-edit{background-position:-96px -72px;} +.icon-share{background-position:-120px -72px;}.icon-check{background-position:-144px -72px;} +.icon-move{background-position:-168px -72px;}.icon-step-backward{background-position:-192px -72px;} +.icon-fast-backward{background-position:-216px -72px;}.icon-backward{background-position:-240px -72px;} +.icon-play{background-position:-264px -72px;}.icon-pause{background-position:-288px -72px;} +.icon-stop{background-position:-312px -72px;}.icon-forward{background-position:-336px -72px;} +.icon-fast-forward{background-position:-360px -72px;}.icon-step-forward{background-position:-384px -72px;} +.icon-eject{background-position:-408px -72px;}.icon-chevron-left{background-position:-432px -72px;} +.icon-chevron-right{background-position:-456px -72px;}.icon-plus-sign{background-position:0 -96px;} +.icon-minus-sign{background-position:-24px -96px;}.icon-remove-sign{background-position:-48px -96px;} +.icon-ok-sign{background-position:-72px -96px;}.icon-question-sign{background-position:-96px -96px;} +.icon-info-sign{background-position:-120px -96px;}.icon-screenshot{background-position:-144px -96px;} +.icon-remove-circle{background-position:-168px -96px;}.icon-ok-circle{background-position:-192px -96px;} +.icon-ban-circle{background-position:-216px -96px;}.icon-arrow-left{background-position:-240px -96px;} +.icon-arrow-right{background-position:-264px -96px;}.icon-arrow-up{background-position:-289px -96px;} +.icon-arrow-down{background-position:-312px -96px;}.icon-share-alt{background-position:-336px -96px;} +.icon-resize-full{background-position:-360px -96px;}.icon-resize-small{background-position:-384px -96px;} +.icon-plus{background-position:-408px -96px;}.icon-minus{background-position:-433px -96px;} +.icon-asterisk{background-position:-456px -96px;}.icon-exclamation-sign{background-position:0 -120px;} +.icon-gift{background-position:-24px -120px;}.icon-leaf{background-position:-48px -120px;} +.icon-fire{background-position:-72px -120px;}.icon-eye-open{background-position:-96px -120px;} +.icon-eye-close{background-position:-120px -120px;}.icon-warning-sign{background-position:-144px -120px;} +.icon-plane{background-position:-168px -120px;}.icon-calendar{background-position:-192px -120px;} +.icon-random{width:16px;background-position:-216px -120px;}.icon-comment{background-position:-240px -120px;} +.icon-magnet{background-position:-264px -120px;}.icon-chevron-up{background-position:-288px -120px;} +.icon-chevron-down{background-position:-313px -119px;}.icon-retweet{background-position:-336px -120px;} +.icon-shopping-cart{background-position:-360px -120px;}.icon-folder-close{width:16px;background-position:-384px -120px;} +.icon-folder-open{width:16px;background-position:-408px -120px;}.icon-resize-vertical{background-position:-432px -119px;} +.icon-resize-horizontal{background-position:-456px -118px;}.icon-hdd{background-position:0 -144px;} +.icon-bullhorn{background-position:-24px -144px;}.icon-bell{background-position:-48px -144px;} +.icon-certificate{background-position:-72px -144px;}.icon-thumbs-up{background-position:-96px -144px;} +.icon-thumbs-down{background-position:-120px -144px;}.icon-hand-right{background-position:-144px -144px;} +.icon-hand-left{background-position:-168px -144px;}.icon-hand-up{background-position:-192px -144px;} +.icon-hand-down{background-position:-216px -144px;}.icon-circle-arrow-right{background-position:-240px -144px;} +.icon-circle-arrow-left{background-position:-264px -144px;}.icon-circle-arrow-up{background-position:-288px -144px;} +.icon-circle-arrow-down{background-position:-312px -144px;}.icon-globe{background-position:-336px -144px;} +.icon-wrench{background-position:-360px -144px;}.icon-tasks{background-position:-384px -144px;} +.icon-filter{background-position:-408px -144px;}.icon-briefcase{background-position:-432px -144px;} +.icon-fullscreen{background-position:-456px -144px;}.dropup,.dropdown{position:relative;} +.dropdown-toggle{*margin-bottom:-3px;}.dropdown-toggle:active,.open .dropdown-toggle{outline:0;} +.caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";} +.dropdown .caret{margin-top:8px;margin-left:2px;}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;} +.dropdown-menu.pull-right{right:0;left:auto;}.dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff;} +.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap;} +.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);} +.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#0081c2;background-image:-moz-linear-gradient(top,#08c,#0077b3);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#0077b3));background-image:-webkit-linear-gradient(top,#08c,#0077b3);background-image:-o-linear-gradient(top,#08c,#0077b3);background-image:linear-gradient(to bottom,#08c,#0077b3);background-repeat:repeat-x;outline:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0077b3',GradientType=0);} +.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999;} +.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.open{*z-index:1000;}.open>.dropdown-menu{display:block;}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990;} +.pull-right>.dropdown-menu{right:0;left:auto;}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:"";} +.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;} +.dropdown-submenu{position:relative;}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;} +.dropdown-submenu:hover>.dropdown-menu{display:block;}.dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;} +.dropdown-submenu>a:after{display:block;float:right;width:0;height:0;margin-top:5px;margin-right:-10px;border-color:transparent;border-left-color:#ccc;border-style:solid;border-width:5px 0 5px 5px;content:" ";} +.dropdown-submenu:hover>a:after{border-left-color:#fff;}.dropdown-submenu.pull-left{float:none;} +.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.dropdown .dropdown-menu .nav-header{padding-right:20px;padding-left:20px;}.typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);} +.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15);}.well-large{padding:24px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.well-small{padding:9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.fade{opacity:0;-webkit-transition:opacity .15s linear;-moz-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear;} +.fade.in{opacity:1;}.collapse{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-moz-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease;} +.collapse.in{height:auto;}.close{float:right;font-size:20px;font-weight:bold;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20);} +.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;filter:alpha(opacity=40);} +button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;} +.btn{display:inline-block;*display:inline;padding:4px 12px;margin-bottom:0;*margin-left:.3em;font-size:14px;line-height:20px;color:#333;text-align:center;text-shadow:0 1px 1px rgba(255,255,255,0.75);vertical-align:middle;cursor:pointer;background-color:#f5f5f5;*background-color:#e6e6e6;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;*border:0;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);*zoom:1;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);} +.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333;background-color:#e6e6e6;*background-color:#d9d9d9;} +.btn:active,.btn.active{background-color:#ccc \9;}.btn:first-child{*margin-left:0;} +.btn:hover,.btn:focus{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear;} +.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;} +.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);} +.btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;}.btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;}.btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;} +.btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.btn-block{display:block;width:100%;padding-right:0;padding-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.btn-block+.btn-block{margin-top:5px;}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;} +.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,0.75);} +.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#006dcc;*background-color:#04c;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3;} +.btn-primary:active,.btn-primary.active{background-color:#039 \9;}.btn-warning{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#faa732;*background-color:#f89406;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#fff;background-color:#f89406;*background-color:#df8505;} +.btn-warning:active,.btn-warning.active{background-color:#c67605 \9;}.btn-danger{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#da4f49;*background-color:#bd362f;background-image:-moz-linear-gradient(top,#ee5f5b,#bd362f);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#bd362f));background-image:-webkit-linear-gradient(top,#ee5f5b,#bd362f);background-image:-o-linear-gradient(top,#ee5f5b,#bd362f);background-image:linear-gradient(to bottom,#ee5f5b,#bd362f);background-repeat:repeat-x;border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffbd362f',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#fff;background-color:#bd362f;*background-color:#a9302a;} +.btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}.btn-success{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#5bb75b;*background-color:#51a351;background-image:-moz-linear-gradient(top,#62c462,#51a351);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351));background-image:-webkit-linear-gradient(top,#62c462,#51a351);background-image:-o-linear-gradient(top,#62c462,#51a351);background-image:linear-gradient(to bottom,#62c462,#51a351);background-repeat:repeat-x;border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff51a351',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#fff;background-color:#51a351;*background-color:#499249;} +.btn-success:active,.btn-success.active{background-color:#408140 \9;}.btn-info{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#49afcd;*background-color:#2f96b4;background-image:-moz-linear-gradient(top,#5bc0de,#2f96b4);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#2f96b4));background-image:-webkit-linear-gradient(top,#5bc0de,#2f96b4);background-image:-o-linear-gradient(top,#5bc0de,#2f96b4);background-image:linear-gradient(to bottom,#5bc0de,#2f96b4);background-repeat:repeat-x;border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff2f96b4',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#fff;background-color:#2f96b4;*background-color:#2a85a0;} +.btn-info:active,.btn-info.active{background-color:#24748c \9;}.btn-inverse{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#363636;*background-color:#222;background-image:-moz-linear-gradient(top,#444,#222);background-image:-webkit-gradient(linear,0 0,0 100%,from(#444),to(#222));background-image:-webkit-linear-gradient(top,#444,#222);background-image:-o-linear-gradient(top,#444,#222);background-image:linear-gradient(to bottom,#444,#222);background-repeat:repeat-x;border-color:#222 #222 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444',endColorstr='#ff222222',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#fff;background-color:#222;*background-color:#151515;} +.btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;} +button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;} +button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;} +button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;} +button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;} +.btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.btn-link{color:#08c;cursor:pointer;border-color:transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent;} +.btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333;text-decoration:none;} +.btn-group{position:relative;display:inline-block;*display:inline;*margin-left:.3em;font-size:0;white-space:nowrap;vertical-align:middle;*zoom:1;} +.btn-group:first-child{*margin-left:0;}.btn-group+.btn-group{margin-left:5px;}.btn-toolbar{margin-top:10px;margin-bottom:10px;font-size:0;} +.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;} +.btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group>.btn+.btn{margin-left:-1px;}.btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;} +.btn-group>.btn-mini{font-size:10.5px;}.btn-group>.btn-small{font-size:11.9px;}.btn-group>.btn-large{font-size:17.5px;} +.btn-group>.btn:first-child{margin-left:0;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px;} +.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px;} +.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px;} +.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px;} +.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;} +.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}.btn-group>.btn+.dropdown-toggle{*padding-top:5px;padding-right:8px;*padding-bottom:5px;padding-left:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 1px 0 0 rgba(255,255,255,0.125),inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);} +.btn-group>.btn-mini+.dropdown-toggle{*padding-top:2px;padding-right:5px;*padding-bottom:2px;padding-left:5px;} +.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;}.btn-group>.btn-large+.dropdown-toggle{*padding-top:7px;padding-right:12px;*padding-bottom:7px;padding-left:12px;} +.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);} +.btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;}.btn-group.open .btn-primary.dropdown-toggle{background-color:#04c;} +.btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;}.btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;} +.btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;}.btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;} +.btn-group.open .btn-inverse.dropdown-toggle{background-color:#222;}.btn .caret{margin-top:8px;margin-left:0;} +.btn-large .caret{margin-top:6px;}.btn-large .caret{border-top-width:5px;border-right-width:5px;border-left-width:5px;} +.btn-mini .caret,.btn-small .caret{margin-top:8px;}.dropup .btn-large .caret{border-bottom-width:5px;} +.btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#fff;border-bottom-color:#fff;} +.btn-group-vertical{display:inline-block;*display:inline;*zoom:1;}.btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.btn-group-vertical>.btn+.btn{margin-top:-1px;margin-left:0;}.btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;} +.btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.alert{padding:8px 35px 8px 14px;margin-bottom:20px;text-shadow:0 1px 0 rgba(255,255,255,0.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.alert,.alert h4{color:#c09853;}.alert h4{margin:0;}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px;} +.alert-success{color:#468847;background-color:#dff0d8;border-color:#d6e9c6;}.alert-success h4{color:#468847;} +.alert-danger,.alert-error{color:#b94a48;background-color:#f2dede;border-color:#eed3d7;} +.alert-danger h4,.alert-error h4{color:#b94a48;}.alert-info{color:#3a87ad;background-color:#d9edf7;border-color:#bce8f1;} +.alert-info h4{color:#3a87ad;}.alert-block{padding-top:14px;padding-bottom:14px;} +.alert-block>p,.alert-block>ul{margin-bottom:0;}.alert-block p+p{margin-top:5px;} +.nav{margin-bottom:20px;margin-left:0;list-style:none;}.nav>li>a{display:block;} +.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee;}.nav>li>a>img{max-width:none;} +.nav>.pull-right{float:right;}.nav-header{display:block;padding:3px 15px;font-size:11px;font-weight:bold;line-height:20px;color:#999;text-shadow:0 1px 0 rgba(255,255,255,0.5);text-transform:uppercase;} +.nav li+.nav-header{margin-top:9px;}.nav-list{padding-right:15px;padding-left:15px;margin-bottom:0;} +.nav-list>li>a,.nav-list .nav-header{margin-right:-15px;margin-left:-15px;text-shadow:0 1px 0 rgba(255,255,255,0.5);} +.nav-list>li>a{padding:3px 15px;}.nav-list>.active>a,.nav-list>.active>a:hover,.nav-list>.active>a:focus{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.2);background-color:#08c;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{margin-right:2px;}.nav-list .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #fff;} +.nav-tabs,.nav-pills{*zoom:1;}.nav-tabs:before,.nav-pills:before,.nav-tabs:after,.nav-pills:after{display:table;line-height:0;content:"";} +.nav-tabs:after,.nav-pills:after{clear:both;}.nav-tabs>li,.nav-pills>li{float:left;} +.nav-tabs>li>a,.nav-pills>li>a{padding-right:12px;padding-left:12px;margin-right:2px;line-height:14px;} +.nav-tabs{border-bottom:1px solid #ddd;}.nav-tabs>li{margin-bottom:-1px;}.nav-tabs>li>a{padding-top:8px;padding-bottom:8px;line-height:20px;border:1px solid transparent;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;} +.nav-tabs>li>a:hover,.nav-tabs>li>a:focus{border-color:#eee #eee #ddd;}.nav-tabs>.active>a,.nav-tabs>.active>a:hover,.nav-tabs>.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;} +.nav-pills>li>a{padding-top:8px;padding-bottom:8px;margin-top:2px;margin-bottom:2px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.nav-pills>.active>a,.nav-pills>.active>a:hover,.nav-pills>.active>a:focus{color:#fff;background-color:#08c;} +.nav-stacked>li{float:none;}.nav-stacked>li>a{margin-right:0;}.nav-tabs.nav-stacked{border-bottom:0;} +.nav-tabs.nav-stacked>li>a{border:1px solid #ddd;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.nav-tabs.nav-stacked>li:first-child>a{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-topleft:4px;} +.nav-tabs.nav-stacked>li:last-child>a{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-moz-border-radius-bottomleft:4px;} +.nav-tabs.nav-stacked>li>a:hover,.nav-tabs.nav-stacked>li>a:focus{z-index:2;border-color:#ddd;} +.nav-pills.nav-stacked>li>a{margin-bottom:3px;}.nav-pills.nav-stacked>li:last-child>a{margin-bottom:1px;} +.nav-tabs .dropdown-menu{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;} +.nav-pills .dropdown-menu{-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.nav .dropdown-toggle .caret{margin-top:6px;border-top-color:#08c;border-bottom-color:#08c;} +.nav .dropdown-toggle:hover .caret,.nav .dropdown-toggle:focus .caret{border-top-color:#005580;border-bottom-color:#005580;} +.nav-tabs .dropdown-toggle .caret{margin-top:8px;}.nav .active .dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} +.nav-tabs .active .dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555;} +.nav>.dropdown.active>a:hover,.nav>.dropdown.active>a:focus{cursor:pointer;}.nav-tabs .open .dropdown-toggle,.nav-pills .open .dropdown-toggle,.nav>li.dropdown.open.active>a:hover,.nav>li.dropdown.open.active>a:focus{color:#fff;background-color:#999;border-color:#999;} +.nav li.dropdown.open .caret,.nav li.dropdown.open.active .caret,.nav li.dropdown.open a:hover .caret,.nav li.dropdown.open a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;opacity:1;filter:alpha(opacity=100);} +.tabs-stacked .open>a:hover,.tabs-stacked .open>a:focus{border-color:#999;}.tabbable{*zoom:1;} +.tabbable:before,.tabbable:after{display:table;line-height:0;content:"";}.tabbable:after{clear:both;} +.tab-content{overflow:auto;}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0;} +.tab-content>.tab-pane,.pill-content>.pill-pane{display:none;}.tab-content>.active,.pill-content>.active{display:block;} +.tabs-below>.nav-tabs{border-top:1px solid #ddd;}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0;} +.tabs-below>.nav-tabs>li>a{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;} +.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#ddd;border-bottom-color:transparent;} +.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #ddd #ddd #ddd;} +.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li{float:none;}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a{min-width:74px;margin-right:0;margin-bottom:3px;} +.tabs-left>.nav-tabs{float:left;margin-right:19px;border-right:1px solid #ddd;}.tabs-left>.nav-tabs>li>a{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;} +.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#eee #ddd #eee #eee;} +.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#ddd transparent #ddd #ddd;*border-right-color:#fff;} +.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #ddd;}.tabs-right>.nav-tabs>li>a{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;} +.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#eee #eee #eee #ddd;} +.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#ddd #ddd #ddd transparent;*border-left-color:#fff;} +.nav>.disabled>a{color:#999;}.nav>.disabled>a:hover,.nav>.disabled>a:focus{text-decoration:none;cursor:default;background-color:transparent;} +.navbar{*position:relative;*z-index:2;margin-bottom:20px;overflow:visible;}.navbar-inner{min-height:40px;padding-right:20px;padding-left:20px;background-color:#fafafa;background-image:-moz-linear-gradient(top,#fff,#f2f2f2);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#f2f2f2));background-image:-webkit-linear-gradient(top,#fff,#f2f2f2);background-image:-o-linear-gradient(top,#fff,#f2f2f2);background-image:linear-gradient(to bottom,#fff,#f2f2f2);background-repeat:repeat-x;border:1px solid #d4d4d4;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#fff2f2f2',GradientType=0);*zoom:1;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.065);-moz-box-shadow:0 1px 4px rgba(0,0,0,0.065);box-shadow:0 1px 4px rgba(0,0,0,0.065);} +.navbar-inner:before,.navbar-inner:after{display:table;line-height:0;content:"";} +.navbar-inner:after{clear:both;}.navbar .container{width:auto;}.nav-collapse.collapse{height:auto;overflow:visible;} +.navbar .brand{display:block;float:left;padding:10px 20px 10px;margin-left:-20px;font-size:20px;font-weight:200;color:#777;text-shadow:0 1px 0 #fff;} +.navbar .brand:hover,.navbar .brand:focus{text-decoration:none;}.navbar-text{margin-bottom:0;line-height:40px;color:#777;} +.navbar-link{color:#777;}.navbar-link:hover,.navbar-link:focus{color:#333;}.navbar .divider-vertical{height:40px;margin:0 9px;border-right:1px solid #fff;border-left:1px solid #f2f2f2;} +.navbar .btn,.navbar .btn-group{margin-top:5px;}.navbar .btn-group .btn,.navbar .input-prepend .btn,.navbar .input-append .btn,.navbar .input-prepend .btn-group,.navbar .input-append .btn-group{margin-top:0;} +.navbar-form{margin-bottom:0;*zoom:1;}.navbar-form:before,.navbar-form:after{display:table;line-height:0;content:"";} +.navbar-form:after{clear:both;}.navbar-form input,.navbar-form select,.navbar-form .radio,.navbar-form .checkbox{margin-top:5px;} +.navbar-form input,.navbar-form select,.navbar-form .btn{display:inline-block;margin-bottom:0;} +.navbar-form input[type="image"],.navbar-form input[type="checkbox"],.navbar-form input[type="radio"]{margin-top:3px;} +.navbar-form .input-append,.navbar-form .input-prepend{margin-top:5px;white-space:nowrap;} +.navbar-form .input-append input,.navbar-form .input-prepend input{margin-top:0;} +.navbar-search{position:relative;float:left;margin-top:5px;margin-bottom:0;}.navbar-search .search-query{padding:4px 14px;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:13px;font-weight:normal;line-height:1;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.navbar-static-top{position:static;margin-bottom:0;}.navbar-static-top .navbar-inner{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;margin-bottom:0;} +.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{border-width:0 0 1px;} +.navbar-fixed-bottom .navbar-inner{border-width:1px 0 0;}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding-right:0;padding-left:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;} +.navbar-static-top .container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:940px;} +.navbar-fixed-top{top:0;}.navbar-fixed-top .navbar-inner,.navbar-static-top .navbar-inner{-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.1);box-shadow:0 1px 10px rgba(0,0,0,0.1);} +.navbar-fixed-bottom{bottom:0;}.navbar-fixed-bottom .navbar-inner{-webkit-box-shadow:0 -1px 10px rgba(0,0,0,0.1);-moz-box-shadow:0 -1px 10px rgba(0,0,0,0.1);box-shadow:0 -1px 10px rgba(0,0,0,0.1);} +.navbar .nav{position:relative;left:0;display:block;float:left;margin:0 10px 0 0;} +.navbar .nav.pull-right{float:right;margin-right:0;}.navbar .nav>li{float:left;} +.navbar .nav>li>a{float:none;padding:10px 15px 10px;color:#777;text-decoration:none;text-shadow:0 1px 0 #fff;} +.navbar .nav .dropdown-toggle .caret{margin-top:8px;}.navbar .nav>li>a:focus,.navbar .nav>li>a:hover{color:#333;text-decoration:none;background-color:transparent;} +.navbar .nav>.active>a,.navbar .nav>.active>a:hover,.navbar .nav>.active>a:focus{color:#555;text-decoration:none;background-color:#e5e5e5;-webkit-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);-moz-box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);box-shadow:inset 0 3px 8px rgba(0,0,0,0.125);} +.navbar .btn-navbar{display:none;float:right;padding:7px 10px;margin-right:5px;margin-left:5px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#ededed;*background-color:#e5e5e5;background-image:-moz-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#e5e5e5));background-image:-webkit-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:-o-linear-gradient(top,#f2f2f2,#e5e5e5);background-image:linear-gradient(to bottom,#f2f2f2,#e5e5e5);background-repeat:repeat-x;border-color:#e5e5e5 #e5e5e5 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2',endColorstr='#ffe5e5e5',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.075);} +.navbar .btn-navbar:hover,.navbar .btn-navbar:focus,.navbar .btn-navbar:active,.navbar .btn-navbar.active,.navbar .btn-navbar.disabled,.navbar .btn-navbar[disabled]{color:#fff;background-color:#e5e5e5;*background-color:#d9d9d9;} +.navbar .btn-navbar:active,.navbar .btn-navbar.active{background-color:#ccc \9;} +.navbar .btn-navbar .icon-bar{display:block;width:18px;height:2px;background-color:#f5f5f5;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 1px 0 rgba(0,0,0,0.25);-moz-box-shadow:0 1px 0 rgba(0,0,0,0.25);box-shadow:0 1px 0 rgba(0,0,0,0.25);} +.btn-navbar .icon-bar+.icon-bar{margin-top:3px;}.navbar .nav>li>.dropdown-menu:before{position:absolute;top:-7px;left:9px;display:inline-block;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-left:7px solid transparent;border-bottom-color:rgba(0,0,0,0.2);content:'';} +.navbar .nav>li>.dropdown-menu:after{position:absolute;top:-6px;left:10px;display:inline-block;border-right:6px solid transparent;border-bottom:6px solid #fff;border-left:6px solid transparent;content:'';} +.navbar-fixed-bottom .nav>li>.dropdown-menu:before{top:auto;bottom:-7px;border-top:7px solid #ccc;border-bottom:0;border-top-color:rgba(0,0,0,0.2);} +.navbar-fixed-bottom .nav>li>.dropdown-menu:after{top:auto;bottom:-6px;border-top:6px solid #fff;border-bottom:0;} +.navbar .nav li.dropdown>a:hover .caret,.navbar .nav li.dropdown>a:focus .caret{border-top-color:#333;border-bottom-color:#333;} +.navbar .nav li.dropdown.open>.dropdown-toggle,.navbar .nav li.dropdown.active>.dropdown-toggle,.navbar .nav li.dropdown.open.active>.dropdown-toggle{color:#555;background-color:#e5e5e5;} +.navbar .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#777;border-bottom-color:#777;} +.navbar .nav li.dropdown.open>.dropdown-toggle .caret,.navbar .nav li.dropdown.active>.dropdown-toggle .caret,.navbar .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#555;border-bottom-color:#555;} +.navbar .pull-right>li>.dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right{right:0;left:auto;} +.navbar .pull-right>li>.dropdown-menu:before,.navbar .nav>li>.dropdown-menu.pull-right:before{right:12px;left:auto;} +.navbar .pull-right>li>.dropdown-menu:after,.navbar .nav>li>.dropdown-menu.pull-right:after{right:13px;left:auto;} +.navbar .pull-right>li>.dropdown-menu .dropdown-menu,.navbar .nav>li>.dropdown-menu.pull-right .dropdown-menu{right:100%;left:auto;margin-right:-1px;margin-left:0;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;} +.navbar-inverse .navbar-inner{background-color:#1b1b1b;background-image:-moz-linear-gradient(top,#222,#111);background-image:-webkit-gradient(linear,0 0,0 100%,from(#222),to(#111));background-image:-webkit-linear-gradient(top,#222,#111);background-image:-o-linear-gradient(top,#222,#111);background-image:linear-gradient(to bottom,#222,#111);background-repeat:repeat-x;border-color:#252525;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222',endColorstr='#ff111111',GradientType=0);} +.navbar-inverse .brand,.navbar-inverse .nav>li>a{color:#999;text-shadow:0 -1px 0 rgba(0,0,0,0.25);} +.navbar-inverse .brand:hover,.navbar-inverse .nav>li>a:hover,.navbar-inverse .brand:focus,.navbar-inverse .nav>li>a:focus{color:#fff;} +.navbar-inverse .brand{color:#999;}.navbar-inverse .navbar-text{color:#999;}.navbar-inverse .nav>li>a:focus,.navbar-inverse .nav>li>a:hover{color:#fff;background-color:transparent;} +.navbar-inverse .nav .active>a,.navbar-inverse .nav .active>a:hover,.navbar-inverse .nav .active>a:focus{color:#fff;background-color:#111;} +.navbar-inverse .navbar-link{color:#999;}.navbar-inverse .navbar-link:hover,.navbar-inverse .navbar-link:focus{color:#fff;} +.navbar-inverse .divider-vertical{border-right-color:#222;border-left-color:#111;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle{color:#fff;background-color:#111;} +.navbar-inverse .nav li.dropdown>a:hover .caret,.navbar-inverse .nav li.dropdown>a:focus .caret{border-top-color:#fff;border-bottom-color:#fff;} +.navbar-inverse .nav li.dropdown>.dropdown-toggle .caret{border-top-color:#999;border-bottom-color:#999;} +.navbar-inverse .nav li.dropdown.open>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.active>.dropdown-toggle .caret,.navbar-inverse .nav li.dropdown.open.active>.dropdown-toggle .caret{border-top-color:#fff;border-bottom-color:#fff;} +.navbar-inverse .navbar-search .search-query{color:#fff;background-color:#515151;border-color:#111;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1),0 1px 0 rgba(255,255,255,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none;} +.navbar-inverse .navbar-search .search-query:-moz-placeholder{color:#ccc;}.navbar-inverse .navbar-search .search-query:-ms-input-placeholder{color:#ccc;} +.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder{color:#ccc;} +.navbar-inverse .navbar-search .search-query:focus,.navbar-inverse .navbar-search .search-query.focused{padding:5px 15px;color:#333;text-shadow:0 1px 0 #fff;background-color:#fff;border:0;outline:0;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.15);-moz-box-shadow:0 0 3px rgba(0,0,0,0.15);box-shadow:0 0 3px rgba(0,0,0,0.15);} +.navbar-inverse .btn-navbar{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e0e0e;*background-color:#040404;background-image:-moz-linear-gradient(top,#151515,#040404);background-image:-webkit-gradient(linear,0 0,0 100%,from(#151515),to(#040404));background-image:-webkit-linear-gradient(top,#151515,#040404);background-image:-o-linear-gradient(top,#151515,#040404);background-image:linear-gradient(to bottom,#151515,#040404);background-repeat:repeat-x;border-color:#040404 #040404 #000;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515',endColorstr='#ff040404',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);} +.navbar-inverse .btn-navbar:hover,.navbar-inverse .btn-navbar:focus,.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active,.navbar-inverse .btn-navbar.disabled,.navbar-inverse .btn-navbar[disabled]{color:#fff;background-color:#040404;*background-color:#000;} +.navbar-inverse .btn-navbar:active,.navbar-inverse .btn-navbar.active{background-color:#000 \9;} +.breadcrumb{padding:8px 15px;margin:0 0 20px;list-style:none;background-color:#f5f5f5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.breadcrumb>li{display:inline-block;*display:inline;text-shadow:0 1px 0 #fff;*zoom:1;} +.breadcrumb>li>.divider{padding:0 5px;color:#ccc;}.breadcrumb>.active{color:#999;} +.pagination{margin:20px 0;}.pagination ul{display:inline-block;*display:inline;margin-bottom:0;margin-left:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*zoom:1;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05);} +.pagination ul>li{display:inline;}.pagination ul>li>a,.pagination ul>li>span{float:left;padding:4px 12px;line-height:20px;text-decoration:none;background-color:#fff;border:1px solid #ddd;border-left-width:0;} +.pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{background-color:#f5f5f5;} +.pagination ul>.active>a,.pagination ul>.active>span{color:#999;cursor:default;} +.pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{color:#999;cursor:default;background-color:transparent;} +.pagination ul>li:first-child>a,.pagination ul>li:first-child>span{border-left-width:1px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-webkit-border-top-left-radius:4px;border-top-left-radius:4px;-moz-border-radius-bottomleft:4px;-moz-border-radius-topleft:4px;} +.pagination ul>li:last-child>a,.pagination ul>li:last-child>span{-webkit-border-top-right-radius:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-topright:4px;-moz-border-radius-bottomright:4px;} +.pagination-centered{text-align:center;}.pagination-right{text-align:right;}.pagination-large ul>li>a,.pagination-large ul>li>span{padding:11px 19px;font-size:17.5px;} +.pagination-large ul>li:first-child>a,.pagination-large ul>li:first-child>span{-webkit-border-bottom-left-radius:6px;border-bottom-left-radius:6px;-webkit-border-top-left-radius:6px;border-top-left-radius:6px;-moz-border-radius-bottomleft:6px;-moz-border-radius-topleft:6px;} +.pagination-large ul>li:last-child>a,.pagination-large ul>li:last-child>span{-webkit-border-top-right-radius:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;border-bottom-right-radius:6px;-moz-border-radius-topright:6px;-moz-border-radius-bottomright:6px;} +.pagination-mini ul>li:first-child>a,.pagination-small ul>li:first-child>a,.pagination-mini ul>li:first-child>span,.pagination-small ul>li:first-child>span{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;} +.pagination-mini ul>li:last-child>a,.pagination-small ul>li:last-child>a,.pagination-mini ul>li:last-child>span,.pagination-small ul>li:last-child>span{-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;} +.pagination-small ul>li>a,.pagination-small ul>li>span{padding:2px 10px;font-size:11.9px;} +.pagination-mini ul>li>a,.pagination-mini ul>li>span{padding:0 6px;font-size:10.5px;} +.pager{margin:20px 0;text-align:center;list-style:none;*zoom:1;}.pager:before,.pager:after{display:table;line-height:0;content:"";} +.pager:after{clear:both;}.pager li{display:inline;}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;} +.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#f5f5f5;} +.pager .next>a,.pager .next>span{float:right;}.pager .previous>a,.pager .previous>span{float:left;} +.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:default;background-color:#fff;} +.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000;} +.modal-backdrop.fade{opacity:0;}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80);} +.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;outline:0;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;} +.modal.fade{top:-25%;-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out;} +.modal.fade.in{top:10%;}.modal-header{padding:9px 15px;border-bottom:1px solid #eee;} +.modal-header .close{margin-top:2px;}.modal-header h3{margin:0;line-height:30px;} +.modal-body{position:relative;max-height:400px;padding:15px;overflow-y:auto;}.modal-form{margin-bottom:0;} +.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;*zoom:1;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;} +.modal-footer:before,.modal-footer:after{display:table;line-height:0;content:"";} +.modal-footer:after{clear:both;}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px;} +.modal-footer .btn-group .btn+.btn{margin-left:-1px;}.modal-footer .btn-block+.btn-block{margin-left:0;} +.tooltip{position:absolute;z-index:1030;display:block;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible;} +.tooltip.in{opacity:.8;filter:alpha(opacity=80);}.tooltip.top{padding:5px 0;margin-top:-3px;} +.tooltip.right{padding:0 5px;margin-left:3px;}.tooltip.bottom{padding:5px 0;margin-top:3px;} +.tooltip.left{padding:0 5px;margin-left:-3px;}.tooltip-inner{max-width:200px;padding:8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;} +.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0;} +.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0;} +.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px;} +.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px;} +.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;} +.popover.top{margin-top:-10px;}.popover.right{margin-left:10px;}.popover.bottom{margin-top:10px;} +.popover.left{margin-left:-10px;}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;-webkit-border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;border-radius:5px 5px 0 0;} +.popover-title:empty{display:none;}.popover-content{padding:9px 14px;}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid;} +.popover .arrow{border-width:11px;}.popover .arrow:after{border-width:10px;content:"";} +.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0;} +.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;} +.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0;} +.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;} +.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0;} +.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;} +.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0;} +.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;} +.thumbnails{margin-left:-20px;list-style:none;*zoom:1;}.thumbnails:before,.thumbnails:after{display:table;line-height:0;content:"";} +.thumbnails:after{clear:both;}.row-fluid .thumbnails{margin-left:0;}.thumbnails>li{float:left;margin-bottom:20px;margin-left:20px;} +.thumbnail{display:block;padding:4px;line-height:20px;border:1px solid #ddd;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.055);-moz-box-shadow:0 1px 3px rgba(0,0,0,0.055);box-shadow:0 1px 3px rgba(0,0,0,0.055);-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;} +a.thumbnail:hover,a.thumbnail:focus{border-color:#08c;-webkit-box-shadow:0 1px 4px rgba(0,105,214,0.25);-moz-box-shadow:0 1px 4px rgba(0,105,214,0.25);box-shadow:0 1px 4px rgba(0,105,214,0.25);} +.thumbnail>img{display:block;max-width:100%;margin-right:auto;margin-left:auto;} +.thumbnail .caption{padding:9px;color:#555;}.media,.media-body{overflow:hidden;*overflow:visible;zoom:1;} +.media,.media .media{margin-top:15px;}.media:first-child{margin-top:0;}.media-object{display:block;} +.media-heading{margin:0 0 5px;}.media>.pull-left{margin-right:10px;}.media>.pull-right{margin-left:10px;} +.media-list{margin-left:0;list-style:none;}.label,.badge{display:inline-block;padding:2px 4px;font-size:11.844px;font-weight:bold;line-height:14px;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25);white-space:nowrap;vertical-align:baseline;background-color:#999;} +.label{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.badge{padding-right:9px;padding-left:9px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px;} +.label:empty,.badge:empty{display:none;}a.label:hover,a.label:focus,a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer;} +.label-important,.badge-important{background-color:#b94a48;}.label-important[href],.badge-important[href]{background-color:#953b39;} +.label-warning,.badge-warning{background-color:#f89406;}.label-warning[href],.badge-warning[href]{background-color:#c67605;} +.label-success,.badge-success{background-color:#468847;}.label-success[href],.badge-success[href]{background-color:#356635;} +.label-info,.badge-info{background-color:#3a87ad;}.label-info[href],.badge-info[href]{background-color:#2d6987;} +.label-inverse,.badge-inverse{background-color:#333;}.label-inverse[href],.badge-inverse[href]{background-color:#1a1a1a;} +.btn .label,.btn .badge{position:relative;top:-1px;}.btn-mini .label,.btn-mini .badge{top:0;} +@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0;}to{background-position:0 0;} +}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0;}to{background-position:0 0;} +}@-ms-keyframes progress-bar-stripes{from{background-position:40px 0;}to{background-position:0 0;} +}@-o-keyframes progress-bar-stripes{from{background-position:0 0;}to{background-position:40px 0;} +}@keyframes progress-bar-stripes{from{background-position:40px 0;}to{background-position:0 0;} +}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f7f7f7;background-image:-moz-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#f5f5f5),to(#f9f9f9));background-image:-webkit-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:-o-linear-gradient(top,#f5f5f5,#f9f9f9);background-image:linear-gradient(to bottom,#f5f5f5,#f9f9f9);background-repeat:repeat-x;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#fff9f9f9',GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);} +.progress .bar{float:left;width:0;height:100%;font-size:12px;color:#fff;text-align:center;text-shadow:0 -1px 0 rgba(0,0,0,0.25);background-color:#0e90d2;background-image:-moz-linear-gradient(top,#149bdf,#0480be);background-image:-webkit-gradient(linear,0 0,0 100%,from(#149bdf),to(#0480be));background-image:-webkit-linear-gradient(top,#149bdf,#0480be);background-image:-o-linear-gradient(top,#149bdf,#0480be);background-image:linear-gradient(to bottom,#149bdf,#0480be);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf',endColorstr='#ff0480be',GradientType=0);-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .6s ease;-moz-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease;} +.progress .bar+.bar{-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 1px 0 0 rgba(0,0,0,0.15),inset 0 -1px 0 rgba(0,0,0,0.15);} +.progress-striped .bar{background-color:#149bdf;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;-moz-background-size:40px 40px;-o-background-size:40px 40px;background-size:40px 40px;} +.progress.active .bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;} +.progress-danger .bar,.progress .bar-danger{background-color:#dd514c;background-image:-moz-linear-gradient(top,#ee5f5b,#c43c35);background-image:-webkit-gradient(linear,0 0,0 100%,from(#ee5f5b),to(#c43c35));background-image:-webkit-linear-gradient(top,#ee5f5b,#c43c35);background-image:-o-linear-gradient(top,#ee5f5b,#c43c35);background-image:linear-gradient(to bottom,#ee5f5b,#c43c35);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b',endColorstr='#ffc43c35',GradientType=0);} +.progress-danger.progress-striped .bar,.progress-striped .bar-danger{background-color:#ee5f5b;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);} +.progress-success .bar,.progress .bar-success{background-color:#5eb95e;background-image:-moz-linear-gradient(top,#62c462,#57a957);background-image:-webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#57a957));background-image:-webkit-linear-gradient(top,#62c462,#57a957);background-image:-o-linear-gradient(top,#62c462,#57a957);background-image:linear-gradient(to bottom,#62c462,#57a957);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462',endColorstr='#ff57a957',GradientType=0);} +.progress-success.progress-striped .bar,.progress-striped .bar-success{background-color:#62c462;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);} +.progress-info .bar,.progress .bar-info{background-color:#4bb1cf;background-image:-moz-linear-gradient(top,#5bc0de,#339bb9);background-image:-webkit-gradient(linear,0 0,0 100%,from(#5bc0de),to(#339bb9));background-image:-webkit-linear-gradient(top,#5bc0de,#339bb9);background-image:-o-linear-gradient(top,#5bc0de,#339bb9);background-image:linear-gradient(to bottom,#5bc0de,#339bb9);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de',endColorstr='#ff339bb9',GradientType=0);} +.progress-info.progress-striped .bar,.progress-striped .bar-info{background-color:#5bc0de;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);} +.progress-warning .bar,.progress .bar-warning{background-color:#faa732;background-image:-moz-linear-gradient(top,#fbb450,#f89406);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fbb450),to(#f89406));background-image:-webkit-linear-gradient(top,#fbb450,#f89406);background-image:-o-linear-gradient(top,#fbb450,#f89406);background-image:linear-gradient(to bottom,#fbb450,#f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450',endColorstr='#fff89406',GradientType=0);} +.progress-warning.progress-striped .bar,.progress-striped .bar-warning{background-color:#fbb450;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);} +.accordion{margin-bottom:20px;}.accordion-group{margin-bottom:2px;border:1px solid #e5e5e5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.accordion-heading{border-bottom:0;}.accordion-heading .accordion-toggle{display:block;padding:8px 15px;} +.accordion-toggle{cursor:pointer;}.accordion-inner{padding:9px 15px;border-top:1px solid #e5e5e5;} +.carousel{position:relative;margin-bottom:20px;line-height:1;}.carousel-inner{position:relative;width:100%;overflow:hidden;} +.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-moz-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left;} +.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;line-height:1;} +.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block;} +.carousel-inner>.active{left:0;}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%;} +.carousel-inner>.next{left:100%;}.carousel-inner>.prev{left:-100%;}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0;} +.carousel-inner>.active.left{left:-100%;}.carousel-inner>.active.right{left:100%;} +.carousel-control{position:absolute;top:40%;left:15px;width:40px;height:40px;margin-top:-20px;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-align:center;background:#222;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;filter:alpha(opacity=50);} +.carousel-control.right{right:15px;left:auto;}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90);} +.carousel-indicators{position:absolute;top:15px;right:15px;z-index:5;margin:0;list-style:none;} +.carousel-indicators li{display:block;float:left;width:10px;height:10px;margin-left:5px;text-indent:-999px;background-color:#ccc;background-color:rgba(255,255,255,0.25);border-radius:5px;} +.carousel-indicators .active{background-color:#fff;}.carousel-caption{position:absolute;right:0;bottom:0;left:0;padding:15px;background:#333;background:rgba(0,0,0,0.75);} +.carousel-caption h4,.carousel-caption p{line-height:20px;color:#fff;}.carousel-caption h4{margin:0 0 5px;} +.carousel-caption p{margin-bottom:0;}.hero-unit{padding:60px;margin-bottom:30px;font-size:18px;font-weight:200;line-height:30px;color:inherit;background-color:#eee;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.hero-unit h1{margin-bottom:0;font-size:60px;line-height:1;letter-spacing:-1px;color:inherit;} +.hero-unit li{line-height:30px;}.pull-right{float:right;}.pull-left{float:left;} +.hide{display:none;}.show{display:block;}.invisible{visibility:hidden;}.affix{position:fixed;} +.clearfix{*zoom:1;}.clearfix:after,.clearfix:before{display:table;line-height:0;content:"";} +.clearfix:after{clear:both;}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;} +.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.hidden{display:none;visibility:hidden;}.hidden-desktop,.visible-phone,.visible-tablet{display:none!important;} +.visible-desktop{display:inherit!important;}@media(min-width:768px) and(max-width:979px){.hidden-desktop{display:inherit!important;} +.visible-desktop{display:none!important;}.visible-tablet{display:inherit!important;} +.hidden-tablet{display:none!important;}}@media(max-width:767px){.hidden-desktop{display:inherit!important;} +.visible-desktop{display:none!important;}.visible-phone{display:inherit!important;} +.hidden-phone{display:none!important;}}.visible-print{display:none!important;}@media print{.visible-print{display:inherit!important;} +.hidden-print{display:none!important;}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1;} +.row:after,.row:before{display:table;line-height:0;content:"";}.row:after{clear:both;} +[class*=span]{float:left;min-height:1px;margin-left:30px;}.container,.navbar-fixed-bottom .container,.navbar-fixed-top .container,.navbar-static-top .container,.span12{width:1170px;} +.span11{width:1070px;}.span10{width:970px;}.span9{width:870px;}.span8{width:770px;} +.span7{width:670px;}.span6{width:570px;}.span5{width:470px;}.span4{width:370px;} +.span3{width:270px;}.span2{width:170px;}.span1{width:70px;}.offset12{margin-left:1230px;} +.offset11{margin-left:1130px;}.offset10{margin-left:1030px;}.offset9{margin-left:930px;} +.offset8{margin-left:830px;}.offset7{margin-left:730px;}.offset6{margin-left:630px;} +.offset5{margin-left:530px;}.offset4{margin-left:430px;}.offset3{margin-left:330px;} +.offset2{margin-left:230px;}.offset1{margin-left:130px;}.row-fluid{width:100%;*zoom:1;} +.row-fluid:after,.row-fluid:before{display:table;line-height:0;content:"";}.row-fluid:after{clear:both;} +.row-fluid [class*=span]{display:block;float:left;width:100%;min-height:30px;margin-left:2.564102564102564%;*margin-left:2.5109110747408616%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.row-fluid [class*=span]:first-child{margin-left:0;}.row-fluid .controls-row [class*=span]+[class*=span]{margin-left:2.564102564102564%;} +.row-fluid .span12{width:100%;*width:99.94680851063829%;}.row-fluid .span11{width:91.45299145299145%;*width:91.39979996362975%;} +.row-fluid .span10{width:82.90598290598291%;*width:82.8527914166212%;}.row-fluid .span9{width:74.35897435897436%;*width:74.30578286961266%;} +.row-fluid .span8{width:65.81196581196582%;*width:65.75877432260411%;}.row-fluid .span7{width:57.26495726495726%;*width:57.21176577559556%;} +.row-fluid .span6{width:48.717948717948715%;*width:48.664757228587014%;}.row-fluid .span5{width:40.17094017094017%;*width:40.11774868157847%;} +.row-fluid .span4{width:31.623931623931625%;*width:31.570740134569924%;}.row-fluid .span3{width:23.076923076923077%;*width:23.023731587561375%;} +.row-fluid .span2{width:14.52991452991453%;*width:14.476723040552828%;}.row-fluid .span1{width:5.982905982905983%;*width:5.929714493544281%;} +.row-fluid .offset12{margin-left:105.12820512820512%;*margin-left:105.02182214948171%;} +.row-fluid .offset12:first-child{margin-left:102.56410256410257%;*margin-left:102.45771958537915%;} +.row-fluid .offset11{margin-left:96.58119658119658%;*margin-left:96.47481360247316%;} +.row-fluid .offset11:first-child{margin-left:94.01709401709402%;*margin-left:93.91071103837061%;} +.row-fluid .offset10{margin-left:88.03418803418803%;*margin-left:87.92780505546462%;} +.row-fluid .offset10:first-child{margin-left:85.47008547008548%;*margin-left:85.36370249136206%;} +.row-fluid .offset9{margin-left:79.48717948717949%;*margin-left:79.38079650845607%;} +.row-fluid .offset9:first-child{margin-left:76.92307692307693%;*margin-left:76.81669394435352%;} +.row-fluid .offset8{margin-left:70.94017094017094%;*margin-left:70.83378796144753%;} +.row-fluid .offset8:first-child{margin-left:68.37606837606839%;*margin-left:68.26968539734497%;} +.row-fluid .offset7{margin-left:62.393162393162385%;*margin-left:62.28677941443899%;} +.row-fluid .offset7:first-child{margin-left:59.82905982905982%;*margin-left:59.72267685033642%;} +.row-fluid .offset6{margin-left:53.84615384615384%;*margin-left:53.739770867430444%;} +.row-fluid .offset6:first-child{margin-left:51.28205128205128%;*margin-left:51.175668303327875%;} +.row-fluid .offset5{margin-left:45.299145299145295%;*margin-left:45.1927623204219%;} +.row-fluid .offset5:first-child{margin-left:42.73504273504273%;*margin-left:42.62865975631933%;} +.row-fluid .offset4{margin-left:36.75213675213675%;*margin-left:36.645753773413354%;} +.row-fluid .offset4:first-child{margin-left:34.18803418803419%;*margin-left:34.081651209310785%;} +.row-fluid .offset3{margin-left:28.205128205128204%;*margin-left:28.0987452264048%;} +.row-fluid .offset3:first-child{margin-left:25.641025641025642%;*margin-left:25.53464266230224%;} +.row-fluid .offset2{margin-left:19.65811965811966%;*margin-left:19.551736679396257%;} +.row-fluid .offset2:first-child{margin-left:17.094017094017094%;*margin-left:16.98763411529369%;} +.row-fluid .offset1{margin-left:11.11111111111111%;*margin-left:11.004728132387708%;} +.row-fluid .offset1:first-child{margin-left:8.547008547008547%;*margin-left:8.440625568285142%;} +.uneditable-input,input,textarea{margin-left:0;}.controls-row [class*=span]+[class*=span]{margin-left:30px;} +.uneditable-input.span12,input.span12,textarea.span12{width:1156px;}.uneditable-input.span11,input.span11,textarea.span11{width:1056px;} +.uneditable-input.span10,input.span10,textarea.span10{width:956px;}.uneditable-input.span9,input.span9,textarea.span9{width:856px;} +.uneditable-input.span8,input.span8,textarea.span8{width:756px;}.uneditable-input.span7,input.span7,textarea.span7{width:656px;} +.uneditable-input.span6,input.span6,textarea.span6{width:556px;}.uneditable-input.span5,input.span5,textarea.span5{width:456px;} +.uneditable-input.span4,input.span4,textarea.span4{width:356px;}.uneditable-input.span3,input.span3,textarea.span3{width:256px;} +.uneditable-input.span2,input.span2,textarea.span2{width:156px;}.uneditable-input.span1,input.span1,textarea.span1{width:56px;} +.thumbnails{margin-left:-30px;}.thumbnails>li{margin-left:30px;}.row-fluid .thumbnails{margin-left:0;} +}@media(min-width:768px) and(max-width:979px){.row{margin-left:-20px;*zoom:1;}.row:after,.row:before{display:table;line-height:0;content:"";} +.row:after{clear:both;}[class*=span]{float:left;min-height:1px;margin-left:20px;} +.container,.navbar-fixed-bottom .container,.navbar-fixed-top .container,.navbar-static-top .container,.span12{width:724px;} +.span11{width:662px;}.span10{width:600px;}.span9{width:538px;}.span8{width:476px;} +.span7{width:414px;}.span6{width:352px;}.span5{width:290px;}.span4{width:228px;} +.span3{width:166px;}.span2{width:104px;}.span1{width:42px;}.offset12{margin-left:764px;} +.offset11{margin-left:702px;}.offset10{margin-left:640px;}.offset9{margin-left:578px;} +.offset8{margin-left:516px;}.offset7{margin-left:454px;}.offset6{margin-left:392px;} +.offset5{margin-left:330px;}.offset4{margin-left:268px;}.offset3{margin-left:206px;} +.offset2{margin-left:144px;}.offset1{margin-left:82px;}.row-fluid{width:100%;*zoom:1;} +.row-fluid:after,.row-fluid:before{display:table;line-height:0;content:"";}.row-fluid:after{clear:both;} +.row-fluid [class*=span]{display:block;float:left;width:100%;min-height:30px;margin-left:2.7624309392265194%;*margin-left:2.709239449864817%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.row-fluid [class*=span]:first-child{margin-left:0;}.row-fluid .controls-row [class*=span]+[class*=span]{margin-left:2.7624309392265194%;} +.row-fluid .span12{width:100%;*width:99.94680851063829%;}.row-fluid .span11{width:91.43646408839778%;*width:91.38327259903608%;} +.row-fluid .span10{width:82.87292817679558%;*width:82.81973668743387%;}.row-fluid .span9{width:74.30939226519337%;*width:74.25620077583166%;} +.row-fluid .span8{width:65.74585635359117%;*width:65.69266486422946%;}.row-fluid .span7{width:57.18232044198895%;*width:57.12912895262725%;} +.row-fluid .span6{width:48.61878453038674%;*width:48.56559304102504%;}.row-fluid .span5{width:40.05524861878453%;*width:40.00205712942283%;} +.row-fluid .span4{width:31.491712707182323%;*width:31.43852121782062%;}.row-fluid .span3{width:22.92817679558011%;*width:22.87498530621841%;} +.row-fluid .span2{width:14.3646408839779%;*width:14.311449394616199%;}.row-fluid .span1{width:5.801104972375691%;*width:5.747913483013988%;} +.row-fluid .offset12{margin-left:105.52486187845304%;*margin-left:105.41847889972962%;} +.row-fluid .offset12:first-child{margin-left:102.76243093922652%;*margin-left:102.6560479605031%;} +.row-fluid .offset11{margin-left:96.96132596685082%;*margin-left:96.8549429881274%;} +.row-fluid .offset11:first-child{margin-left:94.1988950276243%;*margin-left:94.09251204890089%;} +.row-fluid .offset10{margin-left:88.39779005524862%;*margin-left:88.2914070765252%;} +.row-fluid .offset10:first-child{margin-left:85.6353591160221%;*margin-left:85.52897613729868%;} +.row-fluid .offset9{margin-left:79.8342541436464%;*margin-left:79.72787116492299%;} +.row-fluid .offset9:first-child{margin-left:77.07182320441989%;*margin-left:76.96544022569647%;} +.row-fluid .offset8{margin-left:71.2707182320442%;*margin-left:71.16433525332079%;} +.row-fluid .offset8:first-child{margin-left:68.50828729281768%;*margin-left:68.40190431409427%;} +.row-fluid .offset7{margin-left:62.70718232044199%;*margin-left:62.600799341718584%;} +.row-fluid .offset7:first-child{margin-left:59.94475138121547%;*margin-left:59.838368402492065%;} +.row-fluid .offset6{margin-left:54.14364640883978%;*margin-left:54.037263430116376%;} +.row-fluid .offset6:first-child{margin-left:51.38121546961326%;*margin-left:51.27483249088986%;} +.row-fluid .offset5{margin-left:45.58011049723757%;*margin-left:45.47372751851417%;} +.row-fluid .offset5:first-child{margin-left:42.81767955801105%;*margin-left:42.71129657928765%;} +.row-fluid .offset4{margin-left:37.01657458563536%;*margin-left:36.91019160691196%;} +.row-fluid .offset4:first-child{margin-left:34.25414364640884%;*margin-left:34.14776066768544%;} +.row-fluid .offset3{margin-left:28.45303867403315%;*margin-left:28.346655695309746%;} +.row-fluid .offset3:first-child{margin-left:25.69060773480663%;*margin-left:25.584224756083227%;} +.row-fluid .offset2{margin-left:19.88950276243094%;*margin-left:19.783119783707537%;} +.row-fluid .offset2:first-child{margin-left:17.12707182320442%;*margin-left:17.02068884448102%;} +.row-fluid .offset1{margin-left:11.32596685082873%;*margin-left:11.219583872105325%;} +.row-fluid .offset1:first-child{margin-left:8.56353591160221%;*margin-left:8.457152932878806%;} +.uneditable-input,input,textarea{margin-left:0;}.controls-row [class*=span]+[class*=span]{margin-left:20px;} +.uneditable-input.span12,input.span12,textarea.span12{width:710px;}.uneditable-input.span11,input.span11,textarea.span11{width:648px;} +.uneditable-input.span10,input.span10,textarea.span10{width:586px;}.uneditable-input.span9,input.span9,textarea.span9{width:524px;} +.uneditable-input.span8,input.span8,textarea.span8{width:462px;}.uneditable-input.span7,input.span7,textarea.span7{width:400px;} +.uneditable-input.span6,input.span6,textarea.span6{width:338px;}.uneditable-input.span5,input.span5,textarea.span5{width:276px;} +.uneditable-input.span4,input.span4,textarea.span4{width:214px;}.uneditable-input.span3,input.span3,textarea.span3{width:152px;} +.uneditable-input.span2,input.span2,textarea.span2{width:90px;}.uneditable-input.span1,input.span1,textarea.span1{width:28px;} +}@media(max-width:767px){body{padding-right:20px;padding-left:20px;}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{margin-right:-20px;margin-left:-20px;} +.container-fluid{padding:0;}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left;} +.dl-horizontal dd{margin-left:0;}.container{width:auto;}.row-fluid{width:100%;}.row,.thumbnails{margin-left:0;} +.thumbnails>li{float:none;margin-left:0;}.row-fluid [class*=span],.uneditable-input[class*=span],[class*=span]{display:block;float:none;width:100%;margin-left:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.row-fluid .span12,.span12{width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.row-fluid [class*=offset]:first-child{margin-left:0;}.input-large,.input-xlarge,.input-xxlarge,.uneditable-input,input[class*=span],select[class*=span],textarea[class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} +.input-append input,.input-append input[class*=span],.input-prepend input,.input-prepend input[class*=span]{display:inline-block;width:auto;} +.controls-row [class*=span]+[class*=span]{margin-left:0;}.modal{position:absolute;top:20px;right:20px;left:20px;width:auto;margin:0;} +.modal.fade{top:-100px;}.modal.fade.in{top:20px;}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0);} +.page-header h1 small{display:block;line-height:20px;}input[type=checkbox],input[type=radio]{border:1px solid #ccc;} +.form-horizontal .control-label{float:none;width:auto;padding-top:0;text-align:left;} +.form-horizontal .controls{margin-left:0;}.form-horizontal .control-list{padding-top:0;} +.form-horizontal .form-actions{padding-right:10px;padding-left:10px;}.media .pull-left,.media .pull-right{display:block;float:none;margin-bottom:10px;} +.media-object{margin-right:0;margin-left:0;}.modal{position:absolute;top:10px;right:10px;left:10px;} +.modal-header .close{padding:10px;margin:-10px;}.carousel-caption{position:static;} +}@media(max-width:979px){body{padding-top:0;}.navbar-fixed-bottom,.navbar-fixed-top{position:static;} +.navbar-fixed-top{margin-bottom:20px;}.navbar-fixed-bottom{margin-top:20px;}.navbar-fixed-bottom .navbar-inner,.navbar-fixed-top .navbar-inner{padding:5px;} +.navbar .container{width:auto;padding:0;}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px;} +.nav-collapse{clear:both;}.nav-collapse .nav{float:none;margin:0 0 10px;}.nav-collapse .nav>li{float:none;} +.nav-collapse .nav>li>a{margin-bottom:2px;}.nav-collapse .nav>.divider-vertical{display:none;} +.nav-collapse .nav .nav-header{color:#777;text-shadow:none;}.nav-collapse .dropdown-menu a,.nav-collapse .nav>li>a{padding:9px 15px;font-weight:700;color:#777;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.nav-collapse .btn{padding:4px 10px;font-weight:400;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.nav-collapse .dropdown-menu li+li a{margin-bottom:2px;}.nav-collapse .dropdown-menu a:focus,.nav-collapse .dropdown-menu a:hover,.nav-collapse .nav>li>a:focus,.nav-collapse .nav>li>a:hover{background-color:#f2f2f2;} +.navbar-inverse .nav-collapse .dropdown-menu a,.navbar-inverse .nav-collapse .nav>li>a{color:#999;} +.navbar-inverse .nav-collapse .dropdown-menu a:focus,.navbar-inverse .nav-collapse .dropdown-menu a:hover,.navbar-inverse .nav-collapse .nav>li>a:focus,.navbar-inverse .nav-collapse .nav>li>a:hover{background-color:#111;} +.nav-collapse.in .btn-group{padding:0;margin-top:5px;}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:none;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;} +.nav-collapse .open>.dropdown-menu{display:block;}.nav-collapse .dropdown-menu .divider,.nav-collapse .dropdown-menu:after,.nav-collapse .dropdown-menu:before,.nav-collapse .nav>li>.dropdown-menu:after,.nav-collapse .nav>li>.dropdown-menu:before{display:none;} +.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:10px 15px;margin:10px 0;border-top:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);} +.navbar-inverse .nav-collapse .navbar-form,.navbar-inverse .nav-collapse .navbar-search{border-top-color:#111;border-bottom-color:#111;} +.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0;}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden;} +.navbar .btn-navbar{display:block;}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px;} +}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important;} +}@font-face{font-family:'FontAwesome';src:url('../../../font/fontawesome-webfont.eot?v=3.2.1');src:url('../../../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'),url('../../../font/fontawesome-webfont.woff?v=3.2.1') format('woff'),url('../../../font/fontawesome-webfont.ttf?v=3.2.1') format('truetype'),url('../../../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg');font-weight:normal;font-style:normal;} +[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;} +[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;} +.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}a [class^="icon-"],a [class*=" icon-"]{display:inline;} +[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:.2857142857142857em;} +[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;} +.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;} +.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;} +[class^="icon-"].hide,[class*=" icon-"].hide{display:none;}.icon-muted{color:#eee;} +.icon-light{color:#fff;}.icon-dark{color:#333;}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;} +.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;} +.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;} +.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;} +.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;} +.pull-right{float:right;}.pull-left{float:left;}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;} +[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0;} +.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;} +.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;} +.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;} +.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;} +.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;} +.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;} +.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;} +.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;} +.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;} +.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;} +.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;}.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;} +.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;} +.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;} +a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;}@-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);} +}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);} +.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);} +.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);} +.icon-flip-horizontal:before{-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1);} +.icon-flip-vertical:before{-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1);} +a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;} +.icon-glass:before{content:"\f000";}.icon-music:before{content:"\f001";}.icon-search:before{content:"\f002";} +.icon-envelope-alt:before{content:"\f003";}.icon-heart:before{content:"\f004";}.icon-star:before{content:"\f005";} +.icon-star-empty:before{content:"\f006";}.icon-user:before{content:"\f007";}.icon-film:before{content:"\f008";} +.icon-th-large:before{content:"\f009";}.icon-th:before{content:"\f00a";}.icon-th-list:before{content:"\f00b";} +.icon-ok:before{content:"\f00c";}.icon-remove:before{content:"\f00d";}.icon-zoom-in:before{content:"\f00e";} +.icon-zoom-out:before{content:"\f010";}.icon-power-off:before,.icon-off:before{content:"\f011";} +.icon-signal:before{content:"\f012";}.icon-gear:before,.icon-cog:before{content:"\f013";} +.icon-trash:before{content:"\f014";}.icon-home:before{content:"\f015";}.icon-file-alt:before{content:"\f016";} +.icon-time:before{content:"\f017";}.icon-road:before{content:"\f018";}.icon-download-alt:before{content:"\f019";} +.icon-download:before{content:"\f01a";}.icon-upload:before{content:"\f01b";}.icon-inbox:before{content:"\f01c";} +.icon-play-circle:before{content:"\f01d";}.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";} +.icon-refresh:before{content:"\f021";}.icon-list-alt:before{content:"\f022";}.icon-lock:before{content:"\f023";} +.icon-flag:before{content:"\f024";}.icon-headphones:before{content:"\f025";}.icon-volume-off:before{content:"\f026";} +.icon-volume-down:before{content:"\f027";}.icon-volume-up:before{content:"\f028";} +.icon-qrcode:before{content:"\f029";}.icon-barcode:before{content:"\f02a";}.icon-tag:before{content:"\f02b";} +.icon-tags:before{content:"\f02c";}.icon-book:before{content:"\f02d";}.icon-bookmark:before{content:"\f02e";} +.icon-print:before{content:"\f02f";}.icon-camera:before{content:"\f030";}.icon-font:before{content:"\f031";} +.icon-bold:before{content:"\f032";}.icon-italic:before{content:"\f033";}.icon-text-height:before{content:"\f034";} +.icon-text-width:before{content:"\f035";}.icon-align-left:before{content:"\f036";} +.icon-align-center:before{content:"\f037";}.icon-align-right:before{content:"\f038";} +.icon-align-justify:before{content:"\f039";}.icon-list:before{content:"\f03a";}.icon-indent-left:before{content:"\f03b";} +.icon-indent-right:before{content:"\f03c";}.icon-facetime-video:before{content:"\f03d";} +.icon-picture:before{content:"\f03e";}.icon-pencil:before{content:"\f040";}.icon-map-marker:before{content:"\f041";} +.icon-adjust:before{content:"\f042";}.icon-tint:before{content:"\f043";}.icon-edit:before{content:"\f044";} +.icon-share:before{content:"\f045";}.icon-check:before{content:"\f046";}.icon-move:before{content:"\f047";} +.icon-step-backward:before{content:"\f048";}.icon-fast-backward:before{content:"\f049";} +.icon-backward:before{content:"\f04a";}.icon-play:before{content:"\f04b";}.icon-pause:before{content:"\f04c";} +.icon-stop:before{content:"\f04d";}.icon-forward:before{content:"\f04e";}.icon-fast-forward:before{content:"\f050";} +.icon-step-forward:before{content:"\f051";}.icon-eject:before{content:"\f052";}.icon-chevron-left:before{content:"\f053";} +.icon-chevron-right:before{content:"\f054";}.icon-plus-sign:before{content:"\f055";} +.icon-minus-sign:before{content:"\f056";}.icon-remove-sign:before{content:"\f057";} +.icon-ok-sign:before{content:"\f058";}.icon-question-sign:before{content:"\f059";} +.icon-info-sign:before{content:"\f05a";}.icon-screenshot:before{content:"\f05b";} +.icon-remove-circle:before{content:"\f05c";}.icon-ok-circle:before{content:"\f05d";} +.icon-ban-circle:before{content:"\f05e";}.icon-arrow-left:before{content:"\f060";} +.icon-arrow-right:before{content:"\f061";}.icon-arrow-up:before{content:"\f062";} +.icon-arrow-down:before{content:"\f063";}.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";} +.icon-resize-full:before{content:"\f065";}.icon-resize-small:before{content:"\f066";} +.icon-plus:before{content:"\f067";}.icon-minus:before{content:"\f068";}.icon-asterisk:before{content:"\f069";} +.icon-exclamation-sign:before{content:"\f06a";}.icon-gift:before{content:"\f06b";} +.icon-leaf:before{content:"\f06c";}.icon-fire:before{content:"\f06d";}.icon-eye-open:before{content:"\f06e";} +.icon-eye-close:before{content:"\f070";}.icon-warning-sign:before{content:"\f071";} +.icon-plane:before{content:"\f072";}.icon-calendar:before{content:"\f073";}.icon-random:before{content:"\f074";} +.icon-comment:before{content:"\f075";}.icon-magnet:before{content:"\f076";}.icon-chevron-up:before{content:"\f077";} +.icon-chevron-down:before{content:"\f078";}.icon-retweet:before{content:"\f079";} +.icon-shopping-cart:before{content:"\f07a";}.icon-folder-close:before{content:"\f07b";} +.icon-folder-open:before{content:"\f07c";}.icon-resize-vertical:before{content:"\f07d";} +.icon-resize-horizontal:before{content:"\f07e";}.icon-bar-chart:before{content:"\f080";} +.icon-twitter-sign:before{content:"\f081";}.icon-facebook-sign:before{content:"\f082";} +.icon-camera-retro:before{content:"\f083";}.icon-key:before{content:"\f084";}.icon-gears:before,.icon-cogs:before{content:"\f085";} +.icon-comments:before{content:"\f086";}.icon-thumbs-up-alt:before{content:"\f087";} +.icon-thumbs-down-alt:before{content:"\f088";}.icon-star-half:before{content:"\f089";} +.icon-heart-empty:before{content:"\f08a";}.icon-signout:before{content:"\f08b";} +.icon-linkedin-sign:before{content:"\f08c";}.icon-pushpin:before{content:"\f08d";} +.icon-external-link:before{content:"\f08e";}.icon-signin:before{content:"\f090";} +.icon-trophy:before{content:"\f091";}.icon-github-sign:before{content:"\f092";}.icon-upload-alt:before{content:"\f093";} +.icon-lemon:before{content:"\f094";}.icon-phone:before{content:"\f095";}.icon-unchecked:before,.icon-check-empty:before{content:"\f096";} +.icon-bookmark-empty:before{content:"\f097";}.icon-phone-sign:before{content:"\f098";} +.icon-twitter:before{content:"\f099";}.icon-facebook:before{content:"\f09a";}.icon-github:before{content:"\f09b";} +.icon-unlock:before{content:"\f09c";}.icon-credit-card:before{content:"\f09d";}.icon-rss:before{content:"\f09e";} +.icon-hdd:before{content:"\f0a0";}.icon-bullhorn:before{content:"\f0a1";}.icon-bell:before{content:"\f0a2";} +.icon-certificate:before{content:"\f0a3";}.icon-hand-right:before{content:"\f0a4";} +.icon-hand-left:before{content:"\f0a5";}.icon-hand-up:before{content:"\f0a6";}.icon-hand-down:before{content:"\f0a7";} +.icon-circle-arrow-left:before{content:"\f0a8";}.icon-circle-arrow-right:before{content:"\f0a9";} +.icon-circle-arrow-up:before{content:"\f0aa";}.icon-circle-arrow-down:before{content:"\f0ab";} +.icon-globe:before{content:"\f0ac";}.icon-wrench:before{content:"\f0ad";}.icon-tasks:before{content:"\f0ae";} +.icon-filter:before{content:"\f0b0";}.icon-briefcase:before{content:"\f0b1";}.icon-fullscreen:before{content:"\f0b2";} +.icon-group:before{content:"\f0c0";}.icon-link:before{content:"\f0c1";}.icon-cloud:before{content:"\f0c2";} +.icon-beaker:before{content:"\f0c3";}.icon-cut:before{content:"\f0c4";}.icon-copy:before{content:"\f0c5";} +.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";}.icon-save:before{content:"\f0c7";} +.icon-sign-blank:before{content:"\f0c8";}.icon-reorder:before{content:"\f0c9";}.icon-list-ul:before{content:"\f0ca";} +.icon-list-ol:before{content:"\f0cb";}.icon-strikethrough:before{content:"\f0cc";} +.icon-underline:before{content:"\f0cd";}.icon-table:before{content:"\f0ce";}.icon-magic:before{content:"\f0d0";} +.icon-truck:before{content:"\f0d1";}.icon-pinterest:before{content:"\f0d2";}.icon-pinterest-sign:before{content:"\f0d3";} +.icon-google-plus-sign:before{content:"\f0d4";}.icon-google-plus:before{content:"\f0d5";} +.icon-money:before{content:"\f0d6";}.icon-caret-down:before{content:"\f0d7";}.icon-caret-up:before{content:"\f0d8";} +.icon-caret-left:before{content:"\f0d9";}.icon-caret-right:before{content:"\f0da";} +.icon-columns:before{content:"\f0db";}.icon-sort:before{content:"\f0dc";}.icon-sort-down:before{content:"\f0dd";} +.icon-sort-up:before{content:"\f0de";}.icon-envelope:before{content:"\f0e0";}.icon-linkedin:before{content:"\f0e1";} +.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";}.icon-legal:before{content:"\f0e3";} +.icon-dashboard:before{content:"\f0e4";}.icon-comment-alt:before{content:"\f0e5";} +.icon-comments-alt:before{content:"\f0e6";}.icon-bolt:before{content:"\f0e7";}.icon-sitemap:before{content:"\f0e8";} +.icon-umbrella:before{content:"\f0e9";}.icon-paste:before{content:"\f0ea";}.icon-lightbulb:before{content:"\f0eb";} +.icon-exchange:before{content:"\f0ec";}.icon-cloud-download:before{content:"\f0ed";} +.icon-cloud-upload:before{content:"\f0ee";}.icon-user-md:before{content:"\f0f0";} +.icon-stethoscope:before{content:"\f0f1";}.icon-suitcase:before{content:"\f0f2";} +.icon-bell-alt:before{content:"\f0f3";}.icon-coffee:before{content:"\f0f4";}.icon-food:before{content:"\f0f5";} +.icon-file-text-alt:before{content:"\f0f6";}.icon-building:before{content:"\f0f7";} +.icon-hospital:before{content:"\f0f8";}.icon-ambulance:before{content:"\f0f9";}.icon-medkit:before{content:"\f0fa";} +.icon-fighter-jet:before{content:"\f0fb";}.icon-beer:before{content:"\f0fc";}.icon-h-sign:before{content:"\f0fd";} +.icon-plus-sign-alt:before{content:"\f0fe";}.icon-double-angle-left:before{content:"\f100";} +.icon-double-angle-right:before{content:"\f101";}.icon-double-angle-up:before{content:"\f102";} +.icon-double-angle-down:before{content:"\f103";}.icon-angle-left:before{content:"\f104";} +.icon-angle-right:before{content:"\f105";}.icon-angle-up:before{content:"\f106";} +.icon-angle-down:before{content:"\f107";}.icon-desktop:before{content:"\f108";}.icon-laptop:before{content:"\f109";} +.icon-tablet:before{content:"\f10a";}.icon-mobile-phone:before{content:"\f10b";} +.icon-circle-blank:before{content:"\f10c";}.icon-quote-left:before{content:"\f10d";} +.icon-quote-right:before{content:"\f10e";}.icon-spinner:before{content:"\f110";} +.icon-circle:before{content:"\f111";}.icon-mail-reply:before,.icon-reply:before{content:"\f112";} +.icon-github-alt:before{content:"\f113";}.icon-folder-close-alt:before{content:"\f114";} +.icon-folder-open-alt:before{content:"\f115";}.icon-expand-alt:before{content:"\f116";} +.icon-collapse-alt:before{content:"\f117";}.icon-smile:before{content:"\f118";}.icon-frown:before{content:"\f119";} +.icon-meh:before{content:"\f11a";}.icon-gamepad:before{content:"\f11b";}.icon-keyboard:before{content:"\f11c";} +.icon-flag-alt:before{content:"\f11d";}.icon-flag-checkered:before{content:"\f11e";} +.icon-terminal:before{content:"\f120";}.icon-code:before{content:"\f121";}.icon-reply-all:before{content:"\f122";} +.icon-mail-reply-all:before{content:"\f122";}.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";} +.icon-location-arrow:before{content:"\f124";}.icon-crop:before{content:"\f125";} +.icon-code-fork:before{content:"\f126";}.icon-unlink:before{content:"\f127";}.icon-question:before{content:"\f128";} +.icon-info:before{content:"\f129";}.icon-exclamation:before{content:"\f12a";}.icon-superscript:before{content:"\f12b";} +.icon-subscript:before{content:"\f12c";}.icon-eraser:before{content:"\f12d";}.icon-puzzle-piece:before{content:"\f12e";} +.icon-microphone:before{content:"\f130";}.icon-microphone-off:before{content:"\f131";} +.icon-shield:before{content:"\f132";}.icon-calendar-empty:before{content:"\f133";} +.icon-fire-extinguisher:before{content:"\f134";}.icon-rocket:before{content:"\f135";} +.icon-maxcdn:before{content:"\f136";}.icon-chevron-sign-left:before{content:"\f137";} +.icon-chevron-sign-right:before{content:"\f138";}.icon-chevron-sign-up:before{content:"\f139";} +.icon-chevron-sign-down:before{content:"\f13a";}.icon-html5:before{content:"\f13b";} +.icon-css3:before{content:"\f13c";}.icon-anchor:before{content:"\f13d";}.icon-unlock-alt:before{content:"\f13e";} +.icon-bullseye:before{content:"\f140";}.icon-ellipsis-horizontal:before{content:"\f141";} +.icon-ellipsis-vertical:before{content:"\f142";}.icon-rss-sign:before{content:"\f143";} +.icon-play-sign:before{content:"\f144";}.icon-ticket:before{content:"\f145";}.icon-minus-sign-alt:before{content:"\f146";} +.icon-check-minus:before{content:"\f147";}.icon-level-up:before{content:"\f148";} +.icon-level-down:before{content:"\f149";}.icon-check-sign:before{content:"\f14a";} +.icon-edit-sign:before{content:"\f14b";}.icon-external-link-sign:before{content:"\f14c";} +.icon-share-sign:before{content:"\f14d";}.icon-compass:before{content:"\f14e";}.icon-collapse:before{content:"\f150";} +.icon-collapse-top:before{content:"\f151";}.icon-expand:before{content:"\f152";} +.icon-euro:before,.icon-eur:before{content:"\f153";}.icon-gbp:before{content:"\f154";} +.icon-dollar:before,.icon-usd:before{content:"\f155";}.icon-rupee:before,.icon-inr:before{content:"\f156";} +.icon-yen:before,.icon-jpy:before{content:"\f157";}.icon-renminbi:before,.icon-cny:before{content:"\f158";} +.icon-won:before,.icon-krw:before{content:"\f159";}.icon-bitcoin:before,.icon-btc:before{content:"\f15a";} +.icon-file:before{content:"\f15b";}.icon-file-text:before{content:"\f15c";}.icon-sort-by-alphabet:before{content:"\f15d";} +.icon-sort-by-alphabet-alt:before{content:"\f15e";}.icon-sort-by-attributes:before{content:"\f160";} +.icon-sort-by-attributes-alt:before{content:"\f161";}.icon-sort-by-order:before{content:"\f162";} +.icon-sort-by-order-alt:before{content:"\f163";}.icon-thumbs-up:before{content:"\f164";} +.icon-thumbs-down:before{content:"\f165";}.icon-youtube-sign:before{content:"\f166";} +.icon-youtube:before{content:"\f167";}.icon-xing:before{content:"\f168";}.icon-xing-sign:before{content:"\f169";} +.icon-youtube-play:before{content:"\f16a";}.icon-dropbox:before{content:"\f16b";} +.icon-stackexchange:before{content:"\f16c";}.icon-instagram:before{content:"\f16d";} +.icon-flickr:before{content:"\f16e";}.icon-adn:before{content:"\f170";}.icon-bitbucket:before{content:"\f171";} +.icon-bitbucket-sign:before{content:"\f172";}.icon-tumblr:before{content:"\f173";} +.icon-tumblr-sign:before{content:"\f174";}.icon-long-arrow-down:before{content:"\f175";} +.icon-long-arrow-up:before{content:"\f176";}.icon-long-arrow-left:before{content:"\f177";} +.icon-long-arrow-right:before{content:"\f178";}.icon-apple:before{content:"\f179";} +.icon-windows:before{content:"\f17a";}.icon-android:before{content:"\f17b";}.icon-linux:before{content:"\f17c";} +.icon-dribbble:before{content:"\f17d";}.icon-skype:before{content:"\f17e";}.icon-foursquare:before{content:"\f180";} +.icon-trello:before{content:"\f181";}.icon-female:before{content:"\f182";}.icon-male:before{content:"\f183";} +.icon-gittip:before{content:"\f184";}.icon-sun:before{content:"\f185";}.icon-moon:before{content:"\f186";} +.icon-archive:before{content:"\f187";}.icon-bug:before{content:"\f188";}.icon-vk:before{content:"\f189";} +.icon-weibo:before{content:"\f18a";}.icon-renren:before{content:"\f18b";}.icon-graduation-cap:before{content:"\f19d";} +body{padding-bottom:40px;font-family:'Telex';}.nav li a{text-shadow:0 1px 1px rgba(255,255,255,.2)!important;} +.centrato{text-align:center!important;}.cp{text-align:center!important;padding:10px 0!important;font-size:larger!important;} +.brand{padding:10px 15px 0 0!important;margin:0 0 0 0!important;}.altoCento{height:60px!important;} +.paddingSopra{padding-top:5px;}.boxRicerca{height:28px!important;font-size:18px!important;padding-left:10px!important;} +.enorme{font-size:48px!important;}.allinea-destra{text-align:right!important;}.allinea-sinistra{text-align:left!important;} +.allinea-centro{text-align:center!important;}.perContinuare{padding-left:60px;}.hero-unit{background-image:url('../../../../../../img/sfondoherounit.jpg');} +.sf3{text-shadow:1px 1px 0 white;padding-bottom:0;}.scritta-cri{color:#c00!important;font-family:"arial"!important;} +.scritta-gaia{font-family:"arial"!important;}.hero-unit p,.hero-unit h1{text-shadow:1px 2px 1px #333;color:white;} +.loginBoxContainer{position:relative;top:-250px;margin-bottom:-250px;z-index:8;} +.theLoginBox{background-color:white;border-radius:5px;}.riga-cliccabile{cursor:pointer;} +.riga-cliccabile:hover{background-color:#eee!important;}.container-narrow{margin:0 auto;max-width:900px;} +.container-narrow>hr{margin:30px 0;}.navbar-wrapper{position:absolute;top:0;left:0;right:0;z-index:9;margin-top:20px;margin-bottom:-90px;} +.navbar .navbar-inner{border:0;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.25);-moz-box-shadow:0 2px 10px rgba(0,0,0,.25);box-shadow:0 2px 10px rgba(0,0,0,.25);} +.navbar .brand{padding:14px 20px 16px;font-size:16px;font-weight:bold;}.navbar .nav>li>a{padding:15px 20px;} +.navbar .btn-navbar{margin-top:10px;}.carousel{margin-bottom:20px;}.carousel .container{position:relative;z-index:8;} +.carousel-control{height:80px;margin-top:0;font-size:120px;text-shadow:0 1px 1px rgba(0,0,0,.4);background-color:transparent;border:0;} +.slideSalone h1,.slideSalone p{text-shadow:0 2px 2px black!important;}.carousel .item{height:280px;} +.carousel img{position:absolute;top:0;left:0;min-width:100%;height:340px;}.navbar-inner{min-height:50px;} +.carousel-caption{background-color:transparent;position:static;max-width:1200px;padding:0 20px;margin-top:100px;text-align:center;text-shadow:0 0 3px black;} +.carousel-caption h1,.carousel-caption .lead{margin:0;line-height:1.25;color:#fff;text-shadow:0 0 3px black;} +.carousel-caption .btn{margin-top:10px;}#rollerComitati{font-size:x-large;font-weight:bold;} +@media(max-width:979px){.container.navbar-wrapper{margin-bottom:0;width:auto;}.navbar-inner{border-radius:0;margin:-20px 0;} +.carousel .item{height:500px;}.carousel img{width:auto;height:500px;}}@media(max-width:767px){.navbar{margin-left:0!important;margin-right:0!important;} +.carousel{margin-left:-20px;margin-right:-20px;}.carousel .item{height:300px;}.carousel img{height:300px;} +.carousel-caption{width:65%;padding:0 70px;margin-top:100px;}.carousel-caption h1{font-size:30px;} +.carousel-caption .lead,.carousel-caption .btn{font-size:18px;}}.campoVuoto{background-color:#C00!important;color:white!important;} +.mLocalita{padding:8px;border:1px solid gray;color:black;margin-bottom:4px;cursor:pointer;border-radius:4px;-moz-border-radius:4px;background:#fefcea;background:-moz-linear-gradient(top,rgba(254,252,234,1) 0,rgba(241,218,54,1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(254,252,234,1)),color-stop(100%,rgba(241,218,54,1)));background:-webkit-linear-gradient(top,rgba(254,252,234,1) 0,rgba(241,218,54,1) 100%);background:-o-linear-gradient(top,rgba(254,252,234,1) 0,rgba(241,218,54,1) 100%);background:-ms-linear-gradient(top,rgba(254,252,234,1) 0,rgba(241,218,54,1) 100%);background:linear-gradient(to bottom,rgba(254,252,234,1) 0,rgba(241,218,54,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefcea',endColorstr='#f1da36',GradientType=0);text-shadow:1px 1px 1px white;} +.mLocalitaSel{background:#ffc578;background:-moz-linear-gradient(top,rgba(255,197,120,1) 0,rgba(251,157,35,1) 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(255,197,120,1)),color-stop(100%,rgba(251,157,35,1)));background:-webkit-linear-gradient(top,rgba(255,197,120,1) 0,rgba(251,157,35,1) 100%);background:-o-linear-gradient(top,rgba(255,197,120,1) 0,rgba(251,157,35,1) 100%);background:-ms-linear-gradient(top,rgba(255,197,120,1) 0,rgba(251,157,35,1) 100%);background:linear-gradient(to bottom,rgba(255,197,120,1) 0,rgba(251,157,35,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc578',endColorstr='#fb9d23',GradientType=0);border:1px solid black;font-weight:bold;} +.mappaGoogle label{width:auto!important;display:inline!important;}.mappaGoogle img{max-width:none!important;max-height:none!important;} +.ui-timepicker-div .ui-widget-header{margin-bottom:8px;}.ui-timepicker-div dl{text-align:left;} +.ui-timepicker-div dl dt{height:25px;margin-bottom:-25px;}.ui-timepicker-div dl dd{margin:0 10px 10px 65px;} +.ui-timepicker-div td{font-size:90%;}.ui-tpicker-grid-label{background:none;border:none;margin:0;padding:0;} +.ui-timepicker-rtl{direction:rtl;}.ui-timepicker-rtl dl{text-align:right;}.ui-timepicker-rtl dl dd{margin:0 65px 10px 10px;} +#ui-datepicker-div{z-index:9999!important;}.nascosto{display:none;}.grassetto{font-weight:bold;} +.collaMano{cursor:pointer;}.collaMano:hover{border-radius:3px;background-color:#f6f6f6;} +.ctr:hover{background-color:#f2dede;}.bordo{border:1px solid black;}#comitati div{font-size:100%;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;} +.commento{margin-left:auto;margin-right:auto;background:#fff;}.subcommento{border:1px #D3D7D8 solid;position:relative;left:74px;background:#fff;} +.inputCommento{border:1px #D3D7D8 solid;background:#fff;}#navigatoreMobile{text-align:center;} +#navigatoreMobileSelect{font-weight:bold;margin:auto;}.aspiranti_contatore{font-size:8.5em;line-height:1em;text-shadow:3px 3px 0 white;} +.aspiranti_descrizione{font-size:2em;text-transform:uppercase;}.quote_contatore{font-size:6.5em;line-height:1em;text-shadow:3px 3px 0 white;} +.compila-prima-riga td{border-top:2px dashed #888!important;}.modal{overflow-y:visible;} +.modal .modal-body{max-height:420px;overflow-y:auto;}.modal.fade.in{top:5%;}.blocco-con-sfondo{padding:60px 20px;margin:0 -20px;text-shadow:0 0 2px white,0px 0 4px white,0px 0 1px white;font-size:larger;} +.blocco-con-sfondo h3{color:white;text-shadow:0 0 3px black,0px 0 5px black,0px 0 2px black;} +.bottone-lungo{display:block!important;}.fc{direction:ltr;text-align:left;}.fc table{border-collapse:collapse;border-spacing:0;} +html .fc,.fc table{font-size:1em;}.fc td,.fc th{padding:0;vertical-align:top;}.fc-header td{white-space:nowrap;} +.fc-header-left{width:25%;text-align:left;}.fc-header-center{text-align:center;} +.fc-header-right{width:25%;text-align:right;}.fc-header-title{display:inline-block;vertical-align:top;} +.fc-header-title h2{margin-top:0;white-space:nowrap;}.fc .fc-header-space{padding-left:10px;} +.fc-header .fc-button{margin-bottom:1em;vertical-align:top;}.fc-header .fc-button{margin-right:-1px;} +.fc-header .fc-corner-right{margin-right:1px;}.fc-header .ui-corner-right{margin-right:0;} +.fc-header .fc-state-hover,.fc-header .ui-state-hover{z-index:2;}.fc-header .fc-state-down{z-index:3;} +.fc-header .fc-state-active,.fc-header .ui-state-active{z-index:4;}.fc-content{clear:both;} +.fc-view{width:100%;overflow:hidden;}.fc-widget-header,.fc-widget-content{border:1px solid #ccc;} +.fc-state-highlight{background:#ffc;}.fc-cell-overlay{background:#9cf;opacity:.2;filter:alpha(opacity=20);} +.fc-button{position:relative;display:inline-block;cursor:pointer;}.fc-state-default{border-style:solid;border-width:1px 0;} +.fc-button-inner{position:relative;float:left;overflow:hidden;}.fc-state-default .fc-button-inner{border-style:solid;border-width:0 1px;} +.fc-button-content{position:relative;float:left;height:1.9em;line-height:1.9em;padding:0 .6em;white-space:nowrap;} +.fc-button-content .fc-icon-wrap{position:relative;float:left;top:50%;}.fc-button-content .ui-icon{position:relative;float:left;margin-top:-50%;*margin-top:0;*top:-50%;} +.fc-state-default .fc-button-effect{position:absolute;top:50%;left:0;}.fc-state-default .fc-button-effect span{position:absolute;top:-100px;left:0;width:500px;height:100px;border-width:100px 0 0 1px;border-style:solid;border-color:#fff;background:#444;opacity:.09;filter:alpha(opacity=9);} +.fc-state-default,.fc-state-default .fc-button-inner{border-style:solid;border-color:#ccc #bbb #aaa;background:#F3F3F3;color:#000;} +.fc-state-hover,.fc-state-hover .fc-button-inner{border-color:#999;}.fc-state-down,.fc-state-down .fc-button-inner{border-color:#555;background:#777;} +.fc-state-active,.fc-state-active .fc-button-inner{border-color:#555;background:#777;color:#fff;} +.fc-state-disabled,.fc-state-disabled .fc-button-inner{color:#999;border-color:#ddd;} +.fc-state-disabled{cursor:default;}.fc-state-disabled .fc-button-effect{display:none;} +.fc-event{border-style:solid;border-width:0;font-size:.85em;cursor:default;}a.fc-event,.fc-event-draggable{cursor:pointer;} +a.fc-event{text-decoration:none;}.fc-rtl .fc-event{text-align:right;}.fc-event-skin{border-color:#36c;background-color:#36c;color:#fff;} +.fc-event-inner{position:relative;width:100%;height:100%;border-style:solid;border-width:0;overflow:hidden;} +.fc-event-time,.fc-event-title{padding:0 1px;}.fc .ui-resizable-handle{display:block;position:absolute;z-index:99999;overflow:hidden;font-size:300%;line-height:50%;} +.fc-event-hori{border-width:1px 0;margin-bottom:1px;}.fc-event-hori .ui-resizable-e{top:0!important;right:-3px!important;width:7px!important;height:100%!important;cursor:e-resize;} +.fc-event-hori .ui-resizable-w{top:0!important;left:-3px!important;width:7px!important;height:100%!important;cursor:w-resize;} +.fc-event-hori .ui-resizable-handle{_padding-bottom:14px;}.fc-corner-left{margin-left:1px;} +.fc-corner-left .fc-button-inner,.fc-corner-left .fc-event-inner{margin-left:-1px;} +.fc-corner-right{margin-right:1px;}.fc-corner-right .fc-button-inner,.fc-corner-right .fc-event-inner{margin-right:-1px;} +.fc-corner-top{margin-top:1px;}.fc-corner-top .fc-event-inner{margin-top:-1px;}.fc-corner-bottom{margin-bottom:1px;} +.fc-corner-bottom .fc-event-inner{margin-bottom:-1px;}.fc-corner-left .fc-event-inner{border-left-width:1px;} +.fc-corner-right .fc-event-inner{border-right-width:1px;}.fc-corner-top .fc-event-inner{border-top-width:1px;} +.fc-corner-bottom .fc-event-inner{border-bottom-width:1px;}table.fc-border-separate{border-collapse:separate;} +.fc-border-separate th,.fc-border-separate td{border-width:1px 0 0 1px;}.fc-border-separate th.fc-last,.fc-border-separate td.fc-last{border-right-width:1px;} +.fc-border-separate tr.fc-last th,.fc-border-separate tr.fc-last td{border-bottom-width:1px;} +.fc-border-separate tbody tr.fc-first td,.fc-border-separate tbody tr.fc-first th{border-top-width:0;} +.fc-grid th{text-align:center;}.fc-grid .fc-day-number{float:right;padding:0 2px;} +.fc-grid .fc-other-month .fc-day-number{opacity:.3;filter:alpha(opacity=30);}.fc-grid .fc-day-content{clear:both;padding:2px 2px 1px;} +.fc-grid .fc-event-time{font-weight:bold;}.fc-rtl .fc-grid .fc-day-number{float:left;} +.fc-rtl .fc-grid .fc-event-time{float:right;}.fc-agenda table{border-collapse:separate;} +.fc-agenda-days th{text-align:center;}.fc-agenda .fc-agenda-axis{width:50px;padding:0 4px;vertical-align:middle;text-align:right;white-space:nowrap;font-weight:normal;} +.fc-agenda .fc-day-content{padding:2px 2px 1px;}.fc-agenda-days .fc-agenda-axis{border-right-width:1px;} +.fc-agenda-days .fc-col0{border-left-width:0;}.fc-agenda-allday th{border-width:0 1px;} +.fc-agenda-allday .fc-day-content{min-height:34px;_height:34px;}.fc-agenda-divider-inner{height:2px;overflow:hidden;} +.fc-widget-header .fc-agenda-divider-inner{background:#eee;}.fc-agenda-slots th{border-width:1px 1px 0;} +.fc-agenda-slots td{border-width:1px 0 0;background:none;}.fc-agenda-slots td div{height:20px;} +.fc-agenda-slots tr.fc-slot0 th,.fc-agenda-slots tr.fc-slot0 td{border-top-width:0;} +.fc-agenda-slots tr.fc-minor th,.fc-agenda-slots tr.fc-minor td{border-top-style:dotted;} +.fc-agenda-slots tr.fc-minor th.ui-widget-header{*border-top-style:solid;}.fc-event-vert{border-width:0 1px;} +.fc-event-vert .fc-event-head,.fc-event-vert .fc-event-content{position:relative;z-index:2;width:100%;overflow:hidden;} +.fc-event-vert .fc-event-time{white-space:nowrap;font-size:10px;}.fc-event-vert .fc-event-bg{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;background:#fff;opacity:.3;filter:alpha(opacity=30);} +.fc .ui-draggable-dragging .fc-event-bg,.fc-select-helper .fc-event-bg{display:none\9;} +.fc-event-vert .ui-resizable-s{bottom:0!important;width:100%!important;height:8px!important;overflow:hidden!important;line-height:8px!important;font-size:11px!important;font-family:monospace;text-align:center;cursor:s-resize;} +.fc-agenda .ui-resizable-resizing{_overflow:hidden;}/*!jQuery UI - v1.10.3 - 2013-05-03 * http://jqueryui.com * Includes:jquery.ui.core.css,jquery.ui.accordion.css,jquery.ui.autocomplete.css,jquery.ui.button.css,jquery.ui.datepicker.css,jquery.ui.dialog.css,jquery.ui.menu.css,jquery.ui.progressbar.css,jquery.ui.resizable.css,jquery.ui.selectable.css,jquery.ui.slider.css,jquery.ui.spinner.css,jquery.ui.tabs.css,jquery.ui.tooltip.css * To view and modify this theme,visit http://jqueryui.com/themeroller/?ffDefault=Trebuchet%20MS%2CTahoma%2CVerdana%2CArial%2Csans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=f6a828&bgTextureHeader=gloss_wave&bgImgOpacityHeader=35&borderColorHeader=e78f08&fcHeader=ffffff&iconColorHeader=ffffff&bgColorContent=eeeeee&bgTextureContent=highlight_soft&bgImgOpacityContent=100&borderColorContent=dddddd&fcContent=333333&iconColorContent=222222&bgColorDefault=f6f6f6&bgTextureDefault=glass&bgImgOpacityDefault=100&borderColorDefault=cccccc&fcDefault=1c94c4&iconColorDefault=ef8c08&bgColorHover=fdf5ce&bgTextureHover=glass&bgImgOpacityHover=100&borderColorHover=fbcb09&fcHover=c77405&iconColorHover=ef8c08&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=fbd850&fcActive=eb8f00&iconColorActive=ef8c08&bgColorHighlight=ffe45c&bgTextureHighlight=highlight_soft&bgImgOpacityHighlight=75&borderColorHighlight=fed22f&fcHighlight=363636&iconColorHighlight=228ef1&bgColorError=b81900&bgTextureError=diagonals_thick&bgImgOpacityError=18&borderColorError=cd0a0a&fcError=ffffff&iconColorError=ffd27a&bgColorOverlay=666666&bgTextureOverlay=diagonals_thick&bgImgOpacityOverlay=20&opacityOverlay=50&bgColorShadow=000000&bgTextureShadow=flat&bgImgOpacityShadow=10&opacityShadow=20&thicknessShadow=5px&offsetTopShadow=-5px&offsetLeftShadow=-5px&cornerRadiusShadow=5px * Copyright 2013 jQuery Foundation and other contributors Licensed MIT */.ui-helper-hidden{display:none;} +.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;} +.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none;} +.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse;} +.ui-helper-clearfix:after{clear:both;}.ui-helper-clearfix{min-height:0;}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0);} +.ui-front{z-index:100;}.ui-state-disabled{cursor:default!important;}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;} +.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%;}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0;} +.ui-accordion .ui-accordion-icons{padding-left:2.2em;}.ui-accordion .ui-accordion-noicons{padding-left:.7em;} +.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em;}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px;} +.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;} +.ui-autocomplete{position:absolute;top:0;left:0;cursor:default;}.ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible;} +.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none;} +.ui-button-icon-only{width:2.2em;}button.ui-button-icon-only{width:2.4em;}.ui-button-icons-only{width:3.4em;} +button.ui-button-icons-only{width:3.7em;}.ui-button .ui-button-text{display:block;line-height:normal;} +.ui-button-text-only .ui-button-text{padding:.4em 1em;}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px;} +.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em;} +.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em;} +.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em;}input.ui-button{padding:.4em 1em;} +.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px;} +.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px;}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em;} +.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em;} +.ui-buttonset{margin-right:7px;}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em;} +input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0;} +.ui-datepicker{width:17em;padding:.2em .2em 0;display:none;}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0;} +.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em;} +.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px;} +.ui-datepicker .ui-datepicker-prev{left:2px;}.ui-datepicker .ui-datepicker-next{right:2px;} +.ui-datepicker .ui-datepicker-prev-hover{left:1px;}.ui-datepicker .ui-datepicker-next-hover{right:1px;} +.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px;} +.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center;} +.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0;}.ui-datepicker select.ui-datepicker-month-year{width:100%;} +.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:49%;} +.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em;} +.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:700;border:0;} +.ui-datepicker td{border:0;padding:1px;}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none;} +.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0;} +.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em;width:auto;overflow:visible;} +.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left;} +.ui-datepicker.ui-datepicker-multi{width:auto;}.ui-datepicker-multi .ui-datepicker-group{float:left;} +.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em;}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%;} +.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%;}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%;} +.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0;} +.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left;}.ui-datepicker-row-break{clear:both;width:100%;font-size:0;} +.ui-datepicker-rtl{direction:rtl;}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto;} +.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto;}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto;} +.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto;}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right;} +.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left;}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right;} +.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px;} +.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0;}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative;} +.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis;} +.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px;} +.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto;} +.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em;} +.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right;}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer;} +.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px;} +.ui-draggable .ui-dialog-titlebar{cursor:move;}.ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0;} +.ui-menu .ui-menu{margin-top:-3px;position:absolute;}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);} +.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0;} +.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400;} +.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px;} +.ui-menu .ui-state-disabled{font-weight:400;margin:.4em 0 .2em;line-height:1.5;} +.ui-menu .ui-state-disabled a{cursor:default;}.ui-menu-icons{position:relative;} +.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em;}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em;} +.ui-menu .ui-menu-icon{position:static;float:right;}.ui-progressbar{height:2em;text-align:left;overflow:hidden;} +.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%;}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25;} +.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none;}.ui-resizable{position:relative;} +.ui-resizable-handle{position:absolute;font-size:.1px;display:block;}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none;} +.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0;}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0;} +.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%;}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%;} +.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px;}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px;} +.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px;}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px;} +.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000;}.ui-slider{position:relative;text-align:left;} +.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;} +.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0;} +.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit;} +.ui-slider-horizontal{height:.8em;}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em;} +.ui-slider-horizontal .ui-slider-range{top:0;height:100%;}.ui-slider-horizontal .ui-slider-range-min{left:0;} +.ui-slider-horizontal .ui-slider-range-max{right:0;}.ui-slider-vertical{width:.8em;height:100px;} +.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em;} +.ui-slider-vertical .ui-slider-range{left:0;width:100%;}.ui-slider-vertical .ui-slider-range-min{bottom:0;} +.ui-slider-vertical .ui-slider-range-max{top:0;}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle;} +.ui-spinner-input{border:0;background:0;color:inherit;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px;} +.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0;} +.ui-spinner a.ui-spinner-button{border-top:0;border-bottom:0;border-right:0;}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0;} +.ui-spinner-up{top:0;}.ui-spinner-down{bottom:0;}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px;} +.ui-tabs{position:relative;padding:.2em;}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0;} +.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap;} +.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none;}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px;} +.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text;} +.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer;} +.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:0;} +.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;} +body .ui-tooltip{border-width:2px;}.ui-widget{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1.1em;} +.ui-widget .ui-widget{font-size:1em;}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;font-size:1em;} +.ui-widget-content{border:1px solid #ddd;background:#eee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x;color:#333;} +.ui-widget-content a{color:#333;}.ui-widget-header{border:1px solid #e78f08;background:#f6a828 url(images/ui-bg_gloss-wave_35_f6a828_500x100.png) 50% 50% repeat-x;color:#fff;font-weight:bold;} +.ui-widget-header a{color:#fff;}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#f6f6f6 url(images/ui-bg_glass_100_f6f6f6_1x400.png) 50% 50% repeat-x;font-weight:bold;color:#1c94c4;} +.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#1c94c4;text-decoration:none;} +.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #fbcb09;background:#fdf5ce url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;font-weight:bold;color:#c77405;} +.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#c77405;text-decoration:none;} +.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #fbd850;background:#fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:bold;color:#eb8f00;} +.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#eb8f00;text-decoration:none;} +.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fed22f;background:#ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;color:#363636;} +.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636;} +.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;color:#fff;} +.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#fff;} +.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#fff;} +.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold;} +.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal;} +.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none;} +.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35);}.ui-icon{width:16px;height:16px;} +.ui-icon,.ui-widget-content .ui-icon{background-image:url(images/ui-icons_222222_256x240.png);} +.ui-widget-header .ui-icon{background-image:url(images/ui-icons_ffffff_256x240.png);} +.ui-state-default .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png);} +.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png);} +.ui-state-active .ui-icon{background-image:url(images/ui-icons_ef8c08_256x240.png);} +.ui-state-highlight .ui-icon{background-image:url(images/ui-icons_228ef1_256x240.png);} +.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(images/ui-icons_ffd27a_256x240.png);} +.ui-icon-blank{background-position:16px 16px;}.ui-icon-carat-1-n{background-position:0 0;} +.ui-icon-carat-1-ne{background-position:-16px 0;}.ui-icon-carat-1-e{background-position:-32px 0;} +.ui-icon-carat-1-se{background-position:-48px 0;}.ui-icon-carat-1-s{background-position:-64px 0;} +.ui-icon-carat-1-sw{background-position:-80px 0;}.ui-icon-carat-1-w{background-position:-96px 0;} +.ui-icon-carat-1-nw{background-position:-112px 0;}.ui-icon-carat-2-n-s{background-position:-128px 0;} +.ui-icon-carat-2-e-w{background-position:-144px 0;}.ui-icon-triangle-1-n{background-position:0 -16px;} +.ui-icon-triangle-1-ne{background-position:-16px -16px;}.ui-icon-triangle-1-e{background-position:-32px -16px;} +.ui-icon-triangle-1-se{background-position:-48px -16px;}.ui-icon-triangle-1-s{background-position:-64px -16px;} +.ui-icon-triangle-1-sw{background-position:-80px -16px;}.ui-icon-triangle-1-w{background-position:-96px -16px;} +.ui-icon-triangle-1-nw{background-position:-112px -16px;}.ui-icon-triangle-2-n-s{background-position:-128px -16px;} +.ui-icon-triangle-2-e-w{background-position:-144px -16px;}.ui-icon-arrow-1-n{background-position:0 -32px;} +.ui-icon-arrow-1-ne{background-position:-16px -32px;}.ui-icon-arrow-1-e{background-position:-32px -32px;} +.ui-icon-arrow-1-se{background-position:-48px -32px;}.ui-icon-arrow-1-s{background-position:-64px -32px;} +.ui-icon-arrow-1-sw{background-position:-80px -32px;}.ui-icon-arrow-1-w{background-position:-96px -32px;} +.ui-icon-arrow-1-nw{background-position:-112px -32px;}.ui-icon-arrow-2-n-s{background-position:-128px -32px;} +.ui-icon-arrow-2-ne-sw{background-position:-144px -32px;}.ui-icon-arrow-2-e-w{background-position:-160px -32px;} +.ui-icon-arrow-2-se-nw{background-position:-176px -32px;}.ui-icon-arrowstop-1-n{background-position:-192px -32px;} +.ui-icon-arrowstop-1-e{background-position:-208px -32px;}.ui-icon-arrowstop-1-s{background-position:-224px -32px;} +.ui-icon-arrowstop-1-w{background-position:-240px -32px;}.ui-icon-arrowthick-1-n{background-position:0 -48px;} +.ui-icon-arrowthick-1-ne{background-position:-16px -48px;}.ui-icon-arrowthick-1-e{background-position:-32px -48px;} +.ui-icon-arrowthick-1-se{background-position:-48px -48px;}.ui-icon-arrowthick-1-s{background-position:-64px -48px;} +.ui-icon-arrowthick-1-sw{background-position:-80px -48px;}.ui-icon-arrowthick-1-w{background-position:-96px -48px;} +.ui-icon-arrowthick-1-nw{background-position:-112px -48px;}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px;} +.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px;}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px;} +.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px;}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px;} +.ui-icon-arrowthickstop-1-e{background-position:-208px -48px;}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px;} +.ui-icon-arrowthickstop-1-w{background-position:-240px -48px;}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px;} +.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px;}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px;} +.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px;}.ui-icon-arrowreturn-1-w{background-position:-64px -64px;} +.ui-icon-arrowreturn-1-n{background-position:-80px -64px;}.ui-icon-arrowreturn-1-e{background-position:-96px -64px;} +.ui-icon-arrowreturn-1-s{background-position:-112px -64px;}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px;} +.ui-icon-arrowrefresh-1-n{background-position:-144px -64px;}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px;} +.ui-icon-arrowrefresh-1-s{background-position:-176px -64px;}.ui-icon-arrow-4{background-position:0 -80px;} +.ui-icon-arrow-4-diag{background-position:-16px -80px;}.ui-icon-extlink{background-position:-32px -80px;} +.ui-icon-newwin{background-position:-48px -80px;}.ui-icon-refresh{background-position:-64px -80px;} +.ui-icon-shuffle{background-position:-80px -80px;}.ui-icon-transfer-e-w{background-position:-96px -80px;} +.ui-icon-transferthick-e-w{background-position:-112px -80px;}.ui-icon-folder-collapsed{background-position:0 -96px;} +.ui-icon-folder-open{background-position:-16px -96px;}.ui-icon-document{background-position:-32px -96px;} +.ui-icon-document-b{background-position:-48px -96px;}.ui-icon-note{background-position:-64px -96px;} +.ui-icon-mail-closed{background-position:-80px -96px;}.ui-icon-mail-open{background-position:-96px -96px;} +.ui-icon-suitcase{background-position:-112px -96px;}.ui-icon-comment{background-position:-128px -96px;} +.ui-icon-person{background-position:-144px -96px;}.ui-icon-print{background-position:-160px -96px;} +.ui-icon-trash{background-position:-176px -96px;}.ui-icon-locked{background-position:-192px -96px;} +.ui-icon-unlocked{background-position:-208px -96px;}.ui-icon-bookmark{background-position:-224px -96px;} +.ui-icon-tag{background-position:-240px -96px;}.ui-icon-home{background-position:0 -112px;} +.ui-icon-flag{background-position:-16px -112px;}.ui-icon-calendar{background-position:-32px -112px;} +.ui-icon-cart{background-position:-48px -112px;}.ui-icon-pencil{background-position:-64px -112px;} +.ui-icon-clock{background-position:-80px -112px;}.ui-icon-disk{background-position:-96px -112px;} +.ui-icon-calculator{background-position:-112px -112px;}.ui-icon-zoomin{background-position:-128px -112px;} +.ui-icon-zoomout{background-position:-144px -112px;}.ui-icon-search{background-position:-160px -112px;} +.ui-icon-wrench{background-position:-176px -112px;}.ui-icon-gear{background-position:-192px -112px;} +.ui-icon-heart{background-position:-208px -112px;}.ui-icon-star{background-position:-224px -112px;} +.ui-icon-link{background-position:-240px -112px;}.ui-icon-cancel{background-position:0 -128px;} +.ui-icon-plus{background-position:-16px -128px;}.ui-icon-plusthick{background-position:-32px -128px;} +.ui-icon-minus{background-position:-48px -128px;}.ui-icon-minusthick{background-position:-64px -128px;} +.ui-icon-close{background-position:-80px -128px;}.ui-icon-closethick{background-position:-96px -128px;} +.ui-icon-key{background-position:-112px -128px;}.ui-icon-lightbulb{background-position:-128px -128px;} +.ui-icon-scissors{background-position:-144px -128px;}.ui-icon-clipboard{background-position:-160px -128px;} +.ui-icon-copy{background-position:-176px -128px;}.ui-icon-contact{background-position:-192px -128px;} +.ui-icon-image{background-position:-208px -128px;}.ui-icon-video{background-position:-224px -128px;} +.ui-icon-script{background-position:-240px -128px;}.ui-icon-alert{background-position:0 -144px;} +.ui-icon-info{background-position:-16px -144px;}.ui-icon-notice{background-position:-32px -144px;} +.ui-icon-help{background-position:-48px -144px;}.ui-icon-check{background-position:-64px -144px;} +.ui-icon-bullet{background-position:-80px -144px;}.ui-icon-radio-on{background-position:-96px -144px;} +.ui-icon-radio-off{background-position:-112px -144px;}.ui-icon-pin-w{background-position:-128px -144px;} +.ui-icon-pin-s{background-position:-144px -144px;}.ui-icon-play{background-position:0 -160px;} +.ui-icon-pause{background-position:-16px -160px;}.ui-icon-seek-next{background-position:-32px -160px;} +.ui-icon-seek-prev{background-position:-48px -160px;}.ui-icon-seek-end{background-position:-64px -160px;} +.ui-icon-seek-start{background-position:-80px -160px;}.ui-icon-seek-first{background-position:-80px -160px;} +.ui-icon-stop{background-position:-96px -160px;}.ui-icon-eject{background-position:-112px -160px;} +.ui-icon-volume-off{background-position:-128px -160px;}.ui-icon-volume-on{background-position:-144px -160px;} +.ui-icon-power{background-position:0 -176px;}.ui-icon-signal-diag{background-position:-16px -176px;} +.ui-icon-signal{background-position:-32px -176px;}.ui-icon-battery-0{background-position:-48px -176px;} +.ui-icon-battery-1{background-position:-64px -176px;}.ui-icon-battery-2{background-position:-80px -176px;} +.ui-icon-battery-3{background-position:-96px -176px;}.ui-icon-circle-plus{background-position:0 -192px;} +.ui-icon-circle-minus{background-position:-16px -192px;}.ui-icon-circle-close{background-position:-32px -192px;} +.ui-icon-circle-triangle-e{background-position:-48px -192px;}.ui-icon-circle-triangle-s{background-position:-64px -192px;} +.ui-icon-circle-triangle-w{background-position:-80px -192px;}.ui-icon-circle-triangle-n{background-position:-96px -192px;} +.ui-icon-circle-arrow-e{background-position:-112px -192px;}.ui-icon-circle-arrow-s{background-position:-128px -192px;} +.ui-icon-circle-arrow-w{background-position:-144px -192px;}.ui-icon-circle-arrow-n{background-position:-160px -192px;} +.ui-icon-circle-zoomin{background-position:-176px -192px;}.ui-icon-circle-zoomout{background-position:-192px -192px;} +.ui-icon-circle-check{background-position:-208px -192px;}.ui-icon-circlesmall-plus{background-position:0 -208px;} +.ui-icon-circlesmall-minus{background-position:-16px -208px;}.ui-icon-circlesmall-close{background-position:-32px -208px;} +.ui-icon-squaresmall-plus{background-position:-48px -208px;}.ui-icon-squaresmall-minus{background-position:-64px -208px;} +.ui-icon-squaresmall-close{background-position:-80px -208px;}.ui-icon-grip-dotted-vertical{background-position:0 -224px;} +.ui-icon-grip-dotted-horizontal{background-position:-16px -224px;}.ui-icon-grip-solid-vertical{background-position:-32px -224px;} +.ui-icon-grip-solid-horizontal{background-position:-48px -224px;}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px;} +.ui-icon-grip-diagonal-se{background-position:-80px -224px;}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px;} +.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px;} +.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px;} +.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px;} +.ui-widget-overlay{background:#666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;opacity:.5;filter:Alpha(Opacity=50);} +.ui-widget-shadow{margin:-5px 0 0 -5px;padding:5px;background:#000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;opacity:.2;filter:Alpha(Opacity=20);border-radius:5px;} \ No newline at end of file diff --git a/assets/min/20150517/build/build.js b/assets/min/20150517/build/build.js new file mode 100644 index 00000000..a7829187 --- /dev/null +++ b/assets/min/20150517/build/build.js @@ -0,0 +1,1928 @@ +(function(c,h){function n(a){var b=a.length,d=u.type(a);return u.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===d||"function"!==d&&(0===b||"number"==typeof b&&0e;e++)u.event.add(b,d,g[d][e]);c.data&&(c.data=u.extend({},c.data))}}function y(a,b){var d,e,f=0,c=typeof a.getElementsByTagName!==W?a.getElementsByTagName(b||"*"):typeof a.querySelectorAll!==W?a.querySelectorAll(b||"*"):h;if(!c)for(c=[],d=a.childNodes||a;null!=(e=d[f]);f++)!b||u.nodeName(e,b)?c.push(e): +u.merge(c,y(e,b));return b===h||b&&u.nodeName(a,b)?u.merge([a],c):c}function z(a){jb.test(a.type)&&(a.defaultChecked=a.checked)}function w(a,b){if(b in a)return b;for(var d=b.charAt(0).toUpperCase()+b.slice(1),e=b,f=Qa.length;f--;)if(b=Qa[f]+d,b in a)return b;return e}function J(a,b){return a=b||a,"none"===u.css(a,"display")||!u.contains(a.ownerDocument,a)}function I(a,b){for(var d,e,f,c=[],g=0,k=a.length;k>g;g++)e=a[g],e.style&&(c[g]=u._data(e,"olddisplay"),d=e.style.display,b?(c[g]||"none"!==d|| +(e.style.display=""),""===e.style.display&&J(e)&&(c[g]=u._data(e,"olddisplay",C(e.nodeName)))):c[g]||(f=J(e),(d&&"none"!==d||!f)&&u._data(e,"olddisplay",f?d:u.css(e,"display"))));for(g=0;k>g;g++)e=a[g],e.style&&(b&&"none"!==e.style.display&&""!==e.style.display||(e.style.display=b?c[g]||"":"none"));return a}function A(a,b,d){return(a=ab.exec(b))?Math.max(0,a[1]-(d||0))+(a[2]||"px"):b}function E(a,b,d,e,f){b=d===(e?"border":"content")?4:"width"===b?1:0;for(var c=0;4>b;b+=2)"margin"===d&&(c+=u.css(a, +d+Ha[b],!0,f)),e?("content"===d&&(c-=u.css(a,"padding"+Ha[b],!0,f)),"margin"!==d&&(c-=u.css(a,"border"+Ha[b]+"Width",!0,f))):(c+=u.css(a,"padding"+Ha[b],!0,f),"padding"!==d&&(c+=u.css(a,"border"+Ha[b]+"Width",!0,f)));return c}function G(a,b,d){var e=!0,c="width"===b?a.offsetWidth:a.offsetHeight,f=za(a),g=u.support.boxSizing&&"border-box"===u.css(a,"boxSizing",!1,f);if(0>=c||null==c){if(c=la(a,b,f),(0>c||null==c)&&(c=a.style[b]),Ra.test(c))return c;e=g&&(u.support.boxSizingReliable||c===a.style[b]); +c=parseFloat(c)||0}return c+E(a,b,d||(g?"border":"content"),e,f)+"px"}function C(a){var b=Q,d=db[a];return d||(d=L(a,b),"none"!==d&&d||(Aa=(Aa||u("'),g===h&&(g=a.renderHtml(this)),this.statusbar&&(f=this.statusbar.renderHtml()),'

    "},fullscreen:function(b){var c=this,d=document.documentElement,e,f=c.classPrefix,g;b!=c._fullscreen&&((a.on(window,"resize",function(){var b;if(c._fullscreen)if(e)c._timer||(c._timer=setTimeout(function(){var b=a.getWindowSize(); +c.moveTo(0,0).resizeTo(b.w,b.h);c._timer=0},50));else{b=(new Date).getTime();var d=a.getWindowSize();c.moveTo(0,0).resizeTo(d.w,d.h);50<(new Date).getTime()-b&&(e=!0)}}),g=c.layoutRect(),c._fullscreen=b,b)?(c._initial={x:g.x,y:g.y,w:g.w,h:g.h},c._borderBox=c.parseBox("0"),c.getEl("head").style.display="none",g.deltaH-=g.headerH+2,a.addClass(d,f+"fullscreen"),a.addClass(document.body,f+"fullscreen"),c.addClass("fullscreen"),b=a.getWindowSize(),c.moveTo(0,0).resizeTo(b.w,b.h)):(c._borderBox=c.parseBox(c.settings.border), +c.getEl("head").style.display="",g.deltaH+=g.headerH,a.removeClass(d,f+"fullscreen"),a.removeClass(document.body,f+"fullscreen"),c.removeClass("fullscreen"),c.moveTo(c._initial.x,c._initial.y).resizeTo(c._initial.w,c._initial.h)));return c.reflow()},postRender:function(){var a,b,c=this,f=[],g,h;setTimeout(function(){c.addClass("in")},0);c.keyboardNavigation=new d({root:c,enableLeftRight:!1,enableUpDown:!1,items:f,onCancel:function(){c.close()}});c.find("*").each(function(a){a.canFocus&&(h=h||a.settings.autofocus, +g=g||a,"filepicker"==a.type?(f.push(a.getEl("inp")),a.getEl("open")&&f.push(a.getEl("open").firstChild)):f.push(a.getEl()))});c.statusbar&&c.statusbar.find("*").each(function(a){a.canFocus&&(h=h||a.settings.autofocus,g=g||a,f.push(a.getEl()))});c._super();c.statusbar&&c.statusbar.postRender();!h&&g&&g.focus();this.dragHelger=new e(c._id+"-dragh",{start:function(){a=c.layoutRect().x;b=c.layoutRect().y},drag:function(d){c.moveTo(a+d.deltaX,b+d.deltaY)}});c.on("submit",function(a){a.isDefaultPrevented()|| +c.close()})},submit:function(){return this.fire("submit",{data:this.toJSON()})},remove:function(){this._super();this.dragHelger.destroy();this.statusbar&&this.statusbar.remove()}})});g("tinymce/ui/MessageBox",["tinymce/ui/Window"],function(c){var b=c.extend({init:function(a){a={border:1,padding:20,layout:"flex",pack:"center",align:"center",containerCls:"panel",autoScroll:!0,buttons:{type:"button",text:"Ok",action:"ok"},items:{type:"label",multiline:!0,maxWidth:500,maxHeight:200}};this._super(a)}, +Statics:{OK:1,OK_CANCEL:2,YES_NO:3,YES_NO_CANCEL:4,msgBox:function(a){var d,e=a.callback||function(){};switch(a.buttons){case b.OK_CANCEL:d=[{type:"button",text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close();e(!0)}},{type:"button",text:"Cancel",onClick:function(a){a.control.parents()[1].close();e(!1)}}];break;case b.YES_NO:d=[{type:"button",text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close();e(!0)}}];break;case b.YES_NO_CANCEL:d=[{type:"button", +text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close()}}];break;default:d=[{type:"button",text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close()}}]}return(new c({padding:20,x:a.x,y:a.y,minWidth:300,minHeight:100,layout:"flex",pack:"center",align:"center",buttons:d,title:a.title,items:{type:"label",multiline:!0,maxWidth:500,maxHeight:200,text:a.text},onClose:a.onClose})).renderTo(document.body).reflow()},alert:function(a,c){return"string"==typeof a&& +(a={text:a}),a.callback=c,b.msgBox(a)},confirm:function(a,c){return"string"==typeof a&&(a={text:a}),a.callback=c,a.buttons=b.OK_CANCEL,b.msgBox(a)}}});return b});g("tinymce/WindowManager",["tinymce/ui/Window","tinymce/ui/MessageBox"],function(c,b){return function(a){var d=[];this.windows=d;this.open=function(b){var g;return b.url=b.url||b.file,b.url&&(b.width=parseInt(b.width||320,10),b.height=parseInt(b.height||240,10)),b.body&&(b.items={defaults:b.defaults,type:b.bodyType||"form",items:b.body}), +b.url||b.buttons||(b.buttons=[{text:"Ok",subtype:"primary",minWidth:50,onclick:function(){g.find("form")[0].submit();g.close()}},{text:"Cancel",onclick:function(){g.close()}}]),g=new c(b),d.push(g),g.on("close",function(){for(var b=d.length;b--;)d[b]===g&&d.splice(b,1);a.focus()}),b.data&&g.on("postRender",function(){this.find("*").each(function(a){var c=a.name();c in b.data&&a.value(b.data[c])})}),a.nodeChanged(),g.renderTo(document.body).reflow()};this.alert=function(a,c,d){b.alert(a,function(){c.call(d|| +this)})};this.confirm=function(a,c,d){b.confirm(a,function(a){c.call(d||this,a)})};this.close=function(){d.length&&d[window.length-1].win.close()}}});g("tinymce/util/Quirks","tinymce/util/VK tinymce/dom/RangeUtils tinymce/html/Node tinymce/html/Entities tinymce/Env tinymce/util/Tools".split(" "),function(c,b,a,d,e,g){return function(r){function l(a,b){try{r.getDoc().execCommand(a,!1,b)}catch(c){}}function k(){var a=r.getDoc().documentMode;return a?a:6}function t(){function a(b){var c,d,e,f,h;c=H.getRng(); +var k=[c.startContainer,c.startOffset,c.endContainer,c.endOffset];c.collapsed||(b=!0);f=c[(b?"start":"end")+"Container"];h=c[(b?"start":"end")+"Offset"];if(3==f.nodeType){d=D.getParent(c.startContainer,D.isBlock);b&&(d=D.getNext(d,D.isBlock));var m;if(!(m=!d)){a:{if(3==f.nodeType){if(b&&h==f.length){f=!0;break a}if(!b&&0===h){f=!0;break a}}f=void 0}m=!f&&c.collapsed}m||(e=D.create("em",{id:"__mceDel"}),M(g.grep(d.childNodes),function(a){e.appendChild(a)}),d.appendChild(e))}if(c=D.createRng(),c.setStart(k[0], +k[1]),c.setEnd(k[2],k[3]),H.setRng(c),r.getDoc().execCommand(b?"ForwardDelete":"Delete",!1,null),e){for(b=H.getBookmark();c=D.get("__mceDel");)D.remove(c,!0);H.moveToBookmark(b)}}r.on("keydown",function(b){var d;d=b.keyCode==N;b.isDefaultPrevented()||!d&&b.keyCode!=P||c.modifierPressed(b)||(b.preventDefault(),a(d))});r.addCommand("Delete",function(){a()})}function q(){r.on("keydown",function(a){!a.isDefaultPrevented()&&65==a.keyCode&&c.metaKeyPressed(a)&&(a.preventDefault(),r.execCommand("SelectAll"))})} +function m(){r.settings.content_editable||(D.bind(r.getDoc(),"focusin",function(){H.setRng(H.getRng())}),D.bind(r.getDoc(),"mousedown",function(a){a.target==r.getDoc().documentElement&&(r.getWin().focus(),H.setRng(H.getRng()))}))}function v(){r.on("keydown",function(a){if(!a.isDefaultPrevented()&&a.keyCode===P&&H.isCollapsed()&&0===H.getRng(!0).startOffset){var b=H.getNode().previousSibling;b&&b.nodeName&&"hr"===b.nodeName.toLowerCase()&&(D.remove(b),a.preventDefault())}})}function n(){window.Range.prototype.getClientRects|| +r.on("mousedown",function(a){if(!a.isDefaultPrevented()&&"HTML"===a.target.nodeName){var b=r.getBody();b.blur();setTimeout(function(){b.focus()},0)}})}function y(){r.on("click",function(a){a=a.target;/^(IMG|HR)$/.test(a.nodeName)&&H.getSel().setBaseAndExtent(a,0,a,1);"A"==a.nodeName&&D.hasClass(a,"mceItemAnchor")&&H.select(a);r.nodeChanged()})}function p(){function a(){var b=D.getAttribs(H.getStart().cloneNode(!1));return function(){var a=H.getStart();a!==r.getBody()&&(D.setAttrib(a,"style",null), +M(b,function(b){a.setAttributeNode(b.cloneNode(!0))}))}}function b(){return!H.isCollapsed()&&D.getParent(H.getStart(),D.isBlock)!=D.getParent(H.getEnd(),D.isBlock)}r.on("keypress",function(c){var d;return c.isDefaultPrevented()||8!=c.keyCode&&46!=c.keyCode||!b()?h:(d=a(),r.getDoc().execCommand("delete",!1,null),d(),c.preventDefault(),!1)});D.bind(r.getDoc(),"cut",function(c){var d;!c.isDefaultPrevented()&&b()&&(d=a(),setTimeout(function(){d()},0))})}function w(){var a,c;r.on("selectionchange",function(){c&& +(clearTimeout(c),c=0);c=window.setTimeout(function(){var c=H.getRng();a&&b.compareRanges(c,a)||(r.nodeChanged(),a=c)},50)})}function J(){7k()&&(V.addNodeFilter("noscript",function(a){for(var b=a.length,c,d;b--;)c=a[b],(d=c.firstChild)&&c.attr("data-mce-innertext",d.value)}),T.addNodeFilter("noscript",function(b){for(var c=b.length,e,f,g;c--;)e=b[c],(f=b[c].firstChild)?f.value=d.decode(f.value):(g=e.attributes.map["data-mce-innertext"], +g&&(e.attr("data-mce-innertext",null),f=new a("#text",3),f.value=g,f.raw=!0,e.append(f)))}))}function O(){function a(b,c){var d=e.createTextRange();try{d.moveToPoint(b,c)}catch(f){d=null}return d}function b(d){var e;d.button?(e=a(d.x,d.y),e&&(0h.clientHeight)||(f=1,(g=a(e.x,e.y))&&(D.bind(d,"mouseup",c),D.bind(d,"mousemove",b),D.win.focus(),g.select()))})}var M=g.each,P=c.BACKSPACE,N=c.DELETE,D=r.dom,H=r.selection,R=r.settings,V=r.parser,T=r.serializer,Y=e.gecko,K=e.ie,W=e.webkit;(function(){r.on("keydown",function(a){if(!a.isDefaultPrevented()&& +a.keyCode===P&&H.isCollapsed()&&0===H.getRng(!0).startOffset){var b=H.getNode().previousSibling;if(b&&b.nodeName&&"table"===b.nodeName.toLowerCase())return a.preventDefault(),!1}})})();(function(){r.on("keydown",function(a){var b,d,e,g,h;if(!a.isDefaultPrevented()&&a.keyCode==c.BACKSPACE&&(b=H.getRng(),d=b.startContainer,e=b.startOffset,g=D.getRoot(),h=d,b.collapsed&&0===e)){for(;h&&h.parentNode&&h.parentNode.firstChild==h&&h.parentNode!=g;)h=h.parentNode;"BLOCKQUOTE"===h.tagName&&(r.formatter.toggle("blockquote", +null,h),b=D.createRng(),b.setStart(d,0),b.setEnd(d,0),H.setRng(b))}})})();(function(){function a(b){var c=D.create("body");b=b.cloneContents();return c.appendChild(b),H.serializer.serialize(c,{format:"html"})}r.on("keydown",function(b){var c=b.keyCode,d;if(!(b.isDefaultPrevented()||c!=N&&c!=P||(d=r.selection.isCollapsed(),d&&!D.isEmpty(r.getBody()))||K&&!d)){if(c=!d)c=r.selection.getRng(),c=a(c),d=D.createRng(),d.selectNode(r.getBody()),d=a(d),c=c!==d;c||(b.preventDefault(),r.setContent(""),r.selection.setCursorLocation(r.getBody(), +0),r.nodeChanged())}})})();(function(){r.on("keyup focusin",function(a){65==a.keyCode&&c.metaKeyPressed(a)||H.normalize()})})();W&&(A(),t(),m(),y(),C(),e.iOS?w():q());K&&(v(),document.body.setAttribute("role","application"),J(),I(),F(),U(),S(),O());Y&&(v(),n(),p(),E(),G(),L())}});g("tinymce/util/Observable",["tinymce/util/Tools"],function(c){function b(){return!1}function a(){return!0}var d=c.makeMap("focusin focusout click dblclick mousedown mouseup mousemove mouseover beforepaste paste cut copy selectionchange mouseout mouseenter mouseleave keydown keypress keyup contextmenu dragend dragover draggesture dragdrop drop drag", +" ");return{fire:function(c,d,f){var g,h,t,q;if(c=c.toLowerCase(),d=d||{},d.type=c,d.target||(d.target=this),d.preventDefault||(d.preventDefault=function(){d.isDefaultPrevented=a},d.stopPropagation=function(){d.isPropagationStopped=a},d.stopImmediatePropagation=function(){d.isImmediatePropagationStopped=a},d.isDefaultPrevented=b,d.isPropagationStopped=b,d.isImmediatePropagationStopped=b),this.__bindings&&(g=this.__bindings[c]))for(h=0,t=g.length;t>h&&(g[h]=q=g[h],!d.isImmediatePropagationStopped());h++)if(!1=== +q.call(this,d))return d.preventDefault(),d;if(!1!==f&&this.parent)for(f=this.parent();f&&!d.isPropagationStopped();)f.fire(c,d,!1),f=f.parent();return d},on:function(a,b){var c,f,g,h;if(!1===b&&(b=function(){return!1}),b)for(g=a.toLowerCase().split(" "),h=g.length;h--;)a=g[h],(c=this.__bindings)||(c=this.__bindings={}),(f=c[a])||(f=c[a]=[],this.bindNative&&d[a]&&this.bindNative(a)),f.push(b);return this},off:function(a,b){var c,f=this.__bindings,g,h,q,m;if(f)if(a)for(q=a.toLowerCase().split(" "), +c=q.length;c--;){if(a=q[c],g=f[a],!a){for(h in f)f[a].length=0;break}if(g){if(b)for(m=g.length;m--;)g[m]===b&&g.splice(m,1);else g.length=0;!g.length&&this.unbindNative&&d[a]&&(this.unbindNative(a),delete f[a])}}else{if(this.unbindNative)for(a in f)this.unbindNative(a);this.__bindings=[]}return this}}});g("tinymce/Shortcuts",["tinymce/util/Tools","tinymce/Env"],function(c,b){var a=c.each,d=c.explode,e={f9:120,f10:121,f11:122};return function(c){var f={};c.on("keyup keypress keydown",function(c){(c.altKey|| +c.ctrlKey||c.metaKey)&&a(f,function(a){if(a.ctrl==(b.isMac?c.metaKey:c.ctrlKey)&&a.alt==c.altKey&&a.shift==c.shiftKey)return c.keyCode==a.keyCode||c.charCode&&c.charCode==a.charCode?(c.preventDefault(),"keydown"==c.type&&a.func.call(a.scope),!0):h})});this.add=function(b,g,h,q){var m;return m=h,"string"==typeof h?h=function(){c.execCommand(m,!1,null)}:h.length&&(h=function(){c.execCommand(m[0],m[1],m[2])}),a(d(b.toLowerCase()),function(b){var m={func:h,scope:q||c,desc:c.translate(g),alt:!1,ctrl:!1, +shift:!1};a(d(b,"+"),function(a){switch(a){case "alt":case "ctrl":case "shift":m[a]=!0;break;default:m.charCode=a.charCodeAt(0),m.keyCode=e[a]||a.toUpperCase().charCodeAt(0)}});f[(m.ctrl?"ctrl":"")+","+(m.alt?"alt":"")+","+(m.shift?"shift":"")+","+m.keyCode]=m}),!0}}});g("tinymce/Editor","tinymce/dom/DOMUtils tinymce/AddOnManager tinymce/html/Node tinymce/dom/Serializer tinymce/html/Serializer tinymce/dom/Selection tinymce/Formatter tinymce/UndoManager tinymce/EnterKey tinymce/ForceBlocks tinymce/EditorCommands tinymce/util/URI tinymce/dom/ScriptLoader tinymce/dom/EventUtils tinymce/WindowManager tinymce/html/Schema tinymce/html/DomParser tinymce/util/Quirks tinymce/Env tinymce/util/Tools tinymce/util/Observable tinymce/Shortcuts".split(" "), +function(c,b,a,d,e,g,r,l,k,t,q,m,v,n,y,p,w,J,I,A,E,G){function C(a,b){return"selectionchange"==b?a.getDoc():!a.inline&&/^mouse|click|contextmenu/.test(b)?a.getDoc():a.getBody()}function L(a,c,d){var e,f;e=this.documentBaseUrl=d.documentBaseURL;f=d.baseURI;this.settings=c=O({id:a,theme:"modern",delta_width:0,delta_height:0,popup_css:"",plugins:"",document_base_url:e,add_form_submit_trigger:!0,submit_patch:!0,add_unload_trigger:!0,convert_urls:!0,relative_urls:!0,remove_script_host:!0,object_resizing:!0, +doctype:"",visual:!0,font_size_style_values:"xx-small,x-small,small,medium,large,x-large,xx-large",font_size_legacy_values:"xx-small,small,medium,large,x-large,xx-large,300%",directionality:"ltr",forced_root_block:"p",hidden_input:!0,padd_empty_editor:!0,render_ui:!0,indentation:"30px",inline_styles:!0,convert_fonts_to_spans:!0,indent:"simple",indent_before:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist", +indent_after:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",validate:!0,entity_encoding:"named",url_converter:this.convertURL,url_converter_scope:this,ie7_compat:!0},c);b.settings=c;b.baseURL=d.baseURL;this.id=c.id=a;this.isNotDirty=!1;this.plugins={};this.documentBaseURI=new m(c.document_base_url||e,{base_uri:f});this.baseURI=f;this.contentCSS=[];this.contentStyles=[];this.shortcuts= +new G(this);this.execCommands={};this.queryStateCommands={};this.queryValueCommands={};this.suffix=d.suffix;this.editorManager=d;this.inline=c.inline;this.execCallback("setup",this)}var F=c.DOM,U=b.ThemeManager,S=b.PluginManager,O=A.extend,M=A.each,P=A.explode,N=A.inArray,D=A.trim,H=A.resolve,R=n.Event,V=I.gecko,T=I.ie,Y=I.opera;return L.prototype={render:function(){function a(){var d=v.ScriptLoader;c.language&&d.add(b.editorManager.baseURL+"/langs/"+c.language+".js");c.theme&&"function"!=typeof c.theme&& +"-"!=c.theme.charAt(0)&&!U.urls[c.theme]&&U.load(c.theme,"themes/"+c.theme+"/theme"+e+".js");A.isArray(c.plugins)&&(c.plugins=c.plugins.join(" "));M(c.plugins.split(/[ ,]/),function(a){if(a=D(a),a&&!S.urls[a])"-"==a.charAt(0)?(a=a.substr(1,a.length),a=S.dependencies(a),M(a,function(a){a=S.createUrl({prefix:"plugins/",resource:a,suffix:"/plugin"+e+".js"},a);S.load(a.resource,a)})):S.load(a,{prefix:"plugins/",resource:a,suffix:"/plugin"+e+".js"})});d.loadQueue(function(){b.removed||b.init()})}var b= +this,c=b.settings,d=b.id,e=b.suffix;if(!R.domLoaded)return F.bind(window,"ready",function(){b.render()}),h;if(b.editorManager.settings=c,b.getElement()&&I.contentEditable){c.inline?b.inline=!0:(b.orgVisibility=b.getElement().style.visibility,b.getElement().style.visibility="hidden");var f=b.getElement().form||F.getParent(d,"form");f&&(b.formElement=f,c.hidden_input&&!/TEXTAREA|INPUT/i.test(b.getElement().nodeName)&&F.insertAfter(F.create("input",{type:"hidden",name:d}),d),b.formEventDelegate=function(a){b.fire(a.type, +a)},F.bind(f,"submit reset",b.formEventDelegate),b.on("reset",function(){b.setContent(b.startContent,{format:"raw"})}),!c.submit_patch||f.submit.nodeType||f.submit.length||f._mceOldSubmit||(f._mceOldSubmit=f.submit,f.submit=function(){return b.editorManager.triggerSave(),b.isNotDirty=1,f._mceOldSubmit(f)}));b.windowManager=new y(b);"xml"==c.encoding&&b.on("GetContent",function(a){a.save&&(a.content=F.encode(a.content))});c.add_form_submit_trigger&&b.on("submit",function(){b.initialized&&(b.save(), +b.isNotDirty=1)});c.add_unload_trigger&&(b._beforeUnload=function(){!b.initialized||b.destroyed||b.isHidden()||b.save({format:"raw",no_events:!0})},b.editorManager.on("BeforeUnload",b._beforeUnload));a()}},init:function(){function a(c){var d=S.get(c),e,f;e=S.urls[c]||b.documentBaseUrl.replace(/\/$/,"");c=D(c);d&&-1===N(l,c)&&(M(S.dependencies(c),function(b){a(b)}),f=new d(b,e),b.plugins[c]=f,f.init&&(f.init(b,e),l.push(c)))}var b=this,c=b.settings,d=b.getElement(),e,f,g,h,k,m,l=[];if(b.editorManager.add(b), +c.aria_label=c.aria_label||F.getAttrib(d,"aria-label",b.getLang("aria.rich_text_area")),c.theme&&("function"!=typeof c.theme?(c.theme=c.theme.replace(/-/,""),h=U.get(c.theme),b.theme=new h(b,U.urls[c.theme]),b.theme.init&&b.theme.init(b,U.urls[c.theme]||b.documentBaseUrl.replace(/\/$/,""))):b.theme=c.theme),M(c.plugins.replace(/\-/g,"").split(/[ ,]/),a),b.fire("BeforeRenderUI"),c.render_ui&&b.theme&&(b.orgDisplay=d.style.display,"function"!=typeof c.theme?(e=c.width||d.style.width||d.offsetWidth, +f=c.height||d.style.height||d.offsetHeight,g=c.min_height||100,m=/^[0-9\.]+(|px)$/i,m.test(""+e)&&(e=Math.max(parseInt(e,10)+(h.deltaWidth||0),100)),m.test(""+f)&&(f=Math.max(parseInt(f,10)+(h.deltaHeight||0),g)),h=b.theme.renderUI({targetNode:d,width:e,height:f,deltaWidth:c.delta_width,deltaHeight:c.delta_height}),c.content_editable||(F.setStyles(h.sizeContainer||h.editorContainer,{wi2dth:e,h2eight:f}),f=(h.iframeHeight||f)+("number"==typeof f?h.deltaHeight||0:""),g>f&&(f=g))):(h=c.theme(b,d),h.editorContainer.nodeType&& +(h.editorContainer=h.editorContainer.id=h.editorContainer.id||b.id+"_parent"),h.iframeContainer.nodeType&&(h.iframeContainer=h.iframeContainer.id=h.iframeContainer.id||b.id+"_iframecontainer"),f=h.iframeHeight||d.offsetHeight),b.editorContainer=h.editorContainer),c.content_css&&M(P(c.content_css),function(a){b.contentCSS.push(b.documentBaseURI.toAbsolute(a))}),c.content_style&&b.contentStyles.push(c.content_style),c.content_editable)return d=h=null,b.initContentBody();document.domain&&location.hostname!= +document.domain&&(b.editorManager.relaxedDomain=document.domain);b.iframeHTML=c.doctype+"";c.document_base_url!=b.documentBaseUrl&&(b.iframeHTML+='');!I.caretAfter&&c.ie7_compat&&(b.iframeHTML+='');b.iframeHTML+='';for(d=0;b.contentCSS.length>d;d++)b.iframeHTML+='';b.contentCSS=[];d=c.body_id||"tinymce";-1!=d.indexOf("=")&&(d=b.getParam("body_id","","hash"),d=d[b.id]||d);c=c.body_class||"";-1!=c.indexOf("=")&&(c=b.getParam("body_class","","hash"),c=c[b.id]||"");b.iframeHTML+='
    ";b.editorManager.relaxedDomain&&(T||Y&&11>parseFloat(window.opera.version()))&&(k='javascript:(function(){document.open();document.domain="'+document.domain+ +'";var ed = window.parent.tinymce.get("'+b.id+'");document.write(ed.iframeHTML);document.close();ed.initContentBody();})()');F.add(h.iframeContainer,"iframe",{id:b.id+"_ifr",src:k||'javascript:""',frameBorder:"0",allowTransparency:"true",title:b.editorManager.translate("Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help"),style:{width:"100%",height:f,display:"block"}});b.contentAreaContainer=h.iframeContainer;h.editorContainer&&(F.get(h.editorContainer).style.display= +b.orgDisplay);F.get(b.id).style.display="none";F.setAttrib(b.id,"aria-hidden",!0);b.editorManager.relaxedDomain&&k||b.initContentBody();d=h=null},initContentBody:function(){var b=this,e=b.settings,h=F.get(b.id),m=b.getDoc(),v;e.inline||(b.getElement().style.visibility=b.orgVisibility);T&&b.editorManager.relaxedDomain||e.content_editable||(m.open(),m.write(b.iframeHTML),m.close(),b.editorManager.relaxedDomain&&(m.domain=b.editorManager.relaxedDomain));e.content_editable&&(F.addClass(h,"mce-content-body"), +h.tabIndex=-1,b.contentDocument=m=e.content_document||document,b.contentWindow=e.content_window||window,b.bodyElement=h,e.content_document=e.content_window=null,e.root_name=h.nodeName.toLowerCase());h=b.getBody();h.disabled=!0;e.readonly||(h.contentEditable=b.getParam("content_editable_state",!0));h.disabled=!1;b.schema=new p(e);b.dom=new c(m,{keep_values:!0,url_converter:b.convertURL,url_converter_scope:b,hex_colors:e.force_hex_style_colors,class_filter:e.class_filter,update_styles:!0,root_element:e.content_editable? +b.id:null,schema:b.schema,onSetAttrib:function(a){b.fire("SetAttrib",a)}});b.parser=new w(e,b.schema);b.parser.addAttributeFilter("src,href,style",function(a,c){for(var d=a.length,e,f=b.dom,g,h;d--;)e=a[d],g=e.attr(c),h="data-mce-"+c,e.attributes.map[h]||("style"===c?e.attr(h,f.serializeStyle(f.parseStyle(g),e.name)):e.attr(h,b.convertURL(g,c,e.name)))});b.parser.addNodeFilter("script",function(a){for(var b=a.length,c;b--;)c=a[b],c.attr("type","mce-"+(c.attr("type")||"text/javascript"))});b.parser.addNodeFilter("#cdata", +function(a){for(var b=a.length,c;b--;)c=a[b],c.type=8,c.name="#comment",c.value="[CDATA["+c.value+"]]"});b.parser.addNodeFilter("p,h1,h2,h3,h4,h5,h6,div",function(c){for(var d=c.length,e,f=b.schema.getNonEmptyElements();d--;)e=c[d],e.isEmpty(f)&&(e.empty().append(new a("br",1)).shortEnded=!0)});b.serializer=new d(e,b);b.selection=new g(b.dom,b.getWin(),b.serializer,b);b.formatter=new r(b);b.undoManager=new l(b);b.forceBlocks=new t(b);b.enterKey=new k(b);b.editorCommands=new q(b);b.fire("PreInit"); +e.browser_spellcheck||e.gecko_spellcheck||(m.body.spellcheck=!1);b.fire("PostRender");b.quirks=J(b);e.directionality&&(h.dir=e.directionality);e.nowrap&&(h.style.whiteSpace="nowrap");e.protect&&b.on("BeforeSetContent",function(a){M(e.protect,function(b){a.content=a.content.replace(b,function(a){return"\x3c!--mce:protected "+escape(a)+"--\x3e"})})});b.on("SetContent",function(){b.addVisual(b.getBody())});e.padd_empty_editor&&b.on("PostProcess",function(a){a.content=a.content.replace(/^(]*>( | |\s|\u00a0|)<\/p>[\r\n]*|
    [\r\n]*)$/, +"")});b.load({initial:!0,format:"html"});b.startContent=b.getContent({format:"raw"});b.initialized=!0;M(b._pendingNativeEvents,function(a){b.dom.bind(C(b,a),a,function(a){b.fire(a.type,a)})});b.fire("init");b.focus(!0);b.nodeChanged({initial:!0});b.execCallback("init_instance_callback",b);0
    ":'
    ',c.innerHTML=a,this.selection.select(c,!0),this.selection.collapse(!0),h)},getContent:function(a){var b,c=this.getBody();return a=a||{},a.format=a.format||"html",a.get= +!0,a.getInner=!0,a.no_events||this.fire("BeforeGetContent",a),b="raw"==a.format?c.innerHTML:"text"==a.format?c.innerText||c.textContent:this.serializer.serialize(c,a),a.content="text"!=a.format?D(b):b,a.no_events||this.fire("GetContent",a),a.content},insertContent:function(a){this.execCommand("mceInsertContent",!1,a)},isDirty:function(){return!this.isNotDirty&&this.undoManager.hasUndo()},getContainer:function(){return this.container||(this.container=F.get(this.editorContainer||this.id+"_parent")), +this.container},getContentAreaContainer:function(){return this.contentAreaContainer},getElement:function(){return F.get(this.settings.content_element||this.id)},getWin:function(){var a;return this.contentWindow||(a=F.get(this.id+"_ifr"),a&&(this.contentWindow=a.contentWindow)),this.contentWindow},getDoc:function(){var a;return this.contentDocument||(a=this.getWin(),a&&(this.contentDocument=a.document)),this.contentDocument},getBody:function(){return this.bodyElement||this.getDoc().body},convertURL:function(a, +b,c){var d=this.settings;return d.urlconverter_callback?this.execCallback("urlconverter_callback",a,c,!0,b):!d.convert_urls||c&&"LINK"==c.nodeName||0===a.indexOf("file:")||0===a.length?a:d.relative_urls?this.documentBaseURI.toRelative(a):this.documentBaseURI.toAbsolute(a,d.remove_script_host)},addVisual:function(a){var b=this,c=b.settings,d=b.dom,e;a=a||b.getBody();b.hasVisual===h&&(b.hasVisual=c.visual);M(d.select("table,a",a),function(a){var f;switch(a.nodeName){case "TABLE":return e=c.visual_table_class|| +"mce-item-table",f=d.getAttrib(a,"border"),f&&"0"!=f||(b.hasVisual?d.addClass(a,e):d.removeClass(a,e)),h;case "A":return d.getAttrib(a,"href",!1)||(f=d.getAttrib(a,"name")||a.id,e="mce-item-anchor",f&&(b.hasVisual?d.addClass(a,e):d.removeClass(a,e))),h}});b.fire("VisualAid",{element:a,hasVisual:b.hasVisual})},remove:function(){var a=this.getContainer(),b=this.getDoc();this.removed||(this.removed=1,T&&b&&b.execCommand("SelectAll"),this.save(),F.setStyle(this.id,"display",this.orgDisplay),this.settings.content_editable|| +(R.unbind(this.getWin()),R.unbind(this.getDoc())),R.unbind(this.getBody()),R.unbind(a),this.fire("remove"),this.editorManager.remove(this),F.remove(a))},bindNative:function(a){var b=this;b.initialized?b.dom.bind(C(b,a),a,function(c){b.fire(a,c)}):b._pendingNativeEvents?b._pendingNativeEvents.push(a):b._pendingNativeEvents=[a]},unbindNative:function(a){this.initialized&&this.dom.unbind(a)},destroy:function(a){var b;this.destroyed||(V&&(R.unbind(this.getDoc()),R.unbind(this.getWin()),R.unbind(this.getBody())), +a||(this.editorManager.off(this._beforeUnload),this.theme&&this.theme.destroy&&this.theme.destroy(),this.selection.destroy(),this.dom.destroy()),b=this.formElement,b&&(b.submit=b._mceOldSubmit,b._mceOldSubmit=null,F.unbind(b,"submit reset",this.formEventDelegate)),this.contentAreaContainer=this.formElement=this.container=null,this.settings.content_element=this.bodyElement=this.contentDocument=this.contentWindow=null,this.selection&&(this.selection=this.selection.win=this.selection.dom=this.selection.dom.doc= +null),this.destroyed=1)},_refreshContentEditable:function(){var a,b;this._isHidden()&&(a=this.getBody(),b=a.parentNode,b.removeChild(a),b.appendChild(a),a.focus())},_isHidden:function(){var a;return V?(a=this.selection.getSel(),!a||!a.rangeCount||0===a.rangeCount):0}},O(L.prototype,E),L});g("tinymce/util/I18n",[],function(){var c={};return{add:function(b,a){for(var d in a)c[d]=a[d]},translate:function(b){if(b===h)return b;if("string"!=typeof b&&b.raw)return b.raw;if(b.push){var a=b.slice(1);b=(c[b[0]]|| +b[0]).replace(/\{([^\}]+)\}/g,function(b,c){return a[c]})}return c[b]||b},data:c}});g("tinymce/FocusManager",["tinymce/dom/DOMUtils"],function(c){function b(a){a.on("AddEditor",function(d){var e=d.editor,g,h;e.on("init",function(){"onbeforedeactivate"in document?e.dom.bind(e.getBody(),"beforedeactivate",function(){var a=e.getDoc().selection;h=a&&a.createRange?a.createRange():e.selection.getRng()}):e.inline&&e.on("nodechange",function(){for(var a,b=document.activeElement;b;){if(b==e.getBody()){a=!0; +break}b=b.parentNode}a&&(h=e.selection.getRng())})});e.on("focusin",function(){var b=a.focusedEditor;g&&(e.selection.setRng(g),g=null);b!=e&&(b&&b.fire("blur",{focusedEditor:e}),e.fire("focus",{blurredEditor:b}),e.focus(!1),a.focusedEditor=e)});e.on("focusout",function(){g=h;window.setTimeout(function(){var d=a.focusedEditor;d!=e&&(g=null);var h;try{h=document.activeElement}catch(r){h=document.body}c.DOM.getParent(h,b.isEditorUIElement)||d!=e||(e.fire("blur",{focusedEditor:null}),a.focusedEditor= +null,g=null)},0)})})}return b.isEditorUIElement=function(a){return-1!==a.className.indexOf("mce-")},b});g("tinymce/EditorManager","tinymce/Editor tinymce/dom/DOMUtils tinymce/util/URI tinymce/Env tinymce/util/Tools tinymce/util/Observable tinymce/util/I18n tinymce/FocusManager".split(" "),function(c,b,a,d,e,g,r,l){var k=b.DOM,t=e.explode,q=e.each,m=e.extend,v=0,n;b={majorVersion:"4",minorVersion:"0b2",releaseDate:"2013-04-24",editors:[],i18n:r,activeEditor:null,setup:function(){var b,c,d="",e;if(c= +document.location.href.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,""),/[\/\\]$/.test(c)||(c+="/"),e=window.tinymce||window.tinyMCEPreInit)b=e.base||e.baseURL,d=e.suffix;else for(e=document.getElementsByTagName("script");0b;b++)if(c[b]==a){c.splice(b,1);break}return this.activeEditor==a&&(this.activeEditor=c[0]),a.destroy(),this.fire("RemoveEditor",{editor:a}),c.length||k.unbind(window,"beforeunload",n),a},execCommand:function(a,b,d){var e=this.get(d);switch(a){case "mceAddEditor":return this.get(d)||(new c(d,this.settings,this)).render(),!0;case "mceRemoveEditor":return e&&e.remove(),!0;case "mceToggleEditor":return e?(e.isHidden()?e.show():e.hide(),!0):(this.execCommand("mceAddEditor", +0,d),!0)}return this.activeEditor?this.activeEditor.execCommand(a,b,d):!1},triggerSave:function(){q(this.editors,function(a){a.save()})},addI18n:function(a,b){r.add(a,b)},translate:function(a){return r.translate(a)}};return m(b,g),b.setup(),window.tinymce=window.tinyMCE=b,b});g("tinymce/LegacyInput",["tinymce/EditorManager","tinymce/util/Tools"],function(c,b){var a=b.each,d=b.explode;c.on("AddEditor",function(b){var c=b.editor;c.on("preInit",function(){function b(c,d){a(d,function(a,b){a&&h.setStyle(c, +b,a)});h.rename(c,"span")}function e(b){h=c.dom;m.convert_fonts_to_spans&&a(h.select("font,u,strike",b.node),function(a){f[a.nodeName.toLowerCase()](h,a)})}var f,g,h,m=c.settings;m.inline_styles&&(g=d(m.font_size_legacy_values),f={font:function(a,c){b(c,{backgroundColor:c.style.backgroundColor,color:c.color,fontFamily:c.face,fontSize:g[parseInt(c.size,10)-1]})},u:function(a,c){b(c,{textDecoration:"underline"})},strike:function(a,c){b(c,{textDecoration:"line-through"})}},c.on("PreProcess SetContent", +e))})})});g("tinymce/util/XHR",[],function(){return{send:function(c){function b(){!c.async||4==a.readyState||1E4d&&200==a.status?c.success.call(c.success_scope,""+a.responseText,a,c):c.error&&c.error.call(c.error_scope,1E4d;d++)e+=(0d.length?null:(c=d.substring(r,e),r=e+1,c)}var b,d,m,r=0;g={};e.load(l);d=e.getAttribute(l)||"";do b=a(parseInt(a(),32)||0),null!==b&&(m=a(parseInt(a(),32)||0),g[b]=m);while(null!==b);c()}function a(){var a,b="",d;for(d in g)a=g[d],b+=(b?",":"")+d.length.toString(32)+","+d+","+a.length.toString(32)+","+a;e.setAttribute(l, +b);e.save(l);c()}var d,e,g,r,l;return window.localStorage?localStorage:(l="tinymce",e=document.documentElement,e.addBehavior("#default#userData"),d={key:function(a){return r[a]},getItem:function(a){return a in g?g[a]:null},setItem:function(b,c){g[b]=""+c;a()},removeItem:function(b){delete g[b];a()},clear:function(){g={};a()}},b(),d)});g("tinymce/Compat","tinymce/dom/DOMUtils tinymce/dom/EventUtils tinymce/dom/ScriptLoader tinymce/AddOnManager tinymce/util/Tools tinymce/Env".split(" "),function(c, +b,a,d,e,g){var h=window.tinymce;return h.DOM=c.DOM,h.ScriptLoader=a.ScriptLoader,h.PluginManager=d.PluginManager,h.ThemeManager=d.ThemeManager,h.dom=h.dom||{},h.dom.Event=b.Event,e.each(e,function(a,b){h[b]=a}),e.each(["isOpera","isWebKit","isIE","isGecko","isMac"],function(a){h[a]=g[a.substr(2).toLowerCase()]}),{}});g("tinymce/ui/Layout",["tinymce/util/Class","tinymce/util/Tools"],function(c,b){return c.extend({Defaults:{firstControlClass:"first",lastControlClass:"last"},init:function(a){this.settings= +b.extend({},this.Defaults,a)},preRender:function(a){a.addClass(this.settings.containerClass,"body")},applyClasses:function(a){var b=this.settings,c,f;a=a.items().filter(":visible");c=b.firstControlClass;f=b.lastControlClass;a.each(function(a){a.removeClass(c).removeClass(f);b.controlClass&&a.addClass(b.controlClass)});a.eq(0).addClass(c);a.eq(-1).addClass(f)},renderHtml:function(a){var b=this.settings,c,f="";return c=a.items(),c.eq(0).addClass(b.firstControlClass),c.eq(-1).addClass(b.lastControlClass), +c.each(function(a){b.controlClass&&a.addClass(b.controlClass);f+=a.renderHtml()}),f},recalc:function(){},postRender:function(){}})});g("tinymce/ui/AbsoluteLayout",["tinymce/ui/Layout"],function(c){return c.extend({Defaults:{containerClass:"abs-layout",controlClass:"abs-layout-item"},recalc:function(b){b.items().filter(":visible").each(function(a){var b=a.settings;a.layoutRect({x:b.x,y:b.y,w:b.w,h:b.h});a.recalc&&a.recalc()})},renderHtml:function(b){return'
    '+this._super(b)}})});g("tinymce/ui/Tooltip",["tinymce/ui/Control","tinymce/ui/Movable"],function(c,b){return c.extend({Mixins:[b],Defaults:{classes:"widget tooltip tooltip-n"},text:function(a){return a!==h?(this._value=a,this._rendered&&(this.getEl().lastChild.innerHTML=this.encode(a)),this):this._value},renderHtml:function(){var a=this.classPrefix;return'"},repaint:function(){var a,b;a=this.getEl().style;b=this._layoutRect;a.left=b.x+"px";a.top=b.y+"px";a.zIndex=131070}})});g("tinymce/ui/Widget",["tinymce/ui/Control","tinymce/ui/Tooltip"],function(c,b){var a;return c.extend({init:function(a){var b=this;b._super(a);b.canFocus=!0;a.tooltip&&b.on("mouseenter mouseleave",function(c){c.control==b&&"mouseenter"==c.type?b.tooltip().moveTo(-65535).text(a.tooltip).show().moveRel(b.getEl(),"bc tc"):b.tooltip().moveTo(-65535).hide()}); +b.aria("label",a.tooltip)},tooltip:function(){return a||(a=new b({type:"tooltip"}),a.renderTo(this.getContainerElm())),a},active:function(a){return void 0!==a&&(this.aria("pressed",a),this.toggleClass("active",a)),this._super(a)},disabled:function(a){return void 0!==a&&(this.aria("disabled",a),this.toggleClass("disabled",a)),this._super(a)},postRender:function(){var a=this,b=a.settings;a._rendered=!0;a._super();a.parent()||!b.width&&!b.height||(a.initLayoutRect(),a.repaint());b.autofocus&&setTimeout(function(){a.focus()}, +0)},remove:function(){this._super();a&&(a.remove(),a=null)}})});g("tinymce/ui/Button",["tinymce/ui/Widget"],function(c){return c.extend({Defaults:{classes:"widget btn",role:"button"},init:function(b){var a;this.on("click mousedown",function(a){a.preventDefault()});this._super(b);a=b.size;b.subtype&&this.addClass(b.subtype);a&&this.addClass("btn-"+a)},repaint:function(){var b=this.getEl().firstChild.style;b.width=b.height="100%";this._super()},renderHtml:function(){var b=this._id,a=this.classPrefix, +c=this.settings.icon,e="";return this.settings.image&&(c="none",e=" style=\"background-image: url('"+this.settings.image+"')\""),c=this.settings.icon?a+"ico "+a+"i-"+c:"",'
    "}})});g("tinymce/ui/ButtonGroup",["tinymce/ui/Container"],function(c){return c.extend({Defaults:{defaultType:"button",role:"toolbar"}, +renderHtml:function(){var b=this._layout;return this.addClass("btn-group"),this.preRender(),b.preRender(this),'
    '+(this.settings.html||"")+b.renderHtml(this)+"
    "}})});g("tinymce/ui/Checkbox",["tinymce/ui/Widget"],function(c){return c.extend({Defaults:{classes:"checkbox",role:"checkbox",checked:!1},init:function(b){var a=this;a._super(b);a.on("click mousedown",function(a){a.preventDefault()});a.on("click",function(b){b.preventDefault(); +a.disabled()||a.checked(!a.checked())});a.checked(a.settings.checked)},checked:function(b){return b!==h?(b?this.addClass("checked"):this.removeClass("checked"),this._checked=b,this.aria("checked",b),this):this._checked},value:function(b){return this.checked(b)},renderHtml:function(){var b=this._id,a=this.classPrefix;return'
    '+ +this.encode(this._text)+"
    "}})});g("tinymce/ui/CheckboxGroup",["tinymce/ui/Container"],function(c){return c.extend({})});g("tinymce/ui/PanelButton",["tinymce/ui/Button","tinymce/ui/FloatPanel"],function(c,b){return c.extend({showPanel:function(){var a=this,c=a.settings;c.panel.popover=!0;c.panel.autohide=!0;a.active(!0);a.panel?a.panel.show():a.panel=(new b(c.panel)).on("hide",function(){a.active(!1)}).parent(a).renderTo(a.getContainerElm()).reflow().moveRel(a.getEl(),c.popoverAlign|| +"bc-tc")},hidePanel:function(){this.panel&&this.panel.hide()},postRender:function(){var a=this;return a.on("click",function(b){b.control===a&&a.showPanel()}),a._super()}})});g("tinymce/ui/ColorButton",["tinymce/ui/PanelButton"],function(c){return c.extend({init:function(b){this._super(b);this.addClass("colorbutton")},showPreview:function(b){this.getEl("preview").style.backgroundColor=b},renderHtml:function(){var b=this._id,a=this.classPrefix,c=this.settings.icon?a+"ico "+a+"i-"+this.settings.icon: +"",e=this.settings.image?" style=\"background-image: url('"+this.settings.image+"')\"":"";return'
    "}})});g("tinymce/ui/ComboBox",["tinymce/ui/Widget","tinymce/ui/DomUtils"],function(c,b){return c.extend({init:function(a){var c=this;c._super(a); +c.addClass("combobox");c.on("click",function(a){for(a=a.target;a;)a.id&&-1!=a.id.indexOf("-open")&&c.fire("action"),a=a.parentNode});c.on("keydown",function(a){"INPUT"==a.target.nodeName&&13==a.keyCode&&c.parents().reverse().each(function(b){return a.preventDefault(),c.fire("change"),b.submit?(b.submit(),!1):h})});a.placeholder&&(c.addClass("placeholder"),c.on("focusin",function(){c._hasOnChange||(b.on(c.getEl("inp"),"change",function(){c.fire("change")}),c._hasOnChange=!0);c.hasClass("placeholder")&& +(c.getEl("inp").value="",c.removeClass("placeholder"))}),c.on("focusout",function(){0===c.value().length&&(c.getEl("inp").value=a.placeholder,c.addClass("placeholder"))}))},value:function(a){return a!==h?(this._value=a,this.removeClass("placeholder"),this._rendered&&(this.getEl("inp").value=a),this):this._rendered?(a=this.getEl("inp").value,a!=this.settings.placeholder?a:""):this._value},repaint:function(){var a=this.getEl(),c=this.getEl("open"),e=this.layoutRect();return c?b.css(a.firstChild,{width:e.w- +c.offsetWidth-10}):b.css(a.firstChild,{width:e.w-10}),this._super(),this},disabled:function(a){this._super(a);this._rendered&&(this.getEl().disabled=a)},focus:function(){this.getEl("inp").focus()},postRender:function(){var a=this;return b.on(this.getEl("inp"),"change",function(){a.fire("change")}),a._super()},renderHtml:function(){var a=this._id,b=this.settings,c=this.classPrefix,f=b.value||b.placeholder||"",g,h,k="";return g=b.icon?c+"ico "+c+"i-"+b.icon:"",h=this._text,(g||h)&&(k='
    ",this.addClass("has-open")),'
    '+k+"
    "}})});g("tinymce/ui/Path",["tinymce/ui/Control","tinymce/ui/KeyboardNavigation"],function(c,b){return c.extend({Defaults:{delimiter:"\u00bb"}, +init:function(a){var b=this;b._super(a);b.addClass("path");b.canFocus=!0;b.on("click",function(a){var c;(c=a.target.getAttribute("data-index"))&&b.fire("select",{value:b.data()[c],index:c})})},focus:function(){return this.keyNav=new b({root:this,enableLeftRight:!0}),this.keyNav.focusFirst(),this},data:function(a){return a!==h?(this._data=a,this.update(),this):this._data},update:function(){this.getEl().innerHTML=this._getPathHtml()},postRender:function(){this._super();this.data(this.settings.data)}, +renderHtml:function(){return'
    '+this._getPathHtml()+"
    "},_getPathHtml:function(){var a=this._data||[],b,c,f="",g=this.classPrefix;b=0;for(c=a.length;c>b;b++)f+=(0
    ":"")+'
    '+a[b].name+"
    ";return f||(f='
     
    '), +f}})});g("tinymce/ui/ElementPath",["tinymce/ui/Path","tinymce/EditorManager"],function(c,b){return c.extend({postRender:function(){function a(a){return 1===a.nodeType&&("BR"==a.nodeName||!!a.getAttribute("data-mce-bogus"))}var c=this,e=b.activeEditor;return c.on("select",function(b){for(var c=[],d=e.selection.getNode(),f=e.getBody();d&&(a(d)||c.push(d),d=d.parentNode,d!=f););e.focus();e.selection.select(c[c.length-1-b.index]);e.nodeChanged()}),e.on("nodeChange",function(b){var f=[];b=b.parents;for(var g= +b.length;g--;)if(!a(b[g])){var h=e.fire("ResolveName",{name:b[g].nodeName.toLowerCase(),target:b[g]});f.push({name:h.name})}c.data(f)}),c._super()}})});g("tinymce/ui/FormItem",["tinymce/ui/Container"],function(c){return c.extend({Defaults:{layout:"flex",align:"center",defaults:{flex:1}},renderHtml:function(){var b=this._layout,a=this.classPrefix;return this.addClass("formitem"),b.preRender(this),'
    '+(this.settings.title? +'
    '+this.settings.title+"
    ":"")+'
    '+(this.settings.html||"")+b.renderHtml(this)+"
    "}})});g("tinymce/ui/Form",["tinymce/ui/Container","tinymce/ui/FormItem"],function(c,b){return c.extend({Defaults:{containerCls:"form",layout:"flex",direction:"column",align:"stretch",flex:1,padding:20,labelGap:30,spacing:10},preRender:function(){var a=this;a.items().each(function(c){var e,f=c.settings.label; +f&&(e=new b({layout:"flex",autoResize:"overflow",defaults:{flex:1},items:[{type:"label",text:f,flex:0,forId:c._id}]}),e.type="formitem",c.settings.flex===h&&(c.settings.flex=1),a.replace(c,e),e.add(c))})},recalcLabels:function(){var a=0,b=[],c,f;if(!1!==this.settings.labelGapCalc)for(this.items().filter("formitem").each(function(c){c=c.items()[0];var e=c.getEl().clientWidth;a=e>a?e:a;b.push(c)}),f=this.settings.labelGap||0,c=b.length;c--;)b[c].settings.minWidth=a+f},visible:function(a){var b=this._super(a); +return!0===a&&this._rendered&&this.recalcLabels(),b},fromJSON:function(a){if(a)for(var b in a)this.find("#"+b).value(a[b]);return this},toJSON:function(){var a={};return this.find("*").each(function(b){var c=b.name();b=b.value();c&&b!==h&&(a[c]=b)}),a},submit:function(){return this.fire("submit",{data:this.toJSON()})},postRender:function(){this._super();this.recalcLabels();this.fromJSON(this.settings.data)}})});g("tinymce/ui/FieldSet",["tinymce/ui/Form"],function(c){return c.extend({Defaults:{containerCls:"fieldset", +layout:"flex",direction:"column",align:"stretch",flex:1,padding:"25 15 5 15",labelGap:30,spacing:10,border:1},renderHtml:function(){var b=this._layout,a=this.classPrefix;return this.preRender(),b.preRender(this),'
    '+(this.settings.title?''+this.settings.title+"":"")+'
    '+(this.settings.html|| +"")+b.renderHtml(this)+"
    "}})});g("tinymce/ui/FilePicker",["tinymce/ui/ComboBox"],function(c){return c.extend({init:function(b){var a=this,c=tinymce.activeEditor,e;b.spellcheck=!1;(e=c.settings.file_browser_callback)&&(b.icon="browse",b.onaction=function(){e(a.getEl("inp").id,a.getEl("inp").value,b.filetype,window)});a._super(b)}})});g("tinymce/ui/FitLayout",["tinymce/ui/AbsoluteLayout"],function(c){return c.extend({recalc:function(b){var a=b.layoutRect(),c=b.paddingBox();b.items().filter(":visible").each(function(b){b.layoutRect({x:c.left, +y:c.top,w:a.innerW-c.right-c.left,h:a.innerH-c.top-c.bottom});b.recalc&&b.recalc()})}})});g("tinymce/ui/FlexLayout",["tinymce/ui/AbsoluteLayout"],function(c){return c.extend({recalc:function(b){var a,c,e,f,g,h,k,t,q,m,v,n,y,p=[],w,J,I,A,E,G,C,L,F,U,S,O,M,P,N,D,H,R,V=Math.max,T=Math.min;e=b.items().filter(":visible");f=b.layoutRect();g=b._paddingBox;h=b.settings;a=h.direction;k=h.align;t=h.pack;h=h.spacing||0;("row-reversed"==a||"column-reverse"==a)&&(e=e.set(e.toArray().reverse()),a=a.split("-")[0]); +"column"==a?(E="y",I="h",A="minH",G="maxH",L="innerH",C="top",F="deltaH",U="contentH",N="left",M="w",S="x",O="innerW",P="minW",D="right",H="deltaW",R="contentW"):(E="x",I="w",A="minW",G="maxW",L="innerW",C="left",F="deltaW",U="contentW",N="top",M="h",S="y",O="innerH",P="minH",D="bottom",H="deltaH",R="contentH");m=f[L]-g[C]-g[C];a=J=q=0;for(c=e.length;c>a;a++)v=e[a],n=v.layoutRect(),y=v.settings,y=y.flex,m-=c-1>a?h:0,0J&&(J=y);if(w={}, +w[A]=0>m?f[A]-m+f[F]:f[L]-m+f[F],w[P]=J+f[H],w[U]=f[L]-m,w[R]=J,w.minW=T(w.minW,f.maxW),w.minH=T(w.minH,f.maxH),w.minW=V(w.minW,f.startMinWidth),w.minH=V(w.minH,f.startMinHeight),!f.autoResize||w.minW==f.minW&&w.minH==f.minH){b=m/q;a=0;for(c=p.length;c>a;a++)v=p[a],n=v.layoutRect(),w=n[G],y=n[A]+Math.ceil(n.flex*b),y>w?(m-=n[G]-n[A],q-=n.flex,n.flex=0,n.maxFlexSize=w):n.maxFlexSize=0;b=m/q;p=g[C];w={};0===q&&("end"==t?p=m+g[C]:"center"==t?(p=Math.round(f[L]/2-(f[L]-m)/2)+g[C],0>p&&(p=g[C])):"justify"== +t&&(p=g[C],h=Math.floor(m/(e.length-1))));w[S]=g[N];a=0;for(c=e.length;c>a;a++)v=e[a],n=v.layoutRect(),y=n.maxFlexSize||n[A],"center"===k?w[S]=Math.round(f[O]/2-n[M]/2):"stretch"===k?(w[M]=V(n[P]||0,f[O]-g[N]-g[D]),w[S]=g[N]):"end"===k&&(w[S]=f[O]-n[M]-g.top),0q;q++)E.push(0);for(m=0;c>m;m++)G.push(0);for(m=0;c>m;m++)for(q=0;e>q&&(t=f[m*e+q],t);q++)k=t.layoutRect(),v=k.minW,k=k.minH,E[q]=v>E[q]?v:E[q],G[m]=k>G[m]?k:G[m];k=g.innerW-p.left-p.right;for(q=v=0;e>q;q++)v+=E[q]+(0m;m++)q+=G[m]+(0q;q++)m+=a[q];else m=e;m=k/m;for(q=0;e>q;q++)E[q]+=a?Math.ceil(a[q]*m):m;v=p.top;for(m=0;c>m;m++){h=p.left;g=G[m]+b;for(q=0;e>q&&(t=f[m*e+q], +t);q++)n=t.settings,k=t.layoutRect(),a=E[q],k.x=h,k.y=v,z=n.alignH||I,"center"==z?k.x=h+a/2-k.w/2:"right"==z?k.x=h+a-k.w:"stretch"==z&&(k.w=a),z=n.alignV||A,"center"==z?k.y=v+g/2-k.h/2:"bottom"==z?k.y=v+g-k.h:"stretch"==z&&(k.h=g),t.layoutRect(k),h+=a+w,t.recalc&&t.recalc();v+=g+J}}else(h.w=h.minW,h.h=h.minH,b.layoutRect(h),this.recalc(b),null===b._lastRect)&&(c=b.parent())&&(c._lastRect=null,c.recalc())}})});g("tinymce/ui/Iframe",["tinymce/ui/Widget"],function(c){return c.extend({renderHtml:function(){return this.addClass("iframe"), +this.canFocus=!1,''},src:function(b){this.getEl().src=b},html:function(b){return this.getEl().contentWindow.document.body.innerHTML=b,this}})});g("tinymce/ui/Label",["tinymce/ui/Widget"],function(c){return c.extend({init:function(b){this._super(b);this.addClass("widget");this.addClass("label");this.canFocus=!1;b.multiline&&this.addClass("autoscroll");b.strong&& +this.addClass("strong")},initLayoutRect:function(){var b=this._super();return this.settings.multiline&&(this.getEl().offsetWidth>b.maxW&&(b.minW=b.maxW,this.addClass("multiline")),this.getEl().style.width=b.minW+"px",b.startMinH=b.h=b.minH=Math.min(b.maxH,this.getEl().offsetHeight)),b},disabled:function(b){return void 0!==b&&(this.toggleClass("label-disabled",b),this._rendered&&(this.getEl()[0].className=this.classes())),this._super(b)},repaint:function(){return this.settings.multiline||(this.getEl().style.lineHeight= +this.layoutRect().h+"px"),this._super()},text:function(b){return this._rendered&&b&&(this.getEl().innerHTML=this.encode(b)),this._super(b)},renderHtml:function(){var b=this.settings.forId;return'"}})});g("tinymce/ui/Toolbar",["tinymce/ui/Container","tinymce/ui/KeyboardNavigation"],function(c,b){return c.extend({Defaults:{role:"toolbar",layout:"flow"},init:function(a){this._super(a);this.addClass("toolbar")}, +postRender:function(){return this.items().addClass("toolbar-item"),this.keyNav=new b({root:this,enableLeftRight:!0}),this._super()}})});g("tinymce/ui/MenuBar",["tinymce/ui/Toolbar"],function(c){return c.extend({Defaults:{role:"menubar",containerCls:"menubar",defaults:{type:"menubutton"}}})});g("tinymce/ui/MenuButton",["tinymce/ui/Button","tinymce/ui/Factory","tinymce/ui/MenuBar"],function(c,b,a){var d=c.extend({init:function(a){this._renderOpen=!0;this._super(a);this.addClass("menubtn");this.aria("haspopup", +!0);this.hasPopup=!0},showMenu:function(){var a=this,c=a.settings,d;a.menu||(d=c.menu||[],d.length?d={type:"menu",items:d}:d.type=d.type||"menu",a.menu=b.create(d).parent(a).renderTo(a.getContainerElm()),a.fire("createmenu"),a.menu.reflow(),a.menu.on("cancel",function(b){b.control===a.menu&&a.focus()}),a.menu.on("show hide",function(b){b.control==a.menu&&a.activeMenu("show"==b.type)}).fire("show"),a.aria("expanded",!0));a.menu.show();a.menu.layoutRect({w:a.layoutRect().w});a.menu.moveRel(a.getEl(), +"bl-tl")},hideMenu:function(){this.menu&&(this.menu.items().each(function(a){a.hideMenu&&a.hideMenu()}),this.menu.hide(),this.aria("expanded",!1))},activeMenu:function(a){this.toggleClass("active",a)},renderHtml:function(){var b=this._id,c=this.classPrefix,d=this.settings.icon?c+"ico "+c+"i-"+this.settings.icon:"";return this.aria("role",this.parent()instanceof a?"menuitem":"button"),'
    '},postRender:function(){var a=this;return a.on("click",function(b){var c;if(c=b.control===a)a:{c=b.target;for(var d=a.getEl();c;){if(d===c){c=!0;break a}c=c.parentNode}c=!1}c&&(a.showMenu(),b.keyboard&&a.menu.items()[0].focus())}),a.on("mouseenter",function(b){var c=b.control;b=a.parent();var f;c&&b&&c instanceof d&&c.parent()==b&&(b.items().filter("MenuButton").each(function(a){a.hideMenu&& +a!=c&&(a.menu&&a.menu.visible()&&(f=!0),a.hideMenu())}),f&&c.showMenu())}),a._super()},text:function(a){var b,c;if(this._rendered)for(c=this.getEl("open").childNodes,b=0;c.length>b;b++)3==c[b].nodeType&&(c[b].data=this.encode(a));return this._super(a)},remove:function(){this._super();this.menu&&this.menu.remove()}});return d});g("tinymce/ui/ListBox",["tinymce/ui/MenuButton"],function(c){return c.extend({init:function(b){var a=this,c,e,f,g,h;if(a._values=c=b.values,c){for(e=0;c.length>e;e++)(f=c[e].selected|| +b.value===c[e].value)&&(g=g||c[e].text,a._value=c[e].value);b.menu=c}b.text=b.text||g||c[0].text;a._super(b);a.addClass("listbox");a.on("select",function(c){var d=c.control;h&&(c.lastControl=h);b.multiple?d.active(!d.active()):a.value(c.control.settings.value);h=d})},value:function(b){function a(b,f){b.items().each(function(b){(c=b.value()===f)&&(e=e||b.text());b.active(c);b.menu&&a(b.menu,f)})}var c,e,f,g;if(b!==h){if(this.menu)a(this.menu,b);else for(f=this.settings.menu,g=0;f.length>g;g++)(c=f[g].value== +b)&&(e=e||f[g].text),f[g].active=c;this.text(e)}return this._super(b)}})});g("tinymce/ui/MenuItem",["tinymce/ui/Widget","tinymce/ui/Factory"],function(c,b){return c.extend({Defaults:{border:0,role:"menuitem"},init:function(a){var b=this;b.hasPopup=!0;b._super(a);a=b.settings;b.addClass("menu-item");a.menu&&b.addClass("menu-item-expand");("-"===b._text||"|"===b._text)&&(b.addClass("menu-item-sep"),b.aria("role","separator"),b.canFocus=!1,b._text="-");a.selectable&&(b.aria("role","menuitemcheckbox"), +b.aria("checked",!0),b.addClass("menu-item-checkbox"),a.icon="selected");b.on("mousedown",function(a){a.preventDefault()});b.on("mouseenter click",function(c){c.control===b&&(a.menu||"click"!==c.type?(b.showMenu(),c.keyboard&&setTimeout(function(){b.menu.items()[0].focus()},0)):(b.parent().hideAll(),b.fire("cancel"),b.fire("select")))});a.menu&&b.aria("haspopup",!0)},hasMenus:function(){return!!this.settings.menu},showMenu:function(){var a=this,c=a.settings,e;a.parent().items().each(function(b){b!== +a&&b.hideMenu()});c.menu&&(a.menu?a.menu.show():(e=c.menu,e.length?e={type:"menu",items:e}:e.type=e.type||"menu",a.menu=b.create(e).parent(a).renderTo(a.getContainerElm()),a.menu.reflow(),a.menu.fire("show"),a.menu.on("cancel",function(){a.focus()}),a.menu.on("hide",function(b){b.control===a.menu&&a.removeClass("selected")})),a.menu._parentMenu=a.parent(),a.menu.addClass("menu-sub"),a.menu.moveRel(a.getEl(),"tr-tl"),a.addClass("selected"),a.aria("expanded",!0))},hideMenu:function(){return this.menu&& +(this.menu.items().each(function(a){a.hideMenu&&a.hideMenu()}),this.menu.hide(),this.aria("expanded",!1)),this},renderHtml:function(){var a=this._id,b=this.settings,c=this.classPrefix,f=this.encode(this._text),g=this.settings.icon;return g&&this.parent().addClass("menu-has-icons"),g=c+"ico "+c+"i-"+(this.settings.icon||"none"),'
    '+("-"!==f?' ':"")+("-"!==f?''+f+"":"")+(b.shortcut? +'
    '+b.shortcut+"
    ":"")+(b.menu?'
    ':"")+"
    "},postRender:function(){var a=this.settings.textStyle;if("function"==typeof a&&(a=a()),a){var b=this.getEl("text");b&&b.setAttribute("style",a)}return this._super()},remove:function(){this._super();this.menu&&this.menu.remove()}})});g("tinymce/ui/Menu",["tinymce/ui/FloatPanel","tinymce/ui/KeyboardNavigation","tinymce/ui/MenuItem"],function(c,b,a){return c.extend({Defaults:{defaultType:"menuitem", +border:1,layout:"stack",role:"menu"},init:function(c){var e=this;c.autohide=!0;e._super(c);e.addClass("menu");e.keyNav=new b({root:e,enableUpDown:!0,enableLeftRight:!0,leftAction:function(){e.parent()instanceof a&&e.keyNav.cancel()},onCancel:function(){e.fire("cancel",{},!1);e.hide()}})},repaint:function(){return this.toggleClass("menu-align",!0),this._super(),this.getEl().style.height="",this.getEl("body").style.height="",this},cancel:function(){this.hideAll();this.fire("cancel");this.fire("select")}, +hideAll:function(){return this.find("menuitem").exec("hideMenu"),this._super()},preRender:function(){var a=this;return a.items().each(function(b){b=b.settings;return b.icon||b.selectable?(a._hasIcons=!0,!1):h}),a._super()}})});g("tinymce/ui/Radio",["tinymce/ui/Widget"],function(c){return c.extend({Defaults:{classes:"radio",checked:!1},init:function(b){var a=this;a._super(b);a.on("click",function(b){b.preventDefault();a.disabled()||a.checked()||(a.parent().items().filter("radio:checked").exec("checked", +!1),a.checked(!0))});a.checked(b.checked)},checked:function(b){return b!==h?(b?this.addClass("checked"):this.removeClass("checked"),this._checked=b,this):this._checked},renderHtml:function(){var b=this.classPrefix;return'"}})});g("tinymce/ui/RadioGroup",["tinymce/ui/Container"],function(c){return c.extend({})});g("tinymce/ui/ResizeHandle",["tinymce/ui/Widget","tinymce/ui/DragHelper", +"tinymce/ui/DomUtils"],function(c,b,a){return c.extend({renderHtml:function(){var a=this.classPrefix;return this.addClass("resizehandle"),this.settings.both&&this.addClass("resizehandle-both"),this.canFocus=!1,'
    '},postRender:function(){function c(a){return{width:a.clientWidth,height:a.clientHeight}}var e=this,f,g=e.settings.editor;e._super();e.resizeDragHelper=new b(this._id,{start:function(){f=c(g.getContentAreaContainer().firstChild)}, +drag:function(b){var h=f.width+b.deltaX;b=f.height+b.deltaY;var t,q,m,v,n=g.settings;t=g.getContainer();q=g.getContentAreaContainer().firstChild;m=c(t);v=c(q);h=Math.max(n.min_width||100,h);b=Math.max(n.min_height||100,b);h=Math.min(n.max_width||65535,h);b=Math.min(n.max_height||65535,b);e.settings.both&&a.css(t,"width",h+(m.width-v.width));a.css(t,"height",b+(m.height-v.height));e.settings.both&&a.css(q,"width",h);a.css(q,"height",b);g.fire("ResizeEditor")},end:function(){}})}})});g("tinymce/ui/Spacer", +["tinymce/ui/Widget"],function(c){return c.extend({renderHtml:function(){return this.addClass("spacer"),this.canFocus=!1,'
    '}})});g("tinymce/ui/SplitButton",["tinymce/ui/MenuButton","tinymce/dom/DOMUtils"],function(c,b){var a=b.DOM;return c.extend({Defaults:{classes:"widget btn splitbtn",role:"splitbutton"},repaint:function(){var b=this.getEl(),c=this.layoutRect(),f,g,h;return this._super(),f=b.firstChild,g=b.lastChild,a.css(f,{width:c.w-g.offsetWidth, +height:c.h-2}),a.css(g,{height:c.h-2}),h=f.firstChild.style,h.width=h.height="100%",h=g.firstChild.style,h.width=h.height="100%",this},activeMenu:function(b){a.toggleClass(this.getEl().lastChild,this.classPrefix+"active",b)},renderHtml:function(){var a=this.classPrefix,b=this.settings.icon?a+"ico "+a+"i-"+this.settings.icon:"";return'
    '},postRender:function(){var b=this.settings.onclick;return this.on("click",function(c){c.control!=this||a.getParent(c.target,"."+this.classPrefix+"open")||(c.stopImmediatePropagation(),b.call(this,c))}),delete this.settings.onclick,this._super()}})});g("tinymce/ui/StackLayout",["tinymce/ui/FlowLayout"],function(c){return c.extend({Defaults:{containerClass:"stack-layout", +controlClass:"stack-layout-item",endClass:"break"}})});g("tinymce/ui/TabPanel",["tinymce/ui/Panel","tinymce/ui/DomUtils"],function(c,b){"use stict";return c.extend({lastIdx:0,Defaults:{layout:"absolute",defaults:{type:"panel"}},activateTab:function(a){this.activeTabId&&b.removeClass(this.getEl(this.activeTabId),this.classPrefix+"active");this.activeTabId="t"+a;b.addClass(this.getEl("t"+a),this.classPrefix+"active");a!=this.lastIdx&&(this.items()[this.lastIdx].hide(),this.lastIdx=a);this.items()[a].show().fire("showtab"); +this.reflow()},renderHtml:function(){var a=this,b=a._layout,c="",f=a.classPrefix;return a.preRender(),b.preRender(a),a.items().each(function(b,d){c+='
    '+a.encode(b.settings.title)+"
    "}),'
    '+c+'
    '+b.renderHtml(a)+"
    "},postRender:function(){var a=this; +a._super();a.settings.activeTab=a.settings.activeTab||0;a.activateTab(a.settings.activeTab);this.on("click",function(b){var c=b.target.parentNode;if(b.target.parentNode.id==a._id+"-head")for(var f=c.childNodes.length;f--;)c.childNodes[f]==b.target&&a.activateTab(f)})},initLayoutRect:function(){var a=this,b,c,f;c=f=0;a.items().each(function(b,d){c=Math.max(c,b.layoutRect().minW);f=Math.max(f,b.layoutRect().minH);a.settings.activeTab!=d&&b.hide()});a.items().each(function(a){a.settings.x=0;a.settings.y= +0;a.settings.w=c;a.settings.h=f;a.layoutRect({x:0,y:0,w:c,h:f})});var g=a.getEl("head").offsetHeight;return a.settings.minWidth=c,a.settings.minHeight=f+g,b=a._super(),b.deltaH+=a.getEl("head").offsetHeight,b.innerH=b.h-b.deltaH,b}})});g("tinymce/ui/TextBox",["tinymce/ui/Widget","tinymce/ui/DomUtils"],function(c,b){return c.extend({init:function(a){var b=this;b._super(a);b._value=a.value||"";b.addClass("textbox");a.multiline?b.addClass("multiline"):b.on("keydown",function(a){13==a.keyCode&&b.parents().reverse().each(function(b){return a.preventDefault(), +b.submit?(b.submit(),!1):h})})},value:function(a){return a!==h?(this._value=a,this._rendered&&(this.getEl().value=a),this):this._rendered?this.getEl().value:this._value},repaint:function(){var a,b,c,f=0,g=0,h;return a=this.getEl().style,b=this._layoutRect,h=this._lastRepaintRect||{},c=this._borderBox,f=c.left+c.right+8,g=c.top+c.bottom+(this.settings.multiline?8:0),b.x!==h.x&&(a.left=b.x+"px",h.x=b.x),b.y!==h.y&&(a.top=b.y+"px",h.y=b.y),b.w!==h.w&&(a.width=b.w-f+"px",h.w=b.w),b.h!==h.h&&(a.height= +b.h-g+"px",h.h=b.h),this._lastRepaintRect=h,this.fire("repaint",{},!1),this},renderHtml:function(){var a=this._id,b=this.settings,c=this.encode(this._value,!1),f="";return"spellcheck"in b&&(f+=' spellcheck="'+b.spellcheck+'"'),b.maxLength&&(f+=' maxlength="'+b.maxLength+'"'),b.size&&(f+=' size="'+b.size+'"'),b.subtype&&(f+=' type="'+b.subtype+'"'),b.multiline?'":'"},postRender:function(){var a=this;return b.on(a.getEl(),"change",function(b){a.fire("change",b)}),a._super()}})});g("tinymce/ui/Throbber",["tinymce/ui/DomUtils"],function(c){return function(b){var a=this,d;a.show=function(e){return a.hide(),d=!0,window.setTimeout(function(){d&&b.appendChild(c.createFragment('
    '))},e||0),a};a.hide=function(){var c=b.lastChild;return c&&-1!=c.className.indexOf("throbber")&& +c.parentNode.removeChild(c),d=!1,a}}});(function(f){for(var b=0;f.length>b;b++){for(var a=c,d=f[b],e=d.split(/[.\/]/),g=0;e.length-1>g;++g)a[e[g]]===h&&(a[e[g]]={}),a=a[e[g]];a[e[e.length-1]]=p[d]}})("tinymce/dom/EventUtils tinymce/dom/Sizzle tinymce/dom/DomQuery tinymce/html/Styles tinymce/dom/TreeWalker tinymce/util/Tools tinymce/dom/Range tinymce/html/Entities tinymce/Env tinymce/dom/DOMUtils tinymce/dom/ScriptLoader tinymce/AddOnManager tinymce/html/Node tinymce/html/Schema tinymce/html/SaxParser tinymce/html/DomParser tinymce/html/Writer tinymce/html/Serializer tinymce/dom/Serializer tinymce/dom/TridentSelection tinymce/util/VK tinymce/dom/ControlSelection tinymce/dom/Selection tinymce/dom/RangeUtils tinymce/Formatter tinymce/UndoManager tinymce/EnterKey tinymce/ForceBlocks tinymce/EditorCommands tinymce/util/URI tinymce/util/Class tinymce/ui/Selector tinymce/ui/Collection tinymce/ui/DomUtils tinymce/ui/Control tinymce/ui/Factory tinymce/ui/Container tinymce/ui/DragHelper tinymce/ui/Scrollable tinymce/ui/Panel tinymce/ui/Movable tinymce/ui/Resizable tinymce/ui/FloatPanel tinymce/ui/KeyboardNavigation tinymce/ui/Window tinymce/ui/MessageBox tinymce/WindowManager tinymce/util/Quirks tinymce/util/Observable tinymce/Shortcuts tinymce/Editor tinymce/util/I18n tinymce/FocusManager tinymce/EditorManager tinymce/LegacyInput tinymce/util/XHR tinymce/util/JSON tinymce/util/JSONRequest tinymce/util/JSONP tinymce/util/LocalStorage tinymce/Compat tinymce/ui/Layout tinymce/ui/AbsoluteLayout tinymce/ui/Tooltip tinymce/ui/Widget tinymce/ui/Button tinymce/ui/ButtonGroup tinymce/ui/Checkbox tinymce/ui/CheckboxGroup tinymce/ui/PanelButton tinymce/ui/ColorButton tinymce/ui/ComboBox tinymce/ui/Path tinymce/ui/ElementPath tinymce/ui/FormItem tinymce/ui/Form tinymce/ui/FieldSet tinymce/ui/FilePicker tinymce/ui/FitLayout tinymce/ui/FlexLayout tinymce/ui/FlowLayout tinymce/ui/FormatControls tinymce/ui/GridLayout tinymce/ui/Iframe tinymce/ui/Label tinymce/ui/Toolbar tinymce/ui/MenuBar tinymce/ui/MenuButton tinymce/ui/ListBox tinymce/ui/MenuItem tinymce/ui/Menu tinymce/ui/Radio tinymce/ui/RadioGroup tinymce/ui/ResizeHandle tinymce/ui/Spacer tinymce/ui/SplitButton tinymce/ui/StackLayout tinymce/ui/TabPanel tinymce/ui/TextBox tinymce/ui/Throbber".split(" "))})(this); +(function(){var c=this,h=c._,n={},g=Array.prototype,p=Object.prototype,f=g.push,b=g.slice,a=g.concat,d=p.toString,e=p.hasOwnProperty,x=g.forEach,r=g.map,l=g.reduce,k=g.reduceRight,t=g.filter,q=g.every,m=g.some,v=g.indexOf,B=g.lastIndexOf,p=Array.isArray,y=Object.keys,z=Function.prototype.bind,w=function(a){return a instanceof w?a:this instanceof w?(this._wrapped=a,void 0):new w(a)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=w),exports._=w):c._= +w;w.VERSION="1.4.3";var J=w.each=w.forEach=function(a,b,c){if(null!=a)if(x&&a.forEach===x)a.forEach(b,c);else if(a.length===+a.length)for(var d=0,e=a.length;e>d&&b.call(c,a[d],d,a)!==n;d++);else for(d in a)if(w.has(a,d)&&b.call(c,a[d],d,a)===n)break};w.map=w.collect=function(a,b,c){var d=[];return null==a?d:r&&a.map===r?a.map(b,c):(J(a,function(a,e,f){d[d.length]=b.call(c,a,e,f)}),d)};w.reduce=w.foldl=w.inject=function(a,b,c,d){var e=2a.length)return Math.max.apply(Math,a);if(!b&&w.isEmpty(a))return-1/0;var d={computed:-1/0,value:-1/0};return J(a,function(a,e,f){e=b?b.call(c,a,e,f):a;e>=d.computed&&(d={value:a,computed:e})}),d.value};w.min=function(a,b,c){if(!b&&w.isArray(a)&&a[0]===+a[0]&&65535>a.length)return Math.min.apply(Math,a);if(!b&&w.isEmpty(a))return 1/ +0;var d={computed:1/0,value:1/0};return J(a,function(a,e,f){e=b?b.call(c,a,e,f):a;d.computed>e&&(d={value:a,computed:e})}),d.value};w.shuffle=function(a){var b,c=0,d=[];return J(a,function(a){b=w.random(c++);d[c-1]=d[b];d[b]=a}),d};var A=function(a){return w.isFunction(a)?a:function(b){return b[a]}};w.sortBy=function(a,b,c){var d=A(b);return w.pluck(w.map(a,function(a,b,e){return{value:a,index:b,criteria:d.call(c,a,b,e)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;if(c!==d){if(c>d||void 0=== +c)return 1;if(d>c||void 0===d)return-1}return a.indexe;){var g=e+f>>>1;b>c.call(d,a[g])? +e=g+1:f=g}return e};w.toArray=function(a){return a?w.isArray(a)?b.call(a):a.length===+a.length?w.map(a,w.identity):w.values(a):[]};w.size=function(a){return null==a?0:a.length===+a.length?a.length:w.keys(a).length};w.first=w.head=w.take=function(a,c,d){return null==a?void 0:null==c||d?a[0]:b.call(a,0,c)};w.initial=function(a,c,d){return b.call(a,0,a.length-(null==c||d?1:c))};w.last=function(a,c,d){return null==a?void 0:null==c||d?a[a.length-1]:b.call(a,Math.max(a.length-c,0))};w.rest=w.tail=w.drop= +function(a,c,d){return b.call(a,null==c||d?1:c)};w.compact=function(a){return w.filter(a,w.identity)};var G=function(a,b,c){return J(a,function(a){w.isArray(a)?b?f.apply(c,a):G(a,b,c):c.push(a)}),c};w.flatten=function(a,b){return G(a,b,[])};w.without=function(a){return w.difference(a,b.call(arguments,1))};w.uniq=w.unique=function(a,b,c,d){w.isFunction(b)&&(d=c,c=b,b=!1);c=c?w.map(a,c,d):a;var e=[],f=[];return J(c,function(c,d){(b?d&&f[f.length-1]===c:w.contains(f,c))||(f.push(c),e.push(a[d]))}),e}; +w.union=function(){return w.uniq(a.apply(g,arguments))};w.intersection=function(a){var c=b.call(arguments,1);return w.filter(w.uniq(a),function(a){return w.every(c,function(b){return 0<=w.indexOf(b,a)})})};w.difference=function(c){var d=a.apply(g,b.call(arguments,1));return w.filter(c,function(a){return!w.contains(d,a)})};w.zip=function(){for(var a=b.call(arguments),c=w.max(w.pluck(a,"length")),d=Array(c),e=0;c>e;e++)d[e]=w.pluck(a,""+e);return d};w.object=function(a,b){if(null==a)return{};for(var c= +{},d=0,e=a.length;e>d;d++)b?c[a[d]]=b[d]:c[a[d][0]]=a[d][1];return c};w.indexOf=function(a,b,c){if(null==a)return-1;var d=0,e=a.length;if(c){if("number"!=typeof c)return d=w.sortedIndex(a,b),a[d]===b?d:-1;d=0>c?Math.max(0,e+c):c}if(v&&a.indexOf===v)return a.indexOf(b,c);for(;e>d;d++)if(a[d]===b)return d;return-1};w.lastIndexOf=function(a,b,c){if(null==a)return-1;var d=null!=c;if(B&&a.lastIndexOf===B)return d?a.lastIndexOf(b,c):a.lastIndexOf(b);for(c=d?c:a.length;c--;)if(a[c]===b)return c;return-1}; +w.range=function(a,b,c){1>=arguments.length&&(b=a||0,a=0);c=arguments[2]||1;for(var d=Math.max(Math.ceil((b-a)/c),0),e=0,f=Array(d);d>e;)f[e++]=a,a+=c;return f};var C=function(){};w.bind=function(a,c){var d,e;if(a.bind===z&&z)return z.apply(a,b.call(arguments,1));if(!w.isFunction(a))throw new TypeError;return d=b.call(arguments,2),e=function(){if(!(this instanceof e))return a.apply(c,d.concat(b.call(arguments)));C.prototype=a.prototype;var f=new C;C.prototype=null;var g=a.apply(f,d.concat(b.call(arguments))); +return Object(g)===g?g:f}};w.bindAll=function(a){var c=b.call(arguments,1);return 0==c.length&&(c=w.functions(a)),J(c,function(b){a[b]=w.bind(a[b],a)}),a};w.memoize=function(a,b){var c={};return b||(b=w.identity),function(){var d=b.apply(this,arguments);return w.has(c,d)?c[d]:c[d]=a.apply(this,arguments)}};w.delay=function(a,c){var d=b.call(arguments,2);return setTimeout(function(){return a.apply(null,d)},c)};w.defer=function(a){return w.delay.apply(w,[a,1].concat(b.call(arguments,1)))};w.throttle= +function(a,b){var c,d,e,f,g=0,h=function(){g=new Date;e=null;f=a.apply(c,d)};return function(){var k=new Date,m=b-(k-g);return c=this,d=arguments,0>=m?(clearTimeout(e),e=null,g=k,f=a.apply(c,d)):e||(e=setTimeout(h,m)),f}};w.debounce=function(a,b,c){var d,e;return function(){var f=this,g=arguments,h=c&&!d;return clearTimeout(d),d=setTimeout(function(){d=null;c||(e=a.apply(f,g))},b),h&&(e=a.apply(f,g)),e}};w.once=function(a){var b,c=!1;return function(){return c?b:(c=!0,b=a.apply(this,arguments),a= +null,b)}};w.wrap=function(a,b){return function(){var c=[a];return f.apply(c,arguments),b.apply(this,c)}};w.compose=function(){var a=arguments;return function(){for(var b=arguments,c=a.length-1;0<=c;c--)b=[a[c].apply(this,b)];return b[0]}};w.after=function(a,b){return 0>=a?b():function(){return 1>--a?b.apply(this,arguments):void 0}};w.keys=y||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var b=[],c;for(c in a)w.has(a,c)&&(b[b.length]=c);return b};w.values=function(a){var b=[], +c;for(c in a)w.has(a,c)&&b.push(a[c]);return b};w.pairs=function(a){var b=[],c;for(c in a)w.has(a,c)&&b.push([c,a[c]]);return b};w.invert=function(a){var b={},c;for(c in a)w.has(a,c)&&(b[a[c]]=c);return b};w.functions=w.methods=function(a){var b=[],c;for(c in a)w.isFunction(a[c])&&b.push(c);return b.sort()};w.extend=function(a){return J(b.call(arguments,1),function(b){if(b)for(var c in b)a[c]=b[c]}),a};w.pick=function(c){var d={},e=a.apply(g,b.call(arguments,1));return J(e,function(a){a in c&&(d[a]= +c[a])}),d};w.omit=function(c){var d={},e=a.apply(g,b.call(arguments,1)),f;for(f in c)w.contains(e,f)||(d[f]=c[f]);return d};w.defaults=function(a){return J(b.call(arguments,1),function(b){if(b)for(var c in b)null==a[c]&&(a[c]=b[c])}),a};w.clone=function(a){return w.isObject(a)?w.isArray(a)?a.slice():w.extend({},a):a};w.tap=function(a,b){return b(a),a};var L=function(a,b,c,e){if(a===b)return 0!==a||1/a==1/b;if(null==a||null==b)return a===b;a instanceof w&&(a=a._wrapped);b instanceof w&&(b=b._wrapped); +var f=d.call(a);if(f!=d.call(b))return!1;switch(f){case "[object String]":return a==b+"";case "[object Number]":return a!=+a?b!=+b:0==a?1/a==1/b:a==+b;case "[object Date]":case "[object Boolean]":return+a==+b;case "[object RegExp]":return a.source==b.source&&a.global==b.global&&a.multiline==b.multiline&&a.ignoreCase==b.ignoreCase}if("object"!=typeof a||"object"!=typeof b)return!1;for(var g=c.length;g--;)if(c[g]==a)return e[g]==b;c.push(a);e.push(b);var g=0,h=!0;if("[object Array]"==f){if(g=a.length, +h=g==b.length)for(;g--&&(h=L(a[g],b[g],c,e)););}else{var f=a.constructor,k=b.constructor;if(f!==k&&!(w.isFunction(f)&&f instanceof f&&w.isFunction(k)&&k instanceof k))return!1;for(var m in a)if(w.has(a,m)&&(g++,!(h=w.has(b,m)&&L(a[m],b[m],c,e))))break;if(h){for(m in b)if(w.has(b,m)&&!g--)break;h=!g}}return c.pop(),e.pop(),h};w.isEqual=function(a,b){return L(a,b,[],[])};w.isEmpty=function(a){if(null==a)return!0;if(w.isArray(a)||w.isString(a))return 0===a.length;for(var b in a)if(w.has(a,b))return!1; +return!0};w.isElement=function(a){return!(!a||1!==a.nodeType)};w.isArray=p||function(a){return"[object Array]"==d.call(a)};w.isObject=function(a){return a===Object(a)};J("Arguments Function String Number Date RegExp".split(" "),function(a){w["is"+a]=function(b){return d.call(b)=="[object "+a+"]"}});w.isArguments(arguments)||(w.isArguments=function(a){return!(!a||!w.has(a,"callee"))});w.isFunction=function(a){return"function"==typeof a};w.isFinite=function(a){return isFinite(a)&&!isNaN(parseFloat(a))}; +w.isNaN=function(a){return w.isNumber(a)&&a!=+a};w.isBoolean=function(a){return!0===a||!1===a||"[object Boolean]"==d.call(a)};w.isNull=function(a){return null===a};w.isUndefined=function(a){return void 0===a};w.has=function(a,b){return e.call(a,b)};w.noConflict=function(){return c._=h,this};w.identity=function(a){return a};w.times=function(a,b,c){for(var d=Array(a),e=0;a>e;e++)d[e]=b.call(c,e);return d};w.random=function(a,b){return null==b&&(b=a,a=0),a+(0|Math.random()*(b-a+1))};var F={escape:{"&":"&", +"<":"<",">":">",'"':""","'":"'","/":"/"}};F.unescape=w.invert(F.escape);var U={escape:RegExp("["+w.keys(F.escape).join("")+"]","g"),unescape:RegExp("("+w.keys(F.unescape).join("|")+")","g")};w.each(["escape","unescape"],function(a){w[a]=function(b){return null==b?"":(""+b).replace(U[a],function(b){return F[a][b]})}});w.result=function(a,b){if(null==a)return null;var c=a[b];return w.isFunction(c)?c.call(a):c};w.mixin=function(a){J(w.functions(a),function(b){var c=w[b]=a[b];w.prototype[b]= +function(){var a=[this._wrapped];return f.apply(a,arguments),N.call(this,c.apply(w,a))}})};var S=0;w.uniqueId=function(a){var b=""+ ++S;return a?a+b:b};w.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var O=/(.)^/,M={"'":"'","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},P=/\\|'|\r|\n|\t|\u2028|\u2029/g;w.template=function(a,b,c){c=w.defaults({},c,w.templateSettings);var d=RegExp([(c.escape||O).source,(c.interpolate|| +O).source,(c.evaluate||O).source].join("|")+"|$","g"),e=0,f="__p+='";a.replace(d,function(b,c,d,g,h){return f+=a.slice(e,h).replace(P,function(a){return"\\"+M[a]}),c&&(f+="'+\n((__t=("+c+"))==null?'':_.escape(__t))+\n'"),d&&(f+="'+\n((__t=("+d+"))==null?'':__t)+\n'"),g&&(f+="';\n"+g+"\n__p+='"),e=h+b.length,b});f+="';\n";c.variable||(f="with(obj||{}){\n"+f+"}\n");f="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+f+"return __p;\n";try{var g=Function(c.variable|| +"obj","_",f)}catch(h){throw h.source=f,h;}if(b)return g(b,w);b=function(a){return g.call(this,a,w)};return b.source="function("+(c.variable||"obj")+"){\n"+f+"}",b};w.chain=function(a){return w(a).chain()};var N=function(a){return this._chain?w(a).chain():a};w.mixin(w);J("pop push reverse shift sort splice unshift".split(" "),function(a){var b=g[a];w.prototype[a]=function(){var c=this._wrapped;return b.apply(c,arguments),"shift"!=a&&"splice"!=a||0!==c.length||delete c[0],N.call(this,c)}});J(["concat", +"join","slice"],function(a){var b=g[a];w.prototype[a]=function(){return N.call(this,b.apply(this._wrapped,arguments))}});w.extend(w.prototype,{chain:function(){return this._chain=!0,this},value:function(){return this._wrapped}})}).call(this); +(function(c){function h(a,b,c,d){var e=c.lang();return e[a].call?e[a](c,d):e[a][b]}function n(b,c){return function(d){return a(b.call(this,d),c)}}function g(a){return function(b){b=a.call(this,b);return b+this.lang().ordinal(b)}}function p(a,b,c){this._d=a;this._isUTC=!!b;this._a=a._a||null;this._lang=c||!1}function f(a){var c=this._data={},d=a.years||a.y||0,e=a.months||a.M||0,f=a.weeks||a.w||0,g=a.days||a.d||0,h=a.hours||a.h||0,k=a.minutes||a.m||0,m=a.seconds||a.s||0;a=a.milliseconds||a.ms||0;this._milliseconds= +a+1E3*m+6E4*k+36E5*h;this._days=g+7*f;this._months=e+12*d;c.milliseconds=a%1E3;m+=b(a/1E3);c.seconds=m%60;k+=b(m/60);c.minutes=k%60;h+=b(k/60);c.hours=h%24;g+=b(h/24);g+=7*f;c.days=g%30;e+=b(g/30);c.months=e%12;d+=b(e/12);c.years=d;this._lang=!1}function b(a){return 0>a?Math.ceil(a):Math.floor(a)}function a(a,b){for(var c=a+"";c.lengthe;e++)g[e]=a[e]=null==a[e]?2===e?1:0:a[e];return a[7]=g[7]=b,null!=a[8]&&(g[8]=a[8]),a[3]+=c||0,a[4]+=d||0,f=new Date(0),b?(f.setUTCFullYear(a[0],a[1],a[2]),f.setUTCHours(a[3],a[4],a[5],a[6])):(f.setFullYear(a[0], +a[1],a[2]),f.setHours(a[3],a[4],a[5],a[6])),f._a=g,f}function l(a,b){var c,d,e=[];!b&&L&&(b=require("./lang/"+a));for(c=0;cc;c++)d=I([2E3,c]),e[c]=new RegExp("^"+(b.months[c]||b.months(d,""))+"|^"+(b.monthsShort[c]||b.monthsShort(d,"")).replace(".",""),"i");return b.monthsParse=b.monthsParse||e,G[a]=b,b}function k(a){return(a="string"==typeof a&&a||a&&a._lang||null)?G[a]||l(a):I}function t(a){return a.match(/\[.*\]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g, +"")}function q(a){var b=a.match(S),c,d;c=0;for(d=b.length;cq;q++)if(k().monthsParse[q].test(g)){h[1]=q;l=!0;break}l||(h[8]=!1);break;case "D":case "DD":case "DDD":case "DDDD":null!=g&&(h[2]=~~g);break;case "YY":h[0]=~~g+(70<~~g?1900:2E3);break;case "YYYY":h[0]=~~Math.abs(g);break;case "a":case "A":m.isPm="pm"===(g+"").toLowerCase();break;case "H":case "HH":case "h":case "hh":h[3]=~~g;break;case "m":case "mm":h[4]=~~g;break;case "s":case "ss":h[5]=~~g;break;case "S":case "SS":case "SSS":h[6]=~~(1E3*("0."+g));break;case "Z":case "ZZ":m.isUTC=!0,(q=(g+ +"").match(W))&&q[1]&&(m.tzh=~~q[1]),q&&q[2]&&(m.tzm=~~q[2]),q&&"+"===q[0]&&(m.tzh=-m.tzh,m.tzm=-m.tzm)}null==g&&(h[8]=!1)}return d.isPm&&12>c[3]&&(c[3]+=12),!1===d.isPm&&12===c[3]&&(c[3]=0),r(c,d.isUTC,d.tzh,d.tzm)}function y(a,b,c,d,e){e=e.relativeTime[a];return"function"==typeof e?e(b||1,!!c,a,d):e.replace(/%d/i,b||1)}function z(a,b){I.fn[a]=function(a){var c=this._isUTC?"UTC":"";return null!=a?(this._d["set"+c+b](a),this):this._d["get"+c+b]()}}function w(a){I.duration.fn[a]=function(){return this._data[a]}} +function J(a,b){I.duration.fn["as"+a]=function(){return+this/b}}for(var I,A=Math.round,E,G={},C="en",L="undefined"!=typeof module&&module.exports,F="months monthsShort weekdays weekdaysShort weekdaysMin longDateFormat calendar relativeTime ordinal meridiem".split(" "),U=/^\/?Date\((\-?\d+)/i,S=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|YYYY|YY|a|A|hh?|HH?|mm?|ss?|SS?S?|zz?|ZZ?|.)/g,O=/(\[[^\[]*\])|(\\)?(LT|LL?L?L?)/g,M=/([0-9a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+)/gi, +P=/\d\d?/,N=/\d{1,3}/,D=/\d{3}/,H=/\d{1,4}/,R=/[0-9a-z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+/i,V=/Z|[\+\-]\d\d:?\d\d/i,T=/T/i,Y=/^\s*\d{4}-\d\d-\d\d(T(\d\d(:\d\d(:\d\d(\.\d\d?\d?)?)?)?)?([\+\-]\d\d:?\d\d)?)?/,K=[["HH:mm:ss.S",/T\d\d:\d\d:\d\d\.\d{1,3}/],["HH:mm:ss",/T\d\d:\d\d:\d\d/],["HH:mm",/T\d\d:\d\d/],["HH",/T\d\d/]],W=/([\+\-]|\d\d)/gi,Z="Month Date Hours Minutes Seconds Milliseconds".split(" "),Q={Milliseconds:1,Seconds:1E3,Minutes:6E4,Hours:36E5,Days:864E5,Months:2592E6,Years:31536E6}, +X={},ba=["DDD","w","M","D","d"],na="MDHhmsw".split(""),ea={M:function(){return this.month()+1},MMM:function(a){return h("monthsShort",this.month(),this,a)},MMMM:function(a){return h("months",this.month(),this,a)},D:function(){return this.date()},DDD:function(){var a=new Date(this.year(),this.month(),this.date()),b=new Date(this.year(),0,1);return~~((a-b)/864E5+1.5)},d:function(){return this.day()},dd:function(a){return h("weekdaysMin",this.day(),this,a)},ddd:function(a){return h("weekdaysShort",this.day(), +this,a)},dddd:function(a){return h("weekdays",this.day(),this,a)},w:function(){var a=new Date(this.year(),this.month(),this.date()-this.day()+5),b=new Date(a.getFullYear(),0,4);return~~((a-b)/864E5/7+1.5)},YY:function(){return a(this.year()%100,2)},YYYY:function(){return a(this.year(),4)},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()% +12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return~~(this.milliseconds()/100)},SS:function(){return a(~~(this.milliseconds()/10),2)},SSS:function(){return a(this.milliseconds(),3)},Z:function(){var b=-this.zone(),c="+";return 0>b&&(b=-b,c="-"),c+a(~~(b/60),2)+":"+a(~~b%60,2)},ZZ:function(){var b=-this.zone(),c="+";return 0>b&&(b=-b,c="-"),c+a(~~(10*b/6),4)}};ba.length;)E=ba.pop(),ea[E+"o"]=g(ea[E]);for(;na.length;)E=na.pop(),ea[E+E]=n(ea[E],2);ea.DDDD= +n(ea.DDD,3);I=function(a,b){if(null===a||""===a)return null;var d;if(I.isMoment(a))d=new p(new Date(+a._d),a._isUTC,a._lang);else{if(b)if(e(b)){var f=a.match(M)||[],g,h=99,k,q;for(k=0;kf;f++)if(K[f][1].exec(a)){d+=K[f][0];break}d= +V.exec(a)?B(a,d+" Z"):B(a,d)}else d=new Date(a);else d=new Date(a);d=new p(d)}return d};I.utc=function(a,b){return e(a)?new p(r(a,!0),!0):("string"==typeof a&&!V.exec(a)&&(a+=" +0000",b&&(b+=" Z")),I(a,b).utc())};I.unix=function(a){return I(1E3*a)};I.duration=function(a,b){var c=I.isDuration(a),d="number"==typeof a,e=c?a._data:d?{}:a,g;return d&&(b?e[b]=a:e.milliseconds=a),g=new f(e),c&&(g._lang=a._lang),g};I.humanizeDuration=function(a,b,c){return I.duration(a,!0===b?null:b).humanize(!0===b?!0:c)}; +I.version="1.7.2";I.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";I.lang=function(a,b){var c;if(!a)return C;!b&&G[a]||l(a,b);if(G[a]){for(c=0;ca?c:-1>a?b.lastWeek:0>a?b.lastDay:1>a?b.sameDay:2>a?b.nextDay:7>a?b.nextWeek:c;return this.format("function"==typeof a?a.apply(this):a)},isLeapYear:function(){var a=this.year();return 0===a%4&&0!==a%100||0===a%400},isDST:function(){return this.zone()f&&["s",f]||1===g&&["m"]||45>g&&["mm",g]||1===h&&["h"]||22>h&&["hh",h]||1===k&&["d"]||25>=k&&["dd",k]||45>=k&&["M"]||345>k&&["MM",A(k/30)]||1===m&&["y"]||["yy",m];d=(f[2]=d,f[3]=0=b?c.past:c.future;return a&&("function"==typeof b?d=b(d):d=b.replace(/%s/i,d)),d},lang:I.fn.lang};for(E in Q)Q.hasOwnProperty(E)&&(J(E,Q[E]),w(E.toLowerCase()));J("Weeks",6048E5);L&&(module.exports=I);"undefined"==typeof ender&&(this.moment=I);"function"== +typeof define&&define.amd&&define("moment",[],function(){return I})}).call(this); +(function(c){var h=/[\.\/]/,n=function(){},g=function(a,b){return a-b},p,f,b={n:{}},a=function(b,c){var h=f,n=Array.prototype.slice.call(arguments,2),l=a.listeners(b),k=0,t,q=[],m={},v=[],B=p;p=b;for(var y=f=0,z=l.length;yl[y].zIndex&&(m[l[y].zIndex]=l[y]));for(q.sort(g);0>q[k];)if(t=m[q[k++]],v.push(t.apply(c,n)),f)return f=h,v;for(y=0;yd*a.top){c=a.percents[r];n=a.percents[r-1]||0;w=w/a.top*(c-n);v=a.percents[r+1];m=a.anim[c];break}d&&b.attr(a.anim[a.percents[r]])}if(m){if(l)l.initstatus= +d,l.start=new Date-l.ms*d;else{for(var A in m)if(m[B](A)&&(da[B](A)||b.paper.customAttributes[B](A)))switch(p[A]=b.attr(A),null==p[A]&&(p[A]=ea[A]),y[A]=m[A],da[A]){case V:x[A]=(y[A]-p[A])/w;break;case "colour":p[A]=k.getRGB(p[A]);r=k.getRGB(y[A]);x[A]={r:(r.r-p[A].r)/w,g:(r.g-p[A].g)/w,b:(r.b-p[A].b)/w};break;case "path":r=La(p[A],y[A]);z=r[1];p[A]=r[0];x[A]=[];r=0;for(u=p[A].length;r +d;d++){f=((m*e+k)*e+h)*e-a;if(D(f)D(c))break;e-=f/c}c=0;d=1;e=a;if(ed)return d;for(;cf?c=e:d=e;e=(d-c)/2+c}return e}var h=3*b,k=3*(d-b)-h,m=1-h-k,q=3*c,l=3*(e-c)-q,t=1-q-l;return function(a,b){var c=g(a,b);return((t*c+l)*c+q)*c}(a,1/(200*f))}function p(){return this.x+C+this.y+C+this.width+" \u00d7 "+this.height}function f(a,b,c,d,e,f){null!=a?(this.a=+a,this.b=+b,this.c=+c,this.d=+d,this.e=+e,this.f= ++f):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function b(a,b,c){a=k._path2curve(a);b=k._path2curve(b);for(var e,f,g,h,m,q,l,t,v,n,r=c?0:[],w=0,p=a.length;wD(S.x-U.x)?"y":"x",O=.001>D(I.x-u.x)?"y":"x",K;K=U.x;var T=U.y,H=S.x,V=S.y,Y=u.x,Q=u.y,R=I.x,W=I.y;if(P(K,H)P(Y,R)||P(T,V)P(Q,W))K=void 0;else{var Z=(K*V-T*H)*(Y-R)-(K-H)*(Y*W-Q*R),X=(K*V-T*H)*(Q-W)-(T-V)*(Y*W-Q*R),ba=(K-H)*(Q-W)-(T-V)*(Y-R);if(ba){var Z=Z/ba,X=X/ba,ba=+Z.toFixed(2),aa=+X.toFixed(2);K=ba<+N(K,H).toFixed(2)||ba>+P(K,H).toFixed(2)||ba<+N(Y,R).toFixed(2)||ba>+P(Y,R).toFixed(2)||aa<+N(T,V).toFixed(2)||aa>+P(T,V).toFixed(2)||aa<+N(Q,W).toFixed(2)||aa>+P(Q,W).toFixed(2)?void 0:{x:Z,y:X}}else K=void 0}K&&L[K.x.toFixed(4)]!=K.y.toFixed(4)&&(L[K.x.toFixed(4)]=K.y.toFixed(4), +U=U.t+D((K[M]-U[M])/(S[M]-U[M]))*(S.t-U.t),u=u.t+D((K[O]-u[O])/(I[O]-u[O]))*(I.t-u.t),0<=U&&1>=U&&0<=u&&1>=u&&(z?J++:J.push({x:K.x,y:K.y,t1:U,t2:u})))}z=J}else z=z?0:[];if(c)r+=z;else{A=0;for(C=z.length;Am||d(a,b,c,e,f,g,h,k)k?0:k)/2;for(var m=[-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816],q=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],l=0,t=0;12>t;t++)var v=k*m[t]+k,n=v*(v*(-3*a+9*c-9*e+3*g)+6*a-12*c+6*e)-3*a+3*c,v=v*(v*(-3*b+9*d-9*f+3*h)+6*b-12*d+6*f)-3*b+3*d,l=l+q[t]*M.sqrt(n*n+v*v);return k*l}function e(a,b){for(var c=[],d=0,e=a.length;e-2*!b>d;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+ +5]}];b?d?e-4==d?f[3]={x:+a[0],y:+a[1]}:e-2==d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4==d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]});c.push(["C",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}function x(){return this.hex}function r(a,b,c){function d(){var e=Array.prototype.slice.call(arguments,0),f=e.join("\u2400"),g=d.cache=d.cache||{},h=d.count=d.count||[];if(g[B](f)){a:for(var e= +h,h=f,k=0,m=e.length;k';sa=Ja.firstChild;sa.style.behavior="url(#default#VML)";if(!sa||"object"!=typeof sa.adj)return k.type="";Ja=null}k.svg=!(k.vml="VML"==k.type);k._Paper=J;k.fn=I=J.prototype=k.prototype;k._id=0;k._oid=0;k.is=function(a,b){b=O.call(b);return"finite"==b?!W[B](+a):"array"==b?a instanceof Array:"null"==b&&null===a||b==typeof a&&null!==a||"object"==b&&a===Object(a)||"array"==b&&Array.isArray&&Array.isArray(a)||Y.call(a).slice(8,-1).toLowerCase()== +b};k.angle=function(a,b,c,d,e,f){return null==e?(a-=c,b-=d,a||b?(180*M.atan2(-b,-a)/R+540)%360:0):k.angle(a,b,e,f)-k.angle(c,d,e,f)};k.rad=function(a){return a%360*R/180};k.deg=function(a){return 180*a/R%360};k.snapTo=function(a,b,c){c=k.is(c,"finite")?c:10;if(k.is(a,T))for(var d=a.length;d--;){if(D(a[d]-b)<=c)return a[d]}else{a=+a;d=b%a;if(da-c)return b-d+a}return b};k.createUUID=function(a,b){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(a,b).toUpperCase()}}(/[xy]/g, +function(a){var b=16*M.random()|0;return("x"==a?b:b&3|8).toString(16)});k.setWindow=function(a){eve("raphael.setWindow",k,y.win,a);y.win=a;y.doc=y.win.document;k._engine.initWin&&k._engine.initWin(y.win)};var Ka=function(a){if(k.vml){var b=/^\s+|\s+$/g,c;try{var d=new ActiveXObject("htmlfile");d.write("");d.close();c=d.body}catch(e){c=createPopup().document.body}var f=c.createTextRange();Ka=r(function(a){try{c.style.color=L(a).replace(b,"");var d=f.queryCommandValue("ForeColor");return"#"+("000000"+ +((d&255)<<16|d&65280|(d&16711680)>>>16).toString(16)).slice(-6)}catch(e){return"none"}})}else{var g=y.doc.createElement("i");g.title="Rapha\u00ebl Colour Picker";g.style.display="none";y.doc.body.appendChild(g);Ka=r(function(a){g.style.color=a;return y.doc.defaultView.getComputedStyle(g,"").getPropertyValue("color")})}return Ka(a)},eb=function(){return"hsb("+[this.h,this.s,this.b]+")"},Sa=function(){return"hsl("+[this.h,this.s,this.l]+")"},bb=function(){return this.hex},ta=function(a,b,c){null==b&& +k.is(a,"object")&&"r"in a&&"g"in a&&"b"in a&&(c=a.b,b=a.g,a=a.r);null==b&&k.is(a,"string")&&(c=k.getRGB(a),a=c.r,b=c.g,c=c.b);if(1c?c:1-c);b=g*(1-D(a%2-1));c=e=f=c-g/2;a=~~a;c+=[g,b,0,0,b,g][a];e+=[b,g,g,b,0,0][a];f+=[0,0,b,g,g,b][a];return Va(c,e,f,d)};k.rgb2hsb=function(a,b,c){c=ta(a,b,c);a=c[0];b=c[1];c=c[2];var d,e;d=P(a,b,c);e=d-N(a,b,c);a=((0==e?null:d==a?(b-c)/e:d==b?(c-a)/e+2:(a-b)/e+4)+360)%6*60/360;return{h:a,s:0==e?0:e/d,b:d,toString:eb}};k.rgb2hsl=function(a,b,c){c=ta(a, +b,c);a=c[0];b=c[1];c=c[2];var d,e,f;d=P(a,b,c);e=N(a,b,c);f=d-e;a=((0==f?null:d==a?(b-c)/f:d==b?(c-a)/f+2:(a-b)/f+4)+360)%6*60/360;d=(d+e)/2;return{h:a,s:0==f?0:.5>d?f/(2*d):f/(2-2*d),l:d,toString:Sa}};k._path2string=function(){return this.join(",").replace(oa,"$1")};k._preload=function(a,b){var c=y.doc.createElement("img");c.style.cssText="position:absolute;left:-9999em;top:-9999em";c.onload=function(){b.call(this);this.onload=null;y.doc.body.removeChild(this)};c.onerror=function(){y.doc.body.removeChild(this)}; +y.doc.body.appendChild(c);c.src=a};k.getRGB=r(function(a){if(!a||(a=L(a)).indexOf("-")+1)return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:x};if("none"==a)return{r:-1,g:-1,b:-1,hex:"none",toString:x};!aa[B](a.toLowerCase().substring(0,2))&&"#"!=a.charAt()&&(a=Ka(a));var b,c,d,e,f,g;if(a=a.match(K)){a[2]&&(d=ba(a[2].substring(5),16),c=ba(a[2].substring(3,5),16),b=ba(a[2].substring(1,3),16));a[3]&&(d=ba((f=a[3].charAt(3))+f,16),c=ba((f=a[3].charAt(2))+f,16),b=ba((f=a[3].charAt(1))+f,16));a[4]&&(g=a[4][F](va), +b=X(g[0]),"%"==g[0].slice(-1)&&(b*=2.55),c=X(g[1]),"%"==g[1].slice(-1)&&(c*=2.55),d=X(g[2]),"%"==g[2].slice(-1)&&(d*=2.55),"rgba"==a[1].toLowerCase().slice(0,4)&&(e=X(g[3])),g[3]&&"%"==g[3].slice(-1)&&(e/=100));if(a[5])return g=a[5][F](va),b=X(g[0]),"%"==g[0].slice(-1)&&(b*=2.55),c=X(g[1]),"%"==g[1].slice(-1)&&(c*=2.55),d=X(g[2]),"%"==g[2].slice(-1)&&(d*=2.55),"deg"!=g[0].slice(-3)&&"\u00b0"!=g[0].slice(-1)||(b/=360),"hsba"==a[1].toLowerCase().slice(0,4)&&(e=X(g[3])),g[3]&&"%"==g[3].slice(-1)&&(e/= +100),k.hsb2rgb(b,c,d,e);if(a[6])return g=a[6][F](va),b=X(g[0]),"%"==g[0].slice(-1)&&(b*=2.55),c=X(g[1]),"%"==g[1].slice(-1)&&(c*=2.55),d=X(g[2]),"%"==g[2].slice(-1)&&(d*=2.55),"deg"!=g[0].slice(-3)&&"\u00b0"!=g[0].slice(-1)||(b/=360),"hsla"==a[1].toLowerCase().slice(0,4)&&(e=X(g[3])),g[3]&&"%"==g[3].slice(-1)&&(e/=100),k.hsl2rgb(b,c,d,e);a={r:b,g:c,b:d,toString:x};a.hex="#"+(16777216|d|c<<8|b<<16).toString(16).slice(1);k.is(e,"finite")&&(a.opacity=e);return a}return{r:-1,g:-1,b:-1,hex:"none",error:1, +toString:x}},k);k.hsb=r(function(a,b,c){return k.hsb2rgb(a,b,c).hex});k.hsl=r(function(a,b,c){return k.hsl2rgb(a,b,c).hex});k.rgb=r(function(a,b,c){return"#"+(16777216|c|b<<8|a<<16).toString(16).slice(1)});k.getColor=function(a){a=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||.75};var b=this.hsb2rgb(a.h,a.s,a.b);a.h+=.075;1=a.s&&(this.getColor.start={h:0,s:1,b:a.b}));return b.hex};k.getColor.reset=function(){delete this.start};k.parsePathString=function(a){if(!a)return null; +var b=Na(a);if(b.arr)return ra(b.arr);var c={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},d=[];k.is(a,T)&&k.is(a[0],T)&&(d=ra(a));d.length||L(a).replace(Oa,function(a,b,e){var f=[];a=b.toLowerCase();e.replace(ha,function(a,b){b&&f.push(+b)});"m"==a&&2=c[a]&&(d.push([b][E](f.splice(0,c[a]))),c[a]););});d.toString=k._path2string;b.arr=ra(d);return d};k.parseTransformString=r(function(a){if(!a)return null; +var b=[];k.is(a,T)&&k.is(a[0],T)&&(b=ra(a));b.length||L(a).replace(Ba,function(a,c,d){var e=[];O.call(c);d.replace(ha,function(a,b){b&&e.push(+b)});b.push([c][E](e))});b.toString=k._path2string;return b});var Na=function(a){var b=Na.ps=Na.ps||{};b[a]?b[a].sleep=100:b[a]={sleep:100};setTimeout(function(){for(var c in b)b[B](c)&&c!=a&&(b[c].sleep--,!b[c].sleep&&delete b[c])});return b[a]};k.findDotsAtSegment=function(a,b,c,d,e,f,g,h,k){var m=1-k,q=H(m,3),l=H(m,2),t=k*k,v=t*k,n=q*a+3*l*k*c+3*m*k*k*e+ +v*g,q=q*b+3*l*k*d+3*m*k*k*f+v*h,l=a+2*k*(c-a)+t*(e-2*c+a),v=b+2*k*(d-b)+t*(f-2*d+b),r=c+2*k*(e-c)+t*(g-2*e+c),t=d+2*k*(f-d)+t*(h-2*f+d);a=m*a+k*c;b=m*b+k*d;e=m*e+k*g;f=m*f+k*h;h=90-180*M.atan2(l-r,v-t)/R;(l>r||v=a.x&&b<=a.x2&&c>=a.y&&c<=a.y2};k.isBBoxIntersect=function(a,b){var c=k.isPointInsideBBox;return c(b,a.x,a.y)||c(b,a.x2,a.y)||c(b,a.x,a.y2)||c(b,a.x2,a.y2)||c(a,b.x,b.y)||c(a,b.x2,b.y)||c(a,b.x,b.y2)||c(a,b.x2,b.y2)||(a.xb.x||b.xa.x)&&(a.yb.y||b.ya.y)};k.pathIntersection=function(a,c){return b(a,c)};k.pathIntersectionNumber=function(a,c){return b(a,c,1)};k.isPointInsidePath=function(a,c,d){var e=k.pathBBox(a);return k.isPointInsideBBox(e, +c,d)&&1==b(a,[["M",c,d],["H",e.x2+10]],1)%2};k._removedFactory=function(a){return function(){eve("raphael.log",null,"Rapha\u00ebl: you are calling to method \u201c"+a+"\u201d of removed object",a)}};var Fa=k.pathBBox=function(a){var b=Na(a);if(b.bbox)return b.bbox;if(!a)return{x:0,y:0,width:0,height:0,x2:0,y2:0};a=La(a);for(var c=0,d=0,e=[],f=[],g,h=0,k=a.length;hy&&(y=2*R+y);0>v&&(v=2*R+v);g&&y>v&&(y-=2*R);!g&&v>y&&(v-=2*R)}if(D(v-y)>q){var t=v,p=h,x=k;v=y+q*(g&&v>y?1:-1);h=f+c*M.cos(v);k=w+d*M.sin(v);t=lb(h,k,c, +d,e,0,g,p,x,[v,t,f,w])}f=v-y;e=M.cos(y);q=M.sin(y);g=M.cos(v);v=M.sin(v);f=M.tan(f/4);c=4/3*c*f;f*=4/3*d;d=[a,b];a=[a+c*q,b-f*e];b=[h+c*v,k-f*g];h=[h,k];a[0]=2*d[0]-a[0];a[1]=2*d[1]-a[1];if(m)return[a,b,h][E](t);t=[a,b,h][E](t).join()[F](",");m=[];h=0;for(k=t.length;hl&&(n=mb(a,b,c,d,e,f,g,h,l),t.push(n.x),v.push(n.y));0k&&(n=mb(a,b,c,d,e,f,g,h,k),t.push(n.x),v.push(n.y));k=f-2*d+b-(h-2*f+d);m=2*(d-b)-2*(f-d);q=b-d;l=(-m+M.sqrt(m*m-4*k*q))/2/k;k=(-m-M.sqrt(m*m-4*k*q))/2/k;"1e12"l&&(n=mb(a,b,c,d,e,f,g,h,l),t.push(n.x),v.push(n.y));0k&&(n=mb(a,b,c, +d,e,f,g,h,k),t.push(n.x),v.push(n.y));return{min:{x:N[A](0,t),y:N[A](0,v)},max:{x:P[A](0,t),y:P[A](0,v)}}}),La=k._path2curve=r(function(a,b){var c=!b&&Na(a);if(!b&&c.curve)return ra(c.curve);var d=ka(a),e=b&&ka(b),f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},h=function(a,b){var c,d;if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];a[0]in{T:1,Q:1}||(b.qx=b.qy=null);switch(a[0]){case "M":b.X=a[1];b.Y=a[2];break;case "A":a=["C"][E](lb[A](0,[b.x,b.y][E](a.slice(1)))); +break;case "S":c=b.x+(b.x-(b.bx||b.x));d=b.y+(b.y-(b.by||b.y));a=["C",c,d][E](a.slice(1));break;case "T":b.qx=b.x+(b.x-(b.qx||b.x));b.qy=b.y+(b.y-(b.qy||b.y));a=["C"][E](fb(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case "Q":b.qx=a[1];b.qy=a[2];a=["C"][E](fb(b.x,b.y,a[1],a[2],a[3],a[4]));break;case "L":a=["C"][E](Pa(b.x,b.y,a[1],a[2]));break;case "H":a=["C"][E](Pa(b.x,b.y,a[1],b.y));break;case "V":a=["C"][E](Pa(b.x,b.y,b.x,a[1]));break;case "Z":a=["C"][E](Pa(b.x,b.y,b.X,b.Y))}return a},k=function(a,b){if(7< +a[b].length){a[b].shift();for(var c=a[b];c.length;)a.splice(b++,0,["C"][E](c.splice(0,6)));a.splice(b,1);l=P(d.length,e&&e.length||0)}},m=function(a,b,c,f,g){a&&b&&"M"==a[g][0]&&"M"!=b[g][0]&&(b.splice(g,0,["M",f.x,f.y]),c.bx=0,c.by=0,c.x=a[g][1],c.y=a[g][2],l=P(d.length,e&&e.length||0))},q=0,l=P(d.length,e&&e.length||0);for(;qa;a++)for(c=0;3>c;c++){for(d=e=0;3>d;d++)e+=k[a][d]*b[d][c];h[a][c]=e}this.a=h[0][0];this.b=h[1][0];this.c=h[0][1];this.d=h[1][1];this.e=h[0][2];this.f=h[1][2]};a.invert=function(){var a=this.a*this.d-this.b*this.c;return new f(this.d/a,-this.b/a,-this.c/ +a,this.a/a,(this.c*this.f-this.d*this.e)/a,(this.b*this.e-this.a*this.f)/a)};a.clone=function(){return new f(this.a,this.b,this.c,this.d,this.e,this.f)};a.translate=function(a,b){this.add(1,0,0,1,a,b)};a.scale=function(a,b,c,d){null==b&&(b=a);(c||d)&&this.add(1,0,0,1,c,d);this.add(a,0,0,b,0,0);(c||d)&&this.add(1,0,0,1,-c,-d)};a.rotate=function(a,b,c){a=k.rad(a);b=b||0;c=c||0;var d=+M.cos(a).toFixed(9);a=+M.sin(a).toFixed(9);this.add(d,a,-a,d,b,c);this.add(1,0,0,1,-b,-c)};a.x=function(a,b){return a* +this.a+b*this.c+this.e};a.y=function(a,b){return a*this.b+b*this.d+this.f};a.get=function(a){return+this[L.fromCharCode(97+a)].toFixed(4)};a.toString=function(){return k.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()};a.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+ +", Dy="+this.get(5)+", sizingmethod='auto expand')"};a.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]};a.split=function(){var a={};a.dx=this.e;a.dy=this.f;var d=[[this.a,this.c],[this.b,this.d]];a.scalex=M.sqrt(c(d[0]));b(d[0]);a.shear=d[0][0]*d[1][0]+d[0][1]*d[1][1];d[1]=[d[1][0]-d[0][0]*a.shear,d[1][1]-d[0][1]*a.shear];a.scaley=M.sqrt(c(d[1]));b(d[1]);a.shear/=a.scaley;var e=-d[0][1],d=d[1][1];0>d?(a.rotate=k.deg(M.acos(d)),0>e&&(a.rotate=360-a.rotate)):a.rotate=k.deg(M.asin(e)); +a.isSimple=!+a.shear.toFixed(9)&&(a.scalex.toFixed(9)==a.scaley.toFixed(9)||!a.rotate);a.isSuperSimple=!+a.shear.toFixed(9)&&a.scalex.toFixed(9)==a.scaley.toFixed(9)&&!a.rotate;a.noRotation=!+a.shear.toFixed(9)&&!a.rotate;return a};a.toTransformString=function(a){a=a||this[F]();return a.isSimple?(a.scalex=+a.scalex.toFixed(4),a.scaley=+a.scaley.toFixed(4),a.rotate=+a.rotate.toFixed(4),(a.dx||a.dy?"t"+[a.dx,a.dy]:"")+(1!=a.scalex||1!=a.scaley?"s"+[a.scalex,a.scaley,0,0]:"")+(a.rotate?"r"+[a.rotate, +0,0]:"")):"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}})(f.prototype);var gb=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);"Apple Computer, Inc."==navigator.vendor&&(gb&&4>gb[1]||"iP"==navigator.platform.slice(0,2))||"Google Inc."==navigator.vendor&&gb&&8>gb[1]?I.safari=function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){a.remove()})}:I.safari=ma;for(var Kb=function(){this.returnValue= +!1},Mb=function(){return this.originalEvent.preventDefault()},Fb=function(){this.cancelBubble=!0},Nb=function(){return this.originalEvent.stopPropagation()},Bb=function(){if(y.doc.addEventListener)return function(a,b,c,d){var e=G&&S[b]?S[b]:b,f=function(e){var f=e.clientX+(y.doc.documentElement.scrollLeft||y.doc.body.scrollLeft),g=e.clientY+(y.doc.documentElement.scrollTop||y.doc.body.scrollTop);if(G&&S[B](b))for(var h=0,k=e.targetTouches&&e.targetTouches.length;hd){if(b&&!l.start){f=xb(f,g,h[1],h[2],h[3],h[4],h[5], +h[6],d-v);q+=["C"+f.start.x,f.start.y,f.m.x,f.m.y,f.x,f.y];if(e)return q;l.start=q;q=["M"+f.x,f.y+"C"+f.n.x,f.n.y,f.end.x,f.end.y,h[5],h[6]].join();v+=m;f=+h[5];g=+h[6];continue}if(!a&&!b)return f=xb(f,g,h[1],h[2],h[3],h[4],h[5],h[6],d-v),{x:f.x,y:f.y,alpha:f.alpha}}v+=m;f=+h[5];g=+h[6]}q+=h.shift()+h}l.end=q;f=a?v:b?l:k.findDotsAtSegment(f,g,h[0],h[1],h[2],h[3],h[4],h[5],1);f.alpha&&(f={x:f.x,y:f.y,alpha:f.alpha});return f}},jb=yb(1),Gb=yb(),pb=yb(0,1);k.getTotalLength=jb;k.getPointAtLength=Gb;k.getSubpath= +function(a,b,c){if(1E-6>this.getTotalLength(a)-c)return pb(a,b).end;a=pb(a,c,1);return b?pb(a,b).end:a};ia.getTotalLength=function(){if("path"==this.type)return this.node.getTotalLength?this.node.getTotalLength():jb(this.attrs.path)};ia.getPointAtLength=function(a){if("path"==this.type)return Gb(this.attrs.path,a)};ia.getSubpath=function(a,b){if("path"==this.type)return k.getSubpath(this.attrs.path,a,b)};var Ga=k.easing_formulas={linear:function(a){return a},"<":function(a){return H(a,1.7)},">":function(a){return H(a, +.48)},"<>":function(a){var b=.48-a/1.04,c=M.sqrt(.1734+b*b);a=c-b;a=H(D(a),1/3)*(0>a?-1:1);b=-c-b;b=H(D(b),1/3)*(0>b?-1:1);a=a+b+.5;return 3*(1-a)*a*a+a*a*a},backIn:function(a){return a*a*(2.70158*a-1.70158)},backOut:function(a){--a;return a*a*(2.70158*a+1.70158)+1},elastic:function(a){return a==!!a?a:H(2,-10*a)*M.sin(2*(a-.075)*R/.3)+1},bounce:function(a){var b;a<1/2.75?b=7.5625*a*a:a<2/2.75?(a-=1.5/2.75,b=7.5625*a*a+.75):a<2.5/2.75?(a-=2.25/2.75,b=7.5625*a*a+.9375):(a-=2.625/2.75,b=7.5625*a*a+.984375); +return b}};Ga.easeIn=Ga["ease-in"]=Ga["<"];Ga.easeOut=Ga["ease-out"]=Ga[">"];Ga.easeInOut=Ga["ease-in-out"]=Ga["<>"];Ga["back-in"]=Ga.backIn;Ga["back-out"]=Ga.backOut;var ca=[],ja=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,16)},Ta=function(){for(var a=+new Date,b=0;bd))if(da?0:a};ia.animateWith=function(a,b,c,d,e,f){if(this.removed)return f&&f.call(this),this;c=c instanceof n?c:k.animation(c,d,e,f);h(c,this,c.percents[0],null,this.attr());c=0;for(d=ca.length;ca?P(this.length+a,0):a;b=P(0,N(this.length-a,b));var d=[],e=[],f=[],g;for(g=2;gy[2]&&(y[0]=-y[2],y[2]=0);0>y[3]&&(y[1]=-y[3],y[3]=0)}var x=c._parseDots(e);if(!x)return null;k=k.replace(/[\(\)\s,\xb0#]/g,"_");d.gradient&&k!=d.gradient.id&&(t.defs.removeChild(d.gradient),delete d.gradient);if(!d.gradient)for(w=l(g+"Gradient",{id:k}),d.gradient=w,l(w,"radial"== +g?{fx:m,fy:q}:{x1:y[0],y1:y[1],x2:y[2],y2:y[3],gradientTransform:d.matrix.invert()}),t.defs.appendChild(w),t=0,y=x.length;tc*d?-1:1);if(g){var w=v(g,e,f);e=w.dx;f=w.dy}0>c&&(t+="x");0>d&&(t+=" y")&&(l=-1);q.flip=t;b.coordorigin=e*-n+" "+f*-r;if(m||h.fillsize)e=(e=b.getElementsByTagName("fill"))&&e[0],b.removeChild(e),m&&(w=v(g,k.x(m[0],m[1]),k.y(m[0],m[1])),e.position=w.dx*l+" "+w.dy*l),h.fillsize&&(e.size=h.fillsize[0]*a(c)+" "+h.fillsize[1]*a(d)),b.appendChild(e);q.visibility="visible"}};c.toString=function(){return"Your browser doesn\u2019t support SVG. Falling down to VML.\nYou are running Rapha\u00ebl "+ +this.version};var y=function(a,b,c){b=h(b).toLowerCase().split("-");c=c?"end":"start";for(var d=b.length,e="classic",f="medium",g="medium";d--;)switch(b[d]){case "block":case "classic":case "oval":case "diamond":case "open":case "none":e=b[d];break;case "wide":case "narrow":g=b[d];break;case "long":case "short":f=b[d]}a=a.node.getElementsByTagName("stroke")[0];a[c+"arrow"]=e;a[c+"arrowlength"]=f;a[c+"arrowwidth"]=g},z=function(a,e){a.attrs=a.attrs||{};var g=a.node,k=a.attrs,l=g.style,v=t[a.type]&& +(e.x!=k.x||e.y!=k.y||e.width!=k.width||e.height!=k.height||e.cx!=k.cx||e.cy!=k.cy||e.rx!=k.rx||e.ry!=k.ry||e.r!=k.r),r=q[a.type]&&(k.cx!=e.cx||k.cy!=e.cy||k.r!=e.r||k.rx!=e.rx||k.ry!=e.ry),x;for(x in e)e.hasOwnProperty(x)&&(k[x]=e[x]);v&&(k.path=c._getPath[a.type](a),a._.dirty=1);e.href&&(g.href=e.href);e.title&&(g.title=e.title);e.target&&(g.target=e.target);e.cursor&&(l.cursor=e.cursor);"blur"in e&&a.blur(e.blur);if(e.path&&"path"==a.type||v)g.path=m(~h(k.path).toLowerCase().indexOf("r")?c._pathToAbsolute(k.path): +k.path),"image"==a.type&&(a._.fillpos=[k.x,k.y],a._.fillsize=[k.width,k.height],B(a,1,1,0,0,0));"transform"in e&&a.transform(e.transform);r&&(l=+k.cx,v=+k.cy,r=+k.rx||+k.r||0,x=+k.ry||+k.r||0,g.path=c.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",p(21600*(l-r)),p(21600*(v-x)),p(21600*(l+r)),p(21600*(v+x)),p(21600*l)));"clip-rect"in e&&(l=h(e["clip-rect"]).split(d),4==l.length&&(l[2]=+l[2]+ +l[0],l[3]=+l[3]+ +l[1],v=g.clipRect||c._g.doc.createElement("div"),r=v.style,r.clip=c.format("rect({1}px {2}px {3}px {0}px)", +l),g.clipRect||(r.position="absolute",r.top=0,r.left=0,r.width=a.paper.width+"px",r.height=a.paper.height+"px",g.parentNode.insertBefore(v,g),v.appendChild(g),g.clipRect=v)),e["clip-rect"]||g.clipRect&&(g.clipRect.style.clip="auto"));a.textpath&&(l=a.textpath.style,e.font&&(l.font=e.font),e["font-family"]&&(l.fontFamily='"'+e["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,"")+'"'),e["font-size"]&&(l.fontSize=e["font-size"]),e["font-weight"]&&(l.fontWeight=e["font-weight"]),e["font-style"]&& +(l.fontStyle=e["font-style"]));"arrow-start"in e&&y(a,e["arrow-start"]);"arrow-end"in e&&y(a,e["arrow-end"],1);if(null!=e.opacity||null!=e["stroke-width"]||null!=e.fill||null!=e.src||null!=e.stroke||null!=e["stroke-width"]||null!=e["stroke-opacity"]||null!=e["fill-opacity"]||null!=e["stroke-dasharray"]||null!=e["stroke-miterlimit"]||null!=e["stroke-linejoin"]||null!=e["stroke-linecap"]){l=(l=g.getElementsByTagName("fill"))&&l[0];!l&&(l=A("fill"));"image"==a.type&&e.src&&(l.src=e.src);e.fill&&(l.on= +!0);if(null==l.on||"none"==e.fill||null===e.fill)l.on=!1;l.on&&e.fill&&((v=h(e.fill).match(c._ISURL))?(l.parentNode==g&&g.removeChild(l),l.rotate=!0,l.src=v[1],l.type="tile",r=a.getBBox(1),l.position=r.x+" "+r.y,a._.fillpos=[r.x,r.y],c._preload(v[1],function(){a._.fillsize=[this.offsetWidth,this.offsetHeight]})):(l.color=c.getRGB(e.fill).hex,l.src="",l.type="solid",c.getRGB(e.fill).error&&(a.type in{circle:1,ellipse:1}||"r"!=h(e.fill).charAt())&&w(a,e.fill,l)&&(k.fill="none",k.gradient=e.fill,l.rotate= +!1)));if("fill-opacity"in e||"opacity"in e)r=((+k["fill-opacity"]+1||2)-1)*((+k.opacity+1||2)-1)*((+c.getRGB(e.fill).o+1||2)-1),r=b(f(r,0),1),l.opacity=r,l.src&&(l.color="none");g.appendChild(l);l=g.getElementsByTagName("stroke")&&g.getElementsByTagName("stroke")[0];v=!1;!l&&(v=l=A("stroke"));if(e.stroke&&"none"!=e.stroke||e["stroke-width"]||null!=e["stroke-opacity"]||e["stroke-dasharray"]||e["stroke-miterlimit"]||e["stroke-linejoin"]||e["stroke-linecap"])l.on=!0;"none"!=e.stroke&&null!==e.stroke&& +null!=l.on&&0!=e.stroke&&0!=e["stroke-width"]||(l.on=!1);r=c.getRGB(e.stroke);l.on&&e.stroke&&(l.color=r.hex);r=((+k["stroke-opacity"]+1||2)-1)*((+k.opacity+1||2)-1)*((+r.o+1||2)-1);x=.75*(n(e["stroke-width"])||1);r=b(f(r,0),1);null==e["stroke-width"]&&(x=k["stroke-width"]);e["stroke-width"]&&(l.weight=x);x&&1>x&&(r*=x)&&(l.weight=1);l.opacity=r;e["stroke-linejoin"]&&(l.joinstyle=e["stroke-linejoin"]||"miter");l.miterlimit=e["stroke-miterlimit"]||8;e["stroke-linecap"]&&(l.endcap="butt"==e["stroke-linecap"]? +"flat":"square"==e["stroke-linecap"]?"square":"round");e["stroke-dasharray"]&&(r={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"},l.dashstyle=r.hasOwnProperty(e["stroke-dasharray"])?r[e["stroke-dasharray"]]:"");v&&g.appendChild(l)}if("text"==a.type){a.paper.canvas.style.display="";g=a.paper.span;v=k.font&&k.font.match(/\d+(?:\.\d*)?(?=px)/);l=g.style;k.font&&(l.font=k.font); +k["font-family"]&&(l.fontFamily=k["font-family"]);k["font-weight"]&&(l.fontWeight=k["font-weight"]);k["font-style"]&&(l.fontStyle=k["font-style"]);v=n(k["font-size"]||v&&v[0])||10;l.fontSize=100*v+"px";a.textpath.string&&(g.innerHTML=h(a.textpath.string).replace(/"));g=g.getBoundingClientRect();a.W=k.w=(g.right-g.left)/100;a.H=k.h=(g.bottom-g.top)/100;a.X=k.x;a.Y=k.y+a.H/2;("x"in e||"y"in e)&&(a.path.v=c.format("m{0},{1}l{2},{1}",p(21600*k.x), +p(21600*k.y),p(21600*k.x)+1));g="x y text font font-family font-weight font-style font-size".split(" ");l=0;for(v=g.length;l')}}catch(c){A=function(a){return b.createElement("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}};c._engine.initWin(c._g.win);c._engine.create=function(){var a=c._getContainer.apply(0,arguments),b=a.container,d=a.height,e=a.width,f=a.x,a=a.y;if(!b)throw Error("VML container not found."); +var g=new c._Paper,h=g.canvas=c._g.doc.createElement("div"),k=h.style,f=f||0,a=a||0,e=e||512,d=d||342;g.width=e;g.height=d;e==+e&&(e+="px");d==+d&&(d+="px");g.coordsize="21600000 21600000";g.coordorigin="0 0";g.span=c._g.doc.createElement("span");g.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;";h.appendChild(g.span);k.cssText=c.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden", +e,d);1==b?(c._g.doc.body.appendChild(h),k.left=f+"px",k.top=a+"px",k.position="absolute"):b.firstChild?b.insertBefore(h,b.firstChild):b.appendChild(h);g.renderfix=function(){};return g};c.prototype.clear=function(){c.eve("raphael.clear",this);this.canvas.innerHTML="";this.span=c._g.doc.createElement("span");this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";this.canvas.appendChild(this.span);this.bottom=this.top=null};c.prototype.remove= +function(){c.eve("raphael.remove",this);this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null;return!0};var E=c.st,G;for(G in I)I.hasOwnProperty(G)&&!E.hasOwnProperty(G)&&(E[G]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(G))}(window.Raphael); +window.polyjs=function(c){if(!c){var h={};(function(){var c=[].indexOf||function(c){for(var h=0,f=this.length;he[0].val||b[0].val===e[0].val&& +("lt"===b[0].key||"gt"===e[0].key)))throw"No intersection found!";return c};d={};for(a in g)e=g[a],d[a]=a in h?"in"in g[a]?b(a):f(a):e;for(a in h)e=h[a],a in d||(d[a]=e);return d};h.linear=function(c,n,f,b){if(_.isFinite(c)&&_.isFinite(n)&&_.isFinite(f)&&_.isFinite(b))return function(a){return(b-n)/(f-c)*(a-c)+n};throw h.error.input("Attempting to create linear function from infinity");};h.median=function(c,h){var f;null==h&&(h=!1);h||(c=_.sortBy(c,function(b){return b}));f=c.length/2;return 0!== +f%1?c[Math.floor(f)]:(c[f-1]+c[f])/2};h.counter=function(){var c;c=0;return function(){return c++}};h.sample=function(c,h){return _.pick(c,_.shuffle(_.keys(c)).splice(0,h))};h.compare=function(c,h){var f,b,a,d,e,n,r,l,k;k=_.sortBy(c,function(a){return a});l=_.sortBy(h,function(a){return a});b=[];a=[];f=[];for(r=e=0;r=k.length)f.push(d),e+=1;else if(e>=l.length)b.push(n),r+=1;else if(nd)f.push(d),e+=1;else if(n===d)a.push(n),r+= +1,e+=1;else throw DataError("Unknown data encounted");return{deleted:b,kept:a,added:f}};h.flatten=function(c){var n,f,b,a;n=[];if(null!=c)if(_.isObject(c))if("scalefn"===c.t)"novalue"!==c.f&&n.push(c.v);else for(f in c)b=c[f],n=n.concat(h.flatten(b));else if(_.isArray(c))for(f=0,a=c.length;fc?6*c:5*(c-10)+60};h.sortArrays=function(c,h){var f;f=_.zip.apply(_,h);f.sort(function(b,a){return c(b[0],a[0])});return _.zip.apply(_,f)};h.isDefined=function(c){return _.isObject(c)?"scalefn"===c.t&&"novalue"!==c.f?h.isDefined(c.v):!0:void 0!==c&&null!==c&&!(_.isNumber(c)&&_.isNaN(c))};h.isURI=function(c){var h;return _.isString(c)?(h=/^(https?:\/\/)?((([a-z\d]([a-z\d-]*[a-z\d])*)\.)+[a-z]{2,}|((\d{1,3}\.){3}\d{1,3}))(\:\d+)?(\/[-a-z\d%_.~+]*)*(\?[;&a-z\d%_.~+=-]*)?(\#[-a-z\d_]*)?$/i, +h.test(c)):!1}}).call(this);(function(){h["const"]={aes:"x y color size opacity shape id text".split(" "),pivot_aes:["row","column","value"],noDomain:["id","text","tooltip"],noLegend:["x","y","id","text","tooltip"],trans:{bin:["key","binwidth"],lag:["key","lag"]},stat:{count:["key"],unique:["key"],sum:["key"],mean:["key"],box:["key"],median:["key"]},timerange:"second minute hour day week month twomonth quarter sixmonth year twoyear fiveyear decade".split(" "),approxTimeInSeconds:{second:1,minute:60, +hour:3600,day:86400,week:604800,month:2592E3,twomonth:5184E3,quarter:10368E3,sixmonth:15552E3,year:31536E3,twoyear:63072E3,fiveyear:157766400},metas:{sort:null,stat:null,limit:null,asc:!1},scaleFns:{novalue:function(){return{v:null,f:"novalue",t:"scalefn"}},max:function(c){return{v:c,f:"max",t:"scalefn"}},min:function(c){return{v:c,f:"min",t:"scalefn"}},upper:function(c,g,h){return{v:c,n:g,m:h,f:"upper",t:"scalefn"}},lower:function(c,g,h){return{v:c,n:g,m:h,f:"lower",t:"scalefn"}},middle:function(c){return{v:c, +f:"middle",t:"scalefn"}},jitter:function(c){return{v:c,f:"jitter",t:"scalefn"}},identity:function(c){return{v:c,f:"identity",t:"scalefn"}}},epsilon:Math.pow(10,-7),defaults:{x:{v:null,f:"novalue",t:"scalefn"},y:{v:null,f:"novalue",t:"scalefn"},color:"steelblue",size:2,opacity:.7}}}).call(this);(function(){var c,g,p,f,b,a,d,e,x,r={}.hasOwnProperty,l=function(a,b){function c(){this.constructor=a}for(var d in b)r.call(b,d)&&(a[d]=b[d]);c.prototype=b.prototype;a.prototype=new c;a.__super__=b.prototype; +return a};g=function(a){function b(a){this.message=a;this.name="DefinitionError"}l(b,a);return b}(Error);p=function(a){function b(a){this.message=a;this.name="DependencyError"}l(b,a);return b}(Error);b=function(a){function b(a){this.message=a;this.name="ModeError"}l(b,a);return b}(Error);c=function(a){function b(a){this.message=a;this.name="DataError"}l(b,a);return b}(Error);x=function(a){function b(a){this.message=a;this.name="UnknownInput"}l(b,a);return b}(Error);a=function(a){function b(a){this.message= +a;this.name="ModeError"}l(b,a);return b}(Error);d=function(a){function b(a){this.message=a;this.name="ScaleError"}l(b,a);return b}(Error);f=function(a){function b(a){this.message=a;this.name="MissingData"}l(b,a);return b}(Error);e=function(a){function b(a){this.message=a;this.name="Type"}l(b,a);return b}(Error);h.error=function(a){return Error(a)};h.error.data=function(a){return new c(a)};h.error.depn=function(a){return new p(a)};h.error.defn=function(a){return new g(a)};h.error.mode=function(a){return new b(a)}; +h.error.impl=function(b){return new a(b)};h.error.input=function(a){return new x(a)};h.error.scale=function(a){return new d(a)};h.error.missing=function(a){return new f(a)};h.error.type=function(a){return new e(a)}}).call(this);(function(){var c,g,p,f,b={}.hasOwnProperty,a=function(a,c){function d(){this.constructor=a}for(var f in c)b.call(c,f)&&(a[f]=c[f]);d.prototype=c.prototype;a.prototype=new d;a.__super__=c.prototype;return a},d=function(a,b){return function(){return a.apply(b,arguments)}};f= +function(){function a(){}a.prototype.render=function(){return h.error.impl()};a.prototype.dispose=function(){return h.error.impl()};return a}();g=function(b){function c(){return c.__super__.constructor.apply(this,arguments)}a(c,b);c.prototype.getDimension=function(){throw h.error.impl();};return c}(f);p=function(b){function c(){return c.__super__.constructor.apply(this,arguments)}a(c,b);c.prototype.getDimension=function(){throw h.error.impl();};c.prototype.make=function(){throw h.error.impl();};return c}(f); +c=function(b){function c(a){this.type=null!=a?a:null;this.dispose=d(this.dispose,this);this.geoms={};this.pts={}}a(c,b);c.prototype.set=function(a){return this.geoms=a};c.prototype.render=function(a){var b,c,d,e,f,g,n;f={};d=h.compare(_.keys(this.pts),_.keys(this.geoms));c=d.deleted;e=d.kept;b=d.added;g=0;for(n=c.length;gb.timeStamp-c.lastStart)return h.touchToMouse("click",c)}else if("touchcancel"===p)return window.clearTimeout(c.pressTimer),h.touchToMouse("mouseout",c),h.touchToMouse("mouseup",c,300)}}).call(this); +(function(){var c,g,p;h.format=function(c,b){switch(c){case "cat":return h.format.identity;case "num":return h.format.number(b);case "date":return h.format.date(b);case "none":return h.format.identity}};h.format.identity=function(c){return c};c={0:"",3:"k",6:"m",9:"b",12:"t"};p=function(f,b){return _.isUndefined(c[b])?f+"e"+(0c))+ +d[0].slice(b).replace(/(\d{3})/g,",$1"),a=d.join("."));return a};h.format.getExp=function(c){return Math.floor(Math.log(Math.abs(0===c?1:c))/Math.LN10)};h.format.number=function(c){return function(b){var a,d;d=0;a=null!=c?c:h.format.getExp(b);null==c||2!==a&&5!==a&&8!==a&&11!==a?-1===a?(a=0,d=null!=c?1:2):-2===a?(a=0,d=null!=c?2:3):1===a||2===a?a=0:3a?a=3:6a?a=6:9a?a=9:12a?a=12:d=null!=c?0:1:(a+=1,d=1);b=Math.round(b/Math.pow(10,a-d));b/=Math.pow(10,d);b=b.toFixed(d);return p(g(b), +a)}};h.format.date=function(c){return-1!==_.indexOf(h["const"].timerange,c)?"second"===c?function(b){return moment.unix(b).format("h:mm:ss a")}:"minute"===c?function(b){return moment.unix(b).format("h:mm a")}:"hour"===c?function(b){return moment.unix(b).format("MMM D h a")}:"day"===c||"week"===c?function(b){return moment.unix(b).format("MMM D")}:"month"===c||"twomonth"===c||"quarter"===c||"sixmonth"===c?function(b){return moment.unix(b).format("YYYY/MM")}:function(b){return moment.unix(b).format("YYYY")}: +function(b){return moment.unix(b).format(c)}};h.format._number_instance=h.format.number();h.format.value=function(c){return _.isNumber(c)?h.format._number_instance(c):c}}).call(this);(function(){var c,g;h.type={};h.type.impute=function(c){var f,b,a,d,e,g;e=b=d=f=0;for(g=c.length;e.95*b?"num":f>.95*b?"date":"cat"};h.type.coerce=function(c,f){if(_.isUndefined(c)|| +_.isNull(c)||"cat"===f.type)return c;if("num"===f.type)return isNaN(c)?+(""+c).replace(/\$|\,/g,""):+c;if("date"===f.type)return f.format?"unix"===f.format?moment.unix(c).unix():moment(c,f.format).unix():isFinite(c)&&c>=Math.pow(10,9)?moment.unix(c).unix():moment(c).unix()};h.type.compare=function(h){switch(h){case "cat":return c;default:return g}};c=function(c,f){var b,a;if(c===f)return 0;_.isString(c)||(c=""+c);_.isString(f)||(f=""+f);b=c.toLowerCase();a=f.toLowerCase();return b===a?cf? +1:0:ba?1:0};g=function(c,f){return c===f?0:null===c?1:null===f?-1:cf?1:0}}).call(this);(function(){h.spec={};h.spec.toStrictMode=function(c){var g,p,f,b,a,d,e,x;c=_.clone(c);null==c.layers&&c.layer&&(c.layers=[c.layer]);null==c.guides&&c.guide&&(c.guides=c.guide);null==c.guides&&(c.guides={});if(c.layers)for(d=c.layers,g=p=0,b=d.length;parguments.length?(h=g,g=null):g&&f.overrideMimeType&&f.overrideMimeType(g);f.open("GET",c,!0);g&&f.setRequestHeader("Accept",g);f.onreadystatechange=function(){var b;if(4===f.readyState)return b=f.status,b=!b&&f.response||200<= +b&&300>b||304===b?f:null,h(b)};return f.send(null)};h.text=function(c,g,p){3>arguments.length&&(p=g,g=null);return h.xhr(c,g,function(c){return p(c&&c.responseText)})};h.json=function(c,g){return h.text(c,"application/json",function(c){return g(c?JSON.parse(c):null)})};h.dsv=function(c,g){var p,f,b,a,d,e,x;x=RegExp("\r\n|["+c+"\r\n]","g");e=RegExp('["'+c+"\n]");p=c.charCodeAt(0);b=function(b){return b.map(a).join(c)};a=function(a){var b;return null!=(b=e.test(a))?b:'"'+a.replace(/\"/g,'""')+{'"':a}}; +d=null;f=function(a,b){return h.text(a,g,function(a){return b(a&&f.parse(a))})};f.parse=function(a){return f.parseRows(a,function(a,b){var c,e,f;if(b){f={};c=-1;for(e=d.length;++c=a.length)return c;if(f)return f=!1,d;g=x.lastIndex;if(34===a.charCodeAt(g)){for(e=g;e++"};a.prototype.contents=function(){return[this.tag]};return a}();r=function(a){function b(a){this.name=a;this.name=P(this.name);b.__super__.constructor.call(this,l.Tag.symbol)}R(b,a);b.prototype.contents= +function(){return b.__super__.contents.call(this).concat([this.name])};return b}(l);d=function(a){function b(a){this.val=a;this.val=P(this.val);b.__super__.constructor.call(this,l.Tag.literal)}R(b,a);b.prototype.contents=function(){return b.__super__.contents.call(this).concat([this.val])};return b}(l);f=function(){var a,b,c,d;c=[l.Tag.lparen,l.Tag.rparen,l.Tag.comma];d=[];a=0;for(b=c.length;ac?1:0}:h.type.compare(a.type):function(a){return a}};p=function(){return function(a){this.type=a.type;this.min=a.min;this.max=a.max;this.bw=a.bw}}();g=function(){return function(a){this.type=a.type;this.min=a.min;this.max=a.max;this.bw=a.bw}}();c=function(){return function(a){this.type=a.type;this.levels=a.levels;this.sorted=a.sorted}}();d=function(a){"cat"!==a.type&&a.max===a.min&&(a.bw? +(a.max+=a.bw,a.min-=a.bw):0===a.max?a.max+=1:(a.max*=1.1,a.min/=1.1));switch(a.type){case "num":return new p(a);case "date":return new g(a);case "cat":return new c(a)}};h.domain.single=function(a,b,c){var e,f,g,n,r,p,w,x,I,A,E,G,C,L,F,U,S,O,M;if(0===a.length)throw h.error.input("Dataset is none?");f=function(a){return null!=c?c[a]:null};switch(b.type){case "num":return e=null!=(n=f("bw"))?n:b.bw,1= +b.min&&a<=b.max}):a.ticks:(e=null!=(t=a.numticks)?t:5,e=f[c](b,e),t=e.ticks,k=e.step);e=a.labels?function(b){var c;return null!=(c=a.labels[b])?c:b}:a.formatter?a.formatter:h.format(c.split("-")[0],k);k={};c=p(c,e);if(t)for(g=q=0,m=t.length-1;0<=m?q<=m:q>=m;g=0<=m?++q:--q)l=0===g?null:t[g-1],n=g===t.length-1?null:t[g+1],g=t[g],n=c(g,l,n),k[n.value]=n;return{ticks:k,ticksFormatter:e}};c=function(){return function(b){this.location=b.location;this.value=b.value;this.index=b.index;this.evtData=b.evtData}}(); +p=function(b,a){var d;d=0;return function(e,f,g){var h;"cat"===b?h={"in":[e]}:(h={},null!=f&&(h.ge=f),null!=g&&(h.le=g));return new c({location:e,value:a(e),index:d++,evtData:h})}};g=function(b,a){var c,e;e=Math.pow(10,Math.floor(Math.log(b/a)/Math.LN10));c=a/b*e;.15>c?e*=10:.35>=c?e*=5:.75>=c&&(e*=2);return e};f={none:function(){return{}},cat:function(b,a){var c,e,f,g,h,k,n;f=Math.max(1,Math.round(b.levels.length/a));g=[];n=b.levels;c=h=0;for(k=n.length;h1.4*a;)c*=2;h=f}else c=g(e-f,a),h=Math.ceil(f/c)*c;for(f=[];h<=e;)f.push(h),h+=c;return{ticks:f,step:Math.floor(Math.log(c)/Math.LN10)}},"num-log":function(b,a){var c,e,f,n,l,k,t,q,m;q=[];k=b.min;l=b.max;e=function(a){return Math.log(a)/Math.LN10};c=function(a){return Math.exp(a*Math.LN10)};n=Math.max(e(k),0);f=e(l);t=g(f-n,a);for(m=Math.ceil(n/t)*t;m=m%1)){if(m%1>h["const"].epsilon){if(n= +Math.floor(m)+e(m%1*10),0===n%1){m+=t;continue}}else n=m;n=c(n);nl||q.push(n)}m+=t}return{ticks:q}},date:function(b,a){var c,e,f,g,l,k,n;g=b.min;f=b.max;if(c=b.bw)for(l=c;"decade"!==l&&(f-g)/h["const"].approxTimeInSeconds[l]>1.4*a;)l=h["const"].timerange[_.indexOf(h["const"].timerange,l)+1];else for(e in c=(f-g)/a,l="decade",n=h["const"].approxTimeInSeconds,n)if(k=n[e],c<1.4*k){l=e;break}k=[];e=moment.unix(g).startOf(l);c=function(){switch(l){case "twomonth":return["months",2];case "quarter":return["months", +4];case "sixmonth":return["months",6];case "twoyear":return["years",2];case "fiveyear":return["years",5];case "decade":return["years",10];default:return[l+"s",1]}}();for(e.unix()l.call(this.validPositions,g))throw h.error.defn("X-axis position can't be "+this.position+".");this.titletext=e("title",a);this.renderTick=e("renderTick",this.renderTickDefault);this.renderGrid=e("renderGrid",this.renderGridDefault);this.renderLabel=e("renderLabel",this.renderLabelDefault);this.renderLine=e("renderLine",this.renderLineDefault);this.gridColor=e("gridColor",this.gridColor);c=h.tick.make(c,d,f);this.ticks=c.ticks;this.ticksFormatter=c.ticksFormatter;this.maxwidth=_.max(_.map(this.ticks, +function(a){return h.strSize(a.value)}));this.maxwidth=Math.max(this.maxwidth,0)}x(b,a);b.prototype.renderTickDefault=!0;b.prototype.renderGridDefault=!0;b.prototype.renderLabelDefault=!0;b.prototype.renderLineDefault=!0;b.prototype.calculate=function(a,b,c){var d,e,f,g,h,k,l;this.coord=b;if("none"===this.position)return{};null==c&&(c={});a.centerx=a.left+a.width/2;a.centery=a.top+a.height/2;a.radius=Math.min(a.width,a.height)/2-10;b={};this.renderLine&&(b.line={marks:{0:this._renderline(a)}});g= +this.ticks;for(d in g)f=g[d],e={},this.renderTick&&(null!=(h=c.renderTick)?h:1)&&(e.tick=this._makeTick(a,f)),this.renderLabel&&(null!=(k=c.renderLabel)?k:1)&&(e.text=this._makeLabel(a,f)),this.renderGrid&&(null!=(l=c.renderGrid)?l:1)&&(e.grid=this._makeGrid(a,f)),b[d]={marks:e};return b};b.prototype._makeTick=function(a){if(!a)throw h.error.impl();a.type="path";a.stroke=d.identity("#666");a.color=d.identity("#666");return a};b.prototype._makeLabel=function(a){if(!a)throw h.error.impl();a.type="text"; +a.stroke=d.identity("#666");a.color=d.identity("#666");return a};b.prototype._makeGrid=function(a){if(!a)throw h.error.impl();a.stroke=null!=this.gridColor?this.gridColor:"#EFEFEF";return a};return b}(h.Guide);b=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}x(b,a);b.prototype.type="x";b.prototype.renderGridDefault=!1;b.prototype.defaultPosition="bottom";b.prototype.validPositions=["top","bottom","none"];b.prototype._renderline=function(a){var b,c;c="top"===this.position? +d.identity(a.top):d.identity(a.bottom);b=d.identity(a.left);a=d.identity(a.left+a.width);return{type:"path",y:[c,c],x:[b,a],stroke:d.identity("#666")}};b.prototype._makeTick=function(a,c){var e,f;"top"===this.position?(e=d.identity(a.top),f=d.identity(a.top-5)):(e=d.identity(a.bottom),f=d.identity(a.bottom+5));return b.__super__._makeTick.call(this,{x:[c.location,c.location],y:[e,f]})};b.prototype._makeLabel=function(a,c){var e;e="top"===this.position?d.identity(a.top-15):d.identity(a.bottom+15); +return b.__super__._makeLabel.call(this,{x:c.location,y:e,text:c.value,"text-anchor":"middle"})};b.prototype._makeGrid=function(a,c){var e,f;e=d.identity(a.top);f=d.identity(a.bottom);return b.__super__._makeGrid.call(this,{type:"path",x:[c.location,c.location],y:[e,f]})};b.prototype.getDimension=function(){var a;return{position:null!=(a=this.position)?a:"bottom",height:30,width:"all"}};return b}(g);a=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}x(b,a);b.prototype.type= +"y";b.prototype.renderLineDefault=!1;b.prototype.renderTickDefault=!1;b.prototype.defaultPosition="left";b.prototype.validPositions=["left","right","none"];b.prototype._renderline=function(a){var b,c;b="left"===this.position?d.identity(a.left):d.identity(a.right);c=d.identity(a.top);a=d.identity(a.top+a.height);return{type:"path",x:[b,b],y:[c,a],stroke:d.identity("#666")}};b.prototype._makeTick=function(a,c){var e,f;"left"===this.position?(e=d.identity(a.left),f=d.identity(a.left-5)):(e=d.identity(a.right), +f=d.identity(a.right+5));return b.__super__._makeTick.call(this,{x:[e,f],y:[c.location,c.location]})};b.prototype._makeLabel=function(a,c){var e;e="left"===this.position?d.identity(a.left-7):d.identity(a.right+7);return b.__super__._makeLabel.call(this,{x:e,y:c.location,text:c.value,"text-anchor":"left"===this.position?"end":"start"})};b.prototype._makeGrid=function(a,c){var e,f;e=d.identity(a.left);f=d.identity(a.right);return b.__super__._makeGrid.call(this,{type:"path",y:[c.location,c.location], +x:[e,f]})};b.prototype.getDimension=function(){var a;return{position:null!=(a=this.position)?a:"right",height:"all",width:5+this.maxwidth}};return b}(g);p=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}x(b,a);b.prototype.type="r";b.prototype.defaultPosition="left";b.prototype.validPositions=["left","right","none"];b.prototype._renderline=function(a){var b,c;b=d.identity(a.left);c=d.identity(a.top);a=d.identity(a.top+a.height/2);return{type:"path",x:[b,b],y:[c,a],stroke:d.identity("#666")}}; +b.prototype._makeTick=function(a,c){return b.__super__._makeTick.call(this,{x:[d.identity(a.left),d.identity(a.left-5)],y:[c.location,c.location]})};b.prototype._makeLabel=function(a,c){return b.__super__._makeLabel.call(this,{x:d.identity(a.left-7),y:c.location,text:c.value,"text-anchor":"end"})};b.prototype._makeGrid=function(a,c){return b.__super__._makeGrid.call(this,{type:"circle",x:d.identity(a.centerx),y:d.identity(a.centery),size:d.identity(this.coord.getScale("r")(c.location)),color:d.identity("none"), +"fill-opacity":0,"stroke-width":1})};b.prototype.getDimension=function(){return{position:"left",height:"all",width:5+this.maxwidth}};return b}(g);f=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}x(b,a);b.prototype.type="t";b.prototype.defaultPosition="out";b.prototype.validPositions=["out","none"];b.prototype._renderline=function(a){return{type:"circle",x:d.identity(a.centerx),y:d.identity(a.centery),size:d.identity(a.radius),color:d.identity("none"),stroke:d.identity("#666"), +"stroke-width":1}};b.prototype._makeTick=function(a,c){return b.__super__._makeTick.call(this,{x:[c.location,c.location],y:[d.max(0),d.max(3)]})};b.prototype._makeLabel=function(a,c){return b.__super__._makeLabel.call(this,{x:c.location,y:d.max(12),text:c.value,"text-anchor":"middle"})};b.prototype._makeGrid=function(a,c){var e,f,g,h;f=d.identity(a.centerx);h=d.identity(a.centery);e=this.coord.getScale("t")(c.location)-Math.PI/2;g=d.identity(a.centerx+a.radius*Math.cos(e));e=d.identity(a.centery+ +a.radius*Math.sin(e));return b.__super__._makeGrid.call(this,{type:"path",y:[h,e],x:[f,g]})};b.prototype.getDimension=function(){return{}};return b}(g);null==h.guide&&(h.guide={});h.guide.axis=function(c,d){if("x"===c)return new b(d);if("y"===c)return new a(d);if("r"===c)return new p(d);if("t"===c)return new f(d)};h.guide.axes=function(a){return new c(a)}}).call(this);(function(){var c,g,p,f,b,a={}.hasOwnProperty,d=function(b,c){function d(){this.constructor=b}for(var e in c)a.call(c,e)&&(b[e]=c[e]); +d.prototype=c.prototype;b.prototype=new d;b.__super__=c.prototype;return b},e=[].indexOf||function(a){for(var b=0,c=this.length;be&&(b+=f+5,f=c=0),d.width>f&&(f=d.width),c+=d.height;return b+f};b.prototype._topbottomHeight= +function(a){var b,c,d,e,f;c=10;f=this.legends;d=0;for(e=f.length;dg&&(n+=h+5,h=r=0),l.width>h&&(h=l.width),p={x:n+e,y:r+d},f.render(b(p,!1,!1),h),L.push(r+=l.height);return L};b.prototype._renderH=function(a,b,c){var d,e,f,g,h,l;d=a.paddingLeft;e="top"===this.position?a.paddingTop:a.height-a.guideBottom-a.paddingBottom; +e={x:d,y:"top"===this.position?c.top+e:c.bottom+e+10};h=this.legends;l=[];f=0;for(g=h.length;fthis.domain.min)throw h.error.input("Log scale cannot handle zero or negative input.");a=Math.log;c=h.linear(a(this.domain.min),this.range.min,a(this.domain.max),this.range.max); +this.f=this._numWrapper(this.domain,function(b){return c(a(b))});d=h.linear(this.range.min,a(this.domain.min),this.range.max,a(this.domain.max));b=function(a){return Math.exp(d(a))};return this.finv=function(a,c){var d;d=[b(a),b(c)];return{ge:_.min(d),le:_.max(d)}}};b.prototype._tickNum=function(){return"num-log"};return b}(c);c=function(a){function b(){this._makeDate=l(this._makeDate,this);this._makeNum=l(this._makeNum,this);return b.__super__.constructor.apply(this,arguments)}t(b,a);b.prototype._makeNum= +function(){var a,b,c;a=0===this.domain.min?0:1;b=Math.sqrt;c=h.linear(b(this.domain.min),a,b(this.domain.max),10);return this.f=this._identityWrapper(function(a){return c(b(a))})};b.prototype._makeDate=function(){return this._makeNum()};return b}(r);e=function(a){function b(){this._makeDate=l(this._makeDate,this);this._makeNum=l(this._makeNum,this);return b.__super__.constructor.apply(this,arguments)}t(b,a);b.prototype._makeNum=function(){return this.f=this._identityWrapper(h.linear(this.domain.min, +0===this.domain.min?0:.1,this.domain.max,1))};b.prototype._makeDate=function(){return this._makeNum()};return b}(r);x=function(a){function b(){this._makeCat=l(this._makeCat,this);return b.__super__.constructor.apply(this,arguments)}t(b,a);b.prototype._makeCat=function(){var a,b,c,d=this;c=this.domain.levels.length;if(9>=c)return a="#E41A1C #377EB8 #4DAF4A #984EA3 #FF7F00 #FFFF33 #A65628 #F781BF #999999".split(" "),this.f=function(b){b=_.indexOf(d.domain.levels,b);return a[b]};b=function(a){return _.indexOf(d.domain.levels, +a)/c+1/(2*c)};return this.f=function(a){return"undefined"!==typeof Raphael&&null!==Raphael?Raphael.hsl(b(a),.5,.5):"hsl("+b(a)+",0.5,0.5)"}};return b}(r);p=function(a){function b(a){this._makeDate=l(this._makeDate,this);this._makeNum=l(this._makeNum,this);this.lower=a.lower;this.upper=a.upper}t(b,a);b.prototype._makeNum=function(){var a,b,c,d,e;c="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.lower):this.lower;e="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.upper): +this.upper;d=h.linear(this.domain.min,c.r,this.domain.max,e.r);b=h.linear(this.domain.min,c.g,this.domain.max,e.g);a=h.linear(this.domain.min,c.b,this.domain.max,e.b);return this.f=this._identityWrapper(function(c){return"undefined"!==typeof Raphael&&null!==Raphael?Raphael.rgb(d(c),b(c),a(c)):"rgb("+d(c)+","+b(c)+","+a(c)+")"})};b.prototype._makeDate=function(){return this._makeNum()};return b}(r);f=function(a){function b(a){this._makeDate=l(this._makeDate,this);this._makeCat=l(this._makeCat,this); +this._makeNum=l(this._makeNum,this);this.lower=a.lower;this.middle=a.middle;this.upper=a.upper;this.midpoint=a.midpoint;null==this.midpoint&&(this.midpoint=0)}t(b,a);b.prototype._makeNum=function(){var a,b,c,d,e,f,g,k,m,l=this;e="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.lower):this.lower;f="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.middle):this.middle;m="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.upper):this.upper;g=h.linear(this.domain.min, +e.r,this.midpoint,f.r);c=h.linear(this.domain.min,e.g,this.midpoint,f.g);a=h.linear(this.domain.min,e.b,this.midpoint,f.b);k=h.linear(this.midpoint,f.r,this.domain.max,m.r);d=h.linear(this.midpoint,f.g,this.domain.max,m.g);b=h.linear(this.midpoint,f.b,this.domain.max,m.b);return this.f=this._identityWrapper(function(e){return e(b=_.keys(a).length)&&"meta"in a||5>b)?(b=a.data,c=a.meta):b=a;switch(e(b)){case "json-object":case "json-grid":case "json-array":return h.data.json(b, +c,void 0);case "url":return h.data.url(b,c,void 0);case "csv":return h.data.csv(b,c);case "api":return h.data.api(b);default:throw h.error.data("Unknown data format.");}};h.data.json=function(a,b,c){return new f({data:a,meta:b,type:c})};h.data.csv=function(a,b){return new f({data:a,meta:b,csv:"csv"})};h.data.url=function(a,b,c){return new p({url:a,computeBackend:b,limit:c})};h.data.api=function(a){return new g({apiFun:a})};e=function(a){if(_.isArray(a))return _.isArray(a[0])?"json-grid":"json-array"; +if(_.isObject(a))return"json-object";if(_.isString(a))return h.isURI(a)?"url":"csv";if(_.isFunction(a))return"api";throw h.error.data("Unknown data format.");};b=function(a,b){var c,d,e,f,g,k,l;if(0=r;c=0<=r?++k:--k){f={};l=0;for(n=e.length;l_.keys(c).length&&"data"in c?(f=c.data,g=null!=(k=c.meta)?k:{}):(f=c,g={});k=function(){var k;switch(null!=(k=c.type)?k:e(f)){case "json-object":return x(f,g);case "json-grid":return a(f,g);case "json-array":return b(f,g);case "csv":return d(f,g);default:throw h.error.data("Unknown data format.");}}();this.key=k.key;this.raw=k.raw;this.meta=k.meta;return this.data=this.raw};f.prototype._checkRename=function(a, +b){if(""===b)throw h.error.defn("Column names cannot be an empty string");if(-1===_.indexOf(this.key,a))throw h.error.defn("The key "+a+" doesn't exist!");if(-1!==_.indexOf(this.key,b))throw h.error.defn("The key "+b+" already exists!");};f.prototype.rename=function(a,b,c){var d,e,f;null==c&&(c=!1);a=a.toString();b=b.toString();if(a===b)return!0;c||this._checkRename(a,b);f=this.raw;d=0;for(e=f.length;d_.keys(f).length&&"data"in f?(g= +f.data,k=null!=(l=f.meta)?l:{}):(g=f,k={});f=function(){switch(e(g)){case "json-object":return x(g,k);case "json-grid":return a(g,k);case "json-array":return b(g,k);case "csv":return d(g,k);default:throw h.error.data("Unknown data format.");}}();m.key=f.key;m.raw=f.raw;m.meta=f.meta;m.data=m.raw;return c(null,m)})};f.prototype.update=function(a){this.raw=null;return f.__super__.update.call(this)};f.prototype.renameMany=function(a){return 0===_.keys(a).length};return f}(c);g=function(c){function f(a){this.getData= +t(this.getData,this);f.__super__.constructor.call(this);this.apiFun=a.apiFun;this.computeBackend=!0}l(f,c);f.prototype.getData=function(c,f){var g=this;return this.apiFun(f,function(f,k){var m,l,n,q,r;if(null!=f)return c(f,null);if(_.isString(k))try{k=JSON.parse(k)}catch(p){l=p}l=null;try{m=k.data,n=null!=(q=k.meta)?q:{},r=function(){switch(e(m)){case "json-object":return x(m,n);case "json-grid":return a(m,n);case "json-array":return b(m,n);case "csv":return d(m,n);default:throw h.error.data("Unknown data format."); +}}(),g.key=r.key,g.raw=r.raw,g.meta=r.meta,g.data=g.raw}catch(t){l=t}return c(l,g)})};f.prototype.update=function(a){this.raw=null;return f.__super__.update.call(this)};f.prototype.renameMany=function(a){return 0===_.keys(a).length};return f}(c)}).call(this);(function(){var c,g,p,f,b,a,d,e,x,r,l,k=function(a,b){return function(){return a.apply(b,arguments)}},t=[].indexOf||function(a){for(var b=0,c=this.length;b=d;1<=d?++a:--a)b.push(void 0);return b}();return{trans:function(b){e.push(b[a]);return b[f]=e.shift()},meta:{type:c.type}}}};r=function(a,b,c){return l[b.trans](a,b,null!=c?c:{})};a={lt:function(a,b){return ab},ge:function(a,b){return a>=b},"in":function(a,b){return 0<=t.call(b,a)}};b=function(b){var c;c=[];_.each(b,function(b,d){return _.each(b,function(b,e){return c.push(function(c){return a[e](c[d],b)})})}); +return function(a){var b,d,e;d=0;for(e=c.length;d=d&&a<=f}),{q1:_.min(b["true"]),q2:e,q3:h.median(a,!0),q4:c,q5:_.max(b["true"]),outliers:null!=(g=b["false"])? +g:[]}):{outliers:a}}}};x=function(a){return e[a.stat](a)};f=function(a,b){var c,d;d={};_.each(b.stats,function(a){var b,c,e;b=a.key;c=a.name;e=x(a);return d[c]=function(a){return e(_.pluck(a,b))}});c=h.groupBy(a,b.groups);return _.map(c,function(a){var c;c={};_.each(b.groups,function(b){return c[b]=a[0][b]});_.each(d,function(b,d){return c[d]=b(a)});return c})};p=function(a,b,c){var d,e,g,h;g=b.sort;h=b.stat;d=b.limit;b=b.asc;h&&(h={stats:[h],groups:[a]},c=f(c,h));e=b?1:-1;c.sort(function(a,b){return a[g]=== +b[g]?0:a[g]>=b[g]?1*e:-1*e});d&&(c=c.slice(0,+(d-1)+1||9E9));a=_.uniq(_.pluck(c,a));return{meta:{levels:a,sorted:!0},filter:{"in":a}}};d=function(a,c,d){var e,g,k,l,n,t,x,E,G,C,L,F,U;x=_.clone(c.meta);c=_.clone(c.raw);null==x&&(x={});e=function(a,b){var c;return x[a]=_.extend(null!=(c=x[a])?c:{},b)};if(a.trans)for(U=a.trans,l=0,L=U.length;lg&&(c.guideLeft=g);c.guideRight>g&&(c.guideRight=g);c.guideTop>b&&(c.guideTop=b);c.guideBottom>b&&(c.guideBottom=b);c.chartHeight=c.height-c.paddingTop-c.paddingBottom-c.guideTop-c.guideBottom;c.chartWidth= +c.width-c.paddingLeft-c.paddingRight-c.guideLeft-c.guideRight;null!=h.cols&&1=e;d=0<=e?++c:--c)f.push(void 0===a[d]||void 0===b[d]);return f}()))throw h.error.missing(""+c+" cannot be plotted due to too many missing points.");};a.prototype._checkArrayNaN=function(a,b){var c,d;d=_.map(_.zip(a,b),function(a,b){return isNaN(a[0])||isNaN(a[1])?void 0:a});return{x:function(){var a,b,e;e=[];a=0;for(b=d.length;a=r;g=1<=r?++q:--q)k=Math.abs(l[g]-l[g-1])>Math.PI?1:0,f=0Math.PI?1:0,b="M "+g[0]+" "+k[0]+" A "+e[0]+" "+e[1]+" 0 "+c+" 1 "+g[1]+" "+k[1],c=Math.abs(f[3]-f[2])>Math.PI?1:0,b+="L "+g[2]+" "+k[2]+" A "+e[2]+" "+e[3]+" 0 "+c+" 0 "+g[3]+" "+k[3]+" Z");c=this._maybeApply(a,d,d.stroke?"stroke":"color");return this._shared(a,d,{path:b,fill:this._maybeApply(a,d,"color"),stroke:c,"stroke-width":this._maybeApply(a,d,"stroke-width")})};return b}(e);e=function(a){function b(){return b.__super__.constructor.apply(this, +arguments)}k(b,a);b.prototype._make=function(a){return a.text()};b.prototype.attr=function(a,b,c,d,e){var f;e=b.getXY(e,d);b=e.x;e=e.y;this._checkPointUndefined(b,e,"Text");c=this._applyOffset(b,e,c);b=c.x;e=c.y;return this._shared(a,d,{x:b,y:e,r:10,text:this._maybeApply(a,d,"text"),"font-size":this._maybeApply(a,d,"size"),"text-anchor":null!=(f=d["text-anchor"])?f:"left",fill:this._maybeApply(a,d,"color")||"black"})};return b}(e);r={cartesian:{circle:new g,line:new f,pline:new f,area:new c,path:new b, +text:new e,rect:new d,spline:new x},polar:{circle:new g,path:new b,line:new f,pline:new a,area:new c,text:new e,rect:new p,spline:new x}}}).call(this);(function(){var c=[].indexOf||function(c){for(var h=0,f=this.length;hd.y&&(d.y=v+30+f,h.y=e+f/2+15),d.x+d.width>c&&(e=d.x+d.width-c,d.x-=e/2,h.x-=e/2),d.xc.call(h["const"].aes,g))throw h.error.input("Unknown aesthetic "+g+".");b=0;a=[f];return function(c,e,f,h){var l,k;if("reset"===c&&0h["const"].epsilon&&(null==q[e]&&(q[e]={min:null,max:null}),I=[d[c].ge,d[c].le],q[e].min=I[0],q[e].max=I[1]),"cat"===g.axes.domains[e].type&& +0!==d[c]["in"].length&&(null==q[e]&&(q[e]={levels:null}),q[e].levels=d[c]["in"]));g.handlers=_.map(g.handlers,x);A.push(g.make(g.spec))}return A}}}}}).call(this);(function(){var c,g=[].indexOf||function(c){for(var f=0,b=this.length;fe||e>=this.cols||0>n||n>=this.rows)return null;g={x:c.paddingLeft+c.guideLeft+(c.eachWidth+c.horizontalSpacing)*e,y:c.paddingTop+c.guideTop+(c.eachHeight+c.verticalSpacing)*n+c.verticalSpacing};b={x:b-g.x,y:a-g.y};if(!d&&(b.x>c.eachWidth||b.y>c.eachHeight))return null;b.x=Math.max(Math.min(b.x,c.eachWidth),0);b.y=Math.max(Math.min(b.y,c.eachHeight),0);return{row:n,col:e,offset:g,adjusted:b,evtData:this.getEvtData(e, +n)}};c.prototype._getMappings=function(c){var b;b={type:"none",mapping:{}};if(_.isObject(c))if("wrap"===c.type){b.type="wrap";if(!c["var"])throw h.error.defn("You didn't specify a variable to facet on.");c["var"]&&(b.mapping["var"]=c["var"]["var"])}else if("grid"===c.type){b.type="grid";if(!c.x&&c.y)throw h.error.defn("You didn't specify a variable to facet on.");c.x&&(b.mapping.x=c.x["var"]);c.y&&(b.mapping.y=c.y["var"])}return b};c.prototype._makeIndices=function(c,b){var a,d,e,g,n,l,k,p;k={};for(a in b)if(g= +b[a],g.levels)k[g["var"]]=g.levels;else{l=[];for(e in c){d=c[e];if(n=d.metaData[g["var"]])!n||"num"!==(p=n.type)&&"date"!==p||h.type.compare(n.type);l=_.uniq(_.union(l,_.pluck(d.statData,g["var"])))}k[g["var"]]=l}a=h.cross(k);d={};e=h.stringify(_.pluck(b,"var"));n=0;for(l=a.length;n").attr("border","1px solid black");z.attr("cellspacing",0);z.attr("cellpadding",0);for(v=0;v");p=this.spec.columns[v]["var"];0===v&&1"), +B.attr("rowspan",f),B.attr("colspan",n-1),y.append(B));y.append($(""+p+":").attr("align","right"));for(B=0;B"+k+"").attr("colspan",q*l);k.attr("align","center");y.append(k);B+=q}z.append(y);v++}y=$("");0===n&&(B=$(""),B.attr("rowspan",a.length+1),y.append(B));for(v=0;v"+p+"").attr("align","center")),v++;for(v=0;v"+k["var"]+""),k.attr("align","center"),y.append(k);v++}z.append(y);for(v=0;v");n=this.spec.rows;B=0;for(f=n.length;B"+k+"").attr("rowspan",l);k.attr("align","center");k.attr("valign","middle");y.append(k)}for(B=0;B"+k+"").attr("align","right"));B++}z.append(y);v++}this.prepare&&this.prepare(this);this.spec.width&&z.attr("width",this.spec.width);this.spec.height&&z.attr("height",this.spec.height);this.dom=_.isString(this.spec.dom)?$("#"+this.spec.dom):$(this.spec.dom);this.dom.empty();this.dom.append(z);if(this.callback)return this.callback(null,this)};return b}();h.pivot=function(b,a,d){return new c(b,a,d)}}).call(this);(function(){var c,g,p=function(b,a){return function(){return b.apply(a, +arguments)}},f=[].indexOf||function(b){for(var a=0,c=this.length;af.call(this.handlers,a))return this.handlers.push(a)}; +b.prototype.render=function(a,b,c){var f,g,l,k;if(null!=a)console.error(a);else{this.value=b[0][this.spec.value["var"]];this.title=null!=(l=this.spec.title)?l:this.spec.value["var"];a=0<(g=this.value)&&1>g?void 0:0===this.value%1?0:-1;this.value=h.format.number(a)(this.value);if(_.isNaN(this.value)||"NaN"===this.value)this.value="Not a Number";null!=this.prepare&&this.prepare(this);this.dom=this.spec.dom;this.width=null!=(f=this.spec.width)?f:200;this.height=null!=(k=this.spec.height)?k:100;null== +this.paper&&(this.paper=this._makePaper(this.dom,this.width,this.height,this));null==this.titleObj&&(this.titleObj=this.paper.text(this.width/2,10,""));this.titleObj.attr({text:this.title,"font-size":"12px"});this.titleObj.click(this.handleEvent("guide-title"));this.titleObj.hover(this.handleEvent("tover"),this.handleEvent("tout"));null==this.textObj&&(this.textObj=this.paper.text(this.width/2,this.height/2,""));this.textObj.attr({x:this.width/2,y:7+this.height/2,text:this.value});f=this.textObj.getBBox(); +g=f.width;f=f.height;g=Math.min(.9*this.width/g,.9*(this.height-14)/f);this.textObj.transform("s"+g);this.callback&&this.callback(null,this)}};b.prototype._makePaper=function(a,b,c,f){return h.paper(a,b,c,{numeral:f})};return b}();h.numeral=function(b,a,d){try{return new c(b,a,d)}catch(e){console.log(e);if(null!=a)return a(e,null);throw h.error.defn("Bad specification.");}}}).call(this);(function(){var c,g,p,f={}.hasOwnProperty,b=function(a,b){function c(){this.constructor=a}for(var g in b)f.call(b, +g)&&(a[g]=b[g]);c.prototype=b.prototype;a.prototype=new c;a.__super__=b.prototype;return a};g=function(){function a(a,b,c){null==a&&(a="polyjsEvent");this.eventName=a;this.cancelable=this.bubbles=!0;this.detail={type:c,data:b}}a.prototype.dispatch=function(a){var b;b=new CustomEvent(this.eventName,{detail:this.detail});if(null!=a)return a.dispatchEvent(b)};return a}();p=function(a){function c(a,b){c.__super__.constructor.call(this,"title-click",a,b)}b(c,a);return c}(g);c=function(a){function c(a, +b){c.__super__.constructor.call(this,"legend-click",a,b)}b(c,a);return c}(g);h.event={};h.event.make=function(a,b){if("guide-title"===a||"guide-titleH"===a||"guide-titleV"===a)return new p(b,a);if("legend-label"===a||"legend-title"===a)return new c(b,a);throw h.error.defn("No such event "+a+".");}}).call(this);(function(){var c,g=function(c,b){return function(){return c.apply(b,arguments)}},p=[].indexOf||function(c){for(var b=0,a=this.length;bp.call(this.handlers,b))return this.handlers.push(b)};c.prototype.removeHandler=function(b){return this.handlers.splice(_.indexOf(this.handlers,b),1)};c.prototype.handleEvent=function(b){var a;a=this;return _.throttle(function(c){var e,f,g,l,k;if("touchstart"===b||"touchmove"===b||"touchend"===b||"touchcancel"===b)h.touch(b,this,c,a);else if("select"===b){f=c.start;e=c.end;f=a.facet.getFacetInfo(a.dims,f.x,f.y);if(!f)return;l=f.col;k=f.row;g=f.adjusted;f=_.clone(g);g=a.facet.getFacetInfo(a.dims, +e.x,e.y,{col:l,row:k}).adjusted;e=_.clone(g);this.evtData="cartesian"===a.coord.type?a.scaleSet.fromPixels(f,e):null}else if("data"===b)this.evtData={};else if("reset"===b||"click"===b||"mover"===b||"mout"===b||"tover"===b||"tout"===b||"gover"===b||"gout"===b||"guide-click"===b)this.tooltip=this.data("t"),this.evtData=this.data("e"),"guide-click"===b&&"text"===this.type&&null!=this.evtData&&(c="legendTitle"===this.evtData.value?h.event.make("legend-title",this):h.event.make("legend-label",this),c.dispatch(a.dom)); +else if("guide-title"===b||"guide-titleH"===b||"guide-titleV"===b)this.tooltip=this.data("t"),this.evtData=this.data("e"),c=h.event.make(b,this),c.dispatch(a.dom);k=a.handlers;g=[];f=0;for(l=k.length;fe;e++)u.event.add(b,d,g[d][e]);c.data&&(c.data=u.extend({},c.data))}}function y(a,b){var d,e,f=0,c=typeof a.getElementsByTagName!==W?a.getElementsByTagName(b||\"*\"):typeof a.querySelectorAll!==W?a.querySelectorAll(b||\"*\"):h;if(!c)for(c=[],d=a.childNodes||a;null!=(e=d[f]);f++)!b||u.nodeName(e,b)?c.push(e):\nu.merge(c,y(e,b));return b===h||b&&u.nodeName(a,b)?u.merge([a],c):c}function z(a){jb.test(a.type)&&(a.defaultChecked=a.checked)}function w(a,b){if(b in a)return b;for(var d=b.charAt(0).toUpperCase()+b.slice(1),e=b,f=Qa.length;f--;)if(b=Qa[f]+d,b in a)return b;return e}function J(a,b){return a=b||a,\"none\"===u.css(a,\"display\")||!u.contains(a.ownerDocument,a)}function I(a,b){for(var d,e,f,c=[],g=0,k=a.length;k>g;g++)e=a[g],e.style&&(c[g]=u._data(e,\"olddisplay\"),d=e.style.display,b?(c[g]||\"none\"!==d||\n(e.style.display=\"\"),\"\"===e.style.display&&J(e)&&(c[g]=u._data(e,\"olddisplay\",C(e.nodeName)))):c[g]||(f=J(e),(d&&\"none\"!==d||!f)&&u._data(e,\"olddisplay\",f?d:u.css(e,\"display\"))));for(g=0;k>g;g++)e=a[g],e.style&&(b&&\"none\"!==e.style.display&&\"\"!==e.style.display||(e.style.display=b?c[g]||\"\":\"none\"));return a}function A(a,b,d){return(a=ab.exec(b))?Math.max(0,a[1]-(d||0))+(a[2]||\"px\"):b}function E(a,b,d,e,f){b=d===(e?\"border\":\"content\")?4:\"width\"===b?1:0;for(var c=0;4>b;b+=2)\"margin\"===d&&(c+=u.css(a,\nd+Ha[b],!0,f)),e?(\"content\"===d&&(c-=u.css(a,\"padding\"+Ha[b],!0,f)),\"margin\"!==d&&(c-=u.css(a,\"border\"+Ha[b]+\"Width\",!0,f))):(c+=u.css(a,\"padding\"+Ha[b],!0,f),\"padding\"!==d&&(c+=u.css(a,\"border\"+Ha[b]+\"Width\",!0,f)));return c}function G(a,b,d){var e=!0,c=\"width\"===b?a.offsetWidth:a.offsetHeight,f=za(a),g=u.support.boxSizing&&\"border-box\"===u.css(a,\"boxSizing\",!1,f);if(0>=c||null==c){if(c=la(a,b,f),(0>c||null==c)&&(c=a.style[b]),Ra.test(c))return c;e=g&&(u.support.boxSizingReliable||c===a.style[b]);\nc=parseFloat(c)||0}return c+E(a,b,d||(g?\"border\":\"content\"),e,f)+\"px\"}function C(a){var b=Q,d=db[a];return d||(d=L(a,b),\"none\"!==d&&d||(Aa=(Aa||u(\"'),g===h&&(g=a.renderHtml(this)),this.statusbar&&(f=this.statusbar.renderHtml()),'
    '+e+'
    '+g+"
    "+f+"
    "},fullscreen:function(b){var c=this,d=document.documentElement,e,f=c.classPrefix,g;b!=c._fullscreen&&((a.on(window,"resize",function(){var b;if(c._fullscreen)if(e)c._timer||(c._timer=setTimeout(function(){var b=a.getWindowSize(); +c.moveTo(0,0).resizeTo(b.w,b.h);c._timer=0},50));else{b=(new Date).getTime();var d=a.getWindowSize();c.moveTo(0,0).resizeTo(d.w,d.h);50<(new Date).getTime()-b&&(e=!0)}}),g=c.layoutRect(),c._fullscreen=b,b)?(c._initial={x:g.x,y:g.y,w:g.w,h:g.h},c._borderBox=c.parseBox("0"),c.getEl("head").style.display="none",g.deltaH-=g.headerH+2,a.addClass(d,f+"fullscreen"),a.addClass(document.body,f+"fullscreen"),c.addClass("fullscreen"),b=a.getWindowSize(),c.moveTo(0,0).resizeTo(b.w,b.h)):(c._borderBox=c.parseBox(c.settings.border), +c.getEl("head").style.display="",g.deltaH+=g.headerH,a.removeClass(d,f+"fullscreen"),a.removeClass(document.body,f+"fullscreen"),c.removeClass("fullscreen"),c.moveTo(c._initial.x,c._initial.y).resizeTo(c._initial.w,c._initial.h)));return c.reflow()},postRender:function(){var a,b,c=this,g=[],h,k;setTimeout(function(){c.addClass("in")},0);c.keyboardNavigation=new d({root:c,enableLeftRight:!1,enableUpDown:!1,items:g,onCancel:function(){c.close()}});c.find("*").each(function(a){a.canFocus&&(k=k||a.settings.autofocus, +h=h||a,"filepicker"==a.type?(g.push(a.getEl("inp")),a.getEl("open")&&g.push(a.getEl("open").firstChild)):g.push(a.getEl()))});c.statusbar&&c.statusbar.find("*").each(function(a){a.canFocus&&(k=k||a.settings.autofocus,h=h||a,g.push(a.getEl()))});c._super();c.statusbar&&c.statusbar.postRender();!k&&h&&h.focus();this.dragHelger=new e(c._id+"-dragh",{start:function(){a=c.layoutRect().x;b=c.layoutRect().y},drag:function(d){c.moveTo(a+d.deltaX,b+d.deltaY)}});c.on("submit",function(a){a.isDefaultPrevented()|| +c.close()})},submit:function(){return this.fire("submit",{data:this.toJSON()})},remove:function(){this._super();this.dragHelger.destroy();this.statusbar&&this.statusbar.remove()}})});e("tinymce/ui/MessageBox",["tinymce/ui/Window"],function(c){var b=c.extend({init:function(a){a={border:1,padding:20,layout:"flex",pack:"center",align:"center",containerCls:"panel",autoScroll:!0,buttons:{type:"button",text:"Ok",action:"ok"},items:{type:"label",multiline:!0,maxWidth:500,maxHeight:200}};this._super(a)}, +Statics:{OK:1,OK_CANCEL:2,YES_NO:3,YES_NO_CANCEL:4,msgBox:function(a){var d,e=a.callback||function(){};switch(a.buttons){case b.OK_CANCEL:d=[{type:"button",text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close();e(!0)}},{type:"button",text:"Cancel",onClick:function(a){a.control.parents()[1].close();e(!1)}}];break;case b.YES_NO:d=[{type:"button",text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close();e(!0)}}];break;case b.YES_NO_CANCEL:d=[{type:"button", +text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close()}}];break;default:d=[{type:"button",text:"Ok",subtype:"primary",onClick:function(a){a.control.parents()[1].close()}}]}return(new c({padding:20,x:a.x,y:a.y,minWidth:300,minHeight:100,layout:"flex",pack:"center",align:"center",buttons:d,title:a.title,items:{type:"label",multiline:!0,maxWidth:500,maxHeight:200,text:a.text},onClose:a.onClose})).renderTo(document.body).reflow()},alert:function(a,c){return"string"==typeof a&& +(a={text:a}),a.callback=c,b.msgBox(a)},confirm:function(a,c){return"string"==typeof a&&(a={text:a}),a.callback=c,a.buttons=b.OK_CANCEL,b.msgBox(a)}}});return b});e("tinymce/WindowManager",["tinymce/ui/Window","tinymce/ui/MessageBox"],function(c,b){return function(a){var d=[];this.windows=d;this.open=function(b){var e;return b.url=b.url||b.file,b.url&&(b.width=parseInt(b.width||320,10),b.height=parseInt(b.height||240,10)),b.body&&(b.items={defaults:b.defaults,type:b.bodyType||"form",items:b.body}), +b.url||b.buttons||(b.buttons=[{text:"Ok",subtype:"primary",minWidth:50,onclick:function(){e.find("form")[0].submit();e.close()}},{text:"Cancel",onclick:function(){e.close()}}]),e=new c(b),d.push(e),e.on("close",function(){for(var b=d.length;b--;)d[b]===e&&d.splice(b,1);a.focus()}),b.data&&e.on("postRender",function(){this.find("*").each(function(a){var c=a.name();c in b.data&&a.value(b.data[c])})}),a.nodeChanged(),e.renderTo(document.body).reflow()};this.alert=function(a,c,d){b.alert(a,function(){c.call(d|| +this)})};this.confirm=function(a,c,d){b.confirm(a,function(a){c.call(d||this,a)})};this.close=function(){d.length&&d[window.length-1].win.close()}}});e("tinymce/util/Quirks","tinymce/util/VK tinymce/dom/RangeUtils tinymce/html/Node tinymce/html/Entities tinymce/Env tinymce/util/Tools".split(" "),function(c,b,a,d,e,k){return function(m){function n(a,b){try{m.getDoc().execCommand(a,!1,b)}catch(c){}}function l(){var a=m.getDoc().documentMode;return a?a:6}function w(){function a(b){var c,d,e,f,g;c=K.getRng(); +var h=[c.startContainer,c.startOffset,c.endContainer,c.endOffset];c.collapsed||(b=!0);f=c[(b?"start":"end")+"Container"];g=c[(b?"start":"end")+"Offset"];if(3==f.nodeType){d=D.getParent(c.startContainer,D.isBlock);b&&(d=D.getNext(d,D.isBlock));var l;if(!(l=!d)){a:{if(3==f.nodeType){if(b&&g==f.length){f=!0;break a}if(!b&&0===g){f=!0;break a}}f=void 0}l=!f&&c.collapsed}l||(e=D.create("em",{id:"__mceDel"}),L(k.grep(d.childNodes),function(a){e.appendChild(a)}),d.appendChild(e))}if(c=D.createRng(),c.setStart(h[0], +h[1]),c.setEnd(h[2],h[3]),K.setRng(c),m.getDoc().execCommand(b?"ForwardDelete":"Delete",!1,null),e){for(b=K.getBookmark();c=D.get("__mceDel");)D.remove(c,!0);K.moveToBookmark(b)}}m.on("keydown",function(b){var d;d=b.keyCode==P;b.isDefaultPrevented()||!d&&b.keyCode!=R||c.modifierPressed(b)||(b.preventDefault(),a(d))});m.addCommand("Delete",function(){a()})}function u(){m.on("keydown",function(a){!a.isDefaultPrevented()&&65==a.keyCode&&c.metaKeyPressed(a)&&(a.preventDefault(),m.execCommand("SelectAll"))})} +function p(){m.settings.content_editable||(D.bind(m.getDoc(),"focusin",function(){K.setRng(K.getRng())}),D.bind(m.getDoc(),"mousedown",function(a){a.target==m.getDoc().documentElement&&(m.getWin().focus(),K.setRng(K.getRng()))}))}function x(){m.on("keydown",function(a){if(!a.isDefaultPrevented()&&a.keyCode===R&&K.isCollapsed()&&0===K.getRng(!0).startOffset){var b=K.getNode().previousSibling;b&&b.nodeName&&"hr"===b.nodeName.toLowerCase()&&(D.remove(b),a.preventDefault())}})}function z(){window.Range.prototype.getClientRects|| +m.on("mousedown",function(a){if(!a.isDefaultPrevented()&&"HTML"===a.target.nodeName){var b=m.getBody();b.blur();setTimeout(function(){b.focus()},0)}})}function y(){m.on("click",function(a){a=a.target;/^(IMG|HR)$/.test(a.nodeName)&&K.getSel().setBaseAndExtent(a,0,a,1);"A"==a.nodeName&&D.hasClass(a,"mceItemAnchor")&&K.select(a);m.nodeChanged()})}function B(){function a(){var b=D.getAttribs(K.getStart().cloneNode(!1));return function(){var a=K.getStart();a!==m.getBody()&&(D.setAttrib(a,"style",null), +L(b,function(b){a.setAttributeNode(b.cloneNode(!0))}))}}function b(){return!K.isCollapsed()&&D.getParent(K.getStart(),D.isBlock)!=D.getParent(K.getEnd(),D.isBlock)}m.on("keypress",function(c){var d;return c.isDefaultPrevented()||8!=c.keyCode&&46!=c.keyCode||!b()?h:(d=a(),m.getDoc().execCommand("delete",!1,null),d(),c.preventDefault(),!1)});D.bind(m.getDoc(),"cut",function(c){var d;!c.isDefaultPrevented()&&b()&&(d=a(),setTimeout(function(){d()},0))})}function r(){var a,c;m.on("selectionchange",function(){c&& +(clearTimeout(c),c=0);c=window.setTimeout(function(){var c=K.getRng();a&&b.compareRanges(c,a)||(m.nodeChanged(),a=c)},50)})}function E(){7l()&&(Q.addNodeFilter("noscript",function(a){for(var b=a.length,c,d;b--;)c=a[b],(d=c.firstChild)&&c.attr("data-mce-innertext",d.value)}),V.addNodeFilter("noscript",function(b){for(var c=b.length,e,f,g;c--;)e=b[c],(f=b[c].firstChild)?f.value=d.decode(f.value):(g=e.attributes.map["data-mce-innertext"], +g&&(e.attr("data-mce-innertext",null),f=new a("#text",3),f.value=g,f.raw=!0,e.append(f)))}))}function N(){function a(b,c){var d=e.createTextRange();try{d.moveToPoint(b,c)}catch(f){d=null}return d}function b(d){var e;d.button?(e=a(d.x,d.y),e&&(0h.clientHeight)||(f=1,(g=a(e.x,e.y))&&(D.bind(d,"mouseup",c),D.bind(d,"mousemove",b),D.win.focus(),g.select()))})}var L=k.each,R=c.BACKSPACE,P=c.DELETE,D=m.dom,K=m.selection,T=m.settings,Q=m.parser,V=m.serializer,aa=e.gecko,U=e.ie,Z=e.webkit;(function(){m.on("keydown",function(a){if(!a.isDefaultPrevented()&& +a.keyCode===R&&K.isCollapsed()&&0===K.getRng(!0).startOffset){var b=K.getNode().previousSibling;if(b&&b.nodeName&&"table"===b.nodeName.toLowerCase())return a.preventDefault(),!1}})})();(function(){m.on("keydown",function(a){var b,d,e,f,h;if(!a.isDefaultPrevented()&&a.keyCode==c.BACKSPACE&&(b=K.getRng(),d=b.startContainer,e=b.startOffset,f=D.getRoot(),h=d,b.collapsed&&0===e)){for(;h&&h.parentNode&&h.parentNode.firstChild==h&&h.parentNode!=f;)h=h.parentNode;"BLOCKQUOTE"===h.tagName&&(m.formatter.toggle("blockquote", +null,h),b=D.createRng(),b.setStart(d,0),b.setEnd(d,0),K.setRng(b))}})})();(function(){function a(b){var c=D.create("body");b=b.cloneContents();return c.appendChild(b),K.serializer.serialize(c,{format:"html"})}m.on("keydown",function(b){var c=b.keyCode,d;if(!(b.isDefaultPrevented()||c!=P&&c!=R||(d=m.selection.isCollapsed(),d&&!D.isEmpty(m.getBody()))||U&&!d)){if(c=!d)c=m.selection.getRng(),c=a(c),d=D.createRng(),d.selectNode(m.getBody()),d=a(d),c=c!==d;c||(b.preventDefault(),m.setContent(""),m.selection.setCursorLocation(m.getBody(), +0),m.nodeChanged())}})})();(function(){m.on("keyup focusin",function(a){65==a.keyCode&&c.metaKeyPressed(a)||K.normalize()})})();Z&&(A(),w(),p(),y(),G(),e.iOS?r():u());U&&(x(),document.body.setAttribute("role","application"),E(),C(),H(),O(),S(),N());aa&&(x(),z(),B(),F(),I(),J())}});e("tinymce/util/Observable",["tinymce/util/Tools"],function(c){function b(){return!1}function a(){return!0}var d=c.makeMap("focusin focusout click dblclick mousedown mouseup mousemove mouseover beforepaste paste cut copy selectionchange mouseout mouseenter mouseleave keydown keypress keyup contextmenu dragend dragover draggesture dragdrop drop drag", +" ");return{fire:function(c,d,e){var g,h,k,m;if(c=c.toLowerCase(),d=d||{},d.type=c,d.target||(d.target=this),d.preventDefault||(d.preventDefault=function(){d.isDefaultPrevented=a},d.stopPropagation=function(){d.isPropagationStopped=a},d.stopImmediatePropagation=function(){d.isImmediatePropagationStopped=a},d.isDefaultPrevented=b,d.isPropagationStopped=b,d.isImmediatePropagationStopped=b),this.__bindings&&(g=this.__bindings[c]))for(h=0,k=g.length;k>h&&(g[h]=m=g[h],!d.isImmediatePropagationStopped());h++)if(!1=== +m.call(this,d))return d.preventDefault(),d;if(!1!==e&&this.parent)for(e=this.parent();e&&!d.isPropagationStopped();)e.fire(c,d,!1),e=e.parent();return d},on:function(a,b){var c,e,g,h;if(!1===b&&(b=function(){return!1}),b)for(g=a.toLowerCase().split(" "),h=g.length;h--;)a=g[h],(c=this.__bindings)||(c=this.__bindings={}),(e=c[a])||(e=c[a]=[],this.bindNative&&d[a]&&this.bindNative(a)),e.push(b);return this},off:function(a,b){var c,e=this.__bindings,g,h,k,p;if(e)if(a)for(k=a.toLowerCase().split(" "), +c=k.length;c--;){if(a=k[c],g=e[a],!a){for(h in e)e[a].length=0;break}if(g){if(b)for(p=g.length;p--;)g[p]===b&&g.splice(p,1);else g.length=0;!g.length&&this.unbindNative&&d[a]&&(this.unbindNative(a),delete e[a])}}else{if(this.unbindNative)for(a in e)this.unbindNative(a);this.__bindings=[]}return this}}});e("tinymce/Shortcuts",["tinymce/util/Tools","tinymce/Env"],function(c,b){var a=c.each,d=c.explode,e={f9:120,f10:121,f11:122};return function(c){var g={};c.on("keyup keypress keydown",function(c){(c.altKey|| +c.ctrlKey||c.metaKey)&&a(g,function(a){if(a.ctrl==(b.isMac?c.metaKey:c.ctrlKey)&&a.alt==c.altKey&&a.shift==c.shiftKey)return c.keyCode==a.keyCode||c.charCode&&c.charCode==a.charCode?(c.preventDefault(),"keydown"==c.type&&a.func.call(a.scope),!0):h})});this.add=function(b,h,k,m){var p;return p=k,"string"==typeof k?k=function(){c.execCommand(p,!1,null)}:k.length&&(k=function(){c.execCommand(p[0],p[1],p[2])}),a(d(b.toLowerCase()),function(b){var n={func:k,scope:m||c,desc:c.translate(h),alt:!1,ctrl:!1, +shift:!1};a(d(b,"+"),function(a){switch(a){case "alt":case "ctrl":case "shift":n[a]=!0;break;default:n.charCode=a.charCodeAt(0),n.keyCode=e[a]||a.toUpperCase().charCodeAt(0)}});g[(n.ctrl?"ctrl":"")+","+(n.alt?"alt":"")+","+(n.shift?"shift":"")+","+n.keyCode]=n}),!0}}});e("tinymce/Editor","tinymce/dom/DOMUtils tinymce/AddOnManager tinymce/html/Node tinymce/dom/Serializer tinymce/html/Serializer tinymce/dom/Selection tinymce/Formatter tinymce/UndoManager tinymce/EnterKey tinymce/ForceBlocks tinymce/EditorCommands tinymce/util/URI tinymce/dom/ScriptLoader tinymce/dom/EventUtils tinymce/WindowManager tinymce/html/Schema tinymce/html/DomParser tinymce/util/Quirks tinymce/Env tinymce/util/Tools tinymce/util/Observable tinymce/Shortcuts".split(" "), +function(c,b,a,d,e,k,m,n,l,w,u,p,x,z,y,B,r,E,C,A,F,I){function G(a,b){return"selectionchange"==b?a.getDoc():!a.inline&&/^mouse|click|contextmenu/.test(b)?a.getDoc():a.getBody()}function J(a,c,d){var e,f;e=this.documentBaseUrl=d.documentBaseURL;f=d.baseURI;this.settings=c=N({id:a,theme:"modern",delta_width:0,delta_height:0,popup_css:"",plugins:"",document_base_url:e,add_form_submit_trigger:!0,submit_patch:!0,add_unload_trigger:!0,convert_urls:!0,relative_urls:!0,remove_script_host:!0,object_resizing:!0, +doctype:"",visual:!0,font_size_style_values:"xx-small,x-small,small,medium,large,x-large,xx-large",font_size_legacy_values:"xx-small,small,medium,large,x-large,xx-large,300%",directionality:"ltr",forced_root_block:"p",hidden_input:!0,padd_empty_editor:!0,render_ui:!0,indentation:"30px",inline_styles:!0,convert_fonts_to_spans:!0,indent:"simple",indent_before:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist", +indent_after:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,ul,li,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",validate:!0,entity_encoding:"named",url_converter:this.convertURL,url_converter_scope:this,ie7_compat:!0},c);b.settings=c;b.baseURL=d.baseURL;this.id=c.id=a;this.isNotDirty=!1;this.plugins={};this.documentBaseURI=new p(c.document_base_url||e,{base_uri:f});this.baseURI=f;this.contentCSS=[];this.contentStyles=[];this.shortcuts= +new I(this);this.execCommands={};this.queryStateCommands={};this.queryValueCommands={};this.suffix=d.suffix;this.editorManager=d;this.inline=c.inline;this.execCallback("setup",this)}var H=c.DOM,O=b.ThemeManager,S=b.PluginManager,N=A.extend,L=A.each,R=A.explode,P=A.inArray,D=A.trim,K=A.resolve,T=z.Event,Q=C.gecko,V=C.ie,aa=C.opera;return J.prototype={render:function(){function a(){var d=x.ScriptLoader;c.language&&d.add(b.editorManager.baseURL+"/langs/"+c.language+".js");c.theme&&"function"!=typeof c.theme&& +"-"!=c.theme.charAt(0)&&!O.urls[c.theme]&&O.load(c.theme,"themes/"+c.theme+"/theme"+e+".js");A.isArray(c.plugins)&&(c.plugins=c.plugins.join(" "));L(c.plugins.split(/[ ,]/),function(a){if(a=D(a),a&&!S.urls[a])"-"==a.charAt(0)?(a=a.substr(1,a.length),a=S.dependencies(a),L(a,function(a){a=S.createUrl({prefix:"plugins/",resource:a,suffix:"/plugin"+e+".js"},a);S.load(a.resource,a)})):S.load(a,{prefix:"plugins/",resource:a,suffix:"/plugin"+e+".js"})});d.loadQueue(function(){b.removed||b.init()})}var b= +this,c=b.settings,d=b.id,e=b.suffix;if(!T.domLoaded)return H.bind(window,"ready",function(){b.render()}),h;if(b.editorManager.settings=c,b.getElement()&&C.contentEditable){c.inline?b.inline=!0:(b.orgVisibility=b.getElement().style.visibility,b.getElement().style.visibility="hidden");var f=b.getElement().form||H.getParent(d,"form");f&&(b.formElement=f,c.hidden_input&&!/TEXTAREA|INPUT/i.test(b.getElement().nodeName)&&H.insertAfter(H.create("input",{type:"hidden",name:d}),d),b.formEventDelegate=function(a){b.fire(a.type, +a)},H.bind(f,"submit reset",b.formEventDelegate),b.on("reset",function(){b.setContent(b.startContent,{format:"raw"})}),!c.submit_patch||f.submit.nodeType||f.submit.length||f._mceOldSubmit||(f._mceOldSubmit=f.submit,f.submit=function(){return b.editorManager.triggerSave(),b.isNotDirty=1,f._mceOldSubmit(f)}));b.windowManager=new y(b);"xml"==c.encoding&&b.on("GetContent",function(a){a.save&&(a.content=H.encode(a.content))});c.add_form_submit_trigger&&b.on("submit",function(){b.initialized&&(b.save(), +b.isNotDirty=1)});c.add_unload_trigger&&(b._beforeUnload=function(){!b.initialized||b.destroyed||b.isHidden()||b.save({format:"raw",no_events:!0})},b.editorManager.on("BeforeUnload",b._beforeUnload));a()}},init:function(){function a(c){var d=S.get(c),e,f;e=S.urls[c]||b.documentBaseUrl.replace(/\/$/,"");c=D(c);d&&-1===P(n,c)&&(L(S.dependencies(c),function(b){a(b)}),f=new d(b,e),b.plugins[c]=f,f.init&&(f.init(b,e),n.push(c)))}var b=this,c=b.settings,d=b.getElement(),e,f,g,h,l,k,n=[];if(b.editorManager.add(b), +c.aria_label=c.aria_label||H.getAttrib(d,"aria-label",b.getLang("aria.rich_text_area")),c.theme&&("function"!=typeof c.theme?(c.theme=c.theme.replace(/-/,""),h=O.get(c.theme),b.theme=new h(b,O.urls[c.theme]),b.theme.init&&b.theme.init(b,O.urls[c.theme]||b.documentBaseUrl.replace(/\/$/,""))):b.theme=c.theme),L(c.plugins.replace(/\-/g,"").split(/[ ,]/),a),b.fire("BeforeRenderUI"),c.render_ui&&b.theme&&(b.orgDisplay=d.style.display,"function"!=typeof c.theme?(e=c.width||d.style.width||d.offsetWidth, +f=c.height||d.style.height||d.offsetHeight,g=c.min_height||100,k=/^[0-9\.]+(|px)$/i,k.test(""+e)&&(e=Math.max(parseInt(e,10)+(h.deltaWidth||0),100)),k.test(""+f)&&(f=Math.max(parseInt(f,10)+(h.deltaHeight||0),g)),h=b.theme.renderUI({targetNode:d,width:e,height:f,deltaWidth:c.delta_width,deltaHeight:c.delta_height}),c.content_editable||(H.setStyles(h.sizeContainer||h.editorContainer,{wi2dth:e,h2eight:f}),f=(h.iframeHeight||f)+("number"==typeof f?h.deltaHeight||0:""),g>f&&(f=g))):(h=c.theme(b,d),h.editorContainer.nodeType&& +(h.editorContainer=h.editorContainer.id=h.editorContainer.id||b.id+"_parent"),h.iframeContainer.nodeType&&(h.iframeContainer=h.iframeContainer.id=h.iframeContainer.id||b.id+"_iframecontainer"),f=h.iframeHeight||d.offsetHeight),b.editorContainer=h.editorContainer),c.content_css&&L(R(c.content_css),function(a){b.contentCSS.push(b.documentBaseURI.toAbsolute(a))}),c.content_style&&b.contentStyles.push(c.content_style),c.content_editable)return d=h=null,b.initContentBody();document.domain&&location.hostname!= +document.domain&&(b.editorManager.relaxedDomain=document.domain);b.iframeHTML=c.doctype+"";c.document_base_url!=b.documentBaseUrl&&(b.iframeHTML+='');!C.caretAfter&&c.ie7_compat&&(b.iframeHTML+='');b.iframeHTML+='';for(d=0;b.contentCSS.length>d;d++)b.iframeHTML+='';b.contentCSS=[];d=c.body_id||"tinymce";-1!=d.indexOf("=")&&(d=b.getParam("body_id","","hash"),d=d[b.id]||d);c=c.body_class||"";-1!=c.indexOf("=")&&(c=b.getParam("body_class","","hash"),c=c[b.id]||"");b.iframeHTML+='
    ";b.editorManager.relaxedDomain&&(V||aa&&11>parseFloat(window.opera.version()))&&(l='javascript:(function(){document.open();document.domain="'+ +document.domain+'";var ed = window.parent.tinymce.get("'+b.id+'");document.write(ed.iframeHTML);document.close();ed.initContentBody();})()');H.add(h.iframeContainer,"iframe",{id:b.id+"_ifr",src:l||'javascript:""',frameBorder:"0",allowTransparency:"true",title:b.editorManager.translate("Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help"),style:{width:"100%",height:f,display:"block"}});b.contentAreaContainer=h.iframeContainer;h.editorContainer&&(H.get(h.editorContainer).style.display= +b.orgDisplay);H.get(b.id).style.display="none";H.setAttrib(b.id,"aria-hidden",!0);b.editorManager.relaxedDomain&&l||b.initContentBody();d=h=null},initContentBody:function(){var b=this,e=b.settings,f=H.get(b.id),h=b.getDoc(),p;e.inline||(b.getElement().style.visibility=b.orgVisibility);V&&b.editorManager.relaxedDomain||e.content_editable||(h.open(),h.write(b.iframeHTML),h.close(),b.editorManager.relaxedDomain&&(h.domain=b.editorManager.relaxedDomain));e.content_editable&&(H.addClass(f,"mce-content-body"), +f.tabIndex=-1,b.contentDocument=h=e.content_document||document,b.contentWindow=e.content_window||window,b.bodyElement=f,e.content_document=e.content_window=null,e.root_name=f.nodeName.toLowerCase());f=b.getBody();f.disabled=!0;e.readonly||(f.contentEditable=b.getParam("content_editable_state",!0));f.disabled=!1;b.schema=new B(e);b.dom=new c(h,{keep_values:!0,url_converter:b.convertURL,url_converter_scope:b,hex_colors:e.force_hex_style_colors,class_filter:e.class_filter,update_styles:!0,root_element:e.content_editable? +b.id:null,schema:b.schema,onSetAttrib:function(a){b.fire("SetAttrib",a)}});b.parser=new r(e,b.schema);b.parser.addAttributeFilter("src,href,style",function(a,c){for(var d=a.length,e,f=b.dom,g,h;d--;)e=a[d],g=e.attr(c),h="data-mce-"+c,e.attributes.map[h]||("style"===c?e.attr(h,f.serializeStyle(f.parseStyle(g),e.name)):e.attr(h,b.convertURL(g,c,e.name)))});b.parser.addNodeFilter("script",function(a){for(var b=a.length,c;b--;)c=a[b],c.attr("type","mce-"+(c.attr("type")||"text/javascript"))});b.parser.addNodeFilter("#cdata", +function(a){for(var b=a.length,c;b--;)c=a[b],c.type=8,c.name="#comment",c.value="[CDATA["+c.value+"]]"});b.parser.addNodeFilter("p,h1,h2,h3,h4,h5,h6,div",function(c){for(var d=c.length,e,f=b.schema.getNonEmptyElements();d--;)e=c[d],e.isEmpty(f)&&(e.empty().append(new a("br",1)).shortEnded=!0)});b.serializer=new d(e,b);b.selection=new k(b.dom,b.getWin(),b.serializer,b);b.formatter=new m(b);b.undoManager=new n(b);b.forceBlocks=new w(b);b.enterKey=new l(b);b.editorCommands=new u(b);b.fire("PreInit"); +e.browser_spellcheck||e.gecko_spellcheck||(h.body.spellcheck=!1);b.fire("PostRender");b.quirks=E(b);e.directionality&&(f.dir=e.directionality);e.nowrap&&(f.style.whiteSpace="nowrap");e.protect&&b.on("BeforeSetContent",function(a){L(e.protect,function(b){a.content=a.content.replace(b,function(a){return"\x3c!--mce:protected "+escape(a)+"--\x3e"})})});b.on("SetContent",function(){b.addVisual(b.getBody())});e.padd_empty_editor&&b.on("PostProcess",function(a){a.content=a.content.replace(/^(]*>( | |\s|\u00a0|)<\/p>[\r\n]*|
    [\r\n]*)$/, +"")});b.load({initial:!0,format:"html"});b.startContent=b.getContent({format:"raw"});b.initialized=!0;L(b._pendingNativeEvents,function(a){b.dom.bind(G(b,a),a,function(a){b.fire(a.type,a)})});b.fire("init");b.focus(!0);b.nodeChanged({initial:!0});b.execCallback("init_instance_callback",b);0
    ":'
    ',c.innerHTML=a,this.selection.select(c,!0),this.selection.collapse(!0),h)},getContent:function(a){var b,c=this.getBody();return a=a||{},a.format=a.format||"html",a.get= +!0,a.getInner=!0,a.no_events||this.fire("BeforeGetContent",a),b="raw"==a.format?c.innerHTML:"text"==a.format?c.innerText||c.textContent:this.serializer.serialize(c,a),a.content="text"!=a.format?D(b):b,a.no_events||this.fire("GetContent",a),a.content},insertContent:function(a){this.execCommand("mceInsertContent",!1,a)},isDirty:function(){return!this.isNotDirty&&this.undoManager.hasUndo()},getContainer:function(){return this.container||(this.container=H.get(this.editorContainer||this.id+"_parent")), +this.container},getContentAreaContainer:function(){return this.contentAreaContainer},getElement:function(){return H.get(this.settings.content_element||this.id)},getWin:function(){var a;return this.contentWindow||(a=H.get(this.id+"_ifr"),a&&(this.contentWindow=a.contentWindow)),this.contentWindow},getDoc:function(){var a;return this.contentDocument||(a=this.getWin(),a&&(this.contentDocument=a.document)),this.contentDocument},getBody:function(){return this.bodyElement||this.getDoc().body},convertURL:function(a, +b,c){var d=this.settings;return d.urlconverter_callback?this.execCallback("urlconverter_callback",a,c,!0,b):!d.convert_urls||c&&"LINK"==c.nodeName||0===a.indexOf("file:")||0===a.length?a:d.relative_urls?this.documentBaseURI.toRelative(a):this.documentBaseURI.toAbsolute(a,d.remove_script_host)},addVisual:function(a){var b=this,c=b.settings,d=b.dom,e;a=a||b.getBody();b.hasVisual===h&&(b.hasVisual=c.visual);L(d.select("table,a",a),function(a){var f;switch(a.nodeName){case "TABLE":return e=c.visual_table_class|| +"mce-item-table",f=d.getAttrib(a,"border"),f&&"0"!=f||(b.hasVisual?d.addClass(a,e):d.removeClass(a,e)),h;case "A":return d.getAttrib(a,"href",!1)||(f=d.getAttrib(a,"name")||a.id,e="mce-item-anchor",f&&(b.hasVisual?d.addClass(a,e):d.removeClass(a,e))),h}});b.fire("VisualAid",{element:a,hasVisual:b.hasVisual})},remove:function(){var a=this.getContainer(),b=this.getDoc();this.removed||(this.removed=1,V&&b&&b.execCommand("SelectAll"),this.save(),H.setStyle(this.id,"display",this.orgDisplay),this.settings.content_editable|| +(T.unbind(this.getWin()),T.unbind(this.getDoc())),T.unbind(this.getBody()),T.unbind(a),this.fire("remove"),this.editorManager.remove(this),H.remove(a))},bindNative:function(a){var b=this;b.initialized?b.dom.bind(G(b,a),a,function(c){b.fire(a,c)}):b._pendingNativeEvents?b._pendingNativeEvents.push(a):b._pendingNativeEvents=[a]},unbindNative:function(a){this.initialized&&this.dom.unbind(a)},destroy:function(a){var b;this.destroyed||(Q&&(T.unbind(this.getDoc()),T.unbind(this.getWin()),T.unbind(this.getBody())), +a||(this.editorManager.off(this._beforeUnload),this.theme&&this.theme.destroy&&this.theme.destroy(),this.selection.destroy(),this.dom.destroy()),b=this.formElement,b&&(b.submit=b._mceOldSubmit,b._mceOldSubmit=null,H.unbind(b,"submit reset",this.formEventDelegate)),this.contentAreaContainer=this.formElement=this.container=null,this.settings.content_element=this.bodyElement=this.contentDocument=this.contentWindow=null,this.selection&&(this.selection=this.selection.win=this.selection.dom=this.selection.dom.doc= +null),this.destroyed=1)},_refreshContentEditable:function(){var a,b;this._isHidden()&&(a=this.getBody(),b=a.parentNode,b.removeChild(a),b.appendChild(a),a.focus())},_isHidden:function(){var a;return Q?(a=this.selection.getSel(),!a||!a.rangeCount||0===a.rangeCount):0}},N(J.prototype,F),J});e("tinymce/util/I18n",[],function(){var c={};return{add:function(b,a){for(var d in a)c[d]=a[d]},translate:function(b){if(b===h)return b;if("string"!=typeof b&&b.raw)return b.raw;if(b.push){var a=b.slice(1);b=(c[b[0]]|| +b[0]).replace(/\{([^\}]+)\}/g,function(b,c){return a[c]})}return c[b]||b},data:c}});e("tinymce/FocusManager",["tinymce/dom/DOMUtils"],function(c){function b(a){a.on("AddEditor",function(d){var e=d.editor,h,k;e.on("init",function(){"onbeforedeactivate"in document?e.dom.bind(e.getBody(),"beforedeactivate",function(){var a=e.getDoc().selection;k=a&&a.createRange?a.createRange():e.selection.getRng()}):e.inline&&e.on("nodechange",function(){for(var a,b=document.activeElement;b;){if(b==e.getBody()){a=!0; +break}b=b.parentNode}a&&(k=e.selection.getRng())})});e.on("focusin",function(){var b=a.focusedEditor;h&&(e.selection.setRng(h),h=null);b!=e&&(b&&b.fire("blur",{focusedEditor:e}),e.fire("focus",{blurredEditor:b}),e.focus(!1),a.focusedEditor=e)});e.on("focusout",function(){h=k;window.setTimeout(function(){var d=a.focusedEditor;d!=e&&(h=null);var l;try{l=document.activeElement}catch(k){l=document.body}c.DOM.getParent(l,b.isEditorUIElement)||d!=e||(e.fire("blur",{focusedEditor:null}),a.focusedEditor= +null,h=null)},0)})})}return b.isEditorUIElement=function(a){return-1!==a.className.indexOf("mce-")},b});e("tinymce/EditorManager","tinymce/Editor tinymce/dom/DOMUtils tinymce/util/URI tinymce/Env tinymce/util/Tools tinymce/util/Observable tinymce/util/I18n tinymce/FocusManager".split(" "),function(c,b,a,d,e,k,m,n){var l=b.DOM,w=e.explode,u=e.each,p=e.extend,x=0,z;b={majorVersion:"4",minorVersion:"0b2",releaseDate:"2013-04-24",editors:[],i18n:m,activeEditor:null,setup:function(){var b,c,d="",e;if(c= +document.location.href.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,""),/[\/\\]$/.test(c)||(c+="/"),e=window.tinymce||window.tinyMCEPreInit)b=e.base||e.baseURL,d=e.suffix;else for(e=document.getElementsByTagName("script");0b;b++)if(c[b]==a){c.splice(b,1);break}return this.activeEditor==a&&(this.activeEditor=c[0]),a.destroy(),this.fire("RemoveEditor",{editor:a}),c.length||l.unbind(window,"beforeunload",z),a},execCommand:function(a,b,d){var e=this.get(d);switch(a){case "mceAddEditor":return this.get(d)||(new c(d,this.settings,this)).render(),!0;case "mceRemoveEditor":return e&&e.remove(),!0;case "mceToggleEditor":return e?(e.isHidden()?e.show():e.hide(),!0):(this.execCommand("mceAddEditor", +0,d),!0)}return this.activeEditor?this.activeEditor.execCommand(a,b,d):!1},triggerSave:function(){u(this.editors,function(a){a.save()})},addI18n:function(a,b){m.add(a,b)},translate:function(a){return m.translate(a)}};return p(b,k),b.setup(),window.tinymce=window.tinyMCE=b,b});e("tinymce/LegacyInput",["tinymce/EditorManager","tinymce/util/Tools"],function(c,b){var a=b.each,d=b.explode;c.on("AddEditor",function(b){var c=b.editor;c.on("preInit",function(){function b(c,d){a(d,function(a,b){a&&h.setStyle(c, +b,a)});h.rename(c,"span")}function e(b){h=c.dom;k.convert_fonts_to_spans&&a(h.select("font,u,strike",b.node),function(a){f[a.nodeName.toLowerCase()](h,a)})}var f,g,h,k=c.settings;k.inline_styles&&(g=d(k.font_size_legacy_values),f={font:function(a,c){b(c,{backgroundColor:c.style.backgroundColor,color:c.color,fontFamily:c.face,fontSize:g[parseInt(c.size,10)-1]})},u:function(a,c){b(c,{textDecoration:"underline"})},strike:function(a,c){b(c,{textDecoration:"line-through"})}},c.on("PreProcess SetContent", +e))})})});e("tinymce/util/XHR",[],function(){return{send:function(c){function b(){!c.async||4==a.readyState||1E4d&&200==a.status?c.success.call(c.success_scope,""+a.responseText,a,c):c.error&&c.error.call(c.error_scope,1E4d;d++)e+=(0d.length?null:(c=d.substring(m,e),m=e+1,c)}var b,d,p,m=0;k={};e.load(n);d=e.getAttribute(n)||"";do b=a(parseInt(a(),32)||0),null!==b&&(p=a(parseInt(a(),32)||0),k[b]=p);while(null!==b);c()}function a(){var a,b="",d;for(d in k)a=k[d],b+=(b?",":"")+d.length.toString(32)+","+d+","+a.length.toString(32)+","+a;e.setAttribute(n, +b);e.save(n);c()}var d,e,k,m,n;return window.localStorage?localStorage:(n="tinymce",e=document.documentElement,e.addBehavior("#default#userData"),d={key:function(a){return m[a]},getItem:function(a){return a in k?k[a]:null},setItem:function(b,c){k[b]=""+c;a()},removeItem:function(b){delete k[b];a()},clear:function(){k={};a()}},b(),d)});e("tinymce/Compat","tinymce/dom/DOMUtils tinymce/dom/EventUtils tinymce/dom/ScriptLoader tinymce/AddOnManager tinymce/util/Tools tinymce/Env".split(" "),function(c, +b,a,d,e,h){var k=window.tinymce;return k.DOM=c.DOM,k.ScriptLoader=a.ScriptLoader,k.PluginManager=d.PluginManager,k.ThemeManager=d.ThemeManager,k.dom=k.dom||{},k.dom.Event=b.Event,e.each(e,function(a,b){k[b]=a}),e.each(["isOpera","isWebKit","isIE","isGecko","isMac"],function(a){k[a]=h[a.substr(2).toLowerCase()]}),{}});e("tinymce/ui/Layout",["tinymce/util/Class","tinymce/util/Tools"],function(c,b){return c.extend({Defaults:{firstControlClass:"first",lastControlClass:"last"},init:function(a){this.settings= +b.extend({},this.Defaults,a)},preRender:function(a){a.addClass(this.settings.containerClass,"body")},applyClasses:function(a){var b=this.settings,c,e;a=a.items().filter(":visible");c=b.firstControlClass;e=b.lastControlClass;a.each(function(a){a.removeClass(c).removeClass(e);b.controlClass&&a.addClass(b.controlClass)});a.eq(0).addClass(c);a.eq(-1).addClass(e)},renderHtml:function(a){var b=this.settings,c,e="";return c=a.items(),c.eq(0).addClass(b.firstControlClass),c.eq(-1).addClass(b.lastControlClass), +c.each(function(a){b.controlClass&&a.addClass(b.controlClass);e+=a.renderHtml()}),e},recalc:function(){},postRender:function(){}})});e("tinymce/ui/AbsoluteLayout",["tinymce/ui/Layout"],function(c){return c.extend({Defaults:{containerClass:"abs-layout",controlClass:"abs-layout-item"},recalc:function(b){b.items().filter(":visible").each(function(a){var b=a.settings;a.layoutRect({x:b.x,y:b.y,w:b.w,h:b.h});a.recalc&&a.recalc()})},renderHtml:function(b){return'
    '+this._super(b)}})});e("tinymce/ui/Tooltip",["tinymce/ui/Control","tinymce/ui/Movable"],function(c,b){return c.extend({Mixins:[b],Defaults:{classes:"widget tooltip tooltip-n"},text:function(a){return a!==h?(this._value=a,this._rendered&&(this.getEl().lastChild.innerHTML=this.encode(a)),this):this._value},renderHtml:function(){var a=this.classPrefix;return'"},repaint:function(){var a,b;a=this.getEl().style;b=this._layoutRect;a.left=b.x+"px";a.top=b.y+"px";a.zIndex=131070}})});e("tinymce/ui/Widget",["tinymce/ui/Control","tinymce/ui/Tooltip"],function(c,b){var a;return c.extend({init:function(a){var b=this;b._super(a);b.canFocus=!0;a.tooltip&&b.on("mouseenter mouseleave",function(c){c.control==b&&"mouseenter"==c.type?b.tooltip().moveTo(-65535).text(a.tooltip).show().moveRel(b.getEl(),"bc tc"):b.tooltip().moveTo(-65535).hide()}); +b.aria("label",a.tooltip)},tooltip:function(){return a||(a=new b({type:"tooltip"}),a.renderTo(this.getContainerElm())),a},active:function(a){return void 0!==a&&(this.aria("pressed",a),this.toggleClass("active",a)),this._super(a)},disabled:function(a){return void 0!==a&&(this.aria("disabled",a),this.toggleClass("disabled",a)),this._super(a)},postRender:function(){var a=this,b=a.settings;a._rendered=!0;a._super();a.parent()||!b.width&&!b.height||(a.initLayoutRect(),a.repaint());b.autofocus&&setTimeout(function(){a.focus()}, +0)},remove:function(){this._super();a&&(a.remove(),a=null)}})});e("tinymce/ui/Button",["tinymce/ui/Widget"],function(c){return c.extend({Defaults:{classes:"widget btn",role:"button"},init:function(b){var a;this.on("click mousedown",function(a){a.preventDefault()});this._super(b);a=b.size;b.subtype&&this.addClass(b.subtype);a&&this.addClass("btn-"+a)},repaint:function(){var b=this.getEl().firstChild.style;b.width=b.height="100%";this._super()},renderHtml:function(){var b=this._id,a=this.classPrefix, +c=this.settings.icon,e="";return this.settings.image&&(c="none",e=" style=\"background-image: url('"+this.settings.image+"')\""),c=this.settings.icon?a+"ico "+a+"i-"+c:"",'
    "}})});e("tinymce/ui/ButtonGroup",["tinymce/ui/Container"],function(c){return c.extend({Defaults:{defaultType:"button",role:"toolbar"}, +renderHtml:function(){var b=this._layout;return this.addClass("btn-group"),this.preRender(),b.preRender(this),'
    '+(this.settings.html||"")+b.renderHtml(this)+"
    "}})});e("tinymce/ui/Checkbox",["tinymce/ui/Widget"],function(c){return c.extend({Defaults:{classes:"checkbox",role:"checkbox",checked:!1},init:function(b){var a=this;a._super(b);a.on("click mousedown",function(a){a.preventDefault()});a.on("click",function(b){b.preventDefault(); +a.disabled()||a.checked(!a.checked())});a.checked(a.settings.checked)},checked:function(b){return b!==h?(b?this.addClass("checked"):this.removeClass("checked"),this._checked=b,this.aria("checked",b),this):this._checked},value:function(b){return this.checked(b)},renderHtml:function(){var b=this._id,a=this.classPrefix;return'
    '+ +this.encode(this._text)+"
    "}})});e("tinymce/ui/CheckboxGroup",["tinymce/ui/Container"],function(c){return c.extend({})});e("tinymce/ui/PanelButton",["tinymce/ui/Button","tinymce/ui/FloatPanel"],function(c,b){return c.extend({showPanel:function(){var a=this,c=a.settings;c.panel.popover=!0;c.panel.autohide=!0;a.active(!0);a.panel?a.panel.show():a.panel=(new b(c.panel)).on("hide",function(){a.active(!1)}).parent(a).renderTo(a.getContainerElm()).reflow().moveRel(a.getEl(),c.popoverAlign|| +"bc-tc")},hidePanel:function(){this.panel&&this.panel.hide()},postRender:function(){var a=this;return a.on("click",function(b){b.control===a&&a.showPanel()}),a._super()}})});e("tinymce/ui/ColorButton",["tinymce/ui/PanelButton"],function(c){return c.extend({init:function(b){this._super(b);this.addClass("colorbutton")},showPreview:function(b){this.getEl("preview").style.backgroundColor=b},renderHtml:function(){var b=this._id,a=this.classPrefix,c=this.settings.icon?a+"ico "+a+"i-"+this.settings.icon: +"",e=this.settings.image?" style=\"background-image: url('"+this.settings.image+"')\"":"";return'
    "}})});e("tinymce/ui/ComboBox",["tinymce/ui/Widget","tinymce/ui/DomUtils"],function(c,b){return c.extend({init:function(a){var c=this;c._super(a); +c.addClass("combobox");c.on("click",function(a){for(a=a.target;a;)a.id&&-1!=a.id.indexOf("-open")&&c.fire("action"),a=a.parentNode});c.on("keydown",function(a){"INPUT"==a.target.nodeName&&13==a.keyCode&&c.parents().reverse().each(function(b){return a.preventDefault(),c.fire("change"),b.submit?(b.submit(),!1):h})});a.placeholder&&(c.addClass("placeholder"),c.on("focusin",function(){c._hasOnChange||(b.on(c.getEl("inp"),"change",function(){c.fire("change")}),c._hasOnChange=!0);c.hasClass("placeholder")&& +(c.getEl("inp").value="",c.removeClass("placeholder"))}),c.on("focusout",function(){0===c.value().length&&(c.getEl("inp").value=a.placeholder,c.addClass("placeholder"))}))},value:function(a){return a!==h?(this._value=a,this.removeClass("placeholder"),this._rendered&&(this.getEl("inp").value=a),this):this._rendered?(a=this.getEl("inp").value,a!=this.settings.placeholder?a:""):this._value},repaint:function(){var a=this.getEl(),c=this.getEl("open"),e=this.layoutRect();return c?b.css(a.firstChild,{width:e.w- +c.offsetWidth-10}):b.css(a.firstChild,{width:e.w-10}),this._super(),this},disabled:function(a){this._super(a);this._rendered&&(this.getEl().disabled=a)},focus:function(){this.getEl("inp").focus()},postRender:function(){var a=this;return b.on(this.getEl("inp"),"change",function(){a.fire("change")}),a._super()},renderHtml:function(){var a=this._id,b=this.settings,c=this.classPrefix,e=b.value||b.placeholder||"",g,h,l="";return g=b.icon?c+"ico "+c+"i-"+b.icon:"",h=this._text,(g||h)&&(l='
    ",this.addClass("has-open")),'
    '+l+"
    "}})});e("tinymce/ui/Path",["tinymce/ui/Control","tinymce/ui/KeyboardNavigation"],function(c,b){return c.extend({Defaults:{delimiter:"\u00bb"}, +init:function(a){var b=this;b._super(a);b.addClass("path");b.canFocus=!0;b.on("click",function(a){var c;(c=a.target.getAttribute("data-index"))&&b.fire("select",{value:b.data()[c],index:c})})},focus:function(){return this.keyNav=new b({root:this,enableLeftRight:!0}),this.keyNav.focusFirst(),this},data:function(a){return a!==h?(this._data=a,this.update(),this):this._data},update:function(){this.getEl().innerHTML=this._getPathHtml()},postRender:function(){this._super();this.data(this.settings.data)}, +renderHtml:function(){return'
    '+this._getPathHtml()+"
    "},_getPathHtml:function(){var a=this._data||[],b,c,e="",g=this.classPrefix;b=0;for(c=a.length;c>b;b++)e+=(0
    ":"")+'
    '+a[b].name+"
    ";return e||(e='
     
    '), +e}})});e("tinymce/ui/ElementPath",["tinymce/ui/Path","tinymce/EditorManager"],function(c,b){return c.extend({postRender:function(){function a(a){return 1===a.nodeType&&("BR"==a.nodeName||!!a.getAttribute("data-mce-bogus"))}var c=this,e=b.activeEditor;return c.on("select",function(b){for(var c=[],d=e.selection.getNode(),g=e.getBody();d&&(a(d)||c.push(d),d=d.parentNode,d!=g););e.focus();e.selection.select(c[c.length-1-b.index]);e.nodeChanged()}),e.on("nodeChange",function(b){var g=[];b=b.parents;for(var h= +b.length;h--;)if(!a(b[h])){var l=e.fire("ResolveName",{name:b[h].nodeName.toLowerCase(),target:b[h]});g.push({name:l.name})}c.data(g)}),c._super()}})});e("tinymce/ui/FormItem",["tinymce/ui/Container"],function(c){return c.extend({Defaults:{layout:"flex",align:"center",defaults:{flex:1}},renderHtml:function(){var b=this._layout,a=this.classPrefix;return this.addClass("formitem"),b.preRender(this),'
    '+(this.settings.title? +'
    '+this.settings.title+"
    ":"")+'
    '+(this.settings.html||"")+b.renderHtml(this)+"
    "}})});e("tinymce/ui/Form",["tinymce/ui/Container","tinymce/ui/FormItem"],function(c,b){return c.extend({Defaults:{containerCls:"form",layout:"flex",direction:"column",align:"stretch",flex:1,padding:20,labelGap:30,spacing:10},preRender:function(){var a=this;a.items().each(function(c){var e,g=c.settings.label; +g&&(e=new b({layout:"flex",autoResize:"overflow",defaults:{flex:1},items:[{type:"label",text:g,flex:0,forId:c._id}]}),e.type="formitem",c.settings.flex===h&&(c.settings.flex=1),a.replace(c,e),e.add(c))})},recalcLabels:function(){var a=0,b=[],c,e;if(!1!==this.settings.labelGapCalc)for(this.items().filter("formitem").each(function(c){c=c.items()[0];var e=c.getEl().clientWidth;a=e>a?e:a;b.push(c)}),e=this.settings.labelGap||0,c=b.length;c--;)b[c].settings.minWidth=a+e},visible:function(a){var b=this._super(a); +return!0===a&&this._rendered&&this.recalcLabels(),b},fromJSON:function(a){if(a)for(var b in a)this.find("#"+b).value(a[b]);return this},toJSON:function(){var a={};return this.find("*").each(function(b){var c=b.name();b=b.value();c&&b!==h&&(a[c]=b)}),a},submit:function(){return this.fire("submit",{data:this.toJSON()})},postRender:function(){this._super();this.recalcLabels();this.fromJSON(this.settings.data)}})});e("tinymce/ui/FieldSet",["tinymce/ui/Form"],function(c){return c.extend({Defaults:{containerCls:"fieldset", +layout:"flex",direction:"column",align:"stretch",flex:1,padding:"25 15 5 15",labelGap:30,spacing:10,border:1},renderHtml:function(){var b=this._layout,a=this.classPrefix;return this.preRender(),b.preRender(this),'
    '+(this.settings.title?''+this.settings.title+"":"")+'
    '+(this.settings.html|| +"")+b.renderHtml(this)+"
    "}})});e("tinymce/ui/FilePicker",["tinymce/ui/ComboBox"],function(c){return c.extend({init:function(b){var a=this,c=tinymce.activeEditor,e;b.spellcheck=!1;(e=c.settings.file_browser_callback)&&(b.icon="browse",b.onaction=function(){e(a.getEl("inp").id,a.getEl("inp").value,b.filetype,window)});a._super(b)}})});e("tinymce/ui/FitLayout",["tinymce/ui/AbsoluteLayout"],function(c){return c.extend({recalc:function(b){var a=b.layoutRect(),c=b.paddingBox();b.items().filter(":visible").each(function(b){b.layoutRect({x:c.left, +y:c.top,w:a.innerW-c.right-c.left,h:a.innerH-c.top-c.bottom});b.recalc&&b.recalc()})}})});e("tinymce/ui/FlexLayout",["tinymce/ui/AbsoluteLayout"],function(c){return c.extend({recalc:function(b){var a,c,e,g,h,k,l,m,u,p,x,z,y,B=[],r,E,C,A,F,I,G,J,H,O,S,N,L,R,P,D,K,T,Q=Math.max,V=Math.min;e=b.items().filter(":visible");g=b.layoutRect();h=b._paddingBox;k=b.settings;a=k.direction;l=k.align;m=k.pack;k=k.spacing||0;("row-reversed"==a||"column-reverse"==a)&&(e=e.set(e.toArray().reverse()),a=a.split("-")[0]); +"column"==a?(F="y",C="h",A="minH",I="maxH",J="innerH",G="top",H="deltaH",O="contentH",P="left",L="w",S="x",N="innerW",R="minW",D="right",K="deltaW",T="contentW"):(F="x",C="w",A="minW",I="maxW",J="innerW",G="left",H="deltaW",O="contentW",P="top",L="h",S="y",N="innerH",R="minH",D="bottom",K="deltaH",T="contentH");p=g[J]-h[G]-h[G];a=E=u=0;for(c=e.length;c>a;a++)x=e[a],z=x.layoutRect(),y=x.settings,y=y.flex,p-=c-1>a?k:0,0E&&(E=y);if(r={}, +r[A]=0>p?g[A]-p+g[H]:g[J]-p+g[H],r[R]=E+g[K],r[O]=g[J]-p,r[T]=E,r.minW=V(r.minW,g.maxW),r.minH=V(r.minH,g.maxH),r.minW=Q(r.minW,g.startMinWidth),r.minH=Q(r.minH,g.startMinHeight),!g.autoResize||r.minW==g.minW&&r.minH==g.minH){b=p/u;a=0;for(c=B.length;c>a;a++)x=B[a],z=x.layoutRect(),r=z[I],y=z[A]+Math.ceil(z.flex*b),y>r?(p-=z[I]-z[A],u-=z.flex,z.flex=0,z.maxFlexSize=r):z.maxFlexSize=0;b=p/u;B=h[G];r={};0===u&&("end"==m?B=p+h[G]:"center"==m?(B=Math.round(g[J]/2-(g[J]-p)/2)+h[G],0>B&&(B=h[G])):"justify"== +m&&(B=h[G],k=Math.floor(p/(e.length-1))));r[S]=h[P];a=0;for(c=e.length;c>a;a++)x=e[a],z=x.layoutRect(),y=z.maxFlexSize||z[A],"center"===l?r[S]=Math.round(g[N]/2-z[L]/2):"stretch"===l?(r[L]=Q(z[R]||0,g[N]-h[P]-h[D]),r[S]=h[P]):"end"===l&&(r[S]=g[N]-z[L]-h.top),0u;u++)F.push(0);for(p=0;c>p;p++)I.push(0);for(p=0;c>p;p++)for(u=0;e>u&&(m=g[p*e+u],m);u++)l=m.layoutRect(),x=l.minW,l=l.minH,F[u]=x>F[u]?x:F[u],I[p]=l>I[p]?l:I[p];l=h.innerW-y.left-y.right;for(u=x=0;e>u;u++)x+=F[u]+(0p;p++)u+=I[p]+(0u;u++)p+=a[u];else p=e;p=l/p;for(u=0;e>u;u++)F[u]+=a?Math.ceil(a[u]*p):p;x=y.top;for(p=0;c>p;p++){k=y.left;h=I[p]+b;for(u=0;e>u&&(m=g[p*e+u], +m);u++)z=m.settings,l=m.layoutRect(),a=F[u],l.x=k,l.y=x,B=z.alignH||C,"center"==B?l.x=k+a/2-l.w/2:"right"==B?l.x=k+a-l.w:"stretch"==B&&(l.w=a),B=z.alignV||A,"center"==B?l.y=x+h/2-l.h/2:"bottom"==B?l.y=x+h-l.h:"stretch"==B&&(l.h=h),m.layoutRect(l),k+=a+r,m.recalc&&m.recalc();x+=h+E}}else(k.w=k.minW,k.h=k.minH,b.layoutRect(k),this.recalc(b),null===b._lastRect)&&(c=b.parent())&&(c._lastRect=null,c.recalc())}})});e("tinymce/ui/Iframe",["tinymce/ui/Widget"],function(c){return c.extend({renderHtml:function(){return this.addClass("iframe"), +this.canFocus=!1,''},src:function(b){this.getEl().src=b},html:function(b){return this.getEl().contentWindow.document.body.innerHTML=b,this}})});e("tinymce/ui/Label",["tinymce/ui/Widget"],function(c){return c.extend({init:function(b){this._super(b);this.addClass("widget");this.addClass("label");this.canFocus=!1;b.multiline&&this.addClass("autoscroll");b.strong&& +this.addClass("strong")},initLayoutRect:function(){var b=this._super();return this.settings.multiline&&(this.getEl().offsetWidth>b.maxW&&(b.minW=b.maxW,this.addClass("multiline")),this.getEl().style.width=b.minW+"px",b.startMinH=b.h=b.minH=Math.min(b.maxH,this.getEl().offsetHeight)),b},disabled:function(b){return void 0!==b&&(this.toggleClass("label-disabled",b),this._rendered&&(this.getEl()[0].className=this.classes())),this._super(b)},repaint:function(){return this.settings.multiline||(this.getEl().style.lineHeight= +this.layoutRect().h+"px"),this._super()},text:function(b){return this._rendered&&b&&(this.getEl().innerHTML=this.encode(b)),this._super(b)},renderHtml:function(){var b=this.settings.forId;return'"}})});e("tinymce/ui/Toolbar",["tinymce/ui/Container","tinymce/ui/KeyboardNavigation"],function(c,b){return c.extend({Defaults:{role:"toolbar",layout:"flow"},init:function(a){this._super(a);this.addClass("toolbar")}, +postRender:function(){return this.items().addClass("toolbar-item"),this.keyNav=new b({root:this,enableLeftRight:!0}),this._super()}})});e("tinymce/ui/MenuBar",["tinymce/ui/Toolbar"],function(c){return c.extend({Defaults:{role:"menubar",containerCls:"menubar",defaults:{type:"menubutton"}}})});e("tinymce/ui/MenuButton",["tinymce/ui/Button","tinymce/ui/Factory","tinymce/ui/MenuBar"],function(c,b,a){var d=c.extend({init:function(a){this._renderOpen=!0;this._super(a);this.addClass("menubtn");this.aria("haspopup", +!0);this.hasPopup=!0},showMenu:function(){var a=this,c=a.settings,d;a.menu||(d=c.menu||[],d.length?d={type:"menu",items:d}:d.type=d.type||"menu",a.menu=b.create(d).parent(a).renderTo(a.getContainerElm()),a.fire("createmenu"),a.menu.reflow(),a.menu.on("cancel",function(b){b.control===a.menu&&a.focus()}),a.menu.on("show hide",function(b){b.control==a.menu&&a.activeMenu("show"==b.type)}).fire("show"),a.aria("expanded",!0));a.menu.show();a.menu.layoutRect({w:a.layoutRect().w});a.menu.moveRel(a.getEl(), +"bl-tl")},hideMenu:function(){this.menu&&(this.menu.items().each(function(a){a.hideMenu&&a.hideMenu()}),this.menu.hide(),this.aria("expanded",!1))},activeMenu:function(a){this.toggleClass("active",a)},renderHtml:function(){var b=this._id,c=this.classPrefix,d=this.settings.icon?c+"ico "+c+"i-"+this.settings.icon:"";return this.aria("role",this.parent()instanceof a?"menuitem":"button"),'
    '},postRender:function(){var a=this;return a.on("click",function(b){var c;if(c=b.control===a)a:{c=b.target;for(var d=a.getEl();c;){if(d===c){c=!0;break a}c=c.parentNode}c=!1}c&&(a.showMenu(),b.keyboard&&a.menu.items()[0].focus())}),a.on("mouseenter",function(b){var c=b.control;b=a.parent();var e;c&&b&&c instanceof d&&c.parent()==b&&(b.items().filter("MenuButton").each(function(a){a.hideMenu&& +a!=c&&(a.menu&&a.menu.visible()&&(e=!0),a.hideMenu())}),e&&c.showMenu())}),a._super()},text:function(a){var b,c;if(this._rendered)for(c=this.getEl("open").childNodes,b=0;c.length>b;b++)3==c[b].nodeType&&(c[b].data=this.encode(a));return this._super(a)},remove:function(){this._super();this.menu&&this.menu.remove()}});return d});e("tinymce/ui/ListBox",["tinymce/ui/MenuButton"],function(c){return c.extend({init:function(b){var a=this,c,e,g,h,k;if(a._values=c=b.values,c){for(e=0;c.length>e;e++)(g=c[e].selected|| +b.value===c[e].value)&&(h=h||c[e].text,a._value=c[e].value);b.menu=c}b.text=b.text||h||c[0].text;a._super(b);a.addClass("listbox");a.on("select",function(c){var d=c.control;k&&(c.lastControl=k);b.multiple?d.active(!d.active()):a.value(c.control.settings.value);k=d})},value:function(b){function a(b,g){b.items().each(function(b){(c=b.value()===g)&&(e=e||b.text());b.active(c);b.menu&&a(b.menu,g)})}var c,e,g,k;if(b!==h){if(this.menu)a(this.menu,b);else for(g=this.settings.menu,k=0;g.length>k;k++)(c=g[k].value== +b)&&(e=e||g[k].text),g[k].active=c;this.text(e)}return this._super(b)}})});e("tinymce/ui/MenuItem",["tinymce/ui/Widget","tinymce/ui/Factory"],function(c,b){return c.extend({Defaults:{border:0,role:"menuitem"},init:function(a){var b=this;b.hasPopup=!0;b._super(a);a=b.settings;b.addClass("menu-item");a.menu&&b.addClass("menu-item-expand");("-"===b._text||"|"===b._text)&&(b.addClass("menu-item-sep"),b.aria("role","separator"),b.canFocus=!1,b._text="-");a.selectable&&(b.aria("role","menuitemcheckbox"), +b.aria("checked",!0),b.addClass("menu-item-checkbox"),a.icon="selected");b.on("mousedown",function(a){a.preventDefault()});b.on("mouseenter click",function(c){c.control===b&&(a.menu||"click"!==c.type?(b.showMenu(),c.keyboard&&setTimeout(function(){b.menu.items()[0].focus()},0)):(b.parent().hideAll(),b.fire("cancel"),b.fire("select")))});a.menu&&b.aria("haspopup",!0)},hasMenus:function(){return!!this.settings.menu},showMenu:function(){var a=this,c=a.settings,e;a.parent().items().each(function(b){b!== +a&&b.hideMenu()});c.menu&&(a.menu?a.menu.show():(e=c.menu,e.length?e={type:"menu",items:e}:e.type=e.type||"menu",a.menu=b.create(e).parent(a).renderTo(a.getContainerElm()),a.menu.reflow(),a.menu.fire("show"),a.menu.on("cancel",function(){a.focus()}),a.menu.on("hide",function(b){b.control===a.menu&&a.removeClass("selected")})),a.menu._parentMenu=a.parent(),a.menu.addClass("menu-sub"),a.menu.moveRel(a.getEl(),"tr-tl"),a.addClass("selected"),a.aria("expanded",!0))},hideMenu:function(){return this.menu&& +(this.menu.items().each(function(a){a.hideMenu&&a.hideMenu()}),this.menu.hide(),this.aria("expanded",!1)),this},renderHtml:function(){var a=this._id,b=this.settings,c=this.classPrefix,e=this.encode(this._text),g=this.settings.icon;return g&&this.parent().addClass("menu-has-icons"),g=c+"ico "+c+"i-"+(this.settings.icon||"none"),'
    '+("-"!==e?' ':"")+("-"!==e?''+e+"":"")+(b.shortcut? +'
    '+b.shortcut+"
    ":"")+(b.menu?'
    ':"")+"
    "},postRender:function(){var a=this.settings.textStyle;if("function"==typeof a&&(a=a()),a){var b=this.getEl("text");b&&b.setAttribute("style",a)}return this._super()},remove:function(){this._super();this.menu&&this.menu.remove()}})});e("tinymce/ui/Menu",["tinymce/ui/FloatPanel","tinymce/ui/KeyboardNavigation","tinymce/ui/MenuItem"],function(c,b,a){return c.extend({Defaults:{defaultType:"menuitem", +border:1,layout:"stack",role:"menu"},init:function(c){var e=this;c.autohide=!0;e._super(c);e.addClass("menu");e.keyNav=new b({root:e,enableUpDown:!0,enableLeftRight:!0,leftAction:function(){e.parent()instanceof a&&e.keyNav.cancel()},onCancel:function(){e.fire("cancel",{},!1);e.hide()}})},repaint:function(){return this.toggleClass("menu-align",!0),this._super(),this.getEl().style.height="",this.getEl("body").style.height="",this},cancel:function(){this.hideAll();this.fire("cancel");this.fire("select")}, +hideAll:function(){return this.find("menuitem").exec("hideMenu"),this._super()},preRender:function(){var a=this;return a.items().each(function(b){b=b.settings;return b.icon||b.selectable?(a._hasIcons=!0,!1):h}),a._super()}})});e("tinymce/ui/Radio",["tinymce/ui/Widget"],function(c){return c.extend({Defaults:{classes:"radio",checked:!1},init:function(b){var a=this;a._super(b);a.on("click",function(b){b.preventDefault();a.disabled()||a.checked()||(a.parent().items().filter("radio:checked").exec("checked", +!1),a.checked(!0))});a.checked(b.checked)},checked:function(b){return b!==h?(b?this.addClass("checked"):this.removeClass("checked"),this._checked=b,this):this._checked},renderHtml:function(){var b=this.classPrefix;return'"}})});e("tinymce/ui/RadioGroup",["tinymce/ui/Container"],function(c){return c.extend({})});e("tinymce/ui/ResizeHandle",["tinymce/ui/Widget","tinymce/ui/DragHelper", +"tinymce/ui/DomUtils"],function(c,b,a){return c.extend({renderHtml:function(){var a=this.classPrefix;return this.addClass("resizehandle"),this.settings.both&&this.addClass("resizehandle-both"),this.canFocus=!1,'
    '},postRender:function(){function c(a){return{width:a.clientWidth,height:a.clientHeight}}var e=this,g,h=e.settings.editor;e._super();e.resizeDragHelper=new b(this._id,{start:function(){g=c(h.getContentAreaContainer().firstChild)}, +drag:function(b){var l=g.width+b.deltaX;b=g.height+b.deltaY;var k,m,p,x,z=h.settings;k=h.getContainer();m=h.getContentAreaContainer().firstChild;p=c(k);x=c(m);l=Math.max(z.min_width||100,l);b=Math.max(z.min_height||100,b);l=Math.min(z.max_width||65535,l);b=Math.min(z.max_height||65535,b);e.settings.both&&a.css(k,"width",l+(p.width-x.width));a.css(k,"height",b+(p.height-x.height));e.settings.both&&a.css(m,"width",l);a.css(m,"height",b);h.fire("ResizeEditor")},end:function(){}})}})});e("tinymce/ui/Spacer", +["tinymce/ui/Widget"],function(c){return c.extend({renderHtml:function(){return this.addClass("spacer"),this.canFocus=!1,'
    '}})});e("tinymce/ui/SplitButton",["tinymce/ui/MenuButton","tinymce/dom/DOMUtils"],function(c,b){var a=b.DOM;return c.extend({Defaults:{classes:"widget btn splitbtn",role:"splitbutton"},repaint:function(){var b=this.getEl(),c=this.layoutRect(),e,g,h;return this._super(),e=b.firstChild,g=b.lastChild,a.css(e,{width:c.w-g.offsetWidth, +height:c.h-2}),a.css(g,{height:c.h-2}),h=e.firstChild.style,h.width=h.height="100%",h=g.firstChild.style,h.width=h.height="100%",this},activeMenu:function(b){a.toggleClass(this.getEl().lastChild,this.classPrefix+"active",b)},renderHtml:function(){var a=this.classPrefix,b=this.settings.icon?a+"ico "+a+"i-"+this.settings.icon:"";return'
    '},postRender:function(){var b=this.settings.onclick;return this.on("click",function(c){c.control!=this||a.getParent(c.target,"."+this.classPrefix+"open")||(c.stopImmediatePropagation(),b.call(this,c))}),delete this.settings.onclick,this._super()}})});e("tinymce/ui/StackLayout",["tinymce/ui/FlowLayout"],function(c){return c.extend({Defaults:{containerClass:"stack-layout", +controlClass:"stack-layout-item",endClass:"break"}})});e("tinymce/ui/TabPanel",["tinymce/ui/Panel","tinymce/ui/DomUtils"],function(c,b){"use stict";return c.extend({lastIdx:0,Defaults:{layout:"absolute",defaults:{type:"panel"}},activateTab:function(a){this.activeTabId&&b.removeClass(this.getEl(this.activeTabId),this.classPrefix+"active");this.activeTabId="t"+a;b.addClass(this.getEl("t"+a),this.classPrefix+"active");a!=this.lastIdx&&(this.items()[this.lastIdx].hide(),this.lastIdx=a);this.items()[a].show().fire("showtab"); +this.reflow()},renderHtml:function(){var a=this,b=a._layout,c="",e=a.classPrefix;return a.preRender(),b.preRender(a),a.items().each(function(b,d){c+='
    '+a.encode(b.settings.title)+"
    "}),'
    '+c+'
    '+b.renderHtml(a)+"
    "},postRender:function(){var a=this; +a._super();a.settings.activeTab=a.settings.activeTab||0;a.activateTab(a.settings.activeTab);this.on("click",function(b){var c=b.target.parentNode;if(b.target.parentNode.id==a._id+"-head")for(var e=c.childNodes.length;e--;)c.childNodes[e]==b.target&&a.activateTab(e)})},initLayoutRect:function(){var a=this,b,c,e;c=e=0;a.items().each(function(b,d){c=Math.max(c,b.layoutRect().minW);e=Math.max(e,b.layoutRect().minH);a.settings.activeTab!=d&&b.hide()});a.items().each(function(a){a.settings.x=0;a.settings.y= +0;a.settings.w=c;a.settings.h=e;a.layoutRect({x:0,y:0,w:c,h:e})});var g=a.getEl("head").offsetHeight;return a.settings.minWidth=c,a.settings.minHeight=e+g,b=a._super(),b.deltaH+=a.getEl("head").offsetHeight,b.innerH=b.h-b.deltaH,b}})});e("tinymce/ui/TextBox",["tinymce/ui/Widget","tinymce/ui/DomUtils"],function(c,b){return c.extend({init:function(a){var b=this;b._super(a);b._value=a.value||"";b.addClass("textbox");a.multiline?b.addClass("multiline"):b.on("keydown",function(a){13==a.keyCode&&b.parents().reverse().each(function(b){return a.preventDefault(), +b.submit?(b.submit(),!1):h})})},value:function(a){return a!==h?(this._value=a,this._rendered&&(this.getEl().value=a),this):this._rendered?this.getEl().value:this._value},repaint:function(){var a,b,c,e=0,g=0,h;return a=this.getEl().style,b=this._layoutRect,h=this._lastRepaintRect||{},c=this._borderBox,e=c.left+c.right+8,g=c.top+c.bottom+(this.settings.multiline?8:0),b.x!==h.x&&(a.left=b.x+"px",h.x=b.x),b.y!==h.y&&(a.top=b.y+"px",h.y=b.y),b.w!==h.w&&(a.width=b.w-e+"px",h.w=b.w),b.h!==h.h&&(a.height= +b.h-g+"px",h.h=b.h),this._lastRepaintRect=h,this.fire("repaint",{},!1),this},renderHtml:function(){var a=this._id,b=this.settings,c=this.encode(this._value,!1),e="";return"spellcheck"in b&&(e+=' spellcheck="'+b.spellcheck+'"'),b.maxLength&&(e+=' maxlength="'+b.maxLength+'"'),b.size&&(e+=' size="'+b.size+'"'),b.subtype&&(e+=' type="'+b.subtype+'"'),b.multiline?'":'"},postRender:function(){var a=this;return b.on(a.getEl(),"change",function(b){a.fire("change",b)}),a._super()}})});e("tinymce/ui/Throbber",["tinymce/ui/DomUtils"],function(c){return function(b){var a=this,d;a.show=function(e){return a.hide(),d=!0,window.setTimeout(function(){d&&b.appendChild(c.createFragment('
    '))},e||0),a};a.hide=function(){var c=b.lastChild;return c&&-1!=c.className.indexOf("throbber")&& +c.parentNode.removeChild(c),d=!1,a}}});(function(e){for(var b=0;e.length>b;b++){for(var a=c,d=e[b],f=d.split(/[.\/]/),m=0;f.length-1>m;++m)a[f[m]]===h&&(a[f[m]]={}),a=a[f[m]];a[f[f.length-1]]=k[d]}})("tinymce/dom/EventUtils tinymce/dom/Sizzle tinymce/dom/DomQuery tinymce/html/Styles tinymce/dom/TreeWalker tinymce/util/Tools tinymce/dom/Range tinymce/html/Entities tinymce/Env tinymce/dom/DOMUtils tinymce/dom/ScriptLoader tinymce/AddOnManager tinymce/html/Node tinymce/html/Schema tinymce/html/SaxParser tinymce/html/DomParser tinymce/html/Writer tinymce/html/Serializer tinymce/dom/Serializer tinymce/dom/TridentSelection tinymce/util/VK tinymce/dom/ControlSelection tinymce/dom/Selection tinymce/dom/RangeUtils tinymce/Formatter tinymce/UndoManager tinymce/EnterKey tinymce/ForceBlocks tinymce/EditorCommands tinymce/util/URI tinymce/util/Class tinymce/ui/Selector tinymce/ui/Collection tinymce/ui/DomUtils tinymce/ui/Control tinymce/ui/Factory tinymce/ui/Container tinymce/ui/DragHelper tinymce/ui/Scrollable tinymce/ui/Panel tinymce/ui/Movable tinymce/ui/Resizable tinymce/ui/FloatPanel tinymce/ui/KeyboardNavigation tinymce/ui/Window tinymce/ui/MessageBox tinymce/WindowManager tinymce/util/Quirks tinymce/util/Observable tinymce/Shortcuts tinymce/Editor tinymce/util/I18n tinymce/FocusManager tinymce/EditorManager tinymce/LegacyInput tinymce/util/XHR tinymce/util/JSON tinymce/util/JSONRequest tinymce/util/JSONP tinymce/util/LocalStorage tinymce/Compat tinymce/ui/Layout tinymce/ui/AbsoluteLayout tinymce/ui/Tooltip tinymce/ui/Widget tinymce/ui/Button tinymce/ui/ButtonGroup tinymce/ui/Checkbox tinymce/ui/CheckboxGroup tinymce/ui/PanelButton tinymce/ui/ColorButton tinymce/ui/ComboBox tinymce/ui/Path tinymce/ui/ElementPath tinymce/ui/FormItem tinymce/ui/Form tinymce/ui/FieldSet tinymce/ui/FilePicker tinymce/ui/FitLayout tinymce/ui/FlexLayout tinymce/ui/FlowLayout tinymce/ui/FormatControls tinymce/ui/GridLayout tinymce/ui/Iframe tinymce/ui/Label tinymce/ui/Toolbar tinymce/ui/MenuBar tinymce/ui/MenuButton tinymce/ui/ListBox tinymce/ui/MenuItem tinymce/ui/Menu tinymce/ui/Radio tinymce/ui/RadioGroup tinymce/ui/ResizeHandle tinymce/ui/Spacer tinymce/ui/SplitButton tinymce/ui/StackLayout tinymce/ui/TabPanel tinymce/ui/TextBox tinymce/ui/Throbber".split(" "))})(this); +(function(){var c=this,h=c._,m={},e=Array.prototype,k=Object.prototype,g=e.push,b=e.slice,a=e.concat,d=k.toString,f=k.hasOwnProperty,q=e.forEach,v=e.map,n=e.reduce,l=e.reduceRight,w=e.filter,u=e.every,p=e.some,x=e.indexOf,z=e.lastIndexOf,k=Array.isArray,y=Object.keys,B=Function.prototype.bind,r=function(a){return a instanceof r?a:this instanceof r?(this._wrapped=a,void 0):new r(a)};"undefined"!=typeof exports?("undefined"!=typeof module&&module.exports&&(exports=module.exports=r),exports._=r):c._= +r;r.VERSION="1.4.3";var E=r.each=r.forEach=function(a,b,c){if(null!=a)if(q&&a.forEach===q)a.forEach(b,c);else if(a.length===+a.length)for(var d=0,e=a.length;e>d&&b.call(c,a[d],d,a)!==m;d++);else for(d in a)if(r.has(a,d)&&b.call(c,a[d],d,a)===m)break};r.map=r.collect=function(a,b,c){var d=[];return null==a?d:v&&a.map===v?a.map(b,c):(E(a,function(a,e,f){d[d.length]=b.call(c,a,e,f)}),d)};r.reduce=r.foldl=r.inject=function(a,b,c,d){var e=2a.length)return Math.max.apply(Math,a);if(!b&&r.isEmpty(a))return-1/0;var d={computed:-1/0,value:-1/0};return E(a,function(a,e,f){e=b?b.call(c,a,e,f):a;e>=d.computed&&(d={value:a,computed:e})}),d.value};r.min=function(a,b,c){if(!b&&r.isArray(a)&&a[0]===+a[0]&&65535>a.length)return Math.min.apply(Math,a);if(!b&&r.isEmpty(a))return 1/ +0;var d={computed:1/0,value:1/0};return E(a,function(a,e,f){e=b?b.call(c,a,e,f):a;d.computed>e&&(d={value:a,computed:e})}),d.value};r.shuffle=function(a){var b,c=0,d=[];return E(a,function(a){b=r.random(c++);d[c-1]=d[b];d[b]=a}),d};var A=function(a){return r.isFunction(a)?a:function(b){return b[a]}};r.sortBy=function(a,b,c){var d=A(b);return r.pluck(r.map(a,function(a,b,e){return{value:a,index:b,criteria:d.call(c,a,b,e)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;if(c!==d){if(c>d||void 0=== +c)return 1;if(d>c||void 0===d)return-1}return a.indexe;){var g=e+f>>>1;b>c.call(d,a[g])? +e=g+1:f=g}return e};r.toArray=function(a){return a?r.isArray(a)?b.call(a):a.length===+a.length?r.map(a,r.identity):r.values(a):[]};r.size=function(a){return null==a?0:a.length===+a.length?a.length:r.keys(a).length};r.first=r.head=r.take=function(a,c,d){return null==a?void 0:null==c||d?a[0]:b.call(a,0,c)};r.initial=function(a,c,d){return b.call(a,0,a.length-(null==c||d?1:c))};r.last=function(a,c,d){return null==a?void 0:null==c||d?a[a.length-1]:b.call(a,Math.max(a.length-c,0))};r.rest=r.tail=r.drop= +function(a,c,d){return b.call(a,null==c||d?1:c)};r.compact=function(a){return r.filter(a,r.identity)};var I=function(a,b,c){return E(a,function(a){r.isArray(a)?b?g.apply(c,a):I(a,b,c):c.push(a)}),c};r.flatten=function(a,b){return I(a,b,[])};r.without=function(a){return r.difference(a,b.call(arguments,1))};r.uniq=r.unique=function(a,b,c,d){r.isFunction(b)&&(d=c,c=b,b=!1);c=c?r.map(a,c,d):a;var e=[],f=[];return E(c,function(c,d){(b?d&&f[f.length-1]===c:r.contains(f,c))||(f.push(c),e.push(a[d]))}),e}; +r.union=function(){return r.uniq(a.apply(e,arguments))};r.intersection=function(a){var c=b.call(arguments,1);return r.filter(r.uniq(a),function(a){return r.every(c,function(b){return 0<=r.indexOf(b,a)})})};r.difference=function(c){var d=a.apply(e,b.call(arguments,1));return r.filter(c,function(a){return!r.contains(d,a)})};r.zip=function(){for(var a=b.call(arguments),c=r.max(r.pluck(a,"length")),d=Array(c),e=0;c>e;e++)d[e]=r.pluck(a,""+e);return d};r.object=function(a,b){if(null==a)return{};for(var c= +{},d=0,e=a.length;e>d;d++)b?c[a[d]]=b[d]:c[a[d][0]]=a[d][1];return c};r.indexOf=function(a,b,c){if(null==a)return-1;var d=0,e=a.length;if(c){if("number"!=typeof c)return d=r.sortedIndex(a,b),a[d]===b?d:-1;d=0>c?Math.max(0,e+c):c}if(x&&a.indexOf===x)return a.indexOf(b,c);for(;e>d;d++)if(a[d]===b)return d;return-1};r.lastIndexOf=function(a,b,c){if(null==a)return-1;var d=null!=c;if(z&&a.lastIndexOf===z)return d?a.lastIndexOf(b,c):a.lastIndexOf(b);for(c=d?c:a.length;c--;)if(a[c]===b)return c;return-1}; +r.range=function(a,b,c){1>=arguments.length&&(b=a||0,a=0);c=arguments[2]||1;for(var d=Math.max(Math.ceil((b-a)/c),0),e=0,f=Array(d);d>e;)f[e++]=a,a+=c;return f};var G=function(){};r.bind=function(a,c){var d,e;if(a.bind===B&&B)return B.apply(a,b.call(arguments,1));if(!r.isFunction(a))throw new TypeError;return d=b.call(arguments,2),e=function(){if(!(this instanceof e))return a.apply(c,d.concat(b.call(arguments)));G.prototype=a.prototype;var f=new G;G.prototype=null;var g=a.apply(f,d.concat(b.call(arguments))); +return Object(g)===g?g:f}};r.bindAll=function(a){var c=b.call(arguments,1);return 0==c.length&&(c=r.functions(a)),E(c,function(b){a[b]=r.bind(a[b],a)}),a};r.memoize=function(a,b){var c={};return b||(b=r.identity),function(){var d=b.apply(this,arguments);return r.has(c,d)?c[d]:c[d]=a.apply(this,arguments)}};r.delay=function(a,c){var d=b.call(arguments,2);return setTimeout(function(){return a.apply(null,d)},c)};r.defer=function(a){return r.delay.apply(r,[a,1].concat(b.call(arguments,1)))};r.throttle= +function(a,b){var c,d,e,f,g=0,h=function(){g=new Date;e=null;f=a.apply(c,d)};return function(){var l=new Date,k=b-(l-g);return c=this,d=arguments,0>=k?(clearTimeout(e),e=null,g=l,f=a.apply(c,d)):e||(e=setTimeout(h,k)),f}};r.debounce=function(a,b,c){var d,e;return function(){var f=this,g=arguments,h=c&&!d;return clearTimeout(d),d=setTimeout(function(){d=null;c||(e=a.apply(f,g))},b),h&&(e=a.apply(f,g)),e}};r.once=function(a){var b,c=!1;return function(){return c?b:(c=!0,b=a.apply(this,arguments),a= +null,b)}};r.wrap=function(a,b){return function(){var c=[a];return g.apply(c,arguments),b.apply(this,c)}};r.compose=function(){var a=arguments;return function(){for(var b=arguments,c=a.length-1;0<=c;c--)b=[a[c].apply(this,b)];return b[0]}};r.after=function(a,b){return 0>=a?b():function(){return 1>--a?b.apply(this,arguments):void 0}};r.keys=y||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var b=[],c;for(c in a)r.has(a,c)&&(b[b.length]=c);return b};r.values=function(a){var b=[], +c;for(c in a)r.has(a,c)&&b.push(a[c]);return b};r.pairs=function(a){var b=[],c;for(c in a)r.has(a,c)&&b.push([c,a[c]]);return b};r.invert=function(a){var b={},c;for(c in a)r.has(a,c)&&(b[a[c]]=c);return b};r.functions=r.methods=function(a){var b=[],c;for(c in a)r.isFunction(a[c])&&b.push(c);return b.sort()};r.extend=function(a){return E(b.call(arguments,1),function(b){if(b)for(var c in b)a[c]=b[c]}),a};r.pick=function(c){var d={},f=a.apply(e,b.call(arguments,1));return E(f,function(a){a in c&&(d[a]= +c[a])}),d};r.omit=function(c){var d={},f=a.apply(e,b.call(arguments,1)),g;for(g in c)r.contains(f,g)||(d[g]=c[g]);return d};r.defaults=function(a){return E(b.call(arguments,1),function(b){if(b)for(var c in b)null==a[c]&&(a[c]=b[c])}),a};r.clone=function(a){return r.isObject(a)?r.isArray(a)?a.slice():r.extend({},a):a};r.tap=function(a,b){return b(a),a};var J=function(a,b,c,e){if(a===b)return 0!==a||1/a==1/b;if(null==a||null==b)return a===b;a instanceof r&&(a=a._wrapped);b instanceof r&&(b=b._wrapped); +var f=d.call(a);if(f!=d.call(b))return!1;switch(f){case "[object String]":return a==b+"";case "[object Number]":return a!=+a?b!=+b:0==a?1/a==1/b:a==+b;case "[object Date]":case "[object Boolean]":return+a==+b;case "[object RegExp]":return a.source==b.source&&a.global==b.global&&a.multiline==b.multiline&&a.ignoreCase==b.ignoreCase}if("object"!=typeof a||"object"!=typeof b)return!1;for(var g=c.length;g--;)if(c[g]==a)return e[g]==b;c.push(a);e.push(b);var g=0,h=!0;if("[object Array]"==f){if(g=a.length, +h=g==b.length)for(;g--&&(h=J(a[g],b[g],c,e)););}else{var f=a.constructor,l=b.constructor;if(f!==l&&!(r.isFunction(f)&&f instanceof f&&r.isFunction(l)&&l instanceof l))return!1;for(var k in a)if(r.has(a,k)&&(g++,!(h=r.has(b,k)&&J(a[k],b[k],c,e))))break;if(h){for(k in b)if(r.has(b,k)&&!g--)break;h=!g}}return c.pop(),e.pop(),h};r.isEqual=function(a,b){return J(a,b,[],[])};r.isEmpty=function(a){if(null==a)return!0;if(r.isArray(a)||r.isString(a))return 0===a.length;for(var b in a)if(r.has(a,b))return!1; +return!0};r.isElement=function(a){return!(!a||1!==a.nodeType)};r.isArray=k||function(a){return"[object Array]"==d.call(a)};r.isObject=function(a){return a===Object(a)};E("Arguments Function String Number Date RegExp".split(" "),function(a){r["is"+a]=function(b){return d.call(b)=="[object "+a+"]"}});r.isArguments(arguments)||(r.isArguments=function(a){return!(!a||!r.has(a,"callee"))});r.isFunction=function(a){return"function"==typeof a};r.isFinite=function(a){return isFinite(a)&&!isNaN(parseFloat(a))}; +r.isNaN=function(a){return r.isNumber(a)&&a!=+a};r.isBoolean=function(a){return!0===a||!1===a||"[object Boolean]"==d.call(a)};r.isNull=function(a){return null===a};r.isUndefined=function(a){return void 0===a};r.has=function(a,b){return f.call(a,b)};r.noConflict=function(){return c._=h,this};r.identity=function(a){return a};r.times=function(a,b,c){for(var d=Array(a),e=0;a>e;e++)d[e]=b.call(c,e);return d};r.random=function(a,b){return null==b&&(b=a,a=0),a+(0|Math.random()*(b-a+1))};var H={escape:{"&":"&", +"<":"<",">":">",'"':""","'":"'","/":"/"}};H.unescape=r.invert(H.escape);var O={escape:RegExp("["+r.keys(H.escape).join("")+"]","g"),unescape:RegExp("("+r.keys(H.unescape).join("|")+")","g")};r.each(["escape","unescape"],function(a){r[a]=function(b){return null==b?"":(""+b).replace(O[a],function(b){return H[a][b]})}});r.result=function(a,b){if(null==a)return null;var c=a[b];return r.isFunction(c)?c.call(a):c};r.mixin=function(a){E(r.functions(a),function(b){var c=r[b]=a[b];r.prototype[b]= +function(){var a=[this._wrapped];return g.apply(a,arguments),P.call(this,c.apply(r,a))}})};var S=0;r.uniqueId=function(a){var b=""+ ++S;return a?a+b:b};r.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var N=/(.)^/,L={"'":"'","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},R=/\\|'|\r|\n|\t|\u2028|\u2029/g;r.template=function(a,b,c){c=r.defaults({},c,r.templateSettings);var d=RegExp([(c.escape||N).source,(c.interpolate|| +N).source,(c.evaluate||N).source].join("|")+"|$","g"),e=0,f="__p+='";a.replace(d,function(b,c,d,g,h){return f+=a.slice(e,h).replace(R,function(a){return"\\"+L[a]}),c&&(f+="'+\n((__t=("+c+"))==null?'':_.escape(__t))+\n'"),d&&(f+="'+\n((__t=("+d+"))==null?'':__t)+\n'"),g&&(f+="';\n"+g+"\n__p+='"),e=h+b.length,b});f+="';\n";c.variable||(f="with(obj||{}){\n"+f+"}\n");f="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+f+"return __p;\n";try{var g=Function(c.variable|| +"obj","_",f)}catch(h){throw h.source=f,h;}if(b)return g(b,r);b=function(a){return g.call(this,a,r)};return b.source="function("+(c.variable||"obj")+"){\n"+f+"}",b};r.chain=function(a){return r(a).chain()};var P=function(a){return this._chain?r(a).chain():a};r.mixin(r);E("pop push reverse shift sort splice unshift".split(" "),function(a){var b=e[a];r.prototype[a]=function(){var c=this._wrapped;return b.apply(c,arguments),"shift"!=a&&"splice"!=a||0!==c.length||delete c[0],P.call(this,c)}});E(["concat", +"join","slice"],function(a){var b=e[a];r.prototype[a]=function(){return P.call(this,b.apply(this._wrapped,arguments))}});r.extend(r.prototype,{chain:function(){return this._chain=!0,this},value:function(){return this._wrapped}})}).call(this); +(function(c){function h(a,b,c,d){var e=c.lang();return e[a].call?e[a](c,d):e[a][b]}function m(b,c){return function(d){return a(b.call(this,d),c)}}function e(a){return function(b){b=a.call(this,b);return b+this.lang().ordinal(b)}}function k(a,b,c){this._d=a;this._isUTC=!!b;this._a=a._a||null;this._lang=c||!1}function g(a){var c=this._data={},d=a.years||a.y||0,e=a.months||a.M||0,f=a.weeks||a.w||0,g=a.days||a.d||0,h=a.hours||a.h||0,l=a.minutes||a.m||0,k=a.seconds||a.s||0;a=a.milliseconds||a.ms||0;this._milliseconds= +a+1E3*k+6E4*l+36E5*h;this._days=g+7*f;this._months=e+12*d;c.milliseconds=a%1E3;k+=b(a/1E3);c.seconds=k%60;l+=b(k/60);c.minutes=l%60;h+=b(l/60);c.hours=h%24;g+=b(h/24);g+=7*f;c.days=g%30;e+=b(g/30);c.months=e%12;d+=b(e/12);c.years=d;this._lang=!1}function b(a){return 0>a?Math.ceil(a):Math.floor(a)}function a(a,b){for(var c=a+"";c.lengthe;e++)g[e]=a[e]=null==a[e]?2===e?1:0:a[e];return a[7]=g[7]=b,null!=a[8]&&(g[8]=a[8]),a[3]+=c||0,a[4]+=d||0,f=new Date(0),b?(f.setUTCFullYear(a[0],a[1],a[2]),f.setUTCHours(a[3],a[4],a[5],a[6])):(f.setFullYear(a[0], +a[1],a[2]),f.setHours(a[3],a[4],a[5],a[6])),f._a=g,f}function n(a,b){var c,d,e=[];!b&&J&&(b=require("./lang/"+a));for(c=0;cc;c++)d=C([2E3,c]),e[c]=new RegExp("^"+(b.months[c]||b.months(d,""))+"|^"+(b.monthsShort[c]||b.monthsShort(d,"")).replace(".",""),"i");return b.monthsParse=b.monthsParse||e,I[a]=b,b}function l(a){return(a="string"==typeof a&&a||a&&a._lang||null)?I[a]||n(a):C}function w(a){return a.match(/\[.*\]/)?a.replace(/^\[|\]$/g,""):a.replace(/\\/g, +"")}function u(a){var b=a.match(S),c,d;c=0;for(d=b.length;cp;p++)if(l().monthsParse[p].test(g)){h[1]=p;n=!0;break}n||(h[8]=!1);break;case "D":case "DD":case "DDD":case "DDDD":null!=g&&(h[2]=~~g);break;case "YY":h[0]=~~g+(70<~~g?1900:2E3);break;case "YYYY":h[0]=~~Math.abs(g);break;case "a":case "A":k.isPm="pm"===(g+"").toLowerCase();break;case "H":case "HH":case "h":case "hh":h[3]=~~g;break;case "m":case "mm":h[4]=~~g;break;case "s":case "ss":h[5]=~~g;break;case "S":case "SS":case "SSS":h[6]=~~(1E3*("0."+g));break;case "Z":case "ZZ":k.isUTC=!0,(p=(g+ +"").match(Z))&&p[1]&&(k.tzh=~~p[1]),p&&p[2]&&(k.tzm=~~p[2]),p&&"+"===p[0]&&(k.tzh=-k.tzh,k.tzm=-k.tzm)}null==g&&(h[8]=!1)}return d.isPm&&12>c[3]&&(c[3]+=12),!1===d.isPm&&12===c[3]&&(c[3]=0),v(c,d.isUTC,d.tzh,d.tzm)}function y(a,b,c,d,e){e=e.relativeTime[a];return"function"==typeof e?e(b||1,!!c,a,d):e.replace(/%d/i,b||1)}function B(a,b){C.fn[a]=function(a){var c=this._isUTC?"UTC":"";return null!=a?(this._d["set"+c+b](a),this):this._d["get"+c+b]()}}function r(a){C.duration.fn[a]=function(){return this._data[a]}} +function E(a,b){C.duration.fn["as"+a]=function(){return+this/b}}for(var C,A=Math.round,F,I={},G="en",J="undefined"!=typeof module&&module.exports,H="months monthsShort weekdays weekdaysShort weekdaysMin longDateFormat calendar relativeTime ordinal meridiem".split(" "),O=/^\/?Date\((\-?\d+)/i,S=/(\[[^\[]*\])|(\\)?(Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|YYYY|YY|a|A|hh?|HH?|mm?|ss?|SS?S?|zz?|ZZ?|.)/g,N=/(\[[^\[]*\])|(\\)?(LT|LL?L?L?)/g,L=/([0-9a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+)/gi, +R=/\d\d?/,P=/\d{1,3}/,D=/\d{3}/,K=/\d{1,4}/,T=/[0-9a-z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+/i,Q=/Z|[\+\-]\d\d:?\d\d/i,V=/T/i,aa=/^\s*\d{4}-\d\d-\d\d(T(\d\d(:\d\d(:\d\d(\.\d\d?\d?)?)?)?)?([\+\-]\d\d:?\d\d)?)?/,U=[["HH:mm:ss.S",/T\d\d:\d\d:\d\d\.\d{1,3}/],["HH:mm:ss",/T\d\d:\d\d:\d\d/],["HH:mm",/T\d\d:\d\d/],["HH",/T\d\d/]],Z=/([\+\-]|\d\d)/gi,da="Month Date Hours Minutes Seconds Milliseconds".split(" "),W={Milliseconds:1,Seconds:1E3,Minutes:6E4,Hours:36E5,Days:864E5,Months:2592E6,Years:31536E6}, +X={},ka=["DDD","w","M","D","d"],qa="MDHhmsw".split(""),ia={M:function(){return this.month()+1},MMM:function(a){return h("monthsShort",this.month(),this,a)},MMMM:function(a){return h("months",this.month(),this,a)},D:function(){return this.date()},DDD:function(){var a=new Date(this.year(),this.month(),this.date()),b=new Date(this.year(),0,1);return~~((a-b)/864E5+1.5)},d:function(){return this.day()},dd:function(a){return h("weekdaysMin",this.day(),this,a)},ddd:function(a){return h("weekdaysShort",this.day(), +this,a)},dddd:function(a){return h("weekdays",this.day(),this,a)},w:function(){var a=new Date(this.year(),this.month(),this.date()-this.day()+5),b=new Date(a.getFullYear(),0,4);return~~((a-b)/864E5/7+1.5)},YY:function(){return a(this.year()%100,2)},YYYY:function(){return a(this.year(),4)},a:function(){return this.lang().meridiem(this.hours(),this.minutes(),!0)},A:function(){return this.lang().meridiem(this.hours(),this.minutes(),!1)},H:function(){return this.hours()},h:function(){return this.hours()% +12||12},m:function(){return this.minutes()},s:function(){return this.seconds()},S:function(){return~~(this.milliseconds()/100)},SS:function(){return a(~~(this.milliseconds()/10),2)},SSS:function(){return a(this.milliseconds(),3)},Z:function(){var b=-this.zone(),c="+";return 0>b&&(b=-b,c="-"),c+a(~~(b/60),2)+":"+a(~~b%60,2)},ZZ:function(){var b=-this.zone(),c="+";return 0>b&&(b=-b,c="-"),c+a(~~(10*b/6),4)}};ka.length;)F=ka.pop(),ia[F+"o"]=e(ia[F]);for(;qa.length;)F=qa.pop(),ia[F+F]=m(ia[F],2);ia.DDDD= +m(ia.DDD,3);C=function(a,b){if(null===a||""===a)return null;var d;if(C.isMoment(a))d=new k(new Date(+a._d),a._isUTC,a._lang);else{if(b)if(f(b)){var e=a.match(L)||[],g,h=99,l,n;for(l=0;le;e++)if(U[e][1].exec(a)){d+=U[e][0]; +break}d=Q.exec(a)?z(a,d+" Z"):z(a,d)}else d=new Date(a);else d=new Date(a);d=new k(d)}return d};C.utc=function(a,b){return f(a)?new k(v(a,!0),!0):("string"==typeof a&&!Q.exec(a)&&(a+=" +0000",b&&(b+=" Z")),C(a,b).utc())};C.unix=function(a){return C(1E3*a)};C.duration=function(a,b){var c=C.isDuration(a),d="number"==typeof a,e=c?a._data:d?{}:a,f;return d&&(b?e[b]=a:e.milliseconds=a),f=new g(e),c&&(f._lang=a._lang),f};C.humanizeDuration=function(a,b,c){return C.duration(a,!0===b?null:b).humanize(!0=== +b?!0:c)};C.version="1.7.2";C.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";C.lang=function(a,b){var c;if(!a)return G;!b&&I[a]||n(a,b);if(I[a]){for(c=0;ca?c:-1>a?b.lastWeek:0>a?b.lastDay:1>a?b.sameDay:2>a?b.nextDay:7>a?b.nextWeek:c;return this.format("function"==typeof a?a.apply(this):a)},isLeapYear:function(){var a=this.year();return 0===a%4&&0!==a%100||0===a%400},isDST:function(){return this.zone()f&&["s",f]||1===g&&["m"]||45>g&&["mm",g]||1===h&&["h"]||22>h&&["hh",h]||1===l&&["d"]||25>=l&&["dd",l]||45>=l&&["M"]||345>l&&["MM",A(l/30)]||1===k&&["y"]||["yy",k];d=(f[2]=d,f[3]=0=b?c.past:c.future;return a&&("function"==typeof b?d=b(d):d=b.replace(/%s/i,d)),d},lang:C.fn.lang};for(F in W)W.hasOwnProperty(F)&&(E(F,W[F]),r(F.toLowerCase()));E("Weeks",6048E5);J&&(module.exports=C);"undefined"==typeof ender&&(this.moment=C);"function"== +typeof define&&define.amd&&define("moment",[],function(){return C})}).call(this); +(function(c){var h=/[\.\/]/,m=function(){},e=function(a,b){return a-b},k,g,b={n:{}},a=function(b,c){var h=g,m=Array.prototype.slice.call(arguments,2),n=a.listeners(b),l=0,w,u=[],p={},x=[],z=k;k=b;for(var y=g=0,B=n.length;yn[y].zIndex&&(p[n[y].zIndex]=n[y]));for(u.sort(e);0>u[l];)if(w=p[u[l++]],x.push(w.apply(c,m)),g)return g=h,x;for(y=0;yd*a.top){c=a.percents[r];q=a.percents[r-1]||0;x=x/a.top*(c-q);m=a.percents[r+1];k=a.anim[c];break}d&&b.attr(a.anim[a.percents[r]])}if(k){if(p)p.initstatus= +d,p.start=new Date-p.ms*d;else{for(var A in k)if(k[z](A)&&(ga[z](A)||b.paper.customAttributes[z](A)))switch(w[A]=b.attr(A),null==w[A]&&(w[A]=ia[A]),y[A]=k[A],ga[A]){case Q:v[A]=(y[A]-w[A])/x;break;case "colour":w[A]=l.getRGB(w[A]);r=l.getRGB(y[A]);v[A]={r:(r.r-w[A].r)/x,g:(r.g-w[A].g)/x,b:(r.b-w[A].b)/x};break;case "path":r=Oa(w[A],y[A]);t=r[1];w[A]=r[0];v[A]=[];r=0;for(B=w[A].length;r +d;d++){f=((l*e+k)*e+h)*e-a;if(D(f)D(c))break;e-=f/c}c=0;d=1;e=a;if(ed)return d;for(;cf?c=e:d=e;e=(d-c)/2+c}return e}var h=3*b,k=3*(d-b)-h,l=1-h-k,p=3*c,n=3*(e-c)-p,m=1-p-n;return function(a,b){var c=g(a,b);return((m*c+n)*c+p)*c}(a,1/(200*f))}function k(){return this.x+G+this.y+G+this.width+" \u00d7 "+this.height}function g(a,b,c,d,e,f){null!=a?(this.a=+a,this.b=+b,this.c=+c,this.d=+d,this.e=+e,this.f= ++f):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function b(a,b,c){a=l._path2curve(a);b=l._path2curve(b);for(var e,f,g,h,k,p,n,m,u,r,q=c?0:[],x=0,w=a.length;xD(S.x-O.x)?"y":"x",Q=.001>D(I.x-B.x)?"y":"x",N;N=O.x;var V=O.y,U=S.x,K=S.y,aa=B.x,M=B.y,T=I.x,Z=I.y;if(R(N,U)R(aa,T)||R(V,K)R(M,Z))N=void 0;else{var W=(N*K-V*U)*(aa-T)-(N-U)*(aa*Z-M*T),da=(N*K-V*U)*(M-Z)-(V-K)*(aa*Z-M*T),X=(N-U)*(M-Z)-(V-K)*(aa-T);if(X){var W=W/X,da=da/X,X=+W.toFixed(2),Y=+da.toFixed(2);N=X<+P(N,U).toFixed(2)||X>+R(N,U).toFixed(2)||X<+P(aa,T).toFixed(2)||X>+R(aa,T).toFixed(2)||Y<+P(V,K).toFixed(2)||Y>+R(V,K).toFixed(2)||Y<+P(M,Z).toFixed(2)||Y>+R(M,Z).toFixed(2)?void 0:{x:W,y:da}}else N=void 0}N&&F[N.x.toFixed(4)]!=N.y.toFixed(4)&&(F[N.x.toFixed(4)]=N.y.toFixed(4), +O=O.t+D((N[L]-O[L])/(S[L]-O[L]))*(S.t-O.t),B=B.t+D((N[Q]-B[Q])/(I[Q]-B[Q]))*(I.t-B.t),0<=O&&1>=O&&0<=B&&1>=B&&(z?C++:C.push({x:N.x,y:N.y,t1:O,t2:B})))}z=C}else z=z?0:[];if(c)q+=z;else{t=0;for(G=z.length;tl||d(a,b,c,e,f,g,h,k)k?0:k)/2;for(var l=[-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816],p=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],n=0,m=0;12>m;m++)var u=k*l[m]+k,r=u*(u*(-3*a+9*c-9*e+3*g)+6*a-12*c+6*e)-3*a+3*c,u=u*(u*(-3*b+9*d-9*f+3*h)+6*b-12*d+6*f)-3*b+3*d,n=n+p[m]*L.sqrt(r*r+u*u);return k*n}function f(a,b){for(var c=[],d=0,e=a.length;e-2*!b>d;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+ +5]}];b?d?e-4==d?f[3]={x:+a[0],y:+a[1]}:e-2==d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4==d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]});c.push(["C",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}function q(){return this.hex}function v(a,b,c){function d(){var e=Array.prototype.slice.call(arguments,0),f=e.join("\u2400"),g=d.cache=d.cache||{},h=d.count=d.count||[];if(g[z](f)){a:for(var e= +h,h=f,k=0,l=e.length;k';va=sa.firstChild;va.style.behavior="url(#default#VML)";if(!va||"object"!=typeof va.adj)return l.type="";sa=null}l.svg=!(l.vml="VML"==l.type);l._Paper=E;l.fn=C=E.prototype=l.prototype;l._id=0;l._oid=0;l.is=function(a,b){b=N.call(b);return"finite"==b?!Z[z](+a):"array"==b?a instanceof Array:"null"==b&&null===a||b==typeof a&&null!==a||"object"==b&&a===Object(a)||"array"==b&&Array.isArray&&Array.isArray(a)||aa.call(a).slice(8,-1).toLowerCase()== +b};l.angle=function(a,b,c,d,e,f){return null==e?(a-=c,b-=d,a||b?(180*L.atan2(-b,-a)/T+540)%360:0):l.angle(a,b,e,f)-l.angle(c,d,e,f)};l.rad=function(a){return a%360*T/180};l.deg=function(a){return 180*a/T%360};l.snapTo=function(a,b,c){c=l.is(c,"finite")?c:10;if(l.is(a,V))for(var d=a.length;d--;){if(D(a[d]-b)<=c)return a[d]}else{a=+a;d=b%a;if(da-c)return b-d+a}return b};l.createUUID=function(a,b){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(a,b).toUpperCase()}}(/[xy]/g, +function(a){var b=16*L.random()|0;return("x"==a?b:b&3|8).toString(16)});l.setWindow=function(a){eve("raphael.setWindow",l,y.win,a);y.win=a;y.doc=y.win.document;l._engine.initWin&&l._engine.initWin(y.win)};var wa=function(a){if(l.vml){var b=/^\s+|\s+$/g,c;try{var d=new ActiveXObject("htmlfile");d.write("");d.close();c=d.body}catch(e){c=createPopup().document.body}var f=c.createTextRange();wa=v(function(a){try{c.style.color=J(a).replace(b,"");var d=f.queryCommandValue("ForeColor");return"#"+("000000"+ +((d&255)<<16|d&65280|(d&16711680)>>>16).toString(16)).slice(-6)}catch(e){return"none"}})}else{var g=y.doc.createElement("i");g.title="Rapha\u00ebl Colour Picker";g.style.display="none";y.doc.body.appendChild(g);wa=v(function(a){g.style.color=a;return y.doc.defaultView.getComputedStyle(g,"").getPropertyValue("color")})}return wa(a)},Aa=function(){return"hsb("+[this.h,this.s,this.b]+")"},Ma=function(){return"hsl("+[this.h,this.s,this.l]+")"},Na=function(){return this.hex},xa=function(a,b,c){null==b&& +l.is(a,"object")&&"r"in a&&"g"in a&&"b"in a&&(c=a.b,b=a.g,a=a.r);null==b&&l.is(a,"string")&&(c=l.getRGB(a),a=c.r,b=c.g,c=c.b);if(1c?c:1-c);b=g*(1-D(a%2-1));c=e=f=c-g/2;a=~~a;c+=[g,b,0,0,b,g][a];e+=[b,g,g,b,0,0][a];f+=[0,0,b,g,g,b][a];return Ia(c,e,f,d)};l.rgb2hsb=function(a,b,c){c=xa(a,b,c);a=c[0];b=c[1];c=c[2];var d,e;d=R(a,b,c);e=d-P(a,b,c);a=((0==e?null:d==a?(b-c)/e:d==b?(c-a)/e+2:(a-b)/e+4)+360)%6*60/360;return{h:a,s:0==e?0:e/d,b:d,toString:Aa}};l.rgb2hsl=function(a,b,c){c=xa(a, +b,c);a=c[0];b=c[1];c=c[2];var d,e,f;d=R(a,b,c);e=P(a,b,c);f=d-e;a=((0==f?null:d==a?(b-c)/f:d==b?(c-a)/f+2:(a-b)/f+4)+360)%6*60/360;d=(d+e)/2;return{h:a,s:0==f?0:.5>d?f/(2*d):f/(2-2*d),l:d,toString:Ma}};l._path2string=function(){return this.join(",").replace(ua,"$1")};l._preload=function(a,b){var c=y.doc.createElement("img");c.style.cssText="position:absolute;left:-9999em;top:-9999em";c.onload=function(){b.call(this);this.onload=null;y.doc.body.removeChild(this)};c.onerror=function(){y.doc.body.removeChild(this)}; +y.doc.body.appendChild(c);c.src=a};l.getRGB=v(function(a){if(!a||(a=J(a)).indexOf("-")+1)return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:q};if("none"==a)return{r:-1,g:-1,b:-1,hex:"none",toString:q};!ca[z](a.toLowerCase().substring(0,2))&&"#"!=a.charAt()&&(a=wa(a));var b,c,d,e,f,g;if(a=a.match(U)){a[2]&&(d=ka(a[2].substring(5),16),c=ka(a[2].substring(3,5),16),b=ka(a[2].substring(1,3),16));a[3]&&(d=ka((f=a[3].charAt(3))+f,16),c=ka((f=a[3].charAt(2))+f,16),b=ka((f=a[3].charAt(1))+f,16));a[4]&&(g=a[4][H](la), +b=X(g[0]),"%"==g[0].slice(-1)&&(b*=2.55),c=X(g[1]),"%"==g[1].slice(-1)&&(c*=2.55),d=X(g[2]),"%"==g[2].slice(-1)&&(d*=2.55),"rgba"==a[1].toLowerCase().slice(0,4)&&(e=X(g[3])),g[3]&&"%"==g[3].slice(-1)&&(e/=100));if(a[5])return g=a[5][H](la),b=X(g[0]),"%"==g[0].slice(-1)&&(b*=2.55),c=X(g[1]),"%"==g[1].slice(-1)&&(c*=2.55),d=X(g[2]),"%"==g[2].slice(-1)&&(d*=2.55),"deg"!=g[0].slice(-3)&&"\u00b0"!=g[0].slice(-1)||(b/=360),"hsba"==a[1].toLowerCase().slice(0,4)&&(e=X(g[3])),g[3]&&"%"==g[3].slice(-1)&&(e/= +100),l.hsb2rgb(b,c,d,e);if(a[6])return g=a[6][H](la),b=X(g[0]),"%"==g[0].slice(-1)&&(b*=2.55),c=X(g[1]),"%"==g[1].slice(-1)&&(c*=2.55),d=X(g[2]),"%"==g[2].slice(-1)&&(d*=2.55),"deg"!=g[0].slice(-3)&&"\u00b0"!=g[0].slice(-1)||(b/=360),"hsla"==a[1].toLowerCase().slice(0,4)&&(e=X(g[3])),g[3]&&"%"==g[3].slice(-1)&&(e/=100),l.hsl2rgb(b,c,d,e);a={r:b,g:c,b:d,toString:q};a.hex="#"+(16777216|d|c<<8|b<<16).toString(16).slice(1);l.is(e,"finite")&&(a.opacity=e);return a}return{r:-1,g:-1,b:-1,hex:"none",error:1, +toString:q}},l);l.hsb=v(function(a,b,c){return l.hsb2rgb(a,b,c).hex});l.hsl=v(function(a,b,c){return l.hsl2rgb(a,b,c).hex});l.rgb=v(function(a,b,c){return"#"+(16777216|c|b<<8|a<<16).toString(16).slice(1)});l.getColor=function(a){a=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||.75};var b=this.hsb2rgb(a.h,a.s,a.b);a.h+=.075;1=a.s&&(this.getColor.start={h:0,s:1,b:a.b}));return b.hex};l.getColor.reset=function(){delete this.start};l.parsePathString=function(a){if(!a)return null; +var b=Ca(a);if(b.arr)return ta(b.arr);var c={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},d=[];l.is(a,V)&&l.is(a[0],V)&&(d=ta(a));d.length||J(a).replace(Qa,function(a,b,e){var f=[];a=b.toLowerCase();e.replace(ha,function(a,b){b&&f.push(+b)});"m"==a&&2=c[a]&&(d.push([b][F](f.splice(0,c[a]))),c[a]););});d.toString=l._path2string;b.arr=ta(d);return d};l.parseTransformString=v(function(a){if(!a)return null; +var b=[];l.is(a,V)&&l.is(a[0],V)&&(b=ta(a));b.length||J(a).replace(Da,function(a,c,d){var e=[];N.call(c);d.replace(ha,function(a,b){b&&e.push(+b)});b.push([c][F](e))});b.toString=l._path2string;return b});var Ca=function(a){var b=Ca.ps=Ca.ps||{};b[a]?b[a].sleep=100:b[a]={sleep:100};setTimeout(function(){for(var c in b)b[z](c)&&c!=a&&(b[c].sleep--,!b[c].sleep&&delete b[c])});return b[a]};l.findDotsAtSegment=function(a,b,c,d,e,f,g,h,k){var l=1-k,p=K(l,3),n=K(l,2),m=k*k,u=m*k,r=p*a+3*n*k*c+3*l*k*k*e+ +u*g,p=p*b+3*n*k*d+3*l*k*k*f+u*h,n=a+2*k*(c-a)+m*(e-2*c+a),u=b+2*k*(d-b)+m*(f-2*d+b),q=c+2*k*(e-c)+m*(g-2*e+c),m=d+2*k*(f-d)+m*(h-2*f+d);a=l*a+k*c;b=l*b+k*d;e=l*e+k*g;f=l*f+k*h;h=90-180*L.atan2(n-q,u-m)/T;(n>q||u=a.x&&b<=a.x2&&c>=a.y&&c<=a.y2};l.isBBoxIntersect=function(a,b){var c=l.isPointInsideBBox;return c(b,a.x,a.y)||c(b,a.x2,a.y)||c(b,a.x,a.y2)||c(b,a.x2,a.y2)||c(a,b.x,b.y)||c(a,b.x2,b.y)||c(a,b.x,b.y2)||c(a,b.x2,b.y2)||(a.xb.x||b.xa.x)&&(a.yb.y||b.ya.y)};l.pathIntersection=function(a,c){return b(a,c)};l.pathIntersectionNumber=function(a,c){return b(a,c,1)};l.isPointInsidePath=function(a,c,d){var e=l.pathBBox(a);return l.isPointInsideBBox(e, +c,d)&&1==b(a,[["M",c,d],["H",e.x2+10]],1)%2};l._removedFactory=function(a){return function(){eve("raphael.log",null,"Rapha\u00ebl: you are calling to method \u201c"+a+"\u201d of removed object",a)}};var Ja=l.pathBBox=function(a){var b=Ca(a);if(b.bbox)return b.bbox;if(!a)return{x:0,y:0,width:0,height:0,x2:0,y2:0};a=Oa(a);for(var c=0,d=0,e=[],f=[],g,h=0,k=a.length;hw&&(w=2*T+w);0>u&&(u=2*T+u);g&&w>u&&(w-=2*T);!g&&u>w&&(u-=2*T)}if(D(u-w)>p){var m=u,x=h,y=k;u=w+p*(g&&u>w?1:-1);h=f+c*L.cos(u);k=q+d*L.sin(u);m=db(h,k,c, +d,e,0,g,x,y,[u,m,f,q])}f=u-w;e=L.cos(w);p=L.sin(w);g=L.cos(u);u=L.sin(u);f=L.tan(f/4);c=4/3*c*f;f*=4/3*d;d=[a,b];a=[a+c*p,b-f*e];b=[h+c*u,k-f*g];h=[h,k];a[0]=2*d[0]-a[0];a[1]=2*d[1]-a[1];if(l)return[a,b,h][F](m);m=[a,b,h][F](m).join()[H](",");l=[];h=0;for(k=m.length;hn&&(r=gb(a,b,c,d,e,f,g,h,n),u.push(r.x),m.push(r.y));0k&&(r=gb(a,b,c,d,e,f,g,h,k),u.push(r.x),m.push(r.y));k=f-2*d+b-(h-2*f+d);l=2*(d-b)-2*(f-d);p=b-d;n=(-l+L.sqrt(l*l-4*k*p))/2/k;k=(-l-L.sqrt(l*l-4*k*p))/2/k;"1e12"n&&(r=gb(a,b,c,d,e,f,g,h,n),u.push(r.x),m.push(r.y));0k&&(r=gb(a,b,c, +d,e,f,g,h,k),u.push(r.x),m.push(r.y));return{min:{x:P[A](0,u),y:P[A](0,m)},max:{x:R[A](0,u),y:R[A](0,m)}}}),Oa=l._path2curve=v(function(a,b){var c=!b&&Ca(a);if(!b&&c.curve)return ta(c.curve);var d=oa(a),e=b&&oa(b),f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},h=function(a,b){var c,d;if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];a[0]in{T:1,Q:1}||(b.qx=b.qy=null);switch(a[0]){case "M":b.X=a[1];b.Y=a[2];break;case "A":a=["C"][F](db[A](0,[b.x,b.y][F](a.slice(1)))); +break;case "S":c=b.x+(b.x-(b.bx||b.x));d=b.y+(b.y-(b.by||b.y));a=["C",c,d][F](a.slice(1));break;case "T":b.qx=b.x+(b.x-(b.qx||b.x));b.qy=b.y+(b.y-(b.qy||b.y));a=["C"][F](Wa(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case "Q":b.qx=a[1];b.qy=a[2];a=["C"][F](Wa(b.x,b.y,a[1],a[2],a[3],a[4]));break;case "L":a=["C"][F](La(b.x,b.y,a[1],a[2]));break;case "H":a=["C"][F](La(b.x,b.y,a[1],b.y));break;case "V":a=["C"][F](La(b.x,b.y,b.x,a[1]));break;case "Z":a=["C"][F](La(b.x,b.y,b.X,b.Y))}return a},k=function(a,b){if(7< +a[b].length){a[b].shift();for(var c=a[b];c.length;)a.splice(b++,0,["C"][F](c.splice(0,6)));a.splice(b,1);n=R(d.length,e&&e.length||0)}},l=function(a,b,c,f,g){a&&b&&"M"==a[g][0]&&"M"!=b[g][0]&&(b.splice(g,0,["M",f.x,f.y]),c.bx=0,c.by=0,c.x=a[g][1],c.y=a[g][2],n=R(d.length,e&&e.length||0))},p=0,n=R(d.length,e&&e.length||0);for(;pa;a++)for(c=0;3>c;c++){for(d=e=0;3>d;d++)e+=k[a][d]*b[d][c];h[a][c]=e}this.a=h[0][0];this.b=h[1][0];this.c=h[0][1];this.d=h[1][1];this.e=h[0][2];this.f=h[1][2]};a.invert=function(){var a=this.a*this.d-this.b*this.c;return new g(this.d/a,-this.b/a,-this.c/ +a,this.a/a,(this.c*this.f-this.d*this.e)/a,(this.b*this.e-this.a*this.f)/a)};a.clone=function(){return new g(this.a,this.b,this.c,this.d,this.e,this.f)};a.translate=function(a,b){this.add(1,0,0,1,a,b)};a.scale=function(a,b,c,d){null==b&&(b=a);(c||d)&&this.add(1,0,0,1,c,d);this.add(a,0,0,b,0,0);(c||d)&&this.add(1,0,0,1,-c,-d)};a.rotate=function(a,b,c){a=l.rad(a);b=b||0;c=c||0;var d=+L.cos(a).toFixed(9);a=+L.sin(a).toFixed(9);this.add(d,a,-a,d,b,c);this.add(1,0,0,1,-b,-c)};a.x=function(a,b){return a* +this.a+b*this.c+this.e};a.y=function(a,b){return a*this.b+b*this.d+this.f};a.get=function(a){return+this[J.fromCharCode(97+a)].toFixed(4)};a.toString=function(){return l.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()};a.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+ +", Dy="+this.get(5)+", sizingmethod='auto expand')"};a.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]};a.split=function(){var a={};a.dx=this.e;a.dy=this.f;var d=[[this.a,this.c],[this.b,this.d]];a.scalex=L.sqrt(c(d[0]));b(d[0]);a.shear=d[0][0]*d[1][0]+d[0][1]*d[1][1];d[1]=[d[1][0]-d[0][0]*a.shear,d[1][1]-d[0][1]*a.shear];a.scaley=L.sqrt(c(d[1]));b(d[1]);a.shear/=a.scaley;var e=-d[0][1],d=d[1][1];0>d?(a.rotate=l.deg(L.acos(d)),0>e&&(a.rotate=360-a.rotate)):a.rotate=l.deg(L.asin(e)); +a.isSimple=!+a.shear.toFixed(9)&&(a.scalex.toFixed(9)==a.scaley.toFixed(9)||!a.rotate);a.isSuperSimple=!+a.shear.toFixed(9)&&a.scalex.toFixed(9)==a.scaley.toFixed(9)&&!a.rotate;a.noRotation=!+a.shear.toFixed(9)&&!a.rotate;return a};a.toTransformString=function(a){a=a||this[H]();return a.isSimple?(a.scalex=+a.scalex.toFixed(4),a.scaley=+a.scaley.toFixed(4),a.rotate=+a.rotate.toFixed(4),(a.dx||a.dy?"t"+[a.dx,a.dy]:"")+(1!=a.scalex||1!=a.scaley?"s"+[a.scalex,a.scaley,0,0]:"")+(a.rotate?"r"+[a.rotate, +0,0]:"")):"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}})(g.prototype);var Ta=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);"Apple Computer, Inc."==navigator.vendor&&(Ta&&4>Ta[1]||"iP"==navigator.platform.slice(0,2))||"Google Inc."==navigator.vendor&&Ta&&8>Ta[1]?C.safari=function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){a.remove()})}:C.safari=M;for(var lb=function(){this.returnValue= +!1},Za=function(){return this.originalEvent.preventDefault()},Ea=function(){this.cancelBubble=!0},Xa=function(){return this.originalEvent.stopPropagation()},ob=function(){if(y.doc.addEventListener)return function(a,b,c,d){var e=I&&S[b]?S[b]:b,f=function(e){var f=e.clientX+(y.doc.documentElement.scrollLeft||y.doc.body.scrollLeft),g=e.clientY+(y.doc.documentElement.scrollTop||y.doc.body.scrollTop);if(I&&S[z](b))for(var h=0,k=e.targetTouches&&e.targetTouches.length;hd){if(b&&!n.start){f=Y(f,g,h[1],h[2],h[3],h[4],h[5], +h[6],d-m);p+=["C"+f.start.x,f.start.y,f.m.x,f.m.y,f.x,f.y];if(e)return p;n.start=p;p=["M"+f.x,f.y+"C"+f.n.x,f.n.y,f.end.x,f.end.y,h[5],h[6]].join();m+=k;f=+h[5];g=+h[6];continue}if(!a&&!b)return f=Y(f,g,h[1],h[2],h[3],h[4],h[5],h[6],d-m),{x:f.x,y:f.y,alpha:f.alpha}}m+=k;f=+h[5];g=+h[6]}p+=h.shift()+h}n.end=p;f=a?m:b?n:l.findDotsAtSegment(f,g,h[0],h[1],h[2],h[3],h[4],h[5],1);f.alpha&&(f={x:f.x,y:f.y,alpha:f.alpha});return f}},pa=ra(1),ja=ra(),ab=ra(0,1);l.getTotalLength=pa;l.getPointAtLength=ja;l.getSubpath= +function(a,b,c){if(1E-6>this.getTotalLength(a)-c)return ab(a,b).end;a=ab(a,c,1);return b?ab(a,b).end:a};fa.getTotalLength=function(){if("path"==this.type)return this.node.getTotalLength?this.node.getTotalLength():pa(this.attrs.path)};fa.getPointAtLength=function(a){if("path"==this.type)return ja(this.attrs.path,a)};fa.getSubpath=function(a,b){if("path"==this.type)return l.getSubpath(this.attrs.path,a,b)};var Ha=l.easing_formulas={linear:function(a){return a},"<":function(a){return K(a,1.7)},">":function(a){return K(a, +.48)},"<>":function(a){var b=.48-a/1.04,c=L.sqrt(.1734+b*b);a=c-b;a=K(D(a),1/3)*(0>a?-1:1);b=-c-b;b=K(D(b),1/3)*(0>b?-1:1);a=a+b+.5;return 3*(1-a)*a*a+a*a*a},backIn:function(a){return a*a*(2.70158*a-1.70158)},backOut:function(a){--a;return a*a*(2.70158*a+1.70158)+1},elastic:function(a){return a==!!a?a:K(2,-10*a)*L.sin(2*(a-.075)*T/.3)+1},bounce:function(a){var b;a<1/2.75?b=7.5625*a*a:a<2/2.75?(a-=1.5/2.75,b=7.5625*a*a+.75):a<2.5/2.75?(a-=2.25/2.75,b=7.5625*a*a+.9375):(a-=2.625/2.75,b=7.5625*a*a+.984375); +return b}};Ha.easeIn=Ha["ease-in"]=Ha["<"];Ha.easeOut=Ha["ease-out"]=Ha[">"];Ha.easeInOut=Ha["ease-in-out"]=Ha["<>"];Ha["back-in"]=Ha.backIn;Ha["back-out"]=Ha.backOut;var ea=[],Ka=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,16)},kb=function(){for(var a=+new Date,b=0;bd))if(da?0:a};fa.animateWith=function(a,b,c,d,e,f){if(this.removed)return f&&f.call(this),this;c=c instanceof m?c:l.animation(c,d,e,f);h(c,this,c.percents[0],null,this.attr());c=0;for(d=ea.length;ca?R(this.length+a,0):a;b=R(0,P(this.length-a,b));var d=[],e=[],f=[],g;for(g=2;gy[2]&&(y[0]=-y[2],y[2]=0);0>y[3]&&(y[1]=-y[3],y[3]=0)}var z=c._parseDots(e);if(!z)return null;l=l.replace(/[\(\)\s,\xb0#]/g,"_");d.gradient&&l!=d.gradient.id&&(q.defs.removeChild(d.gradient),delete d.gradient);if(!d.gradient)for(w=n(f+"Gradient",{id:l}),d.gradient=w,n(w,"radial"== +f?{fx:p,fy:u}:{x1:y[0],y1:y[1],x2:y[2],y2:y[3],gradientTransform:d.matrix.invert()}),q.defs.appendChild(w),q=0,y=z.length;qc*d?-1:1);if(g){var r=x(g,e,f);e=r.dx;f=r.dy}0>c&&(m+="x");0>d&&(m+=" y")&&(n=-1);p.flip=m;b.coordorigin=e*-u+" "+f*-q;if(l||h.fillsize)e=(e=b.getElementsByTagName("fill"))&&e[0],b.removeChild(e),l&&(r=x(g,k.x(l[0],l[1]),k.y(l[0],l[1])),e.position=r.dx*n+" "+r.dy*n),h.fillsize&&(e.size=h.fillsize[0]*a(c)+" "+h.fillsize[1]*a(d)),b.appendChild(e);p.visibility="visible"}};c.toString=function(){return"Your browser doesn\u2019t support SVG. Falling down to VML.\nYou are running Rapha\u00ebl "+ +this.version};var y=function(a,b,c){b=h(b).toLowerCase().split("-");c=c?"end":"start";for(var d=b.length,e="classic",f="medium",g="medium";d--;)switch(b[d]){case "block":case "classic":case "oval":case "diamond":case "open":case "none":e=b[d];break;case "wide":case "narrow":g=b[d];break;case "long":case "short":f=b[d]}a=a.node.getElementsByTagName("stroke")[0];a[c+"arrow"]=e;a[c+"arrowlength"]=f;a[c+"arrowwidth"]=g},B=function(a,e){a.attrs=a.attrs||{};var f=a.node,l=a.attrs,n=f.style,q=w[a.type]&& +(e.x!=l.x||e.y!=l.y||e.width!=l.width||e.height!=l.height||e.cx!=l.cx||e.cy!=l.cy||e.rx!=l.rx||e.ry!=l.ry||e.r!=l.r),x=u[a.type]&&(l.cx!=e.cx||l.cy!=e.cy||l.r!=e.r||l.rx!=e.rx||l.ry!=e.ry),v;for(v in e)e.hasOwnProperty(v)&&(l[v]=e[v]);q&&(l.path=c._getPath[a.type](a),a._.dirty=1);e.href&&(f.href=e.href);e.title&&(f.title=e.title);e.target&&(f.target=e.target);e.cursor&&(n.cursor=e.cursor);"blur"in e&&a.blur(e.blur);if(e.path&&"path"==a.type||q)f.path=p(~h(l.path).toLowerCase().indexOf("r")?c._pathToAbsolute(l.path): +l.path),"image"==a.type&&(a._.fillpos=[l.x,l.y],a._.fillsize=[l.width,l.height],z(a,1,1,0,0,0));"transform"in e&&a.transform(e.transform);x&&(n=+l.cx,q=+l.cy,x=+l.rx||+l.r||0,v=+l.ry||+l.r||0,f.path=c.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",k(21600*(n-x)),k(21600*(q-v)),k(21600*(n+x)),k(21600*(q+v)),k(21600*n)));"clip-rect"in e&&(n=h(e["clip-rect"]).split(d),4==n.length&&(n[2]=+n[2]+ +n[0],n[3]=+n[3]+ +n[1],q=f.clipRect||c._g.doc.createElement("div"),x=q.style,x.clip=c.format("rect({1}px {2}px {3}px {0}px)", +n),f.clipRect||(x.position="absolute",x.top=0,x.left=0,x.width=a.paper.width+"px",x.height=a.paper.height+"px",f.parentNode.insertBefore(q,f),q.appendChild(f),f.clipRect=q)),e["clip-rect"]||f.clipRect&&(f.clipRect.style.clip="auto"));a.textpath&&(n=a.textpath.style,e.font&&(n.font=e.font),e["font-family"]&&(n.fontFamily='"'+e["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,"")+'"'),e["font-size"]&&(n.fontSize=e["font-size"]),e["font-weight"]&&(n.fontWeight=e["font-weight"]),e["font-style"]&& +(n.fontStyle=e["font-style"]));"arrow-start"in e&&y(a,e["arrow-start"]);"arrow-end"in e&&y(a,e["arrow-end"],1);if(null!=e.opacity||null!=e["stroke-width"]||null!=e.fill||null!=e.src||null!=e.stroke||null!=e["stroke-width"]||null!=e["stroke-opacity"]||null!=e["fill-opacity"]||null!=e["stroke-dasharray"]||null!=e["stroke-miterlimit"]||null!=e["stroke-linejoin"]||null!=e["stroke-linecap"]){n=(n=f.getElementsByTagName("fill"))&&n[0];!n&&(n=A("fill"));"image"==a.type&&e.src&&(n.src=e.src);e.fill&&(n.on= +!0);if(null==n.on||"none"==e.fill||null===e.fill)n.on=!1;n.on&&e.fill&&((q=h(e.fill).match(c._ISURL))?(n.parentNode==f&&f.removeChild(n),n.rotate=!0,n.src=q[1],n.type="tile",x=a.getBBox(1),n.position=x.x+" "+x.y,a._.fillpos=[x.x,x.y],c._preload(q[1],function(){a._.fillsize=[this.offsetWidth,this.offsetHeight]})):(n.color=c.getRGB(e.fill).hex,n.src="",n.type="solid",c.getRGB(e.fill).error&&(a.type in{circle:1,ellipse:1}||"r"!=h(e.fill).charAt())&&r(a,e.fill,n)&&(l.fill="none",l.gradient=e.fill,n.rotate= +!1)));if("fill-opacity"in e||"opacity"in e)x=((+l["fill-opacity"]+1||2)-1)*((+l.opacity+1||2)-1)*((+c.getRGB(e.fill).o+1||2)-1),x=b(g(x,0),1),n.opacity=x,n.src&&(n.color="none");f.appendChild(n);n=f.getElementsByTagName("stroke")&&f.getElementsByTagName("stroke")[0];q=!1;!n&&(q=n=A("stroke"));if(e.stroke&&"none"!=e.stroke||e["stroke-width"]||null!=e["stroke-opacity"]||e["stroke-dasharray"]||e["stroke-miterlimit"]||e["stroke-linejoin"]||e["stroke-linecap"])n.on=!0;"none"!=e.stroke&&null!==e.stroke&& +null!=n.on&&0!=e.stroke&&0!=e["stroke-width"]||(n.on=!1);x=c.getRGB(e.stroke);n.on&&e.stroke&&(n.color=x.hex);x=((+l["stroke-opacity"]+1||2)-1)*((+l.opacity+1||2)-1)*((+x.o+1||2)-1);v=.75*(m(e["stroke-width"])||1);x=b(g(x,0),1);null==e["stroke-width"]&&(v=l["stroke-width"]);e["stroke-width"]&&(n.weight=v);v&&1>v&&(x*=v)&&(n.weight=1);n.opacity=x;e["stroke-linejoin"]&&(n.joinstyle=e["stroke-linejoin"]||"miter");n.miterlimit=e["stroke-miterlimit"]||8;e["stroke-linecap"]&&(n.endcap="butt"==e["stroke-linecap"]? +"flat":"square"==e["stroke-linecap"]?"square":"round");e["stroke-dasharray"]&&(x={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"},n.dashstyle=x.hasOwnProperty(e["stroke-dasharray"])?x[e["stroke-dasharray"]]:"");q&&f.appendChild(n)}if("text"==a.type){a.paper.canvas.style.display="";f=a.paper.span;q=l.font&&l.font.match(/\d+(?:\.\d*)?(?=px)/);n=f.style;l.font&&(n.font=l.font); +l["font-family"]&&(n.fontFamily=l["font-family"]);l["font-weight"]&&(n.fontWeight=l["font-weight"]);l["font-style"]&&(n.fontStyle=l["font-style"]);q=m(l["font-size"]||q&&q[0])||10;n.fontSize=100*q+"px";a.textpath.string&&(f.innerHTML=h(a.textpath.string).replace(/"));f=f.getBoundingClientRect();a.W=l.w=(f.right-f.left)/100;a.H=l.h=(f.bottom-f.top)/100;a.X=l.x;a.Y=l.y+a.H/2;("x"in e||"y"in e)&&(a.path.v=c.format("m{0},{1}l{2},{1}",k(21600*l.x), +k(21600*l.y),k(21600*l.x)+1));f="x y text font font-family font-weight font-style font-size".split(" ");n=0;for(q=f.length;n')}}catch(c){A=function(a){return b.createElement("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}};c._engine.initWin(c._g.win);c._engine.create=function(){var a=c._getContainer.apply(0,arguments),b=a.container,d=a.height,e=a.width,f=a.x,a=a.y;if(!b)throw Error("VML container not found."); +var g=new c._Paper,h=g.canvas=c._g.doc.createElement("div"),k=h.style,f=f||0,a=a||0,e=e||512,d=d||342;g.width=e;g.height=d;e==+e&&(e+="px");d==+d&&(d+="px");g.coordsize="21600000 21600000";g.coordorigin="0 0";g.span=c._g.doc.createElement("span");g.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;";h.appendChild(g.span);k.cssText=c.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden", +e,d);1==b?(c._g.doc.body.appendChild(h),k.left=f+"px",k.top=a+"px",k.position="absolute"):b.firstChild?b.insertBefore(h,b.firstChild):b.appendChild(h);g.renderfix=function(){};return g};c.prototype.clear=function(){c.eve("raphael.clear",this);this.canvas.innerHTML="";this.span=c._g.doc.createElement("span");this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;";this.canvas.appendChild(this.span);this.bottom=this.top=null};c.prototype.remove= +function(){c.eve("raphael.remove",this);this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null;return!0};var F=c.st,I;for(I in C)C.hasOwnProperty(I)&&!F.hasOwnProperty(I)&&(F[I]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(I))}(window.Raphael); +window.polyjs=function(c){if(!c){var h={};(function(){var c=[].indexOf||function(c){for(var h=0,g=this.length;hf[0].val||b[0].val===f[0].val&& +("lt"===b[0].key||"gt"===f[0].key)))throw"No intersection found!";return c};d={};for(a in e)f=e[a],d[a]=a in h?"in"in e[a]?b(a):g(a):f;for(a in h)f=h[a],a in d||(d[a]=f);return d};h.linear=function(c,k,g,b){if(_.isFinite(c)&&_.isFinite(k)&&_.isFinite(g)&&_.isFinite(b))return function(a){return(b-k)/(g-c)*(a-c)+k};throw h.error.input("Attempting to create linear function from infinity");};h.median=function(c,h){var g;null==h&&(h=!1);h||(c=_.sortBy(c,function(b){return b}));g=c.length/2;return 0!== +g%1?c[Math.floor(g)]:(c[g-1]+c[g])/2};h.counter=function(){var c;c=0;return function(){return c++}};h.sample=function(c,h){return _.pick(c,_.shuffle(_.keys(c)).splice(0,h))};h.compare=function(c,h){var g,b,a,d,f,m,v,n,l;l=_.sortBy(c,function(a){return a});n=_.sortBy(h,function(a){return a});b=[];a=[];g=[];for(v=f=0;v=l.length)g.push(d),f+=1;else if(f>=n.length)b.push(m),v+=1;else if(md)g.push(d),f+=1;else if(m===d)a.push(m),v+= +1,f+=1;else throw DataError("Unknown data encounted");return{deleted:b,kept:a,added:g}};h.flatten=function(c){var k,g,b,a;k=[];if(null!=c)if(_.isObject(c))if("scalefn"===c.t)"novalue"!==c.f&&k.push(c.v);else for(g in c)b=c[g],k=k.concat(h.flatten(b));else if(_.isArray(c))for(g=0,a=c.length;gc?6*c:5*(c-10)+60};h.sortArrays=function(c,h){var g;g=_.zip.apply(_,h);g.sort(function(b,a){return c(b[0],a[0])});return _.zip.apply(_,g)};h.isDefined=function(c){return _.isObject(c)?"scalefn"===c.t&&"novalue"!==c.f?h.isDefined(c.v):!0:void 0!==c&&null!==c&&!(_.isNumber(c)&&_.isNaN(c))};h.isURI=function(c){var h;return _.isString(c)?(h=/^(https?:\/\/)?((([a-z\d]([a-z\d-]*[a-z\d])*)\.)+[a-z]{2,}|((\d{1,3}\.){3}\d{1,3}))(\:\d+)?(\/[-a-z\d%_.~+]*)*(\?[;&a-z\d%_.~+=-]*)?(\#[-a-z\d_]*)?$/i, +h.test(c)):!1}}).call(this);(function(){h["const"]={aes:"x y color size opacity shape id text".split(" "),pivot_aes:["row","column","value"],noDomain:["id","text","tooltip"],noLegend:["x","y","id","text","tooltip"],trans:{bin:["key","binwidth"],lag:["key","lag"]},stat:{count:["key"],unique:["key"],sum:["key"],mean:["key"],box:["key"],median:["key"]},timerange:"second minute hour day week month twomonth quarter sixmonth year twoyear fiveyear decade".split(" "),approxTimeInSeconds:{second:1,minute:60, +hour:3600,day:86400,week:604800,month:2592E3,twomonth:5184E3,quarter:10368E3,sixmonth:15552E3,year:31536E3,twoyear:63072E3,fiveyear:157766400},metas:{sort:null,stat:null,limit:null,asc:!1},scaleFns:{novalue:function(){return{v:null,f:"novalue",t:"scalefn"}},max:function(c){return{v:c,f:"max",t:"scalefn"}},min:function(c){return{v:c,f:"min",t:"scalefn"}},upper:function(c,e,h){return{v:c,n:e,m:h,f:"upper",t:"scalefn"}},lower:function(c,e,h){return{v:c,n:e,m:h,f:"lower",t:"scalefn"}},middle:function(c){return{v:c, +f:"middle",t:"scalefn"}},jitter:function(c){return{v:c,f:"jitter",t:"scalefn"}},identity:function(c){return{v:c,f:"identity",t:"scalefn"}}},epsilon:Math.pow(10,-7),defaults:{x:{v:null,f:"novalue",t:"scalefn"},y:{v:null,f:"novalue",t:"scalefn"},color:"steelblue",size:2,opacity:.7}}}).call(this);(function(){var c,e,k,g,b,a,d,f,q,v={}.hasOwnProperty,n=function(a,b){function c(){this.constructor=a}for(var d in b)v.call(b,d)&&(a[d]=b[d]);c.prototype=b.prototype;a.prototype=new c;a.__super__=b.prototype; +return a};e=function(a){function b(a){this.message=a;this.name="DefinitionError"}n(b,a);return b}(Error);k=function(a){function b(a){this.message=a;this.name="DependencyError"}n(b,a);return b}(Error);b=function(a){function b(a){this.message=a;this.name="ModeError"}n(b,a);return b}(Error);c=function(a){function b(a){this.message=a;this.name="DataError"}n(b,a);return b}(Error);q=function(a){function b(a){this.message=a;this.name="UnknownInput"}n(b,a);return b}(Error);a=function(a){function b(a){this.message= +a;this.name="ModeError"}n(b,a);return b}(Error);d=function(a){function b(a){this.message=a;this.name="ScaleError"}n(b,a);return b}(Error);g=function(a){function b(a){this.message=a;this.name="MissingData"}n(b,a);return b}(Error);f=function(a){function b(a){this.message=a;this.name="Type"}n(b,a);return b}(Error);h.error=function(a){return Error(a)};h.error.data=function(a){return new c(a)};h.error.depn=function(a){return new k(a)};h.error.defn=function(a){return new e(a)};h.error.mode=function(a){return new b(a)}; +h.error.impl=function(b){return new a(b)};h.error.input=function(a){return new q(a)};h.error.scale=function(a){return new d(a)};h.error.missing=function(a){return new g(a)};h.error.type=function(a){return new f(a)}}).call(this);(function(){var c,e,k,g,b={}.hasOwnProperty,a=function(a,c){function d(){this.constructor=a}for(var e in c)b.call(c,e)&&(a[e]=c[e]);d.prototype=c.prototype;a.prototype=new d;a.__super__=c.prototype;return a},d=function(a,b){return function(){return a.apply(b,arguments)}};g= +function(){function a(){}a.prototype.render=function(){return h.error.impl()};a.prototype.dispose=function(){return h.error.impl()};return a}();e=function(b){function c(){return c.__super__.constructor.apply(this,arguments)}a(c,b);c.prototype.getDimension=function(){throw h.error.impl();};return c}(g);k=function(b){function c(){return c.__super__.constructor.apply(this,arguments)}a(c,b);c.prototype.getDimension=function(){throw h.error.impl();};c.prototype.make=function(){throw h.error.impl();};return c}(g); +c=function(b){function c(a){this.type=null!=a?a:null;this.dispose=d(this.dispose,this);this.geoms={};this.pts={}}a(c,b);c.prototype.set=function(a){return this.geoms=a};c.prototype.render=function(a){var b,c,d,e,f,g,k;f={};d=h.compare(_.keys(this.pts),_.keys(this.geoms));c=d.deleted;e=d.kept;b=d.added;g=0;for(k=c.length;gb.timeStamp-c.lastStart)return h.touchToMouse("click",c)}else if("touchcancel"===k)return window.clearTimeout(c.pressTimer),h.touchToMouse("mouseout",c),h.touchToMouse("mouseup",c,300)}}).call(this); +(function(){var c,e,k;h.format=function(c,b){switch(c){case "cat":return h.format.identity;case "num":return h.format.number(b);case "date":return h.format.date(b);case "none":return h.format.identity}};h.format.identity=function(c){return c};c={0:"",3:"k",6:"m",9:"b",12:"t"};k=function(e,b){return _.isUndefined(c[b])?e+"e"+(0c))+ +d[0].slice(b).replace(/(\d{3})/g,",$1"),a=d.join("."));return a};h.format.getExp=function(c){return Math.floor(Math.log(Math.abs(0===c?1:c))/Math.LN10)};h.format.number=function(c){return function(b){var a,d;d=0;a=null!=c?c:h.format.getExp(b);null==c||2!==a&&5!==a&&8!==a&&11!==a?-1===a?(a=0,d=null!=c?1:2):-2===a?(a=0,d=null!=c?2:3):1===a||2===a?a=0:3a?a=3:6a?a=6:9a?a=9:12a?a=12:d=null!=c?0:1:(a+=1,d=1);b=Math.round(b/Math.pow(10,a-d));b/=Math.pow(10,d);b=b.toFixed(d);return k(e(b), +a)}};h.format.date=function(c){return-1!==_.indexOf(h["const"].timerange,c)?"second"===c?function(b){return moment.unix(b).format("h:mm:ss a")}:"minute"===c?function(b){return moment.unix(b).format("h:mm a")}:"hour"===c?function(b){return moment.unix(b).format("MMM D h a")}:"day"===c||"week"===c?function(b){return moment.unix(b).format("MMM D")}:"month"===c||"twomonth"===c||"quarter"===c||"sixmonth"===c?function(b){return moment.unix(b).format("YYYY/MM")}:function(b){return moment.unix(b).format("YYYY")}: +function(b){return moment.unix(b).format(c)}};h.format._number_instance=h.format.number();h.format.value=function(c){return _.isNumber(c)?h.format._number_instance(c):c}}).call(this);(function(){var c,e;h.type={};h.type.impute=function(c){var e,b,a,d,f,h;f=b=d=e=0;for(h=c.length;f.95*b?"num":e>.95*b?"date":"cat"};h.type.coerce=function(c,e){if(_.isUndefined(c)|| +_.isNull(c)||"cat"===e.type)return c;if("num"===e.type)return isNaN(c)?+(""+c).replace(/\$|\,/g,""):+c;if("date"===e.type)return e.format?"unix"===e.format?moment.unix(c).unix():moment(c,e.format).unix():isFinite(c)&&c>=Math.pow(10,9)?moment.unix(c).unix():moment(c).unix()};h.type.compare=function(h){switch(h){case "cat":return c;default:return e}};c=function(c,e){var b,a;if(c===e)return 0;_.isString(c)||(c=""+c);_.isString(e)||(e=""+e);b=c.toLowerCase();a=e.toLowerCase();return b===a?ce? +1:0:ba?1:0};e=function(c,e){return c===e?0:null===c?1:null===e?-1:ce?1:0}}).call(this);(function(){h.spec={};h.spec.toStrictMode=function(c){var e,k,g,b,a,d,f,q;c=_.clone(c);null==c.layers&&c.layer&&(c.layers=[c.layer]);null==c.guides&&c.guide&&(c.guides=c.guide);null==c.guides&&(c.guides={});if(c.layers)for(d=c.layers,e=k=0,b=d.length;karguments.length?(h=e,e=null):e&&g.overrideMimeType&&g.overrideMimeType(e);g.open("GET",c,!0);e&&g.setRequestHeader("Accept",e);g.onreadystatechange=function(){var b;if(4===g.readyState)return b=g.status,b=!b&&g.response||200<= +b&&300>b||304===b?g:null,h(b)};return g.send(null)};h.text=function(c,e,k){3>arguments.length&&(k=e,e=null);return h.xhr(c,e,function(c){return k(c&&c.responseText)})};h.json=function(c,e){return h.text(c,"application/json",function(c){return e(c?JSON.parse(c):null)})};h.dsv=function(c,e){var k,g,b,a,d,f,q;q=RegExp("\r\n|["+c+"\r\n]","g");f=RegExp('["'+c+"\n]");k=c.charCodeAt(0);b=function(b){return b.map(a).join(c)};a=function(a){var b;return null!=(b=f.test(a))?b:'"'+a.replace(/\"/g,'""')+{'"':a}}; +d=null;g=function(a,b){return h.text(a,e,function(a){return b(a&&g.parse(a))})};g.parse=function(a){return g.parseRows(a,function(a,b){var c,e,f;if(b){f={};c=-1;for(e=d.length;++c=a.length)return c;if(f)return f=!1,d;g=q.lastIndex;if(34===a.charCodeAt(g)){for(e=g;e++"};a.prototype.contents=function(){return[this.tag]};return a}();v=function(a){function b(a){this.name=a;this.name=R(this.name);b.__super__.constructor.call(this,n.Tag.symbol)}T(b,a);b.prototype.contents= +function(){return b.__super__.contents.call(this).concat([this.name])};return b}(n);d=function(a){function b(a){this.val=a;this.val=R(this.val);b.__super__.constructor.call(this,n.Tag.literal)}T(b,a);b.prototype.contents=function(){return b.__super__.contents.call(this).concat([this.val])};return b}(n);g=function(){var a,b,c,d;c=[n.Tag.lparen,n.Tag.rparen,n.Tag.comma];d=[];a=0;for(b=c.length;ac?1:0}:h.type.compare(a.type):function(a){return a}};k=function(){return function(a){this.type=a.type;this.min=a.min;this.max=a.max;this.bw=a.bw}}();e=function(){return function(a){this.type=a.type;this.min=a.min;this.max=a.max;this.bw=a.bw}}();c=function(){return function(a){this.type=a.type;this.levels=a.levels;this.sorted=a.sorted}}();d=function(a){"cat"!==a.type&&a.max===a.min&&(a.bw? +(a.max+=a.bw,a.min-=a.bw):0===a.max?a.max+=1:(a.max*=1.1,a.min/=1.1));switch(a.type){case "num":return new k(a);case "date":return new e(a);case "cat":return new c(a)}};h.domain.single=function(a,b,c){var e,f,g,k,m,q,r,v,C,A,F,I,G,J,H,O,S,N,L;if(0===a.length)throw h.error.input("Dataset is none?");f=function(a){return null!=c?c[a]:null};switch(b.type){case "num":return e=null!=(k=f("bw"))?k:b.bw,1= +b.min&&a<=b.max}):a.ticks:(e=null!=(w=a.numticks)?w:5,e=g[c](b,e),w=e.ticks,l=e.step);e=a.labels?function(b){var c;return null!=(c=a.labels[b])?c:b}:a.formatter?a.formatter:h.format(c.split("-")[0],l);l={};c=k(c,e);if(w)for(m=u=0,p=w.length-1;0<=p?u<=p:u>=p;m=0<=p?++u:--u)n=0===m?null:w[m-1],v=m===w.length-1?null:w[m+1],m=w[m],v=c(m,n,v),l[v.value]=v;return{ticks:l,ticksFormatter:e}};c=function(){return function(b){this.location=b.location;this.value=b.value;this.index=b.index;this.evtData=b.evtData}}(); +k=function(b,a){var d;d=0;return function(e,g,h){var k;"cat"===b?k={"in":[e]}:(k={},null!=g&&(k.ge=g),null!=h&&(k.le=h));return new c({location:e,value:a(e),index:d++,evtData:k})}};e=function(b,a){var c,e;e=Math.pow(10,Math.floor(Math.log(b/a)/Math.LN10));c=a/b*e;.15>c?e*=10:.35>=c?e*=5:.75>=c&&(e*=2);return e};g={none:function(){return{}},cat:function(b,a){var c,e,g,h,k,l,m;g=Math.max(1,Math.round(b.levels.length/a));h=[];m=b.levels;c=k=0;for(l=m.length;k1.4*a;)c*=2;h=g}else c=e(f-g,a),h=Math.ceil(g/c)*c;for(g=[];h<=f;)g.push(h),h+=c;return{ticks:g,step:Math.floor(Math.log(c)/Math.LN10)}},"num-log":function(b,a){var c,f,g,k,n,l,m,u,p;u=[];l=b.min;n=b.max;f=function(a){return Math.log(a)/Math.LN10};c=function(a){return Math.exp(a*Math.LN10)};k=Math.max(f(l),0);g=f(n);m=e(g-k,a);for(p=Math.ceil(k/m)*m;p=p%1)){if(p%1>h["const"].epsilon){if(k= +Math.floor(p)+f(p%1*10),0===k%1){p+=m;continue}}else k=p;k=c(k);kn||u.push(k)}p+=m}return{ticks:u}},date:function(b,a){var c,e,g,k,n,l,m;k=b.min;g=b.max;if(c=b.bw)for(n=c;"decade"!==n&&(g-k)/h["const"].approxTimeInSeconds[n]>1.4*a;)n=h["const"].timerange[_.indexOf(h["const"].timerange,n)+1];else for(e in c=(g-k)/a,n="decade",m=h["const"].approxTimeInSeconds,m)if(l=m[e],c<1.4*l){n=e;break}l=[];e=moment.unix(k).startOf(n);c=function(){switch(n){case "twomonth":return["months",2];case "quarter":return["months", +4];case "sixmonth":return["months",6];case "twoyear":return["years",2];case "fiveyear":return["years",5];case "decade":return["years",10];default:return[n+"s",1]}}();for(e.unix()n.call(this.validPositions,g))throw h.error.defn("X-axis position can't be "+this.position+".");this.titletext=e("title",a);this.renderTick=e("renderTick",this.renderTickDefault);this.renderGrid=e("renderGrid",this.renderGridDefault);this.renderLabel=e("renderLabel",this.renderLabelDefault);this.renderLine=e("renderLine",this.renderLineDefault);this.gridColor=e("gridColor",this.gridColor);c=h.tick.make(c,d,f);this.ticks=c.ticks;this.ticksFormatter=c.ticksFormatter;this.maxwidth=_.max(_.map(this.ticks, +function(a){return h.strSize(a.value)}));this.maxwidth=Math.max(this.maxwidth,0)}q(b,a);b.prototype.renderTickDefault=!0;b.prototype.renderGridDefault=!0;b.prototype.renderLabelDefault=!0;b.prototype.renderLineDefault=!0;b.prototype.calculate=function(a,b,c){var d,e,f,g,h,k,l;this.coord=b;if("none"===this.position)return{};null==c&&(c={});a.centerx=a.left+a.width/2;a.centery=a.top+a.height/2;a.radius=Math.min(a.width,a.height)/2-10;b={};this.renderLine&&(b.line={marks:{0:this._renderline(a)}});g= +this.ticks;for(d in g)f=g[d],e={},this.renderTick&&(null!=(h=c.renderTick)?h:1)&&(e.tick=this._makeTick(a,f)),this.renderLabel&&(null!=(k=c.renderLabel)?k:1)&&(e.text=this._makeLabel(a,f)),this.renderGrid&&(null!=(l=c.renderGrid)?l:1)&&(e.grid=this._makeGrid(a,f)),b[d]={marks:e};return b};b.prototype._makeTick=function(a){if(!a)throw h.error.impl();a.type="path";a.stroke=d.identity("#666");a.color=d.identity("#666");return a};b.prototype._makeLabel=function(a){if(!a)throw h.error.impl();a.type="text"; +a.stroke=d.identity("#666");a.color=d.identity("#666");return a};b.prototype._makeGrid=function(a){if(!a)throw h.error.impl();a.stroke=null!=this.gridColor?this.gridColor:"#EFEFEF";return a};return b}(h.Guide);b=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}q(b,a);b.prototype.type="x";b.prototype.renderGridDefault=!1;b.prototype.defaultPosition="bottom";b.prototype.validPositions=["top","bottom","none"];b.prototype._renderline=function(a){var b,c;c="top"===this.position? +d.identity(a.top):d.identity(a.bottom);b=d.identity(a.left);a=d.identity(a.left+a.width);return{type:"path",y:[c,c],x:[b,a],stroke:d.identity("#666")}};b.prototype._makeTick=function(a,c){var e,f;"top"===this.position?(e=d.identity(a.top),f=d.identity(a.top-5)):(e=d.identity(a.bottom),f=d.identity(a.bottom+5));return b.__super__._makeTick.call(this,{x:[c.location,c.location],y:[e,f]})};b.prototype._makeLabel=function(a,c){var e;e="top"===this.position?d.identity(a.top-15):d.identity(a.bottom+15); +return b.__super__._makeLabel.call(this,{x:c.location,y:e,text:c.value,"text-anchor":"middle"})};b.prototype._makeGrid=function(a,c){var e,f;e=d.identity(a.top);f=d.identity(a.bottom);return b.__super__._makeGrid.call(this,{type:"path",x:[c.location,c.location],y:[e,f]})};b.prototype.getDimension=function(){var a;return{position:null!=(a=this.position)?a:"bottom",height:30,width:"all"}};return b}(e);a=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}q(b,a);b.prototype.type= +"y";b.prototype.renderLineDefault=!1;b.prototype.renderTickDefault=!1;b.prototype.defaultPosition="left";b.prototype.validPositions=["left","right","none"];b.prototype._renderline=function(a){var b,c;b="left"===this.position?d.identity(a.left):d.identity(a.right);c=d.identity(a.top);a=d.identity(a.top+a.height);return{type:"path",x:[b,b],y:[c,a],stroke:d.identity("#666")}};b.prototype._makeTick=function(a,c){var e,f;"left"===this.position?(e=d.identity(a.left),f=d.identity(a.left-5)):(e=d.identity(a.right), +f=d.identity(a.right+5));return b.__super__._makeTick.call(this,{x:[e,f],y:[c.location,c.location]})};b.prototype._makeLabel=function(a,c){var e;e="left"===this.position?d.identity(a.left-7):d.identity(a.right+7);return b.__super__._makeLabel.call(this,{x:e,y:c.location,text:c.value,"text-anchor":"left"===this.position?"end":"start"})};b.prototype._makeGrid=function(a,c){var e,f;e=d.identity(a.left);f=d.identity(a.right);return b.__super__._makeGrid.call(this,{type:"path",y:[c.location,c.location], +x:[e,f]})};b.prototype.getDimension=function(){var a;return{position:null!=(a=this.position)?a:"right",height:"all",width:5+this.maxwidth}};return b}(e);k=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}q(b,a);b.prototype.type="r";b.prototype.defaultPosition="left";b.prototype.validPositions=["left","right","none"];b.prototype._renderline=function(a){var b,c;b=d.identity(a.left);c=d.identity(a.top);a=d.identity(a.top+a.height/2);return{type:"path",x:[b,b],y:[c,a],stroke:d.identity("#666")}}; +b.prototype._makeTick=function(a,c){return b.__super__._makeTick.call(this,{x:[d.identity(a.left),d.identity(a.left-5)],y:[c.location,c.location]})};b.prototype._makeLabel=function(a,c){return b.__super__._makeLabel.call(this,{x:d.identity(a.left-7),y:c.location,text:c.value,"text-anchor":"end"})};b.prototype._makeGrid=function(a,c){return b.__super__._makeGrid.call(this,{type:"circle",x:d.identity(a.centerx),y:d.identity(a.centery),size:d.identity(this.coord.getScale("r")(c.location)),color:d.identity("none"), +"fill-opacity":0,"stroke-width":1})};b.prototype.getDimension=function(){return{position:"left",height:"all",width:5+this.maxwidth}};return b}(e);g=function(a){function b(){return b.__super__.constructor.apply(this,arguments)}q(b,a);b.prototype.type="t";b.prototype.defaultPosition="out";b.prototype.validPositions=["out","none"];b.prototype._renderline=function(a){return{type:"circle",x:d.identity(a.centerx),y:d.identity(a.centery),size:d.identity(a.radius),color:d.identity("none"),stroke:d.identity("#666"), +"stroke-width":1}};b.prototype._makeTick=function(a,c){return b.__super__._makeTick.call(this,{x:[c.location,c.location],y:[d.max(0),d.max(3)]})};b.prototype._makeLabel=function(a,c){return b.__super__._makeLabel.call(this,{x:c.location,y:d.max(12),text:c.value,"text-anchor":"middle"})};b.prototype._makeGrid=function(a,c){var e,f,g,h;f=d.identity(a.centerx);h=d.identity(a.centery);e=this.coord.getScale("t")(c.location)-Math.PI/2;g=d.identity(a.centerx+a.radius*Math.cos(e));e=d.identity(a.centery+ +a.radius*Math.sin(e));return b.__super__._makeGrid.call(this,{type:"path",y:[h,e],x:[f,g]})};b.prototype.getDimension=function(){return{}};return b}(e);null==h.guide&&(h.guide={});h.guide.axis=function(c,d){if("x"===c)return new b(d);if("y"===c)return new a(d);if("r"===c)return new k(d);if("t"===c)return new g(d)};h.guide.axes=function(a){return new c(a)}}).call(this);(function(){var c,e,k,g,b,a={}.hasOwnProperty,d=function(b,c){function d(){this.constructor=b}for(var e in c)a.call(c,e)&&(b[e]=c[e]); +d.prototype=c.prototype;b.prototype=new d;b.__super__=c.prototype;return b},f=[].indexOf||function(a){for(var b=0,c=this.length;be&&(b+=f+5,f=c=0),d.width>f&&(f=d.width),c+=d.height;return b+f};b.prototype._topbottomHeight= +function(a){var b,c,d,e,f;c=10;f=this.legends;d=0;for(e=f.length;dg&&(m+=h+5,h=n=0),k.width>h&&(h=k.width),q={x:m+e,y:n+d},f.render(b(q,!1,!1),h),J.push(n+=k.height);return J};b.prototype._renderH=function(a,b,c){var d,e,f,g,h,k;d=a.paddingLeft;e="top"===this.position?a.paddingTop:a.height-a.guideBottom-a.paddingBottom; +e={x:d,y:"top"===this.position?c.top+e:c.bottom+e+10};h=this.legends;k=[];f=0;for(g=h.length;fthis.domain.min)throw h.error.input("Log scale cannot handle zero or negative input.");a=Math.log;c=h.linear(a(this.domain.min),this.range.min,a(this.domain.max),this.range.max); +this.f=this._numWrapper(this.domain,function(b){return c(a(b))});d=h.linear(this.range.min,a(this.domain.min),this.range.max,a(this.domain.max));b=function(a){return Math.exp(d(a))};return this.finv=function(a,c){var d;d=[b(a),b(c)];return{ge:_.min(d),le:_.max(d)}}};b.prototype._tickNum=function(){return"num-log"};return b}(c);c=function(a){function b(){this._makeDate=n(this._makeDate,this);this._makeNum=n(this._makeNum,this);return b.__super__.constructor.apply(this,arguments)}w(b,a);b.prototype._makeNum= +function(){var a,b,c;a=0===this.domain.min?0:1;b=Math.sqrt;c=h.linear(b(this.domain.min),a,b(this.domain.max),10);return this.f=this._identityWrapper(function(a){return c(b(a))})};b.prototype._makeDate=function(){return this._makeNum()};return b}(v);f=function(a){function b(){this._makeDate=n(this._makeDate,this);this._makeNum=n(this._makeNum,this);return b.__super__.constructor.apply(this,arguments)}w(b,a);b.prototype._makeNum=function(){return this.f=this._identityWrapper(h.linear(this.domain.min, +0===this.domain.min?0:.1,this.domain.max,1))};b.prototype._makeDate=function(){return this._makeNum()};return b}(v);q=function(a){function b(){this._makeCat=n(this._makeCat,this);return b.__super__.constructor.apply(this,arguments)}w(b,a);b.prototype._makeCat=function(){var a,b,c,d=this;c=this.domain.levels.length;if(9>=c)return a="#E41A1C #377EB8 #4DAF4A #984EA3 #FF7F00 #FFFF33 #A65628 #F781BF #999999".split(" "),this.f=function(b){b=_.indexOf(d.domain.levels,b);return a[b]};b=function(a){return _.indexOf(d.domain.levels, +a)/c+1/(2*c)};return this.f=function(a){return"undefined"!==typeof Raphael&&null!==Raphael?Raphael.hsl(b(a),.5,.5):"hsl("+b(a)+",0.5,0.5)"}};return b}(v);k=function(a){function b(a){this._makeDate=n(this._makeDate,this);this._makeNum=n(this._makeNum,this);this.lower=a.lower;this.upper=a.upper}w(b,a);b.prototype._makeNum=function(){var a,b,c,d,e;c="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.lower):this.lower;e="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.upper): +this.upper;d=h.linear(this.domain.min,c.r,this.domain.max,e.r);b=h.linear(this.domain.min,c.g,this.domain.max,e.g);a=h.linear(this.domain.min,c.b,this.domain.max,e.b);return this.f=this._identityWrapper(function(c){return"undefined"!==typeof Raphael&&null!==Raphael?Raphael.rgb(d(c),b(c),a(c)):"rgb("+d(c)+","+b(c)+","+a(c)+")"})};b.prototype._makeDate=function(){return this._makeNum()};return b}(v);g=function(a){function b(a){this._makeDate=n(this._makeDate,this);this._makeCat=n(this._makeCat,this); +this._makeNum=n(this._makeNum,this);this.lower=a.lower;this.middle=a.middle;this.upper=a.upper;this.midpoint=a.midpoint;null==this.midpoint&&(this.midpoint=0)}w(b,a);b.prototype._makeNum=function(){var a,b,c,d,e,f,g,k,l,p=this;e="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.lower):this.lower;f="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.middle):this.middle;l="undefined"!==typeof Raphael&&null!==Raphael?Raphael.color(this.upper):this.upper;g=h.linear(this.domain.min, +e.r,this.midpoint,f.r);c=h.linear(this.domain.min,e.g,this.midpoint,f.g);a=h.linear(this.domain.min,e.b,this.midpoint,f.b);k=h.linear(this.midpoint,f.r,this.domain.max,l.r);d=h.linear(this.midpoint,f.g,this.domain.max,l.g);b=h.linear(this.midpoint,f.b,this.domain.max,l.b);return this.f=this._identityWrapper(function(e){return e(b=_.keys(a).length)&&"meta"in a||5>b)?(b=a.data,c=a.meta):b=a;switch(f(b)){case "json-object":case "json-grid":case "json-array":return h.data.json(b, +c,void 0);case "url":return h.data.url(b,c,void 0);case "csv":return h.data.csv(b,c);case "api":return h.data.api(b);default:throw h.error.data("Unknown data format.");}};h.data.json=function(a,b,c){return new g({data:a,meta:b,type:c})};h.data.csv=function(a,b){return new g({data:a,meta:b,csv:"csv"})};h.data.url=function(a,b,c){return new k({url:a,computeBackend:b,limit:c})};h.data.api=function(a){return new e({apiFun:a})};f=function(a){if(_.isArray(a))return _.isArray(a[0])?"json-grid":"json-array"; +if(_.isObject(a))return"json-object";if(_.isString(a))return h.isURI(a)?"url":"csv";if(_.isFunction(a))return"api";throw h.error.data("Unknown data format.");};b=function(a,b){var c,d,e,f,g,k,l;if(0=n;c=0<=n?++k:--k){f={};l=0;for(m=e.length;l_.keys(c).length&&"data"in c?(e=c.data,g=null!=(k=c.meta)?k:{}):(e=c,g={});k=function(){var k;switch(null!=(k=c.type)?k:f(e)){case "json-object":return q(e,g);case "json-grid":return a(e,g);case "json-array":return b(e,g);case "csv":return d(e,g);default:throw h.error.data("Unknown data format.");}}();this.key=k.key;this.raw=k.raw;this.meta=k.meta;return this.data=this.raw};e.prototype._checkRename=function(a, +b){if(""===b)throw h.error.defn("Column names cannot be an empty string");if(-1===_.indexOf(this.key,a))throw h.error.defn("The key "+a+" doesn't exist!");if(-1!==_.indexOf(this.key,b))throw h.error.defn("The key "+b+" already exists!");};e.prototype.rename=function(a,b,c){var d,e,f;null==c&&(c=!1);a=a.toString();b=b.toString();if(a===b)return!0;c||this._checkRename(a,b);f=this.raw;d=0;for(e=f.length;d_.keys(e).length&&"data"in e?(g= +e.data,k=null!=(m=e.meta)?m:{}):(g=e,k={});e=function(){switch(f(g)){case "json-object":return q(g,k);case "json-grid":return a(g,k);case "json-array":return b(g,k);case "csv":return d(g,k);default:throw h.error.data("Unknown data format.");}}();l.key=e.key;l.raw=e.raw;l.meta=e.meta;l.data=l.raw;return c(null,l)})};e.prototype.update=function(a){this.raw=null;return e.__super__.update.call(this)};e.prototype.renameMany=function(a){return 0===_.keys(a).length};return e}(c);e=function(c){function e(a){this.getData= +w(this.getData,this);e.__super__.constructor.call(this);this.apiFun=a.apiFun;this.computeBackend=!0}n(e,c);e.prototype.getData=function(c,e){var g=this;return this.apiFun(e,function(e,k){var l,m,n,p,u;if(null!=e)return c(e,null);if(_.isString(k))try{k=JSON.parse(k)}catch(v){m=v}m=null;try{l=k.data,n=null!=(p=k.meta)?p:{},u=function(){switch(f(l)){case "json-object":return q(l,n);case "json-grid":return a(l,n);case "json-array":return b(l,n);case "csv":return d(l,n);default:throw h.error.data("Unknown data format."); +}}(),g.key=u.key,g.raw=u.raw,g.meta=u.meta,g.data=g.raw}catch(w){m=w}return c(m,g)})};e.prototype.update=function(a){this.raw=null;return e.__super__.update.call(this)};e.prototype.renameMany=function(a){return 0===_.keys(a).length};return e}(c)}).call(this);(function(){var c,e,k,g,b,a,d,f,q,v,n,l=function(a,b){return function(){return a.apply(b,arguments)}},w=[].indexOf||function(a){for(var b=0,c=this.length;b=d;1<=d?++a:--a)b.push(void 0);return b}();return{trans:function(b){e.push(b[a]);return b[f]=e.shift()},meta:{type:c.type}}}};v=function(a,b,c){return n[b.trans](a,b,null!=c?c:{})};a={lt:function(a,b){return ab},ge:function(a,b){return a>=b},"in":function(a,b){return 0<=w.call(b,a)}};b=function(b){var c;c=[];_.each(b,function(b,d){return _.each(b,function(b,e){return c.push(function(c){return a[e](c[d],b)})})}); +return function(a){var b,d,e;d=0;for(e=c.length;d=d&&a<=f}),{q1:_.min(b["true"]),q2:e,q3:h.median(a,!0),q4:c,q5:_.max(b["true"]),outliers:null!=(g=b["false"])? +g:[]}):{outliers:a}}}};q=function(a){return f[a.stat](a)};g=function(a,b){var c,d;d={};_.each(b.stats,function(a){var b,c,e;b=a.key;c=a.name;e=q(a);return d[c]=function(a){return e(_.pluck(a,b))}});c=h.groupBy(a,b.groups);return _.map(c,function(a){var c;c={};_.each(b.groups,function(b){return c[b]=a[0][b]});_.each(d,function(b,d){return c[d]=b(a)});return c})};k=function(a,b,c){var d,e,f,h;f=b.sort;h=b.stat;d=b.limit;b=b.asc;h&&(h={stats:[h],groups:[a]},c=g(c,h));e=b?1:-1;c.sort(function(a,b){return a[f]=== +b[f]?0:a[f]>=b[f]?1*e:-1*e});d&&(c=c.slice(0,+(d-1)+1||9E9));a=_.uniq(_.pluck(c,a));return{meta:{levels:a,sorted:!0},filter:{"in":a}}};d=function(a,c,d){var e,f,l,m,n,q,w,F,I,G,J,H,O;w=_.clone(c.meta);c=_.clone(c.raw);null==w&&(w={});e=function(a,b){var c;return w[a]=_.extend(null!=(c=w[a])?c:{},b)};if(a.trans)for(O=a.trans,m=0,J=O.length;me&&(c.guideLeft=e);c.guideRight>e&&(c.guideRight=e);c.guideTop>b&&(c.guideTop=b);c.guideBottom>b&&(c.guideBottom=b);c.chartHeight=c.height-c.paddingTop-c.paddingBottom-c.guideTop-c.guideBottom;c.chartWidth= +c.width-c.paddingLeft-c.paddingRight-c.guideLeft-c.guideRight;null!=h.cols&&1=e;d=0<=e?++c:--c)f.push(void 0===a[d]||void 0===b[d]);return f}()))throw h.error.missing(""+c+" cannot be plotted due to too many missing points.");};a.prototype._checkArrayNaN=function(a,b){var c,d;d=_.map(_.zip(a,b),function(a,b){return isNaN(a[0])||isNaN(a[1])?void 0:a});return{x:function(){var a,b,e;e=[];a=0;for(b=d.length;a=q;g=1<=q?++m:--m)k=Math.abs(l[g]-l[g-1])>Math.PI?1:0,f=0Math.PI?1:0,b="M "+g[0]+" "+k[0]+" A "+e[0]+" "+e[1]+" 0 "+c+" 1 "+g[1]+" "+k[1],c=Math.abs(f[3]-f[2])>Math.PI?1:0,b+="L "+g[2]+" "+k[2]+" A "+e[2]+" "+e[3]+" 0 "+c+" 0 "+g[3]+" "+k[3]+" Z");c=this._maybeApply(a,d,d.stroke?"stroke":"color");return this._shared(a,d,{path:b,fill:this._maybeApply(a,d,"color"),stroke:c,"stroke-width":this._maybeApply(a,d,"stroke-width")})};return b}(f);f=function(a){function b(){return b.__super__.constructor.apply(this, +arguments)}l(b,a);b.prototype._make=function(a){return a.text()};b.prototype.attr=function(a,b,c,d,e){var f;e=b.getXY(e,d);b=e.x;e=e.y;this._checkPointUndefined(b,e,"Text");c=this._applyOffset(b,e,c);b=c.x;e=c.y;return this._shared(a,d,{x:b,y:e,r:10,text:this._maybeApply(a,d,"text"),"font-size":this._maybeApply(a,d,"size"),"text-anchor":null!=(f=d["text-anchor"])?f:"left",fill:this._maybeApply(a,d,"color")||"black"})};return b}(f);v={cartesian:{circle:new e,line:new g,pline:new g,area:new c,path:new b, +text:new f,rect:new d,spline:new q},polar:{circle:new e,path:new b,line:new g,pline:new a,area:new c,text:new f,rect:new k,spline:new q}}}).call(this);(function(){var c=[].indexOf||function(c){for(var h=0,g=this.length;hd.y&&(d.y=x+30+g,h.y=f+g/2+15),d.x+d.width>c&&(f=d.x+d.width-c,d.x-=f/2,h.x-=f/2),d.xc.call(h["const"].aes,e))throw h.error.input("Unknown aesthetic "+e+".");b=0;a=[g];return function(c,f,g,h){var n,l;if("reset"===c&&0h["const"].epsilon&&(null==u[e]&&(u[e]={min:null,max:null}),C=[d[c].ge,d[c].le],u[e].min=C[0],u[e].max=C[1]),"cat"===f.axes.domains[e].type&& +0!==d[c]["in"].length&&(null==u[e]&&(u[e]={levels:null}),u[e].levels=d[c]["in"]));f.handlers=_.map(f.handlers,m);A.push(f.make(f.spec))}return A}}}}}).call(this);(function(){var c,e=[].indexOf||function(c){for(var e=0,b=this.length;ee||e>=this.cols||0>m||m>=this.rows)return null;k={x:c.paddingLeft+c.guideLeft+(c.eachWidth+c.horizontalSpacing)*e,y:c.paddingTop+c.guideTop+(c.eachHeight+c.verticalSpacing)*m+c.verticalSpacing};b={x:b-k.x,y:a-k.y};if(!d&&(b.x>c.eachWidth||b.y>c.eachHeight))return null;b.x=Math.max(Math.min(b.x,c.eachWidth),0);b.y=Math.max(Math.min(b.y,c.eachHeight),0);return{row:m,col:e,offset:k,adjusted:b,evtData:this.getEvtData(e, +m)}};c.prototype._getMappings=function(c){var b;b={type:"none",mapping:{}};if(_.isObject(c))if("wrap"===c.type){b.type="wrap";if(!c["var"])throw h.error.defn("You didn't specify a variable to facet on.");c["var"]&&(b.mapping["var"]=c["var"]["var"])}else if("grid"===c.type){b.type="grid";if(!c.x&&c.y)throw h.error.defn("You didn't specify a variable to facet on.");c.x&&(b.mapping.x=c.x["var"]);c.y&&(b.mapping.y=c.y["var"])}return b};c.prototype._makeIndices=function(c,b){var a,d,e,k,m,n,l,w;l={};for(a in b)if(k= +b[a],k.levels)l[k["var"]]=k.levels;else{n=[];for(e in c){d=c[e];if(m=d.metaData[k["var"]])!m||"num"!==(w=m.type)&&"date"!==w||h.type.compare(m.type);n=_.uniq(_.union(n,_.pluck(d.statData,k["var"])))}l[k["var"]]=n}a=h.cross(l);d={};e=h.stringify(_.pluck(b,"var"));m=0;for(n=a.length;m").attr("border","1px solid black");B.attr("cellspacing",0);B.attr("cellpadding",0);for(x=0;x");w=this.spec.columns[x]["var"];0===x&&1"), +z.attr("rowspan",g),z.attr("colspan",k-1),y.append(z));y.append($(""+w+":").attr("align","right"));for(z=0;z"+l+"").attr("colspan",u*m);l.attr("align","center");y.append(l);z+=u}B.append(y);x++}y=$("");0===k&&(z=$(""),z.attr("rowspan",a.length+1),y.append(z));for(x=0;x"+w+"").attr("align","center")),x++;for(x=0;x"+l["var"]+""),l.attr("align","center"),y.append(l);x++}B.append(y);for(x=0;x");k=this.spec.rows;z=0;for(g=k.length;z"+l+"").attr("rowspan",m);l.attr("align","center");l.attr("valign","middle");y.append(l)}for(z=0;z"+l+"").attr("align","right"));z++}B.append(y);x++}this.prepare&&this.prepare(this);this.spec.width&&B.attr("width",this.spec.width);this.spec.height&&B.attr("height",this.spec.height);this.dom=_.isString(this.spec.dom)?$("#"+this.spec.dom):$(this.spec.dom);this.dom.empty();this.dom.append(B);if(this.callback)return this.callback(null,this)};return b}();h.pivot=function(b,a,d){return new c(b,a,d)}}).call(this);(function(){var c,e,k=function(b,a){return function(){return b.apply(a, +arguments)}},g=[].indexOf||function(b){for(var a=0,c=this.length;ag.call(this.handlers,a))return this.handlers.push(a)}; +b.prototype.render=function(a,b,c){var e,g,k,l;if(null!=a)console.error(a);else{this.value=b[0][this.spec.value["var"]];this.title=null!=(k=this.spec.title)?k:this.spec.value["var"];a=0<(g=this.value)&&1>g?void 0:0===this.value%1?0:-1;this.value=h.format.number(a)(this.value);if(_.isNaN(this.value)||"NaN"===this.value)this.value="Not a Number";null!=this.prepare&&this.prepare(this);this.dom=this.spec.dom;this.width=null!=(e=this.spec.width)?e:200;this.height=null!=(l=this.spec.height)?l:100;null== +this.paper&&(this.paper=this._makePaper(this.dom,this.width,this.height,this));null==this.titleObj&&(this.titleObj=this.paper.text(this.width/2,10,""));this.titleObj.attr({text:this.title,"font-size":"12px"});this.titleObj.click(this.handleEvent("guide-title"));this.titleObj.hover(this.handleEvent("tover"),this.handleEvent("tout"));null==this.textObj&&(this.textObj=this.paper.text(this.width/2,this.height/2,""));this.textObj.attr({x:this.width/2,y:7+this.height/2,text:this.value});e=this.textObj.getBBox(); +g=e.width;e=e.height;g=Math.min(.9*this.width/g,.9*(this.height-14)/e);this.textObj.transform("s"+g);this.callback&&this.callback(null,this)}};b.prototype._makePaper=function(a,b,c,e){return h.paper(a,b,c,{numeral:e})};return b}();h.numeral=function(b,a,d){try{return new c(b,a,d)}catch(e){console.log(e);if(null!=a)return a(e,null);throw h.error.defn("Bad specification.");}}}).call(this);(function(){var c,e,k,g={}.hasOwnProperty,b=function(a,b){function c(){this.constructor=a}for(var e in b)g.call(b, +e)&&(a[e]=b[e]);c.prototype=b.prototype;a.prototype=new c;a.__super__=b.prototype;return a};e=function(){function a(a,b,c){null==a&&(a="polyjsEvent");this.eventName=a;this.cancelable=this.bubbles=!0;this.detail={type:c,data:b}}a.prototype.dispatch=function(a){var b;b=new CustomEvent(this.eventName,{detail:this.detail});if(null!=a)return a.dispatchEvent(b)};return a}();k=function(a){function c(a,b){c.__super__.constructor.call(this,"title-click",a,b)}b(c,a);return c}(e);c=function(a){function c(a, +b){c.__super__.constructor.call(this,"legend-click",a,b)}b(c,a);return c}(e);h.event={};h.event.make=function(a,b){if("guide-title"===a||"guide-titleH"===a||"guide-titleV"===a)return new k(b,a);if("legend-label"===a||"legend-title"===a)return new c(b,a);throw h.error.defn("No such event "+a+".");}}).call(this);(function(){var c,e=function(c,b){return function(){return c.apply(b,arguments)}},k=[].indexOf||function(c){for(var b=0,a=this.length;bk.call(this.handlers,b))return this.handlers.push(b)};c.prototype.removeHandler=function(b){return this.handlers.splice(_.indexOf(this.handlers,b),1)};c.prototype.handleEvent=function(b){var a;a=this;return _.throttle(function(c){var e,g,k,m,l;if("touchstart"===b||"touchmove"===b||"touchend"===b||"touchcancel"===b)h.touch(b,this,c,a);else if("select"===b){g=c.start;e=c.end;g=a.facet.getFacetInfo(a.dims,g.x,g.y);if(!g)return;m=g.col;l=g.row;k=g.adjusted;g=_.clone(k);k=a.facet.getFacetInfo(a.dims, +e.x,e.y,{col:m,row:l}).adjusted;e=_.clone(k);this.evtData="cartesian"===a.coord.type?a.scaleSet.fromPixels(g,e):null}else if("data"===b)this.evtData={};else if("reset"===b||"click"===b||"mover"===b||"mout"===b||"tover"===b||"tout"===b||"gover"===b||"gout"===b||"guide-click"===b)this.tooltip=this.data("t"),this.evtData=this.data("e"),"guide-click"===b&&"text"===this.type&&null!=this.evtData&&(c="legendTitle"===this.evtData.value?h.event.make("legend-title",this):h.event.make("legend-label",this),c.dispatch(a.dom)); +else if("guide-title"===b||"guide-titleH"===b||"guide-titleV"===b)this.tooltip=this.data("t"),this.evtData=this.data("e"),c=h.event.make(b,this),c.dispatch(a.dom);l=a.handlers;k=[];g=0;for(m=l.length;g Date: Tue, 19 May 2015 22:41:03 +0200 Subject: [PATCH 014/244] Aggiornata la versione della build js, css. Corretto un tag chiuso male nel footer --- index.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 052c8c45..1ac20ccc 100644 --- a/index.php +++ b/index.php @@ -84,8 +84,8 @@ - - + + @@ -93,7 +93,7 @@ - From 1da0240bf92088e1d1223b92d29b36a0476340dc Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Tue, 19 May 2015 22:42:00 +0200 Subject: [PATCH 015/244] Modifica al layout e prove di integrazione nuova versione di full calendar andate male --- assets/js/attivita.js | 110 +++++---- inc/attivita.php | 6 + inc/public.corsi.php | 531 +++++++++++++++++++++--------------------- 3 files changed, 322 insertions(+), 325 deletions(-) diff --git a/assets/js/attivita.js b/assets/js/attivita.js index f542deba..54e4884c 100644 --- a/assets/js/attivita.js +++ b/assets/js/attivita.js @@ -5,55 +5,50 @@ $(document).ready(function() { $('#calendario').fullCalendar({ /* Localizzazione in italiano */ - monthNames: ['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', - 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'], - monthNamesShort: ['Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', - 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'], - dayNames: ['Domenica', 'Lunedì', 'Martedì', 'Mercoledì', - 'Giovedì', 'Venerdì', 'Sabato'], - firstDay: 1, - dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab', 'Dom'], - buttonText: { - prev: ' ◄ ', - next: ' ► ', - prevYear: ' « ', - nextYear: ' » ', - today: 'oggi', - month: 'mese', - week: 'settimana', - day: 'giorno' - }, - titleFormat: { - month: 'MMMM yyyy', - week: "d MMM[ yyyy]{ '—' d MMM yyyy}", - day: 'dddd d MMM yyyy' - }, - columnFormat: { - month: 'ddd', - week: 'ddd d/M', - day: 'dddd d/M' - }, - timeFormat: { - agenda: 'H:mm{ - H:mm}', - '': 'H(:mm)' - }, - axisFormat: 'H:mm', - defaultView: 'basicWeek', - allDaySlot: false, + monthNames: ['Gennaio', 'Febbraio', 'Marzo', 'Aprile', 'Maggio', 'Giugno', 'Luglio', 'Agosto', 'Settembre', 'Ottobre', 'Novembre', 'Dicembre'], + monthNamesShort: ['Gen', 'Feb', 'Mar', 'Apr', 'Mag', 'Giu', 'Lug', 'Ago', 'Set', 'Ott', 'Nov', 'Dic'], + dayNames: ['Domenica', 'Lunedì', 'Martedì', 'Mercoledì', 'Giovedì', 'Venerdì', 'Sabato'], + firstDay: 1, + dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mer', 'Gio', 'Ven', 'Sab', 'Dom'], + buttonText: { + prev: ' ◄ ', + next: ' ► ', + prevYear: ' « ', + nextYear: ' » ', + today: 'oggi', + month: 'mese', + week: 'settimana', + day: 'giorno' + }, + titleFormat: { + month: 'MMMM yyyy', + week: "d MMM[ yyyy]{ '—' d MMM yyyy}", + day: 'dddd d MMM yyyy' + }, + columnFormat: { + month: 'ddd', + week: 'ddd d/M', + day: 'dddd d/M' + }, + timeFormat: { + agenda: 'H:mm{ - H:mm}', + '': 'H(:mm)' + }, + + axisFormat: 'H:mm', + defaultView: 'basicWeek', + allDaySlot: false, + header: { + left: 'title', + //center: '', + right: 'month,basicWeek today prev,next' + }, - header: { - left: 'title', - //center: '', - right: 'month,basicWeek today prev,next' - }, - - /* - * Funzione adattatore che comunica con le API - */ + /* + * Funzione adattatore che comunica con le API + */ events: function ( inizio, fine, callback ) { - $("#icona-caricamento") - .removeClass('icon-calendar') - .addClass('icon-spinner').addClass('icon-spin'); + $("#icona-caricamento").removeClass('icon-calendar').addClass('icon-spinner').addClass('icon-spin'); inizio = new Date(inizio); fine = new Date(fine); var sinizio = inizio.toISOString(); @@ -62,19 +57,18 @@ $(document).ready(function() { inizio: sinizio, fine: sfine }, + function (risposta) { - risposta = risposta.risposta.turni; - for ( var y in risposta ) { - risposta[y].id = risposta[y].turno.id; - risposta[y].title = risposta[y].turno.nome + ", " + risposta[y].attivita.nome; - risposta[y].start = risposta[y].inizio; - risposta[y].end = risposta[y].fine; - risposta[y].color = risposta[y].colore; - } - $("#icona-caricamento") - .addClass('icon-calendar') - .removeClass('icon-spinner').removeClass('icon-spin'); + risposta = risposta.risposta.turni; + for ( var y in risposta ) { + risposta[y].id = risposta[y].turno.id; + risposta[y].title = risposta[y].turno.nome + ", " + risposta[y].attivita.nome; + risposta[y].start = risposta[y].inizio; + risposta[y].end = risposta[y].fine; + risposta[y].color = risposta[y].colore; + } + $("#icona-caricamento").addClass('icon-calendar').removeClass('icon-spinner').removeClass('icon-spin'); callback(risposta); }); } diff --git a/inc/attivita.php b/inc/attivita.php index dc2a4030..d2c152e7 100644 --- a/inc/attivita.php +++ b/inc/attivita.php @@ -12,6 +12,12 @@ } ?> + + + + + +
    diff --git a/inc/public.corsi.php b/inc/public.corsi.php index e7901e52..630cc5c5 100644 --- a/inc/public.corsi.php +++ b/inc/public.corsi.php @@ -15,282 +15,282 @@ margin: 0 auto; } - - +
    - - -
    +

    Filtri

    - - " required id="cercaProvicia" placeholder="Cerca provincia" class="span12" /> */ ?> - -
    + + " required id="cercaProvicia" placeholder="Cerca provincia" class="span12" /> */ ?> + -
    + +
    -
    + + +

    Se hai i permessi

    -
    \ No newline at end of file From ecf0dde20fc89fd96a68e3d91fa26392693bcc0d Mon Sep 17 00:00:00 2001 From: Pietro Ferraresi Date: Thu, 21 May 2015 22:59:52 +0200 Subject: [PATCH 016/244] =?UTF-8?q?abilitata=20la=20possibilit=C3=A0=20di?= =?UTF-8?q?=20non=20usare=20i=20file=20minimizzati?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css.build | 7 +++++++ assets/js.build | 15 +++++++++++++++ inc/public.corsi.php | 7 ++++++- index.php | 37 ++++++++++++++++++++++++++++++------- 4 files changed, 58 insertions(+), 8 deletions(-) create mode 100644 assets/css.build create mode 100644 assets/js.build diff --git a/assets/css.build b/assets/css.build new file mode 100644 index 00000000..3a2b1872 --- /dev/null +++ b/assets/css.build @@ -0,0 +1,7 @@ +assets/css/bootstrap.min.css +assets/css/font-awesome.min.css +assets/css/main.css +https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/ui-lightness/jquery-ui.min.css +assets/css/chosen.min.css +assets/css/fullcalendar.min.css +assets/css/fullcalendar.print.css \ No newline at end of file diff --git a/assets/js.build b/assets/js.build new file mode 100644 index 00000000..2b99cd98 --- /dev/null +++ b/assets/js.build @@ -0,0 +1,15 @@ +assets/js/libs/moment.min.js +https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js +assets/js/libs/modernizr.custom.03290.js +assets/js/libs/bootstrap.min.js +https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js +assets/js/libs/jquery.timepicker.js +assets/js/libs/fullcalendar.min.js +assets/js/libs/lang-all.js +assets/js/libs/jquery.cookie.js +assets/js/libs/chosen.jquery.min.js +assets/js/libs/app.js +assets/js/libs/ui.datepicker-it.js +assets/js/tinymce/tinymce.min.js +assets/js/libs/polychart2.standalone.js + diff --git a/inc/public.corsi.php b/inc/public.corsi.php index 630cc5c5..0c8043cf 100644 --- a/inc/public.corsi.php +++ b/inc/public.corsi.php @@ -5,9 +5,14 @@ */ $_titolo = "Calencario dei Corsi"; +?> + -?> ", -m.insertBefore(c.lastChild,m.firstChild));d.hasCSS=!!c}return v||f(a,d),a}var m=a.html5||{},k=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,l=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,x,q="_html5shiv",r=0,t={},v;(function(){try{var a=b.createElement("a");a.innerHTML="";x="hidden"in a;var d;if(!(d=1==a.childNodes.length)){b.createElement("a");var e=b.createDocumentFragment();d="undefined"==typeof e.cloneNode|| -"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}v=d}catch(c){v=x=!0}})();var h={elements:m.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:!1!==m.shivCSS,supportsUnknownElements:v,shivMethods:!1!==m.shivMethods,type:"default",shivDocument:g,createElement:c,createDocumentFragment:function(a,c){a||(a=b);if(v)return a.createDocumentFragment(); -c=c||e(a);for(var f=c.frag.cloneNode(),g=0,m=d(),k=m.length;gthis.$items.length-1||0>g))return this.sliding?this.$element.one("slid",function(){f.to(g)}):h==g?this.pause().cycle():this.slide(g>h?"next":"prev",c(this.$items[g]))},pause:function(g){return g||(this.paused=!0),this.$element.find(".next, .prev").length&&c.support.transition.end&&(this.$element.trigger(c.support.transition.end), -this.cycle(!0)),clearInterval(this.interval),this.interval=null,this},next:function(){if(!this.sliding)return this.slide("next")},prev:function(){if(!this.sliding)return this.slide("prev")},slide:function(g,h){var f=this.$element.find(".item.active"),b=h||f[g](),a=this.interval,d="next"==g?"left":"right",e="next"==g?"first":"last",x=this;this.sliding=!0;a&&this.pause();b=b.length?b:this.$element.find(".item")[e]();e=c.Event("slide",{relatedTarget:b[0],direction:d});if(!b.hasClass("active")){this.$indicators.length&& -(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var a=c(x.$indicators.children()[x.getActiveIndex()]);a&&a.addClass("active")}));if(c.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(e);if(e.isDefaultPrevented())return;b.addClass(g);b[0].offsetWidth;f.addClass(d);b.addClass(d);this.$element.one(c.support.transition.end,function(){b.removeClass([g,d].join(" ")).addClass("active");f.removeClass(["active",d].join(" "));x.sliding=!1; -setTimeout(function(){x.$element.trigger("slid")},0)})}else{this.$element.trigger(e);if(e.isDefaultPrevented())return;f.removeClass("active");b.addClass("active");this.sliding=!1;this.$element.trigger("slid")}return a&&this.cycle(),this}}};var n=c.fn.carousel;c.fn.carousel=function(g){return this.each(function(){var p=c(this),f=p.data("carousel"),b=c.extend({},c.fn.carousel.defaults,"object"==typeof g&&g),a="string"==typeof g?g:b.slide;f||p.data("carousel",f=new h(this,b));"number"==typeof g?f.to(g): -a?f[a]():b.interval&&f.pause().cycle()})};c.fn.carousel.defaults={interval:5E3,pause:"hover"};c.fn.carousel.Constructor=h;c.fn.carousel.noConflict=function(){return c.fn.carousel=n,this};c(document).on("click.carousel.data-api","[data-slide], [data-slide-to]",function(g){var h=c(this),f,b=c(h.attr("data-target")||(f=h.attr("href"))&&f.replace(/.*(?=#[^\s]+$)/,""));f=c.extend({},b.data(),h.data());var a;b.carousel(f);(a=h.attr("data-slide-to"))&&b.data("carousel").pause().to(a).cycle();g.preventDefault()})}(window.jQuery); -!function(c){var h=function(g,h){this.$element=c(g);this.options=c.extend({},c.fn.collapse.defaults,h);this.options.parent&&(this.$parent=c(this.options.parent));this.options.toggle&&this.toggle()};h.prototype={constructor:h,dimension:function(){return this.$element.hasClass("width")?"width":"height"},show:function(){var g,h,f,b;if(!this.transitioning&&!this.$element.hasClass("in")){g=this.dimension();h=c.camelCase(["scroll",g].join("-"));if((f=this.$parent&&this.$parent.find("> .accordion-group > .in"))&& -f.length){if((b=f.data("collapse"))&&b.transitioning)return;f.collapse("hide");b||f.data("collapse",null)}this.$element[g](0);this.transition("addClass",c.Event("show"),"shown");c.support.transition&&this.$element[g](this.$element[0][h])}},hide:function(){var g;!this.transitioning&&this.$element.hasClass("in")&&(g=this.dimension(),this.reset(this.$element[g]()),this.transition("removeClass",c.Event("hide"),"hidden"),this.$element[g](0))},reset:function(c){var h=this.dimension();return this.$element.removeClass("collapse")[h](c|| -"auto")[0].offsetWidth,this.$element[null!==c?"addClass":"removeClass"]("collapse"),this},transition:function(g,h,f){var b=this,a=function(){"show"==h.type&&b.reset();b.transitioning=0;b.$element.trigger(f)};this.$element.trigger(h);h.isDefaultPrevented()||(this.transitioning=1,this.$element[g]("in"),c.support.transition&&this.$element.hasClass("collapse")?this.$element.one(c.support.transition.end,a):a())},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}};var n=c.fn.collapse; -c.fn.collapse=function(g){return this.each(function(){var p=c(this),f=p.data("collapse"),b=c.extend({},c.fn.collapse.defaults,p.data(),"object"==typeof g&&g);f||p.data("collapse",f=new h(this,b));"string"==typeof g&&f[g]()})};c.fn.collapse.defaults={toggle:!0};c.fn.collapse.Constructor=h;c.fn.collapse.noConflict=function(){return c.fn.collapse=n,this};c(document).on("click.collapse.data-api","[data-toggle=collapse]",function(g){var h=c(this),f;g=h.attr("data-target")||g.preventDefault()||(f=h.attr("href"))&& -f.replace(/.*(?=#[^\s]+$)/,"");f=c(g).data("collapse")?"toggle":h.data();h[c(g).hasClass("in")?"addClass":"removeClass"]("collapsed");c(g).collapse(f)})}(window.jQuery); -!function(c){function h(){c(".dropdown-backdrop").remove();c(g).each(function(){n(c(this)).removeClass("open")})}function n(b){var a=b.attr("data-target");a||(a=b.attr("href"),a=a&&/#/.test(a)&&a.replace(/.*(?=#[^\s]*$)/,""));(a=a&&c(a))&&a.length||(a=b.parent());return a}var g="[data-toggle=dropdown]",p=function(b){var a=c(b).on("click.dropdown.data-api",this.toggle);c("html").on("click.dropdown.data-api",function(){a.parent().removeClass("open")})};p.prototype={constructor:p,toggle:function(b){b= -c(this);var a,d;if(!b.is(".disabled, :disabled"))return a=n(b),d=a.hasClass("open"),h(),d||("disable-ontouchstart"in document.documentElement&&c('