diff --git a/controllers/UserController.php b/controllers/UserController.php index a6406618c0..da265a04c6 100644 --- a/controllers/UserController.php +++ b/controllers/UserController.php @@ -271,8 +271,11 @@ public function actionConfirmregistration(string $backUrl = '', string $email = $msgError = ''; $prefillCode = ''; $usernamePasswordForm = new LoginUsernamePasswordForm(RequestContext::getSession(), User::getExternalAuthenticator()); + $ongoingSessionUser = $usernamePasswordForm->getOngoingEmailConfirmationSessionUser(); - if ($this->isRequestSet('email') && $this->isRequestSet('code')) { + if ($this->isRequestSet('resend') && $ongoingSessionUser && !$ongoingSessionUser->hasTooRecentRecoveryEmail()) { + $usernamePasswordForm->sendConfirmationEmail($ongoingSessionUser); + } elseif ($this->isRequestSet('email') && $this->isRequestSet('code')) { /** @var User|null $user */ $user = User::findOne(['auth' => 'email:' . $this->getRequestValue('email')]); if (!$user) { @@ -313,6 +316,7 @@ public function actionConfirmregistration(string $backUrl = '', string $email = 'prefillCode' => $prefillCode, 'errors' => $msgError, 'backUrl' => $backUrl, + 'allowResend' => ($ongoingSessionUser && !$ongoingSessionUser->hasTooRecentRecoveryEmail()), ] )); } diff --git a/messages/de/user.php b/messages/de/user.php index 85d5686812..10b791fc30 100644 --- a/messages/de/user.php +++ b/messages/de/user.php @@ -159,6 +159,7 @@ hier den Code in der E-Mail eingibst.', 'confirm_code' => 'Bestätigungs-Code', 'confirm_btn_do' => 'Bestätigen', + 'confirm_resend' => 'Bestätigungsmail erneut verschicken', 'confirmed_title' => 'Zugang bestätigt', 'confirmed_msg' => 'Alles klar! Dein Zugang ist freigeschaltet und du kannst loslegen!', diff --git a/messages/en/user.php b/messages/en/user.php index ca28854511..d792cb0726 100644 --- a/messages/en/user.php +++ b/messages/en/user.php @@ -151,6 +151,7 @@ 'confirm_mail_sent' => 'An email was just sent to your address. Please confirm receiving this mail by clicking on the link in the mail or by entering the given code on this page.', 'confirm_code' => 'Confirmation code', 'confirm_btn_do' => 'Confirm', + 'confirm_resend' => 'Resend confirmation e-mail', 'confirmed_title' => 'Account confirmed', 'confirmed_msg' => 'Your\'re all set! Your account is confirmed and you are good to go.', diff --git a/models/db/User.php b/models/db/User.php index bf5d655f95..58097a80c9 100644 --- a/models/db/User.php +++ b/models/db/User.php @@ -713,6 +713,16 @@ public function getAuthType(): int } } + public function hasTooRecentRecoveryEmail(): bool + { + if (!$this->recoveryAt) { + return false; + } + $recTs = Tools::dateSql2timestamp($this->recoveryAt); + + return ($recTs + 3600) > time(); + } + /** * @throws MailNotSent * @throws FormError @@ -720,11 +730,8 @@ public function getAuthType(): int */ public function sendRecoveryMail(): void { - if ($this->recoveryAt) { - $recTs = Tools::dateSql2timestamp($this->recoveryAt); - if (time() - $recTs < 24 * 3600) { - throw new FormError(\Yii::t('user', 'err_recover_mail_sent')); - } + if ($this->hasTooRecentRecoveryEmail()) { + throw new FormError(\Yii::t('user', 'err_recover_mail_sent')); } if ($this->email === null) { return; diff --git a/models/forms/LoginUsernamePasswordForm.php b/models/forms/LoginUsernamePasswordForm.php index fb70283eb8..9c989a7d29 100644 --- a/models/forms/LoginUsernamePasswordForm.php +++ b/models/forms/LoginUsernamePasswordForm.php @@ -48,19 +48,19 @@ public function rules(): array /** * @throws MailNotSent */ - private function sendConfirmationEmail(User $user): void + public function sendConfirmationEmail(User $user): void { if ($this->externalAuthenticator && !$this->externalAuthenticator->supportsCreatingAccounts()) { throw new Internal('Creating account is not supported'); } $bestCode = $user->createEmailConfirmationCode(); - $params = ['/user/confirmregistration', 'email' => $this->username, 'code' => $bestCode, 'subdomain' => null]; + $params = ['/user/confirmregistration', 'email' => $user->email, 'code' => $bestCode, 'subdomain' => null]; $link = UrlHelper::absolutizeLink(UrlHelper::createUrl($params)); \app\components\mail\Tools::sendWithLog( EMailLog::TYPE_REGISTRATION, null, - $this->username, + $user->email, $user->id, \Yii::t('user', 'create_emailconfirm_title'), \Yii::t('user', 'create_emailconfirm_msg'), @@ -70,8 +70,10 @@ private function sendConfirmationEmail(User $user): void '%BEST_LINK%' => $link, ] ); - } + $user->recoveryAt = date('Y-m-d H:i:s'); + $user->save(); + } /** * @throws Login @@ -96,7 +98,7 @@ private function doCreateAccountValidate(?Site $site): void throw new Login($this->error); } if (strlen($this->password) < static::PASSWORD_MIN_LEN) { - $this->error = str_replace('%MINLEN%', static::PASSWORD_MIN_LEN, \Yii::t('user', 'create_err_pwdlength')); + $this->error = str_replace('%MINLEN%', (string)static::PASSWORD_MIN_LEN, \Yii::t('user', 'create_err_pwdlength')); throw new Login($this->error); } if ($this->password !== $this->passwordConfirm) { @@ -136,7 +138,7 @@ public function supportsCreatingAccounts(): bool public function doCreateAccount(?Site $site): User { if (!$this->supportsCreatingAccounts()) { - throw new Internal('Creating account is not supported'); + throw new Internal('Creating accounts is not supported'); } if ($this->externalAuthenticator) { return $this->externalAuthenticator->performRegistration($this->username, $this->password); @@ -294,6 +296,15 @@ public function hasOngoingEmailConfirmationSession(User $user): bool return $data['user_id'] === $user->id; } + public function getOngoingEmailConfirmationSessionUser(): ?User + { + $data = $this->session->get(self::SESSION_KEY_EMAIL_CONFIRMATION); + if (!$data) { + return null; + } + return User::findOne(['id' => $data['user_id']]); + } + public function setLoggedInAwaitingPasswordChange(User $user): void { $this->session->set(self::SESSION_KEY_PWD_CHANGE, [ diff --git a/plugins/green_layout/assets/layout-green_layout.css b/plugins/green_layout/assets/layout-green_layout.css index 08056bf215..82a1b8aa56 100644 --- a/plugins/green_layout/assets/layout-green_layout.css +++ b/plugins/green_layout/assets/layout-green_layout.css @@ -1,2 +1,2 @@ -@font-face{font-family:"Arvo";font-style:normal;font-weight:normal;src:url("./arvo_regular.woff") format("woff")}@font-face{font-family:"Arvo Gruen";font-style:normal;font-weight:normal;src:url("./arvo_gruen.woff") format("woff")}@font-face{font-family:"PT Sans";font-style:normal;font-weight:normal;src:url("./ptsans_regular.woff") format("woff")}@font-face{font-family:"PT Sans Bold";font-style:normal;font-weight:normal;src:url("./ptsans_bold.woff") format("woff")}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000 !important;text-shadow:none !important;background:rgba(0,0,0,0) !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:"Glyphicons Halflings";src:url("../../fonts/glyphicons-halflings-regular.eot");src:url("../../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../../fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("../../fonts/glyphicons-halflings-regular.woff") format("woff"),url("../../fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("../../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-euro:before,.glyphicon-eur:before{content:"€"}.glyphicon-minus:before{content:"−"}.glyphicon-cloud:before{content:"☁"}.glyphicon-envelope:before{content:"✉"}.glyphicon-pencil:before{content:"✏"}.glyphicon-glass:before{content:""}.glyphicon-music:before{content:""}.glyphicon-search:before{content:""}.glyphicon-heart:before{content:""}.glyphicon-star:before{content:""}.glyphicon-star-empty:before{content:""}.glyphicon-user:before{content:""}.glyphicon-film:before{content:""}.glyphicon-th-large:before{content:""}.glyphicon-th:before{content:""}.glyphicon-th-list:before{content:""}.glyphicon-ok:before{content:""}.glyphicon-remove:before{content:""}.glyphicon-zoom-in:before{content:""}.glyphicon-zoom-out:before{content:""}.glyphicon-off:before{content:""}.glyphicon-signal:before{content:""}.glyphicon-cog:before{content:""}.glyphicon-trash:before{content:""}.glyphicon-home:before{content:""}.glyphicon-file:before{content:""}.glyphicon-time:before{content:""}.glyphicon-road:before{content:""}.glyphicon-download-alt:before{content:""}.glyphicon-download:before{content:""}.glyphicon-upload:before{content:""}.glyphicon-inbox:before{content:""}.glyphicon-play-circle:before{content:""}.glyphicon-repeat:before{content:""}.glyphicon-refresh:before{content:""}.glyphicon-list-alt:before{content:""}.glyphicon-lock:before{content:""}.glyphicon-flag:before{content:""}.glyphicon-headphones:before{content:""}.glyphicon-volume-off:before{content:""}.glyphicon-volume-down:before{content:""}.glyphicon-volume-up:before{content:""}.glyphicon-qrcode:before{content:""}.glyphicon-barcode:before{content:""}.glyphicon-tag:before{content:""}.glyphicon-tags:before{content:""}.glyphicon-book:before{content:""}.glyphicon-bookmark:before{content:""}.glyphicon-print:before{content:""}.glyphicon-camera:before{content:""}.glyphicon-font:before{content:""}.glyphicon-bold:before{content:""}.glyphicon-italic:before{content:""}.glyphicon-text-height:before{content:""}.glyphicon-text-width:before{content:""}.glyphicon-align-left:before{content:""}.glyphicon-align-center:before{content:""}.glyphicon-align-right:before{content:""}.glyphicon-align-justify:before{content:""}.glyphicon-list:before{content:""}.glyphicon-indent-left:before{content:""}.glyphicon-indent-right:before{content:""}.glyphicon-facetime-video:before{content:""}.glyphicon-picture:before{content:""}.glyphicon-map-marker:before{content:""}.glyphicon-adjust:before{content:""}.glyphicon-tint:before{content:""}.glyphicon-edit:before{content:""}.glyphicon-share:before{content:""}.glyphicon-check:before{content:""}.glyphicon-move:before{content:""}.glyphicon-step-backward:before{content:""}.glyphicon-fast-backward:before{content:""}.glyphicon-backward:before{content:""}.glyphicon-play:before{content:""}.glyphicon-pause:before{content:""}.glyphicon-stop:before{content:""}.glyphicon-forward:before{content:""}.glyphicon-fast-forward:before{content:""}.glyphicon-step-forward:before{content:""}.glyphicon-eject:before{content:""}.glyphicon-chevron-left:before{content:""}.glyphicon-chevron-right:before{content:""}.glyphicon-plus-sign:before{content:""}.glyphicon-minus-sign:before{content:""}.glyphicon-remove-sign:before{content:""}.glyphicon-ok-sign:before{content:""}.glyphicon-question-sign:before{content:""}.glyphicon-info-sign:before{content:""}.glyphicon-screenshot:before{content:""}.glyphicon-remove-circle:before{content:""}.glyphicon-ok-circle:before{content:""}.glyphicon-ban-circle:before{content:""}.glyphicon-arrow-left:before{content:""}.glyphicon-arrow-right:before{content:""}.glyphicon-arrow-up:before{content:""}.glyphicon-arrow-down:before{content:""}.glyphicon-share-alt:before{content:""}.glyphicon-resize-full:before{content:""}.glyphicon-resize-small:before{content:""}.glyphicon-exclamation-sign:before{content:""}.glyphicon-gift:before{content:""}.glyphicon-leaf:before{content:""}.glyphicon-fire:before{content:""}.glyphicon-eye-open:before{content:""}.glyphicon-eye-close:before{content:""}.glyphicon-warning-sign:before{content:""}.glyphicon-plane:before{content:""}.glyphicon-calendar:before{content:""}.glyphicon-random:before{content:""}.glyphicon-comment:before{content:""}.glyphicon-magnet:before{content:""}.glyphicon-chevron-up:before{content:""}.glyphicon-chevron-down:before{content:""}.glyphicon-retweet:before{content:""}.glyphicon-shopping-cart:before{content:""}.glyphicon-folder-close:before{content:""}.glyphicon-folder-open:before{content:""}.glyphicon-resize-vertical:before{content:""}.glyphicon-resize-horizontal:before{content:""}.glyphicon-hdd:before{content:""}.glyphicon-bullhorn:before{content:""}.glyphicon-bell:before{content:""}.glyphicon-certificate:before{content:""}.glyphicon-thumbs-up:before{content:""}.glyphicon-thumbs-down:before{content:""}.glyphicon-hand-right:before{content:""}.glyphicon-hand-left:before{content:""}.glyphicon-hand-up:before{content:""}.glyphicon-hand-down:before{content:""}.glyphicon-circle-arrow-right:before{content:""}.glyphicon-circle-arrow-left:before{content:""}.glyphicon-circle-arrow-up:before{content:""}.glyphicon-circle-arrow-down:before{content:""}.glyphicon-globe:before{content:""}.glyphicon-wrench:before{content:""}.glyphicon-tasks:before{content:""}.glyphicon-filter:before{content:""}.glyphicon-briefcase:before{content:""}.glyphicon-fullscreen:before{content:""}.glyphicon-dashboard:before{content:""}.glyphicon-paperclip:before{content:""}.glyphicon-heart-empty:before{content:""}.glyphicon-link:before{content:""}.glyphicon-phone:before{content:""}.glyphicon-pushpin:before{content:""}.glyphicon-usd:before{content:""}.glyphicon-gbp:before{content:""}.glyphicon-sort:before{content:""}.glyphicon-sort-by-alphabet:before{content:""}.glyphicon-sort-by-alphabet-alt:before{content:""}.glyphicon-sort-by-order:before{content:""}.glyphicon-sort-by-order-alt:before{content:""}.glyphicon-sort-by-attributes:before{content:""}.glyphicon-sort-by-attributes-alt:before{content:""}.glyphicon-unchecked:before{content:""}.glyphicon-expand:before{content:""}.glyphicon-collapse-down:before{content:""}.glyphicon-collapse-up:before{content:""}.glyphicon-log-in:before{content:""}.glyphicon-flash:before{content:""}.glyphicon-log-out:before{content:""}.glyphicon-new-window:before{content:""}.glyphicon-record:before{content:""}.glyphicon-save:before{content:""}.glyphicon-open:before{content:""}.glyphicon-saved:before{content:""}.glyphicon-import:before{content:""}.glyphicon-export:before{content:""}.glyphicon-send:before{content:""}.glyphicon-floppy-disk:before{content:""}.glyphicon-floppy-saved:before{content:""}.glyphicon-floppy-remove:before{content:""}.glyphicon-floppy-save:before{content:""}.glyphicon-floppy-open:before{content:""}.glyphicon-credit-card:before{content:""}.glyphicon-transfer:before{content:""}.glyphicon-cutlery:before{content:""}.glyphicon-header:before{content:""}.glyphicon-compressed:before{content:""}.glyphicon-earphone:before{content:""}.glyphicon-phone-alt:before{content:""}.glyphicon-tower:before{content:""}.glyphicon-stats:before{content:""}.glyphicon-sd-video:before{content:""}.glyphicon-hd-video:before{content:""}.glyphicon-subtitles:before{content:""}.glyphicon-sound-stereo:before{content:""}.glyphicon-sound-dolby:before{content:""}.glyphicon-sound-5-1:before{content:""}.glyphicon-sound-6-1:before{content:""}.glyphicon-sound-7-1:before{content:""}.glyphicon-copyright-mark:before{content:""}.glyphicon-registration-mark:before{content:""}.glyphicon-cloud-download:before{content:""}.glyphicon-cloud-upload:before{content:""}.glyphicon-tree-conifer:before{content:""}.glyphicon-tree-deciduous:before{content:""}.glyphicon-cd:before{content:""}.glyphicon-save-file:before{content:""}.glyphicon-open-file:before{content:""}.glyphicon-level-up:before{content:""}.glyphicon-copy:before{content:""}.glyphicon-paste:before{content:""}.glyphicon-alert:before{content:""}.glyphicon-equalizer:before{content:""}.glyphicon-king:before{content:""}.glyphicon-queen:before{content:""}.glyphicon-pawn:before{content:""}.glyphicon-bishop:before{content:""}.glyphicon-knight:before{content:""}.glyphicon-baby-formula:before{content:""}.glyphicon-tent:before{content:"⛺"}.glyphicon-blackboard:before{content:""}.glyphicon-bed:before{content:""}.glyphicon-apple:before{content:""}.glyphicon-erase:before{content:""}.glyphicon-hourglass:before{content:"⌛"}.glyphicon-lamp:before{content:""}.glyphicon-duplicate:before{content:""}.glyphicon-piggy-bank:before{content:""}.glyphicon-scissors:before{content:""}.glyphicon-bitcoin:before{content:""}.glyphicon-btc:before{content:""}.glyphicon-xbt:before{content:""}.glyphicon-yen:before{content:"¥"}.glyphicon-jpy:before{content:"¥"}.glyphicon-ruble:before{content:"₽"}.glyphicon-rub:before{content:"₽"}.glyphicon-scale:before{content:""}.glyphicon-ice-lolly:before{content:""}.glyphicon-ice-lolly-tasted:before{content:""}.glyphicon-education:before{content:""}.glyphicon-option-horizontal:before{content:""}.glyphicon-option-vertical:before{content:""}.glyphicon-menu-hamburger:before{content:""}.glyphicon-modal-window:before{content:""}.glyphicon-oil:before{content:""}.glyphicon-grain:before{content:""}.glyphicon-sunglasses:before{content:""}.glyphicon-text-size:before{content:""}.glyphicon-text-color:before{content:""}.glyphicon-text-background:before{content:""}.glyphicon-object-align-top:before{content:""}.glyphicon-object-align-bottom:before{content:""}.glyphicon-object-align-horizontal:before{content:""}.glyphicon-object-align-left:before{content:""}.glyphicon-object-align-vertical:before{content:""}.glyphicon-object-align-right:before{content:""}.glyphicon-triangle-right:before{content:""}.glyphicon-triangle-left:before{content:""}.glyphicon-triangle-bottom:before{content:""}.glyphicon-triangle-top:before{content:""}.glyphicon-console:before{content:""}.glyphicon-superscript:before{content:""}.glyphicon-subscript:before{content:""}.glyphicon-menu-left:before{content:""}.glyphicon-menu-right:before{content:""}.glyphicon-menu-down:before{content:""}.glyphicon-menu-up:before{content:""}*{box-sizing:border-box}*:before,*:after{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:#484649;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#6d7e00;text-decoration:none}a:hover,a:focus{color:rgb(153.119047619,177,0);text-decoration:none}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.5;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid hsl(0,0%,93.5%)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:400;line-height:1;color:hsl(0,0%,46.7%)}h1,.h1,h2,.h2,h3,.h3{margin-top:21px;margin-bottom:10.5px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10.5px;margin-bottom:10.5px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10.5px}.lead{margin-bottom:21px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width: 768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase,.initialism{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:hsl(0,0%,46.7%)}.text-primary{color:#e2007a}a.text-primary:hover,a.text-primary:focus{color:rgb(175,0,94.4690265487)}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:rgb(42.808988764,84.191011236,43.5224719101)}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:rgb(35.984375,82.25,105.015625)}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:rgb(102.2741116751,80.7817258883,43.7258883249)}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:hsl(1.1650485437,43.829787234%,36.0784313725%)}.bg-primary{color:#fff}.bg-primary{background-color:#e2007a}a.bg-primary:hover,a.bg-primary:focus{background-color:rgb(175,0,94.4690265487)}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:hsl(102.5,44.4444444444%,79.4117647059%)}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:hsl(200,65.2173913043%,80.9803921569%)}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:hsl(50.4,80.6451612903%,83.9215686275%)}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:hsl(0,43.4782608696%,80.9803921569%)}.page-header{padding-bottom:9.5px;margin:42px 0 21px;border-bottom:1px solid hsl(0,0%,93.5%)}ul,ol{margin-top:0;margin-bottom:10.5px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:21px}dt,dd{line-height:1.5}dt{font-weight:700}dd{margin-left:0}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}@media(min-width: 992px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help}.initialism{font-size:90%}blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:14px;border-left:5px solid hsl(0,0%,93.5%)}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.5;color:hsl(0,0%,46.7%)}blockquote footer:before,blockquote small:before,blockquote .small:before{content:"— "}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid hsl(0,0%,93.5%);border-left:0}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:""}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:" —"}address{margin-bottom:21px;font-style:normal;line-height:1.5}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:10px;margin:0 0 10.5px;font-size:13px;line-height:1.5;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:rgba(0,0,0,0);border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}table{background-color:rgba(0,0,0,0)}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:hsl(0,0%,46.7%);text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:21px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.5;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>thead>tr>td.active,.table>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:hsl(0,0%,91.0784313725%)}.table>thead>tr>td.success,.table>thead>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:hsl(102.5,44.4444444444%,84.4117647059%)}.table>thead>tr>td.info,.table>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:hsl(200,65.2173913043%,85.9803921569%)}.table>thead>tr>td.warning,.table>thead>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:hsl(50.4,80.6451612903%,88.9215686275%)}.table>thead>tr>td.danger,.table>thead>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:hsl(0,43.4782608696%,85.9803921569%)}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width: 767px){.table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label,.label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9 ;line-height:normal}input[type=radio][disabled],input[type=radio].disabled,fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=checkbox].disabled,fieldset[disabled] input[type=checkbox]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.5;color:hsl(0,0%,33.5%)}.form-control{display:block;width:100%;height:35px;padding:6px 12px;font-size:14px;line-height:1.5;color:hsl(0,0%,33.5%);background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:rgba(0,0,0,0);border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:hsl(0,0%,93.5%);opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio: 0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:35px}input[type=date].input-sm,.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm input[type=date],input[type=time].input-sm,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm input[type=time],input[type=datetime-local].input-sm,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm input[type=datetime-local],input[type=month].input-sm,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm input[type=month]{line-height:30px}input[type=date].input-lg,.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg input[type=date],input[type=time].input-lg,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg input[type=time],input[type=datetime-local].input-lg,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg input[type=datetime-local],input[type=month].input-lg,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg input[type=month]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio.disabled label,.radio.disabled .label,fieldset[disabled] .radio label,fieldset[disabled] .radio .label,.checkbox.disabled label,.checkbox.disabled .label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox .label{cursor:not-allowed}.radio label,.radio .label,.checkbox label,.checkbox .label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9 ;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline.disabled,fieldset[disabled] .radio-inline,.checkbox-inline.disabled,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:35px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.form-control-static.input-sm,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:33px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:46px;line-height:46px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:39px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:43.75px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:35px;height:35px;line-height:35px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.radio .label,.has-success.checkbox label,.has-success.checkbox .label,.has-success.radio-inline label,.has-success.radio-inline .label,.has-success.checkbox-inline label,.has-success.checkbox-inline .label{color:#3c763d}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:rgb(42.808988764,84.191011236,43.5224719101);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(102.5280898876,177.4719101124,103.8202247191)}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.radio .label,.has-warning.checkbox label,.has-warning.checkbox .label,.has-warning.radio-inline label,.has-warning.radio-inline .label,.has-warning.checkbox-inline label,.has-warning.checkbox-inline .label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:rgb(102.2741116751,80.7817258883,43.7258883249);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(191.807106599,160.7461928934,107.192893401)}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.radio .label,.has-error.checkbox label,.has-error.checkbox .label,.has-error.radio-inline label,.has-error.radio-inline .label,.has-error.checkbox-inline label,.has-error.checkbox-inline .label{color:#a94442}.has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:hsl(1.1650485437,43.829787234%,36.0784313725%);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px hsl(1.1650485437,43.829787234%,66.0784313725%)}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback,.has-feedback .label~.form-control-feedback{top:26px}.has-feedback label.sr-only~.form-control-feedback,.has-feedback .sr-only.label~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:hsl(280,2.0979020979%,53.0392156863%)}@media(min-width: 768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .radio .label,.form-inline .checkbox label,.form-inline .checkbox .label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:28px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}@media(min-width: 768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media(min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid rgba(0,0,0,0);padding:6px 12px;font-size:14px;line-height:1.5;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:hsl(0,0%,90%);border-color:hsl(0,0%,55%)}.btn-default:hover{color:#333;background-color:hsl(0,0%,90%);border-color:hsl(0,0%,68%)}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{color:#333;background-color:hsl(0,0%,90%);background-image:none;border-color:hsl(0,0%,68%)}.btn-default:active:hover,.btn-default:active:focus,.btn-default:active.focus,.btn-default.active:hover,.btn-default.active:focus,.btn-default.active.focus,.open>.btn-default.dropdown-toggle:hover,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle.focus{color:#333;background-color:hsl(0,0%,83%);border-color:hsl(0,0%,55%)}.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled.focus,.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#e2007a;border-color:rgb(200.5,0,108.2345132743)}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:rgb(175,0,94.4690265487);border-color:rgb(73,0,39.407079646)}.btn-primary:hover{color:#fff;background-color:rgb(175,0,94.4690265487);border-color:rgb(139.3,0,75.1973451327)}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:rgb(175,0,94.4690265487);background-image:none;border-color:rgb(139.3,0,75.1973451327)}.btn-primary:active:hover,.btn-primary:active:focus,.btn-primary:active.focus,.btn-primary.active:hover,.btn-primary.active:focus,.btn-primary.active.focus,.open>.btn-primary.dropdown-toggle:hover,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle.focus{color:#fff;background-color:rgb(139.3,0,75.1973451327);border-color:rgb(73,0,39.407079646)}.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled.focus,.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary.focus{background-color:#e2007a;border-color:rgb(200.5,0,108.2345132743)}.btn-primary .badge{color:#e2007a;background-color:#fff}.btn-success{color:#fff;background-color:#2c882c;border-color:hsl(120,51.1111111111%,30.2941176471%)}.btn-success:focus,.btn-success.focus{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);border-color:rgb(6.6,20.4,6.6)}.btn-success:hover{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);border-color:hsl(120,51.1111111111%,18.2941176471%)}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);background-image:none;border-color:hsl(120,51.1111111111%,18.2941176471%)}.btn-success:active:hover,.btn-success:active:focus,.btn-success:active.focus,.btn-success.active:hover,.btn-success.active:focus,.btn-success.active.focus,.open>.btn-success.dropdown-toggle:hover,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle.focus{color:#fff;background-color:hsl(120,51.1111111111%,18.2941176471%);border-color:rgb(6.6,20.4,6.6)}.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled.focus,.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success.focus{background-color:#2c882c;border-color:hsl(120,51.1111111111%,30.2941176471%)}.btn-success .badge{color:#2c882c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:rgb(69.7715736041,183.845177665,217.7284263959)}.btn-info:focus,.btn-info.focus{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);border-color:rgb(26.8020304569,108.8324873096,133.1979695431)}.btn-info:hover{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);border-color:rgb(37.9081218274,153.9299492386,188.3918781726)}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);background-image:none;border-color:rgb(37.9081218274,153.9299492386,188.3918781726)}.btn-info:active:hover,.btn-info:active:focus,.btn-info:active.focus,.btn-info.active:hover,.btn-info.active:focus,.btn-info.active.focus,.open>.btn-info.dropdown-toggle:hover,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle.focus{color:#fff;background-color:rgb(37.9081218274,153.9299492386,188.3918781726);border-color:rgb(26.8020304569,108.8324873096,133.1979695431)}.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled.focus,.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:rgb(69.7715736041,183.845177665,217.7284263959)}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:rgb(238.0078125,162.109375,54.4921875)}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);border-color:rgb(152.109375,94.53125,12.890625)}.btn-warning:hover{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);border-color:rgb(213.2296875,132.515625,18.0703125)}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);background-image:none;border-color:rgb(213.2296875,132.515625,18.0703125)}.btn-warning:active:hover,.btn-warning:active:focus,.btn-warning:active.focus,.btn-warning.active:hover,.btn-warning.active:focus,.btn-warning.active.focus,.open>.btn-warning.dropdown-toggle:hover,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle.focus{color:#fff;background-color:rgb(213.2296875,132.515625,18.0703125);border-color:rgb(152.109375,94.53125,12.890625)}.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled.focus,.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:rgb(238.0078125,162.109375,54.4921875)}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:rgb(212.4719626168,62.5046728972,58.0280373832)}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);border-color:rgb(117.6074766355,28.0654205607,25.3925233645)}.btn-danger:hover{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);border-color:rgb(172.1345794393,41.0775700935,37.1654205607)}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);background-image:none;border-color:rgb(172.1345794393,41.0775700935,37.1654205607)}.btn-danger:active:hover,.btn-danger:active:focus,.btn-danger:active.focus,.btn-danger.active:hover,.btn-danger.active:focus,.btn-danger.active.focus,.open>.btn-danger.dropdown-toggle:hover,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle.focus{color:#fff;background-color:rgb(172.1345794393,41.0775700935,37.1654205607);border-color:rgb(117.6074766355,28.0654205607,25.3925233645)}.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled.focus,.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:rgb(212.4719626168,62.5046728972,58.0280373832)}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#6d7e00;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:rgba(0,0,0,0);box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:rgba(0,0,0,0)}.btn-link:hover,.btn-link:focus{color:rgb(153.119047619,177,0);text-decoration:none;background-color:rgba(0,0,0,0)}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:hsl(0,0%,46.7%);text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle,.btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:hsl(0,0%,33.5%);text-align:center;background-color:hsl(0,0%,93.5%);border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9 ;border-right:4px solid rgba(0,0,0,0);border-left:4px solid rgba(0,0,0,0)}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.5;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:hsl(0,0%,15%);text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#e2007a;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:hsl(0,0%,46.7%)}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:rgba(0,0,0,0);background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.5;color:hsl(0,0%,46.7%);white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9 }.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width: 992px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:hsl(0,0%,93.5%)}.nav>li.disabled>a{color:hsl(0,0%,46.7%)}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:hsl(0,0%,46.7%);text-decoration:none;cursor:not-allowed;background-color:rgba(0,0,0,0)}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:hsl(0,0%,93.5%);border-color:#6d7e00}.nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.5;border:1px solid rgba(0,0,0,0);border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:hsl(0,0%,93.5%) hsl(0,0%,93.5%) #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:hsl(0,0%,33.5%);cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:rgba(0,0,0,0)}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#e2007a}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width: 768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:21px;border:1px solid rgba(0,0,0,0)}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width: 992px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width: 992px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid rgba(0,0,0,0);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width: 992px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media(max-device-width: 480px)and (orientation: landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media(min-width: 992px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width: 992px){.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width: 992px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:14.5px 15px;font-size:18px;line-height:21px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media(min-width: 992px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:rgba(0,0,0,0);background-image:none;border:1px solid rgba(0,0,0,0);border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width: 992px){.navbar-toggle{display:none}}.navbar-nav{margin:7.25px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media(max-width: 991px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:rgba(0,0,0,0);border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:21px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width: 992px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:14.5px;padding-bottom:14.5px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);margin-top:7.5px;margin-bottom:7.5px}@media(min-width: 768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .radio .label,.navbar-form .checkbox label,.navbar-form .checkbox .label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width: 991px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width: 992px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:7.5px;margin-bottom:7.5px}.navbar-btn.btn-sm,.btn-group-sm>.navbar-btn.btn{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs,.btn-group-xs>.navbar-btn.btn{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:14.5px;margin-bottom:14.5px}@media(min-width: 992px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width: 992px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:rgb(93.5,93.5,93.5);background-color:rgba(0,0,0,0)}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}@media(max-width: 991px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:hover,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-brand{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-text{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav>li>a{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}@media(max-width: 991px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:rgb(16.15,16.15,16.15)}.navbar-inverse .navbar-link{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:hsl(0,0%,61.7%)}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:hover,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.alert{padding:15px;margin-bottom:21px;border:1px solid rgba(0,0,0,0);border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:hsl(92.5,44.4444444444%,84.4117647059%)}.alert-success hr{border-top-color:hsl(92.5,44.4444444444%,79.4117647059%)}.alert-success .alert-link{color:rgb(42.808988764,84.191011236,43.5224719101)}.alert-info{color:#31708f;background-color:#d9edf7;border-color:hsl(190,65.2173913043%,83.9803921569%)}.alert-info hr{border-top-color:hsl(190,65.2173913043%,78.9803921569%)}.alert-info .alert-link{color:rgb(35.984375,82.25,105.015625)}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:hsl(40.4,80.6451612903%,88.9215686275%)}.alert-warning hr{border-top-color:hsl(40.4,80.6451612903%,83.9215686275%)}.alert-warning .alert-link{color:rgb(102.2741116751,80.7817258883,43.7258883249)}.alert-danger{color:#a94442;background-color:#f2dede;border-color:hsl(350,43.4782608696%,85.9803921569%)}.alert-danger hr{border-top-color:hsl(350,43.4782608696%,80.9803921569%)}.alert-danger .alert-link{color:hsl(1.1650485437,43.829787234%,36.0784313725%)}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:hsl(0,0%,46.7%);cursor:not-allowed;background-color:hsl(0,0%,93.5%)}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:hsl(0,0%,46.7%)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#e2007a;border-color:#e2007a}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:rgb(255,175,218.185840708)}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus,button.list-group-item:hover,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:hover,button.list-group-item-success:focus{color:#3c763d;background-color:hsl(102.5,44.4444444444%,84.4117647059%)}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active,button.list-group-item-success.active:hover,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:hover,button.list-group-item-info:focus{color:#31708f;background-color:hsl(200,65.2173913043%,85.9803921569%)}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active,button.list-group-item-info.active:hover,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:hover,button.list-group-item-warning:focus{color:#8a6d3b;background-color:hsl(50.4,80.6451612903%,88.9215686275%)}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active,button.list-group-item-warning.active:hover,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:hover,button.list-group-item-danger:focus{color:#a94442;background-color:hsl(0,43.4782608696%,85.9803921569%)}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active,button.list-group-item-danger.active:hover,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.5;color:#6d7e00;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:hover,.pagination>li>a:focus,.pagination>li>span:hover,.pagination>li>span:focus{z-index:2;color:rgb(153.119047619,177,0);background-color:hsl(0,0%,93.5%);border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus,.pagination>.active>span,.pagination>.active>span:hover,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#e2007a;border-color:#e2007a}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:hsl(0,0%,46.7%);cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.breadcrumb{padding:8px 15px;margin-bottom:21px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/ "}.breadcrumb>.active{color:hsl(0,0%,46.7%)}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:hsl(0,0%,46.7%)}.label-default[href]:hover,.label-default[href]:focus{background-color:hsl(0,0%,36.7%)}.label-primary{background-color:#e2007a}.label-primary[href]:hover,.label-primary[href]:focus{background-color:rgb(175,0,94.4690265487)}.label-success{background-color:#2c882c}.label-success[href]:hover,.label-success[href]:focus{background-color:hsl(120,51.1111111111%,25.2941176471%)}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:rgb(48.5431472081,175.6903553299,213.4568527919)}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:rgb(236.015625,151.21875,30.984375)}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:rgb(201.4953271028,48.0841121495,43.5046728972)}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid hsl(0,0%,89.0784313725%);border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:rgba(0,0,0,0);border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{transform:translate(0, -25%);transition:transform .3s ease-out}.modal.in .modal-dialog{transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header:before,.modal-header:after{display:table;content:" "}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width: 1024px){.modal-lg{width:900px}}.popover{position:absolute;top:0;left:0;z-index:11000;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:hsl(0,0%,97%);border-bottom:1px solid hsl(0,0%,92%);border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.hidden{display:none !important}.affix{position:fixed}.visible-xs{display:none !important}.visible-sm{display:none !important}.visible-md{display:none !important}.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media(max-width: 767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media(max-width: 767px){.visible-xs-block{display:block !important}}@media(max-width: 767px){.visible-xs-inline{display:inline !important}}@media(max-width: 767px){.visible-xs-inline-block{display:inline-block !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-block{display:block !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-inline{display:inline !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-inline-block{display:inline-block !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-block{display:block !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-inline{display:inline !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-inline-block{display:inline-block !important}}@media(min-width: 10000px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media(min-width: 10000px){.visible-lg-block{display:block !important}}@media(min-width: 10000px){.visible-lg-inline{display:inline !important}}@media(min-width: 10000px){.visible-lg-inline-block{display:inline-block !important}}@media(max-width: 767px){.hidden-xs{display:none !important}}@media(min-width: 768px)and (max-width: 1023px){.hidden-sm{display:none !important}}@media(min-width: 1024px)and (max-width: 9999px){.hidden-md{display:none !important}}@media(min-width: 10000px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}@font-face{font-family:"fontello";src:url("../../fonts/fontello.woff2") format("woff2"),url("../../fonts/fontello.woff") format("woff");font-weight:normal;font-style:normal}[class^=fontello-]:before,[class*=" fontello-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fontello-facebook:before{content:""}.fontello-twitter:before{content:""}.fontello-globe:before{content:""}.fontello-rss-squared:before{content:""}.wizardWidget{border-bottom:1px solid #d4d4d4;*zoom:1;border-radius:0;margin-left:-1px;margin-right:-1px;overflow:hidden}.wizardWidget:before,.wizardWidget:after{display:table;line-height:0;content:""}.wizardWidget:after{clear:both}.wizardWidget ul.steps{padding:0;margin:0;list-style:none outside none}.wizardWidget ul.steps li{position:relative;float:left;padding:0 15px 0 30px;margin:0 0 0 1px;font-size:16px;color:#999;cursor:default;background:#ededed}.wizardWidget ul.steps li:before{width:0;height:0;position:absolute;content:"";top:-1px;left:-1px;transform:scale(1, 1.5);transform-origin:top}.wizardWidget ul.steps li:after{width:0;height:0;position:absolute;content:"";top:-1px;z-index:2;transform:scale(1, 1.5);transform-origin:top}.wizardWidget ul.steps li:first-child:before{border:none}.wizardWidget ul.steps li.complete{color:#468847;background:#f3f4f5}.wizardWidget ul.steps li.complete:hover{cursor:pointer;background:#e7eff8}.wizardWidget ul.steps li.complete:hover .chevron:before{border-left:14px solid #e7eff8}.wizardWidget ul.steps li.complete .chevron:before{border-left:14px solid #f3f4f5}.wizardWidget ul.steps li.active{color:#afcb08;background:#f1f6fc}.wizardWidget ul.steps li.active:after{border-left-color:#f1f6fc}.wizardWidget ul.steps li .badge{margin-right:8px}.wizardWidget ul.steps li:nth-child(1){z-index:10;padding-left:15px}.wizardWidget ul.steps li:nth-child(2){z-index:9}.wizardWidget ul.steps li:nth-child(3){z-index:8}.wizardWidget ul.steps li:nth-child(4){z-index:7}.wizardWidget ul.steps li:nth-child(5){z-index:6}.wizardWidget ul.steps li:nth-child(6){z-index:5}.wizardWidget ul.steps li:nth-child(7){z-index:4}.wizardWidget ul.steps li:nth-child(8){z-index:3}.wizardWidget ul.steps li:nth-child(9){z-index:2}.wizardWidget ul.steps li:nth-child(10){z-index:1}.wizardWidget .actions{float:right;padding-right:15px;line-height:44px;vertical-align:middle}.wizardWidget .actions a{margin-right:8px;font-size:12px;line-height:45px}.wizardWidget .actions .btn-prev i{margin-right:5px}.wizardWidget .actions .btn-next i{margin-left:5px}.wizardWidget ul li{height:46px;line-height:46px}.wizardWidget ul li:before{border-top:16.3333333333px inset rgba(0,0,0,0);border-bottom:16.3333333333px inset rgba(0,0,0,0);border-left:16.3333333333px solid #d4d4d4}.wizardWidget ul li:after{border-top:16.3333333333px inset rgba(0,0,0,0);border-bottom:16.3333333333px inset rgba(0,0,0,0);border-left:16.3333333333px solid #ededed;right:-15.3333333333px}.hideIfEmpty:empty{display:none}@media(hover: hover){.hoverHolder .hoverElement{display:none}.hoverHolder:hover .hoverElement{display:inherit}}html{height:100%}blockquote{margin:3px 3px 3px 15px;border-left:dotted 2px gray;padding:5px}p,ul{margin-bottom:10px}a{text-decoration:none;color:#6d7e00}a:hover{text-decoration:none;color:rgb(175.1785714286,202.5,0)}a.btn{text-decoration:none}del,ul.deleted,ol.deleted,li.deleted,blockquote.deleted,pre.deleted,div.deleted,p.deleted,h1.deleted,h2.deleted,h3.deleted,h4.deleted,h5.deleted{color:#800;text-decoration:line-through;font-weight:bold}ins,ul.inserted,ol.inserted,li.inserted,blockquote.inserted,pre.inserted,div.inserted,p.inserted,h1.inserted,h2.inserted,h3.inserted,h4.inserted,h5.inserted{color:#080;text-decoration:underline;font-weight:bold}del.space,ins.space,del.formatting,ins.formatting{font-style:italic;font-size:.8em;display:inline-block;margin-left:5px;margin-right:5px}label input,.label input,label textarea,.label textarea{font-weight:normal}button.link{background:rgba(0,0,0,0);border:none;align-items:normal;cursor:pointer;display:inline-block;font:inherit;height:auto;padding:0;perspective-origin:0 0;text-align:start;transform-origin:0 0;width:auto;-moz-appearance:none;-webkit-logical-height:1em;-webkit-logical-width:auto;box-sizing:content-box}@supports(-moz-appearance: none){button.link::-moz-focus-inner{border:none;padding:0}button.link:focus{outline-style:dotted;outline-width:1px}}.stdDropdown{display:block;width:100%;padding:6px 30px 6px 12px;margin:0;font-family:inherit;-moz-padding-start:calc(.75rem - 3px);font-size:inherit;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;word-wrap:normal;text-transform:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.stdDropdown:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}.stdDropdown.stdDropdownSmall{width:auto;display:inline;font-size:.8em;padding:3px 18px 3px 3px}.stdEqualCols{display:flex;width:100%}.stdEqualCols>*{flex-grow:1;flex-basis:10%}.stdEqualCols.stdPadding>*{padding-left:15px;padding-right:15px}.stdEqualCols.stdPadding>*:first-child{padding-left:0}.stdEqualCols.stdPadding>*:last-child{padding-right:0}.stdTwoCols{display:block;width:100%}.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled,.stdTwoCols .rightColumn{text-align:left;display:block}.stdTwoCols .leftColumn{font-weight:bold}@media screen and (max-width: 799px){.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled{padding-top:7px}.stdTwoCols .rightColumn{padding-bottom:7px}.stdTwoCols:first-child .leftColumn,.stdTwoCols:first-child .leftColumnUnstyled{padding-top:0}.stdTwoCols:last-child .rightColumn{padding-bottom:0}}@media screen and (min-width: 800px){.stdTwoCols{display:flex;flex-direction:row;width:100%}.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled,.stdTwoCols .rightColumn,.stdTwoCols .middleColumn{flex-grow:0;min-height:40px;padding-top:12px}.stdTwoCols .leftColumn{flex-basis:30%;text-align:right;padding-right:15px}.stdTwoCols .leftColumnUnstyled{flex-basis:30%;padding-right:15px}.stdTwoCols .middleColumn{flex-basis:40%;padding-left:15px}.stdTwoCols .rightColumn{flex-basis:70%;padding-left:15px}.stdTwoCols .middleColumn+.rightColumn{flex-basis:30%}.stdTwoCols .halfColumn{flex-basis:50%;padding-left:15px}.modal-body .stdTwoCols .leftColumn,.modal-body .stdTwoCols .leftColumnUnstyled{flex-basis:35%}.modal-body .stdTwoCols .middleColumn{flex-basis:35%}.modal-body .stdTwoCols .rightColumn{flex-basis:65%;padding-left:15px}}.alertNonPublicSection{margin:-10px 20px 20px 20px}.saveRow{text-align:center}.stdSortingWidget .list-group-item{cursor:move}.stdSortingWidget .list-group-item .sortIndicator{float:right}.stdSortingWidget .list-group-item.sortable-ghost{background-color:#eee}.stdSortingWidget .saveRow{margin-top:20px}.stdNonFormattedList{list-style-type:none;margin:0;padding:0}.stdNonFormattedList>li{margin:0;padding:0}.saveholder{clear:both;padding:10px;text-align:center}.alert-info a{color:rgb(86.9404761905,100.5,0)}.alert-info a:hover{color:rgb(153.119047619,177,0)}.alert-info a.btn.btn-primary{color:#fff}.alert-info a.btn.btn-primary:hover{color:#fff}.well{padding:0;position:relative;box-shadow:0 0 15px rgba(0,0,0,.4);background-color:#fff}.well h1,.well .primaryHeader{margin:0;color:#fff;background:#0a321e;background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px;overflow-wrap:break-word}.well h1 small,.well .primaryHeader small{color:#fff;font-size:12px}.well h1>h1,.well .primaryHeader>h1{margin:0;padding:0;background:rgba(0,0,0,0)}.well h1.stickyHeader,.well .primaryHeader.stickyHeader{position:sticky;position:-webkit-sticky;top:-5px;background:#0a321e;z-index:5}.well h1 .btnFullscreen,.well .primaryHeader .btnFullscreen{padding:0;float:right;margin-right:-10px;margin-top:-20px;color:hsla(0,0%,100%,.5)}.well h1 .btnFullscreen:hover,.well h1 .btnFullscreen.active,.well .primaryHeader .btnFullscreen:hover,.well .primaryHeader .btnFullscreen.active{color:hsla(0,0%,100%,.8)}.well h1 .btnFullscreen:active,.well h1 .btnFullscreen.active,.well .primaryHeader .btnFullscreen:active,.well .primaryHeader .btnFullscreen.active{color:#fff}.well h2.green,.well h3.green,.well .nav-header,.well legend.green,.well .greenHeader{margin:0;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px}.well h2.lightgreen,.well h3.lightgreen,.well .lightGreenHeader{margin:-1px;background:hsl(68.6153846154,92.4170616114%,91.3725490196%);background:linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;font-weight:bold;text-transform:uppercase}.well h2.darkgreen,.well h3.darkgreen,.well .darkGreenHeader{margin:0;color:#fff;background:#0a321e;background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px}.well .greenHeaderDropDown{float:right;margin-right:-10px}.well .greenHeaderDropDown .btn-link,.well .greenHeaderDropDown .btn-link:link{color:#fff;font-weight:normal}.well .greenHeaderDropDown:focus,.well .greenHeaderDropDown:hover{background-color:hsla(0,0%,100%,.2)}.well .greenHeaderDropDown .dropdown-menu>li>a{text-transform:none;text-shadow:none;font-weight:normal}.well .greenHeaderDropDown li.selected a::before{content:"✓";display:block;float:left;width:16px;margin-left:-16px;text-align:center}.well .greenHeaderExtraLink{float:right;text-decoration:none;font-size:12px;text-transform:none;font-weight:normal;color:rgb(64.880952381,75,0)}.well .greenHeader h2,.well .greenHeader h3{font-size:inherit;margin:0;font-weight:bold;display:inline-block}.well .content{padding:15px 20px 30px;overflow:visible}.well>.alert{margin:20px}.navbar{margin-bottom:0}.navbar .navbar-inner{background:none 0 0 rgba(0,0,0,0);filter:none;border:none;box-shadow:none;min-height:0;padding:0;text-align:right;margin-top:10px;border-radius:0}.navbar .nav{margin:0;float:right}.navbar .nav li a{display:inline;padding:0;margin-left:40px;color:#6d7e00;font-family:"Arvo",sans-serif;font-style:normal;font-weight:bold;text-transform:uppercase;text-decoration:none;font-size:18px;text-shadow:none}.navbar .nav li.active a,.navbar .nav li a:hover,.navbar .nav li a:focus,.navbar .nav li.active a:hover,.navbar .nav li.active a:focus{background:none;filter:none;color:#737373 !important;text-decoration:none}.navbar-toggle{box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.navbar-toggle:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .navbar-toggle:focus{box-shadow:none}.btn{font-family:"Arvo",sans-serif;font-weight:bold;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.btn:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .btn:focus{box-shadow:none}.span9 .btn{margin:10px 0 0 200px}.btn-primary{text-transform:uppercase;color:#fff;background:#e2007a;background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%)}.btn-link{border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.btn-link:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .btn-link:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}.table>thead>tr>th{border-bottom:none}.form-control[type=file]{padding-top:0;padding-bottom:0}.breadcrumb{background:none;filter:none;border-radius:0;margin:30px 0 5px;padding:0 15px}.breadcrumb,.breadcrumb .active{font-family:"Arvo",sans-serif;font-style:normal;font-weight:bold;text-transform:uppercase;font-size:15px;color:#737373}.breadcrumb li{text-shadow:none}.breadcrumb li>span{display:inline-block}.breadcrumb a{color:#6d7e00}.breadcrumb .pseudoLink{color:#6d7e00;cursor:pointer}legend,.legend{font-size:14px;border:none;font-weight:normal;margin:0;padding:0}.toggle .toggle-group .btn{border:none}.btn-link.btn-danger{color:#d9534f;font-weight:normal;border:none}.btn-link.btn-danger:hover{background:rgba(0,0,0,0);color:rgb(159.5514018692,38.0747663551,34.4485981308);border:none}.dropdown-menu li.checkbox label,.dropdown-menu li.checkbox .label{font-weight:normal;padding:0 0 0 30px}.dropdown-menu li.link span.icon{margin-left:-10px}.dropdown-menu li.link a{color:#6d7e00}.v-select .vs__open-indicator{cursor:pointer}@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.woff2) format("woff2"),url(../fonts/fontawesome-webfont.woff) format("woff");font-weight:400;font-style:normal}#gotoMainContent{color:rgba(0,0,0,0);position:absolute;left:10px;top:35px;border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}#gotoMainContent:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse #gotoMainContent:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}#gotoMainContent:link,#gotoMainContent:visited{color:rgba(0,0,0,0)}#gotoMainContent:focus{color:#6d7e00}body{font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;height:100%}#page{margin-left:auto;margin-right:auto}@media(min-width: 768px){#page{width:750px}}@media(min-width: 1024px){#page{width:1024px}}@media(min-width: 10000px){#page{width:1170px}}body.fullscreen #page{width:auto;margin-left:10px;margin-right:10px}.logoRow{display:flex;margin:14px 0 40px}.logoRow .homeLinkLogo{min-width:20%}.logoRow .homeLinkLogo>img{max-width:50%;max-height:200px}@media screen and (max-width: 480px){.logoRow .homeLinkLogo{text-align:center}.logoRow .homeLinkLogo>img{max-width:90%}}.over_footer_wrapper{min-height:100%;height:auto !important;height:100%;margin:0 auto -1.6em}#userLoginPanel{height:35px;background-color:#d3d3d3;display:flex;flex-direction:row}#userLoginPanel .username{flex-basis:50%;text-align:left;padding:5px 10px}#userLoginPanel .groups{flex-basis:50%;text-align:right;padding:5px 10px}a{border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}a:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse a:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}body>footer{height:1.6em;max-width:1024px;margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}body>footer p{height:1.6em;line-height:1.5em;margin-bottom:0;margin-top:0;white-space:nowrap}body>footer a:link,body>footer a:visited{color:#6d7e00}body>footer .version{display:inline-block;margin-left:30px;font-size:.8em}@media print{body>footer{display:none}}.footer_spacer{height:1.6em}.labelSubInfo{font-weight:normal;font-size:.8em}.antragsgruen-content>#sidebar{max-width:241px;float:left;padding-right:0;padding-left:15px}.antragsgruen-content .sidebar-box{min-width:200px}.antragsgruen-content .sidebar-box .box-header{margin:0;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;padding:5px 5px 5px 15px;margin:-1px;margin-bottom:12px}.antragsgruen-content .sidebar-box .box-content{padding:0 15px 15px 15px}.antragsgruen-content .sidebar-box:first-child .box-header{border-top-left-radius:0;border-top-right-radius:0}.antragsgruen-content>.antragsgruen-width-main{width:100%;max-width:783px;float:left}.antragsgruen-content>.antragsgruen-width-full{width:100%;float:left}.antragsgruen-content>*{position:relative;min-height:2px}.goBackLink{display:inline-block;margin-bottom:20px}.saveCancelRow{overflow:auto}.well .saveCancelRow.content{overflow:auto}.saveCancelRow .saveCol{float:right}.saveCancelRow .cancelCol{float:left}.toolbarBelowTitle,.toolbarAtBottom{padding:10px 19px;background:#f7f7f7;display:table;margin-left:-1px;margin-right:-1px;width:calc(100% + 2px)}.toolbarBelowTitle>*,.toolbarAtBottom>*{display:table-cell}.toolbarBelowTitle{border-bottom:solid 1px #aaa}.toolbarAtBottom{border-top:solid 1px #aaa}.motionPrevNextLinks{padding:5px 10px}.motionPrevNextLinks .prev{width:50%;text-align:left}.motionPrevNextLinks .next{width:50%;text-align:right}.stickyAdminDebugFooter{position:fixed;bottom:0;right:0;left:0;z-index:10;padding:0;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);display:table;width:100%}.stickyAdminDebugFooter>*{display:table-cell;padding:5px;vertical-align:top}.stickyAdminDebugFooter .adminHint{font-size:.8em;display:block}.stickyAdminDebugFooter .setterCol{width:100%}.stickyAdminDebugFooter #simulateAdminTime{width:200px;float:left;margin-right:10px}.stickyAdminDebugFooter h2{white-space:nowrap;margin:0;font-size:1.1em}.stickyAdminDebugFooter label,.stickyAdminDebugFooter .label{margin:0}*:fullscreen{overflow-x:hidden;overflow-y:auto}*:-webkit-full-screen{overflow-x:hidden;overflow-y:auto}*:-moz-full-screen{overflow-x:hidden;overflow-y:auto}*:-ms-fullscreen{overflow-x:hidden;overflow-y:auto}.contentPage{margin-left:-1px;margin-right:-1px}.contentPage .editCaller{float:right;font-weight:normal}.contentPage .textHolder>h1,.contentPage .textHolder>h2.green,.contentPage .textHolder h2.darkgreen{margin-left:-20px;margin-right:-20px}.contentPage img{max-width:100%;height:auto}.contentPageWelcome{overflow:auto}.contentPageWelcome.hasDeadline{min-height:135px}.contentPageWelcome .editCaller{float:right;margin-left:10px;font-weight:normal}.contentPageFeeds .editCaller{float:right}.contentSettingsToolbar input[type=text]{max-width:160px;display:inline-block}.contentSettingsToolbar .options{padding-top:5px}.contentSettingsToolbar .options label,.contentSettingsToolbar .options .label{font-weight:normal}.deadlineCircle{float:right;width:105px;height:105px;padding-top:20px;background:#e2007a;background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);text-align:center;vertical-align:middle;overflow:hidden;font-family:"Arvo",sans-serif;font-weight:bold;font-size:15px;line-height:17px;text-transform:uppercase;color:#fff;margin-left:30px;border-radius:90px}.downloadableFiles h2{font-size:1.2em}.downloadableFiles .deleteFile{color:#f77}.downloadableFiles .fileList{list-style-type:none}@media(hover: hover){.downloadableFiles .fileList li .deleteFile{opacity:.1}.downloadableFiles .fileList li:hover .deleteFile{opacity:1}.downloadableFiles .fileList li .deleteFile:focus{opacity:1}}.downloadableFiles .downloadableFilesUpload{display:flex}.downloadableFiles .downloadableFilesUpload>*{flex:0}.downloadableFiles .downloadableFilesUpload h3{margin:8px 0 0 0;flex-basis:150px;font-size:1em}.downloadableFiles .downloadableFilesUpload label,.downloadableFiles .downloadableFilesUpload .label{font-weight:normal}.downloadableFiles .downloadableFilesUpload .uploadCol{flex-basis:200px}.downloadableFiles .downloadableFilesUpload .titleCol{flex:1;max-width:300px}.documentsPage .editCaller{float:right;margin-left:10px;font-weight:normal}.documentsPage .downloadAndActions{text-align:right}.documentsPage .deleteGroupForm{display:inline;float:right;margin-right:15px}.documentsPage .deleteGroupForm .deleteGroupBtn{color:#f77;opacity:0}.documentsPage .deleteGroupForm .deleteGroupBtn:active,.documentsPage .deleteGroupForm .deleteGroupBtn:focus{opacity:1}.documentsPage .greenHeader:hover .deleteGroupForm .deleteGroupBtn{opacity:1}.documentsPage .deleteFileBtn{display:inline;margin-left:15px;color:#f77;opacity:0}.documentsPage .deleteFileBtn:active,.documentsPage .deleteFileBtn:focus{opacity:1}.documentsPage .motion .title:hover .deleteFileBtn{opacity:1}.documentsPage .btn.btn-link{padding:0;font-weight:normal}.documentsPage .fileAddForm{display:flex;flex-direction:row;margin-left:32px;margin-top:-25px;margin-bottom:40px}.documentsPage .fileAddForm .uploadCol label,.documentsPage .fileAddForm .uploadCol .label{font-weight:normal;color:#6d7e00}.consultationIndex{overflow-wrap:break-word}.consultationIndex .myImotionList .widthdrawn .firstLine{text-decoration:line-through}.consultationIndex .myImotionList .initiator .firstLine a{font-weight:bold}.consultationIndex .translateWidget{float:right;margin-left:20px}.motionList .date{color:#757676;display:block;position:absolute;margin:0}@media(min-width: 800px){.motionList .date{margin-left:20px}}@media(max-width: 799px){.motionList .date{margin-left:12px}}@media(max-width: 1023px){.motionList .date{position:relative;top:0;right:0;float:right}}.motionList .date .edited{font-size:.8em;display:inline-block;padding-right:10px}.motionList .motion{position:relative;width:100%;overflow-wrap:break-word}.motionList .motion:last-child{padding-bottom:0}.motionList .motion>.date{top:12px;right:12px}@media(max-width: 1023px){.motionList .motion>.date{top:0;right:-8px}}.motionList .motion>.title{margin-bottom:3px}.motionList .motion>.title .motionIcon{width:21px;margin-left:-24px;color:#6d7e00}.motionList .motion>.title a{color:#6d7e00;display:inline-block}.motionList .motion>.title a:hover,.motionList .motion>.title a:focus{color:rgb(20.7619047619,24,0)}.motionList .motion>.title a,.motionList .motion>.title .motionLink{font-weight:bold;text-indent:0;font-size:16px;line-height:18px;-webkit-hyphens:auto;hyphens:auto}.motionList .motion>.title .pdfLink{font-size:13px;color:#6d7e00;margin-left:10px;display:inline-block;font-weight:normal}.motionList .motion>.title .pdfLink a:hover{text-decoration:none;color:rgb(20.7619047619,24,0)}.motionList .motion.withdrawn .motionTitle,.motionList .motion.withdrawn .motionPrefix{text-decoration:line-through}.motionList .amendment.withdrawn .amendmentTitle{text-decoration:line-through}.motionList .motion.modified>.title a *,.motionList .motion.withdrawn>.title a *,.motionList .motion.moved>.title a *{opacity:.4}.motionList .motion.modified .amendment>a,.motionList .motion.withdrawn .amendment>a,.motionList .motion.moved .amendment>a{opacity:.4}.motionList .motion.modified h4.amendments,.motionList .motion.withdrawn h4.amendments,.motionList .motion.moved h4.amendments{opacity:.65}.motionList .amendment.modified>.title a,.motionList .amendment.withdrawn>.title a{opacity:.4}.motionList h4.amendments.amendmentsToggler{margin-top:-5px}.motionList h4.amendments.amendmentsToggler button{padding-left:0}.motionList h4.amendments.amendmentsToggler.closed .glyphicon-chevron-up{display:none}.motionList h4.amendments.amendmentsToggler.opened .glyphicon-chevron-down{display:none}.motionList ul.amendments.closed{display:none}.motionList ul.amendments{list-style-type:none;margin:10px 0 20px 0;padding:0}.motionList ul.amendments>li{margin-bottom:3px;position:relative}.motionList ul.amendments>li .motionIcon{margin-right:10px}.motionList ul.amendments>li>a{font-weight:bold;margin-right:5px}.motionList ul.amendments>li>.date{top:0;right:-8px}.motionList .status{font-style:italic;color:#484649}.motionList .womenQuota{font-size:.8em;margin-left:10px;display:inline-block}.motionListStd,.motionListFilterTags{list-style-type:none;margin:0 0 40px;padding:0}.motionListWithoutAgenda .motion{padding:12px 20px 17px 50px}.motionListWithoutAgenda .motion>.date{display:block}.motionListWithoutAgenda .motion>.title{padding-right:65px}.motionListWithoutAgenda .motion>.title .motionPrefix{display:inline-block}.motionListWithoutAgenda .motion>.title .motionPrefix:after{content:":"}.motionListWithoutAgenda .motion .info{font-style:italic;color:#737373}.motionListWithoutAgenda .motion .clearfix{display:none}.motionListWithoutAgenda h4.amendments{display:none}.motionListWithoutAgenda ul.amendments>li>.date{display:block}.motionListWithoutAgenda .privateCommentsIndicator{float:left;margin-left:-45px;margin-top:1px}.motionListBelowAgenda .motion{padding:12px 30px 17px 30px}.motionListBelowAgenda .motion>.date{display:none}.motionListBelowAgenda .motion>.title{font-family:"Arvo",sans-serif}.motionListBelowAgenda .motion>.title .motionIcon{display:none}.motionListBelowAgenda .motion>.title .motionPrefix{word-break:break-all;word-wrap:break-word;width:110px;float:left;left:30px;top:13px}.motionListBelowAgenda .motion>.title .motionTitle{display:block;margin-left:115px}.motionListBelowAgenda .motion>.title .pdfLink{display:none}.motionListBelowAgenda .motion .info{display:block;margin-left:115px}.motionListBelowAgenda .motion .clearfix{clear:both}.motionListBelowAgenda ul.amendments{margin-bottom:10px}@media screen and (min-width: 600px){.motionListBelowAgenda ul.amendments{margin-left:115px}}.motionListBelowAgenda ul.amendments>li>.amendmentTitle{float:left;width:110px;left:0;top:0}.motionListBelowAgenda ul.amendments>li>.date{display:none}.motionListBelowAgenda h4.amendments{margin-top:10px;margin-bottom:5px;font-family:"Arvo",sans-serif;font-weight:bold;color:#afcb08;font-size:14px}@media screen and (min-width: 600px){.motionListBelowAgenda h4.amendments{margin-left:115px}}.motionListBelowAgenda .privateCommentsIndicator{float:left;margin-left:-25px;margin-top:3px}.motionListPetitions .status{font-weight:bold;font-style:normal}.noMotionsYet{font-style:italic}.motionListWithinAgenda{list-style-type:none;margin:15px 0 0;padding:0;position:relative}.motionListWithinAgenda .motion>.title a{font-size:14px;line-height:16px}.motionListWithinAgenda ol{list-style-type:none;margin:0 0 0 30px;padding:0;clear:both}.motionListWithinAgenda ul.motions{list-style-type:none;padding:0}@media(min-width: 800px){.motionListWithinAgenda ul.motions{margin:0 0 0 50px}}@media(max-width: 799px){.motionListWithinAgenda ul.motions{margin:0 0 0 26px}}.motionListWithinAgenda ul.amendments>li>.date{right:3px}.motionListWithinAgenda .agendaItemAdder{padding-left:35px;margin-bottom:0;margin-top:-4px;display:flex;flex-direction:row;height:20px;overflow:hidden}.motionListWithinAgenda .agendaItemAdder .addEntry{flex:0;flex-basis:25%}.motionListWithinAgenda .agendaItemAdder .addDate{flex:0;flex-basis:25%}.motionListWithinAgenda .agendaItemAdder .spacer{flex:1}.motionListWithinAgenda .agendaItemAdder .showTimes{flex:0;flex-basis:25%;font-weight:normal}@media(hover: hover){.motionListWithinAgenda .agendaItemAdder>*{opacity:0}.motionListWithinAgenda .agendaItemAdder>*:focus-within{opacity:1}.motionListWithinAgenda:hover>.agendaItemAdder>*{opacity:1}.motionListWithinAgenda ol.agenda:hover>.agendaItemAdder>*{opacity:1}}.motionListWithinAgenda li.agendaItem{border:solid 1px rgba(0,0,0,0);position:relative}@media(min-width: 800px){.motionListWithinAgenda li.agendaItem{padding-left:20px}}@media(max-width: 799px){.motionListWithinAgenda li.agendaItem{padding-left:16px}}.motionListWithinAgenda li.agendaItem .delAgendaItem,.motionListWithinAgenda li.agendaItem .delAgendaItem:link,.motionListWithinAgenda li.agendaItem .delAgendaItem:visited{color:#f77;position:absolute;top:5px;right:10px}.motionListWithinAgenda li.agendaItem.agendaItemDate .delAgendaItem{top:30px}.motionListWithinAgenda li.agendaItem>div{margin-bottom:5px}@media(min-width: 800px){.motionListWithinAgenda li.agendaItem>div{padding:5px 10px 10px}}@media(max-width: 799px){.motionListWithinAgenda li.agendaItem>div{padding:5px 10px 10px 0}}.motionListWithinAgenda li.agendaItem>div>h3{overflow:visible;padding:3px;font-weight:normal}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>h3 .delAgendaItem{opacity:0}.motionListWithinAgenda li.agendaItem>div>h3:hover .delAgendaItem{opacity:1}.motionListWithinAgenda li.agendaItem>div>h3 .delAgendaItem:focus{opacity:1}}.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem{font-size:.7em;margin-left:10px}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem{opacity:0}.motionListWithinAgenda li.agendaItem>div>h3:hover .editAgendaItem{opacity:1}.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem:focus{opacity:1}}.motionListWithinAgenda li.agendaItem>div .motionCreateLink{float:right;text-align:left;margin-bottom:7px;text-indent:-7px;padding-left:18px;display:block}.motionListWithinAgenda li.agendaItem.editing>div>h3{display:none}.motionListWithinAgenda li.agendaItem.editing>div>.agendaItemEditForm{display:flex}.motionListWithinAgenda li.agendaItem.editing>div>.agendaDateEditForm{display:flex}.motionListWithinAgenda li.agendaItem.editing>ol>.agendaItemAdder{visibility:hidden !important}.motionListWithinAgenda li.agendaItem .motion>.date{top:0;right:3px}.motionListWithinAgenda li.agendaItem .motion>.title{margin-right:75px}.motionListWithinAgenda li.agendaItem .motion h4.amendments{font-size:16px}.motionListWithinAgenda li.agendaItem.agendaItemDate>div{padding-top:30px}.motionListWithinAgenda li.agendaItem.agendaItemDate h3{text-decoration:underline;margin-bottom:8px;font-weight:bold}.motionListWithinAgenda.agendaListEditing{padding-top:20px;padding-bottom:20px}.motionListWithinAgenda.agendaListEditing li.agendaItem>div{margin-bottom:0;padding-bottom:0;padding-top:0}.motionListWithinAgenda.agendaListEditing li.agendaItem.agendaItemDate>div{padding-top:30px}.motionListWithinAgenda .agendaItemEditForm{display:none;width:100%;flex-direction:row;padding-bottom:6px}.motionListWithinAgenda .agendaItemEditForm .code{margin-right:10px;flex-grow:0}.motionListWithinAgenda .agendaItemEditForm .time{margin-right:10px;flex-grow:0;flex-basis:80px;width:80px}.motionListWithinAgenda .agendaItemEditForm .time input{padding-left:7px;padding-right:7px}.motionListWithinAgenda .agendaItemEditForm .time .input-group-addon{cursor:pointer;padding-left:7px;padding-right:7px}.motionListWithinAgenda .agendaItemEditForm .title{margin-right:10px;flex-grow:1}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle{margin-right:10px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle .glyphicon-wrench{position:absolute;top:6px;left:10px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle .caret{margin-top:13px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-menu{min-width:240px}.motionListWithinAgenda .agendaItemEditForm .delete{flex-basis:30px;flex-grow:0}.motionListWithinAgenda .agendaItemEditForm .agendaMotionsRow{padding-top:5px;font-size:.8em;color:gray}.motionListWithinAgenda .agendaItemEditForm .motionType{white-space:nowrap;text-overflow:ellipsis;padding-right:0}.motionListWithinAgenda.noShowTimes h3 .time{display:none}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .time{display:none}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .code{width:80px;flex-basis:80px}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .motionType{max-width:170px;flex-basis:170px}.motionListWithinAgenda.showTimes>li{padding-left:50px}.motionListWithinAgenda.showTimes h3 .time{float:left;color:gray;font-size:.8em;padding-top:3px}.motionListWithinAgenda.showTimes li.agendaItem h3 .time{margin-left:-50px}.motionListWithinAgenda.showTimes li.agendaItem li.agendaItem h3 .time{margin-left:-100px}.motionListWithinAgenda.showTimes li.agendaItem li.agendaItem li.agendaItem h3 .time{margin-left:-150px}.motionListWithinAgenda.showTimes .agendaItemEditForm .code{flex-basis:50px}.motionListWithinAgenda.showTimes .agendaItemEditForm .motionType{flex-basis:140px}.motionListWithinAgenda .agendaDateEditForm{display:none;width:100%;flex-direction:row}.motionListWithinAgenda .agendaDateEditForm .dateSelector{width:285px;flex-basis:285px;flex-grow:0;margin-right:10px}.motionListWithinAgenda .agendaDateEditForm .dateSelector .input-group-addon{cursor:pointer}.motionListWithinAgenda .agendaDateEditForm .title{flex-grow:1;margin-right:10px}.motionListWithinAgenda .agendaDateEditForm .delete{flex-basis:30px;flex-grow:0}.motionListWithinAgenda h2,.motionListWithinAgenda h3{margin:0 0 5px;font-size:18px}.motionListWithinAgenda .moveHandle{float:left;font-size:1.5em;color:#d3d3d3;margin-left:-27px;cursor:move}.motionListWithinAgenda.showTimes>li>div .moveHandle{margin-left:-67px}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>.moveHandle{display:none}.motionListWithinAgenda li.agendaItem:hover>div>.moveHandle{display:block}}.motionListWithinAgenda .movePlaceholder{border:dotted 1px gray}.motionListFilterTags{margin:0}.motionListFilterTags .sortitem.motion{margin-bottom:20px}.motionListFilterTags .info{margin:0}.motionListFilterTags .abstract{margin-left:0;color:gray}.motionListFilterTags .stats{float:right}.motionListFilterTags .stats .comments{background-color:#e2007a}.motionListFilterTags .stats .amendments{background-color:#afcb08}.motionListFilterTags .stats .comments,.motionListFilterTags .stats .amendments{display:inline-block;padding:3px 6px;margin-left:10px;color:#fff;border-radius:3px}.motionListFilter .tagList{text-align:center;margin-bottom:15px}.motionListFilter .tagList .btn{margin:2px 4px}.motionListFilter .searchBar{margin-bottom:15px}.expandableRecentComments{margin-bottom:15px}.expandableRecentComments .commentList{display:flex;flex-direction:row;flex-wrap:wrap}.expandableRecentComments .commentListHolder{position:relative}.expandableRecentComments .showAllComments{display:none;text-align:center}.expandableRecentComments .showAllComments button{font-weight:normal}.expandableRecentComments.shortened .showAllComments{display:block;position:absolute;bottom:0;left:0;right:0;z-index:11}.expandableRecentComments.shortened .commentListHolder{overflow:hidden;max-height:340px}.expandableRecentComments.shortened .commentListHolder:after{content:"";display:block;position:absolute;bottom:0;height:70px;left:0;right:0;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);z-index:10}.expandableRecentComments .motionCommentHolder{flex-basis:50%;flex-grow:0;max-width:50%}.expandableRecentComments .motionCommentHolder:nth-child(even) .motionComment{margin-right:0}.expandableRecentComments .motionCommentHolder:nth-child(odd) .motionComment{margin-left:0}.expandableRecentComments .motionComment{margin-bottom:5px;font-size:.9em}.expandableRecentComments .motionComment .commentHeader{padding:5px}.expandableRecentComments .motionComment .date{padding:5px 5px 0 0}.expandableRecentComments .motionComment .commentText{padding:0 5px 5px 5px;min-height:59px}.expandableRecentComments .motionComment .commentText .glyphicon{font-size:.8em}.expandableRecentComments .motionComment .motionLink{padding:0 5px 5px 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.motionListTags #tagList{display:block;list-style-type:none;margin:0;padding-top:30px;padding-bottom:30px;text-align:center}.motionListTags #tagList>li{display:inline-block;padding:10px;background-color:#e2007a;border-radius:3px;font-size:16px;margin:10px}.motionListTags #tagList>li>a:link,.motionListTags #tagList>li #tag_list>li>a:visited{color:#fff}.motionListTags .motionTable{width:100%;margin:0 10px}.motionListTags .motionTable th{border-bottom:solid 1px #afcb08;font-size:.8em;line-height:2.5em;font-weight:600}.motionListTags .motionTable td{vertical-align:top;padding:.75em 0em .75em 0em}.motionListTags .motionTable tr.motion{border-top:solid 1px #afcb08}.motionListTags .motionTable tr.motion:first-child{border-top:none}.motionListTags .motionTable tr.amendment .titleCol .pdfLink{font-weight:400}.motionListTags .motionTable tr.amendment .titleCol .titleLink{font-weight:400}.motionListTags .motionTable .prefixCol{width:15%}.motionListTags .motionTable .titleCol{width:45%}.motionListTags .motionTable .titleCol .pdfLink{font-weight:600;font-size:.8em;float:right;margin-right:20px}.motionListTags .motionTable .titleCol .titleLink{font-weight:600}.motionListTags .motionTable .titleCol .titleLink a:link,.motionListTags .motionTable .titleCol .titleLink a:visited{color:#000}.motionListTags .motionTable .initiatorCol{width:35%}.motionListTags .motionTable .dateCol{width:15%}.motionListTags .motionTable .unscreened .titleCol .pdfLink{display:none}.motionListTags .motionTable .unscreened .titleCol .titleLink a:link,.motionListTags .motionTable .unscreened .titleCol .titleLink a:visited{font-weight:400;color:gray}.motionListTags .motionTable .privateCommentsIndicator{float:left;margin-left:-25px;margin-top:3px}.homeTagList ol{list-style:none;margin:15px 0;padding:0}.homeTagList ol>li{margin:0 0 15px 0;padding:0;clear:both}.homeTagList .tagLink{font-size:1.3em}.homeTagList .info{padding-left:24px;color:gray;float:right}.tagSelectToolbar{margin-bottom:20px}.tagSelectToolbar .selectHolder{text-align:right}.tagSelectToolbar select{display:inline-block;width:auto}.consultationPhasesWizard{margin-bottom:40px}.consultationPhasesWizard .wizard{border-bottom:none}.consultationPhasesWizard .wizard ul li{height:70px;line-height:70px}.consultationPhasesWizard .wizard ul li:before{border-top:24.3333333333px inset rgba(0,0,0,0);border-bottom:24.3333333333px inset rgba(0,0,0,0);border-left:24.3333333333px solid #d4d4d4}.consultationPhasesWizard .wizard ul li:after{border-top:24.3333333333px inset rgba(0,0,0,0);border-bottom:24.3333333333px inset rgba(0,0,0,0);border-left:24.3333333333px solid #ededed;right:-23.3333333333px}.consultationPhasesWizard .title{line-height:20px;font-weight:bold;margin-top:3px}.consultationPhasesWizard .permissions{line-height:14px;font-size:12px}#sidebar #sidebarOtherQueues{padding-right:15px}#sidebar .otherQueues .active{position:relative}#sidebar .otherQueues .active .glyphicon{position:absolute;left:15px;top:3px}#sidebar .otherQueues .activeLabel{font-size:.9em;font-style:italic}.speechAdmin .settings{display:flex;flex-direction:row;padding-bottom:5px}.speechAdmin .settings>*{flex:1}.speechAdmin .settings .settingsActive{line-height:35px;font-weight:normal;margin-bottom:0}.speechAdmin .settings .settingOpen{display:block;font-weight:normal;margin-bottom:0}.speechAdmin .settings .inactive{font-weight:bold;color:red}.speechAdmin .settings .settingsPolicy{text-align:right}.speechAdmin .settings .speakingTime{padding-left:30px;padding-right:25px}.speechAdmin .settings .deactivateOthers{font-size:.8em;font-style:italic}.speechAdmin .previousSpeakers{margin:0 auto;width:400px;border:dotted 1px #bdbdbd}.speechAdmin .previousSpeakers.invisible{visibility:hidden}.speechAdmin .previousSpeakers>header{padding:5px;position:relative}.speechAdmin .previousSpeakers>header .btn{position:absolute;right:0;top:0;font-weight:normal}.speechAdmin .previousSpeakers.previousShown>header{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .previousSpeakers.previousShown>header .btn-link{color:rgb(64.880952381,75,0)}.speechAdmin .previousSpeakers .previousLists{display:flex;flex-direction:row;width:100%}.speechAdmin .previousSpeakers .previousList{flex:1}.speechAdmin .previousSpeakers .previousList header{text-align:center}.speechAdmin .previousSpeakers .previousList header span{border-bottom:solid 1px gray}.speechAdmin .previousSpeakers .previousList ol{text-align:left}.speechAdmin .slots,.speechAdmin .previousList{list-style-type:none;margin:0 auto;padding:0;width:300px}.speechAdmin .slotEntry{margin:15px 0 0 0;border:solid 1px #bdbdbd;border-radius:3px;background-color:#f0f0f0;min-height:85px;padding:10px;position:relative;text-align:center;z-index:1}.speechAdmin .slotEntry .statusActive{font-style:italic}.speechAdmin .slotEntry .statusUpcoming{font-style:italic}.speechAdmin .slotEntry .start,.speechAdmin .slotEntry .stop{position:absolute;top:23px;right:5px}.speechAdmin .slotEntry.slotActive{background-color:#afa;box-shadow:0 3px 3px rgba(0,0,0,.25)}.speechAdmin .slotEntry .operations{left:0;border-right:solid 1px #bdbdbd;border-top:solid 1px #bdbdbd;border-top-right-radius:3px}.speechAdmin .operationStart,.speechAdmin .operationDelete{position:absolute;bottom:0;padding:0 5px;background-color:hsla(0,0%,100%,.5);font-size:12px;opacity:0;cursor:pointer;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .operationStart:focus,.speechAdmin .operationDelete:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .operationStart:focus,body.usingMouse .speechAdmin .operationDelete:focus{box-shadow:none}.speechAdmin .operationStart:focus,.speechAdmin .operationDelete:focus{opacity:1}.speechAdmin .slotPlaceholder:hover .operationStart,.speechAdmin .slotPlaceholder:hover .operationDelete,.speechAdmin .subqueueItem:hover .operationStart,.speechAdmin .subqueueItem:hover .operationDelete{opacity:1}.speechAdmin .operationStart{right:0;border-left:solid 1px #bdbdbd;border-top-left-radius:3px;border-top:solid 1px #bdbdbd;color:green}.speechAdmin .operationDelete{left:0;border-top:solid 1px #bdbdbd;border-right:solid 1px #bdbdbd;border-top-right-radius:3px;color:red}.speechAdmin .slotPlaceholder{position:relative;margin:0 15px 0 15px;border:dotted 1px #bdbdbd;background-color:#f0f0f0;min-height:85px;padding:10px;text-align:center}.speechAdmin .slotPlaceholder:nth-child(2){margin-top:-5px}.speechAdmin .slotPlaceholder:last-of-type{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.speechAdmin .slotPlaceholder .title{font-style:italic}.speechAdmin .slotPlaceholder.active{cursor:pointer;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .slotPlaceholder.active:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .slotPlaceholder.active:focus{box-shadow:none}.speechAdmin .slotPlaceholder.active:hover,.speechAdmin .slotPlaceholder.active:focus{background-color:hsl(0,0%,89.1176470588%);z-index:1;border-radius:3px;box-shadow:0 0 4px rgba(0,0,0,.25)}.speechAdmin .name{font-weight:bold;font-size:16px;line-height:1.5em}.speechAdmin .nameNobody{font-style:italic;font-size:16px;line-height:1.5em}.speechAdmin .iconBackground{position:absolute;left:15px;top:15px;font-size:50px;opacity:.15}.speechAdmin .isUpcoming:before{content:"";position:absolute;height:1px;width:500px;top:-6px;left:-100px;border-bottom:dotted 1px gray}.speechAdmin .subqueues{display:flex;flex-direction:row;justify-content:space-evenly;margin-top:50px}.speechAdmin .subqueue{width:230px}.speechAdmin .subqueue>header{text-align:center;font-weight:bold;text-transform:uppercase;border-bottom:solid 3px #d3d3d3;padding-bottom:5px;margin-bottom:10px}.speechAdmin .subqueue .empty{margin:5px 0 25px 0;font-style:italic;text-align:center}.speechAdmin .subqueue .subqueueAdder{margin-top:10px;text-align:center}.speechAdmin .subqueueItems{list-style-type:none;margin:0 auto;padding:0 15px}.speechAdmin .subqueueItem{margin:0;border:solid 1px #bdbdbd;border-radius:3px;min-height:60px;cursor:move;position:relative}.speechAdmin .subqueueItem .starter{position:absolute;left:0;right:0;top:0;bottom:0;padding:10px;background-color:#f0f0f0}.speechAdmin .operations{position:absolute;bottom:0}.speechAdmin .operations .moveSubqueue,.speechAdmin .operations .removeSlot{padding:0 5px;background-color:hsla(0,0%,100%,.5);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .operations .moveSubqueue:focus,.speechAdmin .operations .removeSlot:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .operations .moveSubqueue:focus,body.usingMouse .speechAdmin .operations .removeSlot:focus{box-shadow:none}.speechAdmin .operations .moveSubqueue:hover,.speechAdmin .operations .moveSubqueue:focus,.speechAdmin .operations .removeSlot:hover,.speechAdmin .operations .removeSlot:focus{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .operations .removeSlot{color:#f77}.speechAdmin .queueResetSection{text-align:right}.speechAdmin .dropPlaceholder{margin:3px 0;border:dotted 1px rgba(0,0,0,0);border-radius:3px;position:relative}.speechAdmin .dropPlaceholder .dropAdditionalSpace{position:absolute;left:0;right:0;top:-20px;bottom:-20px;z-index:100;display:none}.speechAdmin .dropPlaceholder .hoveredIndicator{visibility:hidden;text-align:center;font-size:12px;line-height:18px;font-weight:bold}.speechAdmin .dropPlaceholder.hoverable.hovered{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .dropPlaceholder.hoverable.hovered .hoveredIndicator{visibility:visible}.speechAdmin.dragging .dropPlaceholder.hoverable{border:dotted 1px #bdbdbd}.speechAdmin.dragging .dropPlaceholder.hoverable .dropAdditionalSpace{display:block}.currentSpeechPageWidth .speechAdminLink{float:right}.currentSpeechPageWidth .leftIcon{top:4px;font-size:18px;margin-right:4px}.currentSpeechPageWidth .activeSpeaker{font-size:16px;line-height:1.5em}.currentSpeechPageWidth .activeSpeaker .name{font-weight:bold}.currentSpeechPageWidth .remainingTime{font-size:16px;line-height:1.5em}.currentSpeechPageWidth .remainingTime .time{font-weight:bold}.currentSpeechPageWidth .remainingTime .over{color:red}.currentSpeechPageWidth .upcomingSpeaker{margin-top:20px;font-size:16px;line-height:1.5em}.currentSpeechPageWidth .upcomingSpeakerList{list-style-type:none;display:inline-block;margin:0;padding:0}.currentSpeechPageWidth .upcomingSpeakerList>*{display:inline}.currentSpeechPageWidth .upcomingSpeakerList>*:before{content:", ";display:inline}.currentSpeechPageWidth .upcomingSpeakerList>*:first-child:before{content:""}.currentSpeechPageWidth .upcomingSpeakerList .label{margin-left:5px}.currentSpeechPageWidth .appliedMe{display:inline-block;vertical-align:middle}.currentSpeechPageWidth .appliedMe .btnWithdraw{font-weight:normal;padding:0 5px;font-size:75%}.currentSpeechFullPage .speechAdminLink{margin-top:15px;margin-right:20px}.currentSpeechFullPage .activeSpeaker .name{margin-top:20px;margin-bottom:20px;text-align:center}.currentSpeechFullPage .remainingTime{text-align:center}.currentSpeechFullPage .waitingMultiple .name{vertical-align:top}.currentSpeechFullPage .waitingMultiple .applyOpenerPoo{font-weight:normal}.currentSpeechFullPage .waitingMultiple .notPossible{margin-top:27px;font-style:italic;font-size:.8em}.currentSpeechFullPage .waitingSubqueues{margin-left:26px;display:flex;flex-direction:row;justify-content:center;width:100%}.currentSpeechFullPage .waitingSubqueues>*{flex:1;display:flex;flex-direction:column}.currentSpeechFullPage .waitingSubqueues .header .name{vertical-align:middle;font-size:1.2em;font-weight:bold;display:inline-block;padding-right:10px}.currentSpeechFullPage .waitingSubqueues .applied{line-height:35px;vertical-align:middle}.currentSpeechFullPage .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.currentSpeechFullPage .waitingSubqueues .applyHolder{align-self:flex-start;margin-top:auto}.currentSpeechFullPage .waitingSubqueues .applyHolder form{display:inline-block;vertical-align:middle}.currentSpeechFullPage .waitingSubqueues .applyHolder button{margin-right:15px}.currentSpeechFullPage .waitingSubqueues .appliedMe{display:inline-block}.currentSpeechFullPage .waitingSubqueues .loginWarning{display:inline-block;margin-left:-15px;font-size:.8em;margin-right:15px;white-space:nowrap}.currentSpeechFullPage .nameList{display:block;margin-top:30px;margin-bottom:50px;padding-left:1.4em}.currentSpeechFullPage .nameList>li{font-size:14px;line-height:1.5em;font-size:16px}.currentSpeechFullPage .nameList>li .leftIcon{float:left;margin-left:-50px}.currentSpeechFullPage .waitingSingle .nameList{padding-left:50px}.currentSpeechFullPage .waitingSingle .nameList>li{margin-top:20px;margin-bottom:20px;font-weight:bold}.currentSpeechFullPage .waitingSingle .applyOpenerPoo{font-weight:normal;margin-top:20px}.currentSpeechFullPage .apply{max-width:300px}.currentSpeechInline .remainingTime{padding-left:26px;margin-top:10px}.currentSpeechInline .waitingMultiple{margin-top:20px}.currentSpeechInline .waitingMultiple header{font-size:16px;line-height:1.5em}.currentSpeechInline .waitingMultiple .notPossible{line-height:35px;vertical-align:middle;margin-left:27px;font-style:italic;font-size:.8em}.currentSpeechInline .waitingSubqueues{margin-left:26px;display:table}.currentSpeechInline .waitingSubqueues>*{display:table-row}.currentSpeechInline .waitingSubqueues .name{display:table-cell;width:200px;line-height:35px;vertical-align:middle}.currentSpeechInline .waitingSubqueues .applied{display:table-cell;line-height:35px;vertical-align:middle}.currentSpeechInline .waitingSubqueues .applied button{margin-right:15px}.currentSpeechInline .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.currentSpeechInline .waitingSubqueues .applied form{display:inline-block;vertical-align:middle}.currentSpeechInline .waitingSubqueues .appliedMe{display:inline-block}.currentSpeechInline .waitingSubqueues .loginWarning{display:inline-block;margin-left:-15px;font-size:.8em;margin-right:15px;white-space:nowrap}.currentSpeechInline .waitingSingle{margin-top:30px}.currentSpeechInline .waitingSingle header{font-size:16px;line-height:1.5em}.currentSpeechInline .waitingSingle .apply{margin-left:25px}.currentSpeechInline .waitingSingle .apply .notPossible{font-style:italic;font-size:.8em}.currentSpeechInline .waitingSingle .applyOpener,.currentSpeechInline .waitingSingle .applyOpenerPoo{margin-top:10px}.currentSpeechInline .waitingSingle .loginWarning{display:inline-block;font-size:.8em;white-space:nowrap}.currentSpeechInline .waitingSingle form{margin-top:10px;display:inline-block;vertical-align:middle}.currentSpeechInline .nameList{display:inline-block;list-style:none;margin:0 10px 0 5px;padding:0;font-size:0}.currentSpeechInline .nameList:before{display:inline-block;content:"(";font-size:12px}.currentSpeechInline .nameList:after{display:inline-block;content:")";font-size:12px}.currentSpeechInline .nameList>li{font-size:12px;display:inline-block}.currentSpeechInline .nameList>li:not(:first-child):before{display:inline-block;content:",";padding-right:5px}.currentSpeechInline .applyOpenerPoo{font-weight:normal;margin-left:20px}.currentSpeechFooter{position:fixed;bottom:0;right:0;left:0;width:100%;z-index:10;padding:0;background:#fff;border:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4)}*:fullscreen .currentSpeechFooter{display:none}*:-webkit-full-screen .currentSpeechFooter{display:none}*:-moz-full-screen .currentSpeechFooter{display:none}*:-ms-fullscreen .currentSpeechFooter{display:none}body.fullscreen .currentSpeechFooter{display:none}.currentSpeechFooter .speechUser{display:flex;flex-direction:row}.currentSpeechFooter .widgetTitle{flex-basis:160px;font-size:16px;line-height:35px;vertical-align:middle;margin:0;padding:5px 10px;background-color:#eee}.currentSpeechFooter .widgetTitle .speechAdminLink{float:right}.currentSpeechFooter .activeSpeaker{flex-grow:1;flex-basis:30%;padding:5px 10px;font-size:16px;line-height:35px}.currentSpeechFooter .activeSpeaker .label{vertical-align:middle}.currentSpeechFooter .activeSpeaker .title{font-weight:bold}.currentSpeechFooter .activeSpeaker .remainingTime{float:right}.currentSpeechFooter .activeSpeaker .over{color:red}.currentSpeechFooter .waitingMultiple{display:flex;flex-grow:1;flex-basis:50%;flex-direction:row;padding:5px 10px}.currentSpeechFooter .waitingMultiple header{font-size:16px;line-height:35px}@media(max-width: 799px){.currentSpeechFooter .speechUser.multiple-queues .widgetTitle{display:none}.currentSpeechFooter .speechUser.multiple-queues .activeSpeaker{flex-basis:33%}.currentSpeechFooter .speechUser.multiple-queues .waitingMultiple{flex-basis:66%}.currentSpeechFooter .speechUser.multiple-queues .waitingMultiple.isApplying .notApplyingHere{display:none}.currentSpeechFooter .speechUser.multiple-queues .subqueue{line-height:25px}.currentSpeechFooter .speechUser.multiple-queues .name .glyphicon{display:none}.currentSpeechFooter .speechUser.multiple-queues .applyOpenerPoo{display:none}.currentSpeechFooter .speechUser.multiple-queues .applyBtn{margin-top:0}}.currentSpeechFooter .waitingSingle{padding:5px 10px;flex-basis:50%;flex-grow:1}.currentSpeechFooter .waitingSingle .btnApply{margin-top:7px}.currentSpeechFooter .waitingSingle .appliedMe{margin-top:5px}.currentSpeechFooter .waitingSingle form{display:inline-block;vertical-align:middle}.currentSpeechFooter .waitingSingle .subqueue{display:flex;flex-direction:row}.currentSpeechFooter .subqueue{margin:0 10px;padding:0 0 0 10px;background-color:#eee;border-radius:3px;line-height:33px;vertical-align:middle}.currentSpeechFooter .subqueue .nameNumber{white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis}.currentSpeechFooter .subqueue .name{font-weight:bold;margin-right:7px}.currentSpeechFooter .subqueue .number{font-size:.8em}.currentSpeechFooter .subqueue .number:before{content:"(";display:inline-block}.currentSpeechFooter .subqueue .number:after{content:")";display:inline-block;margin-right:10px}.currentSpeechFooter .subqueue .applyBtn{line-height:20px;height:23px;margin-top:5px;margin-right:10px}.currentSpeechFooter .subqueue form{max-width:200px}.currentSpeechFooter .appliedMe{display:inline-block;vertical-align:middle}.currentSpeechFooter .appliedMe .btnWithdraw{font-weight:normal;padding:0 5px;font-size:75%}.currentSpeechFooter .applyOpenerPoo{font-weight:normal;margin-left:10px}.currentSpeechFooter .notPossible{font-style:italic;font-size:.8em;margin-top:10px}.currentSpeechFooter .loginWarning{display:inline-block;font-size:.8em;margin-right:15px;white-space:nowrap}.votingCommon .remainingTime{font-size:16px;line-height:1.5em}.votingCommon .remainingTime .time{font-weight:bold}.votingCommon .remainingTime .over{color:red}.votingCommon .votingListCommon{display:block;margin:0;padding:0;clear:both}.votingCommon .votingListCommon>li{display:flex;flex-direction:row;flex-wrap:wrap;width:100%;padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ccc}.votingCommon .votingListCommon>li.voteListShown{border-bottom:none;padding-bottom:0}.votingCommon .votingListCommon>li.abstentions>div{width:100%;font-style:italic;font-weight:bold;text-align:right}.votingCommon .votingListCommon>li .titleLink{flex-grow:1;flex-basis:40%}.votingCommon .votingListCommon>li .titleGroupName{font-weight:bold}.votingCommon .votingListCommon>li .votesDetailed{flex-grow:1;flex-basis:40%}.votingCommon .votingListCommon>li .result{flex-grow:0;flex-basis:20%}.votingCommon .votingListCommon>li .votingOptions,.votingCommon .votingListCommon>li .voted{flex-basis:230px;flex-grow:0;text-align:right}.votingCommon .votingListCommon>li.answer_template_2 .votesDetailed{flex-basis:20%;flex-grow:0}.votingCommon .votingListCommon>li:last-child{border-bottom:none}.votingCommon .votingListCommon>li .btnShowVotes{font-weight:normal}.votingCommon .votingListCommon>li .quorumCounter{font-weight:normal}.votingCommon .votingListAdmin .voteResults{display:block}.votingCommon .votesDetailed table{width:100%;table-layout:fixed}.votingCommon .votesDetailed thead th{text-align:center}.votingCommon .votesDetailed th{text-align:center}.votingCommon .votesDetailed td{text-align:center}.votingCommon .titleLink{line-height:16px;overflow:hidden;font-weight:bold}.votingCommon .titleLink>div{margin-bottom:7px}.votingCommon .amendmentBy{font-size:.8em;color:#888}.votingCommon .noVotingsYet{padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ccc}.votingCommon .noVotingsYet .alert{margin-bottom:0}.votingCommon .votingOptions button{margin-left:5px}.votingCommon .result{text-align:right;white-space:nowrap}.votingCommon .result .accepted{color:#afcb08}.votingCommon .result .rejected{color:#f77}.votingCommon .votingFooter{padding-top:10px;border-top:solid 1px #ccc}.votingCommon .downloadResults{text-align:right;margin-bottom:10px}.votingCommon .downloadResults .btn{font-weight:normal}.votingCommon .votingExplanation .glyphicon{margin-right:3px}.votingCommon .publicHint{padding-left:16px}.currentVotingWidget .votingsAdminLink{float:right}.currentVotingWidget .remainingTime{float:right}.currentVotingWidget .votingsAdminLink+.voteList{border-top:solid 1px #ccc}.currentVotingWidget .votingExplanation{margin-top:15px;font-size:.9em;color:#555}.currentVotingWidget .votingFooter{display:flex;flex-direction:row;width:100%}.currentVotingWidget .votingFooter .votedCounter{flex:1}.currentVotingWidget .votingFooter .showAll{flex:1;text-align:right}.manageVotings .settingsToggleGroup .btn-link{color:#484649}.manageVotings .settingsToggleGroup .btn-link:hover{color:hsl(280,2.0979020979%,38.0392156863%)}.manageVotings .settingsToggleGroup .btn{padding-top:0;padding-bottom:0}.manageVotings .btnRemove{float:right;color:#f77}.manageVotings .activateHeader{font-weight:bold;float:right;color:#fff;text-transform:none;text-shadow:none;font-size:14px}.manageVotings .votingSettingsSummary{padding-bottom:10px;margin-bottom:10px;border-bottom:solid 1px #ccc}.manageVotings .votingVisibility span{margin-left:5px;display:inline-block}.manageVotings .prepActions .removeBtn{color:#f77}.manageVotings .addingItemsForm{padding-top:10px;padding-bottom:10px}.manageVotings .addingItemsForm button{font-weight:normal}.manageVotings .addingItemsForm .addingMotions select{max-width:450px;display:inline-block}.manageVotings .activityLog{display:block;list-style-type:none;margin:0;padding:0}.manageVotings .activityLog.closed{max-height:45px;overflow:hidden;position:relative}.manageVotings .activityLog.closed:before{content:"";display:block;position:absolute;bottom:0;left:0;right:0;height:45px;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);pointer-events:none}.manageVotings .activityOpener,.manageVotings .activityCloser{float:right}.manageVotings .activityOpener .btn,.manageVotings .activityCloser .btn{font-weight:normal}.manageVotings .votingOperations{float:right}.manageVotings .votingSettings label,.manageVotings .votingSettings .label{display:block;margin-bottom:15px}.manageVotings .votingSettings .btnDelete{float:right;color:#f77}.manageVotings .votingSettings fieldset{margin-bottom:15px}.manageVotings .votingSettings fieldset legend{font-weight:700}.manageVotings .votingSettings fieldset .hint{font-size:.8em}.manageVotings .votingSettings fieldset label,.manageVotings .votingSettings fieldset .label{display:inline-block;font-weight:normal;margin-right:15px;margin-bottom:0}.manageVotings .votingSettings fieldset.inputWithLabelHolder label,.manageVotings .votingSettings fieldset.inputWithLabelHolder .label{display:table;max-width:200px}.manageVotings .votingSettings fieldset.inputWithLabelHolder label input,.manageVotings .votingSettings fieldset.inputWithLabelHolder .label input{min-width:80px}.votingResultTable{table-layout:fixed;width:100%}.votingResultTable th{text-align:center;vertical-align:bottom}.votingResultTable td{text-align:center}.votingResultTable .total{font-weight:bold}.votingAdderForm .btnAddOpener{color:#afcb08;font-weight:normal}.votingDataActions{display:flex;flex-direction:row;width:100%;border-bottom:solid 1px #ccc;padding-bottom:10px}.votingDataActions .votingDetails ul{display:inline;list-style-type:none;margin:0;padding:0}.votingDataActions .votingDetails ul>li{display:inline;margin:0;padding:0}.votingDataActions .votingDetails ul>li:before{content:", "}.votingDataActions .votingDetails ul>li:first-child:before{content:""}.votingDataActions .data{flex-grow:1;flex-direction:row;flex-wrap:wrap}.votingDataActions .actions{flex-basis:360px;flex-grow:1;text-align:right}.votingDataActions .actions>.btn,.votingDataActions .actions>.btn-group{margin-left:5px}.v-vote-list{display:flex;flex-direction:row;width:100%;margin-top:20px}.v-vote-list .regularVoteList{flex-basis:25%;flex-grow:1}.v-vote-list .regularVoteList.notVotedList{color:gray}.v-vote-list .regularVoteList .voteWeight{font-weight:bold;white-space:nowrap}.v-vote-list .regularVoteList ul{display:block;list-style-type:none;padding:0;margin:0}.v-vote-list .regularVoteList ul li{display:block;padding:0;margin:0}.v-vote-list .regularVoteList .userGroupName{margin-top:10px;text-decoration:underline}.v-vote-list .regularVoteList .none{font-style:italic}.v-vote-list .userGroupSetterOpener{white-space:normal}.v-vote-list .userGroupSetter{display:flex;flex-direction:row}@media(hover: hover){.v-vote-list .userGroupSetter{opacity:0}.v-vote-list .showingSelector .userGroupSetter{opacity:1}}.v-vote-list .voteListHolder:hover .userGroupSetter{visibility:visible}.v-vote-list .userGroupSetter .btn{font-weight:normal}.contentVotingResult{display:flex;width:100%}.contentVotingResult>*{flex-basis:25%;padding-left:15px;padding-right:15px}.contentVotingResult>*:first-child{padding-left:0}.contentVotingResult>*:last-child{padding-right:0}.motionTextFormattings{position:relative;margin-left:0;text-rendering:optimizeLegibility;font-size:16px;-webkit-hyphens:auto;hyphens:auto}.motionTextFormattings span.underline{border-bottom:solid 1px #000}.motionTextFormattings span.strike{text-decoration:line-through}.motionTextFormattings h1,.well .motionTextFormattings h1{background:none;color:#000;text-transform:none;font-weight:bold;text-shadow:none;padding:0;font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1.5em}.motionTextFormattings h2{margin:0;font-size:1.4em}.motionTextFormattings h3{margin:0;font-size:1.3em}.motionTextFormattings h4{margin:0;font-size:1.2em}.motionTextFormattings ol{counter-reset:antragsgruen-counter;list-style:none}.motionTextFormattings ol[start="1"]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol[start="2"]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol[start="3"]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol[start="4"]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol[start="5"]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol[start="6"]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol[start="7"]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol[start="8"]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol[start="9"]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol[start="10"]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol[start="11"]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol[start="12"]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol[start="13"]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol[start="14"]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol[start="15"]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol[start="16"]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol[start="17"]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol[start="18"]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol[start="19"]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol[start="20"]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol[start="21"]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol[start="22"]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol[start="23"]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol[start="24"]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol[start="25"]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol[start="26"]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol[start="27"]{counter-reset:antragsgruen-counter 26}.motionTextFormattings ol[start="28"]{counter-reset:antragsgruen-counter 27}.motionTextFormattings ol[start="29"]{counter-reset:antragsgruen-counter 28}.motionTextFormattings ol[start="30"]{counter-reset:antragsgruen-counter 29}.motionTextFormattings ol[start="31"]{counter-reset:antragsgruen-counter 30}.motionTextFormattings ol[start="32"]{counter-reset:antragsgruen-counter 31}.motionTextFormattings ol[start="33"]{counter-reset:antragsgruen-counter 32}.motionTextFormattings ol[start="34"]{counter-reset:antragsgruen-counter 33}.motionTextFormattings ol[start="35"]{counter-reset:antragsgruen-counter 34}.motionTextFormattings ol[start="36"]{counter-reset:antragsgruen-counter 35}.motionTextFormattings ol[start="37"]{counter-reset:antragsgruen-counter 36}.motionTextFormattings ol[start="38"]{counter-reset:antragsgruen-counter 37}.motionTextFormattings ol[start="39"]{counter-reset:antragsgruen-counter 38}.motionTextFormattings ol[start="40"]{counter-reset:antragsgruen-counter 39}.motionTextFormattings ol[start="41"]{counter-reset:antragsgruen-counter 40}.motionTextFormattings ol[start="42"]{counter-reset:antragsgruen-counter 41}.motionTextFormattings ol[start="43"]{counter-reset:antragsgruen-counter 42}.motionTextFormattings ol[start="44"]{counter-reset:antragsgruen-counter 43}.motionTextFormattings ol[start="45"]{counter-reset:antragsgruen-counter 44}.motionTextFormattings ol[start="46"]{counter-reset:antragsgruen-counter 45}.motionTextFormattings ol[start="47"]{counter-reset:antragsgruen-counter 46}.motionTextFormattings ol[start="48"]{counter-reset:antragsgruen-counter 47}.motionTextFormattings ol[start="49"]{counter-reset:antragsgruen-counter 48}.motionTextFormattings ol[start="50"]{counter-reset:antragsgruen-counter 49}.motionTextFormattings ol[start="51"]{counter-reset:antragsgruen-counter 50}.motionTextFormattings ol[start="52"]{counter-reset:antragsgruen-counter 51}.motionTextFormattings ol[start="53"]{counter-reset:antragsgruen-counter 52}.motionTextFormattings ol[start="54"]{counter-reset:antragsgruen-counter 53}.motionTextFormattings ol[start="55"]{counter-reset:antragsgruen-counter 54}.motionTextFormattings ol[start="56"]{counter-reset:antragsgruen-counter 55}.motionTextFormattings ol[start="57"]{counter-reset:antragsgruen-counter 56}.motionTextFormattings ol[start="58"]{counter-reset:antragsgruen-counter 57}.motionTextFormattings ol[start="59"]{counter-reset:antragsgruen-counter 58}.motionTextFormattings ol[start="60"]{counter-reset:antragsgruen-counter 59}.motionTextFormattings ol[start="61"]{counter-reset:antragsgruen-counter 60}.motionTextFormattings ol[start="62"]{counter-reset:antragsgruen-counter 61}.motionTextFormattings ol[start="63"]{counter-reset:antragsgruen-counter 62}.motionTextFormattings ol[start="64"]{counter-reset:antragsgruen-counter 63}.motionTextFormattings ol[start="65"]{counter-reset:antragsgruen-counter 64}.motionTextFormattings ol[start="66"]{counter-reset:antragsgruen-counter 65}.motionTextFormattings ol[start="67"]{counter-reset:antragsgruen-counter 66}.motionTextFormattings ol[start="68"]{counter-reset:antragsgruen-counter 67}.motionTextFormattings ol[start="69"]{counter-reset:antragsgruen-counter 68}.motionTextFormattings ol[start="70"]{counter-reset:antragsgruen-counter 69}.motionTextFormattings ol[start="71"]{counter-reset:antragsgruen-counter 70}.motionTextFormattings ol[start="72"]{counter-reset:antragsgruen-counter 71}.motionTextFormattings ol[start="73"]{counter-reset:antragsgruen-counter 72}.motionTextFormattings ol[start="74"]{counter-reset:antragsgruen-counter 73}.motionTextFormattings ol[start="75"]{counter-reset:antragsgruen-counter 74}.motionTextFormattings ol[start="76"]{counter-reset:antragsgruen-counter 75}.motionTextFormattings ol[start="77"]{counter-reset:antragsgruen-counter 76}.motionTextFormattings ol[start="78"]{counter-reset:antragsgruen-counter 77}.motionTextFormattings ol[start="79"]{counter-reset:antragsgruen-counter 78}.motionTextFormattings ol[start="80"]{counter-reset:antragsgruen-counter 79}.motionTextFormattings ol[start="81"]{counter-reset:antragsgruen-counter 80}.motionTextFormattings ol[start="82"]{counter-reset:antragsgruen-counter 81}.motionTextFormattings ol[start="83"]{counter-reset:antragsgruen-counter 82}.motionTextFormattings ol[start="84"]{counter-reset:antragsgruen-counter 83}.motionTextFormattings ol[start="85"]{counter-reset:antragsgruen-counter 84}.motionTextFormattings ol[start="86"]{counter-reset:antragsgruen-counter 85}.motionTextFormattings ol[start="87"]{counter-reset:antragsgruen-counter 86}.motionTextFormattings ol[start="88"]{counter-reset:antragsgruen-counter 87}.motionTextFormattings ol[start="89"]{counter-reset:antragsgruen-counter 88}.motionTextFormattings ol[start="90"]{counter-reset:antragsgruen-counter 89}.motionTextFormattings ol[start="91"]{counter-reset:antragsgruen-counter 90}.motionTextFormattings ol[start="92"]{counter-reset:antragsgruen-counter 91}.motionTextFormattings ol[start="93"]{counter-reset:antragsgruen-counter 92}.motionTextFormattings ol[start="94"]{counter-reset:antragsgruen-counter 93}.motionTextFormattings ol[start="95"]{counter-reset:antragsgruen-counter 94}.motionTextFormattings ol[start="96"]{counter-reset:antragsgruen-counter 95}.motionTextFormattings ol[start="97"]{counter-reset:antragsgruen-counter 96}.motionTextFormattings ol[start="98"]{counter-reset:antragsgruen-counter 97}.motionTextFormattings ol[start="99"]{counter-reset:antragsgruen-counter 98}.motionTextFormattings ol[start="100"]{counter-reset:antragsgruen-counter 99}.motionTextFormattings ol>li{counter-increment:antragsgruen-counter;position:relative}.motionTextFormattings ol>li::before{content:counter(antragsgruen-counter) ".";position:absolute;left:-40px;top:0}.motionTextFormattings ol>li[value]::before{content:attr(value) "."}.motionTextFormattings ol>li[value="1"]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value="2"]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value="3"]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value="4"]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value="5"]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value="6"]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value="7"]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value="8"]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value="9"]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value="10"]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value="11"]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value="12"]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value="13"]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value="14"]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value="15"]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value="16"]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value="17"]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value="18"]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value="19"]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value="20"]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value="21"]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value="22"]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value="23"]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value="24"]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value="25"]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value="26"]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol>li[value="27"]{counter-reset:antragsgruen-counter 26}.motionTextFormattings ol>li[value="28"]{counter-reset:antragsgruen-counter 27}.motionTextFormattings ol>li[value="29"]{counter-reset:antragsgruen-counter 28}.motionTextFormattings ol>li[value="30"]{counter-reset:antragsgruen-counter 29}.motionTextFormattings ol>li[value="31"]{counter-reset:antragsgruen-counter 30}.motionTextFormattings ol>li[value="32"]{counter-reset:antragsgruen-counter 31}.motionTextFormattings ol>li[value="33"]{counter-reset:antragsgruen-counter 32}.motionTextFormattings ol>li[value="34"]{counter-reset:antragsgruen-counter 33}.motionTextFormattings ol>li[value="35"]{counter-reset:antragsgruen-counter 34}.motionTextFormattings ol>li[value="36"]{counter-reset:antragsgruen-counter 35}.motionTextFormattings ol>li[value="37"]{counter-reset:antragsgruen-counter 36}.motionTextFormattings ol>li[value="38"]{counter-reset:antragsgruen-counter 37}.motionTextFormattings ol>li[value="39"]{counter-reset:antragsgruen-counter 38}.motionTextFormattings ol>li[value="40"]{counter-reset:antragsgruen-counter 39}.motionTextFormattings ol>li[value="41"]{counter-reset:antragsgruen-counter 40}.motionTextFormattings ol>li[value="42"]{counter-reset:antragsgruen-counter 41}.motionTextFormattings ol>li[value="43"]{counter-reset:antragsgruen-counter 42}.motionTextFormattings ol>li[value="44"]{counter-reset:antragsgruen-counter 43}.motionTextFormattings ol>li[value="45"]{counter-reset:antragsgruen-counter 44}.motionTextFormattings ol>li[value="46"]{counter-reset:antragsgruen-counter 45}.motionTextFormattings ol>li[value="47"]{counter-reset:antragsgruen-counter 46}.motionTextFormattings ol>li[value="48"]{counter-reset:antragsgruen-counter 47}.motionTextFormattings ol>li[value="49"]{counter-reset:antragsgruen-counter 48}.motionTextFormattings ol>li[value="50"]{counter-reset:antragsgruen-counter 49}.motionTextFormattings ol>li[value="51"]{counter-reset:antragsgruen-counter 50}.motionTextFormattings ol>li[value="52"]{counter-reset:antragsgruen-counter 51}.motionTextFormattings ol>li[value="53"]{counter-reset:antragsgruen-counter 52}.motionTextFormattings ol>li[value="54"]{counter-reset:antragsgruen-counter 53}.motionTextFormattings ol>li[value="55"]{counter-reset:antragsgruen-counter 54}.motionTextFormattings ol>li[value="56"]{counter-reset:antragsgruen-counter 55}.motionTextFormattings ol>li[value="57"]{counter-reset:antragsgruen-counter 56}.motionTextFormattings ol>li[value="58"]{counter-reset:antragsgruen-counter 57}.motionTextFormattings ol>li[value="59"]{counter-reset:antragsgruen-counter 58}.motionTextFormattings ol>li[value="60"]{counter-reset:antragsgruen-counter 59}.motionTextFormattings ol>li[value="61"]{counter-reset:antragsgruen-counter 60}.motionTextFormattings ol>li[value="62"]{counter-reset:antragsgruen-counter 61}.motionTextFormattings ol>li[value="63"]{counter-reset:antragsgruen-counter 62}.motionTextFormattings ol>li[value="64"]{counter-reset:antragsgruen-counter 63}.motionTextFormattings ol>li[value="65"]{counter-reset:antragsgruen-counter 64}.motionTextFormattings ol>li[value="66"]{counter-reset:antragsgruen-counter 65}.motionTextFormattings ol>li[value="67"]{counter-reset:antragsgruen-counter 66}.motionTextFormattings ol>li[value="68"]{counter-reset:antragsgruen-counter 67}.motionTextFormattings ol>li[value="69"]{counter-reset:antragsgruen-counter 68}.motionTextFormattings ol>li[value="70"]{counter-reset:antragsgruen-counter 69}.motionTextFormattings ol>li[value="71"]{counter-reset:antragsgruen-counter 70}.motionTextFormattings ol>li[value="72"]{counter-reset:antragsgruen-counter 71}.motionTextFormattings ol>li[value="73"]{counter-reset:antragsgruen-counter 72}.motionTextFormattings ol>li[value="74"]{counter-reset:antragsgruen-counter 73}.motionTextFormattings ol>li[value="75"]{counter-reset:antragsgruen-counter 74}.motionTextFormattings ol>li[value="76"]{counter-reset:antragsgruen-counter 75}.motionTextFormattings ol>li[value="77"]{counter-reset:antragsgruen-counter 76}.motionTextFormattings ol>li[value="78"]{counter-reset:antragsgruen-counter 77}.motionTextFormattings ol>li[value="79"]{counter-reset:antragsgruen-counter 78}.motionTextFormattings ol>li[value="80"]{counter-reset:antragsgruen-counter 79}.motionTextFormattings ol>li[value="81"]{counter-reset:antragsgruen-counter 80}.motionTextFormattings ol>li[value="82"]{counter-reset:antragsgruen-counter 81}.motionTextFormattings ol>li[value="83"]{counter-reset:antragsgruen-counter 82}.motionTextFormattings ol>li[value="84"]{counter-reset:antragsgruen-counter 83}.motionTextFormattings ol>li[value="85"]{counter-reset:antragsgruen-counter 84}.motionTextFormattings ol>li[value="86"]{counter-reset:antragsgruen-counter 85}.motionTextFormattings ol>li[value="87"]{counter-reset:antragsgruen-counter 86}.motionTextFormattings ol>li[value="88"]{counter-reset:antragsgruen-counter 87}.motionTextFormattings ol>li[value="89"]{counter-reset:antragsgruen-counter 88}.motionTextFormattings ol>li[value="90"]{counter-reset:antragsgruen-counter 89}.motionTextFormattings ol>li[value="91"]{counter-reset:antragsgruen-counter 90}.motionTextFormattings ol>li[value="92"]{counter-reset:antragsgruen-counter 91}.motionTextFormattings ol>li[value="93"]{counter-reset:antragsgruen-counter 92}.motionTextFormattings ol>li[value="94"]{counter-reset:antragsgruen-counter 93}.motionTextFormattings ol>li[value="95"]{counter-reset:antragsgruen-counter 94}.motionTextFormattings ol>li[value="96"]{counter-reset:antragsgruen-counter 95}.motionTextFormattings ol>li[value="97"]{counter-reset:antragsgruen-counter 96}.motionTextFormattings ol>li[value="98"]{counter-reset:antragsgruen-counter 97}.motionTextFormattings ol>li[value="99"]{counter-reset:antragsgruen-counter 98}.motionTextFormattings ol>li[value="100"]{counter-reset:antragsgruen-counter 99}.motionTextFormattings ol>li[value=A]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=a]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=B]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=b]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=C]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=c]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=D]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=d]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=E]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=e]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=F]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=f]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=G]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=g]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=H]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=h]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=I]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=i]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=J]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=j]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=K]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=k]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=L]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=l]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=M]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=m]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=N]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=n]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=O]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=o]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=P]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=p]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=Q]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=q]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=R]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=r]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=S]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=s]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=T]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=t]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=U]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=u]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=V]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=v]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=W]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=w]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=X]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=x]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=Y]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=y]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=Z]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol>li[value=z]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol.decimalCircle>li::before{content:"(" counter(antragsgruen-counter) ")"}.motionTextFormattings ol.decimalCircle>li[value]::before{content:"(" attr(value) ")"}.motionTextFormattings ol.lowerAlpha>li::before{content:counter(antragsgruen-counter, lower-alpha) "."}.motionTextFormattings ol.lowerAlpha>li[value]::before{content:attr(value) "."}.motionTextFormattings ol.upperAlpha>li::before{content:counter(antragsgruen-counter, upper-alpha) "."}.motionTextFormattings ol.upperAlpha>li[value]::before{content:attr(value) "."}.motionTextFormattings .amendmentRef{font-size:.8em;opacity:.7}.motionTextFormattings.fixedWidthFont{font-family:"PT Sans",Courier,sans-serif;color:#000;-webkit-hyphens:none;hyphens:none}@media(min-width: 800px){.motionTextFormattings .lineNumber{position:relative;left:-42px;width:0;display:inline-block;float:left}}.motionTextFormattings .lineNumber:after{content:attr(data-line-number);color:#c3c3c3;font-size:16px;font-style:normal;font-weight:normal;text-decoration:none}@media screen and (max-width: 799px){.motionTextFormattings br{display:none}.motionTextFormattings .lineNumber{position:relative;bottom:-3px;left:-2px}.motionTextFormattings .lineNumber:first-of-type{position:relative;left:-27px;width:0;bottom:auto;display:inline-block;float:left;z-index:-1}.motionTextFormattings .lineNumber:after{font-size:12px}.motionTextFormattings .lineNumber:first-of-type:after{font-size:14px}}@media(min-width: 800px){.motionTextFormattings>ul,.motionTextFormattings>ol{padding-left:40px}.motionTextFormattings>ul .lineNumber,.motionTextFormattings>ol .lineNumber{left:-82px}.motionTextFormattings>ul ul,.motionTextFormattings>ul ol,.motionTextFormattings>ol ul,.motionTextFormattings>ol ol{padding-left:40px}.motionTextFormattings>ul ul .lineNumber,.motionTextFormattings>ul ol .lineNumber,.motionTextFormattings>ol ul .lineNumber,.motionTextFormattings>ol ol .lineNumber{left:-122px}.motionTextFormattings>ul ul ul .lineNumber,.motionTextFormattings>ul ul ol .lineNumber,.motionTextFormattings>ul ol ul .lineNumber,.motionTextFormattings>ul ol ol .lineNumber,.motionTextFormattings>ol ul ul .lineNumber,.motionTextFormattings>ol ul ol .lineNumber,.motionTextFormattings>ol ol ul .lineNumber,.motionTextFormattings>ol ol ol .lineNumber{left:-162px}.motionTextFormattings>ul ul ul ul .lineNumber,.motionTextFormattings>ul ul ul ol .lineNumber,.motionTextFormattings>ul ul ol ul .lineNumber,.motionTextFormattings>ul ul ol ol .lineNumber,.motionTextFormattings>ul ol ul ul .lineNumber,.motionTextFormattings>ul ol ul ol .lineNumber,.motionTextFormattings>ul ol ol ul .lineNumber,.motionTextFormattings>ul ol ol ol .lineNumber,.motionTextFormattings>ol ul ul ul .lineNumber,.motionTextFormattings>ol ul ul ol .lineNumber,.motionTextFormattings>ol ul ol ul .lineNumber,.motionTextFormattings>ol ul ol ol .lineNumber,.motionTextFormattings>ol ol ul ul .lineNumber,.motionTextFormattings>ol ol ul ol .lineNumber,.motionTextFormattings>ol ol ol ul .lineNumber,.motionTextFormattings>ol ol ol ol .lineNumber{left:-202px}.fourdigitsLineNumbers .motionTextFormattings .lineNumber{left:-52px}.fourdigitsLineNumbers .motionTextFormattings>ul .lineNumber,.fourdigitsLineNumbers .motionTextFormattings>ol .lineNumber{left:-92px}.fourdigitsLineNumbers .motionTextFormattings>blockquote .lineNumber{left:-107px}.motionTextFormattings>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:38px}.motionTextFormattings>blockquote .lineNumber{left:-97px}}@media screen and (max-width: 799px){.motionTextFormattings>ul,.motionTextFormattings>ol{padding-left:40px}.motionTextFormattings>ul .lineNumber:first-of-type,.motionTextFormattings>ol .lineNumber:first-of-type{left:-67px}.motionTextFormattings>ul ul,.motionTextFormattings>ul ol,.motionTextFormattings>ol ul,.motionTextFormattings>ol ol{padding-left:15px}.motionTextFormattings>ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol .lineNumber:first-of-type{left:-107px}.motionTextFormattings>ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ol .lineNumber:first-of-type{left:-147px}.motionTextFormattings>ul ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ol ol .lineNumber:first-of-type{left:-187px}.fourdigitsLineNumbers .motionTextFormattings .lineNumber:first-of-type{left:-42px}.fourdigitsLineNumbers .motionTextFormattings>ul .lineNumber:first-of-type,.fourdigitsLineNumbers .motionTextFormattings>ol .lineNumber:first-of-type{left:-72px}.fourdigitsLineNumbers .motionTextFormattings>blockquote .lineNumber:first-of-type{left:-67px}.motionTextFormattings>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:18px}.motionTextFormattings>blockquote .lineNumber:first-of-type{left:-62px}}.motionTextFormattings .lineNumber.highlighted:before{content:"";display:block;position:absolute;left:-8px;height:1.5em;margin-top:-1px;width:100vw;max-width:781px;z-index:-1;background-color:rgba(255,255,0,0);transition:background-color .5s ease}.motionTextFormattings .lineNumber.highlighted-active:before{background-color:#ff0}.motionTextFormattings.smallFont{font-size:12px}.well .motionTextHolder{padding-bottom:22px}.well .motionTextHolder>h3.green{margin-bottom:22px}@media screen and (min-width: 800px){.motionTextHolder .stdPadding{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .stdPadding{padding:15px 10px 15px 30px}}.motionTextHolder .amendmentTextModeSelector{float:right}.motionTextHolder .paragraph{font-size:14px;clear:both;position:relative}.motionTextHolder .paragraph.smallFont{font-size:12px}@media(min-width: 800px){.motionTextHolder .paragraph .text{padding:15px 50px 15px 50px}}@media(max-width: 799px){.motionTextHolder .paragraph .text{padding:15px 30px 15px 30px}}.motionTextHolder .paragraph .text.collidingAmendment{margin-top:-20px}.motionTextHolder .paragraph .text.collidingAmendment>h3{font-size:1.2em;margin-top:0}@media screen and (min-width: 800px){.motionTextHolder .paragraph.lineNumbers .text{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .paragraph.lineNumbers .text{padding:15px 10px 15px 30px}}.motionTextHolder .paragraph h4.lineSummary{font-size:inherit;font-weight:bold;margin:0}.motionTextHolder .paragraph h4.lineSummary .linkedMotion{font-weight:normal}.motionTextHolder .textAmendment{position:relative}@media(min-width: 800px){.motionTextHolder .textAmendment{width:733px}}.motionTextHolder .textAmendment del,.motionTextHolder .textAmendment ul.deleted,.motionTextHolder .textAmendment ol.deleted,.motionTextHolder .textAmendment li.deleted,.motionTextHolder .textAmendment blockquote.deleted,.motionTextHolder .textAmendment pre.deleted{color:red;text-decoration:line-through}.motionTextHolder .textAmendment ins,.motionTextHolder .textAmendment ul.inserted,.motionTextHolder .textAmendment ol.inserted,.motionTextHolder .textAmendment li.inserted,.motionTextHolder .textAmendment blockquote.inserted,.motionTextHolder .textAmendment pre.inserted{text-decoration:underline}.motionTextHolder .textAmendment .preamble{position:absolute;top:-25px;height:35px}@media(min-width: 800px){.motionTextHolder .textAmendment .preamble{width:100%}}@media(max-width: 799px){.motionTextHolder .textAmendment .preamble{width:calc(100% - 30px - 10px)}}.motionTextHolder .textAmendment .preamble>a{position:absolute;bottom:0;left:0;max-height:35px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;color:#e2007a}.motionTextHolder .textAmendment .preamble>a:link,.motionTextHolder .textAmendment .preamble>a:visited{color:#e2007a}.motionTextHolder .textAmendment .preamble>a h3{font-size:14px;display:inline-block;margin:0;font-weight:bold}.motionTextHolder .textAmendment .preamble>a .moreAffected{font-style:italic;font-size:.8em;margin-top:-3px;color:#bcb}@media screen and (max-width: 799px){.motionTextHolder .textAmendment .preamble .amendment{display:none}}.motionTextHolder .textAmendment .movedParagraphHint{font-style:italic;font-size:.8em;margin-top:3px;color:#bcb}.motionTextHolder .tabularData>tbody>tr:first-child>td,.motionTextHolder .tabularData>tbody>tr:first-child>th{border-top:none}.motionTextHolder .onlyOneSupporter{list-style-type:none;margin:0}@media screen and (min-width: 800px){.motionTextHolder .onlyOneSupporter{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .onlyOneSupporter{padding:15px 10px 15px 30px}}.motionTextHolder .onlyOneSupporter>li{padding:0;margin:0}.motionTextHolder .amendmentParaLink{position:absolute;display:none;top:50%;right:5px;margin-top:-30px}.motionTextHolder .amendmentParaLink img{width:35px}.motionTextHolder .paragraph:hover .amendmentParaLink{display:block}.motionTextHolder .paragraph.hover .amendmentParaLink{display:block}.bookmarks{float:right;width:1px;list-style-type:none;padding:0;margin-top:5px}.bookmarks>li{width:1px;height:38px;position:relative;margin-bottom:7px;z-index:1}.bookmarks>li>a{display:block;position:absolute;white-space:nowrap;padding:10px;top:0;left:2px;color:#fff;min-width:40px;border-top-right-radius:10px;border-bottom-right-radius:10px;font-weight:bold}@media screen and (max-width: 799px){.bookmarks>li>a:before{content:"";display:block;position:absolute;top:0;left:-3px;width:3px;height:100%}.bookmarks>li>a:after{content:" ";position:absolute;left:-2px;top:50%;height:0;width:0;border-width:2px;margin-top:-2px;border-style:solid;border-color:hsla(0,0%,100%,0);border-left-color:#fff}}.bookmarks>li.comment>a{background:#e2007a;background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%)}.bookmarks>li.comment>a:before{background:#e2007a}.bookmarks>li.comment>a.active{background:rgb(197.95,0,106.8579646018);background:linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%)}.bookmarks>li.comment>a.active:before{background:rgb(208.15,0,112.364159292)}.bookmarks>li.comment>a.zero{opacity:.3}.bookmarks>li.comment>a .count:after{content:attr(data-count);padding-left:4px}.bookmarks>li.amendment>a{background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%)}.bookmarks>li.amendment>a:before{background:#afcb08}.bookmarks>li.amendment>a.active{background:rgb(160.1954976303,185.8267772512,7.3232227488);background:linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%)}.bookmarks>li.amendment>a.active:before{background:rgb(160.1954976303,185.8267772512,7.3232227488)}.bookmarks>li .hider{background:#b4b4b4;background:linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%)}.commentScreeningQueue{margin-left:50px;color:#a9a9a9}.motionTwoCols{margin-top:2px}@media screen and (min-width: 800px){.motionTwoCols{display:flex;width:100%}.motionTwoCols .motionMainCol{flex-basis:66.6%}.motionTwoCols .motionRightCol{flex-basis:33.4%}}.motionComment{border:solid 1px #d3d3d3;background:#fafafa;border-radius:3px;margin:15px 20px 30px;padding:10px}.motionComment.replyComment{margin-top:-15px}.motionComment .commentHeader{background:none;color:rgb(86.9404761905,100.5,0);font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1em;font-weight:bold;line-height:18px;margin:0;text-transform:none}@media(min-width: 800px){.motionComment .commentName{float:right}}.motionComment .commentWriteHeader{border-bottom:solid 1px #fafafa;font-size:1.2em}.motionComment .date{color:#757676;float:right;margin-left:20px}.motionComment .commentBottom{height:23px;position:relative;margin:10px -10px -10px -10px}.motionComment .commentBottom .entry{position:absolute;bottom:-1px;height:24px;font-size:12px;border-top:solid 1px #d3d3d3;text-align:center;font-weight:normal}.motionComment .commentBottom .link{left:-1px;padding:2px;width:24px;border-right:solid 1px #d3d3d3;border-top-right-radius:3px}.motionComment .commentBottom .replyButton{right:-1px;padding:2px 5px;border-left:solid 1px #d3d3d3;border-top-left-radius:3px}.motionComment .commentBottom .delLink{color:#f77;left:3px;width:24px;border-right:solid 1px #d3d3d3;border-top-right-radius:3px}.motionComment .commentBottom .delLink .link{border-right:0;padding:4px}.motionComment .commentBottom .delLink+.link{border-top-right-radius:0}.motionComment .delLink{float:right;margin-left:20px}.motionComment .delLink a:link,.motionComment .delLink a:visited{color:#ccc}.motionComment .delLink a:link:hover,.motionComment .delLink a:link:focus,.motionComment .delLink a:visited:hover,.motionComment .delLink a:visited:focus{color:#bbb}.motionComment .screening>*{display:inline-block;width:49%;text-align:center}.motionComment>label,.motionComment>.label{display:block;text-align:center}.motionComment.form-horizontal .form-group{margin-right:10px;margin-left:10px}.motionComment.form-horizontal .form-group>*{padding-right:0}.motionComment .commentNotifications{padding:10px;overflow:visible}.motionComment .commentNotifications label,.motionComment .commentNotifications .label{font-weight:normal;font-size:13px}.motionComment .commentNotifications select{float:right}.motionComment .submitrow{padding-top:10px;text-align:center}@media screen and (min-width: 1000px){.motionCommentReplies{padding-left:100px}}.motionCommentReplies .motionComment{margin-top:-20px}.withdrawForm{text-align:center}.withdrawForm .ask{font-size:16px;margin-bottom:15px;margin-top:15px}.motionSupportFinishForm,.amendmentSupportFinishForm{text-align:center;margin-bottom:20px}.sectionType0+.motionTextHolder{clear:both}.sectionType3{padding:10px}.sectionType3 img{max-height:200px;max-width:100%}.motionRightCol{padding-top:0;font-size:14px}.motionRightCol .motionTextFormattings{font-size:14px}.motionRightCol>section{padding:0 30px 20px 0}iframe.pdfViewer{width:100%;height:600px;border:none}.sectionType5{margin-left:-1px;margin-right:-1px}.sectionType7{margin-left:-1px;margin-right:-1px}.sectionType7 .videoHolder{padding:15px 50px 15px 50px}.sectionType7 .videoSizer{overflow:hidden;padding-bottom:56.25%;position:relative;height:0}.sectionType7 iframe{left:0;top:0;height:100%;width:100%;position:absolute;border:none}.sectionType8 .editCaller{float:right;font-weight:normal}.sectionType8 .textHolder{clear:both}.sectionType8 .toolbarBelowTitle{margin-top:-22px}.sectionType8 .editorialHeader{padding-top:5px;padding-bottom:5px;height:47px;overflow:auto}.sectionType8 .metadataView{vertical-align:middle;font-style:italic}.sectionType8 .metadataEdit{display:flex;width:100%}.sectionType8 .metadataEdit label>*,.sectionType8 .metadataEdit .label>*{display:inline-block;width:auto}.sectionType8 .metadataEdit label,.sectionType8 .metadataEdit .label{margin:0;flex-grow:1;font-weight:normal}.sectionType8 .metadataEdit label:last-child,.sectionType8 .metadataEdit .label:last-child{text-align:right}.gotoLineNumerPanel{position:fixed;bottom:0;left:0;width:100%;right:0;z-index:10;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);display:none;padding:10px}.gotoLineNumerPanel.active{display:block}.gotoLineNumerPanel .lineNumberNotFound{color:#ee0101}.gotoLineNumerPanel .input-group{max-width:300px}.gotoLineNumerPanel .form-group{margin-bottom:0}#amendmentMergeForm #motionTitlePrefix,#amendmentMergeForm #motionVersion,#amendmentMergeForm .dropdown-toggle{max-width:230px}#amendmentMergeForm .checkButtonRow{text-align:center;margin:20px 0}#amendmentMergeForm .otherAmendmentStatus .row{margin-bottom:15px}#amendmentMergeForm .otherAmendmentStatus .by{display:block;font-size:.8em}#amendmentMergeForm .otherAmendmentStatus .amendmentAjaxTooltip{float:right;color:gray;margin-right:-15px;margin-top:7px}#amendmentMergeForm .affectedParagraphs .paragraph.originalVersion .modifiedVersion{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.modifiedVersion .originalVersion{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.changed .motionTextHolder{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.unchanged .modifyText{display:none}#amendmentMergeForm .modifiedText{display:none}#amendmentMergeForm .modifyText{margin-top:20px}#amendmentMergeForm .selectorToolbar{margin-top:15px;display:flex;flex-direction:row}#amendmentMergeForm .selectorToolbar label,#amendmentMergeForm .selectorToolbar .label{margin-right:20px;font-weight:normal}#amendmentMergeForm .selectorToolbar .modifySelector{text-align:right;flex:1}#amendmentMergeForm .selectorToolbar .versionSelector{flex:1}#amendmentMergeForm .save-row{text-align:center}#amendmentMergeForm .saveholder .checkAmendmentCollisions{display:none}.amendmentCollisionsHolder .amendmentBy{color:gray}.amendmentCollisionsHolder .amendmentOverrideBlock{background-color:#f5f5f5;margin:15px -10px;padding:10px;border:solid 1px #ddd;border-radius:4px}.amendmentCollisionsHolder .amendmentOverrideBlock>h3{font-size:18px;margin-top:0}.amendmentCollisionsHolder .amendmentOverrideBlock>textarea{display:none}@media(min-width: 800px){.motionData .translateWidget{float:right;margin-bottom:-25px}}.motionData .privateNotes th{padding-top:25px}.motionData .privateNotes td{padding-top:20px}.motionData .privateNotes blockquote{margin-left:0;cursor:pointer;font-style:italic;color:#666}.motionData .privateNotes textarea{line-height:1.1;height:50px;width:100%}@media(min-width: 800px){.motionData .privateNotes textarea{width:calc(100% - 110px)}}.motionData .privateNotes .btn{margin-top:2px;margin-left:5px}.motionData .privateNotes .btnEdit{margin-left:-30px;margin-top:-1px;float:left}.privateNoteOpener{margin-top:-20px;margin-bottom:10px;padding-left:10px;width:30%}.privateNoteOpener .btn{font-weight:normal}.privateNoteOpener+.proposedChangesOpener .btn{margin-top:-30px}.privateParagraphNoteHolder{font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif}.privateParagraphNoteHolder .privateParagraphNoteOpener{position:absolute;bottom:0;left:40px;opacity:.5}.privateParagraphNoteHolder .privateParagraphNoteOpener .btn{font-weight:normal}.privateParagraphNoteHolder label,.privateParagraphNoteHolder .label{width:100%}@media(min-width: 800px){.privateParagraphNoteHolder label,.privateParagraphNoteHolder .label{width:calc(100% - 110px)}}.privateParagraphNoteHolder textarea.form-control{line-height:1.1;height:50px;width:100%}.privateParagraphNoteHolder .btn{margin-top:2px;margin-left:0}.privateParagraphNoteHolder .btnEdit{margin-left:-30px;margin-top:-1px;float:left}.privateParagraphNoteHolder blockquote{color:#666;font-style:italic;cursor:pointer}ul+.privateParagraphNoteHolder .privateParagraphNoteOpener,ol+.privateParagraphNoteHolder .privateParagraphNoteOpener{left:85px}ul+.privateParagraphNoteHolder blockquote,ol+.privateParagraphNoteHolder blockquote{margin-left:45px}ul+.privateParagraphNoteHolder form,ol+.privateParagraphNoteHolder form{margin-left:40px}blockquote+.privateParagraphNoteHolder .privateParagraphNoteOpener{left:100px}blockquote+.privateParagraphNoteHolder blockquote{margin-left:60px}blockquote+.privateParagraphNoteHolder form{margin-left:55px}.motionChangeView .notDisplayable{color:#ee0101}.motionChangeView .noChanges{color:gray}.motionChangeView .motionDataTable{margin-bottom:25px}.motionSupportForm .supportQuestion{margin-top:10px}.motionSupportForm .supportBlock{display:flex;flex-direction:row}.motionSupportForm .supportBlock .colName,.motionSupportForm .supportBlock .colGender,.motionSupportForm .supportBlock .colOrga{flex:1;padding:0 10px}.motionSupportForm .supportBlock .colSubmit{flex:0}.motionSupportForm .supportBlock>*{padding:0 10px}.motionSupportForm .supportBlock>*:first-child{padding-left:0}.motionSupportForm .supportBlock>*:last-child{padding-right:0}.motionSupportForm .nonPublicBlock label,.motionSupportForm .nonPublicBlock .label{margin-top:10px;font-weight:normal}.motionSupportForm .loggedOutWarning{font-size:.8em;margin-top:6px;padding:0 15px}.likes .expandableList .btnShowAll,.supporters .expandableList .btnShowAll{padding:0;margin-left:10px;font-weight:normal}.likes .expandableList .halfVisible,.supporters .expandableList .halfVisible{opacity:.5}.likes .nonPublic,.supporters .nonPublic{display:inline-block;margin-left:15px;font-size:.8em;font-style:italic}.likeDislikeHolder{text-align:center;margin-bottom:20px}.likeDislikeHolder .likeNameHolder{display:inline-block;max-width:250px;vertical-align:top;margin-right:20px}@media screen and (max-width: 650px){.likeDislikeHolder .likeNameHolder{display:block}}.likeDislikeHolder .btn{margin-left:10px;margin-right:10px}.proposedChangesOpener{padding-left:calc(30% + 8px);margin-top:-20px;margin-bottom:20px}#proposedChanges{background-color:#f8faf8;border:solid 1px #eee;border-radius:4px;margin:0 20px 30px}#proposedChanges h2{margin:0;font-size:18px;padding:5px 10px;background-color:#ded}#proposedChanges .closeBtn{margin-right:-10px;margin-top:-2px}#proposedChanges .holder{display:flex}#proposedChanges .holder>*{flex:1;padding:10px}#proposedChanges .statusForm{width:40%}#proposedChanges .proposalCommentForm{width:40%;display:flex;flex-direction:column;border-left:solid 1px #eee}#proposedChanges .middleCol{width:20%;display:flex;flex-direction:column}#proposedChanges .votingBlockSettings{padding-bottom:10px}#proposedChanges .votingBlockSettings select{display:inline-block;width:calc(100% - 20px)}#proposedChanges .visibilitySettings label,#proposedChanges .visibilitySettings .label{display:block}#proposedChanges .notificationStatus{font-size:12px}#proposedChanges .notificationStatus .accepted{color:green;margin-right:5px}#proposedChanges .notificationStatus .rejected{color:red;margin-right:5px}#proposedChanges .notificationStatus .notSavedHint{font-style:italic;color:#777}#proposedChanges .notificationStatus .notifyProposer{white-space:normal;text-align:left;font-weight:normal}#proposedChanges .notificationStatus .setConfirmationStatus{overflow:auto}#proposedChanges .notificationStatus .setConfirmation{float:right;font-weight:normal}#proposedChanges .notificationStatus .sendAgain{float:left;font-weight:normal}#proposedChanges h3,#proposedChanges .headingLabel{font-size:14px;margin:3px 0 8px 0;font-weight:bold}#proposedChanges label,#proposedChanges .label{font-size:12px;font-weight:normal}#proposedChanges .newBlock .control-label,#proposedChanges .votingItemBlockRow .control-label,#proposedChanges .votingItemBlockNameRow .control-label{font-size:14px;font-weight:bold}#proposedChanges .proposalTags{display:flex;flex-direction:row;border-top:solid 1px #eee}#proposedChanges .proposalTags>label,#proposedChanges .proposalTags>.label{flex-grow:0;padding:10px;font-size:14px;white-space:nowrap;margin:0}#proposedChanges .proposalTags>div{padding:5px 10px 0;flex-grow:1}#proposedChanges .commentList{flex:1;margin:0;padding:0;list-style-type:none;display:block;max-height:130px;overflow-y:auto;background-color:#fbfdfb;border:solid 1px #dfd}#proposedChanges .commentList>li{margin:0;padding:0;display:block}#proposedChanges .commentList .header{background-color:#eee;overflow:auto;margin-top:10px}#proposedChanges .commentList .date{float:right}#proposedChanges .commentList .delComment{float:right;color:#f77;width:auto}#proposedChanges .commentList .overv{text-align:right;font-style:italic}#proposedChanges .proposalCommentForm{font-size:12px}#proposedChanges .proposalCommentForm textarea{border-radius:0;border:solid 1px #eee;border-bottom:none;box-shadow:none;font-size:12px}#proposedChanges .proposalCommentForm button{margin-top:-1px;width:100%}#proposedChanges .statusDetails,#proposedChanges .collisions,#proposedChanges .publicExplanation,#proposedChanges .notifyProposerSection{border-top:solid 1px #eee;padding:10px}#proposedChanges .notifyProposerSection .proposalFrom{margin-bottom:15px;display:flex;gap:10px;width:100%}#proposedChanges .notifyProposerSection .proposalFrom>*{flex:1}#proposedChanges .notifyProposerSection .submitRow{text-align:center;margin-top:10px}#proposedChanges .saving,#proposedChanges .saved{border-top:solid 1px #eee;height:40px;text-align:center;line-height:38px;vertical-align:middle;display:none}#proposedChanges .showIfChanged{display:none}#proposedChanges.isChanged .showIfChanged{display:block}#proposedChanges.isChanged .hideIfChanged{display:none}#proposedChanges.showSaved .saved{display:block}#proposedChanges.noStatus .showIfStatusSet{display:none}#proposedChangeTextForm h2{font-size:24px}#proposedChangeTextForm .motionTextHolder{margin-top:20px}#proposedChangeTextForm .motionTextHolder .title{font-weight:bold}#proposedChangeTextForm .motionTextHolder .paragraph .text{padding:5px 10px 10px 0}#proposedChangeTextForm .motionTextHolder .paragraph .text>*{padding-bottom:5px;padding-top:5px;margin-bottom:5px}#proposedChangeTextForm .originalVersion ins.ice-del,#proposedChangeTextForm .originalVersion del.ice-del{display:inline}#proposedChangeTextForm .save-row{text-align:center;margin:0 0 40px 0}#proposedChangeTextForm #collisionIndicator{position:fixed;bottom:0;right:0;left:0;width:100%;z-index:10;background:#fff;border-top:1px solid #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);padding:5px}#proposedChangeTextForm #collisionIndicator h2{display:inline-block;margin:0;padding:0;font-size:inherit;font-weight:bold}#proposedChangeTextForm #collisionIndicator .collisionList{display:inline-block;margin:0;padding:0;list-style-type:none}#proposedChangeTextForm #collisionIndicator .collisionList>li{display:inline-block;margin:0 20px}.proposedProcedureToolbar .right>*{float:right;margin-left:15px}.proposedProcedureToolbar .left{line-height:40px;vertical-align:middle}.proposedProcedureToolbar .currentDate{font-size:.8em;color:gray}.proposedProcedureOverview.openable{margin-bottom:20px}.proposedProcedureOverview h2 a,.proposedProcedureOverview h2 a:link,.proposedProcedureOverview h2 a:hover,.proposedProcedureOverview h2 a:active{color:#fff}.proposedProcedureOverview table{table-layout:fixed;margin-top:25px}.proposedProcedureOverview table:first-of-type{margin-top:0}.proposedProcedureOverview caption{font-weight:bold;background-color:#eee;color:#000;text-align:center}.proposedProcedureOverview .procedure h3{margin:7px 0 0 0;font-size:0;line-height:0;color:rgba(0,0,0,0);border-top:solid 1px #d3d3d3}.proposedProcedureOverview .procedure p{margin:0;font-size:inherit}.proposedProcedureOverview .procedure h4{margin:10px 0 5px 0;font-size:inherit;font-weight:bold}.proposedProcedureOverview .visible{width:5%;text-align:center}.proposedProcedureOverview .prefix .amendmentAjaxTooltip{float:right;opacity:.5}@media screen and (min-width: 700px){.proposedProcedureOverview .prefix{width:125px}.proposedProcedureOverview .initiator{width:270px}}@media screen and (min-width: 1400px){.proposedProcedureOverview .comment{max-width:350px}}@media screen and (max-width: 500px){.proposedProcedureOverview{display:block}.proposedProcedureOverview tr,.proposedProcedureOverview td,.proposedProcedureOverview th,.proposedProcedureOverview tbody,.proposedProcedureOverview thead,.proposedProcedureOverview caption{display:block}.proposedProcedureOverview .prefix{display:inline-block;border-top:none}.proposedProcedureOverview .initiator{display:inline-block;border-top:none}.proposedProcedureOverview .initiator:before{content:"("}.proposedProcedureOverview .initiator:after{content:")"}.proposedProcedureOverview .procedure{border-top:none;border-bottom:solid 1px #ddd}}.proposedProcedureOverview .explanation{font-size:.8em;margin-top:5px;color:#888}.proposedProcedureOverview .notVisible{font-size:.8em;color:#ee0101;font-style:italic}.proposedProcedureOverview tr.withdrawn .prefix,.proposedProcedureOverview tr.withdrawn .initiator{text-decoration:line-through}.proposedProcedureOverview tr.moved .prefix,.proposedProcedureOverview tr.moved .initiator,.proposedProcedureOverview tr.moved .procedure{opacity:.4}.proposedProcedureOverview tr.accepted{background-color:#dfd}.proposedProcedureOverview tr.vote{background-color:#ffe0cc}.proposedProcedureOverview h2 .withdrawn{font-size:.8em;color:#eee}.proposedProcedureOverview .contactShow{display:block;font-size:.7em}.proposedProcedureOverview .contactDetails{font-size:.8em}.proposedProcedureOverview .contactDetails *[title]{cursor:help}.proposedProcedureOverview .comments .writing{display:none}.proposedProcedureOverview .comments.writing .writing{display:block}.proposedProcedureOverview .comments.writing .notWriting{display:none}.proposedProcedureOverview .comments .cancelWriting{color:gray}.proposedProcedureOverview .comments .commentList.hasContent{max-height:200px;overflow:auto}.proposedProcedureOverview .comments .comment{overflow:hidden}.proposedProcedureOverview .comments .comment.template{display:none}.proposedProcedureOverview .comments .comment .name{font-weight:bold}.proposedProcedureOverview .tagNames{color:gray;font-size:.8em}.proposedProcedureOverview .tagNames .btn{opacity:.5}.proposedProcedureOverview .noTags{opacity:0}.proposedProcedureOverview .noTags:hover{opacity:.5}.proposedProcedureOverview .noTags .btn{font-weight:normal}.proposedProcedureOverview .tagsSelector{display:flex;width:100%}.proposedProcedureOverview .tagsSelector .proposalTagsSelect{flex-grow:1}.agreeToProposal{background-color:#f8faf8;border:solid 1px #eee;border-radius:4px;margin:0 20px 30px}.agreeToProposal h2{margin:0;font-size:18px;padding:5px 10px;background-color:#ded}.agreeToProposal .holder{display:flex}.agreeToProposal .holder>*{flex:1;padding:10px}.agreeToProposal .hint{border-top:solid 1px #eee;padding:5px 10px;font-style:italic}.agreeToProposal .status .head{font-weight:bold}.agreeToProposal .agreement .agreed{color:green}.texteditorBox,.texteditor.boxed{min-height:100px;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.texteditor{background-color:#fff}.texteditor.fixedWidthFont{font-family:"PT Sans",Courier,sans-serif;color:#000}.texteditor>*{padding-bottom:5px;padding-top:5px;padding-left:10px;margin-bottom:5px}.texteditor>span:first-child{padding:0}.texteditor .collidingParagraph.hovered{background-color:#eee}.texteditor>ul,.texteditor ol{padding-left:50px}.texteditor>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:48px}.texteditor span.underline{border-bottom:solid 1px #000}.texteditor span.strike{text-decoration:line-through}#mainmenu{max-width:1024px}#mainmenu .nav>li{display:inline-block}#mainmenu li.addPage{width:0;position:relative}#mainmenu li.addPage a{position:absolute;z-index:10;top:0;left:10px;margin:0}#mainmenu li.addPage a .glyphicon{opacity:.3}@media screen and (max-width: 767px){#mainmenu .container{padding-left:0;padding-right:0}#mainmenu .navbar .nav li a{margin-left:20px}}.motionDataTable{width:100%;overflow-wrap:break-word;table-layout:fixed}.motionDataTable>caption{display:none}.motionDataTable>tbody>tr>th{width:30%;vertical-align:top;padding-right:10px}.motionDataTable .mergingDraft>*{padding-top:15px}.motionData .tagAdderHolder:link,.motionData .tagAdderHolder:visited{color:green}.motionData .delTagForm{display:inline}.motionData .delTagForm button{background:rgba(0,0,0,0);border:none;color:#f77;font-style:italic;padding:0 6px 0 3px;border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.motionData .delTagForm button:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .motionData .delTagForm button:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}.motionData>.content>.alert{margin-top:20px}.motionData .motionHistory .fullHistory .currVersion{font-weight:bold}.motionData .motionHistory .date{font-size:.8em;display:inline-block;padding-left:5px}.motionData .motionHistory .changesLink{font-size:.8em}.motionData .motionHistory .btnHistoryOpener{font-weight:normal;font-size:.8em;padding:0 0 0 15px}.motionData .motionProtocol button{font-weight:normal;padding:0;font-size:.8em}.motionData .motionReplayedBy a{font-weight:bold}.motionData .contactShow{font-size:.8em;font-weight:normal;margin-left:15px;padding:0}.motionData .explanation{font-size:.8em;margin-left:2px}.motionData .notVisible{font-size:.8em;color:#ee0101;font-style:italic}.wysiwyg-textarea .alert{margin-bottom:8px}.wysiwyg-textarea textarea{display:none}.search-form label,.search-form .label{display:inline-block;width:220px;vertical-align:top}.labeledCheckbox{cursor:pointer}.labeledCheckbox span{font-weight:normal}.cke_skin_kama{border:none !important}.motionEditForm .maxLenHint{float:right;margin-top:7px;font-size:.8em;margin-right:3px}.motionEditForm .maxLenHint span.icon{color:gray}.motionEditForm .maxLenHint span.counter{display:inline-block;width:23px;text-align:right}.motionEditForm .legend{font-weight:bold}.motionEditForm label.optional:after,.motionEditForm .optional.label:after{content:"(" attr(data-optional-str) ")";font-weight:normal;font-style:italic;display:inline-block;margin-left:10px;font-size:.9em}.motionEditForm .submitHolder{text-align:right}.motionEditForm .editorialGlobalBar{background-color:#f7f7f7;border-bottom:solid 1px #ccc;padding:0 20px;font-size:13px;display:flex;flex-direction:row}.motionEditForm .editorialGlobalBar label,.motionEditForm .editorialGlobalBar .label{flex:1;padding:5px 0;margin:0;font-weight:normal;color:#777}.motionEditForm .editorialGlobalBar label:last-child,.motionEditForm .editorialGlobalBar .label:last-child{text-align:right}.motionEditForm .editorialGlobalBar input{margin-right:5px}.motionEditForm .modifiedActions{text-align:right}.motionEditForm .modifiedActions .btn{font-weight:normal;padding:0}.motionEditForm .single-paragraph .modifiedActions{display:none}.motionEditForm .single-paragraph.modified{background-color:#eee}.motionEditForm .single-paragraph.modified .modifiedActions{display:block}.motionEditForm .single-paragraph.modifyable{cursor:pointer}.motionEditForm .single-paragraph.modifyable:hover{background-color:#f4f4f4}.motionEditForm .single-paragraph.modifyable:hover>.texteditor{background-color:rgba(0,0,0,0)}.motionEditForm .single-paragraph .oneChangeHint{background-color:#fff;padding:5px 15px;margin-top:-5px}.motionEditForm .single-paragraph .oneChangeHint .alert{margin-bottom:0}.motionEditForm .type3{overflow:auto}.motionEditForm .type3 .currentImage{float:right;max-width:100px;max-height:100px;margin-left:20px}.motionEditForm .type3 .form-group{overflow:auto}.motionEditForm .type3 .deleteImage{font-weight:normal}.motionEditForm .type5{overflow:auto}.motionEditForm .type5 .currentPdf{float:right}.motionEditForm .type5 .form-group{overflow:auto}.motionEditForm .type5 .deletePdf{font-weight:normal}#supporterFullTextHolder{margin-top:30px;display:flex;width:100%}#supporterFullTextHolder .textHolder{width:70%}#supporterFullTextHolder .btnHolder{width:30%;text-align:right}.supporterFormStd .supporterData .fullTextAdder{float:right}.supporterFormStd .supporterData .fullTextAdder button{font-weight:normal}.supporterFormStd .adderLink{font-weight:normal;padding:0}.supporterFormStd .initiatorData .control-label{font-weight:bold}.supporterFormStd .initiatorData .leftColumn{padding-top:18px}.supporterFormStd .initiatorData .contactHead{margin-top:20px;margin-bottom:10px}@media screen and (min-width: 800px){.supporterFormStd .initiatorData .contactHead{width:70%;text-align:center}}.supporterFormStd .initiatorData .contactHead h3{font-size:18px;margin:0}.supporterFormStd .initiatorData .contactHead .hint{font-size:12px}.supporterFormStd .initiatorData .only-person,.supporterFormStd .initiatorData .only-organization{display:none}.supporterFormStd .initiatorData.type-person .only-person{display:inherit}.supporterFormStd .initiatorData.type-organization .only-organization{display:inherit}.supporterFormStd .initiatorData .initiatorCurrentUsername .username{padding-top:7px}.supporterFormStd .initiatorData .initiatorCurrentUsername .btnEdit{display:inline}.supporterFormStd .initiatorData .initiatorSetUsername .btn{text-align:left}.supporterFormStd .supporterRow .adderRow button,.supporterFormStd .initiatorRow .adderRow button{font-weight:normal}.supporterFormStd .supporterRow .rowDeleter,.supporterFormStd .supporterRow .rowDeleter:link,.supporterFormStd .supporterRow .rowDeleter:visited,.supporterFormStd .initiatorRow .rowDeleter,.supporterFormStd .initiatorRow .rowDeleter:link,.supporterFormStd .initiatorRow .rowDeleter:visited{color:#f77;display:inline-block}@media(hover: hover){.supporterFormStd .supporterRow .rowDeleter,.supporterFormStd .initiatorRow .rowDeleter{opacity:0}.supporterFormStd .supporterRow:hover .rowDeleter,.supporterFormStd .supporterRow:focus-within .rowDeleter,.supporterFormStd .initiatorRow:hover .rowDeleter,.supporterFormStd .initiatorRow:focus-within .rowDeleter{opacity:1}}.supporterFormStd .supporterRow{margin-bottom:10px}.supporterFormStd .initiatorRow .rightColumn,.supporterFormStd .supporterRow{display:flex;width:100%}.supporterFormStd .initiatorRow .rightColumn .nameCol,.supporterFormStd .supporterRow .nameCol{flex-basis:65%;flex-grow:0;padding-right:10px}.supporterFormStd .initiatorRow .rightColumn .orgaCal,.supporterFormStd .supporterRow .orgaCal{flex-grow:1}.supporterFormStd .initiatorRow .rightColumn .delCol,.supporterFormStd .supporterRow .delCol{flex-basis:20px;flex-grow:0}.supporterFormStd .moreInitiatorsAdder{text-align:right}.supporterFormStd .moreInitiatorsAdder .adderBtn{padding:0;font-size:.8em;font-weight:normal}#motionConfirmedForm .promoUrl input[type=text]{font-weight:bold;font-family:"PT Sans",Courier,sans-serif}#motionConfirmedForm .promoUrl .clipboard-done{text-align:center;font-size:.8em;color:green;font-weight:normal;margin-top:-13px}#motionConfirmedForm .promoUrl button.btn{padding-bottom:7px}#motionConfirmedForm .btnRow{padding:15px;text-align:center}#motionConfirmForm,#amendmentConfirmForm{margin-bottom:20px}.motionUpdateWidget{text-align:right;padding-top:10px}.motionUpdateWidget .updated{text-align:center;padding-top:5px;font-size:.8em;color:green;opacity:0;transition:opacity .1s}.motionUpdateWidget .updated.active{opacity:1;transition:opacity .1s}span.twitter-typeahead .tt-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:250px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}span.twitter-typeahead .tt-suggestion{display:block;padding:3px 10px 3px 20px;margin:5px 0;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap;font-size:14px}span.twitter-typeahead .tt-suggestion:hover,span.twitter-typeahead .tt-suggestion:focus{color:#fff;text-decoration:none;outline:0;background-color:#88a4a0}span.twitter-typeahead .tt-suggestion.tt-cursor{color:#fff;background-color:#88a4a0}.input-group span.twitter-typeahead{display:block !important}.input-group span.twitter-typeahead .tt-dropdown-menu{top:32px !important}.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu{top:44px !important}.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu{top:28px !important}ul.searchResults{list-style-type:none;margin:0;padding:0}ul.searchResults>li{margin:0;padding:10px}ul.searchResults>li .type{display:block;float:left;width:120px;overflow:hidden;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.activityLogPage .date{float:right;color:gray}.activityLogPage .motion,.activityLogPage .voting{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.activityLogPage .description{margin-top:10px}.activityLogPage .deleted{color:gray;font-style:italic}.activityLogPage .quote{color:gray}.activityLogPage .quote:before{content:"„";display:inline}.activityLogPage .quote:after{content:"“";display:inline}.createSelectStatutes .statute{font-weight:bold;font-size:16px;line-height:18px;margin-top:20px;margin-bottom:20px}.createConfirmPage .sectionType3,.createConfirmPage .sectionType4{padding-left:50px}.amendmentAjaxTooltip{cursor:pointer}h2.green .amendmentAjaxTooltip,h3.green .amendmentAjaxTooltip{float:right;color:gray;margin-right:-10px}.popover-amendment-ajax{width:250px;max-width:none;color:#000}@media(min-width: 800px){.popover-amendment-ajax{width:400px}}@media(min-width: 1200px){.popover-amendment-ajax{width:600px}}.popover-amendment-ajax .popover-content{padding-right:0}.popover-amendment-ajax.fixedBottom{left:25.7969px;display:block;bottom:37px;position:fixed;top:initial !important}.ajaxAmendment{max-height:250px;overflow:auto}.ajaxAmendment>h3{display:none}.ajaxAmendment h4{font-size:16px;margin:5px 0}.ajaxAmendment ul{padding-left:20px}.ajaxAmendment .amendmentLink{float:right;margin-right:10px}.countries{border:none !important}.uploadCol{position:relative;max-width:200px;display:inline-block}.uploadCol label,.uploadCol .label{cursor:pointer;position:absolute;top:7px;right:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.uploadCol input{opacity:0;width:100%;pointer-events:none}.uploadCol:focus-within label,.uploadCol:focus-within .label{outline:solid 2px gray;outline-offset:0}body.usingMouse .uploadCol:focus-within label,body.usingMouse .uploadCol:focus-within .label{outline:none}.motionMergeConfirmForm .newMotionStatus label,.motionMergeConfirmForm .newMotionStatus .label,.motionMergeConfirmForm .newMotionInitiator label,.motionMergeConfirmForm .newMotionInitiator .label,.motionMergeConfirmForm .newMotionSubstatus label,.motionMergeConfirmForm .newMotionSubstatus .label{font-weight:normal;display:block}.motionMergeConfirmForm .contentMotionStatus{padding-bottom:0}@media screen and (min-width: 800px){.motionMergeConfirmForm .contentMotionStatus{display:flex;width:100%}.motionMergeConfirmForm .contentMotionStatus>*{flex-basis:50%}}.motionMergeConfirmForm .newMotionSubstatus .title{font-weight:bold}.motionMergeConfirmForm .contentVotingResult,.motionMergeConfirmForm .contentVotingResultComment{padding-bottom:0;padding-top:10px}.motionMergeConfirmForm .contentVotingResultCaller{padding-bottom:0}.motionMergeConfirmForm .contentVotingResultCaller button{padding-left:0}.motionMergeConfirmForm .motionTextHolder{padding-top:22px}.motionMergeConfirmForm .newAmendments .amendmentStatus{display:flex;flex-direction:row;width:100%}.motionMergeConfirmForm .newAmendments .amendmentStatus>*{padding:5px}.motionMergeConfirmForm .newAmendments .titleHolder{flex-basis:15%}.motionMergeConfirmForm .newAmendments .amendmentStatus>.statusHolder{padding-left:30px;flex-basis:25%}.motionMergeConfirmForm .newAmendments .commentHolder{flex-basis:25%}.motionMergeConfirmForm .newAmendments .votesHolder{flex-basis:8%}.motionMergeConfirmForm .newAmendments .amendmentAjaxTooltip{float:left;margin-left:-24px;margin-top:24px}.motionMergeConfirmForm .newAmendments .amendmentName{padding-top:22px;font-weight:bold;text-align:right}.motionMergeConfirmForm .newAmendments .amendSubtitle{text-align:right;overflow:hidden;text-overflow:ellipsis;max-width:150px;white-space:nowrap;font-size:12px}.motionMergeConfirmForm .newAmendments label,.motionMergeConfirmForm .newAmendments .label{font-weight:normal;font-size:.9em}.motionMergeConfirmForm .newAmendments input::-webkit-outer-spin-button,.motionMergeConfirmForm .newAmendments input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.motionMergeConfirmForm .newAmendments input[type=number]{-moz-appearance:textfield}.mergeConfirmToolbar{margin-bottom:30px}.mergeConfirmToolbar>.export{text-align:right}.mergeConfirmToolbar>.export>*{display:inline-block}.motionMergeInit h2.green{margin-bottom:10px;margin-top:20px}.motionMergeInit .explanation{margin-top:20px;margin-bottom:20px}.motionMergeInit .alert-info a.btn{margin-top:-7px}.motionMergeInit .draftExistsAlert{margin-bottom:50px}.motionMergeInit .mergeTable{width:100%;margin-bottom:20px}.motionMergeInit .mergeTable tr{border-bottom:solid 1px #afcb08}.motionMergeInit .mergeTable tfoot tr{border-bottom:none}.motionMergeInit .mergeTable th{font-size:.8em;line-height:2.5em;font-weight:600}.motionMergeInit .mergeTable td{padding:.75em 0em .75em 0em}.motionMergeInit .mergeTable .colCheck{text-align:center;width:100px}.motionMergeInit .mergeTable td.colText{padding:0}.motionMergeInit .mergeTable td.colText label,.motionMergeInit .mergeTable td.colText .label{display:block;font-size:.8em}.motionMergeInit .mergeTable label,.motionMergeInit .mergeTable .label{padding:0}.motionMergeInit label,.motionMergeInit .label{font-weight:normal}.motionMergeInit .mergeSingle{list-style-type:none;margin:0;padding:0}.motionMergeInit .mergeSingle>li{clear:both;margin:15px 0;padding:0}.motionMergeInit .mergeSingle>li .title{font-weight:bold}.motionMergeInit .mergeSingle>li .initiator{font-size:.8em;color:gray}.motionMergeInit .mergeSingle .amendmentAjaxTooltip{float:left;margin-right:10px}.motionMergeInit .exportHolder{margin:5px 0 0 42px}.motionMergeStyles .ICE-Tracking .ice-del,.motionMergeStyles .ICE-Tracking .ice-del p{text-decoration:line-through;color:#800;background-color:rgba(255,100,100,.2)}.motionMergeStyles .ICE-Tracking .ice-del.hover,.motionMergeStyles .ICE-Tracking .ice-del.hover p{background-color:rgba(255,49,49,.5)}.motionMergeStyles .ICE-Tracking .ice-ins,.motionMergeStyles .ICE-Tracking .ice-ins p{text-decoration:underline;color:#080;background-color:rgba(100,255,100,.2)}.motionMergeStyles .ICE-Tracking .ice-ins.hover,.motionMergeStyles .ICE-Tracking .ice-ins.hover p{background-color:rgba(49,255,49,.6)}.motionMergeStyles .adminTyped1{background-color:#eef;color:blue}.motionMergeStyles .adminTyped2{background-color:#ffeefd;color:#a300ff}.motionMergeStyles .texteditorBox,.motionMergeStyles .texteditor.boxed{min-height:15px}.motionMergeStyles .paragraphWrapper{position:relative;clear:both}.motionMergeStyles .paragraphWrapper p,.motionMergeStyles .paragraphWrapper ul,.motionMergeStyles .paragraphWrapper ol{margin-bottom:0}.motionMergeStyles .paragraphWrapper .texteditor>*{margin-bottom:0}.motionMergeStyles .paragraphWrapper .leftToolbar{width:0;position:absolute;left:-22px;top:0;bottom:0}.motionMergeStyles .paragraphWrapper .leftToolbar .lineNumbers{font-size:12px;color:#c3c3c3}.motionMergeStyles .paragraphWrapper .leftToolbar .firstLineNumber{position:absolute;top:7px;width:16px;text-align:center}.motionMergeStyles .paragraphWrapper .leftToolbar .lastLineNumber{position:absolute;bottom:7px;width:16px;text-align:center}.motionMergeStyles .paragraphWrapper .leftToolbar .inbetweenLineNumbers{position:absolute;width:1px;top:25px;bottom:25px;left:8px;background-image:linear-gradient(#C3C3FF 33%, rgba(255, 255, 255, 0) 0%);background-position:right;background-size:1px 3px;background-repeat:repeat-y}.motionMergeStyles .paragraphWrapper .changeToolbar{float:right;width:0;padding-top:3px;margin-right:-24px}.motionMergeStyles .paragraphWrapper .changeToolbar .btn-group{white-space:nowrap;font-size:0;margin-bottom:5px}.motionMergeStyles .paragraphWrapper .changeToolbar .btn{float:none}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAll{border-radius:0;border-left:none;border-bottom-right-radius:5px !important;border-top-right-radius:5px !important;font-weight:normal}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment{border:none;border-left:solid 1px #fff;border-radius:0}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment.toggleActive{padding:10px;color:#fff;background:#afcb08}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment.btn-default{padding:9px;border:solid 1px #ccc}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment{border:none;border-bottom-right-radius:10px !important;border-top-right-radius:10px !important}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment.toggleActive{padding:10px;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);border-left:solid 1px rgb(189.8045023697,220.1732227488,8.6767772512)}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment.btn-default{padding:9px;border:solid 1px #ccc}.motionMergeStyles .actions{text-align:left;white-space:nowrap;vertical-align:top}.motionMergeStyles .actions>*{display:block;vertical-align:top}.motionMergeStyles .changedIndicator{color:gray;margin-right:10px;font-size:.8em;margin-top:7px;margin-left:-19px;font-weight:bold;visibility:visible}.motionMergeStyles .changedIndicator.unchanged{visibility:hidden}.motionMergeStyles .amendmentStatus .selected a:before{content:"✓";display:block;float:left;width:16px;margin-left:-16px;text-align:center}.motionMergeStyles .amendmentStatus .votingResult{padding-left:8px;padding-right:8px;padding-bottom:8px}.motionMergeStyles .amendmentStatus .votingResult label,.motionMergeStyles .amendmentStatus .votingResult .label{font-weight:normal;margin-bottom:0;font-size:12px}.motionMergeStyles .amendmentStatus .votingResult .form-control{padding:3px 6px;font-size:12px;height:24px}.motionMergeStyles .amendmentStatus .votingData{display:flex;flex-direction:row;width:100%}.motionMergeStyles .amendmentStatus .votingData input::-webkit-outer-spin-button,.motionMergeStyles .amendmentStatus .votingData input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.motionMergeStyles .amendmentStatus .votingData input[type=number]{-moz-appearance:textfield}.motionMergeStyles .amendmentStatus .votingData label,.motionMergeStyles .amendmentStatus .votingData .label{font-weight:normal;margin-bottom:0;font-size:12px}.motionMergeStyles .amendmentStatus .votingData .form-control{padding:3px 6px;font-size:12px;height:24px}.motionMergeStyles .amendmentStatus .votingData>*{flex:0;flex-basis:25%;padding-left:8px}.motionMergeStyles .amendmentStatus .votingData>*:last-child{padding-right:8px}.motionMergeStyles .hasCollisions .texteditor{position:relative}.motionMergeStyles .hasCollisions .texteditor:before{content:attr(data-collision-start-msg);position:absolute;top:-13px;text-align:center;font-size:.7em;color:gray;width:100%}.motionMergeStyles .hasCollisions .collisionsHolder{padding-bottom:5px;padding-top:5px;padding-left:10px;background-color:#f5f5f5}.motionMergeStyles .hasCollisions .hideCollision{font-weight:normal}.motionMergeStyles .hasCollisions+.hasCollisions{margin-top:45px}.motionMergeStyles .moved{margin-top:15px;position:relative}.motionMergeStyles .moved:before{display:block;content:attr(data-moving-msg);position:absolute;top:-15px;left:0;width:100%;text-align:center;text-decoration:none;font-size:.8em;color:gray}.motionMergeStyles .appendHint:after{content:attr(data-append-hint);display:inline-block;font-size:.75em;bottom:-3px;position:relative}.motionMergeStyles .appendedCollision:before{content:"⚠️";display:inline-block;font-size:.85em;padding-right:3px;padding-left:5px;position:relative}.mergingPopoverCollisionHint{font-size:.8em}.motionMergeForm .twoColsHolder{display:flex;flex-direction:row;width:100%}.motionMergeForm .twoColsHolder .twoColsLeft{flex-basis:50%;flex-grow:0}.motionMergeForm .twoColsHolder .twoColsRight{flex-basis:50%;flex-grow:0}.motionMergeForm .sectionType1 .twoColsLeft{padding-left:calc(50px - 25px);padding-right:10px;padding-top:5px}.motionMergeForm .sectionType1 .twoColsRight{padding-left:10px;border-left:1px solid #ccc;border-right:1px solid #ccc}.motionMergeForm .sectionType1 .twoColsRight.first{border-top:1px solid #ccc;border-top-left-radius:4px;border-top-right-radius:4px}.motionMergeForm .sectionType1 .twoColsRight.last{border-bottom:1px solid #ccc;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.motionMergeForm .removeSection{font-weight:normal;margin-bottom:15px}.motionMergeForm .removeSection input{margin-right:5px}.motionMergeForm .submitHolder{text-align:right}.motionMergeForm .newAmendments .amendSubtitle{font-weight:normal;font-size:.9em}.motionMergeForm .newAmendments .control-label{margin-top:-3px;padding-top:0}.motionMergeForm .sectionHolder{padding:3px}.motionMergeForm .boxed{border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.motionMergeForm .titleChanges .title{font-weight:bold}.motionMergeForm .titleChanges .change{margin-top:10px;margin-bottom:10px;margin-left:11px}.motionMergeForm .titleChanges .change:last-child{margin-bottom:25px}.motionMergeForm .titleChanges .prefix{font-weight:bold}.motionMergeForm .titleChanges .text{font-family:"PT Sans",Courier,sans-serif;color:#000}.motionMergeForm .editorialAmendments h3{font-size:1em;font-weight:bold}.motionMergeForm .editorialAmendments .content{border-bottom:solid 1px #afcb08}.motionMergeForm .editorialAmendments .content:first-child{border-bottom:none}.motionMergeForm .dividerLabeled{position:relative;overflow:visible}.motionMergeForm .dividerLabeled:after{content:attr(data-label);position:absolute;display:block;top:-8px;left:20px;background-color:#fff;font-size:.8em;padding-left:0;padding-right:10px;color:gray}.motionMergeForm .amendmentLink{color:#6d7e00}.motionMergeForm #draftSavingPanel{position:fixed;bottom:0;right:30px;width:250px;z-index:10;padding:0;background:#fff;border:solid 1px #ccc;border-top-right-radius:3px;border-top-left-radius:3px;border-bottom:none;box-shadow:0 0 3px rgba(0,0,0,.4)}.motionMergeForm #draftSavingPanel label,.motionMergeForm #draftSavingPanel .label{font-weight:normal}.motionMergeForm #draftSavingPanel header{background-color:#eee;position:relative}.motionMergeForm #draftSavingPanel h2{font-size:16px;margin:0 35px 0 0;padding:5px}.motionMergeForm #draftSavingPanel .pdfLink{font-size:12px;position:absolute;right:5px;top:3px}.motionMergeForm #draftSavingPanel .public{padding:5px}.motionMergeForm #draftSavingPanel .autosave{padding:5px}.motionMergeForm #draftSavingPanel .publicLink{float:right;margin-right:5px}.motionMergeForm #draftSavingPanel .savingError{padding:5px;margin-top:-5px;border-bottom:solid 1px #ccc;background-color:#f44;color:#000}.motionMergeForm #draftSavingPanel .save{padding:5px;overflow:auto}.motionMergeForm #draftSavingPanel .save .lastSaved{float:left}.motionMergeForm #draftSavingPanel .save .saveDraft{float:right}.motionMergeForm #draftSavingPanel .save .none{font-size:.9em;color:gray;font-style:italic}@media screen and (min-width: 1125px){.motionMergeForm #draftSavingPanel h2{border-bottom:solid 1px #ccc}.motionMergeForm #draftSavingPanel .save{padding:0 5px 5px 5px}.motionMergeForm #draftSavingPanel .public{display:block;padding-bottom:0}.motionMergeForm #draftSavingPanel .autosave{border-bottom:solid 1px #ccc;display:block;padding-top:0}.motionMergeForm #draftSavingPanel .lastSaved{margin-top:2px}}@media screen and (max-width: 1124px){.motionMergeForm #draftSavingPanel{right:0;left:0;width:100%;display:table}.motionMergeForm #draftSavingPanel .hideSmall{display:none}.motionMergeForm #draftSavingPanel>*{display:table-cell;vertical-align:middle;line-height:25px}.motionMergeForm #draftSavingPanel>h2{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel>.public{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel .autosave{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel>.save{width:40%}}.motionMergeForm #newAmendmentAlert{position:fixed;bottom:0;right:0;left:0;height:30px;z-index:11;padding:0;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);transition:transform ease-in-out .3s;transform:translate3d(0, 35px, 0)}.motionMergeForm #newAmendmentAlert.revealed{transform:translate3d(0, 0, 0)}@media(min-width: 1024px){.motionMergeForm #newAmendmentAlert .holder{width:1024px;margin:0 auto}}.motionMergeForm #newAmendmentAlert .closeLink{float:left}.motionMergeForm #newAmendmentAlert .message{float:left;font-size:16px;line-height:30px;vertical-align:middle;font-weight:bold}.motionMergeForm #newAmendmentAlert .buttons button{line-height:26px}.mergingProtocol label,.mergingProtocol .label{font-weight:normal;margin-right:20px}.mergePublicDraft .header{width:100%;display:flex}.mergePublicDraft .motionUpdateInfo{flex-basis:66%}.mergePublicDraft .motionUpdateWidget{flex-basis:34%}.fullscreenMainHolder{background-color:#fff;width:100vw;height:100vh;position:absolute}.fullscreenMainHolder>header{margin:0;color:#fff;background:#0a321e;background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;flex-grow:0;height:36px}.fullscreenMainHolder>header .closeBtn{position:absolute;z-index:1;top:1px;right:10px;color:#fff}.fullscreenMainHolder>header .splitscreenBtn{position:absolute;z-index:1;top:1px;right:40px;color:#fff}.fullscreenMainHolder .projectorWidget{position:absolute;width:100vw;top:0}.fullscreenMainHolder .projectorWidget.primary{left:0}.fullscreenMainHolder .projectorWidget.secondary{left:50vw}.fullscreenMainHolder.splitscreen .projectorWidget{width:50vw}.projectorWidget{height:100vh;display:flex;flex-direction:column;position:relative}.projectorWidget>header{flex-grow:0;height:36px;z-index:0}.projectorWidget>header .imotionSelector{padding-top:5px}.projectorWidget>header .stdDropdown{display:inline-block;width:auto;min-width:50vw;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFF2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat left;padding:1px 6px 1px 30px;border:solid 1px rgba(0,0,0,0);color:#fff;font-family:"Arvo",sans-serif;font-size:18px;line-height:22px;cursor:pointer;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase}.projectorWidget>header .stdDropdown:hover{background-color:hsla(0,0%,100%,.1)}.projectorWidget>header .stdDropdown:active{border:solid 1px #fff}.projectorWidget>header .stdDropdown option{text-shadow:none;font-weight:normal;text-transform:none;font-style:normal}.projectorWidget>main{flex-grow:1;overflow:auto;padding:0 3vw 0 3vw}.projectorWidget.splitscreen>main{padding:0 1.5vw 0 1.5vw}.projectorWidget h1{font-size:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}.projectorWidget .motionTextFormattings{font-size:1.6vw}.projectorWidget .motionTextHolder h1{font-size:2.1vw}.projectorWidget .motionTextHolder h2{font-size:2vw}.projectorWidget .motionTextHolder h3{font-size:1.9vw}.projectorWidget .motionTextHolder h4{font-size:1.8vw}.projectorWidget .motionTextHolder h5{font-size:1.7vw}.projectorWidget .motionTextHolder h6{font-size:1.6vw}.projectorWidget .motionTextHolder .motionTextFormattings ol,.projectorWidget .motionTextHolder .motionTextFormattings ul{padding-left:3.5vw}.projectorWidget .motionTextHolder .motionTextFormattings ol>li::before,.projectorWidget .motionTextHolder .motionTextFormattings ul>li::before{left:-3.5vw}.projectorWidget .motionTextHolder .Image img{max-width:100%}.projectorWidget .motionTextHolder .Image .text{padding:15px}.projectorWidget .motionTextHolder .TabularData .dl-horizontal dt{text-align:left}.projectorWidget.splitscreen .motionTextHolder .paragraph.lineNumbers .text{padding-left:20px}.projectorWidget.splitscreen .motionTextHolder.isAmendment .paragraph.lineNumbers .text{padding-left:0}.projectorWidget .motionDataTable{margin-top:21px;margin-bottom:30px;font-size:1.6vw}.projectorWidget .motionDataTable>tbody>tr>th{width:17vw;padding-top:7px}.projectorWidget .motionDataTable>tbody>tr>td{padding-top:7px}.projectorWidget .speechLists .activeSpeaker,.projectorWidget .speechLists .remainingTime{text-align:center;font-size:2.5vw}.projectorWidget .speechLists .activeSpeaker{margin-top:5vh}.projectorWidget .speechLists .remainingTime{margin-top:3vh}.projectorWidget .speechLists .leftIcon{font-size:2vw}.projectorWidget .speechLists h2.green{margin:0;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:3vh 0;padding-left:24vw}.projectorWidget .speechLists .waitingSingle .nameList{display:block;margin-left:25vw}.projectorWidget .speechLists .waitingSingle .nameList>li{margin-top:20px;margin-bottom:20px;font-size:2vw;line-height:3vw}.projectorWidget .speechLists .waitingSingle .nameList>li .leftIcon{float:left;margin-left:-5vw}.projectorWidget .speechLists .waitingSubqueues{margin-left:3vw;margin-right:3vw;width:auto;display:flex;flex-direction:row;justify-content:center}.projectorWidget .speechLists .waitingSubqueues>*{flex:1;display:flex;flex-direction:column}.projectorWidget .speechLists .waitingSubqueues .nameList{margin-top:1.5vw;padding-left:1.5vw}.projectorWidget .speechLists .waitingSubqueues .header .name{vertical-align:middle;font-size:2vw;font-weight:bold;display:inline-block;padding-right:10px}.projectorWidget .speechLists .waitingSubqueues .header .number{font-size:1vw;vertical-align:middle}.projectorWidget .speechLists .waitingSubqueues .applied{line-height:2.3vw;font-size:1.2vw;vertical-align:middle}.projectorWidget .speechLists .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.projectorWidget .contentPage{margin-top:21px;font-size:1.6vw}.projectorWidget .contentPage h1{font-size:2.1vw}.projectorWidget .contentPage h2{font-size:2vw}.projectorWidget .contentPage h3{font-size:1.9vw}.projectorWidget .contentPage h4{font-size:1.8vw}.projectorWidget .contentPage h5{font-size:1.7vw}.projectorWidget .contentPage h6{font-size:1.6vw}.projectorWidget .contentPage p{font-size:1.6vw}.projectorWidget .contentPage .motionList .motion>.title a,.projectorWidget .contentPage .motionList .motion>.title .motionLink{font-size:1.6vw}#loginSamlHint,.login_saml .privacyHint{border-left:solid 1px gray;padding-left:10px;margin-left:20px;margin-top:10px;font-size:.8em;overflow:auto}.login_saml .privacyHint{border-left:solid 1px gray;padding-left:10px;margin-left:20px;margin-top:0;font-size:.8em;overflow:auto}.login_saml .btn{float:left;margin-right:30px}.secondFactorAdderBody .setFaField{margin-left:30px;margin-bottom:50px}.secondFactorAdderBody .captchaForm{margin-left:30px;margin-bottom:50px;margin-top:-20px}.captchaHolder input.form-control{display:inline-block;width:200px}@media(min-width: 800px){#usernamePasswordForm,#confirmAccountForm{width:400px}}@media(min-width: 800px){#conPwdForm{width:400px}}#conPwdForm .consultationName{margin-bottom:30px}#conPwdForm .usernameLoginOpener button{margin-top:20px;font-weight:normal}.loginUsername .passwordRecovery{float:right;font-size:.8em}.loginUsername #regConfirmation{font-size:11px}.accountDeleteForm .submit{display:flex;width:100%}.accountDeleteForm .submit label,.accountDeleteForm .submit .label{font-weight:normal;flex-basis:50%}.accountDeleteForm .submit>div{flex-basis:50%;text-align:right}.userAccountForm .requestEmailChange{display:inline-block;margin-left:10px;font-style:italic;font-size:.8em}.userAccountForm .changeRequested{display:block;font-size:.8em;margin-top:5px;margin-bottom:5px}.userAccountForm .resendButton{color:#6d7e00;font-style:italic}.userAccountForm .btn2FaRemoveOpen{padding:0;font-weight:normal;font-style:italic;font-size:.8em;margin-left:16px}.userAccountForm .secondFactorRemoveBody{margin-top:10px}.notificationForm label,.notificationForm .label{cursor:pointer}.notificationForm input[type=checkbox]{margin-right:10px}.notificationForm .notificationRow{margin-top:10px;margin-bottom:20px}.notificationForm .radioList>div{padding-left:27px}.notificationForm .radioList label,.notificationForm .radioList .label{display:block;font-weight:normal;margin-bottom:10px}.userDataExport .exportRow{margin-top:20px;text-align:center}.askPermissionForm{text-align:center;margin-top:50px;margin-bottom:30px}body{background-image:url(gruenes_ci2_background.jpg);background-repeat:repeat;background-position:top center;background-attachment:fixed}.logoImg{display:block;width:89px;height:87px;background-image:url("logo_gruene-2015.png")}.well h1{font-family:"Arvo Gruen",sans-serif;font-weight:normal}.motionListStd .motion .title a{font-family:"Arvo",sans-serif}#mainmenu{display:block;background:#0a321e;text-align:right;padding:.5em 0;box-shadow:5px 5px 10px rgba(0,0,0,.2);z-index:2;position:relative}#mainmenu .navbar{min-height:36px}#mainmenu .navbar .nav li a,#mainmenu .navbar .nav li a:visited,#mainmenu .navbar .nav li a:link{color:#fff;font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:16px;font-weight:normal;text-transform:none;line-height:36px;vertical-align:middle}#mainmenu .navigation li.addPage{float:right}#mainmenu .navbar-nav{margin:7.5px 0 7.5px 15px}#mainmenu .navbar-inner{max-width:1140px;margin:0 auto}#mainmenu .unsichtbar{display:none}#mainmenu .navigation{background:#0a321e;font-size:20.8px;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-weight:normal}#mainmenu .navigation ul{list-style-type:none}#mainmenu .navigation li{display:block;float:left;position:relative;padding:0;margin:0}#mainmenu .navigation a,#mainmenu .navigation a:link,#mainmenu .navigation a:visited{padding:1em;display:block;background:rgba(0,0,0,0);color:#fff;border:0}.row.logo{margin-bottom:1em;position:relative;min-height:110px}.row.logo #logo{display:inline-block;width:20%;z-index:2;position:relative;margin-top:.5em}.row.logo .hgroup{display:inline-block;width:auto !important;text-align:right;z-index:2;position:absolute;top:10%;right:0;border-top:.2em solid #fff;border-bottom:.2em solid #fff;padding:.5em 0}@media screen and (max-width: 550px){.row.logo .hgroup{display:none}}.row.logo a,.row.logo a:link,.row.logo a:visited{color:#fff;text-decoration:none;text-shadow:1px 1px 5px rgba(0,0,0,.3)}.row.logo #site-title,.row.logo #site-description{padding:0 0 0 5px;margin:0;line-height:1em;display:block;text-align:right}.row.logo #site-title{color:#fff;text-shadow:2px 2px 5px rgba(0,0,0,.4);text-transform:uppercase;font-family:"Arvo Gruen","Arvo",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-size:40px}.row.logo #site-description{text-align:right;margin-top:.5em;font-size:18px;text-shadow:1px 1px 5px rgba(0,0,0,.3);color:#ffe000;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}.logoRow{margin:0;position:relative;min-height:110px}.logoRow #logo{display:inline-block;width:20%;z-index:2;position:relative;margin-top:.5em}.logoRow .hgroup{display:inline-block;width:auto !important;text-align:right;z-index:2;position:absolute;top:28px;right:0;border-top:.2em solid #fff;border-bottom:.2em solid #fff;padding:.5em 0}@media screen and (max-width: 550px){.logoRow .hgroup{display:none}}.logoRow a,.logoRow a:link,.logoRow a:visited{color:#fff;text-decoration:none;text-shadow:1px 1px 5px rgba(0,0,0,.3)}.logoRow #site-title,.logoRow #site-description{padding:0 0 0 5px;margin:0;line-height:1em;display:block;text-align:right}.logoRow #site-title{color:#fff;text-shadow:2px 2px 5px rgba(0,0,0,.4);text-transform:uppercase;font-family:"Arvo Gruen","Arvo",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-size:40px}.logoRow #site-description{text-align:right;margin-top:.5em;font-size:18px;text-shadow:1px 1px 5px rgba(0,0,0,.3);color:#ffe000;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}.navwrap{margin-bottom:2em}.breadcrumb{display:block;z-index:2;position:relative;background:#fe0;color:#0a321e;padding:.3em 1em;font-size:14.4px;font-family:"PT Sans Bold",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-weight:normal;text-transform:none;margin:0;color:#0a321e}.breadcrumb a,.breadcrumb a:link,.breadcrumb a:visited{color:#0a321e}footer.footer{text-align:center;font-size:12.8px;color:#fff;padding:1em;margin-bottom:30px}footer.footer .version{font-size:12.8px}footer.footer a,footer.footer a:link,footer.footer a:visited{color:#ffe000}.well{border-radius:0;box-shadow:5px 5px 10px rgba(0,0,0,.2)}@media(min-width: 992px){main.col-md-9{width:750px}aside.col-md-3{width:274px}}#sidebar{font-size:16px;padding-right:0;padding-left:50px}#sidebar .form-search{margin-bottom:2em}#sidebar .form-search .invisible,#sidebar .form-search label,#sidebar .form-search .label{display:none}#sidebar .form-search .query{padding:1em 5%;border:1px solid #0a321e;width:100%}#sidebar .form-search button{border:0;background:#0a321e;color:#fff;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;padding:.5em 1em;margin-top:1em;font-size:1em;font-weight:normal}@media only screen and (min-width: 770px){#sidebar .form-search .query{box-shadow:5px 5px 10px rgba(0,0,0,.2)}#sidebar .form-search button{box-shadow:5px 5px 10px rgba(0,0,0,.2)}}#sidebar .sidebar-box,#sidebar .sidebarActions{margin:0 0 2em 0;padding:18px;border:0;background:#e6e6e6;box-shadow:5px 5px 10px rgba(0,0,0,.2);border-radius:0;list-style-type:none}#sidebar .sidebar-box a,#sidebar .sidebarActions a{padding:10px 0;display:block}#sidebar .sidebar-box a:hover,#sidebar .sidebarActions a:hover{background-color:#eee}#sidebar .sidebar-box a .icon:before,#sidebar .sidebarActions a .icon:before{margin-right:.2em}#sidebar .sidebar-box li a,#sidebar .sidebar-box .icon,#sidebar .sidebarActions li a,#sidebar .sidebarActions .icon{color:#46962b}#sidebar .sidebar-box button,#sidebar .sidebarActions button{color:#46962b;text-align:left;padding:10px 0}#sidebar .sidebar-box button:hover,#sidebar .sidebarActions button:hover{background-color:#eee}#sidebar .nav-list{margin-bottom:0}#sidebar .nav-list>li.nav-header{padding:5px 0 5px 0;color:#0a321e;font-size:20px;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}#sidebar .nav-list>li{padding:0}#sidebar .nav>li>a{padding:10px 0}#sidebar .createMotionHolder2{margin-bottom:2em}#sidebar .createMotionHolder2 .createMotion{display:block;box-shadow:5px 5px 10px rgba(0,0,0,.2);border:0;background:#0a321e;color:#fff;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;padding:.5em 1em;margin-top:1em;font-size:1em;font-weight:normal}#sidebar .createMotionHolder2 .createMotion span{margin-right:.5em}#sidebar .share_buttons{margin-top:20px}#sidebar .share_buttons li{width:102px} +@font-face{font-family:"Arvo";font-style:normal;font-weight:normal;src:url("./arvo_regular.woff") format("woff")}@font-face{font-family:"Arvo Gruen";font-style:normal;font-weight:normal;src:url("./arvo_gruen.woff") format("woff")}@font-face{font-family:"PT Sans";font-style:normal;font-weight:normal;src:url("./ptsans_regular.woff") format("woff")}@font-face{font-family:"PT Sans Bold";font-style:normal;font-weight:normal;src:url("./ptsans_bold.woff") format("woff")}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000 !important;text-shadow:none !important;background:rgba(0,0,0,0) !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:"Glyphicons Halflings";src:url("../../fonts/glyphicons-halflings-regular.eot");src:url("../../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../../fonts/glyphicons-halflings-regular.woff2") format("woff2"),url("../../fonts/glyphicons-halflings-regular.woff") format("woff"),url("../../fonts/glyphicons-halflings-regular.ttf") format("truetype"),url("../../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:"Glyphicons Halflings";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-euro:before,.glyphicon-eur:before{content:"€"}.glyphicon-minus:before{content:"−"}.glyphicon-cloud:before{content:"☁"}.glyphicon-envelope:before{content:"✉"}.glyphicon-pencil:before{content:"✏"}.glyphicon-glass:before{content:""}.glyphicon-music:before{content:""}.glyphicon-search:before{content:""}.glyphicon-heart:before{content:""}.glyphicon-star:before{content:""}.glyphicon-star-empty:before{content:""}.glyphicon-user:before{content:""}.glyphicon-film:before{content:""}.glyphicon-th-large:before{content:""}.glyphicon-th:before{content:""}.glyphicon-th-list:before{content:""}.glyphicon-ok:before{content:""}.glyphicon-remove:before{content:""}.glyphicon-zoom-in:before{content:""}.glyphicon-zoom-out:before{content:""}.glyphicon-off:before{content:""}.glyphicon-signal:before{content:""}.glyphicon-cog:before{content:""}.glyphicon-trash:before{content:""}.glyphicon-home:before{content:""}.glyphicon-file:before{content:""}.glyphicon-time:before{content:""}.glyphicon-road:before{content:""}.glyphicon-download-alt:before{content:""}.glyphicon-download:before{content:""}.glyphicon-upload:before{content:""}.glyphicon-inbox:before{content:""}.glyphicon-play-circle:before{content:""}.glyphicon-repeat:before{content:""}.glyphicon-refresh:before{content:""}.glyphicon-list-alt:before{content:""}.glyphicon-lock:before{content:""}.glyphicon-flag:before{content:""}.glyphicon-headphones:before{content:""}.glyphicon-volume-off:before{content:""}.glyphicon-volume-down:before{content:""}.glyphicon-volume-up:before{content:""}.glyphicon-qrcode:before{content:""}.glyphicon-barcode:before{content:""}.glyphicon-tag:before{content:""}.glyphicon-tags:before{content:""}.glyphicon-book:before{content:""}.glyphicon-bookmark:before{content:""}.glyphicon-print:before{content:""}.glyphicon-camera:before{content:""}.glyphicon-font:before{content:""}.glyphicon-bold:before{content:""}.glyphicon-italic:before{content:""}.glyphicon-text-height:before{content:""}.glyphicon-text-width:before{content:""}.glyphicon-align-left:before{content:""}.glyphicon-align-center:before{content:""}.glyphicon-align-right:before{content:""}.glyphicon-align-justify:before{content:""}.glyphicon-list:before{content:""}.glyphicon-indent-left:before{content:""}.glyphicon-indent-right:before{content:""}.glyphicon-facetime-video:before{content:""}.glyphicon-picture:before{content:""}.glyphicon-map-marker:before{content:""}.glyphicon-adjust:before{content:""}.glyphicon-tint:before{content:""}.glyphicon-edit:before{content:""}.glyphicon-share:before{content:""}.glyphicon-check:before{content:""}.glyphicon-move:before{content:""}.glyphicon-step-backward:before{content:""}.glyphicon-fast-backward:before{content:""}.glyphicon-backward:before{content:""}.glyphicon-play:before{content:""}.glyphicon-pause:before{content:""}.glyphicon-stop:before{content:""}.glyphicon-forward:before{content:""}.glyphicon-fast-forward:before{content:""}.glyphicon-step-forward:before{content:""}.glyphicon-eject:before{content:""}.glyphicon-chevron-left:before{content:""}.glyphicon-chevron-right:before{content:""}.glyphicon-plus-sign:before{content:""}.glyphicon-minus-sign:before{content:""}.glyphicon-remove-sign:before{content:""}.glyphicon-ok-sign:before{content:""}.glyphicon-question-sign:before{content:""}.glyphicon-info-sign:before{content:""}.glyphicon-screenshot:before{content:""}.glyphicon-remove-circle:before{content:""}.glyphicon-ok-circle:before{content:""}.glyphicon-ban-circle:before{content:""}.glyphicon-arrow-left:before{content:""}.glyphicon-arrow-right:before{content:""}.glyphicon-arrow-up:before{content:""}.glyphicon-arrow-down:before{content:""}.glyphicon-share-alt:before{content:""}.glyphicon-resize-full:before{content:""}.glyphicon-resize-small:before{content:""}.glyphicon-exclamation-sign:before{content:""}.glyphicon-gift:before{content:""}.glyphicon-leaf:before{content:""}.glyphicon-fire:before{content:""}.glyphicon-eye-open:before{content:""}.glyphicon-eye-close:before{content:""}.glyphicon-warning-sign:before{content:""}.glyphicon-plane:before{content:""}.glyphicon-calendar:before{content:""}.glyphicon-random:before{content:""}.glyphicon-comment:before{content:""}.glyphicon-magnet:before{content:""}.glyphicon-chevron-up:before{content:""}.glyphicon-chevron-down:before{content:""}.glyphicon-retweet:before{content:""}.glyphicon-shopping-cart:before{content:""}.glyphicon-folder-close:before{content:""}.glyphicon-folder-open:before{content:""}.glyphicon-resize-vertical:before{content:""}.glyphicon-resize-horizontal:before{content:""}.glyphicon-hdd:before{content:""}.glyphicon-bullhorn:before{content:""}.glyphicon-bell:before{content:""}.glyphicon-certificate:before{content:""}.glyphicon-thumbs-up:before{content:""}.glyphicon-thumbs-down:before{content:""}.glyphicon-hand-right:before{content:""}.glyphicon-hand-left:before{content:""}.glyphicon-hand-up:before{content:""}.glyphicon-hand-down:before{content:""}.glyphicon-circle-arrow-right:before{content:""}.glyphicon-circle-arrow-left:before{content:""}.glyphicon-circle-arrow-up:before{content:""}.glyphicon-circle-arrow-down:before{content:""}.glyphicon-globe:before{content:""}.glyphicon-wrench:before{content:""}.glyphicon-tasks:before{content:""}.glyphicon-filter:before{content:""}.glyphicon-briefcase:before{content:""}.glyphicon-fullscreen:before{content:""}.glyphicon-dashboard:before{content:""}.glyphicon-paperclip:before{content:""}.glyphicon-heart-empty:before{content:""}.glyphicon-link:before{content:""}.glyphicon-phone:before{content:""}.glyphicon-pushpin:before{content:""}.glyphicon-usd:before{content:""}.glyphicon-gbp:before{content:""}.glyphicon-sort:before{content:""}.glyphicon-sort-by-alphabet:before{content:""}.glyphicon-sort-by-alphabet-alt:before{content:""}.glyphicon-sort-by-order:before{content:""}.glyphicon-sort-by-order-alt:before{content:""}.glyphicon-sort-by-attributes:before{content:""}.glyphicon-sort-by-attributes-alt:before{content:""}.glyphicon-unchecked:before{content:""}.glyphicon-expand:before{content:""}.glyphicon-collapse-down:before{content:""}.glyphicon-collapse-up:before{content:""}.glyphicon-log-in:before{content:""}.glyphicon-flash:before{content:""}.glyphicon-log-out:before{content:""}.glyphicon-new-window:before{content:""}.glyphicon-record:before{content:""}.glyphicon-save:before{content:""}.glyphicon-open:before{content:""}.glyphicon-saved:before{content:""}.glyphicon-import:before{content:""}.glyphicon-export:before{content:""}.glyphicon-send:before{content:""}.glyphicon-floppy-disk:before{content:""}.glyphicon-floppy-saved:before{content:""}.glyphicon-floppy-remove:before{content:""}.glyphicon-floppy-save:before{content:""}.glyphicon-floppy-open:before{content:""}.glyphicon-credit-card:before{content:""}.glyphicon-transfer:before{content:""}.glyphicon-cutlery:before{content:""}.glyphicon-header:before{content:""}.glyphicon-compressed:before{content:""}.glyphicon-earphone:before{content:""}.glyphicon-phone-alt:before{content:""}.glyphicon-tower:before{content:""}.glyphicon-stats:before{content:""}.glyphicon-sd-video:before{content:""}.glyphicon-hd-video:before{content:""}.glyphicon-subtitles:before{content:""}.glyphicon-sound-stereo:before{content:""}.glyphicon-sound-dolby:before{content:""}.glyphicon-sound-5-1:before{content:""}.glyphicon-sound-6-1:before{content:""}.glyphicon-sound-7-1:before{content:""}.glyphicon-copyright-mark:before{content:""}.glyphicon-registration-mark:before{content:""}.glyphicon-cloud-download:before{content:""}.glyphicon-cloud-upload:before{content:""}.glyphicon-tree-conifer:before{content:""}.glyphicon-tree-deciduous:before{content:""}.glyphicon-cd:before{content:""}.glyphicon-save-file:before{content:""}.glyphicon-open-file:before{content:""}.glyphicon-level-up:before{content:""}.glyphicon-copy:before{content:""}.glyphicon-paste:before{content:""}.glyphicon-alert:before{content:""}.glyphicon-equalizer:before{content:""}.glyphicon-king:before{content:""}.glyphicon-queen:before{content:""}.glyphicon-pawn:before{content:""}.glyphicon-bishop:before{content:""}.glyphicon-knight:before{content:""}.glyphicon-baby-formula:before{content:""}.glyphicon-tent:before{content:"⛺"}.glyphicon-blackboard:before{content:""}.glyphicon-bed:before{content:""}.glyphicon-apple:before{content:""}.glyphicon-erase:before{content:""}.glyphicon-hourglass:before{content:"⌛"}.glyphicon-lamp:before{content:""}.glyphicon-duplicate:before{content:""}.glyphicon-piggy-bank:before{content:""}.glyphicon-scissors:before{content:""}.glyphicon-bitcoin:before{content:""}.glyphicon-btc:before{content:""}.glyphicon-xbt:before{content:""}.glyphicon-yen:before{content:"¥"}.glyphicon-jpy:before{content:"¥"}.glyphicon-ruble:before{content:"₽"}.glyphicon-rub:before{content:"₽"}.glyphicon-scale:before{content:""}.glyphicon-ice-lolly:before{content:""}.glyphicon-ice-lolly-tasted:before{content:""}.glyphicon-education:before{content:""}.glyphicon-option-horizontal:before{content:""}.glyphicon-option-vertical:before{content:""}.glyphicon-menu-hamburger:before{content:""}.glyphicon-modal-window:before{content:""}.glyphicon-oil:before{content:""}.glyphicon-grain:before{content:""}.glyphicon-sunglasses:before{content:""}.glyphicon-text-size:before{content:""}.glyphicon-text-color:before{content:""}.glyphicon-text-background:before{content:""}.glyphicon-object-align-top:before{content:""}.glyphicon-object-align-bottom:before{content:""}.glyphicon-object-align-horizontal:before{content:""}.glyphicon-object-align-left:before{content:""}.glyphicon-object-align-vertical:before{content:""}.glyphicon-object-align-right:before{content:""}.glyphicon-triangle-right:before{content:""}.glyphicon-triangle-left:before{content:""}.glyphicon-triangle-bottom:before{content:""}.glyphicon-triangle-top:before{content:""}.glyphicon-console:before{content:""}.glyphicon-superscript:before{content:""}.glyphicon-subscript:before{content:""}.glyphicon-menu-left:before{content:""}.glyphicon-menu-right:before{content:""}.glyphicon-menu-down:before{content:""}.glyphicon-menu-up:before{content:""}*{box-sizing:border-box}*:before,*:after{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:#484649;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#6d7e00;text-decoration:none}a:hover,a:focus{color:rgb(153.119047619,177,0);text-decoration:none}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.5;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid hsl(0,0%,93.5%)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:400;line-height:1;color:hsl(0,0%,46.7%)}h1,.h1,h2,.h2,h3,.h3{margin-top:21px;margin-bottom:10.5px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10.5px;margin-bottom:10.5px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10.5px}.lead{margin-bottom:21px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width: 768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase,.initialism{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:hsl(0,0%,46.7%)}.text-primary{color:#e2007a}a.text-primary:hover,a.text-primary:focus{color:rgb(175,0,94.4690265487)}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:rgb(42.808988764,84.191011236,43.5224719101)}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:rgb(35.984375,82.25,105.015625)}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:rgb(102.2741116751,80.7817258883,43.7258883249)}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:hsl(1.1650485437,43.829787234%,36.0784313725%)}.bg-primary{color:#fff}.bg-primary{background-color:#e2007a}a.bg-primary:hover,a.bg-primary:focus{background-color:rgb(175,0,94.4690265487)}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:hsl(102.5,44.4444444444%,79.4117647059%)}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:hsl(200,65.2173913043%,80.9803921569%)}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:hsl(50.4,80.6451612903%,83.9215686275%)}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:hsl(0,43.4782608696%,80.9803921569%)}.page-header{padding-bottom:9.5px;margin:42px 0 21px;border-bottom:1px solid hsl(0,0%,93.5%)}ul,ol{margin-top:0;margin-bottom:10.5px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:21px}dt,dd{line-height:1.5}dt{font-weight:700}dd{margin-left:0}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}@media(min-width: 992px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help}.initialism{font-size:90%}blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:14px;border-left:5px solid hsl(0,0%,93.5%)}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.5;color:hsl(0,0%,46.7%)}blockquote footer:before,blockquote small:before,blockquote .small:before{content:"— "}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid hsl(0,0%,93.5%);border-left:0}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:""}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:" —"}address{margin-bottom:21px;font-style:normal;line-height:1.5}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:10px;margin:0 0 10.5px;font-size:13px;line-height:1.5;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:rgba(0,0,0,0);border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}table{background-color:rgba(0,0,0,0)}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:hsl(0,0%,46.7%);text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:21px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.5;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>thead>tr>td.active,.table>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:hsl(0,0%,91.0784313725%)}.table>thead>tr>td.success,.table>thead>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:hsl(102.5,44.4444444444%,84.4117647059%)}.table>thead>tr>td.info,.table>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:hsl(200,65.2173913043%,85.9803921569%)}.table>thead>tr>td.warning,.table>thead>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:hsl(50.4,80.6451612903%,88.9215686275%)}.table>thead>tr>td.danger,.table>thead>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:hsl(0,43.4782608696%,85.9803921569%)}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width: 767px){.table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label,.label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9 ;line-height:normal}input[type=radio][disabled],input[type=radio].disabled,fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=checkbox].disabled,fieldset[disabled] input[type=checkbox]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.5;color:hsl(0,0%,33.5%)}.form-control{display:block;width:100%;height:35px;padding:6px 12px;font-size:14px;line-height:1.5;color:hsl(0,0%,33.5%);background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:rgba(0,0,0,0);border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:hsl(0,0%,93.5%);opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio: 0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:35px}input[type=date].input-sm,.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm input[type=date],input[type=time].input-sm,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm input[type=time],input[type=datetime-local].input-sm,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm input[type=datetime-local],input[type=month].input-sm,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm input[type=month]{line-height:30px}input[type=date].input-lg,.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg input[type=date],input[type=time].input-lg,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg input[type=time],input[type=datetime-local].input-lg,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg input[type=datetime-local],input[type=month].input-lg,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg input[type=month]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio.disabled label,.radio.disabled .label,fieldset[disabled] .radio label,fieldset[disabled] .radio .label,.checkbox.disabled label,.checkbox.disabled .label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox .label{cursor:not-allowed}.radio label,.radio .label,.checkbox label,.checkbox .label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9 ;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline.disabled,fieldset[disabled] .radio-inline,.checkbox-inline.disabled,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:35px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.form-control-static.input-sm,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:33px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:46px;line-height:46px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:39px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:43.75px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:35px;height:35px;line-height:35px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.radio .label,.has-success.checkbox label,.has-success.checkbox .label,.has-success.radio-inline label,.has-success.radio-inline .label,.has-success.checkbox-inline label,.has-success.checkbox-inline .label{color:#3c763d}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:rgb(42.808988764,84.191011236,43.5224719101);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(102.5280898876,177.4719101124,103.8202247191)}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.radio .label,.has-warning.checkbox label,.has-warning.checkbox .label,.has-warning.radio-inline label,.has-warning.radio-inline .label,.has-warning.checkbox-inline label,.has-warning.checkbox-inline .label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:rgb(102.2741116751,80.7817258883,43.7258883249);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(191.807106599,160.7461928934,107.192893401)}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.radio .label,.has-error.checkbox label,.has-error.checkbox .label,.has-error.radio-inline label,.has-error.radio-inline .label,.has-error.checkbox-inline label,.has-error.checkbox-inline .label{color:#a94442}.has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:hsl(1.1650485437,43.829787234%,36.0784313725%);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px hsl(1.1650485437,43.829787234%,66.0784313725%)}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback,.has-feedback .label~.form-control-feedback{top:26px}.has-feedback label.sr-only~.form-control-feedback,.has-feedback .sr-only.label~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:hsl(280,2.0979020979%,53.0392156863%)}@media(min-width: 768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .radio .label,.form-inline .checkbox label,.form-inline .checkbox .label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:28px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}@media(min-width: 768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media(min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid rgba(0,0,0,0);padding:6px 12px;font-size:14px;line-height:1.5;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:hsl(0,0%,90%);border-color:hsl(0,0%,55%)}.btn-default:hover{color:#333;background-color:hsl(0,0%,90%);border-color:hsl(0,0%,68%)}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{color:#333;background-color:hsl(0,0%,90%);background-image:none;border-color:hsl(0,0%,68%)}.btn-default:active:hover,.btn-default:active:focus,.btn-default:active.focus,.btn-default.active:hover,.btn-default.active:focus,.btn-default.active.focus,.open>.btn-default.dropdown-toggle:hover,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle.focus{color:#333;background-color:hsl(0,0%,83%);border-color:hsl(0,0%,55%)}.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled.focus,.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#e2007a;border-color:rgb(200.5,0,108.2345132743)}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:rgb(175,0,94.4690265487);border-color:rgb(73,0,39.407079646)}.btn-primary:hover{color:#fff;background-color:rgb(175,0,94.4690265487);border-color:rgb(139.3,0,75.1973451327)}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:rgb(175,0,94.4690265487);background-image:none;border-color:rgb(139.3,0,75.1973451327)}.btn-primary:active:hover,.btn-primary:active:focus,.btn-primary:active.focus,.btn-primary.active:hover,.btn-primary.active:focus,.btn-primary.active.focus,.open>.btn-primary.dropdown-toggle:hover,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle.focus{color:#fff;background-color:rgb(139.3,0,75.1973451327);border-color:rgb(73,0,39.407079646)}.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled.focus,.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary.focus{background-color:#e2007a;border-color:rgb(200.5,0,108.2345132743)}.btn-primary .badge{color:#e2007a;background-color:#fff}.btn-success{color:#fff;background-color:#2c882c;border-color:hsl(120,51.1111111111%,30.2941176471%)}.btn-success:focus,.btn-success.focus{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);border-color:rgb(6.6,20.4,6.6)}.btn-success:hover{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);border-color:hsl(120,51.1111111111%,18.2941176471%)}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);background-image:none;border-color:hsl(120,51.1111111111%,18.2941176471%)}.btn-success:active:hover,.btn-success:active:focus,.btn-success:active.focus,.btn-success.active:hover,.btn-success.active:focus,.btn-success.active.focus,.open>.btn-success.dropdown-toggle:hover,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle.focus{color:#fff;background-color:hsl(120,51.1111111111%,18.2941176471%);border-color:rgb(6.6,20.4,6.6)}.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled.focus,.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success.focus{background-color:#2c882c;border-color:hsl(120,51.1111111111%,30.2941176471%)}.btn-success .badge{color:#2c882c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:rgb(69.7715736041,183.845177665,217.7284263959)}.btn-info:focus,.btn-info.focus{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);border-color:rgb(26.8020304569,108.8324873096,133.1979695431)}.btn-info:hover{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);border-color:rgb(37.9081218274,153.9299492386,188.3918781726)}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);background-image:none;border-color:rgb(37.9081218274,153.9299492386,188.3918781726)}.btn-info:active:hover,.btn-info:active:focus,.btn-info:active.focus,.btn-info.active:hover,.btn-info.active:focus,.btn-info.active.focus,.open>.btn-info.dropdown-toggle:hover,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle.focus{color:#fff;background-color:rgb(37.9081218274,153.9299492386,188.3918781726);border-color:rgb(26.8020304569,108.8324873096,133.1979695431)}.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled.focus,.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:rgb(69.7715736041,183.845177665,217.7284263959)}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:rgb(238.0078125,162.109375,54.4921875)}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);border-color:rgb(152.109375,94.53125,12.890625)}.btn-warning:hover{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);border-color:rgb(213.2296875,132.515625,18.0703125)}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);background-image:none;border-color:rgb(213.2296875,132.515625,18.0703125)}.btn-warning:active:hover,.btn-warning:active:focus,.btn-warning:active.focus,.btn-warning.active:hover,.btn-warning.active:focus,.btn-warning.active.focus,.open>.btn-warning.dropdown-toggle:hover,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle.focus{color:#fff;background-color:rgb(213.2296875,132.515625,18.0703125);border-color:rgb(152.109375,94.53125,12.890625)}.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled.focus,.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:rgb(238.0078125,162.109375,54.4921875)}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:rgb(212.4719626168,62.5046728972,58.0280373832)}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);border-color:rgb(117.6074766355,28.0654205607,25.3925233645)}.btn-danger:hover{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);border-color:rgb(172.1345794393,41.0775700935,37.1654205607)}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);background-image:none;border-color:rgb(172.1345794393,41.0775700935,37.1654205607)}.btn-danger:active:hover,.btn-danger:active:focus,.btn-danger:active.focus,.btn-danger.active:hover,.btn-danger.active:focus,.btn-danger.active.focus,.open>.btn-danger.dropdown-toggle:hover,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle.focus{color:#fff;background-color:rgb(172.1345794393,41.0775700935,37.1654205607);border-color:rgb(117.6074766355,28.0654205607,25.3925233645)}.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled.focus,.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:rgb(212.4719626168,62.5046728972,58.0280373832)}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#6d7e00;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:rgba(0,0,0,0);box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:rgba(0,0,0,0)}.btn-link:hover,.btn-link:focus{color:rgb(153.119047619,177,0);text-decoration:none;background-color:rgba(0,0,0,0)}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:hsl(0,0%,46.7%);text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle,.btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:hsl(0,0%,33.5%);text-align:center;background-color:hsl(0,0%,93.5%);border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9 ;border-right:4px solid rgba(0,0,0,0);border-left:4px solid rgba(0,0,0,0)}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.5;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:hsl(0,0%,15%);text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#e2007a;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:hsl(0,0%,46.7%)}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:rgba(0,0,0,0);background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.5;color:hsl(0,0%,46.7%);white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9 }.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width: 992px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:hsl(0,0%,93.5%)}.nav>li.disabled>a{color:hsl(0,0%,46.7%)}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:hsl(0,0%,46.7%);text-decoration:none;cursor:not-allowed;background-color:rgba(0,0,0,0)}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:hsl(0,0%,93.5%);border-color:#6d7e00}.nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.5;border:1px solid rgba(0,0,0,0);border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:hsl(0,0%,93.5%) hsl(0,0%,93.5%) #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:hsl(0,0%,33.5%);cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:rgba(0,0,0,0)}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#e2007a}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width: 768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:21px;border:1px solid rgba(0,0,0,0)}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width: 992px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width: 992px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid rgba(0,0,0,0);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width: 992px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media(max-device-width: 480px)and (orientation: landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media(min-width: 992px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width: 992px){.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width: 992px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:14.5px 15px;font-size:18px;line-height:21px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media(min-width: 992px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:rgba(0,0,0,0);background-image:none;border:1px solid rgba(0,0,0,0);border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width: 992px){.navbar-toggle{display:none}}.navbar-nav{margin:7.25px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media(max-width: 991px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:rgba(0,0,0,0);border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:21px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width: 992px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:14.5px;padding-bottom:14.5px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);margin-top:7.5px;margin-bottom:7.5px}@media(min-width: 768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .radio .label,.navbar-form .checkbox label,.navbar-form .checkbox .label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width: 991px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width: 992px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:7.5px;margin-bottom:7.5px}.navbar-btn.btn-sm,.btn-group-sm>.navbar-btn.btn{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs,.btn-group-xs>.navbar-btn.btn{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:14.5px;margin-bottom:14.5px}@media(min-width: 992px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width: 992px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:rgb(93.5,93.5,93.5);background-color:rgba(0,0,0,0)}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}@media(max-width: 991px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:hover,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-brand{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-text{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav>li>a{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}@media(max-width: 991px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:rgb(16.15,16.15,16.15)}.navbar-inverse .navbar-link{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:hsl(0,0%,61.7%)}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:hover,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.alert{padding:15px;margin-bottom:21px;border:1px solid rgba(0,0,0,0);border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:hsl(92.5,44.4444444444%,84.4117647059%)}.alert-success hr{border-top-color:hsl(92.5,44.4444444444%,79.4117647059%)}.alert-success .alert-link{color:rgb(42.808988764,84.191011236,43.5224719101)}.alert-info{color:#31708f;background-color:#d9edf7;border-color:hsl(190,65.2173913043%,83.9803921569%)}.alert-info hr{border-top-color:hsl(190,65.2173913043%,78.9803921569%)}.alert-info .alert-link{color:rgb(35.984375,82.25,105.015625)}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:hsl(40.4,80.6451612903%,88.9215686275%)}.alert-warning hr{border-top-color:hsl(40.4,80.6451612903%,83.9215686275%)}.alert-warning .alert-link{color:rgb(102.2741116751,80.7817258883,43.7258883249)}.alert-danger{color:#a94442;background-color:#f2dede;border-color:hsl(350,43.4782608696%,85.9803921569%)}.alert-danger hr{border-top-color:hsl(350,43.4782608696%,80.9803921569%)}.alert-danger .alert-link{color:hsl(1.1650485437,43.829787234%,36.0784313725%)}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:hsl(0,0%,46.7%);cursor:not-allowed;background-color:hsl(0,0%,93.5%)}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:hsl(0,0%,46.7%)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#e2007a;border-color:#e2007a}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:rgb(255,175,218.185840708)}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus,button.list-group-item:hover,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:hover,button.list-group-item-success:focus{color:#3c763d;background-color:hsl(102.5,44.4444444444%,84.4117647059%)}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active,button.list-group-item-success.active:hover,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:hover,button.list-group-item-info:focus{color:#31708f;background-color:hsl(200,65.2173913043%,85.9803921569%)}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active,button.list-group-item-info.active:hover,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:hover,button.list-group-item-warning:focus{color:#8a6d3b;background-color:hsl(50.4,80.6451612903%,88.9215686275%)}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active,button.list-group-item-warning.active:hover,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:hover,button.list-group-item-danger:focus{color:#a94442;background-color:hsl(0,43.4782608696%,85.9803921569%)}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active,button.list-group-item-danger.active:hover,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.5;color:#6d7e00;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:hover,.pagination>li>a:focus,.pagination>li>span:hover,.pagination>li>span:focus{z-index:2;color:rgb(153.119047619,177,0);background-color:hsl(0,0%,93.5%);border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus,.pagination>.active>span,.pagination>.active>span:hover,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#e2007a;border-color:#e2007a}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:hsl(0,0%,46.7%);cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.breadcrumb{padding:8px 15px;margin-bottom:21px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/ "}.breadcrumb>.active{color:hsl(0,0%,46.7%)}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:hsl(0,0%,46.7%)}.label-default[href]:hover,.label-default[href]:focus{background-color:hsl(0,0%,36.7%)}.label-primary{background-color:#e2007a}.label-primary[href]:hover,.label-primary[href]:focus{background-color:rgb(175,0,94.4690265487)}.label-success{background-color:#2c882c}.label-success[href]:hover,.label-success[href]:focus{background-color:hsl(120,51.1111111111%,25.2941176471%)}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:rgb(48.5431472081,175.6903553299,213.4568527919)}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:rgb(236.015625,151.21875,30.984375)}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:rgb(201.4953271028,48.0841121495,43.5046728972)}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid hsl(0,0%,89.0784313725%);border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:rgba(0,0,0,0);border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{transform:translate(0, -25%);transition:transform .3s ease-out}.modal.in .modal-dialog{transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header:before,.modal-header:after{display:table;content:" "}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width: 1024px){.modal-lg{width:900px}}.popover{position:absolute;top:0;left:0;z-index:11000;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:hsl(0,0%,97%);border-bottom:1px solid hsl(0,0%,92%);border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.hidden{display:none !important}.affix{position:fixed}.visible-xs{display:none !important}.visible-sm{display:none !important}.visible-md{display:none !important}.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media(max-width: 767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media(max-width: 767px){.visible-xs-block{display:block !important}}@media(max-width: 767px){.visible-xs-inline{display:inline !important}}@media(max-width: 767px){.visible-xs-inline-block{display:inline-block !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-block{display:block !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-inline{display:inline !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-inline-block{display:inline-block !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-block{display:block !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-inline{display:inline !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-inline-block{display:inline-block !important}}@media(min-width: 10000px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media(min-width: 10000px){.visible-lg-block{display:block !important}}@media(min-width: 10000px){.visible-lg-inline{display:inline !important}}@media(min-width: 10000px){.visible-lg-inline-block{display:inline-block !important}}@media(max-width: 767px){.hidden-xs{display:none !important}}@media(min-width: 768px)and (max-width: 1023px){.hidden-sm{display:none !important}}@media(min-width: 1024px)and (max-width: 9999px){.hidden-md{display:none !important}}@media(min-width: 10000px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}@font-face{font-family:"fontello";src:url("../../fonts/fontello.woff2") format("woff2"),url("../../fonts/fontello.woff") format("woff");font-weight:normal;font-style:normal}[class^=fontello-]:before,[class*=" fontello-"]:before{font-family:"fontello";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fontello-facebook:before{content:""}.fontello-twitter:before{content:""}.fontello-globe:before{content:""}.fontello-rss-squared:before{content:""}.wizardWidget{border-bottom:1px solid #d4d4d4;*zoom:1;border-radius:0;margin-left:-1px;margin-right:-1px;overflow:hidden}.wizardWidget:before,.wizardWidget:after{display:table;line-height:0;content:""}.wizardWidget:after{clear:both}.wizardWidget ul.steps{padding:0;margin:0;list-style:none outside none}.wizardWidget ul.steps li{position:relative;float:left;padding:0 15px 0 30px;margin:0 0 0 1px;font-size:16px;color:#999;cursor:default;background:#ededed}.wizardWidget ul.steps li:before{width:0;height:0;position:absolute;content:"";top:-1px;left:-1px;transform:scale(1, 1.5);transform-origin:top}.wizardWidget ul.steps li:after{width:0;height:0;position:absolute;content:"";top:-1px;z-index:2;transform:scale(1, 1.5);transform-origin:top}.wizardWidget ul.steps li:first-child:before{border:none}.wizardWidget ul.steps li.complete{color:#468847;background:#f3f4f5}.wizardWidget ul.steps li.complete:hover{cursor:pointer;background:#e7eff8}.wizardWidget ul.steps li.complete:hover .chevron:before{border-left:14px solid #e7eff8}.wizardWidget ul.steps li.complete .chevron:before{border-left:14px solid #f3f4f5}.wizardWidget ul.steps li.active{color:#afcb08;background:#f1f6fc}.wizardWidget ul.steps li.active:after{border-left-color:#f1f6fc}.wizardWidget ul.steps li .badge{margin-right:8px}.wizardWidget ul.steps li:nth-child(1){z-index:10;padding-left:15px}.wizardWidget ul.steps li:nth-child(2){z-index:9}.wizardWidget ul.steps li:nth-child(3){z-index:8}.wizardWidget ul.steps li:nth-child(4){z-index:7}.wizardWidget ul.steps li:nth-child(5){z-index:6}.wizardWidget ul.steps li:nth-child(6){z-index:5}.wizardWidget ul.steps li:nth-child(7){z-index:4}.wizardWidget ul.steps li:nth-child(8){z-index:3}.wizardWidget ul.steps li:nth-child(9){z-index:2}.wizardWidget ul.steps li:nth-child(10){z-index:1}.wizardWidget .actions{float:right;padding-right:15px;line-height:44px;vertical-align:middle}.wizardWidget .actions a{margin-right:8px;font-size:12px;line-height:45px}.wizardWidget .actions .btn-prev i{margin-right:5px}.wizardWidget .actions .btn-next i{margin-left:5px}.wizardWidget ul li{height:46px;line-height:46px}.wizardWidget ul li:before{border-top:16.3333333333px inset rgba(0,0,0,0);border-bottom:16.3333333333px inset rgba(0,0,0,0);border-left:16.3333333333px solid #d4d4d4}.wizardWidget ul li:after{border-top:16.3333333333px inset rgba(0,0,0,0);border-bottom:16.3333333333px inset rgba(0,0,0,0);border-left:16.3333333333px solid #ededed;right:-15.3333333333px}.hideIfEmpty:empty{display:none}@media(hover: hover){.hoverHolder .hoverElement{display:none}.hoverHolder:hover .hoverElement{display:inherit}}html{height:100%}blockquote{margin:3px 3px 3px 15px;border-left:dotted 2px gray;padding:5px}p,ul{margin-bottom:10px}a{text-decoration:none;color:#6d7e00}a:hover{text-decoration:none;color:rgb(175.1785714286,202.5,0)}a.btn{text-decoration:none}del,ul.deleted,ol.deleted,li.deleted,blockquote.deleted,pre.deleted,div.deleted,p.deleted,h1.deleted,h2.deleted,h3.deleted,h4.deleted,h5.deleted{color:#800;text-decoration:line-through;font-weight:bold}ins,ul.inserted,ol.inserted,li.inserted,blockquote.inserted,pre.inserted,div.inserted,p.inserted,h1.inserted,h2.inserted,h3.inserted,h4.inserted,h5.inserted{color:#080;text-decoration:underline;font-weight:bold}del.space,ins.space,del.formatting,ins.formatting{font-style:italic;font-size:.8em;display:inline-block;margin-left:5px;margin-right:5px}label input,.label input,label textarea,.label textarea{font-weight:normal}button.link{background:rgba(0,0,0,0);border:none;align-items:normal;cursor:pointer;display:inline-block;font:inherit;height:auto;padding:0;perspective-origin:0 0;text-align:start;transform-origin:0 0;width:auto;-moz-appearance:none;-webkit-logical-height:1em;-webkit-logical-width:auto;box-sizing:content-box}@supports(-moz-appearance: none){button.link::-moz-focus-inner{border:none;padding:0}button.link:focus{outline-style:dotted;outline-width:1px}}.stdDropdown{display:block;width:100%;padding:6px 30px 6px 12px;margin:0;font-family:inherit;-moz-padding-start:calc(.75rem - 3px);font-size:inherit;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;word-wrap:normal;text-transform:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.stdDropdown:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}.stdDropdown.stdDropdownSmall{width:auto;display:inline;font-size:.8em;padding:3px 18px 3px 3px}.stdEqualCols{display:flex;width:100%}.stdEqualCols>*{flex-grow:1;flex-basis:10%}.stdEqualCols.stdPadding>*{padding-left:15px;padding-right:15px}.stdEqualCols.stdPadding>*:first-child{padding-left:0}.stdEqualCols.stdPadding>*:last-child{padding-right:0}.stdTwoCols{display:block;width:100%}.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled,.stdTwoCols .rightColumn{text-align:left;display:block}.stdTwoCols .leftColumn{font-weight:bold}@media screen and (max-width: 799px){.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled{padding-top:7px}.stdTwoCols .rightColumn{padding-bottom:7px}.stdTwoCols:first-child .leftColumn,.stdTwoCols:first-child .leftColumnUnstyled{padding-top:0}.stdTwoCols:last-child .rightColumn{padding-bottom:0}}@media screen and (min-width: 800px){.stdTwoCols{display:flex;flex-direction:row;width:100%}.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled,.stdTwoCols .rightColumn,.stdTwoCols .middleColumn{flex-grow:0;min-height:40px;padding-top:12px}.stdTwoCols .leftColumn{flex-basis:30%;text-align:right;padding-right:15px}.stdTwoCols .leftColumnUnstyled{flex-basis:30%;padding-right:15px}.stdTwoCols .middleColumn{flex-basis:40%;padding-left:15px}.stdTwoCols .rightColumn{flex-basis:70%;padding-left:15px}.stdTwoCols .middleColumn+.rightColumn{flex-basis:30%}.stdTwoCols .halfColumn{flex-basis:50%;padding-left:15px}.modal-body .stdTwoCols .leftColumn,.modal-body .stdTwoCols .leftColumnUnstyled{flex-basis:35%}.modal-body .stdTwoCols .middleColumn{flex-basis:35%}.modal-body .stdTwoCols .rightColumn{flex-basis:65%;padding-left:15px}}.alertNonPublicSection{margin:-10px 20px 20px 20px}.saveRow{text-align:center}.stdSortingWidget .list-group-item{cursor:move}.stdSortingWidget .list-group-item .sortIndicator{float:right}.stdSortingWidget .list-group-item.sortable-ghost{background-color:#eee}.stdSortingWidget .saveRow{margin-top:20px}.stdNonFormattedList{list-style-type:none;margin:0;padding:0}.stdNonFormattedList>li{margin:0;padding:0}.saveholder{clear:both;padding:10px;text-align:center}.alert-info a{color:rgb(86.9404761905,100.5,0)}.alert-info a:hover{color:rgb(153.119047619,177,0)}.alert-info a.btn.btn-primary{color:#fff}.alert-info a.btn.btn-primary:hover{color:#fff}.well{padding:0;position:relative;box-shadow:0 0 15px rgba(0,0,0,.4);background-color:#fff}.well h1,.well .primaryHeader{margin:0;color:#fff;background:#0a321e;background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px;overflow-wrap:break-word}.well h1 small,.well .primaryHeader small{color:#fff;font-size:12px}.well h1>h1,.well .primaryHeader>h1{margin:0;padding:0;background:rgba(0,0,0,0)}.well h1.stickyHeader,.well .primaryHeader.stickyHeader{position:sticky;position:-webkit-sticky;top:-5px;background:#0a321e;z-index:5}.well h1 .btnFullscreen,.well .primaryHeader .btnFullscreen{padding:0;float:right;margin-right:-10px;margin-top:-20px;color:hsla(0,0%,100%,.5)}.well h1 .btnFullscreen:hover,.well h1 .btnFullscreen.active,.well .primaryHeader .btnFullscreen:hover,.well .primaryHeader .btnFullscreen.active{color:hsla(0,0%,100%,.8)}.well h1 .btnFullscreen:active,.well h1 .btnFullscreen.active,.well .primaryHeader .btnFullscreen:active,.well .primaryHeader .btnFullscreen.active{color:#fff}.well h2.green,.well h3.green,.well .nav-header,.well legend.green,.well .greenHeader{margin:0;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px}.well h2.lightgreen,.well h3.lightgreen,.well .lightGreenHeader{margin:-1px;background:hsl(68.6153846154,92.4170616114%,91.3725490196%);background:linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;font-weight:bold;text-transform:uppercase}.well h2.darkgreen,.well h3.darkgreen,.well .darkGreenHeader{margin:0;color:#fff;background:#0a321e;background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px}.well .greenHeaderDropDown{float:right;margin-right:-10px}.well .greenHeaderDropDown .btn-link,.well .greenHeaderDropDown .btn-link:link{color:#fff;font-weight:normal}.well .greenHeaderDropDown:focus,.well .greenHeaderDropDown:hover{background-color:hsla(0,0%,100%,.2)}.well .greenHeaderDropDown .dropdown-menu>li>a{text-transform:none;text-shadow:none;font-weight:normal}.well .greenHeaderDropDown li.selected a::before{content:"✓";display:block;float:left;width:16px;margin-left:-16px;text-align:center}.well .greenHeaderExtraLink{float:right;text-decoration:none;font-size:12px;text-transform:none;font-weight:normal;color:rgb(64.880952381,75,0)}.well .greenHeader h2,.well .greenHeader h3{font-size:inherit;margin:0;font-weight:bold;display:inline-block}.well .content{padding:15px 20px 30px;overflow:visible}.well>.alert{margin:20px}.navbar{margin-bottom:0}.navbar .navbar-inner{background:none 0 0 rgba(0,0,0,0);filter:none;border:none;box-shadow:none;min-height:0;padding:0;text-align:right;margin-top:10px;border-radius:0}.navbar .nav{margin:0;float:right}.navbar .nav li a{display:inline;padding:0;margin-left:40px;color:#6d7e00;font-family:"Arvo",sans-serif;font-style:normal;font-weight:bold;text-transform:uppercase;text-decoration:none;font-size:18px;text-shadow:none}.navbar .nav li.active a,.navbar .nav li a:hover,.navbar .nav li a:focus,.navbar .nav li.active a:hover,.navbar .nav li.active a:focus{background:none;filter:none;color:#737373 !important;text-decoration:none}.navbar-toggle{box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.navbar-toggle:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .navbar-toggle:focus{box-shadow:none}.btn{font-family:"Arvo",sans-serif;font-weight:bold;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.btn:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .btn:focus{box-shadow:none}.span9 .btn{margin:10px 0 0 200px}.btn-primary{text-transform:uppercase;color:#fff;background:#e2007a;background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%)}.btn-link{border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.btn-link:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .btn-link:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}.table>thead>tr>th{border-bottom:none}.form-control[type=file]{padding-top:0;padding-bottom:0}.breadcrumb{background:none;filter:none;border-radius:0;margin:30px 0 5px;padding:0 15px}.breadcrumb,.breadcrumb .active{font-family:"Arvo",sans-serif;font-style:normal;font-weight:bold;text-transform:uppercase;font-size:15px;color:#737373}.breadcrumb li{text-shadow:none}.breadcrumb li>span{display:inline-block}.breadcrumb a{color:#6d7e00}.breadcrumb .pseudoLink{color:#6d7e00;cursor:pointer}legend,.legend{font-size:14px;border:none;font-weight:normal;margin:0;padding:0}.toggle .toggle-group .btn{border:none}.btn-link.btn-danger{color:#d9534f;font-weight:normal;border:none}.btn-link.btn-danger:hover{background:rgba(0,0,0,0);color:rgb(159.5514018692,38.0747663551,34.4485981308);border:none}.dropdown-menu li.checkbox label,.dropdown-menu li.checkbox .label{font-weight:normal;padding:0 0 0 30px}.dropdown-menu li.link span.icon{margin-left:-10px}.dropdown-menu li.link a{color:#6d7e00}.v-select .vs__open-indicator{cursor:pointer}@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.woff2) format("woff2"),url(../fonts/fontawesome-webfont.woff) format("woff");font-weight:400;font-style:normal}#gotoMainContent{color:rgba(0,0,0,0);position:absolute;left:10px;top:35px;border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}#gotoMainContent:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse #gotoMainContent:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}#gotoMainContent:link,#gotoMainContent:visited{color:rgba(0,0,0,0)}#gotoMainContent:focus{color:#6d7e00}body{font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;height:100%}#page{margin-left:auto;margin-right:auto}@media(min-width: 768px){#page{width:750px}}@media(min-width: 1024px){#page{width:1024px}}@media(min-width: 10000px){#page{width:1170px}}body.fullscreen #page{width:auto;margin-left:10px;margin-right:10px}.logoRow{display:flex;margin:14px 0 40px}.logoRow .homeLinkLogo{min-width:20%}.logoRow .homeLinkLogo>img{max-width:50%;max-height:200px}@media screen and (max-width: 480px){.logoRow .homeLinkLogo{text-align:center}.logoRow .homeLinkLogo>img{max-width:90%}}.over_footer_wrapper{min-height:100%;height:auto !important;height:100%;margin:0 auto -1.6em}#userLoginPanel{height:35px;background-color:#d3d3d3;display:flex;flex-direction:row}#userLoginPanel .username{flex-basis:50%;text-align:left;padding:5px 10px}#userLoginPanel .groups{flex-basis:50%;text-align:right;padding:5px 10px}a{border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}a:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse a:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}body>footer{height:1.6em;max-width:1024px;margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}body>footer p{height:1.6em;line-height:1.5em;margin-bottom:0;margin-top:0;white-space:nowrap}body>footer a:link,body>footer a:visited{color:#6d7e00}body>footer .version{display:inline-block;margin-left:30px;font-size:.8em}@media print{body>footer{display:none}}.footer_spacer{height:1.6em}.labelSubInfo{font-weight:normal;font-size:.8em}.antragsgruen-content>#sidebar{max-width:241px;float:left;padding-right:0;padding-left:15px}.antragsgruen-content .sidebar-box{min-width:200px}.antragsgruen-content .sidebar-box .box-header{margin:0;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;padding:5px 5px 5px 15px;margin:-1px;margin-bottom:12px}.antragsgruen-content .sidebar-box .box-content{padding:0 15px 15px 15px}.antragsgruen-content .sidebar-box:first-child .box-header{border-top-left-radius:0;border-top-right-radius:0}.antragsgruen-content>.antragsgruen-width-main{width:100%;max-width:783px;float:left}.antragsgruen-content>.antragsgruen-width-full{width:100%;float:left}.antragsgruen-content>*{position:relative;min-height:2px}.goBackLink{display:inline-block;margin-bottom:20px}.saveCancelRow{overflow:auto}.well .saveCancelRow.content{overflow:auto}.saveCancelRow .saveCol{float:right}.saveCancelRow .cancelCol{float:left}.toolbarBelowTitle,.toolbarAtBottom{padding:10px 19px;background:#f7f7f7;display:table;margin-left:-1px;margin-right:-1px;width:calc(100% + 2px)}.toolbarBelowTitle>*,.toolbarAtBottom>*{display:table-cell}.toolbarBelowTitle{border-bottom:solid 1px #aaa}.toolbarAtBottom{border-top:solid 1px #aaa}.motionPrevNextLinks{padding:5px 10px}.motionPrevNextLinks .prev{width:50%;text-align:left}.motionPrevNextLinks .next{width:50%;text-align:right}.stickyAdminDebugFooter{position:fixed;bottom:0;right:0;left:0;z-index:10;padding:0;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);display:table;width:100%}.stickyAdminDebugFooter>*{display:table-cell;padding:5px;vertical-align:top}.stickyAdminDebugFooter .adminHint{font-size:.8em;display:block}.stickyAdminDebugFooter .setterCol{width:100%}.stickyAdminDebugFooter #simulateAdminTime{width:200px;float:left;margin-right:10px}.stickyAdminDebugFooter h2{white-space:nowrap;margin:0;font-size:1.1em}.stickyAdminDebugFooter label,.stickyAdminDebugFooter .label{margin:0}*:fullscreen{overflow-x:hidden;overflow-y:auto}*:-webkit-full-screen{overflow-x:hidden;overflow-y:auto}*:-moz-full-screen{overflow-x:hidden;overflow-y:auto}*:-ms-fullscreen{overflow-x:hidden;overflow-y:auto}.contentPage{margin-left:-1px;margin-right:-1px}.contentPage .editCaller{float:right;font-weight:normal}.contentPage .textHolder>h1,.contentPage .textHolder>h2.green,.contentPage .textHolder h2.darkgreen{margin-left:-20px;margin-right:-20px}.contentPage img{max-width:100%;height:auto}.contentPageWelcome{overflow:auto}.contentPageWelcome.hasDeadline{min-height:135px}.contentPageWelcome .editCaller{float:right;margin-left:10px;font-weight:normal}.contentPageFeeds .editCaller{float:right}.contentSettingsToolbar input[type=text]{max-width:160px;display:inline-block}.contentSettingsToolbar .options{padding-top:5px}.contentSettingsToolbar .options label,.contentSettingsToolbar .options .label{font-weight:normal}.deadlineCircle{float:right;width:105px;height:105px;padding-top:20px;background:#e2007a;background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);text-align:center;vertical-align:middle;overflow:hidden;font-family:"Arvo",sans-serif;font-weight:bold;font-size:15px;line-height:17px;text-transform:uppercase;color:#fff;margin-left:30px;border-radius:90px}.downloadableFiles h2{font-size:1.2em}.downloadableFiles .deleteFile{color:#f77}.downloadableFiles .fileList{list-style-type:none}@media(hover: hover){.downloadableFiles .fileList li .deleteFile{opacity:.1}.downloadableFiles .fileList li:hover .deleteFile{opacity:1}.downloadableFiles .fileList li .deleteFile:focus{opacity:1}}.downloadableFiles .downloadableFilesUpload{display:flex}.downloadableFiles .downloadableFilesUpload>*{flex:0}.downloadableFiles .downloadableFilesUpload h3{margin:8px 0 0 0;flex-basis:150px;font-size:1em}.downloadableFiles .downloadableFilesUpload label,.downloadableFiles .downloadableFilesUpload .label{font-weight:normal}.downloadableFiles .downloadableFilesUpload .uploadCol{flex-basis:200px}.downloadableFiles .downloadableFilesUpload .titleCol{flex:1;max-width:300px}.documentsPage .editCaller{float:right;margin-left:10px;font-weight:normal}.documentsPage .downloadAndActions{text-align:right}.documentsPage .deleteGroupForm{display:inline;float:right;margin-right:15px}.documentsPage .deleteGroupForm .deleteGroupBtn{color:#f77;opacity:0}.documentsPage .deleteGroupForm .deleteGroupBtn:active,.documentsPage .deleteGroupForm .deleteGroupBtn:focus{opacity:1}.documentsPage .greenHeader:hover .deleteGroupForm .deleteGroupBtn{opacity:1}.documentsPage .deleteFileBtn{display:inline;margin-left:15px;color:#f77;opacity:0}.documentsPage .deleteFileBtn:active,.documentsPage .deleteFileBtn:focus{opacity:1}.documentsPage .motion .title:hover .deleteFileBtn{opacity:1}.documentsPage .btn.btn-link{padding:0;font-weight:normal}.documentsPage .fileAddForm{display:flex;flex-direction:row;margin-left:32px;margin-top:-25px;margin-bottom:40px}.documentsPage .fileAddForm .uploadCol label,.documentsPage .fileAddForm .uploadCol .label{font-weight:normal;color:#6d7e00}.consultationIndex{overflow-wrap:break-word}.consultationIndex .myImotionList .widthdrawn .firstLine{text-decoration:line-through}.consultationIndex .myImotionList .initiator .firstLine a{font-weight:bold}.consultationIndex .translateWidget{float:right;margin-left:20px}.motionList .date{color:#757676;display:block;position:absolute;margin:0}@media(min-width: 800px){.motionList .date{margin-left:20px}}@media(max-width: 799px){.motionList .date{margin-left:12px}}@media(max-width: 1023px){.motionList .date{position:relative;top:0;right:0;float:right}}.motionList .date .edited{font-size:.8em;display:inline-block;padding-right:10px}.motionList .motion{position:relative;width:100%;overflow-wrap:break-word}.motionList .motion:last-child{padding-bottom:0}.motionList .motion>.date{top:12px;right:12px}@media(max-width: 1023px){.motionList .motion>.date{top:0;right:-8px}}.motionList .motion>.title{margin-bottom:3px}.motionList .motion>.title .motionIcon{width:21px;margin-left:-24px;color:#6d7e00}.motionList .motion>.title a{color:#6d7e00;display:inline-block}.motionList .motion>.title a:hover,.motionList .motion>.title a:focus{color:rgb(20.7619047619,24,0)}.motionList .motion>.title a,.motionList .motion>.title .motionLink{font-weight:bold;text-indent:0;font-size:16px;line-height:18px;-webkit-hyphens:auto;hyphens:auto}.motionList .motion>.title .pdfLink{font-size:13px;color:#6d7e00;margin-left:10px;display:inline-block;font-weight:normal}.motionList .motion>.title .pdfLink a:hover{text-decoration:none;color:rgb(20.7619047619,24,0)}.motionList .motion.withdrawn .motionTitle,.motionList .motion.withdrawn .motionPrefix{text-decoration:line-through}.motionList .amendment.withdrawn .amendmentTitle{text-decoration:line-through}.motionList .motion.modified>.title a *,.motionList .motion.withdrawn>.title a *,.motionList .motion.moved>.title a *{opacity:.4}.motionList .motion.modified .amendment>a,.motionList .motion.withdrawn .amendment>a,.motionList .motion.moved .amendment>a{opacity:.4}.motionList .motion.modified h4.amendments,.motionList .motion.withdrawn h4.amendments,.motionList .motion.moved h4.amendments{opacity:.65}.motionList .amendment.modified>.title a,.motionList .amendment.withdrawn>.title a{opacity:.4}.motionList h4.amendments.amendmentsToggler{margin-top:-5px}.motionList h4.amendments.amendmentsToggler button{padding-left:0}.motionList h4.amendments.amendmentsToggler.closed .glyphicon-chevron-up{display:none}.motionList h4.amendments.amendmentsToggler.opened .glyphicon-chevron-down{display:none}.motionList ul.amendments.closed{display:none}.motionList ul.amendments{list-style-type:none;margin:10px 0 20px 0;padding:0}.motionList ul.amendments>li{margin-bottom:3px;position:relative}.motionList ul.amendments>li .motionIcon{margin-right:10px}.motionList ul.amendments>li>a{font-weight:bold;margin-right:5px}.motionList ul.amendments>li>.date{top:0;right:-8px}.motionList .status{font-style:italic;color:#484649}.motionList .womenQuota{font-size:.8em;margin-left:10px;display:inline-block}.motionListStd,.motionListFilterTags{list-style-type:none;margin:0 0 40px;padding:0}.motionListWithoutAgenda .motion{padding:12px 20px 17px 50px}.motionListWithoutAgenda .motion>.date{display:block}.motionListWithoutAgenda .motion>.title{padding-right:65px}.motionListWithoutAgenda .motion>.title .motionPrefix{display:inline-block}.motionListWithoutAgenda .motion>.title .motionPrefix:after{content:":"}.motionListWithoutAgenda .motion .info{font-style:italic;color:#737373}.motionListWithoutAgenda .motion .clearfix{display:none}.motionListWithoutAgenda h4.amendments{display:none}.motionListWithoutAgenda ul.amendments>li>.date{display:block}.motionListWithoutAgenda .privateCommentsIndicator{float:left;margin-left:-45px;margin-top:1px}.motionListBelowAgenda .motion{padding:12px 30px 17px 30px}.motionListBelowAgenda .motion>.date{display:none}.motionListBelowAgenda .motion>.title{font-family:"Arvo",sans-serif}.motionListBelowAgenda .motion>.title .motionIcon{display:none}.motionListBelowAgenda .motion>.title .motionPrefix{word-break:break-all;word-wrap:break-word;width:110px;float:left;left:30px;top:13px}.motionListBelowAgenda .motion>.title .motionTitle{display:block;margin-left:115px}.motionListBelowAgenda .motion>.title .pdfLink{display:none}.motionListBelowAgenda .motion .info{display:block;margin-left:115px}.motionListBelowAgenda .motion .clearfix{clear:both}.motionListBelowAgenda ul.amendments{margin-bottom:10px}@media screen and (min-width: 600px){.motionListBelowAgenda ul.amendments{margin-left:115px}}.motionListBelowAgenda ul.amendments>li>.amendmentTitle{float:left;width:110px;left:0;top:0}.motionListBelowAgenda ul.amendments>li>.date{display:none}.motionListBelowAgenda h4.amendments{margin-top:10px;margin-bottom:5px;font-family:"Arvo",sans-serif;font-weight:bold;color:#afcb08;font-size:14px}@media screen and (min-width: 600px){.motionListBelowAgenda h4.amendments{margin-left:115px}}.motionListBelowAgenda .privateCommentsIndicator{float:left;margin-left:-25px;margin-top:3px}.motionListPetitions .status{font-weight:bold;font-style:normal}.noMotionsYet{font-style:italic}.motionListWithinAgenda{list-style-type:none;margin:15px 0 0;padding:0;position:relative}.motionListWithinAgenda .motion>.title a{font-size:14px;line-height:16px}.motionListWithinAgenda ol{list-style-type:none;margin:0 0 0 30px;padding:0;clear:both}.motionListWithinAgenda ul.motions{list-style-type:none;padding:0}@media(min-width: 800px){.motionListWithinAgenda ul.motions{margin:0 0 0 50px}}@media(max-width: 799px){.motionListWithinAgenda ul.motions{margin:0 0 0 26px}}.motionListWithinAgenda ul.amendments>li>.date{right:3px}.motionListWithinAgenda .agendaItemAdder{padding-left:35px;margin-bottom:0;margin-top:-4px;display:flex;flex-direction:row;height:20px;overflow:hidden}.motionListWithinAgenda .agendaItemAdder .addEntry{flex:0;flex-basis:25%}.motionListWithinAgenda .agendaItemAdder .addDate{flex:0;flex-basis:25%}.motionListWithinAgenda .agendaItemAdder .spacer{flex:1}.motionListWithinAgenda .agendaItemAdder .showTimes{flex:0;flex-basis:25%;font-weight:normal}@media(hover: hover){.motionListWithinAgenda .agendaItemAdder>*{opacity:0}.motionListWithinAgenda .agendaItemAdder>*:focus-within{opacity:1}.motionListWithinAgenda:hover>.agendaItemAdder>*{opacity:1}.motionListWithinAgenda ol.agenda:hover>.agendaItemAdder>*{opacity:1}}.motionListWithinAgenda li.agendaItem{border:solid 1px rgba(0,0,0,0);position:relative}@media(min-width: 800px){.motionListWithinAgenda li.agendaItem{padding-left:20px}}@media(max-width: 799px){.motionListWithinAgenda li.agendaItem{padding-left:16px}}.motionListWithinAgenda li.agendaItem .delAgendaItem,.motionListWithinAgenda li.agendaItem .delAgendaItem:link,.motionListWithinAgenda li.agendaItem .delAgendaItem:visited{color:#f77;position:absolute;top:5px;right:10px}.motionListWithinAgenda li.agendaItem.agendaItemDate .delAgendaItem{top:30px}.motionListWithinAgenda li.agendaItem>div{margin-bottom:5px}@media(min-width: 800px){.motionListWithinAgenda li.agendaItem>div{padding:5px 10px 10px}}@media(max-width: 799px){.motionListWithinAgenda li.agendaItem>div{padding:5px 10px 10px 0}}.motionListWithinAgenda li.agendaItem>div>h3{overflow:visible;padding:3px;font-weight:normal}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>h3 .delAgendaItem{opacity:0}.motionListWithinAgenda li.agendaItem>div>h3:hover .delAgendaItem{opacity:1}.motionListWithinAgenda li.agendaItem>div>h3 .delAgendaItem:focus{opacity:1}}.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem{font-size:.7em;margin-left:10px}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem{opacity:0}.motionListWithinAgenda li.agendaItem>div>h3:hover .editAgendaItem{opacity:1}.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem:focus{opacity:1}}.motionListWithinAgenda li.agendaItem>div .motionCreateLink{float:right;text-align:left;margin-bottom:7px;text-indent:-7px;padding-left:18px;display:block}.motionListWithinAgenda li.agendaItem.editing>div>h3{display:none}.motionListWithinAgenda li.agendaItem.editing>div>.agendaItemEditForm{display:flex}.motionListWithinAgenda li.agendaItem.editing>div>.agendaDateEditForm{display:flex}.motionListWithinAgenda li.agendaItem.editing>ol>.agendaItemAdder{visibility:hidden !important}.motionListWithinAgenda li.agendaItem .motion>.date{top:0;right:3px}.motionListWithinAgenda li.agendaItem .motion>.title{margin-right:75px}.motionListWithinAgenda li.agendaItem .motion h4.amendments{font-size:16px}.motionListWithinAgenda li.agendaItem.agendaItemDate>div{padding-top:30px}.motionListWithinAgenda li.agendaItem.agendaItemDate h3{text-decoration:underline;margin-bottom:8px;font-weight:bold}.motionListWithinAgenda.agendaListEditing{padding-top:20px;padding-bottom:20px}.motionListWithinAgenda.agendaListEditing li.agendaItem>div{margin-bottom:0;padding-bottom:0;padding-top:0}.motionListWithinAgenda.agendaListEditing li.agendaItem.agendaItemDate>div{padding-top:30px}.motionListWithinAgenda .agendaItemEditForm{display:none;width:100%;flex-direction:row;padding-bottom:6px}.motionListWithinAgenda .agendaItemEditForm .code{margin-right:10px;flex-grow:0}.motionListWithinAgenda .agendaItemEditForm .time{margin-right:10px;flex-grow:0;flex-basis:80px;width:80px}.motionListWithinAgenda .agendaItemEditForm .time input{padding-left:7px;padding-right:7px}.motionListWithinAgenda .agendaItemEditForm .time .input-group-addon{cursor:pointer;padding-left:7px;padding-right:7px}.motionListWithinAgenda .agendaItemEditForm .title{margin-right:10px;flex-grow:1}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle{margin-right:10px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle .glyphicon-wrench{position:absolute;top:6px;left:10px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle .caret{margin-top:13px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-menu{min-width:240px}.motionListWithinAgenda .agendaItemEditForm .delete{flex-basis:30px;flex-grow:0}.motionListWithinAgenda .agendaItemEditForm .agendaMotionsRow{padding-top:5px;font-size:.8em;color:gray}.motionListWithinAgenda .agendaItemEditForm .motionType{white-space:nowrap;text-overflow:ellipsis;padding-right:0}.motionListWithinAgenda.noShowTimes h3 .time{display:none}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .time{display:none}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .code{width:80px;flex-basis:80px}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .motionType{max-width:170px;flex-basis:170px}.motionListWithinAgenda.showTimes>li{padding-left:50px}.motionListWithinAgenda.showTimes h3 .time{float:left;color:gray;font-size:.8em;padding-top:3px}.motionListWithinAgenda.showTimes li.agendaItem h3 .time{margin-left:-50px}.motionListWithinAgenda.showTimes li.agendaItem li.agendaItem h3 .time{margin-left:-100px}.motionListWithinAgenda.showTimes li.agendaItem li.agendaItem li.agendaItem h3 .time{margin-left:-150px}.motionListWithinAgenda.showTimes .agendaItemEditForm .code{flex-basis:50px}.motionListWithinAgenda.showTimes .agendaItemEditForm .motionType{flex-basis:140px}.motionListWithinAgenda .agendaDateEditForm{display:none;width:100%;flex-direction:row}.motionListWithinAgenda .agendaDateEditForm .dateSelector{width:285px;flex-basis:285px;flex-grow:0;margin-right:10px}.motionListWithinAgenda .agendaDateEditForm .dateSelector .input-group-addon{cursor:pointer}.motionListWithinAgenda .agendaDateEditForm .title{flex-grow:1;margin-right:10px}.motionListWithinAgenda .agendaDateEditForm .delete{flex-basis:30px;flex-grow:0}.motionListWithinAgenda h2,.motionListWithinAgenda h3{margin:0 0 5px;font-size:18px}.motionListWithinAgenda .moveHandle{float:left;font-size:1.5em;color:#d3d3d3;margin-left:-27px;cursor:move}.motionListWithinAgenda.showTimes>li>div .moveHandle{margin-left:-67px}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>.moveHandle{display:none}.motionListWithinAgenda li.agendaItem:hover>div>.moveHandle{display:block}}.motionListWithinAgenda .movePlaceholder{border:dotted 1px gray}.motionListFilterTags{margin:0}.motionListFilterTags .sortitem.motion{margin-bottom:20px}.motionListFilterTags .info{margin:0}.motionListFilterTags .abstract{margin-left:0;color:gray}.motionListFilterTags .stats{float:right}.motionListFilterTags .stats .comments{background-color:#e2007a}.motionListFilterTags .stats .amendments{background-color:#afcb08}.motionListFilterTags .stats .comments,.motionListFilterTags .stats .amendments{display:inline-block;padding:3px 6px;margin-left:10px;color:#fff;border-radius:3px}.motionListFilter .tagList{text-align:center;margin-bottom:15px}.motionListFilter .tagList .btn{margin:2px 4px}.motionListFilter .searchBar{margin-bottom:15px}.expandableRecentComments{margin-bottom:15px}.expandableRecentComments .commentList{display:flex;flex-direction:row;flex-wrap:wrap}.expandableRecentComments .commentListHolder{position:relative}.expandableRecentComments .showAllComments{display:none;text-align:center}.expandableRecentComments .showAllComments button{font-weight:normal}.expandableRecentComments.shortened .showAllComments{display:block;position:absolute;bottom:0;left:0;right:0;z-index:11}.expandableRecentComments.shortened .commentListHolder{overflow:hidden;max-height:340px}.expandableRecentComments.shortened .commentListHolder:after{content:"";display:block;position:absolute;bottom:0;height:70px;left:0;right:0;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);z-index:10}.expandableRecentComments .motionCommentHolder{flex-basis:50%;flex-grow:0;max-width:50%}.expandableRecentComments .motionCommentHolder:nth-child(even) .motionComment{margin-right:0}.expandableRecentComments .motionCommentHolder:nth-child(odd) .motionComment{margin-left:0}.expandableRecentComments .motionComment{margin-bottom:5px;font-size:.9em}.expandableRecentComments .motionComment .commentHeader{padding:5px}.expandableRecentComments .motionComment .date{padding:5px 5px 0 0}.expandableRecentComments .motionComment .commentText{padding:0 5px 5px 5px;min-height:59px}.expandableRecentComments .motionComment .commentText .glyphicon{font-size:.8em}.expandableRecentComments .motionComment .motionLink{padding:0 5px 5px 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.motionListTags #tagList{display:block;list-style-type:none;margin:0;padding-top:30px;padding-bottom:30px;text-align:center}.motionListTags #tagList>li{display:inline-block;padding:10px;background-color:#e2007a;border-radius:3px;font-size:16px;margin:10px}.motionListTags #tagList>li>a:link,.motionListTags #tagList>li #tag_list>li>a:visited{color:#fff}.motionListTags .motionTable{width:100%;margin:0 10px}.motionListTags .motionTable th{border-bottom:solid 1px #afcb08;font-size:.8em;line-height:2.5em;font-weight:600}.motionListTags .motionTable td{vertical-align:top;padding:.75em 0em .75em 0em}.motionListTags .motionTable tr.motion{border-top:solid 1px #afcb08}.motionListTags .motionTable tr.motion:first-child{border-top:none}.motionListTags .motionTable tr.amendment .titleCol .pdfLink{font-weight:400}.motionListTags .motionTable tr.amendment .titleCol .titleLink{font-weight:400}.motionListTags .motionTable .prefixCol{width:15%}.motionListTags .motionTable .titleCol{width:45%}.motionListTags .motionTable .titleCol .pdfLink{font-weight:600;font-size:.8em;float:right;margin-right:20px}.motionListTags .motionTable .titleCol .titleLink{font-weight:600}.motionListTags .motionTable .titleCol .titleLink a:link,.motionListTags .motionTable .titleCol .titleLink a:visited{color:#000}.motionListTags .motionTable .initiatorCol{width:35%}.motionListTags .motionTable .dateCol{width:15%}.motionListTags .motionTable .unscreened .titleCol .pdfLink{display:none}.motionListTags .motionTable .unscreened .titleCol .titleLink a:link,.motionListTags .motionTable .unscreened .titleCol .titleLink a:visited{font-weight:400;color:gray}.motionListTags .motionTable .privateCommentsIndicator{float:left;margin-left:-25px;margin-top:3px}.homeTagList ol{list-style:none;margin:15px 0;padding:0}.homeTagList ol>li{margin:0 0 15px 0;padding:0;clear:both}.homeTagList .tagLink{font-size:1.3em}.homeTagList .info{padding-left:24px;color:gray;float:right}.tagSelectToolbar{margin-bottom:20px}.tagSelectToolbar .selectHolder{text-align:right}.tagSelectToolbar select{display:inline-block;width:auto}.consultationPhasesWizard{margin-bottom:40px}.consultationPhasesWizard .wizard{border-bottom:none}.consultationPhasesWizard .wizard ul li{height:70px;line-height:70px}.consultationPhasesWizard .wizard ul li:before{border-top:24.3333333333px inset rgba(0,0,0,0);border-bottom:24.3333333333px inset rgba(0,0,0,0);border-left:24.3333333333px solid #d4d4d4}.consultationPhasesWizard .wizard ul li:after{border-top:24.3333333333px inset rgba(0,0,0,0);border-bottom:24.3333333333px inset rgba(0,0,0,0);border-left:24.3333333333px solid #ededed;right:-23.3333333333px}.consultationPhasesWizard .title{line-height:20px;font-weight:bold;margin-top:3px}.consultationPhasesWizard .permissions{line-height:14px;font-size:12px}#sidebar #sidebarOtherQueues{padding-right:15px}#sidebar .otherQueues .active{position:relative}#sidebar .otherQueues .active .glyphicon{position:absolute;left:15px;top:3px}#sidebar .otherQueues .activeLabel{font-size:.9em;font-style:italic}.speechAdmin .settings{display:flex;flex-direction:row;padding-bottom:5px}.speechAdmin .settings>*{flex:1}.speechAdmin .settings .settingsActive{line-height:35px;font-weight:normal;margin-bottom:0}.speechAdmin .settings .settingOpen{display:block;font-weight:normal;margin-bottom:0}.speechAdmin .settings .inactive{font-weight:bold;color:red}.speechAdmin .settings .settingsPolicy{text-align:right}.speechAdmin .settings .speakingTime{padding-left:30px;padding-right:25px}.speechAdmin .settings .deactivateOthers{font-size:.8em;font-style:italic}.speechAdmin .previousSpeakers{margin:0 auto;width:400px;border:dotted 1px #bdbdbd}.speechAdmin .previousSpeakers.invisible{visibility:hidden}.speechAdmin .previousSpeakers>header{padding:5px;position:relative}.speechAdmin .previousSpeakers>header .btn{position:absolute;right:0;top:0;font-weight:normal}.speechAdmin .previousSpeakers.previousShown>header{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .previousSpeakers.previousShown>header .btn-link{color:rgb(64.880952381,75,0)}.speechAdmin .previousSpeakers .previousLists{display:flex;flex-direction:row;width:100%}.speechAdmin .previousSpeakers .previousList{flex:1}.speechAdmin .previousSpeakers .previousList header{text-align:center}.speechAdmin .previousSpeakers .previousList header span{border-bottom:solid 1px gray}.speechAdmin .previousSpeakers .previousList ol{text-align:left}.speechAdmin .slots,.speechAdmin .previousList{list-style-type:none;margin:0 auto;padding:0;width:300px}.speechAdmin .slotEntry{margin:15px 0 0 0;border:solid 1px #bdbdbd;border-radius:3px;background-color:#f0f0f0;min-height:85px;padding:10px;position:relative;text-align:center;z-index:1}.speechAdmin .slotEntry .statusActive{font-style:italic}.speechAdmin .slotEntry .statusUpcoming{font-style:italic}.speechAdmin .slotEntry .start,.speechAdmin .slotEntry .stop{position:absolute;top:23px;right:5px}.speechAdmin .slotEntry.slotActive{background-color:#afa;box-shadow:0 3px 3px rgba(0,0,0,.25)}.speechAdmin .slotEntry .operations{left:0;border-right:solid 1px #bdbdbd;border-top:solid 1px #bdbdbd;border-top-right-radius:3px}.speechAdmin .operationStart,.speechAdmin .operationDelete{position:absolute;bottom:0;padding:0 5px;background-color:hsla(0,0%,100%,.5);font-size:12px;opacity:0;cursor:pointer;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .operationStart:focus,.speechAdmin .operationDelete:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .operationStart:focus,body.usingMouse .speechAdmin .operationDelete:focus{box-shadow:none}.speechAdmin .operationStart:focus,.speechAdmin .operationDelete:focus{opacity:1}.speechAdmin .slotPlaceholder:hover .operationStart,.speechAdmin .slotPlaceholder:hover .operationDelete,.speechAdmin .subqueueItem:hover .operationStart,.speechAdmin .subqueueItem:hover .operationDelete{opacity:1}.speechAdmin .operationStart{right:0;border-left:solid 1px #bdbdbd;border-top-left-radius:3px;border-top:solid 1px #bdbdbd;color:green}.speechAdmin .operationDelete{left:0;border-top:solid 1px #bdbdbd;border-right:solid 1px #bdbdbd;border-top-right-radius:3px;color:red}.speechAdmin .slotPlaceholder{position:relative;margin:0 15px 0 15px;border:dotted 1px #bdbdbd;background-color:#f0f0f0;min-height:85px;padding:10px;text-align:center}.speechAdmin .slotPlaceholder:nth-child(2){margin-top:-5px}.speechAdmin .slotPlaceholder:last-of-type{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.speechAdmin .slotPlaceholder .title{font-style:italic}.speechAdmin .slotPlaceholder.active{cursor:pointer;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .slotPlaceholder.active:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .slotPlaceholder.active:focus{box-shadow:none}.speechAdmin .slotPlaceholder.active:hover,.speechAdmin .slotPlaceholder.active:focus{background-color:hsl(0,0%,89.1176470588%);z-index:1;border-radius:3px;box-shadow:0 0 4px rgba(0,0,0,.25)}.speechAdmin .name{font-weight:bold;font-size:16px;line-height:1.5em}.speechAdmin .nameNobody{font-style:italic;font-size:16px;line-height:1.5em}.speechAdmin .iconBackground{position:absolute;left:15px;top:15px;font-size:50px;opacity:.15}.speechAdmin .isUpcoming:before{content:"";position:absolute;height:1px;width:500px;top:-6px;left:-100px;border-bottom:dotted 1px gray}.speechAdmin .subqueues{display:flex;flex-direction:row;justify-content:space-evenly;margin-top:50px}.speechAdmin .subqueue{width:230px}.speechAdmin .subqueue>header{text-align:center;font-weight:bold;text-transform:uppercase;border-bottom:solid 3px #d3d3d3;padding-bottom:5px;margin-bottom:10px}.speechAdmin .subqueue .empty{margin:5px 0 25px 0;font-style:italic;text-align:center}.speechAdmin .subqueue .subqueueAdder{margin-top:10px;text-align:center}.speechAdmin .subqueueItems{list-style-type:none;margin:0 auto;padding:0 15px}.speechAdmin .subqueueItem{margin:0;border:solid 1px #bdbdbd;border-radius:3px;min-height:60px;cursor:move;position:relative}.speechAdmin .subqueueItem .starter{position:absolute;left:0;right:0;top:0;bottom:0;padding:10px;background-color:#f0f0f0}.speechAdmin .operations{position:absolute;bottom:0}.speechAdmin .operations .moveSubqueue,.speechAdmin .operations .removeSlot{padding:0 5px;background-color:hsla(0,0%,100%,.5);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .operations .moveSubqueue:focus,.speechAdmin .operations .removeSlot:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .operations .moveSubqueue:focus,body.usingMouse .speechAdmin .operations .removeSlot:focus{box-shadow:none}.speechAdmin .operations .moveSubqueue:hover,.speechAdmin .operations .moveSubqueue:focus,.speechAdmin .operations .removeSlot:hover,.speechAdmin .operations .removeSlot:focus{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .operations .removeSlot{color:#f77}.speechAdmin .queueResetSection{text-align:right}.speechAdmin .dropPlaceholder{margin:3px 0;border:dotted 1px rgba(0,0,0,0);border-radius:3px;position:relative}.speechAdmin .dropPlaceholder .dropAdditionalSpace{position:absolute;left:0;right:0;top:-20px;bottom:-20px;z-index:100;display:none}.speechAdmin .dropPlaceholder .hoveredIndicator{visibility:hidden;text-align:center;font-size:12px;line-height:18px;font-weight:bold}.speechAdmin .dropPlaceholder.hoverable.hovered{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .dropPlaceholder.hoverable.hovered .hoveredIndicator{visibility:visible}.speechAdmin.dragging .dropPlaceholder.hoverable{border:dotted 1px #bdbdbd}.speechAdmin.dragging .dropPlaceholder.hoverable .dropAdditionalSpace{display:block}.currentSpeechPageWidth .speechAdminLink{float:right}.currentSpeechPageWidth .leftIcon{top:4px;font-size:18px;margin-right:4px}.currentSpeechPageWidth .activeSpeaker{font-size:16px;line-height:1.5em}.currentSpeechPageWidth .activeSpeaker .name{font-weight:bold}.currentSpeechPageWidth .remainingTime{font-size:16px;line-height:1.5em}.currentSpeechPageWidth .remainingTime .time{font-weight:bold}.currentSpeechPageWidth .remainingTime .over{color:red}.currentSpeechPageWidth .upcomingSpeaker{margin-top:20px;font-size:16px;line-height:1.5em}.currentSpeechPageWidth .upcomingSpeakerList{list-style-type:none;display:inline-block;margin:0;padding:0}.currentSpeechPageWidth .upcomingSpeakerList>*{display:inline}.currentSpeechPageWidth .upcomingSpeakerList>*:before{content:", ";display:inline}.currentSpeechPageWidth .upcomingSpeakerList>*:first-child:before{content:""}.currentSpeechPageWidth .upcomingSpeakerList .label{margin-left:5px}.currentSpeechPageWidth .appliedMe{display:inline-block;vertical-align:middle}.currentSpeechPageWidth .appliedMe .btnWithdraw{font-weight:normal;padding:0 5px;font-size:75%}.currentSpeechFullPage .speechAdminLink{margin-top:15px;margin-right:20px}.currentSpeechFullPage .activeSpeaker .name{margin-top:20px;margin-bottom:20px;text-align:center}.currentSpeechFullPage .remainingTime{text-align:center}.currentSpeechFullPage .waitingMultiple .name{vertical-align:top}.currentSpeechFullPage .waitingMultiple .applyOpenerPoo{font-weight:normal}.currentSpeechFullPage .waitingMultiple .notPossible{margin-top:27px;font-style:italic;font-size:.8em}.currentSpeechFullPage .waitingSubqueues{margin-left:26px;display:flex;flex-direction:row;justify-content:center;width:100%}.currentSpeechFullPage .waitingSubqueues>*{flex:1;display:flex;flex-direction:column}.currentSpeechFullPage .waitingSubqueues .header .name{vertical-align:middle;font-size:1.2em;font-weight:bold;display:inline-block;padding-right:10px}.currentSpeechFullPage .waitingSubqueues .applied{line-height:35px;vertical-align:middle}.currentSpeechFullPage .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.currentSpeechFullPage .waitingSubqueues .applyHolder{align-self:flex-start;margin-top:auto}.currentSpeechFullPage .waitingSubqueues .applyHolder form{display:inline-block;vertical-align:middle}.currentSpeechFullPage .waitingSubqueues .applyHolder button{margin-right:15px}.currentSpeechFullPage .waitingSubqueues .appliedMe{display:inline-block}.currentSpeechFullPage .waitingSubqueues .loginWarning{display:inline-block;margin-left:-15px;font-size:.8em;margin-right:15px;white-space:nowrap}.currentSpeechFullPage .nameList{display:block;margin-top:30px;margin-bottom:50px;padding-left:1.4em}.currentSpeechFullPage .nameList>li{font-size:14px;line-height:1.5em;font-size:16px}.currentSpeechFullPage .nameList>li .leftIcon{float:left;margin-left:-50px}.currentSpeechFullPage .waitingSingle .nameList{padding-left:50px}.currentSpeechFullPage .waitingSingle .nameList>li{margin-top:20px;margin-bottom:20px;font-weight:bold}.currentSpeechFullPage .waitingSingle .applyOpenerPoo{font-weight:normal;margin-top:20px}.currentSpeechFullPage .apply{max-width:300px}.currentSpeechInline .remainingTime{padding-left:26px;margin-top:10px}.currentSpeechInline .waitingMultiple{margin-top:20px}.currentSpeechInline .waitingMultiple header{font-size:16px;line-height:1.5em}.currentSpeechInline .waitingMultiple .notPossible{line-height:35px;vertical-align:middle;margin-left:27px;font-style:italic;font-size:.8em}.currentSpeechInline .waitingSubqueues{margin-left:26px;display:table}.currentSpeechInline .waitingSubqueues>*{display:table-row}.currentSpeechInline .waitingSubqueues .name{display:table-cell;width:200px;line-height:35px;vertical-align:middle}.currentSpeechInline .waitingSubqueues .applied{display:table-cell;line-height:35px;vertical-align:middle}.currentSpeechInline .waitingSubqueues .applied button{margin-right:15px}.currentSpeechInline .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.currentSpeechInline .waitingSubqueues .applied form{display:inline-block;vertical-align:middle}.currentSpeechInline .waitingSubqueues .appliedMe{display:inline-block}.currentSpeechInline .waitingSubqueues .loginWarning{display:inline-block;margin-left:-15px;font-size:.8em;margin-right:15px;white-space:nowrap}.currentSpeechInline .waitingSingle{margin-top:30px}.currentSpeechInline .waitingSingle header{font-size:16px;line-height:1.5em}.currentSpeechInline .waitingSingle .apply{margin-left:25px}.currentSpeechInline .waitingSingle .apply .notPossible{font-style:italic;font-size:.8em}.currentSpeechInline .waitingSingle .applyOpener,.currentSpeechInline .waitingSingle .applyOpenerPoo{margin-top:10px}.currentSpeechInline .waitingSingle .loginWarning{display:inline-block;font-size:.8em;white-space:nowrap}.currentSpeechInline .waitingSingle form{margin-top:10px;display:inline-block;vertical-align:middle}.currentSpeechInline .nameList{display:inline-block;list-style:none;margin:0 10px 0 5px;padding:0;font-size:0}.currentSpeechInline .nameList:before{display:inline-block;content:"(";font-size:12px}.currentSpeechInline .nameList:after{display:inline-block;content:")";font-size:12px}.currentSpeechInline .nameList>li{font-size:12px;display:inline-block}.currentSpeechInline .nameList>li:not(:first-child):before{display:inline-block;content:",";padding-right:5px}.currentSpeechInline .applyOpenerPoo{font-weight:normal;margin-left:20px}.currentSpeechFooter{position:fixed;bottom:0;right:0;left:0;width:100%;z-index:10;padding:0;background:#fff;border:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4)}*:fullscreen .currentSpeechFooter{display:none}*:-webkit-full-screen .currentSpeechFooter{display:none}*:-moz-full-screen .currentSpeechFooter{display:none}*:-ms-fullscreen .currentSpeechFooter{display:none}body.fullscreen .currentSpeechFooter{display:none}.currentSpeechFooter .speechUser{display:flex;flex-direction:row}.currentSpeechFooter .widgetTitle{flex-basis:160px;font-size:16px;line-height:35px;vertical-align:middle;margin:0;padding:5px 10px;background-color:#eee}.currentSpeechFooter .widgetTitle .speechAdminLink{float:right}.currentSpeechFooter .activeSpeaker{flex-grow:1;flex-basis:30%;padding:5px 10px;font-size:16px;line-height:35px}.currentSpeechFooter .activeSpeaker .label{vertical-align:middle}.currentSpeechFooter .activeSpeaker .title{font-weight:bold}.currentSpeechFooter .activeSpeaker .remainingTime{float:right}.currentSpeechFooter .activeSpeaker .over{color:red}.currentSpeechFooter .waitingMultiple{display:flex;flex-grow:1;flex-basis:50%;flex-direction:row;padding:5px 10px}.currentSpeechFooter .waitingMultiple header{font-size:16px;line-height:35px}@media(max-width: 799px){.currentSpeechFooter .speechUser.multiple-queues .widgetTitle{display:none}.currentSpeechFooter .speechUser.multiple-queues .activeSpeaker{flex-basis:33%}.currentSpeechFooter .speechUser.multiple-queues .waitingMultiple{flex-basis:66%}.currentSpeechFooter .speechUser.multiple-queues .waitingMultiple.isApplying .notApplyingHere{display:none}.currentSpeechFooter .speechUser.multiple-queues .subqueue{line-height:25px}.currentSpeechFooter .speechUser.multiple-queues .name .glyphicon{display:none}.currentSpeechFooter .speechUser.multiple-queues .applyOpenerPoo{display:none}.currentSpeechFooter .speechUser.multiple-queues .applyBtn{margin-top:0}}.currentSpeechFooter .waitingSingle{padding:5px 10px;flex-basis:50%;flex-grow:1}.currentSpeechFooter .waitingSingle .btnApply{margin-top:7px}.currentSpeechFooter .waitingSingle .appliedMe{margin-top:5px}.currentSpeechFooter .waitingSingle form{display:inline-block;vertical-align:middle}.currentSpeechFooter .waitingSingle .subqueue{display:flex;flex-direction:row}.currentSpeechFooter .subqueue{margin:0 10px;padding:0 0 0 10px;background-color:#eee;border-radius:3px;line-height:33px;vertical-align:middle}.currentSpeechFooter .subqueue .nameNumber{white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis}.currentSpeechFooter .subqueue .name{font-weight:bold;margin-right:7px}.currentSpeechFooter .subqueue .number{font-size:.8em}.currentSpeechFooter .subqueue .number:before{content:"(";display:inline-block}.currentSpeechFooter .subqueue .number:after{content:")";display:inline-block;margin-right:10px}.currentSpeechFooter .subqueue .applyBtn{line-height:20px;height:23px;margin-top:5px;margin-right:10px}.currentSpeechFooter .subqueue form{max-width:200px}.currentSpeechFooter .appliedMe{display:inline-block;vertical-align:middle}.currentSpeechFooter .appliedMe .btnWithdraw{font-weight:normal;padding:0 5px;font-size:75%}.currentSpeechFooter .applyOpenerPoo{font-weight:normal;margin-left:10px}.currentSpeechFooter .notPossible{font-style:italic;font-size:.8em;margin-top:10px}.currentSpeechFooter .loginWarning{display:inline-block;font-size:.8em;margin-right:15px;white-space:nowrap}.votingCommon .remainingTime{font-size:16px;line-height:1.5em}.votingCommon .remainingTime .time{font-weight:bold}.votingCommon .remainingTime .over{color:red}.votingCommon .votingListCommon{display:block;margin:0;padding:0;clear:both}.votingCommon .votingListCommon>li{display:flex;flex-direction:row;flex-wrap:wrap;width:100%;padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ccc}.votingCommon .votingListCommon>li.voteListShown{border-bottom:none;padding-bottom:0}.votingCommon .votingListCommon>li.abstentions>div{width:100%;font-style:italic;font-weight:bold;text-align:right}.votingCommon .votingListCommon>li .titleLink{flex-grow:1;flex-basis:40%}.votingCommon .votingListCommon>li .titleGroupName{font-weight:bold}.votingCommon .votingListCommon>li .votesDetailed{flex-grow:1;flex-basis:40%}.votingCommon .votingListCommon>li .result{flex-grow:0;flex-basis:20%}.votingCommon .votingListCommon>li .votingOptions,.votingCommon .votingListCommon>li .voted{flex-basis:230px;flex-grow:0;text-align:right}.votingCommon .votingListCommon>li.answer_template_2 .votesDetailed{flex-basis:20%;flex-grow:0}.votingCommon .votingListCommon>li:last-child{border-bottom:none}.votingCommon .votingListCommon>li .btnShowVotes{font-weight:normal}.votingCommon .votingListCommon>li .quorumCounter{font-weight:normal}.votingCommon .votingListAdmin .voteResults{display:block}.votingCommon .votesDetailed table{width:100%;table-layout:fixed}.votingCommon .votesDetailed thead th{text-align:center}.votingCommon .votesDetailed th{text-align:center}.votingCommon .votesDetailed td{text-align:center}.votingCommon .titleLink{line-height:16px;overflow:hidden;font-weight:bold}.votingCommon .titleLink>div{margin-bottom:7px}.votingCommon .amendmentBy{font-size:.8em;color:#888}.votingCommon .noVotingsYet{padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ccc}.votingCommon .noVotingsYet .alert{margin-bottom:0}.votingCommon .votingOptions button{margin-left:5px}.votingCommon .result{text-align:right;white-space:nowrap}.votingCommon .result .accepted{color:#afcb08}.votingCommon .result .rejected{color:#f77}.votingCommon .votingFooter{padding-top:10px;border-top:solid 1px #ccc}.votingCommon .downloadResults{text-align:right;margin-bottom:10px}.votingCommon .downloadResults .btn{font-weight:normal}.votingCommon .votingExplanation .glyphicon{margin-right:3px}.votingCommon .publicHint{padding-left:16px}.currentVotingWidget .votingsAdminLink{float:right}.currentVotingWidget .remainingTime{float:right}.currentVotingWidget .votingsAdminLink+.voteList{border-top:solid 1px #ccc}.currentVotingWidget .votingExplanation{margin-top:15px;font-size:.9em;color:#555}.currentVotingWidget .votingFooter{display:flex;flex-direction:row;width:100%}.currentVotingWidget .votingFooter .votedCounter{flex:1}.currentVotingWidget .votingFooter .showAll{flex:1;text-align:right}.manageVotings .settingsToggleGroup .btn-link{color:#484649}.manageVotings .settingsToggleGroup .btn-link:hover{color:hsl(280,2.0979020979%,38.0392156863%)}.manageVotings .settingsToggleGroup .btn{padding-top:0;padding-bottom:0}.manageVotings .btnRemove{float:right;color:#f77}.manageVotings .activateHeader{font-weight:bold;float:right;color:#fff;text-transform:none;text-shadow:none;font-size:14px}.manageVotings .votingSettingsSummary{padding-bottom:10px;margin-bottom:10px;border-bottom:solid 1px #ccc}.manageVotings .votingVisibility span{margin-left:5px;display:inline-block}.manageVotings .prepActions .removeBtn{color:#f77}.manageVotings .addingItemsForm{padding-top:10px;padding-bottom:10px}.manageVotings .addingItemsForm button{font-weight:normal}.manageVotings .addingItemsForm .addingMotions select{max-width:450px;display:inline-block}.manageVotings .activityLog{display:block;list-style-type:none;margin:0;padding:0}.manageVotings .activityLog.closed{max-height:45px;overflow:hidden;position:relative}.manageVotings .activityLog.closed:before{content:"";display:block;position:absolute;bottom:0;left:0;right:0;height:45px;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);pointer-events:none}.manageVotings .activityOpener,.manageVotings .activityCloser{float:right}.manageVotings .activityOpener .btn,.manageVotings .activityCloser .btn{font-weight:normal}.manageVotings .votingOperations{float:right}.manageVotings .votingSettings label,.manageVotings .votingSettings .label{display:block;margin-bottom:15px}.manageVotings .votingSettings .btnDelete{float:right;color:#f77}.manageVotings .votingSettings fieldset{margin-bottom:15px}.manageVotings .votingSettings fieldset legend{font-weight:700}.manageVotings .votingSettings fieldset .hint{font-size:.8em}.manageVotings .votingSettings fieldset label,.manageVotings .votingSettings fieldset .label{display:inline-block;font-weight:normal;margin-right:15px;margin-bottom:0}.manageVotings .votingSettings fieldset.inputWithLabelHolder label,.manageVotings .votingSettings fieldset.inputWithLabelHolder .label{display:table;max-width:200px}.manageVotings .votingSettings fieldset.inputWithLabelHolder label input,.manageVotings .votingSettings fieldset.inputWithLabelHolder .label input{min-width:80px}.votingResultTable{table-layout:fixed;width:100%}.votingResultTable th{text-align:center;vertical-align:bottom}.votingResultTable td{text-align:center}.votingResultTable .total{font-weight:bold}.votingAdderForm .btnAddOpener{color:#afcb08;font-weight:normal}.votingDataActions{display:flex;flex-direction:row;width:100%;border-bottom:solid 1px #ccc;padding-bottom:10px}.votingDataActions .votingDetails ul{display:inline;list-style-type:none;margin:0;padding:0}.votingDataActions .votingDetails ul>li{display:inline;margin:0;padding:0}.votingDataActions .votingDetails ul>li:before{content:", "}.votingDataActions .votingDetails ul>li:first-child:before{content:""}.votingDataActions .data{flex-grow:1;flex-direction:row;flex-wrap:wrap}.votingDataActions .actions{flex-basis:360px;flex-grow:1;text-align:right}.votingDataActions .actions>.btn,.votingDataActions .actions>.btn-group{margin-left:5px}.v-vote-list{display:flex;flex-direction:row;width:100%;margin-top:20px}.v-vote-list .regularVoteList{flex-basis:25%;flex-grow:1}.v-vote-list .regularVoteList.notVotedList{color:gray}.v-vote-list .regularVoteList .voteWeight{font-weight:bold;white-space:nowrap}.v-vote-list .regularVoteList ul{display:block;list-style-type:none;padding:0;margin:0}.v-vote-list .regularVoteList ul li{display:block;padding:0;margin:0}.v-vote-list .regularVoteList .userGroupName{margin-top:10px;text-decoration:underline}.v-vote-list .regularVoteList .none{font-style:italic}.v-vote-list .userGroupSetterOpener{white-space:normal}.v-vote-list .userGroupSetter{display:flex;flex-direction:row}@media(hover: hover){.v-vote-list .userGroupSetter{opacity:0}.v-vote-list .showingSelector .userGroupSetter{opacity:1}}.v-vote-list .voteListHolder:hover .userGroupSetter{visibility:visible}.v-vote-list .userGroupSetter .btn{font-weight:normal}.contentVotingResult{display:flex;width:100%}.contentVotingResult>*{flex-basis:25%;padding-left:15px;padding-right:15px}.contentVotingResult>*:first-child{padding-left:0}.contentVotingResult>*:last-child{padding-right:0}.motionTextFormattings{position:relative;margin-left:0;text-rendering:optimizeLegibility;font-size:16px;-webkit-hyphens:auto;hyphens:auto}.motionTextFormattings span.underline{border-bottom:solid 1px #000}.motionTextFormattings span.strike{text-decoration:line-through}.motionTextFormattings h1,.well .motionTextFormattings h1{background:none;color:#000;text-transform:none;font-weight:bold;text-shadow:none;padding:0;font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1.5em}.motionTextFormattings h2{margin:0;font-size:1.4em}.motionTextFormattings h3{margin:0;font-size:1.3em}.motionTextFormattings h4{margin:0;font-size:1.2em}.motionTextFormattings ol{counter-reset:antragsgruen-counter;list-style:none}.motionTextFormattings ol[start="1"]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol[start="2"]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol[start="3"]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol[start="4"]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol[start="5"]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol[start="6"]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol[start="7"]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol[start="8"]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol[start="9"]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol[start="10"]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol[start="11"]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol[start="12"]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol[start="13"]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol[start="14"]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol[start="15"]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol[start="16"]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol[start="17"]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol[start="18"]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol[start="19"]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol[start="20"]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol[start="21"]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol[start="22"]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol[start="23"]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol[start="24"]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol[start="25"]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol[start="26"]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol[start="27"]{counter-reset:antragsgruen-counter 26}.motionTextFormattings ol[start="28"]{counter-reset:antragsgruen-counter 27}.motionTextFormattings ol[start="29"]{counter-reset:antragsgruen-counter 28}.motionTextFormattings ol[start="30"]{counter-reset:antragsgruen-counter 29}.motionTextFormattings ol[start="31"]{counter-reset:antragsgruen-counter 30}.motionTextFormattings ol[start="32"]{counter-reset:antragsgruen-counter 31}.motionTextFormattings ol[start="33"]{counter-reset:antragsgruen-counter 32}.motionTextFormattings ol[start="34"]{counter-reset:antragsgruen-counter 33}.motionTextFormattings ol[start="35"]{counter-reset:antragsgruen-counter 34}.motionTextFormattings ol[start="36"]{counter-reset:antragsgruen-counter 35}.motionTextFormattings ol[start="37"]{counter-reset:antragsgruen-counter 36}.motionTextFormattings ol[start="38"]{counter-reset:antragsgruen-counter 37}.motionTextFormattings ol[start="39"]{counter-reset:antragsgruen-counter 38}.motionTextFormattings ol[start="40"]{counter-reset:antragsgruen-counter 39}.motionTextFormattings ol[start="41"]{counter-reset:antragsgruen-counter 40}.motionTextFormattings ol[start="42"]{counter-reset:antragsgruen-counter 41}.motionTextFormattings ol[start="43"]{counter-reset:antragsgruen-counter 42}.motionTextFormattings ol[start="44"]{counter-reset:antragsgruen-counter 43}.motionTextFormattings ol[start="45"]{counter-reset:antragsgruen-counter 44}.motionTextFormattings ol[start="46"]{counter-reset:antragsgruen-counter 45}.motionTextFormattings ol[start="47"]{counter-reset:antragsgruen-counter 46}.motionTextFormattings ol[start="48"]{counter-reset:antragsgruen-counter 47}.motionTextFormattings ol[start="49"]{counter-reset:antragsgruen-counter 48}.motionTextFormattings ol[start="50"]{counter-reset:antragsgruen-counter 49}.motionTextFormattings ol[start="51"]{counter-reset:antragsgruen-counter 50}.motionTextFormattings ol[start="52"]{counter-reset:antragsgruen-counter 51}.motionTextFormattings ol[start="53"]{counter-reset:antragsgruen-counter 52}.motionTextFormattings ol[start="54"]{counter-reset:antragsgruen-counter 53}.motionTextFormattings ol[start="55"]{counter-reset:antragsgruen-counter 54}.motionTextFormattings ol[start="56"]{counter-reset:antragsgruen-counter 55}.motionTextFormattings ol[start="57"]{counter-reset:antragsgruen-counter 56}.motionTextFormattings ol[start="58"]{counter-reset:antragsgruen-counter 57}.motionTextFormattings ol[start="59"]{counter-reset:antragsgruen-counter 58}.motionTextFormattings ol[start="60"]{counter-reset:antragsgruen-counter 59}.motionTextFormattings ol[start="61"]{counter-reset:antragsgruen-counter 60}.motionTextFormattings ol[start="62"]{counter-reset:antragsgruen-counter 61}.motionTextFormattings ol[start="63"]{counter-reset:antragsgruen-counter 62}.motionTextFormattings ol[start="64"]{counter-reset:antragsgruen-counter 63}.motionTextFormattings ol[start="65"]{counter-reset:antragsgruen-counter 64}.motionTextFormattings ol[start="66"]{counter-reset:antragsgruen-counter 65}.motionTextFormattings ol[start="67"]{counter-reset:antragsgruen-counter 66}.motionTextFormattings ol[start="68"]{counter-reset:antragsgruen-counter 67}.motionTextFormattings ol[start="69"]{counter-reset:antragsgruen-counter 68}.motionTextFormattings ol[start="70"]{counter-reset:antragsgruen-counter 69}.motionTextFormattings ol[start="71"]{counter-reset:antragsgruen-counter 70}.motionTextFormattings ol[start="72"]{counter-reset:antragsgruen-counter 71}.motionTextFormattings ol[start="73"]{counter-reset:antragsgruen-counter 72}.motionTextFormattings ol[start="74"]{counter-reset:antragsgruen-counter 73}.motionTextFormattings ol[start="75"]{counter-reset:antragsgruen-counter 74}.motionTextFormattings ol[start="76"]{counter-reset:antragsgruen-counter 75}.motionTextFormattings ol[start="77"]{counter-reset:antragsgruen-counter 76}.motionTextFormattings ol[start="78"]{counter-reset:antragsgruen-counter 77}.motionTextFormattings ol[start="79"]{counter-reset:antragsgruen-counter 78}.motionTextFormattings ol[start="80"]{counter-reset:antragsgruen-counter 79}.motionTextFormattings ol[start="81"]{counter-reset:antragsgruen-counter 80}.motionTextFormattings ol[start="82"]{counter-reset:antragsgruen-counter 81}.motionTextFormattings ol[start="83"]{counter-reset:antragsgruen-counter 82}.motionTextFormattings ol[start="84"]{counter-reset:antragsgruen-counter 83}.motionTextFormattings ol[start="85"]{counter-reset:antragsgruen-counter 84}.motionTextFormattings ol[start="86"]{counter-reset:antragsgruen-counter 85}.motionTextFormattings ol[start="87"]{counter-reset:antragsgruen-counter 86}.motionTextFormattings ol[start="88"]{counter-reset:antragsgruen-counter 87}.motionTextFormattings ol[start="89"]{counter-reset:antragsgruen-counter 88}.motionTextFormattings ol[start="90"]{counter-reset:antragsgruen-counter 89}.motionTextFormattings ol[start="91"]{counter-reset:antragsgruen-counter 90}.motionTextFormattings ol[start="92"]{counter-reset:antragsgruen-counter 91}.motionTextFormattings ol[start="93"]{counter-reset:antragsgruen-counter 92}.motionTextFormattings ol[start="94"]{counter-reset:antragsgruen-counter 93}.motionTextFormattings ol[start="95"]{counter-reset:antragsgruen-counter 94}.motionTextFormattings ol[start="96"]{counter-reset:antragsgruen-counter 95}.motionTextFormattings ol[start="97"]{counter-reset:antragsgruen-counter 96}.motionTextFormattings ol[start="98"]{counter-reset:antragsgruen-counter 97}.motionTextFormattings ol[start="99"]{counter-reset:antragsgruen-counter 98}.motionTextFormattings ol[start="100"]{counter-reset:antragsgruen-counter 99}.motionTextFormattings ol>li{counter-increment:antragsgruen-counter;position:relative}.motionTextFormattings ol>li::before{content:counter(antragsgruen-counter) ".";position:absolute;left:-40px;top:0}.motionTextFormattings ol>li[value]::before{content:attr(value) "."}.motionTextFormattings ol>li[value="1"]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value="2"]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value="3"]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value="4"]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value="5"]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value="6"]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value="7"]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value="8"]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value="9"]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value="10"]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value="11"]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value="12"]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value="13"]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value="14"]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value="15"]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value="16"]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value="17"]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value="18"]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value="19"]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value="20"]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value="21"]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value="22"]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value="23"]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value="24"]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value="25"]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value="26"]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol>li[value="27"]{counter-reset:antragsgruen-counter 26}.motionTextFormattings ol>li[value="28"]{counter-reset:antragsgruen-counter 27}.motionTextFormattings ol>li[value="29"]{counter-reset:antragsgruen-counter 28}.motionTextFormattings ol>li[value="30"]{counter-reset:antragsgruen-counter 29}.motionTextFormattings ol>li[value="31"]{counter-reset:antragsgruen-counter 30}.motionTextFormattings ol>li[value="32"]{counter-reset:antragsgruen-counter 31}.motionTextFormattings ol>li[value="33"]{counter-reset:antragsgruen-counter 32}.motionTextFormattings ol>li[value="34"]{counter-reset:antragsgruen-counter 33}.motionTextFormattings ol>li[value="35"]{counter-reset:antragsgruen-counter 34}.motionTextFormattings ol>li[value="36"]{counter-reset:antragsgruen-counter 35}.motionTextFormattings ol>li[value="37"]{counter-reset:antragsgruen-counter 36}.motionTextFormattings ol>li[value="38"]{counter-reset:antragsgruen-counter 37}.motionTextFormattings ol>li[value="39"]{counter-reset:antragsgruen-counter 38}.motionTextFormattings ol>li[value="40"]{counter-reset:antragsgruen-counter 39}.motionTextFormattings ol>li[value="41"]{counter-reset:antragsgruen-counter 40}.motionTextFormattings ol>li[value="42"]{counter-reset:antragsgruen-counter 41}.motionTextFormattings ol>li[value="43"]{counter-reset:antragsgruen-counter 42}.motionTextFormattings ol>li[value="44"]{counter-reset:antragsgruen-counter 43}.motionTextFormattings ol>li[value="45"]{counter-reset:antragsgruen-counter 44}.motionTextFormattings ol>li[value="46"]{counter-reset:antragsgruen-counter 45}.motionTextFormattings ol>li[value="47"]{counter-reset:antragsgruen-counter 46}.motionTextFormattings ol>li[value="48"]{counter-reset:antragsgruen-counter 47}.motionTextFormattings ol>li[value="49"]{counter-reset:antragsgruen-counter 48}.motionTextFormattings ol>li[value="50"]{counter-reset:antragsgruen-counter 49}.motionTextFormattings ol>li[value="51"]{counter-reset:antragsgruen-counter 50}.motionTextFormattings ol>li[value="52"]{counter-reset:antragsgruen-counter 51}.motionTextFormattings ol>li[value="53"]{counter-reset:antragsgruen-counter 52}.motionTextFormattings ol>li[value="54"]{counter-reset:antragsgruen-counter 53}.motionTextFormattings ol>li[value="55"]{counter-reset:antragsgruen-counter 54}.motionTextFormattings ol>li[value="56"]{counter-reset:antragsgruen-counter 55}.motionTextFormattings ol>li[value="57"]{counter-reset:antragsgruen-counter 56}.motionTextFormattings ol>li[value="58"]{counter-reset:antragsgruen-counter 57}.motionTextFormattings ol>li[value="59"]{counter-reset:antragsgruen-counter 58}.motionTextFormattings ol>li[value="60"]{counter-reset:antragsgruen-counter 59}.motionTextFormattings ol>li[value="61"]{counter-reset:antragsgruen-counter 60}.motionTextFormattings ol>li[value="62"]{counter-reset:antragsgruen-counter 61}.motionTextFormattings ol>li[value="63"]{counter-reset:antragsgruen-counter 62}.motionTextFormattings ol>li[value="64"]{counter-reset:antragsgruen-counter 63}.motionTextFormattings ol>li[value="65"]{counter-reset:antragsgruen-counter 64}.motionTextFormattings ol>li[value="66"]{counter-reset:antragsgruen-counter 65}.motionTextFormattings ol>li[value="67"]{counter-reset:antragsgruen-counter 66}.motionTextFormattings ol>li[value="68"]{counter-reset:antragsgruen-counter 67}.motionTextFormattings ol>li[value="69"]{counter-reset:antragsgruen-counter 68}.motionTextFormattings ol>li[value="70"]{counter-reset:antragsgruen-counter 69}.motionTextFormattings ol>li[value="71"]{counter-reset:antragsgruen-counter 70}.motionTextFormattings ol>li[value="72"]{counter-reset:antragsgruen-counter 71}.motionTextFormattings ol>li[value="73"]{counter-reset:antragsgruen-counter 72}.motionTextFormattings ol>li[value="74"]{counter-reset:antragsgruen-counter 73}.motionTextFormattings ol>li[value="75"]{counter-reset:antragsgruen-counter 74}.motionTextFormattings ol>li[value="76"]{counter-reset:antragsgruen-counter 75}.motionTextFormattings ol>li[value="77"]{counter-reset:antragsgruen-counter 76}.motionTextFormattings ol>li[value="78"]{counter-reset:antragsgruen-counter 77}.motionTextFormattings ol>li[value="79"]{counter-reset:antragsgruen-counter 78}.motionTextFormattings ol>li[value="80"]{counter-reset:antragsgruen-counter 79}.motionTextFormattings ol>li[value="81"]{counter-reset:antragsgruen-counter 80}.motionTextFormattings ol>li[value="82"]{counter-reset:antragsgruen-counter 81}.motionTextFormattings ol>li[value="83"]{counter-reset:antragsgruen-counter 82}.motionTextFormattings ol>li[value="84"]{counter-reset:antragsgruen-counter 83}.motionTextFormattings ol>li[value="85"]{counter-reset:antragsgruen-counter 84}.motionTextFormattings ol>li[value="86"]{counter-reset:antragsgruen-counter 85}.motionTextFormattings ol>li[value="87"]{counter-reset:antragsgruen-counter 86}.motionTextFormattings ol>li[value="88"]{counter-reset:antragsgruen-counter 87}.motionTextFormattings ol>li[value="89"]{counter-reset:antragsgruen-counter 88}.motionTextFormattings ol>li[value="90"]{counter-reset:antragsgruen-counter 89}.motionTextFormattings ol>li[value="91"]{counter-reset:antragsgruen-counter 90}.motionTextFormattings ol>li[value="92"]{counter-reset:antragsgruen-counter 91}.motionTextFormattings ol>li[value="93"]{counter-reset:antragsgruen-counter 92}.motionTextFormattings ol>li[value="94"]{counter-reset:antragsgruen-counter 93}.motionTextFormattings ol>li[value="95"]{counter-reset:antragsgruen-counter 94}.motionTextFormattings ol>li[value="96"]{counter-reset:antragsgruen-counter 95}.motionTextFormattings ol>li[value="97"]{counter-reset:antragsgruen-counter 96}.motionTextFormattings ol>li[value="98"]{counter-reset:antragsgruen-counter 97}.motionTextFormattings ol>li[value="99"]{counter-reset:antragsgruen-counter 98}.motionTextFormattings ol>li[value="100"]{counter-reset:antragsgruen-counter 99}.motionTextFormattings ol>li[value=A]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=a]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=B]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=b]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=C]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=c]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=D]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=d]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=E]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=e]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=F]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=f]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=G]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=g]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=H]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=h]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=I]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=i]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=J]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=j]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=K]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=k]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=L]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=l]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=M]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=m]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=N]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=n]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=O]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=o]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=P]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=p]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=Q]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=q]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=R]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=r]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=S]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=s]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=T]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=t]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=U]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=u]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=V]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=v]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=W]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=w]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=X]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=x]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=Y]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=y]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=Z]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol>li[value=z]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol.decimalCircle>li::before{content:"(" counter(antragsgruen-counter) ")"}.motionTextFormattings ol.decimalCircle>li[value]::before{content:"(" attr(value) ")"}.motionTextFormattings ol.lowerAlpha>li::before{content:counter(antragsgruen-counter, lower-alpha) "."}.motionTextFormattings ol.lowerAlpha>li[value]::before{content:attr(value) "."}.motionTextFormattings ol.upperAlpha>li::before{content:counter(antragsgruen-counter, upper-alpha) "."}.motionTextFormattings ol.upperAlpha>li[value]::before{content:attr(value) "."}.motionTextFormattings .amendmentRef{font-size:.8em;opacity:.7}.motionTextFormattings.fixedWidthFont{font-family:"PT Sans",Courier,sans-serif;color:#000;-webkit-hyphens:none;hyphens:none}@media(min-width: 800px){.motionTextFormattings .lineNumber{position:relative;left:-42px;width:0;display:inline-block;float:left}}.motionTextFormattings .lineNumber:after{content:attr(data-line-number);color:#c3c3c3;font-size:16px;font-style:normal;font-weight:normal;text-decoration:none}@media screen and (max-width: 799px){.motionTextFormattings br{display:none}.motionTextFormattings .lineNumber{position:relative;bottom:-3px;left:-2px}.motionTextFormattings .lineNumber:first-of-type{position:relative;left:-27px;width:0;bottom:auto;display:inline-block;float:left;z-index:-1}.motionTextFormattings .lineNumber:after{font-size:12px}.motionTextFormattings .lineNumber:first-of-type:after{font-size:14px}}@media(min-width: 800px){.motionTextFormattings>ul,.motionTextFormattings>ol{padding-left:40px}.motionTextFormattings>ul .lineNumber,.motionTextFormattings>ol .lineNumber{left:-82px}.motionTextFormattings>ul ul,.motionTextFormattings>ul ol,.motionTextFormattings>ol ul,.motionTextFormattings>ol ol{padding-left:40px}.motionTextFormattings>ul ul .lineNumber,.motionTextFormattings>ul ol .lineNumber,.motionTextFormattings>ol ul .lineNumber,.motionTextFormattings>ol ol .lineNumber{left:-122px}.motionTextFormattings>ul ul ul .lineNumber,.motionTextFormattings>ul ul ol .lineNumber,.motionTextFormattings>ul ol ul .lineNumber,.motionTextFormattings>ul ol ol .lineNumber,.motionTextFormattings>ol ul ul .lineNumber,.motionTextFormattings>ol ul ol .lineNumber,.motionTextFormattings>ol ol ul .lineNumber,.motionTextFormattings>ol ol ol .lineNumber{left:-162px}.motionTextFormattings>ul ul ul ul .lineNumber,.motionTextFormattings>ul ul ul ol .lineNumber,.motionTextFormattings>ul ul ol ul .lineNumber,.motionTextFormattings>ul ul ol ol .lineNumber,.motionTextFormattings>ul ol ul ul .lineNumber,.motionTextFormattings>ul ol ul ol .lineNumber,.motionTextFormattings>ul ol ol ul .lineNumber,.motionTextFormattings>ul ol ol ol .lineNumber,.motionTextFormattings>ol ul ul ul .lineNumber,.motionTextFormattings>ol ul ul ol .lineNumber,.motionTextFormattings>ol ul ol ul .lineNumber,.motionTextFormattings>ol ul ol ol .lineNumber,.motionTextFormattings>ol ol ul ul .lineNumber,.motionTextFormattings>ol ol ul ol .lineNumber,.motionTextFormattings>ol ol ol ul .lineNumber,.motionTextFormattings>ol ol ol ol .lineNumber{left:-202px}.fourdigitsLineNumbers .motionTextFormattings .lineNumber{left:-52px}.fourdigitsLineNumbers .motionTextFormattings>ul .lineNumber,.fourdigitsLineNumbers .motionTextFormattings>ol .lineNumber{left:-92px}.fourdigitsLineNumbers .motionTextFormattings>blockquote .lineNumber{left:-107px}.motionTextFormattings>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:38px}.motionTextFormattings>blockquote .lineNumber{left:-97px}}@media screen and (max-width: 799px){.motionTextFormattings>ul,.motionTextFormattings>ol{padding-left:40px}.motionTextFormattings>ul .lineNumber:first-of-type,.motionTextFormattings>ol .lineNumber:first-of-type{left:-67px}.motionTextFormattings>ul ul,.motionTextFormattings>ul ol,.motionTextFormattings>ol ul,.motionTextFormattings>ol ol{padding-left:15px}.motionTextFormattings>ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol .lineNumber:first-of-type{left:-107px}.motionTextFormattings>ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ol .lineNumber:first-of-type{left:-147px}.motionTextFormattings>ul ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ol ol .lineNumber:first-of-type{left:-187px}.fourdigitsLineNumbers .motionTextFormattings .lineNumber:first-of-type{left:-42px}.fourdigitsLineNumbers .motionTextFormattings>ul .lineNumber:first-of-type,.fourdigitsLineNumbers .motionTextFormattings>ol .lineNumber:first-of-type{left:-72px}.fourdigitsLineNumbers .motionTextFormattings>blockquote .lineNumber:first-of-type{left:-67px}.motionTextFormattings>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:18px}.motionTextFormattings>blockquote .lineNumber:first-of-type{left:-62px}}.motionTextFormattings .lineNumber.highlighted:before{content:"";display:block;position:absolute;left:-8px;height:1.5em;margin-top:-1px;width:100vw;max-width:781px;z-index:-1;background-color:rgba(255,255,0,0);transition:background-color .5s ease}.motionTextFormattings .lineNumber.highlighted-active:before{background-color:#ff0}.motionTextFormattings.smallFont{font-size:12px}.well .motionTextHolder{padding-bottom:22px}.well .motionTextHolder>h3.green{margin-bottom:22px}@media screen and (min-width: 800px){.motionTextHolder .stdPadding{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .stdPadding{padding:15px 10px 15px 30px}}.motionTextHolder .amendmentTextModeSelector{float:right}.motionTextHolder .paragraph{font-size:14px;clear:both;position:relative}.motionTextHolder .paragraph.smallFont{font-size:12px}@media(min-width: 800px){.motionTextHolder .paragraph .text{padding:15px 50px 15px 50px}}@media(max-width: 799px){.motionTextHolder .paragraph .text{padding:15px 30px 15px 30px}}.motionTextHolder .paragraph .text.collidingAmendment{margin-top:-20px}.motionTextHolder .paragraph .text.collidingAmendment>h3{font-size:1.2em;margin-top:0}@media screen and (min-width: 800px){.motionTextHolder .paragraph.lineNumbers .text{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .paragraph.lineNumbers .text{padding:15px 10px 15px 30px}}.motionTextHolder .paragraph h4.lineSummary{font-size:inherit;font-weight:bold;margin:0}.motionTextHolder .paragraph h4.lineSummary .linkedMotion{font-weight:normal}.motionTextHolder .textAmendment{position:relative}@media(min-width: 800px){.motionTextHolder .textAmendment{width:733px}}.motionTextHolder .textAmendment del,.motionTextHolder .textAmendment ul.deleted,.motionTextHolder .textAmendment ol.deleted,.motionTextHolder .textAmendment li.deleted,.motionTextHolder .textAmendment blockquote.deleted,.motionTextHolder .textAmendment pre.deleted{color:red;text-decoration:line-through}.motionTextHolder .textAmendment ins,.motionTextHolder .textAmendment ul.inserted,.motionTextHolder .textAmendment ol.inserted,.motionTextHolder .textAmendment li.inserted,.motionTextHolder .textAmendment blockquote.inserted,.motionTextHolder .textAmendment pre.inserted{text-decoration:underline}.motionTextHolder .textAmendment .preamble{position:absolute;top:-25px;height:35px}@media(min-width: 800px){.motionTextHolder .textAmendment .preamble{width:100%}}@media(max-width: 799px){.motionTextHolder .textAmendment .preamble{width:calc(100% - 30px - 10px)}}.motionTextHolder .textAmendment .preamble>a{position:absolute;bottom:0;left:0;max-height:35px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;color:#e2007a}.motionTextHolder .textAmendment .preamble>a:link,.motionTextHolder .textAmendment .preamble>a:visited{color:#e2007a}.motionTextHolder .textAmendment .preamble>a h3{font-size:14px;display:inline-block;margin:0;font-weight:bold}.motionTextHolder .textAmendment .preamble>a .moreAffected{font-style:italic;font-size:.8em;margin-top:-3px;color:#bcb}@media screen and (max-width: 799px){.motionTextHolder .textAmendment .preamble .amendment{display:none}}.motionTextHolder .textAmendment .movedParagraphHint{font-style:italic;font-size:.8em;margin-top:3px;color:#bcb}.motionTextHolder .tabularData>tbody>tr:first-child>td,.motionTextHolder .tabularData>tbody>tr:first-child>th{border-top:none}.motionTextHolder .onlyOneSupporter{list-style-type:none;margin:0}@media screen and (min-width: 800px){.motionTextHolder .onlyOneSupporter{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .onlyOneSupporter{padding:15px 10px 15px 30px}}.motionTextHolder .onlyOneSupporter>li{padding:0;margin:0}.motionTextHolder .amendmentParaLink{position:absolute;display:none;top:50%;right:5px;margin-top:-30px}.motionTextHolder .amendmentParaLink img{width:35px}.motionTextHolder .paragraph:hover .amendmentParaLink{display:block}.motionTextHolder .paragraph.hover .amendmentParaLink{display:block}.bookmarks{float:right;width:1px;list-style-type:none;padding:0;margin-top:5px}.bookmarks>li{width:1px;height:38px;position:relative;margin-bottom:7px;z-index:1}.bookmarks>li>a{display:block;position:absolute;white-space:nowrap;padding:10px;top:0;left:2px;color:#fff;min-width:40px;border-top-right-radius:10px;border-bottom-right-radius:10px;font-weight:bold}@media screen and (max-width: 799px){.bookmarks>li>a:before{content:"";display:block;position:absolute;top:0;left:-3px;width:3px;height:100%}.bookmarks>li>a:after{content:" ";position:absolute;left:-2px;top:50%;height:0;width:0;border-width:2px;margin-top:-2px;border-style:solid;border-color:hsla(0,0%,100%,0);border-left-color:#fff}}.bookmarks>li.comment>a{background:#e2007a;background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%)}.bookmarks>li.comment>a:before{background:#e2007a}.bookmarks>li.comment>a.active{background:rgb(197.95,0,106.8579646018);background:linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%)}.bookmarks>li.comment>a.active:before{background:rgb(208.15,0,112.364159292)}.bookmarks>li.comment>a.zero{opacity:.3}.bookmarks>li.comment>a .count:after{content:attr(data-count);padding-left:4px}.bookmarks>li.amendment>a{background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%)}.bookmarks>li.amendment>a:before{background:#afcb08}.bookmarks>li.amendment>a.active{background:rgb(160.1954976303,185.8267772512,7.3232227488);background:linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%)}.bookmarks>li.amendment>a.active:before{background:rgb(160.1954976303,185.8267772512,7.3232227488)}.bookmarks>li .hider{background:#b4b4b4;background:linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%)}.commentScreeningQueue{margin-left:50px;color:#a9a9a9}.motionTwoCols{margin-top:2px}@media screen and (min-width: 800px){.motionTwoCols{display:flex;width:100%}.motionTwoCols .motionMainCol{flex-basis:66.6%}.motionTwoCols .motionRightCol{flex-basis:33.4%}}.motionComment{border:solid 1px #d3d3d3;background:#fafafa;border-radius:3px;margin:15px 20px 30px;padding:10px}.motionComment.replyComment{margin-top:-15px}.motionComment .commentHeader{background:none;color:rgb(86.9404761905,100.5,0);font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:1em;font-weight:bold;line-height:18px;margin:0;text-transform:none}@media(min-width: 800px){.motionComment .commentName{float:right}}.motionComment .commentWriteHeader{border-bottom:solid 1px #fafafa;font-size:1.2em}.motionComment .date{color:#757676;float:right;margin-left:20px}.motionComment .commentBottom{height:23px;position:relative;margin:10px -10px -10px -10px}.motionComment .commentBottom .entry{position:absolute;bottom:-1px;height:24px;font-size:12px;border-top:solid 1px #d3d3d3;text-align:center;font-weight:normal}.motionComment .commentBottom .link{left:-1px;padding:2px;width:24px;border-right:solid 1px #d3d3d3;border-top-right-radius:3px}.motionComment .commentBottom .replyButton{right:-1px;padding:2px 5px;border-left:solid 1px #d3d3d3;border-top-left-radius:3px}.motionComment .commentBottom .delLink{color:#f77;left:3px;width:24px;border-right:solid 1px #d3d3d3;border-top-right-radius:3px}.motionComment .commentBottom .delLink .link{border-right:0;padding:4px}.motionComment .commentBottom .delLink+.link{border-top-right-radius:0}.motionComment .delLink{float:right;margin-left:20px}.motionComment .delLink a:link,.motionComment .delLink a:visited{color:#ccc}.motionComment .delLink a:link:hover,.motionComment .delLink a:link:focus,.motionComment .delLink a:visited:hover,.motionComment .delLink a:visited:focus{color:#bbb}.motionComment .screening>*{display:inline-block;width:49%;text-align:center}.motionComment>label,.motionComment>.label{display:block;text-align:center}.motionComment.form-horizontal .form-group{margin-right:10px;margin-left:10px}.motionComment.form-horizontal .form-group>*{padding-right:0}.motionComment .commentNotifications{padding:10px;overflow:visible}.motionComment .commentNotifications label,.motionComment .commentNotifications .label{font-weight:normal;font-size:13px}.motionComment .commentNotifications select{float:right}.motionComment .submitrow{padding-top:10px;text-align:center}@media screen and (min-width: 1000px){.motionCommentReplies{padding-left:100px}}.motionCommentReplies .motionComment{margin-top:-20px}.withdrawForm{text-align:center}.withdrawForm .ask{font-size:16px;margin-bottom:15px;margin-top:15px}.motionSupportFinishForm,.amendmentSupportFinishForm{text-align:center;margin-bottom:20px}.sectionType0+.motionTextHolder{clear:both}.sectionType3{padding:10px}.sectionType3 img{max-height:200px;max-width:100%}.motionRightCol{padding-top:0;font-size:14px}.motionRightCol .motionTextFormattings{font-size:14px}.motionRightCol>section{padding:0 30px 20px 0}iframe.pdfViewer{width:100%;height:600px;border:none}.sectionType5{margin-left:-1px;margin-right:-1px}.sectionType7{margin-left:-1px;margin-right:-1px}.sectionType7 .videoHolder{padding:15px 50px 15px 50px}.sectionType7 .videoSizer{overflow:hidden;padding-bottom:56.25%;position:relative;height:0}.sectionType7 iframe{left:0;top:0;height:100%;width:100%;position:absolute;border:none}.sectionType8 .editCaller{float:right;font-weight:normal}.sectionType8 .textHolder{clear:both}.sectionType8 .toolbarBelowTitle{margin-top:-22px}.sectionType8 .editorialHeader{padding-top:5px;padding-bottom:5px;height:47px;overflow:auto}.sectionType8 .metadataView{vertical-align:middle;font-style:italic}.sectionType8 .metadataEdit{display:flex;width:100%}.sectionType8 .metadataEdit label>*,.sectionType8 .metadataEdit .label>*{display:inline-block;width:auto}.sectionType8 .metadataEdit label,.sectionType8 .metadataEdit .label{margin:0;flex-grow:1;font-weight:normal}.sectionType8 .metadataEdit label:last-child,.sectionType8 .metadataEdit .label:last-child{text-align:right}.gotoLineNumerPanel{position:fixed;bottom:0;left:0;width:100%;right:0;z-index:10;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);display:none;padding:10px}.gotoLineNumerPanel.active{display:block}.gotoLineNumerPanel .lineNumberNotFound{color:#ee0101}.gotoLineNumerPanel .input-group{max-width:300px}.gotoLineNumerPanel .form-group{margin-bottom:0}#amendmentMergeForm #motionTitlePrefix,#amendmentMergeForm #motionVersion,#amendmentMergeForm .dropdown-toggle{max-width:230px}#amendmentMergeForm .checkButtonRow{text-align:center;margin:20px 0}#amendmentMergeForm .otherAmendmentStatus .row{margin-bottom:15px}#amendmentMergeForm .otherAmendmentStatus .by{display:block;font-size:.8em}#amendmentMergeForm .otherAmendmentStatus .amendmentAjaxTooltip{float:right;color:gray;margin-right:-15px;margin-top:7px}#amendmentMergeForm .affectedParagraphs .paragraph.originalVersion .modifiedVersion{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.modifiedVersion .originalVersion{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.changed .motionTextHolder{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.unchanged .modifyText{display:none}#amendmentMergeForm .modifiedText{display:none}#amendmentMergeForm .modifyText{margin-top:20px}#amendmentMergeForm .selectorToolbar{margin-top:15px;display:flex;flex-direction:row}#amendmentMergeForm .selectorToolbar label,#amendmentMergeForm .selectorToolbar .label{margin-right:20px;font-weight:normal}#amendmentMergeForm .selectorToolbar .modifySelector{text-align:right;flex:1}#amendmentMergeForm .selectorToolbar .versionSelector{flex:1}#amendmentMergeForm .save-row{text-align:center}#amendmentMergeForm .saveholder .checkAmendmentCollisions{display:none}.amendmentCollisionsHolder .amendmentBy{color:gray}.amendmentCollisionsHolder .amendmentOverrideBlock{background-color:#f5f5f5;margin:15px -10px;padding:10px;border:solid 1px #ddd;border-radius:4px}.amendmentCollisionsHolder .amendmentOverrideBlock>h3{font-size:18px;margin-top:0}.amendmentCollisionsHolder .amendmentOverrideBlock>textarea{display:none}@media(min-width: 800px){.motionData .translateWidget{float:right;margin-bottom:-25px}}.motionData .privateNotes th{padding-top:25px}.motionData .privateNotes td{padding-top:20px}.motionData .privateNotes blockquote{margin-left:0;cursor:pointer;font-style:italic;color:#666}.motionData .privateNotes textarea{line-height:1.1;height:50px;width:100%}@media(min-width: 800px){.motionData .privateNotes textarea{width:calc(100% - 110px)}}.motionData .privateNotes .btn{margin-top:2px;margin-left:5px}.motionData .privateNotes .btnEdit{margin-left:-30px;margin-top:-1px;float:left}.privateNoteOpener{margin-top:-20px;margin-bottom:10px;padding-left:10px;width:30%}.privateNoteOpener .btn{font-weight:normal}.privateNoteOpener+.proposedChangesOpener .btn{margin-top:-30px}.privateParagraphNoteHolder{font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif}.privateParagraphNoteHolder .privateParagraphNoteOpener{position:absolute;bottom:0;left:40px;opacity:.5}.privateParagraphNoteHolder .privateParagraphNoteOpener .btn{font-weight:normal}.privateParagraphNoteHolder label,.privateParagraphNoteHolder .label{width:100%}@media(min-width: 800px){.privateParagraphNoteHolder label,.privateParagraphNoteHolder .label{width:calc(100% - 110px)}}.privateParagraphNoteHolder textarea.form-control{line-height:1.1;height:50px;width:100%}.privateParagraphNoteHolder .btn{margin-top:2px;margin-left:0}.privateParagraphNoteHolder .btnEdit{margin-left:-30px;margin-top:-1px;float:left}.privateParagraphNoteHolder blockquote{color:#666;font-style:italic;cursor:pointer}ul+.privateParagraphNoteHolder .privateParagraphNoteOpener,ol+.privateParagraphNoteHolder .privateParagraphNoteOpener{left:85px}ul+.privateParagraphNoteHolder blockquote,ol+.privateParagraphNoteHolder blockquote{margin-left:45px}ul+.privateParagraphNoteHolder form,ol+.privateParagraphNoteHolder form{margin-left:40px}blockquote+.privateParagraphNoteHolder .privateParagraphNoteOpener{left:100px}blockquote+.privateParagraphNoteHolder blockquote{margin-left:60px}blockquote+.privateParagraphNoteHolder form{margin-left:55px}.motionChangeView .notDisplayable{color:#ee0101}.motionChangeView .noChanges{color:gray}.motionChangeView .motionDataTable{margin-bottom:25px}.motionSupportForm .supportQuestion{margin-top:10px}.motionSupportForm .supportBlock{display:flex;flex-direction:row}.motionSupportForm .supportBlock .colName,.motionSupportForm .supportBlock .colGender,.motionSupportForm .supportBlock .colOrga{flex:1;padding:0 10px}.motionSupportForm .supportBlock .colSubmit{flex:0}.motionSupportForm .supportBlock>*{padding:0 10px}.motionSupportForm .supportBlock>*:first-child{padding-left:0}.motionSupportForm .supportBlock>*:last-child{padding-right:0}.motionSupportForm .nonPublicBlock label,.motionSupportForm .nonPublicBlock .label{margin-top:10px;font-weight:normal}.motionSupportForm .loggedOutWarning{font-size:.8em;margin-top:6px;padding:0 15px}.likes .expandableList .btnShowAll,.supporters .expandableList .btnShowAll{padding:0;margin-left:10px;font-weight:normal}.likes .expandableList .halfVisible,.supporters .expandableList .halfVisible{opacity:.5}.likes .nonPublic,.supporters .nonPublic{display:inline-block;margin-left:15px;font-size:.8em;font-style:italic}.likeDislikeHolder{text-align:center;margin-bottom:20px}.likeDislikeHolder .likeNameHolder{display:inline-block;max-width:250px;vertical-align:top;margin-right:20px}@media screen and (max-width: 650px){.likeDislikeHolder .likeNameHolder{display:block}}.likeDislikeHolder .btn{margin-left:10px;margin-right:10px}.proposedChangesOpener{padding-left:calc(30% + 8px);margin-top:-20px;margin-bottom:20px}#proposedChanges{background-color:#f8faf8;border:solid 1px #eee;border-radius:4px;margin:0 20px 30px}#proposedChanges h2{margin:0;font-size:18px;padding:5px 10px;background-color:#ded}#proposedChanges .closeBtn{margin-right:-10px;margin-top:-2px}#proposedChanges .holder{display:flex}#proposedChanges .holder>*{flex:1;padding:10px}#proposedChanges .statusForm{width:40%}#proposedChanges .proposalCommentForm{width:40%;display:flex;flex-direction:column;border-left:solid 1px #eee}#proposedChanges .middleCol{width:20%;display:flex;flex-direction:column}#proposedChanges .votingBlockSettings{padding-bottom:10px}#proposedChanges .votingBlockSettings select{display:inline-block;width:calc(100% - 20px)}#proposedChanges .visibilitySettings label,#proposedChanges .visibilitySettings .label{display:block}#proposedChanges .notificationStatus{font-size:12px}#proposedChanges .notificationStatus .accepted{color:green;margin-right:5px}#proposedChanges .notificationStatus .rejected{color:red;margin-right:5px}#proposedChanges .notificationStatus .notSavedHint{font-style:italic;color:#777}#proposedChanges .notificationStatus .notifyProposer{white-space:normal;text-align:left;font-weight:normal}#proposedChanges .notificationStatus .setConfirmationStatus{overflow:auto}#proposedChanges .notificationStatus .setConfirmation{float:right;font-weight:normal}#proposedChanges .notificationStatus .sendAgain{float:left;font-weight:normal}#proposedChanges h3,#proposedChanges .headingLabel{font-size:14px;margin:3px 0 8px 0;font-weight:bold}#proposedChanges label,#proposedChanges .label{font-size:12px;font-weight:normal}#proposedChanges .newBlock .control-label,#proposedChanges .votingItemBlockRow .control-label,#proposedChanges .votingItemBlockNameRow .control-label{font-size:14px;font-weight:bold}#proposedChanges .proposalTags{display:flex;flex-direction:row;border-top:solid 1px #eee}#proposedChanges .proposalTags>label,#proposedChanges .proposalTags>.label{flex-grow:0;padding:10px;font-size:14px;white-space:nowrap;margin:0}#proposedChanges .proposalTags>div{padding:5px 10px 0;flex-grow:1}#proposedChanges .commentList{flex:1;margin:0;padding:0;list-style-type:none;display:block;max-height:130px;overflow-y:auto;background-color:#fbfdfb;border:solid 1px #dfd}#proposedChanges .commentList>li{margin:0;padding:0;display:block}#proposedChanges .commentList .header{background-color:#eee;overflow:auto;margin-top:10px}#proposedChanges .commentList .date{float:right}#proposedChanges .commentList .delComment{float:right;color:#f77;width:auto}#proposedChanges .commentList .overv{text-align:right;font-style:italic}#proposedChanges .proposalCommentForm{font-size:12px}#proposedChanges .proposalCommentForm textarea{border-radius:0;border:solid 1px #eee;border-bottom:none;box-shadow:none;font-size:12px}#proposedChanges .proposalCommentForm button{margin-top:-1px;width:100%}#proposedChanges .statusDetails,#proposedChanges .collisions,#proposedChanges .publicExplanation,#proposedChanges .notifyProposerSection{border-top:solid 1px #eee;padding:10px}#proposedChanges .notifyProposerSection .proposalFrom{margin-bottom:15px;display:flex;gap:10px;width:100%}#proposedChanges .notifyProposerSection .proposalFrom>*{flex:1}#proposedChanges .notifyProposerSection .submitRow{text-align:center;margin-top:10px}#proposedChanges .saving,#proposedChanges .saved{border-top:solid 1px #eee;height:40px;text-align:center;line-height:38px;vertical-align:middle;display:none}#proposedChanges .showIfChanged{display:none}#proposedChanges.isChanged .showIfChanged{display:block}#proposedChanges.isChanged .hideIfChanged{display:none}#proposedChanges.showSaved .saved{display:block}#proposedChanges.noStatus .showIfStatusSet{display:none}#proposedChangeTextForm h2{font-size:24px}#proposedChangeTextForm .motionTextHolder{margin-top:20px}#proposedChangeTextForm .motionTextHolder .title{font-weight:bold}#proposedChangeTextForm .motionTextHolder .paragraph .text{padding:5px 10px 10px 0}#proposedChangeTextForm .motionTextHolder .paragraph .text>*{padding-bottom:5px;padding-top:5px;margin-bottom:5px}#proposedChangeTextForm .originalVersion ins.ice-del,#proposedChangeTextForm .originalVersion del.ice-del{display:inline}#proposedChangeTextForm .save-row{text-align:center;margin:0 0 40px 0}#proposedChangeTextForm #collisionIndicator{position:fixed;bottom:0;right:0;left:0;width:100%;z-index:10;background:#fff;border-top:1px solid #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);padding:5px}#proposedChangeTextForm #collisionIndicator h2{display:inline-block;margin:0;padding:0;font-size:inherit;font-weight:bold}#proposedChangeTextForm #collisionIndicator .collisionList{display:inline-block;margin:0;padding:0;list-style-type:none}#proposedChangeTextForm #collisionIndicator .collisionList>li{display:inline-block;margin:0 20px}.proposedProcedureToolbar .right>*{float:right;margin-left:15px}.proposedProcedureToolbar .left{line-height:40px;vertical-align:middle}.proposedProcedureToolbar .currentDate{font-size:.8em;color:gray}.proposedProcedureOverview.openable{margin-bottom:20px}.proposedProcedureOverview h2 a,.proposedProcedureOverview h2 a:link,.proposedProcedureOverview h2 a:hover,.proposedProcedureOverview h2 a:active{color:#fff}.proposedProcedureOverview table{table-layout:fixed;margin-top:25px}.proposedProcedureOverview table:first-of-type{margin-top:0}.proposedProcedureOverview caption{font-weight:bold;background-color:#eee;color:#000;text-align:center}.proposedProcedureOverview .procedure h3{margin:7px 0 0 0;font-size:0;line-height:0;color:rgba(0,0,0,0);border-top:solid 1px #d3d3d3}.proposedProcedureOverview .procedure p{margin:0;font-size:inherit}.proposedProcedureOverview .procedure h4{margin:10px 0 5px 0;font-size:inherit;font-weight:bold}.proposedProcedureOverview .visible{width:5%;text-align:center}.proposedProcedureOverview .prefix .amendmentAjaxTooltip{float:right;opacity:.5}@media screen and (min-width: 700px){.proposedProcedureOverview .prefix{width:125px}.proposedProcedureOverview .initiator{width:270px}}@media screen and (min-width: 1400px){.proposedProcedureOverview .comment{max-width:350px}}@media screen and (max-width: 500px){.proposedProcedureOverview{display:block}.proposedProcedureOverview tr,.proposedProcedureOverview td,.proposedProcedureOverview th,.proposedProcedureOverview tbody,.proposedProcedureOverview thead,.proposedProcedureOverview caption{display:block}.proposedProcedureOverview .prefix{display:inline-block;border-top:none}.proposedProcedureOverview .initiator{display:inline-block;border-top:none}.proposedProcedureOverview .initiator:before{content:"("}.proposedProcedureOverview .initiator:after{content:")"}.proposedProcedureOverview .procedure{border-top:none;border-bottom:solid 1px #ddd}}.proposedProcedureOverview .explanation{font-size:.8em;margin-top:5px;color:#888}.proposedProcedureOverview .notVisible{font-size:.8em;color:#ee0101;font-style:italic}.proposedProcedureOverview tr.withdrawn .prefix,.proposedProcedureOverview tr.withdrawn .initiator{text-decoration:line-through}.proposedProcedureOverview tr.moved .prefix,.proposedProcedureOverview tr.moved .initiator,.proposedProcedureOverview tr.moved .procedure{opacity:.4}.proposedProcedureOverview tr.accepted{background-color:#dfd}.proposedProcedureOverview tr.vote{background-color:#ffe0cc}.proposedProcedureOverview h2 .withdrawn{font-size:.8em;color:#eee}.proposedProcedureOverview .contactShow{display:block;font-size:.7em}.proposedProcedureOverview .contactDetails{font-size:.8em}.proposedProcedureOverview .contactDetails *[title]{cursor:help}.proposedProcedureOverview .comments .writing{display:none}.proposedProcedureOverview .comments.writing .writing{display:block}.proposedProcedureOverview .comments.writing .notWriting{display:none}.proposedProcedureOverview .comments .cancelWriting{color:gray}.proposedProcedureOverview .comments .commentList.hasContent{max-height:200px;overflow:auto}.proposedProcedureOverview .comments .comment{overflow:hidden}.proposedProcedureOverview .comments .comment.template{display:none}.proposedProcedureOverview .comments .comment .name{font-weight:bold}.proposedProcedureOverview .tagNames{color:gray;font-size:.8em}.proposedProcedureOverview .tagNames .btn{opacity:.5}.proposedProcedureOverview .noTags{opacity:0}.proposedProcedureOverview .noTags:hover{opacity:.5}.proposedProcedureOverview .noTags .btn{font-weight:normal}.proposedProcedureOverview .tagsSelector{display:flex;width:100%}.proposedProcedureOverview .tagsSelector .proposalTagsSelect{flex-grow:1}.agreeToProposal{background-color:#f8faf8;border:solid 1px #eee;border-radius:4px;margin:0 20px 30px}.agreeToProposal h2{margin:0;font-size:18px;padding:5px 10px;background-color:#ded}.agreeToProposal .holder{display:flex}.agreeToProposal .holder>*{flex:1;padding:10px}.agreeToProposal .hint{border-top:solid 1px #eee;padding:5px 10px;font-style:italic}.agreeToProposal .status .head{font-weight:bold}.agreeToProposal .agreement .agreed{color:green}.texteditorBox,.texteditor.boxed{min-height:100px;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.texteditor{background-color:#fff}.texteditor.fixedWidthFont{font-family:"PT Sans",Courier,sans-serif;color:#000}.texteditor>*{padding-bottom:5px;padding-top:5px;padding-left:10px;margin-bottom:5px}.texteditor>span:first-child{padding:0}.texteditor .collidingParagraph.hovered{background-color:#eee}.texteditor>ul,.texteditor ol{padding-left:50px}.texteditor>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:48px}.texteditor span.underline{border-bottom:solid 1px #000}.texteditor span.strike{text-decoration:line-through}#mainmenu{max-width:1024px}#mainmenu .nav>li{display:inline-block}#mainmenu li.addPage{width:0;position:relative}#mainmenu li.addPage a{position:absolute;z-index:10;top:0;left:10px;margin:0}#mainmenu li.addPage a .glyphicon{opacity:.3}@media screen and (max-width: 767px){#mainmenu .container{padding-left:0;padding-right:0}#mainmenu .navbar .nav li a{margin-left:20px}}.motionDataTable{width:100%;overflow-wrap:break-word;table-layout:fixed}.motionDataTable>caption{display:none}.motionDataTable>tbody>tr>th{width:30%;vertical-align:top;padding-right:10px}.motionDataTable .mergingDraft>*{padding-top:15px}.motionData .tagAdderHolder:link,.motionData .tagAdderHolder:visited{color:green}.motionData .delTagForm{display:inline}.motionData .delTagForm button{background:rgba(0,0,0,0);border:none;color:#f77;font-style:italic;padding:0 6px 0 3px;border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.motionData .delTagForm button:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .motionData .delTagForm button:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}.motionData>.content>.alert{margin-top:20px}.motionData .motionHistory .fullHistory .currVersion{font-weight:bold}.motionData .motionHistory .date{font-size:.8em;display:inline-block;padding-left:5px}.motionData .motionHistory .changesLink{font-size:.8em}.motionData .motionHistory .btnHistoryOpener{font-weight:normal;font-size:.8em;padding:0 0 0 15px}.motionData .motionProtocol button{font-weight:normal;padding:0;font-size:.8em}.motionData .motionReplayedBy a{font-weight:bold}.motionData .contactShow{font-size:.8em;font-weight:normal;margin-left:15px;padding:0}.motionData .explanation{font-size:.8em;margin-left:2px}.motionData .notVisible{font-size:.8em;color:#ee0101;font-style:italic}.wysiwyg-textarea .alert{margin-bottom:8px}.wysiwyg-textarea textarea{display:none}.search-form label,.search-form .label{display:inline-block;width:220px;vertical-align:top}.labeledCheckbox{cursor:pointer}.labeledCheckbox span{font-weight:normal}.cke_skin_kama{border:none !important}.motionEditForm .maxLenHint{float:right;margin-top:7px;font-size:.8em;margin-right:3px}.motionEditForm .maxLenHint span.icon{color:gray}.motionEditForm .maxLenHint span.counter{display:inline-block;width:23px;text-align:right}.motionEditForm .legend{font-weight:bold}.motionEditForm label.optional:after,.motionEditForm .optional.label:after{content:"(" attr(data-optional-str) ")";font-weight:normal;font-style:italic;display:inline-block;margin-left:10px;font-size:.9em}.motionEditForm .submitHolder{text-align:right}.motionEditForm .editorialGlobalBar{background-color:#f7f7f7;border-bottom:solid 1px #ccc;padding:0 20px;font-size:13px;display:flex;flex-direction:row}.motionEditForm .editorialGlobalBar label,.motionEditForm .editorialGlobalBar .label{flex:1;padding:5px 0;margin:0;font-weight:normal;color:#777}.motionEditForm .editorialGlobalBar label:last-child,.motionEditForm .editorialGlobalBar .label:last-child{text-align:right}.motionEditForm .editorialGlobalBar input{margin-right:5px}.motionEditForm .modifiedActions{text-align:right}.motionEditForm .modifiedActions .btn{font-weight:normal;padding:0}.motionEditForm .single-paragraph .modifiedActions{display:none}.motionEditForm .single-paragraph.modified{background-color:#eee}.motionEditForm .single-paragraph.modified .modifiedActions{display:block}.motionEditForm .single-paragraph.modifyable{cursor:pointer}.motionEditForm .single-paragraph.modifyable:hover{background-color:#f4f4f4}.motionEditForm .single-paragraph.modifyable:hover>.texteditor{background-color:rgba(0,0,0,0)}.motionEditForm .single-paragraph .oneChangeHint{background-color:#fff;padding:5px 15px;margin-top:-5px}.motionEditForm .single-paragraph .oneChangeHint .alert{margin-bottom:0}.motionEditForm .type3{overflow:auto}.motionEditForm .type3 .currentImage{float:right;max-width:100px;max-height:100px;margin-left:20px}.motionEditForm .type3 .form-group{overflow:auto}.motionEditForm .type3 .deleteImage{font-weight:normal}.motionEditForm .type5{overflow:auto}.motionEditForm .type5 .currentPdf{float:right}.motionEditForm .type5 .form-group{overflow:auto}.motionEditForm .type5 .deletePdf{font-weight:normal}#supporterFullTextHolder{margin-top:30px;display:flex;width:100%}#supporterFullTextHolder .textHolder{width:70%}#supporterFullTextHolder .btnHolder{width:30%;text-align:right}.supporterFormStd .supporterData .fullTextAdder{float:right}.supporterFormStd .supporterData .fullTextAdder button{font-weight:normal}.supporterFormStd .adderLink{font-weight:normal;padding:0}.supporterFormStd .initiatorData .control-label{font-weight:bold}.supporterFormStd .initiatorData .leftColumn{padding-top:18px}.supporterFormStd .initiatorData .contactHead{margin-top:20px;margin-bottom:10px}@media screen and (min-width: 800px){.supporterFormStd .initiatorData .contactHead{width:70%;text-align:center}}.supporterFormStd .initiatorData .contactHead h3{font-size:18px;margin:0}.supporterFormStd .initiatorData .contactHead .hint{font-size:12px}.supporterFormStd .initiatorData .only-person,.supporterFormStd .initiatorData .only-organization{display:none}.supporterFormStd .initiatorData.type-person .only-person{display:inherit}.supporterFormStd .initiatorData.type-organization .only-organization{display:inherit}.supporterFormStd .initiatorData .initiatorCurrentUsername .username{padding-top:7px}.supporterFormStd .initiatorData .initiatorCurrentUsername .btnEdit{display:inline}.supporterFormStd .initiatorData .initiatorSetUsername .btn{text-align:left}.supporterFormStd .supporterRow .adderRow button,.supporterFormStd .initiatorRow .adderRow button{font-weight:normal}.supporterFormStd .supporterRow .rowDeleter,.supporterFormStd .supporterRow .rowDeleter:link,.supporterFormStd .supporterRow .rowDeleter:visited,.supporterFormStd .initiatorRow .rowDeleter,.supporterFormStd .initiatorRow .rowDeleter:link,.supporterFormStd .initiatorRow .rowDeleter:visited{color:#f77;display:inline-block}@media(hover: hover){.supporterFormStd .supporterRow .rowDeleter,.supporterFormStd .initiatorRow .rowDeleter{opacity:0}.supporterFormStd .supporterRow:hover .rowDeleter,.supporterFormStd .supporterRow:focus-within .rowDeleter,.supporterFormStd .initiatorRow:hover .rowDeleter,.supporterFormStd .initiatorRow:focus-within .rowDeleter{opacity:1}}.supporterFormStd .supporterRow{margin-bottom:10px}.supporterFormStd .initiatorRow .rightColumn,.supporterFormStd .supporterRow{display:flex;width:100%}.supporterFormStd .initiatorRow .rightColumn .nameCol,.supporterFormStd .supporterRow .nameCol{flex-basis:65%;flex-grow:0;padding-right:10px}.supporterFormStd .initiatorRow .rightColumn .orgaCal,.supporterFormStd .supporterRow .orgaCal{flex-grow:1}.supporterFormStd .initiatorRow .rightColumn .delCol,.supporterFormStd .supporterRow .delCol{flex-basis:20px;flex-grow:0}.supporterFormStd .moreInitiatorsAdder{text-align:right}.supporterFormStd .moreInitiatorsAdder .adderBtn{padding:0;font-size:.8em;font-weight:normal}#motionConfirmedForm .promoUrl input[type=text]{font-weight:bold;font-family:"PT Sans",Courier,sans-serif}#motionConfirmedForm .promoUrl .clipboard-done{text-align:center;font-size:.8em;color:green;font-weight:normal;margin-top:-13px}#motionConfirmedForm .promoUrl button.btn{padding-bottom:7px}#motionConfirmedForm .btnRow{padding:15px;text-align:center}#motionConfirmForm,#amendmentConfirmForm{margin-bottom:20px}.motionUpdateWidget{text-align:right;padding-top:10px}.motionUpdateWidget .updated{text-align:center;padding-top:5px;font-size:.8em;color:green;opacity:0;transition:opacity .1s}.motionUpdateWidget .updated.active{opacity:1;transition:opacity .1s}span.twitter-typeahead .tt-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:250px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}span.twitter-typeahead .tt-suggestion{display:block;padding:3px 10px 3px 20px;margin:5px 0;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap;font-size:14px}span.twitter-typeahead .tt-suggestion:hover,span.twitter-typeahead .tt-suggestion:focus{color:#fff;text-decoration:none;outline:0;background-color:#88a4a0}span.twitter-typeahead .tt-suggestion.tt-cursor{color:#fff;background-color:#88a4a0}.input-group span.twitter-typeahead{display:block !important}.input-group span.twitter-typeahead .tt-dropdown-menu{top:32px !important}.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu{top:44px !important}.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu{top:28px !important}ul.searchResults{list-style-type:none;margin:0;padding:0}ul.searchResults>li{margin:0;padding:10px}ul.searchResults>li .type{display:block;float:left;width:120px;overflow:hidden;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.activityLogPage .date{float:right;color:gray}.activityLogPage .motion,.activityLogPage .voting{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.activityLogPage .description{margin-top:10px}.activityLogPage .deleted{color:gray;font-style:italic}.activityLogPage .quote{color:gray}.activityLogPage .quote:before{content:"„";display:inline}.activityLogPage .quote:after{content:"“";display:inline}.createSelectStatutes .statute{font-weight:bold;font-size:16px;line-height:18px;margin-top:20px;margin-bottom:20px}.createConfirmPage .sectionType3,.createConfirmPage .sectionType4{padding-left:50px}.amendmentAjaxTooltip{cursor:pointer}h2.green .amendmentAjaxTooltip,h3.green .amendmentAjaxTooltip{float:right;color:gray;margin-right:-10px}.popover-amendment-ajax{width:250px;max-width:none;color:#000}@media(min-width: 800px){.popover-amendment-ajax{width:400px}}@media(min-width: 1200px){.popover-amendment-ajax{width:600px}}.popover-amendment-ajax .popover-content{padding-right:0}.popover-amendment-ajax.fixedBottom{left:25.7969px;display:block;bottom:37px;position:fixed;top:initial !important}.ajaxAmendment{max-height:250px;overflow:auto}.ajaxAmendment>h3{display:none}.ajaxAmendment h4{font-size:16px;margin:5px 0}.ajaxAmendment ul{padding-left:20px}.ajaxAmendment .amendmentLink{float:right;margin-right:10px}.countries{border:none !important}.uploadCol{position:relative;max-width:200px;display:inline-block}.uploadCol label,.uploadCol .label{cursor:pointer;position:absolute;top:7px;right:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.uploadCol input{opacity:0;width:100%;pointer-events:none}.uploadCol:focus-within label,.uploadCol:focus-within .label{outline:solid 2px gray;outline-offset:0}body.usingMouse .uploadCol:focus-within label,body.usingMouse .uploadCol:focus-within .label{outline:none}.motionMergeConfirmForm .newMotionStatus label,.motionMergeConfirmForm .newMotionStatus .label,.motionMergeConfirmForm .newMotionInitiator label,.motionMergeConfirmForm .newMotionInitiator .label,.motionMergeConfirmForm .newMotionSubstatus label,.motionMergeConfirmForm .newMotionSubstatus .label{font-weight:normal;display:block}.motionMergeConfirmForm .contentMotionStatus{padding-bottom:0}@media screen and (min-width: 800px){.motionMergeConfirmForm .contentMotionStatus{display:flex;width:100%}.motionMergeConfirmForm .contentMotionStatus>*{flex-basis:50%}}.motionMergeConfirmForm .newMotionSubstatus .title{font-weight:bold}.motionMergeConfirmForm .contentVotingResult,.motionMergeConfirmForm .contentVotingResultComment{padding-bottom:0;padding-top:10px}.motionMergeConfirmForm .contentVotingResultCaller{padding-bottom:0}.motionMergeConfirmForm .contentVotingResultCaller button{padding-left:0}.motionMergeConfirmForm .motionTextHolder{padding-top:22px}.motionMergeConfirmForm .newAmendments .amendmentStatus{display:flex;flex-direction:row;width:100%}.motionMergeConfirmForm .newAmendments .amendmentStatus>*{padding:5px}.motionMergeConfirmForm .newAmendments .titleHolder{flex-basis:15%}.motionMergeConfirmForm .newAmendments .amendmentStatus>.statusHolder{padding-left:30px;flex-basis:25%}.motionMergeConfirmForm .newAmendments .commentHolder{flex-basis:25%}.motionMergeConfirmForm .newAmendments .votesHolder{flex-basis:8%}.motionMergeConfirmForm .newAmendments .amendmentAjaxTooltip{float:left;margin-left:-24px;margin-top:24px}.motionMergeConfirmForm .newAmendments .amendmentName{padding-top:22px;font-weight:bold;text-align:right}.motionMergeConfirmForm .newAmendments .amendSubtitle{text-align:right;overflow:hidden;text-overflow:ellipsis;max-width:150px;white-space:nowrap;font-size:12px}.motionMergeConfirmForm .newAmendments label,.motionMergeConfirmForm .newAmendments .label{font-weight:normal;font-size:.9em}.motionMergeConfirmForm .newAmendments input::-webkit-outer-spin-button,.motionMergeConfirmForm .newAmendments input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.motionMergeConfirmForm .newAmendments input[type=number]{-moz-appearance:textfield}.mergeConfirmToolbar{margin-bottom:30px}.mergeConfirmToolbar>.export{text-align:right}.mergeConfirmToolbar>.export>*{display:inline-block}.motionMergeInit h2.green{margin-bottom:10px;margin-top:20px}.motionMergeInit .explanation{margin-top:20px;margin-bottom:20px}.motionMergeInit .alert-info a.btn{margin-top:-7px}.motionMergeInit .draftExistsAlert{margin-bottom:50px}.motionMergeInit .mergeTable{width:100%;margin-bottom:20px}.motionMergeInit .mergeTable tr{border-bottom:solid 1px #afcb08}.motionMergeInit .mergeTable tfoot tr{border-bottom:none}.motionMergeInit .mergeTable th{font-size:.8em;line-height:2.5em;font-weight:600}.motionMergeInit .mergeTable td{padding:.75em 0em .75em 0em}.motionMergeInit .mergeTable .colCheck{text-align:center;width:100px}.motionMergeInit .mergeTable td.colText{padding:0}.motionMergeInit .mergeTable td.colText label,.motionMergeInit .mergeTable td.colText .label{display:block;font-size:.8em}.motionMergeInit .mergeTable label,.motionMergeInit .mergeTable .label{padding:0}.motionMergeInit label,.motionMergeInit .label{font-weight:normal}.motionMergeInit .mergeSingle{list-style-type:none;margin:0;padding:0}.motionMergeInit .mergeSingle>li{clear:both;margin:15px 0;padding:0}.motionMergeInit .mergeSingle>li .title{font-weight:bold}.motionMergeInit .mergeSingle>li .initiator{font-size:.8em;color:gray}.motionMergeInit .mergeSingle .amendmentAjaxTooltip{float:left;margin-right:10px}.motionMergeInit .exportHolder{margin:5px 0 0 42px}.motionMergeStyles .ICE-Tracking .ice-del,.motionMergeStyles .ICE-Tracking .ice-del p{text-decoration:line-through;color:#800;background-color:rgba(255,100,100,.2)}.motionMergeStyles .ICE-Tracking .ice-del.hover,.motionMergeStyles .ICE-Tracking .ice-del.hover p{background-color:rgba(255,49,49,.5)}.motionMergeStyles .ICE-Tracking .ice-ins,.motionMergeStyles .ICE-Tracking .ice-ins p{text-decoration:underline;color:#080;background-color:rgba(100,255,100,.2)}.motionMergeStyles .ICE-Tracking .ice-ins.hover,.motionMergeStyles .ICE-Tracking .ice-ins.hover p{background-color:rgba(49,255,49,.6)}.motionMergeStyles .adminTyped1{background-color:#eef;color:blue}.motionMergeStyles .adminTyped2{background-color:#ffeefd;color:#a300ff}.motionMergeStyles .texteditorBox,.motionMergeStyles .texteditor.boxed{min-height:15px}.motionMergeStyles .paragraphWrapper{position:relative;clear:both}.motionMergeStyles .paragraphWrapper p,.motionMergeStyles .paragraphWrapper ul,.motionMergeStyles .paragraphWrapper ol{margin-bottom:0}.motionMergeStyles .paragraphWrapper .texteditor>*{margin-bottom:0}.motionMergeStyles .paragraphWrapper .leftToolbar{width:0;position:absolute;left:-22px;top:0;bottom:0}.motionMergeStyles .paragraphWrapper .leftToolbar .lineNumbers{font-size:12px;color:#c3c3c3}.motionMergeStyles .paragraphWrapper .leftToolbar .firstLineNumber{position:absolute;top:7px;width:16px;text-align:center}.motionMergeStyles .paragraphWrapper .leftToolbar .lastLineNumber{position:absolute;bottom:7px;width:16px;text-align:center}.motionMergeStyles .paragraphWrapper .leftToolbar .inbetweenLineNumbers{position:absolute;width:1px;top:25px;bottom:25px;left:8px;background-image:linear-gradient(#C3C3FF 33%, rgba(255, 255, 255, 0) 0%);background-position:right;background-size:1px 3px;background-repeat:repeat-y}.motionMergeStyles .paragraphWrapper .changeToolbar{float:right;width:0;padding-top:3px;margin-right:-24px}.motionMergeStyles .paragraphWrapper .changeToolbar .btn-group{white-space:nowrap;font-size:0;margin-bottom:5px}.motionMergeStyles .paragraphWrapper .changeToolbar .btn{float:none}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAll{border-radius:0;border-left:none;border-bottom-right-radius:5px !important;border-top-right-radius:5px !important;font-weight:normal}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment{border:none;border-left:solid 1px #fff;border-radius:0}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment.toggleActive{padding:10px;color:#fff;background:#afcb08}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment.btn-default{padding:9px;border:solid 1px #ccc}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment{border:none;border-bottom-right-radius:10px !important;border-top-right-radius:10px !important}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment.toggleActive{padding:10px;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);border-left:solid 1px rgb(189.8045023697,220.1732227488,8.6767772512)}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment.btn-default{padding:9px;border:solid 1px #ccc}.motionMergeStyles .actions{text-align:left;white-space:nowrap;vertical-align:top}.motionMergeStyles .actions>*{display:block;vertical-align:top}.motionMergeStyles .changedIndicator{color:gray;margin-right:10px;font-size:.8em;margin-top:7px;margin-left:-19px;font-weight:bold;visibility:visible}.motionMergeStyles .changedIndicator.unchanged{visibility:hidden}.motionMergeStyles .amendmentStatus .selected a:before{content:"✓";display:block;float:left;width:16px;margin-left:-16px;text-align:center}.motionMergeStyles .amendmentStatus .votingResult{padding-left:8px;padding-right:8px;padding-bottom:8px}.motionMergeStyles .amendmentStatus .votingResult label,.motionMergeStyles .amendmentStatus .votingResult .label{font-weight:normal;margin-bottom:0;font-size:12px}.motionMergeStyles .amendmentStatus .votingResult .form-control{padding:3px 6px;font-size:12px;height:24px}.motionMergeStyles .amendmentStatus .votingData{display:flex;flex-direction:row;width:100%}.motionMergeStyles .amendmentStatus .votingData input::-webkit-outer-spin-button,.motionMergeStyles .amendmentStatus .votingData input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.motionMergeStyles .amendmentStatus .votingData input[type=number]{-moz-appearance:textfield}.motionMergeStyles .amendmentStatus .votingData label,.motionMergeStyles .amendmentStatus .votingData .label{font-weight:normal;margin-bottom:0;font-size:12px}.motionMergeStyles .amendmentStatus .votingData .form-control{padding:3px 6px;font-size:12px;height:24px}.motionMergeStyles .amendmentStatus .votingData>*{flex:0;flex-basis:25%;padding-left:8px}.motionMergeStyles .amendmentStatus .votingData>*:last-child{padding-right:8px}.motionMergeStyles .hasCollisions .texteditor{position:relative}.motionMergeStyles .hasCollisions .texteditor:before{content:attr(data-collision-start-msg);position:absolute;top:-13px;text-align:center;font-size:.7em;color:gray;width:100%}.motionMergeStyles .hasCollisions .collisionsHolder{padding-bottom:5px;padding-top:5px;padding-left:10px;background-color:#f5f5f5}.motionMergeStyles .hasCollisions .hideCollision{font-weight:normal}.motionMergeStyles .hasCollisions+.hasCollisions{margin-top:45px}.motionMergeStyles .moved{margin-top:15px;position:relative}.motionMergeStyles .moved:before{display:block;content:attr(data-moving-msg);position:absolute;top:-15px;left:0;width:100%;text-align:center;text-decoration:none;font-size:.8em;color:gray}.motionMergeStyles .appendHint:after{content:attr(data-append-hint);display:inline-block;font-size:.75em;bottom:-3px;position:relative}.motionMergeStyles .appendedCollision:before{content:"⚠️";display:inline-block;font-size:.85em;padding-right:3px;padding-left:5px;position:relative}.mergingPopoverCollisionHint{font-size:.8em}.motionMergeForm .twoColsHolder{display:flex;flex-direction:row;width:100%}.motionMergeForm .twoColsHolder .twoColsLeft{flex-basis:50%;flex-grow:0}.motionMergeForm .twoColsHolder .twoColsRight{flex-basis:50%;flex-grow:0}.motionMergeForm .sectionType1 .twoColsLeft{padding-left:calc(50px - 25px);padding-right:10px;padding-top:5px}.motionMergeForm .sectionType1 .twoColsRight{padding-left:10px;border-left:1px solid #ccc;border-right:1px solid #ccc}.motionMergeForm .sectionType1 .twoColsRight.first{border-top:1px solid #ccc;border-top-left-radius:4px;border-top-right-radius:4px}.motionMergeForm .sectionType1 .twoColsRight.last{border-bottom:1px solid #ccc;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.motionMergeForm .removeSection{font-weight:normal;margin-bottom:15px}.motionMergeForm .removeSection input{margin-right:5px}.motionMergeForm .submitHolder{text-align:right}.motionMergeForm .newAmendments .amendSubtitle{font-weight:normal;font-size:.9em}.motionMergeForm .newAmendments .control-label{margin-top:-3px;padding-top:0}.motionMergeForm .sectionHolder{padding:3px}.motionMergeForm .boxed{border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.motionMergeForm .titleChanges .title{font-weight:bold}.motionMergeForm .titleChanges .change{margin-top:10px;margin-bottom:10px;margin-left:11px}.motionMergeForm .titleChanges .change:last-child{margin-bottom:25px}.motionMergeForm .titleChanges .prefix{font-weight:bold}.motionMergeForm .titleChanges .text{font-family:"PT Sans",Courier,sans-serif;color:#000}.motionMergeForm .editorialAmendments h3{font-size:1em;font-weight:bold}.motionMergeForm .editorialAmendments .content{border-bottom:solid 1px #afcb08}.motionMergeForm .editorialAmendments .content:first-child{border-bottom:none}.motionMergeForm .dividerLabeled{position:relative;overflow:visible}.motionMergeForm .dividerLabeled:after{content:attr(data-label);position:absolute;display:block;top:-8px;left:20px;background-color:#fff;font-size:.8em;padding-left:0;padding-right:10px;color:gray}.motionMergeForm .amendmentLink{color:#6d7e00}.motionMergeForm #draftSavingPanel{position:fixed;bottom:0;right:30px;width:250px;z-index:10;padding:0;background:#fff;border:solid 1px #ccc;border-top-right-radius:3px;border-top-left-radius:3px;border-bottom:none;box-shadow:0 0 3px rgba(0,0,0,.4)}.motionMergeForm #draftSavingPanel label,.motionMergeForm #draftSavingPanel .label{font-weight:normal}.motionMergeForm #draftSavingPanel header{background-color:#eee;position:relative}.motionMergeForm #draftSavingPanel h2{font-size:16px;margin:0 35px 0 0;padding:5px}.motionMergeForm #draftSavingPanel .pdfLink{font-size:12px;position:absolute;right:5px;top:3px}.motionMergeForm #draftSavingPanel .public{padding:5px}.motionMergeForm #draftSavingPanel .autosave{padding:5px}.motionMergeForm #draftSavingPanel .publicLink{float:right;margin-right:5px}.motionMergeForm #draftSavingPanel .savingError{padding:5px;margin-top:-5px;border-bottom:solid 1px #ccc;background-color:#f44;color:#000}.motionMergeForm #draftSavingPanel .save{padding:5px;overflow:auto}.motionMergeForm #draftSavingPanel .save .lastSaved{float:left}.motionMergeForm #draftSavingPanel .save .saveDraft{float:right}.motionMergeForm #draftSavingPanel .save .none{font-size:.9em;color:gray;font-style:italic}@media screen and (min-width: 1125px){.motionMergeForm #draftSavingPanel h2{border-bottom:solid 1px #ccc}.motionMergeForm #draftSavingPanel .save{padding:0 5px 5px 5px}.motionMergeForm #draftSavingPanel .public{display:block;padding-bottom:0}.motionMergeForm #draftSavingPanel .autosave{border-bottom:solid 1px #ccc;display:block;padding-top:0}.motionMergeForm #draftSavingPanel .lastSaved{margin-top:2px}}@media screen and (max-width: 1124px){.motionMergeForm #draftSavingPanel{right:0;left:0;width:100%;display:table}.motionMergeForm #draftSavingPanel .hideSmall{display:none}.motionMergeForm #draftSavingPanel>*{display:table-cell;vertical-align:middle;line-height:25px}.motionMergeForm #draftSavingPanel>h2{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel>.public{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel .autosave{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel>.save{width:40%}}.motionMergeForm #newAmendmentAlert{position:fixed;bottom:0;right:0;left:0;height:30px;z-index:11;padding:0;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);transition:transform ease-in-out .3s;transform:translate3d(0, 35px, 0)}.motionMergeForm #newAmendmentAlert.revealed{transform:translate3d(0, 0, 0)}@media(min-width: 1024px){.motionMergeForm #newAmendmentAlert .holder{width:1024px;margin:0 auto}}.motionMergeForm #newAmendmentAlert .closeLink{float:left}.motionMergeForm #newAmendmentAlert .message{float:left;font-size:16px;line-height:30px;vertical-align:middle;font-weight:bold}.motionMergeForm #newAmendmentAlert .buttons button{line-height:26px}.mergingProtocol label,.mergingProtocol .label{font-weight:normal;margin-right:20px}.mergePublicDraft .header{width:100%;display:flex}.mergePublicDraft .motionUpdateInfo{flex-basis:66%}.mergePublicDraft .motionUpdateWidget{flex-basis:34%}.fullscreenMainHolder{background-color:#fff;width:100vw;height:100vh;position:absolute}.fullscreenMainHolder>header{margin:0;color:#fff;background:#0a321e;background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;flex-grow:0;height:36px}.fullscreenMainHolder>header .closeBtn{position:absolute;z-index:1;top:1px;right:10px;color:#fff}.fullscreenMainHolder>header .splitscreenBtn{position:absolute;z-index:1;top:1px;right:40px;color:#fff}.fullscreenMainHolder .projectorWidget{position:absolute;width:100vw;top:0}.fullscreenMainHolder .projectorWidget.primary{left:0}.fullscreenMainHolder .projectorWidget.secondary{left:50vw}.fullscreenMainHolder.splitscreen .projectorWidget{width:50vw}.projectorWidget{height:100vh;display:flex;flex-direction:column;position:relative}.projectorWidget>header{flex-grow:0;height:36px;z-index:0}.projectorWidget>header .imotionSelector{padding-top:5px}.projectorWidget>header .stdDropdown{display:inline-block;width:auto;min-width:50vw;background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFF2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") no-repeat left;padding:1px 6px 1px 30px;border:solid 1px rgba(0,0,0,0);color:#fff;font-family:"Arvo",sans-serif;font-size:18px;line-height:22px;cursor:pointer;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase}.projectorWidget>header .stdDropdown:hover{background-color:hsla(0,0%,100%,.1)}.projectorWidget>header .stdDropdown:active{border:solid 1px #fff}.projectorWidget>header .stdDropdown option{text-shadow:none;font-weight:normal;text-transform:none;font-style:normal}.projectorWidget>main{flex-grow:1;overflow:auto;padding:0 3vw 0 3vw}.projectorWidget.splitscreen>main{padding:0 1.5vw 0 1.5vw}.projectorWidget h1{font-size:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}.projectorWidget .motionTextFormattings{font-size:1.6vw}.projectorWidget .motionTextHolder h1{font-size:2.1vw}.projectorWidget .motionTextHolder h2{font-size:2vw}.projectorWidget .motionTextHolder h3{font-size:1.9vw}.projectorWidget .motionTextHolder h4{font-size:1.8vw}.projectorWidget .motionTextHolder h5{font-size:1.7vw}.projectorWidget .motionTextHolder h6{font-size:1.6vw}.projectorWidget .motionTextHolder .motionTextFormattings ol,.projectorWidget .motionTextHolder .motionTextFormattings ul{padding-left:3.5vw}.projectorWidget .motionTextHolder .motionTextFormattings ol>li::before,.projectorWidget .motionTextHolder .motionTextFormattings ul>li::before{left:-3.5vw}.projectorWidget .motionTextHolder .Image img{max-width:100%}.projectorWidget .motionTextHolder .Image .text{padding:15px}.projectorWidget .motionTextHolder .TabularData .dl-horizontal dt{text-align:left}.projectorWidget.splitscreen .motionTextHolder .paragraph.lineNumbers .text{padding-left:20px}.projectorWidget.splitscreen .motionTextHolder.isAmendment .paragraph.lineNumbers .text{padding-left:0}.projectorWidget .motionDataTable{margin-top:21px;margin-bottom:30px;font-size:1.6vw}.projectorWidget .motionDataTable>tbody>tr>th{width:17vw;padding-top:7px}.projectorWidget .motionDataTable>tbody>tr>td{padding-top:7px}.projectorWidget .speechLists .activeSpeaker,.projectorWidget .speechLists .remainingTime{text-align:center;font-size:2.5vw}.projectorWidget .speechLists .activeSpeaker{margin-top:5vh}.projectorWidget .speechLists .remainingTime{margin-top:3vh}.projectorWidget .speechLists .leftIcon{font-size:2vw}.projectorWidget .speechLists h2.green{margin:0;color:#fff;background:#afcb08;background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:"Arvo",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:3vh 0;padding-left:24vw}.projectorWidget .speechLists .waitingSingle .nameList{display:block;margin-left:25vw}.projectorWidget .speechLists .waitingSingle .nameList>li{margin-top:20px;margin-bottom:20px;font-size:2vw;line-height:3vw}.projectorWidget .speechLists .waitingSingle .nameList>li .leftIcon{float:left;margin-left:-5vw}.projectorWidget .speechLists .waitingSubqueues{margin-left:3vw;margin-right:3vw;width:auto;display:flex;flex-direction:row;justify-content:center}.projectorWidget .speechLists .waitingSubqueues>*{flex:1;display:flex;flex-direction:column}.projectorWidget .speechLists .waitingSubqueues .nameList{margin-top:1.5vw;padding-left:1.5vw}.projectorWidget .speechLists .waitingSubqueues .header .name{vertical-align:middle;font-size:2vw;font-weight:bold;display:inline-block;padding-right:10px}.projectorWidget .speechLists .waitingSubqueues .header .number{font-size:1vw;vertical-align:middle}.projectorWidget .speechLists .waitingSubqueues .applied{line-height:2.3vw;font-size:1.2vw;vertical-align:middle}.projectorWidget .speechLists .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.projectorWidget .contentPage{margin-top:21px;font-size:1.6vw}.projectorWidget .contentPage h1{font-size:2.1vw}.projectorWidget .contentPage h2{font-size:2vw}.projectorWidget .contentPage h3{font-size:1.9vw}.projectorWidget .contentPage h4{font-size:1.8vw}.projectorWidget .contentPage h5{font-size:1.7vw}.projectorWidget .contentPage h6{font-size:1.6vw}.projectorWidget .contentPage p{font-size:1.6vw}.projectorWidget .contentPage .motionList .motion>.title a,.projectorWidget .contentPage .motionList .motion>.title .motionLink{font-size:1.6vw}#loginSamlHint,.login_saml .privacyHint{border-left:solid 1px gray;padding-left:10px;margin-left:20px;margin-top:10px;font-size:.8em;overflow:auto}.login_saml .privacyHint{border-left:solid 1px gray;padding-left:10px;margin-left:20px;margin-top:0;font-size:.8em;overflow:auto}.login_saml .btn{float:left;margin-right:30px}.secondFactorAdderBody .setFaField{margin-left:30px;margin-bottom:50px}.secondFactorAdderBody .captchaForm{margin-left:30px;margin-bottom:50px;margin-top:-20px}.captchaHolder input.form-control{display:inline-block;width:200px}@media(min-width: 800px){#usernamePasswordForm,#confirmAccountForm{width:400px}}#confirmAccountForm .inputHolder{margin-bottom:15px}#confirmAccountForm .saveResetRow{overflow:auto}#confirmAccountForm .saveResetRow .save{float:left}#confirmAccountForm .saveResetRow .resend{float:right}#confirmAccountForm .saveResetRow .resend button{font-weight:normal;font-size:.8em;font-style:italic}@media(min-width: 800px){#conPwdForm{width:400px}}#conPwdForm .consultationName{margin-bottom:30px}#conPwdForm .usernameLoginOpener button{margin-top:20px;font-weight:normal}.loginUsername .passwordRecovery{float:right;font-size:.8em}.loginUsername #regConfirmation{font-size:11px}.accountDeleteForm .submit{display:flex;width:100%}.accountDeleteForm .submit label,.accountDeleteForm .submit .label{font-weight:normal;flex-basis:50%}.accountDeleteForm .submit>div{flex-basis:50%;text-align:right}.userAccountForm .requestEmailChange{display:inline-block;margin-left:10px;font-style:italic;font-size:.8em}.userAccountForm .changeRequested{display:block;font-size:.8em;margin-top:5px;margin-bottom:5px}.userAccountForm .resendButton{color:#6d7e00;font-style:italic}.userAccountForm .btn2FaRemoveOpen{padding:0;font-weight:normal;font-style:italic;font-size:.8em;margin-left:16px}.userAccountForm .secondFactorRemoveBody{margin-top:10px}.notificationForm label,.notificationForm .label{cursor:pointer}.notificationForm input[type=checkbox]{margin-right:10px}.notificationForm .notificationRow{margin-top:10px;margin-bottom:20px}.notificationForm .radioList>div{padding-left:27px}.notificationForm .radioList label,.notificationForm .radioList .label{display:block;font-weight:normal;margin-bottom:10px}.userDataExport .exportRow{margin-top:20px;text-align:center}.askPermissionForm{text-align:center;margin-top:50px;margin-bottom:30px}body{background-image:url(gruenes_ci2_background.jpg);background-repeat:repeat;background-position:top center;background-attachment:fixed}.logoImg{display:block;width:89px;height:87px;background-image:url("logo_gruene-2015.png")}.well h1{font-family:"Arvo Gruen",sans-serif;font-weight:normal}.motionListStd .motion .title a{font-family:"Arvo",sans-serif}#mainmenu{display:block;background:#0a321e;text-align:right;padding:.5em 0;box-shadow:5px 5px 10px rgba(0,0,0,.2);z-index:2;position:relative}#mainmenu .navbar{min-height:36px}#mainmenu .navbar .nav li a,#mainmenu .navbar .nav li a:visited,#mainmenu .navbar .nav li a:link{color:#fff;font-family:"PT Sans","Segoe UI",Frutiger,"Frutiger Linotype","Dejavu sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:16px;font-weight:normal;text-transform:none;line-height:36px;vertical-align:middle}#mainmenu .navigation li.addPage{float:right}#mainmenu .navbar-nav{margin:7.5px 0 7.5px 15px}#mainmenu .navbar-inner{max-width:1140px;margin:0 auto}#mainmenu .unsichtbar{display:none}#mainmenu .navigation{background:#0a321e;font-size:20.8px;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-weight:normal}#mainmenu .navigation ul{list-style-type:none}#mainmenu .navigation li{display:block;float:left;position:relative;padding:0;margin:0}#mainmenu .navigation a,#mainmenu .navigation a:link,#mainmenu .navigation a:visited{padding:1em;display:block;background:rgba(0,0,0,0);color:#fff;border:0}.row.logo{margin-bottom:1em;position:relative;min-height:110px}.row.logo #logo{display:inline-block;width:20%;z-index:2;position:relative;margin-top:.5em}.row.logo .hgroup{display:inline-block;width:auto !important;text-align:right;z-index:2;position:absolute;top:10%;right:0;border-top:.2em solid #fff;border-bottom:.2em solid #fff;padding:.5em 0}@media screen and (max-width: 550px){.row.logo .hgroup{display:none}}.row.logo a,.row.logo a:link,.row.logo a:visited{color:#fff;text-decoration:none;text-shadow:1px 1px 5px rgba(0,0,0,.3)}.row.logo #site-title,.row.logo #site-description{padding:0 0 0 5px;margin:0;line-height:1em;display:block;text-align:right}.row.logo #site-title{color:#fff;text-shadow:2px 2px 5px rgba(0,0,0,.4);text-transform:uppercase;font-family:"Arvo Gruen","Arvo",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-size:40px}.row.logo #site-description{text-align:right;margin-top:.5em;font-size:18px;text-shadow:1px 1px 5px rgba(0,0,0,.3);color:#ffe000;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}.logoRow{margin:0;position:relative;min-height:110px}.logoRow #logo{display:inline-block;width:20%;z-index:2;position:relative;margin-top:.5em}.logoRow .hgroup{display:inline-block;width:auto !important;text-align:right;z-index:2;position:absolute;top:28px;right:0;border-top:.2em solid #fff;border-bottom:.2em solid #fff;padding:.5em 0}@media screen and (max-width: 550px){.logoRow .hgroup{display:none}}.logoRow a,.logoRow a:link,.logoRow a:visited{color:#fff;text-decoration:none;text-shadow:1px 1px 5px rgba(0,0,0,.3)}.logoRow #site-title,.logoRow #site-description{padding:0 0 0 5px;margin:0;line-height:1em;display:block;text-align:right}.logoRow #site-title{color:#fff;text-shadow:2px 2px 5px rgba(0,0,0,.4);text-transform:uppercase;font-family:"Arvo Gruen","Arvo",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-size:40px}.logoRow #site-description{text-align:right;margin-top:.5em;font-size:18px;text-shadow:1px 1px 5px rgba(0,0,0,.3);color:#ffe000;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}.navwrap{margin-bottom:2em}.breadcrumb{display:block;z-index:2;position:relative;background:#fe0;color:#0a321e;padding:.3em 1em;font-size:14.4px;font-family:"PT Sans Bold",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-weight:normal;text-transform:none;margin:0;color:#0a321e}.breadcrumb a,.breadcrumb a:link,.breadcrumb a:visited{color:#0a321e}footer.footer{text-align:center;font-size:12.8px;color:#fff;padding:1em;margin-bottom:30px}footer.footer .version{font-size:12.8px}footer.footer a,footer.footer a:link,footer.footer a:visited{color:#ffe000}.well{border-radius:0;box-shadow:5px 5px 10px rgba(0,0,0,.2)}@media(min-width: 992px){main.col-md-9{width:750px}aside.col-md-3{width:274px}}#sidebar{font-size:16px;padding-right:0;padding-left:50px}#sidebar .form-search{margin-bottom:2em}#sidebar .form-search .invisible,#sidebar .form-search label,#sidebar .form-search .label{display:none}#sidebar .form-search .query{padding:1em 5%;border:1px solid #0a321e;width:100%}#sidebar .form-search button{border:0;background:#0a321e;color:#fff;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;padding:.5em 1em;margin-top:1em;font-size:1em;font-weight:normal}@media only screen and (min-width: 770px){#sidebar .form-search .query{box-shadow:5px 5px 10px rgba(0,0,0,.2)}#sidebar .form-search button{box-shadow:5px 5px 10px rgba(0,0,0,.2)}}#sidebar .sidebar-box,#sidebar .sidebarActions{margin:0 0 2em 0;padding:18px;border:0;background:#e6e6e6;box-shadow:5px 5px 10px rgba(0,0,0,.2);border-radius:0;list-style-type:none}#sidebar .sidebar-box a,#sidebar .sidebarActions a{padding:10px 0;display:block}#sidebar .sidebar-box a:hover,#sidebar .sidebarActions a:hover{background-color:#eee}#sidebar .sidebar-box a .icon:before,#sidebar .sidebarActions a .icon:before{margin-right:.2em}#sidebar .sidebar-box li a,#sidebar .sidebar-box .icon,#sidebar .sidebarActions li a,#sidebar .sidebarActions .icon{color:#46962b}#sidebar .sidebar-box button,#sidebar .sidebarActions button{color:#46962b;text-align:left;padding:10px 0}#sidebar .sidebar-box button:hover,#sidebar .sidebarActions button:hover{background-color:#eee}#sidebar .nav-list{margin-bottom:0}#sidebar .nav-list>li.nav-header{padding:5px 0 5px 0;color:#0a321e;font-size:20px;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}#sidebar .nav-list>li{padding:0}#sidebar .nav>li>a{padding:10px 0}#sidebar .createMotionHolder2{margin-bottom:2em}#sidebar .createMotionHolder2 .createMotion{display:block;box-shadow:5px 5px 10px rgba(0,0,0,.2);border:0;background:#0a321e;color:#fff;font-family:"Arvo","Arvo Gruen",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;padding:.5em 1em;margin-top:1em;font-size:1em;font-weight:normal}#sidebar .createMotionHolder2 .createMotion span{margin-right:.5em}#sidebar .share_buttons{margin-top:20px}#sidebar .share_buttons li{width:102px} /*# sourceMappingURL=layout-green_layout.css.map */ diff --git a/plugins/green_layout/assets/layout-green_layout.css.map b/plugins/green_layout/assets/layout-green_layout.css.map index f5abcac881..f27f687b8f 100644 --- a/plugins/green_layout/assets/layout-green_layout.css.map +++ b/plugins/green_layout/assets/layout-green_layout.css.map @@ -1 +1 @@ -{"version":3,"sources":["green_layout/assets/layout-green_layout.css","green_layout/assets/_arvo.scss","green_layout/assets/_ptsans.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_normalize.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_print.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_glyphicons.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_scaffolding.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_variables.scss","../web/css/_variables.scss","green_layout/assets/layout-green_layout.scss","../web/css/_bootstrap.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_tab-focus.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_image.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_type.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_text-emphasis.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_background-variant.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_clearfix.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_text-overflow.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_code.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_tables.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_table-row.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_forms.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_forms.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_vendor-prefixes.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_grid.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_buttons.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_buttons.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_opacity.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_button-groups.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_component-animations.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_input-groups.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_dropdowns.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_nav-divider.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_reset-filter.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_navs.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_navbar.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_nav-vertical-align.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_alerts.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_alerts.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_list-group.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_list-group.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_pagination.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_pagination.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_breadcrumbs.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_labels.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_labels.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_wells.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_close.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_modals.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_popovers.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_reset-text.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_tooltip.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_utilities.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_center-block.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_hide-text.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/_responsive-utilities.scss","../web/css/bootstrap-3.4.3-sass/bootstrap/mixins/_responsive-visibility.scss","../web/css/_fontello.scss","../web/css/_wizard.scss","../web/css/_helpers.scss","../web/css/_elements.scss","../web/css/_bootstrap_overwrites.scss","../web/css/_mixins.scss","../web/css/_base_layout.scss","../web/css/_contentpage.scss","../web/css/_consultation_motion_list.scss","../web/css/_speech_lists.scss","../web/css/_voting.scss","../web/css/_motions.scss","../web/css/_proposed_procedure.scss","../web/css/_styles.scss","../web/css/_merging.scss","../web/css/_projector.scss","../web/css/_user_pages.scss"],"names":[],"mappings":"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A,6B4BoBzC,U5BpCiC,CAAA,iC4ByC/B,U5BpCuC,CAAA,8E4BuCrC,U5BtCqC,CAAA,8BACA,CAAA,8H4B4CrC,U5B3CqC,CAAA,yCACA,CAAA,oI4BkDrC,U5BjDqC,CAAA,8BACA,CAAA,wH4B2DrC,U5B9DqC,CAAA,yCACA,CAAA,yB4BqEvC,sDAGI,U5B5EmC,CAAA,wH4B8EjC,U5B7EiC,CAAA,8BACA,CAAA,6L4BmFjC,U5BlFiC,CAAA,yCACA,CAAA,mM4ByFjC,U5BxFiC,CAAA,8BACA,CAAA,CAAA,+B4BkGzC,iB5BxFyC,CAAA,0E4B0FvC,qB5B5FuC,CAAA,yC4BgGvC,qB5B/FuC,CAAA,8D4BoGzC,qC5BtHiC,CAAA,6B4BgIjC,U5B7HyC,CAAA,mC4B+HvC,U5B9HuC,CAAA,0B4BmIzC,U5BpIyC,CAAA,gE4BsIvC,U5BrIuC,CAAA,0L4B2IrC,U5BvIqC,CAAA,gB4BiJ3C,qB5BhI4C,CAAA,6BACA,CAAA,8B4BmI1C,qB5BhI0C,CAAA,wE4BkIxC,U5BxHwC,CAAA,8BACA,CAAA,6B4B8H1C,qB5B9I0C,CAAA,iC4BmJxC,qB5B9IwC,CAAA,8E4BiJtC,U5BhJsC,CAAA,8BACA,CAAA,8H4BsJtC,U5BvJsC,CAAA,iCAGA,CAAA,oI4B4JtC,U5B3JsC,CAAA,8BACA,CAAA,wH4BoKtC,U5BzKsC,CAAA,iCAGA,CAAA,yB4B8KxC,kEAGI,6B5BxLoC,CAAA,0D4B2LpC,iC5B3LoC,CAAA,sD4B8LpC,qB5B3LoC,CAAA,wH4B6LlC,U5B5LkC,CAAA,8BACA,CAAA,6L4BkMlC,U5BnMkC,CAAA,iCAGA,CAAA,mM4BwMlC,U5BvMkC,CAAA,8BACA,CAAA,CAAA,+B4BkN1C,iB5BxM0C,CAAA,0E4B0MxC,qB5B5MwC,CAAA,yC4BgNxC,qB5B/MwC,CAAA,8D4BoN1C,mCAEE,CAAA,6BAGF,qB5BxO0C,CAAA,mC4B0OxC,U5BzOwC,CAAA,0B4B8O1C,qB5B/O0C,CAAA,gE4BiPxC,U5BhPwC,CAAA,0L4BsPtC,U5BlPsC,CAAA,O8BhZ5C,Y9B4mB8B,CAAA,kBAljBJ,CAAA,8B8BvDxB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E,CAAA,sCADF,oCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,sCADF,qCACE,CAAA,uCADF,qCACE,CAAA,6BAIJ,sCACE,CAAA,iBACA,CAAA,qCAEA,yCACE,CAAA,iBACA,CAAA,UACA,CAAA,KACA,CAAA,4CAGF,uBACE,CAAA,wCAIA,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,wCADF,oCACE,CAAA,yCADF,oCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,yCADF,qCACE,CAAA,0CADF,qCACE,CAAA,sCAGJ,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAAA,sCACA,oCAAA,CAA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","file":"layout-green_layout.css","sourcesContent":["@font-face{font-family:\"Arvo\";font-style:normal;font-weight:normal;src:url(\"./arvo_regular.woff\") format(\"woff\")}@font-face{font-family:\"Arvo Gruen\";font-style:normal;font-weight:normal;src:url(\"./arvo_gruen.woff\") format(\"woff\")}@font-face{font-family:\"PT Sans\";font-style:normal;font-weight:normal;src:url(\"./ptsans_regular.woff\") format(\"woff\")}@font-face{font-family:\"PT Sans Bold\";font-style:normal;font-weight:normal;src:url(\"./ptsans_bold.woff\") format(\"woff\")}/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000 !important;text-shadow:none !important;background:rgba(0,0,0,0) !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:\" (\" attr(href) \")\"}abbr[title]:after{content:\" (\" attr(title) \")\"}a[href^=\"#\"]:after,a[href^=\"javascript:\"]:after{content:\"\"}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:\"Glyphicons Halflings\";src:url(\"../../fonts/glyphicons-halflings-regular.eot\");src:url(\"../../fonts/glyphicons-halflings-regular.eot?#iefix\") format(\"embedded-opentype\"),url(\"../../fonts/glyphicons-halflings-regular.woff2\") format(\"woff2\"),url(\"../../fonts/glyphicons-halflings-regular.woff\") format(\"woff\"),url(\"../../fonts/glyphicons-halflings-regular.ttf\") format(\"truetype\"),url(\"../../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular\") format(\"svg\")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:\"Glyphicons Halflings\";font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:\"*\"}.glyphicon-plus:before{content:\"+\"}.glyphicon-euro:before,.glyphicon-eur:before{content:\"€\"}.glyphicon-minus:before{content:\"−\"}.glyphicon-cloud:before{content:\"☁\"}.glyphicon-envelope:before{content:\"✉\"}.glyphicon-pencil:before{content:\"✏\"}.glyphicon-glass:before{content:\"\"}.glyphicon-music:before{content:\"\"}.glyphicon-search:before{content:\"\"}.glyphicon-heart:before{content:\"\"}.glyphicon-star:before{content:\"\"}.glyphicon-star-empty:before{content:\"\"}.glyphicon-user:before{content:\"\"}.glyphicon-film:before{content:\"\"}.glyphicon-th-large:before{content:\"\"}.glyphicon-th:before{content:\"\"}.glyphicon-th-list:before{content:\"\"}.glyphicon-ok:before{content:\"\"}.glyphicon-remove:before{content:\"\"}.glyphicon-zoom-in:before{content:\"\"}.glyphicon-zoom-out:before{content:\"\"}.glyphicon-off:before{content:\"\"}.glyphicon-signal:before{content:\"\"}.glyphicon-cog:before{content:\"\"}.glyphicon-trash:before{content:\"\"}.glyphicon-home:before{content:\"\"}.glyphicon-file:before{content:\"\"}.glyphicon-time:before{content:\"\"}.glyphicon-road:before{content:\"\"}.glyphicon-download-alt:before{content:\"\"}.glyphicon-download:before{content:\"\"}.glyphicon-upload:before{content:\"\"}.glyphicon-inbox:before{content:\"\"}.glyphicon-play-circle:before{content:\"\"}.glyphicon-repeat:before{content:\"\"}.glyphicon-refresh:before{content:\"\"}.glyphicon-list-alt:before{content:\"\"}.glyphicon-lock:before{content:\"\"}.glyphicon-flag:before{content:\"\"}.glyphicon-headphones:before{content:\"\"}.glyphicon-volume-off:before{content:\"\"}.glyphicon-volume-down:before{content:\"\"}.glyphicon-volume-up:before{content:\"\"}.glyphicon-qrcode:before{content:\"\"}.glyphicon-barcode:before{content:\"\"}.glyphicon-tag:before{content:\"\"}.glyphicon-tags:before{content:\"\"}.glyphicon-book:before{content:\"\"}.glyphicon-bookmark:before{content:\"\"}.glyphicon-print:before{content:\"\"}.glyphicon-camera:before{content:\"\"}.glyphicon-font:before{content:\"\"}.glyphicon-bold:before{content:\"\"}.glyphicon-italic:before{content:\"\"}.glyphicon-text-height:before{content:\"\"}.glyphicon-text-width:before{content:\"\"}.glyphicon-align-left:before{content:\"\"}.glyphicon-align-center:before{content:\"\"}.glyphicon-align-right:before{content:\"\"}.glyphicon-align-justify:before{content:\"\"}.glyphicon-list:before{content:\"\"}.glyphicon-indent-left:before{content:\"\"}.glyphicon-indent-right:before{content:\"\"}.glyphicon-facetime-video:before{content:\"\"}.glyphicon-picture:before{content:\"\"}.glyphicon-map-marker:before{content:\"\"}.glyphicon-adjust:before{content:\"\"}.glyphicon-tint:before{content:\"\"}.glyphicon-edit:before{content:\"\"}.glyphicon-share:before{content:\"\"}.glyphicon-check:before{content:\"\"}.glyphicon-move:before{content:\"\"}.glyphicon-step-backward:before{content:\"\"}.glyphicon-fast-backward:before{content:\"\"}.glyphicon-backward:before{content:\"\"}.glyphicon-play:before{content:\"\"}.glyphicon-pause:before{content:\"\"}.glyphicon-stop:before{content:\"\"}.glyphicon-forward:before{content:\"\"}.glyphicon-fast-forward:before{content:\"\"}.glyphicon-step-forward:before{content:\"\"}.glyphicon-eject:before{content:\"\"}.glyphicon-chevron-left:before{content:\"\"}.glyphicon-chevron-right:before{content:\"\"}.glyphicon-plus-sign:before{content:\"\"}.glyphicon-minus-sign:before{content:\"\"}.glyphicon-remove-sign:before{content:\"\"}.glyphicon-ok-sign:before{content:\"\"}.glyphicon-question-sign:before{content:\"\"}.glyphicon-info-sign:before{content:\"\"}.glyphicon-screenshot:before{content:\"\"}.glyphicon-remove-circle:before{content:\"\"}.glyphicon-ok-circle:before{content:\"\"}.glyphicon-ban-circle:before{content:\"\"}.glyphicon-arrow-left:before{content:\"\"}.glyphicon-arrow-right:before{content:\"\"}.glyphicon-arrow-up:before{content:\"\"}.glyphicon-arrow-down:before{content:\"\"}.glyphicon-share-alt:before{content:\"\"}.glyphicon-resize-full:before{content:\"\"}.glyphicon-resize-small:before{content:\"\"}.glyphicon-exclamation-sign:before{content:\"\"}.glyphicon-gift:before{content:\"\"}.glyphicon-leaf:before{content:\"\"}.glyphicon-fire:before{content:\"\"}.glyphicon-eye-open:before{content:\"\"}.glyphicon-eye-close:before{content:\"\"}.glyphicon-warning-sign:before{content:\"\"}.glyphicon-plane:before{content:\"\"}.glyphicon-calendar:before{content:\"\"}.glyphicon-random:before{content:\"\"}.glyphicon-comment:before{content:\"\"}.glyphicon-magnet:before{content:\"\"}.glyphicon-chevron-up:before{content:\"\"}.glyphicon-chevron-down:before{content:\"\"}.glyphicon-retweet:before{content:\"\"}.glyphicon-shopping-cart:before{content:\"\"}.glyphicon-folder-close:before{content:\"\"}.glyphicon-folder-open:before{content:\"\"}.glyphicon-resize-vertical:before{content:\"\"}.glyphicon-resize-horizontal:before{content:\"\"}.glyphicon-hdd:before{content:\"\"}.glyphicon-bullhorn:before{content:\"\"}.glyphicon-bell:before{content:\"\"}.glyphicon-certificate:before{content:\"\"}.glyphicon-thumbs-up:before{content:\"\"}.glyphicon-thumbs-down:before{content:\"\"}.glyphicon-hand-right:before{content:\"\"}.glyphicon-hand-left:before{content:\"\"}.glyphicon-hand-up:before{content:\"\"}.glyphicon-hand-down:before{content:\"\"}.glyphicon-circle-arrow-right:before{content:\"\"}.glyphicon-circle-arrow-left:before{content:\"\"}.glyphicon-circle-arrow-up:before{content:\"\"}.glyphicon-circle-arrow-down:before{content:\"\"}.glyphicon-globe:before{content:\"\"}.glyphicon-wrench:before{content:\"\"}.glyphicon-tasks:before{content:\"\"}.glyphicon-filter:before{content:\"\"}.glyphicon-briefcase:before{content:\"\"}.glyphicon-fullscreen:before{content:\"\"}.glyphicon-dashboard:before{content:\"\"}.glyphicon-paperclip:before{content:\"\"}.glyphicon-heart-empty:before{content:\"\"}.glyphicon-link:before{content:\"\"}.glyphicon-phone:before{content:\"\"}.glyphicon-pushpin:before{content:\"\"}.glyphicon-usd:before{content:\"\"}.glyphicon-gbp:before{content:\"\"}.glyphicon-sort:before{content:\"\"}.glyphicon-sort-by-alphabet:before{content:\"\"}.glyphicon-sort-by-alphabet-alt:before{content:\"\"}.glyphicon-sort-by-order:before{content:\"\"}.glyphicon-sort-by-order-alt:before{content:\"\"}.glyphicon-sort-by-attributes:before{content:\"\"}.glyphicon-sort-by-attributes-alt:before{content:\"\"}.glyphicon-unchecked:before{content:\"\"}.glyphicon-expand:before{content:\"\"}.glyphicon-collapse-down:before{content:\"\"}.glyphicon-collapse-up:before{content:\"\"}.glyphicon-log-in:before{content:\"\"}.glyphicon-flash:before{content:\"\"}.glyphicon-log-out:before{content:\"\"}.glyphicon-new-window:before{content:\"\"}.glyphicon-record:before{content:\"\"}.glyphicon-save:before{content:\"\"}.glyphicon-open:before{content:\"\"}.glyphicon-saved:before{content:\"\"}.glyphicon-import:before{content:\"\"}.glyphicon-export:before{content:\"\"}.glyphicon-send:before{content:\"\"}.glyphicon-floppy-disk:before{content:\"\"}.glyphicon-floppy-saved:before{content:\"\"}.glyphicon-floppy-remove:before{content:\"\"}.glyphicon-floppy-save:before{content:\"\"}.glyphicon-floppy-open:before{content:\"\"}.glyphicon-credit-card:before{content:\"\"}.glyphicon-transfer:before{content:\"\"}.glyphicon-cutlery:before{content:\"\"}.glyphicon-header:before{content:\"\"}.glyphicon-compressed:before{content:\"\"}.glyphicon-earphone:before{content:\"\"}.glyphicon-phone-alt:before{content:\"\"}.glyphicon-tower:before{content:\"\"}.glyphicon-stats:before{content:\"\"}.glyphicon-sd-video:before{content:\"\"}.glyphicon-hd-video:before{content:\"\"}.glyphicon-subtitles:before{content:\"\"}.glyphicon-sound-stereo:before{content:\"\"}.glyphicon-sound-dolby:before{content:\"\"}.glyphicon-sound-5-1:before{content:\"\"}.glyphicon-sound-6-1:before{content:\"\"}.glyphicon-sound-7-1:before{content:\"\"}.glyphicon-copyright-mark:before{content:\"\"}.glyphicon-registration-mark:before{content:\"\"}.glyphicon-cloud-download:before{content:\"\"}.glyphicon-cloud-upload:before{content:\"\"}.glyphicon-tree-conifer:before{content:\"\"}.glyphicon-tree-deciduous:before{content:\"\"}.glyphicon-cd:before{content:\"\"}.glyphicon-save-file:before{content:\"\"}.glyphicon-open-file:before{content:\"\"}.glyphicon-level-up:before{content:\"\"}.glyphicon-copy:before{content:\"\"}.glyphicon-paste:before{content:\"\"}.glyphicon-alert:before{content:\"\"}.glyphicon-equalizer:before{content:\"\"}.glyphicon-king:before{content:\"\"}.glyphicon-queen:before{content:\"\"}.glyphicon-pawn:before{content:\"\"}.glyphicon-bishop:before{content:\"\"}.glyphicon-knight:before{content:\"\"}.glyphicon-baby-formula:before{content:\"\"}.glyphicon-tent:before{content:\"⛺\"}.glyphicon-blackboard:before{content:\"\"}.glyphicon-bed:before{content:\"\"}.glyphicon-apple:before{content:\"\"}.glyphicon-erase:before{content:\"\"}.glyphicon-hourglass:before{content:\"⌛\"}.glyphicon-lamp:before{content:\"\"}.glyphicon-duplicate:before{content:\"\"}.glyphicon-piggy-bank:before{content:\"\"}.glyphicon-scissors:before{content:\"\"}.glyphicon-bitcoin:before{content:\"\"}.glyphicon-btc:before{content:\"\"}.glyphicon-xbt:before{content:\"\"}.glyphicon-yen:before{content:\"¥\"}.glyphicon-jpy:before{content:\"¥\"}.glyphicon-ruble:before{content:\"₽\"}.glyphicon-rub:before{content:\"₽\"}.glyphicon-scale:before{content:\"\"}.glyphicon-ice-lolly:before{content:\"\"}.glyphicon-ice-lolly-tasted:before{content:\"\"}.glyphicon-education:before{content:\"\"}.glyphicon-option-horizontal:before{content:\"\"}.glyphicon-option-vertical:before{content:\"\"}.glyphicon-menu-hamburger:before{content:\"\"}.glyphicon-modal-window:before{content:\"\"}.glyphicon-oil:before{content:\"\"}.glyphicon-grain:before{content:\"\"}.glyphicon-sunglasses:before{content:\"\"}.glyphicon-text-size:before{content:\"\"}.glyphicon-text-color:before{content:\"\"}.glyphicon-text-background:before{content:\"\"}.glyphicon-object-align-top:before{content:\"\"}.glyphicon-object-align-bottom:before{content:\"\"}.glyphicon-object-align-horizontal:before{content:\"\"}.glyphicon-object-align-left:before{content:\"\"}.glyphicon-object-align-vertical:before{content:\"\"}.glyphicon-object-align-right:before{content:\"\"}.glyphicon-triangle-right:before{content:\"\"}.glyphicon-triangle-left:before{content:\"\"}.glyphicon-triangle-bottom:before{content:\"\"}.glyphicon-triangle-top:before{content:\"\"}.glyphicon-console:before{content:\"\"}.glyphicon-superscript:before{content:\"\"}.glyphicon-subscript:before{content:\"\"}.glyphicon-menu-left:before{content:\"\"}.glyphicon-menu-right:before{content:\"\"}.glyphicon-menu-down:before{content:\"\"}.glyphicon-menu-up:before{content:\"\"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.5;color:#484649;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#6d7e00;text-decoration:none}a:hover,a:focus{color:rgb(153.119047619,177,0);text-decoration:none}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.5;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid hsl(0,0%,93.5%)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:400;line-height:1;color:hsl(0,0%,46.7%)}h1,.h1,h2,.h2,h3,.h3{margin-top:21px;margin-bottom:10.5px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10.5px;margin-bottom:10.5px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10.5px}.lead{margin-bottom:21px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width: 768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase,.initialism{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:hsl(0,0%,46.7%)}.text-primary{color:#e2007a}a.text-primary:hover,a.text-primary:focus{color:rgb(175,0,94.4690265487)}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:rgb(42.808988764,84.191011236,43.5224719101)}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:rgb(35.984375,82.25,105.015625)}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:rgb(102.2741116751,80.7817258883,43.7258883249)}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:hsl(1.1650485437,43.829787234%,36.0784313725%)}.bg-primary{color:#fff}.bg-primary{background-color:#e2007a}a.bg-primary:hover,a.bg-primary:focus{background-color:rgb(175,0,94.4690265487)}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:hsl(102.5,44.4444444444%,79.4117647059%)}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:hsl(200,65.2173913043%,80.9803921569%)}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:hsl(50.4,80.6451612903%,83.9215686275%)}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:hsl(0,43.4782608696%,80.9803921569%)}.page-header{padding-bottom:9.5px;margin:42px 0 21px;border-bottom:1px solid hsl(0,0%,93.5%)}ul,ol{margin-top:0;margin-bottom:10.5px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:21px}dt,dd{line-height:1.5}dt{font-weight:700}dd{margin-left:0}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:\" \"}.dl-horizontal dd:after{clear:both}@media(min-width: 992px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help}.initialism{font-size:90%}blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:14px;border-left:5px solid hsl(0,0%,93.5%)}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.5;color:hsl(0,0%,46.7%)}blockquote footer:before,blockquote small:before,blockquote .small:before{content:\"— \"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid hsl(0,0%,93.5%);border-left:0}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:\"\"}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:\" —\"}address{margin-bottom:21px;font-style:normal;line-height:1.5}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,\"Courier New\",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:10px;margin:0 0 10.5px;font-size:13px;line-height:1.5;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:rgba(0,0,0,0);border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}table{background-color:rgba(0,0,0,0)}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}caption{padding-top:8px;padding-bottom:8px;color:hsl(0,0%,46.7%);text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:21px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.5;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}.table>thead>tr>td.active,.table>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:hsl(0,0%,91.0784313725%)}.table>thead>tr>td.success,.table>thead>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:hsl(102.5,44.4444444444%,84.4117647059%)}.table>thead>tr>td.info,.table>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:hsl(200,65.2173913043%,85.9803921569%)}.table>thead>tr>td.warning,.table>thead>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:hsl(50.4,80.6451612903%,88.9215686275%)}.table>thead>tr>td.danger,.table>thead>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:hsl(0,43.4782608696%,85.9803921569%)}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width: 767px){.table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label,.label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;appearance:none}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \\9 ;line-height:normal}input[type=radio][disabled],input[type=radio].disabled,fieldset[disabled] input[type=radio],input[type=checkbox][disabled],input[type=checkbox].disabled,fieldset[disabled] input[type=checkbox]{cursor:not-allowed}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.5;color:hsl(0,0%,33.5%)}.form-control{display:block;width:100%;height:35px;padding:6px 12px;font-size:14px;line-height:1.5;color:hsl(0,0%,33.5%);background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-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-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:rgba(0,0,0,0);border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:hsl(0,0%,93.5%);opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio: 0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:35px}input[type=date].input-sm,.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm input[type=date],input[type=time].input-sm,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm input[type=time],input[type=datetime-local].input-sm,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm input[type=datetime-local],input[type=month].input-sm,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm input[type=month]{line-height:30px}input[type=date].input-lg,.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg input[type=date],input[type=time].input-lg,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg input[type=time],input[type=datetime-local].input-lg,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg input[type=datetime-local],input[type=month].input-lg,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg input[type=month]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio.disabled label,.radio.disabled .label,fieldset[disabled] .radio label,fieldset[disabled] .radio .label,.checkbox.disabled label,.checkbox.disabled .label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox .label{cursor:not-allowed}.radio label,.radio .label,.checkbox label,.checkbox .label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \\9 ;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline.disabled,fieldset[disabled] .radio-inline,.checkbox-inline.disabled,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}.form-control-static{min-height:35px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.form-control-static.input-sm,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-right:0;padding-left:0}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:33px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:46px;line-height:46px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:39px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:43.75px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:35px;height:35px;line-height:35px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.radio .label,.has-success.checkbox label,.has-success.checkbox .label,.has-success.radio-inline label,.has-success.radio-inline .label,.has-success.checkbox-inline label,.has-success.checkbox-inline .label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:rgb(42.808988764,84.191011236,43.5224719101);-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(102.5280898876,177.4719101124,103.8202247191);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(102.5280898876,177.4719101124,103.8202247191)}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.radio .label,.has-warning.checkbox label,.has-warning.checkbox .label,.has-warning.radio-inline label,.has-warning.radio-inline .label,.has-warning.checkbox-inline label,.has-warning.checkbox-inline .label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:rgb(102.2741116751,80.7817258883,43.7258883249);-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(191.807106599,160.7461928934,107.192893401);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px rgb(191.807106599,160.7461928934,107.192893401)}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.radio .label,.has-error.checkbox label,.has-error.checkbox .label,.has-error.radio-inline label,.has-error.radio-inline .label,.has-error.checkbox-inline label,.has-error.checkbox-inline .label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:hsl(1.1650485437,43.829787234%,36.0784313725%);-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px hsl(1.1650485437,43.829787234%,66.0784313725%);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px hsl(1.1650485437,43.829787234%,66.0784313725%)}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback,.has-feedback .label~.form-control-feedback{top:26px}.has-feedback label.sr-only~.form-control-feedback,.has-feedback .sr-only.label~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:hsl(280,2.0979020979%,53.0392156863%)}@media(min-width: 768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .radio .label,.form-inline .checkbox label,.form-inline .checkbox .label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:28px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:\" \"}.form-horizontal .form-group:after{clear:both}@media(min-width: 768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media(min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid rgba(0,0,0,0);padding:6px 12px;font-size:14px;line-height:1.5;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:hsl(0,0%,90%);border-color:hsl(0,0%,55%)}.btn-default:hover{color:#333;background-color:hsl(0,0%,90%);border-color:hsl(0,0%,68%)}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{color:#333;background-color:hsl(0,0%,90%);background-image:none;border-color:hsl(0,0%,68%)}.btn-default:active:hover,.btn-default:active:focus,.btn-default:active.focus,.btn-default.active:hover,.btn-default.active:focus,.btn-default.active.focus,.open>.btn-default.dropdown-toggle:hover,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle.focus{color:#333;background-color:hsl(0,0%,83%);border-color:hsl(0,0%,55%)}.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled.focus,.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#e2007a;border-color:rgb(200.5,0,108.2345132743)}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:rgb(175,0,94.4690265487);border-color:rgb(73,0,39.407079646)}.btn-primary:hover{color:#fff;background-color:rgb(175,0,94.4690265487);border-color:rgb(139.3,0,75.1973451327)}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:rgb(175,0,94.4690265487);background-image:none;border-color:rgb(139.3,0,75.1973451327)}.btn-primary:active:hover,.btn-primary:active:focus,.btn-primary:active.focus,.btn-primary.active:hover,.btn-primary.active:focus,.btn-primary.active.focus,.open>.btn-primary.dropdown-toggle:hover,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle.focus{color:#fff;background-color:rgb(139.3,0,75.1973451327);border-color:rgb(73,0,39.407079646)}.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled.focus,.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary.focus{background-color:#e2007a;border-color:rgb(200.5,0,108.2345132743)}.btn-primary .badge{color:#e2007a;background-color:#fff}.btn-success{color:#fff;background-color:#2c882c;border-color:hsl(120,51.1111111111%,30.2941176471%)}.btn-success:focus,.btn-success.focus{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);border-color:rgb(6.6,20.4,6.6)}.btn-success:hover{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);border-color:hsl(120,51.1111111111%,18.2941176471%)}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:hsl(120,51.1111111111%,25.2941176471%);background-image:none;border-color:hsl(120,51.1111111111%,18.2941176471%)}.btn-success:active:hover,.btn-success:active:focus,.btn-success:active.focus,.btn-success.active:hover,.btn-success.active:focus,.btn-success.active.focus,.open>.btn-success.dropdown-toggle:hover,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle.focus{color:#fff;background-color:hsl(120,51.1111111111%,18.2941176471%);border-color:rgb(6.6,20.4,6.6)}.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled.focus,.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success.focus{background-color:#2c882c;border-color:hsl(120,51.1111111111%,30.2941176471%)}.btn-success .badge{color:#2c882c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:rgb(69.7715736041,183.845177665,217.7284263959)}.btn-info:focus,.btn-info.focus{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);border-color:rgb(26.8020304569,108.8324873096,133.1979695431)}.btn-info:hover{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);border-color:rgb(37.9081218274,153.9299492386,188.3918781726)}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:rgb(48.5431472081,175.6903553299,213.4568527919);background-image:none;border-color:rgb(37.9081218274,153.9299492386,188.3918781726)}.btn-info:active:hover,.btn-info:active:focus,.btn-info:active.focus,.btn-info.active:hover,.btn-info.active:focus,.btn-info.active.focus,.open>.btn-info.dropdown-toggle:hover,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle.focus{color:#fff;background-color:rgb(37.9081218274,153.9299492386,188.3918781726);border-color:rgb(26.8020304569,108.8324873096,133.1979695431)}.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled.focus,.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:rgb(69.7715736041,183.845177665,217.7284263959)}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:rgb(238.0078125,162.109375,54.4921875)}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);border-color:rgb(152.109375,94.53125,12.890625)}.btn-warning:hover{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);border-color:rgb(213.2296875,132.515625,18.0703125)}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:rgb(236.015625,151.21875,30.984375);background-image:none;border-color:rgb(213.2296875,132.515625,18.0703125)}.btn-warning:active:hover,.btn-warning:active:focus,.btn-warning:active.focus,.btn-warning.active:hover,.btn-warning.active:focus,.btn-warning.active.focus,.open>.btn-warning.dropdown-toggle:hover,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle.focus{color:#fff;background-color:rgb(213.2296875,132.515625,18.0703125);border-color:rgb(152.109375,94.53125,12.890625)}.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled.focus,.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:rgb(238.0078125,162.109375,54.4921875)}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:rgb(212.4719626168,62.5046728972,58.0280373832)}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);border-color:rgb(117.6074766355,28.0654205607,25.3925233645)}.btn-danger:hover{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);border-color:rgb(172.1345794393,41.0775700935,37.1654205607)}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:rgb(201.4953271028,48.0841121495,43.5046728972);background-image:none;border-color:rgb(172.1345794393,41.0775700935,37.1654205607)}.btn-danger:active:hover,.btn-danger:active:focus,.btn-danger:active.focus,.btn-danger.active:hover,.btn-danger.active:focus,.btn-danger.active.focus,.open>.btn-danger.dropdown-toggle:hover,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle.focus{color:#fff;background-color:rgb(172.1345794393,41.0775700935,37.1654205607);border-color:rgb(117.6074766355,28.0654205607,25.3925233645)}.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled.focus,.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:rgb(212.4719626168,62.5046728972,58.0280373832)}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#6d7e00;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:rgba(0,0,0,0)}.btn-link:hover,.btn-link:focus{color:rgb(153.119047619,177,0);text-decoration:none;background-color:rgba(0,0,0,0)}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:hsl(0,0%,46.7%);text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:\" \"}.btn-toolbar:after{clear:both}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle,.btn-group-lg.btn-group>.btn+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:\" \"}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:hsl(0,0%,33.5%);text-align:center;background-color:hsl(0,0%,93.5%);border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \\9 ;border-right:4px solid rgba(0,0,0,0);border-left:4px solid rgba(0,0,0,0)}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.5;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:hsl(0,0%,15%);text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#e2007a;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:hsl(0,0%,46.7%)}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:rgba(0,0,0,0);background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.5;color:hsl(0,0%,46.7%);white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:\"\";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \\9 }.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width: 992px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:\" \"}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:hsl(0,0%,93.5%)}.nav>li.disabled>a{color:hsl(0,0%,46.7%)}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:hsl(0,0%,46.7%);text-decoration:none;cursor:not-allowed;background-color:rgba(0,0,0,0)}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:hsl(0,0%,93.5%);border-color:#6d7e00}.nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.5;border:1px solid rgba(0,0,0,0);border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:hsl(0,0%,93.5%) hsl(0,0%,93.5%) #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:hsl(0,0%,33.5%);cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:rgba(0,0,0,0)}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#e2007a}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width: 768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:21px;border:1px solid rgba(0,0,0,0)}.navbar:before,.navbar:after{display:table;content:\" \"}.navbar:after{clear:both}@media(min-width: 992px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:\" \"}.navbar-header:after{clear:both}@media(min-width: 992px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid rgba(0,0,0,0);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:\" \"}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width: 992px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media(max-device-width: 480px)and (orientation: landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}@media(min-width: 992px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width: 992px){.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width: 992px){.navbar-static-top{border-radius:0}}.navbar-brand{float:left;height:50px;padding:14.5px 15px;font-size:18px;line-height:21px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media(min-width: 992px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-right:15px;margin-top:8px;margin-bottom:8px;background-color:rgba(0,0,0,0);background-image:none;border:1px solid rgba(0,0,0,0);border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width: 992px){.navbar-toggle{display:none}}.navbar-nav{margin:7.25px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media(max-width: 991px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:rgba(0,0,0,0);border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:21px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width: 992px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:14.5px;padding-bottom:14.5px}}.navbar-form{padding:10px 15px;margin-right:-15px;margin-left:-15px;border-top:1px solid rgba(0,0,0,0);border-bottom:1px solid rgba(0,0,0,0);-webkit-box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);box-shadow:inset 0 1px 0 hsla(0,0%,100%,.1),0 1px 0 hsla(0,0%,100%,.1);margin-top:7.5px;margin-bottom:7.5px}@media(min-width: 768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .radio .label,.navbar-form .checkbox label,.navbar-form .checkbox .label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width: 991px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width: 992px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:7.5px;margin-bottom:7.5px}.navbar-btn.btn-sm,.btn-group-sm>.navbar-btn.btn{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs,.btn-group-xs>.navbar-btn.btn{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:14.5px;margin-bottom:14.5px}@media(min-width: 992px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width: 992px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:rgb(93.5,93.5,93.5);background-color:rgba(0,0,0,0)}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}@media(max-width: 991px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:rgba(0,0,0,0)}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:rgba(0,0,0,0)}}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:hsl(0,0%,90.7549019608%)}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:hover,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-brand{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-text{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav>li>a{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}@media(max-width: 991px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:rgba(0,0,0,0)}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:rgb(8.5,8.5,8.5)}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:rgba(0,0,0,0)}}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:rgb(16.15,16.15,16.15)}.navbar-inverse .navbar-link{color:hsl(0,0%,61.7%)}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:hsl(0,0%,61.7%)}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:hover,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.alert{padding:15px;margin-bottom:21px;border:1px solid rgba(0,0,0,0);border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:hsl(92.5,44.4444444444%,84.4117647059%)}.alert-success hr{border-top-color:hsl(92.5,44.4444444444%,79.4117647059%)}.alert-success .alert-link{color:rgb(42.808988764,84.191011236,43.5224719101)}.alert-info{color:#31708f;background-color:#d9edf7;border-color:hsl(190,65.2173913043%,83.9803921569%)}.alert-info hr{border-top-color:hsl(190,65.2173913043%,78.9803921569%)}.alert-info .alert-link{color:rgb(35.984375,82.25,105.015625)}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:hsl(40.4,80.6451612903%,88.9215686275%)}.alert-warning hr{border-top-color:hsl(40.4,80.6451612903%,83.9215686275%)}.alert-warning .alert-link{color:rgb(102.2741116751,80.7817258883,43.7258883249)}.alert-danger{color:#a94442;background-color:#f2dede;border-color:hsl(350,43.4782608696%,85.9803921569%)}.alert-danger hr{border-top-color:hsl(350,43.4782608696%,80.9803921569%)}.alert-danger .alert-link{color:hsl(1.1650485437,43.829787234%,36.0784313725%)}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:hsl(0,0%,46.7%);cursor:not-allowed;background-color:hsl(0,0%,93.5%)}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:hsl(0,0%,46.7%)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#e2007a;border-color:#e2007a}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:rgb(255,175,218.185840708)}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus,button.list-group-item:hover,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:hover,button.list-group-item-success:focus{color:#3c763d;background-color:hsl(102.5,44.4444444444%,84.4117647059%)}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active,button.list-group-item-success.active:hover,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:hover,button.list-group-item-info:focus{color:#31708f;background-color:hsl(200,65.2173913043%,85.9803921569%)}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active,button.list-group-item-info.active:hover,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:hover,button.list-group-item-warning:focus{color:#8a6d3b;background-color:hsl(50.4,80.6451612903%,88.9215686275%)}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active,button.list-group-item-warning.active:hover,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:hover,button.list-group-item-danger:focus{color:#a94442;background-color:hsl(0,43.4782608696%,85.9803921569%)}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active,button.list-group-item-danger.active:hover,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.5;color:#6d7e00;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li>a:hover,.pagination>li>a:focus,.pagination>li>span:hover,.pagination>li>span:focus{z-index:2;color:rgb(153.119047619,177,0);background-color:hsl(0,0%,93.5%);border-color:#ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus,.pagination>.active>span,.pagination>.active>span:hover,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#e2007a;border-color:#e2007a}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:hsl(0,0%,46.7%);cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.breadcrumb{padding:8px 15px;margin-bottom:21px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:\"/ \"}.breadcrumb>.active{color:hsl(0,0%,46.7%)}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:hsl(0,0%,46.7%)}.label-default[href]:hover,.label-default[href]:focus{background-color:hsl(0,0%,36.7%)}.label-primary{background-color:#e2007a}.label-primary[href]:hover,.label-primary[href]:focus{background-color:rgb(175,0,94.4690265487)}.label-success{background-color:#2c882c}.label-success[href]:hover,.label-success[href]:focus{background-color:hsl(120,51.1111111111%,25.2941176471%)}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:rgb(48.5431472081,175.6903553299,213.4568527919)}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:rgb(236.015625,151.21875,30.984375)}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:rgb(201.4953271028,48.0841121495,43.5046728972)}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid hsl(0,0%,89.0784313725%);border-radius:4px;-webkit-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-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{padding:0;cursor:pointer;background:rgba(0,0,0,0);border:0;-webkit-appearance:none;appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header:before,.modal-header:after{display:table;content:\" \"}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:\" \"}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width: 1024px){.modal-lg{width:900px}}.popover{position:absolute;top:0;left:0;z-index:11000;display:none;max-width:276px;padding:1px;font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:14px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover>.arrow{border-width:11px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.popover>.arrow:after{content:\"\";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:\" \";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:\" \";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:\" \";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:\" \";border-right-width:0;border-left-color:#fff}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:hsl(0,0%,97%);border-bottom:1px solid hsl(0,0%,92%);border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.tooltip{position:absolute;z-index:1070;display:block;font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.5;line-break:auto;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;font-size:12px;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0);border-style:solid}.clearfix:before,.clearfix:after{display:table;content:\" \"}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:rgba(0,0,0,0);text-shadow:none;background-color:rgba(0,0,0,0);border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs{display:none !important}.visible-sm{display:none !important}.visible-md{display:none !important}.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media(max-width: 767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media(max-width: 767px){.visible-xs-block{display:block !important}}@media(max-width: 767px){.visible-xs-inline{display:inline !important}}@media(max-width: 767px){.visible-xs-inline-block{display:inline-block !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-block{display:block !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-inline{display:inline !important}}@media(min-width: 768px)and (max-width: 1023px){.visible-sm-inline-block{display:inline-block !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-block{display:block !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-inline{display:inline !important}}@media(min-width: 1024px)and (max-width: 9999px){.visible-md-inline-block{display:inline-block !important}}@media(min-width: 10000px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media(min-width: 10000px){.visible-lg-block{display:block !important}}@media(min-width: 10000px){.visible-lg-inline{display:inline !important}}@media(min-width: 10000px){.visible-lg-inline-block{display:inline-block !important}}@media(max-width: 767px){.hidden-xs{display:none !important}}@media(min-width: 768px)and (max-width: 1023px){.hidden-sm{display:none !important}}@media(min-width: 1024px)and (max-width: 9999px){.hidden-md{display:none !important}}@media(min-width: 10000px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}@font-face{font-family:\"fontello\";src:url(\"../../fonts/fontello.woff2\") format(\"woff2\"),url(\"../../fonts/fontello.woff\") format(\"woff\");font-weight:normal;font-style:normal}[class^=fontello-]:before,[class*=\" fontello-\"]:before{font-family:\"fontello\";font-style:normal;font-weight:normal;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fontello-facebook:before{content:\"\"}.fontello-twitter:before{content:\"\"}.fontello-globe:before{content:\"\"}.fontello-rss-squared:before{content:\"\"}.wizardWidget{border-bottom:1px solid #d4d4d4;*zoom:1;border-radius:0;margin-left:-1px;margin-right:-1px;overflow:hidden}.wizardWidget:before,.wizardWidget:after{display:table;line-height:0;content:\"\"}.wizardWidget:after{clear:both}.wizardWidget ul.steps{padding:0;margin:0;list-style:none outside none}.wizardWidget ul.steps li{position:relative;float:left;padding:0 15px 0 30px;margin:0 0 0 1px;font-size:16px;color:#999;cursor:default;background:#ededed}.wizardWidget ul.steps li:before{width:0;height:0;position:absolute;content:\"\";top:-1px;left:-1px;transform:scale(1, 1.5);transform-origin:top}.wizardWidget ul.steps li:after{width:0;height:0;position:absolute;content:\"\";top:-1px;z-index:2;transform:scale(1, 1.5);transform-origin:top}.wizardWidget ul.steps li:first-child:before{border:none}.wizardWidget ul.steps li.complete{color:#468847;background:#f3f4f5}.wizardWidget ul.steps li.complete:hover{cursor:pointer;background:#e7eff8}.wizardWidget ul.steps li.complete:hover .chevron:before{border-left:14px solid #e7eff8}.wizardWidget ul.steps li.complete .chevron:before{border-left:14px solid #f3f4f5}.wizardWidget ul.steps li.active{color:#afcb08;background:#f1f6fc}.wizardWidget ul.steps li.active:after{border-left-color:#f1f6fc}.wizardWidget ul.steps li .badge{margin-right:8px}.wizardWidget ul.steps li:nth-child(1){z-index:10;padding-left:15px}.wizardWidget ul.steps li:nth-child(2){z-index:9}.wizardWidget ul.steps li:nth-child(3){z-index:8}.wizardWidget ul.steps li:nth-child(4){z-index:7}.wizardWidget ul.steps li:nth-child(5){z-index:6}.wizardWidget ul.steps li:nth-child(6){z-index:5}.wizardWidget ul.steps li:nth-child(7){z-index:4}.wizardWidget ul.steps li:nth-child(8){z-index:3}.wizardWidget ul.steps li:nth-child(9){z-index:2}.wizardWidget ul.steps li:nth-child(10){z-index:1}.wizardWidget .actions{float:right;padding-right:15px;line-height:44px;vertical-align:middle}.wizardWidget .actions a{margin-right:8px;font-size:12px;line-height:45px}.wizardWidget .actions .btn-prev i{margin-right:5px}.wizardWidget .actions .btn-next i{margin-left:5px}.wizardWidget ul li{height:46px;line-height:46px}.wizardWidget ul li:before{border-top:16.3333333333px inset rgba(0,0,0,0);border-bottom:16.3333333333px inset rgba(0,0,0,0);border-left:16.3333333333px solid #d4d4d4}.wizardWidget ul li:after{border-top:16.3333333333px inset rgba(0,0,0,0);border-bottom:16.3333333333px inset rgba(0,0,0,0);border-left:16.3333333333px solid #ededed;right:-15.3333333333px}.hideIfEmpty:empty{display:none}@media(hover: hover){.hoverHolder .hoverElement{display:none}.hoverHolder:hover .hoverElement{display:inherit}}html{height:100%}blockquote{margin:3px 3px 3px 15px;border-left:dotted 2px gray;padding:5px}p,ul{margin-bottom:10px}a{text-decoration:none;color:#6d7e00}a:hover{text-decoration:none;color:rgb(175.1785714286,202.5,0)}a.btn{text-decoration:none}del,ul.deleted,ol.deleted,li.deleted,blockquote.deleted,pre.deleted,div.deleted,p.deleted,h1.deleted,h2.deleted,h3.deleted,h4.deleted,h5.deleted{color:#800;text-decoration:line-through;font-weight:bold}ins,ul.inserted,ol.inserted,li.inserted,blockquote.inserted,pre.inserted,div.inserted,p.inserted,h1.inserted,h2.inserted,h3.inserted,h4.inserted,h5.inserted{color:#080;text-decoration:underline;font-weight:bold}del.space,ins.space,del.formatting,ins.formatting{font-style:italic;font-size:.8em;display:inline-block;margin-left:5px;margin-right:5px}label input,.label input,label textarea,.label textarea{font-weight:normal}button.link{background:rgba(0,0,0,0);border:none;align-items:normal;cursor:pointer;display:inline-block;font:inherit;height:auto;padding:0;perspective-origin:0 0;text-align:start;transform-origin:0 0;width:auto;-moz-appearance:none;-webkit-logical-height:1em;-webkit-logical-width:auto;box-sizing:content-box}@supports(-moz-appearance: none){button.link::-moz-focus-inner{border:none;padding:0}button.link:focus{outline-style:dotted;outline-width:1px}}.stdDropdown{display:block;width:100%;padding:6px 30px 6px 12px;margin:0;font-family:inherit;-moz-padding-start:calc(.75rem - 3px);font-size:inherit;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;word-wrap:normal;text-transform:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.stdDropdown:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}.stdDropdown.stdDropdownSmall{width:auto;display:inline;font-size:.8em;padding:3px 18px 3px 3px}.stdEqualCols{display:flex;width:100%}.stdEqualCols>*{flex-grow:1;flex-basis:10%}.stdEqualCols.stdPadding>*{padding-left:15px;padding-right:15px}.stdEqualCols.stdPadding>*:first-child{padding-left:0}.stdEqualCols.stdPadding>*:last-child{padding-right:0}.stdTwoCols{display:block;width:100%}.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled,.stdTwoCols .rightColumn{text-align:left;display:block}.stdTwoCols .leftColumn{font-weight:bold}@media screen and (max-width: 799px){.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled{padding-top:7px}.stdTwoCols .rightColumn{padding-bottom:7px}.stdTwoCols:first-child .leftColumn,.stdTwoCols:first-child .leftColumnUnstyled{padding-top:0}.stdTwoCols:last-child .rightColumn{padding-bottom:0}}@media screen and (min-width: 800px){.stdTwoCols{display:flex;flex-direction:row;width:100%}.stdTwoCols .leftColumn,.stdTwoCols .leftColumnUnstyled,.stdTwoCols .rightColumn,.stdTwoCols .middleColumn{flex-grow:0;min-height:40px;padding-top:12px}.stdTwoCols .leftColumn{flex-basis:30%;text-align:right;padding-right:15px}.stdTwoCols .leftColumnUnstyled{flex-basis:30%;padding-right:15px}.stdTwoCols .middleColumn{flex-basis:40%;padding-left:15px}.stdTwoCols .rightColumn{flex-basis:70%;padding-left:15px}.stdTwoCols .middleColumn+.rightColumn{flex-basis:30%}.stdTwoCols .halfColumn{flex-basis:50%;padding-left:15px}.modal-body .stdTwoCols .leftColumn,.modal-body .stdTwoCols .leftColumnUnstyled{flex-basis:35%}.modal-body .stdTwoCols .middleColumn{flex-basis:35%}.modal-body .stdTwoCols .rightColumn{flex-basis:65%;padding-left:15px}}.alertNonPublicSection{margin:-10px 20px 20px 20px}.saveRow{text-align:center}.stdSortingWidget .list-group-item{cursor:move}.stdSortingWidget .list-group-item .sortIndicator{float:right}.stdSortingWidget .list-group-item.sortable-ghost{background-color:#eee}.stdSortingWidget .saveRow{margin-top:20px}.stdNonFormattedList{list-style-type:none;margin:0;padding:0}.stdNonFormattedList>li{margin:0;padding:0}.saveholder{clear:both;padding:10px;text-align:center}.alert-info a{color:rgb(86.9404761905,100.5,0)}.alert-info a:hover{color:rgb(153.119047619,177,0)}.alert-info a.btn.btn-primary{color:#fff}.alert-info a.btn.btn-primary:hover{color:#fff}.well{padding:0;position:relative;-webkit-box-shadow:0 0 15px rgba(0,0,0,.4);-moz-box-shadow:0 0 15px rgba(0,0,0,.4);box-shadow:0 0 15px rgba(0,0,0,.4);background-color:#fff}.well h1,.well .primaryHeader{margin:0;color:#fff;background:#0a321e;background:-moz-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-webkit-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-o-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-ms-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px;overflow-wrap:break-word}.well h1 small,.well .primaryHeader small{color:#fff;font-size:12px}.well h1>h1,.well .primaryHeader>h1{margin:0;padding:0;background:rgba(0,0,0,0)}.well h1.stickyHeader,.well .primaryHeader.stickyHeader{position:sticky;position:-webkit-sticky;top:-5px;background:#0a321e;z-index:5}.well h1 .btnFullscreen,.well .primaryHeader .btnFullscreen{padding:0;float:right;margin-right:-10px;margin-top:-20px;color:hsla(0,0%,100%,.5)}.well h1 .btnFullscreen:hover,.well h1 .btnFullscreen.active,.well .primaryHeader .btnFullscreen:hover,.well .primaryHeader .btnFullscreen.active{color:hsla(0,0%,100%,.8)}.well h1 .btnFullscreen:active,.well h1 .btnFullscreen.active,.well .primaryHeader .btnFullscreen:active,.well .primaryHeader .btnFullscreen.active{color:#fff}.well h2.green,.well h3.green,.well .nav-header,.well legend.green,.well .greenHeader{margin:0;color:#fff;background:#afcb08;background:-moz-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-webkit-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-o-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-ms-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px}.well h2.lightgreen,.well h3.lightgreen,.well .lightGreenHeader{margin:-1px;background:hsl(68.6153846154,92.4170616114%,91.3725490196%);background:-moz-linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);background:-webkit-linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);background:-o-linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);background:-ms-linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);background:linear-gradient(90deg, rgb(247.4928909953, 253.3317535545, 212.6682464455) 0%, rgb(249.4942180095, 253.776492891, 223.953507109) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;font-weight:bold;text-transform:uppercase}.well h2.darkgreen,.well h3.darkgreen,.well .darkGreenHeader{margin:0;color:#fff;background:#0a321e;background:-moz-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-webkit-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-o-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-ms-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:-1px}.well .greenHeaderDropDown{float:right;margin-right:-10px}.well .greenHeaderDropDown .btn-link,.well .greenHeaderDropDown .btn-link:link{color:#fff;font-weight:normal}.well .greenHeaderDropDown:focus,.well .greenHeaderDropDown:hover{background-color:hsla(0,0%,100%,.2)}.well .greenHeaderDropDown .dropdown-menu>li>a{text-transform:none;text-shadow:none;font-weight:normal}.well .greenHeaderDropDown li.selected a::before{content:\"✓\";display:block;float:left;width:16px;margin-left:-16px;text-align:center}.well .greenHeaderExtraLink{float:right;text-decoration:none;font-size:12px;text-transform:none;font-weight:normal;color:rgb(64.880952381,75,0)}.well .greenHeader h2,.well .greenHeader h3{font-size:inherit;margin:0;font-weight:bold;display:inline-block}.well .content{padding:15px 20px 30px;overflow:visible}.well>.alert{margin:20px}.navbar{margin-bottom:0}.navbar .navbar-inner{background:none 0 0 rgba(0,0,0,0);filter:none;border:none;box-shadow:none;min-height:0;padding:0;text-align:right;margin-top:10px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.navbar .nav{margin:0;float:right}.navbar .nav li a{display:inline;padding:0;margin-left:40px;color:#6d7e00;font-family:\"Arvo\",sans-serif;font-style:normal;font-weight:bold;text-transform:uppercase;text-decoration:none;font-size:18px;text-shadow:none}.navbar .nav li.active a,.navbar .nav li a:hover,.navbar .nav li a:focus,.navbar .nav li.active a:hover,.navbar .nav li.active a:focus{background:none;filter:none;color:#737373 !important;text-decoration:none}.navbar-toggle{box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.navbar-toggle:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .navbar-toggle:focus{box-shadow:none}.btn{font-family:\"Arvo\",sans-serif;font-weight:bold;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.btn:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .btn:focus{box-shadow:none}.span9 .btn{margin:10px 0 0 200px}.btn-primary{text-transform:uppercase;color:#fff;background:#e2007a;background:-moz-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-webkit-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-o-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-ms-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%)}.btn-link{border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.btn-link:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .btn-link:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}.table>thead>tr>th{border-bottom:none}.form-control[type=file]{padding-top:0;padding-bottom:0}.breadcrumb{background:none;filter:none;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;margin:30px 0 5px;padding:0 15px}.breadcrumb,.breadcrumb .active{font-family:\"Arvo\",sans-serif;font-style:normal;font-weight:bold;text-transform:uppercase;font-size:15px;color:#737373}.breadcrumb li{text-shadow:none}.breadcrumb li>span{display:inline-block}.breadcrumb a{color:#6d7e00}.breadcrumb .pseudoLink{color:#6d7e00;cursor:pointer}legend,.legend{font-size:14px;border:none;font-weight:normal;margin:0;padding:0}.toggle .toggle-group .btn{border:none}.btn-link.btn-danger{color:#d9534f;font-weight:normal;border:none}.btn-link.btn-danger:hover{background:rgba(0,0,0,0);color:rgb(159.5514018692,38.0747663551,34.4485981308);border:none}.dropdown-menu li.checkbox label,.dropdown-menu li.checkbox .label{font-weight:normal;padding:0 0 0 30px}.dropdown-menu li.link span.icon{margin-left:-10px}.dropdown-menu li.link a{color:#6d7e00}.v-select .vs__open-indicator{cursor:pointer}@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.woff2) format(\"woff2\"),url(../fonts/fontawesome-webfont.woff) format(\"woff\");font-weight:400;font-style:normal}#gotoMainContent{color:rgba(0,0,0,0);position:absolute;left:10px;top:35px;border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}#gotoMainContent:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse #gotoMainContent:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}#gotoMainContent:link,#gotoMainContent:visited{color:rgba(0,0,0,0)}#gotoMainContent:focus{color:#6d7e00}body{font-family:\"PT Sans\",\"Segoe UI\",Frutiger,\"Frutiger Linotype\",\"Dejavu sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;height:100%}#page{margin-left:auto;margin-right:auto}@media(min-width: 768px){#page{width:750px}}@media(min-width: 1024px){#page{width:1024px}}@media(min-width: 10000px){#page{width:1170px}}body.fullscreen #page{width:auto;margin-left:10px;margin-right:10px}.logoRow{display:flex;margin:14px 0 40px}.logoRow .homeLinkLogo{min-width:20%}.logoRow .homeLinkLogo>img{max-width:50%;max-height:200px}@media screen and (max-width: 480px){.logoRow .homeLinkLogo{text-align:center}.logoRow .homeLinkLogo>img{max-width:90%}}.over_footer_wrapper{min-height:100%;height:auto !important;height:100%;margin:0 auto -1.6em}#userLoginPanel{height:35px;background-color:#d3d3d3;display:flex;flex-direction:row}#userLoginPanel .username{flex-basis:50%;text-align:left;padding:5px 10px}#userLoginPanel .groups{flex-basis:50%;text-align:right;padding:5px 10px}a{border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}a:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse a:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}body>footer{height:1.6em;max-width:1024px;margin-left:auto;margin-right:auto;padding-right:15px;padding-left:15px}body>footer p{height:1.6em;line-height:1.5em;margin-bottom:0;margin-top:0;white-space:nowrap}body>footer a:link,body>footer a:visited{color:#6d7e00}body>footer .version{display:inline-block;margin-left:30px;font-size:.8em}@media print{body>footer{display:none}}.footer_spacer{height:1.6em}.labelSubInfo{font-weight:normal;font-size:.8em}.antragsgruen-content>#sidebar{max-width:241px;float:left;padding-right:0;padding-left:15px}.antragsgruen-content .sidebar-box{min-width:200px}.antragsgruen-content .sidebar-box .box-header{margin:0;color:#fff;background:#afcb08;background:-moz-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-webkit-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-o-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-ms-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;padding:5px 5px 5px 15px;margin:-1px;margin-bottom:12px}.antragsgruen-content .sidebar-box .box-content{padding:0 15px 15px 15px}.antragsgruen-content .sidebar-box:first-child .box-header{-moz-border-radius-topleft:0;-webkit-border-top-left-radius:0;border-top-left-radius:0;-moz-border-radius-topright:0;-webkit-border-top-right-radius:0;border-top-right-radius:0}.antragsgruen-content>.antragsgruen-width-main{width:100%;max-width:783px;float:left}.antragsgruen-content>.antragsgruen-width-full{width:100%;float:left}.antragsgruen-content>*{position:relative;min-height:2px}.goBackLink{display:inline-block;margin-bottom:20px}.saveCancelRow{overflow:auto}.well .saveCancelRow.content{overflow:auto}.saveCancelRow .saveCol{float:right}.saveCancelRow .cancelCol{float:left}.toolbarBelowTitle,.toolbarAtBottom{padding:10px 19px;background:#f7f7f7;display:table;margin-left:-1px;margin-right:-1px;width:calc(100% + 2px)}.toolbarBelowTitle>*,.toolbarAtBottom>*{display:table-cell}.toolbarBelowTitle{border-bottom:solid 1px #aaa}.toolbarAtBottom{border-top:solid 1px #aaa}.motionPrevNextLinks{padding:5px 10px}.motionPrevNextLinks .prev{width:50%;text-align:left}.motionPrevNextLinks .next{width:50%;text-align:right}.stickyAdminDebugFooter{position:fixed;bottom:0;right:0;left:0;z-index:10;padding:0;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);display:table;width:100%}.stickyAdminDebugFooter>*{display:table-cell;padding:5px;vertical-align:top}.stickyAdminDebugFooter .adminHint{font-size:.8em;display:block}.stickyAdminDebugFooter .setterCol{width:100%}.stickyAdminDebugFooter #simulateAdminTime{width:200px;float:left;margin-right:10px}.stickyAdminDebugFooter h2{white-space:nowrap;margin:0;font-size:1.1em}.stickyAdminDebugFooter label,.stickyAdminDebugFooter .label{margin:0}*:fullscreen{overflow-x:hidden;overflow-y:auto}*:-webkit-full-screen{overflow-x:hidden;overflow-y:auto}*:-moz-full-screen{overflow-x:hidden;overflow-y:auto}*:-ms-fullscreen{overflow-x:hidden;overflow-y:auto}.contentPage{margin-left:-1px;margin-right:-1px}.contentPage .editCaller{float:right;font-weight:normal}.contentPage .textHolder>h1,.contentPage .textHolder>h2.green,.contentPage .textHolder h2.darkgreen{margin-left:-20px;margin-right:-20px}.contentPage img{max-width:100%;height:auto}.contentPageWelcome{overflow:auto}.contentPageWelcome.hasDeadline{min-height:135px}.contentPageWelcome .editCaller{float:right;margin-left:10px;font-weight:normal}.contentPageFeeds .editCaller{float:right}.contentSettingsToolbar input[type=text]{max-width:160px;display:inline-block}.contentSettingsToolbar .options{padding-top:5px}.contentSettingsToolbar .options label,.contentSettingsToolbar .options .label{font-weight:normal}.deadlineCircle{float:right;width:105px;height:105px;padding-top:20px;background:#e2007a;background:-moz-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-webkit-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-o-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-ms-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);text-align:center;vertical-align:middle;overflow:hidden;font-family:\"Arvo\",sans-serif;font-weight:bold;font-size:15px;line-height:17px;text-transform:uppercase;color:#fff;margin-left:30px;-moz-border-radius:90px;-webkit-border-radius:90px;border-radius:90px}.downloadableFiles h2{font-size:1.2em}.downloadableFiles .deleteFile{color:#f77}.downloadableFiles .fileList{list-style-type:none}@media(hover: hover){.downloadableFiles .fileList li .deleteFile{opacity:.1}.downloadableFiles .fileList li:hover .deleteFile{opacity:1}.downloadableFiles .fileList li .deleteFile:focus{opacity:1}}.downloadableFiles .downloadableFilesUpload{display:flex}.downloadableFiles .downloadableFilesUpload>*{flex:0}.downloadableFiles .downloadableFilesUpload h3{margin:8px 0 0 0;flex-basis:150px;font-size:1em}.downloadableFiles .downloadableFilesUpload label,.downloadableFiles .downloadableFilesUpload .label{font-weight:normal}.downloadableFiles .downloadableFilesUpload .uploadCol{flex-basis:200px}.downloadableFiles .downloadableFilesUpload .titleCol{flex:1;max-width:300px}.documentsPage .editCaller{float:right;margin-left:10px;font-weight:normal}.documentsPage .downloadAndActions{text-align:right}.documentsPage .deleteGroupForm{display:inline;float:right;margin-right:15px}.documentsPage .deleteGroupForm .deleteGroupBtn{color:#f77;opacity:0}.documentsPage .deleteGroupForm .deleteGroupBtn:active,.documentsPage .deleteGroupForm .deleteGroupBtn:focus{opacity:1}.documentsPage .greenHeader:hover .deleteGroupForm .deleteGroupBtn{opacity:1}.documentsPage .deleteFileBtn{display:inline;margin-left:15px;color:#f77;opacity:0}.documentsPage .deleteFileBtn:active,.documentsPage .deleteFileBtn:focus{opacity:1}.documentsPage .motion .title:hover .deleteFileBtn{opacity:1}.documentsPage .btn.btn-link{padding:0;font-weight:normal}.documentsPage .fileAddForm{display:flex;flex-direction:row;margin-left:32px;margin-top:-25px;margin-bottom:40px}.documentsPage .fileAddForm .uploadCol label,.documentsPage .fileAddForm .uploadCol .label{font-weight:normal;color:#6d7e00}.consultationIndex{overflow-wrap:break-word}.consultationIndex .myImotionList .widthdrawn .firstLine{text-decoration:line-through}.consultationIndex .myImotionList .initiator .firstLine a{font-weight:bold}.consultationIndex .translateWidget{float:right;margin-left:20px}.motionList .date{color:#757676;display:block;position:absolute;margin:0}@media(min-width: 800px){.motionList .date{margin-left:20px}}@media(max-width: 799px){.motionList .date{margin-left:12px}}@media(max-width: 1023px){.motionList .date{position:relative;top:0;right:0;float:right}}.motionList .date .edited{font-size:.8em;display:inline-block;padding-right:10px}.motionList .motion{position:relative;width:100%;overflow-wrap:break-word}.motionList .motion:last-child{padding-bottom:0}.motionList .motion>.date{top:12px;right:12px}@media(max-width: 1023px){.motionList .motion>.date{top:0;right:-8px}}.motionList .motion>.title{margin-bottom:3px}.motionList .motion>.title .motionIcon{width:21px;margin-left:-24px;color:#6d7e00}.motionList .motion>.title a{color:#6d7e00;display:inline-block}.motionList .motion>.title a:hover,.motionList .motion>.title a:focus{color:rgb(20.7619047619,24,0)}.motionList .motion>.title a,.motionList .motion>.title .motionLink{font-weight:bold;text-indent:0;font-size:16px;line-height:18px;-webkit-hyphens:auto;-moz-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.motionList .motion>.title .pdfLink{font-size:13px;color:#6d7e00;margin-left:10px;display:inline-block;font-weight:normal}.motionList .motion>.title .pdfLink a:hover{text-decoration:none;color:rgb(20.7619047619,24,0)}.motionList .motion.withdrawn .motionTitle,.motionList .motion.withdrawn .motionPrefix{text-decoration:line-through}.motionList .amendment.withdrawn .amendmentTitle{text-decoration:line-through}.motionList .motion.modified>.title a *,.motionList .motion.withdrawn>.title a *,.motionList .motion.moved>.title a *{opacity:.4}.motionList .motion.modified .amendment>a,.motionList .motion.withdrawn .amendment>a,.motionList .motion.moved .amendment>a{opacity:.4}.motionList .motion.modified h4.amendments,.motionList .motion.withdrawn h4.amendments,.motionList .motion.moved h4.amendments{opacity:.65}.motionList .amendment.modified>.title a,.motionList .amendment.withdrawn>.title a{opacity:.4}.motionList h4.amendments.amendmentsToggler{margin-top:-5px}.motionList h4.amendments.amendmentsToggler button{padding-left:0}.motionList h4.amendments.amendmentsToggler.closed .glyphicon-chevron-up{display:none}.motionList h4.amendments.amendmentsToggler.opened .glyphicon-chevron-down{display:none}.motionList ul.amendments.closed{display:none}.motionList ul.amendments{list-style-type:none;margin:10px 0 20px 0;padding:0}.motionList ul.amendments>li{margin-bottom:3px;position:relative}.motionList ul.amendments>li .motionIcon{margin-right:10px}.motionList ul.amendments>li>a{font-weight:bold;margin-right:5px}.motionList ul.amendments>li>.date{top:0;right:-8px}.motionList .status{font-style:italic;color:#484649}.motionList .womenQuota{font-size:.8em;margin-left:10px;display:inline-block}.motionListStd,.motionListFilterTags{list-style-type:none;margin:0 0 40px;padding:0}.motionListWithoutAgenda .motion{padding:12px 20px 17px 50px}.motionListWithoutAgenda .motion>.date{display:block}.motionListWithoutAgenda .motion>.title{padding-right:65px}.motionListWithoutAgenda .motion>.title .motionPrefix{display:inline-block}.motionListWithoutAgenda .motion>.title .motionPrefix:after{content:\":\"}.motionListWithoutAgenda .motion .info{font-style:italic;color:#737373}.motionListWithoutAgenda .motion .clearfix{display:none}.motionListWithoutAgenda h4.amendments{display:none}.motionListWithoutAgenda ul.amendments>li>.date{display:block}.motionListWithoutAgenda .privateCommentsIndicator{float:left;margin-left:-45px;margin-top:1px}.motionListBelowAgenda .motion{padding:12px 30px 17px 30px}.motionListBelowAgenda .motion>.date{display:none}.motionListBelowAgenda .motion>.title{font-family:\"Arvo\",sans-serif}.motionListBelowAgenda .motion>.title .motionIcon{display:none}.motionListBelowAgenda .motion>.title .motionPrefix{word-break:break-all;word-wrap:break-word;width:110px;float:left;left:30px;top:13px}.motionListBelowAgenda .motion>.title .motionTitle{display:block;margin-left:115px}.motionListBelowAgenda .motion>.title .pdfLink{display:none}.motionListBelowAgenda .motion .info{display:block;margin-left:115px}.motionListBelowAgenda .motion .clearfix{clear:both}.motionListBelowAgenda ul.amendments{margin-bottom:10px}@media screen and (min-width: 600px){.motionListBelowAgenda ul.amendments{margin-left:115px}}.motionListBelowAgenda ul.amendments>li>.amendmentTitle{float:left;width:110px;left:0;top:0}.motionListBelowAgenda ul.amendments>li>.date{display:none}.motionListBelowAgenda h4.amendments{margin-top:10px;margin-bottom:5px;font-family:\"Arvo\",sans-serif;font-weight:bold;color:#afcb08;font-size:14px}@media screen and (min-width: 600px){.motionListBelowAgenda h4.amendments{margin-left:115px}}.motionListBelowAgenda .privateCommentsIndicator{float:left;margin-left:-25px;margin-top:3px}.motionListPetitions .status{font-weight:bold;font-style:normal}.noMotionsYet{font-style:italic}.motionListWithinAgenda{list-style-type:none;margin:15px 0 0;padding:0;position:relative}.motionListWithinAgenda .motion>.title a{font-size:14px;line-height:16px}.motionListWithinAgenda ol{list-style-type:none;margin:0 0 0 30px;padding:0;clear:both}.motionListWithinAgenda ul.motions{list-style-type:none;padding:0}@media(min-width: 800px){.motionListWithinAgenda ul.motions{margin:0 0 0 50px}}@media(max-width: 799px){.motionListWithinAgenda ul.motions{margin:0 0 0 26px}}.motionListWithinAgenda ul.amendments>li>.date{right:3px}.motionListWithinAgenda .agendaItemAdder{padding-left:35px;margin-bottom:0;margin-top:-4px;display:flex;flex-direction:row;height:20px;overflow:hidden}.motionListWithinAgenda .agendaItemAdder .addEntry{flex:0;flex-basis:25%}.motionListWithinAgenda .agendaItemAdder .addDate{flex:0;flex-basis:25%}.motionListWithinAgenda .agendaItemAdder .spacer{flex:1}.motionListWithinAgenda .agendaItemAdder .showTimes{flex:0;flex-basis:25%;font-weight:normal}@media(hover: hover){.motionListWithinAgenda .agendaItemAdder>*{opacity:0}.motionListWithinAgenda .agendaItemAdder>*:focus-within{opacity:1}.motionListWithinAgenda:hover>.agendaItemAdder>*{opacity:1}.motionListWithinAgenda ol.agenda:hover>.agendaItemAdder>*{opacity:1}}.motionListWithinAgenda li.agendaItem{border:solid 1px rgba(0,0,0,0);position:relative}@media(min-width: 800px){.motionListWithinAgenda li.agendaItem{padding-left:20px}}@media(max-width: 799px){.motionListWithinAgenda li.agendaItem{padding-left:16px}}.motionListWithinAgenda li.agendaItem .delAgendaItem,.motionListWithinAgenda li.agendaItem .delAgendaItem:link,.motionListWithinAgenda li.agendaItem .delAgendaItem:visited{color:#f77;position:absolute;top:5px;right:10px}.motionListWithinAgenda li.agendaItem.agendaItemDate .delAgendaItem{top:30px}.motionListWithinAgenda li.agendaItem>div{margin-bottom:5px}@media(min-width: 800px){.motionListWithinAgenda li.agendaItem>div{padding:5px 10px 10px}}@media(max-width: 799px){.motionListWithinAgenda li.agendaItem>div{padding:5px 10px 10px 0}}.motionListWithinAgenda li.agendaItem>div>h3{overflow:visible;padding:3px;font-weight:normal}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>h3 .delAgendaItem{opacity:0}.motionListWithinAgenda li.agendaItem>div>h3:hover .delAgendaItem{opacity:1}.motionListWithinAgenda li.agendaItem>div>h3 .delAgendaItem:focus{opacity:1}}.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem{font-size:.7em;margin-left:10px}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem{opacity:0}.motionListWithinAgenda li.agendaItem>div>h3:hover .editAgendaItem{opacity:1}.motionListWithinAgenda li.agendaItem>div>h3 .editAgendaItem:focus{opacity:1}}.motionListWithinAgenda li.agendaItem>div .motionCreateLink{float:right;text-align:left;margin-bottom:7px;text-indent:-7px;padding-left:18px;display:block}.motionListWithinAgenda li.agendaItem.editing>div>h3{display:none}.motionListWithinAgenda li.agendaItem.editing>div>.agendaItemEditForm{display:flex}.motionListWithinAgenda li.agendaItem.editing>div>.agendaDateEditForm{display:flex}.motionListWithinAgenda li.agendaItem.editing>ol>.agendaItemAdder{visibility:hidden !important}.motionListWithinAgenda li.agendaItem .motion>.date{top:0;right:3px}.motionListWithinAgenda li.agendaItem .motion>.title{margin-right:75px}.motionListWithinAgenda li.agendaItem .motion h4.amendments{font-size:16px}.motionListWithinAgenda li.agendaItem.agendaItemDate>div{padding-top:30px}.motionListWithinAgenda li.agendaItem.agendaItemDate h3{text-decoration:underline;margin-bottom:8px;font-weight:bold}.motionListWithinAgenda.agendaListEditing{padding-top:20px;padding-bottom:20px}.motionListWithinAgenda.agendaListEditing li.agendaItem>div{margin-bottom:0;padding-bottom:0;padding-top:0}.motionListWithinAgenda.agendaListEditing li.agendaItem.agendaItemDate>div{padding-top:30px}.motionListWithinAgenda .agendaItemEditForm{display:none;width:100%;flex-direction:row;padding-bottom:6px}.motionListWithinAgenda .agendaItemEditForm .code{margin-right:10px;flex-grow:0}.motionListWithinAgenda .agendaItemEditForm .time{margin-right:10px;flex-grow:0;flex-basis:80px;width:80px}.motionListWithinAgenda .agendaItemEditForm .time input{padding-left:7px;padding-right:7px}.motionListWithinAgenda .agendaItemEditForm .time .input-group-addon{cursor:pointer;padding-left:7px;padding-right:7px}.motionListWithinAgenda .agendaItemEditForm .title{margin-right:10px;flex-grow:1}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle{margin-right:10px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle .glyphicon-wrench{position:absolute;top:6px;left:10px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-toggle .caret{margin-top:13px}.motionListWithinAgenda .agendaItemEditForm .extraSettings .dropdown-menu{min-width:240px}.motionListWithinAgenda .agendaItemEditForm .delete{flex-basis:30px;flex-grow:0}.motionListWithinAgenda .agendaItemEditForm .agendaMotionsRow{padding-top:5px;font-size:.8em;color:gray}.motionListWithinAgenda .agendaItemEditForm .motionType{white-space:nowrap;text-overflow:ellipsis;padding-right:0}.motionListWithinAgenda.noShowTimes h3 .time{display:none}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .time{display:none}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .code{width:80px;flex-basis:80px}.motionListWithinAgenda.noShowTimes .agendaItemEditForm .motionType{max-width:170px;flex-basis:170px}.motionListWithinAgenda.showTimes>li{padding-left:50px}.motionListWithinAgenda.showTimes h3 .time{float:left;color:gray;font-size:.8em;padding-top:3px}.motionListWithinAgenda.showTimes li.agendaItem h3 .time{margin-left:-50px}.motionListWithinAgenda.showTimes li.agendaItem li.agendaItem h3 .time{margin-left:-100px}.motionListWithinAgenda.showTimes li.agendaItem li.agendaItem li.agendaItem h3 .time{margin-left:-150px}.motionListWithinAgenda.showTimes .agendaItemEditForm .code{flex-basis:50px}.motionListWithinAgenda.showTimes .agendaItemEditForm .motionType{flex-basis:140px}.motionListWithinAgenda .agendaDateEditForm{display:none;width:100%;flex-direction:row}.motionListWithinAgenda .agendaDateEditForm .dateSelector{width:285px;flex-basis:285px;flex-grow:0;margin-right:10px}.motionListWithinAgenda .agendaDateEditForm .dateSelector .input-group-addon{cursor:pointer}.motionListWithinAgenda .agendaDateEditForm .title{flex-grow:1;margin-right:10px}.motionListWithinAgenda .agendaDateEditForm .delete{flex-basis:30px;flex-grow:0}.motionListWithinAgenda h2,.motionListWithinAgenda h3{margin:0 0 5px;font-size:18px}.motionListWithinAgenda .moveHandle{float:left;font-size:1.5em;color:#d3d3d3;margin-left:-27px;cursor:move}.motionListWithinAgenda.showTimes>li>div .moveHandle{margin-left:-67px}@media(hover: hover){.motionListWithinAgenda li.agendaItem>div>.moveHandle{display:none}.motionListWithinAgenda li.agendaItem:hover>div>.moveHandle{display:block}}.motionListWithinAgenda .movePlaceholder{border:dotted 1px gray}.motionListFilterTags{margin:0}.motionListFilterTags .sortitem.motion{margin-bottom:20px}.motionListFilterTags .info{margin:0}.motionListFilterTags .abstract{margin-left:0;color:gray}.motionListFilterTags .stats{float:right}.motionListFilterTags .stats .comments{background-color:#e2007a}.motionListFilterTags .stats .amendments{background-color:#afcb08}.motionListFilterTags .stats .comments,.motionListFilterTags .stats .amendments{display:inline-block;padding:3px 6px;margin-left:10px;color:#fff;border-radius:3px}.motionListFilter .tagList{text-align:center;margin-bottom:15px}.motionListFilter .tagList .btn{margin:2px 4px}.motionListFilter .searchBar{margin-bottom:15px}.expandableRecentComments{margin-bottom:15px}.expandableRecentComments .commentList{display:flex;flex-direction:row;flex-wrap:wrap}.expandableRecentComments .commentListHolder{position:relative}.expandableRecentComments .showAllComments{display:none;text-align:center}.expandableRecentComments .showAllComments button{font-weight:normal}.expandableRecentComments.shortened .showAllComments{display:block;position:absolute;bottom:0;left:0;right:0;z-index:11}.expandableRecentComments.shortened .commentListHolder{overflow:hidden;max-height:340px}.expandableRecentComments.shortened .commentListHolder:after{content:\"\";display:block;position:absolute;bottom:0;height:70px;left:0;right:0;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);z-index:10}.expandableRecentComments .motionCommentHolder{flex-basis:50%;flex-grow:0;max-width:50%}.expandableRecentComments .motionCommentHolder:nth-child(even) .motionComment{margin-right:0}.expandableRecentComments .motionCommentHolder:nth-child(odd) .motionComment{margin-left:0}.expandableRecentComments .motionComment{margin-bottom:5px;font-size:.9em}.expandableRecentComments .motionComment .commentHeader{padding:5px}.expandableRecentComments .motionComment .date{padding:5px 5px 0 0}.expandableRecentComments .motionComment .commentText{padding:0 5px 5px 5px;min-height:59px}.expandableRecentComments .motionComment .commentText .glyphicon{font-size:.8em}.expandableRecentComments .motionComment .motionLink{padding:0 5px 5px 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.motionListTags #tagList{display:block;list-style-type:none;margin:0;padding-top:30px;padding-bottom:30px;text-align:center}.motionListTags #tagList>li{display:inline-block;padding:10px;background-color:#e2007a;border-radius:3px;font-size:16px;margin:10px}.motionListTags #tagList>li>a:link,.motionListTags #tagList>li #tag_list>li>a:visited{color:#fff}.motionListTags .motionTable{width:100%;margin:0 10px}.motionListTags .motionTable th{border-bottom:solid 1px #afcb08;font-size:.8em;line-height:2.5em;font-weight:600}.motionListTags .motionTable td{vertical-align:top;padding:.75em 0em .75em 0em}.motionListTags .motionTable tr.motion{border-top:solid 1px #afcb08}.motionListTags .motionTable tr.motion:first-child{border-top:none}.motionListTags .motionTable tr.amendment .titleCol .pdfLink{font-weight:400}.motionListTags .motionTable tr.amendment .titleCol .titleLink{font-weight:400}.motionListTags .motionTable .prefixCol{width:15%}.motionListTags .motionTable .titleCol{width:45%}.motionListTags .motionTable .titleCol .pdfLink{font-weight:600;font-size:.8em;float:right;margin-right:20px}.motionListTags .motionTable .titleCol .titleLink{font-weight:600}.motionListTags .motionTable .titleCol .titleLink a:link,.motionListTags .motionTable .titleCol .titleLink a:visited{color:#000}.motionListTags .motionTable .initiatorCol{width:35%}.motionListTags .motionTable .dateCol{width:15%}.motionListTags .motionTable .unscreened .titleCol .pdfLink{display:none}.motionListTags .motionTable .unscreened .titleCol .titleLink a:link,.motionListTags .motionTable .unscreened .titleCol .titleLink a:visited{font-weight:400;color:gray}.motionListTags .motionTable .privateCommentsIndicator{float:left;margin-left:-25px;margin-top:3px}.homeTagList ol{list-style:none;margin:15px 0;padding:0}.homeTagList ol>li{margin:0 0 15px 0;padding:0;clear:both}.homeTagList .tagLink{font-size:1.3em}.homeTagList .info{padding-left:24px;color:gray;float:right}.tagSelectToolbar{margin-bottom:20px}.tagSelectToolbar .selectHolder{text-align:right}.tagSelectToolbar select{display:inline-block;width:auto}.consultationPhasesWizard{margin-bottom:40px}.consultationPhasesWizard .wizard{border-bottom:none}.consultationPhasesWizard .wizard ul li{height:70px;line-height:70px}.consultationPhasesWizard .wizard ul li:before{border-top:24.3333333333px inset rgba(0,0,0,0);border-bottom:24.3333333333px inset rgba(0,0,0,0);border-left:24.3333333333px solid #d4d4d4}.consultationPhasesWizard .wizard ul li:after{border-top:24.3333333333px inset rgba(0,0,0,0);border-bottom:24.3333333333px inset rgba(0,0,0,0);border-left:24.3333333333px solid #ededed;right:-23.3333333333px}.consultationPhasesWizard .title{line-height:20px;font-weight:bold;margin-top:3px}.consultationPhasesWizard .permissions{line-height:14px;font-size:12px}#sidebar #sidebarOtherQueues{padding-right:15px}#sidebar .otherQueues .active{position:relative}#sidebar .otherQueues .active .glyphicon{position:absolute;left:15px;top:3px}#sidebar .otherQueues .activeLabel{font-size:.9em;font-style:italic}.speechAdmin .settings{display:flex;flex-direction:row;padding-bottom:5px}.speechAdmin .settings>*{flex:1}.speechAdmin .settings .settingsActive{line-height:35px;font-weight:normal;margin-bottom:0}.speechAdmin .settings .settingOpen{display:block;font-weight:normal;margin-bottom:0}.speechAdmin .settings .inactive{font-weight:bold;color:red}.speechAdmin .settings .settingsPolicy{text-align:right}.speechAdmin .settings .speakingTime{padding-left:30px;padding-right:25px}.speechAdmin .settings .deactivateOthers{font-size:.8em;font-style:italic}.speechAdmin .previousSpeakers{margin:0 auto;width:400px;border:dotted 1px #bdbdbd}.speechAdmin .previousSpeakers.invisible{visibility:hidden}.speechAdmin .previousSpeakers>header{padding:5px;position:relative}.speechAdmin .previousSpeakers>header .btn{position:absolute;right:0;top:0;font-weight:normal}.speechAdmin .previousSpeakers.previousShown>header{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .previousSpeakers.previousShown>header .btn-link{color:rgb(64.880952381,75,0)}.speechAdmin .previousSpeakers .previousLists{display:flex;flex-direction:row;width:100%}.speechAdmin .previousSpeakers .previousList{flex:1}.speechAdmin .previousSpeakers .previousList header{text-align:center}.speechAdmin .previousSpeakers .previousList header span{border-bottom:solid 1px gray}.speechAdmin .previousSpeakers .previousList ol{text-align:left}.speechAdmin .slots,.speechAdmin .previousList{list-style-type:none;margin:0 auto;padding:0;width:300px}.speechAdmin .slotEntry{margin:15px 0 0 0;border:solid 1px #bdbdbd;border-radius:3px;background-color:#f0f0f0;min-height:85px;padding:10px;position:relative;text-align:center;z-index:1}.speechAdmin .slotEntry .statusActive{font-style:italic}.speechAdmin .slotEntry .statusUpcoming{font-style:italic}.speechAdmin .slotEntry .start,.speechAdmin .slotEntry .stop{position:absolute;top:23px;right:5px}.speechAdmin .slotEntry.slotActive{background-color:#afa;box-shadow:0 3px 3px rgba(0,0,0,.25)}.speechAdmin .slotEntry .operations{left:0;border-right:solid 1px #bdbdbd;border-top:solid 1px #bdbdbd;border-top-right-radius:3px}.speechAdmin .operationStart,.speechAdmin .operationDelete{position:absolute;bottom:0;padding:0 5px;background-color:hsla(0,0%,100%,.5);font-size:12px;opacity:0;cursor:pointer;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .operationStart:focus,.speechAdmin .operationDelete:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .operationStart:focus,body.usingMouse .speechAdmin .operationDelete:focus{box-shadow:none}.speechAdmin .operationStart:focus,.speechAdmin .operationDelete:focus{opacity:1}.speechAdmin .slotPlaceholder:hover .operationStart,.speechAdmin .slotPlaceholder:hover .operationDelete,.speechAdmin .subqueueItem:hover .operationStart,.speechAdmin .subqueueItem:hover .operationDelete{opacity:1}.speechAdmin .operationStart{right:0;border-left:solid 1px #bdbdbd;border-top-left-radius:3px;border-top:solid 1px #bdbdbd;color:green}.speechAdmin .operationDelete{left:0;border-top:solid 1px #bdbdbd;border-right:solid 1px #bdbdbd;border-top-right-radius:3px;color:red}.speechAdmin .slotPlaceholder{position:relative;margin:0 15px 0 15px;border:dotted 1px #bdbdbd;background-color:#f0f0f0;min-height:85px;padding:10px;text-align:center}.speechAdmin .slotPlaceholder:nth-child(2){margin-top:-5px}.speechAdmin .slotPlaceholder:last-of-type{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.speechAdmin .slotPlaceholder .title{font-style:italic}.speechAdmin .slotPlaceholder.active{cursor:pointer;box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .slotPlaceholder.active:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .slotPlaceholder.active:focus{box-shadow:none}.speechAdmin .slotPlaceholder.active:hover,.speechAdmin .slotPlaceholder.active:focus{background-color:hsl(0,0%,89.1176470588%);z-index:1;border-radius:3px;box-shadow:0 0 4px rgba(0,0,0,.25)}.speechAdmin .name{font-weight:bold;font-size:16px;line-height:1.5em}.speechAdmin .nameNobody{font-style:italic;font-size:16px;line-height:1.5em}.speechAdmin .iconBackground{position:absolute;left:15px;top:15px;font-size:50px;opacity:.15}.speechAdmin .isUpcoming:before{content:\"\";position:absolute;height:1px;width:500px;top:-6px;left:-100px;border-bottom:dotted 1px gray}.speechAdmin .subqueues{display:flex;flex-direction:row;justify-content:space-evenly;margin-top:50px}.speechAdmin .subqueue{width:230px}.speechAdmin .subqueue>header{text-align:center;font-weight:bold;text-transform:uppercase;border-bottom:solid 3px #d3d3d3;padding-bottom:5px;margin-bottom:10px}.speechAdmin .subqueue .empty{margin:5px 0 25px 0;font-style:italic;text-align:center}.speechAdmin .subqueue .subqueueAdder{margin-top:10px;text-align:center}.speechAdmin .subqueueItems{list-style-type:none;margin:0 auto;padding:0 15px}.speechAdmin .subqueueItem{margin:0;border:solid 1px #bdbdbd;border-radius:3px;min-height:60px;cursor:move;position:relative}.speechAdmin .subqueueItem .starter{position:absolute;left:0;right:0;top:0;bottom:0;padding:10px;background-color:#f0f0f0}.speechAdmin .operations{position:absolute;bottom:0}.speechAdmin .operations .moveSubqueue,.speechAdmin .operations .removeSlot{padding:0 5px;background-color:hsla(0,0%,100%,.5);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.speechAdmin .operations .moveSubqueue:focus,.speechAdmin .operations .removeSlot:focus{box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .speechAdmin .operations .moveSubqueue:focus,body.usingMouse .speechAdmin .operations .removeSlot:focus{box-shadow:none}.speechAdmin .operations .moveSubqueue:hover,.speechAdmin .operations .moveSubqueue:focus,.speechAdmin .operations .removeSlot:hover,.speechAdmin .operations .removeSlot:focus{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .operations .removeSlot{color:#f77}.speechAdmin .queueResetSection{text-align:right}.speechAdmin .dropPlaceholder{margin:3px 0;border:dotted 1px rgba(0,0,0,0);border-radius:3px;position:relative}.speechAdmin .dropPlaceholder .dropAdditionalSpace{position:absolute;left:0;right:0;top:-20px;bottom:-20px;z-index:100;display:none}.speechAdmin .dropPlaceholder .hoveredIndicator{visibility:hidden;text-align:center;font-size:12px;line-height:18px;font-weight:bold}.speechAdmin .dropPlaceholder.hoverable.hovered{background-color:hsl(0,0%,89.1176470588%)}.speechAdmin .dropPlaceholder.hoverable.hovered .hoveredIndicator{visibility:visible}.speechAdmin.dragging .dropPlaceholder.hoverable{border:dotted 1px #bdbdbd}.speechAdmin.dragging .dropPlaceholder.hoverable .dropAdditionalSpace{display:block}.currentSpeechPageWidth .speechAdminLink{float:right}.currentSpeechPageWidth .leftIcon{top:4px;font-size:18px;margin-right:4px}.currentSpeechPageWidth .activeSpeaker{font-size:16px;line-height:1.5em}.currentSpeechPageWidth .activeSpeaker .name{font-weight:bold}.currentSpeechPageWidth .remainingTime{font-size:16px;line-height:1.5em}.currentSpeechPageWidth .remainingTime .time{font-weight:bold}.currentSpeechPageWidth .remainingTime .over{color:red}.currentSpeechPageWidth .upcomingSpeaker{margin-top:20px;font-size:16px;line-height:1.5em}.currentSpeechPageWidth .upcomingSpeakerList{list-style-type:none;display:inline-block;margin:0;padding:0}.currentSpeechPageWidth .upcomingSpeakerList>*{display:inline}.currentSpeechPageWidth .upcomingSpeakerList>*:before{content:\", \";display:inline}.currentSpeechPageWidth .upcomingSpeakerList>*:first-child:before{content:\"\"}.currentSpeechPageWidth .upcomingSpeakerList .label{margin-left:5px}.currentSpeechPageWidth .appliedMe{display:inline-block;vertical-align:middle}.currentSpeechPageWidth .appliedMe .btnWithdraw{font-weight:normal;padding:0 5px;font-size:75%}.currentSpeechFullPage .speechAdminLink{margin-top:15px;margin-right:20px}.currentSpeechFullPage .activeSpeaker .name{margin-top:20px;margin-bottom:20px;text-align:center}.currentSpeechFullPage .remainingTime{text-align:center}.currentSpeechFullPage .waitingMultiple .name{vertical-align:top}.currentSpeechFullPage .waitingMultiple .applyOpenerPoo{font-weight:normal}.currentSpeechFullPage .waitingMultiple .notPossible{margin-top:27px;font-style:italic;font-size:.8em}.currentSpeechFullPage .waitingSubqueues{margin-left:26px;display:flex;flex-direction:row;justify-content:center;width:100%}.currentSpeechFullPage .waitingSubqueues>*{flex:1;display:flex;flex-direction:column}.currentSpeechFullPage .waitingSubqueues .header .name{vertical-align:middle;font-size:1.2em;font-weight:bold;display:inline-block;padding-right:10px}.currentSpeechFullPage .waitingSubqueues .applied{line-height:35px;vertical-align:middle}.currentSpeechFullPage .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.currentSpeechFullPage .waitingSubqueues .applyHolder{align-self:flex-start;margin-top:auto}.currentSpeechFullPage .waitingSubqueues .applyHolder form{display:inline-block;vertical-align:middle}.currentSpeechFullPage .waitingSubqueues .applyHolder button{margin-right:15px}.currentSpeechFullPage .waitingSubqueues .appliedMe{display:inline-block}.currentSpeechFullPage .waitingSubqueues .loginWarning{display:inline-block;margin-left:-15px;font-size:.8em;margin-right:15px;white-space:nowrap}.currentSpeechFullPage .nameList{display:block;margin-top:30px;margin-bottom:50px;padding-left:1.4em}.currentSpeechFullPage .nameList>li{font-size:14px;line-height:1.5em;font-size:16px}.currentSpeechFullPage .nameList>li .leftIcon{float:left;margin-left:-50px}.currentSpeechFullPage .waitingSingle .nameList{padding-left:50px}.currentSpeechFullPage .waitingSingle .nameList>li{margin-top:20px;margin-bottom:20px;font-weight:bold}.currentSpeechFullPage .waitingSingle .applyOpenerPoo{font-weight:normal;margin-top:20px}.currentSpeechFullPage .apply{max-width:300px}.currentSpeechInline .remainingTime{padding-left:26px;margin-top:10px}.currentSpeechInline .waitingMultiple{margin-top:20px}.currentSpeechInline .waitingMultiple header{font-size:16px;line-height:1.5em}.currentSpeechInline .waitingMultiple .notPossible{line-height:35px;vertical-align:middle;margin-left:27px;font-style:italic;font-size:.8em}.currentSpeechInline .waitingSubqueues{margin-left:26px;display:table}.currentSpeechInline .waitingSubqueues>*{display:table-row}.currentSpeechInline .waitingSubqueues .name{display:table-cell;width:200px;line-height:35px;vertical-align:middle}.currentSpeechInline .waitingSubqueues .applied{display:table-cell;line-height:35px;vertical-align:middle}.currentSpeechInline .waitingSubqueues .applied button{margin-right:15px}.currentSpeechInline .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.currentSpeechInline .waitingSubqueues .applied form{display:inline-block;vertical-align:middle}.currentSpeechInline .waitingSubqueues .appliedMe{display:inline-block}.currentSpeechInline .waitingSubqueues .loginWarning{display:inline-block;margin-left:-15px;font-size:.8em;margin-right:15px;white-space:nowrap}.currentSpeechInline .waitingSingle{margin-top:30px}.currentSpeechInline .waitingSingle header{font-size:16px;line-height:1.5em}.currentSpeechInline .waitingSingle .apply{margin-left:25px}.currentSpeechInline .waitingSingle .apply .notPossible{font-style:italic;font-size:.8em}.currentSpeechInline .waitingSingle .applyOpener,.currentSpeechInline .waitingSingle .applyOpenerPoo{margin-top:10px}.currentSpeechInline .waitingSingle .loginWarning{display:inline-block;font-size:.8em;white-space:nowrap}.currentSpeechInline .waitingSingle form{margin-top:10px;display:inline-block;vertical-align:middle}.currentSpeechInline .nameList{display:inline-block;list-style:none;margin:0 10px 0 5px;padding:0;font-size:0}.currentSpeechInline .nameList:before{display:inline-block;content:\"(\";font-size:12px}.currentSpeechInline .nameList:after{display:inline-block;content:\")\";font-size:12px}.currentSpeechInline .nameList>li{font-size:12px;display:inline-block}.currentSpeechInline .nameList>li:not(:first-child):before{display:inline-block;content:\",\";padding-right:5px}.currentSpeechInline .applyOpenerPoo{font-weight:normal;margin-left:20px}.currentSpeechFooter{position:fixed;bottom:0;right:0;left:0;width:100%;z-index:10;padding:0;background:#fff;border:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4)}*:fullscreen .currentSpeechFooter{display:none}*:-webkit-full-screen .currentSpeechFooter{display:none}*:-moz-full-screen .currentSpeechFooter{display:none}*:-ms-fullscreen .currentSpeechFooter{display:none}body.fullscreen .currentSpeechFooter{display:none}.currentSpeechFooter .speechUser{display:flex;flex-direction:row}.currentSpeechFooter .widgetTitle{flex-basis:160px;font-size:16px;line-height:35px;vertical-align:middle;margin:0;padding:5px 10px;background-color:#eee}.currentSpeechFooter .widgetTitle .speechAdminLink{float:right}.currentSpeechFooter .activeSpeaker{flex-grow:1;flex-basis:30%;padding:5px 10px;font-size:16px;line-height:35px}.currentSpeechFooter .activeSpeaker .label{vertical-align:middle}.currentSpeechFooter .activeSpeaker .title{font-weight:bold}.currentSpeechFooter .activeSpeaker .remainingTime{float:right}.currentSpeechFooter .activeSpeaker .over{color:red}.currentSpeechFooter .waitingMultiple{display:flex;flex-grow:1;flex-basis:50%;flex-direction:row;padding:5px 10px}.currentSpeechFooter .waitingMultiple header{font-size:16px;line-height:35px}@media(max-width: 799px){.currentSpeechFooter .speechUser.multiple-queues .widgetTitle{display:none}.currentSpeechFooter .speechUser.multiple-queues .activeSpeaker{flex-basis:33%}.currentSpeechFooter .speechUser.multiple-queues .waitingMultiple{flex-basis:66%}.currentSpeechFooter .speechUser.multiple-queues .waitingMultiple.isApplying .notApplyingHere{display:none}.currentSpeechFooter .speechUser.multiple-queues .subqueue{line-height:25px}.currentSpeechFooter .speechUser.multiple-queues .name .glyphicon{display:none}.currentSpeechFooter .speechUser.multiple-queues .applyOpenerPoo{display:none}.currentSpeechFooter .speechUser.multiple-queues .applyBtn{margin-top:0}}.currentSpeechFooter .waitingSingle{padding:5px 10px;flex-basis:50%;flex-grow:1}.currentSpeechFooter .waitingSingle .btnApply{margin-top:7px}.currentSpeechFooter .waitingSingle .appliedMe{margin-top:5px}.currentSpeechFooter .waitingSingle form{display:inline-block;vertical-align:middle}.currentSpeechFooter .waitingSingle .subqueue{display:flex;flex-direction:row}.currentSpeechFooter .subqueue{margin:0 10px;padding:0 0 0 10px;background-color:#eee;border-radius:3px;line-height:33px;vertical-align:middle}.currentSpeechFooter .subqueue .nameNumber{white-space:nowrap;max-width:100%;overflow:hidden;text-overflow:ellipsis}.currentSpeechFooter .subqueue .name{font-weight:bold;margin-right:7px}.currentSpeechFooter .subqueue .number{font-size:.8em}.currentSpeechFooter .subqueue .number:before{content:\"(\";display:inline-block}.currentSpeechFooter .subqueue .number:after{content:\")\";display:inline-block;margin-right:10px}.currentSpeechFooter .subqueue .applyBtn{line-height:20px;height:23px;margin-top:5px;margin-right:10px}.currentSpeechFooter .subqueue form{max-width:200px}.currentSpeechFooter .appliedMe{display:inline-block;vertical-align:middle}.currentSpeechFooter .appliedMe .btnWithdraw{font-weight:normal;padding:0 5px;font-size:75%}.currentSpeechFooter .applyOpenerPoo{font-weight:normal;margin-left:10px}.currentSpeechFooter .notPossible{font-style:italic;font-size:.8em;margin-top:10px}.currentSpeechFooter .loginWarning{display:inline-block;font-size:.8em;margin-right:15px;white-space:nowrap}.votingCommon .remainingTime{font-size:16px;line-height:1.5em}.votingCommon .remainingTime .time{font-weight:bold}.votingCommon .remainingTime .over{color:red}.votingCommon .votingListCommon{display:block;margin:0;padding:0;clear:both}.votingCommon .votingListCommon>li{display:flex;flex-direction:row;flex-wrap:wrap;width:100%;padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ccc}.votingCommon .votingListCommon>li.voteListShown{border-bottom:none;padding-bottom:0}.votingCommon .votingListCommon>li.abstentions>div{width:100%;font-style:italic;font-weight:bold;text-align:right}.votingCommon .votingListCommon>li .titleLink{flex-grow:1;flex-basis:40%}.votingCommon .votingListCommon>li .titleGroupName{font-weight:bold}.votingCommon .votingListCommon>li .votesDetailed{flex-grow:1;flex-basis:40%}.votingCommon .votingListCommon>li .result{flex-grow:0;flex-basis:20%}.votingCommon .votingListCommon>li .votingOptions,.votingCommon .votingListCommon>li .voted{flex-basis:230px;flex-grow:0;text-align:right}.votingCommon .votingListCommon>li.answer_template_2 .votesDetailed{flex-basis:20%;flex-grow:0}.votingCommon .votingListCommon>li:last-child{border-bottom:none}.votingCommon .votingListCommon>li .btnShowVotes{font-weight:normal}.votingCommon .votingListCommon>li .quorumCounter{font-weight:normal}.votingCommon .votingListAdmin .voteResults{display:block}.votingCommon .votesDetailed table{width:100%;table-layout:fixed}.votingCommon .votesDetailed thead th{text-align:center}.votingCommon .votesDetailed th{text-align:center}.votingCommon .votesDetailed td{text-align:center}.votingCommon .titleLink{line-height:16px;overflow:hidden;font-weight:bold}.votingCommon .titleLink>div{margin-bottom:7px}.votingCommon .amendmentBy{font-size:.8em;color:#888}.votingCommon .noVotingsYet{padding-top:10px;padding-bottom:10px;border-bottom:solid 1px #ccc}.votingCommon .noVotingsYet .alert{margin-bottom:0}.votingCommon .votingOptions button{margin-left:5px}.votingCommon .result{text-align:right;white-space:nowrap}.votingCommon .result .accepted{color:#afcb08}.votingCommon .result .rejected{color:#f77}.votingCommon .votingFooter{padding-top:10px;border-top:solid 1px #ccc}.votingCommon .downloadResults{text-align:right;margin-bottom:10px}.votingCommon .downloadResults .btn{font-weight:normal}.votingCommon .votingExplanation .glyphicon{margin-right:3px}.votingCommon .publicHint{padding-left:16px}.currentVotingWidget .votingsAdminLink{float:right}.currentVotingWidget .remainingTime{float:right}.currentVotingWidget .votingsAdminLink+.voteList{border-top:solid 1px #ccc}.currentVotingWidget .votingExplanation{margin-top:15px;font-size:.9em;color:#555}.currentVotingWidget .votingFooter{display:flex;flex-direction:row;width:100%}.currentVotingWidget .votingFooter .votedCounter{flex:1}.currentVotingWidget .votingFooter .showAll{flex:1;text-align:right}.manageVotings .settingsToggleGroup .btn-link{color:#484649}.manageVotings .settingsToggleGroup .btn-link:hover{color:hsl(280,2.0979020979%,38.0392156863%)}.manageVotings .settingsToggleGroup .btn{padding-top:0;padding-bottom:0}.manageVotings .btnRemove{float:right;color:#f77}.manageVotings .activateHeader{font-weight:bold;float:right;color:#fff;text-transform:none;text-shadow:none;font-size:14px}.manageVotings .votingSettingsSummary{padding-bottom:10px;margin-bottom:10px;border-bottom:solid 1px #ccc}.manageVotings .votingVisibility span{margin-left:5px;display:inline-block}.manageVotings .prepActions .removeBtn{color:#f77}.manageVotings .addingItemsForm{padding-top:10px;padding-bottom:10px}.manageVotings .addingItemsForm button{font-weight:normal}.manageVotings .addingItemsForm .addingMotions select{max-width:450px;display:inline-block}.manageVotings .activityLog{display:block;list-style-type:none;margin:0;padding:0}.manageVotings .activityLog.closed{max-height:45px;overflow:hidden;position:relative}.manageVotings .activityLog.closed:before{content:\"\";display:block;position:absolute;bottom:0;left:0;right:0;height:45px;background:linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);pointer-events:none}.manageVotings .activityOpener,.manageVotings .activityCloser{float:right}.manageVotings .activityOpener .btn,.manageVotings .activityCloser .btn{font-weight:normal}.manageVotings .votingOperations{float:right}.manageVotings .votingSettings label,.manageVotings .votingSettings .label{display:block;margin-bottom:15px}.manageVotings .votingSettings .btnDelete{float:right;color:#f77}.manageVotings .votingSettings fieldset{margin-bottom:15px}.manageVotings .votingSettings fieldset legend{font-weight:700}.manageVotings .votingSettings fieldset .hint{font-size:.8em}.manageVotings .votingSettings fieldset label,.manageVotings .votingSettings fieldset .label{display:inline-block;font-weight:normal;margin-right:15px;margin-bottom:0}.manageVotings .votingSettings fieldset.inputWithLabelHolder label,.manageVotings .votingSettings fieldset.inputWithLabelHolder .label{display:table;max-width:200px}.manageVotings .votingSettings fieldset.inputWithLabelHolder label input,.manageVotings .votingSettings fieldset.inputWithLabelHolder .label input{min-width:80px}.votingResultTable{table-layout:fixed;width:100%}.votingResultTable th{text-align:center;vertical-align:bottom}.votingResultTable td{text-align:center}.votingResultTable .total{font-weight:bold}.votingAdderForm .btnAddOpener{color:#afcb08;font-weight:normal}.votingDataActions{display:flex;flex-direction:row;width:100%;border-bottom:solid 1px #ccc;padding-bottom:10px}.votingDataActions .votingDetails ul{display:inline;list-style-type:none;margin:0;padding:0}.votingDataActions .votingDetails ul>li{display:inline;margin:0;padding:0}.votingDataActions .votingDetails ul>li:before{content:\", \"}.votingDataActions .votingDetails ul>li:first-child:before{content:\"\"}.votingDataActions .data{flex-grow:1;flex-direction:row;flex-wrap:wrap}.votingDataActions .actions{flex-basis:360px;flex-grow:1;text-align:right}.votingDataActions .actions>.btn,.votingDataActions .actions>.btn-group{margin-left:5px}.v-vote-list{display:flex;flex-direction:row;width:100%;margin-top:20px}.v-vote-list .regularVoteList{flex-basis:25%;flex-grow:1}.v-vote-list .regularVoteList.notVotedList{color:gray}.v-vote-list .regularVoteList .voteWeight{font-weight:bold;white-space:nowrap}.v-vote-list .regularVoteList ul{display:block;list-style-type:none;padding:0;margin:0}.v-vote-list .regularVoteList ul li{display:block;padding:0;margin:0}.v-vote-list .regularVoteList .userGroupName{margin-top:10px;text-decoration:underline}.v-vote-list .regularVoteList .none{font-style:italic}.v-vote-list .userGroupSetterOpener{white-space:normal}.v-vote-list .userGroupSetter{display:flex;flex-direction:row}@media(hover: hover){.v-vote-list .userGroupSetter{opacity:0}.v-vote-list .showingSelector .userGroupSetter{opacity:1}}.v-vote-list .voteListHolder:hover .userGroupSetter{visibility:visible}.v-vote-list .userGroupSetter .btn{font-weight:normal}.contentVotingResult{display:flex;width:100%}.contentVotingResult>*{flex-basis:25%;padding-left:15px;padding-right:15px}.contentVotingResult>*:first-child{padding-left:0}.contentVotingResult>*:last-child{padding-right:0}.motionTextFormattings{position:relative;margin-left:0;text-rendering:optimizeLegibility;font-size:16px;hyphens:auto}.motionTextFormattings span.underline{border-bottom:solid 1px #000}.motionTextFormattings span.strike{text-decoration:line-through}.motionTextFormattings h1,.well .motionTextFormattings h1{background:none;color:#000;text-transform:none;font-weight:bold;text-shadow:none;padding:0;font-family:\"PT Sans\",\"Segoe UI\",Frutiger,\"Frutiger Linotype\",\"Dejavu sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:1.5em}.motionTextFormattings h2{margin:0;font-size:1.4em}.motionTextFormattings h3{margin:0;font-size:1.3em}.motionTextFormattings h4{margin:0;font-size:1.2em}.motionTextFormattings ol{counter-reset:antragsgruen-counter;list-style:none}.motionTextFormattings ol[start=\"1\"]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol[start=\"2\"]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol[start=\"3\"]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol[start=\"4\"]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol[start=\"5\"]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol[start=\"6\"]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol[start=\"7\"]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol[start=\"8\"]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol[start=\"9\"]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol[start=\"10\"]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol[start=\"11\"]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol[start=\"12\"]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol[start=\"13\"]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol[start=\"14\"]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol[start=\"15\"]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol[start=\"16\"]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol[start=\"17\"]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol[start=\"18\"]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol[start=\"19\"]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol[start=\"20\"]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol[start=\"21\"]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol[start=\"22\"]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol[start=\"23\"]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol[start=\"24\"]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol[start=\"25\"]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol[start=\"26\"]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol[start=\"27\"]{counter-reset:antragsgruen-counter 26}.motionTextFormattings ol[start=\"28\"]{counter-reset:antragsgruen-counter 27}.motionTextFormattings ol[start=\"29\"]{counter-reset:antragsgruen-counter 28}.motionTextFormattings ol[start=\"30\"]{counter-reset:antragsgruen-counter 29}.motionTextFormattings ol[start=\"31\"]{counter-reset:antragsgruen-counter 30}.motionTextFormattings ol[start=\"32\"]{counter-reset:antragsgruen-counter 31}.motionTextFormattings ol[start=\"33\"]{counter-reset:antragsgruen-counter 32}.motionTextFormattings ol[start=\"34\"]{counter-reset:antragsgruen-counter 33}.motionTextFormattings ol[start=\"35\"]{counter-reset:antragsgruen-counter 34}.motionTextFormattings ol[start=\"36\"]{counter-reset:antragsgruen-counter 35}.motionTextFormattings ol[start=\"37\"]{counter-reset:antragsgruen-counter 36}.motionTextFormattings ol[start=\"38\"]{counter-reset:antragsgruen-counter 37}.motionTextFormattings ol[start=\"39\"]{counter-reset:antragsgruen-counter 38}.motionTextFormattings ol[start=\"40\"]{counter-reset:antragsgruen-counter 39}.motionTextFormattings ol[start=\"41\"]{counter-reset:antragsgruen-counter 40}.motionTextFormattings ol[start=\"42\"]{counter-reset:antragsgruen-counter 41}.motionTextFormattings ol[start=\"43\"]{counter-reset:antragsgruen-counter 42}.motionTextFormattings ol[start=\"44\"]{counter-reset:antragsgruen-counter 43}.motionTextFormattings ol[start=\"45\"]{counter-reset:antragsgruen-counter 44}.motionTextFormattings ol[start=\"46\"]{counter-reset:antragsgruen-counter 45}.motionTextFormattings ol[start=\"47\"]{counter-reset:antragsgruen-counter 46}.motionTextFormattings ol[start=\"48\"]{counter-reset:antragsgruen-counter 47}.motionTextFormattings ol[start=\"49\"]{counter-reset:antragsgruen-counter 48}.motionTextFormattings ol[start=\"50\"]{counter-reset:antragsgruen-counter 49}.motionTextFormattings ol[start=\"51\"]{counter-reset:antragsgruen-counter 50}.motionTextFormattings ol[start=\"52\"]{counter-reset:antragsgruen-counter 51}.motionTextFormattings ol[start=\"53\"]{counter-reset:antragsgruen-counter 52}.motionTextFormattings ol[start=\"54\"]{counter-reset:antragsgruen-counter 53}.motionTextFormattings ol[start=\"55\"]{counter-reset:antragsgruen-counter 54}.motionTextFormattings ol[start=\"56\"]{counter-reset:antragsgruen-counter 55}.motionTextFormattings ol[start=\"57\"]{counter-reset:antragsgruen-counter 56}.motionTextFormattings ol[start=\"58\"]{counter-reset:antragsgruen-counter 57}.motionTextFormattings ol[start=\"59\"]{counter-reset:antragsgruen-counter 58}.motionTextFormattings ol[start=\"60\"]{counter-reset:antragsgruen-counter 59}.motionTextFormattings ol[start=\"61\"]{counter-reset:antragsgruen-counter 60}.motionTextFormattings ol[start=\"62\"]{counter-reset:antragsgruen-counter 61}.motionTextFormattings ol[start=\"63\"]{counter-reset:antragsgruen-counter 62}.motionTextFormattings ol[start=\"64\"]{counter-reset:antragsgruen-counter 63}.motionTextFormattings ol[start=\"65\"]{counter-reset:antragsgruen-counter 64}.motionTextFormattings ol[start=\"66\"]{counter-reset:antragsgruen-counter 65}.motionTextFormattings ol[start=\"67\"]{counter-reset:antragsgruen-counter 66}.motionTextFormattings ol[start=\"68\"]{counter-reset:antragsgruen-counter 67}.motionTextFormattings ol[start=\"69\"]{counter-reset:antragsgruen-counter 68}.motionTextFormattings ol[start=\"70\"]{counter-reset:antragsgruen-counter 69}.motionTextFormattings ol[start=\"71\"]{counter-reset:antragsgruen-counter 70}.motionTextFormattings ol[start=\"72\"]{counter-reset:antragsgruen-counter 71}.motionTextFormattings ol[start=\"73\"]{counter-reset:antragsgruen-counter 72}.motionTextFormattings ol[start=\"74\"]{counter-reset:antragsgruen-counter 73}.motionTextFormattings ol[start=\"75\"]{counter-reset:antragsgruen-counter 74}.motionTextFormattings ol[start=\"76\"]{counter-reset:antragsgruen-counter 75}.motionTextFormattings ol[start=\"77\"]{counter-reset:antragsgruen-counter 76}.motionTextFormattings ol[start=\"78\"]{counter-reset:antragsgruen-counter 77}.motionTextFormattings ol[start=\"79\"]{counter-reset:antragsgruen-counter 78}.motionTextFormattings ol[start=\"80\"]{counter-reset:antragsgruen-counter 79}.motionTextFormattings ol[start=\"81\"]{counter-reset:antragsgruen-counter 80}.motionTextFormattings ol[start=\"82\"]{counter-reset:antragsgruen-counter 81}.motionTextFormattings ol[start=\"83\"]{counter-reset:antragsgruen-counter 82}.motionTextFormattings ol[start=\"84\"]{counter-reset:antragsgruen-counter 83}.motionTextFormattings ol[start=\"85\"]{counter-reset:antragsgruen-counter 84}.motionTextFormattings ol[start=\"86\"]{counter-reset:antragsgruen-counter 85}.motionTextFormattings ol[start=\"87\"]{counter-reset:antragsgruen-counter 86}.motionTextFormattings ol[start=\"88\"]{counter-reset:antragsgruen-counter 87}.motionTextFormattings ol[start=\"89\"]{counter-reset:antragsgruen-counter 88}.motionTextFormattings ol[start=\"90\"]{counter-reset:antragsgruen-counter 89}.motionTextFormattings ol[start=\"91\"]{counter-reset:antragsgruen-counter 90}.motionTextFormattings ol[start=\"92\"]{counter-reset:antragsgruen-counter 91}.motionTextFormattings ol[start=\"93\"]{counter-reset:antragsgruen-counter 92}.motionTextFormattings ol[start=\"94\"]{counter-reset:antragsgruen-counter 93}.motionTextFormattings ol[start=\"95\"]{counter-reset:antragsgruen-counter 94}.motionTextFormattings ol[start=\"96\"]{counter-reset:antragsgruen-counter 95}.motionTextFormattings ol[start=\"97\"]{counter-reset:antragsgruen-counter 96}.motionTextFormattings ol[start=\"98\"]{counter-reset:antragsgruen-counter 97}.motionTextFormattings ol[start=\"99\"]{counter-reset:antragsgruen-counter 98}.motionTextFormattings ol[start=\"100\"]{counter-reset:antragsgruen-counter 99}.motionTextFormattings ol>li{counter-increment:antragsgruen-counter;position:relative}.motionTextFormattings ol>li::before{content:counter(antragsgruen-counter) \".\";position:absolute;left:-40px;top:0}.motionTextFormattings ol>li[value]::before{content:attr(value) \".\"}.motionTextFormattings ol>li[value=\"1\"]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=\"2\"]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=\"3\"]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=\"4\"]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=\"5\"]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=\"6\"]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=\"7\"]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=\"8\"]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=\"9\"]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=\"10\"]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=\"11\"]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=\"12\"]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=\"13\"]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=\"14\"]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=\"15\"]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=\"16\"]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=\"17\"]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=\"18\"]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=\"19\"]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=\"20\"]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=\"21\"]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=\"22\"]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=\"23\"]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=\"24\"]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=\"25\"]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=\"26\"]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol>li[value=\"27\"]{counter-reset:antragsgruen-counter 26}.motionTextFormattings ol>li[value=\"28\"]{counter-reset:antragsgruen-counter 27}.motionTextFormattings ol>li[value=\"29\"]{counter-reset:antragsgruen-counter 28}.motionTextFormattings ol>li[value=\"30\"]{counter-reset:antragsgruen-counter 29}.motionTextFormattings ol>li[value=\"31\"]{counter-reset:antragsgruen-counter 30}.motionTextFormattings ol>li[value=\"32\"]{counter-reset:antragsgruen-counter 31}.motionTextFormattings ol>li[value=\"33\"]{counter-reset:antragsgruen-counter 32}.motionTextFormattings ol>li[value=\"34\"]{counter-reset:antragsgruen-counter 33}.motionTextFormattings ol>li[value=\"35\"]{counter-reset:antragsgruen-counter 34}.motionTextFormattings ol>li[value=\"36\"]{counter-reset:antragsgruen-counter 35}.motionTextFormattings ol>li[value=\"37\"]{counter-reset:antragsgruen-counter 36}.motionTextFormattings ol>li[value=\"38\"]{counter-reset:antragsgruen-counter 37}.motionTextFormattings ol>li[value=\"39\"]{counter-reset:antragsgruen-counter 38}.motionTextFormattings ol>li[value=\"40\"]{counter-reset:antragsgruen-counter 39}.motionTextFormattings ol>li[value=\"41\"]{counter-reset:antragsgruen-counter 40}.motionTextFormattings ol>li[value=\"42\"]{counter-reset:antragsgruen-counter 41}.motionTextFormattings ol>li[value=\"43\"]{counter-reset:antragsgruen-counter 42}.motionTextFormattings ol>li[value=\"44\"]{counter-reset:antragsgruen-counter 43}.motionTextFormattings ol>li[value=\"45\"]{counter-reset:antragsgruen-counter 44}.motionTextFormattings ol>li[value=\"46\"]{counter-reset:antragsgruen-counter 45}.motionTextFormattings ol>li[value=\"47\"]{counter-reset:antragsgruen-counter 46}.motionTextFormattings ol>li[value=\"48\"]{counter-reset:antragsgruen-counter 47}.motionTextFormattings ol>li[value=\"49\"]{counter-reset:antragsgruen-counter 48}.motionTextFormattings ol>li[value=\"50\"]{counter-reset:antragsgruen-counter 49}.motionTextFormattings ol>li[value=\"51\"]{counter-reset:antragsgruen-counter 50}.motionTextFormattings ol>li[value=\"52\"]{counter-reset:antragsgruen-counter 51}.motionTextFormattings ol>li[value=\"53\"]{counter-reset:antragsgruen-counter 52}.motionTextFormattings ol>li[value=\"54\"]{counter-reset:antragsgruen-counter 53}.motionTextFormattings ol>li[value=\"55\"]{counter-reset:antragsgruen-counter 54}.motionTextFormattings ol>li[value=\"56\"]{counter-reset:antragsgruen-counter 55}.motionTextFormattings ol>li[value=\"57\"]{counter-reset:antragsgruen-counter 56}.motionTextFormattings ol>li[value=\"58\"]{counter-reset:antragsgruen-counter 57}.motionTextFormattings ol>li[value=\"59\"]{counter-reset:antragsgruen-counter 58}.motionTextFormattings ol>li[value=\"60\"]{counter-reset:antragsgruen-counter 59}.motionTextFormattings ol>li[value=\"61\"]{counter-reset:antragsgruen-counter 60}.motionTextFormattings ol>li[value=\"62\"]{counter-reset:antragsgruen-counter 61}.motionTextFormattings ol>li[value=\"63\"]{counter-reset:antragsgruen-counter 62}.motionTextFormattings ol>li[value=\"64\"]{counter-reset:antragsgruen-counter 63}.motionTextFormattings ol>li[value=\"65\"]{counter-reset:antragsgruen-counter 64}.motionTextFormattings ol>li[value=\"66\"]{counter-reset:antragsgruen-counter 65}.motionTextFormattings ol>li[value=\"67\"]{counter-reset:antragsgruen-counter 66}.motionTextFormattings ol>li[value=\"68\"]{counter-reset:antragsgruen-counter 67}.motionTextFormattings ol>li[value=\"69\"]{counter-reset:antragsgruen-counter 68}.motionTextFormattings ol>li[value=\"70\"]{counter-reset:antragsgruen-counter 69}.motionTextFormattings ol>li[value=\"71\"]{counter-reset:antragsgruen-counter 70}.motionTextFormattings ol>li[value=\"72\"]{counter-reset:antragsgruen-counter 71}.motionTextFormattings ol>li[value=\"73\"]{counter-reset:antragsgruen-counter 72}.motionTextFormattings ol>li[value=\"74\"]{counter-reset:antragsgruen-counter 73}.motionTextFormattings ol>li[value=\"75\"]{counter-reset:antragsgruen-counter 74}.motionTextFormattings ol>li[value=\"76\"]{counter-reset:antragsgruen-counter 75}.motionTextFormattings ol>li[value=\"77\"]{counter-reset:antragsgruen-counter 76}.motionTextFormattings ol>li[value=\"78\"]{counter-reset:antragsgruen-counter 77}.motionTextFormattings ol>li[value=\"79\"]{counter-reset:antragsgruen-counter 78}.motionTextFormattings ol>li[value=\"80\"]{counter-reset:antragsgruen-counter 79}.motionTextFormattings ol>li[value=\"81\"]{counter-reset:antragsgruen-counter 80}.motionTextFormattings ol>li[value=\"82\"]{counter-reset:antragsgruen-counter 81}.motionTextFormattings ol>li[value=\"83\"]{counter-reset:antragsgruen-counter 82}.motionTextFormattings ol>li[value=\"84\"]{counter-reset:antragsgruen-counter 83}.motionTextFormattings ol>li[value=\"85\"]{counter-reset:antragsgruen-counter 84}.motionTextFormattings ol>li[value=\"86\"]{counter-reset:antragsgruen-counter 85}.motionTextFormattings ol>li[value=\"87\"]{counter-reset:antragsgruen-counter 86}.motionTextFormattings ol>li[value=\"88\"]{counter-reset:antragsgruen-counter 87}.motionTextFormattings ol>li[value=\"89\"]{counter-reset:antragsgruen-counter 88}.motionTextFormattings ol>li[value=\"90\"]{counter-reset:antragsgruen-counter 89}.motionTextFormattings ol>li[value=\"91\"]{counter-reset:antragsgruen-counter 90}.motionTextFormattings ol>li[value=\"92\"]{counter-reset:antragsgruen-counter 91}.motionTextFormattings ol>li[value=\"93\"]{counter-reset:antragsgruen-counter 92}.motionTextFormattings ol>li[value=\"94\"]{counter-reset:antragsgruen-counter 93}.motionTextFormattings ol>li[value=\"95\"]{counter-reset:antragsgruen-counter 94}.motionTextFormattings ol>li[value=\"96\"]{counter-reset:antragsgruen-counter 95}.motionTextFormattings ol>li[value=\"97\"]{counter-reset:antragsgruen-counter 96}.motionTextFormattings ol>li[value=\"98\"]{counter-reset:antragsgruen-counter 97}.motionTextFormattings ol>li[value=\"99\"]{counter-reset:antragsgruen-counter 98}.motionTextFormattings ol>li[value=\"100\"]{counter-reset:antragsgruen-counter 99}.motionTextFormattings ol>li[value=A]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=a]{counter-reset:antragsgruen-counter 0}.motionTextFormattings ol>li[value=B]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=b]{counter-reset:antragsgruen-counter 1}.motionTextFormattings ol>li[value=C]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=c]{counter-reset:antragsgruen-counter 2}.motionTextFormattings ol>li[value=D]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=d]{counter-reset:antragsgruen-counter 3}.motionTextFormattings ol>li[value=E]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=e]{counter-reset:antragsgruen-counter 4}.motionTextFormattings ol>li[value=F]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=f]{counter-reset:antragsgruen-counter 5}.motionTextFormattings ol>li[value=G]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=g]{counter-reset:antragsgruen-counter 6}.motionTextFormattings ol>li[value=H]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=h]{counter-reset:antragsgruen-counter 7}.motionTextFormattings ol>li[value=I]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=i]{counter-reset:antragsgruen-counter 8}.motionTextFormattings ol>li[value=J]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=j]{counter-reset:antragsgruen-counter 9}.motionTextFormattings ol>li[value=K]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=k]{counter-reset:antragsgruen-counter 10}.motionTextFormattings ol>li[value=L]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=l]{counter-reset:antragsgruen-counter 11}.motionTextFormattings ol>li[value=M]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=m]{counter-reset:antragsgruen-counter 12}.motionTextFormattings ol>li[value=N]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=n]{counter-reset:antragsgruen-counter 13}.motionTextFormattings ol>li[value=O]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=o]{counter-reset:antragsgruen-counter 14}.motionTextFormattings ol>li[value=P]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=p]{counter-reset:antragsgruen-counter 15}.motionTextFormattings ol>li[value=Q]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=q]{counter-reset:antragsgruen-counter 16}.motionTextFormattings ol>li[value=R]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=r]{counter-reset:antragsgruen-counter 17}.motionTextFormattings ol>li[value=S]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=s]{counter-reset:antragsgruen-counter 18}.motionTextFormattings ol>li[value=T]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=t]{counter-reset:antragsgruen-counter 19}.motionTextFormattings ol>li[value=U]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=u]{counter-reset:antragsgruen-counter 20}.motionTextFormattings ol>li[value=V]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=v]{counter-reset:antragsgruen-counter 21}.motionTextFormattings ol>li[value=W]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=w]{counter-reset:antragsgruen-counter 22}.motionTextFormattings ol>li[value=X]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=x]{counter-reset:antragsgruen-counter 23}.motionTextFormattings ol>li[value=Y]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=y]{counter-reset:antragsgruen-counter 24}.motionTextFormattings ol>li[value=Z]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol>li[value=z]{counter-reset:antragsgruen-counter 25}.motionTextFormattings ol.decimalCircle>li::before{content:\"(\" counter(antragsgruen-counter) \")\"}.motionTextFormattings ol.decimalCircle>li[value]::before{content:\"(\" attr(value) \")\"}.motionTextFormattings ol.lowerAlpha>li::before{content:counter(antragsgruen-counter, lower-alpha) \".\"}.motionTextFormattings ol.lowerAlpha>li[value]::before{content:attr(value) \".\"}.motionTextFormattings ol.upperAlpha>li::before{content:counter(antragsgruen-counter, upper-alpha) \".\"}.motionTextFormattings ol.upperAlpha>li[value]::before{content:attr(value) \".\"}.motionTextFormattings .amendmentRef{font-size:.8em;opacity:.7}.motionTextFormattings.fixedWidthFont{font-family:\"PT Sans\",Courier,sans-serif;color:#000;hyphens:none}@media(min-width: 800px){.motionTextFormattings .lineNumber{position:relative;left:-42px;width:0;display:inline-block;float:left}}.motionTextFormattings .lineNumber:after{content:attr(data-line-number);color:#c3c3c3;font-size:16px;font-style:normal;font-weight:normal;text-decoration:none}@media screen and (max-width: 799px){.motionTextFormattings br{display:none}.motionTextFormattings .lineNumber{position:relative;bottom:-3px;left:-2px}.motionTextFormattings .lineNumber:first-of-type{position:relative;left:-27px;width:0;bottom:auto;display:inline-block;float:left;z-index:-1}.motionTextFormattings .lineNumber:after{font-size:12px}.motionTextFormattings .lineNumber:first-of-type:after{font-size:14px}}@media(min-width: 800px){.motionTextFormattings>ul,.motionTextFormattings>ol{padding-left:40px}.motionTextFormattings>ul .lineNumber,.motionTextFormattings>ol .lineNumber{left:-82px}.motionTextFormattings>ul ul,.motionTextFormattings>ul ol,.motionTextFormattings>ol ul,.motionTextFormattings>ol ol{padding-left:40px}.motionTextFormattings>ul ul .lineNumber,.motionTextFormattings>ul ol .lineNumber,.motionTextFormattings>ol ul .lineNumber,.motionTextFormattings>ol ol .lineNumber{left:-122px}.motionTextFormattings>ul ul ul .lineNumber,.motionTextFormattings>ul ul ol .lineNumber,.motionTextFormattings>ul ol ul .lineNumber,.motionTextFormattings>ul ol ol .lineNumber,.motionTextFormattings>ol ul ul .lineNumber,.motionTextFormattings>ol ul ol .lineNumber,.motionTextFormattings>ol ol ul .lineNumber,.motionTextFormattings>ol ol ol .lineNumber{left:-162px}.motionTextFormattings>ul ul ul ul .lineNumber,.motionTextFormattings>ul ul ul ol .lineNumber,.motionTextFormattings>ul ul ol ul .lineNumber,.motionTextFormattings>ul ul ol ol .lineNumber,.motionTextFormattings>ul ol ul ul .lineNumber,.motionTextFormattings>ul ol ul ol .lineNumber,.motionTextFormattings>ul ol ol ul .lineNumber,.motionTextFormattings>ul ol ol ol .lineNumber,.motionTextFormattings>ol ul ul ul .lineNumber,.motionTextFormattings>ol ul ul ol .lineNumber,.motionTextFormattings>ol ul ol ul .lineNumber,.motionTextFormattings>ol ul ol ol .lineNumber,.motionTextFormattings>ol ol ul ul .lineNumber,.motionTextFormattings>ol ol ul ol .lineNumber,.motionTextFormattings>ol ol ol ul .lineNumber,.motionTextFormattings>ol ol ol ol .lineNumber{left:-202px}.fourdigitsLineNumbers .motionTextFormattings .lineNumber{left:-52px}.fourdigitsLineNumbers .motionTextFormattings>ul .lineNumber,.fourdigitsLineNumbers .motionTextFormattings>ol .lineNumber{left:-92px}.fourdigitsLineNumbers .motionTextFormattings>blockquote .lineNumber{left:-107px}.motionTextFormattings>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:38px}.motionTextFormattings>blockquote .lineNumber{left:-97px}}@media screen and (max-width: 799px){.motionTextFormattings>ul,.motionTextFormattings>ol{padding-left:40px}.motionTextFormattings>ul .lineNumber:first-of-type,.motionTextFormattings>ol .lineNumber:first-of-type{left:-67px}.motionTextFormattings>ul ul,.motionTextFormattings>ul ol,.motionTextFormattings>ol ul,.motionTextFormattings>ol ol{padding-left:15px}.motionTextFormattings>ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol .lineNumber:first-of-type{left:-107px}.motionTextFormattings>ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ol .lineNumber:first-of-type{left:-147px}.motionTextFormattings>ul ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ul ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ul ol ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ul ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ul ol ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ul ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ul ol .lineNumber:first-of-type,.motionTextFormattings>ol ol ol ul .lineNumber:first-of-type,.motionTextFormattings>ol ol ol ol .lineNumber:first-of-type{left:-187px}.fourdigitsLineNumbers .motionTextFormattings .lineNumber:first-of-type{left:-42px}.fourdigitsLineNumbers .motionTextFormattings>ul .lineNumber:first-of-type,.fourdigitsLineNumbers .motionTextFormattings>ol .lineNumber:first-of-type{left:-72px}.fourdigitsLineNumbers .motionTextFormattings>blockquote .lineNumber:first-of-type{left:-67px}.motionTextFormattings>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:18px}.motionTextFormattings>blockquote .lineNumber:first-of-type{left:-62px}}.motionTextFormattings .lineNumber.highlighted:before{content:\"\";display:block;position:absolute;left:-8px;height:1.5em;margin-top:-1px;width:100vw;max-width:781px;z-index:-1;background-color:rgba(255,255,0,0);transition:background-color .5s ease}.motionTextFormattings .lineNumber.highlighted-active:before{background-color:#ff0}.motionTextFormattings.smallFont{font-size:12px}.well .motionTextHolder{padding-bottom:22px}.well .motionTextHolder>h3.green{margin-bottom:22px}@media screen and (min-width: 800px){.motionTextHolder .stdPadding{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .stdPadding{padding:15px 10px 15px 30px}}.motionTextHolder .amendmentTextModeSelector{float:right}.motionTextHolder .paragraph{font-size:14px;clear:both;position:relative}.motionTextHolder .paragraph.smallFont{font-size:12px}@media(min-width: 800px){.motionTextHolder .paragraph .text{padding:15px 50px 15px 50px}}@media(max-width: 799px){.motionTextHolder .paragraph .text{padding:15px 30px 15px 30px}}.motionTextHolder .paragraph .text.collidingAmendment{margin-top:-20px}.motionTextHolder .paragraph .text.collidingAmendment>h3{font-size:1.2em;margin-top:0}@media screen and (min-width: 800px){.motionTextHolder .paragraph.lineNumbers .text{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .paragraph.lineNumbers .text{padding:15px 10px 15px 30px}}.motionTextHolder .paragraph h4.lineSummary{font-size:inherit;font-weight:bold;margin:0}.motionTextHolder .paragraph h4.lineSummary .linkedMotion{font-weight:normal}.motionTextHolder .textAmendment{position:relative}@media(min-width: 800px){.motionTextHolder .textAmendment{width:733px}}.motionTextHolder .textAmendment del,.motionTextHolder .textAmendment ul.deleted,.motionTextHolder .textAmendment ol.deleted,.motionTextHolder .textAmendment li.deleted,.motionTextHolder .textAmendment blockquote.deleted,.motionTextHolder .textAmendment pre.deleted{color:red;text-decoration:line-through}.motionTextHolder .textAmendment ins,.motionTextHolder .textAmendment ul.inserted,.motionTextHolder .textAmendment ol.inserted,.motionTextHolder .textAmendment li.inserted,.motionTextHolder .textAmendment blockquote.inserted,.motionTextHolder .textAmendment pre.inserted{text-decoration:underline}.motionTextHolder .textAmendment .preamble{position:absolute;top:-25px;height:35px}@media(min-width: 800px){.motionTextHolder .textAmendment .preamble{width:100%}}@media(max-width: 799px){.motionTextHolder .textAmendment .preamble{width:calc(100% - 30px - 10px)}}.motionTextHolder .textAmendment .preamble>a{position:absolute;bottom:0;left:0;max-height:35px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:100%;color:#e2007a}.motionTextHolder .textAmendment .preamble>a:link,.motionTextHolder .textAmendment .preamble>a:visited{color:#e2007a}.motionTextHolder .textAmendment .preamble>a h3{font-size:14px;display:inline-block;margin:0;font-weight:bold}.motionTextHolder .textAmendment .preamble>a .moreAffected{font-style:italic;font-size:.8em;margin-top:-3px;color:#bcb}@media screen and (max-width: 799px){.motionTextHolder .textAmendment .preamble .amendment{display:none}}.motionTextHolder .textAmendment .movedParagraphHint{font-style:italic;font-size:.8em;margin-top:3px;color:#bcb}.motionTextHolder .tabularData>tbody>tr:first-child>td,.motionTextHolder .tabularData>tbody>tr:first-child>th{border-top:none}.motionTextHolder .onlyOneSupporter{list-style-type:none;margin:0}@media screen and (min-width: 800px){.motionTextHolder .onlyOneSupporter{padding:15px 10px 15px 50px}}@media(max-width: 799px){.motionTextHolder .onlyOneSupporter{padding:15px 10px 15px 30px}}.motionTextHolder .onlyOneSupporter>li{padding:0;margin:0}.motionTextHolder .amendmentParaLink{position:absolute;display:none;top:50%;right:5px;margin-top:-30px}.motionTextHolder .amendmentParaLink img{width:35px}.motionTextHolder .paragraph:hover .amendmentParaLink{display:block}.motionTextHolder .paragraph.hover .amendmentParaLink{display:block}.bookmarks{float:right;width:1px;list-style-type:none;padding:0;margin-top:5px}.bookmarks>li{width:1px;height:38px;position:relative;margin-bottom:7px;z-index:1}.bookmarks>li>a{display:block;position:absolute;white-space:nowrap;padding:10px;top:0;left:2px;color:#fff;min-width:40px;border-top-right-radius:10px;border-bottom-right-radius:10px;font-weight:bold}@media screen and (max-width: 799px){.bookmarks>li>a:before{content:\"\";display:block;position:absolute;top:0;left:-3px;width:3px;height:100%}.bookmarks>li>a:after{content:\" \";position:absolute;left:-2px;top:50%;height:0;width:0;border-width:2px;margin-top:-2px;border-style:solid;border-color:hsla(0,0%,100%,0);border-left-color:#fff}}.bookmarks>li.comment>a{background:#e2007a;background:-moz-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-webkit-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-o-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:-ms-linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%);background:linear-gradient(90deg, rgb(226, 0, 122) 0%, rgb(243.85, 0, 131.635840708) 100%)}.bookmarks>li.comment>a:before{background:#e2007a}.bookmarks>li.comment>a.active{background:rgb(197.95,0,106.8579646018);background:-moz-linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%);background:-webkit-linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%);background:-o-linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%);background:-ms-linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%);background:linear-gradient(90deg, rgb(197.95, 0, 106.8579646018) 0%, rgb(213.25, 0, 115.1172566372) 100%)}.bookmarks>li.comment>a.active:before{background:rgb(208.15,0,112.364159292)}.bookmarks>li.comment>a.zero{opacity:.3}.bookmarks>li.comment>a .count:after{content:attr(data-count);padding-left:4px}.bookmarks>li.amendment>a{background:#afcb08;background:-moz-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:-webkit-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:-o-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:-ms-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%)}.bookmarks>li.amendment>a:before{background:#afcb08}.bookmarks>li.amendment>a.active{background:rgb(160.1954976303,185.8267772512,7.3232227488);background:-moz-linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%);background:-webkit-linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%);background:-o-linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%);background:-ms-linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%);background:linear-gradient(90deg, rgb(160.1954976303, 185.8267772512, 7.3232227488) 0%, rgb(175, 203, 8) 100%)}.bookmarks>li.amendment>a.active:before{background:rgb(160.1954976303,185.8267772512,7.3232227488)}.bookmarks>li .hider{background:#b4b4b4;background:-moz-linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%);background:-webkit-linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%);background:-o-linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%);background:-ms-linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%);background:linear-gradient(90deg, rgb(180, 180, 180) 0%, rgb(220, 220, 220) 100%)}.commentScreeningQueue{margin-left:50px;color:#a9a9a9}.motionTwoCols{margin-top:2px}@media screen and (min-width: 800px){.motionTwoCols{display:flex;width:100%}.motionTwoCols .motionMainCol{flex-basis:66.6%}.motionTwoCols .motionRightCol{flex-basis:33.4%}}.motionComment{border:solid 1px #d3d3d3;background:#fafafa;border-radius:3px;margin:15px 20px 30px;padding:10px}.motionComment.replyComment{margin-top:-15px}.motionComment .commentHeader{background:none;color:rgb(86.9404761905,100.5,0);font-family:\"PT Sans\",\"Segoe UI\",Frutiger,\"Frutiger Linotype\",\"Dejavu sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:1em;font-weight:bold;line-height:18px;margin:0;text-transform:none}@media(min-width: 800px){.motionComment .commentName{float:right}}.motionComment .commentWriteHeader{border-bottom:solid 1px #fafafa;font-size:1.2em}.motionComment .date{color:#757676;float:right;margin-left:20px}.motionComment .commentBottom{height:23px;position:relative;margin:10px -10px -10px -10px}.motionComment .commentBottom .entry{position:absolute;bottom:-1px;height:24px;font-size:12px;border-top:solid 1px #d3d3d3;text-align:center;font-weight:normal}.motionComment .commentBottom .link{left:-1px;padding:2px;width:24px;border-right:solid 1px #d3d3d3;border-top-right-radius:3px}.motionComment .commentBottom .replyButton{right:-1px;padding:2px 5px;border-left:solid 1px #d3d3d3;border-top-left-radius:3px}.motionComment .commentBottom .delLink{color:#f77;left:3px;width:24px;border-right:solid 1px #d3d3d3;border-top-right-radius:3px}.motionComment .commentBottom .delLink .link{border-right:0;padding:4px}.motionComment .commentBottom .delLink+.link{border-top-right-radius:0}.motionComment .delLink{float:right;margin-left:20px}.motionComment .delLink a:link,.motionComment .delLink a:visited{color:#ccc}.motionComment .delLink a:link:hover,.motionComment .delLink a:link:focus,.motionComment .delLink a:visited:hover,.motionComment .delLink a:visited:focus{color:#bbb}.motionComment .screening>*{display:inline-block;width:49%;text-align:center}.motionComment>label,.motionComment>.label{display:block;text-align:center}.motionComment.form-horizontal .form-group{margin-right:10px;margin-left:10px}.motionComment.form-horizontal .form-group>*{padding-right:0}.motionComment .commentNotifications{padding:10px;overflow:visible}.motionComment .commentNotifications label,.motionComment .commentNotifications .label{font-weight:normal;font-size:13px}.motionComment .commentNotifications select{float:right}.motionComment .submitrow{padding-top:10px;text-align:center}@media screen and (min-width: 1000px){.motionCommentReplies{padding-left:100px}}.motionCommentReplies .motionComment{margin-top:-20px}.withdrawForm{text-align:center}.withdrawForm .ask{font-size:16px;margin-bottom:15px;margin-top:15px}.motionSupportFinishForm,.amendmentSupportFinishForm{text-align:center;margin-bottom:20px}.sectionType0+.motionTextHolder{clear:both}.sectionType3{padding:10px}.sectionType3 img{max-height:200px;max-width:100%}.motionRightCol{padding-top:0;font-size:14px}.motionRightCol .motionTextFormattings{font-size:14px}.motionRightCol>section{padding:0 30px 20px 0}iframe.pdfViewer{width:100%;height:600px;border:none}.sectionType5{margin-left:-1px;margin-right:-1px}.sectionType7{margin-left:-1px;margin-right:-1px}.sectionType7 .videoHolder{padding:15px 50px 15px 50px}.sectionType7 .videoSizer{overflow:hidden;padding-bottom:56.25%;position:relative;height:0}.sectionType7 iframe{left:0;top:0;height:100%;width:100%;position:absolute;border:none}.sectionType8 .editCaller{float:right;font-weight:normal}.sectionType8 .textHolder{clear:both}.sectionType8 .toolbarBelowTitle{margin-top:-22px}.sectionType8 .editorialHeader{padding-top:5px;padding-bottom:5px;height:47px;overflow:auto}.sectionType8 .metadataView{vertical-align:middle;font-style:italic}.sectionType8 .metadataEdit{display:flex;width:100%}.sectionType8 .metadataEdit label>*,.sectionType8 .metadataEdit .label>*{display:inline-block;width:auto}.sectionType8 .metadataEdit label,.sectionType8 .metadataEdit .label{margin:0;flex-grow:1;font-weight:normal}.sectionType8 .metadataEdit label:last-child,.sectionType8 .metadataEdit .label:last-child{text-align:right}.gotoLineNumerPanel{position:fixed;bottom:0;left:0;width:100%;right:0;z-index:10;background:#fff;border-top:solid 1px #ccc;box-shadow:0 0 3px rgba(0,0,0,.4);display:none;padding:10px}.gotoLineNumerPanel.active{display:block}.gotoLineNumerPanel .lineNumberNotFound{color:#ee0101}.gotoLineNumerPanel .input-group{max-width:300px}.gotoLineNumerPanel .form-group{margin-bottom:0}#amendmentMergeForm #motionTitlePrefix,#amendmentMergeForm #motionVersion,#amendmentMergeForm .dropdown-toggle{max-width:230px}#amendmentMergeForm .checkButtonRow{text-align:center;margin:20px 0}#amendmentMergeForm .otherAmendmentStatus .row{margin-bottom:15px}#amendmentMergeForm .otherAmendmentStatus .by{display:block;font-size:.8em}#amendmentMergeForm .otherAmendmentStatus .amendmentAjaxTooltip{float:right;color:gray;margin-right:-15px;margin-top:7px}#amendmentMergeForm .affectedParagraphs .paragraph.originalVersion .modifiedVersion{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.modifiedVersion .originalVersion{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.changed .motionTextHolder{display:none}#amendmentMergeForm .affectedParagraphs .paragraph.unchanged .modifyText{display:none}#amendmentMergeForm .modifiedText{display:none}#amendmentMergeForm .modifyText{margin-top:20px}#amendmentMergeForm .selectorToolbar{margin-top:15px;display:flex;flex-direction:row}#amendmentMergeForm .selectorToolbar label,#amendmentMergeForm .selectorToolbar .label{margin-right:20px;font-weight:normal}#amendmentMergeForm .selectorToolbar .modifySelector{text-align:right;flex:1}#amendmentMergeForm .selectorToolbar .versionSelector{flex:1}#amendmentMergeForm .save-row{text-align:center}#amendmentMergeForm .saveholder .checkAmendmentCollisions{display:none}.amendmentCollisionsHolder .amendmentBy{color:gray}.amendmentCollisionsHolder .amendmentOverrideBlock{background-color:#f5f5f5;margin:15px -10px;padding:10px;border:solid 1px #ddd;border-radius:4px}.amendmentCollisionsHolder .amendmentOverrideBlock>h3{font-size:18px;margin-top:0}.amendmentCollisionsHolder .amendmentOverrideBlock>textarea{display:none}@media(min-width: 800px){.motionData .translateWidget{float:right;margin-bottom:-25px}}.motionData .privateNotes th{padding-top:25px}.motionData .privateNotes td{padding-top:20px}.motionData .privateNotes blockquote{margin-left:0;cursor:pointer;font-style:italic;color:#666}.motionData .privateNotes textarea{line-height:1.1;height:50px;width:100%}@media(min-width: 800px){.motionData .privateNotes textarea{width:calc(100% - 110px)}}.motionData .privateNotes .btn{margin-top:2px;margin-left:5px}.motionData .privateNotes .btnEdit{margin-left:-30px;margin-top:-1px;float:left}.privateNoteOpener{margin-top:-20px;margin-bottom:10px;padding-left:10px;width:30%}.privateNoteOpener .btn{font-weight:normal}.privateNoteOpener+.proposedChangesOpener .btn{margin-top:-30px}.privateParagraphNoteHolder{font-family:\"PT Sans\",\"Segoe UI\",Frutiger,\"Frutiger Linotype\",\"Dejavu sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif}.privateParagraphNoteHolder .privateParagraphNoteOpener{position:absolute;bottom:0;left:40px;opacity:.5}.privateParagraphNoteHolder .privateParagraphNoteOpener .btn{font-weight:normal}.privateParagraphNoteHolder label,.privateParagraphNoteHolder .label{width:100%}@media(min-width: 800px){.privateParagraphNoteHolder label,.privateParagraphNoteHolder .label{width:calc(100% - 110px)}}.privateParagraphNoteHolder textarea.form-control{line-height:1.1;height:50px;width:100%}.privateParagraphNoteHolder .btn{margin-top:2px;margin-left:0}.privateParagraphNoteHolder .btnEdit{margin-left:-30px;margin-top:-1px;float:left}.privateParagraphNoteHolder blockquote{color:#666;font-style:italic;cursor:pointer}ul+.privateParagraphNoteHolder .privateParagraphNoteOpener,ol+.privateParagraphNoteHolder .privateParagraphNoteOpener{left:85px}ul+.privateParagraphNoteHolder blockquote,ol+.privateParagraphNoteHolder blockquote{margin-left:45px}ul+.privateParagraphNoteHolder form,ol+.privateParagraphNoteHolder form{margin-left:40px}blockquote+.privateParagraphNoteHolder .privateParagraphNoteOpener{left:100px}blockquote+.privateParagraphNoteHolder blockquote{margin-left:60px}blockquote+.privateParagraphNoteHolder form{margin-left:55px}.motionChangeView .notDisplayable{color:#ee0101}.motionChangeView .noChanges{color:gray}.motionChangeView .motionDataTable{margin-bottom:25px}.motionSupportForm .supportQuestion{margin-top:10px}.motionSupportForm .supportBlock{display:flex;flex-direction:row}.motionSupportForm .supportBlock .colName,.motionSupportForm .supportBlock .colGender,.motionSupportForm .supportBlock .colOrga{flex:1;padding:0 10px}.motionSupportForm .supportBlock .colSubmit{flex:0}.motionSupportForm .supportBlock>*{padding:0 10px}.motionSupportForm .supportBlock>*:first-child{padding-left:0}.motionSupportForm .supportBlock>*:last-child{padding-right:0}.motionSupportForm .nonPublicBlock label,.motionSupportForm .nonPublicBlock .label{margin-top:10px;font-weight:normal}.motionSupportForm .loggedOutWarning{font-size:.8em;margin-top:6px;padding:0 15px}.likes .expandableList .btnShowAll,.supporters .expandableList .btnShowAll{padding:0;margin-left:10px;font-weight:normal}.likes .expandableList .halfVisible,.supporters .expandableList .halfVisible{opacity:.5}.likes .nonPublic,.supporters .nonPublic{display:inline-block;margin-left:15px;font-size:.8em;font-style:italic}.likeDislikeHolder{text-align:center;margin-bottom:20px}.likeDislikeHolder .likeNameHolder{display:inline-block;max-width:250px;vertical-align:top;margin-right:20px}@media screen and (max-width: 650px){.likeDislikeHolder .likeNameHolder{display:block}}.likeDislikeHolder .btn{margin-left:10px;margin-right:10px}.proposedChangesOpener{padding-left:calc(30% + 8px);margin-top:-20px;margin-bottom:20px}#proposedChanges{background-color:#f8faf8;border:solid 1px #eee;border-radius:4px;margin:0 20px 30px}#proposedChanges h2{margin:0;font-size:18px;padding:5px 10px;background-color:#ded}#proposedChanges .closeBtn{margin-right:-10px;margin-top:-2px}#proposedChanges .holder{display:flex}#proposedChanges .holder>*{flex:1;padding:10px}#proposedChanges .statusForm{width:40%}#proposedChanges .proposalCommentForm{width:40%;display:flex;flex-direction:column;border-left:solid 1px #eee}#proposedChanges .middleCol{width:20%;display:flex;flex-direction:column}#proposedChanges .votingBlockSettings{padding-bottom:10px}#proposedChanges .votingBlockSettings select{display:inline-block;width:calc(100% - 20px)}#proposedChanges .visibilitySettings label,#proposedChanges .visibilitySettings .label{display:block}#proposedChanges .notificationStatus{font-size:12px}#proposedChanges .notificationStatus .accepted{color:green;margin-right:5px}#proposedChanges .notificationStatus .rejected{color:red;margin-right:5px}#proposedChanges .notificationStatus .notSavedHint{font-style:italic;color:#777}#proposedChanges .notificationStatus .notifyProposer{white-space:normal;text-align:left;font-weight:normal}#proposedChanges .notificationStatus .setConfirmationStatus{overflow:auto}#proposedChanges .notificationStatus .setConfirmation{float:right;font-weight:normal}#proposedChanges .notificationStatus .sendAgain{float:left;font-weight:normal}#proposedChanges h3,#proposedChanges .headingLabel{font-size:14px;margin:3px 0 8px 0;font-weight:bold}#proposedChanges label,#proposedChanges .label{font-size:12px;font-weight:normal}#proposedChanges .newBlock .control-label,#proposedChanges .votingItemBlockRow .control-label,#proposedChanges .votingItemBlockNameRow .control-label{font-size:14px;font-weight:bold}#proposedChanges .proposalTags{display:flex;flex-direction:row;border-top:solid 1px #eee}#proposedChanges .proposalTags>label,#proposedChanges .proposalTags>.label{flex-grow:0;padding:10px;font-size:14px;white-space:nowrap;margin:0}#proposedChanges .proposalTags>div{padding:5px 10px 0;flex-grow:1}#proposedChanges .commentList{flex:1;margin:0;padding:0;list-style-type:none;display:block;max-height:130px;overflow-y:auto;background-color:#fbfdfb;border:solid 1px #dfd}#proposedChanges .commentList>li{margin:0;padding:0;display:block}#proposedChanges .commentList .header{background-color:#eee;overflow:auto;margin-top:10px}#proposedChanges .commentList .date{float:right}#proposedChanges .commentList .delComment{float:right;color:#f77;width:auto}#proposedChanges .commentList .overv{text-align:right;font-style:italic}#proposedChanges .proposalCommentForm{font-size:12px}#proposedChanges .proposalCommentForm textarea{border-radius:0;border:solid 1px #eee;border-bottom:none;box-shadow:none;font-size:12px}#proposedChanges .proposalCommentForm button{margin-top:-1px;width:100%}#proposedChanges .statusDetails,#proposedChanges .collisions,#proposedChanges .publicExplanation,#proposedChanges .notifyProposerSection{border-top:solid 1px #eee;padding:10px}#proposedChanges .notifyProposerSection .proposalFrom{margin-bottom:15px;display:flex;gap:10px;width:100%}#proposedChanges .notifyProposerSection .proposalFrom>*{flex:1}#proposedChanges .notifyProposerSection .submitRow{text-align:center;margin-top:10px}#proposedChanges .saving,#proposedChanges .saved{border-top:solid 1px #eee;height:40px;text-align:center;line-height:38px;vertical-align:middle;display:none}#proposedChanges .showIfChanged{display:none}#proposedChanges.isChanged .showIfChanged{display:block}#proposedChanges.isChanged .hideIfChanged{display:none}#proposedChanges.showSaved .saved{display:block}#proposedChanges.noStatus .showIfStatusSet{display:none}#proposedChangeTextForm h2{font-size:24px}#proposedChangeTextForm .motionTextHolder{margin-top:20px}#proposedChangeTextForm .motionTextHolder .title{font-weight:bold}#proposedChangeTextForm .motionTextHolder .paragraph .text{padding:5px 10px 10px 0}#proposedChangeTextForm .motionTextHolder .paragraph .text>*{padding-bottom:5px;padding-top:5px;margin-bottom:5px}#proposedChangeTextForm .originalVersion ins.ice-del,#proposedChangeTextForm .originalVersion del.ice-del{display:inline}#proposedChangeTextForm .save-row{text-align:center;margin:0 0 40px 0}#proposedChangeTextForm #collisionIndicator{position:fixed;bottom:0;right:0;left:0;width:100%;z-index:10;background:#fff;border-top:1px solid #ccc;-webkit-box-shadow:0 0 3px rgba(0,0,0,.4);-moz-box-shadow:0 0 3px rgba(0,0,0,.4);box-shadow:0 0 3px rgba(0,0,0,.4);padding:5px}#proposedChangeTextForm #collisionIndicator h2{display:inline-block;margin:0;padding:0;font-size:inherit;font-weight:bold}#proposedChangeTextForm #collisionIndicator .collisionList{display:inline-block;margin:0;padding:0;list-style-type:none}#proposedChangeTextForm #collisionIndicator .collisionList>li{display:inline-block;margin:0 20px}.proposedProcedureToolbar .right>*{float:right;margin-left:15px}.proposedProcedureToolbar .left{line-height:40px;vertical-align:middle}.proposedProcedureToolbar .currentDate{font-size:.8em;color:gray}.proposedProcedureOverview.openable{margin-bottom:20px}.proposedProcedureOverview h2 a,.proposedProcedureOverview h2 a:link,.proposedProcedureOverview h2 a:hover,.proposedProcedureOverview h2 a:active{color:#fff}.proposedProcedureOverview table{table-layout:fixed;margin-top:25px}.proposedProcedureOverview table:first-of-type{margin-top:0}.proposedProcedureOverview caption{font-weight:bold;background-color:#eee;color:#000;text-align:center}.proposedProcedureOverview .procedure h3{margin:7px 0 0 0;font-size:0;line-height:0;color:rgba(0,0,0,0);border-top:solid 1px #d3d3d3}.proposedProcedureOverview .procedure p{margin:0;font-size:inherit}.proposedProcedureOverview .procedure h4{margin:10px 0 5px 0;font-size:inherit;font-weight:bold}.proposedProcedureOverview .visible{width:5%;text-align:center}.proposedProcedureOverview .prefix .amendmentAjaxTooltip{float:right;opacity:.5}@media screen and (min-width: 700px){.proposedProcedureOverview .prefix{width:125px}.proposedProcedureOverview .initiator{width:270px}}@media screen and (min-width: 1400px){.proposedProcedureOverview .comment{max-width:350px}}@media screen and (max-width: 500px){.proposedProcedureOverview{display:block}.proposedProcedureOverview tr,.proposedProcedureOverview td,.proposedProcedureOverview th,.proposedProcedureOverview tbody,.proposedProcedureOverview thead,.proposedProcedureOverview caption{display:block}.proposedProcedureOverview .prefix{display:inline-block;border-top:none}.proposedProcedureOverview .initiator{display:inline-block;border-top:none}.proposedProcedureOverview .initiator:before{content:\"(\"}.proposedProcedureOverview .initiator:after{content:\")\"}.proposedProcedureOverview .procedure{border-top:none;border-bottom:solid 1px #ddd}}.proposedProcedureOverview .explanation{font-size:.8em;margin-top:5px;color:#888}.proposedProcedureOverview .notVisible{font-size:.8em;color:#ee0101;font-style:italic}.proposedProcedureOverview tr.withdrawn .prefix,.proposedProcedureOverview tr.withdrawn .initiator{text-decoration:line-through}.proposedProcedureOverview tr.moved .prefix,.proposedProcedureOverview tr.moved .initiator,.proposedProcedureOverview tr.moved .procedure{opacity:.4}.proposedProcedureOverview tr.accepted{background-color:#dfd}.proposedProcedureOverview tr.vote{background-color:#ffe0cc}.proposedProcedureOverview h2 .withdrawn{font-size:.8em;color:#eee}.proposedProcedureOverview .contactShow{display:block;font-size:.7em}.proposedProcedureOverview .contactDetails{font-size:.8em}.proposedProcedureOverview .contactDetails *[title]{cursor:help}.proposedProcedureOverview .comments .writing{display:none}.proposedProcedureOverview .comments.writing .writing{display:block}.proposedProcedureOverview .comments.writing .notWriting{display:none}.proposedProcedureOverview .comments .cancelWriting{color:gray}.proposedProcedureOverview .comments .commentList.hasContent{max-height:200px;overflow:auto}.proposedProcedureOverview .comments .comment{overflow:hidden}.proposedProcedureOverview .comments .comment.template{display:none}.proposedProcedureOverview .comments .comment .name{font-weight:bold}.proposedProcedureOverview .tagNames{color:gray;font-size:.8em}.proposedProcedureOverview .tagNames .btn{opacity:.5}.proposedProcedureOverview .noTags{opacity:0}.proposedProcedureOverview .noTags:hover{opacity:.5}.proposedProcedureOverview .noTags .btn{font-weight:normal}.proposedProcedureOverview .tagsSelector{display:flex;width:100%}.proposedProcedureOverview .tagsSelector .proposalTagsSelect{flex-grow:1}.agreeToProposal{background-color:#f8faf8;border:solid 1px #eee;border-radius:4px;margin:0 20px 30px}.agreeToProposal h2{margin:0;font-size:18px;padding:5px 10px;background-color:#ded}.agreeToProposal .holder{display:flex}.agreeToProposal .holder>*{flex:1;padding:10px}.agreeToProposal .hint{border-top:solid 1px #eee;padding:5px 10px;font-style:italic}.agreeToProposal .status .head{font-weight:bold}.agreeToProposal .agreement .agreed{color:green}.texteditorBox,.texteditor.boxed{min-height:100px;border:1px solid #ccc;border-radius:4px;-webkit-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-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.texteditor{background-color:#fff}.texteditor.fixedWidthFont{font-family:\"PT Sans\",Courier,sans-serif;color:#000}.texteditor>*{padding-bottom:5px;padding-top:5px;padding-left:10px;margin-bottom:5px}.texteditor>span:first-child{padding:0}.texteditor .collidingParagraph.hovered{background-color:#eee}.texteditor>ul,.texteditor ol{padding-left:50px}.texteditor>blockquote{font-size:inherit;padding-left:15px;border-left-width:2px;margin-left:48px}.texteditor span.underline{border-bottom:solid 1px #000}.texteditor span.strike{text-decoration:line-through}#mainmenu{max-width:1024px}#mainmenu .nav>li{display:inline-block}#mainmenu li.addPage{width:0;position:relative}#mainmenu li.addPage a{position:absolute;z-index:10;top:0;left:10px;margin:0}#mainmenu li.addPage a .glyphicon{opacity:.3}@media screen and (max-width: 767px){#mainmenu .container{padding-left:0;padding-right:0}#mainmenu .navbar .nav li a{margin-left:20px}}.motionDataTable{width:100%;overflow-wrap:break-word;table-layout:fixed}.motionDataTable>caption{display:none}.motionDataTable>tbody>tr>th{width:30%;vertical-align:top;padding-right:10px}.motionDataTable .mergingDraft>*{padding-top:15px}.motionData .tagAdderHolder:link,.motionData .tagAdderHolder:visited{color:green}.motionData .delTagForm{display:inline}.motionData .delTagForm button{background:rgba(0,0,0,0);border:none;color:#f77;font-style:italic;padding:0 6px 0 3px;border:solid 1px rgba(102,175,233,0);box-sizing:border-box;box-shadow:none;transition:border ease-in-out .15s,box-shadow ease-in-out .15s}.motionData .delTagForm button:focus{border:solid 1px #66afe9;box-shadow:0 0 3px 2px rgba(102,175,233,.6);transition:border ease-in-out .15s,box-shadow ease-in-out .15s;outline:none}body.usingMouse .motionData .delTagForm button:focus{border:solid 1px rgba(0,0,0,0);box-shadow:none}.motionData>.content>.alert{margin-top:20px}.motionData .motionHistory .fullHistory .currVersion{font-weight:bold}.motionData .motionHistory .date{font-size:.8em;display:inline-block;padding-left:5px}.motionData .motionHistory .changesLink{font-size:.8em}.motionData .motionHistory .btnHistoryOpener{font-weight:normal;font-size:.8em;padding:0 0 0 15px}.motionData .motionProtocol button{font-weight:normal;padding:0;font-size:.8em}.motionData .motionReplayedBy a{font-weight:bold}.motionData .contactShow{font-size:.8em;font-weight:normal;margin-left:15px;padding:0}.motionData .explanation{font-size:.8em;margin-left:2px}.motionData .notVisible{font-size:.8em;color:#ee0101;font-style:italic}.wysiwyg-textarea .alert{margin-bottom:8px}.wysiwyg-textarea textarea{display:none}.search-form label,.search-form .label{display:inline-block;width:220px;vertical-align:top}.labeledCheckbox{cursor:pointer}.labeledCheckbox span{font-weight:normal}.cke_skin_kama{border:none !important}.motionEditForm .maxLenHint{float:right;margin-top:7px;font-size:.8em;margin-right:3px}.motionEditForm .maxLenHint span.icon{color:gray}.motionEditForm .maxLenHint span.counter{display:inline-block;width:23px;text-align:right}.motionEditForm .legend{font-weight:bold}.motionEditForm label.optional:after,.motionEditForm .optional.label:after{content:\"(\" attr(data-optional-str) \")\";font-weight:normal;font-style:italic;display:inline-block;margin-left:10px;font-size:.9em}.motionEditForm .submitHolder{text-align:right}.motionEditForm .editorialGlobalBar{background-color:#f7f7f7;border-bottom:solid 1px #ccc;padding:0 20px;font-size:13px;display:flex;flex-direction:row}.motionEditForm .editorialGlobalBar label,.motionEditForm .editorialGlobalBar .label{flex:1;padding:5px 0;margin:0;font-weight:normal;color:#777}.motionEditForm .editorialGlobalBar label:last-child,.motionEditForm .editorialGlobalBar .label:last-child{text-align:right}.motionEditForm .editorialGlobalBar input{margin-right:5px}.motionEditForm .modifiedActions{text-align:right}.motionEditForm .modifiedActions .btn{font-weight:normal;padding:0}.motionEditForm .single-paragraph .modifiedActions{display:none}.motionEditForm .single-paragraph.modified{background-color:#eee}.motionEditForm .single-paragraph.modified .modifiedActions{display:block}.motionEditForm .single-paragraph.modifyable{cursor:pointer}.motionEditForm .single-paragraph.modifyable:hover{background-color:#f4f4f4}.motionEditForm .single-paragraph.modifyable:hover>.texteditor{background-color:rgba(0,0,0,0)}.motionEditForm .single-paragraph .oneChangeHint{background-color:#fff;padding:5px 15px;margin-top:-5px}.motionEditForm .single-paragraph .oneChangeHint .alert{margin-bottom:0}.motionEditForm .type3{overflow:auto}.motionEditForm .type3 .currentImage{float:right;max-width:100px;max-height:100px;margin-left:20px}.motionEditForm .type3 .form-group{overflow:auto}.motionEditForm .type3 .deleteImage{font-weight:normal}.motionEditForm .type5{overflow:auto}.motionEditForm .type5 .currentPdf{float:right}.motionEditForm .type5 .form-group{overflow:auto}.motionEditForm .type5 .deletePdf{font-weight:normal}#supporterFullTextHolder{margin-top:30px;display:flex;width:100%}#supporterFullTextHolder .textHolder{width:70%}#supporterFullTextHolder .btnHolder{width:30%;text-align:right}.supporterFormStd .supporterData .fullTextAdder{float:right}.supporterFormStd .supporterData .fullTextAdder button{font-weight:normal}.supporterFormStd .adderLink{font-weight:normal;padding:0}.supporterFormStd .initiatorData .control-label{font-weight:bold}.supporterFormStd .initiatorData .leftColumn{padding-top:18px}.supporterFormStd .initiatorData .contactHead{margin-top:20px;margin-bottom:10px}@media screen and (min-width: 800px){.supporterFormStd .initiatorData .contactHead{width:70%;text-align:center}}.supporterFormStd .initiatorData .contactHead h3{font-size:18px;margin:0}.supporterFormStd .initiatorData .contactHead .hint{font-size:12px}.supporterFormStd .initiatorData .only-person,.supporterFormStd .initiatorData .only-organization{display:none}.supporterFormStd .initiatorData.type-person .only-person{display:inherit}.supporterFormStd .initiatorData.type-organization .only-organization{display:inherit}.supporterFormStd .initiatorData .initiatorCurrentUsername .username{padding-top:7px}.supporterFormStd .initiatorData .initiatorCurrentUsername .btnEdit{display:inline}.supporterFormStd .initiatorData .initiatorSetUsername .btn{text-align:left}.supporterFormStd .supporterRow .adderRow button,.supporterFormStd .initiatorRow .adderRow button{font-weight:normal}.supporterFormStd .supporterRow .rowDeleter,.supporterFormStd .supporterRow .rowDeleter:link,.supporterFormStd .supporterRow .rowDeleter:visited,.supporterFormStd .initiatorRow .rowDeleter,.supporterFormStd .initiatorRow .rowDeleter:link,.supporterFormStd .initiatorRow .rowDeleter:visited{color:#f77;display:inline-block}@media(hover: hover){.supporterFormStd .supporterRow .rowDeleter,.supporterFormStd .initiatorRow .rowDeleter{opacity:0}.supporterFormStd .supporterRow:hover .rowDeleter,.supporterFormStd .supporterRow:focus-within .rowDeleter,.supporterFormStd .initiatorRow:hover .rowDeleter,.supporterFormStd .initiatorRow:focus-within .rowDeleter{opacity:1}}.supporterFormStd .supporterRow{margin-bottom:10px}.supporterFormStd .initiatorRow .rightColumn,.supporterFormStd .supporterRow{display:flex;width:100%}.supporterFormStd .initiatorRow .rightColumn .nameCol,.supporterFormStd .supporterRow .nameCol{flex-basis:65%;flex-grow:0;padding-right:10px}.supporterFormStd .initiatorRow .rightColumn .orgaCal,.supporterFormStd .supporterRow .orgaCal{flex-grow:1}.supporterFormStd .initiatorRow .rightColumn .delCol,.supporterFormStd .supporterRow .delCol{flex-basis:20px;flex-grow:0}.supporterFormStd .moreInitiatorsAdder{text-align:right}.supporterFormStd .moreInitiatorsAdder .adderBtn{padding:0;font-size:.8em;font-weight:normal}#motionConfirmedForm .promoUrl input[type=text]{font-weight:bold;font-family:\"PT Sans\",Courier,sans-serif}#motionConfirmedForm .promoUrl .clipboard-done{text-align:center;font-size:.8em;color:green;font-weight:normal;margin-top:-13px}#motionConfirmedForm .promoUrl button.btn{padding-bottom:7px}#motionConfirmedForm .btnRow{padding:15px;text-align:center}#motionConfirmForm,#amendmentConfirmForm{margin-bottom:20px}.motionUpdateWidget{text-align:right;padding-top:10px}.motionUpdateWidget .updated{text-align:center;padding-top:5px;font-size:.8em;color:green;opacity:0;transition:opacity .1s}.motionUpdateWidget .updated.active{opacity:1;transition:opacity .1s}span.twitter-typeahead .tt-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:250px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}span.twitter-typeahead .tt-suggestion{display:block;padding:3px 10px 3px 20px;margin:5px 0;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap;font-size:14px}span.twitter-typeahead .tt-suggestion:hover,span.twitter-typeahead .tt-suggestion:focus{color:#fff;text-decoration:none;outline:0;background-color:#88a4a0}span.twitter-typeahead .tt-suggestion.tt-cursor{color:#fff;background-color:#88a4a0}.input-group span.twitter-typeahead{display:block !important}.input-group span.twitter-typeahead .tt-dropdown-menu{top:32px !important}.input-group.input-group-lg span.twitter-typeahead .tt-dropdown-menu{top:44px !important}.input-group.input-group-sm span.twitter-typeahead .tt-dropdown-menu{top:28px !important}ul.searchResults{list-style-type:none;margin:0;padding:0}ul.searchResults>li{margin:0;padding:10px}ul.searchResults>li .type{display:block;float:left;width:120px;overflow:hidden;-ms-text-overflow:ellipsis;text-overflow:ellipsis}.activityLogPage .date{float:right;color:gray}.activityLogPage .motion,.activityLogPage .voting{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.activityLogPage .description{margin-top:10px}.activityLogPage .deleted{color:gray;font-style:italic}.activityLogPage .quote{color:gray}.activityLogPage .quote:before{content:\"„\";display:inline}.activityLogPage .quote:after{content:\"“\";display:inline}.createSelectStatutes .statute{font-weight:bold;font-size:16px;line-height:18px;margin-top:20px;margin-bottom:20px}.createConfirmPage .sectionType3,.createConfirmPage .sectionType4{padding-left:50px}.amendmentAjaxTooltip{cursor:pointer}h2.green .amendmentAjaxTooltip,h3.green .amendmentAjaxTooltip{float:right;color:gray;margin-right:-10px}.popover-amendment-ajax{width:250px;max-width:none;color:#000}@media(min-width: 800px){.popover-amendment-ajax{width:400px}}@media(min-width: 1200px){.popover-amendment-ajax{width:600px}}.popover-amendment-ajax .popover-content{padding-right:0}.popover-amendment-ajax.fixedBottom{left:25.7969px;display:block;bottom:37px;position:fixed;top:initial !important}.ajaxAmendment{max-height:250px;overflow:auto}.ajaxAmendment>h3{display:none}.ajaxAmendment h4{font-size:16px;margin:5px 0}.ajaxAmendment ul{padding-left:20px}.ajaxAmendment .amendmentLink{float:right;margin-right:10px}.countries{border:none !important}.uploadCol{position:relative;max-width:200px;display:inline-block}.uploadCol label,.uploadCol .label{cursor:pointer;position:absolute;top:7px;right:10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.uploadCol input{opacity:0;width:100%;pointer-events:none}.uploadCol:focus-within label,.uploadCol:focus-within .label{outline:solid 2px gray;outline-offset:0}body.usingMouse .uploadCol:focus-within label,body.usingMouse .uploadCol:focus-within .label{outline:none}.motionMergeConfirmForm .newMotionStatus label,.motionMergeConfirmForm .newMotionStatus .label,.motionMergeConfirmForm .newMotionInitiator label,.motionMergeConfirmForm .newMotionInitiator .label,.motionMergeConfirmForm .newMotionSubstatus label,.motionMergeConfirmForm .newMotionSubstatus .label{font-weight:normal;display:block}.motionMergeConfirmForm .contentMotionStatus{padding-bottom:0}@media screen and (min-width: 800px){.motionMergeConfirmForm .contentMotionStatus{display:flex;width:100%}.motionMergeConfirmForm .contentMotionStatus>*{flex-basis:50%}}.motionMergeConfirmForm .newMotionSubstatus .title{font-weight:bold}.motionMergeConfirmForm .contentVotingResult,.motionMergeConfirmForm .contentVotingResultComment{padding-bottom:0;padding-top:10px}.motionMergeConfirmForm .contentVotingResultCaller{padding-bottom:0}.motionMergeConfirmForm .contentVotingResultCaller button{padding-left:0}.motionMergeConfirmForm .motionTextHolder{padding-top:22px}.motionMergeConfirmForm .newAmendments .amendmentStatus{display:flex;flex-direction:row;width:100%}.motionMergeConfirmForm .newAmendments .amendmentStatus>*{padding:5px}.motionMergeConfirmForm .newAmendments .titleHolder{flex-basis:15%}.motionMergeConfirmForm .newAmendments .amendmentStatus>.statusHolder{padding-left:30px;flex-basis:25%}.motionMergeConfirmForm .newAmendments .commentHolder{flex-basis:25%}.motionMergeConfirmForm .newAmendments .votesHolder{flex-basis:8%}.motionMergeConfirmForm .newAmendments .amendmentAjaxTooltip{float:left;margin-left:-24px;margin-top:24px}.motionMergeConfirmForm .newAmendments .amendmentName{padding-top:22px;font-weight:bold;text-align:right}.motionMergeConfirmForm .newAmendments .amendSubtitle{text-align:right;overflow:hidden;text-overflow:ellipsis;max-width:150px;white-space:nowrap;font-size:12px}.motionMergeConfirmForm .newAmendments label,.motionMergeConfirmForm .newAmendments .label{font-weight:normal;font-size:.9em}.motionMergeConfirmForm .newAmendments input::-webkit-outer-spin-button,.motionMergeConfirmForm .newAmendments input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.motionMergeConfirmForm .newAmendments input[type=number]{-moz-appearance:textfield}.mergeConfirmToolbar{margin-bottom:30px}.mergeConfirmToolbar>.export{text-align:right}.mergeConfirmToolbar>.export>*{display:inline-block}.motionMergeInit h2.green{margin-bottom:10px;margin-top:20px}.motionMergeInit .explanation{margin-top:20px;margin-bottom:20px}.motionMergeInit .alert-info a.btn{margin-top:-7px}.motionMergeInit .draftExistsAlert{margin-bottom:50px}.motionMergeInit .mergeTable{width:100%;margin-bottom:20px}.motionMergeInit .mergeTable tr{border-bottom:solid 1px #afcb08}.motionMergeInit .mergeTable tfoot tr{border-bottom:none}.motionMergeInit .mergeTable th{font-size:.8em;line-height:2.5em;font-weight:600}.motionMergeInit .mergeTable td{padding:.75em 0em .75em 0em}.motionMergeInit .mergeTable .colCheck{text-align:center;width:100px}.motionMergeInit .mergeTable td.colText{padding:0}.motionMergeInit .mergeTable td.colText label,.motionMergeInit .mergeTable td.colText .label{display:block;font-size:.8em}.motionMergeInit .mergeTable label,.motionMergeInit .mergeTable .label{padding:0}.motionMergeInit label,.motionMergeInit .label{font-weight:normal}.motionMergeInit .mergeSingle{list-style-type:none;margin:0;padding:0}.motionMergeInit .mergeSingle>li{clear:both;margin:15px 0;padding:0}.motionMergeInit .mergeSingle>li .title{font-weight:bold}.motionMergeInit .mergeSingle>li .initiator{font-size:.8em;color:gray}.motionMergeInit .mergeSingle .amendmentAjaxTooltip{float:left;margin-right:10px}.motionMergeInit .exportHolder{margin:5px 0 0 42px}.motionMergeStyles .ICE-Tracking .ice-del,.motionMergeStyles .ICE-Tracking .ice-del p{text-decoration:line-through;color:#800;background-color:rgba(255,100,100,.2)}.motionMergeStyles .ICE-Tracking .ice-del.hover,.motionMergeStyles .ICE-Tracking .ice-del.hover p{background-color:rgba(255,49,49,.5)}.motionMergeStyles .ICE-Tracking .ice-ins,.motionMergeStyles .ICE-Tracking .ice-ins p{text-decoration:underline;color:#080;background-color:rgba(100,255,100,.2)}.motionMergeStyles .ICE-Tracking .ice-ins.hover,.motionMergeStyles .ICE-Tracking .ice-ins.hover p{background-color:rgba(49,255,49,.6)}.motionMergeStyles .adminTyped1{background-color:#eef;color:blue}.motionMergeStyles .adminTyped2{background-color:#ffeefd;color:#a300ff}.motionMergeStyles .texteditorBox,.motionMergeStyles .texteditor.boxed{min-height:15px}.motionMergeStyles .paragraphWrapper{position:relative;clear:both}.motionMergeStyles .paragraphWrapper p,.motionMergeStyles .paragraphWrapper ul,.motionMergeStyles .paragraphWrapper ol{margin-bottom:0}.motionMergeStyles .paragraphWrapper .texteditor>*{margin-bottom:0}.motionMergeStyles .paragraphWrapper .leftToolbar{width:0;position:absolute;left:-22px;top:0;bottom:0}.motionMergeStyles .paragraphWrapper .leftToolbar .lineNumbers{font-size:12px;color:#c3c3c3}.motionMergeStyles .paragraphWrapper .leftToolbar .firstLineNumber{position:absolute;top:7px;width:16px;text-align:center}.motionMergeStyles .paragraphWrapper .leftToolbar .lastLineNumber{position:absolute;bottom:7px;width:16px;text-align:center}.motionMergeStyles .paragraphWrapper .leftToolbar .inbetweenLineNumbers{position:absolute;width:1px;top:25px;bottom:25px;left:8px;background-image:linear-gradient(#C3C3FF 33%, rgba(255, 255, 255, 0) 0%);background-position:right;background-size:1px 3px;background-repeat:repeat-y}.motionMergeStyles .paragraphWrapper .changeToolbar{float:right;width:0;padding-top:3px;margin-right:-24px}.motionMergeStyles .paragraphWrapper .changeToolbar .btn-group{white-space:nowrap;font-size:0;margin-bottom:5px}.motionMergeStyles .paragraphWrapper .changeToolbar .btn{float:none}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAll{border-radius:0;border-left:none;border-bottom-right-radius:5px !important;border-top-right-radius:5px !important;font-weight:normal}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment{border:none;border-left:solid 1px #fff;border-radius:0}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment.toggleActive{padding:10px;color:#fff;background:#afcb08}.motionMergeStyles .paragraphWrapper .changeToolbar .dropdownAmendment.btn-default{padding:9px;border:solid 1px #ccc}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment{border:none;border-bottom-right-radius:10px !important;border-top-right-radius:10px !important}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment.toggleActive{padding:10px;color:#fff;background:#afcb08;background:-moz-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:-webkit-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:-o-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:-ms-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(189.8045023697, 220.1732227488, 8.6767772512) 100%);border-left:solid 1px rgb(189.8045023697,220.1732227488,8.6767772512)}.motionMergeStyles .paragraphWrapper .changeToolbar .toggleAmendment.btn-default{padding:9px;border:solid 1px #ccc}.motionMergeStyles .actions{text-align:left;white-space:nowrap;vertical-align:top}.motionMergeStyles .actions>*{display:block;vertical-align:top}.motionMergeStyles .changedIndicator{color:gray;margin-right:10px;font-size:.8em;margin-top:7px;margin-left:-19px;font-weight:bold;visibility:visible}.motionMergeStyles .changedIndicator.unchanged{visibility:hidden}.motionMergeStyles .amendmentStatus .selected a:before{content:\"✓\";display:block;float:left;width:16px;margin-left:-16px;text-align:center}.motionMergeStyles .amendmentStatus .votingResult{padding-left:8px;padding-right:8px;padding-bottom:8px}.motionMergeStyles .amendmentStatus .votingResult label,.motionMergeStyles .amendmentStatus .votingResult .label{font-weight:normal;margin-bottom:0;font-size:12px}.motionMergeStyles .amendmentStatus .votingResult .form-control{padding:3px 6px;font-size:12px;height:24px}.motionMergeStyles .amendmentStatus .votingData{display:flex;flex-direction:row;width:100%}.motionMergeStyles .amendmentStatus .votingData input::-webkit-outer-spin-button,.motionMergeStyles .amendmentStatus .votingData input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.motionMergeStyles .amendmentStatus .votingData input[type=number]{-moz-appearance:textfield}.motionMergeStyles .amendmentStatus .votingData label,.motionMergeStyles .amendmentStatus .votingData .label{font-weight:normal;margin-bottom:0;font-size:12px}.motionMergeStyles .amendmentStatus .votingData .form-control{padding:3px 6px;font-size:12px;height:24px}.motionMergeStyles .amendmentStatus .votingData>*{flex:0;flex-basis:25%;padding-left:8px}.motionMergeStyles .amendmentStatus .votingData>*:last-child{padding-right:8px}.motionMergeStyles .hasCollisions .texteditor{position:relative}.motionMergeStyles .hasCollisions .texteditor:before{content:attr(data-collision-start-msg);position:absolute;top:-13px;text-align:center;font-size:.7em;color:gray;width:100%}.motionMergeStyles .hasCollisions .collisionsHolder{padding-bottom:5px;padding-top:5px;padding-left:10px;background-color:#f5f5f5}.motionMergeStyles .hasCollisions .hideCollision{font-weight:normal}.motionMergeStyles .hasCollisions+.hasCollisions{margin-top:45px}.motionMergeStyles .moved{margin-top:15px;position:relative}.motionMergeStyles .moved:before{display:block;content:attr(data-moving-msg);position:absolute;top:-15px;left:0;width:100%;text-align:center;text-decoration:none;font-size:.8em;color:gray}.motionMergeStyles .appendHint:after{content:attr(data-append-hint);display:inline-block;font-size:.75em;bottom:-3px;position:relative}.motionMergeStyles .appendedCollision:before{content:\"⚠️\";display:inline-block;font-size:.85em;padding-right:3px;padding-left:5px;position:relative}.mergingPopoverCollisionHint{font-size:.8em}.motionMergeForm .twoColsHolder{display:flex;flex-direction:row;width:100%}.motionMergeForm .twoColsHolder .twoColsLeft{flex-basis:50%;flex-grow:0}.motionMergeForm .twoColsHolder .twoColsRight{flex-basis:50%;flex-grow:0}.motionMergeForm .sectionType1 .twoColsLeft{padding-left:calc(50px - 25px);padding-right:10px;padding-top:5px}.motionMergeForm .sectionType1 .twoColsRight{padding-left:10px;border-left:1px solid #ccc;border-right:1px solid #ccc}.motionMergeForm .sectionType1 .twoColsRight.first{border-top:1px solid #ccc;border-top-left-radius:4px;border-top-right-radius:4px}.motionMergeForm .sectionType1 .twoColsRight.last{border-bottom:1px solid #ccc;border-bottom-left-radius:4px;border-bottom-right-radius:4px}.motionMergeForm .removeSection{font-weight:normal;margin-bottom:15px}.motionMergeForm .removeSection input{margin-right:5px}.motionMergeForm .submitHolder{text-align:right}.motionMergeForm .newAmendments .amendSubtitle{font-weight:normal;font-size:.9em}.motionMergeForm .newAmendments .control-label{margin-top:-3px;padding-top:0}.motionMergeForm .sectionHolder{padding:3px}.motionMergeForm .boxed{border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.motionMergeForm .titleChanges .title{font-weight:bold}.motionMergeForm .titleChanges .change{margin-top:10px;margin-bottom:10px;margin-left:11px}.motionMergeForm .titleChanges .change:last-child{margin-bottom:25px}.motionMergeForm .titleChanges .prefix{font-weight:bold}.motionMergeForm .titleChanges .text{font-family:\"PT Sans\",Courier,sans-serif;color:#000}.motionMergeForm .editorialAmendments h3{font-size:1em;font-weight:bold}.motionMergeForm .editorialAmendments .content{border-bottom:solid 1px #afcb08}.motionMergeForm .editorialAmendments .content:first-child{border-bottom:none}.motionMergeForm .dividerLabeled{position:relative;overflow:visible}.motionMergeForm .dividerLabeled:after{content:attr(data-label);position:absolute;display:block;top:-8px;left:20px;background-color:#fff;font-size:.8em;padding-left:0;padding-right:10px;color:gray}.motionMergeForm .amendmentLink{color:#6d7e00}.motionMergeForm #draftSavingPanel{position:fixed;bottom:0;right:30px;width:250px;z-index:10;padding:0;background:#fff;border:solid 1px #ccc;border-top-right-radius:3px;border-top-left-radius:3px;border-bottom:none;-webkit-box-shadow:0 0 3px rgba(0,0,0,.4);-moz-box-shadow:0 0 3px rgba(0,0,0,.4);box-shadow:0 0 3px rgba(0,0,0,.4)}.motionMergeForm #draftSavingPanel label,.motionMergeForm #draftSavingPanel .label{font-weight:normal}.motionMergeForm #draftSavingPanel header{background-color:#eee;position:relative}.motionMergeForm #draftSavingPanel h2{font-size:16px;margin:0 35px 0 0;padding:5px}.motionMergeForm #draftSavingPanel .pdfLink{font-size:12px;position:absolute;right:5px;top:3px}.motionMergeForm #draftSavingPanel .public{padding:5px}.motionMergeForm #draftSavingPanel .autosave{padding:5px}.motionMergeForm #draftSavingPanel .publicLink{float:right;margin-right:5px}.motionMergeForm #draftSavingPanel .savingError{padding:5px;margin-top:-5px;border-bottom:solid 1px #ccc;background-color:#f44;color:#000}.motionMergeForm #draftSavingPanel .save{padding:5px;overflow:auto}.motionMergeForm #draftSavingPanel .save .lastSaved{float:left}.motionMergeForm #draftSavingPanel .save .saveDraft{float:right}.motionMergeForm #draftSavingPanel .save .none{font-size:.9em;color:gray;font-style:italic}@media screen and (min-width: 1125px){.motionMergeForm #draftSavingPanel h2{border-bottom:solid 1px #ccc}.motionMergeForm #draftSavingPanel .save{padding:0 5px 5px 5px}.motionMergeForm #draftSavingPanel .public{display:block;padding-bottom:0}.motionMergeForm #draftSavingPanel .autosave{border-bottom:solid 1px #ccc;display:block;padding-top:0}.motionMergeForm #draftSavingPanel .lastSaved{margin-top:2px}}@media screen and (max-width: 1124px){.motionMergeForm #draftSavingPanel{right:0;left:0;width:100%;display:table}.motionMergeForm #draftSavingPanel .hideSmall{display:none}.motionMergeForm #draftSavingPanel>*{display:table-cell;vertical-align:middle;line-height:25px}.motionMergeForm #draftSavingPanel>h2{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel>.public{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel .autosave{width:20%;border-right:solid 1px #ccc}.motionMergeForm #draftSavingPanel>.save{width:40%}}.motionMergeForm #newAmendmentAlert{position:fixed;bottom:0;right:0;left:0;height:30px;z-index:11;padding:0;background:#fff;border-top:solid 1px #ccc;-webkit-box-shadow:0 0 3px rgba(0,0,0,.4);-moz-box-shadow:0 0 3px rgba(0,0,0,.4);box-shadow:0 0 3px rgba(0,0,0,.4);transition:transform ease-in-out .3s;transform:translate3d(0, 35px, 0)}.motionMergeForm #newAmendmentAlert.revealed{transform:translate3d(0, 0, 0)}@media(min-width: 1024px){.motionMergeForm #newAmendmentAlert .holder{width:1024px;margin:0 auto}}.motionMergeForm #newAmendmentAlert .closeLink{float:left}.motionMergeForm #newAmendmentAlert .message{float:left;font-size:16px;line-height:30px;vertical-align:middle;font-weight:bold}.motionMergeForm #newAmendmentAlert .buttons button{line-height:26px}.mergingProtocol label,.mergingProtocol .label{font-weight:normal;margin-right:20px}.mergePublicDraft .header{width:100%;display:flex}.mergePublicDraft .motionUpdateInfo{flex-basis:66%}.mergePublicDraft .motionUpdateWidget{flex-basis:34%}.fullscreenMainHolder{background-color:#fff;width:100vw;height:100vh;position:absolute}.fullscreenMainHolder>header{margin:0;color:#fff;background:#0a321e;background:-moz-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-webkit-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-o-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:-ms-linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);background:linear-gradient(90deg, #0a321e 0%, rgb(11.955, 59.775, 35.865) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;flex-grow:0;height:36px}.fullscreenMainHolder>header .closeBtn{position:absolute;z-index:1;top:1px;right:10px;color:#fff}.fullscreenMainHolder>header .splitscreenBtn{position:absolute;z-index:1;top:1px;right:40px;color:#fff}.fullscreenMainHolder .projectorWidget{position:absolute;width:100vw;top:0}.fullscreenMainHolder .projectorWidget.primary{left:0}.fullscreenMainHolder .projectorWidget.secondary{left:50vw}.fullscreenMainHolder.splitscreen .projectorWidget{width:50vw}.projectorWidget{height:100vh;display:flex;flex-direction:column;position:relative}.projectorWidget>header{flex-grow:0;height:36px;z-index:0}.projectorWidget>header .imotionSelector{padding-top:5px}.projectorWidget>header .stdDropdown{display:inline-block;width:auto;min-width:50vw;background:url(\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FFFFF2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e\") no-repeat left;padding:1px 6px 1px 30px;border:solid 1px rgba(0,0,0,0);color:#fff;font-family:\"Arvo\",sans-serif;font-size:18px;line-height:22px;cursor:pointer;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase}.projectorWidget>header .stdDropdown:hover{background-color:hsla(0,0%,100%,.1)}.projectorWidget>header .stdDropdown:active{border:solid 1px #fff}.projectorWidget>header .stdDropdown option{text-shadow:none;font-weight:normal;text-transform:none;font-style:normal}.projectorWidget>main{flex-grow:1;overflow:auto;padding:0 3vw 0 3vw}.projectorWidget.splitscreen>main{padding:0 1.5vw 0 1.5vw}.projectorWidget h1{font-size:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}.projectorWidget .motionTextFormattings{font-size:1.6vw}.projectorWidget .motionTextHolder h1{font-size:2.1vw}.projectorWidget .motionTextHolder h2{font-size:2vw}.projectorWidget .motionTextHolder h3{font-size:1.9vw}.projectorWidget .motionTextHolder h4{font-size:1.8vw}.projectorWidget .motionTextHolder h5{font-size:1.7vw}.projectorWidget .motionTextHolder h6{font-size:1.6vw}.projectorWidget .motionTextHolder .motionTextFormattings ol,.projectorWidget .motionTextHolder .motionTextFormattings ul{padding-left:3.5vw}.projectorWidget .motionTextHolder .motionTextFormattings ol>li::before,.projectorWidget .motionTextHolder .motionTextFormattings ul>li::before{left:-3.5vw}.projectorWidget .motionTextHolder .Image img{max-width:100%}.projectorWidget .motionTextHolder .Image .text{padding:15px}.projectorWidget .motionTextHolder .TabularData .dl-horizontal dt{text-align:left}.projectorWidget.splitscreen .motionTextHolder .paragraph.lineNumbers .text{padding-left:20px}.projectorWidget.splitscreen .motionTextHolder.isAmendment .paragraph.lineNumbers .text{padding-left:0}.projectorWidget .motionDataTable{margin-top:21px;margin-bottom:30px;font-size:1.6vw}.projectorWidget .motionDataTable>tbody>tr>th{width:17vw;padding-top:7px}.projectorWidget .motionDataTable>tbody>tr>td{padding-top:7px}.projectorWidget .speechLists .activeSpeaker,.projectorWidget .speechLists .remainingTime{text-align:center;font-size:2.5vw}.projectorWidget .speechLists .activeSpeaker{margin-top:5vh}.projectorWidget .speechLists .remainingTime{margin-top:3vh}.projectorWidget .speechLists .leftIcon{font-size:2vw}.projectorWidget .speechLists h2.green{margin:0;color:#fff;background:#afcb08;background:-moz-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-webkit-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-o-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:-ms-linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);background:linear-gradient(90deg, rgb(175, 203, 8) 0%, rgb(184.7286729858, 214.2852606635, 8.4447393365) 100%);padding:5px 20px 5px;font-family:\"Arvo\",sans-serif;font-size:15px;line-height:18px;text-shadow:0 1px 0 rgba(0,0,0,.5);font-weight:bold;text-transform:uppercase;margin:3vh 0;padding-left:24vw}.projectorWidget .speechLists .waitingSingle .nameList{display:block;margin-left:25vw}.projectorWidget .speechLists .waitingSingle .nameList>li{margin-top:20px;margin-bottom:20px;font-size:2vw;line-height:3vw}.projectorWidget .speechLists .waitingSingle .nameList>li .leftIcon{float:left;margin-left:-5vw}.projectorWidget .speechLists .waitingSubqueues{margin-left:3vw;margin-right:3vw;width:auto;display:flex;flex-direction:row;justify-content:center}.projectorWidget .speechLists .waitingSubqueues>*{flex:1;display:flex;flex-direction:column}.projectorWidget .speechLists .waitingSubqueues .nameList{margin-top:1.5vw;padding-left:1.5vw}.projectorWidget .speechLists .waitingSubqueues .header .name{vertical-align:middle;font-size:2vw;font-weight:bold;display:inline-block;padding-right:10px}.projectorWidget .speechLists .waitingSubqueues .header .number{font-size:1vw;vertical-align:middle}.projectorWidget .speechLists .waitingSubqueues .applied{line-height:2.3vw;font-size:1.2vw;vertical-align:middle}.projectorWidget .speechLists .waitingSubqueues .applied .number{display:inline-block;margin-right:7px}.projectorWidget .contentPage{margin-top:21px;font-size:1.6vw}.projectorWidget .contentPage h1{font-size:2.1vw}.projectorWidget .contentPage h2{font-size:2vw}.projectorWidget .contentPage h3{font-size:1.9vw}.projectorWidget .contentPage h4{font-size:1.8vw}.projectorWidget .contentPage h5{font-size:1.7vw}.projectorWidget .contentPage h6{font-size:1.6vw}.projectorWidget .contentPage p{font-size:1.6vw}.projectorWidget .contentPage .motionList .motion>.title a,.projectorWidget .contentPage .motionList .motion>.title .motionLink{font-size:1.6vw}#loginSamlHint,.login_saml .privacyHint{border-left:solid 1px gray;padding-left:10px;margin-left:20px;margin-top:10px;font-size:.8em;overflow:auto}.login_saml .privacyHint{border-left:solid 1px gray;padding-left:10px;margin-left:20px;margin-top:0;font-size:.8em;overflow:auto}.login_saml .btn{float:left;margin-right:30px}.secondFactorAdderBody .setFaField{margin-left:30px;margin-bottom:50px}.secondFactorAdderBody .captchaForm{margin-left:30px;margin-bottom:50px;margin-top:-20px}.captchaHolder input.form-control{display:inline-block;width:200px}@media(min-width: 800px){#usernamePasswordForm,#confirmAccountForm{width:400px}}@media(min-width: 800px){#conPwdForm{width:400px}}#conPwdForm .consultationName{margin-bottom:30px}#conPwdForm .usernameLoginOpener button{margin-top:20px;font-weight:normal}.loginUsername .passwordRecovery{float:right;font-size:.8em}.loginUsername #regConfirmation{font-size:11px}.accountDeleteForm .submit{display:flex;width:100%}.accountDeleteForm .submit label,.accountDeleteForm .submit .label{font-weight:normal;flex-basis:50%}.accountDeleteForm .submit>div{flex-basis:50%;text-align:right}.userAccountForm .requestEmailChange{display:inline-block;margin-left:10px;font-style:italic;font-size:.8em}.userAccountForm .changeRequested{display:block;font-size:.8em;margin-top:5px;margin-bottom:5px}.userAccountForm .resendButton{color:#6d7e00;font-style:italic}.userAccountForm .btn2FaRemoveOpen{padding:0;font-weight:normal;font-style:italic;font-size:.8em;margin-left:16px}.userAccountForm .secondFactorRemoveBody{margin-top:10px}.notificationForm label,.notificationForm .label{cursor:pointer}.notificationForm input[type=checkbox]{margin-right:10px}.notificationForm .notificationRow{margin-top:10px;margin-bottom:20px}.notificationForm .radioList>div{padding-left:27px}.notificationForm .radioList label,.notificationForm .radioList .label{display:block;font-weight:normal;margin-bottom:10px}.userDataExport .exportRow{margin-top:20px;text-align:center}.askPermissionForm{text-align:center;margin-top:50px;margin-bottom:30px}body{background-image:url(gruenes_ci2_background.jpg);background-repeat:repeat;background-position:top center;background-attachment:fixed}.logoImg{display:block;width:89px;height:87px;background-image:url(\"logo_gruene-2015.png\")}.well h1{font-family:\"Arvo Gruen\",sans-serif;font-weight:normal}.motionListStd .motion .title a{font-family:\"Arvo\",sans-serif}#mainmenu{display:block;background:#0a321e;text-align:right;padding:.5em 0;box-shadow:5px 5px 10px rgba(0,0,0,.2);z-index:2;position:relative}#mainmenu .navbar{min-height:36px}#mainmenu .navbar .nav li a,#mainmenu .navbar .nav li a:visited,#mainmenu .navbar .nav li a:link{color:#fff;font-family:\"PT Sans\",\"Segoe UI\",Frutiger,\"Frutiger Linotype\",\"Dejavu sans\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-size:16px;font-weight:normal;text-transform:none;line-height:36px;vertical-align:middle}#mainmenu .navigation li.addPage{float:right}#mainmenu .navbar-nav{margin:7.5px 0 7.5px 15px}#mainmenu .navbar-inner{max-width:1140px;margin:0 auto}#mainmenu .unsichtbar{display:none}#mainmenu .navigation{background:#0a321e;font-size:20.8px;font-family:\"Arvo\",\"Arvo Gruen\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-weight:normal}#mainmenu .navigation ul{list-style-type:none}#mainmenu .navigation li{display:block;float:left;position:relative;padding:0;margin:0}#mainmenu .navigation a,#mainmenu .navigation a:link,#mainmenu .navigation a:visited{padding:1em;display:block;background:rgba(0,0,0,0);color:#fff;border:0}.row.logo{margin-bottom:1em;position:relative;min-height:110px}.row.logo #logo{display:inline-block;width:20%;z-index:2;position:relative;margin-top:.5em}.row.logo .hgroup{display:inline-block;width:auto !important;text-align:right;z-index:2;position:absolute;top:10%;right:0;border-top:.2em solid #fff;border-bottom:.2em solid #fff;padding:.5em 0}@media screen and (max-width: 550px){.row.logo .hgroup{display:none}}.row.logo a,.row.logo a:link,.row.logo a:visited{color:#fff;text-decoration:none;text-shadow:1px 1px 5px rgba(0,0,0,.3)}.row.logo #site-title,.row.logo #site-description{padding:0 0 0 5px;margin:0;line-height:1em;display:block;text-align:right}.row.logo #site-title{color:#fff;text-shadow:2px 2px 5px rgba(0,0,0,.4);text-transform:uppercase;font-family:\"Arvo Gruen\",\"Arvo\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-size:40px}.row.logo #site-description{text-align:right;margin-top:.5em;font-size:18px;text-shadow:1px 1px 5px rgba(0,0,0,.3);color:#ffe000;font-family:\"Arvo\",\"Arvo Gruen\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}.logoRow{margin:0;position:relative;min-height:110px}.logoRow #logo{display:inline-block;width:20%;z-index:2;position:relative;margin-top:.5em}.logoRow .hgroup{display:inline-block;width:auto !important;text-align:right;z-index:2;position:absolute;top:28px;right:0;border-top:.2em solid #fff;border-bottom:.2em solid #fff;padding:.5em 0}@media screen and (max-width: 550px){.logoRow .hgroup{display:none}}.logoRow a,.logoRow a:link,.logoRow a:visited{color:#fff;text-decoration:none;text-shadow:1px 1px 5px rgba(0,0,0,.3)}.logoRow #site-title,.logoRow #site-description{padding:0 0 0 5px;margin:0;line-height:1em;display:block;text-align:right}.logoRow #site-title{color:#fff;text-shadow:2px 2px 5px rgba(0,0,0,.4);text-transform:uppercase;font-family:\"Arvo Gruen\",\"Arvo\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-size:40px}.logoRow #site-description{text-align:right;margin-top:.5em;font-size:18px;text-shadow:1px 1px 5px rgba(0,0,0,.3);color:#ffe000;font-family:\"Arvo\",\"Arvo Gruen\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}.navwrap{margin-bottom:2em}.breadcrumb{display:block;z-index:2;position:relative;background:#fe0;color:#0a321e;padding:.3em 1em;font-size:14.4px;font-family:\"PT Sans Bold\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;font-weight:normal;text-transform:none;margin:0;color:#0a321e}.breadcrumb a,.breadcrumb a:link,.breadcrumb a:visited{color:#0a321e}footer.footer{text-align:center;font-size:12.8px;color:#fff;padding:1em;margin-bottom:30px}footer.footer .version{font-size:12.8px}footer.footer a,footer.footer a:link,footer.footer a:visited{color:#ffe000}.well{border-radius:0;box-shadow:5px 5px 10px rgba(0,0,0,.2)}@media(min-width: 992px){main.col-md-9{width:750px}aside.col-md-3{width:274px}}#sidebar{font-size:16px;padding-right:0;padding-left:50px}#sidebar .form-search{margin-bottom:2em}#sidebar .form-search .invisible,#sidebar .form-search label,#sidebar .form-search .label{display:none}#sidebar .form-search .query{padding:1em 5%;border:1px solid #0a321e;width:100%}#sidebar .form-search button{border:0;background:#0a321e;color:#fff;font-family:\"Arvo\",\"Arvo Gruen\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;padding:.5em 1em;margin-top:1em;font-size:1em;font-weight:normal}@media only screen and (min-width: 770px){#sidebar .form-search .query{box-shadow:5px 5px 10px rgba(0,0,0,.2)}#sidebar .form-search button{box-shadow:5px 5px 10px rgba(0,0,0,.2)}}#sidebar .sidebar-box,#sidebar .sidebarActions{margin:0 0 2em 0;padding:18px;border:0;background:#e6e6e6;box-shadow:5px 5px 10px rgba(0,0,0,.2);border-radius:0;list-style-type:none}#sidebar .sidebar-box a,#sidebar .sidebarActions a{padding:10px 0;display:block}#sidebar .sidebar-box a:hover,#sidebar .sidebarActions a:hover{background-color:#eee}#sidebar .sidebar-box a .icon:before,#sidebar .sidebarActions a .icon:before{margin-right:.2em}#sidebar .sidebar-box li a,#sidebar .sidebar-box .icon,#sidebar .sidebarActions li a,#sidebar .sidebarActions .icon{color:#46962b}#sidebar .sidebar-box button,#sidebar .sidebarActions button{color:#46962b;text-align:left;padding:10px 0}#sidebar .sidebar-box button:hover,#sidebar .sidebarActions button:hover{background-color:#eee}#sidebar .nav-list{margin-bottom:0}#sidebar .nav-list>li.nav-header{padding:5px 0 5px 0;color:#0a321e;font-size:20px;font-family:\"Arvo\",\"Arvo Gruen\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif}#sidebar .nav-list>li{padding:0}#sidebar .nav>li>a{padding:10px 0}#sidebar .createMotionHolder2{margin-bottom:2em}#sidebar .createMotionHolder2 .createMotion{display:block;box-shadow:5px 5px 10px rgba(0,0,0,.2);border:0;background:#0a321e;color:#fff;font-family:\"Arvo\",\"Arvo Gruen\",Trebuchet,Helvetica Neue,Helvetica,Arial,Verdana,sans-serif;padding:.5em 1em;margin-top:1em;font-size:1em;font-weight:normal}#sidebar .createMotionHolder2 .createMotion span{margin-right:.5em}#sidebar .share_buttons{margin-top:20px}#sidebar .share_buttons li{width:102px}","$arvoFontPath: './' !default;\n\n@font-face {\n font-family: 'Arvo';\n font-style: normal;\n font-weight: normal;\n src: url($arvoFontPath + 'arvo_regular.woff') format('woff');\n}\n@font-face {\n font-family: 'Arvo Gruen';\n font-style: normal;\n font-weight: normal;\n src: url($arvoFontPath + 'arvo_gruen.woff') format('woff');\n}\n","$ptSansFontPath: './' !default;\n\n@font-face {\n font-family: 'PT Sans';\n font-style: normal;\n font-weight: normal;\n src: url($ptSansFontPath + 'ptsans_regular.woff') format('woff');\n}\n@font-face {\n font-family: 'PT Sans Bold';\n font-style: normal;\n font-weight: normal;\n src: url($ptSansFontPath + 'ptsans_bold.woff') format('woff');\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// 1. Remove the bottom border in Chrome 57- and Firefox 39-.\n// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.\n//\n\nabbr[title] {\n border-bottom: none; // 1\n text-decoration: underline; // 2\n text-decoration: underline dotted; // 2\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n color: #000 !important; // Black prints faster: h5bp.com/s\n text-shadow: none !important;\n background: transparent !important;\n box-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n@at-root {\n // Import the fonts\n @font-face {\n font-family: \"Glyphicons Halflings\";\n src: url(if($bootstrap-sass-asset-helper, twbs-font-path(\"#{$icon-font-path}#{$icon-font-name}.eot\"), \"#{$icon-font-path}#{$icon-font-name}.eot\"));\n src: url(if($bootstrap-sass-asset-helper, twbs-font-path(\"#{$icon-font-path}#{$icon-font-name}.eot?#iefix\"), \"#{$icon-font-path}#{$icon-font-name}.eot?#iefix\")) format(\"embedded-opentype\"),\n url(if($bootstrap-sass-asset-helper, twbs-font-path(\"#{$icon-font-path}#{$icon-font-name}.woff2\"), \"#{$icon-font-path}#{$icon-font-name}.woff2\")) format(\"woff2\"),\n url(if($bootstrap-sass-asset-helper, twbs-font-path(\"#{$icon-font-path}#{$icon-font-name}.woff\"), \"#{$icon-font-path}#{$icon-font-name}.woff\")) format(\"woff\"),\n url(if($bootstrap-sass-asset-helper, twbs-font-path(\"#{$icon-font-path}#{$icon-font-name}.ttf\"), \"#{$icon-font-path}#{$icon-font-name}.ttf\")) format(\"truetype\"),\n url(if($bootstrap-sass-asset-helper, twbs-font-path(\"#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}\"), \"#{$icon-font-path}#{$icon-font-name}.svg##{$icon-font-svg-id}\")) format(\"svg\");\n }\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: \"Glyphicons Halflings\";\n font-style: normal;\n font-weight: 400;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\002a\"; } }\n.glyphicon-plus { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// https://getbootstrap.com/docs/3.4/getting-started/#third-box-sizing\n* {\n @include box-sizing(border-box);\n}\n*:before,\n*:after {\n @include box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\n\nbody {\n font-family: $font-family-base;\n font-size: $font-size-base;\n line-height: $line-height-base;\n color: $text-color;\n background-color: $body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n\n &:focus {\n @include tab-focus;\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n @include img-responsive;\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: $border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: $thumbnail-padding;\n line-height: $line-height-base;\n background-color: $thumbnail-bg;\n border: 1px solid $thumbnail-border;\n border-radius: $thumbnail-border-radius;\n @include transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n @include img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: $line-height-computed;\n margin-bottom: $line-height-computed;\n border: 0;\n border-top: 1px solid $hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: https://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see https://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\n}\n","$bootstrap-sass-asset-helper: false !default;\n@use \"sass:math\";\n//\n// Variables\n// --------------------------------------------------\n\n\n//== Colors\n//\n//## Gray and brand colors for use across Bootstrap.\n\n$gray-base: #000 !default;\n$gray-darker: lighten($gray-base, 13.5%) !default; // #222\n$gray-dark: lighten($gray-base, 20%) !default; // #333\n$gray: lighten($gray-base, 33.5%) !default; // #555\n$gray-light: lighten($gray-base, 46.7%) !default; // #777\n$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee\n\n$brand-primary: darken(#428bca, 6.5%) !default; // #337ab7\n$brand-success: #5cb85c !default;\n$brand-info: #5bc0de !default;\n$brand-warning: #f0ad4e !default;\n$brand-danger: #d9534f !default;\n\n\n//== Scaffolding\n//\n//## Settings for some of the most global styles.\n\n//** Background color for ``.\n$body-bg: #fff !default;\n//** Global text color on ``.\n$text-color: $gray-dark !default;\n\n//** Global textual link color.\n$link-color: $brand-primary !default;\n//** Link hover color set via `darken()` function.\n$link-hover-color: darken($link-color, 15%) !default;\n//** Link hover decoration.\n$link-hover-decoration: underline !default;\n\n\n//== Typography\n//\n//## Font, line-height, and color for body text, headings, and more.\n\n$font-family-sans-serif: \"Helvetica Neue\", Helvetica, Arial, sans-serif !default;\n$font-family-serif: Georgia, \"Times New Roman\", Times, serif !default;\n//** Default monospace fonts for ``, ``, and `
`.\n$font-family-monospace:   Menlo, Monaco, Consolas, \"Courier New\", monospace !default;\n$font-family-base:        $font-family-sans-serif !default;\n\n$font-size-base:          14px !default;\n$font-size-large:         ceil(($font-size-base * 1.25)) !default; // ~18px\n$font-size-small:         ceil(($font-size-base * .85)) !default; // ~12px\n\n$font-size-h1:            floor(($font-size-base * 2.6)) !default; // ~36px\n$font-size-h2:            floor(($font-size-base * 2.15)) !default; // ~30px\n$font-size-h3:            ceil(($font-size-base * 1.7)) !default; // ~24px\n$font-size-h4:            ceil(($font-size-base * 1.25)) !default; // ~18px\n$font-size-h5:            $font-size-base !default;\n$font-size-h6:            ceil(($font-size-base * .85)) !default; // ~12px\n\n//** Unit-less `line-height` for use in components like buttons.\n$line-height-base:        1.428571429 !default; // 20/14\n//** Computed \"line-height\" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.\n$line-height-computed:    floor(($font-size-base * $line-height-base)) !default; // ~20px\n\n//** By default, this inherits from the ``.\n$headings-font-family:    inherit !default;\n$headings-font-weight:    500 !default;\n$headings-line-height:    1.1 !default;\n$headings-color:          inherit !default;\n\n\n//== Iconography\n//\n//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.\n\n//** Load fonts from this directory.\n\n// [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path.\n// [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths.\n$icon-font-path: if($bootstrap-sass-asset-helper, \"bootstrap/\", \"../fonts/bootstrap/\") !default;\n\n//** File name for all font files.\n$icon-font-name:          \"glyphicons-halflings-regular\" !default;\n//** Element ID within SVG icon file.\n$icon-font-svg-id:        \"glyphicons_halflingsregular\" !default;\n\n\n//== Components\n//\n//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).\n\n$padding-base-vertical:     6px !default;\n$padding-base-horizontal:   12px !default;\n\n$padding-large-vertical:    10px !default;\n$padding-large-horizontal:  16px !default;\n\n$padding-small-vertical:    5px !default;\n$padding-small-horizontal:  10px !default;\n\n$padding-xs-vertical:       1px !default;\n$padding-xs-horizontal:     5px !default;\n\n$line-height-large:         1.3333333 !default; // extra decimals for Win 8.1 Chrome\n$line-height-small:         1.5 !default;\n\n$border-radius-base:        4px !default;\n$border-radius-large:       6px !default;\n$border-radius-small:       3px !default;\n\n//** Global color for active items (e.g., navs or dropdowns).\n$component-active-color:    #fff !default;\n//** Global background color for active items (e.g., navs or dropdowns).\n$component-active-bg:       $brand-primary !default;\n\n//** Width of the `border` for generating carets that indicate dropdowns.\n$caret-width-base:          4px !default;\n//** Carets increase slightly in size for larger components.\n$caret-width-large:         5px !default;\n\n\n//== Tables\n//\n//## Customizes the `.table` component with basic values, each used across all table variations.\n\n//** Padding for ``s and ``s.\n$table-cell-padding:            8px !default;\n//** Padding for cells in `.table-condensed`.\n$table-condensed-cell-padding:  5px !default;\n\n//** Default background color used for all tables.\n$table-bg:                      transparent !default;\n//** Background color used for `.table-striped`.\n$table-bg-accent:               #f9f9f9 !default;\n//** Background color used for `.table-hover`.\n$table-bg-hover:                #f5f5f5 !default;\n$table-bg-active:               $table-bg-hover !default;\n\n//** Border color for table and cell borders.\n$table-border-color:            #ddd !default;\n\n\n//== Buttons\n//\n//## For each of Bootstrap's buttons, define text, background and border color.\n\n$btn-font-weight:                normal !default;\n\n$btn-default-color:              #333 !default;\n$btn-default-bg:                 #fff !default;\n$btn-default-border:             #ccc !default;\n\n$btn-primary-color:              #fff !default;\n$btn-primary-bg:                 $brand-primary !default;\n$btn-primary-border:             darken($btn-primary-bg, 5%) !default;\n\n$btn-success-color:              #fff !default;\n$btn-success-bg:                 $brand-success !default;\n$btn-success-border:             darken($btn-success-bg, 5%) !default;\n\n$btn-info-color:                 #fff !default;\n$btn-info-bg:                    $brand-info !default;\n$btn-info-border:                darken($btn-info-bg, 5%) !default;\n\n$btn-warning-color:              #fff !default;\n$btn-warning-bg:                 $brand-warning !default;\n$btn-warning-border:             darken($btn-warning-bg, 5%) !default;\n\n$btn-danger-color:               #fff !default;\n$btn-danger-bg:                  $brand-danger !default;\n$btn-danger-border:              darken($btn-danger-bg, 5%) !default;\n\n$btn-link-disabled-color:        $gray-light !default;\n\n// Allows for customizing button radius independently from global border radius\n$btn-border-radius-base:         $border-radius-base !default;\n$btn-border-radius-large:        $border-radius-large !default;\n$btn-border-radius-small:        $border-radius-small !default;\n\n\n//== Forms\n//\n//##\n\n//** `` background color\n$input-bg:                       #fff !default;\n//** `` background color\n$input-bg-disabled:              $gray-lighter !default;\n\n//** Text color for ``s\n$input-color:                    $gray !default;\n//** `` border color\n$input-border:                   #ccc !default;\n\n// TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4\n//** Default `.form-control` border radius\n// This has no effect on ``s in CSS.\n$input-border-radius:            $border-radius-base !default;\n//** Large `.form-control` border radius\n$input-border-radius-large:      $border-radius-large !default;\n//** Small `.form-control` border radius\n$input-border-radius-small:      $border-radius-small !default;\n\n//** Border color for inputs on focus\n$input-border-focus:             #66afe9 !default;\n\n//** Placeholder text color\n$input-color-placeholder:        #999 !default;\n\n//** Default `.form-control` height\n$input-height-base:              ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;\n//** Large `.form-control` height\n$input-height-large:             (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;\n//** Small `.form-control` height\n$input-height-small:             (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;\n\n//** `.form-group` margin\n$form-group-margin-bottom:       15px !default;\n\n$legend-color:                   $gray-dark !default;\n$legend-border-color:            #e5e5e5 !default;\n\n//** Background color for textual input addons\n$input-group-addon-bg:           $gray-lighter !default;\n//** Border color for textual input addons\n$input-group-addon-border-color: $input-border !default;\n\n//** Disabled cursor for form controls and buttons.\n$cursor-disabled:                not-allowed !default;\n\n\n//== Dropdowns\n//\n//## Dropdown menu container and contents.\n\n//** Background for the dropdown menu.\n$dropdown-bg:                    #fff !default;\n//** Dropdown menu `border-color`.\n$dropdown-border:                rgba(0, 0, 0, .15) !default;\n//** Dropdown menu `border-color` **for IE8**.\n$dropdown-fallback-border:       #ccc !default;\n//** Divider color for between dropdown items.\n$dropdown-divider-bg:            #e5e5e5 !default;\n\n//** Dropdown link text color.\n$dropdown-link-color:            $gray-dark !default;\n//** Hover color for dropdown links.\n$dropdown-link-hover-color:      darken($gray-dark, 5%) !default;\n//** Hover background for dropdown links.\n$dropdown-link-hover-bg:         #f5f5f5 !default;\n\n//** Active dropdown menu item text color.\n$dropdown-link-active-color:     $component-active-color !default;\n//** Active dropdown menu item background color.\n$dropdown-link-active-bg:        $component-active-bg !default;\n\n//** Disabled dropdown menu item background color.\n$dropdown-link-disabled-color:   $gray-light !default;\n\n//** Text color for headers within dropdown menus.\n$dropdown-header-color:          $gray-light !default;\n\n//** Deprecated `$dropdown-caret-color` as of v3.1.0\n$dropdown-caret-color:           #000 !default;\n\n\n//-- Z-index master list\n//\n// Warning: Avoid customizing these values. They're used for a bird's eye view\n// of components dependent on the z-axis and are designed to all work together.\n//\n// Note: These variables are not generated into the Customizer.\n\n$zindex-navbar:            1000 !default;\n$zindex-dropdown:          1000 !default;\n$zindex-popover:           1060 !default;\n$zindex-tooltip:           1070 !default;\n$zindex-navbar-fixed:      1030 !default;\n$zindex-modal-background:  1040 !default;\n$zindex-modal:             1050 !default;\n\n\n//== Media queries breakpoints\n//\n//## Define the breakpoints at which your layout will change, adapting to different screen sizes.\n\n// Extra small screen / phone\n//** Deprecated `$screen-xs` as of v3.0.1\n$screen-xs:                  480px !default;\n//** Deprecated `$screen-xs-min` as of v3.2.0\n$screen-xs-min:              $screen-xs !default;\n//** Deprecated `$screen-phone` as of v3.0.1\n$screen-phone:               $screen-xs-min !default;\n\n// Small screen / tablet\n//** Deprecated `$screen-sm` as of v3.0.1\n$screen-sm:                  768px !default;\n$screen-sm-min:              $screen-sm !default;\n//** Deprecated `$screen-tablet` as of v3.0.1\n$screen-tablet:              $screen-sm-min !default;\n\n// Medium screen / desktop\n//** Deprecated `$screen-md` as of v3.0.1\n$screen-md:                  992px !default;\n$screen-md-min:              $screen-md !default;\n//** Deprecated `$screen-desktop` as of v3.0.1\n$screen-desktop:             $screen-md-min !default;\n\n// Large screen / wide desktop\n//** Deprecated `$screen-lg` as of v3.0.1\n$screen-lg:                  1200px !default;\n$screen-lg-min:              $screen-lg !default;\n//** Deprecated `$screen-lg-desktop` as of v3.0.1\n$screen-lg-desktop:          $screen-lg-min !default;\n\n// So media queries don't overlap when required, provide a maximum\n$screen-xs-max:              ($screen-sm-min - 1) !default;\n$screen-sm-max:              ($screen-md-min - 1) !default;\n$screen-md-max:              ($screen-lg-min - 1) !default;\n\n\n//== Grid system\n//\n//## Define your custom responsive grid.\n\n//** Number of columns in the grid.\n$grid-columns:              12 !default;\n//** Padding between columns. Gets divided in half for the left and right.\n$grid-gutter-width:         30px !default;\n// Navbar collapse\n//** Point at which the navbar becomes uncollapsed.\n$grid-float-breakpoint:     $screen-sm-min !default;\n//** Point at which the navbar begins collapsing.\n$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;\n\n\n//== Container sizes\n//\n//## Define the maximum width of `.container` for different screen sizes.\n\n// Small screen / tablet\n$container-tablet:             (720px + $grid-gutter-width) !default;\n//** For `$screen-sm-min` and up.\n$container-sm:                 $container-tablet !default;\n\n// Medium screen / desktop\n$container-desktop:            (940px + $grid-gutter-width) !default;\n//** For `$screen-md-min` and up.\n$container-md:                 $container-desktop !default;\n\n// Large screen / wide desktop\n$container-large-desktop:      (1140px + $grid-gutter-width) !default;\n//** For `$screen-lg-min` and up.\n$container-lg:                 $container-large-desktop !default;\n\n\n//== Navbar\n//\n//##\n\n// Basics of a navbar\n$navbar-height:                    50px !default;\n$navbar-margin-bottom:             $line-height-computed !default;\n$navbar-border-radius:             $border-radius-base !default;\n$navbar-padding-horizontal:        floor(math.div($grid-gutter-width, 2)) !default;\n$navbar-padding-vertical:          math.div(($navbar-height - $line-height-computed), 2) !default;\n$navbar-collapse-max-height:       340px !default;\n\n$navbar-default-color:             #777 !default;\n$navbar-default-bg:                #f8f8f8 !default;\n$navbar-default-border:            darken($navbar-default-bg, 6.5%) !default;\n\n// Navbar links\n$navbar-default-link-color:                #777 !default;\n$navbar-default-link-hover-color:          #333 !default;\n$navbar-default-link-hover-bg:             transparent !default;\n$navbar-default-link-active-color:         #555 !default;\n$navbar-default-link-active-bg:            darken($navbar-default-bg, 6.5%) !default;\n$navbar-default-link-disabled-color:       #ccc !default;\n$navbar-default-link-disabled-bg:          transparent !default;\n\n// Navbar brand label\n$navbar-default-brand-color:               $navbar-default-link-color !default;\n$navbar-default-brand-hover-color:         darken($navbar-default-brand-color, 10%) !default;\n$navbar-default-brand-hover-bg:            transparent !default;\n\n// Navbar toggle\n$navbar-default-toggle-hover-bg:           #ddd !default;\n$navbar-default-toggle-icon-bar-bg:        #888 !default;\n$navbar-default-toggle-border-color:       #ddd !default;\n\n\n//=== Inverted navbar\n// Reset inverted navbar basics\n$navbar-inverse-color:                      lighten($gray-light, 15%) !default;\n$navbar-inverse-bg:                         #222 !default;\n$navbar-inverse-border:                     darken($navbar-inverse-bg, 10%) !default;\n\n// Inverted navbar links\n$navbar-inverse-link-color:                 lighten($gray-light, 15%) !default;\n$navbar-inverse-link-hover-color:           #fff !default;\n$navbar-inverse-link-hover-bg:              transparent !default;\n$navbar-inverse-link-active-color:          $navbar-inverse-link-hover-color !default;\n$navbar-inverse-link-active-bg:             darken($navbar-inverse-bg, 10%) !default;\n$navbar-inverse-link-disabled-color:        #444 !default;\n$navbar-inverse-link-disabled-bg:           transparent !default;\n\n// Inverted navbar brand label\n$navbar-inverse-brand-color:                $navbar-inverse-link-color !default;\n$navbar-inverse-brand-hover-color:          #fff !default;\n$navbar-inverse-brand-hover-bg:             transparent !default;\n\n// Inverted navbar toggle\n$navbar-inverse-toggle-hover-bg:            #333 !default;\n$navbar-inverse-toggle-icon-bar-bg:         #fff !default;\n$navbar-inverse-toggle-border-color:        #333 !default;\n\n\n//== Navs\n//\n//##\n\n//=== Shared nav styles\n$nav-link-padding:                          10px 15px !default;\n$nav-link-hover-bg:                         $gray-lighter !default;\n\n$nav-disabled-link-color:                   $gray-light !default;\n$nav-disabled-link-hover-color:             $gray-light !default;\n\n//== Tabs\n$nav-tabs-border-color:                     #ddd !default;\n\n$nav-tabs-link-hover-border-color:          $gray-lighter !default;\n\n$nav-tabs-active-link-hover-bg:             $body-bg !default;\n$nav-tabs-active-link-hover-color:          $gray !default;\n$nav-tabs-active-link-hover-border-color:   #ddd !default;\n\n$nav-tabs-justified-link-border-color:            #ddd !default;\n$nav-tabs-justified-active-link-border-color:     $body-bg !default;\n\n//== Pills\n$nav-pills-border-radius:                   $border-radius-base !default;\n$nav-pills-active-link-hover-bg:            $component-active-bg !default;\n$nav-pills-active-link-hover-color:         $component-active-color !default;\n\n\n//== Pagination\n//\n//##\n\n$pagination-color:                     $link-color !default;\n$pagination-bg:                        #fff !default;\n$pagination-border:                    #ddd !default;\n\n$pagination-hover-color:               $link-hover-color !default;\n$pagination-hover-bg:                  $gray-lighter !default;\n$pagination-hover-border:              #ddd !default;\n\n$pagination-active-color:              #fff !default;\n$pagination-active-bg:                 $brand-primary !default;\n$pagination-active-border:             $brand-primary !default;\n\n$pagination-disabled-color:            $gray-light !default;\n$pagination-disabled-bg:               #fff !default;\n$pagination-disabled-border:           #ddd !default;\n\n\n//== Pager\n//\n//##\n\n$pager-bg:                             $pagination-bg !default;\n$pager-border:                         $pagination-border !default;\n$pager-border-radius:                  15px !default;\n\n$pager-hover-bg:                       $pagination-hover-bg !default;\n\n$pager-active-bg:                      $pagination-active-bg !default;\n$pager-active-color:                   $pagination-active-color !default;\n\n$pager-disabled-color:                 $pagination-disabled-color !default;\n\n\n//== Jumbotron\n//\n//##\n\n$jumbotron-padding:              30px !default;\n$jumbotron-color:                inherit !default;\n$jumbotron-bg:                   $gray-lighter !default;\n$jumbotron-heading-color:        inherit !default;\n$jumbotron-font-size:            ceil(($font-size-base * 1.5)) !default;\n$jumbotron-heading-font-size:    ceil(($font-size-base * 4.5)) !default;\n\n\n//== Form states and alerts\n//\n//## Define colors for form feedback states and, by default, alerts.\n\n$state-success-text:             #3c763d !default;\n$state-success-bg:               #dff0d8 !default;\n$state-success-border:           darken(adjust-hue($state-success-bg, -10), 5%) !default;\n\n$state-info-text:                #31708f !default;\n$state-info-bg:                  #d9edf7 !default;\n$state-info-border:              darken(adjust-hue($state-info-bg, -10), 7%) !default;\n\n$state-warning-text:             #8a6d3b !default;\n$state-warning-bg:               #fcf8e3 !default;\n$state-warning-border:           darken(adjust-hue($state-warning-bg, -10), 5%) !default;\n\n$state-danger-text:              #a94442 !default;\n$state-danger-bg:                #f2dede !default;\n$state-danger-border:            darken(adjust-hue($state-danger-bg, -10), 5%) !default;\n\n\n//== Tooltips\n//\n//##\n\n//** Tooltip max width\n$tooltip-max-width:           200px !default;\n//** Tooltip text color\n$tooltip-color:               #fff !default;\n//** Tooltip background color\n$tooltip-bg:                  #000 !default;\n$tooltip-opacity:             .9 !default;\n\n//** Tooltip arrow width\n$tooltip-arrow-width:         5px !default;\n//** Tooltip arrow color\n$tooltip-arrow-color:         $tooltip-bg !default;\n\n\n//== Popovers\n//\n//##\n\n//** Popover body background color\n$popover-bg:                          #fff !default;\n//** Popover maximum width\n$popover-max-width:                   276px !default;\n//** Popover border color\n$popover-border-color:                rgba(0, 0, 0, .2) !default;\n//** Popover fallback border color\n$popover-fallback-border-color:       #ccc !default;\n\n//** Popover title background color\n$popover-title-bg:                    darken($popover-bg, 3%) !default;\n\n//** Popover arrow width\n$popover-arrow-width:                 10px !default;\n//** Popover arrow color\n$popover-arrow-color:                 $popover-bg !default;\n\n//** Popover outer arrow width\n$popover-arrow-outer-width:           ($popover-arrow-width + 1) !default;\n//** Popover outer arrow color\n$popover-arrow-outer-color:           fade_in($popover-border-color, 0.05) !default;\n//** Popover outer arrow fallback color\n$popover-arrow-outer-fallback-color:  darken($popover-fallback-border-color, 20%) !default;\n\n\n//== Labels\n//\n//##\n\n//** Default label background color\n$label-default-bg:            $gray-light !default;\n//** Primary label background color\n$label-primary-bg:            $brand-primary !default;\n//** Success label background color\n$label-success-bg:            $brand-success !default;\n//** Info label background color\n$label-info-bg:               $brand-info !default;\n//** Warning label background color\n$label-warning-bg:            $brand-warning !default;\n//** Danger label background color\n$label-danger-bg:             $brand-danger !default;\n\n//** Default label text color\n$label-color:                 #fff !default;\n//** Default text color of a linked label\n$label-link-hover-color:      #fff !default;\n\n\n//== Modals\n//\n//##\n\n//** Padding applied to the modal body\n$modal-inner-padding:         15px !default;\n\n//** Padding applied to the modal title\n$modal-title-padding:         15px !default;\n//** Modal title line-height\n$modal-title-line-height:     $line-height-base !default;\n\n//** Background color of modal content area\n$modal-content-bg:                             #fff !default;\n//** Modal content border color\n$modal-content-border-color:                   rgba(0, 0, 0, .2) !default;\n//** Modal content border color **for IE8**\n$modal-content-fallback-border-color:          #999 !default;\n\n//** Modal backdrop background color\n$modal-backdrop-bg:           #000 !default;\n//** Modal backdrop opacity\n$modal-backdrop-opacity:      .5 !default;\n//** Modal header border color\n$modal-header-border-color:   #e5e5e5 !default;\n//** Modal footer border color\n$modal-footer-border-color:   $modal-header-border-color !default;\n\n$modal-lg:                    900px !default;\n$modal-md:                    600px !default;\n$modal-sm:                    300px !default;\n\n\n//== Alerts\n//\n//## Define alert colors, border radius, and padding.\n\n$alert-padding:               15px !default;\n$alert-border-radius:         $border-radius-base !default;\n$alert-link-font-weight:      bold !default;\n\n$alert-success-bg:            $state-success-bg !default;\n$alert-success-text:          $state-success-text !default;\n$alert-success-border:        $state-success-border !default;\n\n$alert-info-bg:               $state-info-bg !default;\n$alert-info-text:             $state-info-text !default;\n$alert-info-border:           $state-info-border !default;\n\n$alert-warning-bg:            $state-warning-bg !default;\n$alert-warning-text:          $state-warning-text !default;\n$alert-warning-border:        $state-warning-border !default;\n\n$alert-danger-bg:             $state-danger-bg !default;\n$alert-danger-text:           $state-danger-text !default;\n$alert-danger-border:         $state-danger-border !default;\n\n\n//== Progress bars\n//\n//##\n\n//** Background color of the whole progress component\n$progress-bg:                 #f5f5f5 !default;\n//** Progress bar text color\n$progress-bar-color:          #fff !default;\n//** Variable for setting rounded corners on progress bar.\n$progress-border-radius:      $border-radius-base !default;\n\n//** Default progress bar color\n$progress-bar-bg:             $brand-primary !default;\n//** Success progress bar color\n$progress-bar-success-bg:     $brand-success !default;\n//** Warning progress bar color\n$progress-bar-warning-bg:     $brand-warning !default;\n//** Danger progress bar color\n$progress-bar-danger-bg:      $brand-danger !default;\n//** Info progress bar color\n$progress-bar-info-bg:        $brand-info !default;\n\n\n//== List group\n//\n//##\n\n//** Background color on `.list-group-item`\n$list-group-bg:                 #fff !default;\n//** `.list-group-item` border color\n$list-group-border:             #ddd !default;\n//** List group border radius\n$list-group-border-radius:      $border-radius-base !default;\n\n//** Background color of single list items on hover\n$list-group-hover-bg:           #f5f5f5 !default;\n//** Text color of active list items\n$list-group-active-color:       $component-active-color !default;\n//** Background color of active list items\n$list-group-active-bg:          $component-active-bg !default;\n//** Border color of active list elements\n$list-group-active-border:      $list-group-active-bg !default;\n//** Text color for content within active list items\n$list-group-active-text-color:  lighten($list-group-active-bg, 40%) !default;\n\n//** Text color of disabled list items\n$list-group-disabled-color:      $gray-light !default;\n//** Background color of disabled list items\n$list-group-disabled-bg:         $gray-lighter !default;\n//** Text color for content within disabled list items\n$list-group-disabled-text-color: $list-group-disabled-color !default;\n\n$list-group-link-color:         #555 !default;\n$list-group-link-hover-color:   $list-group-link-color !default;\n$list-group-link-heading-color: #333 !default;\n\n\n//== Panels\n//\n//##\n\n$panel-bg:                    #fff !default;\n$panel-body-padding:          15px !default;\n$panel-heading-padding:       10px 15px !default;\n$panel-footer-padding:        $panel-heading-padding !default;\n$panel-border-radius:         $border-radius-base !default;\n\n//** Border color for elements within panels\n$panel-inner-border:          #ddd !default;\n$panel-footer-bg:             #f5f5f5 !default;\n\n$panel-default-text:          $gray-dark !default;\n$panel-default-border:        #ddd !default;\n$panel-default-heading-bg:    #f5f5f5 !default;\n\n$panel-primary-text:          #fff !default;\n$panel-primary-border:        $brand-primary !default;\n$panel-primary-heading-bg:    $brand-primary !default;\n\n$panel-success-text:          $state-success-text !default;\n$panel-success-border:        $state-success-border !default;\n$panel-success-heading-bg:    $state-success-bg !default;\n\n$panel-info-text:             $state-info-text !default;\n$panel-info-border:           $state-info-border !default;\n$panel-info-heading-bg:       $state-info-bg !default;\n\n$panel-warning-text:          $state-warning-text !default;\n$panel-warning-border:        $state-warning-border !default;\n$panel-warning-heading-bg:    $state-warning-bg !default;\n\n$panel-danger-text:           $state-danger-text !default;\n$panel-danger-border:         $state-danger-border !default;\n$panel-danger-heading-bg:     $state-danger-bg !default;\n\n\n//== Thumbnails\n//\n//##\n\n//** Padding around the thumbnail image\n$thumbnail-padding:           4px !default;\n//** Thumbnail background color\n$thumbnail-bg:                $body-bg !default;\n//** Thumbnail border color\n$thumbnail-border:            #ddd !default;\n//** Thumbnail border radius\n$thumbnail-border-radius:     $border-radius-base !default;\n\n//** Custom text color for thumbnail captions\n$thumbnail-caption-color:     $text-color !default;\n//** Padding around the thumbnail caption\n$thumbnail-caption-padding:   9px !default;\n\n\n//== Wells\n//\n//##\n\n$well-bg:                     #f5f5f5 !default;\n$well-border:                 darken($well-bg, 7%) !default;\n\n\n//== Badges\n//\n//##\n\n$badge-color:                 #fff !default;\n//** Linked badge text color on hover\n$badge-link-hover-color:      #fff !default;\n$badge-bg:                    $gray-light !default;\n\n//** Badge text color in active nav link\n$badge-active-color:          $link-color !default;\n//** Badge background color in active nav link\n$badge-active-bg:             #fff !default;\n\n$badge-font-weight:           bold !default;\n$badge-line-height:           1 !default;\n$badge-border-radius:         10px !default;\n\n\n//== Breadcrumbs\n//\n//##\n\n$breadcrumb-padding-vertical:   8px !default;\n$breadcrumb-padding-horizontal: 15px !default;\n//** Breadcrumb background color\n$breadcrumb-bg:                 #f5f5f5 !default;\n//** Breadcrumb text color\n$breadcrumb-color:              #ccc !default;\n//** Text color of current page in the breadcrumb\n$breadcrumb-active-color:       $gray-light !default;\n//** Textual separator for between breadcrumb elements\n$breadcrumb-separator:          \"/\" !default;\n\n\n//== Carousel\n//\n//##\n\n$carousel-text-shadow:                        0 1px 2px rgba(0, 0, 0, .6) !default;\n\n$carousel-control-color:                      #fff !default;\n$carousel-control-width:                      15% !default;\n$carousel-control-opacity:                    .5 !default;\n$carousel-control-font-size:                  20px !default;\n\n$carousel-indicator-active-bg:                #fff !default;\n$carousel-indicator-border-color:             #fff !default;\n\n$carousel-caption-color:                      #fff !default;\n\n\n//== Close\n//\n//##\n\n$close-font-weight:           bold !default;\n$close-color:                 #000 !default;\n$close-text-shadow:           0 1px 0 #fff !default;\n\n\n//== Code\n//\n//##\n\n$code-color:                  #c7254e !default;\n$code-bg:                     #f9f2f4 !default;\n\n$kbd-color:                   #fff !default;\n$kbd-bg:                      #333 !default;\n\n$pre-bg:                      #f5f5f5 !default;\n$pre-color:                   $gray-dark !default;\n$pre-border-color:            #ccc !default;\n$pre-scrollable-max-height:   340px !default;\n\n\n//== Type\n//\n//##\n\n//** Horizontal offset for forms and lists.\n$component-offset-horizontal: 180px !default;\n//** Text muted color\n$text-muted:                  $gray-light !default;\n//** Abbreviations and acronyms border color\n$abbr-border-color:           $gray-light !default;\n//** Headings small color\n$headings-small-color:        $gray-light !default;\n//** Blockquote small color\n$blockquote-small-color:      $gray-light !default;\n//** Blockquote font size\n$blockquote-font-size:        ($font-size-base * 1.25) !default;\n//** Blockquote border color\n$blockquote-border-color:     $gray-lighter !default;\n//** Page header border color\n$page-header-border-color:    $gray-lighter !default;\n//** Width of horizontal description list titles\n$dl-horizontal-offset:        $component-offset-horizontal !default;\n//** Point at which .dl-horizontal becomes horizontal\n$dl-horizontal-breakpoint:    $grid-float-breakpoint !default;\n//** Horizontal line color.\n$hr-border:                   $gray-lighter !default;\n","$colorGreenDark: rgb(40, 95, 25) !default;\n$colorGreenLight: rgb(175, 203, 8) !default;\n\n$fixedWidthTextStdPadding: 50px !default;\n$fixedWidthTextStdPaddingSmall: 30px !default;\n$fixedWidthTextListPadding: 40px !default;\n$fixedWidthTextQuotePadding: 15px !default;\n$fixedWidthTextQuoteMargin: 38px !default;\n$fixedWidthTextQuoteMarginSmall: 18px !default;\n$fixedWidthTextQuoteBorder: 2px !default;\n\n$lineNumberOffset: 8px !default;\n$lineNumberOffset4: 3px !default;\n\n$bodyFont: \"Segoe UI\", Frutiger, \"Frutiger Linotype\", \"Dejavu sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif !default;\n$deadlineCircleFont: 'sans-serif' !default;\n$sidebarActionFont: 'sans-serif' !default;\n$buttonFont: 'sans-serif' !default;\n$motionFixedFont: Courier, sans-serif !default;\n$motionStdFontSize: 14px !default;\n$blockquote-font-size: 14px !default;\n$insFontBold: true !default;\n$delFontBold: true !default;;\n\n$motionListAmendmentColor: $colorGreenLight !default;\n\n$headingFont: 'sans-serif' !default;\n$headingFontItalic: false !default;\n$headingPrimaryText: black !default;\n$headingPrimaryBackground: white !default;\n$headingPrimarySize: 15px !default;\n$headingSecondaryText: black !default;\n$headingSecondaryBackground: white !default;\n$headingSecondarySize: 15px !default;\n$headingTertiaryText: black !default;\n$headingTertiaryBackground: white !default;\n$headingTertiarySize: 15px !default;\n$uppercaseTitles: false !default;\n\n$headingFontUppercase: true !default;\n$headingFontBold: true !default;\n$headingTextShadow: true !default;\n\n$menuFont: 'sans-serif' !default;\n$menuLink: blue !default;\n$menuActive: black !default;\n$adminHintColor: #ee0101 !default;\n$colorDelLink: #ee0101 !default;\n$errorColor: #ee0101 !default;\n$focusBorderColor: rgba(102, 175, 233, 1) !default;\n$focusShadowColor: rgba(102,175,233,0.6) !default;\n\n$sidebarBackground: white !default;\n$sidebarBackgroundGradient: true !default;\n$sidebarTextColor: white !default;\n$sidebarActionFont: 'sans-serif' !default;\n$sidebarUppercase: true !default;\n$createMotionBtnColor: white !default;\n$createMotionTextColor: white !default;\n\n$bookmarkAmendmentBackground: black !default;\n$bookmarkAmendmentText: white !default;\n$bookmarkCommentColor: black !default;\n\n$commentPadding: 10px !default;\n$commentBackground: #fafafa !default;\n$commentBorder: lightgrey !default;\n\n$wizardBackground: #f9f9f9 !default;\n$wizardBorderColor: #d4d4d4 !default;\n$wizardStepInactiveBackground: #ededed !default;\n$wizardStepInactiveColor: #999999 !default;\n$wizardStepActiveBackground: #f1f6fc !default;\n$wizardStepActiveColor: #afcb08 !default;\n\n$homeAgendaTitlePrefixWidth: 90px !default;\n\n$screen-lg-min: 10000px; // deaktivieren\n$container-md: 1024px !default;\n$sidebarWidth: 241px !default;\n$screenMinWith: 800px !default;\n\n$icon-font-path: \"../fonts/\" !default;\n$line-height-base: 1.5;\n$contentBorderRadius: 10px !default;\n$use-box-shadow: true !default;\n","@charset \"UTF-8\";\n\n$icon-font-path: \"../../fonts/\";\n@import \"css/variables\";\n\n$arvoFontPath: \"./\";\n@import \"arvo\";\n$ptSansFontPath: \"./\";\n@import \"ptsans\";\n\n$contentBorderRadius: 0;\n\n$colorLinksLight: #6d7e00;\n$colorLinks: #6d7e00;\n$colorLinksFooter: $colorLinks;\n$linkTextDecoration: none;\n$colorDelLink: #FF7777;\n$colorMagenta: rgb(226, 0, 122);\n$brand-primary: $colorMagenta;\n$text-color: rgb(72, 70, 73);\n$btn-success-bg: #2c882c;\n$label-success-bg: $btn-success-bg;\n\n$headingFont: \"Arvo\", sans-serif;\n$headingPrimaryText: rgb(255, 255, 255);\n$headingPrimaryBackground: #0a321e;\n$headingSecondaryText: rgb(255, 255, 255);\n$headingSecondaryBackground: rgb(175, 203, 8);\n$headingTertiaryText: black;\n$headingTertiaryBackground: rgb(27, 74, 251);\n\n$menuFont: \"Arvo\", sans-serif;\n$menuLink: #6d7e00;\n$menuActive: rgb(115, 115, 115);\n\n$sidebarBackground: $colorMagenta;\n$sidebarActionFont: \"Arvo\", sans-serif;\n\n$bookmarkAmendmentBackground: $colorGreenLight;\n$bookmarkCommentColor: $colorMagenta;\n\n$bodyFont: \"PT Sans\", \"Segoe UI\", Frutiger, \"Frutiger Linotype\", \"Dejavu sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n$deadlineCircleFont: \"Arvo\", sans-serif;\n$sidebarActionFont: \"Arvo\", sans-serif;\n$buttonFont: \"Arvo\", sans-serif;\n$motionFixedFont: 'PT Sans', Courier, sans-serif;\n$motionFixedFontColor: black;\n$motionFixedWidth: 733px;\n$motionStdFontSize: 16px;\n$inlineAmendmentPreambleHeight: 35px;\n$inlineAmendmentPreambleColor: $colorMagenta;\n$createMotionBtnColor: $colorMagenta;\n$homeAgendaTitlePrefixWidth: 110px;\n\n$screen-md-min: $container-md !default;\n$mainContentWidth: $container-md - $sidebarWidth !default;\n$content-max-width: $mainContentWidth - 2px !default;\n$grid-float-breakpoint: $container-md - 32px !default; // $screen-md-min;\n\n@import \"css/bootstrap\";\n@import \"css/fontello\";\n@import \"css/wizard\";\n@import \"css/helpers\";\n@import \"css/elements\";\n@import \"css/bootstrap_overwrites\";\n@import \"css/base_layout\";\n@import \"css/contentpage\";\n@import \"css/consultation_motion_list\";\n@import \"css/speech_lists\";\n@import \"css/voting\";\n@import \"css/motions\";\n@import \"css/proposed_procedure\";\n@import \"css/styles\";\n@import \"css/merging\";\n@import \"css/projector\";\n@import \"css/user_pages\";\n\nbody {\n  background-image: url(gruenes_ci2_background.jpg);\n  background-repeat: repeat;\n  background-position: top center;\n  background-attachment: fixed;\n}\n\n.logoImg {\n  display: block;\n  width: 89px;\n  height: 87px;\n  background-image: url(\"logo_gruene-2015.png\");\n}\n\n.well h1 {\n  font-family: \"Arvo Gruen\", sans-serif;\n  font-weight: normal;\n}\n\n.motionListStd .motion .title a {\n  font-family: \"Arvo\", sans-serif;\n}\n\n#mainmenu {\n  display: block;\n  background: #0a321e;\n  text-align: right;\n  padding: 0.5em 0;\n  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);\n  z-index: 2;\n  position: relative;\n\n  .navbar {\n    min-height: 36px;\n    .nav li a {\n      &, &:visited, &:link {\n        color: white;\n        font-family: $bodyFont;\n        font-size: 16px;\n        font-weight: normal;\n        text-transform: none;\n        line-height: 36px;\n        vertical-align: middle;\n      }\n    }\n  }\n\n  .navigation li.addPage {\n    float: right;\n  }\n\n  .navbar-nav {\n    margin: 7.5px 0 7.5px 15px;\n  }\n\n  .navbar-inner {\n    max-width: 1140px;\n    margin: 0 auto;\n  }\n\n  .unsichtbar {\n    display: none;\n  }\n  .navigation {\n    background: #0a321e;\n    font-size: 20.8px;\n    font-family: 'Arvo', 'Arvo Gruen', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n    font-weight: normal;\n    ul {\n      list-style-type: none;\n    }\n    li {\n      display: block;\n      float: left;\n      position: relative;\n      padding: 0;\n      margin: 0;\n    }\n    a, a:link, a:visited {\n      padding: 1em;\n      display: block;\n      background: transparent;\n      color: #fff;\n      border: 0;\n    }\n  }\n}\n\n.row.logo {\n  margin-bottom: 1em;\n  position: relative;\n  min-height: 110px;\n\n  #logo {\n    display: inline-block;\n    width: 20%;\n    z-index: 2;\n    position: relative;\n    margin-top: 0.5em;\n  }\n\n  .hgroup {\n    display: inline-block;\n    width: auto!important;\n    text-align: right;\n    z-index: 2;\n    position: absolute;\n    top: 10%;\n    right: 0;\n    border-top: 0.2em solid #fff;\n    border-bottom: 0.2em solid #fff;\n    padding: 0.5em 0;\n    @media screen and (max-width: 550px) {\n      display: none;\n    }\n  }\n  a, a:link, a:visited {\n    color: #fff;\n    text-decoration: none;\n    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);\n  }\n  #site-title, #site-description {\n    padding: 0 0 0 5px;\n    margin: 0;\n    line-height: 1em;\n    display: block;\n    text-align: right;\n  }\n  #site-title {\n    color: #fff;\n    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);\n    text-transform: uppercase;\n    font-family: 'Arvo Gruen','Arvo', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n    font-size: 40px;\n  }\n\n  #site-description {\n    text-align: right;\n    margin-top: 0.5em;\n    font-size: 18px;\n    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);\n    color: #ffe000;\n    font-family: 'Arvo', 'Arvo Gruen', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n  }\n}\n\n.logoRow {\n  margin: 0;\n  position: relative;\n  min-height: 110px;\n\n  #logo {\n    display: inline-block;\n    width: 20%;\n    z-index: 2;\n    position: relative;\n    margin-top: 0.5em;\n  }\n\n  .hgroup {\n    display: inline-block;\n    width: auto!important;\n    text-align: right;\n    z-index: 2;\n    position: absolute;\n    top: 28px;\n    right: 0;\n    border-top: 0.2em solid #fff;\n    border-bottom: 0.2em solid #fff;\n    padding: 0.5em 0;\n    @media screen and (max-width: 550px) {\n      display: none;\n    }\n  }\n  a, a:link, a:visited {\n    color: #fff;\n    text-decoration: none;\n    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);\n  }\n  #site-title, #site-description {\n    padding: 0 0 0 5px;\n    margin: 0;\n    line-height: 1em;\n    display: block;\n    text-align: right;\n  }\n  #site-title {\n    color: #fff;\n    text-shadow: 2px 2px 5px rgba(0,0,0,0.4);\n    text-transform: uppercase;\n    font-family: 'Arvo Gruen','Arvo', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n    font-size: 40px;\n  }\n\n  #site-description {\n    text-align: right;\n    margin-top: 0.5em;\n    font-size: 18px;\n    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);\n    color: #ffe000;\n    font-family: 'Arvo', 'Arvo Gruen', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n  }\n}\n\n.navwrap {\n  margin-bottom: 2em;\n}\n\n.breadcrumb {\n    display: block;\n    z-index: 2;\n    position: relative;\n    background: #ffee00;\n    color: #0a321e;\n    padding: 0.3em 1em;\n    font-size: 14.4px;\n    font-family: 'PT Sans Bold', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n    font-weight: normal;\n    text-transform: none;\n    margin: 0;\n    color: #0a321e;\n    a, a:link, a:visited {\n      color: #0a321e;\n    }\n}\n\nfooter.footer {\n  text-align: center;\n  font-size: 12.8px;\n  color: white;\n  padding: 1em;\n  margin-bottom: 30px;\n\n  .version {\n    font-size: 12.8px;\n  }\n\n  a, a:link, a:visited {\n    color: #ffe000;\n  }\n}\n\n.well {\n  border-radius: 0;\n  box-shadow: 5px 5px 10px rgba(0,0,0,0.2);\n}\n\n@media (min-width: $screen-md) {\n  main.col-md-9 {\n    width: 750px;\n  }\n  aside.col-md-3 {\n    width: 274px;\n  }\n}\n\n#sidebar {\n  font-size: 16px;\n  padding-right: 0;\n  padding-left: 50px;\n\n  .form-search {\n    margin-bottom: 2em;\n\n    .invisible, label {\n      display: none;\n    }\n    .query {\n      padding: 1em 5%;\n      border: 1px solid #0a321e;\n      width: 100%;\n    }\n    button {\n      border: 0;\n      background: #0a321e;\n      color: #fff;\n      font-family: 'Arvo', 'Arvo Gruen', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n      padding: 0.5em 1em;\n      margin-top: 1em;\n      font-size: 1em;\n      font-weight: normal;\n    }\n\n    @media only screen and (min-width: 770px) {\n     .query {\n        box-shadow: 5px 5px 10px rgba(0,0,0,0.2);\n      }\n      button {\n        box-shadow: 5px 5px 10px rgba(0,0,0,0.2);\n      }\n    }\n  }\n  .sidebar-box, .sidebarActions {\n    margin: 0 0 2em 0;\n    padding: 18px;\n    border: 0;\n    background: #e6e6e6;\n    box-shadow: 5px 5px 10px rgba(0,0,0,0.2);\n    border-radius: 0;\n    list-style-type: none;\n\n    a {\n        padding: 10px 0;\n        display: block;\n        &:hover {\n          background-color: #eee;\n        }\n        .icon:before {\n          margin-right: 0.2em;\n        }\n    }\n\n    li a, .icon {\n      color: #46962b;\n    }\n\n\n    button {\n      color: #46962b;\n      text-align: left;\n      padding: 10px 0;\n      &:hover {\n        background-color: #eee;\n      }\n    }\n  }\n  .nav-list {\n    margin-bottom: 0;\n  }\n  .nav-list>li.nav-header {\n    padding: 5px 0 5px 0;\n    color: #0a321e;\n    font-size: 20px;\n    font-family: 'Arvo', 'Arvo Gruen', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n  }\n  .nav-list>li {\n    padding: 0;\n  }\n  .nav > li > a {\n    padding: 10px 0;\n  }\n\n  .createMotionHolder2 {\n    margin-bottom: 2em;\n    .createMotion {\n      display: block;\n      box-shadow: 5px 5px 10px rgba(0,0,0,0.2);\n      border: 0;\n      background: #0a321e;\n      color: #fff;\n      font-family: 'Arvo', 'Arvo Gruen', Trebuchet, Helvetica Neue, Helvetica, Arial, Verdana, sans-serif;\n      padding: 0.5em 1em;\n      margin-top: 1em;\n      font-size: 1em;\n      font-weight: normal;\n      span {\n        margin-right: 0.5em;\n      }\n    }\n  }\n\n  .share_buttons {\n    margin-top: 20px;\n    li {\n      width: 102px;\n    }\n  }\n}\n","$screen-lg-min: 10000px !default; // deaktivieren\n$container-md: 1024px !default;\n$container-desktop: 1024px !default;\n$grid-float-breakpoint: 992px !default; // $screen-md-min;\n$zindex-popover: 11000 !default;\n$link-color: $colorLinks !default;\n$link-hover-color: lighten(darken($colorLinks, 5%), 15%) !default;\n$link-hover-decoration: $linkTextDecoration !default;\n$icon-font-path: \"../fonts/\" !default;\n\n// Core variables and mixins\n@import \"bootstrap-3.4.3-sass/bootstrap/variables\";\n@import \"bootstrap-3.4.3-sass/bootstrap/mixins\";\n\n// Reset and dependencies\n@import \"bootstrap-3.4.3-sass/bootstrap/normalize\";\n@import \"bootstrap-3.4.3-sass/bootstrap/print\";\n@import \"bootstrap-3.4.3-sass/bootstrap/glyphicons\";\n\n// Core CSS\n@import \"bootstrap-3.4.3-sass/bootstrap/scaffolding\";\n@import \"bootstrap-3.4.3-sass/bootstrap/type\";\n@import \"bootstrap-3.4.3-sass/bootstrap/code\";\n@import \"bootstrap-3.4.3-sass/bootstrap/tables\";\n@import \"bootstrap-3.4.3-sass/bootstrap/forms\";\n@import \"bootstrap-3.4.3-sass/bootstrap/buttons\";\n@import \"bootstrap-3.4.3-sass/bootstrap/button-groups\";\n\n// Components\n@import \"bootstrap-3.4.3-sass/bootstrap/component-animations\";\n@import \"bootstrap-3.4.3-sass/bootstrap/input-groups\";\n@import \"bootstrap-3.4.3-sass/bootstrap/dropdowns\";\n@import \"bootstrap-3.4.3-sass/bootstrap/navs\";\n@import \"bootstrap-3.4.3-sass/bootstrap/navbar\";\n@import \"bootstrap-3.4.3-sass/bootstrap/alerts\";\n@import \"bootstrap-3.4.3-sass/bootstrap/list-group\";\n@import \"bootstrap-3.4.3-sass/bootstrap/pagination\";\n@import \"bootstrap-3.4.3-sass/bootstrap/breadcrumbs\";\n@import \"bootstrap-3.4.3-sass/bootstrap/labels\";\n@import \"bootstrap-3.4.3-sass/bootstrap/wells\";\n@import \"bootstrap-3.4.3-sass/bootstrap/close\";\n\n// Components w/ JavaScript\n@import \"bootstrap-3.4.3-sass/bootstrap/modals\";\n@import \"bootstrap-3.4.3-sass/bootstrap/popovers\";\n@import \"bootstrap-3.4.3-sass/bootstrap/tooltip\";\n\n// Utility classes\n@import \"bootstrap-3.4.3-sass/bootstrap/utilities\";\n@import \"bootstrap-3.4.3-sass/bootstrap/responsive-utilities\";\n\n@import \"mixins\";\n","// WebKit-style focus\n\n@mixin tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n@mixin img-responsive($display: block) {\n  display: $display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {\n  background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path(\"#{$file-1x}\"), \"#{$file-1x}\"));\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and ( min--moz-device-pixel-ratio: 2),\n  only screen and ( -o-min-device-pixel-ratio: 2/1),\n  only screen and ( min-device-pixel-ratio: 2),\n  only screen and ( min-resolution: 192dpi),\n  only screen and ( min-resolution: 2dppx) {\n    background-image: url(if($bootstrap-sass-asset-helper, twbs-image-path(\"#{$file-2x}\"), \"#{$file-2x}\"));\n    background-size: $width-1x $height-1x;\n  }\n}\n","@use \"sass:math\";\n//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: $headings-font-family;\n  font-weight: $headings-font-weight;\n  line-height: $headings-line-height;\n  color: $headings-color;\n\n  small,\n  .small {\n    font-weight: 400;\n    line-height: 1;\n    color: $headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: $line-height-computed;\n  margin-bottom: math.div($line-height-computed, 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: math.div($line-height-computed, 2);\n  margin-bottom: math.div($line-height-computed, 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: $font-size-h1; }\nh2, .h2 { font-size: $font-size-h2; }\nh3, .h3 { font-size: $font-size-h3; }\nh4, .h4 { font-size: $font-size-h4; }\nh5, .h5 { font-size: $font-size-h5; }\nh6, .h6 { font-size: $font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 math.div($line-height-computed, 2);\n}\n\n.lead {\n  margin-bottom: $line-height-computed;\n  font-size: floor(($font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: $screen-sm-min) {\n    font-size: ($font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: math.div(12px small font, 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor(math.div(100% * $font-size-small, $font-size-base));\n}\n\nmark,\n.mark {\n  padding: .2em;\n  background-color: $state-warning-bg;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: $text-muted;\n}\n\n@include text-emphasis-variant('.text-primary', $brand-primary);\n\n@include text-emphasis-variant('.text-success', $state-success-text);\n\n@include text-emphasis-variant('.text-info', $state-info-text);\n\n@include text-emphasis-variant('.text-warning', $state-warning-text);\n\n@include text-emphasis-variant('.text-danger', $state-danger-text);\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n}\n@include bg-variant('.bg-primary', $brand-primary);\n\n@include bg-variant('.bg-success', $state-success-bg);\n\n@include bg-variant('.bg-info', $state-info-bg);\n\n@include bg-variant('.bg-warning', $state-warning-bg);\n\n@include bg-variant('.bg-danger', $state-danger-bg);\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: (math.div($line-height-computed, 2) - 1);\n  margin: ($line-height-computed * 2) 0 $line-height-computed;\n  border-bottom: 1px solid $page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: math.div($line-height-computed, 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// [converter] extracted from `.list-unstyled` for libsass compatibility\n@mixin list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n// [converter] extracted as `@mixin list-unstyled` for libsass compatibility\n.list-unstyled {\n  @include list-unstyled;\n}\n\n\n// Inline turns list items into inline-block\n.list-inline {\n  @include list-unstyled;\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-right: 5px;\n    padding-left: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: $line-height-computed;\n}\ndt,\ndd {\n  line-height: $line-height-base;\n}\ndt {\n  font-weight: 700;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    @include clearfix; // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: $dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: ($dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      @include text-overflow;\n    }\n    dd {\n      margin-left: $dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[title],\nabbr[data-original-title] {\n  cursor: help;\n}\n\n.initialism {\n  font-size: 90%;\n  @extend .text-uppercase;\n}\n\n// Blockquotes\nblockquote {\n  padding: math.div($line-height-computed, 2) $line-height-computed;\n  margin: 0 0 $line-height-computed;\n  font-size: $blockquote-font-size;\n  border-left: 5px solid $blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: $line-height-base;\n    color: $blockquote-small-color;\n\n    &:before {\n      content: \"\\2014 \\00A0\"; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  text-align: right;\n  border-right: 5px solid $blockquote-border-color;\n  border-left: 0;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: \"\"; }\n    &:after {\n      content: \"\\00A0 \\2014\"; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: $line-height-computed;\n  font-style: normal;\n  line-height: $line-height-base;\n}\n","// Typography\n\n// [converter] $parent hack\n@mixin text-emphasis-variant($parent, $color) {\n  #{$parent} {\n    color: $color;\n  }\n  a#{$parent}:hover,\n  a#{$parent}:focus {\n    color: darken($color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n// [converter] $parent hack\n@mixin bg-variant($parent, $color) {\n  #{$parent} {\n    background-color: $color;\n  }\n  a#{$parent}:hover,\n  a#{$parent}:focus {\n    background-color: darken($color, 10%);\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n@mixin clearfix() {\n  &:before,\n  &:after {\n    display: table; // 2\n    content: \" \"; // 1\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n@mixin text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","@use \"sass:math\";\n//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: $font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: $code-color;\n  background-color: $code-bg;\n  border-radius: $border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: $kbd-color;\n  background-color: $kbd-bg;\n  border-radius: $border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: 700;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: math.div(($line-height-computed - 1), 2);\n  margin: 0 0 math.div($line-height-computed, 2);\n  font-size: ($font-size-base - 1); // 14px to 13px\n  line-height: $line-height-base;\n  color: $pre-color;\n  word-break: break-all;\n  word-wrap: break-word;\n  background-color: $pre-bg;\n  border: 1px solid $pre-border-color;\n  border-radius: $border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: $pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: $table-bg;\n\n  // Table cell sizing\n  //\n  // Reset default table behavior\n\n  col[class*=\"col-\"] {\n    position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n    display: table-column;\n    float: none;\n  }\n\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      display: table-cell;\n      float: none;\n    }\n  }\n}\n\ncaption {\n  padding-top: $table-cell-padding;\n  padding-bottom: $table-cell-padding;\n  color: $text-muted;\n  text-align: left;\n}\n\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: $line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: $table-cell-padding;\n        line-height: $line-height-base;\n        vertical-align: top;\n        border-top: 1px solid $table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid $table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid $table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: $body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: $table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid $table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid $table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: $table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: $table-bg-hover;\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n@include table-row-variant('active', $table-bg-active);\n@include table-row-variant('success', $state-success-bg);\n@include table-row-variant('info', $state-info-bg);\n@include table-row-variant('warning', $state-warning-bg);\n@include table-row-variant('danger', $state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  min-height: .01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n  overflow-x: auto;\n\n  @media screen and (max-width: $screen-xs-max) {\n    width: 100%;\n    margin-bottom: ($line-height-computed * .75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid $table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n@mixin table-row-variant($state, $background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.#{$state},\n    > th.#{$state},\n    &.#{$state} > td,\n    &.#{$state} > th {\n      background-color: $background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.#{$state}:hover,\n    > th.#{$state}:hover,\n    &.#{$state}:hover > td,\n    &:hover > .#{$state},\n    &.#{$state}:hover > th {\n      background-color: darken($background, 5%);\n    }\n  }\n}\n","@use \"sass:math\";\n//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n  padding: 0;\n  margin: 0;\n  border: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: $line-height-computed;\n  font-size: ($font-size-base * 1.5);\n  line-height: inherit;\n  color: $legend-color;\n  border: 0;\n  border-bottom: 1px solid $legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: 700;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\ninput[type=\"search\"] {\n  // Override content-box in Normalize (* isn't specific enough)\n  @include box-sizing(border-box);\n\n  // Search inputs in iOS\n  //\n  // This overrides the extra rounded corners on search inputs in iOS so that our\n  // `.form-control` class can properly style them. Note that this cannot simply\n  // be added to `.form-control` as it's not specific enough. For details, see\n  // https://github.com/twbs/bootstrap/issues/11586.\n  -webkit-appearance: none;\n  appearance: none;\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n\n  // Apply same disabled cursor tweak as for inputs\n  // Some special care is needed because