From 2d9ff7d63fc0edd26b292af93a474cd30c069389 Mon Sep 17 00:00:00 2001 From: RainLoop Team Date: Thu, 19 Dec 2013 04:53:42 +0400 Subject: [PATCH] Added functionality to share contacts Added setting "Automatically add recipients to your address beech" Further development of editing screen contact --- dev/Admin/Contacts.js | 7 + dev/Common/Enums.js | 7 +- dev/Common/Utils.js | 1 + dev/Models/ContactModel.js | 7 +- dev/Models/ContactPropertyModel.js | 10 +- dev/Settings/General.js | 7 + dev/Storages/AbstractData.js | 1 + dev/Storages/WebMailAjaxRemote.js | 3 +- dev/Styles/Contacts.less | 14 +- dev/Styles/Ui.less | 4 + dev/ViewModels/PopupsContactsViewModel.js | 85 +- package.json | 2 +- .../0.0.0/app/libraries/RainLoop/Actions.php | 39 +- .../libraries/RainLoop/Config/Application.php | 1 + .../libraries/RainLoop/Providers/Contacts.php | 121 --- .../Providers/Contacts/Classes/Contact.php | 111 --- .../Providers/Contacts/Classes/Db.php | 38 - .../Providers/Contacts/ContactsInterface.php | 68 -- .../Providers/Contacts/DefaultContacts.php | 600 ------------- .../Providers/PersonalAddressBook.php | 28 +- .../PersonalAddressBook/Classes/Contact.php | 7 - .../PersonalAddressBook/Classes/Property.php | 14 +- .../Enumerations/ScopeType.php | 3 - .../PdoPersonalAddressBook.php | 224 +++-- .../PersonalAddressBookInterface.php | 4 +- .../templates/Themes/custom-values-dark.less | 112 +-- .../templates/Themes/custom-values-light.less | 108 +-- .../0.0.0/app/templates/Themes/template.less | 4 + .../v/0.0.0/app/templates/Themes/values.less | 119 +-- .../Views/AdminSettingsContacts.html | 4 + .../Views/AdminSettingsLicensing.html | 2 +- .../app/templates/Views/PopupsContacts.html | 36 +- .../app/templates/Views/SettingsGeneral.html | 15 +- rainloop/v/0.0.0/langs/de.ini | 6 + rainloop/v/0.0.0/langs/en.ini | 3 +- rainloop/v/0.0.0/langs/es.ini | 6 + rainloop/v/0.0.0/langs/fr.ini | 6 + rainloop/v/0.0.0/langs/is.ini | 6 + rainloop/v/0.0.0/langs/ko-kr.ini | 6 + rainloop/v/0.0.0/langs/lv.ini | 6 + rainloop/v/0.0.0/langs/nl.ini | 6 + rainloop/v/0.0.0/langs/no.ini | 846 +++++++++--------- rainloop/v/0.0.0/langs/pl.ini | 6 + rainloop/v/0.0.0/langs/pt-br.ini | 6 + rainloop/v/0.0.0/langs/pt-pt.ini | 6 + rainloop/v/0.0.0/langs/ru.ini | 8 +- rainloop/v/0.0.0/langs/zh-cn.ini | 6 + rainloop/v/0.0.0/static/css/app.css | 67 +- rainloop/v/0.0.0/static/css/app.min.css | 4 +- .../v/0.0.0/static/css/fonts/rainloop.eot | Bin 16772 -> 17736 bytes .../v/0.0.0/static/css/fonts/rainloop.svg | 39 +- .../v/0.0.0/static/css/fonts/rainloop.ttf | Bin 16604 -> 17568 bytes .../v/0.0.0/static/css/fonts/rainloop.woff | Bin 10748 -> 11336 bytes rainloop/v/0.0.0/static/js/admin.js | 16 +- rainloop/v/0.0.0/static/js/admin.min.js | 6 +- rainloop/v/0.0.0/static/js/app.js | 121 ++- rainloop/v/0.0.0/static/js/app.min.js | 16 +- vendors/fontastic/fonts/rainloop.eot | Bin 16772 -> 17736 bytes vendors/fontastic/fonts/rainloop.svg | 39 +- vendors/fontastic/fonts/rainloop.ttf | Bin 16604 -> 17568 bytes vendors/fontastic/fonts/rainloop.woff | Bin 10748 -> 11336 bytes vendors/fontastic/icons-reference.html | 60 +- vendors/fontastic/styles.css | 51 +- 63 files changed, 1229 insertions(+), 1919 deletions(-) delete mode 100644 rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts.php delete mode 100644 rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Contact.php delete mode 100644 rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Db.php delete mode 100644 rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/ContactsInterface.php delete mode 100644 rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/DefaultContacts.php diff --git a/dev/Admin/Contacts.js b/dev/Admin/Contacts.js index 7d8e916be..e0b440b6f 100644 --- a/dev/Admin/Contacts.js +++ b/dev/Admin/Contacts.js @@ -9,6 +9,7 @@ function AdminContacts() this.defautOptionsAfterRender = Utils.defautOptionsAfterRender; this.enableContacts = ko.observable(!!RL.settingsGet('ContactsEnable')); + this.contactsSharing = ko.observable(!!RL.settingsGet('ContactsSharing')); var aTypes = ['sqlite', 'mysql', 'pgsql'], @@ -176,6 +177,12 @@ AdminContacts.prototype.onBuild = function () 'ContactsEnable': bValue ? '1' : '0' }); }); + + self.contactsSharing.subscribe(function (bValue) { + RL.remote().saveAdminConfig(null, { + 'ContactsSharing': bValue ? '1' : '0' + }); + }); self.contactsType.subscribe(function (sValue) { RL.remote().saveAdminConfig(f5, { diff --git a/dev/Common/Enums.js b/dev/Common/Enums.js index a3481d732..91ff21e6d 100644 --- a/dev/Common/Enums.js +++ b/dev/Common/Enums.js @@ -238,12 +238,7 @@ Enums.InterfaceAnimation = { Enums.ContactScopeType = { 'Default': 0, - - 'Auto': 1, - - 'ShareAll': 2, - 'ShareDomain': 3, - 'ShareEmail': 4 + 'ShareAll': 2 }; /** diff --git a/dev/Common/Utils.js b/dev/Common/Utils.js index f3bba391f..4e2e9ab72 100644 --- a/dev/Common/Utils.js +++ b/dev/Common/Utils.js @@ -719,6 +719,7 @@ Utils.initDataConstructorBySettings = function (oData) oData.editorDefaultType = ko.observable(Enums.EditorDefaultType.Html); oData.showImages = ko.observable(false); oData.interfaceAnimation = ko.observable(Enums.InterfaceAnimation.Full); + oData.contactsAutosave = ko.observable(false); Globals.sAnimationType = Enums.InterfaceAnimation.Full; diff --git a/dev/Models/ContactModel.js b/dev/Models/ContactModel.js index 91bba6f6d..e190cbaa6 100644 --- a/dev/Models/ContactModel.js +++ b/dev/Models/ContactModel.js @@ -10,7 +10,6 @@ function ContactModel() this.properties = []; this.readOnly = false; this.scopeType = Enums.ContactScopeType.Default; - this.scopeValue = ''; this.checked = ko.observable(false); this.selected = ko.observable(false); @@ -61,7 +60,6 @@ ContactModel.prototype.parse = function (oItem) this.display = Utils.pString(oItem['Display']); this.readOnly = !!oItem['ReadOnly']; this.scopeType = Utils.pInt(oItem['ScopeType']); - this.scopeValue = Utils.pString(oItem['ScopeValue']); if (Utils.isNonEmptyArray(oItem['Properties'])) { @@ -73,10 +71,7 @@ ContactModel.prototype.parse = function (oItem) }, this); } - this.shared(-1 < Utils.inArray(this.scopeType, [ - Enums.ContactScopeType.ShareAll, Enums.ContactScopeType.ShareDomain, Enums.ContactScopeType.ShareEmail - ])); - + this.shared(Enums.ContactScopeType.ShareAll === this.scopeType); bResult = true; } diff --git a/dev/Models/ContactPropertyModel.js b/dev/Models/ContactPropertyModel.js index 8d2496af3..83b76f73b 100644 --- a/dev/Models/ContactPropertyModel.js +++ b/dev/Models/ContactPropertyModel.js @@ -4,12 +4,20 @@ * @param {number=} iType = Enums.ContactPropertyType.Unknown * @param {string=} sValue = '' * @param {boolean=} bFocused = false + * @param {string=} sPlaceholder = '' * * @constructor */ -function ContactPropertyModel(iType, sValue, bFocused) +function ContactPropertyModel(iType, sValue, bFocused, sPlaceholder) { this.type = ko.observable(Utils.isUnd(iType) ? Enums.ContactPropertyType.Unknown : iType); this.focused = ko.observable(Utils.isUnd(bFocused) ? false : !!bFocused); this.value = ko.observable(Utils.pString(sValue)); + + this.placeholder = ko.observable(sPlaceholder || ''); + + this.placeholderValue = ko.computed(function () { + var sPlaceholder = this.placeholder(); + return sPlaceholder ? Utils.i18n(sPlaceholder) : ''; + }, this); } diff --git a/dev/Settings/General.js b/dev/Settings/General.js index ee19158c6..3a90c969f 100644 --- a/dev/Settings/General.js +++ b/dev/Settings/General.js @@ -12,6 +12,7 @@ function SettingsGeneral() this.mainMessagesPerPageArray = Consts.Defaults.MessagesPerPageArray; this.editorDefaultType = oData.editorDefaultType; this.showImages = oData.showImages; + this.contactsAutosave = oData.contactsAutosave; this.interfaceAnimation = oData.interfaceAnimation; this.useDesktopNotifications = oData.useDesktopNotifications; this.threading = oData.threading; @@ -95,6 +96,12 @@ SettingsGeneral.prototype.onBuild = function () }); }); + oData.contactsAutosave.subscribe(function (bValue) { + RL.remote().saveSettings(Utils.emptyFunction, { + 'ContactsAutosave': bValue ? '1' : '0' + }); + }); + oData.interfaceAnimation.subscribe(function (sValue) { RL.remote().saveSettings(Utils.emptyFunction, { 'InterfaceAnimation': sValue diff --git a/dev/Storages/AbstractData.js b/dev/Storages/AbstractData.js index 77c0d9fa5..c3a2a9d73 100644 --- a/dev/Storages/AbstractData.js +++ b/dev/Storages/AbstractData.js @@ -40,6 +40,7 @@ AbstractData.prototype.populateDataOnStart = function() this.editorDefaultType(RL.settingsGet('EditorDefaultType')); this.showImages(!!RL.settingsGet('ShowImages')); + this.contactsAutosave(!!RL.settingsGet('ContactsAutosave')); this.interfaceAnimation(RL.settingsGet('InterfaceAnimation')); this.mainMessagesPerPage(RL.settingsGet('MPP')); diff --git a/dev/Storages/WebMailAjaxRemote.js b/dev/Storages/WebMailAjaxRemote.js index 5dfd7c358..ad0a2b4f3 100644 --- a/dev/Storages/WebMailAjaxRemote.js +++ b/dev/Storages/WebMailAjaxRemote.js @@ -570,11 +570,12 @@ WebMailAjaxRemoteStorage.prototype.contacts = function (fCallback, iOffset, iLim /** * @param {?Function} fCallback */ -WebMailAjaxRemoteStorage.prototype.contactSave = function (fCallback, sRequestUid, sUid, aProperties) +WebMailAjaxRemoteStorage.prototype.contactSave = function (fCallback, sRequestUid, sUid, nScopeType, aProperties) { this.defaultRequest(fCallback, 'ContactSave', { 'RequestUid': sRequestUid, 'Uid': Utils.trim(sUid), + 'ScopeType': nScopeType, 'Properties': aProperties }); }; diff --git a/dev/Styles/Contacts.less b/dev/Styles/Contacts.less index 0241fc600..90767c4f5 100644 --- a/dev/Styles/Contacts.less +++ b/dev/Styles/Contacts.less @@ -5,10 +5,10 @@ .control-group { .control-label.fix-width { - width: 110px; + width: 90px; } .controls.fix-width { - margin-left: 135px; + margin-left: 110px; } } @@ -319,6 +319,12 @@ } } + .e-save-trigger { + position: absolute; + top: 25px; + left: 10px; + } + .e-read-only-sign { display: none; position: absolute; @@ -328,14 +334,14 @@ .e-share-sign { position: absolute; - top: 60px; + top: 20px; right: 20px; cursor: pointer; } .button-save-contact { position: absolute; - top: 20px; + top: 100px; right: 20px; } diff --git a/dev/Styles/Ui.less b/dev/Styles/Ui.less index bd70f16d5..17db51298 100644 --- a/dev/Styles/Ui.less +++ b/dev/Styles/Ui.less @@ -46,6 +46,10 @@ cursor: pointer; } + .e-item.selected > .e-link { + background-color: #eee; + } + .e-item > .e-link:hover { background-color: #555; background-image: none; diff --git a/dev/ViewModels/PopupsContactsViewModel.js b/dev/ViewModels/PopupsContactsViewModel.js index 6dbac1e29..60d9b8a40 100644 --- a/dev/ViewModels/PopupsContactsViewModel.js +++ b/dev/ViewModels/PopupsContactsViewModel.js @@ -9,8 +9,8 @@ function PopupsContactsViewModel() KnoinAbstractViewModel.call(this, 'Popups', 'PopupsContacts'); var - oT = Enums.ContactPropertyType, self = this, + oT = Enums.ContactPropertyType, aNameTypes = [oT.FullName, oT.FirstName, oT.SurName, oT.MiddleName], aEmailTypes = [oT.EmailPersonal, oT.EmailBussines, oT.EmailOther], aPhonesTypes = [ @@ -34,6 +34,8 @@ function PopupsContactsViewModel() this.contacts.loading = ko.observable(false).extend({'throttle': 200}); this.currentContact = ko.observable(null); + this.contactsSharingIsAllowed = !!RL.settingsGet('ContactsSharingIsAllowed'); + this.contactsPage = ko.observable(1); this.contactsPageCount = ko.computed(function () { var iPage = Math.ceil(this.contactsCount() / Consts.Defaults.ContactsPerPage); @@ -48,9 +50,10 @@ function PopupsContactsViewModel() this.viewID = ko.observable(''); this.viewReadOnly = ko.observable(false); this.viewScopeType = ko.observable(Enums.ContactScopeType.Default); - this.viewScopeValue = ko.observable(''); this.viewProperties = ko.observableArray([]); + this.viewSaveTrigger = ko.observable(Enums.SaveSettingsStep.Idle); + this.viewPropertiesNames = this.viewProperties.filter(function(oProperty) { return -1 < Utils.inArray(oProperty.type(), aNameTypes); }); @@ -59,24 +62,18 @@ function PopupsContactsViewModel() return -1 < Utils.inArray(oProperty.type(), aEmailTypes); }); + this.shareIcon = ko.computed(function() { + return Enums.ContactScopeType.ShareAll === this.viewScopeType() ? 'icon-earth' : 'icon-share'; + }, this); + this.shareToNone = ko.computed(function() { - return -1 === Utils.inArray(this.viewScopeType(), [ - Enums.ContactScopeType.ShareAll, Enums.ContactScopeType.ShareDomain, Enums.ContactScopeType.ShareEmail - ]); + return Enums.ContactScopeType.ShareAll !== this.viewScopeType(); }, this); this.shareToAll = ko.computed(function() { return Enums.ContactScopeType.ShareAll === this.viewScopeType(); }, this); - this.shareToDomain = ko.computed(function() { - return Enums.ContactScopeType.ShareDomain === this.viewScopeType(); - }, this); - - this.shareToEmail = ko.computed(function() { - return Enums.ContactScopeType.ShareEmail === this.viewScopeType(); - }, this); - this.viewHasNonEmptyRequaredProperties = ko.computed(function() { var @@ -98,6 +95,10 @@ function PopupsContactsViewModel() return -1 < Utils.inArray(oProperty.type(), aOtherTypes); }); + this.viewPropertiesEmailsNonEmpty = this.viewPropertiesNames.filter(function(oProperty) { + return '' !== Utils.trim(oProperty.value()); + }); + this.viewPropertiesEmailsEmptyAndOnFocused = this.viewPropertiesEmails.filter(function(oProperty) { var bF = oProperty.focused(); return '' === Utils.trim(oProperty.value()) && !bF; @@ -223,6 +224,7 @@ function PopupsContactsViewModel() this.saveCommand = Utils.createCommand(this, function () { this.viewSaving(true); + this.viewSaveTrigger(Enums.SaveSettingsStep.Animate); var sRequestUid = Utils.fakeMd5(), @@ -238,7 +240,9 @@ function PopupsContactsViewModel() RL.remote().contactSave(function (sResult, oData) { + var bRes = false; self.viewSaving(false); + if (Enums.StorageResultType.Success === sResult && oData && oData.Result && oData.Result.RequestUid === sRequestUid && 0 < Utils.pInt(oData.Result.ResultID)) { @@ -248,13 +252,25 @@ function PopupsContactsViewModel() } self.reloadContactList(); + bRes = true; } // else // { // // TODO // } + + _.delay(function () { + self.viewSaveTrigger(bRes ? Enums.SaveSettingsStep.TrueResult : Enums.SaveSettingsStep.FalseResult); + }, 300); + + if (bRes) + { + _.delay(function () { + self.viewSaveTrigger(Enums.SaveSettingsStep.Idle); + }, 1000); + } - }, sRequestUid, this.viewID(), aProperties); + }, sRequestUid, this.viewID(), this.viewScopeType(), aProperties); }, function () { var @@ -266,11 +282,36 @@ function PopupsContactsViewModel() this.bDropPageAfterDelete = false; + this.watchHash = ko.observable(false); + this.viewHash = ko.computed(function () { + return '' + self.viewScopeType() + ' - ' + _.map(self.viewProperties(), function (oItem) { + return oItem.value(); + }).join(''); + }); + + this.saveCommandDebounce = _.debounce(_.bind(this.saveCommand, this), 1000); + + this.viewHash.subscribe(function () { + if (this.watchHash() && !this.viewReadOnly()) + { + this.saveCommandDebounce(); + } + }, this); + Knoin.constructorEnd(this); } Utils.extendAsViewModel('PopupsContactsViewModel', PopupsContactsViewModel); +PopupsContactsViewModel.prototype.setShareToNone = function () +{ + this.viewScopeType(Enums.ContactScopeType.Default); +}; + +PopupsContactsViewModel.prototype.setShareToAll = function () +{ + this.viewScopeType(Enums.ContactScopeType.ShareAll); +}; PopupsContactsViewModel.prototype.addNewProperty = function (sType) { @@ -377,10 +418,11 @@ PopupsContactsViewModel.prototype.populateViewContact = function (oContact) aList = [] ; + this.watchHash(false); + this.emptySelection(false); this.viewReadOnly(false); this.viewScopeType(Enums.ContactScopeType.Default); - this.viewScopeValue(''); if (oContact) { @@ -391,7 +433,9 @@ PopupsContactsViewModel.prototype.populateViewContact = function (oContact) _.each(oContact.properties, function (aProperty) { if (aProperty && aProperty[0]) { - aList.push(new ContactPropertyModel(aProperty[0], aProperty[1])); + aList.push(new ContactPropertyModel(aProperty[0], aProperty[1], false, + Enums.ContactPropertyType.FullName === aProperty[0] ? 'CONTACTS/PLACEHOLDER_ENTER_DISPLAY_NAME' : '')); + if (Enums.ContactPropertyType.FullName === aProperty[0]) { bHasName = true; @@ -402,17 +446,18 @@ PopupsContactsViewModel.prototype.populateViewContact = function (oContact) this.viewReadOnly(!!oContact.readOnly); this.viewScopeType(oContact.scopeType); - this.viewScopeValue(oContact.scopeValue); } - + if (!bHasName) { - aList.push(new ContactPropertyModel(Enums.ContactPropertyType.FullName, '', true)); + aList.push(new ContactPropertyModel(Enums.ContactPropertyType.FullName, '', !oContact, 'CONTACTS/PLACEHOLDER_ENTER_DISPLAY_NAME')); } this.viewID(sId); this.viewProperties([]); this.viewProperties(aList); + + this.watchHash(true); }; /** @@ -446,7 +491,7 @@ PopupsContactsViewModel.prototype.reloadContactList = function (bDropPagePositio { aList = _.map(oData.Result.List, function (oItem) { var oContact = new ContactModel(); - return oContact.parse(oItem) ? oContact : null; + return oContact.parse(oItem, self.contactsSharingIsAllowed) ? oContact : null; }); aList = _.compact(aList); diff --git a/package.json b/package.json index 4b935701a..1e818da26 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "RainLoop", "title": "RainLoop Webmail", "version": "1.5.1", - "release": "554", + "release": "555", "description": "Simple, modern & fast web-based email client", "homepage": "http://rainloop.net", "main": "Gruntfile.js", diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php index d8abb08c3..9912bafbf 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Actions.php @@ -562,6 +562,9 @@ class Actions { $this->oPersonalAddressBookProvider = new \RainLoop\Providers\PersonalAddressBook( $this->Config()->Get('contacts', 'enable', false) || $bForceEnable ? $this->fabrica('personal-address-book', $oAccount) : null); + + $this->oPersonalAddressBookProvider->ConsiderShare( + !!$this->Config()->Get('contacts', 'allow_sharing', false)); } else if ($oAccount && $this->oPersonalAddressBookProvider->IsSupported()) { @@ -932,6 +935,7 @@ class Actions $aResult['AccountHash'] = $oAccount->Hash(); $aResult['ChangePasswordIsAllowed'] = $this->ChangePasswordProvider()->PasswordChangePossibility($oAccount); $aResult['ContactsIsAllowed'] = $this->PersonalAddressBookProvider($oAccount)->IsActive(); + $aResult['ContactsSharingIsAllowed'] = $this->PersonalAddressBookProvider($oAccount)->IsSharingAllowed(); $oSettings = $this->SettingsProvider()->Load($oAccount); } @@ -990,6 +994,7 @@ class Actions $aResult['PostgreSqlIsSupported'] = \is_array($aDrivers) ? \in_array('pgsql', $aDrivers) : false; $aResult['ContactsEnable'] = (bool) $oConfig->Get('contacts', 'enable', false); + $aResult['ContactsSharing'] = (bool) $oConfig->Get('contacts', 'allow_sharing', false); $aResult['ContactsPdoType'] = $this->ValidateContactPdoType(\trim($this->Config()->Get('contacts', 'type', 'sqlite'))); $aResult['ContactsPdoDsn'] = (string) $oConfig->Get('contacts', 'pdo_dsn', ''); $aResult['ContactsPdoType'] = (string) $oConfig->Get('contacts', 'type', ''); @@ -1033,6 +1038,7 @@ class Actions // user $aResult['EditorDefaultType'] = (string) $oConfig->Get('webmail', 'editor_default_type', ''); $aResult['ShowImages'] = (bool) $oConfig->Get('webmail', 'show_images', false); + $aResult['ContactsAutosave'] = true; $aResult['MPP'] = (int) $oConfig->Get('webmail', 'messages_per_page', 25); $aResult['DesktopNotifications'] = false; $aResult['UseThreads'] = false; @@ -1066,6 +1072,7 @@ class Actions $aResult['NullFolder'] = $oSettings->GetConf('NullFolder', ''); $aResult['EditorDefaultType'] = $oSettings->GetConf('EditorDefaultType', $aResult['EditorDefaultType']); $aResult['ShowImages'] = (bool) $oSettings->GetConf('ShowImages', $aResult['ShowImages']); + $aResult['ContactsAutosave'] = (bool) $oSettings->GetConf('ContactsAutosave', $aResult['ContactsAutosave']); $aResult['MPP'] = (int) $oSettings->GetConf('MPP', $aResult['MPP']); $aResult['DesktopNotifications'] = (bool) $oSettings->GetConf('DesktopNotifications', $aResult['DesktopNotifications']); $aResult['UseThreads'] = (bool) $oSettings->GetConf('UseThreads', $aResult['UseThreads']); @@ -1867,6 +1874,7 @@ class Actions $this->setConfigFromParams($oConfig, 'LoginDefaultDomain', 'login', 'default_domain', 'string'); $this->setConfigFromParams($oConfig, 'ContactsEnable', 'contacts', 'enable', 'bool'); + $this->setConfigFromParams($oConfig, 'ContactsSharing', 'contacts', 'allow_sharing', 'bool'); $this->setConfigFromParams($oConfig, 'ContactsPdoDsn', 'contacts', 'pdo_dsn', 'string'); $this->setConfigFromParams($oConfig, 'ContactsPdoUser', 'contacts', 'pdo_user', 'string'); $this->setConfigFromParams($oConfig, 'ContactsPdoPassword', 'contacts', 'pdo_password', 'dummy'); @@ -3000,6 +3008,7 @@ class Actions $this->setSettingsFromParams($oSettings, 'EditorDefaultType', 'string'); $this->setSettingsFromParams($oSettings, 'ShowImages', 'bool'); + $this->setSettingsFromParams($oSettings, 'ContactsAutosave', 'bool'); $this->setSettingsFromParams($oSettings, 'InterfaceAnimation', 'string', function ($sValue) { return (\in_array($sValue, array(\RainLoop\Enumerations\InterfaceAnimation::NONE, @@ -4153,7 +4162,10 @@ class Actions if (0 < \count($aArrayToFrec)) { - $this->PersonalAddressBookProvider($oAccount)->IncFrec($oAccount, \array_values($aArrayToFrec)); + $oSettings = $this->SettingsProvider()->Load($oAccount); + + $this->PersonalAddressBookProvider($oAccount)->IncFrec($oAccount, \array_values($aArrayToFrec), + !!$oSettings->GetConf('ContactsAutosave', false)); } } @@ -4196,7 +4208,7 @@ class Actions { $iCount = 0; $mResult = $this->PersonalAddressBookProvider($oAccount)->GetContacts($oAccount, - $iOffset, $iLimit, $sSearch, \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_, $iCount); + $iOffset, $iLimit, $sSearch, $iCount); } return $this->DefaultResponse(__FUNCTION__, array( @@ -4244,6 +4256,13 @@ class Actions if ($oPab && $oPab->IsActive() && 0 < \strlen($sRequestUid)) { $sUid = \trim($this->GetActionParam('Uid', '')); + $iScopeType = (int) $this->GetActionParam('ScopeType', null); + if (!in_array($iScopeType, array( + \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_, + \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL))) + { + $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; + } $oContact = new \RainLoop\Providers\PersonalAddressBook\Classes\Contact(); if (0 < \strlen($sUid)) @@ -4251,6 +4270,8 @@ class Actions $oContact->IdContact = $sUid; } + $oContact->ScopeType = $iScopeType; + $aProperties = $this->GetActionParam('Properties', array()); if (\is_array($aProperties)) { @@ -4262,6 +4283,7 @@ class Actions $oProp = new \RainLoop\Providers\PersonalAddressBook\Classes\Property(); $oProp->Type = (int) $aItem[0]; $oProp->Value = $aItem[1]; + $oProp->ScopeType = $iScopeType; $oContact->Properties[] = $oProp; } @@ -5911,16 +5933,6 @@ class Actions 'Email' => \MailSo\Base\Utils::Utf8Clear($mResponse->GetEmail()) )); } - else if ('RainLoop\Providers\Contacts\Classes\Contact' === $sClassName) - { - $mResult = \array_merge($this->objectData($mResponse, $sParent, $aParameters), array( - 'IdContact' => $mResponse->IdContact, - 'ImageHash' => $mResponse->ImageHash, - 'ListName' => \MailSo\Base\Utils::Utf8Clear($mResponse->ListName), - 'Name' => \MailSo\Base\Utils::Utf8Clear($mResponse->Name), - 'Emails' => $mResponse->Emails - )); - } else if ('RainLoop\Providers\PersonalAddressBook\Classes\Contact' === $sClassName) { $mResult = \array_merge($this->objectData($mResponse, $sParent, $aParameters), array( @@ -5929,7 +5941,6 @@ class Actions 'Display' => \MailSo\Base\Utils::Utf8Clear($mResponse->Display), 'ReadOnly' => $mResponse->ReadOnly, 'ScopeType' => $mResponse->ScopeType, - 'ScopeValue' => $mResponse->ScopeValue, 'IdPropertyFromSearch' => $mResponse->IdPropertyFromSearch, 'Properties' => $this->responseObject($mResponse->Properties, $sParent, $aParameters) )); @@ -5942,7 +5953,7 @@ class Actions 'Type' => $mResponse->Type, 'TypeCustom' => $mResponse->TypeCustom, 'Value' => \MailSo\Base\Utils::Utf8Clear($mResponse->Value), - 'ValueClear' => \MailSo\Base\Utils::Utf8Clear($mResponse->ValueClear) + 'ValueCustom' => \MailSo\Base\Utils::Utf8Clear($mResponse->ValueCustom) )); } else if ('MailSo\Mail\Attachment' === $sClassName) diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Config/Application.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Config/Application.php index d08d99c74..390b89ce2 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Config/Application.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Config/Application.php @@ -83,6 +83,7 @@ class Application extends \RainLoop\Config\AbstractConfig 'contacts' => array( 'enable' => array(false, 'Enable contacts'), + 'allow_sharing' => array(true), 'suggestions_limit' => array(30), 'type' => array('sqlite', ''), 'pdo_dsn' => array('mysql:host=127.0.0.1;port=3306;dbname=rainloop', ''), diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts.php deleted file mode 100644 index 134bf4823..000000000 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts.php +++ /dev/null @@ -1,121 +0,0 @@ -oDriver = null; - if ($oDriver instanceof \RainLoop\Providers\Contacts\ContactsInterface) - { - $this->oDriver = $oDriver; - } - } - - /** - * @return bool - */ - public function IsActive() - { - return $this->oDriver instanceof \RainLoop\Providers\Contacts\ContactsInterface && - $this->oDriver->IsSupported(); - } - - /** - * @return bool - */ - public function IsSupported() - { - return $this->oDriver instanceof \RainLoop\Providers\Contacts\ContactsInterface && - $this->oDriver->IsSupported(); - } - - /** - * @param \RainLoop\Account $oAccount - * @param int $iIdContact - * - * @return array - */ - public function GetContactById($oAccount, $iIdContact) - { - return $this->oDriver ? $this->oDriver->GetContactById($oAccount, $iIdContact) : null; - } - - /** - * @param \RainLoop\Account $oAccount - * @param int $iOffset = 0 - * @param int $iLimit = 20 - * @param string $sSearch = '' - * - * @return array - */ - public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '') - { - return $this->oDriver ? $this->oDriver->GetContacts($oAccount, $iOffset, $iLimit, $sSearch) : array(); - } - - /** - * @param \RainLoop\Account $oAccount - * - * @return array - */ - public function GetContactsImageHashes($oAccount) - { - return $this->oDriver ? $this->oDriver->GetContactsImageHashes($oAccount) : array(); - } - - /** - * @param \RainLoop\Account $oAccount - * @param \RainLoop\Providers\Contacts\Classes\Contact $oContact - * - * @return bool - */ - public function CreateContact($oAccount, &$oContact) - { - return $this->oDriver ? $this->oDriver->CreateContact($oAccount, $oContact) : false; - } - - /** - * @param \RainLoop\Account $oAccount - * @param \RainLoop\Providers\Contacts\Classes\Contact $oContact - * - * @return bool - */ - public function UpdateContact($oAccount, &$oContact) - { - return $this->oDriver ? $this->oDriver->UpdateContact($oAccount, $oContact) : false; - } - - /** - * @param \RainLoop\Account $oAccount - * @param array $aContactIds - * - * @return bool - */ - public function DeleteContacts($oAccount, $aContactIds) - { - return $this->oDriver ? $this->oDriver->DeleteContacts($oAccount, $aContactIds) : false; - } - - /** - * @param \RainLoop\Account $oAccount - * @param array $aContactIds - * - * @return bool - */ - public function IncFrec($oAccount, $aContactIds) - { - return $this->oDriver ? $this->oDriver->IncFrec($oAccount, $aContactIds) : false; - } -} \ No newline at end of file diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Contact.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Contact.php deleted file mode 100644 index e91d9a478..000000000 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Contact.php +++ /dev/null @@ -1,111 +0,0 @@ -Clear(); - } - - public function Clear() - { - $this->IdContact = 0; - $this->IdUser = 0; - $this->Type = 0; - $this->Frec = 0; - $this->ListName = ''; - $this->Name = ''; - $this->ImageHash = ''; - $this->Emails = array(); - $this->Data = array(); - } - - /** - * @return string - */ - public function GenarateListName() - { - return 0 < \strlen($this->Name) ? $this->Name : (!empty($this->Emails[0]) ? $this->Emails[0] : ''); - } - - /** - * @return string - */ - public function EmailsAsString() - { - return \trim(\implode(' ', $this->Emails)); - } - - /** - * @return string - */ - public function DataAsString() - { - return @\serialize($this->Data); - } - - /** - * @param string $sData - */ - public function ParseData($sData) - { - $sData = (string) $sData; - $sData = \trim($sData); - - if (!empty($sData)) - { - $aData = @\unserialize($sData); - if (\is_array($aData)) - { - $this->Data = $aData; - } - } - } -} diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Db.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Db.php deleted file mode 100644 index 3cf7ae6a1..000000000 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/Classes/Db.php +++ /dev/null @@ -1,38 +0,0 @@ - array( - 'IdUser' => 'INTEGER PRIMARY KEY', - 'Email' => 'TEXT' - ), - 'rlContactsItems' => array( - 'IdContact' => 'INTEGER PRIMARY KEY', - 'IdUser' => 'INTEGER', - 'Type' => 'INTEGER', - 'Frec' => 'INTEGER', - 'ImageHash' => 'TEXT', - 'ListName' => 'TEXT', - 'Name' => 'TEXT', - 'Emails' => 'TEXT', - 'Data' => 'TEXT' - ) - ); - } -} diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/ContactsInterface.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/ContactsInterface.php deleted file mode 100644 index 6f08e605d..000000000 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/Contacts/ContactsInterface.php +++ /dev/null @@ -1,68 +0,0 @@ -oLogger = $oLogger instanceof \MailSo\Log\Logger ? $oLogger : null; - $this->bUseDbPerUser = true; - } - - /** - * @param \RainLoop\Account $oAccount - * @staticvar array $aPdoCache - * @return \PDO - */ - private function getPDO($oAccount) - { - static $aPdoCache = array(); - - $sEmail = $oAccount->ParentEmailHelper(); - if (isset($aPdoCache[$sEmail])) - { - return $aPdoCache[$sEmail]; - } - - if (!\class_exists('PDO')) - { - throw new \Exception('class_exists=PDO'); - } - - $sVersionFile = ''; - $sDsn = ''; - - if ($this->bUseDbPerUser) - { - $sSubPath = APP_PRIVATE_DATA.'storage/contacts/'.\rtrim(\substr($sEmail, 0, 2), '@').'/'.$sEmail.'/'; - if (!\is_dir($sSubPath)) - { - if (\mkdir($sSubPath, 0755, true) && \is_dir($sSubPath)) - { - $sVersionFile = $sSubPath.'.version'; - $sDsn = 'sqlite:'.$sSubPath.'contacts.sqlite'; - } - } - else - { - $sVersionFile = $sSubPath.'.version'; - $sDsn = 'sqlite:'.$sSubPath.'contacts.sqlite'; - } - } - else - { - $sVersionFile = APP_PRIVATE_DATA.'.version'; - $sDsn = 'sqlite:'.APP_PRIVATE_DATA.'contacts.sqlite'; - } - - $sDbLogin = ''; - $sDbPassword = ''; - - $oPdo = false; - try - { - $oPdo = new \PDO($sDsn, $sDbLogin, $sDbPassword); - if ($oPdo) - { - $oPdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); - - if (!@\file_exists($sVersionFile) || - (string) @file_get_contents($sVersionFile) !== (string) \RainLoop\Providers\Contacts\Classes\Db::Version()) - { - $this->syncTables($oPdo, $sVersionFile); - } - - $oPdo->sqliteCreateFunction('SIMPLESEARCH', function ($sEmailValue, $sNameValue, $sMask) { - return \preg_match('/'.\preg_quote($sMask, '/').'/ui', - $sEmailValue.' '.$sNameValue) ? 1 : 0; - }); - - } - } - catch (\Exception $oException) - { - throw $oException; - $oPdo = false; - } - - if ($oPdo) - { - $aPdoCache[$oAccount->ParentEmailHelper()] = $oPdo; - } - - return $oPdo; - } - - protected function getWantedColumnsInfo($sTableName, $aCurrent) - { - $aColumns = array(); - foreach ($aCurrent as $sName => $sType) - { - $sSql = $sName.' '.$sType; - switch ($sType) - { - case 'INTEGER': - $sSql .= ' DEFAILT \'0\''; - break; - case 'TEXT': - $sSql .= ' DEFAILT \'\''; - break; - } - - $aColumns[$sName] = $sSql; - } - - if (0 === \count($aColumns)) - { - return ''; - } - - return 'CREATE TABLE '.$sTableName.' (' .\implode(', ', $aColumns).')'; - } - - /** - * @param \PDO $oAccount - * @param string $sTableName - */ - protected function getCurrentColumnsInfo($oPdo, $sTableName) - { - $oStmt = $this->prepareAndExecute($oPdo, 'SELECT `sql` FROM `sqlite_master` WHERE `tbl_name` = :TableName AND `type` = :Type', array( - ':TableName' => array($sTableName, \PDO::PARAM_STR), - ':Type' => array('table', \PDO::PARAM_STR) - )); - - if ($oStmt) - { - $mRow = $oStmt->fetch(\PDO::FETCH_ASSOC); - if ($mRow && isset($mRow['sql'])) - { - return (string) $mRow['sql']; - } - } - - return ''; - } - - /** - * @param \PDO $oPdo - * @param string $sVersionFile = '' - */ - private function syncTables($oPdo, $sVersionFile = '') - { - if ($this->oLogger) - { - $this->oLogger->Write('Start to sync', \MailSo\Log\Enumerations\Type::INFO); - } - - $aStrucure = \RainLoop\Providers\Contacts\Classes\Db::Strucure(); - foreach ($aStrucure as $sTableName => $aField) - { - $sCurrent = $this->getCurrentColumnsInfo($oPdo, $sTableName); - $sWanted = $this->getWantedColumnsInfo($sTableName, $aField); - - if (empty($sCurrent)) - { - $this->prepareAndExecute($oPdo, $sWanted); - } - else if ($sCurrent !== $sWanted) - { - $this->prepareAndExecute($oPdo, 'DROP TABLE IF EXISTS `'.$sTableName.'_old`'); - $this->prepareAndExecute($oPdo, 'ALTER TABLE `'.$sTableName.'` RENAME TO `'.$sTableName.'_old`'); - $this->prepareAndExecute($oPdo, $sWanted); - - $aNewKeys = array(); - $aOldKeys = array(); - foreach ($aField as $sKey => $sType) - { - $aNewKeys[] = $sKey; - $aOldKeys[] = false !== \strpos($sCurrent, $sKey.' ') ? $sKey : - (0 === \strpos($sType, 'INT') ? '\'0\'' : '\'\''); - } - - $sNewKeys = \implode(', ', $aNewKeys); - $sOldKeys = \implode(', ', $aOldKeys); - $this->prepareAndExecute($oPdo, 'INSERT INTO `'.$sTableName.'` ('.$sNewKeys.') SELECT '.$sOldKeys.' FROM `'.$sTableName.'_old`'); - - $this->prepareAndExecute($oPdo, 'DROP TABLE `'.$sTableName.'_old`'); - } - } - - @\file_put_contents($sVersionFile, \RainLoop\Providers\Contacts\Classes\Db::Version()); - - if ($this->oLogger) - { - $this->oLogger->Write('Stop to sync', \MailSo\Log\Enumerations\Type::INFO); - } - } - - /** - * @param \RainLoop\Account|\PDO $oAccountOrPdo - * @param string $sSql - * @param array $aParams - * - * @return \PDOStatement|null - */ - private function prepareAndExecute($oAccountOrPdo, $sSql, $aParams = array()) - { - if ($this->oLogger) - { - $this->oLogger->Write($sSql, \MailSo\Log\Enumerations\Type::INFO, 'SQLITE'); - } - - $oPdo = $oAccountOrPdo instanceof \PDO ? $oAccountOrPdo : $this->getPDO($oAccountOrPdo); - $oStmt = $oPdo->prepare($sSql); - foreach ($aParams as $sName => $aValue) - { - $oStmt->bindValue($sName, $aValue[0], $aValue[1]); - } - -// $sLogSql = $sSql; -// foreach($aParams as $sName => $aValue) -// { -// $sLogSql = \str_replace($sName, $aValue[1] === \PDO::PARAM_INT ? $aValue[0] : '\''.$aValue[0].'\'', $sLogSql); -// } -// -// if ($this->oLogger) -// { -// $this->oLogger->Write($sLogSql, \MailSo\Log\Enumerations\Type::INFO, 'SQLITE'); -// } - - $mResult = $oStmt->execute() ? $oStmt : null; - -// if ($this->oLogger) -// { -// $this->oLogger->Write('RESULT: '.($mResult ? 'true' : 'false'), \MailSo\Log\Enumerations\Type::INFO, 'SQLITE'); -// } - - return $mResult; - } - - /** - * @param \RainLoop\Account|null $oAccount - * @param bool $bSkipInsert = false - * - * @return int - */ - private function getUserId($oAccount, $bSkipInsert = false) - { - if (!$this->bUseDbPerUser) - { - $oStmt = $this->prepareAndExecute($oAccount, - 'SELECT IdUser FROM rlContactsUsers WHERE Email = :Email LIMIT 1', - array( - ':Email' => array($oAccount->ParentEmailHelper(), \PDO::PARAM_STR) - )); - - $mRow = $oStmt->fetch(\PDO::FETCH_ASSOC); - if ($mRow && isset($mRow['IdUser']) && \is_numeric($mRow['IdUser'])) - { - return (int) $mRow['IdUser']; - } - - if (!$bSkipInsert) - { - $oStmt->closeCursor(); - - $oStmt = $this->prepareAndExecute($oAccount, - 'INSERT INTO rlContactsUsers (Email) VALUES (:Email)', - array( - ':Email' => array($oAccount->ParentEmailHelper(), \PDO::PARAM_STR) - )); - - return $this->getUserId($oAccount, true); - } - - throw new \Exception('IdUser=0'); - } - - return 0; - } - - /** - * @param string $sSearch - * @return string - */ - private function convertSearchValue($sSearch) - { - return '%'.$sSearch.'%'; - } - - private function populateContactFromDB($iUserID, $aItem) - { - $oContact = null; - if (isset($aItem['IdContact'])) - { - $oContact = new \RainLoop\Providers\Contacts\Classes\Contact(); - $oContact->IdContact = (int) $aItem['IdContact']; - $oContact->IdUser = $iUserID; - $oContact->Type = (int) $aItem['Type']; - $oContact->Frec = (int) $aItem['Frec']; - $oContact->ListName = (string) $aItem['ListName']; - $oContact->Name = (string) $aItem['Name']; - $oContact->Emails = \explode(' ', \trim((string) $aItem['Emails'])); - $oContact->ImageHash = (string) $aItem['ImageHash']; - - $oContact->ParseData($aItem['Data']); - } - - return $oContact; - } - - /** - * @param \RainLoop\Account $oAccount - * @param int $iIdContact - * - * @return $oContact|null - */ - public function GetContactById($oAccount, $iIdContact) - { - $oResultContact = null; - - $iUserID = $this->getUserId($oAccount); - - $oStmt = $this->prepareAndExecute($oAccount, - 'SELECT IdContact, Type, Frec, ListName, Name, Emails, ImageHash, Data'. - ' FROM rlContactsItems WHERE IdContact = :IdContact AND IdUser = :IdUser LIMIT 1', - array( - ':IdContact' => array($iIdContact, \PDO::PARAM_INT), - ':IdUser' => array($iUserID, \PDO::PARAM_INT) - )); - - $aFetch = $oStmt->fetchAll(\PDO::FETCH_ASSOC); - if (\is_array($aFetch) && isset($aFetch[0]) && \is_array($aFetch[0])) - { - $oContact = $this->populateContactFromDB($iUserID, $aFetch[0]); - if ($oContact instanceof \RainLoop\Providers\Contacts\Classes\Contact) - { - $oResultContact = $oContact; - } - } - - return $oResultContact; - } - - /** - * @param \RainLoop\Account $oAccount - * @param int $iOffset = 0 - * @param int $iLimit = 20 - * @param string $sSearch = '' - * - * @return array - */ - public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '') - { - $iOffset = 0 <= $iOffset ? $iOffset : 0; - $iLimit = 0 < $iLimit ? (int) $iLimit : 0; - $sSearch = \trim($sSearch); - - $iUserID = $this->getUserId($oAccount); - - $sSql = 'SELECT IdContact, Type, Frec, ListName, Name, Emails, ImageHash, Data'. - ' FROM rlContactsItems WHERE IdUser = :IdUser' - ; - - $aParams = array( - ':IdUser' => array($iUserID, \PDO::PARAM_INT), - ':limit' => array($iLimit, \PDO::PARAM_INT), - ':offset' => array($iOffset, \PDO::PARAM_INT) - ); - - if (0 < strlen($sSearch)) - { - if (\MailSo\Base\Utils::IsAscii($sSearch)) - { - $sSql .= ' AND Name LIKE :Search OR Emails LIKE :Search'; - $aParams[':Search'] = array($this->convertSearchValue($sSearch), \PDO::PARAM_STR); - } - else - { - $sSql .= ' AND SIMPLESEARCH(Emails, Name, :Search)'; - $aParams[':Search'] = array($sSearch, \PDO::PARAM_STR); - } - } - - $sSql .= ' ORDER BY ListName ASC LIMIT :limit OFFSET :offset'; - - $oStmt = $this->prepareAndExecute($oAccount, $sSql, $aParams); - - $aFetch = $oStmt->fetchAll(\PDO::FETCH_ASSOC); - $aResult = array(); - if (\is_array($aFetch) && 0 < \count($aFetch)) - { - foreach ($aFetch as $aItem) - { - $oContact = $this->populateContactFromDB($iUserID, $aItem); - if ($oContact instanceof \RainLoop\Providers\Contacts\Classes\Contact) - { - $aResult[] = $oContact; - } - } - } - - unset($aFetch); - return $aResult; - } - - /** - * @param \RainLoop\Account $oAccount - * - * @return array - */ - public function GetContactsImageHashes($oAccount) - { - $iUserID = $this->getUserId($oAccount); - - $oStmt = $this->prepareAndExecute($oAccount, - 'SELECT Emails, ImageHash FROM rlContactsItems WHERE IdUser = :IdUser AND ImageHash <> :ImageHash', - array( - ':IdUser' => array($iUserID, \PDO::PARAM_INT), - ':ImageHash' => array('', \PDO::PARAM_STR) - )); - - $aFetch = $oStmt->fetchAll(\PDO::FETCH_ASSOC); - $aResult = array(); - - if (\is_array($aFetch) && 0 < \count($aFetch)) - { - foreach ($aFetch as $aItem) - { - if (!empty($aItem['Emails']) && !empty($aItem['ImageHash'])) - { - $aEmails = \explode(' ', $aItem['Emails']); - foreach ($aEmails as $sEmail) - { - $sEmail = \trim($sEmail); - if (0 < strlen($sEmail)) - { - $aResult[$sEmail] = $aItem['ImageHash']; - } - } - } - } - } - - unset($aFetch); - return $aResult; - } - - /** - * @param \RainLoop\Account $oAccount - * @param \RainLoop\Providers\Contacts\Classes\Contact $oContact - * - * @return bool - */ - public function CreateContact($oAccount, &$oContact) - { - $iUserID = $this->getUserId($oAccount); - - $oContact->IdUser = $iUserID; - - $oStmt = $this->prepareAndExecute($oAccount, - 'INSERT INTO rlContactsItems '. - '( IdUser, Type, Frec, ListName, Name, Emails, ImageHash, Data) VALUES '. - '(:IdUser, :Type, 0, :ListName, :Name, :Emails, :ImageHash, :Data)', - array( - ':IdUser' => array($oContact->IdUser, \PDO::PARAM_INT), - ':Type' => array($oContact->Type, \PDO::PARAM_INT), - ':ListName' => array($oContact->GenarateListName(), \PDO::PARAM_STR), - ':Name' => array($oContact->Name, \PDO::PARAM_STR), - ':Emails' => array($oContact->EmailsAsString(), \PDO::PARAM_STR), - ':ImageHash' => array($oContact->ImageHash, \PDO::PARAM_STR), - ':Data' => array($oContact->DataAsString(), \PDO::PARAM_STR), - )); - - if ($oStmt) - { - $iContactID = $this->getPDO($oAccount)->lastInsertId('IdContact'); - if (is_numeric($iContactID) && 0 < (int) $iContactID) - { - $oContact->IdContact = (int) $iContactID; - return true; - } - } - - throw new \Exception('CreateContact'); - } - - /** - * @param \RainLoop\Account $oAccount - * @param \RainLoop\Providers\Contacts\Classes\Contact $oContact - * - * @return bool - */ - public function UpdateContact($oAccount, &$oContact) - { - $iUserID = $this->getUserId($oAccount); - - $oContact->IdUser = $iUserID; - - return !!$this->prepareAndExecute($oAccount, - 'UPDATE rlContactsItems SET'. - ' Type = :Type, ListName = :ListName, Name = :Name, Emails = :Emails,'. - ' ImageHash = :ImageHash, Data = :Data'. - ' WHERE IdContact = :IdContact AND IdUser = :IdUser', - array( - ':IdContact' => array($oContact->IdContact, \PDO::PARAM_INT), - ':IdUser' => array($oContact->IdUser, \PDO::PARAM_INT), - ':Type' => array($oContact->Type, \PDO::PARAM_INT), - ':ListName' => array($oContact->GenarateListName(), \PDO::PARAM_STR), - ':Name' => array($oContact->Name, \PDO::PARAM_STR), - ':Emails' => array($oContact->EmailsAsString(), \PDO::PARAM_STR), - ':ImageHash' => array($oContact->ImageHash, \PDO::PARAM_STR), - ':Data' => array($oContact->DataAsString(), \PDO::PARAM_STR), - )); - } - - /** - * @param \RainLoop\Account $oAccount - * @param array $aContactIds - * - * @return bool - */ - public function DeleteContacts($oAccount, $aContactIds) - { - $iUserID = $this->getUserId($oAccount); - - $aParams = array( - ':IdUser' => array($iUserID, \PDO::PARAM_INT), - ); - - $aInQuery = array(); - foreach ($aContactIds as $iIndex => $iId) - { - $aInQuery[] = ':IdContact_'.$iIndex; - $aParams[':IdContact_'.$iIndex] = array($iId, \PDO::PARAM_INT); - } - - if (0 === \count($aInQuery)) - { - return false; - } - - return !!$this->prepareAndExecute($oAccount, - 'DELETE FROM rlContactsItems WHERE IdUser = :IdUser AND IdContact IN ('.\implode(', ', $aInQuery).')', - $aParams); - } - - /** - * @return bool - */ - public function IsSupported() - { - $aDrivers = \class_exists('PDO') ? \PDO::getAvailableDrivers() : array(); - return \is_array($aDrivers) ? \in_array('sqlite', $aDrivers) : false; - } - - /** - * @param \RainLoop\Account $oAccount - * @param array $aContactIds - * - * @return bool - */ - public function IncFrec($oAccount, $aContactIds) - { - if (\is_array($aContactIds) && 0 < \count($aContactIds)) - { - $iUserID = $this->getUserId($oAccount); - - $aParams = array( - ':IdUser' => array($iUserID, \PDO::PARAM_INT), - ); - - $aInQuery = array(); - foreach ($aContactIds as $iIndex => $iId) - { - $aInQuery[] = ':IdContact_'.$iIndex; - $aParams[':IdContact_'.$iIndex] = array($iId, \PDO::PARAM_INT); - } - - return !!$this->prepareAndExecute($oAccount, - 'UPDATE rlContactsItems SET Frec = Frec + 1 WHERE IdUser = :IdUser AND IdContact IN ('.\implode(', ', $aInQuery).')', - $aParams); - } - - return false; - } -} \ No newline at end of file diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook.php index 5d35af879..31d38df8c 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook.php @@ -42,6 +42,15 @@ class PersonalAddressBook extends \RainLoop\Providers\AbstractProvider $this->oDriver->IsSupported(); } + /** + * @return bool + */ + public function IsSharingAllowed() + { + return $this->oDriver instanceof \RainLoop\Providers\PersonalAddressBook\PersonalAddressBookInterface && + $this->oDriver->IsSharingAllowed(); + } + /** * @return bool */ @@ -51,6 +60,19 @@ class PersonalAddressBook extends \RainLoop\Providers\AbstractProvider $this->oDriver->IsSupported(); } + /** + * @param bool $bConsiderShare = true + */ + public function ConsiderShare($bConsiderShare = true) + { + if ($this->oDriver) + { + $this->oDriver->ConsiderShare($bConsiderShare); + } + + return $this; + } + /** * @param \RainLoop\Account $oAccount * @param \RainLoop\Providers\PersonalAddressBook\Classes\Contact $oContact @@ -78,16 +100,14 @@ class PersonalAddressBook extends \RainLoop\Providers\AbstractProvider * @param int $iOffset = 0 * @param type $iLimit = 20 * @param string $sSearch = '' - * @param int $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_ * @param int $iResultCount = 0 * * @return array */ - public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '', - $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_, &$iResultCount = 0) + public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '', &$iResultCount = 0) { return $this->IsActive() ? $this->oDriver->GetContacts($oAccount, - $iOffset, $iLimit, $sSearch, $iScopeType, $iResultCount) : array(); + $iOffset, $iLimit, $sSearch, $iResultCount) : array(); } /** diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Contact.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Contact.php index b3a9efcbd..09723ccd4 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Contact.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Contact.php @@ -29,11 +29,6 @@ class Contact */ public $ScopeType; - /** - * @var string - */ - public $ScopeValue; - /** * @var int */ @@ -67,7 +62,6 @@ class Contact $this->DisplayName = ''; $this->DisplayEmail = ''; $this->ScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; - $this->ScopeValue = ''; $this->Changed = \time(); $this->IdPropertyFromSearch = 0; $this->Properties = array(); @@ -84,7 +78,6 @@ class Contact if ($oProperty) { $oProperty->ScopeType = $this->ScopeType; - $oProperty->ScopeValue = $this->ScopeValue; $oProperty->UpdateDependentValues(); if ('' === $sDisplayName && \RainLoop\Providers\PersonalAddressBook\Enumerations\PropertyType::FULLNAME === $oProperty->Type && diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Property.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Property.php index 976a35f1e..58f86c0cf 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Property.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Classes/Property.php @@ -21,11 +21,6 @@ class Property */ public $ScopeType; - /** - * @var string - */ - public $ScopeValue; - /** * @var string */ @@ -39,7 +34,7 @@ class Property /** * @var string */ - public $ValueClear; + public $ValueCustom; /** * @var int @@ -57,11 +52,10 @@ class Property $this->Type = PropertyType::UNKNOWN; $this->ScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; - $this->ScopeValue = ''; $this->TypeCustom = ''; $this->Value = ''; - $this->ValueClear = ''; + $this->ValueCustom = ''; $this->Frec = 0; } @@ -92,7 +86,7 @@ class Property { // trimer $this->Value = \trim($this->Value); - $this->ValueClear = \trim($this->ValueClear); + $this->ValueCustom = \trim($this->ValueCustom); $this->TypeCustom = \trim($this->TypeCustom); if (0 < \strlen($this->Value)) @@ -109,7 +103,7 @@ class Property $sPhone = $this->Value; $sPhone = \preg_replace('/^[+]+/', '', $sPhone); $sPhone = \preg_replace('/[^\d]/', '', $sPhone); - $this->ValueClear = $sPhone; + $this->ValueCustom = $sPhone; } } } diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Enumerations/ScopeType.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Enumerations/ScopeType.php index 979df04f3..2e94c3cff 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Enumerations/ScopeType.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/Enumerations/ScopeType.php @@ -5,8 +5,5 @@ namespace RainLoop\Providers\PersonalAddressBook\Enumerations; class ScopeType { const DEFAULT_ = 0; - const AUTO = 1; const SHARE_ALL = 2; - const SHARE_DOMAIN = 3; - const SHARE_EMAIL = 4; } diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PdoPersonalAddressBook.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PdoPersonalAddressBook.php index b3687359e..d68ce3c37 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PdoPersonalAddressBook.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PdoPersonalAddressBook.php @@ -28,16 +28,35 @@ class PdoPersonalAddressBook */ private $sPassword; + /** + * @var bool + */ + private $bConsiderShare; + public function __construct($sDsn, $sUser = '', $sPassword = '', $sDsnType = 'mysql') { $this->sDsn = $sDsn; $this->sUser = $sUser; $this->sPassword = $sPassword; $this->sDsnType = $sDsnType; + + $this->bConsiderShare = true; $this->bExplain = false; } + /** + * @param bool $bConsiderShare + * + * @return \RainLoop\Providers\PersonalAddressBook\PdoPersonalAddressBook + */ + public function ConsiderShare($bConsiderShare = true) + { + $this->bConsiderShare = !!$bConsiderShare; + + return $this; + } + /** * @return bool */ @@ -47,6 +66,22 @@ class PdoPersonalAddressBook return \is_array($aDrivers) ? \in_array($this->sDsnType, $aDrivers) : false; } + /** + * @return bool + */ + public function IsConsiderShare() + { + return $this->bConsiderShare; + } + + /** + * @return bool + */ + public function IsSharingAllowed() + { + return $this->IsConsiderShare() && $this->IsSupported(); + } + /** * @param \RainLoop\Account $oAccount * @param \RainLoop\Providers\PersonalAddressBook\Classes\Contact $oContact @@ -62,42 +97,14 @@ class PdoPersonalAddressBook $bUpdate = 0 < $iIdContact; - $oContact->UpdateDependentValues(); - $oContact->Changed = \time(); - - if (\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::AUTO !== $oContact->ScopeType) + if (!$this->bConsiderShare) { - $aEmail = $oContact->GetEmails(); - if (0 < \count($aEmail)) - { - $aEmail = \array_map(function ($sValue) { - return \strtolower(\trim($sValue)); - }, $aEmail); - - $aEmail = \array_filter($aEmail, function ($sValue) { - return !empty($sValue); - }); - - if (0 < \count($aEmail)) - { - $self = $this; - $aEmail = \array_map(function ($sValue) use ($self) { - return $self->quoteValue($sValue); - }, $aEmail); - - - // clear autocreated contacts - $this->prepareAndExecute( - 'DELETE FROM rainloop_pab_contacts WHERE id_user = :id_user AND scope_type = :scope_type AND display_email IN ('.\implode(',', $aEmail).')', - array( - ':scope_type' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::AUTO, \PDO::PARAM_INT), - ':id_user' => array($iUserID, \PDO::PARAM_INT) - ) - ); - } - } + $oContact->ScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; } + $oContact->UpdateDependentValues(); + $oContact->Changed = \time(); + try { if ($this->isTransactionSupported()) @@ -111,7 +118,7 @@ class PdoPersonalAddressBook $aFreq = $this->getContactFreq($iUserID, $iIdContact); $sSql = 'UPDATE rainloop_pab_contacts SET display = :display, display_name = :display_name, display_email = :display_email, '. - 'scope_type = :scope_type, scope_value = :scope_value, changed = :changed WHERE id_user = :id_user AND id_contact = :id_contact'; + 'scope_type = :scope_type, changed = :changed WHERE id_user = :id_user AND id_contact = :id_contact'; $this->prepareAndExecute($sSql, array( @@ -121,7 +128,6 @@ class PdoPersonalAddressBook ':display_name' => array($oContact->DisplayName, \PDO::PARAM_STR), ':display_email' => array($oContact->DisplayEmail, \PDO::PARAM_STR), ':scope_type' => array($oContact->ScopeType, \PDO::PARAM_INT), - ':scope_value' => array($oContact->ScopeValue, \PDO::PARAM_STR), ':changed' => array($oContact->Changed, \PDO::PARAM_INT), ) ); @@ -138,8 +144,8 @@ class PdoPersonalAddressBook else { $sSql = 'INSERT INTO rainloop_pab_contacts '. - '( id_user, display, display_name, display_email, scope_type, scope_value, changed) VALUES '. - '(:id_user, :display, :display_name, :display_email, :scope_type, :scope_value, :changed)'; + '( id_user, display, display_name, display_email, scope_type, changed) VALUES '. + '(:id_user, :display, :display_name, :display_email, :scope_type, :changed)'; $this->prepareAndExecute($sSql, array( @@ -148,7 +154,6 @@ class PdoPersonalAddressBook ':display_name' => array($oContact->DisplayName, \PDO::PARAM_STR), ':display_email' => array($oContact->DisplayEmail, \PDO::PARAM_STR), ':scope_type' => array($oContact->ScopeType, \PDO::PARAM_INT), - ':scope_value' => array($oContact->ScopeValue, \PDO::PARAM_STR), ':changed' => array($oContact->Changed, \PDO::PARAM_INT) ) ); @@ -176,18 +181,17 @@ class PdoPersonalAddressBook ':id_contact' => array($iIdContact, \PDO::PARAM_INT), ':id_user' => array($iUserID, \PDO::PARAM_INT), ':scope_type' => array($oContact->ScopeType, \PDO::PARAM_INT), - ':scope_value' => array($oContact->ScopeValue, \PDO::PARAM_STR), ':prop_type' => array($oProp->Type, \PDO::PARAM_INT), ':prop_type_custom' => array($oProp->TypeCustom, \PDO::PARAM_STR), ':prop_value' => array($oProp->Value, \PDO::PARAM_STR), - ':prop_value_custom' => array($oProp->ValueClear, \PDO::PARAM_STR), + ':prop_value_custom' => array($oProp->ValueCustom, \PDO::PARAM_STR), ':prop_frec' => array($iFreq, \PDO::PARAM_INT), ); } $sSql = 'INSERT INTO rainloop_pab_properties '. - '( id_contact, id_user, prop_type, prop_type_custom, prop_value, prop_value_custom, scope_type, scope_value, prop_frec) VALUES '. - '(:id_contact, :id_user, :prop_type, :prop_type_custom, :prop_value, :prop_value_custom, :scope_type, :scope_value, :prop_frec)'; + '( id_contact, id_user, prop_type, prop_type_custom, prop_value, prop_value_custom, scope_type, prop_frec) VALUES '. + '(:id_contact, :id_user, :prop_type, :prop_type_custom, :prop_value, :prop_value_custom, :scope_type, :prop_frec)'; $this->prepareAndExecute($sSql, $aParams, true); } @@ -275,13 +279,11 @@ class PdoPersonalAddressBook * @param int $iOffset = 0 * @param int $iLimit = 20 * @param string $sSearch = '' - * @param bool $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_ * @param int $iResultCount = 0 * * @return array */ - public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '', - $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_, &$iResultCount = 0) + public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '', &$iResultCount = 0) { $this->Sync(); @@ -289,10 +291,7 @@ class PdoPersonalAddressBook $iLimit = 0 < $iLimit ? (int) $iLimit : 20; $sSearch = \trim($sSearch); - $sEmail = $oAccount->ParentEmailHelper(); - $sDomain = \MailSo\Base\Utils::GetDomainFromEmail($sEmail); - - $iUserID = $this->getUserId($sEmail); + $iUserID = $this->getUserId($oAccount->ParentEmailHelper()); $iCount = 0; $aSearchIds = array(); @@ -302,22 +301,27 @@ class PdoPersonalAddressBook { $sSql = 'SELECT id_user, id_prop, id_contact FROM rainloop_pab_properties '. 'WHERE ('. - '(id_user = :id_user)'. - ' OR (scope_type = :scope_type_share_all)'. - ' OR (scope_type = :scope_type_share_domain AND scope_value = :scope_value_domain)'. - ' OR (scope_type = :scope_type_share_email AND scope_value = :scope_value_email)'. - ') AND prop_value LIKE :search ESCAPE \'=\' GROUP BY id_contact, id_prop'; + 'id_user = :id_user'. + ($this->bConsiderShare ? ' OR scope_type = :scope_type_share_all' : ''). + ') AND (prop_value LIKE :search ESCAPE \'=\' OR ('. + 'prop_type IN ('.\implode(',', array( + PropertyType::PHONE_PERSONAL, PropertyType::PHONE_BUSSINES, PropertyType::PHONE_OTHER, + PropertyType::MOBILE_PERSONAL, PropertyType::MOBILE_BUSSINES, PropertyType::MOBILE_OTHER, + PropertyType::FAX_PERSONAL, PropertyType::FAX_BUSSINES, PropertyType::FAX_OTHER + )).') AND prop_value_custom LIKE :search_custom_phone'. + ')) GROUP BY id_contact, id_prop'; $aParams = array( ':id_user' => array($iUserID, \PDO::PARAM_INT), - ':scope_type_share_all' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT), - ':scope_type_share_domain' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_DOMAIN, \PDO::PARAM_INT), - ':scope_type_share_email' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_EMAIL, \PDO::PARAM_INT), - ':scope_value_domain' => array($sDomain, \PDO::PARAM_STR), - ':scope_value_email' => array($sEmail, \PDO::PARAM_STR), - ':search' => array($this->specialConvertSearchValue($sSearch, '='), \PDO::PARAM_STR) + ':search' => array($this->specialConvertSearchValue($sSearch, '='), \PDO::PARAM_STR), + ':search_custom_phone' => array($this->specialConvertSearchValueCustomPhone($sSearch), \PDO::PARAM_STR) ); - + + if ($this->bConsiderShare) + { + $aParams[':scope_type_share_all'] = array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT); + } + $oStmt = $this->prepareAndExecute($sSql, $aParams); if ($oStmt) { @@ -341,23 +345,19 @@ class PdoPersonalAddressBook else { $sSql = 'SELECT COUNT(DISTINCT id_contact) as contact_count FROM rainloop_pab_properties '. - 'WHERE ('. - '(id_user = :id_user)'. - ' OR (scope_type = :scope_type_share_all)'. - ' OR (scope_type = :scope_type_share_domain AND scope_value = :scope_value_domain)'. - ' OR (scope_type = :scope_type_share_email AND scope_value = :scope_value_email)'. - ')' + 'WHERE id_user = :id_user'. + ($this->bConsiderShare ? ' OR scope_type = :scope_type_share_all' : '') ; $aParams = array( - ':id_user' => array($iUserID, \PDO::PARAM_INT), - ':scope_type_share_all' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT), - ':scope_type_share_domain' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_DOMAIN, \PDO::PARAM_INT), - ':scope_type_share_email' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_EMAIL, \PDO::PARAM_INT), - ':scope_value_domain' => array($sDomain, \PDO::PARAM_STR), - ':scope_value_email' => array($sEmail, \PDO::PARAM_STR) + ':id_user' => array($iUserID, \PDO::PARAM_INT) ); + if ($this->bConsiderShare) + { + $aParams[':scope_type_share_all'] = array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT); + } + $oStmt = $this->prepareAndExecute($sSql, $aParams); if ($oStmt) { @@ -374,23 +374,19 @@ class PdoPersonalAddressBook if (0 < $iCount) { $sSql = 'SELECT * FROM rainloop_pab_contacts '. - 'WHERE ('. - '(id_user = :id_user)'. - ' OR (scope_type = :scope_type_share_all)'. - ' OR (scope_type = :scope_type_share_domain AND scope_value = :scope_value_domain)'. - ' OR (scope_type = :scope_type_share_email AND scope_value = :scope_value_email)'. - ')' + 'WHERE id_user = :id_user'. + ($this->bConsiderShare ? ' OR scope_type = :scope_type_share_all' : '') ; $aParams = array( - ':id_user' => array($iUserID, \PDO::PARAM_INT), - ':scope_type_share_all' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT), - ':scope_type_share_domain' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_DOMAIN, \PDO::PARAM_INT), - ':scope_type_share_email' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_EMAIL, \PDO::PARAM_INT), - ':scope_value_domain' => array($sDomain, \PDO::PARAM_STR), - ':scope_value_email' => array($sEmail, \PDO::PARAM_STR) + ':id_user' => array($iUserID, \PDO::PARAM_INT) ); + if ($this->bConsiderShare) + { + $aParams[':scope_type_share_all'] = array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT); + } + if (0 < \count($aSearchIds)) { $sSql .= ' AND id_contact IN ('.implode(',', $aSearchIds).')'; @@ -423,7 +419,6 @@ class PdoPersonalAddressBook $oContact->DisplayEmail = isset($aItem['display_email']) ? (string) $aItem['display_email'] : ''; $oContact->ScopeType = isset($aItem['scope_type']) ? (int) $aItem['scope_type'] : \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; - $oContact->ScopeValue = isset($aItem['scope_value']) ? (string) $aItem['scope_value'] : ''; $oContact->Changed = isset($aItem['changed']) ? (int) $aItem['changed'] : 0; $oContact->ReadOnly = $iUserID !== (isset($aItem['id_user']) ? (int) $aItem['id_user'] : 0); @@ -460,11 +455,10 @@ class PdoPersonalAddressBook $oProperty->IdProperty = (int) $aItem['id_prop']; $oProperty->ScopeType = isset($aItem['scope_type']) ? (int) $aItem['scope_type'] : \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; - $oProperty->ScopeValue = isset($aItem['scope_value']) ? (string) $aItem['scope_value'] : ''; $oProperty->Type = (int) $aItem['prop_type']; $oProperty->TypeCustom = isset($aItem['prop_type_custom']) ? (string) $aItem['prop_type_custom'] : ''; $oProperty->Value = (string) $aItem['prop_value']; - $oProperty->ValueClear = isset($aItem['prop_value_clear']) ? (string) $aItem['prop_value_clear'] : ''; + $oProperty->ValueCustom = isset($aItem['prop_value_custom']) ? (string) $aItem['prop_value_custom'] : ''; $oProperty->Frec = isset($aItem['prop_frec']) ? (int) $aItem['prop_frec'] : 0; $aContacts[$iId]->Properties[] = $oProperty; @@ -508,34 +502,29 @@ class PdoPersonalAddressBook $this->Sync(); - $sEmail = $oAccount->ParentEmailHelper(); - $sDomain = \MailSo\Base\Utils::GetDomainFromEmail($sEmail); - - $iUserID = $this->getUserId($sEmail); + $iUserID = $this->getUserId($oAccount->ParentEmailHelper()); $sTypes = implode(',', array( PropertyType::EMAIl_PERSONAL, PropertyType::EMAIl_BUSSINES, PropertyType::EMAIl_OTHER, PropertyType::FULLNAME )); - + $sSql = 'SELECT id_contact, id_prop, prop_type, prop_value FROM rainloop_pab_properties '. 'WHERE ('. - '(id_user = :id_user)'. - ' OR (scope_type = :scope_type_share_all)'. - ' OR (scope_type = :scope_type_share_domain AND scope_value = :scope_value_domain)'. - ' OR (scope_type = :scope_type_share_email AND scope_value = :scope_value_email)'. + 'id_user = :id_user'. + ($this->bConsiderShare ? ' OR scope_type = :scope_type_share_all' : ''). ') AND prop_type IN ('.$sTypes.') AND prop_value LIKE :search ESCAPE \'=\''; $aParams = array( ':id_user' => array($iUserID, \PDO::PARAM_INT), ':limit' => array($iLimit, \PDO::PARAM_INT), - ':scope_type_share_all' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT), - ':scope_type_share_domain' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_DOMAIN, \PDO::PARAM_INT), - ':scope_type_share_email' => array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_EMAIL, \PDO::PARAM_INT), - ':scope_value_domain' => array($sDomain, \PDO::PARAM_STR), - ':scope_value_email' => array($sEmail, \PDO::PARAM_STR), ':search' => array($this->specialConvertSearchValue($sSearch, '='), \PDO::PARAM_STR) ); + if ($this->bConsiderShare) + { + $aParams[':scope_type_share_all'] = array(\RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::SHARE_ALL, \PDO::PARAM_INT); + } + $sSql .= ' ORDER BY prop_frec DESC'; $sSql .= ' LIMIT :limit'; @@ -765,7 +754,7 @@ class PdoPersonalAddressBook $oContact = new \RainLoop\Providers\PersonalAddressBook\Classes\Contact(); foreach ($aEmailsToCreate as $oEmail) { - $oContact->ScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::AUTO; + $oContact->ScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_; if ('' !== \trim($oEmail->GetEmail())) { @@ -1042,27 +1031,15 @@ SQLITEINITIAL; { case 'mysql': return $this->dataBaseUpgrade($this->sDsnType.'-pab-version', array( - 1 => $this->getInitialTablesArray($this->sDsnType), - 2 => array( - 'ALTER TABLE rainloop_pab_contacts ADD scope_value varchar(128) NOT NULL DEFAULT \'\' AFTER scope_type', - 'ALTER TABLE rainloop_pab_properties ADD scope_value varchar(128) NOT NULL DEFAULT \'\' AFTER scope_type' - ) + 1 => $this->getInitialTablesArray($this->sDsnType) )); case 'pgsql': return $this->dataBaseUpgrade($this->sDsnType.'-pab-version', array( - 1 => $this->getInitialTablesArray($this->sDsnType), - 2 => array( - 'ALTER TABLE rainloop_pab_contacts ADD scope_value varchar(128) NOT NULL DEFAULT \'\'', - 'ALTER TABLE rainloop_pab_properties ADD scope_value varchar(128) NOT NULL DEFAULT \'\'' - ) + 1 => $this->getInitialTablesArray($this->sDsnType) )); case 'sqlite': return $this->dataBaseUpgrade($this->sDsnType.'-pab-version', array( - 1 => $this->getInitialTablesArray($this->sDsnType), - 2 => array( - 'ALTER TABLE rainloop_pab_contacts ADD scope_value text NOT NULL default \'\'', - 'ALTER TABLE rainloop_pab_properties ADD scope_value text NOT NULL default \'\'' - ) + 1 => $this->getInitialTablesArray($this->sDsnType) )); } @@ -1109,6 +1086,7 @@ SQLITEINITIAL; /** * @param string $sSearch + * @param string $sEscapeSign = '=' * * @return string */ @@ -1118,6 +1096,16 @@ SQLITEINITIAL; array($sEscapeSign.$sEscapeSign, $sEscapeSign.'_', $sEscapeSign.'%'), $sSearch).'%'; } + /** + * @param string $sSearch + * + * @return string + */ + private function specialConvertSearchValueCustomPhone($sSearch) + { + return '%'.\preg_replace('/[^\d]/', '', $sSearch).'%'; + } + /** * @return array */ diff --git a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PersonalAddressBookInterface.php b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PersonalAddressBookInterface.php index c8f5887f4..482ad89d6 100644 --- a/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PersonalAddressBookInterface.php +++ b/rainloop/v/0.0.0/app/libraries/RainLoop/Providers/PersonalAddressBook/PersonalAddressBookInterface.php @@ -38,13 +38,11 @@ interface PersonalAddressBookInterface * @param int $iOffset = 0 * @param int $iLimit = 20 * @param string $sSearch = '' - * @param bool $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_ * @param int $iResultCount = 0 * * @return array */ - public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '', - $iScopeType = \RainLoop\Providers\PersonalAddressBook\Enumerations\ScopeType::DEFAULT_, &$iResultCount = 0); + public function GetContacts($oAccount, $iOffset = 0, $iLimit = 20, $sSearch = '', &$iResultCount = 0); /** * @param \RainLoop\Account $oAccount diff --git a/rainloop/v/0.0.0/app/templates/Themes/custom-values-dark.less b/rainloop/v/0.0.0/app/templates/Themes/custom-values-dark.less index 0b4733c28..ece02a71b 100644 --- a/rainloop/v/0.0.0/app/templates/Themes/custom-values-dark.less +++ b/rainloop/v/0.0.0/app/templates/Themes/custom-values-dark.less @@ -1,56 +1,56 @@ - -// MAIN -@main-color: #333; -@main-background-color: #48525C; -@main-background-image: link; - -// LOADING -@loading-color: #ddd; -@loading-text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5); - -// LOGIN -@login-color: #eee; -@login-background-color: #2b333d; -@login-rgba-background-color: rgba(0,0,0,0.5); -@login-box-shadow: 0px 2px 10px rgba(0,0,0,0.5); -@login-border: none; -@login-border-radius: 7px; - -// MENU -@dropdown-menu-color: #333; -@dropdown-menu-background-color: #fff; -@dropdown-menu-hover-background-color: #48525C; -@dropdown-menu-hover-color: #eee; -@dropdown-menu-disable-color: #999; - -// FOLDERS -@folders-color: #fff; -@folders-disabled-color: #aaa; -@folders-selected-color: #fff; -@folders-selected-background-color: #2b333d; -@folders-selected-rgba-background-color: rgba(0,0,0,0.5); -@folders-hover-color: #fff; -@folders-hover-background-color: #2b333d; -@folders-hover-rgba-background-color: rgba(0,0,0,0.5); -@folders-drop-color: #fff; -@folders-drop-background-color: #2b333d; -@folders-drop-rgba-background-color: rgba(0,0,0,0.5); - -// SETTINGS -@settings-menu-color: #fff; -@settings-menu-disabled-color: #aaa; -@settings-menu-selected-color: #fff; -@settings-menu-selected-background-color: #2b333d; -@settings-menu-selected-rgba-background-color: rgba(0,0,0,0.5); -@settings-menu-hover-color: #fff; -@settings-menu-hover-background-color: #2b333d; -@settings-menu-hover-rgba-background-color: rgba(0,0,0,0.5); - -// MESSAGE LIST -@message-list-toolbar-background-color: #eee; -@message-list-toolbar-gradient-start: #f4f4f4; -@message-list-toolbar-gradient-end: #dfdfdf; - -// MESSAGE -@message-background-color: #fff; -@message-rgba-background-color: rgba(255,255,255,0.95); + +// MAIN +@main-color: #333; +@main-background-color: #48525C; +@main-background-image: link; + +// LOADING +@loading-color: #ddd; +@loading-text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.5); + +// LOGIN +@login-color: #eee; +@login-background-color: #2b333d; +@login-rgba-background-color: rgba(0,0,0,0.5); +@login-box-shadow: 0px 2px 10px rgba(0,0,0,0.5); +@login-border: none; +@login-border-radius: 7px; + +// MENU +@dropdown-menu-color: #333; +@dropdown-menu-background-color: #fff; +@dropdown-menu-hover-background-color: #48525C; +@dropdown-menu-hover-color: #eee; +@dropdown-menu-disable-color: #999; + +// FOLDERS +@folders-color: #fff; +@folders-disabled-color: #aaa; +@folders-selected-color: #fff; +@folders-selected-background-color: #2b333d; +@folders-selected-rgba-background-color: rgba(0,0,0,0.5); +@folders-hover-color: #fff; +@folders-hover-background-color: #2b333d; +@folders-hover-rgba-background-color: rgba(0,0,0,0.5); +@folders-drop-color: #fff; +@folders-drop-background-color: #2b333d; +@folders-drop-rgba-background-color: rgba(0,0,0,0.5); + +// SETTINGS +@settings-menu-color: #fff; +@settings-menu-disabled-color: #aaa; +@settings-menu-selected-color: #fff; +@settings-menu-selected-background-color: #2b333d; +@settings-menu-selected-rgba-background-color: rgba(0,0,0,0.5); +@settings-menu-hover-color: #fff; +@settings-menu-hover-background-color: #2b333d; +@settings-menu-hover-rgba-background-color: rgba(0,0,0,0.5); + +// MESSAGE LIST +@message-list-toolbar-background-color: #eee; +@message-list-toolbar-gradient-start: #f4f4f4; +@message-list-toolbar-gradient-end: #dfdfdf; + +// MESSAGE +@message-background-color: #fff; +@message-rgba-background-color: rgba(255,255,255,0.95); diff --git a/rainloop/v/0.0.0/app/templates/Themes/custom-values-light.less b/rainloop/v/0.0.0/app/templates/Themes/custom-values-light.less index 0061e6e61..7b0eef25b 100644 --- a/rainloop/v/0.0.0/app/templates/Themes/custom-values-light.less +++ b/rainloop/v/0.0.0/app/templates/Themes/custom-values-light.less @@ -1,55 +1,55 @@ - -// MAIN -@main-color: #333; -@main-background-color: #eee; -@main-background-image: link; - -// LOADING -@loading-color: #000; - -// LOGIN -@login-color: #eee; -@login-background-color: #757575; -@login-rgba-background-color: rgba(0,0,0,0.5); -@login-box-shadow: none; -@login-border: none; -@login-border-radius: 7px; - -// MENU -@dropdown-menu-color: #333; -@dropdown-menu-background-color: #fff; -@dropdown-menu-hover-background-color: #757575; -@dropdown-menu-hover-color: #eee; -@dropdown-menu-disable-color: #999; - -// FOLDERS -@folders-color: #000; -@folders-disabled-color: #999; -@folders-selected-color: #eee; -@folders-selected-background-color: #757575; -@folders-selected-rgba-background-color: rgba(0,0,0,0.5); -@folders-hover-color: #eee; -@folders-hover-background-color: #757575; -@folders-hover-rgba-background-color: rgba(0,0,0,0.5); -@folders-drop-color: #eee; -@folders-drop-background-color: #757575; -@folders-drop-rgba-background-color: rgba(0,0,0,0.5); - -// SETTINGS -@settings-menu-color: #000; -@settings-menu-disabled-color: #999; -@settings-menu-selected-color: #eee; -@settings-menu-selected-background-color: #757575; -@settings-menu-selected-rgba-background-color: rgba(0,0,0,0.5); -@settings-menu-hover-color: #eee; -@settings-menu-hover-background-color: #757575; -@settings-menu-hover-rgba-background-color: rgba(0,0,0,0.5); - -// MESSAGE LIST -@message-list-toolbar-background-color: #eee; -@message-list-toolbar-gradient-start: #f4f4f4; -@message-list-toolbar-gradient-end: #dfdfdf; - -// MESSAGE -@message-background-color: #fff; + +// MAIN +@main-color: #333; +@main-background-color: #eee; +@main-background-image: link; + +// LOADING +@loading-color: #000; + +// LOGIN +@login-color: #eee; +@login-background-color: #757575; +@login-rgba-background-color: rgba(0,0,0,0.5); +@login-box-shadow: none; +@login-border: none; +@login-border-radius: 7px; + +// MENU +@dropdown-menu-color: #333; +@dropdown-menu-background-color: #fff; +@dropdown-menu-hover-background-color: #757575; +@dropdown-menu-hover-color: #eee; +@dropdown-menu-disable-color: #999; + +// FOLDERS +@folders-color: #000; +@folders-disabled-color: #999; +@folders-selected-color: #eee; +@folders-selected-background-color: #757575; +@folders-selected-rgba-background-color: rgba(0,0,0,0.5); +@folders-hover-color: #eee; +@folders-hover-background-color: #757575; +@folders-hover-rgba-background-color: rgba(0,0,0,0.5); +@folders-drop-color: #eee; +@folders-drop-background-color: #757575; +@folders-drop-rgba-background-color: rgba(0,0,0,0.5); + +// SETTINGS +@settings-menu-color: #000; +@settings-menu-disabled-color: #999; +@settings-menu-selected-color: #eee; +@settings-menu-selected-background-color: #757575; +@settings-menu-selected-rgba-background-color: rgba(0,0,0,0.5); +@settings-menu-hover-color: #eee; +@settings-menu-hover-background-color: #757575; +@settings-menu-hover-rgba-background-color: rgba(0,0,0,0.5); + +// MESSAGE LIST +@message-list-toolbar-background-color: #eee; +@message-list-toolbar-gradient-start: #f4f4f4; +@message-list-toolbar-gradient-end: #dfdfdf; + +// MESSAGE +@message-background-color: #fff; @message-rgba-background-color: rgba(255,255,255,0.95); \ No newline at end of file diff --git a/rainloop/v/0.0.0/app/templates/Themes/template.less b/rainloop/v/0.0.0/app/templates/Themes/template.less index 6ca0ada70..6aedb2393 100644 --- a/rainloop/v/0.0.0/app/templates/Themes/template.less +++ b/rainloop/v/0.0.0/app/templates/Themes/template.less @@ -75,6 +75,10 @@ } } +.g-ui-menu .e-item.selected > .e-link { + background-color: @dropdown-menu-selected-background-color !important; +} + .g-ui-menu .e-item > .e-link:hover { color: @dropdown-menu-hover-color !important; background-color: @dropdown-menu-hover-background-color !important; diff --git a/rainloop/v/0.0.0/app/templates/Themes/values.less b/rainloop/v/0.0.0/app/templates/Themes/values.less index 090756782..c46a42665 100644 --- a/rainloop/v/0.0.0/app/templates/Themes/values.less +++ b/rainloop/v/0.0.0/app/templates/Themes/values.less @@ -1,59 +1,60 @@ - -// MAIN -@main-color: #333; -@main-background-color: #e3e3e3; -@main-background-image: none; // "images/background.png" - -// LOADING -@loading-color: #000; // #ddd -@loading-text-shadow: none; // 0px 1px 0px rgba(0, 0, 0, 0.5); - -// LOGIN -@login-color: #555; -@login-background-color: #eee; -@login-rgba-background-color: false; // rgba(0,0,0,0.7) -@login-box-shadow: none; // 0px 2px 10px rgba(0,0,0,0.5) -@login-border: 1px solid #ccc; -@login-border-radius: 7px; -@login-gradient-start: none; // #f4f4f4 -@login-gradient-end: none; // #dfdfdf - -// MENU -@dropdown-menu-color: #333; -@dropdown-menu-background-color: #fff; -@dropdown-menu-hover-background-color: #444; -@dropdown-menu-hover-color: #eee; -@dropdown-menu-disable-color: #999; - -// FOLDERS -@folders-color: #333; -@folders-disabled-color: #666; -@folders-selected-color: #eee; -@folders-selected-background-color: #333; -@folders-selected-rgba-background-color: false; -@folders-hover-color: #eee; -@folders-hover-background-color: #333; -@folders-hover-rgba-background-color: false; -@folders-drop-color: #eee; -@folders-drop-background-color: #333; -@folders-drop-rgba-background-color: false; - -// SETTINGS -@settings-menu-color: #333; -@settings-menu-disabled-color: #666; -@settings-menu-selected-color: #eee; -@settings-menu-selected-background-color: #333; -@settings-menu-selected-rgba-background-color: false; -@settings-menu-hover-color: #eee; -@settings-menu-hover-background-color: #333; -@settings-menu-hover-rgba-background-color: false; - -// MESSAGE LIST -@message-list-toolbar-background-color: #eee; -@message-list-toolbar-rgba-background-color: false; -@message-list-toolbar-gradient-start: none; // #f4f4f4 -@message-list-toolbar-gradient-end: none; // #dfdfdf - -// MESSAGE -@message-background-color: #fff; -@message-rgba-background-color: false; + +// MAIN +@main-color: #333; +@main-background-color: #e3e3e3; +@main-background-image: none; // "images/background.png" + +// LOADING +@loading-color: #000; // #ddd +@loading-text-shadow: none; // 0px 1px 0px rgba(0, 0, 0, 0.5); + +// LOGIN +@login-color: #555; +@login-background-color: #eee; +@login-rgba-background-color: false; // rgba(0,0,0,0.7) +@login-box-shadow: none; // 0px 2px 10px rgba(0,0,0,0.5) +@login-border: 1px solid #ccc; +@login-border-radius: 7px; +@login-gradient-start: none; // #f4f4f4 +@login-gradient-end: none; // #dfdfdf + +// MENU +@dropdown-menu-color: #333; +@dropdown-menu-background-color: #fff; +@dropdown-menu-hover-background-color: #444; +@dropdown-menu-hover-color: #eee; +@dropdown-menu-disable-color: #999; +@dropdown-menu-selected-background-color: #eee; + +// FOLDERS +@folders-color: #333; +@folders-disabled-color: #666; +@folders-selected-color: #eee; +@folders-selected-background-color: #333; +@folders-selected-rgba-background-color: false; +@folders-hover-color: #eee; +@folders-hover-background-color: #333; +@folders-hover-rgba-background-color: false; +@folders-drop-color: #eee; +@folders-drop-background-color: #333; +@folders-drop-rgba-background-color: false; + +// SETTINGS +@settings-menu-color: #333; +@settings-menu-disabled-color: #666; +@settings-menu-selected-color: #eee; +@settings-menu-selected-background-color: #333; +@settings-menu-selected-rgba-background-color: false; +@settings-menu-hover-color: #eee; +@settings-menu-hover-background-color: #333; +@settings-menu-hover-rgba-background-color: false; + +// MESSAGE LIST +@message-list-toolbar-background-color: #eee; +@message-list-toolbar-rgba-background-color: false; +@message-list-toolbar-gradient-start: none; // #f4f4f4 +@message-list-toolbar-gradient-end: none; // #dfdfdf + +// MESSAGE +@message-background-color: #fff; +@message-rgba-background-color: false; diff --git a/rainloop/v/0.0.0/app/templates/Views/AdminSettingsContacts.html b/rainloop/v/0.0.0/app/templates/Views/AdminSettingsContacts.html index b521e4c6a..038bdec5b 100644 --- a/rainloop/v/0.0.0/app/templates/Views/AdminSettingsContacts.html +++ b/rainloop/v/0.0.0/app/templates/Views/AdminSettingsContacts.html @@ -19,6 +19,10 @@ Enable contacts +
diff --git a/rainloop/v/0.0.0/app/templates/Views/AdminSettingsLicensing.html b/rainloop/v/0.0.0/app/templates/Views/AdminSettingsLicensing.html index 721848042..8098ca25f 100644 --- a/rainloop/v/0.0.0/app/templates/Views/AdminSettingsLicensing.html +++ b/rainloop/v/0.0.0/app/templates/Views/AdminSettingsLicensing.html @@ -61,7 +61,7 @@
- +    Activate Subscription Key diff --git a/rainloop/v/0.0.0/app/templates/Views/PopupsContacts.html b/rainloop/v/0.0.0/app/templates/Views/PopupsContacts.html index 63472599f..df1e5ee0e 100644 --- a/rainloop/v/0.0.0/app/templates/Views/PopupsContacts.html +++ b/rainloop/v/0.0.0/app/templates/Views/PopupsContacts.html @@ -94,14 +94,15 @@
-
+
- +
@@ -152,35 +153,32 @@
-
diff --git a/rainloop/v/0.0.0/app/templates/Views/SettingsGeneral.html b/rainloop/v/0.0.0/app/templates/Views/SettingsGeneral.html index 8b78de780..97bfdf7d6 100644 --- a/rainloop/v/0.0.0/app/templates/Views/SettingsGeneral.html +++ b/rainloop/v/0.0.0/app/templates/Views/SettingsGeneral.html @@ -45,9 +45,9 @@
-->
- +
+
+
+ +
+
diff --git a/rainloop/v/0.0.0/langs/de.ini b/rainloop/v/0.0.0/langs/de.ini index cc594f9ca..e08ef7f34 100644 --- a/rainloop/v/0.0.0/langs/de.ini +++ b/rainloop/v/0.0.0/langs/de.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "Von" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "Nachrichten pro Seite" LABEL_CHROME_NOTIFICATION = "Benachrichtigungen" LABEL_CHROME_NOTIFICATION_DESC = "Popups einblenden, wenn neue Nachrichten vorhanden sind" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Vom Browser blockiert.)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Vorlagen" diff --git a/rainloop/v/0.0.0/langs/en.ini b/rainloop/v/0.0.0/langs/en.ini index 1bd2611c7..1ddb00720 100644 --- a/rainloop/v/0.0.0/langs/en.ini +++ b/rainloop/v/0.0.0/langs/en.ini @@ -144,11 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" LABEL_READ_ONLY = "Read only" LABEL_SHARE = "Share" BUTTON_SHARE_NONE = "None" BUTTON_SHARE_ALL = "All" -BUTTON_SHARE_DOMAIN = "Domain" [COMPOSE] TITLE_FROM = "From" @@ -303,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "messages on page" LABEL_CHROME_NOTIFICATION = "Notifications" LABEL_CHROME_NOTIFICATION_DESC = "Show new messages notification popups" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Blocked by the browser)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Themes" diff --git a/rainloop/v/0.0.0/langs/es.ini b/rainloop/v/0.0.0/langs/es.ini index 002d6f548..a4551225f 100644 --- a/rainloop/v/0.0.0/langs/es.ini +++ b/rainloop/v/0.0.0/langs/es.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "De" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "mensajes en página" LABEL_CHROME_NOTIFICATION = "Notificaciones" LABEL_CHROME_NOTIFICATION_DESC = "Mostrar notificación de nuevos mensajes en Popup" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Bloqueado por el explorador)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Temas" diff --git a/rainloop/v/0.0.0/langs/fr.ini b/rainloop/v/0.0.0/langs/fr.ini index 17d9f2c24..4e86af298 100644 --- a/rainloop/v/0.0.0/langs/fr.ini +++ b/rainloop/v/0.0.0/langs/fr.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Téléphone" LINK_ADD_EMAIL = "Ajouter une adresse email" LINK_ADD_PHONE = "Ajouter un numéro de téléphone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "De" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "messages par page" LABEL_CHROME_NOTIFICATION = "Notifications" LABEL_CHROME_NOTIFICATION_DESC = "Afficher un pop-up de notification pour les nouveaux messages" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Bloqué par le navigateur)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Thèmes" diff --git a/rainloop/v/0.0.0/langs/is.ini b/rainloop/v/0.0.0/langs/is.ini index 857e45da2..01e229789 100644 --- a/rainloop/v/0.0.0/langs/is.ini +++ b/rainloop/v/0.0.0/langs/is.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "Frá" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "bréf á síðu" LABEL_CHROME_NOTIFICATION = "Tilkynningar" LABEL_CHROME_NOTIFICATION_DESC = "Sýna tilkynningarglugga fyrir ný bréf" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Lokað af vafra)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Þemur" diff --git a/rainloop/v/0.0.0/langs/ko-kr.ini b/rainloop/v/0.0.0/langs/ko-kr.ini index 8481bca2d..0084d8abf 100644 --- a/rainloop/v/0.0.0/langs/ko-kr.ini +++ b/rainloop/v/0.0.0/langs/ko-kr.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "보낸 이" @@ -295,6 +300,7 @@ LABEL_MESSAGE_PER_PAGE = "페이지 당 메시지 수" LABEL_CHROME_NOTIFICATION = "알림" LABEL_CHROME_NOTIFICATION_DESC = "새 메시지 알림 팝업 사용" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(브라우저에 의해 차단됨)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "테마" diff --git a/rainloop/v/0.0.0/langs/lv.ini b/rainloop/v/0.0.0/langs/lv.ini index e5ff10b62..9c5d9748e 100644 --- a/rainloop/v/0.0.0/langs/lv.ini +++ b/rainloop/v/0.0.0/langs/lv.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "No" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "ziņojumi lapā" LABEL_CHROME_NOTIFICATION = "Paziņojumi" LABEL_CHROME_NOTIFICATION_DESC = "Rādīt jaunus paziņojumus kā izlecošus logus" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Parlūkprogramma bloķēja)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Tēmas" diff --git a/rainloop/v/0.0.0/langs/nl.ini b/rainloop/v/0.0.0/langs/nl.ini index 5d592719a..bc7220364 100644 --- a/rainloop/v/0.0.0/langs/nl.ini +++ b/rainloop/v/0.0.0/langs/nl.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "Van" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "berichten op pagina" LABEL_CHROME_NOTIFICATION = "Notificaties" LABEL_CHROME_NOTIFICATION_DESC = "Toon nieuwe berichten popup" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Geblokkeerd door de browser)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Themes" diff --git a/rainloop/v/0.0.0/langs/no.ini b/rainloop/v/0.0.0/langs/no.ini index 88b194851..cfa2fe3ac 100644 --- a/rainloop/v/0.0.0/langs/no.ini +++ b/rainloop/v/0.0.0/langs/no.ini @@ -1,421 +1,427 @@ -[LOGIN] -LABEL_EMAIL = "Epost" -LABEL_LOGIN = "Logg inn" -LABEL_PASSWORD = "Passord" -LABEL_SIGN_ME = "Husk meg" -BUTTON_SIGN_IN = "Logg Inn" -TITLE_SIGN_IN_GOOGLE = "Logg inn Med Google" -TITLE_SIGN_IN_FACEBOOK = "Logg inn MED Facebook" -TITLE_SIGN_IN_TWITTER = "Logg inn MED Twitter" - -[TOP_TOOLBAR] -BUTTON_ADD_ACCOUNT = "Legg til konto" -BUTTON_SETTINGS = "Innstillinger" -BUTTON_LOGOUT = "Logg ut" - -[SEARCH] -MAIN_INPUT_PLACEHOLDER = "Søk" -TITLE_ADV = "Avansert SØK" -LABEL_ADV_FROM = "Fra" -LABEL_ADV_TO = "Til" -LABEL_ADV_SUBJECT = "Emne" -LABEL_ADV_TEXT = "Tekst" -LABEL_ADV_HAS_ATTACHMENTS = "Har vedlegg" -LABEL_ADV_FLAGGED = "Markert" -LABEL_ADV_UNSEEN = "Ulest" -LABEL_ADV_DATE = "Dato" -LABEL_ADV_DATE_ALL = "Alle" -LABEL_ADV_DATE_3_DAYS = "Opp til tre dager gamle" -LABEL_ADV_DATE_7_DAYS = "Opp til en uke gamle" -LABEL_ADV_DATE_MONTH = "Inntil 1 mnd gammel" -LABEL_ADV_DATE_3_MONTHS = "Opptil tre måneder gammel" -LABEL_ADV_DATE_6_MONTHS = "Opp til 6 måneder gamle" -LABEL_ADV_DATE_YEAR = "Opptil 1 år gammel" -BUTTON_ADV_SEARCH = "Søk" - -[MAGNIFIC_POPUP] -CLOSE = "Lukk ( Esc )" -LOADING = "Laster ..." -GALLERY_PREV = "Forrige ( venstre piltast )" -GALLERY_NEXT = "Neste ( høyre piltast )" -GALLERY_COUNTER = "%curr% av %total%" -IMAGE_ERROR = "Bildet kunne ikke lastes." -AJAX_ERROR = "Innholdet kunne ikke lastes." - -[FOLDER_LIST] -BUTTON_COMPOSE = "Skriv" -BUTTON_CONTACTS = "Kontakter" -INBOX_NAME = "Innboks" -SENT_NAME = "Sendt" -DRAFTS_NAME = "Kladd" -SPAM_NAME = "Spam" -TRASH_NAME = "Søppel" - -[QUOTA] -TITLE = "Kvote bruk" - -[MESSAGE_LIST] -BUTTON_RELOAD = "Hent nye meldinger" -BUTTON_MOVE_TO = "Flytt til" -BUTTON_DELETE = "Slett" -BUTTON_SPAM = "Spam" -BUTTON_EMPTY_FOLDER = "Fjern mappe" -BUTTON_MULTY_FORWARD = "Videresend meldinger" -BUTTON_DELETE_WITHOUT_MOVE = "Slett permanent" -BUTTON_MORE = "Mer" -MENU_SET_SEEN = "Marker som lest" -MENU_SET_ALL_SEEN = "Marker alle som lest" -MENU_UNSET_SEEN = "Marker som ulest" -MENU_SET_FLAG = "Flagg" -MENU_UNSET_FLAG = "opphever du flagging" -MENU_SELECT_ALL = "Alle" -MENU_SELECT_NONE = "Ingen" -MENU_SELECT_INVERT = "Inverter" -MENU_SELECT_UNSEEN = "uleste" -MENU_SELECT_SEEN = "Les" -MENU_SELECT_FLAGGED = "Markert" -MENU_SELECT_UNFLAGGED = "ikke merket" -EMPTY_LIST = "Tøm liste ." -EMPTY_SEARCH_LIST = "Ingen meldinger matchet søket ditt." -SEARCH_RESULT_FOR = "Søkeresultater for \"%SEARCH%\"" -LIST_LOADING = "Laster" -EMPTY_SUBJECT_TEXT = "( Ingen emne)" -PUT_MESSAGE_HERE = "Drop melding her for å vise det i listen" -TODAY_AT = "i dag på %TIME%" -YESTERDAY_IN = "i går i %TIME%" -SEARCH_PLACEHOLDER = "Søk" -NEW_MESSAGE_NOTIFICATION = "Du har %count% nye meldinger !" -QUOTA_SIZE = "Bruke %SIZE% ( %PROC%% ) av %LIMIT% " - -[MESSAGE] -BUTTON_EDIT = "Rediger" -BUTTON_BACK = "Tilbake" -BUTTON_CLOSE = "Lukk" -BUTTON_DELETE = "Slett" -BUTTON_SPAM = "Spam" -BUTTON_MOVE_TO = "Flytt til" -BUTTON_MORE = "Mer" -BUTTON_REPLY = "Svar" -BUTTON_REPLY_ALL = "Svar alle" -BUTTON_FORWARD = "Frem" -BUTTON_FORWARD_AS_ATTACHMENT = "Videresend som vedlegg" -BUTTON_SHOW_IMAGES = "Vis eksterne bilder" -BUTTON_IN_NEW_WINDOW = "Vis i eget vindu" -MENU_HEADERS = "Vis meldingshoder" -MENU_VIEW_ORIGINAL = "Vis original" -MENU_DOWNLOAD_ORIGINAL = "Last ned som .Eml fil" -MENU_FILTER_SIMILAR = "Filtrer meldinger som dette" -MENU_PRINT = "Skriv ut" -EMPTY_SUBJECT_TEXT = "( Ingen emne)" -LABEL_SUBJECT = "Emne" -LABEL_DATE = "Dato" -LABEL_FROM = "Fra" -LABEL_FROM_SHORT = "fra" -LABEL_TO = "Til" -LABEL_TO_SHORT = "til" -LABEL_CC = "Kopi" -LABEL_BCC = "Blindkopi" -PRINT_LABEL_FROM = "Fra" -PRINT_LABEL_TO = "Til" -PRINT_LABEL_CC = "Kopi" -PRINT_LABEL_BCC = "Blindkopi" -PRINT_LABEL_DATE = "Dato" -PRINT_LABEL_SUBJECT = "Emne" -PRINT_LABEL_ATTACHMENTS = "Vedlegg" -MESSAGE_LOADING = "Laster" -MESSAGE_VIEW_DESC = "Velg melding på listen for å vise det her ." - -[SUGGESTIONS] -SEARCHING_DESC = "Søker ..." - -[CONTACTS] -LEGEND_CONTACTS = "Kontakter" -SEARCH_INPUT_PLACEHOLDER = "Søk" -BUTTON_ADD_CONTACT = "Legg til kontakt" -BUTTON_CREATE_CONTACT = "Opprett" -BUTTON_UPDATE_CONTACT = "Oppdater" -LIST_LOADING = "Laster" -EMPTY_LIST = "Ingen kontakter her" -EMPTY_SEARCH = "Ingen kontakter funnet" -CLEAR_SEARCH = "Tøm søk" -CONTACT_VIEW_DESC = "Velg kontakt i listen for å vise det her ." -LABEL_DISPLAY_NAME = "Navn" -LABEL_EMAIL = "E-post" -LABEL_PHONE = "Telefon" -LINK_ADD_EMAIL = "Legg til en e-postadresse" -LINK_ADD_PHONE = "Legg til en telefon" - -[COMPOSE] -TITLE_FROM = "Fra" -TITLE_TO = "Til" -TITLE_CC = "CC" -TITLE_BCC = "BCC" -TITLE_REPLY_TO = "Svar til" -TITLE_SUBJECT = "Emne" -LINK_SHOW_INPUTS = "viser alle felt" -BUTTON_SEND = "Send" -BUTTON_SAVE = "Lagre" -BUTTON_DELETE = "Slett" -BUTTON_CANCEL = "Avbryt" -SAVED_TIME = "Lagret %TIME%" -SAVED_ERROR_ON_SEND = "Meldingen ble sendt, men ble ikke lagret i mappen for sendte elementer" -ATTACH_FILES = "Legg ved filer" -ATTACH_DROP_FILES_DESC = "Slipp filer her" -ATTACH_ITEM_CANCEL = "Avbryt" -DROPBOX = "Dropbox" -GOOGLE_DRIVE = "Google Drive" -REPLY_MESSAGE_TITLE = "%DATETIME% , skrev %EMAIL%" -FORWARD_MESSAGE_TOP_TITLE = "-------- Videresendt melding -------" -FORWARD_MESSAGE_TOP_FROM = "Fra" -FORWARD_MESSAGE_TOP_TO = "Til" -FORWARD_MESSAGE_TOP_CC = "CC" -FORWARD_MESSAGE_TOP_SENT = "Sendt" -FORWARD_MESSAGE_TOP_SUBJECT = "Emne" -EMPTY_TO_ERROR_DESC = "Vennligst oppgi minst én mottaker" - -[POPUPS_ASK] -BUTTON_YES = "Ja" -BUTTON_NO = "Nei" -DESC_WANT_CLOSE_THIS_WINDOW = "Er du sikker på at du vil lukke dette vinduet ?" -DESC_WANT_DELETE_MESSAGES = "Er du sikker på at du vil slette meldingen(e)?" - -[POPUPS_LANGUAGES] -TITLE_LANGUAGES = "Velg språk" - -[POPUPS_ADD_ACCOUNT] -TITLE_ADD_ACCOUNT = "Legg til konto?" -BUTTON_ADD_ACCOUNT = "Legg til" - -[POPUPS_IDENTITIES] -TITLE_ADD_IDENTITY = "Legg identitet?" -TITLE_UPDATE_IDENTITY = "Oppdater identitet?" -BUTTON_ADD_IDENTITY = "Legg til" -BUTTON_UPDATE_IDENTITY = "Oppdater" -LABEL_EMAIL = "E-post" -LABEL_NAME = "Navn" -LABEL_REPLY_TO = "Svar til" -LABEL_BCC = "Blindkopi" - -[POPUPS_CREATE_FOLDER] -TITLE_CREATE_FOLDER = "Opprett en mappe ?" -SELECT_NO_PARENT = "" -LABEL_NAME = "Mappenavn" -LABEL_PARENT = "Parent mappen" -BUTTON_CREATE = "Create" -BUTTON_CANCEL = "Avbryt" -BUTTON_CLOSE = "Lukk" -TITLE_CREATING_PROCESS = "Opprette en mappe" - -[POPUPS_CLEAR_FOLDER] -TITLE_CLEAR_FOLDER = "Purge alle meldinger fra mappen ?" -BUTTON_CLEAR = "Fjern" -BUTTON_CANCEL = "Avbryt" -BUTTON_CLOSE = "Lukk" -DANGER_DESC_WARNING = "Advarsel!" -DANGER_DESC_HTML_1 = "Denne handlingen vil resultere i å fjerne alle poster fra % FOLDER % < / strong > -mappen helt." -DANGER_DESC_HTML_2 = "Når den er startet , prosessen kan ikke bli avbrutt eller kansellert ." -TITLE_CLEARING_PROCESS = "Tømme mappen ..." - -[POPUPS_SYSTEM_FOLDERS] -TITLE_SYSTEM_FOLDERS = "Velg systemmapper" -SELECT_CHOOSE_ONE = "Velg en" -SELECT_UNUSE_NAME = "Ikke bruk" -LABEL_SENT = "Sendt" -LABEL_DRAFTS = "Kladd" -LABEL_SPAM = "Spam" -LABEL_TRASH = "Trash" -BUTTON_CANCEL = "Avbryt" -BUTTON_CLOSE = "Lukk" - -NOTIFICATION_SENT = "Du har ikke valgt \"Sendt\" system mappe beskjeder kommer til etter sending . -Hvis du ikke ønsker å lagre sendte meldingen , kan du velge \"Ikke bruk\" alternativet ." - -NOTIFICATION_DRAFTS = "Du har ikke valgt \"Kladd\" system mappe meldinger som skal lagres når du skriver ." - -NOTIFICATION_SPAM = "Du har ikke valgt \"Spam\" system mappen spamed meldinger er plassert til . -Hvis du ønsker å fjerne meldinger permanent , velger du \"Ikke bruk\" alternativet ." - -NOTIFICATION_TRASH = "Du har ikke valgt \"Trash\" system mappen slettede meldinger skal plasseres til . -Hvis du ønsker å fjerne meldinger permanent , velger du \"Ikke bruk\" alternativet ." - -[TITLES] -LOADING = "Laster" -LOGIN = "Logg inn" -MAILBOX = "Epost" -SETTINGS = "Innstillinger" -COMPOSE = "Skriv" - -[UPLOAD] -ERROR_FILE_IS_TOO_BIG = "Filen er for stor" -ERROR_FILE_PARTIALLY_UPLOADED = "Fil ble delvis lastet opp på grunn av ukjent feil" -ERROR_NO_FILE_UPLOADED = "Ingen fil lastet opp" -ERROR_MISSING_TEMP_FOLDER = "Den midlertidige fil mangler" -ERROR_ON_SAVING_FILE = "En ukjent filopplasting feil oppstod" -ERROR_FILE_TYPE = "Ugyldig filtype" -ERROR_UNKNOWN = "En ukjent filopplasting feil oppstod" - -[EDITOR] -TEXT_SWITCHER_PLAINT_TEXT = "Ren tekst" -TEXT_SWITCHER_RICH_FORMATTING = "Rik tekst" -TEXT_SWITCHER_CONFIRM = "Tekst formatering og bilder vil bli tapt . Er du sikker på at du vil fortsette?" - -[SETTINGS_LABELS] -LABEL_PERSONAL_NAME = "Personlig" -LABEL_GENERAL_NAME = "Generelt" -LABEL_FOLDERS_NAME = "Mapper" -LABEL_ACCOUNTS_NAME = "Kontoer" -LABEL_IDENTITY_NAME = "Identitet" -LABEL_IDENTITIES_NAME = "identiteter" -LABEL_SOCIAL_NAME = "Sosialt" -LABEL_THEMES_NAME = "Tema" -LABEL_CHANGE_PASSWORD_NAME = "Passord" -BUTTON_BACK = "Tilbake" - -[SETTINGS_IDENTITY] -LEGEND_IDENTITY = "Identitet" -LABEL_DISPLAY_NAME = "Navn" -LABEL_REPLY_TO = "Svar til" -LABEL_SIGNATURE = "Signatur" - -[SETTINGS_GENERAL] -LEGEND_GENERAL = "Generelt" -LABEL_LANGUAGE = "Språk" -LABEL_EDITOR = "Standard teksteditor" -LABEL_EDITOR_HTML_AS_DEFAULT = "Html" -LABEL_EDITOR_PLAIN_AS_DEFAULT = "Plain" -LABEL_ANIMATION = "Interface animasjon" -LABEL_ANIMATION_FULL = "Full" -LABEL_ANIMATION_NORMAL = "Normal" -LABEL_ANIMATION_NONE = "Ingen" -LABEL_VIEW_OPTIONS = "Vis alternativer" -LABEL_USE_PREVIEW_PANE = "Bruk forhåndsvisningsruten" -LABEL_USE_CHECKBOXES_IN_LIST = "Vis avkrysningsbokser i listen" -LABEL_USE_THREADS = "Bruk tråder" -LABEL_REPLY_SAME_FOLDER = "Place svar i mappen av meldingen blir besvart" -LABEL_SHOW_IMAGES = "Vis alltid eksterne bilder i meldingsteksten" -LABEL_SHOW_ANIMATION = "Vis animasjon" -LABEL_MESSAGE_PER_PAGE = "meldinger på side" -LABEL_CHROME_NOTIFICATION = "Varsler" -LABEL_CHROME_NOTIFICATION_DESC = "Vis nye meldinger varslings popups" -LABEL_CHROME_NOTIFICATION_DESC_DENIED = "( Blokkert av nettleseren )" - -[SETTINGS_THEMES] -LEGEND_THEMES = "Tema" -LEGEND_THEMES_CUSTOM = "Egendefinert tema" -LABEL_CUSTOM_TYPE = "Type" -LABEL_CUSTOM_TYPE_LIGHT = "Lys" -LABEL_CUSTOM_TYPE_DARK = "Mørk" -LABEL_CUSTOM_BACKGROUND_IMAGE = "Bakgrunn" -BUTTON_UPLOAD_BACKGROUND_IMAGE = "Last opp bakgrunnsbilde ( JPG , PNG )" -ERROR_FILE_IS_TOO_BIG = "Filen er for stor ( 1MB + )" -ERROR_FILE_TYPE_ERROR = "Ugyldig filtype ( JPG og PNG only)" -ERROR_UNKNOWN = "En ukjent filopplasting feil oppstod" - -[SETTINGS_SOCIAL] -LEGEND_GOOGLE = "Google" -BUTTON_GOOGLE_CONNECT = "Koble Google" -BUTTON_GOOGLE_DISCONNECT = "Koble fra Google" -MAIN_GOOGLE_DESC = "Når du har aktivert innlogging via Google, kan du logge deg inn på denne kontoen ved hjelp av Google-knappen på innloggingsskjermen." -LEGEND_FACEBOOK = "Facebook" -BUTTON_FACEBOOK_CONNECT = "Koble til Facebook" -BUTTON_FACEBOOK_DISCONNECT = "Koble fra Facebook" -MAIN_FACEBOOK_DESC = "Når du har aktivert innlogging via Facebook , kan du logge deg inn på denne kontoen ved hjelp av Facebook -knappen på innloggingsskjermen." -LEGEND_TWITTER = "Twitter" -BUTTON_TWITTER_CONNECT = "Koble til Twitter" -BUTTON_TWITTER_DISCONNECT = "Koble fra Twitter" -MAIN_TWITTER_DESC = "Når du har aktivert innlogging via Twitter , kan du logge deg inn på denne kontoen ved hjelp av Twitter -knappen på innloggingsskjermen." - -[SETTINGS_FOLDERS] -LEGEND_FOLDERS = "Mappeliste" -BUTTON_CREATE = "Opprett mappe" -BUTTON_SYSTEM = "Velg System mapper" -BUTTON_DELETE = "Slett" -BUTTON_SUBSCRIBE = "Abonner" -BUTTON_UNSUBSCRIBE = "Stopp abonnement" -LOADING_PROCESS = "Oppdaterer mappeliste" -CREATING_PROCESS = "Opprette en mappe" -DELETING_PROCESS = "Slette en mappe" -RENAMING_PROCESS = "Endre navn på en mappe" -DELETING_ASK = "Er du sikker?" - -[SETTINGS_ACCOUNTS] -LEGEND_ACCOUNTS = "Account List" -BUTTON_ADD_ACCOUNT = "Legg til konto" -BUTTON_DELETE = "Slett" -LOADING_PROCESS = "Oppdaterer kontolisten" -DELETING_ASK = "Er du sikker?" - -[SETTINGS_IDENTITIES] -LEGEND_IDENTITY = "Identitet" -LEGEND_IDENTITIES = "Tilleggs Identities" -LABEL_DISPLAY_NAME = "Navn" -LABEL_REPLY_TO = "Svar til" -LABEL_SIGNATURE = "Signatur" -BUTTON_ADD_IDENTITY = "Legg Identity" -BUTTON_DELETE = "Slett" -LOADING_PROCESS = "Oppdaterer identitet liste" -DELETING_ASK = "Er du sikker?" - -[SETTINGS_CHANGE_PASSWORD] -LEGEND_CHANGE_PASSWORD = "Endre passord" -LABEL_CURRENT_PASSWORD = "Gjeldende passord" -LABEL_NEW_PASSWORD = "Nytt passord" -LABEL_REPEAT_PASSWORD = "Nytt passord på nytt" -BUTTON_UPDATE_PASSWORD = "Sett nytt passord" - -[NOTIFICATIONS] -INVALID_TOKEN = "Ugyldig token" -AUTH_ERROR = "Autentisering feilet" -ACCESS_ERROR = "Tilgang error" -CONNECTION_ERROR = "Kan ikke koble til tjeneren" -CAPTCHA_ERROR = "Feil CAPTCHA ." -SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE = "Denne sosiale ID er ikke tildelt for alle e-post -konto ennå. Logg inn med e- legitimasjon og legge aktivere denne funksjonen i kontoinnstillingene ." -SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE = "Denne sosiale ID er ikke tildelt for alle e-post -konto ennå. Logg inn med e- legitimasjon og legge aktivere denne funksjonen i kontoinnstillingene ." -SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE = "Denne sosiale ID er ikke tildelt for alle e-post -konto ennå. Logg inn med e- legitimasjon og legge aktivere denne funksjonen i kontoinnstillingene ." -DOMAIN_NOT_ALLOWED = "Domene er ikke tillatt" -ACCOUNT_NOT_ALLOWED = "Kontoen er ikke tillatt" -CANT_GET_MESSAGE_LIST = "Kan ikke få meldingsliste" -CANT_GET_MESSAGE = "Kan ikke få meldingen" -CANT_DELETE_MESSAGE = "Kan ikke slette meldingen" -CANT_MOVE_MESSAGE = "Kan ikke flytte meldingen" -CANT_SAVE_MESSAGE = "Kan ikke lagre melding" -CANT_SEND_MESSAGE = "Kan ikke sende melding" -INVALID_RECIPIENTS = "Ugyldige mottakere" -Cant_create_folder = "Kan ikke opprette mappe" -CANT_RENAME_FOLDER = "Kan ikke endre navn på mappen" -CANT_DELETE_FOLDER = "Kan ikke slette mappen" -CANT_DELETE_NON_EMPTY_FOLDER = "Kan ikke slette ikke- tom katalog" -CANT_SUBSCRIBE_FOLDER = "Kan ikke abonnere mappen" -CANT_UNSUBSCRIBE_FOLDER = "Kan ikke stoppe abonnementet mappen" -CANT_SAVE_SETTINGS = "Kan ikke lagre innstillinger" -CANT_SAVE_PLUGIN_SETTINGS = "Kan ikke lagre innstillinger" -DOMAIN_ALREADY_EXISTS = "Domain finnes allerede" -CANT_INSTALL_PACKAGE = "Klarte ikke å installere pakken" -CANT_DELETE_PACKAGE = "Kunne ikke fjerne pakken" -INVALID_PLUGIN_PACKAGE = "Ugyldig plugin -pakken" -UNSUPPORTED_PLUGIN_PACKAGE = "Ikke støttet plugin -pakken" -LICENSING_SERVER_IS_UNAVAILABLE = "Abonnement server er unvailable" -LICENSING_DOMAIN_EXPIRED = "Abonnement for dette domenet er utløpt." -LICENSING_DOMAIN_BANNED = "Abonnement for dette domenet er forbudt ." -DEMO_SEND_MESSAGE_ERROR = "For sikkerhets skyld , denne demo-konto er ikke lov til å sende meldinger til eksterne e - postadresser !" -ACCOUNT_ALREADY_EXISTS = "Kontoen finnes allerede" -MAIL_SERVER_ERROR = "Det har oppstått en feil under tilgang til e-postserver" -UNKNOWN_ERROR = "Ukjent feil" - -[STATIC] -BACK_LINK = "Oppdater" -DOMAIN_LIST_DESC = "Liste over domener webmail er lov å få tilgang." -PHP_EXSTENSIONS_ERROR_DESC = "Nødvendig PHP utvidelsen er ikke tilgjengelig i din PHP konfigurasjon!" -PHP_VERSION_ERROR_DESC = "Din PHP versjon ( % VERSION % ) er lavere enn minimal nødvendig 5.3.0 !" - -NO_SCRIPT_TITLE = "Javascript er nødvendig for dette programmet ." -NO_SCRIPT_DESC = "Javascript støtte er ikke tilgjengelig i nettleseren din . -Vennligst aktiver Javascript-støtte i nettleserens innstillinger , og prøv på nytt ." - -NO_COOKIE_TITLE = "Cookies støtte er nødvendig for dette programmet ." -NO_COOKIE_DESC = "Cookies støtte er ikke tilgjengelig i nettleseren din . -Vennligst aktiver Cookie støtte i nettleserens innstillinger , og prøv på nytt ." - -BAD_BROWSER_TITLE = "Nettleseren din er utdatert ." -BAD_BROWSER_DESC = "Hvis du vil bruke alle funksjonene i programmet , +[LOGIN] +LABEL_EMAIL = "Epost" +LABEL_LOGIN = "Logg inn" +LABEL_PASSWORD = "Passord" +LABEL_SIGN_ME = "Husk meg" +BUTTON_SIGN_IN = "Logg Inn" +TITLE_SIGN_IN_GOOGLE = "Logg inn Med Google" +TITLE_SIGN_IN_FACEBOOK = "Logg inn MED Facebook" +TITLE_SIGN_IN_TWITTER = "Logg inn MED Twitter" + +[TOP_TOOLBAR] +BUTTON_ADD_ACCOUNT = "Legg til konto" +BUTTON_SETTINGS = "Innstillinger" +BUTTON_LOGOUT = "Logg ut" + +[SEARCH] +MAIN_INPUT_PLACEHOLDER = "Søk" +TITLE_ADV = "Avansert SØK" +LABEL_ADV_FROM = "Fra" +LABEL_ADV_TO = "Til" +LABEL_ADV_SUBJECT = "Emne" +LABEL_ADV_TEXT = "Tekst" +LABEL_ADV_HAS_ATTACHMENTS = "Har vedlegg" +LABEL_ADV_FLAGGED = "Markert" +LABEL_ADV_UNSEEN = "Ulest" +LABEL_ADV_DATE = "Dato" +LABEL_ADV_DATE_ALL = "Alle" +LABEL_ADV_DATE_3_DAYS = "Opp til tre dager gamle" +LABEL_ADV_DATE_7_DAYS = "Opp til en uke gamle" +LABEL_ADV_DATE_MONTH = "Inntil 1 mnd gammel" +LABEL_ADV_DATE_3_MONTHS = "Opptil tre måneder gammel" +LABEL_ADV_DATE_6_MONTHS = "Opp til 6 måneder gamle" +LABEL_ADV_DATE_YEAR = "Opptil 1 år gammel" +BUTTON_ADV_SEARCH = "Søk" + +[MAGNIFIC_POPUP] +CLOSE = "Lukk ( Esc )" +LOADING = "Laster ..." +GALLERY_PREV = "Forrige ( venstre piltast )" +GALLERY_NEXT = "Neste ( høyre piltast )" +GALLERY_COUNTER = "%curr% av %total%" +IMAGE_ERROR = "Bildet kunne ikke lastes." +AJAX_ERROR = "Innholdet kunne ikke lastes." + +[FOLDER_LIST] +BUTTON_COMPOSE = "Skriv" +BUTTON_CONTACTS = "Kontakter" +INBOX_NAME = "Innboks" +SENT_NAME = "Sendt" +DRAFTS_NAME = "Kladd" +SPAM_NAME = "Spam" +TRASH_NAME = "Søppel" + +[QUOTA] +TITLE = "Kvote bruk" + +[MESSAGE_LIST] +BUTTON_RELOAD = "Hent nye meldinger" +BUTTON_MOVE_TO = "Flytt til" +BUTTON_DELETE = "Slett" +BUTTON_SPAM = "Spam" +BUTTON_EMPTY_FOLDER = "Fjern mappe" +BUTTON_MULTY_FORWARD = "Videresend meldinger" +BUTTON_DELETE_WITHOUT_MOVE = "Slett permanent" +BUTTON_MORE = "Mer" +MENU_SET_SEEN = "Marker som lest" +MENU_SET_ALL_SEEN = "Marker alle som lest" +MENU_UNSET_SEEN = "Marker som ulest" +MENU_SET_FLAG = "Flagg" +MENU_UNSET_FLAG = "opphever du flagging" +MENU_SELECT_ALL = "Alle" +MENU_SELECT_NONE = "Ingen" +MENU_SELECT_INVERT = "Inverter" +MENU_SELECT_UNSEEN = "uleste" +MENU_SELECT_SEEN = "Les" +MENU_SELECT_FLAGGED = "Markert" +MENU_SELECT_UNFLAGGED = "ikke merket" +EMPTY_LIST = "Tøm liste ." +EMPTY_SEARCH_LIST = "Ingen meldinger matchet søket ditt." +SEARCH_RESULT_FOR = "Søkeresultater for \"%SEARCH%\"" +LIST_LOADING = "Laster" +EMPTY_SUBJECT_TEXT = "( Ingen emne)" +PUT_MESSAGE_HERE = "Drop melding her for å vise det i listen" +TODAY_AT = "i dag på %TIME%" +YESTERDAY_IN = "i går i %TIME%" +SEARCH_PLACEHOLDER = "Søk" +NEW_MESSAGE_NOTIFICATION = "Du har %count% nye meldinger !" +QUOTA_SIZE = "Bruke %SIZE% ( %PROC%% ) av %LIMIT% " + +[MESSAGE] +BUTTON_EDIT = "Rediger" +BUTTON_BACK = "Tilbake" +BUTTON_CLOSE = "Lukk" +BUTTON_DELETE = "Slett" +BUTTON_SPAM = "Spam" +BUTTON_MOVE_TO = "Flytt til" +BUTTON_MORE = "Mer" +BUTTON_REPLY = "Svar" +BUTTON_REPLY_ALL = "Svar alle" +BUTTON_FORWARD = "Frem" +BUTTON_FORWARD_AS_ATTACHMENT = "Videresend som vedlegg" +BUTTON_SHOW_IMAGES = "Vis eksterne bilder" +BUTTON_IN_NEW_WINDOW = "Vis i eget vindu" +MENU_HEADERS = "Vis meldingshoder" +MENU_VIEW_ORIGINAL = "Vis original" +MENU_DOWNLOAD_ORIGINAL = "Last ned som .Eml fil" +MENU_FILTER_SIMILAR = "Filtrer meldinger som dette" +MENU_PRINT = "Skriv ut" +EMPTY_SUBJECT_TEXT = "( Ingen emne)" +LABEL_SUBJECT = "Emne" +LABEL_DATE = "Dato" +LABEL_FROM = "Fra" +LABEL_FROM_SHORT = "fra" +LABEL_TO = "Til" +LABEL_TO_SHORT = "til" +LABEL_CC = "Kopi" +LABEL_BCC = "Blindkopi" +PRINT_LABEL_FROM = "Fra" +PRINT_LABEL_TO = "Til" +PRINT_LABEL_CC = "Kopi" +PRINT_LABEL_BCC = "Blindkopi" +PRINT_LABEL_DATE = "Dato" +PRINT_LABEL_SUBJECT = "Emne" +PRINT_LABEL_ATTACHMENTS = "Vedlegg" +MESSAGE_LOADING = "Laster" +MESSAGE_VIEW_DESC = "Velg melding på listen for å vise det her ." + +[SUGGESTIONS] +SEARCHING_DESC = "Søker ..." + +[CONTACTS] +LEGEND_CONTACTS = "Kontakter" +SEARCH_INPUT_PLACEHOLDER = "Søk" +BUTTON_ADD_CONTACT = "Legg til kontakt" +BUTTON_CREATE_CONTACT = "Opprett" +BUTTON_UPDATE_CONTACT = "Oppdater" +LIST_LOADING = "Laster" +EMPTY_LIST = "Ingen kontakter her" +EMPTY_SEARCH = "Ingen kontakter funnet" +CLEAR_SEARCH = "Tøm søk" +CONTACT_VIEW_DESC = "Velg kontakt i listen for å vise det her ." +LABEL_DISPLAY_NAME = "Navn" +LABEL_EMAIL = "E-post" +LABEL_PHONE = "Telefon" +LINK_ADD_EMAIL = "Legg til en e-postadresse" +LINK_ADD_PHONE = "Legg til en telefon" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" + +[COMPOSE] +TITLE_FROM = "Fra" +TITLE_TO = "Til" +TITLE_CC = "CC" +TITLE_BCC = "BCC" +TITLE_REPLY_TO = "Svar til" +TITLE_SUBJECT = "Emne" +LINK_SHOW_INPUTS = "viser alle felt" +BUTTON_SEND = "Send" +BUTTON_SAVE = "Lagre" +BUTTON_DELETE = "Slett" +BUTTON_CANCEL = "Avbryt" +SAVED_TIME = "Lagret %TIME%" +SAVED_ERROR_ON_SEND = "Meldingen ble sendt, men ble ikke lagret i mappen for sendte elementer" +ATTACH_FILES = "Legg ved filer" +ATTACH_DROP_FILES_DESC = "Slipp filer her" +ATTACH_ITEM_CANCEL = "Avbryt" +DROPBOX = "Dropbox" +GOOGLE_DRIVE = "Google Drive" +REPLY_MESSAGE_TITLE = "%DATETIME% , skrev %EMAIL%" +FORWARD_MESSAGE_TOP_TITLE = "-------- Videresendt melding -------" +FORWARD_MESSAGE_TOP_FROM = "Fra" +FORWARD_MESSAGE_TOP_TO = "Til" +FORWARD_MESSAGE_TOP_CC = "CC" +FORWARD_MESSAGE_TOP_SENT = "Sendt" +FORWARD_MESSAGE_TOP_SUBJECT = "Emne" +EMPTY_TO_ERROR_DESC = "Vennligst oppgi minst én mottaker" + +[POPUPS_ASK] +BUTTON_YES = "Ja" +BUTTON_NO = "Nei" +DESC_WANT_CLOSE_THIS_WINDOW = "Er du sikker på at du vil lukke dette vinduet ?" +DESC_WANT_DELETE_MESSAGES = "Er du sikker på at du vil slette meldingen(e)?" + +[POPUPS_LANGUAGES] +TITLE_LANGUAGES = "Velg språk" + +[POPUPS_ADD_ACCOUNT] +TITLE_ADD_ACCOUNT = "Legg til konto?" +BUTTON_ADD_ACCOUNT = "Legg til" + +[POPUPS_IDENTITIES] +TITLE_ADD_IDENTITY = "Legg identitet?" +TITLE_UPDATE_IDENTITY = "Oppdater identitet?" +BUTTON_ADD_IDENTITY = "Legg til" +BUTTON_UPDATE_IDENTITY = "Oppdater" +LABEL_EMAIL = "E-post" +LABEL_NAME = "Navn" +LABEL_REPLY_TO = "Svar til" +LABEL_BCC = "Blindkopi" + +[POPUPS_CREATE_FOLDER] +TITLE_CREATE_FOLDER = "Opprett en mappe ?" +SELECT_NO_PARENT = "" +LABEL_NAME = "Mappenavn" +LABEL_PARENT = "Parent mappen" +BUTTON_CREATE = "Create" +BUTTON_CANCEL = "Avbryt" +BUTTON_CLOSE = "Lukk" +TITLE_CREATING_PROCESS = "Opprette en mappe" + +[POPUPS_CLEAR_FOLDER] +TITLE_CLEAR_FOLDER = "Purge alle meldinger fra mappen ?" +BUTTON_CLEAR = "Fjern" +BUTTON_CANCEL = "Avbryt" +BUTTON_CLOSE = "Lukk" +DANGER_DESC_WARNING = "Advarsel!" +DANGER_DESC_HTML_1 = "Denne handlingen vil resultere i å fjerne alle poster fra % FOLDER % < / strong > -mappen helt." +DANGER_DESC_HTML_2 = "Når den er startet , prosessen kan ikke bli avbrutt eller kansellert ." +TITLE_CLEARING_PROCESS = "Tømme mappen ..." + +[POPUPS_SYSTEM_FOLDERS] +TITLE_SYSTEM_FOLDERS = "Velg systemmapper" +SELECT_CHOOSE_ONE = "Velg en" +SELECT_UNUSE_NAME = "Ikke bruk" +LABEL_SENT = "Sendt" +LABEL_DRAFTS = "Kladd" +LABEL_SPAM = "Spam" +LABEL_TRASH = "Trash" +BUTTON_CANCEL = "Avbryt" +BUTTON_CLOSE = "Lukk" + +NOTIFICATION_SENT = "Du har ikke valgt \"Sendt\" system mappe beskjeder kommer til etter sending . +Hvis du ikke ønsker å lagre sendte meldingen , kan du velge \"Ikke bruk\" alternativet ." + +NOTIFICATION_DRAFTS = "Du har ikke valgt \"Kladd\" system mappe meldinger som skal lagres når du skriver ." + +NOTIFICATION_SPAM = "Du har ikke valgt \"Spam\" system mappen spamed meldinger er plassert til . +Hvis du ønsker å fjerne meldinger permanent , velger du \"Ikke bruk\" alternativet ." + +NOTIFICATION_TRASH = "Du har ikke valgt \"Trash\" system mappen slettede meldinger skal plasseres til . +Hvis du ønsker å fjerne meldinger permanent , velger du \"Ikke bruk\" alternativet ." + +[TITLES] +LOADING = "Laster" +LOGIN = "Logg inn" +MAILBOX = "Epost" +SETTINGS = "Innstillinger" +COMPOSE = "Skriv" + +[UPLOAD] +ERROR_FILE_IS_TOO_BIG = "Filen er for stor" +ERROR_FILE_PARTIALLY_UPLOADED = "Fil ble delvis lastet opp på grunn av ukjent feil" +ERROR_NO_FILE_UPLOADED = "Ingen fil lastet opp" +ERROR_MISSING_TEMP_FOLDER = "Den midlertidige fil mangler" +ERROR_ON_SAVING_FILE = "En ukjent filopplasting feil oppstod" +ERROR_FILE_TYPE = "Ugyldig filtype" +ERROR_UNKNOWN = "En ukjent filopplasting feil oppstod" + +[EDITOR] +TEXT_SWITCHER_PLAINT_TEXT = "Ren tekst" +TEXT_SWITCHER_RICH_FORMATTING = "Rik tekst" +TEXT_SWITCHER_CONFIRM = "Tekst formatering og bilder vil bli tapt . Er du sikker på at du vil fortsette?" + +[SETTINGS_LABELS] +LABEL_PERSONAL_NAME = "Personlig" +LABEL_GENERAL_NAME = "Generelt" +LABEL_FOLDERS_NAME = "Mapper" +LABEL_ACCOUNTS_NAME = "Kontoer" +LABEL_IDENTITY_NAME = "Identitet" +LABEL_IDENTITIES_NAME = "identiteter" +LABEL_SOCIAL_NAME = "Sosialt" +LABEL_THEMES_NAME = "Tema" +LABEL_CHANGE_PASSWORD_NAME = "Passord" +BUTTON_BACK = "Tilbake" + +[SETTINGS_IDENTITY] +LEGEND_IDENTITY = "Identitet" +LABEL_DISPLAY_NAME = "Navn" +LABEL_REPLY_TO = "Svar til" +LABEL_SIGNATURE = "Signatur" + +[SETTINGS_GENERAL] +LEGEND_GENERAL = "Generelt" +LABEL_LANGUAGE = "Språk" +LABEL_EDITOR = "Standard teksteditor" +LABEL_EDITOR_HTML_AS_DEFAULT = "Html" +LABEL_EDITOR_PLAIN_AS_DEFAULT = "Plain" +LABEL_ANIMATION = "Interface animasjon" +LABEL_ANIMATION_FULL = "Full" +LABEL_ANIMATION_NORMAL = "Normal" +LABEL_ANIMATION_NONE = "Ingen" +LABEL_VIEW_OPTIONS = "Vis alternativer" +LABEL_USE_PREVIEW_PANE = "Bruk forhåndsvisningsruten" +LABEL_USE_CHECKBOXES_IN_LIST = "Vis avkrysningsbokser i listen" +LABEL_USE_THREADS = "Bruk tråder" +LABEL_REPLY_SAME_FOLDER = "Place svar i mappen av meldingen blir besvart" +LABEL_SHOW_IMAGES = "Vis alltid eksterne bilder i meldingsteksten" +LABEL_SHOW_ANIMATION = "Vis animasjon" +LABEL_MESSAGE_PER_PAGE = "meldinger på side" +LABEL_CHROME_NOTIFICATION = "Varsler" +LABEL_CHROME_NOTIFICATION_DESC = "Vis nye meldinger varslings popups" +LABEL_CHROME_NOTIFICATION_DESC_DENIED = "( Blokkert av nettleseren )" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" + +[SETTINGS_THEMES] +LEGEND_THEMES = "Tema" +LEGEND_THEMES_CUSTOM = "Egendefinert tema" +LABEL_CUSTOM_TYPE = "Type" +LABEL_CUSTOM_TYPE_LIGHT = "Lys" +LABEL_CUSTOM_TYPE_DARK = "Mørk" +LABEL_CUSTOM_BACKGROUND_IMAGE = "Bakgrunn" +BUTTON_UPLOAD_BACKGROUND_IMAGE = "Last opp bakgrunnsbilde ( JPG , PNG )" +ERROR_FILE_IS_TOO_BIG = "Filen er for stor ( 1MB + )" +ERROR_FILE_TYPE_ERROR = "Ugyldig filtype ( JPG og PNG only)" +ERROR_UNKNOWN = "En ukjent filopplasting feil oppstod" + +[SETTINGS_SOCIAL] +LEGEND_GOOGLE = "Google" +BUTTON_GOOGLE_CONNECT = "Koble Google" +BUTTON_GOOGLE_DISCONNECT = "Koble fra Google" +MAIN_GOOGLE_DESC = "Når du har aktivert innlogging via Google, kan du logge deg inn på denne kontoen ved hjelp av Google-knappen på innloggingsskjermen." +LEGEND_FACEBOOK = "Facebook" +BUTTON_FACEBOOK_CONNECT = "Koble til Facebook" +BUTTON_FACEBOOK_DISCONNECT = "Koble fra Facebook" +MAIN_FACEBOOK_DESC = "Når du har aktivert innlogging via Facebook , kan du logge deg inn på denne kontoen ved hjelp av Facebook -knappen på innloggingsskjermen." +LEGEND_TWITTER = "Twitter" +BUTTON_TWITTER_CONNECT = "Koble til Twitter" +BUTTON_TWITTER_DISCONNECT = "Koble fra Twitter" +MAIN_TWITTER_DESC = "Når du har aktivert innlogging via Twitter , kan du logge deg inn på denne kontoen ved hjelp av Twitter -knappen på innloggingsskjermen." + +[SETTINGS_FOLDERS] +LEGEND_FOLDERS = "Mappeliste" +BUTTON_CREATE = "Opprett mappe" +BUTTON_SYSTEM = "Velg System mapper" +BUTTON_DELETE = "Slett" +BUTTON_SUBSCRIBE = "Abonner" +BUTTON_UNSUBSCRIBE = "Stopp abonnement" +LOADING_PROCESS = "Oppdaterer mappeliste" +CREATING_PROCESS = "Opprette en mappe" +DELETING_PROCESS = "Slette en mappe" +RENAMING_PROCESS = "Endre navn på en mappe" +DELETING_ASK = "Er du sikker?" + +[SETTINGS_ACCOUNTS] +LEGEND_ACCOUNTS = "Account List" +BUTTON_ADD_ACCOUNT = "Legg til konto" +BUTTON_DELETE = "Slett" +LOADING_PROCESS = "Oppdaterer kontolisten" +DELETING_ASK = "Er du sikker?" + +[SETTINGS_IDENTITIES] +LEGEND_IDENTITY = "Identitet" +LEGEND_IDENTITIES = "Tilleggs Identities" +LABEL_DISPLAY_NAME = "Navn" +LABEL_REPLY_TO = "Svar til" +LABEL_SIGNATURE = "Signatur" +BUTTON_ADD_IDENTITY = "Legg Identity" +BUTTON_DELETE = "Slett" +LOADING_PROCESS = "Oppdaterer identitet liste" +DELETING_ASK = "Er du sikker?" + +[SETTINGS_CHANGE_PASSWORD] +LEGEND_CHANGE_PASSWORD = "Endre passord" +LABEL_CURRENT_PASSWORD = "Gjeldende passord" +LABEL_NEW_PASSWORD = "Nytt passord" +LABEL_REPEAT_PASSWORD = "Nytt passord på nytt" +BUTTON_UPDATE_PASSWORD = "Sett nytt passord" + +[NOTIFICATIONS] +INVALID_TOKEN = "Ugyldig token" +AUTH_ERROR = "Autentisering feilet" +ACCESS_ERROR = "Tilgang error" +CONNECTION_ERROR = "Kan ikke koble til tjeneren" +CAPTCHA_ERROR = "Feil CAPTCHA ." +SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE = "Denne sosiale ID er ikke tildelt for alle e-post -konto ennå. Logg inn med e- legitimasjon og legge aktivere denne funksjonen i kontoinnstillingene ." +SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE = "Denne sosiale ID er ikke tildelt for alle e-post -konto ennå. Logg inn med e- legitimasjon og legge aktivere denne funksjonen i kontoinnstillingene ." +SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE = "Denne sosiale ID er ikke tildelt for alle e-post -konto ennå. Logg inn med e- legitimasjon og legge aktivere denne funksjonen i kontoinnstillingene ." +DOMAIN_NOT_ALLOWED = "Domene er ikke tillatt" +ACCOUNT_NOT_ALLOWED = "Kontoen er ikke tillatt" +CANT_GET_MESSAGE_LIST = "Kan ikke få meldingsliste" +CANT_GET_MESSAGE = "Kan ikke få meldingen" +CANT_DELETE_MESSAGE = "Kan ikke slette meldingen" +CANT_MOVE_MESSAGE = "Kan ikke flytte meldingen" +CANT_SAVE_MESSAGE = "Kan ikke lagre melding" +CANT_SEND_MESSAGE = "Kan ikke sende melding" +INVALID_RECIPIENTS = "Ugyldige mottakere" +Cant_create_folder = "Kan ikke opprette mappe" +CANT_RENAME_FOLDER = "Kan ikke endre navn på mappen" +CANT_DELETE_FOLDER = "Kan ikke slette mappen" +CANT_DELETE_NON_EMPTY_FOLDER = "Kan ikke slette ikke- tom katalog" +CANT_SUBSCRIBE_FOLDER = "Kan ikke abonnere mappen" +CANT_UNSUBSCRIBE_FOLDER = "Kan ikke stoppe abonnementet mappen" +CANT_SAVE_SETTINGS = "Kan ikke lagre innstillinger" +CANT_SAVE_PLUGIN_SETTINGS = "Kan ikke lagre innstillinger" +DOMAIN_ALREADY_EXISTS = "Domain finnes allerede" +CANT_INSTALL_PACKAGE = "Klarte ikke å installere pakken" +CANT_DELETE_PACKAGE = "Kunne ikke fjerne pakken" +INVALID_PLUGIN_PACKAGE = "Ugyldig plugin -pakken" +UNSUPPORTED_PLUGIN_PACKAGE = "Ikke støttet plugin -pakken" +LICENSING_SERVER_IS_UNAVAILABLE = "Abonnement server er unvailable" +LICENSING_DOMAIN_EXPIRED = "Abonnement for dette domenet er utløpt." +LICENSING_DOMAIN_BANNED = "Abonnement for dette domenet er forbudt ." +DEMO_SEND_MESSAGE_ERROR = "For sikkerhets skyld , denne demo-konto er ikke lov til å sende meldinger til eksterne e - postadresser !" +ACCOUNT_ALREADY_EXISTS = "Kontoen finnes allerede" +MAIL_SERVER_ERROR = "Det har oppstått en feil under tilgang til e-postserver" +UNKNOWN_ERROR = "Ukjent feil" + +[STATIC] +BACK_LINK = "Oppdater" +DOMAIN_LIST_DESC = "Liste over domener webmail er lov å få tilgang." +PHP_EXSTENSIONS_ERROR_DESC = "Nødvendig PHP utvidelsen er ikke tilgjengelig i din PHP konfigurasjon!" +PHP_VERSION_ERROR_DESC = "Din PHP versjon ( % VERSION % ) er lavere enn minimal nødvendig 5.3.0 !" + +NO_SCRIPT_TITLE = "Javascript er nødvendig for dette programmet ." +NO_SCRIPT_DESC = "Javascript støtte er ikke tilgjengelig i nettleseren din . +Vennligst aktiver Javascript-støtte i nettleserens innstillinger , og prøv på nytt ." + +NO_COOKIE_TITLE = "Cookies støtte er nødvendig for dette programmet ." +NO_COOKIE_DESC = "Cookies støtte er ikke tilgjengelig i nettleseren din . +Vennligst aktiver Cookie støtte i nettleserens innstillinger , og prøv på nytt ." + +BAD_BROWSER_TITLE = "Nettleseren din er utdatert ." +BAD_BROWSER_DESC = "Hvis du vil bruke alle funksjonene i programmet , laste ned og installerer en av disse nettleserne :" \ No newline at end of file diff --git a/rainloop/v/0.0.0/langs/pl.ini b/rainloop/v/0.0.0/langs/pl.ini index 42b26c222..63e94f8b5 100644 --- a/rainloop/v/0.0.0/langs/pl.ini +++ b/rainloop/v/0.0.0/langs/pl.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "Od" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "wiadomości na stronie" LABEL_CHROME_NOTIFICATION = "Powiadomienia" LABEL_CHROME_NOTIFICATION_DESC = "Wyświetlaj powiadomienia o nowych wiadomościach" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Zablokowane przez przeglądarkę)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Wygląd" diff --git a/rainloop/v/0.0.0/langs/pt-br.ini b/rainloop/v/0.0.0/langs/pt-br.ini index 3d0ede32a..f6607b306 100644 --- a/rainloop/v/0.0.0/langs/pt-br.ini +++ b/rainloop/v/0.0.0/langs/pt-br.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "De" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "Página de mensagens" LABEL_CHROME_NOTIFICATION = "Notificações" LABEL_CHROME_NOTIFICATION_DESC = "Mostrar as novas mensagens de notificação" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Bloqueado pelo navegador)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Temas" diff --git a/rainloop/v/0.0.0/langs/pt-pt.ini b/rainloop/v/0.0.0/langs/pt-pt.ini index c24076517..d3cf81d11 100644 --- a/rainloop/v/0.0.0/langs/pt-pt.ini +++ b/rainloop/v/0.0.0/langs/pt-pt.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "De" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "Página de mensagens" LABEL_CHROME_NOTIFICATION = "Notificações" LABEL_CHROME_NOTIFICATION_DESC = "Mostrar as novas mensagens de notificação" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Bloqueado pelo navegador)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "Temas" diff --git a/rainloop/v/0.0.0/langs/ru.ini b/rainloop/v/0.0.0/langs/ru.ini index 647396b46..352c94999 100644 --- a/rainloop/v/0.0.0/langs/ru.ini +++ b/rainloop/v/0.0.0/langs/ru.ini @@ -139,11 +139,16 @@ EMPTY_LIST = "Нет контактов" EMPTY_SEARCH = "Контакты не найдены" CLEAR_SEARCH = "Очистить поиск" CONTACT_VIEW_DESC = "Выберите контакт для просмотра." -LABEL_DISPLAY_NAME = "Полное Имя" +LABEL_DISPLAY_NAME = "Полное имя" LABEL_EMAIL = "Электронная почта" LABEL_PHONE = "Телефон" LINK_ADD_EMAIL = "Добавьте адрес электронной почты" LINK_ADD_PHONE = "Добавьте телефон" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Введите полное имя" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Поделиться" +BUTTON_SHARE_NONE = "Отменить" +BUTTON_SHARE_ALL = "Всем" [COMPOSE] TITLE_FROM = "От" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "сообщений на одной странице" LABEL_CHROME_NOTIFICATION = "Уведомления" LABEL_CHROME_NOTIFICATION_DESC = "Показывать уведомления о новых сообщениях в всплывающих подсказках" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(Блокировано браузером)" +LABEL_CONTACTS_AUTOSAVE = "Автоматически добавлять получателей писем в адресную книгу" [SETTINGS_THEMES] LEGEND_THEMES = "Темы Оформления" diff --git a/rainloop/v/0.0.0/langs/zh-cn.ini b/rainloop/v/0.0.0/langs/zh-cn.ini index 379d92332..a72a5e80a 100644 --- a/rainloop/v/0.0.0/langs/zh-cn.ini +++ b/rainloop/v/0.0.0/langs/zh-cn.ini @@ -144,6 +144,11 @@ LABEL_EMAIL = "Email" LABEL_PHONE = "Phone" LINK_ADD_EMAIL = "Add an email address" LINK_ADD_PHONE = "Add a phone" +PLACEHOLDER_ENTER_DISPLAY_NAME = "Enter display name" +LABEL_READ_ONLY = "Read only" +LABEL_SHARE = "Share" +BUTTON_SHARE_NONE = "None" +BUTTON_SHARE_ALL = "All" [COMPOSE] TITLE_FROM = "发送自" @@ -298,6 +303,7 @@ LABEL_MESSAGE_PER_PAGE = "封邮件每页" LABEL_CHROME_NOTIFICATION = "通知" LABEL_CHROME_NOTIFICATION_DESC = "显示新邮件弹窗" LABEL_CHROME_NOTIFICATION_DESC_DENIED = "(被浏览器阻止)" +LABEL_CONTACTS_AUTOSAVE = "Automatically add recipients to your address book" [SETTINGS_THEMES] LEGEND_THEMES = "主题" diff --git a/rainloop/v/0.0.0/static/css/app.css b/rainloop/v/0.0.0/static/css/app.css index 3be460e15..3a6827ac4 100644 --- a/rainloop/v/0.0.0/static/css/app.css +++ b/rainloop/v/0.0.0/static/css/app.css @@ -1143,7 +1143,7 @@ table { border-spacing: 0; } -/*@charset "UTF-8";*/ +@charset "UTF-8"; @font-face { font-family: "rainloop"; @@ -1393,12 +1393,6 @@ table { .icon-bug:before { content: "\e045"; } -.icon-heart:before { - content: "\e046"; -} -.icon-heart-empty:before { - content: "\e047"; -} .icon-popup:before { content: "\e048"; } @@ -1420,57 +1414,66 @@ table { .icon-google-drive:before { content: "\e04e"; } -.icon-spinner:before { +.icon-github:before { content: "\e04f"; } -.icon-github:before { +.icon-telephone:before { content: "\e050"; } -.icon-telephone:before { +.icon-mobile:before { content: "\e051"; } -.icon-mobile:before { +.icon-pencil:before { content: "\e052"; } -.icon-mail:before { +.icon-trash:before { content: "\e053"; } -.icon-pencil:before { +.icon-left-middle:before { content: "\e054"; } -.icon-trash:before { +.icon-right-middle:before { content: "\e055"; } -.icon-left-middle:before { +.icon-repeat:before { content: "\e056"; } -.icon-right-middle:before { +.icon-key:before { content: "\e057"; } -.icon-repeat:before { +.icon-lock:before { content: "\e058"; } -.icon-key:before { +.icon-home:before { content: "\e059"; } -.icon-lock:before { +.icon-address-book:before { content: "\e05a"; } -.icon-home:before { +.icon-share:before { content: "\e05b"; } -.icon-address-book:before { +.icon-suitcase:before { content: "\e05c"; } -.icon-share:before { +.icon-new-sign:before { content: "\e05d"; } -.icon-suitcase:before { +.icon-spinner:before { content: "\e05e"; } -.icon-mailbox:before { +.icon-users:before { content: "\e05f"; } +.icon-earth:before { + content: "\e060"; +} +.icon-happy-smiley:before { + content: "\e061"; +} +.icon-mail:before { + content: "\e062"; +} /** initial setup **/ .nano { @@ -5710,6 +5713,9 @@ html.no-rgba .modal { text-decoration: none; cursor: pointer; } +.g-ui-menu .e-item.selected > .e-link { + background-color: #eee; +} .g-ui-menu .e-item > .e-link:hover { background-color: #555; background-image: none; @@ -7094,10 +7100,10 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull { display: none; } .b-contacts-content .control-group .control-label.fix-width { - width: 110px; + width: 90px; } .b-contacts-content .control-group .controls.fix-width { - margin-left: 135px; + margin-left: 110px; } .b-contacts-content.modal { position: absolute; @@ -7368,6 +7374,11 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull { color: #ee5f5b; border-color: #ee5f5b; } +.b-contacts-content.modal .b-view-content .e-save-trigger { + position: absolute; + top: 25px; + left: 10px; +} .b-contacts-content.modal .b-view-content .e-read-only-sign { display: none; position: absolute; @@ -7376,13 +7387,13 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull { } .b-contacts-content.modal .b-view-content .e-share-sign { position: absolute; - top: 60px; + top: 20px; right: 20px; cursor: pointer; } .b-contacts-content.modal .b-view-content .button-save-contact { position: absolute; - top: 20px; + top: 100px; right: 20px; } .b-contacts-content.modal .b-view-content.read-only .e-read-only-sign { diff --git a/rainloop/v/0.0.0/static/css/app.min.css b/rainloop/v/0.0.0/static/css/app.min.css index c11525d9a..8a3bd7bfd 100644 --- a/rainloop/v/0.0.0/static/css/app.min.css +++ b/rainloop/v/0.0.0/static/css/app.min.css @@ -1,4 +1,4 @@ -/*! jQuery UI - v1.10.3 - 2013-11-25 +@charset "UTF-8";/*! jQuery UI - v1.10.3 - 2013-11-25 * http://jqueryui.com * Includes: jquery.ui.core.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.autocomplete.css, jquery.ui.menu.css, jquery.ui.theme.css -* 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-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-autocomplete{position:absolute;top:0;left:0;cursor:default}.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-widget{font-family: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:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc;color:#222;font-weight:700}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#eee;font-weight:400;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;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 #ccc;background:#eee;font-weight:400;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee;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:#fef1ec;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.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-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:2px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:2px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:2px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:2px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:hover,a:active{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.75em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}p,pre{margin:1em 0}pre,code,kbd,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@font-face{font-family:rainloop;src:url(fonts/rainloop.eot);src:url(fonts/rainloop.eot?#iefix) format("embedded-opentype"),url(fonts/rainloop.woff) format("woff"),url(fonts/rainloop.ttf) format("truetype"),url(fonts/rainloop.svg#rainloop) format("svg");font-weight:400;font-style:normal}[data-icon]:before{font-family:rainloop!important;content:attr(data-icon);font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-]:before,[class*=" icon-"]:before{font-family:rainloop!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrows-in:before{content:"\e000"}.icon-arrows-out:before{content:"\e001"}.icon-list:before{content:"\e002"}.icon-search:before{content:"\e003"}.icon-user:before{content:"\e004"}.icon-user-add:before{content:"\e005"}.icon-tags:before{content:"\e006"}.icon-paper-plane:before{content:"\e007"}.icon-reply:before{content:"\e008"}.icon-reply-all:before{content:"\e009"}.icon-forward:before{content:"\e00a"}.icon-info:before{content:"\e00b"}.icon-right-dir:before{content:"\e00c"}.icon-down-dir:before{content:"\e00d"}.icon-image:before{content:"\e00e"}.icon-print:before{content:"\e00f"}.icon-calendar:before{content:"\e010"}.icon-cog:before{content:"\e011"}.icon-wrench:before{content:"\e012"}.icon-rocket:before{content:"\e013"}.icon-fire:before{content:"\e014"}.icon-purchase:before{content:"\e015"}.icon-apple:before{content:"\e016"}.icon-dropbox:before{content:"\e017"}.icon-skype:before{content:"\e018"}.icon-creative-commons:before{content:"\e019"}.icon-ellipsis:before{content:"\e01a"}.icon-left:before{content:"\e01b"}.icon-right:before{content:"\e01c"}.icon-down:before{content:"\e01d"}.icon-right-mini:before{content:"\e01e"}.icon-down-mini:before{content:"\e01f"}.icon-up:before{content:"\e020"}.icon-star-empty:before{content:"\e021"}.icon-star:before{content:"\e022"}.icon-at:before{content:"\e023"}.icon-list-add:before{content:"\e024"}.icon-google:before{content:"\e025"}.icon-google-plus:before{content:"\e026"}.icon-twitter:before{content:"\e027"}.icon-youtube:before{content:"\e028"}.icon-warning:before{content:"\e029"}.icon-warning-alt:before{content:"\e02a"}.icon-power:before{content:"\e02b"}.icon-plus:before{content:"\e02c"}.icon-ok:before{content:"\e02d"}.icon-remove:before{content:"\e02e"}.icon-file:before{content:"\e02f"}.icon-file-code:before{content:"\e030"}.icon-file-chart-graph:before{content:"\e031"}.icon-file-zip:before{content:"\e032"}.icon-file-music:before{content:"\e033"}.icon-file-text:before{content:"\e034"}.icon-file-bookmark:before{content:"\e035"}.icon-file-image:before{content:"\e036"}.icon-file-analytics:before{content:"\e037"}.icon-file-certificate:before{content:"\e038"}.icon-attachment:before{content:"\e039"}.icon-file-excel:before{content:"\e03a"}.icon-file-movie:before{content:"\e03b"}.icon-folder-add:before{content:"\e03c"}.icon-folder:before{content:"\e03d"}.icon-floppy:before{content:"\e03e"}.icon-eye:before{content:"\e03f"}.icon-facebook-alt:before{content:"\e040"}.icon-facebook:before{content:"\e041"}.icon-bolt:before{content:"\e042"}.icon-download:before{content:"\e043"}.icon-upload:before{content:"\e044"}.icon-bug:before{content:"\e045"}.icon-heart:before{content:"\e046"}.icon-heart-empty:before{content:"\e047"}.icon-popup:before{content:"\e048"}.icon-checkbox-checked:before{content:"\e049"}.icon-checkbox-unchecked:before{content:"\e04a"}.icon-checkbox-partial:before{content:"\e04b"}.icon-radio-checked:before{content:"\e04c"}.icon-radio-unchecked:before{content:"\e04d"}.icon-google-drive:before{content:"\e04e"}.icon-spinner:before{content:"\e04f"}.icon-github:before{content:"\e050"}.icon-telephone:before{content:"\e051"}.icon-mobile:before{content:"\e052"}.icon-mail:before{content:"\e053"}.icon-pencil:before{content:"\e054"}.icon-trash:before{content:"\e055"}.icon-left-middle:before{content:"\e056"}.icon-right-middle:before{content:"\e057"}.icon-repeat:before{content:"\e058"}.icon-key:before{content:"\e059"}.icon-lock:before{content:"\e05a"}.icon-home:before{content:"\e05b"}.icon-address-book:before{content:"\e05c"}.icon-share:before{content:"\e05d"}.icon-suitcase:before{content:"\e05e"}.icon-mailbox:before{content:"\e05f"}.nano{overflow :hidden!important}.nano .content{position :absolute;overflow :scroll;top :0;right :0;bottom :0;left :0;-webkit-overflow-scrolling:touch}.nano .content .content-wrapper{height:100%}.nano .content::-webkit-scrollbar{visibility:hidden}.has-scrollbar .content::-webkit-scrollbar{visibility:hidden}.nano-visibility-hidden::-webkit-scrollbar{visibility:hidden}.nano>.pane{background :none;position :absolute;width :5px;right :0;top :1px;bottom :1px;opacity :.01;filter:alpha(opacity=1);-webkit-transition :.4s;-moz-transition :.4s;-o-transition :.4s;transition :.4s;-moz-border-radius :5px;-webkit-border-radius :5px;border-radius :5px;z-index:10000;margin :2px}.nano>.pane2{background :none;position :absolute;height :5px;right :1px;left :1px;bottom :0;opacity :.01;filter:alpha(opacity=1);-webkit-transition :.4s;-moz-transition :.4s;-o-transition :.4s;transition :.4s;-moz-border-radius :5px;-webkit-border-radius :5px;border-radius :5px;z-index:10000;margin :2px}.nano>.pane>.slider{background-color:#999;background-color:rgba(0,0,0,.3);position :relative;margin :0;-moz-border-radius :3px;-webkit-border-radius :3px;border-radius :3px;width :5px}.nano>.pane2>.slider2{background-color:#999;background-color:rgba(0,0,0,.3);position :relative;margin :0;-moz-border-radius :3px;-webkit-border-radius :3px;border-radius :3px;height :5px}.nano:hover>.pane,.nano:hover>.pane2,.pane.active,.pane2.active,.pane.flashed,.pane2.flashed{visibility :visible\9;opacity :.99;filter:alpha(opacity=99)}.nano>.pane:hover,.nano>.pane.active{background-color:rgba(0,0,0,.15)}.nano>.pane2:hover,.nano>.pane2.active{background-color:rgba(0,0,0,.15)}.nano>.pane:hover>.slider,.nano>.pane.active>.slider{background-color:rgba(0,0,0,.4)}.nano>.pane2:hover>.slider2,.nano>.pane2.active>.slider2{background-color:rgba(0,0,0,.4)}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure{}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.mfp-fade.mfp-bg{opacity:0;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;transition:all .2s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out;-webkit-transform:translateX(-50px);-moz-transform:translateX(-50px);transform:translateX(-50px)}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0)}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0;-webkit-transform:translateX(50px);-moz-transform:translateX(50px);transform:translateX(50px)}.simple-pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.simple-pace-inactive{display:none}.simple-pace .simple-pace-progress{background-color:#939595;position:fixed;z-index:2000;top:0;left:0;height:3px;overflow:hidden;-webkit-transition:width .5s;-moz-transition:width .5s;-o-transition:width .5s;transition:width .5s}.simple-pace .simple-pace-progress-inner{position:absolute;top:0;left:0;right:-32px;bottom:0;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.3)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.3)),color-stop(0.75,rgba(255,255,255,.3)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);-webkit-background-size:32px 32px;-moz-background-size:32px 32px;-o-background-size:32px 32px;background-size:32px 32px;-webkit-animation:simple-pace-stripe-animation 500ms linear infinite;-moz-animation:simple-pace-stripe-animation 500ms linear infinite;-ms-animation:simple-pace-stripe-animation 500ms linear infinite;-o-animation:simple-pace-stripe-animation 500ms linear infinite;animation:simple-pace-stripe-animation 500ms linear infinite}@-webkit-keyframes simple-pace-stripe-animation{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translate(-32px,0);transform:translate(-32px,0)}}@-moz-keyframes simple-pace-stripe-animation{0%{-moz-transform:none;transform:none}100%{-moz-transform:translate(-32px,0);transform:translate(-32px,0)}}@-o-keyframes simple-pace-stripe-animation{0%{-o-transform:none;transform:none}100%{-o-transform:translate(-32px,0);transform:translate(-32px,0)}}@-ms-keyframes simple-pace-stripe-animation{0%{-ms-transform:none;transform:none}100%{-ms-transform:translate(-32px,0);transform:translate(-32px,0)}}@keyframes simple-pace-stripe-animation{0%{transform:none;transform:none}100%{transform:translate(-32px,0);transform:translate(-32px,0)}}.inputosaurus-container{background-color:#fff;border:1px solid #bcbec0;margin:0 5px 0 0;padding:0 3px;display :inline-block;cursor:text;font-size :14px;font-family :"Helvetica Neue",Helvetica,Arial,sans-serif}.inputosaurus-container li{display :block;float :left;overflow:hidden;margin :2px 2px 0;padding :2px 3px;white-space :nowrap;overflow :hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;background-color:#e5eff7;border:#a9cae4 solid 1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#5b9bcd;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.75) inset;-moz-box-shadow:0 1px 0 rgba(255,255,255,.75) inset;box-shadow:0 1px 0 rgba(255,255,255,.75) inset;line-height :20px;cursor:default}.inputosaurus-container li.inputosaurus-selected{background-color:#bdd6eb}.inputosaurus-container li a{font-size:16px;color:#5b9bcd;padding :1px;text-decoration :none;outline :none}.inputosaurus-container .inputosaurus-input{border:0;box-shadow:none;background-color:#fff;margin-top :3px}.inputosaurus-container .inputosaurus-input input{border:0;height :23px;font-size :14px;line-height :20px;color :#555;margin :0;outline :none;padding :0 0 1px 1px;width :25px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.inputosaurus-container .inputosaurus-input input:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.inputosaurus-input-hidden{display:none}.flag-wrapper{width:24px;height:16px;display:inline-block}.flag{width:16px;height:11px;display:inline-block;background:url(flags.png) no-repeat}.flag.flag-en{background-position:-144px -154px}.flag.flag-en-us{background-position:-144px -154px}.flag.flag-en-gb{background-position:-240px -33px}.flag.flag-en-ca{background-position:-48px -22px}.flag.flag-nl,.flag.flag-nl-nl{background-position:-80px -110px}.flag.flag-pl,.flag.flag-pl-pl{background-position:-32px -121px}.flag.flag-ru,.flag.flag-ru-ru{background-position:-224px -121px}.flag.flag-ua,.flag.flag-ua-ua{background-position:-96px -154px}.flag.flag-de,.flag.flag-de-de{background-position:-80px -33px}.flag.flag-it,.flag.flag-it-it{background-position:-208px -66px}.flag.flag-is,.flag.flag-is-is{background-position:-192px -66px}.flag.flag-lv,.flag.flag-lv-lv{background-position:-112px -88px}.flag.flag-no,.flag.flag-nb,.flag.flag-nb-no{background-position:-96px -110px}.flag.flag-fr,.flag.flag-fr-fr,.flag.flag-fr-ca{background-position:-144px -44px}.flag.flag-es,.flag.flag-es-es,.flag.flag-es-la{background-position:-16px -44px}.flag.flag-ja,.flag.flag-jp,.flag.flag-ja-jp{background-position:-16px -77px}.flag.flag-ko-kr{background-position:-144px -77px}.flag.flag-pt,.flag.flag-pt-pt{background-position:-112px -121px}.flag.flag-pt-br{background-position:-192px -11px}.flag.flag-cn,.flag.flag-zh-tw,.flag.flag-zh-cn,.flag.flag-zh-hk{background-position:-208px -22px}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.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}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{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,.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(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;content:"";line-height:0}.row:after{clear:both}[class*=span]{float:left;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;content:"";line-height:0}.row-fluid:after{clear:both}.row-fluid [class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%}.row-fluid [class*=span]:first-child{margin-left:0}.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;content:"";line-height:0}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:20px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:700}em{font-style:italic}cite{font-style:normal}.muted{color:#999}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:700;line-height:1;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:400;line-height:1;color:#999}h1{font-size:36px;line-height:40px}h2{font-size:30px;line-height:40px}h3{font-size:24px;line-height:40px}h4{font-size:18px;line-height:20px}h5{font-size:14px;line-height:20px}h6{font-size:12px;line-height:20px}h1 small{font-size:24px}h2 small{font-size:18px}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}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:700}dd{margin-left:10px}.dl-horizontal dt{float:left;width:120px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:130px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[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:16px;font-weight:300;line-height:25px}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;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,.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;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:400;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:9px;font-size:14px;line-height:20px;color:#555;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input,textarea{width:210px}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,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(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,.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6)}input[type=radio],input[type=checkbox]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;cursor:pointer}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;border:1px solid #bbb;background-color:#fff}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;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);box-shadow:inset 0 1px 2px rgba(0,0,0,.025);cursor:not-allowed}.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:18px;padding-left:18px}.radio input[type=radio],.checkbox input[type=checkbox]{float:left;margin-left:-18px}.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;content:"";line-height:0}.controls-row:after{clear:both}.controls-row [class*=span]{float:left}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>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;border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.warning .checkbox:focus,.control-group.warning .radio:focus,.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,.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(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>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;border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.error .checkbox:focus,.control-group.error .radio:focus,.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,.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(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>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;border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.success .checkbox:focus,.control-group.success .radio:focus,.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,.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(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}input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required: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;content:"";line-height:0}.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;*zoom:1;vertical-align:middle;padding-left:5px}.input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap}.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;font-size:14px;vertical-align:top;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 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:400;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{margin-left:-1px;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:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append .add-on:last-child,.input-append .btn:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 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 .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 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;*zoom:1;margin-bottom:0;vertical-align:middle}.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;content:"";line-height:0}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:160px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:160px}.form-horizontal .help-block{margin-top:10px;margin-bottom:0}.form-horizontal .form-actions{padding-left:160px}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:700}.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-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{-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{-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 tfoot:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;-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 tfoot:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.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-right-topleft: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 [class*=span],.row-fluid table [class*=span]{display:table-cell;float:none;margin-left:0}table .span1{float:none;width:44px;margin-left:0}table .span2{float:none;width:124px;margin-left:0}table .span3{float:none;width:204px;margin-left:0}table .span4{float:none;width:284px;margin-left:0}table .span5{float:none;width:364px;margin-left:0}table .span6{float:none;width:444px;margin-left:0}table .span7{float:none;width:524px;margin-left:0}table .span8{float:none;width:604px;margin-left:0}table .span9{float:none;width:684px;margin-left:0}table .span10{float:none;width:764px;margin-left:0}table .span11{float:none;width:844px;margin-left:0}table .span12{float:none;width:924px;margin-left:0}table .span13{float:none;width:1004px;margin-left:0}table .span14{float:none;width:1084px;margin-left:0}table .span15{float:none;width:1164px;margin-left:0}table .span16{float:none;width:1244px;margin-left:0}table .span17{float:none;width:1324px;margin-left:0}table .span18{float:none;width:1404px;margin-left:0}table .span19{float:none;width:1484px;margin-left:0}table .span20{float:none;width:1564px;margin-left:0}table .span21{float:none;width:1644px;margin-left:0}table .span22{float:none;width:1724px;margin-left:0}table .span23{float:none;width:1804px;margin-left:0}table .span24{float:none;width:1884px;margin-left:0}.table tbody tr.success td{background-color:#dff0d8}.table tbody tr.error td{background-color:#f2dede}.table tbody tr.info td{background-color:#d9edf7}.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,.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,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(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 a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#fff;background-color:#08c;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{color:#fff;text-decoration:none;outline:0;background-color:#08c;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 .disabled>a,.dropdown-menu .disabled>a:hover{color:#999}.dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default}.open{*z-index:1000}.open>.dropdown-menu{display:block}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:"\2191"}.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;-moz-border-radius:0 6px 6px;border-radius:0 6px 6px}.dropdown-submenu:hover .dropdown-menu{display:block}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px}.typeahead{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,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(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;overflow:visible \9;-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:700;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover{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;*zoom:1;padding:4px 14px;margin-bottom:0;font-size:14px;line-height:20px;*line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px solid #bbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.btn:hover,.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{color:#333;text-decoration:none;background-color:#e6e6e6;*background-color:#d9d9d9;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-color:#e6e6e6;background-color:#d9d9d9 \9;background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.btn.disabled,.btn[disabled]{cursor:default;background-color:#e6e6e6;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:9px 14px;font-size:16px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.btn-large [class^=icon-]{margin-top:2px}.btn-small{padding:3px 9px;font-size:12px;line-height:18px}.btn-small [class^=icon-]{margin-top:0}.btn-mini{padding:2px 6px;font-size:11px;line-height:16px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,.75)}.btn{border-color:#c5c5c5;border-color:rgba(0,0,0,.15) rgba(0,0,0,.15) rgba(0,0,0,.25)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.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,.25);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);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.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,.25);background-color:#da4f49;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.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,.25);background-color:#5bb75b;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.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,.25);background-color:#49afcd;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.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,.25);background-color:#363636;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.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{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{border-color:transparent;cursor:pointer;color:#08c;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent}.btn-group{position:relative;font-size:0;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1}.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{font-size:14px}.btn-group>.btn-mini{font-size:11px}.btn-group>.btn-small{font-size:12px}.btn-group>.btn-large{font-size:16px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius: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-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px}.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(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-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px}.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px}.dropup .btn-large .caret{border-bottom:5px solid #000;border-top:0}.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;width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical .btn+.btn{margin-left:0;margin-top:-1px}.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,.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}.alert-info{background-color:#d9edf7;border-color:#bce8f1;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}.modal-open .dropdown-menu{z-index:2050}.modal-open .dropdown.open{*z-index:2050}.modal-open .popover{z-index:2060}.modal-open .tooltip{z-index:2080}.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:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,.3);box-shadow:0 3px 7px rgba(0,0,0,.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{-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;top:-25%}.modal.fade.in{top:50%}.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{overflow-y:auto;max-height:400px;padding:15px}.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;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{margin-top:-3px}.tooltip.right{margin-left:3px}.tooltip.bottom{margin-top:3px}.tooltip.left{margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#eee;text-align:center;text-decoration:none;background-color:#333;-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-width:5px 5px 0;border-top-color:#333}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#333}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#333}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#333}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(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,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-bottom:10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-right:10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;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-content{padding:9px 14px}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0}.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow:after{content:"";z-index:-1}.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#fff}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0,0,0,.25);bottom:-1px;left:-11px}.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#fff}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0,0,0,.25);bottom:-11px;left:-1px}.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#fff}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0,0,0,.25);top:-1px;left:-11px}.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#fff}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0,0,0,.25);bottom:-11px;right:-1px}.label,.badge{font-size:11.844px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#999}.label{padding:1px 4px 2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding:1px 9px 2px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}a.label:hover,a.badge:hover{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{overflow:hidden;height:20px;margin-bottom:20px;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(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,.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(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,.15),inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}[class^=icon-],[class*=" icon-"]{display:inline-block;width:16px;height:16px;line-height:17px;font-size:16px;vertical-align:text-top}.icon-folder,.icon-folder-add,.icon-list{line-height:18px;font-size:18px;margin-top:-2px;margin-left:-2px}.iconsize24{line-height:24px;font-size:24px}.icon-white,.nav>.active>a>[class^=icon-],.nav>.active>a>[class*=" icon-"]{color:#fff}.g-ui-menu .e-item:hover [class^=icon-],.g-ui-menu .e-item:hover [class*=" icon-"]{color:#fff}.icon-none{background-image:none!important}.icon-checkbox-checked,.icon-checkbox-unchecked,.icon-checkbox-partial,.icon-radio-checked,.icon-radio-unchecked{cursor:pointer;color:#555;font-size:1em}.icon-checkbox-checked:hover,.icon-checkbox-unchecked:hover,.icon-checkbox-partial:hover,.icon-radio-checked:hover,.icon-radio-unchecked:hover,.icon-checkbox-checked:active,.icon-checkbox-unchecked:active,.icon-checkbox-partial:active,.icon-radio-checked:active,.icon-radio-unchecked:active{color:#000}.icon-white.icon-checkbox-checked,.icon-white.icon-checkbox-unchecked,.icon-white.icon-checkbox-partial,.icon-white.icon-radio-checked,.icon-white.icon-radio-unchecked{color:#eee}.icon-white.icon-checkbox-checked:hover,.icon-white.icon-checkbox-unchecked:hover,.icon-white.icon-checkbox-partial:hover,.icon-white.icon-radio-checked:hover,.icon-white.icon-radio-unchecked:hover,.icon-white.icon-checkbox-checked:active,.icon-white.icon-checkbox-unchecked:active,.icon-white.icon-checkbox-partial:active,.icon-white.icon-radio-checked:active,.icon-white.icon-radio-unchecked:active{color:#fff}.denied-by-browser{cursor:default}.denied-by-browser .icon-checkbox-checked,.denied-by-browser icon-checkbox-unchecked{cursor:default}.right-mini,.down-mini{width:16px;line-height:20px}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes rotation{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@keyframes rotation{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.icon-spinner{width:16px;height:16px}.icon-spinner:before{font-size:16px;line-height:100%}html.no-cssanimations .icon-spinner{background-image:url(images/sync.png);background-repeat:no-repeat;font-family:Arial}html.no-cssanimations .icon-spinner:before{content:""}html.no-cssanimations .icon-spinner.animated{background-image:url(images/sync.gif)}html.cssanimations .icon-spinner.animated{-webkit-animation:rotation 1s infinite linear;-moz-animation:rotation 1s infinite linear;animation:rotation 1s infinite linear}body{background-color:transparent}label{cursor:pointer}.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}.legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}select{width:223px}.btn-small.btn-small-small{padding:3px 9px;font-size:11px;line-height:11px}.btn.btn-ellipsis{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.btn.btn-narrow{padding-left:12px;padding-right:12px}.dropdown-menu{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.btn{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-image:none;text-shadow:0 1px 0 #fff}.btn.disabled,.btn[disabled]{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}html.rgba.textshadow .btn.btn-danger,html.rgba.textshadow .btn.btn-success,html.rgba.textshadow .btn.btn-primary{text-shadow:0 1px 0 rgba(0,0,0,.3)}.btn-toolbar{margin-top:0;margin-bottom:0}.dropdown-menu{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.tooltip{font-size:14px}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.tooltip .tooltip-big{font-size:18px;padding:0 10px}.tooltip-inner{padding:5px 10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.btn-group>.btn:first-child{-webkit-border-top-left-radius:2px;-moz-border-radius-topleft:2px;border-top-left-radius:2px;-webkit-border-bottom-left-radius:2px;-moz-border-radius-bottomleft:2px;border-bottom-left-radius:2px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:2px;-moz-border-radius-topright:2px;border-top-right-radius:2px;-webkit-border-bottom-right-radius:2px;-moz-border-radius-bottomright:2px;border-bottom-right-radius:2px}.btn-group>.btn.large:first-child{-webkit-border-top-left-radius:2px;-moz-border-radius-topleft:2px;border-top-left-radius:2px;-webkit-border-bottom-left-radius:2px;-moz-border-radius-bottomleft:2px;border-bottom-left-radius:2px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:2px;-moz-border-radius-topright:2px;border-top-right-radius:2px;-webkit-border-bottom-right-radius:2px;-moz-border-radius-bottomright:2px;border-bottom-right-radius:2px}textarea,input[type=text],input[type=password],input[type=email],input[type=search]{border:1px solid #ccc}textarea:focus,input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,input[type=search]:focus{background-color:#fff;border:1px solid #999;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}input[type=text],input[type=password],input[type=email],input[type=search]{height:20px;line-height:20px}select{border:1px solid #ccc}.alert a{text-decoration:underline}.alert.alert-null-left-margin{margin-left:0}.alert.alert-error a{color:#b94a48}html.no-rgba .modal{border-width:0!important}.modal-backdrop,.modal-backdrop.fade.in{opacity:.1;filter:alpha(opacity=10)}.popups{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1100;overflow:auto}.popups .modal{position:static;z-index:1101;margin:5% auto;background-color:transparent;overflow:hidden;-webkit-box-shadow:0 5px 80px rgba(0,0,0,.3);-moz-box-shadow:0 5px 80px rgba(0,0,0,.3);box-shadow:0 5px 80px rgba(0,0,0,.3)}.popups .modal .modal-body{background-color:#fff;max-height:none}.modal.loginContent .modal-body,.modal.loginAdminContent .modal-body{background-color:transparent!important}.picker.modal-dialog-bg,.picker.picker-dialog-bg{z-index:2000!important}.picker.modal-dialog,.picker.picker-dialog{z-index:2001!important}.control-label.remove-padding-top{padding-top:0}.inputosaurus-container{width:99%;line-height:20px;padding:2px;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(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}.inputosaurus-container li{max-width:500px;background-color:#eee;border:1px solid #aaa;line-height:18px;padding:2px 15px 2px 5px;margin:2px;color:#555;position:relative}.inputosaurus-container li a{color:#999;font-size:12px;position:absolute;top:1px;right:2px}.inputosaurus-container li a:hover{color:#666}.inputosaurus-container li span{padding-right:3px}.inputosaurus-container li.inputosaurus-required{padding-rigth:5px}.inputosaurus-container li.inputosaurus-selected{background-color:#ddd}.inputosaurus-container .inputosaurus-input{margin:1px 10px 1px 0;height:22px}.inputosaurus-container .inputosaurus-input input{border:0;height:21px;padding-left:0}.ui-autocomplete{z-index:2000}.inputosaurus-fake-span{position:absolute;top:0;left:-5000px}.g-ui-user-select-none{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none;-webkit-touch-callout:none}.g-ui-clearfix{*zoom:1}.g-ui-clearfix:before,.g-ui-clearfix:after{display:table;content:"";line-height:0}.g-ui-clearfix:after{clear:both}.g-ui-link{color:#369;text-decoration:underline;cursor:pointer}.g-ui-min-height-300{min-height:300px}.g-ui-absolute-reset{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0}.g-ui-menu{max-height:400px;max-width:300px;overflow-y:auto;overflow-x:hidden}.g-ui-menu .e-link{text-decoration:none;cursor:pointer}.g-ui-menu .e-item>.e-link:hover{background-color:#555;background-image:none;color:#fff}.g-ui-menu .e-item.disable>.e-link{cursor:not-allowed;background-color:#fff;background-image:none;color:grey}.g-ui-menu .e-item.disable [class^=icon-]{color:grey}.g-ui-table{display:table;width:100%}.g-ui-table .e-row{display:table-row}.g-ui-table .e-cell{display:table-cell;vertical-align:top;text-align:left}.g-ui-height-100proc{height:100%}.g-ui-resizable-delimiter-highlight{border:0;border-right:6px solid #aaa}.e-pagenator .e-page{display:inline-block;color:#999;text-decoration:none;font-size:24px;padding:3px;cursor:pointer}.e-pagenator .e-page:hover .e-page-number{color:#555}.e-pagenator .e-page.current .e-page-number{font-size:28px;color:#333;border-bottom:2px solid #000}html.rgba .g-ui-resizable-delimiter-highlight{border-right-color:rgba(0,0,0,.2)}.settings-saved-trigger{display:inline-block;line-height:17px;font-size:16px}.settings-saved-trigger .animated{color:green}.settings-saved-trigger .success{color:green;-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;opacity:0;filter:alpha(opacity=0)}.settings-saved-trigger .error{color:red;-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;opacity:0;filter:alpha(opacity=0)}.settings-saved-trigger .visible{opacity:1;filter:alpha(opacity=100)}.settings-saved-trigger-input.success{border-color:green!important;-webkit-transition:border-color .5s linear;-moz-transition:border-color .5s linear;-o-transition:border-color .5s linear;transition:border-color .5s linear}.settings-saved-trigger-input.error{border-color:red!important;-webkit-transition:border-color .5s linear;-moz-transition:border-color .5s linear;-o-transition:border-color .5s linear;transition:border-color .5s linear}html{margin:0;padding:0;overflow:hidden;font-family:Arial,Verdana,Geneva,sans-serif}body{margin:0;padding:0;overflow:hidden;background-color:#e3e3e3;font-family:Arial,Verdana,Geneva,sans-serif;-webkit-touch-callout:none;position:absolute;top:0;left:0;bottom:0;right:0}textarea{resize:none}option:disabled{color:#aaa;cursor:not-allowed}body:before{content:"";position:fixed;top:-10px;left:0;width:100%;height:8px;z-index:100;-webkit-box-shadow:0 0 10px rgba(0,0,0,.6);-moz-box-shadow:0 0 10px rgba(0,0,0,.6);box-shadow:0 0 10px rgba(0,0,0,.6)}*{outline:0}select:focus{outline:0}html.mobile *{-webkit-tap-highlight-color:rgba(0,0,0,0)}#rl-content{height:100%;width:100%}#rl-center{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;min-width:900px;min-height:400px}#rl-top{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;bottom:auto;z-index:2}#rl-bottom{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;top:auto;z-index:1}#rl-left{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;right:auto;width:100%}#rl-right{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;z-index:1}#rl-resizer-right{position:absolute;top:0;bottom:0;right:0;left:35%}#rl-resizer-left{position:absolute;top:0;bottom:0;left:0;right:65%;min-width:350px}#rl-top-resizer-right{position:absolute;top:0;bottom:0;right:0;left:230px}#rl-top-resizer-left{position:absolute;top:0;bottom:0;left:0;right:auto;min-width:120px}html.mobile #rl-top-resizer-left{width:170px}html.mobile #rl-top-resizer-right{left:170px}html.mobile #rl-resizer-left{width:350px}html.mobile #rl-resizer-right{left:350px}html.rl-no-preview-pane #rl-resizer-left{right:5px!important;width:inherit}html.rl-no-preview-pane #rl-resizer-right{left:0!important}html.rl-no-preview-pane #rl-right .ui-resizable-handle{display:none!important}#rl-loading,#rl-loading-error{position:absolute;font:30px Tahoma;top:50%;width:100%;height:65px;margin:0;margin-top:-60px;background-color:transparent;background-repeat:no-repeat;background-position:center 50px;background-image:url(images/loader-black.gif);text-align:center;color:#000}#rl-loading-error{background-image:none;display:none}.b-system-drop-down .b-toolbar{position:absolute;top:0;right:0;height:30px;padding:10px 8px;z-index:103}.b-system-drop-down .e-facebook-name{display:inline-block;padding-top:4px}.b-system-drop-down .btn.system-dropdown{padding-left:10px;padding-right:10px}.b-system-drop-down .button-fb-logout{margin:5px}.b-system-drop-down .email-title{display:inline-block;max-width:200px;text-align:left;text-overflow:ellipsis;overflow:hidden}.rl-view-model.RL-Login,.rl-view-model.RL-LoginNew,.rl-view-model.RL-AdminLogin{height:100%}.b-login-content{height:100%;text-align:center;margin-left:-230px}.b-login-content .loginFormWrapper{display:inline-block;vertical-align:middle;text-align:center;width:380px}.b-login-content .loginFormWrapper .loginForm{background-color:#efefef;text-align:left;color:#333;margin:0;float:none}.b-login-content .loginFormWrapper .control-label{font-size:16px;line-height:30px}.b-login-content .loginFormWrapper .control-group{margin-bottom:25px}.b-login-content .loginFormWrapper .wrapper{padding:40px 40px 10px}.b-login-content .loginFormWrapper #recaptcha_image img{border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.b-login-content .loginFormWrapper .inputLoginForm,.b-login-content .loginFormWrapper .inputEmail,.b-login-content .loginFormWrapper .inputLogin,.b-login-content .loginFormWrapper .inputPassword{font-size:18px;height:30px;line-height:29px}.b-login-content .loginFormWrapper .signMeLabel{margin-top:5px}.b-login-content .loginFormWrapper .input-append .add-on{position:relative;height:30px;background:0;margin-left:-35px;z-index:1000;border:0}.b-login-content .loginFormWrapper .input-append .add-on i{font-size:17px;line-height:29px;color:#999}.b-login-content .loginFormWrapper .control-group.error .add-on i{color:#b94a48}.b-login-content .buttonLogin{margin:0}.b-login-content .alert{margin:0 0 20px;text-align:left}.b-login-content .loginAfter{display:inline-block;height:90%;vertical-align:middle;width:0}.b-login-content .flag-selector{margin-bottom:0}.popups .b-ask-content.modal{z-index:10000}.popups .b-ask-content .modal-header{background-color:#fff}.popups .b-ask-content .modal-body{text-align:center}.popups .b-ask-content .desc-place{font-size:18px}.b-folders .b-toolbar{position:absolute;top:0;right:0;left:0;height:30px;padding:10px 10px 0 8px;color:#fff}.b-folders .b-content{position:absolute;top:58px;bottom:13px;left:0;right:0;overflow:hidden;overflow-y:auto}.b-folders .b-content .content{-webkit-overflow-scrolling:touch}.b-folders .b-list-delimiter{margin:10px;border-top:0 solid #000;border-bottom:1px solid #999}.b-folders .e-item{overflow:hidden;white-space:nowrap}.b-folders .e-item .e-link{display:block;position:relative;z-index:1;height:34px;line-height:34px;background-color:transparent;vertical-align:middle;color:grey;cursor:not-allowed;font-size:14px;padding:0;padding-left:10px;padding-right:10px;outline:0;text-decoration:none}.b-folders .e-item .e-link.selectable{color:#000;cursor:pointer}.b-folders .e-item .e-link.selectable:hover,.b-folders .e-item .e-link.selectable.selected,.b-folders .e-item .e-link.selectable.droppableHover{background-color:#555;color:#fff}.b-folders .e-item .e-link.system{cursor:default;color:grey}.b-folders .e-item .e-link .count{position:relative;display:none;margin-top:5px;line-height:19px}.b-folders .e-item .e-link.print-count{font-weight:700}.b-folders .e-item .e-link.print-count .count{display:inline}.b-folders .e-item .e-link .e-collapsed-sign{cursor:pointer;width:22px;height:30px;line-height:30px;text-align:center;vertical-align:inherit}.b-folders .e-item .hidden.e-link{display:none}.b-folders .e-item .b-sub-folders.collapsed{max-height:0;height:0;display:none}.b-folders .b-folder-system-item{font-weight:700}.b-folders .b-sub-folders .e-item .e-link{padding-left:25px}.b-folders .b-sub-folders.unpaddig-folder .e-item .e-link{padding-left:10px}.b-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:40px}.b-folders .b-sub-folders.unpaddig-folder .b-sub-folders .e-item .e-link{padding-left:25px}.b-folders .b-sub-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:55px}.b-folders .b-sub-folders.unpaddig-folder .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:40px}.b-folders .b-sub-folders .b-sub-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:70px}.b-folders .b-sub-folders.unpaddig-folder .b-sub-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:55px}.popups .b-folder-clear-content .modal-header{background-color:#fff}.popups .b-folder-create-content .modal-header{background-color:#fff}.popups .b-folder-system-content.modal{z-index:1102}.popups .b-folder-system-content .modal-header{background-color:#fff}.popups .b-languages-content.modal{z-index:1103;width:700px}.popups .b-languages-content.exp{width:701px}.popups .b-languages-content .modal-header{background-color:#fff}.popups .b-languages-content .lang-item{display:inline-block;padding:5px 15px;margin:2px 5px;width:180px;background-color:#fff;text-align:left}.popups .b-languages-content .lang-item.selected{background-color:#f5f5f5}.popups .b-languages-content .lang-item:hover{background-color:#eee}.popups .b-account-add-content .modal-header{background-color:#fff}.popups .b-identity-content .modal-header{background-color:#fff}.popups .b-identity-content .textEmail{margin-top:5px;font-weight:700}.popups .b-advanced-search-content.modal{width:750px}.popups .b-advanced-search-content.modal .control-label{width:100px}.popups .b-advanced-search-content.modal .controls{margin-left:110px}.popups .b-advanced-search-content .modal-header{background-color:#fff}html.rl-no-preview-pane .messageList.message-selected{display:none}.messageList .toolbar{position:absolute;top:0;right:0;left:0;height:30px;padding:10px 1px;min-width:280px;z-index:102}.messageList .b-footer{position:absolute;bottom:0;right:0;left:0;height:30px;padding:7px;min-width:300px;z-index:101;background-color:#eee;-webkit-border-bottom-right-radius:5px;-moz-border-radius-bottomright:5px;border-bottom-right-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-bottomleft:5px;border-bottom-left-radius:5px}.messageList .b-footer .e-quota{display:inline-block;margin-top:5px;margin-left:5px;font-size:18px;cursor:help}.messageList .b-footer .e-quota:hover{border-bottom:1px dashed #333}.messageList .inputSearch{width:258px}.messageList .btn.buttonMoreSearch{padding-left:8px;padding-right:8px}.messageList .b-message-list-wrapper{position:absolute;top:50px;right:0;left:0;bottom:5px;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;z-index:101}.messageList .second-toolbar{position:absolute;top:0;right:0;left:0;height:29px;padding:10px 8px 10px 11px;min-width:280px;z-index:101;background-color:#eee;-webkit-border-top-right-radius:5px;-moz-border-radius-topright:5px;border-top-right-radius:5px;-webkit-border-top-left-radius:5px;-moz-border-radius-topleft:5px;border-top-left-radius:5px}.messageList .second-toolbar .checkboxCkeckAll{margin:5px 0}.messageList .mainDelimiter{position:absolute;left:0;right:0;height:1px;z-index:101;background-color:#bbb}.messageList .toolbarDelimiter{top:49px}.messageList .footerDelimiter{bottom:44px}.messageList .b-content{position:absolute;top:50px;bottom:45px;left:0;right:0;padding:0;overflow-x:hidden;overflow-y:auto;z-index:101;min-width:300px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff}.messageList .b-content .content{-webkit-overflow-scrolling:touch}.messageList .b-content .listClear{color:#333;text-align:center;padding:10px;font-size:14px;line-height:13px}.messageList .b-content .listEmptyList,.messageList .b-content .listEmptyListLoading,.messageList .b-content .listDragOver,.messageList .b-content .listError,.messageList .b-content .listEmptySearchList{color:#999;text-align:center;padding:60px 10px;font-size:24px;line-height:30px}.messageList .b-content .listEmptyList .e-icon,.messageList .b-content .listEmptyListLoading .e-icon,.messageList .b-content .listDragOver .e-icon,.messageList .b-content .listError .e-icon,.messageList .b-content .listEmptySearchList .e-icon{font-size:24px;line-height:30px}.messageList .b-content .listDragOver{max-height:0;overflow:hidden;padding:0 10px}.messageList .b-content .listDragOver.viewAppendArea{max-height:120px;padding:30px 10px}.messageList .b-content .listDragOver.dragOverEnter{background-color:#e0fdda;color:#333}.messageList .b-content .listError{color:#DA4F49}.messageList .b-content .listSearchDesc{font-size:20px;padding:20px;border-bottom:1px solid #eee}.messageList .b-content .delimiter{display:block;height:1px;background-color:#e5e5e5}.messageList .b-content .messageListItem:last-child{border-bottom:1px solid #e5e5e5}.messageList .b-content .messageListItem:last-child.selected{border-bottom:1px solid #bfd5ef}.messageList .b-content .fullThreadsParent{height:25px;padding:3px 5px;background-color:#f4f4f4;text-align:center}.messageList .b-content .messageListItem{position:relative;height:52px;max-height:60px;font-size:12px;line-height:21px;overflow:hidden;cursor:pointer;margin:0;border:0 solid transparent;z-index:100;background-color:#f9f9f9}.messageList .b-content .messageListItem .delimiter{position:relative;display:block;height:1px;background-color:#999;opacity:.2;filter:alpha(opacity=20)}.messageList .b-content .messageListItem .wrapper{padding:5px 0}.messageList .b-content .messageListItem .sidebarParent{display:inline-block;width:6px;background-color:#eee;float:left;height:100%}.messageList .b-content .messageListItem.e-single-line{height:35px}.messageList .b-content .messageListItem.e-single-line .wrapper{line-height:25px;padding:5px}.messageList .b-content .messageListItem.new{max-height:0}.messageList .b-content .messageListItem.deleted{max-height:0;border-color:transparent!important}.messageList .b-content .messageListItem .checkedParent{display:inline-block;float:left;margin-top:11px;padding:0 8px 0 6px;font-size:14px}.messageList .b-content .messageListItem.e-single-line .checkedParent{margin-top:1px}.messageList .b-content .messageListItem .flagParent{display:inline-block;float:right;padding:0 8px 0 5px}.messageList .b-content .messageListItem.e-single-line .flagParent{float:left;padding:0 8px 0 2px}.messageList .b-content .messageListItem .dateParent{display:inline-block;float:right;position:relative;margin:0 5px;color:#999;font-size:11px}.messageList .b-content .messageListItem .attachmentParent{display:inline-block;float:right;position:relative;margin:2px 8px 0 5px}.messageList .b-content .messageListItem.e-single-line .attachmentParent{float:left;margin:0 5px 0 0}.messageList .b-content .messageListItem .senderParent{display:block;overflow:hidden;text-overflow:ellipsis}.messageList .b-content .messageListItem .threadsCountParent{display:inline;overflow:hidden;background-color:#eee;padding:1px 5px;margin-right:5px;border:1px solid #ccc;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.messageList .b-content .messageListItem .threadsCountParent.lastSelected{background-color:#999;border-color:#999;color:#fff}.messageList .b-content .messageListItem .threadsCountParent:hover{border-color:#666}.messageList .b-content .messageListItem.e-single-line .senderParent{display:inline-block;text-overflow:none;width:200px;float:left;font-weight:400}.messageList .b-content .messageListItem .subjectParent{display:block;overflow:hidden;text-overflow:ellipsis;color:#000}.messageList .b-content .messageListItem .senderParent,.messageList .b-content .messageListItem .subjectParent,.messageList .b-content .messageListItem .dateParent{white-space:nowrap}.messageList .b-content .messageListItem .subjectParent .emptySubjectText{display:none;font-style:italic;color:#999}.messageList .b-content .messageListItem.emptySubject .subjectParent .subject{display:none}.messageList .b-content .messageListItem.emptySubject .subjectParent .emptySubjectText{display:inline}.messageList .b-content .messageListItem .sender,.messageList .b-content .messageListItem .subject{overflow:hidden;text-overflow:ellipsis}.messageList .b-content .messageListItem .attachment{display:none}.messageList .b-content .messageListItem .flagOff,.messageList .b-content .messageListItem .flagOn,.messageList .b-content .messageListItem .flagOnHalf{cursor:pointer;display:inline-block}.messageList .b-content .messageListItem .flagOff{opacity:.5;filter:alpha(opacity=50)}.messageList .b-content .messageListItem .flagOff:hover{opacity:1;filter:alpha(opacity=100)}.messageList .b-content .messageListItem .flagOn,.messageList .b-content .messageListItem .flagOnHalf{display:none;color:orange}.messageList .b-content .messageListItem .replyFlag,.messageList .b-content .messageListItem .forwardFlag{display:none}.messageList .b-content .messageListItem.answered .replyFlag{display:inline-block}.messageList .b-content .messageListItem.forwarded .forwardFlag{display:inline-block}.messageList .b-content .messageListItem.withAttachments .attachment{display:inline-block;color:#666;text-shadow:0 1px 0 #eee}.messageList .b-content .messageListItem.unseen{background-color:#FFFFD9}.messageList .b-content .messageListItem.unseen .sender,.messageList .b-content .messageListItem.unseen .subject{font-weight:700}.messageList .b-content .messageListItem.unseen .sidebarParent{background-color:orange}.messageList .b-content .messageListItem.hasUnseenSubMessage{background-color:#FFFFD9}.messageList .b-content .messageListItem.hasUnseenSubMessage .sidebarParent{background-color:#ffdb99}.messageList .b-content .messageListItem.hasParentMessage{background-color:#ecf0f1}.messageList .b-content .messageListItem.hasParentMessage .sidebarParent{background-color:#bdc3c7}.messageList .b-content .messageListItem.hasParentMessage.unseen{background-color:#dde4e6}.messageList .b-content .messageListItem.hasParentMessage.unseen .sidebarParent{background-color:#6c777f}.messageList .b-content .messageListItem.checked .sidebarParent{background-color:#69a8f5!important}.messageList .b-content .messageListItem.selected{background-color:#DFEFFF;z-index:102}.messageList .b-content .messageListItem.selected .sidebarParent{background-color:#398CF2!important}.messageList .b-content .messageListItem.selected .delimiter{background-color:#398CF2;opacity:.2;filter:alpha(opacity=20)}.messageList .b-content .messageListItem.selected+.messageListItem .delimiter{background-color:#398CF2;opacity:.3;filter:alpha(opacity=30)}.messageList .b-content .messageListItem.hasFlaggedSubMessage .flagOff,.messageList .b-content .messageListItem.hasFlaggedSubMessage .flagOn{display:none}.messageList .b-content .messageListItem.hasFlaggedSubMessage .flagOnHalf{display:inline-block}.messageList .b-content .messageListItem.flagged .flagOff,.messageList .b-content .messageListItem.flagged .flagOnHalf{display:none}.messageList .b-content .messageListItem.flagged .flagOn{display:inline-block}.messageList.hideMessageListCheckbox .checkedParent,.messageList.hideMessageListCheckbox .checkboxCkeckAll{display:none!important}.messageList.hideMessageListCheckbox .sidebarParent{margin-right:10px!important}.draggablePlace{z-index:10002;color:#fff;background-color:#333;background-color:rgba(0,0,0,.5);padding:4px 10px;min-width:30px;height:20px;cursor:pointer;cursor:move}html.rl-no-preview-pane .messageView{display:none}html.rl-no-preview-pane .messageView.message-selected{display:block}.messageView{z-index:100}.messageView .toolbar{position:absolute;top:0;right:0;left:0;height:30px;padding:10px 0;color:#fff}.messageView .b-content{position:absolute;margin:0;top:58px;bottom:13px;right:8px;left:0;overflow:hidden;border:1px solid #aaa;border-left:0;-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;background-color:#fff}.messageView .b-content .b-message-view-desc{text-align:center;font-size:24px;line-height:30px;padding-top:120px;color:#999}.messageView .b-content .b-message-view-desc.error{color:#DA4F49}.messageView .b-content .content{-webkit-overflow-scrolling:touch}.messageView .b-content .messageItem{position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto;-webkit-overflow-scrolling:touch;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.messageView .b-content .messageItem .emptySubjectText{display:none;font-style:italic;color:#999}.messageView .b-content .messageItem.emptySubject .emptySubjectText{display:inline}.messageView .b-content .messageItem .buttonUp,.messageView .b-content .messageItem .buttonUnFull,.messageView .b-content .messageItem .buttonFull{display:inline-block;position:fixed;right:30px;top:90px;height:30px;width:30px;text-align:center;vertical-align:middle;line-height:30px;background-color:transparent;background-color:#fff;border:1px solid #333;color:#333;z-index:2;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;opacity:.3;filter:alpha(opacity=30)}.messageView .b-content .messageItem .buttonUp:hover,.messageView .b-content .messageItem .buttonUnFull:hover,.messageView .b-content .messageItem .buttonFull:hover{opacity:.8;filter:alpha(opacity=80);border-color:#000;background-color:#888;color:#fff}.messageView .b-content .messageItem .buttonUp{right:70px;z-index:0}.messageView .b-content .messageItem .buttonUnFull{display:none}.messageView .b-content .messageItem .messageItemHeader{position:relative;padding:10px;background-color:#f8f8f8;border-top:0;border-bottom:1px solid #ddd;z-index:1}.messageView .b-content .messageItem .messageItemHeader .fromPic{display:inline-block;width:50px;height:50px;float:left;padding:2px;margin:0 5px 0 0;background:#fff;border:1px solid #ccc;border-radius:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.messageView .b-content .messageItem .messageItemHeader .subjectParent{font-size:16px;font-weight:700;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-left:3px}.messageView .b-content .messageItem .messageItemHeader .senderParent{margin-top:10px}.messageView .b-content .messageItem .messageItemHeader .messageButtons{margin-top:5px}.messageView .b-content .messageItem .messageItemHeader .informationShort{margin-left:15px}.messageView .b-content .messageItem .messageItemHeader .informationShort a{color:#369;text-decoration:underline;cursor:pointer}.messageView .b-content .messageItem .messageItemHeader .informationFull{margin-top:10px;border:1px solid #ddd;background-color:#fff;border-radius:5px;padding:10px 15px}.messageView .b-content .messageItem .loading{text-align:center;font-size:24px;color:grey;padding-top:50px}.messageView .b-content .messageItem .line-loading{height:0}.messageView .b-content .messageItem .showImages{cursor:pointer;background-color:#eee;padding:10px 15px;border-bottom:1px solid #ccc}.messageView .b-content .messageItem .attachmentsPlace{padding:10px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList{margin:0}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem{display:inline-block;margin:5px;padding:5px;max-width:170px;min-width:60px;overflow:hidden;cursor:pointer;list-style:none;line-height:24px;border:2px solid grey;background-color:#fff;box-shadow:1px 1px 5px #ccc;box-shadow:1px 1px 5px rgba(0,0,0,.1);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem .attachmentIcon{font-size:23px;width:23px;height:23px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem .attachmentPreview{color:#999;margin:0 5px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem .attachmentPreview:hover{color:#333}.messageView .b-content .messageItem .rlBlockquoteSwitcher{background-color:#eee;border:1px solid #999;display:inline-block;width:30px;height:14px;line-height:14px;text-align:center;cursor:pointer;margin:10px 0;opacity:.5;filter:alpha(opacity=50)}.messageView .b-content .messageItem .rlBlockquoteSwitcher:hover{opacity:1;filter:alpha(opacity=100)}.messageView .b-content .messageItem .bodyText{color:#000;font-family:arial,sans-serif}.messageView .b-content .messageItem .bodyText .b-text-part div[data-x-div-type=html]{height:100%}.messageView .b-content .messageItem .bodyText .b-text-part div[data-x-div-type=html] div[data-x-div-type=html]{height:100%}.messageView .b-content .messageItem .bodyText .b-text-part a{color:#00f;text-decoration:underline}.messageView .b-content .messageItem .bodyText .b-text-part a:visited{color:#609}.messageView .b-content .messageItem .bodyText .b-text-part a:active{color:red}.messageView .b-content .messageItem .bodyText .b-text-part table{border-collapse:separate}.messageView .b-content .messageItem .bodyText .b-text-part blockquote{border-left:2px solid #000;margin:0;padding:0 10px}.messageView .b-content .messageItem .bodyText .b-text-part .rl-bq-switcher.hidden-bq{display:none}.messageView .b-content .messageItem .bodyText .b-text-part.rtl-text-part{direction:rtl}.messageView .b-content .messageItem .bodyText .b-text-part.html div[data-x-div-type=body]{margin:15px}.messageView .b-content .messageItem .bodyText .b-text-part.plain{padding:15px}.messageView .b-content .messageItem .bodyText .b-text-part.plain pre{margin:0;padding:0;font-family:arial,sans-serif;background:#fff;border:0;white-space:normal}.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote{border-left:2px solid #00f;color:#00f}.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote blockquote{border-left:2px solid green;color:green}.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote blockquote blockquote{border-left:2px solid red;color:red}html.rl-no-preview-pane .messageView .toolbar{padding-left:1px}html.rl-no-preview-pane .messageView .b-content{top:50px;bottom:5px;right:5px;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}html.rl-no-preview-pane .messageView .b-content .buttonUp,html.rl-no-preview-pane .messageView .b-content .buttonUnFull,html.rl-no-preview-pane .messageView .b-content .buttonFull{top:70px}html.cssanimations.rl-anim .line-loading{height:5px!important}html.rl-message-fullscreen #rl-left,html.rl-message-fullscreen #rl-bottom{display:none!important}html.rl-message-fullscreen #rl-right .RL-MailMessageList,html.rl-message-fullscreen #rl-right .RL-SettingsPane,html.rl-message-fullscreen #rl-right .RL-SystemDropDown,html.rl-message-fullscreen #rl-right .RL-MailMessageView .messageView .toolbar{display:none!important}html.rl-message-fullscreen .messageView .b-content{position:fixed;margin:5px;top:0;left:0;right:0;bottom:0;z-index:10000;border:1px solid #aaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}html.rl-message-fullscreen .messageView .b-content .buttonUp,html.rl-message-fullscreen .messageView .b-content .buttonUnFull{display:inline-block;top:36px}html.rl-message-fullscreen .messageView .b-content .buttonFull{display:none}.b-contacts-content .control-group .control-label.fix-width{width:110px}.b-contacts-content .control-group .controls.fix-width{margin-left:135px}.b-contacts-content.modal{position:absolute;right:0;top:0;bottom:0;left:0;width:900px;min-height:300px;max-height:700px;margin:auto}.b-contacts-content.modal .modal-body{overflow:auto;height:100%;background-color:#f5f5f5;padding:0}.b-contacts-content.modal .b-header-toolbar{height:40px;background-color:#aaa;color:#fff;background-color:#333;background-color:rgba(0,0,0,.8)!important}.b-contacts-content.modal .b-header-toolbar .close{color:#fff;opacity:1;filter:alpha(opacity=100)}.b-contacts-content.modal .b-header-toolbar .btn{margin-top:4px}.b-contacts-content.modal .b-header-toolbar .button-new-message{margin-left:8px}.b-contacts-content.modal .b-header-toolbar .button-delete{margin-left:8px}.b-contacts-content.modal .b-list-toopbar{padding:0;height:45px;text-align:center;width:270px;-webkit-box-shadow:inset 0 -1px 0 #ccc;-moz-box-shadow:inset 0 -1px 0 #ccc;box-shadow:inset 0 -1px 0 #ccc}.b-contacts-content.modal .b-list-toopbar .e-search{margin-top:7px;width:245px}.b-contacts-content.modal .b-list-footer-toopbar{position:absolute;left:0;bottom:0;height:105px;width:270px;background-color:#eee;-webkit-box-shadow:inset 0 1px 0 #ccc;-moz-box-shadow:inset 0 1px 0 #ccc;box-shadow:inset 0 1px 0 #ccc}.b-contacts-content.modal .b-list-footer-toopbar .footer-pager{padding:8px 10px 0 0}.b-contacts-content.modal .b-list-content{position:absolute;top:45px;bottom:105px;left:0;width:270px;overflow:hidden;overflow-y:auto}.b-contacts-content.modal .b-list-content .content{-webkit-overflow-scrolling:touch}.b-contacts-content.modal .b-list-content .listClear{color:#333;text-align:center;padding:10px;font-size:14px;line-height:13px;background-color:#fff;-webkit-box-shadow:inset 0 -1px 0 #ccc;-moz-box-shadow:inset 0 -1px 0 #ccc;box-shadow:inset 0 -1px 0 #ccc}.b-contacts-content.modal .b-list-content .listEmptyList,.b-contacts-content.modal .b-list-content .listEmptyListLoading,.b-contacts-content.modal .b-list-content .listEmptySearchList{color:#999;text-align:center;padding:60px 10px;font-size:24px;line-height:30px}.b-contacts-content.modal .b-list-content.hideContactListCheckbox .checkedParent,.b-contacts-content.modal .b-list-content.hideContactListCheckbox .checkboxCkeckAll{display:none!important}.b-contacts-content.modal .b-list-content.hideContactListCheckbox .sidebarParent{margin-right:10px!important}.b-contacts-content.modal .b-list-content .e-contact-foreach{border-bottom:1px solid #ddd}.b-contacts-content.modal .b-list-content .e-contact-item{position:relative;height:45px;max-height:45px;line-height:45px;overflow:hidden;cursor:pointer;margin:0;border:0 solid transparent;z-index:100}.b-contacts-content.modal .b-list-content .e-contact-item .delimiter{position:relative;display:block;height:1px;background-color:#999;opacity:.2;filter:alpha(opacity=20)}.b-contacts-content.modal .b-list-content .e-contact-item .wrapper{padding:0}.b-contacts-content.modal .b-list-content .e-contact-item .sidebarParent{display:inline-block;width:6px;background-color:#eee;float:left;height:100%}.b-contacts-content.modal .b-list-content .e-contact-item.deleted{max-height:0;border-color:transparent!important}.b-contacts-content.modal .b-list-content .e-contact-item .checkedParent{display:inline-block;float:left;padding:0 8px 0 6px}.b-contacts-content.modal .b-list-content .e-contact-item .shareParent{display:none;float:right;position:relative;margin:2px 8px 0 5px}.b-contacts-content.modal .b-list-content .e-contact-item .nameParent{display:block;overflow:hidden;text-overflow:ellipsis;color:#333;font-size:16px}.b-contacts-content.modal .b-list-content .e-contact-item .nameParent,.b-contacts-content.modal .b-list-content .e-contact-item .emailParent{white-space:nowrap}.b-contacts-content.modal .b-list-content .e-contact-item .displayName,.b-contacts-content.modal .b-list-content .e-contact-item .displayEmail{overflow:hidden;text-overflow:ellipsis}.b-contacts-content.modal .b-list-content .e-contact-item .displayImg{display:inline-block;float:right;position:relative;margin:0 5px}.b-contacts-content.modal .b-list-content .e-contact-item.shared .shareParent{display:inline-block}.b-contacts-content.modal .b-list-content .e-contact-item.checked{z-index:101}.b-contacts-content.modal .b-list-content .e-contact-item.checked .sidebarParent{background-color:#69A8F5}.b-contacts-content.modal .b-list-content .e-contact-item.selected{background-color:#fff;z-index:102}.b-contacts-content.modal .b-list-content .e-contact-item.selected .sidebarParent{background-color:#398CF2}.b-contacts-content.modal .b-view-content{position:absolute;top:0;bottom:60px;left:270px;right:0;overflow:hidden;overflow-y:auto;background-color:#fff;border-left:1px solid #ddd}.b-contacts-content.modal .b-view-content .content{-webkit-overflow-scrolling:touch}.b-contacts-content.modal .b-view-content .contactValueStatic{height:20px;line-height:20px;font-size:18px;display:inline-block;padding:5px 7px;color:#555;display:none}.b-contacts-content.modal .b-view-content.read-only .contactValueStatic{display:inline-block}.b-contacts-content.modal .b-view-content.read-only .contactValueInput{display:none}.b-contacts-content.modal .b-view-content .b-contact-view-desc{text-align:center;font-size:24px;line-height:30px;padding-top:120px;color:#999}.b-contacts-content.modal .b-view-content .top-part{padding-top:20px}.b-contacts-content.modal .b-view-content .property-line{margin-bottom:5px}.b-contacts-content.modal .b-view-content .top-row{padding:10px 0;height:30px}.b-contacts-content.modal .b-view-content .add-link{padding-top:5px;padding-left:7px;font-size:12px;color:#aaa}.b-contacts-content.modal .b-view-content .contactValueStatic{font-size:18px;display:none}.b-contacts-content.modal .b-view-content .contactValueInput{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-color:#fff;font-size:18px;width:250px}.b-contacts-content.modal .b-view-content .contactValueInput:hover{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-color:#ccc}.b-contacts-content.modal .b-view-content .contactValueInput:focus{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-color:#999}.b-contacts-content.modal .b-view-content .hasError .contactValueInput{color:#ee5f5b;border-color:#ee5f5b}.b-contacts-content.modal .b-view-content .e-read-only-sign{display:none;position:absolute;top:20px;right:40px}.b-contacts-content.modal .b-view-content .e-share-sign{position:absolute;top:60px;right:20px;cursor:pointer}.b-contacts-content.modal .b-view-content .button-save-contact{position:absolute;top:20px;right:20px}.b-contacts-content.modal .b-view-content.read-only .e-read-only-sign{display:inline-block}.b-contacts-content.modal .b-view-content.read-only .e-share-sign{display:none}.b-contacts-content.modal .b-view-content.read-only .button-save-contact{display:none}.b-contacts-content .e-contact-item{position:relative;height:55px;max-height:60px;line-height:22px;overflow:hidden;cursor:pointer;margin:0;border:0 solid transparent;z-index:100}.b-compose.modal{width:850px;margin:10px auto}.b-compose.modal .modal-body{overflow:auto;padding:0}.b-compose .b-header-toolbar{height:40px;background-color:#aaa;color:#fff;background-color:#333;background-color:rgba(0,0,0,.8)!important}.b-compose .b-header-toolbar .close{color:#fff;opacity:1;filter:alpha(opacity=100)}.b-compose .b-header-toolbar .btn.disable.button-delete{visibility:hidden}.b-compose .b-header-toolbar .button-save,.b-compose .b-header-toolbar .button-delete,.b-compose .b-header-toolbar .saved-text{margin-left:8px}.b-compose .b-header-toolbar .disable.button-delete{margin-left:0}.b-compose .b-header{padding:10px;border-bottom:1px solid #333;background-color:#eee;color:#333}.b-compose .b-header .e-identity{font-weight:700}.b-compose .b-header .e-identity.multiply{cursor:pointer;border-bottom:1px dashed #555}.b-compose .b-header .e-row{line-height:30px}.b-compose .b-header .e-label{text-align:right;width:1%;min-width:70px;padding:6px 10px}.b-compose .b-header .e-value{padding:2px 0}.b-compose .b-header .e-value textarea,.b-compose .b-header .e-value input[type=text]{width:98%}.b-compose .b-header .e-value textarea{height:40px}.b-compose .b-header .error-desc{color:red}.b-compose .b-header .b-appachments .b-attacment{line-height:20px;padding-bottom:10px}.b-compose .b-header .b-appachments .b-attacment-in-process{line-height:20px;padding-bottom:10px}.b-compose .b-header .b-appachments .b-attacment-in-process .uploading{display:none;padding-right:5px}.b-compose .b-header .b-appachments .b-attacment-in-process.uploading .uploading{display:inline}.b-compose .b-header .b-appachments .b-attacment-in-process .upload-progress{font-weight:700}.b-compose .b-header .b-appachments .b-attacment-in-process.error .namedStr{color:#888}.b-compose .b-header .b-appachments .b-attacment-in-process .error{color:red}.b-compose .b-header .b-appachments .b-attacment-in-process .close{float:left;padding-right:13px}.b-compose .b-attachment-button{display:inline-block}.b-compose .b-attachment-place{position:absolute;height:120px;border:2px #777 dashed;line-height:119px;text-align:center;background-color:#fff;z-index:300;left:20px;right:20px;font-size:24px}.b-compose .b-attachment-place.drag-and-drop-over{background:#777;color:#fff}.b-compose .editorTextArea,.b-compose .editorHtmlArea{background:#fff;color:#000;font-family:Arial,Verdana,Geneva,sans-serif;font-size:14px}.b-compose .editorTextArea table,.b-compose .editorHtmlArea table{border-collapse:separate}.b-compose .editorTextArea blockquote,.b-compose .editorHtmlArea blockquote{border:0;border-left:solid 2px #444;margin-left:5px;margin:5px 0;padding-left:5px}.b-admin-left .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px 0 0 8px}.b-admin-left .b-content{position:absolute;top:68px;bottom:8px;left:0;right:0;overflow:hidden}.b-admin-left .b-content .content{-webkit-overflow-scrolling:touch}.b-admin-menu .e-item{overflow:hidden;text-decoration:none;outline:0}.b-admin-menu .e-link{position:relative;display:block;height:30px;line-height:29px;cursor:pointer;font-size:18px;z-index:1;cursor:default;background-color:transparent;color:#888;padding:4px 10px;outline:0;text-decoration:none}.b-admin-menu .e-item.selectable .e-link{cursor:pointer}.b-admin-menu .e-item.selectable:hover .e-link,.b-admin-menu .e-item.selectable.selected .e-link{background-color:#555;color:#fff}.b-admin-right .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px;color:#fff}.b-admin-right .b-content{position:absolute;top:58px;bottom:8px;left:0;right:8px;overflow-y:auto;z-index:2;background-color:#fff;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.b-admin-right .b-content .content{-webkit-overflow-scrolling:touch}.b-admin-right .b-settings-content{padding:20px}.b-admin-general .flag-selector{padding-top:5px}.b-admin-general .flag-name{border-bottom:1px dashed #555}.b-admin-domains .process-place{width:600px;padding:14px 0;text-align:center;visibility:hidden}.b-admin-domains-list-table{width:600px}.b-admin-domains-list-table .e-item .e-action{cursor:pointer}.b-admin-domains-list-table .e-item .domain-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.b-admin-domains-list-table .e-item.disabled .domain-name{color:#bbb}.b-admin-domains-list-table .e-item .button-delete{margin-right:15px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-admin-domains-list-table .e-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-admin-domains-list-table .e-item .delete-domain,.b-admin-domains-list-table .e-item .disable-domain{cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.b-admin-domains-list-table .e-item.disabled .disable-domain{opacity:.5;filter:alpha(opacity=50)}.b-admin-domains-list-table .e-item .delete-domain:hover,.b-admin-domains-list-table .e-item .disable-domain:hover{opacity:1;filter:alpha(opacity=100)}.b-domain-content.modal{width:645px}.b-domain-content .modal-header{background-color:#fff}.b-domain-content .modal-body{position:relative;overflow:hidden;width:1300px;height:390px}.b-domain-content.domain-edit .modal-body{height:350px}.b-domain-content.domain-white-list-page .modal-body{left:-640px}.b-domain-content .error-desc{color:red;margin-left:10px}.b-domain-content .testing-done .imap-header,.b-domain-content .testing-done .smtp-header{color:green;font-weight:700}.b-domain-content .testing-error .imap-header,.b-domain-content .testing-error .smtp-header{color:red}.b-admin-packages .alert{width:650px}.b-admin-packages .process-place{visibility:hidden}.b-admin-packages-list-table{width:700px}.b-admin-packages-list-table .e-item .package-img{font-size:12px;margin-right:2px}.b-admin-packages-list-table .e-item .package-name.core{font-weight:700}.b-admin-packages-list-table .e-item .package-desc{color:#999;font-size:12px}.b-admin-packages-list-table .e-item .e-action{cursor:pointer}.b-admin-packages-list-table .e-item .package-release-parent,.b-admin-packages-list-table .e-item .package-actions-parent{text-align:center}.b-admin-packages-list-table .e-item .package-actions-parent{vertical-align:middle}.b-admin-plugins .process-place{visibility:hidden}.b-admin-plugins-list-table.disabled{opacity:.5;filter:alpha(opacity=50);background-color:#eee}.b-admin-plugins-list-table .e-item .e-action{cursor:pointer}.b-admin-plugins-list-table .e-item .plugin-img{font-size:12px;margin-right:2px}.b-admin-plugins-list-table .e-item.disabled .plugin-img,.b-admin-plugins-list-table .e-item.disabled .plugin-name{color:#bbb}.b-admin-plugins-list-table .e-item.disabled .disable-plugin{opacity:.5;filter:alpha(opacity=50)}.b-admin-plugin-property .help-block{margin-bottom:5px}.b-plugin-content.modal{width:660px}.b-plugin-content.modal .modal-body{overflow:auto}.b-plugin-content .modal-header{background-color:#fff}.b-plugin-content .information{display:inline-block;background-color:#ddd;border-radius:10px;cursor:pointer;height:25px;width:30px;text-align:center;padding-top:5px}.b-plugin-content textarea{width:400px;height:50px}.popups .b-activate-content{width:700px}.popups .b-activate-content .modal-header{background-color:#fff}.popups .b-activate-content .help-inline{padding-left:0}.b-settins-left .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px 0 0 8px}.b-settins-left .b-content{position:absolute;top:68px;bottom:8px;left:0;right:0;overflow:hidden}.b-settins-left .b-content .content{-webkit-overflow-scrolling:touch}.b-settings-menu .e-item{overflow:hidden;text-decoration:none;outline:0}.b-settings-menu .e-link{position:relative;display:block;height:30px;line-height:29px;font-size:18px;z-index:1;cursor:default;background-color:transparent;color:#888;padding:4px 10px;outline:0;text-decoration:none}.b-settings-menu .e-item.selectable .e-link{cursor:pointer}.b-settings-menu .e-item.selectable:hover .e-link,.b-settings-menu .e-item.selectable.selected .e-link{background-color:#555;color:#fff}.b-settins-right .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px 5px;color:#fff}.b-settins-right .b-content{position:absolute;top:58px;bottom:8px;left:0;right:8px;overflow-y:auto;z-index:2;background-color:#fff;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.b-settins-right .b-content .content{-webkit-overflow-scrolling:touch}.b-settins-right .b-settings-content{padding:20px}.b-settings-general .notification-desc-denied{color:#999;display:none}.b-settings-general .denied-by-browser .notification-desc-denied{display:inline}.b-settings-general .denied-by-browser .notification-desc{color:#999}.b-settings-general .flag-selector{padding-top:5px}.b-settings-general .flag-name{border-bottom:1px dashed #555}.b-settings-accounts .process-place{text-align:center;width:600px;padding:14px 0}.b-settings-accounts .list-table{width:600px}.b-settings-accounts .list-table td{padding:4px 8px;line-height:30px}.b-settings-accounts .list-table .account-img{font-size:12px;margin-right:5px}.b-settings-accounts .list-table .account-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:22px;cursor:default}.b-settings-accounts .account-item .button-delete{margin-right:15px;margin-top:5px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-settings-accounts .account-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-settings-accounts .account-item .delete-account{cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.b-settings-identities .process-place{text-align:center;width:600px;padding:14px 0}.b-settings-identities .list-table{width:600px}.b-settings-identities .list-table td{padding:4px 8px;line-height:30px}.b-settings-identities .list-table .identity-img{font-size:12px;margin-right:5px}.b-settings-identities .list-table .identity-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:22px;cursor:pointer}.b-settings-identities .identity-item .e-action{cursor:pointer}.b-settings-identities .identity-item .button-delete{margin-right:15px;margin-top:5px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-settings-identities .identity-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-settings-identities .identity-item .delete-identity{cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.b-settings-folders{}.b-settings-folders.ignore-folder-subscribe .subscribe-folder,.b-settings-folders.ignore-folder-subscribe .unsubscribe-folder{display:none}.b-settings-folders .process-place{text-align:center;width:600px;padding:14px 0}.b-settings-folders .folders-list-error{width:550px;margin:10px 0}.b-settings-folders .list-table{width:600px}.b-settings-folders .list-table .e-action{cursor:pointer}.b-settings-folders .list-table td{padding:4px 8px;line-height:30px}.b-settings-folders .list-table .folder-padding{display:inline-block;width:0}.b-settings-folders .list-table .folder-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-left:7px;line-height:22px;cursor:default}.b-settings-folders .list-table .folder-system-name{display:inline-block;line-height:22px;color:#999;cursor:default}.b-settings-folders .list-table .folder-name.can-be-edited:hover{border-bottom:1px dashed #333;cursor:pointer}.b-settings-folders .list-table .folder-name-input{border-width:1px;margin-bottom:0;margin-left:-4px}.b-settings-folders .folder-item.system .folder-name{font-weight:700}.b-settings-folders .folder-item .button-delete{margin-right:15px;margin-top:5px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-settings-folders .folder-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-settings-folders .folder-item .delete-folder,.b-settings-folders .folder-item .subscribe-folder,.b-settings-folders .folder-item .unsubscribe-folder{cursor:pointer;opacity:.6;filter:alpha(opacity=60)}.b-settings-folders .folder-item .unsubscribe-folder{opacity:.25;filter:alpha(opacity=25)}.b-settings-folders .folder-padding.deep-1{width:25px}.b-settings-folders .folder-padding.deep-2{width:40px}.b-settings-folders .folder-padding.deep-3{width:55px}.b-settings-folders .folder-padding.deep-4{width:70px}.b-settings-folders .folder-padding.deep-5{width:85px}.b-themes-list .e-item{display:inline-block;border:2px solid transparent;cursor:pointer;color:#000;background-color:#fff;padding:16px;margin:5px}.b-themes-list .e-item:hover{border:2px solid grey}.b-themes-list .e-item.selected{background-color:#eee;border:2px solid #000}.b-themes-list .e-item .e-image{width:100px;height:100px;border:1px solid #ddd}@keyframes highlight-folder-row{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1)}}@-moz-keyframes highlight-folder-row{0%{-moz-transform:scale(1)}50%{-moz-transform:scale(1.1)}100%{-moz-transform:scale(1)}}@-webkit-keyframes highlight-folder-row{0%{-webkit-transform:scale(1)}50%{-webkit-transform:scale(1.1)}100%{-webkit-transform:scale(1)}}@-webkit-keyframes textLoadingAnimationKeyFrame{0%{opacity:1}33%{opacity:0}100%{opacity:1}}@-moz-keyframes textLoadingAnimationKeyFrame{0%{opacity:1}33%{opacity:0}100%{opacity:1}}@keyframes textLoadingAnimationKeyFrame{0%{opacity:1}33%{opacity:0}100%{opacity:1}}@-webkit-keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@-moz-keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}.rl-anim.rgba.cssanimations.backgroundsize .e-strip-animation{-webkit-background-size:60px 60px;-moz-background-size:60px 60px;background-size:60px 60px;background-image:-webkit-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);-webkit-animation:animate-stripes 2s linear infinite;-moz-animation:animate-stripes 2s linear infinite;animation:animate-stripes 2s linear infinite}.rl-anim.csstransitions .b-settings-folders .folder-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-settings-accounts .account-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-settings-identities .identity-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-admin-domains .e-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-compose .button-delete{-webkit-transition:margin-left .2s linear;-moz-transition:margin-left .2s linear;-o-transition:margin-left .2s linear;transition:margin-left .2s linear}.rl-anim.cssanimations .b-folders .e-item .anim-action-class{-webkit-animation:highlight-folder-row .5s linear;-moz-animation:highlight-folder-row .5s linear;animation:highlight-folder-row .5s linear}.rl-anim.csstransitions .messageList .messageListItem{-webkit-transition:max-height 400ms ease;-moz-transition:max-height 400ms ease;-o-transition:max-height 400ms ease;transition:max-height 400ms ease}.rl-anim.csstransitions .messageList .listDragOver{-webkit-transition:all 400ms ease;-moz-transition:all 400ms ease;-o-transition:all 400ms ease;transition:all 400ms ease}.rl-anim.csstransitions .b-list-content .e-contact-item{-webkit-transition:max-height 400ms ease;-moz-transition:max-height 400ms ease;-o-transition:max-height 400ms ease;transition:max-height 400ms ease}.rl-anim.csstransitions .modal.b-domain-content .modal-body{-webkit-transition:left 500ms ease;-moz-transition:left 500ms ease;-o-transition:left 500ms ease;transition:left 500ms ease}.rl-anim.csstransitions .modal-open .popups .modal{-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transition:.3s all cubic-bezier(0.250,.460,.450,.940);-moz-transition:.3s all cubic-bezier(0.250,.460,.450,.940);-o-transition:.3s all cubic-bezier(0.250,.460,.450,.940);transition:.3s all cubic-bezier(0.250,.460,.450,.940);-webkit-transform:scale(0.9);-moz-transform:scale(0.9);-ms-transform:scale(0.9);-o-transform:scale(0.9);transform:scale(0.9)}.rl-anim .modal-open .popups .popup-active.modal{-webkit-transform:none;-moz-transform:none;-o-transform:none;transform:none}.rl-anim.cssanimations .b-compose.loading .b-header-toolbar{-webkit-background-size:60px 60px;-moz-background-size:60px 60px;background-size:60px 60px;background-image:-webkit-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);-webkit-animation:animate-stripes 2s linear infinite;-moz-animation:animate-stripes 2s linear infinite;animation:animate-stripes 2s linear infinite}.textLoadingAnimationD1,.textLoadingAnimationD2,.textLoadingAnimationD3{-webkit-animation:textLoadingAnimationKeyFrame 1s linear infinite 0s;-moz-animation:textLoadingAnimationKeyFrame 1s linear infinite 0s;animation:textLoadingAnimationKeyFrame 1s linear infinite 0s}.textLoadingAnimationD2{-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}.textLoadingAnimationD3{-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}.editorToolbar{position:relative;height:20px;margin-top:10px;line-height:19px}.editorToolbar.editorHideToolbar .editorToolbarButtom{display:none}.editorToolbar .editorSwitcher{display:inline-block;vertical-align:middle}.editorToolbar .editorToolbarButtom{display:inline-block;width:16px;height:16px;padding:3px}.editorToolbar .editorToolbarButtom a{display:inline-block;border:0;margin:0;padding:0;width:16px;height:16px;cursor:default;background:url(images/editor.png)}.editorToolbar .editorToolbarButtom a.bold{background-position:0 0}.editorToolbar .editorToolbarButtom a.italic{background-position:-16px 0}.editorToolbar .editorToolbarButtom a.underline{background-position:-32px 0}.editorToolbar .editorToolbarButtom a.strikethrough{background-position:-48px 0}.editorToolbar .editorToolbarButtom a.link{background-position:-64px 0}.editorToolbar .editorToolbarButtom a.unlink{background-position:-80px 0}.editorToolbar .editorToolbarButtom a.orderedlist{background-position:-96px 0}.editorToolbar .editorToolbarButtom a.unorderedlist{background-position:-112px 0}.editorToolbar .editorToolbarButtom a.image{background-position:-128px 0}.editorToolbar .editorToolbarButtom a.h1{background-position:0 -16px}.editorToolbar .editorToolbarButtom a.h2{background-position:-16px -16px}.editorToolbar .editorToolbarButtom a.h3{background-position:-32px -16px}.editorToolbar .editorToolbarButtom a.h4{background-position:-48px -16px}.editorToolbar .editorToolbarButtom a.h5{background-position:-64px -16px}.editorToolbar .editorToolbarButtom a.h6{background-position:-80px -16px}.editorToolbar .editorToolbarButtom a.subscript{background-position:-96px -16px}.editorToolbar .editorToolbarButtom a.superscript{background-position:-112px -16px}.editorToolbar .editorToolbarButtom a.indent{background-position:-128px -16px}.editorToolbar .editorToolbarButtom a.outdent{background-position:-144px -16px}.editorToolbar .editorToolbarButtom a.horizontalrule{background-position:-160px -16px}.editorToolbar .editorToolbarButtom a.p{background-position:-176px -16px}.editorToolbar .editorToolbarButtom a.justifyleft{background-position:0 -32px}.editorToolbar .editorToolbarButtom a.justifycenter{background-position:-16px -32px}.editorToolbar .editorToolbarButtom a.justifyright{background-position:-32px -32px}.editorToolbar .editorToolbarButtom a.increasefontsize{background-position:-48px -32px}.editorToolbar .editorToolbarButtom a.decreasefontsize{background-position:-64px -32px}.editorToolbar .editorToolbarButtom a.forecolor{background-position:-80px -32px}.editorToolbar .editorToolbarButtom a.backcolor{background-position:-80px -32px}.editorToolbar .editorToolbarButtom a.removeformat{background-position:-144px 0}.textAreaParent{padding:0}.textAreaParent .editorHtmlArea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:0!important;overflow:auto;overflow-y:scroll;font-family:arial,sans-serif;font-size:14px;line-height:16px;margin:0;padding:8px}.textAreaParent .editorHtmlArea ul{padding-left:40px}.textAreaParent .editorHtmlArea ul li{list-style-type:disc!important}.textAreaParent .editorHtmlArea ol{padding-left:40px}.textAreaParent .editorHtmlArea ol li{list-style-type:decimal!important}.textAreaParent .editorHtmlArea blockquote{border-left:solid 2px #444;margin-left:5px;padding-left:5px}.textAreaParent .editorHtmlArea img{vertical-align:bottom}.textAreaParent .editorHtmlArea.editorDragOver{background:#ffffef}.textAreaParent .editorTextArea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;border:0!important;width:100%;line-height:16px;margin:0;padding:8px;font-family:arial,sans-serif;font-size:14px;overflow:auto;overflow-y:scroll}.editorColorPicker .editorCpColors{float:left;margin:0;clear:both;width:128px;border:1px solid #000;backgroud:#000}.editorColorPicker .editorCpColors .editorCpColor{border:1px solid #fff;float:left;width:14px;height:14px}.editorSwitcher{color:#369;text-decoration:underline;cursor:pointer;float:right;padding-bottom:6px}.editorFontStylePicker .editorFpFonts{padding:5px;border:1px solid #000;background-color:#fff}.editorFontStylePicker .editorFpFonts .editorFpFont{padding:5px} \ No newline at end of file +* 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-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-autocomplete{position:absolute;top:0;left:0;cursor:default}.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-widget{font-family: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:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc;color:#222;font-weight:700}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #ccc;background:#eee;font-weight:400;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;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 #ccc;background:#eee;font-weight:400;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee;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:#fef1ec;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.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-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:2px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:2px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:2px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:2px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:hover,a:active{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.75em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}p,pre{margin:1em 0}pre,code,kbd,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:75%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-decoration,input[type=search]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@font-face{font-family:rainloop;src:url(fonts/rainloop.eot);src:url(fonts/rainloop.eot?#iefix) format("embedded-opentype"),url(fonts/rainloop.woff) format("woff"),url(fonts/rainloop.ttf) format("truetype"),url(fonts/rainloop.svg#rainloop) format("svg");font-weight:400;font-style:normal}[data-icon]:before{font-family:rainloop!important;content:attr(data-icon);font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class^=icon-]:before,[class*=" icon-"]:before{font-family:rainloop!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-arrows-in:before{content:"\e000"}.icon-arrows-out:before{content:"\e001"}.icon-list:before{content:"\e002"}.icon-search:before{content:"\e003"}.icon-user:before{content:"\e004"}.icon-user-add:before{content:"\e005"}.icon-tags:before{content:"\e006"}.icon-paper-plane:before{content:"\e007"}.icon-reply:before{content:"\e008"}.icon-reply-all:before{content:"\e009"}.icon-forward:before{content:"\e00a"}.icon-info:before{content:"\e00b"}.icon-right-dir:before{content:"\e00c"}.icon-down-dir:before{content:"\e00d"}.icon-image:before{content:"\e00e"}.icon-print:before{content:"\e00f"}.icon-calendar:before{content:"\e010"}.icon-cog:before{content:"\e011"}.icon-wrench:before{content:"\e012"}.icon-rocket:before{content:"\e013"}.icon-fire:before{content:"\e014"}.icon-purchase:before{content:"\e015"}.icon-apple:before{content:"\e016"}.icon-dropbox:before{content:"\e017"}.icon-skype:before{content:"\e018"}.icon-creative-commons:before{content:"\e019"}.icon-ellipsis:before{content:"\e01a"}.icon-left:before{content:"\e01b"}.icon-right:before{content:"\e01c"}.icon-down:before{content:"\e01d"}.icon-right-mini:before{content:"\e01e"}.icon-down-mini:before{content:"\e01f"}.icon-up:before{content:"\e020"}.icon-star-empty:before{content:"\e021"}.icon-star:before{content:"\e022"}.icon-at:before{content:"\e023"}.icon-list-add:before{content:"\e024"}.icon-google:before{content:"\e025"}.icon-google-plus:before{content:"\e026"}.icon-twitter:before{content:"\e027"}.icon-youtube:before{content:"\e028"}.icon-warning:before{content:"\e029"}.icon-warning-alt:before{content:"\e02a"}.icon-power:before{content:"\e02b"}.icon-plus:before{content:"\e02c"}.icon-ok:before{content:"\e02d"}.icon-remove:before{content:"\e02e"}.icon-file:before{content:"\e02f"}.icon-file-code:before{content:"\e030"}.icon-file-chart-graph:before{content:"\e031"}.icon-file-zip:before{content:"\e032"}.icon-file-music:before{content:"\e033"}.icon-file-text:before{content:"\e034"}.icon-file-bookmark:before{content:"\e035"}.icon-file-image:before{content:"\e036"}.icon-file-analytics:before{content:"\e037"}.icon-file-certificate:before{content:"\e038"}.icon-attachment:before{content:"\e039"}.icon-file-excel:before{content:"\e03a"}.icon-file-movie:before{content:"\e03b"}.icon-folder-add:before{content:"\e03c"}.icon-folder:before{content:"\e03d"}.icon-floppy:before{content:"\e03e"}.icon-eye:before{content:"\e03f"}.icon-facebook-alt:before{content:"\e040"}.icon-facebook:before{content:"\e041"}.icon-bolt:before{content:"\e042"}.icon-download:before{content:"\e043"}.icon-upload:before{content:"\e044"}.icon-bug:before{content:"\e045"}.icon-popup:before{content:"\e048"}.icon-checkbox-checked:before{content:"\e049"}.icon-checkbox-unchecked:before{content:"\e04a"}.icon-checkbox-partial:before{content:"\e04b"}.icon-radio-checked:before{content:"\e04c"}.icon-radio-unchecked:before{content:"\e04d"}.icon-google-drive:before{content:"\e04e"}.icon-github:before{content:"\e04f"}.icon-telephone:before{content:"\e050"}.icon-mobile:before{content:"\e051"}.icon-pencil:before{content:"\e052"}.icon-trash:before{content:"\e053"}.icon-left-middle:before{content:"\e054"}.icon-right-middle:before{content:"\e055"}.icon-repeat:before{content:"\e056"}.icon-key:before{content:"\e057"}.icon-lock:before{content:"\e058"}.icon-home:before{content:"\e059"}.icon-address-book:before{content:"\e05a"}.icon-share:before{content:"\e05b"}.icon-suitcase:before{content:"\e05c"}.icon-new-sign:before{content:"\e05d"}.icon-spinner:before{content:"\e05e"}.icon-users:before{content:"\e05f"}.icon-earth:before{content:"\e060"}.icon-happy-smiley:before{content:"\e061"}.icon-mail:before{content:"\e062"}.nano{overflow :hidden!important}.nano .content{position :absolute;overflow :scroll;top :0;right :0;bottom :0;left :0;-webkit-overflow-scrolling:touch}.nano .content .content-wrapper{height:100%}.nano .content::-webkit-scrollbar{visibility:hidden}.has-scrollbar .content::-webkit-scrollbar{visibility:hidden}.nano-visibility-hidden::-webkit-scrollbar{visibility:hidden}.nano>.pane{background :none;position :absolute;width :5px;right :0;top :1px;bottom :1px;opacity :.01;filter:alpha(opacity=1);-webkit-transition :.4s;-moz-transition :.4s;-o-transition :.4s;transition :.4s;-moz-border-radius :5px;-webkit-border-radius :5px;border-radius :5px;z-index:10000;margin :2px}.nano>.pane2{background :none;position :absolute;height :5px;right :1px;left :1px;bottom :0;opacity :.01;filter:alpha(opacity=1);-webkit-transition :.4s;-moz-transition :.4s;-o-transition :.4s;transition :.4s;-moz-border-radius :5px;-webkit-border-radius :5px;border-radius :5px;z-index:10000;margin :2px}.nano>.pane>.slider{background-color:#999;background-color:rgba(0,0,0,.3);position :relative;margin :0;-moz-border-radius :3px;-webkit-border-radius :3px;border-radius :3px;width :5px}.nano>.pane2>.slider2{background-color:#999;background-color:rgba(0,0,0,.3);position :relative;margin :0;-moz-border-radius :3px;-webkit-border-radius :3px;border-radius :3px;height :5px}.nano:hover>.pane,.nano:hover>.pane2,.pane.active,.pane2.active,.pane.flashed,.pane2.flashed{visibility :visible\9;opacity :.99;filter:alpha(opacity=99)}.nano>.pane:hover,.nano>.pane.active{background-color:rgba(0,0,0,.15)}.nano>.pane2:hover,.nano>.pane2.active{background-color:rgba(0,0,0,.15)}.nano>.pane:hover>.slider,.nano>.pane.active>.slider{background-color:rgba(0,0,0,.4)}.nano>.pane2:hover>.slider2,.nano>.pane2.active>.slider2{background-color:rgba(0,0,0,.4)}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after,.mfp-arrow .mfp-b,.mfp-arrow .mfp-a{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after,.mfp-arrow .mfp-a{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before,.mfp-arrow .mfp-b{border-top-width:21px;border-bottom-width:21px}.mfp-arrow-left{left:0}.mfp-arrow-left:after,.mfp-arrow-left .mfp-a{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before,.mfp-arrow-left .mfp-b{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after,.mfp-arrow-right .mfp-a{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before,.mfp-arrow-right .mfp-b{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure{}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-ie7 .mfp-img{padding:0}.mfp-ie7 .mfp-bottom-bar{width:600px;left:50%;margin-left:-300px;margin-top:5px;padding-bottom:5px}.mfp-ie7 .mfp-container{padding:0}.mfp-ie7 .mfp-content{padding-top:44px}.mfp-ie7 .mfp-close{top:0;right:0;padding-top:0}.mfp-fade.mfp-bg{opacity:0;-webkit-transition:all .2s ease-out;-moz-transition:all .2s ease-out;transition:all .2s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade.mfp-wrap .mfp-content{opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out;-webkit-transform:translateX(-50px);-moz-transform:translateX(-50px);transform:translateX(-50px)}.mfp-fade.mfp-wrap.mfp-ready .mfp-content{opacity:1;-webkit-transform:translateX(0);-moz-transform:translateX(0);transform:translateX(0)}.mfp-fade.mfp-wrap.mfp-removing .mfp-content{opacity:0;-webkit-transform:translateX(50px);-moz-transform:translateX(50px);transform:translateX(50px)}.simple-pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.simple-pace-inactive{display:none}.simple-pace .simple-pace-progress{background-color:#939595;position:fixed;z-index:2000;top:0;left:0;height:3px;overflow:hidden;-webkit-transition:width .5s;-moz-transition:width .5s;-o-transition:width .5s;transition:width .5s}.simple-pace .simple-pace-progress-inner{position:absolute;top:0;left:0;right:-32px;bottom:0;background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,.3)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.3)),color-stop(0.75,rgba(255,255,255,.3)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.3) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.3) 50%,rgba(255,255,255,.3) 75%,transparent 75%,transparent);-webkit-background-size:32px 32px;-moz-background-size:32px 32px;-o-background-size:32px 32px;background-size:32px 32px;-webkit-animation:simple-pace-stripe-animation 500ms linear infinite;-moz-animation:simple-pace-stripe-animation 500ms linear infinite;-ms-animation:simple-pace-stripe-animation 500ms linear infinite;-o-animation:simple-pace-stripe-animation 500ms linear infinite;animation:simple-pace-stripe-animation 500ms linear infinite}@-webkit-keyframes simple-pace-stripe-animation{0%{-webkit-transform:none;transform:none}100%{-webkit-transform:translate(-32px,0);transform:translate(-32px,0)}}@-moz-keyframes simple-pace-stripe-animation{0%{-moz-transform:none;transform:none}100%{-moz-transform:translate(-32px,0);transform:translate(-32px,0)}}@-o-keyframes simple-pace-stripe-animation{0%{-o-transform:none;transform:none}100%{-o-transform:translate(-32px,0);transform:translate(-32px,0)}}@-ms-keyframes simple-pace-stripe-animation{0%{-ms-transform:none;transform:none}100%{-ms-transform:translate(-32px,0);transform:translate(-32px,0)}}@keyframes simple-pace-stripe-animation{0%{transform:none;transform:none}100%{transform:translate(-32px,0);transform:translate(-32px,0)}}.inputosaurus-container{background-color:#fff;border:1px solid #bcbec0;margin:0 5px 0 0;padding:0 3px;display :inline-block;cursor:text;font-size :14px;font-family :"Helvetica Neue",Helvetica,Arial,sans-serif}.inputosaurus-container li{display :block;float :left;overflow:hidden;margin :2px 2px 0;padding :2px 3px;white-space :nowrap;overflow :hidden;text-overflow:ellipsis;-o-text-overflow:ellipsis;-ms-text-overflow:ellipsis;background-color:#e5eff7;border:#a9cae4 solid 1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;color:#5b9bcd;-webkit-box-shadow:0 1px 0 rgba(255,255,255,.75) inset;-moz-box-shadow:0 1px 0 rgba(255,255,255,.75) inset;box-shadow:0 1px 0 rgba(255,255,255,.75) inset;line-height :20px;cursor:default}.inputosaurus-container li.inputosaurus-selected{background-color:#bdd6eb}.inputosaurus-container li a{font-size:16px;color:#5b9bcd;padding :1px;text-decoration :none;outline :none}.inputosaurus-container .inputosaurus-input{border:0;box-shadow:none;background-color:#fff;margin-top :3px}.inputosaurus-container .inputosaurus-input input{border:0;height :23px;font-size :14px;line-height :20px;color :#555;margin :0;outline :none;padding :0 0 1px 1px;width :25px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.inputosaurus-container .inputosaurus-input input:hover{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.inputosaurus-input-hidden{display:none}.flag-wrapper{width:24px;height:16px;display:inline-block}.flag{width:16px;height:11px;display:inline-block;background:url(flags.png) no-repeat}.flag.flag-en{background-position:-144px -154px}.flag.flag-en-us{background-position:-144px -154px}.flag.flag-en-gb{background-position:-240px -33px}.flag.flag-en-ca{background-position:-48px -22px}.flag.flag-nl,.flag.flag-nl-nl{background-position:-80px -110px}.flag.flag-pl,.flag.flag-pl-pl{background-position:-32px -121px}.flag.flag-ru,.flag.flag-ru-ru{background-position:-224px -121px}.flag.flag-ua,.flag.flag-ua-ua{background-position:-96px -154px}.flag.flag-de,.flag.flag-de-de{background-position:-80px -33px}.flag.flag-it,.flag.flag-it-it{background-position:-208px -66px}.flag.flag-is,.flag.flag-is-is{background-position:-192px -66px}.flag.flag-lv,.flag.flag-lv-lv{background-position:-112px -88px}.flag.flag-no,.flag.flag-nb,.flag.flag-nb-no{background-position:-96px -110px}.flag.flag-fr,.flag.flag-fr-fr,.flag.flag-fr-ca{background-position:-144px -44px}.flag.flag-es,.flag.flag-es-es,.flag.flag-es-la{background-position:-16px -44px}.flag.flag-ja,.flag.flag-jp,.flag.flag-ja-jp{background-position:-16px -77px}.flag.flag-ko-kr{background-position:-144px -77px}.flag.flag-pt,.flag.flag-pt-pt{background-position:-112px -121px}.flag.flag-pt-br{background-position:-192px -11px}.flag.flag-cn,.flag.flag-zh-tw,.flag.flag-zh-cn,.flag.flag-zh-hk{background-position:-208px -22px}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.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}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{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,.2);-webkit-box-shadow:0 1px 3px rgba(0,0,0,.1);-moz-box-shadow:0 1px 3px rgba(0,0,0,.1);box-shadow:0 1px 3px rgba(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;content:"";line-height:0}.row:after{clear:both}[class*=span]{float:left;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;content:"";line-height:0}.row-fluid:after{clear:both}.row-fluid [class*=span]{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;float:left;margin-left:2.127659574468085%;*margin-left:2.074468085106383%}.row-fluid [class*=span]:first-child{margin-left:0}.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;content:"";line-height:0}.container:after{clear:both}.container-fluid{padding-right:20px;padding-left:20px;*zoom:1}.container-fluid:before,.container-fluid:after{display:table;content:"";line-height:0}.container-fluid:after{clear:both}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:20px;font-weight:200;line-height:30px}small{font-size:85%}strong{font-weight:700}em{font-style:italic}cite{font-style:normal}.muted{color:#999}h1,h2,h3,h4,h5,h6{margin:10px 0;font-family:inherit;font-weight:700;line-height:1;color:inherit;text-rendering:optimizelegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-weight:400;line-height:1;color:#999}h1{font-size:36px;line-height:40px}h2{font-size:30px;line-height:40px}h3{font-size:24px;line-height:40px}h4{font-size:18px;line-height:20px}h5{font-size:14px;line-height:20px}h6{font-size:12px;line-height:20px}h1 small{font-size:24px}h2 small{font-size:18px}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}dl{margin-bottom:20px}dt,dd{line-height:20px}dt{font-weight:700}dd{margin-left:10px}.dl-horizontal dt{float:left;width:120px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:130px}hr{margin:20px 0;border:0;border-top:1px solid #eee;border-bottom:1px solid #fff}abbr[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:16px;font-weight:300;line-height:25px}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;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,.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}pre.prettyprint{margin-bottom:20px}pre code{padding:0;color:inherit;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:400;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:9px;font-size:14px;line-height:20px;color:#555;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}input,textarea{width:210px}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,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(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,.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(82,168,236,.6)}input[type=radio],input[type=checkbox]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;cursor:pointer}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;border:1px solid #bbb;background-color:#fff}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;background-color:#fcfcfc;border-color:#ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.025);box-shadow:inset 0 1px 2px rgba(0,0,0,.025);cursor:not-allowed}.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:18px;padding-left:18px}.radio input[type=radio],.checkbox input[type=checkbox]{float:left;margin-left:-18px}.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;content:"";line-height:0}.controls-row:after{clear:both}.controls-row [class*=span]{float:left}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>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;border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.warning .checkbox:focus,.control-group.warning .radio:focus,.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,.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(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>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;border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.error .checkbox:focus,.control-group.error .radio:focus,.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,.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(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>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;border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.control-group.success .checkbox:focus,.control-group.success .radio:focus,.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,.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(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}input:focus:required:invalid,textarea:focus:required:invalid,select:focus:required:invalid{color:#b94a48;border-color:#ee5f5b}input:focus:required:invalid:focus,textarea:focus:required:invalid:focus,select:focus:required: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;content:"";line-height:0}.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;*zoom:1;vertical-align:middle;padding-left:5px}.input-append,.input-prepend{margin-bottom:5px;font-size:0;white-space:nowrap}.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;font-size:14px;vertical-align:top;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 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:400;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{margin-left:-1px;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:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-append .add-on:last-child,.input-append .btn:last-child{-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 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 .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 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;*zoom:1;margin-bottom:0;vertical-align:middle}.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;content:"";line-height:0}.form-horizontal .control-group:after{clear:both}.form-horizontal .control-label{float:left;width:140px;padding-top:5px;text-align:right}.form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:160px;*margin-left:0}.form-horizontal .controls:first-child{*padding-left:160px}.form-horizontal .help-block{margin-top:10px;margin-bottom:0}.form-horizontal .form-actions{padding-left:160px}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:700}.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-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{-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{-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 tfoot:last-child tr:last-child td:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px;-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 tfoot:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px}.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-right-topleft: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 [class*=span],.row-fluid table [class*=span]{display:table-cell;float:none;margin-left:0}table .span1{float:none;width:44px;margin-left:0}table .span2{float:none;width:124px;margin-left:0}table .span3{float:none;width:204px;margin-left:0}table .span4{float:none;width:284px;margin-left:0}table .span5{float:none;width:364px;margin-left:0}table .span6{float:none;width:444px;margin-left:0}table .span7{float:none;width:524px;margin-left:0}table .span8{float:none;width:604px;margin-left:0}table .span9{float:none;width:684px;margin-left:0}table .span10{float:none;width:764px;margin-left:0}table .span11{float:none;width:844px;margin-left:0}table .span12{float:none;width:924px;margin-left:0}table .span13{float:none;width:1004px;margin-left:0}table .span14{float:none;width:1084px;margin-left:0}table .span15{float:none;width:1164px;margin-left:0}table .span16{float:none;width:1244px;margin-left:0}table .span17{float:none;width:1324px;margin-left:0}table .span18{float:none;width:1404px;margin-left:0}table .span19{float:none;width:1484px;margin-left:0}table .span20{float:none;width:1564px;margin-left:0}table .span21{float:none;width:1644px;margin-left:0}table .span22{float:none;width:1724px;margin-left:0}table .span23{float:none;width:1804px;margin-left:0}table .span24{float:none;width:1884px;margin-left:0}.table tbody tr.success td{background-color:#dff0d8}.table tbody tr.error td{background-color:#f2dede}.table tbody tr.info td{background-color:#d9edf7}.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,.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,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(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 a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:20px;color:#333;white-space:nowrap}.dropdown-menu li>a:hover,.dropdown-menu li>a:focus,.dropdown-submenu:hover>a{text-decoration:none;color:#fff;background-color:#08c;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{color:#fff;text-decoration:none;outline:0;background-color:#08c;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 .disabled>a,.dropdown-menu .disabled>a:hover{color:#999}.dropdown-menu .disabled>a:hover{text-decoration:none;background-color:transparent;cursor:default}.open{*z-index:1000}.open>.dropdown-menu{display:block}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000;content:"\2191"}.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;-moz-border-radius:0 6px 6px;border-radius:0 6px 6px}.dropdown-submenu:hover .dropdown-menu{display:block}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#ccc;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#fff}.dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px}.typeahead{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,.05);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(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;overflow:visible \9;-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:700;line-height:20px;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover{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;*zoom:1;padding:4px 14px;margin-bottom:0;font-size:14px;line-height:20px;*line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);border:1px solid #bbb;*border:0;border-bottom-color:#a2a2a2;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.btn:hover,.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{color:#333;text-decoration:none;background-color:#e6e6e6;*background-color:#d9d9d9;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-color:#e6e6e6;background-color:#d9d9d9 \9;background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.btn.disabled,.btn[disabled]{cursor:default;background-color:#e6e6e6;background-image:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-large{padding:9px 14px;font-size:16px;line-height:normal;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.btn-large [class^=icon-]{margin-top:2px}.btn-small{padding:3px 9px;font-size:12px;line-height:18px}.btn-small [class^=icon-]{margin-top:0}.btn-mini{padding:2px 6px;font-size:11px;line-height:16px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.btn-block+.btn-block{margin-top:5px}.btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255,255,255,.75)}.btn{border-color:#c5c5c5;border-color:rgba(0,0,0,.15) rgba(0,0,0,.15) rgba(0,0,0,.25)}.btn-primary{color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#006dcc;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-primary:hover,.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,.25);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);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-warning:hover,.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,.25);background-color:#da4f49;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-danger:hover,.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,.25);background-color:#5bb75b;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-success:hover,.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,.25);background-color:#49afcd;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-info:hover,.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,.25);background-color:#363636;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222 #222 #000;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);*background-color:#222;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.btn-inverse:hover,.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{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link{border-color:transparent;cursor:pointer;color:#08c;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-link:hover{color:#005580;text-decoration:underline;background-color:transparent}.btn-group{position:relative;font-size:0;white-space:nowrap;*margin-left:.3em}.btn-group:first-child{*margin-left:0}.btn-group+.btn-group{margin-left:5px}.btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px}.btn-toolbar .btn-group{display:inline-block;*display:inline;*zoom:1}.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{font-size:14px}.btn-group>.btn-mini{font-size:11px}.btn-group>.btn-small{font-size:12px}.btn-group>.btn-large{font-size:16px}.btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px}.btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius: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-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125),inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px}.btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px}.btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px}.btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px}.btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(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-mini .caret,.btn-small .caret,.btn-large .caret{margin-top:6px}.btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px}.dropup .btn-large .caret{border-bottom:5px solid #000;border-top:0}.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;width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.btn-group-vertical .btn+.btn{margin-left:0;margin-top:-1px}.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,.5);background-color:#fcf8e3;border:1px solid #fbeed5;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#c09853}.alert h4{margin:0}.alert .close{position:relative;top:-2px;right:-21px;line-height:20px}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#468847}.alert-danger,.alert-error{background-color:#f2dede;border-color:#eed3d7;color:#b94a48}.alert-info{background-color:#d9edf7;border-color:#bce8f1;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}.modal-open .dropdown-menu{z-index:2050}.modal-open .dropdown.open{*z-index:2050}.modal-open .popover{z-index:2060}.modal-open .tooltip{z-index:2080}.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:50%;left:50%;z-index:1050;overflow:auto;width:560px;margin:-250px 0 0 -280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.3);*border:1px solid #999;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;-webkit-box-shadow:0 3px 7px rgba(0,0,0,.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,.3);box-shadow:0 3px 7px rgba(0,0,0,.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box}.modal.fade{-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;top:-25%}.modal.fade.in{top:50%}.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{overflow-y:auto;max-height:400px;padding:15px}.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;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;padding:5px;font-size:11px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.8;filter:alpha(opacity=80)}.tooltip.top{margin-top:-3px}.tooltip.right{margin-left:3px}.tooltip.bottom{margin-top:3px}.tooltip.left{margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#eee;text-align:center;text-decoration:none;background-color:#333;-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-width:5px 5px 0;border-top-color:#333}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#333}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#333}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#333}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;width:236px;padding:1px;background-color:#fff;-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(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,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-bottom:10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-right:10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;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-content{padding:9px 14px}.popover-content p,.popover-content ul,.popover-content ol{margin-bottom:0}.popover .arrow,.popover .arrow:after{position:absolute;display:inline-block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow:after{content:"";z-index:-1}.popover.top .arrow{bottom:-10px;left:50%;margin-left:-10px;border-width:10px 10px 0;border-top-color:#fff}.popover.top .arrow:after{border-width:11px 11px 0;border-top-color:rgba(0,0,0,.25);bottom:-1px;left:-11px}.popover.right .arrow{top:50%;left:-10px;margin-top:-10px;border-width:10px 10px 10px 0;border-right-color:#fff}.popover.right .arrow:after{border-width:11px 11px 11px 0;border-right-color:rgba(0,0,0,.25);bottom:-11px;left:-1px}.popover.bottom .arrow{top:-10px;left:50%;margin-left:-10px;border-width:0 10px 10px;border-bottom-color:#fff}.popover.bottom .arrow:after{border-width:0 11px 11px;border-bottom-color:rgba(0,0,0,.25);top:-1px;left:-11px}.popover.left .arrow{top:50%;right:-10px;margin-top:-10px;border-width:10px 0 10px 10px;border-left-color:#fff}.popover.left .arrow:after{border-width:11px 0 11px 11px;border-left-color:rgba(0,0,0,.25);bottom:-11px;right:-1px}.label,.badge{font-size:11.844px;font-weight:700;line-height:14px;color:#fff;vertical-align:baseline;white-space:nowrap;text-shadow:0 -1px 0 rgba(0,0,0,.25);background-color:#999}.label{padding:1px 4px 2px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.badge{padding:1px 9px 2px;-webkit-border-radius:9px;-moz-border-radius:9px;border-radius:9px}a.label:hover,a.badge:hover{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{overflow:hidden;height:20px;margin-bottom:20px;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;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.progress .bar{width:0;height:100%;color:#fff;float:left;font-size:12px;text-align:center;text-shadow:0 -1px 0 rgba(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,.15);-moz-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(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,.15),inset 0 -1px 0 rgba(0,0,0,.15);-moz-box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 1px 0 0 rgba(0,0,0,.15),inset 0 -1px 0 rgba(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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.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,.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,.15)),color-stop(0.75,rgba(255,255,255,.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.pull-right{float:right}.pull-left{float:left}.hide{display:none}.show{display:block}.invisible{visibility:hidden}.affix{position:fixed}[class^=icon-],[class*=" icon-"]{display:inline-block;width:16px;height:16px;line-height:17px;font-size:16px;vertical-align:text-top}.icon-folder,.icon-folder-add,.icon-list{line-height:18px;font-size:18px;margin-top:-2px;margin-left:-2px}.iconsize24{line-height:24px;font-size:24px}.icon-white,.nav>.active>a>[class^=icon-],.nav>.active>a>[class*=" icon-"]{color:#fff}.g-ui-menu .e-item:hover [class^=icon-],.g-ui-menu .e-item:hover [class*=" icon-"]{color:#fff}.icon-none{background-image:none!important}.icon-checkbox-checked,.icon-checkbox-unchecked,.icon-checkbox-partial,.icon-radio-checked,.icon-radio-unchecked{cursor:pointer;color:#555;font-size:1em}.icon-checkbox-checked:hover,.icon-checkbox-unchecked:hover,.icon-checkbox-partial:hover,.icon-radio-checked:hover,.icon-radio-unchecked:hover,.icon-checkbox-checked:active,.icon-checkbox-unchecked:active,.icon-checkbox-partial:active,.icon-radio-checked:active,.icon-radio-unchecked:active{color:#000}.icon-white.icon-checkbox-checked,.icon-white.icon-checkbox-unchecked,.icon-white.icon-checkbox-partial,.icon-white.icon-radio-checked,.icon-white.icon-radio-unchecked{color:#eee}.icon-white.icon-checkbox-checked:hover,.icon-white.icon-checkbox-unchecked:hover,.icon-white.icon-checkbox-partial:hover,.icon-white.icon-radio-checked:hover,.icon-white.icon-radio-unchecked:hover,.icon-white.icon-checkbox-checked:active,.icon-white.icon-checkbox-unchecked:active,.icon-white.icon-checkbox-partial:active,.icon-white.icon-radio-checked:active,.icon-white.icon-radio-unchecked:active{color:#fff}.denied-by-browser{cursor:default}.denied-by-browser .icon-checkbox-checked,.denied-by-browser icon-checkbox-unchecked{cursor:default}.right-mini,.down-mini{width:16px;line-height:20px}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@-moz-keyframes rotation{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(359deg)}}@keyframes rotation{from{transform:rotate(0deg)}to{transform:rotate(359deg)}}.icon-spinner{width:16px;height:16px}.icon-spinner:before{font-size:16px;line-height:100%}html.no-cssanimations .icon-spinner{background-image:url(images/sync.png);background-repeat:no-repeat;font-family:Arial}html.no-cssanimations .icon-spinner:before{content:""}html.no-cssanimations .icon-spinner.animated{background-image:url(images/sync.gif)}html.cssanimations .icon-spinner.animated{-webkit-animation:rotation 1s infinite linear;-moz-animation:rotation 1s infinite linear;animation:rotation 1s infinite linear}body{background-color:transparent}label{cursor:pointer}.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}.legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate}.input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}select{width:223px}.btn-small.btn-small-small{padding:3px 9px;font-size:11px;line-height:11px}.btn.btn-ellipsis{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.btn.btn-narrow{padding-left:12px;padding-right:12px}.dropdown-menu{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.btn{-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background-image:none;text-shadow:0 1px 0 #fff}.btn.disabled,.btn[disabled]{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}html.rgba.textshadow .btn.btn-danger,html.rgba.textshadow .btn.btn-success,html.rgba.textshadow .btn.btn-primary{text-shadow:0 1px 0 rgba(0,0,0,.3)}.btn-toolbar{margin-top:0;margin-bottom:0}.dropdown-menu{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.tooltip{font-size:14px}.tooltip.in{opacity:1;filter:alpha(opacity=100)}.tooltip .tooltip-big{font-size:18px;padding:0 10px}.tooltip-inner{padding:5px 10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.btn-group>.btn:first-child{-webkit-border-top-left-radius:2px;-moz-border-radius-topleft:2px;border-top-left-radius:2px;-webkit-border-bottom-left-radius:2px;-moz-border-radius-bottomleft:2px;border-bottom-left-radius:2px}.btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:2px;-moz-border-radius-topright:2px;border-top-right-radius:2px;-webkit-border-bottom-right-radius:2px;-moz-border-radius-bottomright:2px;border-bottom-right-radius:2px}.btn-group>.btn.large:first-child{-webkit-border-top-left-radius:2px;-moz-border-radius-topleft:2px;border-top-left-radius:2px;-webkit-border-bottom-left-radius:2px;-moz-border-radius-bottomleft:2px;border-bottom-left-radius:2px}.btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:2px;-moz-border-radius-topright:2px;border-top-right-radius:2px;-webkit-border-bottom-right-radius:2px;-moz-border-radius-bottomright:2px;border-bottom-right-radius:2px}textarea,input[type=text],input[type=password],input[type=email],input[type=search]{border:1px solid #ccc}textarea:focus,input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,input[type=search]:focus{background-color:#fff;border:1px solid #999;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}input[type=text],input[type=password],input[type=email],input[type=search]{height:20px;line-height:20px}select{border:1px solid #ccc}.alert a{text-decoration:underline}.alert.alert-null-left-margin{margin-left:0}.alert.alert-error a{color:#b94a48}html.no-rgba .modal{border-width:0!important}.modal-backdrop,.modal-backdrop.fade.in{opacity:.1;filter:alpha(opacity=10)}.popups{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1100;overflow:auto}.popups .modal{position:static;z-index:1101;margin:5% auto;background-color:transparent;overflow:hidden;-webkit-box-shadow:0 5px 80px rgba(0,0,0,.3);-moz-box-shadow:0 5px 80px rgba(0,0,0,.3);box-shadow:0 5px 80px rgba(0,0,0,.3)}.popups .modal .modal-body{background-color:#fff;max-height:none}.modal.loginContent .modal-body,.modal.loginAdminContent .modal-body{background-color:transparent!important}.picker.modal-dialog-bg,.picker.picker-dialog-bg{z-index:2000!important}.picker.modal-dialog,.picker.picker-dialog{z-index:2001!important}.control-label.remove-padding-top{padding-top:0}.inputosaurus-container{width:99%;line-height:20px;padding:2px;border:1px solid #ccc;border-radius:3px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(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}.inputosaurus-container li{max-width:500px;background-color:#eee;border:1px solid #aaa;line-height:18px;padding:2px 15px 2px 5px;margin:2px;color:#555;position:relative}.inputosaurus-container li a{color:#999;font-size:12px;position:absolute;top:1px;right:2px}.inputosaurus-container li a:hover{color:#666}.inputosaurus-container li span{padding-right:3px}.inputosaurus-container li.inputosaurus-required{padding-rigth:5px}.inputosaurus-container li.inputosaurus-selected{background-color:#ddd}.inputosaurus-container .inputosaurus-input{margin:1px 10px 1px 0;height:22px}.inputosaurus-container .inputosaurus-input input{border:0;height:21px;padding-left:0}.ui-autocomplete{z-index:2000}.inputosaurus-fake-span{position:absolute;top:0;left:-5000px}.g-ui-user-select-none{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none;-webkit-touch-callout:none}.g-ui-clearfix{*zoom:1}.g-ui-clearfix:before,.g-ui-clearfix:after{display:table;content:"";line-height:0}.g-ui-clearfix:after{clear:both}.g-ui-link{color:#369;text-decoration:underline;cursor:pointer}.g-ui-min-height-300{min-height:300px}.g-ui-absolute-reset{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0}.g-ui-menu{max-height:400px;max-width:300px;overflow-y:auto;overflow-x:hidden}.g-ui-menu .e-link{text-decoration:none;cursor:pointer}.g-ui-menu .e-item.selected>.e-link{background-color:#eee}.g-ui-menu .e-item>.e-link:hover{background-color:#555;background-image:none;color:#fff}.g-ui-menu .e-item.disable>.e-link{cursor:not-allowed;background-color:#fff;background-image:none;color:grey}.g-ui-menu .e-item.disable [class^=icon-]{color:grey}.g-ui-table{display:table;width:100%}.g-ui-table .e-row{display:table-row}.g-ui-table .e-cell{display:table-cell;vertical-align:top;text-align:left}.g-ui-height-100proc{height:100%}.g-ui-resizable-delimiter-highlight{border:0;border-right:6px solid #aaa}.e-pagenator .e-page{display:inline-block;color:#999;text-decoration:none;font-size:24px;padding:3px;cursor:pointer}.e-pagenator .e-page:hover .e-page-number{color:#555}.e-pagenator .e-page.current .e-page-number{font-size:28px;color:#333;border-bottom:2px solid #000}html.rgba .g-ui-resizable-delimiter-highlight{border-right-color:rgba(0,0,0,.2)}.settings-saved-trigger{display:inline-block;line-height:17px;font-size:16px}.settings-saved-trigger .animated{color:green}.settings-saved-trigger .success{color:green;-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;opacity:0;filter:alpha(opacity=0)}.settings-saved-trigger .error{color:red;-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear;opacity:0;filter:alpha(opacity=0)}.settings-saved-trigger .visible{opacity:1;filter:alpha(opacity=100)}.settings-saved-trigger-input.success{border-color:green!important;-webkit-transition:border-color .5s linear;-moz-transition:border-color .5s linear;-o-transition:border-color .5s linear;transition:border-color .5s linear}.settings-saved-trigger-input.error{border-color:red!important;-webkit-transition:border-color .5s linear;-moz-transition:border-color .5s linear;-o-transition:border-color .5s linear;transition:border-color .5s linear}html{margin:0;padding:0;overflow:hidden;font-family:Arial,Verdana,Geneva,sans-serif}body{margin:0;padding:0;overflow:hidden;background-color:#e3e3e3;font-family:Arial,Verdana,Geneva,sans-serif;-webkit-touch-callout:none;position:absolute;top:0;left:0;bottom:0;right:0}textarea{resize:none}option:disabled{color:#aaa;cursor:not-allowed}body:before{content:"";position:fixed;top:-10px;left:0;width:100%;height:8px;z-index:100;-webkit-box-shadow:0 0 10px rgba(0,0,0,.6);-moz-box-shadow:0 0 10px rgba(0,0,0,.6);box-shadow:0 0 10px rgba(0,0,0,.6)}*{outline:0}select:focus{outline:0}html.mobile *{-webkit-tap-highlight-color:rgba(0,0,0,0)}#rl-content{height:100%;width:100%}#rl-center{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;min-width:900px;min-height:400px}#rl-top{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;bottom:auto;z-index:2}#rl-bottom{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;top:auto;z-index:1}#rl-left{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;right:auto;width:100%}#rl-right{position:absolute;top:0;right:0;bottom:0;left:0;padding:0;margin:0;border:0;z-index:0;z-index:1}#rl-resizer-right{position:absolute;top:0;bottom:0;right:0;left:35%}#rl-resizer-left{position:absolute;top:0;bottom:0;left:0;right:65%;min-width:350px}#rl-top-resizer-right{position:absolute;top:0;bottom:0;right:0;left:230px}#rl-top-resizer-left{position:absolute;top:0;bottom:0;left:0;right:auto;min-width:120px}html.mobile #rl-top-resizer-left{width:170px}html.mobile #rl-top-resizer-right{left:170px}html.mobile #rl-resizer-left{width:350px}html.mobile #rl-resizer-right{left:350px}html.rl-no-preview-pane #rl-resizer-left{right:5px!important;width:inherit}html.rl-no-preview-pane #rl-resizer-right{left:0!important}html.rl-no-preview-pane #rl-right .ui-resizable-handle{display:none!important}#rl-loading,#rl-loading-error{position:absolute;font:30px Tahoma;top:50%;width:100%;height:65px;margin:0;margin-top:-60px;background-color:transparent;background-repeat:no-repeat;background-position:center 50px;background-image:url(images/loader-black.gif);text-align:center;color:#000}#rl-loading-error{background-image:none;display:none}.b-system-drop-down .b-toolbar{position:absolute;top:0;right:0;height:30px;padding:10px 8px;z-index:103}.b-system-drop-down .e-facebook-name{display:inline-block;padding-top:4px}.b-system-drop-down .btn.system-dropdown{padding-left:10px;padding-right:10px}.b-system-drop-down .button-fb-logout{margin:5px}.b-system-drop-down .email-title{display:inline-block;max-width:200px;text-align:left;text-overflow:ellipsis;overflow:hidden}.rl-view-model.RL-Login,.rl-view-model.RL-LoginNew,.rl-view-model.RL-AdminLogin{height:100%}.b-login-content{height:100%;text-align:center;margin-left:-230px}.b-login-content .loginFormWrapper{display:inline-block;vertical-align:middle;text-align:center;width:380px}.b-login-content .loginFormWrapper .loginForm{background-color:#efefef;text-align:left;color:#333;margin:0;float:none}.b-login-content .loginFormWrapper .control-label{font-size:16px;line-height:30px}.b-login-content .loginFormWrapper .control-group{margin-bottom:25px}.b-login-content .loginFormWrapper .wrapper{padding:40px 40px 10px}.b-login-content .loginFormWrapper #recaptcha_image img{border:1px solid #ccc;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.b-login-content .loginFormWrapper .inputLoginForm,.b-login-content .loginFormWrapper .inputEmail,.b-login-content .loginFormWrapper .inputLogin,.b-login-content .loginFormWrapper .inputPassword{font-size:18px;height:30px;line-height:29px}.b-login-content .loginFormWrapper .signMeLabel{margin-top:5px}.b-login-content .loginFormWrapper .input-append .add-on{position:relative;height:30px;background:0;margin-left:-35px;z-index:1000;border:0}.b-login-content .loginFormWrapper .input-append .add-on i{font-size:17px;line-height:29px;color:#999}.b-login-content .loginFormWrapper .control-group.error .add-on i{color:#b94a48}.b-login-content .buttonLogin{margin:0}.b-login-content .alert{margin:0 0 20px;text-align:left}.b-login-content .loginAfter{display:inline-block;height:90%;vertical-align:middle;width:0}.b-login-content .flag-selector{margin-bottom:0}.popups .b-ask-content.modal{z-index:10000}.popups .b-ask-content .modal-header{background-color:#fff}.popups .b-ask-content .modal-body{text-align:center}.popups .b-ask-content .desc-place{font-size:18px}.b-folders .b-toolbar{position:absolute;top:0;right:0;left:0;height:30px;padding:10px 10px 0 8px;color:#fff}.b-folders .b-content{position:absolute;top:58px;bottom:13px;left:0;right:0;overflow:hidden;overflow-y:auto}.b-folders .b-content .content{-webkit-overflow-scrolling:touch}.b-folders .b-list-delimiter{margin:10px;border-top:0 solid #000;border-bottom:1px solid #999}.b-folders .e-item{overflow:hidden;white-space:nowrap}.b-folders .e-item .e-link{display:block;position:relative;z-index:1;height:34px;line-height:34px;background-color:transparent;vertical-align:middle;color:grey;cursor:not-allowed;font-size:14px;padding:0;padding-left:10px;padding-right:10px;outline:0;text-decoration:none}.b-folders .e-item .e-link.selectable{color:#000;cursor:pointer}.b-folders .e-item .e-link.selectable:hover,.b-folders .e-item .e-link.selectable.selected,.b-folders .e-item .e-link.selectable.droppableHover{background-color:#555;color:#fff}.b-folders .e-item .e-link.system{cursor:default;color:grey}.b-folders .e-item .e-link .count{position:relative;display:none;margin-top:5px;line-height:19px}.b-folders .e-item .e-link.print-count{font-weight:700}.b-folders .e-item .e-link.print-count .count{display:inline}.b-folders .e-item .e-link .e-collapsed-sign{cursor:pointer;width:22px;height:30px;line-height:30px;text-align:center;vertical-align:inherit}.b-folders .e-item .hidden.e-link{display:none}.b-folders .e-item .b-sub-folders.collapsed{max-height:0;height:0;display:none}.b-folders .b-folder-system-item{font-weight:700}.b-folders .b-sub-folders .e-item .e-link{padding-left:25px}.b-folders .b-sub-folders.unpaddig-folder .e-item .e-link{padding-left:10px}.b-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:40px}.b-folders .b-sub-folders.unpaddig-folder .b-sub-folders .e-item .e-link{padding-left:25px}.b-folders .b-sub-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:55px}.b-folders .b-sub-folders.unpaddig-folder .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:40px}.b-folders .b-sub-folders .b-sub-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:70px}.b-folders .b-sub-folders.unpaddig-folder .b-sub-folders .b-sub-folders .b-sub-folders .e-item .e-link{padding-left:55px}.popups .b-folder-clear-content .modal-header{background-color:#fff}.popups .b-folder-create-content .modal-header{background-color:#fff}.popups .b-folder-system-content.modal{z-index:1102}.popups .b-folder-system-content .modal-header{background-color:#fff}.popups .b-languages-content.modal{z-index:1103;width:700px}.popups .b-languages-content.exp{width:701px}.popups .b-languages-content .modal-header{background-color:#fff}.popups .b-languages-content .lang-item{display:inline-block;padding:5px 15px;margin:2px 5px;width:180px;background-color:#fff;text-align:left}.popups .b-languages-content .lang-item.selected{background-color:#f5f5f5}.popups .b-languages-content .lang-item:hover{background-color:#eee}.popups .b-account-add-content .modal-header{background-color:#fff}.popups .b-identity-content .modal-header{background-color:#fff}.popups .b-identity-content .textEmail{margin-top:5px;font-weight:700}.popups .b-advanced-search-content.modal{width:750px}.popups .b-advanced-search-content.modal .control-label{width:100px}.popups .b-advanced-search-content.modal .controls{margin-left:110px}.popups .b-advanced-search-content .modal-header{background-color:#fff}html.rl-no-preview-pane .messageList.message-selected{display:none}.messageList .toolbar{position:absolute;top:0;right:0;left:0;height:30px;padding:10px 1px;min-width:280px;z-index:102}.messageList .b-footer{position:absolute;bottom:0;right:0;left:0;height:30px;padding:7px;min-width:300px;z-index:101;background-color:#eee;-webkit-border-bottom-right-radius:5px;-moz-border-radius-bottomright:5px;border-bottom-right-radius:5px;-webkit-border-bottom-left-radius:5px;-moz-border-radius-bottomleft:5px;border-bottom-left-radius:5px}.messageList .b-footer .e-quota{display:inline-block;margin-top:5px;margin-left:5px;font-size:18px;cursor:help}.messageList .b-footer .e-quota:hover{border-bottom:1px dashed #333}.messageList .inputSearch{width:258px}.messageList .btn.buttonMoreSearch{padding-left:8px;padding-right:8px}.messageList .b-message-list-wrapper{position:absolute;top:50px;right:0;left:0;bottom:5px;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;z-index:101}.messageList .second-toolbar{position:absolute;top:0;right:0;left:0;height:29px;padding:10px 8px 10px 11px;min-width:280px;z-index:101;background-color:#eee;-webkit-border-top-right-radius:5px;-moz-border-radius-topright:5px;border-top-right-radius:5px;-webkit-border-top-left-radius:5px;-moz-border-radius-topleft:5px;border-top-left-radius:5px}.messageList .second-toolbar .checkboxCkeckAll{margin:5px 0}.messageList .mainDelimiter{position:absolute;left:0;right:0;height:1px;z-index:101;background-color:#bbb}.messageList .toolbarDelimiter{top:49px}.messageList .footerDelimiter{bottom:44px}.messageList .b-content{position:absolute;top:50px;bottom:45px;left:0;right:0;padding:0;overflow-x:hidden;overflow-y:auto;z-index:101;min-width:300px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:#fff}.messageList .b-content .content{-webkit-overflow-scrolling:touch}.messageList .b-content .listClear{color:#333;text-align:center;padding:10px;font-size:14px;line-height:13px}.messageList .b-content .listEmptyList,.messageList .b-content .listEmptyListLoading,.messageList .b-content .listDragOver,.messageList .b-content .listError,.messageList .b-content .listEmptySearchList{color:#999;text-align:center;padding:60px 10px;font-size:24px;line-height:30px}.messageList .b-content .listEmptyList .e-icon,.messageList .b-content .listEmptyListLoading .e-icon,.messageList .b-content .listDragOver .e-icon,.messageList .b-content .listError .e-icon,.messageList .b-content .listEmptySearchList .e-icon{font-size:24px;line-height:30px}.messageList .b-content .listDragOver{max-height:0;overflow:hidden;padding:0 10px}.messageList .b-content .listDragOver.viewAppendArea{max-height:120px;padding:30px 10px}.messageList .b-content .listDragOver.dragOverEnter{background-color:#e0fdda;color:#333}.messageList .b-content .listError{color:#DA4F49}.messageList .b-content .listSearchDesc{font-size:20px;padding:20px;border-bottom:1px solid #eee}.messageList .b-content .delimiter{display:block;height:1px;background-color:#e5e5e5}.messageList .b-content .messageListItem:last-child{border-bottom:1px solid #e5e5e5}.messageList .b-content .messageListItem:last-child.selected{border-bottom:1px solid #bfd5ef}.messageList .b-content .fullThreadsParent{height:25px;padding:3px 5px;background-color:#f4f4f4;text-align:center}.messageList .b-content .messageListItem{position:relative;height:52px;max-height:60px;font-size:12px;line-height:21px;overflow:hidden;cursor:pointer;margin:0;border:0 solid transparent;z-index:100;background-color:#f9f9f9}.messageList .b-content .messageListItem .delimiter{position:relative;display:block;height:1px;background-color:#999;opacity:.2;filter:alpha(opacity=20)}.messageList .b-content .messageListItem .wrapper{padding:5px 0}.messageList .b-content .messageListItem .sidebarParent{display:inline-block;width:6px;background-color:#eee;float:left;height:100%}.messageList .b-content .messageListItem.e-single-line{height:35px}.messageList .b-content .messageListItem.e-single-line .wrapper{line-height:25px;padding:5px}.messageList .b-content .messageListItem.new{max-height:0}.messageList .b-content .messageListItem.deleted{max-height:0;border-color:transparent!important}.messageList .b-content .messageListItem .checkedParent{display:inline-block;float:left;margin-top:11px;padding:0 8px 0 6px;font-size:14px}.messageList .b-content .messageListItem.e-single-line .checkedParent{margin-top:1px}.messageList .b-content .messageListItem .flagParent{display:inline-block;float:right;padding:0 8px 0 5px}.messageList .b-content .messageListItem.e-single-line .flagParent{float:left;padding:0 8px 0 2px}.messageList .b-content .messageListItem .dateParent{display:inline-block;float:right;position:relative;margin:0 5px;color:#999;font-size:11px}.messageList .b-content .messageListItem .attachmentParent{display:inline-block;float:right;position:relative;margin:2px 8px 0 5px}.messageList .b-content .messageListItem.e-single-line .attachmentParent{float:left;margin:0 5px 0 0}.messageList .b-content .messageListItem .senderParent{display:block;overflow:hidden;text-overflow:ellipsis}.messageList .b-content .messageListItem .threadsCountParent{display:inline;overflow:hidden;background-color:#eee;padding:1px 5px;margin-right:5px;border:1px solid #ccc;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.messageList .b-content .messageListItem .threadsCountParent.lastSelected{background-color:#999;border-color:#999;color:#fff}.messageList .b-content .messageListItem .threadsCountParent:hover{border-color:#666}.messageList .b-content .messageListItem.e-single-line .senderParent{display:inline-block;text-overflow:none;width:200px;float:left;font-weight:400}.messageList .b-content .messageListItem .subjectParent{display:block;overflow:hidden;text-overflow:ellipsis;color:#000}.messageList .b-content .messageListItem .senderParent,.messageList .b-content .messageListItem .subjectParent,.messageList .b-content .messageListItem .dateParent{white-space:nowrap}.messageList .b-content .messageListItem .subjectParent .emptySubjectText{display:none;font-style:italic;color:#999}.messageList .b-content .messageListItem.emptySubject .subjectParent .subject{display:none}.messageList .b-content .messageListItem.emptySubject .subjectParent .emptySubjectText{display:inline}.messageList .b-content .messageListItem .sender,.messageList .b-content .messageListItem .subject{overflow:hidden;text-overflow:ellipsis}.messageList .b-content .messageListItem .attachment{display:none}.messageList .b-content .messageListItem .flagOff,.messageList .b-content .messageListItem .flagOn,.messageList .b-content .messageListItem .flagOnHalf{cursor:pointer;display:inline-block}.messageList .b-content .messageListItem .flagOff{opacity:.5;filter:alpha(opacity=50)}.messageList .b-content .messageListItem .flagOff:hover{opacity:1;filter:alpha(opacity=100)}.messageList .b-content .messageListItem .flagOn,.messageList .b-content .messageListItem .flagOnHalf{display:none;color:orange}.messageList .b-content .messageListItem .replyFlag,.messageList .b-content .messageListItem .forwardFlag{display:none}.messageList .b-content .messageListItem.answered .replyFlag{display:inline-block}.messageList .b-content .messageListItem.forwarded .forwardFlag{display:inline-block}.messageList .b-content .messageListItem.withAttachments .attachment{display:inline-block;color:#666;text-shadow:0 1px 0 #eee}.messageList .b-content .messageListItem.unseen{background-color:#FFFFD9}.messageList .b-content .messageListItem.unseen .sender,.messageList .b-content .messageListItem.unseen .subject{font-weight:700}.messageList .b-content .messageListItem.unseen .sidebarParent{background-color:orange}.messageList .b-content .messageListItem.hasUnseenSubMessage{background-color:#FFFFD9}.messageList .b-content .messageListItem.hasUnseenSubMessage .sidebarParent{background-color:#ffdb99}.messageList .b-content .messageListItem.hasParentMessage{background-color:#ecf0f1}.messageList .b-content .messageListItem.hasParentMessage .sidebarParent{background-color:#bdc3c7}.messageList .b-content .messageListItem.hasParentMessage.unseen{background-color:#dde4e6}.messageList .b-content .messageListItem.hasParentMessage.unseen .sidebarParent{background-color:#6c777f}.messageList .b-content .messageListItem.checked .sidebarParent{background-color:#69a8f5!important}.messageList .b-content .messageListItem.selected{background-color:#DFEFFF;z-index:102}.messageList .b-content .messageListItem.selected .sidebarParent{background-color:#398CF2!important}.messageList .b-content .messageListItem.selected .delimiter{background-color:#398CF2;opacity:.2;filter:alpha(opacity=20)}.messageList .b-content .messageListItem.selected+.messageListItem .delimiter{background-color:#398CF2;opacity:.3;filter:alpha(opacity=30)}.messageList .b-content .messageListItem.hasFlaggedSubMessage .flagOff,.messageList .b-content .messageListItem.hasFlaggedSubMessage .flagOn{display:none}.messageList .b-content .messageListItem.hasFlaggedSubMessage .flagOnHalf{display:inline-block}.messageList .b-content .messageListItem.flagged .flagOff,.messageList .b-content .messageListItem.flagged .flagOnHalf{display:none}.messageList .b-content .messageListItem.flagged .flagOn{display:inline-block}.messageList.hideMessageListCheckbox .checkedParent,.messageList.hideMessageListCheckbox .checkboxCkeckAll{display:none!important}.messageList.hideMessageListCheckbox .sidebarParent{margin-right:10px!important}.draggablePlace{z-index:10002;color:#fff;background-color:#333;background-color:rgba(0,0,0,.5);padding:4px 10px;min-width:30px;height:20px;cursor:pointer;cursor:move}html.rl-no-preview-pane .messageView{display:none}html.rl-no-preview-pane .messageView.message-selected{display:block}.messageView{z-index:100}.messageView .toolbar{position:absolute;top:0;right:0;left:0;height:30px;padding:10px 0;color:#fff}.messageView .b-content{position:absolute;margin:0;top:58px;bottom:13px;right:8px;left:0;overflow:hidden;border:1px solid #aaa;border-left:0;-webkit-border-top-right-radius:3px;-moz-border-radius-topright:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;-moz-border-radius-bottomright:3px;border-bottom-right-radius:3px;background-color:#fff}.messageView .b-content .b-message-view-desc{text-align:center;font-size:24px;line-height:30px;padding-top:120px;color:#999}.messageView .b-content .b-message-view-desc.error{color:#DA4F49}.messageView .b-content .content{-webkit-overflow-scrolling:touch}.messageView .b-content .messageItem{position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto;-webkit-overflow-scrolling:touch;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.messageView .b-content .messageItem .emptySubjectText{display:none;font-style:italic;color:#999}.messageView .b-content .messageItem.emptySubject .emptySubjectText{display:inline}.messageView .b-content .messageItem .buttonUp,.messageView .b-content .messageItem .buttonUnFull,.messageView .b-content .messageItem .buttonFull{display:inline-block;position:fixed;right:30px;top:90px;height:30px;width:30px;text-align:center;vertical-align:middle;line-height:30px;background-color:transparent;background-color:#fff;border:1px solid #333;color:#333;z-index:2;cursor:pointer;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;opacity:.3;filter:alpha(opacity=30)}.messageView .b-content .messageItem .buttonUp:hover,.messageView .b-content .messageItem .buttonUnFull:hover,.messageView .b-content .messageItem .buttonFull:hover{opacity:.8;filter:alpha(opacity=80);border-color:#000;background-color:#888;color:#fff}.messageView .b-content .messageItem .buttonUp{right:70px;z-index:0}.messageView .b-content .messageItem .buttonUnFull{display:none}.messageView .b-content .messageItem .messageItemHeader{position:relative;padding:10px;background-color:#f8f8f8;border-top:0;border-bottom:1px solid #ddd;z-index:1}.messageView .b-content .messageItem .messageItemHeader .fromPic{display:inline-block;width:50px;height:50px;float:left;padding:2px;margin:0 5px 0 0;background:#fff;border:1px solid #ccc;border-radius:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.messageView .b-content .messageItem .messageItemHeader .subjectParent{font-size:16px;font-weight:700;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;margin-left:3px}.messageView .b-content .messageItem .messageItemHeader .senderParent{margin-top:10px}.messageView .b-content .messageItem .messageItemHeader .messageButtons{margin-top:5px}.messageView .b-content .messageItem .messageItemHeader .informationShort{margin-left:15px}.messageView .b-content .messageItem .messageItemHeader .informationShort a{color:#369;text-decoration:underline;cursor:pointer}.messageView .b-content .messageItem .messageItemHeader .informationFull{margin-top:10px;border:1px solid #ddd;background-color:#fff;border-radius:5px;padding:10px 15px}.messageView .b-content .messageItem .loading{text-align:center;font-size:24px;color:grey;padding-top:50px}.messageView .b-content .messageItem .line-loading{height:0}.messageView .b-content .messageItem .showImages{cursor:pointer;background-color:#eee;padding:10px 15px;border-bottom:1px solid #ccc}.messageView .b-content .messageItem .attachmentsPlace{padding:10px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList{margin:0}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem{display:inline-block;margin:5px;padding:5px;max-width:170px;min-width:60px;overflow:hidden;cursor:pointer;list-style:none;line-height:24px;border:2px solid grey;background-color:#fff;box-shadow:1px 1px 5px #ccc;box-shadow:1px 1px 5px rgba(0,0,0,.1);-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem .attachmentIcon{font-size:23px;width:23px;height:23px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem .attachmentPreview{color:#999;margin:0 5px}.messageView .b-content .messageItem .attachmentsPlace .attachmentList .attachmentItem .attachmentPreview:hover{color:#333}.messageView .b-content .messageItem .rlBlockquoteSwitcher{background-color:#eee;border:1px solid #999;display:inline-block;width:30px;height:14px;line-height:14px;text-align:center;cursor:pointer;margin:10px 0;opacity:.5;filter:alpha(opacity=50)}.messageView .b-content .messageItem .rlBlockquoteSwitcher:hover{opacity:1;filter:alpha(opacity=100)}.messageView .b-content .messageItem .bodyText{color:#000;font-family:arial,sans-serif}.messageView .b-content .messageItem .bodyText .b-text-part div[data-x-div-type=html]{height:100%}.messageView .b-content .messageItem .bodyText .b-text-part div[data-x-div-type=html] div[data-x-div-type=html]{height:100%}.messageView .b-content .messageItem .bodyText .b-text-part a{color:#00f;text-decoration:underline}.messageView .b-content .messageItem .bodyText .b-text-part a:visited{color:#609}.messageView .b-content .messageItem .bodyText .b-text-part a:active{color:red}.messageView .b-content .messageItem .bodyText .b-text-part table{border-collapse:separate}.messageView .b-content .messageItem .bodyText .b-text-part blockquote{border-left:2px solid #000;margin:0;padding:0 10px}.messageView .b-content .messageItem .bodyText .b-text-part .rl-bq-switcher.hidden-bq{display:none}.messageView .b-content .messageItem .bodyText .b-text-part.rtl-text-part{direction:rtl}.messageView .b-content .messageItem .bodyText .b-text-part.html div[data-x-div-type=body]{margin:15px}.messageView .b-content .messageItem .bodyText .b-text-part.plain{padding:15px}.messageView .b-content .messageItem .bodyText .b-text-part.plain pre{margin:0;padding:0;font-family:arial,sans-serif;background:#fff;border:0;white-space:normal}.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote{border-left:2px solid #00f;color:#00f}.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote blockquote{border-left:2px solid green;color:green}.messageView .b-content .messageItem .bodyText .b-text-part.plain blockquote blockquote blockquote{border-left:2px solid red;color:red}html.rl-no-preview-pane .messageView .toolbar{padding-left:1px}html.rl-no-preview-pane .messageView .b-content{top:50px;bottom:5px;right:5px;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}html.rl-no-preview-pane .messageView .b-content .buttonUp,html.rl-no-preview-pane .messageView .b-content .buttonUnFull,html.rl-no-preview-pane .messageView .b-content .buttonFull{top:70px}html.cssanimations.rl-anim .line-loading{height:5px!important}html.rl-message-fullscreen #rl-left,html.rl-message-fullscreen #rl-bottom{display:none!important}html.rl-message-fullscreen #rl-right .RL-MailMessageList,html.rl-message-fullscreen #rl-right .RL-SettingsPane,html.rl-message-fullscreen #rl-right .RL-SystemDropDown,html.rl-message-fullscreen #rl-right .RL-MailMessageView .messageView .toolbar{display:none!important}html.rl-message-fullscreen .messageView .b-content{position:fixed;margin:5px;top:0;left:0;right:0;bottom:0;z-index:10000;border:1px solid #aaa;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}html.rl-message-fullscreen .messageView .b-content .buttonUp,html.rl-message-fullscreen .messageView .b-content .buttonUnFull{display:inline-block;top:36px}html.rl-message-fullscreen .messageView .b-content .buttonFull{display:none}.b-contacts-content .control-group .control-label.fix-width{width:90px}.b-contacts-content .control-group .controls.fix-width{margin-left:110px}.b-contacts-content.modal{position:absolute;right:0;top:0;bottom:0;left:0;width:900px;min-height:300px;max-height:700px;margin:auto}.b-contacts-content.modal .modal-body{overflow:auto;height:100%;background-color:#f5f5f5;padding:0}.b-contacts-content.modal .b-header-toolbar{height:40px;background-color:#aaa;color:#fff;background-color:#333;background-color:rgba(0,0,0,.8)!important}.b-contacts-content.modal .b-header-toolbar .close{color:#fff;opacity:1;filter:alpha(opacity=100)}.b-contacts-content.modal .b-header-toolbar .btn{margin-top:4px}.b-contacts-content.modal .b-header-toolbar .button-new-message{margin-left:8px}.b-contacts-content.modal .b-header-toolbar .button-delete{margin-left:8px}.b-contacts-content.modal .b-list-toopbar{padding:0;height:45px;text-align:center;width:270px;-webkit-box-shadow:inset 0 -1px 0 #ccc;-moz-box-shadow:inset 0 -1px 0 #ccc;box-shadow:inset 0 -1px 0 #ccc}.b-contacts-content.modal .b-list-toopbar .e-search{margin-top:7px;width:245px}.b-contacts-content.modal .b-list-footer-toopbar{position:absolute;left:0;bottom:0;height:105px;width:270px;background-color:#eee;-webkit-box-shadow:inset 0 1px 0 #ccc;-moz-box-shadow:inset 0 1px 0 #ccc;box-shadow:inset 0 1px 0 #ccc}.b-contacts-content.modal .b-list-footer-toopbar .footer-pager{padding:8px 10px 0 0}.b-contacts-content.modal .b-list-content{position:absolute;top:45px;bottom:105px;left:0;width:270px;overflow:hidden;overflow-y:auto}.b-contacts-content.modal .b-list-content .content{-webkit-overflow-scrolling:touch}.b-contacts-content.modal .b-list-content .listClear{color:#333;text-align:center;padding:10px;font-size:14px;line-height:13px;background-color:#fff;-webkit-box-shadow:inset 0 -1px 0 #ccc;-moz-box-shadow:inset 0 -1px 0 #ccc;box-shadow:inset 0 -1px 0 #ccc}.b-contacts-content.modal .b-list-content .listEmptyList,.b-contacts-content.modal .b-list-content .listEmptyListLoading,.b-contacts-content.modal .b-list-content .listEmptySearchList{color:#999;text-align:center;padding:60px 10px;font-size:24px;line-height:30px}.b-contacts-content.modal .b-list-content.hideContactListCheckbox .checkedParent,.b-contacts-content.modal .b-list-content.hideContactListCheckbox .checkboxCkeckAll{display:none!important}.b-contacts-content.modal .b-list-content.hideContactListCheckbox .sidebarParent{margin-right:10px!important}.b-contacts-content.modal .b-list-content .e-contact-foreach{border-bottom:1px solid #ddd}.b-contacts-content.modal .b-list-content .e-contact-item{position:relative;height:45px;max-height:45px;line-height:45px;overflow:hidden;cursor:pointer;margin:0;border:0 solid transparent;z-index:100}.b-contacts-content.modal .b-list-content .e-contact-item .delimiter{position:relative;display:block;height:1px;background-color:#999;opacity:.2;filter:alpha(opacity=20)}.b-contacts-content.modal .b-list-content .e-contact-item .wrapper{padding:0}.b-contacts-content.modal .b-list-content .e-contact-item .sidebarParent{display:inline-block;width:6px;background-color:#eee;float:left;height:100%}.b-contacts-content.modal .b-list-content .e-contact-item.deleted{max-height:0;border-color:transparent!important}.b-contacts-content.modal .b-list-content .e-contact-item .checkedParent{display:inline-block;float:left;padding:0 8px 0 6px}.b-contacts-content.modal .b-list-content .e-contact-item .shareParent{display:none;float:right;position:relative;margin:2px 8px 0 5px}.b-contacts-content.modal .b-list-content .e-contact-item .nameParent{display:block;overflow:hidden;text-overflow:ellipsis;color:#333;font-size:16px}.b-contacts-content.modal .b-list-content .e-contact-item .nameParent,.b-contacts-content.modal .b-list-content .e-contact-item .emailParent{white-space:nowrap}.b-contacts-content.modal .b-list-content .e-contact-item .displayName,.b-contacts-content.modal .b-list-content .e-contact-item .displayEmail{overflow:hidden;text-overflow:ellipsis}.b-contacts-content.modal .b-list-content .e-contact-item .displayImg{display:inline-block;float:right;position:relative;margin:0 5px}.b-contacts-content.modal .b-list-content .e-contact-item.shared .shareParent{display:inline-block}.b-contacts-content.modal .b-list-content .e-contact-item.checked{z-index:101}.b-contacts-content.modal .b-list-content .e-contact-item.checked .sidebarParent{background-color:#69A8F5}.b-contacts-content.modal .b-list-content .e-contact-item.selected{background-color:#fff;z-index:102}.b-contacts-content.modal .b-list-content .e-contact-item.selected .sidebarParent{background-color:#398CF2}.b-contacts-content.modal .b-view-content{position:absolute;top:0;bottom:60px;left:270px;right:0;overflow:hidden;overflow-y:auto;background-color:#fff;border-left:1px solid #ddd}.b-contacts-content.modal .b-view-content .content{-webkit-overflow-scrolling:touch}.b-contacts-content.modal .b-view-content .contactValueStatic{height:20px;line-height:20px;font-size:18px;display:inline-block;padding:5px 7px;color:#555;display:none}.b-contacts-content.modal .b-view-content.read-only .contactValueStatic{display:inline-block}.b-contacts-content.modal .b-view-content.read-only .contactValueInput{display:none}.b-contacts-content.modal .b-view-content .b-contact-view-desc{text-align:center;font-size:24px;line-height:30px;padding-top:120px;color:#999}.b-contacts-content.modal .b-view-content .top-part{padding-top:20px}.b-contacts-content.modal .b-view-content .property-line{margin-bottom:5px}.b-contacts-content.modal .b-view-content .top-row{padding:10px 0;height:30px}.b-contacts-content.modal .b-view-content .add-link{padding-top:5px;padding-left:7px;font-size:12px;color:#aaa}.b-contacts-content.modal .b-view-content .contactValueStatic{font-size:18px;display:none}.b-contacts-content.modal .b-view-content .contactValueInput{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-color:#fff;font-size:18px;width:250px}.b-contacts-content.modal .b-view-content .contactValueInput:hover{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-color:#ccc}.b-contacts-content.modal .b-view-content .contactValueInput:focus{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);border-color:#999}.b-contacts-content.modal .b-view-content .hasError .contactValueInput{color:#ee5f5b;border-color:#ee5f5b}.b-contacts-content.modal .b-view-content .e-save-trigger{position:absolute;top:25px;left:10px}.b-contacts-content.modal .b-view-content .e-read-only-sign{display:none;position:absolute;top:20px;right:40px}.b-contacts-content.modal .b-view-content .e-share-sign{position:absolute;top:20px;right:20px;cursor:pointer}.b-contacts-content.modal .b-view-content .button-save-contact{position:absolute;top:100px;right:20px}.b-contacts-content.modal .b-view-content.read-only .e-read-only-sign{display:inline-block}.b-contacts-content.modal .b-view-content.read-only .e-share-sign{display:none}.b-contacts-content.modal .b-view-content.read-only .button-save-contact{display:none}.b-contacts-content .e-contact-item{position:relative;height:55px;max-height:60px;line-height:22px;overflow:hidden;cursor:pointer;margin:0;border:0 solid transparent;z-index:100}.b-compose.modal{width:850px;margin:10px auto}.b-compose.modal .modal-body{overflow:auto;padding:0}.b-compose .b-header-toolbar{height:40px;background-color:#aaa;color:#fff;background-color:#333;background-color:rgba(0,0,0,.8)!important}.b-compose .b-header-toolbar .close{color:#fff;opacity:1;filter:alpha(opacity=100)}.b-compose .b-header-toolbar .btn.disable.button-delete{visibility:hidden}.b-compose .b-header-toolbar .button-save,.b-compose .b-header-toolbar .button-delete,.b-compose .b-header-toolbar .saved-text{margin-left:8px}.b-compose .b-header-toolbar .disable.button-delete{margin-left:0}.b-compose .b-header{padding:10px;border-bottom:1px solid #333;background-color:#eee;color:#333}.b-compose .b-header .e-identity{font-weight:700}.b-compose .b-header .e-identity.multiply{cursor:pointer;border-bottom:1px dashed #555}.b-compose .b-header .e-row{line-height:30px}.b-compose .b-header .e-label{text-align:right;width:1%;min-width:70px;padding:6px 10px}.b-compose .b-header .e-value{padding:2px 0}.b-compose .b-header .e-value textarea,.b-compose .b-header .e-value input[type=text]{width:98%}.b-compose .b-header .e-value textarea{height:40px}.b-compose .b-header .error-desc{color:red}.b-compose .b-header .b-appachments .b-attacment{line-height:20px;padding-bottom:10px}.b-compose .b-header .b-appachments .b-attacment-in-process{line-height:20px;padding-bottom:10px}.b-compose .b-header .b-appachments .b-attacment-in-process .uploading{display:none;padding-right:5px}.b-compose .b-header .b-appachments .b-attacment-in-process.uploading .uploading{display:inline}.b-compose .b-header .b-appachments .b-attacment-in-process .upload-progress{font-weight:700}.b-compose .b-header .b-appachments .b-attacment-in-process.error .namedStr{color:#888}.b-compose .b-header .b-appachments .b-attacment-in-process .error{color:red}.b-compose .b-header .b-appachments .b-attacment-in-process .close{float:left;padding-right:13px}.b-compose .b-attachment-button{display:inline-block}.b-compose .b-attachment-place{position:absolute;height:120px;border:2px #777 dashed;line-height:119px;text-align:center;background-color:#fff;z-index:300;left:20px;right:20px;font-size:24px}.b-compose .b-attachment-place.drag-and-drop-over{background:#777;color:#fff}.b-compose .editorTextArea,.b-compose .editorHtmlArea{background:#fff;color:#000;font-family:Arial,Verdana,Geneva,sans-serif;font-size:14px}.b-compose .editorTextArea table,.b-compose .editorHtmlArea table{border-collapse:separate}.b-compose .editorTextArea blockquote,.b-compose .editorHtmlArea blockquote{border:0;border-left:solid 2px #444;margin-left:5px;margin:5px 0;padding-left:5px}.b-admin-left .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px 0 0 8px}.b-admin-left .b-content{position:absolute;top:68px;bottom:8px;left:0;right:0;overflow:hidden}.b-admin-left .b-content .content{-webkit-overflow-scrolling:touch}.b-admin-menu .e-item{overflow:hidden;text-decoration:none;outline:0}.b-admin-menu .e-link{position:relative;display:block;height:30px;line-height:29px;cursor:pointer;font-size:18px;z-index:1;cursor:default;background-color:transparent;color:#888;padding:4px 10px;outline:0;text-decoration:none}.b-admin-menu .e-item.selectable .e-link{cursor:pointer}.b-admin-menu .e-item.selectable:hover .e-link,.b-admin-menu .e-item.selectable.selected .e-link{background-color:#555;color:#fff}.b-admin-right .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px;color:#fff}.b-admin-right .b-content{position:absolute;top:58px;bottom:8px;left:0;right:8px;overflow-y:auto;z-index:2;background-color:#fff;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.b-admin-right .b-content .content{-webkit-overflow-scrolling:touch}.b-admin-right .b-settings-content{padding:20px}.b-admin-general .flag-selector{padding-top:5px}.b-admin-general .flag-name{border-bottom:1px dashed #555}.b-admin-domains .process-place{width:600px;padding:14px 0;text-align:center;visibility:hidden}.b-admin-domains-list-table{width:600px}.b-admin-domains-list-table .e-item .e-action{cursor:pointer}.b-admin-domains-list-table .e-item .domain-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.b-admin-domains-list-table .e-item.disabled .domain-name{color:#bbb}.b-admin-domains-list-table .e-item .button-delete{margin-right:15px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-admin-domains-list-table .e-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-admin-domains-list-table .e-item .delete-domain,.b-admin-domains-list-table .e-item .disable-domain{cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.b-admin-domains-list-table .e-item.disabled .disable-domain{opacity:.5;filter:alpha(opacity=50)}.b-admin-domains-list-table .e-item .delete-domain:hover,.b-admin-domains-list-table .e-item .disable-domain:hover{opacity:1;filter:alpha(opacity=100)}.b-domain-content.modal{width:645px}.b-domain-content .modal-header{background-color:#fff}.b-domain-content .modal-body{position:relative;overflow:hidden;width:1300px;height:390px}.b-domain-content.domain-edit .modal-body{height:350px}.b-domain-content.domain-white-list-page .modal-body{left:-640px}.b-domain-content .error-desc{color:red;margin-left:10px}.b-domain-content .testing-done .imap-header,.b-domain-content .testing-done .smtp-header{color:green;font-weight:700}.b-domain-content .testing-error .imap-header,.b-domain-content .testing-error .smtp-header{color:red}.b-admin-packages .alert{width:650px}.b-admin-packages .process-place{visibility:hidden}.b-admin-packages-list-table{width:700px}.b-admin-packages-list-table .e-item .package-img{font-size:12px;margin-right:2px}.b-admin-packages-list-table .e-item .package-name.core{font-weight:700}.b-admin-packages-list-table .e-item .package-desc{color:#999;font-size:12px}.b-admin-packages-list-table .e-item .e-action{cursor:pointer}.b-admin-packages-list-table .e-item .package-release-parent,.b-admin-packages-list-table .e-item .package-actions-parent{text-align:center}.b-admin-packages-list-table .e-item .package-actions-parent{vertical-align:middle}.b-admin-plugins .process-place{visibility:hidden}.b-admin-plugins-list-table.disabled{opacity:.5;filter:alpha(opacity=50);background-color:#eee}.b-admin-plugins-list-table .e-item .e-action{cursor:pointer}.b-admin-plugins-list-table .e-item .plugin-img{font-size:12px;margin-right:2px}.b-admin-plugins-list-table .e-item.disabled .plugin-img,.b-admin-plugins-list-table .e-item.disabled .plugin-name{color:#bbb}.b-admin-plugins-list-table .e-item.disabled .disable-plugin{opacity:.5;filter:alpha(opacity=50)}.b-admin-plugin-property .help-block{margin-bottom:5px}.b-plugin-content.modal{width:660px}.b-plugin-content.modal .modal-body{overflow:auto}.b-plugin-content .modal-header{background-color:#fff}.b-plugin-content .information{display:inline-block;background-color:#ddd;border-radius:10px;cursor:pointer;height:25px;width:30px;text-align:center;padding-top:5px}.b-plugin-content textarea{width:400px;height:50px}.popups .b-activate-content{width:700px}.popups .b-activate-content .modal-header{background-color:#fff}.popups .b-activate-content .help-inline{padding-left:0}.b-settins-left .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px 0 0 8px}.b-settins-left .b-content{position:absolute;top:68px;bottom:8px;left:0;right:0;overflow:hidden}.b-settins-left .b-content .content{-webkit-overflow-scrolling:touch}.b-settings-menu .e-item{overflow:hidden;text-decoration:none;outline:0}.b-settings-menu .e-link{position:relative;display:block;height:30px;line-height:29px;font-size:18px;z-index:1;cursor:default;background-color:transparent;color:#888;padding:4px 10px;outline:0;text-decoration:none}.b-settings-menu .e-item.selectable .e-link{cursor:pointer}.b-settings-menu .e-item.selectable:hover .e-link,.b-settings-menu .e-item.selectable.selected .e-link{background-color:#555;color:#fff}.b-settins-right .b-toolbar{position:absolute;top:0;right:0;left:0;height:34px;padding:8px 5px;color:#fff}.b-settins-right .b-content{position:absolute;top:58px;bottom:8px;left:0;right:8px;overflow-y:auto;z-index:2;background-color:#fff;border:1px solid #aaa;-webkit-box-shadow:0 2px 8px rgba(0,0,0,.3);-moz-box-shadow:0 2px 8px rgba(0,0,0,.3);box-shadow:0 2px 8px rgba(0,0,0,.3);-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.b-settins-right .b-content .content{-webkit-overflow-scrolling:touch}.b-settins-right .b-settings-content{padding:20px}.b-settings-general .notification-desc-denied{color:#999;display:none}.b-settings-general .denied-by-browser .notification-desc-denied{display:inline}.b-settings-general .denied-by-browser .notification-desc{color:#999}.b-settings-general .flag-selector{padding-top:5px}.b-settings-general .flag-name{border-bottom:1px dashed #555}.b-settings-accounts .process-place{text-align:center;width:600px;padding:14px 0}.b-settings-accounts .list-table{width:600px}.b-settings-accounts .list-table td{padding:4px 8px;line-height:30px}.b-settings-accounts .list-table .account-img{font-size:12px;margin-right:5px}.b-settings-accounts .list-table .account-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:22px;cursor:default}.b-settings-accounts .account-item .button-delete{margin-right:15px;margin-top:5px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-settings-accounts .account-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-settings-accounts .account-item .delete-account{cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.b-settings-identities .process-place{text-align:center;width:600px;padding:14px 0}.b-settings-identities .list-table{width:600px}.b-settings-identities .list-table td{padding:4px 8px;line-height:30px}.b-settings-identities .list-table .identity-img{font-size:12px;margin-right:5px}.b-settings-identities .list-table .identity-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;line-height:22px;cursor:pointer}.b-settings-identities .identity-item .e-action{cursor:pointer}.b-settings-identities .identity-item .button-delete{margin-right:15px;margin-top:5px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-settings-identities .identity-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-settings-identities .identity-item .delete-identity{cursor:pointer;opacity:.5;filter:alpha(opacity=50)}.b-settings-folders{}.b-settings-folders.ignore-folder-subscribe .subscribe-folder,.b-settings-folders.ignore-folder-subscribe .unsubscribe-folder{display:none}.b-settings-folders .process-place{text-align:center;width:600px;padding:14px 0}.b-settings-folders .folders-list-error{width:550px;margin:10px 0}.b-settings-folders .list-table{width:600px}.b-settings-folders .list-table .e-action{cursor:pointer}.b-settings-folders .list-table td{padding:4px 8px;line-height:30px}.b-settings-folders .list-table .folder-padding{display:inline-block;width:0}.b-settings-folders .list-table .folder-name{display:inline-block;word-break:break-all;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin-left:7px;line-height:22px;cursor:default}.b-settings-folders .list-table .folder-system-name{display:inline-block;line-height:22px;color:#999;cursor:default}.b-settings-folders .list-table .folder-name.can-be-edited:hover{border-bottom:1px dashed #333;cursor:pointer}.b-settings-folders .list-table .folder-name-input{border-width:1px;margin-bottom:0;margin-left:-4px}.b-settings-folders .folder-item.system .folder-name{font-weight:700}.b-settings-folders .folder-item .button-delete{margin-right:15px;margin-top:5px;visibility:hidden;opacity:0;filter:alpha(opacity=0)}.b-settings-folders .folder-item .delete-access.button-delete{visibility:visible;margin-right:0;opacity:1;filter:alpha(opacity=100)}.b-settings-folders .folder-item .delete-folder,.b-settings-folders .folder-item .subscribe-folder,.b-settings-folders .folder-item .unsubscribe-folder{cursor:pointer;opacity:.6;filter:alpha(opacity=60)}.b-settings-folders .folder-item .unsubscribe-folder{opacity:.25;filter:alpha(opacity=25)}.b-settings-folders .folder-padding.deep-1{width:25px}.b-settings-folders .folder-padding.deep-2{width:40px}.b-settings-folders .folder-padding.deep-3{width:55px}.b-settings-folders .folder-padding.deep-4{width:70px}.b-settings-folders .folder-padding.deep-5{width:85px}.b-themes-list .e-item{display:inline-block;border:2px solid transparent;cursor:pointer;color:#000;background-color:#fff;padding:16px;margin:5px}.b-themes-list .e-item:hover{border:2px solid grey}.b-themes-list .e-item.selected{background-color:#eee;border:2px solid #000}.b-themes-list .e-item .e-image{width:100px;height:100px;border:1px solid #ddd}@keyframes highlight-folder-row{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(1)}}@-moz-keyframes highlight-folder-row{0%{-moz-transform:scale(1)}50%{-moz-transform:scale(1.1)}100%{-moz-transform:scale(1)}}@-webkit-keyframes highlight-folder-row{0%{-webkit-transform:scale(1)}50%{-webkit-transform:scale(1.1)}100%{-webkit-transform:scale(1)}}@-webkit-keyframes textLoadingAnimationKeyFrame{0%{opacity:1}33%{opacity:0}100%{opacity:1}}@-moz-keyframes textLoadingAnimationKeyFrame{0%{opacity:1}33%{opacity:0}100%{opacity:1}}@keyframes textLoadingAnimationKeyFrame{0%{opacity:1}33%{opacity:0}100%{opacity:1}}@-webkit-keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@-moz-keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}@keyframes animate-stripes{0%{background-position:0 0}100%{background-position:60px 0}}.rl-anim.rgba.cssanimations.backgroundsize .e-strip-animation{-webkit-background-size:60px 60px;-moz-background-size:60px 60px;background-size:60px 60px;background-image:-webkit-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-image:linear-gradient(135deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);-webkit-animation:animate-stripes 2s linear infinite;-moz-animation:animate-stripes 2s linear infinite;animation:animate-stripes 2s linear infinite}.rl-anim.csstransitions .b-settings-folders .folder-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-settings-accounts .account-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-settings-identities .identity-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-admin-domains .e-item .button-delete{-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear}.rl-anim.csstransitions .b-compose .button-delete{-webkit-transition:margin-left .2s linear;-moz-transition:margin-left .2s linear;-o-transition:margin-left .2s linear;transition:margin-left .2s linear}.rl-anim.cssanimations .b-folders .e-item .anim-action-class{-webkit-animation:highlight-folder-row .5s linear;-moz-animation:highlight-folder-row .5s linear;animation:highlight-folder-row .5s linear}.rl-anim.csstransitions .messageList .messageListItem{-webkit-transition:max-height 400ms ease;-moz-transition:max-height 400ms ease;-o-transition:max-height 400ms ease;transition:max-height 400ms ease}.rl-anim.csstransitions .messageList .listDragOver{-webkit-transition:all 400ms ease;-moz-transition:all 400ms ease;-o-transition:all 400ms ease;transition:all 400ms ease}.rl-anim.csstransitions .b-list-content .e-contact-item{-webkit-transition:max-height 400ms ease;-moz-transition:max-height 400ms ease;-o-transition:max-height 400ms ease;transition:max-height 400ms ease}.rl-anim.csstransitions .modal.b-domain-content .modal-body{-webkit-transition:left 500ms ease;-moz-transition:left 500ms ease;-o-transition:left 500ms ease;transition:left 500ms ease}.rl-anim.csstransitions .modal-open .popups .modal{-webkit-transform-origin:50% 50%;-moz-transform-origin:50% 50%;-o-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transition:.3s all cubic-bezier(0.250,.460,.450,.940);-moz-transition:.3s all cubic-bezier(0.250,.460,.450,.940);-o-transition:.3s all cubic-bezier(0.250,.460,.450,.940);transition:.3s all cubic-bezier(0.250,.460,.450,.940);-webkit-transform:scale(0.9);-moz-transform:scale(0.9);-ms-transform:scale(0.9);-o-transform:scale(0.9);transform:scale(0.9)}.rl-anim .modal-open .popups .popup-active.modal{-webkit-transform:none;-moz-transform:none;-o-transform:none;transform:none}.rl-anim.cssanimations .b-compose.loading .b-header-toolbar{-webkit-background-size:60px 60px;-moz-background-size:60px 60px;background-size:60px 60px;background-image:-webkit-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);background-image:linear-gradient(135deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent 75%,transparent);-webkit-animation:animate-stripes 2s linear infinite;-moz-animation:animate-stripes 2s linear infinite;animation:animate-stripes 2s linear infinite}.textLoadingAnimationD1,.textLoadingAnimationD2,.textLoadingAnimationD3{-webkit-animation:textLoadingAnimationKeyFrame 1s linear infinite 0s;-moz-animation:textLoadingAnimationKeyFrame 1s linear infinite 0s;animation:textLoadingAnimationKeyFrame 1s linear infinite 0s}.textLoadingAnimationD2{-webkit-animation-delay:.3s;-moz-animation-delay:.3s;animation-delay:.3s}.textLoadingAnimationD3{-webkit-animation-delay:.6s;-moz-animation-delay:.6s;animation-delay:.6s}.editorToolbar{position:relative;height:20px;margin-top:10px;line-height:19px}.editorToolbar.editorHideToolbar .editorToolbarButtom{display:none}.editorToolbar .editorSwitcher{display:inline-block;vertical-align:middle}.editorToolbar .editorToolbarButtom{display:inline-block;width:16px;height:16px;padding:3px}.editorToolbar .editorToolbarButtom a{display:inline-block;border:0;margin:0;padding:0;width:16px;height:16px;cursor:default;background:url(images/editor.png)}.editorToolbar .editorToolbarButtom a.bold{background-position:0 0}.editorToolbar .editorToolbarButtom a.italic{background-position:-16px 0}.editorToolbar .editorToolbarButtom a.underline{background-position:-32px 0}.editorToolbar .editorToolbarButtom a.strikethrough{background-position:-48px 0}.editorToolbar .editorToolbarButtom a.link{background-position:-64px 0}.editorToolbar .editorToolbarButtom a.unlink{background-position:-80px 0}.editorToolbar .editorToolbarButtom a.orderedlist{background-position:-96px 0}.editorToolbar .editorToolbarButtom a.unorderedlist{background-position:-112px 0}.editorToolbar .editorToolbarButtom a.image{background-position:-128px 0}.editorToolbar .editorToolbarButtom a.h1{background-position:0 -16px}.editorToolbar .editorToolbarButtom a.h2{background-position:-16px -16px}.editorToolbar .editorToolbarButtom a.h3{background-position:-32px -16px}.editorToolbar .editorToolbarButtom a.h4{background-position:-48px -16px}.editorToolbar .editorToolbarButtom a.h5{background-position:-64px -16px}.editorToolbar .editorToolbarButtom a.h6{background-position:-80px -16px}.editorToolbar .editorToolbarButtom a.subscript{background-position:-96px -16px}.editorToolbar .editorToolbarButtom a.superscript{background-position:-112px -16px}.editorToolbar .editorToolbarButtom a.indent{background-position:-128px -16px}.editorToolbar .editorToolbarButtom a.outdent{background-position:-144px -16px}.editorToolbar .editorToolbarButtom a.horizontalrule{background-position:-160px -16px}.editorToolbar .editorToolbarButtom a.p{background-position:-176px -16px}.editorToolbar .editorToolbarButtom a.justifyleft{background-position:0 -32px}.editorToolbar .editorToolbarButtom a.justifycenter{background-position:-16px -32px}.editorToolbar .editorToolbarButtom a.justifyright{background-position:-32px -32px}.editorToolbar .editorToolbarButtom a.increasefontsize{background-position:-48px -32px}.editorToolbar .editorToolbarButtom a.decreasefontsize{background-position:-64px -32px}.editorToolbar .editorToolbarButtom a.forecolor{background-position:-80px -32px}.editorToolbar .editorToolbarButtom a.backcolor{background-position:-80px -32px}.editorToolbar .editorToolbarButtom a.removeformat{background-position:-144px 0}.textAreaParent{padding:0}.textAreaParent .editorHtmlArea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border:0!important;overflow:auto;overflow-y:scroll;font-family:arial,sans-serif;font-size:14px;line-height:16px;margin:0;padding:8px}.textAreaParent .editorHtmlArea ul{padding-left:40px}.textAreaParent .editorHtmlArea ul li{list-style-type:disc!important}.textAreaParent .editorHtmlArea ol{padding-left:40px}.textAreaParent .editorHtmlArea ol li{list-style-type:decimal!important}.textAreaParent .editorHtmlArea blockquote{border-left:solid 2px #444;margin-left:5px;padding-left:5px}.textAreaParent .editorHtmlArea img{vertical-align:bottom}.textAreaParent .editorHtmlArea.editorDragOver{background:#ffffef}.textAreaParent .editorTextArea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;border:0!important;width:100%;line-height:16px;margin:0;padding:8px;font-family:arial,sans-serif;font-size:14px;overflow:auto;overflow-y:scroll}.editorColorPicker .editorCpColors{float:left;margin:0;clear:both;width:128px;border:1px solid #000;backgroud:#000}.editorColorPicker .editorCpColors .editorCpColor{border:1px solid #fff;float:left;width:14px;height:14px}.editorSwitcher{color:#369;text-decoration:underline;cursor:pointer;float:right;padding-bottom:6px}.editorFontStylePicker .editorFpFonts{padding:5px;border:1px solid #000;background-color:#fff}.editorFontStylePicker .editorFpFonts .editorFpFont{padding:5px} \ No newline at end of file diff --git a/rainloop/v/0.0.0/static/css/fonts/rainloop.eot b/rainloop/v/0.0.0/static/css/fonts/rainloop.eot index 30c2936d3d34d0ae7ce627c5981cc05bf7b1e06c..c3b7b6ce0a3884debc8650923db7cc5b37712c49 100644 GIT binary patch delta 1934 zcmYjSU1(fI6h3EW?#$i$w{CXt-p$XN-E6Yk8Z~K>-P@nF-L^?BrbUTXDi%$eR9pH> zTcK@)4YW|v2dQg)s9;lls1Kq-RP;d<{3{hju^>Xw1r;h3!9riRp1EmDXYQRd=gc{0 z&UfbAxu;IzrI%4|9s`&kJtHe(cH|>=rgnV#+JD~yjGh93u7^j*Ho+N?#Lp0)d-U;v zp@DN-E&||o;-8$}KXs^i{;x6sn!(dfc#ebTIw&4;A-)4qe#Q@@<}h5_&^#9!V&b?gv)4A*FVCGoifQ~P)Q z(R=bcfVDr7?Cha~M~*)B^Tw+HwcTWM9gwu>Wgm^qJ{zyz0GnJ<`|;O{FWyZVL~>J; z#;5oIpMifGSMh1w*%)OXB!?rT+d~&@h1VJ$@7!ub?=2xA)99cp+7Vz2aeD7A5HLv8 zq#kY29Bb~ROi*h=bF-f1cn-Dh!gKr`41Z6x{FFcFAM@YyFQs>+=K~qkf`2pVOf_>j zbEVyCueKjjH|{|%NOa%{G08HH&n@XLs{ z7IU>6J(D?Vwc5NUy5St@G?!GH0nz5(z4LqbMr-r)q&QitO*YQ2c%#n2hV6I*--QgU zfF}X^N|lg;DM*#}>FvgJ;15^Aa^#+zzoFbDO(;J0|R9 zw%wmLIJcZ+c07jML(}7kzb*6cyFX>3mCh8irfBy%H*t4^eZLgleVM@OOSJX-CBxd_ z@=aMM=!v_TbkcSQJkcMsUALnxaNL4)CK5c(>ukcI)8SM=y|{>r5Qp!9$`&<9eL8eF z8ktJdoKOZsMAJcpGD1pd31|ek5(X8*t%{`{N<>k~0(B}PNy0Tq^+Wz5hI|F&SND2I z30#XbP%n)XD3w8&(w>#1gP@~W($hzxyXqOhGHLeo>xwDqsM1<1($y}=Q=~{S^sHDi zsp#PE^puK%O;MQC>!l*X^oDSJ-9$9LYq_RSwvqG<+c8wkWD1cBj+A>_b~}#2 zU7?UMR7K7tqRC{^a0Nro88U7#!7MwbS*=78sR=5y?s2RjSGupC34=495OroTpQA7{ z$+)%`OgB`9;0BU_j2)Alno3$oJ5V!BTbX8Nn;{d+jc5ZJJ%KV81YV3nT)YiNL#ir6 zQXx_twnL7YkldwsTtT5ySapelyM!i2F;h@z>WJg<0GXn7#WP%(jv>&t9HA7Kl2gRm z3w?t+Tsz;@(V2H$B~06haWl@D-K|`LB2$zx!p`(Qk|;9MH5qgCjG^Ji2;o|qQF)VM z^0+b*WJe~b6X>Z@16azd zAXGu6oEYhoej*iwK}ikgOZd0Zs_{Qt7tV_oCG*0L(YF|W@g|-}y!^?luOw`NAWSK5 zf|4&!R8OB?_*>Dp%<>V*S)#s({cx9Eyn bbcp^twe?w?ZalNT)Bg41tj;<8rDp#J`{pv! delta 1063 zcmZWoTWAz#6h3EWo!!-#xXI4UW_Bl?%VuMn%Pv`GS4l!QvR)8vi>6}nA-i3z3PzV& z!Amd$1_WQ!tePT3QYppggOUjn3d#ua@}O|IcqVta^!(|!067-`V(ap2*1~BJ2#*uiKHrk;OkUXd zBLHqAytOn?EW2g%764}xw_#WDKzV*1c=G?A?15c-4}bGkm{|qjI}4B*-o3N9qdGJA zLnVglkQErCnCs;C%ijH^qSNiZ1mGVKzCTbrRE8ZT~ zJa=s<4sl3(f&YsbY=RL`iO^sICP@N(1`0I4=Sllzdxn_T2SA<>>nH|3SWa3XjjZNu zKb;PZSzucG*NYK=bjHpReiYM>MM+#Q?iP=U7sO|hBy~!I@-n$k{#l-j7?Iy1e>XNY z_BGyUe4#WceaaQ(ujp!L{i3fv9zyDV6F$Ky2va^u4A)^x!pdYbY3U(d7euTN>rutZD2fqoKyhpg&l?>{s>s1ubT}c zBj8-@=;11FR*g7+qz1X|99_eg_#Cf70HOfR*@USZep!+QGm%6w6qcp5-kHr(Au?NY@n^rnY&LZo9B6?6qcOFt&jZa-1{37DV z0!>NqjoY@jn9(%1S||`h5CLsXUECZbcVZap5^dWHi|Tkma~Bd6oP(b(LbNJJa~&kF z - - @@ -86,21 +84,24 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/rainloop/v/0.0.0/static/css/fonts/rainloop.ttf b/rainloop/v/0.0.0/static/css/fonts/rainloop.ttf index b412ae61f3ea67647d49a309a6f2613d9b6228d6..1704be7004fd6cf43903c6de2661bd45f2ca0489 100644 GIT binary patch delta 1989 zcmYjSYiv|S6h3EW?wz~$vCFo5_ikTyx7+RlCA84)ULFfwOIrvJA>|Q_B(}7blJW{* z!Yf&fB>4D2v|tDtTlj+}MvYYye~Cts;0u++m^8A9nqWdqG$AJbSUhvv5@zn5GiTB-Go+m^On z+ISTJcapwiX#e1$^2F~s0Ct+j`u7YTIrQKGMS`APG;i$Lcl?>P*DhTE5R(8a+DAtQ zhb!NnyH9h|^yWuLM@oaDjcMc@qk-np{YQ^E14e=L_esCC@8HnjPba=)0Q@%TH}?-7 zI|LuWJ(^!edh)>F{*gP)&wmB5`WB5{ICSvH(Jeo$xeHJnC7*u+azv1Q*m?5lNZ~$M z6pG4sKVLmHBiYqcui`2`41bOn@hRLr{sz8R>IjVHntIp-uac64x8Vb70iJ+bXn{E^ z3z}z5iMS#U^})IT8%d+pNf*#g(x4guDEF3k(?(G#LwTL*C3zBOyF>4Anhih)s+O<1tuhccyAFaRJkN}uEFP>a5 z_1WSTZ0g*S6Krav)7DFZRvKV{r=c1eU;)sHVX8^$4H)y{9jT>$eie3RGg><9rgI%0 zJ!!YY4PMpHN*Z;28pm>_n2;FP1zrneWja|*(ld~xQY=m?p$eWRoAQil*&|sV8=D*( z3+5&#$#9@p92oz%{k0MY3wGjtd8I2x>?Qac6eWd?KMT5M7-K^+QOnWWI0Z4m1jF?-R_U_ z2rsdIn@)#Q5;fyAPD2E~21;O5B-QEA;V5P@PJLqOEhQQE0+s<&VoO8=!g=4z6K|Qx zHql08q@JcqNu<-@N~HXuc!5H(Jc_Go$)^omjnq)hcBW}7JwK)*OPvmaj$+169f_*4 zsSR^v+0?2sCaX}zl~rJ?LQtf@kT5hYnQ_T0@DFQD24G_ZlWHlOK^W@xH+1y}?F->> zG~$?!A*7{Mhc(OAWXNC=kqeHr_mht3qDl3f3IN%>Qhku}Q@8q84IVvmJF z%_e)af27;QE-C90H35~m8*!4ZW(%t5?g7lEq~}X7pNn?3=x#LT`Ce9bq_X&jRw?q| zDwiijh4%9DuAVm;e)>92Am04=+{@NHfglWBe*jW{slRac?3BAwLtHjqS6EE#`odWp z9{;g$o#F1Oi>rJ#ey8h`TKVjOy}j-E_F1`PRxSk?zgTR@4$;p*VVwD2shTw9-qmjgu&CG-|CP7Del#RBW=fYYMG~RY9fL zQ3TN!CF6}^Azlz~pg1B$P)4Yi2bHybEn4)Y56eEemxm?wOt!EOJMf?Lf8ROhJLmuZ zDW1jYlQ;qh0F|JF1GaT`c6SYY{qze!+9Eczv13CgTmY7Ek+8INN3=CMy5$xC?jrnS z-%vJh<<%Dej85F<{nnVc8D$nwv5$ywZs_pQO3gh+_z~d`g9rPvX1nzb!10do+o9~yJUoH>6kkbLI*=Xe z|19fo0NVV-UCJLkboj5wx6cE#Q@vxhd^kGb`&Wyv^j5Y10gD(aBjG7=@?X!0lLbsU z`rwX{#vbf7uHnOA7{U-QC;n$b&;`7LXAB&sj>f4OK6e$h+5`V*2Qk;>^9T_)p8G| zsY$96mBwb4!)l)#3}}f!K=IWeH#UZsm6j-Vwe5V@8=S0oYfy+r{a9Tst2KoJn142> z7-Pq(g84&inCW3agq`>m?}HnH0LzjQRaRUAFR*GPik#Oc@Nu~{nb5o%Rz7E)CEekA zQ4#TS{>9G)mPK9gIA&im%uA1V307I|(zk$z5nL{;aGMWWE7=kI-2i9kaT=fr+GsCp zaa(XjeWVc;7b~J#w$!N&xp+C4LW(+6EuN%g&YpoPQYfP}2QjI_DK7ME^SdxZi)Woh zT`zAYB*`jeGQKwT0SF7r@2F*a)vt?TofQZXZ0^8y+3{ptmXnlZJeg)EakgMG%i r^lNkb+9cyixQ-kc*brNhG)}Fzj6EG9{$w2Q2riluKiX%bzx(5N1Ygu} diff --git a/rainloop/v/0.0.0/static/css/fonts/rainloop.woff b/rainloop/v/0.0.0/static/css/fonts/rainloop.woff index 41d6301398b08ea3e37972a6952879b921842024..6f67c58ecfefbf7c7d6a11f19a7f6610db40455c 100644 GIT binary patch delta 11031 zcmZ{qRZyKl*QE*W?(Xgc4;tLv-QC>|t_Kh9PLSa4c5n+02TyQ!f(_qSGgEUhe^;-! z_IkRyyY@|Y*IWBleM|@2TUkm4%OrxWjOKH(>;{Pg&rqJ{>rK|p1{n6(pY1`Ccqb|V}nPOPD0D^ThdmhWu zFY3BFtGoPi0xe;sA|)+c#lZ1c+>97svnAYnI($0@*`4V2FhW@c^v@I_$>$X!OS$7CsGEa2Pj2nMrabtx$%!fKu zV#;#ruo#j2Alj)O?r3%40~AbDJgprDc)UBr{S94P@MFt$XKe^GDUDttR8y94@MbWQeH*spOjeUKEoVQ9A? zv7AF<+WLp}{|9Wd$MW?WH`@nEu{(lxOB~C&D5h<0SpWZznYgYe6uLRF>ZXPP|4;ls zguK@iirsElb>Ly9{~Z>ACFprECKSWnu>Nl-Njpf1WttpQKPI7LLCMUCftw|yXYpW@ z9Md*7tZ%W$!g-CG_DwLp+#;z{?#AT# z{)0Q5N++tDvTIcP5E$cvUT&QW+yr(9b6ogd@X2k)f#t!IU?y-i*q%N_P8#2u;wRh}G@JrGQ|09OnF4WuJGTWc+3}qM>4Q8 zGf^fX!=BUUsc}bk2zHynTkyKxT%N35S}s}cTN`X;-QaTt>~|hd0O71(AHcISU1gcr zym)gQ2(`%?j zuuk7|b5;&7!z)NX8}J&5s#N1 zLzzN4n5QvMy8)M&1g1;H%wVmbsip*@h8Y+?aBz@!hZN#Dmm98Pis`hEqYF(Vr6uId z!zrcIYb-dyv?@kSjME^0l=i)Q;(#2OW}2qM!EvC>4evm!{Kysi)_qRRR$Vxvar1f` z5d^}%c~6Y>sB|x^7TU$=YzRq+cigwZWPz5 zWmE{MN!d_x8f8$?8I8tN)AWZLnOI%LwhE5NNZOk{+J@#s#W0E+ZNdB(sTn6<{3dOJ zMWf36WgjK|_gBHUwVuIkV_D;#SbMKvKu!M>?E%(@t*{~!LwOY7);?l3$m=Ea65Q(% z(t}FaT>iD=85cr$=TU~#CiuVzKeQ%YmKLEuitJ{lsGt6fwjl3m4e&z(sI*&FB5f38 zJ3Wsxxl*Is@M^O(`LOru;1^NPz3}6DhrvsnjoN&?G=FiQpoJ;aER<>%*C_!!4S>SsEMPewl|AD7wf8<$mf5gHJVkgVVFEL zA2+#WVvhw^PqG(kQQv!(7+6ZY@@=`52<^Gck!lmL^+?O1$Yi<4);mcuY?P+dJ~-?%3EQgedA!FG z$TMQi4R9IX)2v7*7W6%N9%(fbpc45G(T52SE6G9r(vKFRqk@IyhUpZ z+lBsPT&usew>4Ka57HVe`Oir@sW zIvjX%j)GYs`5D4yJ(asj#&Fa-=MciiH}kp#y-)Q?h z-bk{5P1L{s^aqxN?DE=s>XoqyOahjSqd5<5SXYRGMY&eOCZEH%f2~3_Vz;*o4d0DA z6O?$bqRd6|-jxTgLVcB2u17o&-fAI8)Ib?GW#3%s+WV=VuS7{Ad0o+jA1q6WlTgQo z)qRG!lBhhM7zg;G^34sb3|imkiiu1Cn(qcXQAej!?UD1~!fRLqs0xSn;LJdCTGX*c zGp6iGnatW6dI^M)$I8j#v(ZK0pg7}TVD1eaR43a31NK$@{rMx;mwRkRiI6!cS%BP( zNyx}DGM1*HGDt0nVg&ApEc}&|DOhn!I0#rGzn#H788}EDT2Y0gB)|8vzeMQ zMvV73;Ml<`{HX_N$?`?^=8~tMnZ7!^61IU(QYwyJ$+<}16x=?-2N7@`_Y$5c(z~`S zbh^I{cHm+Z!3(;*M)7&f*#-lGy_+kqQf9uAVj*5uS7xyn1O#-3XW@lIX3+z`qPpkc z!1b{sjKLKDF(=BNw%HA)PjX@swiui~fJaz12aUp5VBPXYz?$C6A6tH?*heo_z4qB@ z>ekLT*|Aiilhd3INU-lF7QL@`FCgkNOsDr`OgrQ(p%|?tMxDX%{^SD0daaW)70m2d z5qzuQl8HdhajY!*OHRsJ^^J3+$SnT3;a?$Zg-hdsu6p4prcdF7Rh1LN5)A&t{rOpn zyBTZd1_ci-(aXBuNXW2~^Szl^>)LnP%n+|li%%*V z$S2)8;usXKU^;YZH$;_Q-dxL?^rD3EixZ~4`}3qwMYXZCxwNpfv9`TbK%f*~?)8)E z27Y)@)xBpYr6z6#FtHK1(SvefMMwDbkbaPk+s1{D{-&mqOjJzj0Q0jAHnV2Dn0eey zMyiqVnYw@&IVP6ccjUpO>rZ+hG@gQJ>KSN8Jg=~Pdwpq9!Avw(G%H;gM{r#|WJYXb=7!41?vzSv1Oy&EO%`49J2WbKSV|CjGl%kTb|scP`t`W|I4t~@q4x1o4MGmu z^tL6+vjod(JDpPfw6cw>qbHUxAm}5#W*B5;#je z1fQW?@vmkQP;ps;1v&hkgTI{oduo!lf?k$Sg!wKce-tE+$n?e(2dj%`<6htJ^*P)4QyG5E=zyij$}GyeRZ`L@zA7_WEp-1|fJ9K*j)V8gPtT#E-GrH~nfyB? zOKbD?<-ay!TAbX9M`R15l*ulCqM&xYchan-ijzC(Rz~xZryE#M9OqzLdNzU`ke!|E zeg@tBGSnv4+0qwOX<`x}l=V&=;w#nj9=edZl$nK>8#VZsa&_DVvg~8*3;P&OiWqTL z-3=?)222xusjGi-+TTM9ddICJ$Uv0#3iwBge;XesvUhxx1c3q?X@ki7I3{`Ju4DsF z_Uga0vOMEtPbfAUjkQt}CQoc%_umL!H&V@KUq^PEqTw&>Zlu~su2sd9$5in01zUXd zXd4CLu|W+Op$W&A>PC*Mr4vks2Mq5pLJJX10>tnvz7za$Wmt?yAancXJw@UUBIam2 zNu9 z%ZO5je@h>;34TSUPEaFpm)I!6(8H0gH@tg#GwPG}3QG;A{mWeqWlYG?H~b9d8-l>q|4x0d4BPA#vxOcbzZ>bqG#odOo89A--LJ1Bu;tSU?PSY1rfcCBKC-wA`})!e z2b;19<%QBHHz?-id2=y9OOm#0zHw502Eg$~B(jT2AYJ3`o}Ia~@`77C*a^#Xa$vJX zZsz7GU;lR|gSMv!N8ov#Urvjcp7%(yd$q3Z)s0#=P#q?XMkcWMf!X~<#L3V1e77Yk z0}YIXqq5fS#G>2fH45b-0v4%%z0y-tcE;Z6=&g9XAlmjXJ@oY~8Bk1Yr1} zYqe-;YKuIq4%JqN)I@R%k2=LK?QbNl*aO)BN@PwSqXM?E4jefdb@jKDX(^02OIo7zX0r$JE3LCx%hXzLHCL z%MZPGic4N&SR}T-_H+@$0ldCL&$}d->%EuY0`{{?6P`JpXMYHDf*#0V0PBkoCxd`& zPPp*C!O%^ksqU8aEXxayP~8j6M30HfT{q8rJnI)sGcXuxXIsV26S}}Hi@>eZ0sL+gb)~BX zG5WUH;rlTXDGa(MJ7m95_b+k7dO5d;A1g6H*d0lm(zGYbz z3VOvHTp&IZkC;f_2#Wg^Oo#5mw-Gu$2YoJkx7`T|RZj$3P`8#o5(Dabz_BgTQT! z9%IeK2fl#y{_X+?ID^PInTM3PrE4HNO7^q>sX(XCyAHII{)96pNWsR;f>a;jYea~5 z4e;wp!+7y|1zKr-<)2wJgBVL&m`YLDj-lXb`KT$4q{$MGHsS)`?G&rds}^yLf$=mNYtvq+v3OG~ia;TU1> z&Y^uduSv%}l)pV61Rab9&-zMv_Y+oDIXl@PK&vos?uZw&Cck?HwY%2CET{fWn>FB$w=l8n@`K0vMB@>5%yz`bbsIap&7i% zVrUPdrlxiP$k+|u2emcN!<>$FRvafbAa?To((c_krKMRyYK&%GD_k~+{l zwrqpT$(W#LpiG@|T^jiV)z(;`N*cjUeRz>(v*Bhg*F*-(oNr+8*4e3K7j6#|!H=n=mCFW?Y?SA-#j_85bpWz-);zgL^% zz+yNQ-UQq)Z6{0J*=!hdVSem1mZiX4EzTkjdMu?O4j)b~0SPZuEAK(pQUV4Lq{R;! zSthUGJ~vQ%C^W{gEM<1IJqOD#0L>n>5Uk?RfbxE{b*9E--oT7W6z~4> zco5&*?7~JmqP+6AR*&NYEcwSgK2w$%|J&Q}R+H+*syj>f&6sywXZLzZr*p?e`yy1r zx7ylT$9JhpD)eaRl0BArvNK)&UGK4WI}`a|PR%12t{@>ogpERu`4sz8o6`qWnUEwA z0FVbkB3H1M=KSc!!_O}?&{WOvv9b%XBLJdwEctx4(@0|E(cxlltSGtRx;Lx`PCaUe zeSFnVP@t=Elb-+l4lUHRz;U6qHb)MqzO1<6b=kJ?;_%{qzGW<~towMm-Z}0BB$S8t zyRHC@6cp$E08rxBJ~R1Brp`U1)o;Q8lJRTRpP*?dX{*!>=I3k;!yt*Ymwb@vw3ee) zxu|RS9#T9%nsGed0j;{f((6o>fH53SNfuFYVOhwzz;FA0YBVg{;ZOq9}LTF9^75PDkx&q=t0 z7kZw0COb_7N>jJe65t&plfDcp8K@%|!DJD;yo`jEGo z>qrXR0Eud~Xu3jW!iM|%oo#WzwYZ54H*W;+6nHOAfvdbR@5&-^Cf$$xOhsWMLekKN zb9njrmu1gYwvnwdWDpX+f{F_C40>K}%4Zh9S~9_4NK=_I5j-8I<0 zX;I-iV4A5b24L-BLQ}`!R~6kLdSNk*fTH9FbG55du8JU*E-IoCB74HsmY${XH zGsfnnkMi!6&S*Q8&baMJiH|N9+$bVJs_Em6mfdT=7xZ<@Qp?J|ZRneqR7nh~Hl8{5 zqNk`TJ1Z+Hr7Lmr;r=ys!MJ(Y=q8jGRiJ&cOG(_d8@k(=d|JTQF~7FxRm;qlMf;7B zBj}IS&j!}rN}_{aN4o>q?b~JUl}`*z@mP0qa8ej>1g7x7L%q=j!P=7=1fGdi?$I5! z!SHeFuCKOxFc9;5ot>^tM#RP-Y~UNkgAmqjh?sDISy&$BwV7ItQCtl9t=Sx=HRT{4 z9)`so4jvvWl9Ea2@1*9w(heYm=3DieRs1DK^Cmlx4lCE8&NLu1{;k36Ejqeo2HTDn z5)~!=GCJ=q!_=u@v#`S0 zZ;EMW^EY$4GPi$NL1F5vRlcu=DQ)br7&8=TAa*=ftq_h0!X-eN+>%60ZQ|O>&{{iy zW*Yup@oh-($X0IMBq;Y-zhgu^oT}$Cd`XI)l zFgz8pNV8KJiJcG%iz77fl!=y+G1zFf&8sWQB%D~p_j*LX+Hv(q$m#DjmkOwIz$4=6t;Q_1}s8%cIcaYuu=`^yj(Ib9ywt_z<`x z@^0!AHVf$5#n|rxdCy}OlkEu@@>a3vNloVaSveG(R>%YVwyP7Zn3&oc%mtt46G`=+ zkIc)Els6X^q%6W4=Re;Wi-5O=wuRp>QK}pSd*^PW?JVCtWkl zBu0Pf>4_qI6c*N#1m4rP6oy-97{-P!Zhv8&-@o>u!E4T09tcpfShRy7EH9SCUwrAj zI#NXCyhYbS>XMh~tF$ojl<~8yeZM-mt^(v~4xw3V583&w8fqGAwsmv{)iOsWm12ta zq9dW!ZR!V>zRPTKT^#Q4`_TGZ947Df><>km$I$<_pw6nkaSvBGT0Eq=4029eI=zKG zW7=+t;E7KBlH?D3a9((j7WN^`lJgJhHR*Qp_qaWfmUk+bSI#$R+{l(a(Hl=x-U3($ zTI^?QJ~%R^cUv%XADHL&D6b!%w$eRb1U82EIt9929!Q@@H!IUSjBzC(FzV&nA8)=C z^jiB|4D6OUFOUS7o)&N@!7~iEFSq;eQ#mhx_*p}7#ILQp_|3+$YrX#d2X1=R zHtlNwM#p(6DgOWG;2eg*_o(o_6Iw~#nY`}T+)&<6P={-kQUyHOWGMpskM zVpQNnIeEEj$?wpcP9PlTVmmbupL}Q>KN*1S>ocI4f)%l<77`Juezbk$j{?|?{6Sq@ z?e}&36&**{T0!01A(ej+_2vfANE3e#kZ7Jl)(f(JX~DoBTHa}@BpeFOB$qPz=KLNBjC+i15$z^L=Q;)(Nvi!n3Z&gdz~7wTWl!$j|@q?qP7M6F>-U8NN~&G*4r(7UUmEo;xOIv_-7eJ zc;dbI8c#p;7Yi#@q3reTO{AReI3u*Er0|qSipX>KGuSa77&cVCt+Jz(`SX*-;~_jAPh@b8$mf-&LYGGFkMH4A7@rfP5KxtQP z9vs%1%04K3lBg>+SFdJ%5AhDbuKuZY>aZVLFLS|KaPL`yyA)`6z;i)=s2KGh7lcD= z@=deBbMCUa#Q(=14=1DkzOG-v3&NJ5(5_J%nm+Q^Z=UJ#T0M}tbVhkXeYwM6kIdWe!Kj7jZ&}` zTg&J$A~mI~;KB`UAnJVJ>y+e2JrN->CDo#^ipS(&-$WJsM%cAhp-Zm>dNqjo4q5|UCmhqOSqOp zrO75>>0~)PVJ+%xA?ipBM3!C6>Nd{ywZGwV1Wke_2U`~A z*AYP=j!wXQWb;MA7T!XMO-|@QeBzd87kxw~FF|x{wgkNZZh(P8cxFuz$wFhLCzz!4 z4lT9db`4d*S|UEMX)mgfvMEhH4yTB&jkYK_!01a*>l$ex{B->IBVzkGme$eX{*OOZ4{&WLzlnoOYg-jcj8 z=(5N7<6pw##M$Z2{Db4hm~lgW%qV;|& zX>X)tr!)KBB;D8I83&x!;xS&bidA@!I5YE8*Sx%i}xx9-wMO9ITC?93J8eMf|sJkHTW$~j{_*Q1n^AsT68&MEWJ)4 z8SZ|ai--zVE@t?S#(^6fL&&g|QHOK$$Q)#`xzHxuND4U3H~Qw8h~xj#7k;vSzT~x< zY=3f_tWPSwc@wCIcD29`er4XyI5~9Im}TUC(F z??9;AV`3o)zj^CTRb7;vr`IRPeg()%B{*pAGtr5<)+1qLCQ<48RZ>%<=y{+7GL;Q(0wthFjG zhon_LB+bFE-cf8)I8@0ob3UBuJrLLr{pikKKl>52{i;-U$Pl?%Pk4y$#S>}NsVGWIEuQq+AIZp| z)A&llCdy;c{!5Cc1i&1F}}LRaTsnZLE4#l&3t7N;h>29#6x%4*+Tgc^dEFZ+aJd z=XZsUjDgF?ImH9?FH@+wjq*3pBt~saqF#bX`#N-Ux9=|TuKBK8+y~ntbGKIr?=2rk zQR3CB7vAmMttUhL3>Q<-s~I?BV`2Q7X_(9|beR0nRti?evf;iD5fb!g>8~7Rd6I@h zyYQ*b9L$jx5rN+@Q~{Kww3ZzQYAmfRK6`NpUcJ? zid{u)42(RS2Q>bXk_w*6j1I!RB2AMjruwH8Sl`sfwvu%$cSq}QMo%-m`}eO5duW1+ z_^z^G4C3uCi{u8#haw9dp1wZXVixSAVHb8{lL7?T*UG0XF=@a>=@I5kd@+@wJcj5S zsZ#h_RCa^7C&r#s>`WJVl7_(dh~1;lGq)isE*e7M{K6 zDv7Y3WYBLG)f4iZ8+4+fvu+?n4hCXt4acepx@H&H26M)2{D)o9nk!i*&dg{nzI{Ia z;R^p0qiM9DB{BelganMW1Y$Vk4wUmE(Jkn;K@^DJ%^?rZ-%sEwLBbJru$aSDo0p&@ z-BvM6Hi8j%KW_NTp*`-81I99JF0}*a%N-7aQqLBq{V_`b)IhI3pCXW`V*a-8Dc4AJ zw%`$l%i}h)qiZLw`uO<)v9xbRv4YFmke5U;UGd5rwhQpXNqoDW(NWAmtHoZ+IS_(0 zc&W=iv3RlN?<8~y3coy3ts2!)$Zc14L^QE!0`otvU?lo*o?_s-@4kDi!=9A+uZA)D z-R}`S01tl$8|=Na+xzf&>h3qfo`I+3MMRA}4~jS3TR5xGInRr`wRHDB+pK|iJh6_y zUXy*g;^}~)^h1_9-5`68_PCByhzfyVX69h(>B(MIA;r0wq^8mo)_{{LTFmkAiOe-* z+-}b&4)8o#tbBkizF5HgFD@{$fPubL&5yDu1E_ls?Z#nFr5^mALg4tTH*csTDBP*4 z&Yin$&H9yW)B!rvC)eD>#KZz3l&dvvChW+4B}04220|SR9uWfKKVudqCOc4O2(aiT zXl5qRgA(LcUvBXs;5{LJr2eG)3c%bC`#{6L%OoEJy1*ccj=@8`aUeeZcczJnRj>&G ztQ0Kz)t4LmfdE`sDDvqq;R@t2aKF$}-ap`)@JW4wbr69!A4Q%0!O8JovIHr=K+J&= zWB$+15POrqber~`9eX)lxHy9QJ5DF-pfqAt9JV5Wd)^>e2(G!#JQglT5En zGoedy@U+WC0dkuqZ~c m%=i6B#I+lzZ2D9(hH-4}WnuFFByJ@N3q-d0oR$Cq^S=Njk6jf2 delta 10418 zcmai)RZyJ47Oe+&ch}(V5?q5j1h?Q0!C`O>?n!{)gaCs(3@*VP0t_~|yTj$2x(~PN z+F!M**7~}4@5lbDdJh{sYvcQ<%gd|l=%@n#%+CNc!22h(nu1RYWUvDOc(vB?teoWK zbyNWWMz{AR(sz;DZ$ms3WaZ@F*|+yh@h)mWA^=`po0I3ARlaA1cbRi`s0>&+TfEmX zUccv$004|qw;OG<-4_dM0Dy_>oiV>l;I%)n!0sKsGvoJ6{4RQUASW!GowJwkJM?-7 z(eD~Wqd-n~w(xyFkm>n7BmP$w8UPmy=P&PP!N2GI_a+(ZG$BK7uAc98%*XEx`(4xk zH~@_A&qja05d8U8*G0vz`GCY}75Dj#2IMWC6nL9Kc72Vx4T2j}3)nawwlH)c=GfqI zCugGOLFVpd$v!F6Z>YgXa%bBjK zdan4_i96AiyCCq{&s`N>n{1)PC%v`O6J61YKaMKKd9l1}8I3z%PKds6=Hq-H?>UY) zzx~#mQ_8Amb_<4?V6-s`>v7@%{($b8dL5>=GR!vbO(+_REb;}MrV3}}2=H?Ed&Sx( z99YNy!89th0lmJ*akt4Iilx%l^9r~h7=%#+UU);=I9t0F znI&p)phYNaBh?r+gTAlP{lpk)apY@3@3mW}G1cNEhFf^~$G%l$!M`WFw{BMDiUFz9=qTLj-B_jP|qZGS|ZVIhd<>r%~oNk;RL#tf4dtDwe3aBt^; zs++_PWEUd!AuuT*{|Oi(I*_{?9EIu^B{~|^A2jyz^9erVifEOy)yzHLJ>L^7FZUAm zBsj}pBYN4ga#eBpdQ!N;`PlbuEimiB!87t9`vH{st7Mi(?dN)%dnwOR%4cxS%fLYM zUfT2EvtZZDi?Xd*+uclBR?aV|+Hrr0Rh{iVAfq1` zSn~FFJ^1eQjPl`>bJz4^vzLpRX?G?ANS$o1pDOThOal z-dBj#mGM;+NLcKx{VJLWpN;9W+g?~BnjxVgT3+XEU1S!=H{<4mHoC>h*4I9=N8mwj+>+$AM>a)vXuuNoRQ6L>2p1R|)*4JDi z_v#GW%!F^}4nm8;$K*`b8VdF>|Je^Hm8J)VaNuU+7nN-qt4l!VV-PD;Obs0yv=~ND z$$xL@0@K5aip+^nZxFtA^oo#5TSz&f3kW)v0kI8`5FA(i z(ep(eVHEv6nmFyr9K=vv0VFB>C|XUfX(H8m6eotVCz8Qnh+kBe?i4MH-$9A71Rd&w z+wwkg(#g=FECy@bR}Hi7dT&I}HEZ@B`v;i?AV*E?&%7{zT2J)oeGF`2WpbmVr#AH; z=mf8>5CZBEu_kPVLsb#ew**xe#3f>wk+-l{-4HzNtwuW?)?(M3#&UW?AUdHY?tt{v zx+Sw}{Y<_X_47%F*Q>5hJ?wKQ;6>Cx?b&tI-q1o^EOm`K@S?t*@NJ`dC%%ebql~{8 zIPBaEcP3ByX~g7Zt(i31`vPEZpM0)x4?SXx}JQk;wtt*22qOoU(VkQ>46Nv z!8a9FJB(Ei%dOX>77A@NC%s0;A(Sx+TNkn)aa8~0(&*rk`!$_Q)06jVCPo!)64TR^ z^bc@NCthy4)UGU89sT~~6j`OQ-6*&W{Qf+?xtq-Eq;K?zI^+<$UoPP<&E^TpQ(r1e zq~~nhAuNQke#sHUgdkx`DOg1gjlfJm##ZjE6OKN= zE2*mbr%U6TYn7UVedD(AANLu9Kis*FUzrvifZ6>?mjy0wUVoaq37s0NMqU&2fJijS z+5^;0B6Fk{{X5zCDeegk@+R(}X${MUxeUkOs@}sKv24Q}{>!jpqW+Y}bY2XdhC)}v zbtR6I9HPOy$I8m=4_Y^d zCNz2q?okz%zUG0u5LEidPxHzFSY0lrDeyv+Id5{K1szZM2}65Ce9!N!2w zW@t7(^z8m2l-Ql0knWmlU*eowH9;oz*&P#)O%3hV3Zs(fqMVZY%~EY6y9An^j%_vT z!6)IphDN!}7$*x>0jDqamy@H&rrT-sWn2h8e5a9+Fvgxc(gnnmlV>g4 zmv)cNzxuTso7}1?=sPL^l>?LmWZD=s)5;T10kGg%syWvpti#cei4BPm{h-Nz`Hcw@ z{B4AbYvI=t2)<{5p;%tC`X9f7>5L5ygoQT9YLk`}nypH@v8j&J{R6|hq$Wc=r}(Gl zj8;C+w$jyNsGH2F3+>om*>@C)(*1(y!VbrV@!)3)?h zVO*yq9%t@nC%uzxSIiRfEpH@-86xCs9!%7-v>U?3?BZK+ArXRfUnK>-`v39ds8mvj zpfr54A5(8BtdgwGQ9`ER!d{=PEerB_+h?l1x%`@-N-64K##M5Y66D3Pej6vG1y`kU zv;t{c(_5}7%50biUX2(SI>t9TqVU6N0+Qxby!SnQpJZZl13rfnezCQTUiG5O{k@Ge z6wL6FA9jkkExI zR8w6qHUs{85j$Ev7VqBji7CvC#|+ushmSb=)nV~fuAnUDa#luc0@}^^fHV(MRyO{! zoC*fq3q{-+`ZwyA&SVn{`K*z^M#7jlmJmUw*(K+se?@sU=+=v$gT`n4>(TQGxs#a{l)u*`uqWOOeFqtEug&kQyttf zUYHg1A@Jeg?qVg&ESL&B-La}{_)CHr3dz!@vw#KyMNImb(4-Sppz@^Atpne}^MAlY zVJ$9yBdpm7`A88fW|8pbc+?9^husvv+G8$vKl3b70RTgYifKPN3yh#=?tWR4t#8)UL(ViJU+BAuW0NsUjEJ=D-u2F(-$ zVmP;ZEVJAy&4eGNksQ%Y4v!`xMuqbGYWiFZ0|*8<B$$Gt{pk`AP|v&UodocDb#O4;8+*8^rNia5h37Dy?hl3Dte>OwU<{JFe+p7(Y zA)?aSA!BtN?h5)rAETlfcEC|5(rLfaM(T1ab@|EI(aFu~v37lF=T(yF2aL z-KfYreEqw&IjvFQNIpoj+<|l(;V<8&pdq?Ds~-871jYEZihF zDmrrXbsL!-F5n^HS+Y^jh$YfIkyIT?2ETA=zvl-!*};K0Q`~156izvKoX$qp&A4{0 zyl>!9Ug`t@NeD#Iwvrc;sbcMxQ|z|1m^4ShBD=Dfc}h3$+_65fk7R%Cb#ph={#Zq7 zot~X=e7cbfhk?QurG8q;-dx?Guw*Red%S;I@S0~d3uPF7tS?Qr++jGrQsvyd%*8xLw2d1}fM6AM~^M<`YS!r4^VlL2*vpSwoUun=`y{KVTV zm9LH@U%`?&=gY&J`Vw+YH)$*{!yD`U_%%>eTGly!z=`|ED2B$0!ED>C$qs}@uh*o; z!R_keB-+p{Bn_Uy-z@lcczVy2!k5Z4(yHkt1F88gz0YB3W3}y1or^+a6)tl1P`P02 zPcjTjDeD9x3h}H-+xq5vvH}>xZDR1($43jSZ)JI>D{IZREkWptg7PBF`s63+hqS=h zm!Se_@HZ@9*sfm@f>Gz)=(+eQd>;}W+v(;Zi_=78kwNfke3VOk8Y@k_ulOvRZKcjX znqBLiCBGQWn*^W#zQ~;vF$L5S4O$lEBpTRO@XA~(Gcy+7*@aIH2oTXX1P0URjhlOl z9R2+IYEpwnUZH%2Gfp-XY%aTyM=1j&FpwHTcws1}{PsmrOVS!qg`jAdfp75QK-EV6 zxM8Pp_8e1^S%oaoWUC)c7N*Mgw`hi5%%UcO0N%w6d>8+&1F1IMA9ARQR5(g8wjXlL- zXCK_ew8G+KABcM|u(;1*fVI<@@Ksfus-gssTygHh%;I0Hc`UvjhPn!;`R6Uw=tM$k zGl$78$ji&n{ALa3jzwRl4tKZI#;=&t%aOfJVOY8xF`1z4qG(#7y|U6V*kk)cV+jTt z8VeaMlFA#A5_ZfbMFH{l?J^MXgk;&QC9#^|-@o3qeW|3mjw>cowjb-;mqHnO=%Rvm z>vy;u(Gv!+ejiVsd|-@GF%$RYa2Yn)17Il!DEeyv#uizJsO?2A2`xpC7Ksma{NFL0)WCK%NiGoq|T3VkFQ)NFPF6*i5 zH_+vLvV2~TOi&*AWHv)|XUBoDX4U^m#}*moqhD&Uz9a!r0EkTcr-o_Lf1Cs zzHNu&R^c*UBIGlW()j@I@Yiz0SPUVm?GIpK7nA)6AHMXLUk1kqaa4-PthFpm8fY95>*5FQs(t3)kTK_=sU#0@hbIx+MFWkQ=_>=5z0FUOLNx;GZw}Rl${yP_1L)C!iUx6OdOf`#Hx56&nDL z8eckORlG0@=p4BP2lk~49;ZtC%#>ik&w`uSw|YF^>nnF=Rg*c!%AP9-x~>P~_g>`f zo@Vm=4_>sHcGW#tjW|U(nQd{1Z|IO>CyT-!E#0JeFf)E)5+a zF7ML$XRHRp4i?iWy9&Ne>P|YN{~jzz4le5YG<-4uoYg}&_7uIPGk1ERqp{0{)HXwH z&k7`P3N=5~Wg1FakP**{(mj57{IHAWp)`5oP(#6-p}}U}O1;O6R=*y3jq4vPob@>N zGws{XWxeBpS!6l9_$S)7ia#A;YqAAP_vRMZJ2h(>g=Q+86BJ&x!O+B5NH7`2SMow! z;aj0jU^FCrt$!-EQ+_lY?uE{fR(4AGFVE-NFhN6+pmbfn&pQ3}_51=AN=(EItdJc~ zBc8+Si#e$EG<~>L`$u#RSx8WpJ{@<=Fua-SC62LkcCZhEL_#R;6=VIEUL6=QSp~L< zu_^%A&BoUx58IAv>gf8&JnjbzOwm$D&f{0`xioHpy4178WSY*FSkWy-3*Ta zv(6U3fPf8U5i7h2rPUV&wnzKxEA7gE#Ht2^yE=)rTJj^cf4R|~Y~>$fVzkgA{>E~T z0ufGr-7Mo4{N)kQEFk)(+f_eP0jiOVpM@OvA)EEI6ctvu+SxU@l3PWmrzWE~-$wz+ z846M}6Fy(pp{U@S7fNypWi`$yLT649UaI>9jYi;BV#l0fDKO4phdj(Y}n(1I9Eo-f{t>#9a&8ra=D{$ zuHM)_vPFY}f4Ylv(vo2No&LWWlCE1n+JA;~Nvn~I2Nr5@=5ULPh=`l=8)|Cm>S}Tu z^1IAu5uy}qkYVl90haq)M|?OU3qJ)R9KlFr9tEP@HdyZn;yzp#7Ehsdj^yPT04uAi z{#?yHm5J}4o>43$E@1L`xhA+kYA(BsfW+vyAWl15qiyHpm}qJ6Gqmi?!O&IxFW%jg zp)Anz<&Fpx@U5Xiggn??KbP*`KPmhS*TZFz$44@xTk!o1E2F%E&)IVQ(^9SV{A*nP zv!`4AQ0IgD3*iglbp&y=Q0bQ<;Bw(W!~OE!(5)!M=oJzUl1O1@T^Xrnx!k4#8C~_K z$th1j*4LzUBF`KSZf~j8+ssGQP#f|XuKj{8@ufutVv;Z0*7gV*4w`@iQIw z5es%>j!mxfuXu8&bhbnqq#8tYYmm*)#wOul69A3Ou<>rOWan(I5z{*YVk%>Y74(`T zOGhe#d83kv(sr7A~E%|%HscoIK+cEYa+{ZawH*l8*cF8xCI zf<2LCDvj6B&!fx5XoQHzYEj{Ys*lSt)X20RSXJm9&W4y=j4RoN zeSzh?r0?EvYd3y1L9{97EAHuazdzM=Q9zesKy1&GI@Y-CCoST3`==KxxMkt^wk2qR zzl<$(d@BtA4eq=NXt=pZ%9AOb`EEkL?`oL0)N~TtyRv`DYnyq(UAB!mN2o!!3SKF@+w^3fCa9RoYA*b7z5{Ja|K4=5kz zWQ8WSun9if0%f)7j+2G^IXpc0K`iJO;8UwqU~u^4wLKkIR8>z$4QWqYHnl%Zr)~(1 z8Rts6tK!`ILxJxyq#cCgfTCSPTTsx>(F*4+om*C$b6okGbeF8nF-?@ajL_4Y|NTb* zNvG5ikrX*d5*#irdA5P{IMc_47+~Dj{^()p@+`^?#27EGu-W5Uj}aEFhQ3hQ~Yc zP1$ikv9l*B9`K`%sr}QGV9rVFwm9dCt0!(y{Z1I2MBB)!chB#21~kz&zC=`t;Zj^) z4bX)E@W}NrK0+b6CXDw`$uIS^A-(4@KJh4?scy;1aG}eH|P5382#E{fAnyg zB|}9;g@^8;`3{($S8Rsn538!*+Z*F1-Qu#Vv;6JImau@`)YEqxWp_Z$>0^h@_+Ww~ zDkoEly3xT4EJgH>o1>c`yTf2*eUwL@DWVx-pb2V6mv`DZNmrX%(wYirFQLtgvT>g< z$W+zJN>$bBjO*pL5aboFySMoy$nrSA(x}DT8Dki#VllLLKZiNcn%^CaLI{_$n)R*jz$ z7$-wM6Iz_@1ZW5M$RFbb3{Tv0zz29eSCZTc&F33C%P_eDNH$qaOy+!?IQ+Qk1oW3n!4--nGHu1Htaf`DR%{WWQsi(^ zrYPd5S|8_z?>bt*g@3`B5Ml%;-|-r-%O_x6#5bb9{PWWD>m^-tug%h7wOyOfRn(3f zt0$TmLG-Cu=O&RGGG_5$!0=OaBA0OVD$@7C+9%dz!l>d9dS&Ref*;DZ54Ym;E<=l8 z6Exn>jB!GmzE}=-n#u1%PCN{i?2CJKWgK*h$MgnqEjXot?`ofwfKVsmD6tAC(G<)T zLN8j(lW=zQC0%d6h7RWzjyojZ8JhEg8f&*aWS5t`lAO77z)s4|W(9~RwDhm&I48Xdx;I?)aXei0pTbF)nOA5G%r?uTmAK_IA&Zgu z1cqete)HixY*2Ql1@!mbrE1f{Ztrhc&-$wRA=Cz%mpTrDba zz`7{wsoPu8k22OSY&&80Ge=2&=P6L}x*VlW()!<<%UA!~T{~grt7|dfKUQnwDX0ey zLYeipJX_$-W}lEMOTOA2{4B@ifaPvm-69GB;cf`(jTGAUk4XPsV@-Y$my&S8-SoU#=uYMr^}XZ!2dH z*TlH+VBjd;9pr-&4B^aEZy^It+%yFhffYMN`m|{ z%q(TuzfxW*m7&7PHteOQdk0qGpW5rt*Y);1pJnco8Cmw^;n;Yf!!h*MQoI=$gRG*x#6)!`{MeB2i#vygLAEUc>|?1^IX{@Fw;jq%LXU`je+D%Y5)}#U{qVX?pN~- z`;;VvBB^WW-Wag@tK}d_ea*x;@NR8D56f2?!ljAdE!1}p?MB@pSGQ+YP^@7)-MNI-o_fPDp57|^Rt`Yk6B!af;uiI zL^-q8^pRVpe1n!PEVlKdmmeBG2(3=(!xgs`6#V8Ll#?-8_9s8SGzFT7n1DQy91k!%`9Gz}rD9tHo*9z1WKwB(KW$gLZ=vQylfl})D5OlrM5woLZ_ z1_Z6$3IqfwSK^Qs47fJqwXZFP+25vNMTV4{UC2Ok>f}C~#!tHB2d@#k+BY|^vna#Z9pWBh%)K!eIUco}9e|w3zN&x%GF;Xal=Y4qQ)kdXjt4aD`2$)b=6Z3s?-l zp1IP-utY!a!4Fyxaw6itgmd3>H*nVmlj6xE)PmVR&TA4_S^xR_mYz`gIRWOf$En9* zG*S5RTiN(p?5QHrwPf?^!3T8U_HO9P#ZV%`JV`fn-ag7TIXPX6$Ro^;(1fD~@k+x01{{zO|7TNxWpz-f z!uEr67mph+cSv{ZXkAvaJp*Em5K;sz0G|rE{eA8(t(+y0Wr~mh(F#$Ax^JV8D^`kd zSj*f1C4w67nV6nLhlT})r~s?!eX9llV3DTAN(P(Gkmkrbg3ogyPWqo#Hj;?n(BFp< J-$x7){s*LCMmGQe diff --git a/rainloop/v/0.0.0/static/js/admin.js b/rainloop/v/0.0.0/static/js/admin.js index effe22f9c..8954505e2 100644 --- a/rainloop/v/0.0.0/static/js/admin.js +++ b/rainloop/v/0.0.0/static/js/admin.js @@ -495,12 +495,7 @@ Enums.InterfaceAnimation = { Enums.ContactScopeType = { 'Default': 0, - - 'Auto': 1, - - 'ShareAll': 2, - 'ShareDomain': 3, - 'ShareEmail': 4 + 'ShareAll': 2 }; /** @@ -1316,6 +1311,7 @@ Utils.initDataConstructorBySettings = function (oData) oData.editorDefaultType = ko.observable(Enums.EditorDefaultType.Html); oData.showImages = ko.observable(false); oData.interfaceAnimation = ko.observable(Enums.InterfaceAnimation.Full); + oData.contactsAutosave = ko.observable(false); Globals.sAnimationType = Enums.InterfaceAnimation.Full; @@ -5319,6 +5315,7 @@ function AdminContacts() this.defautOptionsAfterRender = Utils.defautOptionsAfterRender; this.enableContacts = ko.observable(!!RL.settingsGet('ContactsEnable')); + this.contactsSharing = ko.observable(!!RL.settingsGet('ContactsSharing')); var aTypes = ['sqlite', 'mysql', 'pgsql'], @@ -5486,6 +5483,12 @@ AdminContacts.prototype.onBuild = function () 'ContactsEnable': bValue ? '1' : '0' }); }); + + self.contactsSharing.subscribe(function (bValue) { + RL.remote().saveAdminConfig(null, { + 'ContactsSharing': bValue ? '1' : '0' + }); + }); self.contactsType.subscribe(function (sValue) { RL.remote().saveAdminConfig(f5, { @@ -6094,6 +6097,7 @@ AbstractData.prototype.populateDataOnStart = function() this.editorDefaultType(RL.settingsGet('EditorDefaultType')); this.showImages(!!RL.settingsGet('ShowImages')); + this.contactsAutosave(!!RL.settingsGet('ContactsAutosave')); this.interfaceAnimation(RL.settingsGet('InterfaceAnimation')); this.mainMessagesPerPage(RL.settingsGet('MPP')); diff --git a/rainloop/v/0.0.0/static/js/admin.min.js b/rainloop/v/0.0.0/static/js/admin.min.js index c818d7596..319dcbbd4 100644 --- a/rainloop/v/0.0.0/static/js/admin.min.js +++ b/rainloop/v/0.0.0/static/js/admin.min.js @@ -1,4 +1,4 @@ /*! RainLoop Webmail Admin Module (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */ -!function(a,b,c,d,e,f){"use strict";function g(){this.sBase="#/",this.sCdnStaticDomain=eb.settingsGet("CdnStaticDomain"),this.sVersion=eb.settingsGet("Version"),this.sSpecSuffix=eb.settingsGet("AuthAccountHash")||"0",this.sServer=(eb.settingsGet("IndexFile")||"./")+"?",this.sCdnStaticDomain=""===this.sCdnStaticDomain?this.sCdnStaticDomain:"/"===this.sCdnStaticDomain.substr(-1)?this.sCdnStaticDomain:this.sCdnStaticDomain+"/"}function h(){}function i(){}function j(){var a=[i,h],b=f.find(a,function(a){return a.supported()});b&&(b=b,this.oDriver=new b)}function k(){}function l(a,b){this.sPosition=U.pString(a),this.sTemplate=U.pString(b),this.viewModelName="",this.viewModelVisibility=c.observable(!1),"Popups"===this.sPosition&&(this.modalVisibility=c.observable(!1)),this.viewModelDom=null}function m(a,b){this.sScreenName=a,this.aViewModels=U.isArray(b)?b:[]}function n(){this.sDefaultScreenName="",this.oScreens={},this.oBoot=null,this.oCurrentScreen=null,this.popupVisibility=c.observable(!1),this.popupVisibility.subscribe(function(a){eb&&eb.popupVisibility(a)})}function o(a,b){this.email=a||"",this.name=b||"",this.privateType=null,this.clearDuplicateName()}function p(){l.call(this,"Popups","PopupsDomain"),this.edit=c.observable(!1),this.saving=c.observable(!1),this.savingError=c.observable(""),this.whiteListPage=c.observable(!1),this.testing=c.observable(!1),this.testingDone=c.observable(!1),this.testingImapError=c.observable(!1),this.testingSmtpError=c.observable(!1),this.imapServerFocus=c.observable(!1),this.smtpServerFocus=c.observable(!1),this.name=c.observable(""),this.imapServer=c.observable(""),this.imapPort=c.observable(R.Values.ImapDefaulPort),this.imapSecure=c.observable(S.ServerSecure.None),this.imapShortLogin=c.observable(!1),this.smtpServer=c.observable(""),this.smtpPort=c.observable(R.Values.SmtpDefaulPort),this.smtpSecure=c.observable(S.ServerSecure.None),this.smtpShortLogin=c.observable(!1),this.smtpAuth=c.observable(!0),this.whiteList=c.observable(""),this.imapServerFocus.subscribe(function(a){a&&""!==this.name()&&""===this.imapServer()&&this.imapServer(this.name())},this),this.smtpServerFocus.subscribe(function(a){a&&""!==this.imapServer()&&""===this.smtpServer()&&this.smtpServer(this.imapServer())},this),this.headerText=c.computed(function(){var a=this.name();return this.edit()?'Edit Domain "'+a+'"':"Add Domain"+(""===a?"":' "'+a+'"')},this),this.domainIsComputed=c.computed(function(){return""!==this.name()&&""!==this.imapServer()&&""!==this.imapPort()&&""!==this.smtpServer()&&""!==this.smtpPort()},this),this.canBeTested=c.computed(function(){return!this.testing()&&this.domainIsComputed()},this),this.canBeSaved=c.computed(function(){return!this.saving()&&this.domainIsComputed()},this),this.createOrAddCommand=U.createCommand(this,function(){this.saving(!0),eb.remote().createOrUpdateDomain(f.bind(this.onDomainCreateOrSaveResponse,this),!this.edit(),this.name(),this.imapServer(),this.imapPort(),this.imapSecure(),this.imapShortLogin(),this.smtpServer(),this.smtpPort(),this.smtpSecure(),this.smtpShortLogin(),this.smtpAuth(),this.whiteList())},this.canBeSaved),this.testConnectionCommand=U.createCommand(this,function(){this.whiteListPage(!1),this.testingDone(!1),this.testingImapError(!1),this.testingSmtpError(!1),this.testing(!0),eb.remote().testConnectionForDomain(f.bind(this.onTestConnectionResponse,this),this.imapServer(),this.imapPort(),this.imapSecure(),this.smtpServer(),this.smtpPort(),this.smtpSecure(),this.smtpAuth())},this.canBeTested),this.whiteListCommand=U.createCommand(this,function(){this.whiteListPage(!this.whiteListPage())}),n.constructorEnd(this)}function q(){l.call(this,"Popups","PopupsPlugin");var a=this;this.onPluginSettingsUpdateResponse=f.bind(this.onPluginSettingsUpdateResponse,this),this.saveError=c.observable(""),this.name=c.observable(""),this.readme=c.observable(""),this.configures=c.observableArray([]),this.hasReadme=c.computed(function(){return""!==this.readme()},this),this.hasConfiguration=c.computed(function(){return 0').appendTo("body"),bb.on("error",function(a){eb&&a&&a.originalEvent&&a.originalEvent.message&&-1===U.inArray(a.originalEvent.message,["Script error.","Uncaught Error: Error calling method on NPObject."])&&eb.remote().jsError(U.emptyFunction,a.originalEvent.message,a.originalEvent.filename,a.originalEvent.lineno,location&&location.toString?location.toString():"",ab.attr("class"),U.microtime()-X.now)})}function Q(){P.call(this),this.oData=null,this.oRemote=null,this.oCache=null}var R={},S={},T={},U={},V={},W={},X={},Y={settings:[],"settings-removed":[],"settings-disabled":[]},Z=null,$=a.rainloopAppData||{},_=a.rainloopI18N||{},ab=b("html"),bb=b(a),cb=b(a.document),db=a.Notification&&a.Notification.requestPermission?a.Notification:null,eb=null;X.now=(new Date).getTime(),X.momentTrigger=c.observable(!0),X.langChangeTrigger=c.observable(!0),X.iAjaxErrorCount=0,X.iTokenErrorCount=0,X.iMessageBodyCacheCount=0,X.bUnload=!1,X.sUserAgent=(navigator.userAgent||"").toLowerCase(),X.bIsiOSDevice=-1/g,">").replace(/"/g,""").replace(/'/g,"'"):""},U.splitPlainText=function(a,b){var c="",d="",e=a,f=0,g=0;for(b=U.isUnd(b)?100:b;e.length>b;)d=e.substring(0,b),f=d.lastIndexOf(" "),g=d.lastIndexOf("\n"),-1!==g&&(f=g),-1===f&&(f=b),c+=d.substring(0,f)+"\n",e=e.substring(f+1);return c+e},U.timeOutAction=function(){var b={};return function(c,d,e){U.isUnd(b[c])&&(b[c]=0),a.clearTimeout(b[c]),b[c]=a.setTimeout(d,e)}}(),U.timeOutActionSecond=function(){var b={};return function(c,d,e){b[c]||(b[c]=a.setTimeout(function(){d(),b[c]=0},e))}}(),U.audio=function(){var b=!1;return function(c,d){if(!1===b)if(X.bIsiOSDevice)b=null;else{var e=!1,f=!1,g=a.Audio?new a.Audio:null;g&&g.canPlayType&&g.play?(e=""!==g.canPlayType('audio/mpeg; codecs="mp3"'),e||(f=""!==g.canPlayType('audio/ogg; codecs="vorbis"')),e||f?(b=g,b.preload="none",b.loop=!1,b.autoplay=!1,b.muted=!1,b.src=e?c:d):b=null):b=null}return b}}(),U.hos=function(a,b){return a&&Object.hasOwnProperty?Object.hasOwnProperty.call(a,b):!1},U.i18n=function(a,b,c){var d="",e=U.isUnd(_[a])?U.isUnd(c)?a:c:_[a];if(!U.isUnd(b)&&!U.isNull(b))for(d in b)U.hos(b,d)&&(e=e.replace("%"+d+"%",b[d]));return e},U.i18nToNode=function(a){f.defer(function(){b(".i18n",a).each(function(){var a=b(this),c="";c=a.data("i18n-text"),c?a.text(U.i18n(c)):(c=a.data("i18n-html"),c&&a.html(U.i18n(c)),c=a.data("i18n-placeholder"),c&&a.attr("placeholder",U.i18n(c)))})})},U.i18nToDoc=function(){a.rainloopI18N&&(_=a.rainloopI18N||{},U.i18nToNode(cb),X.langChangeTrigger(!X.langChangeTrigger())),a.rainloopI18N={}},U.initOnStartOrLangChange=function(a,b,c){a&&a.call(b),c?X.langChangeTrigger.subscribe(function(){a&&a.call(b),c.call(b)}):a&&X.langChangeTrigger.subscribe(a,b)},U.inFocus=function(){var a=document.activeElement;return a&&("INPUT"===a.tagName||"TEXTAREA"===a.tagName||"IFRAME"===a.tagName||"DIV"===a.tagName&&"editorHtmlArea"===a.className&&a.contentEditable)},U.removeInFocus=function(){if(document&&document.activeElement&&document.activeElement.blur){var a=b(document.activeElement);(a.is("input")||a.is("textarea"))&&document.activeElement.blur()}},U.removeSelection=function(){if(a&&a.getSelection){var b=a.getSelection();b&&b.removeAllRanges&&b.removeAllRanges()}else document&&document.selection&&document.selection.empty&&document.selection.empty()},U.replySubjectAdd=function(b,c,d){var e=null,f=U.trim(c);return null===(e=new a.RegExp("^"+b+"[\\s]?\\:(.*)$","gi").exec(c))||U.isUnd(e[1])?null===(e=new a.RegExp("^("+b+"[\\s]?[\\[\\(]?)([\\d]+)([\\]\\)]?[\\s]?\\:.*)$","gi").exec(c))||U.isUnd(e[1])||U.isUnd(e[2])||U.isUnd(e[3])?f=b+": "+c:(f=e[1]+(U.pInt(e[2])+1)+e[3],f=e[1]+(U.pInt(e[2])+1)+e[3]):f=b+"[2]: "+e[1],f=f.replace(/[\s]+/g," "),(U.isUnd(d)?!0:d)?U.fixLongSubject(f):f},U.fixLongSubject=function(a){var b=0,c=null;a=U.trim(a.replace(/[\s]+/," "));do c=/^Re(\[([\d]+)\]|):[\s]{0,3}Re(\[([\d]+)\]|):/gi.exec(a),(!c||U.isUnd(c[0]))&&(c=null),c&&(b=0,b+=U.isUnd(c[2])?1:0+U.pInt(c[2]),b+=U.isUnd(c[4])?1:0+U.pInt(c[4]),a=a.replace(/^Re(\[[\d]+\]|):[\s]{0,3}Re(\[[\d]+\]|):/gi,"Re"+(b>0?"["+b+"]":"")+":"));while(c);return a=a.replace(/[\s]+/," ")},U.roundNumber=function(a,b){return Math.round(a*Math.pow(10,b))/Math.pow(10,b)},U.friendlySize=function(a){return a=U.pInt(a),a>=1073741824?U.roundNumber(a/1073741824,1)+"GB":a>=1048576?U.roundNumber(a/1048576,1)+"MB":a>=1024?U.roundNumber(a/1024,0)+"KB":a+"B"},U.log=function(b){a.console&&a.console.log&&a.console.log(b)},U.getNotification=function(a){return a=U.pInt(a),U.isUnd(T[a])?"":T[a]},U.initNotificationLanguage=function(){T[S.Notification.InvalidToken]=U.i18n("NOTIFICATIONS/INVALID_TOKEN"),T[S.Notification.AuthError]=U.i18n("NOTIFICATIONS/AUTH_ERROR"),T[S.Notification.AccessError]=U.i18n("NOTIFICATIONS/ACCESS_ERROR"),T[S.Notification.ConnectionError]=U.i18n("NOTIFICATIONS/CONNECTION_ERROR"),T[S.Notification.CaptchaError]=U.i18n("NOTIFICATIONS/CAPTCHA_ERROR"),T[S.Notification.SocialFacebookLoginAccessDisable]=U.i18n("NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE"),T[S.Notification.SocialTwitterLoginAccessDisable]=U.i18n("NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE"),T[S.Notification.SocialGoogleLoginAccessDisable]=U.i18n("NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE"),T[S.Notification.DomainNotAllowed]=U.i18n("NOTIFICATIONS/DOMAIN_NOT_ALLOWED"),T[S.Notification.AccountNotAllowed]=U.i18n("NOTIFICATIONS/ACCOUNT_NOT_ALLOWED"),T[S.Notification.CantGetMessageList]=U.i18n("NOTIFICATIONS/CANT_GET_MESSAGE_LIST"),T[S.Notification.CantGetMessage]=U.i18n("NOTIFICATIONS/CANT_GET_MESSAGE"),T[S.Notification.CantDeleteMessage]=U.i18n("NOTIFICATIONS/CANT_DELETE_MESSAGE"),T[S.Notification.CantMoveMessage]=U.i18n("NOTIFICATIONS/CANT_MOVE_MESSAGE"),T[S.Notification.CantCopyMessage]=U.i18n("NOTIFICATIONS/CANT_MOVE_MESSAGE"),T[S.Notification.CantSaveMessage]=U.i18n("NOTIFICATIONS/CANT_SAVE_MESSAGE"),T[S.Notification.CantSendMessage]=U.i18n("NOTIFICATIONS/CANT_SEND_MESSAGE"),T[S.Notification.InvalidRecipients]=U.i18n("NOTIFICATIONS/INVALID_RECIPIENTS"),T[S.Notification.CantCreateFolder]=U.i18n("NOTIFICATIONS/CANT_CREATE_FOLDER"),T[S.Notification.CantRenameFolder]=U.i18n("NOTIFICATIONS/CANT_RENAME_FOLDER"),T[S.Notification.CantDeleteFolder]=U.i18n("NOTIFICATIONS/CANT_DELETE_FOLDER"),T[S.Notification.CantDeleteNonEmptyFolder]=U.i18n("NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER"),T[S.Notification.CantSubscribeFolder]=U.i18n("NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER"),T[S.Notification.CantUnsubscribeFolder]=U.i18n("NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER"),T[S.Notification.CantSaveSettings]=U.i18n("NOTIFICATIONS/CANT_SAVE_SETTINGS"),T[S.Notification.CantSavePluginSettings]=U.i18n("NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS"),T[S.Notification.DomainAlreadyExists]=U.i18n("NOTIFICATIONS/DOMAIN_ALREADY_EXISTS"),T[S.Notification.CantInstallPackage]=U.i18n("NOTIFICATIONS/CANT_INSTALL_PACKAGE"),T[S.Notification.CantDeletePackage]=U.i18n("NOTIFICATIONS/CANT_DELETE_PACKAGE"),T[S.Notification.InvalidPluginPackage]=U.i18n("NOTIFICATIONS/INVALID_PLUGIN_PACKAGE"),T[S.Notification.UnsupportedPluginPackage]=U.i18n("NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE"),T[S.Notification.LicensingServerIsUnavailable]=U.i18n("NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE"),T[S.Notification.LicensingExpired]=U.i18n("NOTIFICATIONS/LICENSING_EXPIRED"),T[S.Notification.LicensingBanned]=U.i18n("NOTIFICATIONS/LICENSING_BANNED"),T[S.Notification.DemoSendMessageError]=U.i18n("NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR"),T[S.Notification.AccountAlreadyExists]=U.i18n("NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS"),T[S.Notification.MailServerError]=U.i18n("NOTIFICATIONS/MAIL_SERVER_ERROR"),T[S.Notification.UnknownNotification]=U.i18n("NOTIFICATIONS/UNKNOWN_ERROR"),T[S.Notification.UnknownError]=U.i18n("NOTIFICATIONS/UNKNOWN_ERROR")},U.getUploadErrorDescByCode=function(a){var b="";switch(U.pInt(a)){case S.UploadErrorCode.FileIsTooBig:b=U.i18n("UPLOAD/ERROR_FILE_IS_TOO_BIG");break;case S.UploadErrorCode.FilePartiallyUploaded:b=U.i18n("UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED");break;case S.UploadErrorCode.FileNoUploaded:b=U.i18n("UPLOAD/ERROR_NO_FILE_UPLOADED");break;case S.UploadErrorCode.MissingTempFolder:b=U.i18n("UPLOAD/ERROR_MISSING_TEMP_FOLDER");break;case S.UploadErrorCode.FileOnSaveingError:b=U.i18n("UPLOAD/ERROR_ON_SAVING_FILE");break;case S.UploadErrorCode.FileType:b=U.i18n("UPLOAD/ERROR_FILE_TYPE");break;default:b=U.i18n("UPLOAD/ERROR_UNKNOWN")}return b},U.killCtrlAandS=function(b){if(b=b||a.event){var c=b.target||b.srcElement,d=b.keyCode||b.which;if(b.ctrlKey&&d===S.EventKeyCode.S)return b.preventDefault(),void 0;if(c&&c.tagName&&c.tagName.match(/INPUT|TEXTAREA/i))return;b.ctrlKey&&d===S.EventKeyCode.A&&(a.getSelection?a.getSelection().removeAllRanges():a.document.selection&&a.document.selection.clear&&a.document.selection.clear(),b.preventDefault())}},U.createCommand=function(a,b,d){var e=b?function(){return e.canExecute&&e.canExecute()&&b.apply(a,Array.prototype.slice.call(arguments)),!1}:function(){};return e.enabled=c.observable(!0),d=U.isUnd(d)?!0:d,e.canExecute=U.isFunc(d)?c.computed(function(){return e.enabled()&&d.call(a)}):c.computed(function(){return e.enabled()&&!!d}),e},U.initDataConstructorBySettings=function(b){b.editorDefaultType=c.observable(S.EditorDefaultType.Html),b.showImages=c.observable(!1),b.interfaceAnimation=c.observable(S.InterfaceAnimation.Full),X.sAnimationType=S.InterfaceAnimation.Full,b.allowThemes=c.observable(!0),b.allowCustomLogin=c.observable(!1),b.allowLanguagesOnSettings=c.observable(!0),b.allowLanguagesOnLogin=c.observable(!0),b.desktopNotifications=c.observable(!1),b.useThreads=c.observable(!0),b.replySameFolder=c.observable(!0),b.usePreviewPane=c.observable(!0),b.useCheckboxesInList=c.observable(!0),b.interfaceAnimation.subscribe(function(a){if(X.bMobileDevice||a===S.InterfaceAnimation.None)ab.removeClass("rl-anim rl-anim-full").addClass("no-rl-anim"),X.sAnimationType=S.InterfaceAnimation.None;else switch(a){case S.InterfaceAnimation.Full:ab.removeClass("no-rl-anim").addClass("rl-anim rl-anim-full"),X.sAnimationType=a;break;case S.InterfaceAnimation.Normal:ab.removeClass("no-rl-anim rl-anim-full").addClass("rl-anim"),X.sAnimationType=a}}),b.interfaceAnimation.valueHasMutated(),b.desktopNotificationsPermisions=c.computed(function(){b.desktopNotifications();var c=S.DesktopNotifications.NotSupported;if(db&&db.permission)switch(db.permission.toLowerCase()){case"granted":c=S.DesktopNotifications.Allowed; -break;case"denied":c=S.DesktopNotifications.Denied;break;case"default":c=S.DesktopNotifications.NotAllowed}else a.webkitNotifications&&a.webkitNotifications.checkPermission&&(c=a.webkitNotifications.checkPermission());return c}),b.useDesktopNotifications=c.computed({read:function(){return b.desktopNotifications()&&S.DesktopNotifications.Allowed===b.desktopNotificationsPermisions()},write:function(a){if(a){var c=b.desktopNotificationsPermisions();S.DesktopNotifications.Allowed===c?b.desktopNotifications(!0):S.DesktopNotifications.NotAllowed===c?db.requestPermission(function(){b.desktopNotifications.valueHasMutated(),S.DesktopNotifications.Allowed===b.desktopNotificationsPermisions()?b.desktopNotifications()?b.desktopNotifications.valueHasMutated():b.desktopNotifications(!0):b.desktopNotifications()?b.desktopNotifications(!1):b.desktopNotifications.valueHasMutated()}):b.desktopNotifications(!1)}else b.desktopNotifications(!1)}}),b.language=c.observable(""),b.languages=c.observableArray([]),b.mainLanguage=c.computed({read:b.language,write:function(a){a!==b.language()?-1=b.diff(c,"hours")?d:b.format("L")===c.format("L")?U.i18n("MESSAGE_LIST/TODAY_AT",{TIME:c.format("LT")}):b.clone().subtract("days",1).format("L")===c.format("L")?U.i18n("MESSAGE_LIST/YESTERDAY_IN",{TIME:c.format("LT")}):b.year()===c.year()?c.format("D MMM."):c.format("LL")},a)},U.isFolderExpanded=function(a){var b=eb.local().get(S.ClientSideKeyName.ExpandedFolders);return f.isArray(b)&&-1!==f.indexOf(b,a)},U.setExpandedFolder=function(a,b){var c=eb.local().get(S.ClientSideKeyName.ExpandedFolders);f.isArray(c)||(c=[]),b?(c.push(a),c=f.uniq(c)):c=f.without(c,a),eb.local().set(S.ClientSideKeyName.ExpandedFolders,c)},U.initLayoutResizer=function(a,c,d,e,g,h,i,j){e=e||300,g=g||500,h=h||g-e/2,i=i||300;var k=0,l=b(a),m=b(c),n=b(d),o=eb.local().get(j)||h,p=function(a,b,c){if(b||c){var d=n.width(),e=b?b.size.width/d*100:null;null===e&&c&&(e=l.width()/d*100),null!==e&&(l.css({width:"",height:"",right:""+(100-e)+"%"}),m.css({width:"",height:"",left:""+e+"%"}))}},q=function(b,c){if(c&&c.element&&c.element[0].id&&"#"+c.element[0].id==""+a){var d=n.width();k=d-i,k=g>k?k:g,l.resizable("option","maxWidth",k),c.size&&c.size.width&&eb.local().set(j,c.size.width),p(null,null,!0)}};o&&l.width(o),k=n.width()-i,k=g>k?k:g,l.resizable({minWidth:e,maxWidth:k,handles:"e",resize:p,stop:p}),p(null,null,!0),bb.resize(f.throttle(q,400))},U.initBlockquoteSwitcher=function(a){if(a){var c=b("blockquote:not(.rl-bq-switcher)",a).filter(function(){return 0===b(this).parent().closest("blockquote",a).length});c&&0100)&&(a.addClass("rl-bq-switcher hidden-bq"),b('').insertBefore(a).click(function(){a.toggleClass("hidden-bq"),U.windowResize()}).after("
").before("
"))})}},U.removeBlockquoteSwitcher=function(a){a&&(b(a).find("blockquote.rl-bq-switcher").each(function(){b(this).removeClass("rl-bq-switcher hidden-bq")}),b(a).find(".rlBlockquoteSwitcher").each(function(){b(this).remove()}))},U.extendAsViewModel=function(a,b,c){b&&(c||(c=l),b.__name=a,V.regViewModelHook(a,b),f.extend(b.prototype,c.prototype))},U.addSettingsViewModel=function(a,b,c,d,e){a.__rlSettingsData={Label:c,Template:b,Route:d,IsDefault:!!e},Y.settings.push(a)},U.removeSettingsViewModel=function(a){Y["settings-removed"].push(a)},U.disableSettingsViewModel=function(a){Y["settings-disabled"].push(a)},U.convertThemeName=function(a){return U.trim(a.replace(/[^a-zA-Z]/g," ").replace(/([A-Z])/g," $1").replace(/[\s]+/g," "))},U.quoteName=function(a){return a.replace(/["]/g,'\\"')},U.microtime=function(){return(new Date).getTime()},U.convertLangName=function(a,b){return U.i18n("LANGS_NAMES"+(!0===b?"_EN":"")+"/LANG_"+a.toUpperCase().replace(/[^a-zA-Z0-9]+/,"_"),null,a)},U.fakeMd5=function(a){var b="",c="0123456789abcdefghijklmnopqrstuvwxyz";for(a=U.isUnd(a)?32:U.pInt(a);b.length/g,">").replace(/")},U.draggeblePlace=function(){return b('
 
').appendTo("#rl-hidden")},U.defautOptionsAfterRender=function(a,b){b&&!U.isUnd(b.disable)&&c.applyBindingsToNode(a,{disable:b.disable},b)},U.windowPopupKnockout=function(c,d,e,f){var g=null,h=a.open(""),i="__OpenerApplyBindingsUid"+U.fakeMd5()+"__",j=b("#"+d);a[i]=function(){if(h&&h.document.body&&j&&j[0]){var d=b(h.document.body);b("#rl-content",d).html(j.html()),b("html",h.document).addClass("external "+b("html").attr("class")),U.i18nToNode(d),n.prototype.applyExternal(c,b("#rl-content",d)[0]),a[i]=null,f(h)}},h.document.open(),h.document.write(''+U.encodeHtml(e)+'
'),h.document.close(),g=h.document.createElement("script"),g.type="text/javascript",g.innerHTML="if(window&&window.opener&&window.opener['"+i+"']){window.opener['"+i+"']();window.opener['"+i+"']=null}",h.document.getElementsByTagName("head")[0].appendChild(g)},U.settingsSaveHelperFunction=function(a,b,c,d){return c=c||null,d=U.isUnd(d)?1e3:U.pInt(d),function(e,g,h,i,j){b.call(c,g&&g.Result?S.SaveSettingsStep.TrueResult:S.SaveSettingsStep.FalseResult),a&&a.call(c,e,g,h,i,j),f.delay(function(){b.call(c,S.SaveSettingsStep.Idle)},d)}},U.settingsSaveHelperSimpleFunction=function(a,b){return U.settingsSaveHelperFunction(null,a,b,1e3)},U.resizeAndCrop=function(b,c,d){var e=new a.Image;e.onload=function(){var a=[0,0],b=document.createElement("canvas"),e=b.getContext("2d");b.width=c,b.height=c,a=this.width>this.height?[this.width-this.height,0]:[0,this.height-this.width],e.fillStyle="#fff",e.fillRect(0,0,c,c),e.drawImage(this,a[0]/2,a[1]/2,this.width-a[0],this.height-a[1],0,0,c,c),d(b.toDataURL("image/jpeg"))},e.src=b},U.computedPagenatorHelper=function(a,b){return function(){var c=0,d=0,e=2,f=[],g=a(),h=b(),i=function(a,b,c){var d={current:a===g,name:U.isUnd(c)?a.toString():c.toString(),custom:U.isUnd(c)?!1:!0,title:U.isUnd(c)?"":a.toString(),value:a.toString()};(U.isUnd(b)?0:!b)?f.unshift(d):f.push(d)};if(h>1||h>0&&g>h){for(g>h?(i(h),c=h,d=h):((3>=g||g>=h-2)&&(e+=2),i(g),c=g,d=g);e>0;)if(c-=1,d+=1,c>0&&(i(c,!1),e--),h>=d)i(d,!0),e--;else if(0>=c)break;3===c?i(2,!1):c>3&&i(Math.round((c-1)/2),!1,"..."),h-2===d?i(h-1,!0):h-2>d&&i(Math.round((h+d)/2),!0,"..."),c>1&&i(1,!1),h>d&&i(h,!0)}return f}},W={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",urlsafe_encode:function(a){return W.encode(a).replace(/[+]/g,"-").replace(/[\/]/g,"_").replace(/[=]/g,".")},encode:function(a){var b,c,d,e,f,g,h,i="",j=0;for(a=W._utf8_encode(a);j>2,f=(3&b)<<4|c>>4,g=(15&c)<<2|d>>6,h=63&d,isNaN(c)?g=h=64:isNaN(d)&&(h=64),i=i+this._keyStr.charAt(e)+this._keyStr.charAt(f)+this._keyStr.charAt(g)+this._keyStr.charAt(h);return i},decode:function(a){var b,c,d,e,f,g,h,i="",j=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");j>4,c=(15&f)<<4|g>>2,d=(3&g)<<6|h,i+=String.fromCharCode(b),64!==g&&(i+=String.fromCharCode(c)),64!==h&&(i+=String.fromCharCode(d));return W._utf8_decode(i)},_utf8_encode:function(a){a=a.replace(/\r\n/g,"\n");for(var b="",c=0,d=a.length,e=0;d>c;c++)e=a.charCodeAt(c),128>e?b+=String.fromCharCode(e):e>127&&2048>e?(b+=String.fromCharCode(e>>6|192),b+=String.fromCharCode(63&e|128)):(b+=String.fromCharCode(e>>12|224),b+=String.fromCharCode(e>>6&63|128),b+=String.fromCharCode(63&e|128));return b},_utf8_decode:function(a){for(var b="",c=0,d=0,e=0,f=0;cd?(b+=String.fromCharCode(d),c++):d>191&&224>d?(e=a.charCodeAt(c+1),b+=String.fromCharCode((31&d)<<6|63&e),c+=2):(e=a.charCodeAt(c+1),f=a.charCodeAt(c+2),b+=String.fromCharCode((15&d)<<12|(63&e)<<6|63&f),c+=3);return b}},c.bindingHandlers.tooltip={init:function(a,d){if(!X.bMobileDevice){var e=b(a).data("tooltip-class")||"",f=b(a).data("tooltip-placement")||"top";b(a).tooltip({delay:{show:500,hide:100},html:!0,placement:f,trigger:"hover",title:function(){return''+U.i18n(c.utils.unwrapObservable(d()))+""}})}}},c.bindingHandlers.tooltip2={init:function(a,c){var d=b(a).data("tooltip-class")||"",e=b(a).data("tooltip-placement")||"top";b(a).tooltip({delay:{show:500,hide:100},html:!0,placement:e,title:function(){return''+c()()+""}})}},c.bindingHandlers.dropdown={init:function(a){b(a).closest(".dropdown").on("click",".e-item",function(){b(a).dropdown("toggle")})}},c.bindingHandlers.popover={init:function(a,d){b(a).popover(c.utils.unwrapObservable(d()))}},c.bindingHandlers.resizecrop={init:function(a){b(a).addClass("resizecrop").resizecrop({width:"100",height:"100",wrapperCSS:{"border-radius":"10px"}})},update:function(a,c){c()(),b(a).resizecrop({width:"100",height:"100"})}},c.bindingHandlers.onEnter={init:function(c,d,e,f){b(c).on("keypress",function(e){e&&13===a.parseInt(e.keyCode,10)&&(b(c).trigger("change"),d().call(f))})}},c.bindingHandlers.onEsc={init:function(c,d,e,f){b(c).on("keypress",function(e){e&&27===a.parseInt(e.keyCode,10)&&(b(c).trigger("change"),d().call(f))})}},c.bindingHandlers.modal={init:function(a,d){b(a).modal({keyboard:!1,show:c.utils.unwrapObservable(d())}).on("hidden",function(){d()(!1)})},update:function(a,d){var e=c.utils.unwrapObservable(d());b(a).modal(e?"show":"hide"),f.delay(function(){b(a).toggleClass("popup-active",e)},1)}},c.bindingHandlers.i18nInit={init:function(a){U.i18nToNode(a)}},c.bindingHandlers.i18nUpdate={update:function(a,b){c.utils.unwrapObservable(b()),U.i18nToNode(a)}},c.bindingHandlers.link={update:function(a,d){b(a).attr("href",c.utils.unwrapObservable(d()))}},c.bindingHandlers.title={update:function(a,d){b(a).attr("title",c.utils.unwrapObservable(d()))}},c.bindingHandlers.textF={init:function(a,d){b(a).text(c.utils.unwrapObservable(d()))}},c.bindingHandlers.initDom={init:function(a,b){b()(a)}},c.bindingHandlers.initResizeTrigger={init:function(a,d){var e=c.utils.unwrapObservable(d());b(a).css({height:e[1],"min-height":e[1]})},update:function(a,d){var e=c.utils.unwrapObservable(d()),f=U.pInt(e[1]),g=0,h=b(a).offset().top;h>0&&(h+=U.pInt(e[2]),g=bb.height()-h,g>f&&(f=g),b(a).css({height:f,"min-height":f}))}},c.bindingHandlers.appendDom={update:function(a,d){b(a).hide().empty().append(c.utils.unwrapObservable(d())).show()}},c.bindingHandlers.draggable={init:function(d,e,f){if(!X.bMobileDevice){var g=100,h=3,i=f(),j=i&&i.droppableSelector?i.droppableSelector:"",k={distance:20,handle:".dragHandle",cursorAt:{top:22,left:3},refreshPositions:!0,scroll:!0};j&&(k.drag=function(c){b(j).each(function(){var d=null,e=null,f=b(this),i=f.offset(),j=i.top+f.height();a.clearInterval(f.data("timerScroll")),f.data("timerScroll",!1),c.pageX>=i.left&&c.pageX<=i.left+f.width()&&(c.pageY>=j-g&&c.pageY<=j&&(d=function(){f.scrollTop(f.scrollTop()+h),U.windowResize()},f.data("timerScroll",a.setInterval(d,10)),d()),c.pageY>=i.top&&c.pageY<=i.top+g&&(e=function(){f.scrollTop(f.scrollTop()-h),U.windowResize()},f.data("timerScroll",a.setInterval(e,10)),e()))})},k.stop=function(){b(j).each(function(){a.clearInterval(b(this).data("timerScroll")),b(this).data("timerScroll",!1)})}),k.helper=function(a){return e()(a&&a.target?c.dataFor(a.target):null,!!a.shiftKey)},b(d).draggable(k).on("mousedown",function(){U.removeInFocus()})}}},c.bindingHandlers.droppable={init:function(a,c,d){if(!X.bMobileDevice){var e=c(),f=d(),g=f&&f.droppableOver?f.droppableOver:null,h=f&&f.droppableOut?f.droppableOut:null,i={tolerance:"pointer",hoverClass:"droppableHover"};e&&(i.drop=function(a,b){e(a,b)},g&&(i.over=function(a,b){g(a,b)}),h&&(i.out=function(a,b){h(a,b)}),b(a).droppable(i))}}},c.bindingHandlers.nano={init:function(a){X.bDisableNanoScroll||b(a).addClass("nano").nanoScroller({iOSNativeScrolling:!1,preventPageScrolling:!0})}},c.bindingHandlers.saveTrigger={init:function(a){var c=b(a);c.data("save-trigger-type",c.is("input[type=text],input[type=email],input[type=password],select,textarea")?"input":"custom"),"custom"===c.data("save-trigger-type")?c.append('  ').addClass("settings-saved-trigger"):c.addClass("settings-saved-trigger-input")},update:function(a,d){var e=c.utils.unwrapObservable(d()),f=b(a);if("custom"===f.data("save-trigger-type"))switch(e.toString()){case"1":f.find(".animated,.error").hide().removeClass("visible").end().find(".success").show().addClass("visible");break;case"0":f.find(".animated,.success").hide().removeClass("visible").end().find(".error").show().addClass("visible");break;case"-2":f.find(".error,.success").hide().removeClass("visible").end().find(".animated").show().addClass("visible");break;default:f.find(".animated").hide().end().find(".error,.success").removeClass("visible")}else switch(e.toString()){case"1":f.addClass("success").removeClass("error");break;case"0":f.addClass("error").removeClass("success");break;case"-2":break;default:f.removeClass("error success")}}},c.bindingHandlers.emailsTags={init:function(a,c){var d=b(a),e=c();d.inputosaurus({parseOnBlur:!0,inputDelimiters:[",",";"],autoCompleteSource:function(a,b){eb.getAutocomplete(a.term,function(a){b(f.map(a,function(a){return a.toLine(!1)}))})},parseHook:function(a){return f.map(a,function(a){var b=U.trim(a),c=null;return""!==b?(c=new o,c.mailsoParse(b),c.clearDuplicateName(),[c.toLine(!1),c]):[b,null]})},change:f.bind(function(a){d.data("EmailsTagsValue",a.target.value),e(a.target.value)},this)}),e.subscribe(function(a){d.data("EmailsTagsValue")!==a&&(d.val(a),d.inputosaurus("refresh"))}),e.focusTrigger&&e.focusTrigger.subscribe(function(){d.inputosaurus("focus")})}},c.bindingHandlers.command={init:function(a,d,e,f){var g=b(a),h=d();if(!h||!h.enabled||!h.canExecute)throw new Error("You are not using command function");g.addClass("command"),c.bindingHandlers[g.is("form")?"submit":"click"].init.apply(f,arguments)},update:function(a,c){var d=!0,e=b(a),f=c();d=f.enabled(),e.toggleClass("command-not-enabled",!d),d&&(d=f.canExecute(),e.toggleClass("command-can-not-be-execute",!d)),e.toggleClass("command-disabled disable disabled",!d),(e.is("input")||e.is("button"))&&e.prop("disabled",!d)}},c.extenders.trimmer=function(a){var b=c.computed({read:a,write:function(b){a(U.trim(b.toString()))},owner:this});return b(a()),b},c.extenders.reversible=function(a){var b=a();return a.commit=function(){b=a()},a.reverse=function(){a(b)},a.commitedValue=function(){return b},a},c.extenders.toggleSubscribe=function(a,b){return a.subscribe(b[1],b[0],"beforeChange"),a.subscribe(b[2],b[0]),a},c.extenders.falseTimeout=function(b,c){return b.iTimeout=0,b.subscribe(function(d){d&&(a.clearTimeout(b.iTimeout),b.iTimeout=a.setTimeout(function(){b(!1),b.iTimeout=0},U.pInt(c)))}),b},c.observable.fn.validateNone=function(){return this.hasError=c.observable(!1),this},c.observable.fn.validateEmail=function(){return this.hasError=c.observable(!1),this.subscribe(function(a){a=U.trim(a),this.hasError(""!==a&&!/^[^@\s]+@[^@\s]+$/.test(a))},this),this.valueHasMutated(),this},c.observable.fn.validateSimpleEmail=function(){return this.hasError=c.observable(!1),this.subscribe(function(a){a=U.trim(a),this.hasError(""!==a&&!/^.+@.+$/.test(a))},this),this.valueHasMutated(),this},c.observable.fn.validateFunc=function(a){return this.hasFuncError=c.observable(!1),U.isFunc(a)&&(this.subscribe(function(b){this.hasFuncError(!a(b))},this),this.valueHasMutated()),this},g.prototype.root=function(){return this.sBase},g.prototype.attachmentDownload=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/Download/"+a},g.prototype.attachmentPreview=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/View/"+a},g.prototype.attachmentPreviewAsPlain=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/ViewAsPlain/"+a},g.prototype.upload=function(){return this.sServer+"/Upload/"+this.sSpecSuffix+"/"},g.prototype.uploadBackground=function(){return this.sServer+"/UploadBackground/"+this.sSpecSuffix+"/"},g.prototype.append=function(){return this.sServer+"/Append/"+this.sSpecSuffix+"/"},g.prototype.change=function(b){return this.sServer+"/Change/"+this.sSpecSuffix+"/"+a.encodeURIComponent(b)+"/"},g.prototype.ajax=function(a){return this.sServer+"/Ajax/"+this.sSpecSuffix+"/"+a},g.prototype.messageViewLink=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/ViewAsPlain/"+a},g.prototype.messageDownloadLink=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/Download/"+a},g.prototype.inbox=function(){return this.sBase+"mailbox/Inbox"},g.prototype.settings=function(a){var b=this.sBase+"settings";return U.isUnd(a)||""===a||(b+="/"+a),b},g.prototype.admin=function(a){var b=this.sBase;switch(a){case"AdminDomains":b+="domains";break;case"AdminSecurity":b+="security";break;case"AdminLicensing":b+="licensing"}return b},g.prototype.mailBox=function(a,b,c){b=U.isNormal(b)?U.pInt(b):1,c=U.pString(c);var d=this.sBase+"mailbox/";return""!==a&&(d+=encodeURI(a)),b>1&&(d=d.replace(/[\/]+$/,""),d+="/p"+b),""!==c&&(d=d.replace(/[\/]+$/,""),d+="/"+encodeURI(c)),d},g.prototype.phpInfo=function(){return this.sServer+"Info"},g.prototype.langLink=function(a){return this.sServer+"/Lang/0/"+encodeURI(a)+"/"+this.sVersion+"/"},g.prototype.getUserPicUrlFromHash=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/UserPic/"+a+"/"+this.sVersion+"/"},g.prototype.emptyContactPic=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/css/images/empty-contact.png"},g.prototype.sound=function(a){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/sounds/"+a},g.prototype.themePreviewLink=function(a){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/themes/"+encodeURI(a)+"/images/preview.png"},g.prototype.notificationMailIcon=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/css/images/icom-message-notification.png"},g.prototype.socialGoogle=function(){return this.sServer+"SocialGoogle"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},g.prototype.socialTwitter=function(){return this.sServer+"SocialTwitter"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},g.prototype.socialFacebook=function(){return this.sServer+"SocialFacebook"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},V.oViewModelsHooks={},V.oSimpleHooks={},V.regViewModelHook=function(a,b){b&&(b.__hookName=a)},V.addHook=function(a,b){U.isFunc(b)&&(U.isArray(V.oSimpleHooks[a])||(V.oSimpleHooks[a]=[]),V.oSimpleHooks[a].push(b))},V.runHook=function(a,b){U.isArray(V.oSimpleHooks[a])&&(b=b||[],f.each(V.oSimpleHooks[a],function(a){a.apply(null,b)}))},V.mainSettingsGet=function(a){return eb?eb.settingsGet(a):null},V.remoteRequest=function(a,b,c,d,e,f){eb&&eb.remote().defaultRequest(a,b,c,d,e,f)},V.settingsGet=function(a,b){var c=V.mainSettingsGet("Plugins");return c=c&&U.isUnd(c[a])?null:c[a],c?U.isUnd(c[b])?null:c[b]:null},h.supported=function(){return!0},h.prototype.set=function(a,c){var d=b.cookie(R.Values.ClientSideCookieIndexName),e=!1,f=null;try{f=null===d?null:JSON.parse(d),f||(f={}),f[a]=c,b.cookie(R.Values.ClientSideCookieIndexName,JSON.stringify(f),{expires:30}),e=!0}catch(g){}return e},h.prototype.get=function(a){var c=b.cookie(R.Values.ClientSideCookieIndexName),d=null;try{d=null===c?null:JSON.parse(c),d=d&&!U.isUnd(d[a])?d[a]:null}catch(e){}return d},i.supported=function(){return!!a.localStorage},i.prototype.set=function(b,c){var d=a.localStorage[R.Values.ClientSideCookieIndexName]||null,e=!1,f=null;try{f=null===d?null:JSON.parse(d),f||(f={}),f[b]=c,a.localStorage[R.Values.ClientSideCookieIndexName]=JSON.stringify(f),e=!0}catch(g){}return e},i.prototype.get=function(b){var c=a.localStorage[R.Values.ClientSideCookieIndexName]||null,d=null;try{d=null===c?null:JSON.parse(c),d=d&&!U.isUnd(d[b])?d[b]:null}catch(e){}return d},j.prototype.oDriver=null,j.prototype.set=function(a,b){return this.oDriver?this.oDriver.set("p"+a,b):!1},j.prototype.get=function(a){return this.oDriver?this.oDriver.get("p"+a):null},k.prototype.bootstart=function(){},l.prototype.sPosition="",l.prototype.sTemplate="",l.prototype.viewModelName="",l.prototype.viewModelDom=null,l.prototype.viewModelTemplate=function(){return this.sTemplate},l.prototype.viewModelPosition=function(){return this.sPosition},l.prototype.cancelCommand=l.prototype.closeCommand=function(){},m.prototype.oCross=null,m.prototype.sScreenName="",m.prototype.aViewModels=[],m.prototype.viewModels=function(){return this.aViewModels},m.prototype.screenName=function(){return this.sScreenName},m.prototype.routes=function(){return null},m.prototype.__cross=function(){return this.oCross},m.prototype.__start=function(){var a=this.routes(),b=null,c=null;U.isNonEmptyArray(a)&&(c=f.bind(this.onRoute||U.emptyFunction,this),b=d.create(),f.each(a,function(a){b.addRoute(a[0],c).rules=a[1]}),this.oCross=b)},n.constructorEnd=function(a){U.isFunc(a.__constructor_end)&&a.__constructor_end.call(a)},n.prototype.sDefaultScreenName="",n.prototype.oScreens={},n.prototype.oBoot=null,n.prototype.oCurrentScreen=null,n.prototype.showLoading=function(){b("#rl-loading").show()},n.prototype.hideLoading=function(){b("#rl-loading").hide()},n.prototype.routeOff=function(){e.changed.active=!1},n.prototype.routeOn=function(){e.changed.active=!0},n.prototype.setBoot=function(a){return U.isNormal(a)&&(this.oBoot=a),this},n.prototype.screen=function(a){return""===a||U.isUnd(this.oScreens[a])?null:this.oScreens[a]},n.prototype.delegateRun=function(a,b,c){a&&a[b]&&a[b].apply(a,U.isArray(c)?c:[])},n.prototype.buildViewModel=function(a,d){if(a&&!a.__builded){var e=new a(d),f=e.viewModelPosition(),g=b("#rl-content #rl-"+f.toLowerCase()),h=null;a.__builded=!0,a.__vm=e,e.data=eb.data(),e.viewModelName=a.__name,g&&1===g.length?(h=b("
").addClass("rl-settings-view-model").hide().attr("data-bind",'template: {name: "'+g.__rlSettingsData.Template+'"}, i18nInit: true'),i.appendTo(h),e.data=eb.data(),e.viewModelDom=i,e.__rlSettingsData=g.__rlSettingsData,g.__dom=i,g.__builded=!0,g.__vm=e,c.applyBindings(e,i[0]),Z.delegateRun(e,"onBuild",[i])):U.log("Cannot find sub settings view model position: SettingsSubScreen")),e&&f.defer(function(){d.oCurrentSubScreen&&(Z.delegateRun(d.oCurrentSubScreen,"onHide"),d.oCurrentSubScreen.viewModelDom.hide()),d.oCurrentSubScreen=e,d.oCurrentSubScreen&&(d.oCurrentSubScreen.viewModelDom.show(),Z.delegateRun(d.oCurrentSubScreen,"onShow"),f.each(d.menu(),function(a){a.selected(e&&e.__rlSettingsData&&a.route===e.__rlSettingsData.Route)}),b("#rl-content .b-settings .b-content .content").scrollTop(0)),U.windowResize()})):Z.setHash(eb.link().settings(),!1,!0)},M.prototype.onHide=function(){this.oCurrentSubScreen&&this.oCurrentSubScreen.viewModelDom&&(Z.delegateRun(this.oCurrentSubScreen,"onHide"),this.oCurrentSubScreen.viewModelDom.hide())},M.prototype.onBuild=function(){f.each(Y.settings,function(a){a&&a.__rlSettingsData&&!f.find(Y["settings-removed"],function(b){return b&&b===a})&&this.menu.push({route:a.__rlSettingsData.Route,label:a.__rlSettingsData.Label,selected:c.observable(!1),disabled:!!f.find(Y["settings-disabled"],function(b){return b&&b===a})})},this),this.oViewModelPlace=b("#rl-content #rl-settings-subscreen")},M.prototype.routes=function(){var a=f.find(Y.settings,function(a){return a&&a.__rlSettingsData&&a.__rlSettingsData.IsDefault}),b=a?a.__rlSettingsData.Route:"general",c={subname:/^(.*)$/,normalize_:function(a,c){return c.subname=U.isUnd(c.subname)?b:U.pString(c.subname),[c.subname]}};return[["{subname}/",c],["{subname}",c],["",c]]},f.extend(N.prototype,m.prototype),N.prototype.onShow=function(){eb.setTitle("")},f.extend(O.prototype,M.prototype),O.prototype.onShow=function(){eb.setTitle("")},f.extend(P.prototype,k.prototype),P.prototype.oSettings=null,P.prototype.oPlugins=null,P.prototype.oLocal=null,P.prototype.oLink=null,P.prototype.oSubs={},P.prototype.download=function(b){var c=null,d=null,e=navigator.userAgent.toLowerCase();return e&&(e.indexOf("chrome")>-1||e.indexOf("chrome")>-1)&&(c=document.createElement("a"),c.href=b,document.createEvent&&(d=document.createEvent("MouseEvents"),d&&d.initEvent&&c.dispatchEvent))?(d.initEvent("click",!0,!0),c.dispatchEvent(d),!0):(X.bMobileDevice?(a.open(b,"_self"),a.focus()):this.iframe.attr("src",b),!0)},P.prototype.link=function(){return null===this.oLink&&(this.oLink=new g),this.oLink},P.prototype.local=function(){return null===this.oLocal&&(this.oLocal=new j),this.oLocal},P.prototype.settingsGet=function(a){return null===this.oSettings&&(this.oSettings=U.isNormal($)?$:{}),U.isUnd(this.oSettings[a])?null:this.oSettings[a]},P.prototype.settingsSet=function(a,b){null===this.oSettings&&(this.oSettings=U.isNormal($)?$:{}),this.oSettings[a]=b},P.prototype.setTitle=function(b){b=(0').appendTo("body"),bb.on("error",function(a){eb&&a&&a.originalEvent&&a.originalEvent.message&&-1===U.inArray(a.originalEvent.message,["Script error.","Uncaught Error: Error calling method on NPObject."])&&eb.remote().jsError(U.emptyFunction,a.originalEvent.message,a.originalEvent.filename,a.originalEvent.lineno,location&&location.toString?location.toString():"",ab.attr("class"),U.microtime()-X.now)})}function Q(){P.call(this),this.oData=null,this.oRemote=null,this.oCache=null}var R={},S={},T={},U={},V={},W={},X={},Y={settings:[],"settings-removed":[],"settings-disabled":[]},Z=null,$=a.rainloopAppData||{},_=a.rainloopI18N||{},ab=b("html"),bb=b(a),cb=b(a.document),db=a.Notification&&a.Notification.requestPermission?a.Notification:null,eb=null;X.now=(new Date).getTime(),X.momentTrigger=c.observable(!0),X.langChangeTrigger=c.observable(!0),X.iAjaxErrorCount=0,X.iTokenErrorCount=0,X.iMessageBodyCacheCount=0,X.bUnload=!1,X.sUserAgent=(navigator.userAgent||"").toLowerCase(),X.bIsiOSDevice=-1/g,">").replace(/"/g,""").replace(/'/g,"'"):""},U.splitPlainText=function(a,b){var c="",d="",e=a,f=0,g=0;for(b=U.isUnd(b)?100:b;e.length>b;)d=e.substring(0,b),f=d.lastIndexOf(" "),g=d.lastIndexOf("\n"),-1!==g&&(f=g),-1===f&&(f=b),c+=d.substring(0,f)+"\n",e=e.substring(f+1);return c+e},U.timeOutAction=function(){var b={};return function(c,d,e){U.isUnd(b[c])&&(b[c]=0),a.clearTimeout(b[c]),b[c]=a.setTimeout(d,e)}}(),U.timeOutActionSecond=function(){var b={};return function(c,d,e){b[c]||(b[c]=a.setTimeout(function(){d(),b[c]=0},e))}}(),U.audio=function(){var b=!1;return function(c,d){if(!1===b)if(X.bIsiOSDevice)b=null;else{var e=!1,f=!1,g=a.Audio?new a.Audio:null;g&&g.canPlayType&&g.play?(e=""!==g.canPlayType('audio/mpeg; codecs="mp3"'),e||(f=""!==g.canPlayType('audio/ogg; codecs="vorbis"')),e||f?(b=g,b.preload="none",b.loop=!1,b.autoplay=!1,b.muted=!1,b.src=e?c:d):b=null):b=null}return b}}(),U.hos=function(a,b){return a&&Object.hasOwnProperty?Object.hasOwnProperty.call(a,b):!1},U.i18n=function(a,b,c){var d="",e=U.isUnd(_[a])?U.isUnd(c)?a:c:_[a];if(!U.isUnd(b)&&!U.isNull(b))for(d in b)U.hos(b,d)&&(e=e.replace("%"+d+"%",b[d]));return e},U.i18nToNode=function(a){f.defer(function(){b(".i18n",a).each(function(){var a=b(this),c="";c=a.data("i18n-text"),c?a.text(U.i18n(c)):(c=a.data("i18n-html"),c&&a.html(U.i18n(c)),c=a.data("i18n-placeholder"),c&&a.attr("placeholder",U.i18n(c)))})})},U.i18nToDoc=function(){a.rainloopI18N&&(_=a.rainloopI18N||{},U.i18nToNode(cb),X.langChangeTrigger(!X.langChangeTrigger())),a.rainloopI18N={}},U.initOnStartOrLangChange=function(a,b,c){a&&a.call(b),c?X.langChangeTrigger.subscribe(function(){a&&a.call(b),c.call(b)}):a&&X.langChangeTrigger.subscribe(a,b)},U.inFocus=function(){var a=document.activeElement;return a&&("INPUT"===a.tagName||"TEXTAREA"===a.tagName||"IFRAME"===a.tagName||"DIV"===a.tagName&&"editorHtmlArea"===a.className&&a.contentEditable)},U.removeInFocus=function(){if(document&&document.activeElement&&document.activeElement.blur){var a=b(document.activeElement);(a.is("input")||a.is("textarea"))&&document.activeElement.blur()}},U.removeSelection=function(){if(a&&a.getSelection){var b=a.getSelection();b&&b.removeAllRanges&&b.removeAllRanges()}else document&&document.selection&&document.selection.empty&&document.selection.empty()},U.replySubjectAdd=function(b,c,d){var e=null,f=U.trim(c);return null===(e=new a.RegExp("^"+b+"[\\s]?\\:(.*)$","gi").exec(c))||U.isUnd(e[1])?null===(e=new a.RegExp("^("+b+"[\\s]?[\\[\\(]?)([\\d]+)([\\]\\)]?[\\s]?\\:.*)$","gi").exec(c))||U.isUnd(e[1])||U.isUnd(e[2])||U.isUnd(e[3])?f=b+": "+c:(f=e[1]+(U.pInt(e[2])+1)+e[3],f=e[1]+(U.pInt(e[2])+1)+e[3]):f=b+"[2]: "+e[1],f=f.replace(/[\s]+/g," "),(U.isUnd(d)?!0:d)?U.fixLongSubject(f):f},U.fixLongSubject=function(a){var b=0,c=null;a=U.trim(a.replace(/[\s]+/," "));do c=/^Re(\[([\d]+)\]|):[\s]{0,3}Re(\[([\d]+)\]|):/gi.exec(a),(!c||U.isUnd(c[0]))&&(c=null),c&&(b=0,b+=U.isUnd(c[2])?1:0+U.pInt(c[2]),b+=U.isUnd(c[4])?1:0+U.pInt(c[4]),a=a.replace(/^Re(\[[\d]+\]|):[\s]{0,3}Re(\[[\d]+\]|):/gi,"Re"+(b>0?"["+b+"]":"")+":"));while(c);return a=a.replace(/[\s]+/," ")},U.roundNumber=function(a,b){return Math.round(a*Math.pow(10,b))/Math.pow(10,b)},U.friendlySize=function(a){return a=U.pInt(a),a>=1073741824?U.roundNumber(a/1073741824,1)+"GB":a>=1048576?U.roundNumber(a/1048576,1)+"MB":a>=1024?U.roundNumber(a/1024,0)+"KB":a+"B"},U.log=function(b){a.console&&a.console.log&&a.console.log(b)},U.getNotification=function(a){return a=U.pInt(a),U.isUnd(T[a])?"":T[a]},U.initNotificationLanguage=function(){T[S.Notification.InvalidToken]=U.i18n("NOTIFICATIONS/INVALID_TOKEN"),T[S.Notification.AuthError]=U.i18n("NOTIFICATIONS/AUTH_ERROR"),T[S.Notification.AccessError]=U.i18n("NOTIFICATIONS/ACCESS_ERROR"),T[S.Notification.ConnectionError]=U.i18n("NOTIFICATIONS/CONNECTION_ERROR"),T[S.Notification.CaptchaError]=U.i18n("NOTIFICATIONS/CAPTCHA_ERROR"),T[S.Notification.SocialFacebookLoginAccessDisable]=U.i18n("NOTIFICATIONS/SOCIAL_FACEBOOK_LOGIN_ACCESS_DISABLE"),T[S.Notification.SocialTwitterLoginAccessDisable]=U.i18n("NOTIFICATIONS/SOCIAL_TWITTER_LOGIN_ACCESS_DISABLE"),T[S.Notification.SocialGoogleLoginAccessDisable]=U.i18n("NOTIFICATIONS/SOCIAL_GOOGLE_LOGIN_ACCESS_DISABLE"),T[S.Notification.DomainNotAllowed]=U.i18n("NOTIFICATIONS/DOMAIN_NOT_ALLOWED"),T[S.Notification.AccountNotAllowed]=U.i18n("NOTIFICATIONS/ACCOUNT_NOT_ALLOWED"),T[S.Notification.CantGetMessageList]=U.i18n("NOTIFICATIONS/CANT_GET_MESSAGE_LIST"),T[S.Notification.CantGetMessage]=U.i18n("NOTIFICATIONS/CANT_GET_MESSAGE"),T[S.Notification.CantDeleteMessage]=U.i18n("NOTIFICATIONS/CANT_DELETE_MESSAGE"),T[S.Notification.CantMoveMessage]=U.i18n("NOTIFICATIONS/CANT_MOVE_MESSAGE"),T[S.Notification.CantCopyMessage]=U.i18n("NOTIFICATIONS/CANT_MOVE_MESSAGE"),T[S.Notification.CantSaveMessage]=U.i18n("NOTIFICATIONS/CANT_SAVE_MESSAGE"),T[S.Notification.CantSendMessage]=U.i18n("NOTIFICATIONS/CANT_SEND_MESSAGE"),T[S.Notification.InvalidRecipients]=U.i18n("NOTIFICATIONS/INVALID_RECIPIENTS"),T[S.Notification.CantCreateFolder]=U.i18n("NOTIFICATIONS/CANT_CREATE_FOLDER"),T[S.Notification.CantRenameFolder]=U.i18n("NOTIFICATIONS/CANT_RENAME_FOLDER"),T[S.Notification.CantDeleteFolder]=U.i18n("NOTIFICATIONS/CANT_DELETE_FOLDER"),T[S.Notification.CantDeleteNonEmptyFolder]=U.i18n("NOTIFICATIONS/CANT_DELETE_NON_EMPTY_FOLDER"),T[S.Notification.CantSubscribeFolder]=U.i18n("NOTIFICATIONS/CANT_SUBSCRIBE_FOLDER"),T[S.Notification.CantUnsubscribeFolder]=U.i18n("NOTIFICATIONS/CANT_UNSUBSCRIBE_FOLDER"),T[S.Notification.CantSaveSettings]=U.i18n("NOTIFICATIONS/CANT_SAVE_SETTINGS"),T[S.Notification.CantSavePluginSettings]=U.i18n("NOTIFICATIONS/CANT_SAVE_PLUGIN_SETTINGS"),T[S.Notification.DomainAlreadyExists]=U.i18n("NOTIFICATIONS/DOMAIN_ALREADY_EXISTS"),T[S.Notification.CantInstallPackage]=U.i18n("NOTIFICATIONS/CANT_INSTALL_PACKAGE"),T[S.Notification.CantDeletePackage]=U.i18n("NOTIFICATIONS/CANT_DELETE_PACKAGE"),T[S.Notification.InvalidPluginPackage]=U.i18n("NOTIFICATIONS/INVALID_PLUGIN_PACKAGE"),T[S.Notification.UnsupportedPluginPackage]=U.i18n("NOTIFICATIONS/UNSUPPORTED_PLUGIN_PACKAGE"),T[S.Notification.LicensingServerIsUnavailable]=U.i18n("NOTIFICATIONS/LICENSING_SERVER_IS_UNAVAILABLE"),T[S.Notification.LicensingExpired]=U.i18n("NOTIFICATIONS/LICENSING_EXPIRED"),T[S.Notification.LicensingBanned]=U.i18n("NOTIFICATIONS/LICENSING_BANNED"),T[S.Notification.DemoSendMessageError]=U.i18n("NOTIFICATIONS/DEMO_SEND_MESSAGE_ERROR"),T[S.Notification.AccountAlreadyExists]=U.i18n("NOTIFICATIONS/ACCOUNT_ALREADY_EXISTS"),T[S.Notification.MailServerError]=U.i18n("NOTIFICATIONS/MAIL_SERVER_ERROR"),T[S.Notification.UnknownNotification]=U.i18n("NOTIFICATIONS/UNKNOWN_ERROR"),T[S.Notification.UnknownError]=U.i18n("NOTIFICATIONS/UNKNOWN_ERROR")},U.getUploadErrorDescByCode=function(a){var b="";switch(U.pInt(a)){case S.UploadErrorCode.FileIsTooBig:b=U.i18n("UPLOAD/ERROR_FILE_IS_TOO_BIG");break;case S.UploadErrorCode.FilePartiallyUploaded:b=U.i18n("UPLOAD/ERROR_FILE_PARTIALLY_UPLOADED");break;case S.UploadErrorCode.FileNoUploaded:b=U.i18n("UPLOAD/ERROR_NO_FILE_UPLOADED");break;case S.UploadErrorCode.MissingTempFolder:b=U.i18n("UPLOAD/ERROR_MISSING_TEMP_FOLDER");break;case S.UploadErrorCode.FileOnSaveingError:b=U.i18n("UPLOAD/ERROR_ON_SAVING_FILE");break;case S.UploadErrorCode.FileType:b=U.i18n("UPLOAD/ERROR_FILE_TYPE");break;default:b=U.i18n("UPLOAD/ERROR_UNKNOWN")}return b},U.killCtrlAandS=function(b){if(b=b||a.event){var c=b.target||b.srcElement,d=b.keyCode||b.which;if(b.ctrlKey&&d===S.EventKeyCode.S)return b.preventDefault(),void 0;if(c&&c.tagName&&c.tagName.match(/INPUT|TEXTAREA/i))return;b.ctrlKey&&d===S.EventKeyCode.A&&(a.getSelection?a.getSelection().removeAllRanges():a.document.selection&&a.document.selection.clear&&a.document.selection.clear(),b.preventDefault())}},U.createCommand=function(a,b,d){var e=b?function(){return e.canExecute&&e.canExecute()&&b.apply(a,Array.prototype.slice.call(arguments)),!1}:function(){};return e.enabled=c.observable(!0),d=U.isUnd(d)?!0:d,e.canExecute=U.isFunc(d)?c.computed(function(){return e.enabled()&&d.call(a)}):c.computed(function(){return e.enabled()&&!!d}),e},U.initDataConstructorBySettings=function(b){b.editorDefaultType=c.observable(S.EditorDefaultType.Html),b.showImages=c.observable(!1),b.interfaceAnimation=c.observable(S.InterfaceAnimation.Full),b.contactsAutosave=c.observable(!1),X.sAnimationType=S.InterfaceAnimation.Full,b.allowThemes=c.observable(!0),b.allowCustomLogin=c.observable(!1),b.allowLanguagesOnSettings=c.observable(!0),b.allowLanguagesOnLogin=c.observable(!0),b.desktopNotifications=c.observable(!1),b.useThreads=c.observable(!0),b.replySameFolder=c.observable(!0),b.usePreviewPane=c.observable(!0),b.useCheckboxesInList=c.observable(!0),b.interfaceAnimation.subscribe(function(a){if(X.bMobileDevice||a===S.InterfaceAnimation.None)ab.removeClass("rl-anim rl-anim-full").addClass("no-rl-anim"),X.sAnimationType=S.InterfaceAnimation.None;else switch(a){case S.InterfaceAnimation.Full:ab.removeClass("no-rl-anim").addClass("rl-anim rl-anim-full"),X.sAnimationType=a;break;case S.InterfaceAnimation.Normal:ab.removeClass("no-rl-anim rl-anim-full").addClass("rl-anim"),X.sAnimationType=a}}),b.interfaceAnimation.valueHasMutated(),b.desktopNotificationsPermisions=c.computed(function(){b.desktopNotifications();var c=S.DesktopNotifications.NotSupported; +if(db&&db.permission)switch(db.permission.toLowerCase()){case"granted":c=S.DesktopNotifications.Allowed;break;case"denied":c=S.DesktopNotifications.Denied;break;case"default":c=S.DesktopNotifications.NotAllowed}else a.webkitNotifications&&a.webkitNotifications.checkPermission&&(c=a.webkitNotifications.checkPermission());return c}),b.useDesktopNotifications=c.computed({read:function(){return b.desktopNotifications()&&S.DesktopNotifications.Allowed===b.desktopNotificationsPermisions()},write:function(a){if(a){var c=b.desktopNotificationsPermisions();S.DesktopNotifications.Allowed===c?b.desktopNotifications(!0):S.DesktopNotifications.NotAllowed===c?db.requestPermission(function(){b.desktopNotifications.valueHasMutated(),S.DesktopNotifications.Allowed===b.desktopNotificationsPermisions()?b.desktopNotifications()?b.desktopNotifications.valueHasMutated():b.desktopNotifications(!0):b.desktopNotifications()?b.desktopNotifications(!1):b.desktopNotifications.valueHasMutated()}):b.desktopNotifications(!1)}else b.desktopNotifications(!1)}}),b.language=c.observable(""),b.languages=c.observableArray([]),b.mainLanguage=c.computed({read:b.language,write:function(a){a!==b.language()?-1=b.diff(c,"hours")?d:b.format("L")===c.format("L")?U.i18n("MESSAGE_LIST/TODAY_AT",{TIME:c.format("LT")}):b.clone().subtract("days",1).format("L")===c.format("L")?U.i18n("MESSAGE_LIST/YESTERDAY_IN",{TIME:c.format("LT")}):b.year()===c.year()?c.format("D MMM."):c.format("LL")},a)},U.isFolderExpanded=function(a){var b=eb.local().get(S.ClientSideKeyName.ExpandedFolders);return f.isArray(b)&&-1!==f.indexOf(b,a)},U.setExpandedFolder=function(a,b){var c=eb.local().get(S.ClientSideKeyName.ExpandedFolders);f.isArray(c)||(c=[]),b?(c.push(a),c=f.uniq(c)):c=f.without(c,a),eb.local().set(S.ClientSideKeyName.ExpandedFolders,c)},U.initLayoutResizer=function(a,c,d,e,g,h,i,j){e=e||300,g=g||500,h=h||g-e/2,i=i||300;var k=0,l=b(a),m=b(c),n=b(d),o=eb.local().get(j)||h,p=function(a,b,c){if(b||c){var d=n.width(),e=b?b.size.width/d*100:null;null===e&&c&&(e=l.width()/d*100),null!==e&&(l.css({width:"",height:"",right:""+(100-e)+"%"}),m.css({width:"",height:"",left:""+e+"%"}))}},q=function(b,c){if(c&&c.element&&c.element[0].id&&"#"+c.element[0].id==""+a){var d=n.width();k=d-i,k=g>k?k:g,l.resizable("option","maxWidth",k),c.size&&c.size.width&&eb.local().set(j,c.size.width),p(null,null,!0)}};o&&l.width(o),k=n.width()-i,k=g>k?k:g,l.resizable({minWidth:e,maxWidth:k,handles:"e",resize:p,stop:p}),p(null,null,!0),bb.resize(f.throttle(q,400))},U.initBlockquoteSwitcher=function(a){if(a){var c=b("blockquote:not(.rl-bq-switcher)",a).filter(function(){return 0===b(this).parent().closest("blockquote",a).length});c&&0100)&&(a.addClass("rl-bq-switcher hidden-bq"),b('').insertBefore(a).click(function(){a.toggleClass("hidden-bq"),U.windowResize()}).after("
").before("
"))})}},U.removeBlockquoteSwitcher=function(a){a&&(b(a).find("blockquote.rl-bq-switcher").each(function(){b(this).removeClass("rl-bq-switcher hidden-bq")}),b(a).find(".rlBlockquoteSwitcher").each(function(){b(this).remove()}))},U.extendAsViewModel=function(a,b,c){b&&(c||(c=l),b.__name=a,V.regViewModelHook(a,b),f.extend(b.prototype,c.prototype))},U.addSettingsViewModel=function(a,b,c,d,e){a.__rlSettingsData={Label:c,Template:b,Route:d,IsDefault:!!e},Y.settings.push(a)},U.removeSettingsViewModel=function(a){Y["settings-removed"].push(a)},U.disableSettingsViewModel=function(a){Y["settings-disabled"].push(a)},U.convertThemeName=function(a){return U.trim(a.replace(/[^a-zA-Z]/g," ").replace(/([A-Z])/g," $1").replace(/[\s]+/g," "))},U.quoteName=function(a){return a.replace(/["]/g,'\\"')},U.microtime=function(){return(new Date).getTime()},U.convertLangName=function(a,b){return U.i18n("LANGS_NAMES"+(!0===b?"_EN":"")+"/LANG_"+a.toUpperCase().replace(/[^a-zA-Z0-9]+/,"_"),null,a)},U.fakeMd5=function(a){var b="",c="0123456789abcdefghijklmnopqrstuvwxyz";for(a=U.isUnd(a)?32:U.pInt(a);b.length/g,">").replace(/")},U.draggeblePlace=function(){return b('
 
').appendTo("#rl-hidden")},U.defautOptionsAfterRender=function(a,b){b&&!U.isUnd(b.disable)&&c.applyBindingsToNode(a,{disable:b.disable},b)},U.windowPopupKnockout=function(c,d,e,f){var g=null,h=a.open(""),i="__OpenerApplyBindingsUid"+U.fakeMd5()+"__",j=b("#"+d);a[i]=function(){if(h&&h.document.body&&j&&j[0]){var d=b(h.document.body);b("#rl-content",d).html(j.html()),b("html",h.document).addClass("external "+b("html").attr("class")),U.i18nToNode(d),n.prototype.applyExternal(c,b("#rl-content",d)[0]),a[i]=null,f(h)}},h.document.open(),h.document.write(''+U.encodeHtml(e)+'
'),h.document.close(),g=h.document.createElement("script"),g.type="text/javascript",g.innerHTML="if(window&&window.opener&&window.opener['"+i+"']){window.opener['"+i+"']();window.opener['"+i+"']=null}",h.document.getElementsByTagName("head")[0].appendChild(g)},U.settingsSaveHelperFunction=function(a,b,c,d){return c=c||null,d=U.isUnd(d)?1e3:U.pInt(d),function(e,g,h,i,j){b.call(c,g&&g.Result?S.SaveSettingsStep.TrueResult:S.SaveSettingsStep.FalseResult),a&&a.call(c,e,g,h,i,j),f.delay(function(){b.call(c,S.SaveSettingsStep.Idle)},d)}},U.settingsSaveHelperSimpleFunction=function(a,b){return U.settingsSaveHelperFunction(null,a,b,1e3)},U.resizeAndCrop=function(b,c,d){var e=new a.Image;e.onload=function(){var a=[0,0],b=document.createElement("canvas"),e=b.getContext("2d");b.width=c,b.height=c,a=this.width>this.height?[this.width-this.height,0]:[0,this.height-this.width],e.fillStyle="#fff",e.fillRect(0,0,c,c),e.drawImage(this,a[0]/2,a[1]/2,this.width-a[0],this.height-a[1],0,0,c,c),d(b.toDataURL("image/jpeg"))},e.src=b},U.computedPagenatorHelper=function(a,b){return function(){var c=0,d=0,e=2,f=[],g=a(),h=b(),i=function(a,b,c){var d={current:a===g,name:U.isUnd(c)?a.toString():c.toString(),custom:U.isUnd(c)?!1:!0,title:U.isUnd(c)?"":a.toString(),value:a.toString()};(U.isUnd(b)?0:!b)?f.unshift(d):f.push(d)};if(h>1||h>0&&g>h){for(g>h?(i(h),c=h,d=h):((3>=g||g>=h-2)&&(e+=2),i(g),c=g,d=g);e>0;)if(c-=1,d+=1,c>0&&(i(c,!1),e--),h>=d)i(d,!0),e--;else if(0>=c)break;3===c?i(2,!1):c>3&&i(Math.round((c-1)/2),!1,"..."),h-2===d?i(h-1,!0):h-2>d&&i(Math.round((h+d)/2),!0,"..."),c>1&&i(1,!1),h>d&&i(h,!0)}return f}},W={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",urlsafe_encode:function(a){return W.encode(a).replace(/[+]/g,"-").replace(/[\/]/g,"_").replace(/[=]/g,".")},encode:function(a){var b,c,d,e,f,g,h,i="",j=0;for(a=W._utf8_encode(a);j>2,f=(3&b)<<4|c>>4,g=(15&c)<<2|d>>6,h=63&d,isNaN(c)?g=h=64:isNaN(d)&&(h=64),i=i+this._keyStr.charAt(e)+this._keyStr.charAt(f)+this._keyStr.charAt(g)+this._keyStr.charAt(h);return i},decode:function(a){var b,c,d,e,f,g,h,i="",j=0;for(a=a.replace(/[^A-Za-z0-9\+\/\=]/g,"");j>4,c=(15&f)<<4|g>>2,d=(3&g)<<6|h,i+=String.fromCharCode(b),64!==g&&(i+=String.fromCharCode(c)),64!==h&&(i+=String.fromCharCode(d));return W._utf8_decode(i)},_utf8_encode:function(a){a=a.replace(/\r\n/g,"\n");for(var b="",c=0,d=a.length,e=0;d>c;c++)e=a.charCodeAt(c),128>e?b+=String.fromCharCode(e):e>127&&2048>e?(b+=String.fromCharCode(e>>6|192),b+=String.fromCharCode(63&e|128)):(b+=String.fromCharCode(e>>12|224),b+=String.fromCharCode(e>>6&63|128),b+=String.fromCharCode(63&e|128));return b},_utf8_decode:function(a){for(var b="",c=0,d=0,e=0,f=0;cd?(b+=String.fromCharCode(d),c++):d>191&&224>d?(e=a.charCodeAt(c+1),b+=String.fromCharCode((31&d)<<6|63&e),c+=2):(e=a.charCodeAt(c+1),f=a.charCodeAt(c+2),b+=String.fromCharCode((15&d)<<12|(63&e)<<6|63&f),c+=3);return b}},c.bindingHandlers.tooltip={init:function(a,d){if(!X.bMobileDevice){var e=b(a).data("tooltip-class")||"",f=b(a).data("tooltip-placement")||"top";b(a).tooltip({delay:{show:500,hide:100},html:!0,placement:f,trigger:"hover",title:function(){return''+U.i18n(c.utils.unwrapObservable(d()))+""}})}}},c.bindingHandlers.tooltip2={init:function(a,c){var d=b(a).data("tooltip-class")||"",e=b(a).data("tooltip-placement")||"top";b(a).tooltip({delay:{show:500,hide:100},html:!0,placement:e,title:function(){return''+c()()+""}})}},c.bindingHandlers.dropdown={init:function(a){b(a).closest(".dropdown").on("click",".e-item",function(){b(a).dropdown("toggle")})}},c.bindingHandlers.popover={init:function(a,d){b(a).popover(c.utils.unwrapObservable(d()))}},c.bindingHandlers.resizecrop={init:function(a){b(a).addClass("resizecrop").resizecrop({width:"100",height:"100",wrapperCSS:{"border-radius":"10px"}})},update:function(a,c){c()(),b(a).resizecrop({width:"100",height:"100"})}},c.bindingHandlers.onEnter={init:function(c,d,e,f){b(c).on("keypress",function(e){e&&13===a.parseInt(e.keyCode,10)&&(b(c).trigger("change"),d().call(f))})}},c.bindingHandlers.onEsc={init:function(c,d,e,f){b(c).on("keypress",function(e){e&&27===a.parseInt(e.keyCode,10)&&(b(c).trigger("change"),d().call(f))})}},c.bindingHandlers.modal={init:function(a,d){b(a).modal({keyboard:!1,show:c.utils.unwrapObservable(d())}).on("hidden",function(){d()(!1)})},update:function(a,d){var e=c.utils.unwrapObservable(d());b(a).modal(e?"show":"hide"),f.delay(function(){b(a).toggleClass("popup-active",e)},1)}},c.bindingHandlers.i18nInit={init:function(a){U.i18nToNode(a)}},c.bindingHandlers.i18nUpdate={update:function(a,b){c.utils.unwrapObservable(b()),U.i18nToNode(a)}},c.bindingHandlers.link={update:function(a,d){b(a).attr("href",c.utils.unwrapObservable(d()))}},c.bindingHandlers.title={update:function(a,d){b(a).attr("title",c.utils.unwrapObservable(d()))}},c.bindingHandlers.textF={init:function(a,d){b(a).text(c.utils.unwrapObservable(d()))}},c.bindingHandlers.initDom={init:function(a,b){b()(a)}},c.bindingHandlers.initResizeTrigger={init:function(a,d){var e=c.utils.unwrapObservable(d());b(a).css({height:e[1],"min-height":e[1]})},update:function(a,d){var e=c.utils.unwrapObservable(d()),f=U.pInt(e[1]),g=0,h=b(a).offset().top;h>0&&(h+=U.pInt(e[2]),g=bb.height()-h,g>f&&(f=g),b(a).css({height:f,"min-height":f}))}},c.bindingHandlers.appendDom={update:function(a,d){b(a).hide().empty().append(c.utils.unwrapObservable(d())).show()}},c.bindingHandlers.draggable={init:function(d,e,f){if(!X.bMobileDevice){var g=100,h=3,i=f(),j=i&&i.droppableSelector?i.droppableSelector:"",k={distance:20,handle:".dragHandle",cursorAt:{top:22,left:3},refreshPositions:!0,scroll:!0};j&&(k.drag=function(c){b(j).each(function(){var d=null,e=null,f=b(this),i=f.offset(),j=i.top+f.height();a.clearInterval(f.data("timerScroll")),f.data("timerScroll",!1),c.pageX>=i.left&&c.pageX<=i.left+f.width()&&(c.pageY>=j-g&&c.pageY<=j&&(d=function(){f.scrollTop(f.scrollTop()+h),U.windowResize()},f.data("timerScroll",a.setInterval(d,10)),d()),c.pageY>=i.top&&c.pageY<=i.top+g&&(e=function(){f.scrollTop(f.scrollTop()-h),U.windowResize()},f.data("timerScroll",a.setInterval(e,10)),e()))})},k.stop=function(){b(j).each(function(){a.clearInterval(b(this).data("timerScroll")),b(this).data("timerScroll",!1)})}),k.helper=function(a){return e()(a&&a.target?c.dataFor(a.target):null,!!a.shiftKey)},b(d).draggable(k).on("mousedown",function(){U.removeInFocus()})}}},c.bindingHandlers.droppable={init:function(a,c,d){if(!X.bMobileDevice){var e=c(),f=d(),g=f&&f.droppableOver?f.droppableOver:null,h=f&&f.droppableOut?f.droppableOut:null,i={tolerance:"pointer",hoverClass:"droppableHover"};e&&(i.drop=function(a,b){e(a,b)},g&&(i.over=function(a,b){g(a,b)}),h&&(i.out=function(a,b){h(a,b)}),b(a).droppable(i))}}},c.bindingHandlers.nano={init:function(a){X.bDisableNanoScroll||b(a).addClass("nano").nanoScroller({iOSNativeScrolling:!1,preventPageScrolling:!0})}},c.bindingHandlers.saveTrigger={init:function(a){var c=b(a);c.data("save-trigger-type",c.is("input[type=text],input[type=email],input[type=password],select,textarea")?"input":"custom"),"custom"===c.data("save-trigger-type")?c.append('  ').addClass("settings-saved-trigger"):c.addClass("settings-saved-trigger-input")},update:function(a,d){var e=c.utils.unwrapObservable(d()),f=b(a);if("custom"===f.data("save-trigger-type"))switch(e.toString()){case"1":f.find(".animated,.error").hide().removeClass("visible").end().find(".success").show().addClass("visible");break;case"0":f.find(".animated,.success").hide().removeClass("visible").end().find(".error").show().addClass("visible");break;case"-2":f.find(".error,.success").hide().removeClass("visible").end().find(".animated").show().addClass("visible");break;default:f.find(".animated").hide().end().find(".error,.success").removeClass("visible")}else switch(e.toString()){case"1":f.addClass("success").removeClass("error");break;case"0":f.addClass("error").removeClass("success");break;case"-2":break;default:f.removeClass("error success")}}},c.bindingHandlers.emailsTags={init:function(a,c){var d=b(a),e=c();d.inputosaurus({parseOnBlur:!0,inputDelimiters:[",",";"],autoCompleteSource:function(a,b){eb.getAutocomplete(a.term,function(a){b(f.map(a,function(a){return a.toLine(!1)}))})},parseHook:function(a){return f.map(a,function(a){var b=U.trim(a),c=null;return""!==b?(c=new o,c.mailsoParse(b),c.clearDuplicateName(),[c.toLine(!1),c]):[b,null]})},change:f.bind(function(a){d.data("EmailsTagsValue",a.target.value),e(a.target.value)},this)}),e.subscribe(function(a){d.data("EmailsTagsValue")!==a&&(d.val(a),d.inputosaurus("refresh"))}),e.focusTrigger&&e.focusTrigger.subscribe(function(){d.inputosaurus("focus")})}},c.bindingHandlers.command={init:function(a,d,e,f){var g=b(a),h=d();if(!h||!h.enabled||!h.canExecute)throw new Error("You are not using command function");g.addClass("command"),c.bindingHandlers[g.is("form")?"submit":"click"].init.apply(f,arguments)},update:function(a,c){var d=!0,e=b(a),f=c();d=f.enabled(),e.toggleClass("command-not-enabled",!d),d&&(d=f.canExecute(),e.toggleClass("command-can-not-be-execute",!d)),e.toggleClass("command-disabled disable disabled",!d),(e.is("input")||e.is("button"))&&e.prop("disabled",!d)}},c.extenders.trimmer=function(a){var b=c.computed({read:a,write:function(b){a(U.trim(b.toString()))},owner:this});return b(a()),b},c.extenders.reversible=function(a){var b=a();return a.commit=function(){b=a()},a.reverse=function(){a(b)},a.commitedValue=function(){return b},a},c.extenders.toggleSubscribe=function(a,b){return a.subscribe(b[1],b[0],"beforeChange"),a.subscribe(b[2],b[0]),a},c.extenders.falseTimeout=function(b,c){return b.iTimeout=0,b.subscribe(function(d){d&&(a.clearTimeout(b.iTimeout),b.iTimeout=a.setTimeout(function(){b(!1),b.iTimeout=0},U.pInt(c)))}),b},c.observable.fn.validateNone=function(){return this.hasError=c.observable(!1),this},c.observable.fn.validateEmail=function(){return this.hasError=c.observable(!1),this.subscribe(function(a){a=U.trim(a),this.hasError(""!==a&&!/^[^@\s]+@[^@\s]+$/.test(a))},this),this.valueHasMutated(),this},c.observable.fn.validateSimpleEmail=function(){return this.hasError=c.observable(!1),this.subscribe(function(a){a=U.trim(a),this.hasError(""!==a&&!/^.+@.+$/.test(a))},this),this.valueHasMutated(),this},c.observable.fn.validateFunc=function(a){return this.hasFuncError=c.observable(!1),U.isFunc(a)&&(this.subscribe(function(b){this.hasFuncError(!a(b))},this),this.valueHasMutated()),this},g.prototype.root=function(){return this.sBase},g.prototype.attachmentDownload=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/Download/"+a},g.prototype.attachmentPreview=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/View/"+a},g.prototype.attachmentPreviewAsPlain=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/ViewAsPlain/"+a},g.prototype.upload=function(){return this.sServer+"/Upload/"+this.sSpecSuffix+"/"},g.prototype.uploadBackground=function(){return this.sServer+"/UploadBackground/"+this.sSpecSuffix+"/"},g.prototype.append=function(){return this.sServer+"/Append/"+this.sSpecSuffix+"/"},g.prototype.change=function(b){return this.sServer+"/Change/"+this.sSpecSuffix+"/"+a.encodeURIComponent(b)+"/"},g.prototype.ajax=function(a){return this.sServer+"/Ajax/"+this.sSpecSuffix+"/"+a},g.prototype.messageViewLink=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/ViewAsPlain/"+a},g.prototype.messageDownloadLink=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/Download/"+a},g.prototype.inbox=function(){return this.sBase+"mailbox/Inbox"},g.prototype.settings=function(a){var b=this.sBase+"settings";return U.isUnd(a)||""===a||(b+="/"+a),b},g.prototype.admin=function(a){var b=this.sBase;switch(a){case"AdminDomains":b+="domains";break;case"AdminSecurity":b+="security";break;case"AdminLicensing":b+="licensing"}return b},g.prototype.mailBox=function(a,b,c){b=U.isNormal(b)?U.pInt(b):1,c=U.pString(c);var d=this.sBase+"mailbox/";return""!==a&&(d+=encodeURI(a)),b>1&&(d=d.replace(/[\/]+$/,""),d+="/p"+b),""!==c&&(d=d.replace(/[\/]+$/,""),d+="/"+encodeURI(c)),d},g.prototype.phpInfo=function(){return this.sServer+"Info"},g.prototype.langLink=function(a){return this.sServer+"/Lang/0/"+encodeURI(a)+"/"+this.sVersion+"/"},g.prototype.getUserPicUrlFromHash=function(a){return this.sServer+"/Raw/"+this.sSpecSuffix+"/UserPic/"+a+"/"+this.sVersion+"/"},g.prototype.emptyContactPic=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/css/images/empty-contact.png"},g.prototype.sound=function(a){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/sounds/"+a},g.prototype.themePreviewLink=function(a){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/themes/"+encodeURI(a)+"/images/preview.png"},g.prototype.notificationMailIcon=function(){return(""===this.sCdnStaticDomain?"rainloop/v/":this.sCdnStaticDomain)+this.sVersion+"/static/css/images/icom-message-notification.png"},g.prototype.socialGoogle=function(){return this.sServer+"SocialGoogle"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},g.prototype.socialTwitter=function(){return this.sServer+"SocialTwitter"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},g.prototype.socialFacebook=function(){return this.sServer+"SocialFacebook"+(""!==this.sSpecSuffix?"/"+this.sSpecSuffix+"/":"")},V.oViewModelsHooks={},V.oSimpleHooks={},V.regViewModelHook=function(a,b){b&&(b.__hookName=a)},V.addHook=function(a,b){U.isFunc(b)&&(U.isArray(V.oSimpleHooks[a])||(V.oSimpleHooks[a]=[]),V.oSimpleHooks[a].push(b))},V.runHook=function(a,b){U.isArray(V.oSimpleHooks[a])&&(b=b||[],f.each(V.oSimpleHooks[a],function(a){a.apply(null,b)}))},V.mainSettingsGet=function(a){return eb?eb.settingsGet(a):null},V.remoteRequest=function(a,b,c,d,e,f){eb&&eb.remote().defaultRequest(a,b,c,d,e,f)},V.settingsGet=function(a,b){var c=V.mainSettingsGet("Plugins");return c=c&&U.isUnd(c[a])?null:c[a],c?U.isUnd(c[b])?null:c[b]:null},h.supported=function(){return!0},h.prototype.set=function(a,c){var d=b.cookie(R.Values.ClientSideCookieIndexName),e=!1,f=null;try{f=null===d?null:JSON.parse(d),f||(f={}),f[a]=c,b.cookie(R.Values.ClientSideCookieIndexName,JSON.stringify(f),{expires:30}),e=!0}catch(g){}return e},h.prototype.get=function(a){var c=b.cookie(R.Values.ClientSideCookieIndexName),d=null;try{d=null===c?null:JSON.parse(c),d=d&&!U.isUnd(d[a])?d[a]:null}catch(e){}return d},i.supported=function(){return!!a.localStorage},i.prototype.set=function(b,c){var d=a.localStorage[R.Values.ClientSideCookieIndexName]||null,e=!1,f=null;try{f=null===d?null:JSON.parse(d),f||(f={}),f[b]=c,a.localStorage[R.Values.ClientSideCookieIndexName]=JSON.stringify(f),e=!0}catch(g){}return e},i.prototype.get=function(b){var c=a.localStorage[R.Values.ClientSideCookieIndexName]||null,d=null;try{d=null===c?null:JSON.parse(c),d=d&&!U.isUnd(d[b])?d[b]:null}catch(e){}return d},j.prototype.oDriver=null,j.prototype.set=function(a,b){return this.oDriver?this.oDriver.set("p"+a,b):!1},j.prototype.get=function(a){return this.oDriver?this.oDriver.get("p"+a):null},k.prototype.bootstart=function(){},l.prototype.sPosition="",l.prototype.sTemplate="",l.prototype.viewModelName="",l.prototype.viewModelDom=null,l.prototype.viewModelTemplate=function(){return this.sTemplate},l.prototype.viewModelPosition=function(){return this.sPosition},l.prototype.cancelCommand=l.prototype.closeCommand=function(){},m.prototype.oCross=null,m.prototype.sScreenName="",m.prototype.aViewModels=[],m.prototype.viewModels=function(){return this.aViewModels},m.prototype.screenName=function(){return this.sScreenName},m.prototype.routes=function(){return null},m.prototype.__cross=function(){return this.oCross},m.prototype.__start=function(){var a=this.routes(),b=null,c=null;U.isNonEmptyArray(a)&&(c=f.bind(this.onRoute||U.emptyFunction,this),b=d.create(),f.each(a,function(a){b.addRoute(a[0],c).rules=a[1]}),this.oCross=b)},n.constructorEnd=function(a){U.isFunc(a.__constructor_end)&&a.__constructor_end.call(a)},n.prototype.sDefaultScreenName="",n.prototype.oScreens={},n.prototype.oBoot=null,n.prototype.oCurrentScreen=null,n.prototype.showLoading=function(){b("#rl-loading").show()},n.prototype.hideLoading=function(){b("#rl-loading").hide()},n.prototype.routeOff=function(){e.changed.active=!1},n.prototype.routeOn=function(){e.changed.active=!0},n.prototype.setBoot=function(a){return U.isNormal(a)&&(this.oBoot=a),this},n.prototype.screen=function(a){return""===a||U.isUnd(this.oScreens[a])?null:this.oScreens[a]},n.prototype.delegateRun=function(a,b,c){a&&a[b]&&a[b].apply(a,U.isArray(c)?c:[])},n.prototype.buildViewModel=function(a,d){if(a&&!a.__builded){var e=new a(d),f=e.viewModelPosition(),g=b("#rl-content #rl-"+f.toLowerCase()),h=null;a.__builded=!0,a.__vm=e,e.data=eb.data(),e.viewModelName=a.__name,g&&1===g.length?(h=b("
").addClass("rl-view-model").addClass("RL-"+e.viewModelTemplate()).hide().attr("data-bind",'template: {name: "'+e.viewModelTemplate()+'"}, i18nInit: true'),h.appendTo(g),e.viewModelDom=h,a.__dom=h,"Popups"===f&&(e.cancelCommand=e.closeCommand=U.createCommand(e,function(){Z.hideScreenPopup(a)})),V.runHook("view-model-pre-build",[a.__name,e,h]),c.applyBindings(e,h[0]),this.delegateRun(e,"onBuild",[h]),V.runHook("view-model-post-build",[a.__name,e,h])):U.log("Cannot find view model position: "+f)}return a?a.__vm:null},n.prototype.applyExternal=function(a,b){a&&b&&c.applyBindings(a,b)},n.prototype.hideScreenPopup=function(a){a&&a.__vm&&a.__dom&&(a.__dom.hide(),a.__vm.modalVisibility(!1),this.delegateRun(a.__vm,"onHide"),this.popupVisibility(!1))},n.prototype.showScreenPopup=function(a,b){a&&(this.buildViewModel(a),a.__vm&&a.__dom&&(a.__dom.show(),a.__vm.modalVisibility(!0),this.delegateRun(a.__vm,"onShow",b||[]),this.popupVisibility(!0),V.runHook("view-model-on-show",[a.__name,a.__vm,b||[]])))},n.prototype.screenOnRoute=function(a,b){var c=this,d=null,e=null;""===U.pString(a)&&(a=this.sDefaultScreenName),""!==a&&(d=this.screen(a),d||(d=this.screen(this.sDefaultScreenName),d&&(b=a+"/"+b,a=this.sDefaultScreenName)),d&&d.__started&&(d.__builded||(d.__builded=!0,U.isNonEmptyArray(d.viewModels())&&f.each(d.viewModels(),function(a){this.buildViewModel(a,d)},this),this.delegateRun(d,"onBuild")),f.defer(function(){c.oCurrentScreen&&(c.delegateRun(c.oCurrentScreen,"onHide"),U.isNonEmptyArray(c.oCurrentScreen.viewModels())&&f.each(c.oCurrentScreen.viewModels(),function(a){a.__vm&&a.__dom&&"Popups"!==a.__vm.viewModelPosition()&&(a.__dom.hide(),a.__vm.viewModelVisibility(!1),c.delegateRun(a.__vm,"onHide"))})),c.oCurrentScreen=d,c.oCurrentScreen&&(c.delegateRun(c.oCurrentScreen,"onShow"),V.runHook("screen-on-show",[c.oCurrentScreen.screenName(),c.oCurrentScreen]),U.isNonEmptyArray(c.oCurrentScreen.viewModels())&&f.each(c.oCurrentScreen.viewModels(),function(a){a.__vm&&a.__dom&&"Popups"!==a.__vm.viewModelPosition()&&(a.__dom.show(),a.__vm.viewModelVisibility(!0),c.delegateRun(a.__vm,"onShow"),V.runHook("view-model-on-show",[a.__name,a.__vm]))},c)),e=d.__cross(),e&&e.parse(b)})))},n.prototype.startScreens=function(a){f.each(a,function(a){var b=new a,c=b?b.screenName():"";b&&""!==c&&(""===this.sDefaultScreenName&&(this.sDefaultScreenName=c),this.oScreens[c]=b)},this),f.each(this.oScreens,function(a){a&&!a.__started&&a.__start&&(a.__started=!0,a.__start(),V.runHook("screen-pre-start",[a.screenName(),a]),this.delegateRun(a,"onStart"),V.runHook("screen-post-start",[a.screenName(),a]))},this);var b=d.create();b.addRoute(/^([a-zA-Z0-9\-]*)\/?(.*)$/,f.bind(this.screenOnRoute,this)),e.initialized.add(b.parse,b),e.changed.add(b.parse,b),e.init()},n.prototype.setHash=function(a,b,c){a="#"===a.substr(0,1)?a.substr(1):a,a="/"===a.substr(0,1)?a.substr(1):a,c=U.isUnd(c)?!1:!!c,(U.isUnd(b)?1:!b)?(e.changed.active=!0,e[c?"replaceHash":"setHash"](a),e.setHash(a)):(e.changed.active=!1,e[c?"replaceHash":"setHash"](a),e.changed.active=!0)},n.prototype.bootstart=function(){return this.oBoot&&this.oBoot.bootstart&&this.oBoot.bootstart(),this},Z=new n,o.newInstanceFromJson=function(a){var b=new o;return b.initByJson(a)?b:null},o.prototype.name="",o.prototype.email="",o.prototype.privateType=null,o.prototype.clear=function(){this.email="",this.name="",this.privateType=null},o.prototype.validate=function(){return""!==this.name||""!==this.email},o.prototype.hash=function(a){return"#"+(a?"":this.name)+"#"+this.email+"#"},o.prototype.clearDuplicateName=function(){this.name===this.email&&(this.name="")},o.prototype.type=function(){return null===this.privateType&&(this.email&&"@facebook.com"===this.email.substr(-13)&&(this.privateType=S.EmailType.Facebook),null===this.privateType&&(this.privateType=S.EmailType.Default)),this.privateType},o.prototype.search=function(a){return-1<(this.name+" "+this.email).toLowerCase().indexOf(a.toLowerCase())},o.prototype.parse=function(a){this.clear(),a=U.trim(a);var b=/(?:"([^"]+)")? ?,]+)>?,? ?/g,c=b.exec(a);c?(this.name=c[1]||"",this.email=c[2]||"",this.clearDuplicateName()):/^[^@]+@[^@]+$/.test(a)&&(this.name="",this.email=a)},o.prototype.initByJson=function(a){var b=!1;return a&&"Object/Email"===a["@Object"]&&(this.name=U.trim(a.Name),this.email=U.trim(a.Email),b=""!==this.email,this.clearDuplicateName()),b},o.prototype.toLine=function(a,b,c){var d="";return""!==this.email&&(b=U.isUnd(b)?!1:!!b,c=U.isUnd(c)?!1:!!c,a&&""!==this.name?d=b?'")+'" target="_blank" tabindex="-1">'+U.encodeHtml(this.name)+"":c?U.encodeHtml(this.name):this.name:(d=this.email,""!==this.name?b?d=U.encodeHtml('"'+this.name+'" <')+'")+'" target="_blank" tabindex="-1">'+U.encodeHtml(d)+""+U.encodeHtml(">"):(d='"'+this.name+'" <'+d+">",c&&(d=U.encodeHtml(d))):b&&(d=''+U.encodeHtml(this.email)+""))),d},o.prototype.mailsoParse=function(a){if(a=U.trim(a),""===a)return!1;for(var b=function(a,b,c){a+="";var d=a.length;return 0>b&&(b+=d),d="undefined"==typeof c?d:0>c?c+d:c+b,b>=a.length||0>b||b>d?!1:a.slice(b,d)},c=function(a,b,c,d){return 0>c&&(c+=a.length),d=void 0!==d?d:a.length,0>d&&(d=d+a.length-c),a.slice(0,c)+b.substr(0,d)+b.slice(d)+a.slice(c+d)},d="",e="",f="",g=!1,h=!1,i=!1,j=null,k=0,l=0,m=0;m0&&0===d.length&&(d=b(a,0,m)),h=!0,k=m);break;case">":h&&(l=m,e=b(a,k+1,l-k-1),a=c(a,"",k,l-k+1),l=0,m=0,k=0,h=!1);break;case"(":g||h||i||(i=!0,k=m);break;case")":i&&(l=m,f=b(a,k+1,l-k-1),a=c(a,"",k,l-k+1),l=0,m=0,k=0,i=!1);break;case"\\":m++}m++}return 0===e.length&&(j=a.match(/[^@\s]+@\S+/i),j&&j[0]?e=j[0]:d=a),e.length>0&&0===d.length&&0===f.length&&(d=a.replace(e,"")),e=U.trim(e).replace(/^[<]+/,"").replace(/[>]+$/,""),d=U.trim(d).replace(/^["']+/,"").replace(/["']+$/,""),f=U.trim(f).replace(/^[(]+/,"").replace(/[)]+$/,""),d=d.replace(/\\\\(.)/,"$1"),f=f.replace(/\\\\(.)/,"$1"),this.name=d,this.email=e,this.clearDuplicateName(),!0},o.prototype.inputoTagLine=function(){return 0(new a.Date).getTime()-l),n&&i.oRequests[n]&&(i.oRequests[n].__aborted&&(e="abort"),i.oRequests[n]=null),i.defaultResponse(c,n,e,b,f,d)}),n&&0
").addClass("rl-settings-view-model").hide().attr("data-bind",'template: {name: "'+g.__rlSettingsData.Template+'"}, i18nInit: true'),i.appendTo(h),e.data=eb.data(),e.viewModelDom=i,e.__rlSettingsData=g.__rlSettingsData,g.__dom=i,g.__builded=!0,g.__vm=e,c.applyBindings(e,i[0]),Z.delegateRun(e,"onBuild",[i])):U.log("Cannot find sub settings view model position: SettingsSubScreen")),e&&f.defer(function(){d.oCurrentSubScreen&&(Z.delegateRun(d.oCurrentSubScreen,"onHide"),d.oCurrentSubScreen.viewModelDom.hide()),d.oCurrentSubScreen=e,d.oCurrentSubScreen&&(d.oCurrentSubScreen.viewModelDom.show(),Z.delegateRun(d.oCurrentSubScreen,"onShow"),f.each(d.menu(),function(a){a.selected(e&&e.__rlSettingsData&&a.route===e.__rlSettingsData.Route)}),b("#rl-content .b-settings .b-content .content").scrollTop(0)),U.windowResize()})):Z.setHash(eb.link().settings(),!1,!0)},M.prototype.onHide=function(){this.oCurrentSubScreen&&this.oCurrentSubScreen.viewModelDom&&(Z.delegateRun(this.oCurrentSubScreen,"onHide"),this.oCurrentSubScreen.viewModelDom.hide())},M.prototype.onBuild=function(){f.each(Y.settings,function(a){a&&a.__rlSettingsData&&!f.find(Y["settings-removed"],function(b){return b&&b===a})&&this.menu.push({route:a.__rlSettingsData.Route,label:a.__rlSettingsData.Label,selected:c.observable(!1),disabled:!!f.find(Y["settings-disabled"],function(b){return b&&b===a})})},this),this.oViewModelPlace=b("#rl-content #rl-settings-subscreen")},M.prototype.routes=function(){var a=f.find(Y.settings,function(a){return a&&a.__rlSettingsData&&a.__rlSettingsData.IsDefault}),b=a?a.__rlSettingsData.Route:"general",c={subname:/^(.*)$/,normalize_:function(a,c){return c.subname=U.isUnd(c.subname)?b:U.pString(c.subname),[c.subname]}};return[["{subname}/",c],["{subname}",c],["",c]]},f.extend(N.prototype,m.prototype),N.prototype.onShow=function(){eb.setTitle("")},f.extend(O.prototype,M.prototype),O.prototype.onShow=function(){eb.setTitle("")},f.extend(P.prototype,k.prototype),P.prototype.oSettings=null,P.prototype.oPlugins=null,P.prototype.oLocal=null,P.prototype.oLink=null,P.prototype.oSubs={},P.prototype.download=function(b){var c=null,d=null,e=navigator.userAgent.toLowerCase();return e&&(e.indexOf("chrome")>-1||e.indexOf("chrome")>-1)&&(c=document.createElement("a"),c.href=b,document.createEvent&&(d=document.createEvent("MouseEvents"),d&&d.initEvent&&c.dispatchEvent))?(d.initEvent("click",!0,!0),c.dispatchEvent(d),!0):(X.bMobileDevice?(a.open(b,"_self"),a.focus()):this.iframe.attr("src",b),!0)},P.prototype.link=function(){return null===this.oLink&&(this.oLink=new g),this.oLink},P.prototype.local=function(){return null===this.oLocal&&(this.oLocal=new j),this.oLocal},P.prototype.settingsGet=function(a){return null===this.oSettings&&(this.oSettings=U.isNormal($)?$:{}),U.isUnd(this.oSettings[a])?null:this.oSettings[a]},P.prototype.settingsSet=function(a,b){null===this.oSettings&&(this.oSettings=U.isNormal($)?$:{}),this.oSettings[a]=b},P.prototype.setTitle=function(b){b=(00&&-1b?b:a))},this),this.body=null,this.isRtl=c.observable(!1),this.isHtml=c.observable(!1),this.hasImages=c.observable(!1),this.attachments=c.observableArray([]),this.priority=c.observable(nb.MessagePriority.Normal),this.aDraftInfo=[],this.sMessageId="",this.sInReplyTo="",this.sReferences="",this.parentUid=c.observable(0),this.threads=c.observableArray([]),this.threadsLen=c.observable(0),this.hasUnseenSubMessage=c.observable(!1),this.hasFlaggedSubMessage=c.observable(!1),this.lastInCollapsedThread=c.observable(!1),this.lastInCollapsedThreadLoading=c.observable(!1),this.threadsLenResult=c.computed(function(){var a=this.threadsLen();return 0===this.parentUid()&&a>0?a+1:""},this)}function y(){this.name=c.observable(""),this.fullName="",this.fullNameRaw="",this.fullNameHash="",this.delimiter="",this.namespace="",this.deep=0,this.selectable=!1,this.existen=!0,this.isNamespaceFolder=!1,this.isGmailFolder=!1,this.isUnpaddigFolder=!1,this.interval=0,this.type=c.observable(nb.FolderType.User),this.selected=c.observable(!1),this.edited=c.observable(!1),this.collapsed=c.observable(!0),this.subScribed=c.observable(!0),this.subFolders=c.observableArray([]),this.deleteAccess=c.observable(!1),this.actionBlink=c.observable(!1).extend({falseTimeout:1e3}),this.nameForEdit=c.observable(""),this.name.subscribe(function(a){this.nameForEdit(a)},this),this.edited.subscribe(function(a){a&&this.nameForEdit(this.name())},this),this.privateMessageCountAll=c.observable(0),this.privateMessageCountUnread=c.observable(0),this.collapsedPrivate=c.observable(!0)}function z(a,b){this.email=a,this.deleteAccess=c.observable(!1),this.canBeDalete=c.observable(b)}function A(a,b,d){this.id=a,this.email=c.observable(b),this.name=c.observable(""),this.replyTo=c.observable(""),this.bcc=c.observable(""),this.deleteAccess=c.observable(!1),this.canBeDalete=c.observable(d)}function B(){p.call(this,"Popups","PopupsFolderClear"),this.selectedFolder=c.observable(null),this.clearingProcess=c.observable(!1),this.clearingError=c.observable(""),this.folderFullNameForClear=c.computed(function(){var a=this.selectedFolder();return a?a.printableFullName():""},this),this.folderNameForClear=c.computed(function(){var a=this.selectedFolder();return a?a.localName():""},this),this.dangerDescHtml=c.computed(function(){return pb.i18n("POPUPS_CLEAR_FOLDER/DANGER_DESC_HTML_1",{FOLDER:this.folderNameForClear()})},this),this.clearCommand=pb.createCommand(this,function(){var a=this,b=this.selectedFolder();b&&(Bb.data().message(null),Bb.data().messageList([]),this.clearingProcess(!0),Bb.cache().setFolderHash(b.fullNameRaw,""),Bb.remote().folderClear(function(b,c){a.clearingProcess(!1),nb.StorageResultType.Success===b&&c&&c.Result?(Bb.reloadMessageList(!0),a.cancelCommand()):c&&c.ErrorCode?a.clearingError(pb.getNotification(c.ErrorCode)):a.clearingError(pb.getNotification(nb.Notification.MailServerError))},b.fullNameRaw))},function(){var a=this.selectedFolder(),b=this.clearingProcess();return!b&&null!==a}),r.constructorEnd(this)}function C(){p.call(this,"Popups","PopupsFolderCreate"),pb.initOnStartOrLangChange(function(){this.sNoParentText=pb.i18n("POPUPS_CREATE_FOLDER/SELECT_NO_PARENT")},this),this.folderName=c.observable(""),this.focusTrigger=c.observable(!1),this.selectedParentValue=c.observable(mb.Values.UnuseOptionValue),this.parentFolderSelectList=c.computed(function(){var a=Bb.data(),b=[],c=null,d=null,e=a.folderList(),f=function(a){return a?a.isSystemFolder()?a.name()+" "+a.manageFolderSystemName():a.name():""};return b.push(["",this.sNoParentText]),""!==a.namespace&&(c=function(b){return a.namespace!==b.fullNameRaw.substr(0,a.namespace.length)}),Bb.folderListOptionsBuilder([],e,[],b,null,c,d,f)},this),this.createFolder=pb.createCommand(this,function(){var a=Bb.data(),b=this.selectedParentValue();""===b&&1=a?1:a},this),this.contactsPagenator=c.computed(pb.computedPagenatorHelper(this.contactsPage,this.contactsPageCount)),this.emptySelection=c.observable(!0),this.viewClearSearch=c.observable(!1),this.viewID=c.observable(""),this.viewReadOnly=c.observable(!1),this.viewScopeType=c.observable(nb.ContactScopeType.Default),this.viewScopeValue=c.observable(""),this.viewProperties=c.observableArray([]),this.viewPropertiesNames=this.viewProperties.filter(function(a){return-10&&b>0&&a>b},this),this.hasMessages=c.computed(function(){return 0'),e.after(f),e.remove()),f&&f[0]&&f.attr("data-href",g).attr("data-theme",a[0]).text(a[1]),d.themeTrigger(nb.SaveSettingsStep.TrueResult))}).always(function(){d.iTimer=a.setTimeout(function(){d.themeTrigger(nb.SaveSettingsStep.Idle)},1e3),d.oLastAjax=null})),Bb.remote().saveSettings(null,{Theme:c})},this)}function ab(){pb.initDataConstructorBySettings(this)}function bb(){ab.call(this);var a=function(a){return function(){var b=Bb.cache().getFolderFromCacheList(a());b&&b.type(nb.FolderType.User)}},d=function(a){return function(b){var c=Bb.cache().getFolderFromCacheList(b);c&&c.type(a)}};this.devEmail="",this.devLogin="",this.devPassword="",this.accountEmail=c.observable(""),this.accountIncLogin=c.observable(""),this.accountOutLogin=c.observable(""),this.projectHash=c.observable(""),this.threading=c.observable(!1),this.lastFoldersHash="",this.remoteSuggestions=!1,this.sentFolder=c.observable(""),this.draftFolder=c.observable(""),this.spamFolder=c.observable(""),this.trashFolder=c.observable(""),this.sentFolder.subscribe(a(this.sentFolder),this,"beforeChange"),this.draftFolder.subscribe(a(this.draftFolder),this,"beforeChange"),this.spamFolder.subscribe(a(this.spamFolder),this,"beforeChange"),this.trashFolder.subscribe(a(this.trashFolder),this,"beforeChange"),this.sentFolder.subscribe(d(nb.FolderType.SentItems),this),this.draftFolder.subscribe(d(nb.FolderType.Draft),this),this.spamFolder.subscribe(d(nb.FolderType.Spam),this),this.trashFolder.subscribe(d(nb.FolderType.Trash),this),this.draftFolderNotEnabled=c.computed(function(){return""===this.draftFolder()||mb.Values.UnuseOptionValue===this.draftFolder()},this),this.displayName=c.observable(""),this.signature=c.observable(""),this.replyTo=c.observable(""),this.accounts=c.observableArray([]),this.accountsLoading=c.observable(!1).extend({throttle:100}),this.identities=c.observableArray([]),this.identitiesLoading=c.observable(!1).extend({throttle:100}),this.namespace="",this.folderList=c.observableArray([]),this.foldersListError=c.observable(""),this.foldersLoading=c.observable(!1),this.foldersCreating=c.observable(!1),this.foldersDeleting=c.observable(!1),this.foldersRenaming=c.observable(!1),this.foldersInboxUnreadCount=c.observable(0),this.currentFolder=c.observable(null).extend({toggleSubscribe:[null,function(a){a&&a.selected(!1)},function(a){a&&a.selected(!0)}]}),this.currentFolderFullNameRaw=c.computed(function(){return this.currentFolder()?this.currentFolder().fullNameRaw:""},this),this.currentFolderFullName=c.computed(function(){return this.currentFolder()?this.currentFolder().fullName:""},this),this.currentFolderFullNameHash=c.computed(function(){return this.currentFolder()?this.currentFolder().fullNameHash:""},this),this.currentFolderName=c.computed(function(){return this.currentFolder()?this.currentFolder().name():""},this),this.folderListSystemNames=c.computed(function(){var a=["INBOX"],b=this.folderList(),c=this.sentFolder(),d=this.draftFolder(),e=this.spamFolder(),f=this.trashFolder();return pb.isArray(b)&&0=a?1:a},this),this.mainMessageListSearch=c.computed({read:this.messageListSearch,write:function(a){ub.setHash(Bb.link().mailBox(this.currentFolderFullNameHash(),1,pb.trim(a.toString())))},owner:this}),this.messageListError=c.observable(""),this.messageListLoading=c.observable(!1),this.messageListIsNotCompleted=c.observable(!1),this.messageListCompleteLoadingThrottle=c.observable(!1).extend({throttle:200}),this.messageListCompleteLoading=c.computed(function(){var a=this.messageListLoading(),b=this.messageListIsNotCompleted();return a||b},this),this.messageListCompleteLoading.subscribe(function(a){this.messageListCompleteLoadingThrottle(a)},this),this.messageList.subscribe(h.debounce(function(a){h.each(a,function(a){a.newForAnimation()&&a.newForAnimation(!1)})},500)),this.staticMessageList=new x,this.message=c.observable(null),this.messageLoading=c.observable(!1),this.messageLoadingThrottle=c.observable(!1).extend({throttle:50}),this.messageLoading.subscribe(function(a){this.messageLoadingThrottle(a)},this),this.messageFullScreenMode=c.observable(!1),this.messageError=c.observable(""),this.messagesBodiesDom=c.observable(null),this.messagesBodiesDom.subscribe(function(a){!a||a instanceof jQuery||this.messagesBodiesDom(b(a))},this),this.messageActiveDom=c.observable(null),this.isMessageSelected=c.computed(function(){return null!==this.message()},this),this.currentMessage=c.observable(null),this.message.subscribe(function(a){null===a&&(this.currentMessage(null),this.hideMessageBodies())},this),this.messageListChecked=c.computed(function(){return h.filter(this.messageList(),function(a){return a.checked()})},this),this.messageListCheckedOrSelected=c.computed(function(){var a=this.messageListChecked(),b=this.currentMessage();return h.union(a,b?[b]:[])},this),this.messageListCheckedUids=c.computed(function(){var a=[];return h.each(this.messageListChecked(),function(b){b&&(a.push(b.uid),00?Math.ceil(b/a*100):0},this),this.useKeyboardShortcuts=c.observable(!0),this.googleActions=c.observable(!1),this.googleLoggined=c.observable(!1),this.googleUserName=c.observable(""),this.facebookActions=c.observable(!1),this.facebookLoggined=c.observable(!1),this.facebookUserName=c.observable(""),this.twitterActions=c.observable(!1),this.twitterLoggined=c.observable(!1),this.twitterUserName=c.observable(""),this.customThemeType=c.observable(nb.CustomThemeType.Light),this.purgeMessageBodyCacheThrottle=h.throttle(this.purgeMessageBodyCache,3e4)}function cb(){this.oRequests={}}function db(){cb.call(this),this.oRequests={}}function eb(){this.oEmailsPicsHashes={},this.oServices={}}function fb(){eb.call(this),this.oFoldersCache={},this.oFoldersNamesCache={},this.oFolderHashCache={},this.oFolderUidNextCache={},this.oMessageListHashCache={},this.oMessageFlagsCache={},this.oNewMessage={},this.oRequestedMessage={}}function gb(a){q.call(this,"settings",a),this.menu=c.observableArray([]),this.oCurrentSubScreen=null,this.oViewModelPlace=null}function hb(){q.call(this,"login",[L])}function ib(){q.call(this,"mailbox",[N,P,Q,R]),this.oLastRoute={}}function jb(){gb.call(this,[O,S,T]),pb.initOnStartOrLangChange(function(){this.sSettingsTitle=pb.i18n("TITLES/SETTINGS")},this,function(){Bb.setTitle(this.sSettingsTitle)})}function kb(){o.call(this),this.oSettings=null,this.oPlugins=null,this.oLocal=null,this.oLink=null,this.oSubs={},this.isLocalAutocomplete=!0,this.popupVisibility=c.observable(!1),this.iframe=b('
").addClass("rl-view-model").addClass("RL-"+e.viewModelTemplate()).hide().attr("data-bind",'template: {name: "'+e.viewModelTemplate()+'"}, i18nInit: true'),h.appendTo(g),e.viewModelDom=h,a.__dom=h,"Popups"===f&&(e.cancelCommand=e.closeCommand=U.createCommand(e,function(){Z.hideScreenPopup(a)})),V.runHook("view-model-pre-build",[a.__name,e,h]),c.applyBindings(e,h[0]),this.delegateRun(e,"onBuild",[h]),V.runHook("view-model-post-build",[a.__name,e,h])):U.log("Cannot find view model position: "+f)}return a?a.__vm:null},n.prototype.applyExternal=function(a,b){a&&b&&c.applyBindings(a,b)},n.prototype.hideScreenPopup=function(a){a&&a.__vm&&a.__dom&&(a.__dom.hide(),a.__vm.modalVisibility(!1),this.delegateRun(a.__vm,"onHide"),this.popupVisibility(!1))},n.prototype.showScreenPopup=function(a,b){a&&(this.buildViewModel(a),a.__vm&&a.__dom&&(a.__dom.show(),a.__vm.modalVisibility(!0),this.delegateRun(a.__vm,"onShow",b||[]),this.popupVisibility(!0),V.runHook("view-model-on-show",[a.__name,a.__vm,b||[]])))},n.prototype.screenOnRoute=function(a,b){var c=this,d=null,e=null;""===U.pString(a)&&(a=this.sDefaultScreenName),""!==a&&(d=this.screen(a),d||(d=this.screen(this.sDefaultScreenName),d&&(b=a+"/"+b,a=this.sDefaultScreenName)),d&&d.__started&&(d.__builded||(d.__builded=!0,U.isNonEmptyArray(d.viewModels())&&f.each(d.viewModels(),function(a){this.buildViewModel(a,d)},this),this.delegateRun(d,"onBuild")),f.defer(function(){c.oCurrentScreen&&(c.delegateRun(c.oCurrentScreen,"onHide"),U.isNonEmptyArray(c.oCurrentScreen.viewModels())&&f.each(c.oCurrentScreen.viewModels(),function(a){a.__vm&&a.__dom&&"Popups"!==a.__vm.viewModelPosition()&&(a.__dom.hide(),a.__vm.viewModelVisibility(!1),c.delegateRun(a.__vm,"onHide"))})),c.oCurrentScreen=d,c.oCurrentScreen&&(c.delegateRun(c.oCurrentScreen,"onShow"),V.runHook("screen-on-show",[c.oCurrentScreen.screenName(),c.oCurrentScreen]),U.isNonEmptyArray(c.oCurrentScreen.viewModels())&&f.each(c.oCurrentScreen.viewModels(),function(a){a.__vm&&a.__dom&&"Popups"!==a.__vm.viewModelPosition()&&(a.__dom.show(),a.__vm.viewModelVisibility(!0),c.delegateRun(a.__vm,"onShow"),V.runHook("view-model-on-show",[a.__name,a.__vm]))},c)),e=d.__cross(),e&&e.parse(b)})))},n.prototype.startScreens=function(a){f.each(a,function(a){var b=new a,c=b?b.screenName():"";b&&""!==c&&(""===this.sDefaultScreenName&&(this.sDefaultScreenName=c),this.oScreens[c]=b)},this),f.each(this.oScreens,function(a){a&&!a.__started&&a.__start&&(a.__started=!0,a.__start(),V.runHook("screen-pre-start",[a.screenName(),a]),this.delegateRun(a,"onStart"),V.runHook("screen-post-start",[a.screenName(),a]))},this);var b=d.create();b.addRoute(/^([a-zA-Z0-9\-]*)\/?(.*)$/,f.bind(this.screenOnRoute,this)),e.initialized.add(b.parse,b),e.changed.add(b.parse,b),e.init()},n.prototype.setHash=function(a,b,c){a="#"===a.substr(0,1)?a.substr(1):a,a="/"===a.substr(0,1)?a.substr(1):a,c=U.isUnd(c)?!1:!!c,(U.isUnd(b)?1:!b)?(e.changed.active=!0,e[c?"replaceHash":"setHash"](a),e.setHash(a)):(e.changed.active=!1,e[c?"replaceHash":"setHash"](a),e.changed.active=!0)},n.prototype.bootstart=function(){return this.oBoot&&this.oBoot.bootstart&&this.oBoot.bootstart(),this},Z=new n,o.newInstanceFromJson=function(a){var b=new o;return b.initByJson(a)?b:null},o.prototype.name="",o.prototype.email="",o.prototype.privateType=null,o.prototype.clear=function(){this.email="",this.name="",this.privateType=null},o.prototype.validate=function(){return""!==this.name||""!==this.email},o.prototype.hash=function(a){return"#"+(a?"":this.name)+"#"+this.email+"#"},o.prototype.clearDuplicateName=function(){this.name===this.email&&(this.name="")},o.prototype.type=function(){return null===this.privateType&&(this.email&&"@facebook.com"===this.email.substr(-13)&&(this.privateType=S.EmailType.Facebook),null===this.privateType&&(this.privateType=S.EmailType.Default)),this.privateType},o.prototype.search=function(a){return-1<(this.name+" "+this.email).toLowerCase().indexOf(a.toLowerCase())},o.prototype.parse=function(a){this.clear(),a=U.trim(a);var b=/(?:"([^"]+)")? ?,]+)>?,? ?/g,c=b.exec(a);c?(this.name=c[1]||"",this.email=c[2]||"",this.clearDuplicateName()):/^[^@]+@[^@]+$/.test(a)&&(this.name="",this.email=a)},o.prototype.initByJson=function(a){var b=!1;return a&&"Object/Email"===a["@Object"]&&(this.name=U.trim(a.Name),this.email=U.trim(a.Email),b=""!==this.email,this.clearDuplicateName()),b},o.prototype.toLine=function(a,b,c){var d="";return""!==this.email&&(b=U.isUnd(b)?!1:!!b,c=U.isUnd(c)?!1:!!c,a&&""!==this.name?d=b?'")+'" target="_blank" tabindex="-1">'+U.encodeHtml(this.name)+"":c?U.encodeHtml(this.name):this.name:(d=this.email,""!==this.name?b?d=U.encodeHtml('"'+this.name+'" <')+'")+'" target="_blank" tabindex="-1">'+U.encodeHtml(d)+""+U.encodeHtml(">"):(d='"'+this.name+'" <'+d+">",c&&(d=U.encodeHtml(d))):b&&(d=''+U.encodeHtml(this.email)+""))),d},o.prototype.mailsoParse=function(a){if(a=U.trim(a),""===a)return!1;for(var b=function(a,b,c){a+="";var d=a.length;return 0>b&&(b+=d),d="undefined"==typeof c?d:0>c?c+d:c+b,b>=a.length||0>b||b>d?!1:a.slice(b,d)},c=function(a,b,c,d){return 0>c&&(c+=a.length),d=void 0!==d?d:a.length,0>d&&(d=d+a.length-c),a.slice(0,c)+b.substr(0,d)+b.slice(d)+a.slice(c+d)},d="",e="",f="",g=!1,h=!1,i=!1,j=null,k=0,l=0,m=0;m0&&0===d.length&&(d=b(a,0,m)),h=!0,k=m);break;case">":h&&(l=m,e=b(a,k+1,l-k-1),a=c(a,"",k,l-k+1),l=0,m=0,k=0,h=!1);break;case"(":g||h||i||(i=!0,k=m);break;case")":i&&(l=m,f=b(a,k+1,l-k-1),a=c(a,"",k,l-k+1),l=0,m=0,k=0,i=!1);break;case"\\":m++}m++}return 0===e.length&&(j=a.match(/[^@\s]+@\S+/i),j&&j[0]?e=j[0]:d=a),e.length>0&&0===d.length&&0===f.length&&(d=a.replace(e,"")),e=U.trim(e).replace(/^[<]+/,"").replace(/[>]+$/,""),d=U.trim(d).replace(/^["']+/,"").replace(/["']+$/,""),f=U.trim(f).replace(/^[(]+/,"").replace(/[)]+$/,""),d=d.replace(/\\\\(.)/,"$1"),f=f.replace(/\\\\(.)/,"$1"),this.name=d,this.email=e,this.clearDuplicateName(),!0},o.prototype.inputoTagLine=function(){return 0(new a.Date).getTime()-l),n&&i.oRequests[n]&&(i.oRequests[n].__aborted&&(e="abort"),i.oRequests[n]=null),i.defaultResponse(c,n,e,b,f,d)}),n&&0