AjuntamentdeBarcelona/decidim-barcelona

View on GitHub

Showing 1,768 of 1,768 total issues

Method import! has a Cognitive Complexity of 69 (exceeds 5 allowed). Consider refactoring.
Open

      def import!
        errors = []

        ActiveRecord::Base.transaction do
          i = 1
Severity: Minor
Found in app/services/decidim/accountability/results_csv_importer.rb - About 1 day to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method import! has 67 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def import!
        errors = []

        ActiveRecord::Base.transaction do
          i = 1
Severity: Major
Found in app/services/decidim/accountability/results_csv_importer.rb - About 2 hrs to fix

    Method valid_activities has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
    Open

            def valid_activities
              return @valid_activities if defined?(@valid_activities)
    
              valid_activities_count = 0
              @valid_activities = []

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Method export has 31 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          def export
            results = Decidim::Accountability::Result
                      .where(component: @component)
                      .includes(:category, :resource_links_from, :resource_links_to)
                      .order(:id)
    Severity: Minor
    Found in app/services/decidim/accountability/results_csv_exporter.rb - About 1 hr to fix

      Method informable_ephemeral_participant? has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

              def informable_ephemeral_participant?
                return false if verify_ephemeral_participant_path?
                return false if edit_ephemeral_participant_path?
                return false if update_ephemeral_participant_path?
                return false if unverifiable_ephemeral_participant_path?

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method initiative_admin_user_action? has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              def initiative_admin_user_action?
                return unless permission_action.subject == :initiative
      
                case permission_action.action
                when :read

        Method validate_ephemeral_participation_permissions_settings has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

                def validate_ephemeral_participation_permissions_settings
                  return if resource_permissions?
                  return unless ephemeral_participation_enabled?
        
                  permissions.values.each do |permission_form|

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method user_ids has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

                def user_ids
                  Decidim::Authorization
                    .where(name: "census_sms_authorization_handler").find_each.map do |authorization|
                      date_of_birth = begin
                        Date.parse(authorization.metadata["date_of_birth"])
        Severity: Minor
        Found in decidim-stats/app/queries/decidim/stats/performers/age_group.rb - About 45 mins to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method update_managed_user has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

                def update_managed_user
                  if [new_user, managed_user].any?(&:ephemeral_participant?)
                    Decidim::EphemeralParticipation::TransferEphemeralParticipant.call(form).tap do |events|
                      raise(ActiveRecord::Rollback) if events.has_key?(:invalid)
                    end

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Method call has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

              def call
                return broadcast(:invalid) unless valid_params?
        
                if transfer_ephemeral_participant?
                  set_last_location

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Avoid too many return statements within this method.
        Open

                  return false if request.flash.any?

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          describe Decidim::Stats::Actions::Endorsement do
            subject do
              described_class.new(my_component, performers_query)
            end
          
          
          decidim-stats/spec/queries/decidim/stats/actions/proposal_vote_spec.rb on lines 6..34

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 86.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

          describe Decidim::Stats::Actions::ProposalVote do
            subject do
              described_class.new(component, performers_query)
            end
          
          
          decidim-stats/spec/queries/decidim/stats/actions/endorsement_spec.rb on lines 6..34

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 86.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Method verify_ephemeral_participant_path? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

                def verify_ephemeral_participant_path?
                  return false if homepage?
          
                  adapter = ephemeral_participation_verification_adapter
                  engine = adapter.type == "direct" ? Decidim::Verifications::Engine : adapter.send(:main_engine)

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method redirect_ephemeral_participant has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

                  def redirect_ephemeral_participant
                    return redirect_to(unverifiable_ephemeral_participant_path(current_user)) if redirect_to_unverifiable_ephemeral_participant_path?
                    return redirect_to(ephemeral_participation_path) if redirect_to_ephemeral_participation_path?
                    return redirect_to(edit_ephemeral_participant_path(current_user)) if redirect_to_edit_ephemeral_participant_path?
                  end

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method base_error_messages has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

                  def base_error_messages(record)
                    return unless record.respond_to?(:errors)
                    return unless record.errors[:base].any?
          
                    alert_box(record.errors.full_messages_for(:base).join(",").html_safe, "alert", false)

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method any_zero_duration_event? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

                  def any_zero_duration_event?(agendas, meeting)
                    agenda_items_times = calculate_start_and_end_time_of_agenda_items(agendas, meeting)
                    agenda_items_times.any? { |agenda_time| (agenda_time[:start_time] - agenda_time[:end_time]).zero? } ||
                      agendas.map.with_index do |agenda, index|
                        next unless agenda.agenda_item_children.presence
          Severity: Minor
          Found in app/helpers/concerns/decidim/meetings/meetings_helper_override.rb - About 25 mins to fix

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method show has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

                  def show
                    raise ActionController::RoutingError, "Not Found" unless meeting
          
                    return if meeting.visible_for_admin_user?(current_user) || meeting.current_user_can_visit_meeting?(current_user)
          
          

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          Method call has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

                  def call
                    return broadcast(:invalid) unless form.valid?
          
                    transaction do
                      update_managed_user

          Cognitive Complexity

          Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

          A method's cognitive complexity is based on a few simple rules:

          • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
          • Code is considered more complex for each "break in the linear flow of the code"
          • Code is considered more complex when "flow breaking structures are nested"

          Further reading

          The box-sizing property isn't supported in IE6 and IE7.
          Open

          @font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:url(data:;base64,d09GMgABAAAAADfkABEAAAAAiPgAADeEAAEMzAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAbsnAcgWAGYACDZggoCYJzEQgKgbtsgaNrATYCJAOHRAuDZAAEIAWDRgeGOQxLG%2Bt5NWybRg27HYB3Td0IUQQbB3wYaBOiqBuM0y3Z%2F%2F%2F5uDFEsEC1tv%2BHDCmrkGg1EpZJEM%2FB4FArjRzKpGHdgmnUzqaiXOimomfFgQQHdqiMu4I5CXPC%2BR5cSnxqqAo9V5QYDDqr8otBpZ4Dl3wVFokF0QheEb7CxTUqunKgde3f1%2Fxj8T%2FQ8mWxqL2pHUqRFOiRI0H7ofg4uONIQgXvcz6bD0mKJsHTGq%2Fz9u4Db4BwUyBU0SV2rUOydWgBFRBsga%2BELuB%2BkjvCzZqNbDbJRghBLBDM2lJ6ovTc6an6q%2FLeV%2FcBmtMCBFsQj9hFiF9cL7kQIeJ4CKqlslIBWgfqW%2F3Ltv5WMyrTmk683TppfavMjH%2BAw%2FZvLTs6m0VzA8eBQ4Q9%2Fnm8h537FgBFkSWSR7r9r5y2479Nm1lI725mUzUSh5roezvAy2XrNNXPky%2F4hc8kVQViChGtiAR4ABy65bCt9bE%2BdRKdVP01vIYUQghX%2FpCmBfBPFdweMY0wIJvbUjd392BtQiUk4jRuIf5C15YhL785pnIya0ABgMsg6paHYDavUXeqtrX8aLPPdp9kH7COQrAJVy46b4DKyxVNgIrOIz3JmZVlffD63%2FxZf2DHRz7vHqBGM7s3nvHuEUEVYCyqlNcFsGgAqzJtOqqaTOm02l0rugeCiqCovN3PV%2BlK7cryaXe1F698JCtk%2B8hhOWH%2FZGznwUn1AFQiWT6ycyQfOg8AXa57qICL7ueLqqGieqi5Qga9R%2FuCRTXRS1P%2Ff%2BwzvZAZd9t6qrWWENcY6hDmhVBKLeMQ1vy%2B92Nm%2F0ipV%2FrGdDsqIggjQxlXN%2FfLQgGMqz9QQnDaStKlqU0yiEeSmbVJFuiWZFVtktVmS%2FYWJP3hwah6kOQTew0YATlXTV62AHCQgP6%2FQH9mhLly%2BpIFkNNtB6J9AYcBo1KcCkmS2k%2BNSb10WOgyd3nGt54GE8MxM4DghFQSlcgJC8%2F701hToyyy134XuNLVHhoJGxcecwDuINTFjGaId0Hw8H03MuMnP%2FFBwEN9D990IytSgfeBHReSapRuhkZAAV5ZUzzID4UeGvF49HTYIixVfWru8b6nFeLDCizS4QpwomQsi688ajR%2FpqVZGx59YOrpSRFWSqqGryzypfktpPJTUQfhUk2Eni6Y1Pe%2BDafmDd3cfqFp28qF2P658%2B0rBvTzs11%2Fm11f%2Fu86Uf3vJEX1%2F0t%2Bp72L7%2BmEcrUWa87rGG0wqwE7YRr0wU57NomPSXlem%2FSb0QJmIvjVzJC%2BwpeIF1%2BBSAdAUeGtKvajNRz0YXhMbzO7YnRm0KIfXhmm1MKtgO5kFNR4Lqg6JP0NZHC8K5zuAvseto6guOEgpw1ZX83m0HC3B5OsTt0EqOOCrkiNfUNZ0Vx%2BHo6l1OtId9DnoN%2FEC9c%2FDIMS4NC7zfG20cXXtUXbkzNeudZ%2BQBpn39yoQCaugUYMUECXKk%2BMi66cyKbR738DSJ2%2BNoG7JBwFYXRdAM5YMxrRzE7n4yqwzdBHh9Y7yw1wiO35C2t5nEdXP%2Bh7sRlZBLSuJX%2FAlIvHCvg5a9nqgH1j2wCpoWtk9F12u3i0AYj4jcRzJbNNu7S1aLpnX%2Fn67eXN8KX7Ni%2BLAcbhm%2FJq00Fz9KXPWSLX%2FsoBQdg8sKQcs%2FblcvKwOcoVEcseZz%2BlC7BgxGQoq9FD4PuABiUb36xQeFzlE0OP3o5o3v71ez0iWuHMzpFOzoaLQCyGmDfD34M%2F1u1sExvKu5IgsY1paozpZKgvzN2wJZdlRibjb5hFmjYJ9ZUgeeH8wGULuJrTMlL7LUKJ2kvXM%2FvAXXlyArRj9EU9fN4n%2FV2YSiXduTsjFyZp3z8DppEmKSNGJgHVc7kPkojdDWRMhxOhApnwXF%2B3trhwrnDwNA%2FNjPaRHPrGnRHSycd6zs5fumhK1pJiQ3dBRudy5yziOuUkHU2Cc%2FnJhL9dSYKFKHWFZZn824XFe340ybUwOYnfDGStGYGKvwZzPxzMBZMY1Rkj2tl6l4WwOnmgvemaPMXDIWc04VuzvgBKdAZW1SWPt%2B15dBZqs960oGGDxfXJ5T6DKsFukft1Die8E6vjxYWC1y1vta6SVp50tSEdnTIWH3IG2Aokkbsw1E5mnKyAV%2FfsaJYtoWLSseXESF7Etgnt51ZOqehFqXKqYywX3yXLqJ00mXBoidrnV3DOfq%2FDNHojbWJSmetCOMsv%2BWdiTeHk%2BCbtWFIdwJNX7VXO9y3gFM%2FkQjIqlJ7lnv%2BxJkTAyhZQrYJaeP9c3IzTrMiVI3bG8%2FLBEMDKzJ2pDvR5879GBvPH8HkYJTkfDNFWnZ%2BGv8xrwCfYCszRU8m%2FBIeM2j0mvNyO4%2FXaL6cVG3Bu%2F08IgW7fzLuuW4uN89X5y8oBjbbDvvPTD%2F4hJkE6o9aDJp%2FwyiGhT%2FJjeO4ET6T%2Ba1k9IuuiyTVDwvJp8nAU3HgreZYFGehevcMvVDoS1FV%2B54HBCgIPL8xbPkTkMhkkU3Scn7kmuqRMfa4%2FVJIRF6rNg0xIyQtZwuKsTdr1Dy7dDKQEIgWedUBqPhOZcxKFpdhIgmrG4c08qNYwqXfXU%2BugGmch%2BcQqmSg4EWClhJB0843bsqaImmmFsVZZY64djlrghAusc3HBtruU7XA52%2BlKtsvV3%2BpuCOcymICgklJEaRlZEpk6onLtD1Kh0ugKHIoMTqYQFzCfj18QYBGwmEHoS4kKi7BFtRXTTlzirplClEQ4oprhlhyEyQrRIKLypcMiL1eLULVZaVWxF3s1iEL87oElfA96hvMA7lqEUcZpii1t2lcG7K%2FR1OP%2BWYCC4QGMPjho6l2kkcA0CnMytOa21mxoxZpmnI9YvoaF%2BRknoCMh1HwZqSwW6SIVGA20wxeNwxaZUqxWkJWTlmeGQpxWnKWwDjrtbJTRAOZSYm6NLK6siZ%2BQaMBEbWuz2umM6trX9DW4Gx5iONYIMN7IbwwZbTzdBFMYpprBNNMsabMt5B9qsWXclltBfGrjEznssJNsl93y9jAWtJeF7GO2%2FbWWAw6KOsRiDjPJERZzlElOsJSTLOcUSzldm3PGeUkXMJ9LWMFlrOAKXYh1Goi8rgXzuJH5%2FWCKnmo5upNc8JXNFbekHNfSM4J0wrAREaztw%2FpHiCc0EscNBi%2BPYOFfNI6AXDV75mQQd2%2BxcOo8UHYgCEV7XIL5B4xA%2BqkJfDIHx9ovuNYotVqy2BNJumH75cSkxHsxiQfpngkCwhn8K4xzQBwARBobaJq2SaldDjFkUdQ%2F0uNO7NYTjBD7%2BvRdPwVovov85YikewHxa1oLLJcCJMDC2Z1G%2BGlCxhcQjgRACkKYUEfFqEKd2Ya97Xlfe%2BK%2FpIYIMOfSF%2BnmchPAASSACqgBKHJN5ImDQS3%2Br2f4hUYIqZlUiptjuwfccNvToup%2FgRPAAISZKt3dvIVnQvSnIR4G%2Bwn1MxH9EKKXQ%2Byb%2FR%2F3b%2F%2Fr3YBfr69e%2BKsJ897788EA%2FAEOhbAdwjkQLtEB4RHgbQhPyBz1D7761hp7HHSTB10wx7iLXeJaz1jsjB2J96m824tu%2BMAKNZe62mVesd0bXnWVK7zqieUe9Z53nPaG67xjr7ud8ppNbvSut73skFu96VN7XOB9B93jtCddctlKI9mVcXBycbumnJePX0DwSb3QWz2kRas27Tp0uq5Lrz79BgyaaQaPbpMOO%2BaIo44X9UD8whDGe4kRUnSXMmkt1MNhOAkuvJWtCMg7p0EcEj2A0HhsGv0%2FBnoQ7wQRRhNrwFZAeSDSsxXajyb9EGPyOChLkVXYPNBrP5uw%2BaO0KrAn19q3YVmkFzAr3rCfSwh8oc%2F0ZVVBpAbDo63d6BFRSq0Sw58lG2MxNUWIU7jYnipLgDnGyhx8Qv%2FdoSE%2B7wRqbNIb9UX3b9qCr1WgGN62Iz33P%2BCNlgldWY1ptGAnsWib24pxFwoSZ08sQrCOQHR%2FBV%2BD6rI9g3E0u7YpHp%2B2xwejuqVWeGBziQjUit0KGxyEbus02uS92Nw0WOCctrTELsoqZBeITiBqrYCdbgWII00a8PPGa4rfgd%2FA1Jdg9n3Qng7S%2B2DV7XzB02EqvSoGaqpMqkp1lpUJfe%2F2%2FKivj77pL2BNXojRvSiLF8SCxmdNumNZtwzTylFTQ2jhsdwhxtJRpQdK0QEzxjns2PNYcAwSXojGsLKUCZ2rk2mmem8CQVu2GRw8bImYohiVRSolKedQsN%2BMuWuiaYt6mfjVqF%2BXgtSjR11aUHQb7XQX5XSqDDtN0%2BP4kzRKftcODVgS1qkUcIqK5hC1ksBJUsDMCO1ccQuSyatqkRqKVZbklGrrupqendTANGFwADYMQeDioianaYSUytwYTW%2FHKaZpqbpKemlBjlIxkMOyXzSpl4maxYLVRghz1DTHV4PbhBd7TVKEeLwX6PVbZxgTFY6arYxj5XpUyHFIKSNCWkecZiqgO7BAaVLk8t%2FcL4FvBgBsgS%2F4l%2BYbpDEJRogGQqfLTYzBWp7AhvSB3EHDxFaG4%2Fkbu4EkIxTGZVW5gNfNBRsYsIj2V7WIBqFJ29lIyFYtFXZ7HHvJY1vkCkfq9qv78uLDVhT6i%2Bnn1USOsApRWMEl6T6LQ5rFtNCo5CMVpLBDNxFa41x5j74w79vQXXa0D4GCGNOWTuI5ZqVfR6VrhxQl3n8m0Y2JLbGM%2FAWVn0NF1Ywk52mncktdvZXNSYabjqgIk0U5fLtVSHrw%2FcqFdLbEedTpbUaq79paa1W0LpBPZYr1w3VPkxi7KK1zCXOBvOSyFcWeF9y2TzvWZwXWwpdDTbiQW3ix4TL69LR3MZ%2Fvc6HJ3qoyCt%2BimXQDpgfJhFlfzU%2Fh68VpwsEQOdcqU%2BlKabIiyT3zTZzLDewbC7T5rI25cFrH2hLjiVZ9lgT%2Fpi5xsyAqoM7%2BpUQN9rWPq3EYnte6DKpLG7goaxZNJ0kJDYaeBqp%2FSb6LbWB%2B9qqf7T%2Fwgm9kWhilnnXAQfYO0pSEmJ6P6U2DaAdDPnwBYdu2%2BMJKWmzmeIzIVnfj9LOPQgYs0uMhFIxdp%2BrFOlrzNXQ1IBuaeGNiMqdi09X4qIAMSzFNs1KhPoGBUmVQAn9Oo6QqBdrsAPbodS%2Fb8bbeJJo1t5ELeQJmqm3yok85L9MTm5C7NRa58Q7S5dqgpdgiw94oDPlIi6vjXBXLCNxD0uT83lGR%2B5qUXxUjJ3hZcwNz5xndl7wfSGnxoWcQiEa0a6hbN4g1qM1Hp4FyOJ%2BNd%2FNVhZmbJbsVl891vZJ97CUUw0TFdB7VJfXHYAFSUoWbHSKZdHvJo01vPVLtewUAXN3bA%2BlUW7HlizpdL6dVBleEDbfp6JhLTsp%2FUCM3vffw8puc43oPW%2BRQVfzVJ3QTZ%2FBt9hmGeP6Lgrw8J7i4OPspDQswx7RJBl99vjCHrrYC0yqW3Sh1PycTE2W%2BWZBmUFuzIx76%2FK7Og42k6CwO6rYe8Rfu1E0fLx8CPiJ12lyl1km953j4D1lrYsw%2B1Jibkbw5FIfjvpkUtLjoSyz5bh6XAbVaAJO5tSC7ef01b%2BotDzN7RsNXPrBU7nKz3PPims8Dcik6uHM%2BRn%2BGK8MWSY%2Fh257n9Tpq%2B1MkJUnf64FVkr64VwwcXmlVQhVdp4Utg1uLAGld7NN2Y7bFe5yutxakM0%2FsOZqwzTezDJFC9mW2Hin2NaCV7wtgHe8zqU3spctkdyPoYZn7Qenso5ChT3%2BwufdonZonbx2bMxiQuZr%2BYFA1Vn%2BNGi%2Bn%2FYMlhXhCF%2BTS0aXxfNFFkE5VBV8UArpLovlMRg3%2BvbSpc2Si5SmPuw0N0uHO0hXttArY9tuvrrKqb3Y9uQxRxiZf%2B5twbQMX8mfYkFkX6xnU87vBSXS%2FqR9keQtfNyfsIezgUvYy2Ju%2FgRPftPnX9dXXSB54vOQS3U3xfXah9yudBHtJdqmlbGJvYtOSHRCkCGxyFy%2BzU49jjKe5ztqOEhDaGGGLubjbvpZB1tPyrzK5QOpxE7P1AKe3a010G8p7Yc4XNP5jiWoYk3gf56IAk%2FztG5PIRD8zqUh7xJJ0YQe%2FXNYJUjPlJE%2BgVvuFUppbitlL0paIPCFXmxwPD9t1kIr4cdCc4PlfRYzVNhJHFbBWfvsmtW4x06egtgsSG3J90CMHumuKfwjD2Vgzj%2BQ6rIKkygdpEsPyxDHPkVvVUUX02rbyr5voI5S6u%2FsbZ7RyIjedd%2BxasJW27ey1wuBmN2tpmdkVGW6wIrdzBA8kPJXbyrvNyECGZ7vTqENQViq9QpzVGtQqw0CzMtE2o2CkxDtph2I1sWitqTqQS3YeBRu16uOykyy5eoe2nLizWxdetctlIO%2FPM%2BgcQh5R%2ByhQ%2FIL4t28jWrqdTogE1z2EXHnz8TTIJBNF8BA82EBp%2FhLFsuxqKT6qIPOYQ4OcqKfufvbrb4V4LXkFmDdfOU6ytSRzlv8lty%2FH5f9%2BLrdI6wIeI45PC9MZU0s66vhjnpnB26%2BzHvS3uP%2FCrnjvkaTDq0YrrpqoctC8%2FZ7By69vBzEZ4JewRY9P7CyhzIPfbVjLxNPiqaKlrSaxD6yhOeRqMNedPTe5w6Jpxh8ZzmCtc5WbVHpf%2Bi8rbMp0kSYH4x91kAwNxHT3MJO4GovE257CPlafe5txiOz2crx6IU2yo31xEnItgxLdjULIPw9gdQDQfiTU%2FCriXwz8wN1VNoQd3VK2aH8fDyn8JmQPzm7%2Fez%2BmRLRLD5%2F4sRi09q05zlLP1IFeUdsZ5DqHZ0IKDlNZaQJCQmFgY01JlmsFjbhF8x53KUfS%2Bq0KEi%2F4eQfSxtuKZmyMRgu2SDwwCY3ceKeXEViHetzuznnGjsAhIZJumpntrNd9t%2BmArFXEb7N%2BvcZJrkhBSbRcl2GkYpUoif0EO2tP8CTeJPkpIGwPUQDBNT55C6S1syBDGwaOg42vvhCZ2DU71%2Bn%2FQmh43SkMVK1%2BSvnB1UlLhIrjHAY%2FiS4Ys9bw8e545lNAuP1SFIlOerDu20N87p4juImKwa6KgAiJ5V%2BSMzsybKjurToJS4Q0oMeWi8b2ZLxCifV4O1ud5dOmF4t7JNggRZSC9YE1sUQZTwLSS1PBhxSZcTDk9zgOSoHWcCxyBEXQcfBoN5Y6huO0YrXJ2Ifdzmg0gmt2J%2Fv50flNrkVoJ3l62fhZGqicNf1Pvj2tnIRdMsT70rDkdKfLb0%2B5eOohd883RmQi%2FYi8IbfoSE2mKZmdtpHlvL%2F8f04p95dJxXL%2BN5pXcLymTusS2cPRzxRI53hAjof7zcCOp0p4wcMD%2BDvoHC6a2bFFOiWjhoOV%2F1W%2F%2B3zHBobvXYtem3vPh7WPSJqQsqaykRG7sNo045HKi6qbe14gJUrIHb8j7w%2Bz5Iz93PxEfz50a6LG%2F5tiwdjEabE%2F%2F9UsrkhRvhUJv%2BBxQ0IabBJUohXvHxoK2VUKuYvvbvykVxaq1lt0lcpI3%2B%2BVEtjDneuOtPEN2pjw%2BvebbnMETroMIsZ1ekK9xOooFQhtpc%2B%2F7YiLDPoW0BXmDKtiE6%2B8tGXnlnLmbHewl%2Bf4%2FxZLf9%2FSuXP7RvqdGbLYxGwb89of8B8%2FiuBR9%2B%2Fer%2F60%2FckYbrGyg7y53kgn3wxViK9%2Bv9RIFYs9dAVE2tQtt3pLZbTvRbuWWz8tetrCMZvaQXeYO3x530ChqDA4GZSJZIEyPofJQGnFonAfTSYxOs8Hr3OKHDshsnCOqoX7N7OXpeTZa6788Xhd9elgz%2BiNQOXYIcN9v3xZ64drBWNIcGxubf2kp5WX1qpBSlfNDQuGw5JVSG56K6%2FV3R2bCD%2FeZFuMpKS1SQOeyfAPm22LkKK0JmnEU%2BlE6ZsEZVHWsMfDerEs3ATq9U18R%2FgOKPewhh1RgujsPFup2Iav1%2BvwcbHFRufxyhFb8L6diq8X22xvZ2ziojxW%2BJhaJpdSnc%2BiGPkMZOAtOOw32uCAPNSRalnqMOAbxLCtlLcfE74zGfAHvE%2F4HkusnBUmWMIRmT5CmWG%2FJn93MDCgDYfkyvYAW16S%2BqFzd7TL7dMbTT6Ju6vItaVoqDgweVUcLLhMsUrcnkpz3qvEYOU4vYYnMcFqITb5Qn9bNav1r8gMeumTLgcW1CR4tLM37QBfYRaDGOB3v6KKeZKktNGZJMtqH0FqHZTsLvum7Jzttu2cIygJTwRGNGjPxABAGdiG9mhGvAs8tHa9OUQQi8MEvdmrebSTsZY4DpdgI7H4xAs9YOj6RNxYMhGGGsYKm8eQr6JbXqlocCnwIXTrEeRYfstaqMG7eKKhftlYjn0QOZg3PoS6ZYkZV%2F0HtFXRnefaHiNvOo6Gd0YPGt8qr6rdf37HP8hbq4%2FV7I9Wnv7nzKpYcPonYk9kDLCt3wWmIz8fyr9B47tRtNq2QxRDV8NndKq53vHgpjz08niQxLWTT2cUx1mamKejkgO1JvO8LFDvhXOv5KTQabcFi88HisHwDN95%2F3tJkSw3gy2AqUIjpkKpp8RVFieVQ7WT%2Fk7pNvva%2F7qLIXGMRTDIyjb9mEnV2Ewj4DNdosZgClIEQoi6aNR%2Fj0iZ3VsCcTjFlrrZFNqKgDXLS%2BEJAxStkVqj4j%2FTdG%2BZyUnjcG79keI%2FGbgAtaRcdrC4VR0jwdlRa9xI3f%2F%2Bv48WkYgcb7Flz%2F%2B%2B2niN1uSmcvh2MgobkOIpdmR5uNJGe2X72Z%2FcRLEoSNUbadWBOqe%2BXIX7PrxE6uON7iJANe5mS%2FOUf8qsNyHdTihUhl6SFh7wMR2gmTZ%2FdqCQihUGc5J%2FWT0LJpMjaUj%2FIiKZyEP2M8w81nWCGV1axPjodUMDIhFmvvWnEV1aEE2%2FhCtC68Q1oaBcRyX8U4FTgWV5pusX3MWeq3%2Fi25zgck%2FI8X9e9XQGcI7JCcDJl7httTVSP9t6SshYB9X5o3PKMNloTBbmj1eFzjYl%2FHf9oP%2BOn%2BjQRMrQijPZCwey6b0ge%2F4OIXR9Ct9537cp1%2F6rvOS9aWrFygcVrfN9lXt%2FDzqKvs5ECpP39AfyBUNyru8OlGZNee7g85S3H8VcYtBpt4oj23bUnSoC6yWta6a6rhlt%2FC8cE6%2FRmbwUECypM%2FVUC2EcAuN2BDWcQotRTSarjYUWDqcQMrGapkJINsV6xX8Iak5BDWJyowYKgKqp7hHNRCwZ9UnE3JX8jWEkBn7kv7OS15sPBfakhC45GJyCzXN5r4%2BkrLTJOMTWXPiQJJdsFq1U%2Bv1Q5x9mMk%2F4F%2BDUfD9P8ZJ8%2FiYysf6Vj5h8F%2FloYmEE4L9OyMd80AW%2FbJ3cRyUlzptLuNLqUl5Z7Q673onM3GldMmIZyQERHOXTw%2F%2FIv0Iz4cwv6VbHnQDbulvIWM%2BJ%2Be9Cac4UtEMgKf%2FXqtaIuhOqLJwqgXcgdxTDU6ch3647dUb0nSCM6cs2xZG9ueYFDozXiVmYZ%2Br9zJ9sU58NU77gToMVuTDHMoocyIVWW1LqZuz%2BZ%2FW9mLFtauZp5FR0St0WXv10y88xW8%2FZTR8hz8w%2BauoJVwrHeqWZHMfjqffuhuqz9mFs%2F0NuL4S3hbO8R7NP%2F3NqVmn%2B4cO5Rtuj%2F2Z8YnHx5vtFLD26ySQXUtoma9MOkk%2FAA29fq38rGpnYZCu5dh%2B%2B%2F%2BOL1%2FuX%2Fs1I4pcW5nn%2Byz%2B7ePDJ5DqKZWjpQ0qf%2FXhfURoFBHr%2Fh9aKvyjLj8MhxxZabHq994MxiWPLzp0vb6P8zQB4j3OA5wtyZofcw7OWDAkzhEOzRkLZN5yPfHOdYN0%2FXmde9Zo83PIUIJbBZNeMm43DfqDagQugwXrw%2Bb4GGMiSSNWykfT0EVI9jJS%2BtSjsBm8x2KRBF9ey5HKr%2FMl1r1wMQuRH6KCUQNGkrpwTIdNmbP%2FsJydRrPPJDxEaQEGCG2f2rgxuyEPPOQruy4JriBNOtUcpsfvT4E2%2BOwfg6yw9UNUkJzvqiixsy%2FBrsJLs8BZDbEsnDTtBCMsXwDjPfpRLZpwgHPrGEhnPgDEXCNqyBc%2BWxDmEOBIJJ2Si3hSxvQG2jlajMXkoPGW1btN01CgHreS%2FMG4Cw77Lm%2BF64K5DVW2YVs6czSunaIzUmjdqnTrXYNnfRa8vuaaxp4Z5bgNEYhzmTuMw16fZh86ygNCG10o5FuzdzHV0ImcbQDx7kvX2FRp1H%2BpNgDGfI1e7yn%2F2N%2BQoqITCPDsvB0XlZiKVotBwqIyqNnQb%2FZRz55CWVK%2B0lTNEHDf5FC0sl5D9bQ4yj2Elr7olrwytsM8cNireDkis3D9Xtu8Xm7riX%2Bd%2FD%2BH%2F00lnCe1U0eH9WGgmfCZi2PFyRKRs9DLOmoTFpUS8VaPLEXFhHqCzb9LofUL9pcTc%2FiKUevBdU%2FbepM1JybzSwczF0JJRy2gOmLdU58fS7r14reA2nvrlhT%2BiCTr3sYuHz7xVM367qIR4iVJ6ZFjOdtLn%2BKpYatCO8xDMLIpVd3e%2BssRFp0RmDVF1FlgNrNtqn3oerr77Gb%2F2vrvQqBhMlHy9c8XvqHj7rv%2F9r31nvK6wCLKr1kS4BhjzG2y2%2FETOVQLhVo79n2RbAQ3Lyi2rPxmQHTOWbDOoR6EWSw8Md%2Fc765l%2BpkJj1bEsvLd%2FnBOTGmKNTSGQUQHV1bQsW9WPPQ5v1llGrrpAlbpMLyeUP3PnqwwSKH8fHit4VcIy064cMkd5Ko61mHWSqTaUSZDncFErhQNYxp0YHuNH5cSzgODZcVyyDYs8uumTtZ93mCL7y%2FeT5XkbqlZEIsb5p1xcJZEeClHMZWV6ynfvnSwSG%2BDf8u5pv0Vkw2gvySGV0jxHXQQO40fm%2BFMYJcX0f5QMGFSwlmRj%2FJ1ebat7%2B5a8jUQ5%2BTW%2BCeF8xcNhBurjCT7RIbMQmQJPqdpF6XPXMRdZgmGGUOpg7LYcSImh13EWmefyTXp4k0QJ20bYSwpeSqkKSfrewDuN%2BUQlpBOTTz59SIyJoUOjfwtiQpVRBm4QEGdO2G%2BfJkMvbG9HsmQ2SenJP01oJseEeTxeis1e%2FOQh0jl8lwLQb1U7sXzQhe36L%2FKVjGxj%2FJNeDdfq0CMfpZCv9Y64L8nbSdSToBHfjHC96uGyAvFre6ZSiMgQeMOA6hJX6WaLUUSkYjFUIp6KwaoB%2FqzV%2F7Aj6RgeAa%2FHAhbQZK29iGkxJFUH7KEvzFKR1ux4M9yxmAqPMPDEu4Pbdjac81EnoRPPyhBS9rY9%2FMnHl5dXBZ2UQUFXEkZctYZYgN3xzNgCVgbZ9u9Gu3Cs30T2lrY%2Fn%2FsEBXg2rZp0AMsfSq6M6kPNfU2MOjEZjXCBtKJMLO4mmpTN08oiumz9R1GYB6QW%2F4Hx30ITSTytPKzL5t3UL96oG9w0uEWD2vXX7gSXbNTjz0WxsHcNd7NZ6HHVeFfmmupa9oZxdM8TfIwj%2FNiLLlnwI%2BGsoSfzUfdsipuK7I%2F36RLWW6Oj1pu6BqaqVvlFf39p%2B65MVOmGQVLXYL05%2FeW5pUswUdWnDwkG%2Fx0UHEKvbvl3QHCw6qAAndciADUb3HgABLG5s0uJWCmWSJ%2BTI8mIKNwbNKAAz35dxE8NSEQHf0f%2BfkgoOdl80etsrrJFBZD7CadO2CGSID8KnIBHOnX1A6YiIyIh6vOk2GzZ7FwsCAJ45gdXT5F4Am7RWW3eoSYtpvIH9X01KvtRDQ9pgl9Wq1w31DdQ8XeU1XXMHxoxGe2ijLYm9A99jaK6wxbK%2BVxkeOfqHQp1zn4b%2Fpvrv5Ht2ddtBGdbf4zCgXD4kVs24hcr%2BMKHoRu%2F4qzeqVdo8kjpbcLiTSzWeSJh7CpMuLiCz%2Fsv%2BH06DsdPDDCELso59JyJ4O1gWCSvwpilpT6VhuY1iiPFUt7eUqHZJZkVCQ2CJtMAGA19q7jcktnR8ADfZBrkR8JWju8yc9scrgRbpaqYw4U0m4aHORMsk7U1ajYauSQrxYylc7YPMSSjuJ%2FxMhqz0SW%2FNRPs82M3QIYJV4C3Sz7QMy0EGhHm8WoUzUJgMqHB3zNEaCA3zWqj09pmN5OBSFsbjd7WGmamu4Cb9AJ9KujnU61sG9vcyKXm5qMJloj4UoN5qq9%2FvT7omikIhsFZDjO9XmW2UajsMWvyil8pjRBsZeH8IrONzcPN%2BCx5p4JxnjgQxDxqQLtEWmqTtayZDVnmyuMJ9cpoGa%2FX4%2B5gGfk%2BTKE3KG51zANrKuRj6WHhLFLx5a2ErZ98UER6koTq2nfZq4rkrwmpq0qOyhQbQ08N26c%2BP0ZVhbksQ18e9QHyz5H5a0YJuukYCvK2NyS8bZDF15Zo8LWbxQxBeXQKXAxmYTFvylm7JCFO6kG9dJGRKr1gNX48XMKYQ8NOpvvjZjZLYzPoCYEG%2BMmriiyeuw5HIgMfUqnPVRlJM4kQB0pmp8Q3v8fGXsXJsbSaW%2BkAE19RIyAIyzh1%2Bi%2FX2VI6kCKvNv4tqG7JL%2FggZepv%2B1P1gMVJYIArq5E3Z%2BaepuEatK0TEI6plVuNZ8QNSBHuXebOkCvjLAH3qeZIErlp4zCLNbyxiSwb%2BZYDGmXyrzmcJ3IZf50V%2FOXXTXkwIoSsLvaDPqtiC1aoS%2BTB%2Ffb5WOK8PQMnYuc9vqNdK2lsWiyLDaZT3a0%2FG0JHJj9BTlVMaWparD02Gk91h%2BpXhyp3zFfzoXXz85rXe8nPEYuBMXDzR5JeizrhxjtsfoBHX%2FmBHfiKBcnt%2Fko4s1Gb%2BDnG%2BTv6l4vBVzYLWKOf2Clfjoss5VHTCw3qL4WZvbv6jA2eEHPlNaocNdggNacUbMsCODhLrgXLkTs42%2F5l%2FEttozRKgYcT25SriZxcGdn6FTLWMdf9xm2C%2BTkyeZi3z7wNThnGBVOmKeHUVv%2FWHcIdph2ClTsMow%2B9qIBQAbqAt1kVy4zcqYyCzAw9XcP7eRm7Sm%2F0U0SgmzeZU5YHmL1xVPhfEZOmEsmZ8YXw46ygq1ZfmljdmXqzwxAxW3SRFW9nXIQp9c3SljNldCchIJOSfJUt2Lo2afOBZ439orOros%2FUDYrXUK07lcrFfMo5qj962nS6q0KktOzR78kWvbFx68Ytp8a%2BL2%2Fdd8vGMi9v27gN9ft59D8Yn4T2%2FIDG%2FOAWSRPd5baHBuUolI7dO%2BEP3GMiZNOWCb9usfgaZyQ%2FFdhw3jK91SUPmI4YL1NF%2BeGWsg0L7MZ9wlGkaHRVt%2BNoyn0mNkB6MBErLqnKff%2B1D4syXcskmU%2B3Z69v9Tt4YtEtmUaTz0E8DvFGJrK6yk%2FvuhiOrTBgMiTimki3FZXUyfBeE8bkv2vt5WpQlItQzQqtuQKpM2oVi9%2Bt7fYeazFbkLOgl5m1L5YW%2FrdjXhZhIf8MPIHZmzNpzhX9N7UtJ6eq4pefom%2BCtij57jdps1f9qvoNFXKW7Cou3lVSfLLY%2BYaOF48cVuiSGFLyRknxiRJlvOTEj%2BV24UlsMYcjYrNF8wLi0aI3cdg3i8pgcW8WnmTr2SyD%2Fgo9LHZ5f%2BEJLPpkYdFJNPZEIVU2OiQgl8wbdB2cOZBWVITMzk%2FPW8xzbEcP%2BTBywQD9GP0U%2FRz9Sv1GSTviu4iIDPJSAtCP0U%2FVr5Ss5h8aQT9GP1W%2FEvkuKjZRYLnUxdCP0U%2FRz9WvBIag1Az0Y%2FRT9StBcFj5USHd9IPIBvoR%2Bgn6Gfql%2BrUCHPFt5AkqeWkm0I%2FQT9Qvn6YZwqAPrt2GfxT%2BifKl4Lqm0AXPYmkuRz9CP0E%2FU78UYoLSPKAfoZ%2BoXyry5h95rnzp106%2FziIQl0OacDG6E1hrnMcH1EAnq4foKnJ4NvEXw943mEIVIGZYrxGfcIE%2B3TB7crA9DTpjxK2FUwLugOerrdU76V3xCPfq6%2Fv4yz8GYZ2j4SiLz0UvZXx7L1RHHLv%2F0cqjuqub1HZYaxl7nMLM19W1Iepf1S6ta6%2BfNTVfaqbUHKnZCSrzhah%2BHX8bxc52k%2Bq%2FPHv7PcH0vj03IN448iWII%2BcnPb0JN4EGpCWNmFUlVfATtYO035TwaXOzoxYQP%2BtkwDAI8OwQhrx3kH3vXzAGf4ejU%2F0WkLZQ7yn3P6fpZOEKDDQaihkwDN7%2FiJ8w1eHmxB1zCdU91b21nyr23MH%2Bnje4Ok%2FNJZx0Lwq8TLEF%2BB%2FxmuFwD%2Fq7ISJNjQ4D8e3s0TU%2FmKRwxdkN%2BsNzGRDYekZfBucRn2iv5vuL6b5U14d7rPjEQ9pXdA5qH7trn2ldh8f0zkleoe%2FpQesaBKgt6NZQR7WB%2BZ9%2FxtvlxkLNpWhtgdFN%2B2bppW0o43KIUYUGhFkeelWnTURybJwgi02d%2FX5u1S%2F%2BSufEbN%2FGPVU5MH3b%2BhP7pn%2BGoh7seq8sOM3o8s4lzzEYhgMw%2BXVuG0sbZ49d42r97HVsYi2b1W4eUh1D%2BMCcfGcxrO7AM3NYKzjpCyiLBvLR3znCHMLgPjY8BsyY%2BYbl3kKVnHUStDvKLx8V5BcMaPdzdxVErVcJJVRy4mg7bB5GqUaWU25Yjkjnv6PYxFlxDmLArEbnjJUkMaZYEAjygowGwTme4Ev4ep6EWiFRB3w%2BtBGEVuAeD5GIFEduAPBaOIhsZMVszy%2Bwup0WgLF9hKJ5TiC%2FFoSIr1acOZJ14sR%2BlXbVbjAdwrMhtCoByTYjygMiZU8C%2BXmufrq5W6hXhCWsU4EI9YK0OqH7FbBCEW5iDp6EVMg0A4y%2FQMQhWflKbYoRvBYMwfWY%2BOp9zmw2iFl4DhtYNZt28MH3wAQWjErKk7qA0kwVc2Q5eV%2FoWg5fCXKHyWGExGA%2BEkj5WLI7pjoOChY%2BUKs5jme5kXh9nPiJ%2F5A19Hlwm3La2V268czpUebPitVDOXofHYJI3RrVATfG8zapEuKud5P6XD0YRyNzq5%2FiwJ0XOj8moZ4kF4nKDpMwF4INmHxgOhPzy4UoeeUVMVumICsXvJifk%2FTW1wBMgMzfVg6bAWPEK%2BLJeTrn%2FkX3L2%2B1J7uyIFvTBJUgT5N1KRGtosUYWiyDnDSvtGx8vZ2Ma20lVpXpnmS2qj%2Fz3UDd2HyQESXfCYkMztkAlsZ4j5u3BszYxRRolC8vPMDAlRfN%2BKClMfMXzkQmRwSi1%2BvS1ptnVI%2BddDzCOLuPxyh6nj8DbOP9lybj0OqSKOxvJJkjCTHyxrgT1jwgDDybVvEMMKjXqgRib2J4dWY9S0A5pNfGg2xB7g3zdB7BJ6mSrNyk%2BOVGoOeiWqY7StbJ9cXltworkqhPkJ6X6wl7p%2BlOEnp2OxUKM5TIMvXn9rLsG%2Bi0trGygJl%2B5VfcMPH94PHDy2PFBlM2LrTFqF3MJpfSS5eTIPKgMdBsgnThcGyewn3c9IqOZTlNZHKQddzLQxZeA0jtxEvMMmlvwmEf6keKRKJtGVQ1Yvah4LxpPVyatqK7GhybMNisZnhMjlHT0ooeA%2BbZmeNXzfjB7%2FjbzfFZugfD5IIoJKSxkKx4yvE64jCeeFxuzoTZutVhnRi2t8j7X0GKSbkLCfKUYWzqQfxPL80nKS%2F02mtLNIsXDLkZEGh1szBTI656FykWFFOaw4pcxiXWAyfOpcj8LAGQEJ9ZMSzykYTsITRZqRKkCod9YOrU0papcdDCQRSie14tylGVP5qsIiFDWdtK9johxj4Kb6A9bsPZmwXLs4JuKUzL6UIvkxY5ZxLZ%2FKHIz9eNIlemIB34F%2BKyUSJ%2FMrsU77u3ghmuOi2%2FeHAoo9g6l1grXvpGmcUPkXw%2BPyyxWlY%2FITyEeeYshDjP6tfQbLF8npqUYc3NuetY%2B62NZ6ZYkpVQOjEP9VX1HveQsGuprlSogFV9WJ5%2BJoF8gKND6NQawwQUxXnqwFEKMir%2BYkt5eyti3r7ViEMd3zcfJPTQppeBLvJctPaDinjz3leklC%2FNupwbcWZLex69dkpErtuubFrFYV7d7hAuBoEEJk%2B0M3hpj3sQzuuNCc7umVOBZOozJNgOwuSwxTKUeYEkIxg08dMP6UwOI%2B1y7ZIEpPVGy7YK13KRlI0mKayR69pkebM7Ly%2BRrmSQHO%2Fem7SuvQ3StrwtsRhF4cPKQSMm9rJXXYaAHC91TxrrG50E%2F1MtBZFxm556BVJmQyvd0xcyV6VeulZ3uLhtqneSZnEGkdiYGnJVTC8mFNwPRJk%2BlxsOaBPnpzUyu4KvrGGgUH4RCgxULeXu4KjJdcddo6YzrHQWf8DImoA6m2R4xEWVdWJ9sZVWf7ZKREVpeQ5YJuq8Joa942khSDlfdmMSzUeHTMA77ipsNhsNs8cRYV03eI%2BIKp9pOzrKmcgNkifTEH78oTLTq5U%2FgShX950sTVvH3UzunZSrdBvDTF%2FIh8vU7K1DWWf%2BNXmZKq9SZMdTY1exRiWkh51cTZ90IFXCrW9LvS41ryyO7k9IqyxTyciHmQoB7SZwDbhuA1kQdEaeadBDYBfurHArUymJGmXPQz9uWOAp5A5knmBJcuU5Huj5geCeMi7t4tw2ud9cziyjoQwPa3%2BIdqqT5lyzt4yiPEf0B6Wj1wBA3bOK9QtZrqdNdyXH7TA5McEA9va9JjixUr9wtlspiLwLlzugCaE9p0GcrSFvrvRKYkTWsVlZnDg6cDYAHuwkiKNOg3kGdwTduxvvj8UzkCs8r1DB%2FLHN1wW0F5PpfNNdpGN01F4b5e2F73AXgSIAYF9nBkS53Mu1d7iNvkFIKAMdtOhJH1r6MsJqtAHc1Ak2jYbS2WT2yn2WMZW%2Bayxpuw2e4pm8NHjAhABQR9PVHkvcMTd6O%2BhAm6EAZQyT3Vi3OMLmT%2Bf3dSu6oXKRKYetmfmuhiqQ6VodRYpLyhRlVKmszduw7qBLjLfqNFS6Uuk4e%2FeDHIVJ6Xn07QtxZ2DRIYZXd%2FRE35Raawy%2Fjy5TU9O07X%2FDYt7zXwESijBCmOUHUA2HesAaA%2F2MeWa8eSZYpxXyKxcflzCzl9E8c1YhWLoXXLhWkiiVkPuDRttTj6RIaoBEjKsmRXCdrcTbJUzcHr8otZzCmAmW%2BfgNeCrhdqGhujCaXz1LeV4vP3YkRHsrNgWXgXTi5PEAC0Ug0lg5IVTxm7v%2FD0c%2BUyCN%2BwEv57wtJYTaGhDoeAOOSbWUq6ezlH4WB3NK7Uej4a1T1F5I6oPjB53KsnXPo0wl%2BjifuL%2BhmfNOvNiYiW9HYYQ9n1x2Q5xPMt0tVLcvytVN0cM4oV6%2BjNuOsr4FvkypB267xhvR%2BBqGurSjxPsxrbS%2BMpU0Io7QoimmDKbgQPzQSXROYxMbYMbJ30Z2ayul3t2i9rb49UPsIIm23olmamyk8YO%2FxLN%2BJO161PFSzo0uyhsCXASpwUXzTiIYaNo1vMVwq%2FOd7i4IwW6qP08gu117l0f5ThHavXXIfkZhcHlNQj9ia27y6rv74EjJHR99sWVtp60pA6c1zrmHs8WlaE1scmwW%2Bo%2FmLNXeXd4FYUNV%2FXgRs38u0%2B1CChPxagHOG7oNsMogng7rsJsK1grdpwlqbwlVEqqdY0ucZEWlzsqNj7sLmGEOTbtWetYUwcWnObbImdaXwUmwobuL5zcq3Uh%2Fn1Je3DZSkrTXhhFpk0zCx2EOTCiVAt8OAmL842%2FV%2BXOupv3LbP4FfPJ706T4B%2FnDzfjfb5esaWAEAxCg%2Be7fhvaxW%2BEeL%2FmYV4nBjrRflV%2B0PmxrpOXYdKaW0SinZmbmIvsRtHUIVuxXeua2cLKA3lXRT1u4mL40JYwcWt%2FKEtmEEUxjRk8KaGbypCRadLdPAYWEgMMT17AuKBaH1sVTT9BZ8bs6GGCY31j83kd6Ypj%2FP5cOObSWk3RrDxuGuqg0rCnB8PPqV%2B7fh2j6lDfeovbpeFTYl6nadHMw4l9TbhTHlQ7AkP366ZY9fk0Bp9R4BPEtn%2BnIbGAn2IT4NxXft8knPuv%2B5jMMmgVb7ctTNICbz6eCbGBBjVPY7wKuAyOdVmgKU0bPSn6cOS4Sz44HPZAOcTAfYoVQDdkZlj%2BZsEgg0kExEoe9LknrOfUyOISqGDX0tD1EV2gclqvgtIk9Au5xFTIAt%2FdtAELpm1A6fr6sKIZBQwNOgGEeFWeuIflRlaIeu0OHqB9MQpl0X0Ps5Gk8GuPZ0aLbaMA06UWWFRmPjklEJwvc6SfxH0qhTKDb03VG3arPSCnWZKssVnFuglgg1DOH0vu%2BAOIzrO4hMeYNbofX4DgchUvoWgYPnvYORL%2FKmvsFYbK%2FCjHv44rhIO0GHFNnqVPKLvcpiCWi%2FlBJwA6%2F0i2%2BsflIgFGQoKtvXjYOaZFnaUcgFkQZMdQS8WLWALw8N%2F1i3harXoxl%2FfmFqPoEXUC3QX0SGgHsC4%2Fr0g%2Fg1aebX6NmgzrE8YWI8AnJCGmYQMysMmGstrgtAoEG2lNGYY2%2F9fu16t6OA7R3xysAmKTCsKWKBySUdkYZ8ynK0U5x7RqnwyY%2B3KFVPTG0rNUqgmVyOWyphgf0UBM0dOhD88U16FavEd%2BJ03YSGDBLD48FOowhrvnbsFOuT1a%2Fzf5IyRl3KFI02A%2Fd7zEwP9I%2F%2BOfm4gHxCQiJiElIycgpKKmoaWjpQKxs4A%2BQbl7OQ0PlxxIRFVOhUpVqezzpvL2mSJg0zWWNLrjkuiuuuqbJh274qlc%2B83njO%2FKaj3ysxSMP%2FKBNq3avcrtst1CvntnKHTRghiGffq1B9yxzzP1Cgx28yW4bDZtvs2%2Bc8JUfIQ8Zj7gex%2BQSnq8loIHSz0ETYuFc%2BltDl5DwbneHW93mEY%2B6z%2F2udg09LPdmt3jYTt2eQ%2FpOdFExwSSGibr6gmKHXfbaIwbHUAzHyDsTvU3jMRGTMeW8C8or31b3Emx3ogLb3FMh4lcJ%2FKuZ43s%2FmBYRZjuq2WSXVaS7%2Fd7wpgPe8q73Kq4kdJiw4cJHiBgpckCUqNGiV%2FpR%2FuNDAwYwFj%2FbVDuj3cFlwmDX7HqhCSLdXdOL%2FYOLlpKBoYWnPdJAy5Lp4x6xqXv5Epk7u3HJwmJD18L5O%2BucgMAAOYuAyDiOm1iYrouzDi5ZeHUrSmKR7GotszhJIhSiVvIT8UVjVRQuUsXhYlUSLhFSHKRE5auFiYWZ2sQKFFuIOoUmYWoxf6Bvbk3u5khicsG1krv1bwfJOZQiBMk1R0Y5IXBH%2BCxlOnoz9OY2Q8iV%2Bvhv6ax9QIdd692%2BE6XGAQ%3D%3D) format("woff2"),url(decidim/Source_Sans_Pro_400-760a5ecb51ae9bee28469d621b6604d62c8c7c4685c307aa36bcd2d7d28763b6.woff) format("woff"),url(decidim/Source_Sans_Pro_400-2a609d31517ddeffc729a87ed0826716928ea0ff69833eb62ab463924d589066.ttf) format("truetype")}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:600;src:url(data:;base64,d09GMgABAAAAADaoABEAAAAAh%2FgAADZFAAEMzAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAbsmgcgWAGYACDZggoCYJzEQgKgblggaItATYCJAOHRAuDZAAEIAWDXAeGOQxLGzt5FWxcZYaNAwDDtTsYidDjgKQ2NgqBjQMEjpyW%2Ff81OZGrfrX9AFgZloYp4XBFpMNprNW8sVdtrkqdi8LX8faEOu5FN5sf9WbQbEtPatw7HPkIw8oIEraysMlNX1A99A%2B0KARRv%2Fa8U5MXjU6ejx972rnz%2Foo4IiJpF6o1jVQijY2YdhOZ4Wmb%2Fy4ErKbEA5WQKCtAQaxG1AWYhbosK6Zzf9GuZW2swkW0i6jPAM5Zk0yLeIWmTVPx1ISWNtXUlAruBaYwbPYPTEw4M24K7Mw5N3bbmXMBcKm6DNPEyMwxMdY%2B9Sm10FqXi1wkO2%2Bj%2B4CiO5ZqatLa6d1JG4IS2yXAmVHsabNlXw%2Bf9LK%2F2W8Z7A0QlChwr07eky3xWZKRQujP%2BWUa1g7LnixL317%2BwW4fDq6AklYQtRYnmKC9AvhvQACBy6DoxoPbvEaRoHxtZ%2Flpv0keoWyetiyel01ahbxQELX7IgLv7tDCQ50O2HJ9wuKkBcy8aCHg2hfL%2BAn273VarZ4dLfA%2FIPYVVW7LqwDbm2sa%2FS%2FZ668vJZad3ERW2EuOl2QvhWbsTebGyRFABeTvLFiL1qL3CLgjLrGoioUr6uKK8v5PZ9nujA6hv4CLMkXjDVAFXJRJUa01f%2BRny9%2BzoEOfzgesY2%2BA%2F4zku5HGPvBugLFEqtN1QG1SNlQ0l6oLJHHz%2FgYU0oOlMqAEsygcYBBrxVi8PvUI4JBJrWk3tIj%2BGvbG6i0pUoIECRJCEG%2F4NWx%2B3qKhlydNETUiJZhuGIYy6b%2BPTH%2FGVv3hxlz1nNtOKCpIPuARxuzPqQUwW%2BAVApQvSMjgC4mXAFLgCylXATLJFzLZFLA7AP3%2BwEwiCvARR8WmAqsbLtWXAzIUoI0CjB0h8PVXVpcDq3UMkOX2KBhINYsMhJn8xp8rQqEZVtnpuDte%2Bh0AzYSIYYQHYsWUPRIKKW%2FpKjVpsUK%2FTY4ioPRz0n7Gux%2FLYy0fw4oG%2FX1ogCWTSWfv%2FmhF1%2FX3rgHOCL%2Fwg%2F9BDit52PIFAPzBG%2FKCwhun71b0sy2NUKT%2B%2FUb5Sd91A9yZIPVXlGkv334AEWLd2zSj4hLDgF6YxECUQs68AV7b96L0KOQHHqPHvNvD8ln4yGbSukR6GZ%2FZf81e1ui7wosfhAKL33cSAH8CoD%2F27nbXu%2FajUviTlSCcTH0D6%2F%2FrTT8NWE3xmg4C9N6xfj4c6w9x167rG9i%2FF7AH3HS36L7G1vv9sTbw22i%2Bw2f4Jaewl83P4Qs8%2FwFQpFgg1qrHbHCyRk2xI52ZczAkd69uewInaFXwrkfBlBWgnM%2B%2FlwbxasY6pgUnBj8hiN9b5Lg1OlpfCDBvh10zvJIExPsUCHWBVyQvTafXqop150B4HyzEjPWW5s9900eKCPeOTVwMS62LxIkkGrNPZdF8t9D76%2BFSSfve340SPAMC%2BHMgblg%2B5QH8qc1%2BPDTafke5qvNRoOR1AqzZddxQs%2B5jrNXxFau4vwUCd7w40WDVsHqV0Q6q6ZzBtZDJho9aXU24PYoqwfjmCVAXBvu7EHr5nvQGxj7%2FfpVeH1zZiXts574Wn521K2jkqbcvP3%2F%2F4KqiKa6NomkEJyDDCzp32Vw3seRU4e4ov%2FvkHWp45ZBy7BqnQlNcoEuQsoHsd7APGjAV%2Bu315GVcn8n1HsqF1Y%2FEAHW7ifcrtz8nrj9%2FWFGZ5bYqFAhJHqxqMT9t8VX%2B0c%2BtFs9Qihb8uHRpg00p6qZmwiBXpzkm6Cwe5HcwjTQGLW5h3d6xCpgzBi8ifXpM9CaZzvZ2174KfyBj7e%2Bn6KjnO36kVi5E409OEaPHW69xX4kCE5unLLVFNT5Tb5YibTKJbKKcNYlXQ%2Fgs40uBbO8CUzzPRyG9uYPW7OSTP5WDHjR1TUtuV3ezDJlrd1TX1HH8ek3QuWnPsJvApx9DOqS2F6CIOIzkbGJzvx%2FhUGANxDxtl49Y3iJoiWkQdSZBkzejKoh9ZAxbHKLkUGZLVjSoY%2FUkR2y4g9elEH8GugJ3qmZPeqfVJvqT%2B30NPdXVXG%2FtivwIoju%2BLhaXejyHZgy33XPNoZ14Wbm7c1qJdiCa7QLXpDFmss%2FiV2dIcq0Q1JjkIhJRgbRRZbfXTOQIREhL1WZLxd0ZTZiSR6cLkHzYfnendnuxJYhs3WAparOWHmQOvZeotvgqbu46XgGtraqrN9GcNhZSv5JkM0XvxEp8GDxfAOhSeX85Bw1tFPNboPi13SzfyHfAFlFqfcQY7pu2ef2LAK3Kb5sqLyiTPQpa9K2qdL80kHGvP3d6k18JrOS%2FwAUp250MNZ%2Fgnu6XIezFOqrX7eAds3zQKd7mAspB457g3v3kxD2mwYt7O6mXyLeHzs%2FszsZ%2FhNgT5B5SeQWNmKtogX1CjsfILhecNbHyNs37at1Snlm9Kw8Fw31ZhgJPdNEOg19LayAZ5KFZ3kCgtQxwxJ%2BVZAwDdRbQFdDnFX1wqts0X93X3vXTbQm0G9KfoqW2M3HiltAdtg6CUvWO0YICoYfp8o4mKO8VMMqScHRG7MUSCgNsxoML9mb16TzpMBSok2WSKUos0KVcjxWmWV2h%2BdaiBdajhfrRIpvcNYCg1sHBI7DAxGJKlFNbZsy5nxoLXBYsWbFmg8%2BWgB17Dlw4ApYjIf8oMb4KsHoDLt8vgysMHYMvN37cecBVJhNBKRA5JFIaKHOhQMK0wJNpZBI5KgWBtb5Z1ADtTCTGAPe7AViDhI7oMoCTBYF%2FDE29YdH4qD0D7Eaqi3DLCICdkZgCFvntJ7PIzrRmJpA1S2TPjlmnzaxjMMtoDE7eRJA2iIaMUBTmXkJmIk0rNDJtYAuwk2C2uTBc2UwHLPLF88TFxkN2%2BBabYJSoEIydrMUhLgaVEHIkRW68GCFP8JBApnx9PfkJZiE0bi1KQmNPlAKRCmQibfUgauPYGE%2FHTo58DgoUYitSIfqqoueoVh3TX2k42VpgIXOLNOBpJETRhKiakasWXxet2mDaEV0HMtOJ6LqQmR7E0ou4liCWPl%2BupZZjWoGI1iC%2BdYhvA%2BO%2FqXvJprMtQE4GEMlH3eFXLId1ohUrthRy6HlKDNAOT07FAPuM5BgMSDwM0hMLzMRsjMB92VB4hBuuLdACSXO0ipxS4FcFMMpqYsEhtxABxM54lF%2FiKDbxMUJQqoXJYG6%2FQGLimu8GybXKYALU%2FXoj4PgVzEUkwYCahUMQFIFhFAOmRZTXT%2BihR4QpAeD%2Fht%2F3cgDGm7HdBEAPAeTD6gZsAgEUQHRxwyC8kdBcARwAg6IC5hDyJ5NpoilmOOSihz4wQuKk1Mm6U%2Fc2ycPIGA1jYAGYAtNjWzezYzgajfR0ixEJIJdFa6pVDrvkkY%2BVmLx9LkbEqAf0X5b0N8AJQB8D%2BgDAF%2BQPvR5oH%2BD%2Fxf9P%2FvWj%2ByKAD9c%2FKns0%2FI0%2BInw08vlQAR7JPoAzABcBrlIKeALwPOBDHPLbHjywoVGbHY4YNVWr1dbY4pyFllrwgfeD3OCyS65oZrDWJutcs8ot6220wXUfNDnhqMOO2Wyre7YbscQN%2Fxlw3yFX7bLbbTdts8JDO%2B3X57QzzmqRJlKUaDFixbkgXqIkyVKk%2FjLvsa5XqEixEqXKXFSuSrUaerUmqZOgQrsO3Tp1WXxnjqd38oHZLWWR5ywKpyAEZkC7MFrqRmCH4weZnnLOjkCt5w7GOH8jUKwZYgq5%2BCI%2BHGiHTTBlkcKQiUcGvMOJsd2mpgCywyYRhuFxVHKGmwZr9D6PzW3cJAIr1OYaJh4an%2BXkNZ4rxAxSzilqZkw9h244REPZN%2BVpNAEcHtQ7CTWeSzVW3NtbjGf0X4eSTHY4HjMM5ikZSRmGexUUwyEKDYVOx5SGp%2F0ZGbRsQ6MJqMQliXXd9CJiuoA3cNvNNALDbE7PMBxCMdDcf3%2BrlRvdcG9jI6UxB%2F%2FivAYdnh9ogCgLD5rjIiSOHMysU84HZ90q5USakuMUDY0irmBqpmQoFwI9BoC8p4kBfKb4kPIx4CNg3r3A4v0BmJwG1MvA5rcCk4rV2%2Bn5waCNCAeluoJGIUYLN9bHQ72%2B7KpPMLwDVOhUhigIVTamaDIdhaSFsJJWNUAEwftywgySuNILFfAxOIcmTOIZIpAeWhZig4hxwqWjIdbZrZEKAp6bCYIsnHMtM6Umo1DvkCYRH7LMO%2Bln5d%2FLxq4arzssccixE5V9YH5lw8it8sxhyzFZ6hwlDFp4rZpcRS6W0SKolC0exed4KzW3K2YBzKJp0WaNa2%2FtoRox5ugwTMHjWAhq%2B8%2Boc1I%2BHtTu%2FCcaZVkaha362XYUUdUnbmqVodpXeLsM74UDyyakWqtowas%2BzVKW1Rl5%2Fdglyb8RRceTNU52SMWMIaWsCGmdMM%2FIPHoCc5QmRR6fFzwffxoAsA%2FG8YOkzhTr75CAAjGfImRXY1MUHLTf5SpwSPg6lgvz6FLdDSSBMPgv1CWc43jZ4AIDgQ4cqh1iubTegYrljGYpErLDhZNuxWEKuQ55Or%2FU%2BDwVb3aS0P84XTNry5ZVjOIKQHYPkMQxzWLbhFJ1yzGdVDnFDd2tigo08BHjGfmshhuMp%2FhWvTiOjmL5px4zfjjEvSpT5xj45L08DQXI%2BsogH7L4vLtw%2FYVGEjNKrfO%2BGsxbl1qWStJ5Qw5lyZwc2%2FxQTHq4IZILOheZV0xvY1fPD1fbVUBID3QzHQv1S9TTAGRVDEl2eITZQGHy2EniHkSt20cV4xmTbL74cewpXs1NdL7lc%2BQ92mAuP0%2BrH6tzFH9EZtEDmFFONs767nAq3x9PFy6Pkbk3m0Z3JmWKpHH3D%2FFMfkxnzwwkCRez4Ups5kqKti0FrSRETBe7STCal%2Fbhw5Lk6NMuxWFo73gMqkoZ%2BNC0S2hOJGN%2FqvNd1DU6qgJG6aRjlW4XxH%2FEZkcNcrj3sjQ%2BHnlGCwq0vfVv42DfHb9ll00zYs7vr7QE%2FBYQIhRM0T6Xt1yoQbwZwtD8Ltq%2FU%2BpWfDVCxMUYGBG%2BGMvizw43i2DycYxcLbqRAcFke2eSIJH3te4y45aMQDxVCsPwUgppRRzyKgWKfB4POMUOWQ7bMX1L6w5K5GaTN8ajBNgeKTOhZJa%2B%2F0v1iz0Jvqy5zhF79A2Q9b4nV712Dd6LAFJRqV9sIp3booGyeG5NdHrOkrd33o7y7IYJRQcBtsxzdUvRIW8VhnQcmbOI9ILWRa%2Bc3hFiYHxqcENS92XLwpe2VQ%2BadA%2FYYrkiDAwEyeTa08UuFXZ6vyzKSco8d2WIHTJUDXJIA2UPepTRpBsLP6oiMQOVhhEMVK3%2BqDh7ugcEOuU99wC6LbJVInutr61MOYObCFE9LFN%2Fgouk6PfwVi09YaD22vTabv3URI0EJ%2F2qE1KLCLEfOW4%2FpSNjQA9GQ28rLuMtOVDphVQC18sIeQxIJIrf01LvlaZNA4ibnS2HBxtwhvJPwys%2BVhMRKvfcVvvTOVIsOyQZTVunewIBznGSyHjr2F07zgbkXC97t8NGUw31eHWTA546UzTgoDX1kul%2FD%2BNHN1nrRnU16dFhAVXyCS7hzs63wbFFEIVGRpKJ5UpqHdYmT3s6vG%2B76u8TQfNHbUefkR1qjQTOIunAUVmt6Sf0uaSzRONtj3%2BQIYAOnrmmW%2FI4DjJ4UfE3IHs9SKKpPjLsNyrJWAoOvWRFWrLJ4tSuHTKiNul6K9nSzvQ0876%2BpbVkOBUrYYEfIzV4cx2dz%2FWwK2Mv1OaSm1vA%2BGwTzwUaGXJTPwZwAxIWHrbRpRxmcGXyq4xFY73ImT5zBEGbd702%2BZiWMVvbUecEHd%2FsGsd6fJ7XqJ9STPQQjJwuW4qx4%2FKOTXcS%2B0UCQhc%2FVzAFPMJcNpETNhtIvV4Po33t4kfEFm%2FZOLbufqtW%2F5iqoyekpUozypNf1b2JhY6RiCL7Iorq0Pl%2BUVqSqjml%2FGDY0aFS87quxdiproovHHcuVKeL4CWqaQjTHcnnQeuHKydIUFaVtq%2FtDk1KNVQyYlKFoG8TKWgj6QnIpDi6A%2BUZVuWkDqdoEstyz7DJlEd1MypgHWtFztSxdSuT7u7q%2BqndoomHlRcswPuIpzvyudEOzlXXNK0%2FMub0irx2Cb67fQX5s10q%2Fsy5%2BRaU7UpvE7NTg9phGcggU7s2F3Kk0o0W3NfFQz01YNDdfhFc1Io3RY99acZaacBYxIg07Mp4DBT%2BsRudRchTprwIVLkKnhEsGylVdttKx19X3Q%2BW4CD1qjYuUKUwxHqj66DlCmsqiR9%2FjGjJ3IitkyNW14qC7C8zT80lWQGQzbTwVblI3wFF4YNKupmCHv9L3qCmx%2F%2F9qHFIx35CVsxaLZx%2FtdLHjLJJ%2Ft149LWqk95PLHkxEIAlOgC9K2gj0qaYLauVrYhjAmsw7yExCaFba30tHP09I0yD4QWoYxOlOr5TJ3fqxE4yTdvPOfzorpIlwS7dnbasq4cFmN%2Fet9vhu31zY9Z7FbW6JwjW57s4%2Bwh0FmgyAb25jfRuZslAVTAr7%2FF7i%2B2KZ1eNDZY9xI0OHFZvXZ37EGg1skulltRN9RMh5B%2BDWQ0GGkhC7c9ZhJi0EjiPJWxjl7JDOwVngrtrdec0D%2Fr7I3jCBiRLnc%2Bqy7rNTdmJqlDDAzpqmrgFL%2FmzIu1vTUBxkAUpTUBIKAwsldtUhFtErQVrMNpMpKfJ28zz%2B4tx2AN%2FSKvPDOVPEi1vja9iZnN9EpDtMXVN%2BsBcJnOAl7PBobxLz5zVXck9yelTmROCkVZNGLeMRQqh%2FeWbmrAg0kb7VJ43KSAM1IEypkr4DJ3xggwtJC6Di10xiQhy7L2aqcPLT9mDEUG4b2agu0OdErySBL%2Bgwg%2BiAJVJJH4ZohxDePBWGkmX%2Fql8vuQitkXMZLuRAqniK6XADSeaddNxvU7DOiCcAJq6kav52FHVee%2B8Zher3%2FlX27%2FGY5GAwBExZ7WcVvqU%2F6RnndnlwUk1geOHuAxKgdZwKXEBRdAYvNiPppZcjJaXYbKpP4ismXdzPNkHGTqTlzbbIXSzt36s4HFW0zRQBWv6%2F8cWHgmTx5iSSRXyJ%2BkMnap4vkMJ55e8M34Ska3gFXlMHgrhqqFTRsds%2Fen8BCqYya6YTDbfd6tJzYIe7iE1BtEOvw%2FcK9QB3avaRewPQGTL8ePujMdHoJvjYVqPQmjPz%2B4%2FDqeUv3oy5WTZqwKCb4OwBhDUqBtarMIyUWxanDELNDTinHw%2FU8veBG4Ulv68Zr6ZuCc11M2NL4o1zpRwcPyyNDXrCyFfpPRNoBG4aLdJwrSbRMkC5WdPz1BOI%2FzfZWmPahmYR6GWucTO6teTIosfGQiUtAkNunLJJ0bVtmYm1wSlkUtUnZUDIYGRdl1m668TFxta%2BL6IsF8THB%2Fo6V%2B9Jom3wR%2Fs5joe3TCutrl73dqWthrZ64rk8UZdwYU3ujfTmG5v3JvTpMNPvde9z9abh3ApGgiVdAlN8LHv0z8YVFu3CQQ2SFA4d1M7UEOm%2FNuyseILyKZNYEE7%2BAGJL%2BXqV5ji9RN6eBWjx9GSPq6ZDcekYgrytm2fflro6P0rii6zlqu%2B4j%2FizF36kjN79P%2F51lkGaVnPDX1SNAmyqkdvip9Vi%2FI2AJwNKXSwtYyPZyrDBYDX3kqOMh6EbC%2FqZLEx8fyWjuB4%2FQsdYf9DJav1KnLHxFEJ0tVVKkpH0o%2BTNSGuGLff7%2BNudEWahEZjhtyRZ3E%2BP7ffHWtCDLXs1647x1TtiY1eL6F2Fcb1y8%2FFU3vPJzMXFTHdGiXTZ5InCIrGH%2FRX3O31xXYEq%2FjC3B%2BlwSdvXGaxXrvhnNRc%2BCP81I%2FXwNUjWVQ7FlHqI1DKPuAazELp1ET8KlK9nyYuYM65TibHmW0qtcbGN5f9IGo25oJ%2B4r5UnfuPe5TKZUue%2Bc8m3HQai3OE6mPMvNtn5bE4a92deAGDDZl2JRaKNU2CiNbxZ7gLT7SWkbv6uN83xnjhv6OSwaFab0VpKtN6yR3HDf4B3d3qA7wemW9cv1aRg%2FF%2FotFyinIxxdqOjgCt02hPQBpNFjba4c6AbmnLhiT2OzFnJUq4i%2F86Ebnm%2BfEGWfZ4vdrRk1mQAtbmNZ5JcNRFsacdG8%2Bi%2BoyClNrRsXG8PbGkNyM6AuTxrPV6S8brnvZvCxpS7dxb8R2w33desXPqvfKpmKGEQ6fnvEPPVw%2FFHZqavPH52NJptvPXKIpf0W%2BgYm6tOSffOvxFL2Nbi76k6u6P0H1p0L2sl44kbE%2Fbb5O7OzqDxLQU%2FsyJ3Z7LLCqLtzbQyzcj5tFMAer3djhobVRK4aXyfHPuNtc%2BbDq1F06ax%2BgsxA5LjMSkxgBXa8wuOhe2UO8s7Uh2b9hPL5Cg4bBTElDL%2B0bYvwSzKsxoDJaIbdBWH0zcjdc5Yi4nFtNSOGIRhoSoPGmUZkDpFRreL0GMemxQJ53DOzqKxD9UM1OhBzbbmZyy1i116%2F3qoFL127MeiCRGQ5xrlCCPimI0QOdLXTQhMSKDzeoVYW67Dqo%2BybSzIqBIVgKjKKMcaywSozIBWtwfMNdPUopDispk5c6anWFRFJCyso0DzwnI3y5P36qimRhFOgyBwFleOOd8doWcKs8DuFtpYEY8MIdlEvCoqNtawM6zffFAWuLabzLnJWJ4Pjsrf%2FmmWdu%2B38KSeEJtZPjMwkqSTuDMnPD9a9luOWJkiTsjWyTOaXvWSkbGf%2BfkyXz22nJ5iqmXcKGMdyU1sWEZNQWCPVRqz3iUUrFI6naK75jvQVmZcuOT3MKGufy03QocvZWvSVJGXMBRGnVUXI74YtNdQ8ieT2f0nxpk9PfPudX9XUn%2BxyQ6%2FwdTFK%2FNSGtiFUscRj42X4EPAx5hfERpFK7ycElEXsfQQo8NZSFj6pT2sNWDna5TDljHClOjdaNX0KPCiIZgBAnDBpRVodenawMapiFIiGZEmRW9OqcuplTqY06XXq%2BQLqa4wjpcc%2B%2BEFPDK5cFFbLAEDSACpluD%2Fr4NJ523hUe6yb%2BC7%2B4gK5L31pxCEi8paaw36iYe31fpwEqHlE135NbMhmzAfwp4qaBnyFRGZnH8pEyn18pZa%2FFVY65oRSAkC9Dfkit3R4BMBJ%2BJHvIotzkNzWJAW36qnBFZNUvniO%2BIiLoAy%2FmVW6Yn%2B%2BejyvT1Z%2B3DSh7IvxSfZeRYzfNSmD0HytzlT90uJ6iWfnNKp1Ad7nVv3EJXnmMfuj7XcWaVXrHh9XwZfr4nYKHaTFkD5GQoh0MXimQLczKVKSAHp6z%2B%2B%2B9SOm1%2Bu98X3ZaKPiA%2FXdmt%2Bny07pKxY36aT%2BmZ4jPoXO2IoHTNzh%2F%2F%2FTQtsPLRpuPoOud5aeXaZHFdFWMV6%2B4jrYfHalN%2FGMiznUZn59gGo36o2AEcuvzus2yHuTkHjQ38OnAhOV7%2FVeBD6azg7agIqBbWdEgbCad1mzcfTt40xTZ%2BRIfv%2F1B3f3ra26FFwaicZKHz7JdlOw5rtfxyfflzYJklcIMrr7HGrtR7X7Gob0PVOOtx52ywawyBjzeLHAFkrTxGaznOc7rl%2FR%2Fo7k3b6B6N7OOGgsiGPv%2F6rq56xuuMvO7WSHZZTUsKnGtrW7XsekPg9tv%2BwgMxUki1esTXo3IvpcYjkr2xUZnIQ5F0ACqPTNgmfIH0dpGpWdscglYXXNjc2bLMqSwtTpJc2lDFVMosCPddp0AsssH%2FEtPd36WgwmlVQvKTbDcrDIq0IfEMfzxbHMK4qG9b%2Bl5reI42g0QPc3ynaJ3IJObp0NYjkfPe9jA8nm65L%2FQxxzDFW8BbgY8pjsnfAqGV5KgS5q2Z1vyn3r5KXUlNPH5X4HsmX16NWv41OjAmlRVZvpQDZFKXPU49o0KPBmBEGVWcOpzmIxFhcDpntmw%2BQVThuvFYnCKgWFaivPl6qpcGCdB0oc8%2Blq8Tm8R8fv7jdGG%2FiCjemJ%2BiFFqI8w2uzN0%2FFxfkXVlImPcoi9Y4JcNzeVZCPtfLktIUJMKNhh%2BzrjKoY6ONNNjFkMrt1i%2B6c7MDqqJEKJ1gvnorTWVwoDQGsKtz5RbXuRodtVaLhdhyoQ%2F6gK5WyaHQegeFC3%2FTekUUlzWu%2BmJdcCV4XWKTWnl%2FtmJfxkeO1MyreQyKfcbiyhI5YClKcuNbpT%2F3DBR39ma6ko76SbIBX%2FUhjF0RLssw%2FotPJeLzI2896kBV8%2FhTYbcPyrvLp3Uv8%2BFReM522vNnUDniGAnYvEuW8yu2zEgOzEcj%2FPNd0dCwU%2FC7mGIZ2h0f%2FGcvZGHhP5pqqGWRUiC1bYgT88HbK6qYOomb7Ceb2LBCcGvQO98Ow81Xhphmt8sA9W5kn74VG3tiLSf6erOLqiv48%2FDeZqN5burymjU1Z3NrU%2BdWr6HbhXPi%2BMYp6yyLOTPz8Xw8vv7x%2Fn%2BI2ZKZNVWocJRNrKnF%2FlAQX4vS%2Bss3mZkm1NDc4kyyfQxZQsZ87qjxYKnUhDgKpWS7gMeIFsdCZZ8OdTsf1d0X7D1wLootlhulQiJ%2BUpXhExbdbTZx4pAFrJvPB0SMZPM1iCs%2F8RHHR2uXAa1On0EAm1%2F2ExFvgyw%2FxPunnbwkphAYPHG7xqCL%2Bc%2BWniV5%2F27YPtNf4t53RsUWKy0GreZfb9edR3V2mnDVDxZ9mmYiF8P7qU6ZnBF4208VeBrlsD3LxWkr0qjEhQ%2F0E1KLXfdvQ4tBir2PEF8sfyiaTeda8Isah1RMdUcwkCsKMYpdjF5%2FGXdEEYqzJdog9yXzRiQ1f4y9ybD2Y6F2MkJlsWxkD9vsQbJ7ZePbRWa1BDnFJ%2FWM1f9zvWRZZ996Gm85n0nmEWS8t746T8N%2Bb2sBoqR2GfslfgSey7cQ0lawCfM97%2BfRrIG3szHm3YEEoljkJY5bq39WUqYPEFKMLoTdr9Vg0dm8JAfEsMqZNyRzEaFH4AwIJwZqQn%2F0EBSexKAjDPgIBk0Skb6fEpirXG7B2NMQ5yV1tL%2FFSSTU85dU9Sytykz10Pd2TCW%2FYUSqepa4wvvcrLAbzfOEWC57K%2FzNdDRBjWdMMqmFJX99E5GKY84j3suBqsGmO%2FTQDXsvZownirOpuZa%2Fui4yo4B%2BD4tCjhq1y9RiJdc0T8Tv5Ao3PLVwhDRPgHOgeGll35LKgsfCcBf7exfxoeWUShCygKx1ipGpxvSwKRvIglzYLkwrSvBaeEH3teq%2B6sNXzfv%2Fruo7vrA7NfjHzDnMu%2BH36RzaWOwYPWovus%2Blrx4lzSwRgGTR4mNE0my2kAwiOTO4FwblB1bLSw%2BG1Fve3zw%2FpZ7JTlVXyt%2FuqEDiWnYqznPXcUaX%2FDjN7K3Qso%2FaQm%2FhOzMegqX6UjuDMYMS%2BuDjMTZFwOURMqbI00k2YrrXugwSjyso5Hzx8T3Mx4BnDPP5QKJY%2BSMbZf%2FkLQIS%2BcJhd74u5hqo%2BGnojz4T8QYl9Tu2jYkZkzden0Ec8NbVkf%2FLiXirrnovIXbH89Jj7tAqW1vUYU9s6Ques7iss%2F5VdQJ%2BK2F1pSHWFG0Efr1AU8VwRl3RvP%2BnkeVtKOnVFi2JzGpDia%2B2VX09ldNMod8ucJ7Yr6JcaeUj1%2FJv3CBhPW%2BjjlxlFfvX8MBtU%2Bh0H4Gw6YoCfHK6iCtAI69KaOZ9J9jeYeZb%2BDkt%2Bo96sujKUpJFxQpp9MygSZookAue9EDMHvm6WKRPYDL1ClraOT0e%2BfpYtBcxmfoQJHJp3AZuA%2Bao4qjVGbI7aGUwcOvtWBW7XcPGMF6ghEFAsRnNJKbwwfppmgQv05jlWrVZDO4TNTz23pNtIeWQMdkHWraVbAExgQB0WKxkjgQHYGvu9dRoY4xOjzdFqZCtKU6nxxptgsUptDt0WyGe71VARhiVYrXZhgxLkBJ0JZIXGpTna%2FuOyWLeAUksIRpwm1m1erOLxuQ%2FmrekDGVCKpvbyieHZWY7TyDfCY86PF8n5Lrw70kcbUINVGNyNvDtpg2Kimrt%2F9Kdwg6fs4Wp5wUKFg%2BUSJqco%2FyaUu02t1IuQM0paSHuTqaRxs8%2FD62Y8cRGMmcF3Mn8e5V599YW3KuomkR3%2FHeKiLu8YMYWoV5nDd3N%2BA72ac51U%2BbKaGtNTbTZak2sc7ZaTBDH5HRyjBAExhrZxLngEVVaH5po3aKG%2Fwv9WlbFpTGpBaXLXfaqOLxiJ2ogibKmD7dE4QXhFrmK3EYG2%2BUyfiYV%2FzfFwf5Z4cVPeeS7WhWRlnbhr5c9KC0DRlDq4aaK3znkC1QCPK809qU2oMJT8TDvwO%2FCt9rYUaMgylMk1HUryZso%2BCWlb01HkNj9E4fDqwHxH662P1hHfLWo5BQ9bsT6rrSyuTtG6iDqlpE2DmdiZAHNRMcQMUavJYoRrPC%2BZdSl4SiFgpqXUs2Uw1AzTG%2BGWCPT4WZ8wcEHOCINJix%2FMBluXQgIWFAoJ9%2FjiDCNsPz9pMLa0U4ml3dYrPbb8oOe%2FPu8FPdxedfZm34Z0jK477BpfTet2EvsMCnmq3SmF%2Fhr50qZVJmHb6dxJf9w6BtmrdiLA0Kbr9SMy%2FfX%2FqrwvDru%2FSrdJdXv%2FukqnB2p1moCLCbPEPlkO%2BogCVRe7hsLzCUuIqWMeLzgcPR293zhka2oZttUw%2F5LJPmnwGWS%2FNXXFPrD4tHA477foONL9AeXBx0LdDPSJx79mciLilSlw5Nzuw3qEfzvdDxbVjh%2F9eeHeHFUH4KkwgB31hiifAH0sfpwqnn9RxMLvKntilH9kXSl2S2DqO1taSc%2FEseo1fnCfPgc87SNJq821ZThqvpb5dRwm4v1dF1Y9a4P%2Bd42pEa%2Bax9NddE891xEzTniHHVX6sMH1NcatyAtdS31mqXooa7FXT1bunq7e7d093QvvpfOdubGA2tBsGZbX1vJNBjGod89cklovVe3am%2BaFwgBpBnUHufp%2BBHNajXH25Xy8C71w01xy9QPBV5Lueb3yrGJhxZolfuFW1DBlrEKWhJV%2B3MEj075pj8yn%2FfXhc%2FWA2UllmRbci0%2FPfJrFAEd%2BN9s6RV4FZD3NYuYfGOZZluNYehCtWZXOmGVVD4QSpXhzIOi5%2FhqAnhj3JVrAMd%2FuXTCrsSiMBC79asOHJqQ6nSRuIEewh%2BUxTKZuRk7BtLIJ4L3W%2BQtrJ4ohOpn8qyOTlha%2BWL6uIH1gCOCT8GYzEgfWonGAubZJtJiMlFHkLKJwkkJiRBpMbbF7NJZEphhpzQGZJ2Ud%2Fh45kUtDRnlCUcFlZMvGL1v3%2BSMH7PPHRPn%2F9s%2FKRji8oYFwt2e%2FF3n7XrfsH%2B6drnbnPBb7WdsE7fZUAm7Ti3%2F1BEEZ3zN5p%2F4carVb6zOOM3jOAKtqX7qZ37h13kL7nyfzBLY1xV%2B6md5jcX1sRY%2F9bO8rm2KRNcu8iaRn%2FqZX%2BR1iQyrgp%2F6WV6XmjC%2Fof0fxR5%2B4jE%2F96u8ATvfxakM9jWHn3gsryi4PjLXTzyWV%2BWmCK%2B8yGtHfuIxP8%2BrShjWGX7isbyqT8JrBK%2FeW1sA5Cw4%2FcVzIWArreJudRG0p52Oo4OGWmJn8N97LNmFYTH1BFg9tod7e9XeVqymgqW94gsArbffB2SjOCgOeYctHDgg2EHinQRsbS%2BQ6WSdTD2ntTfXXRvva%2BqdeEjD6ffGbziYUxsP9b8%2BPZTtKlH8vEq4pqJj1ALjFRipwBgFRgcv9JdafKO84WVN%2FcvvfyD%2B679%2F%2Fb3wzwB45oDXAThgOfTx3o64l%2FF%2FoHYZXiQGi4FfHz1xs4pZS6UA%2BWJ4VSzwr5Xo622Ip5twTf4GZEvROlAKUAeOYJhfqzqkGxTwoUCJENoN2AP7L5C%2FIHhdkYzWRYxs2HcMp1nZlx8S9EZIN8g%2BDAK8Qdv5A5ki50AXENymqygeBeRbkFD9b58uqP8wKOhTVzeQGGbRPlBQMywUjmt5TtjRxlBsfBalqwz8MiMra4fwLMyWGpY9dK57egdmi69QcDozwgf6eJ6uhBimUF%2B4crVJziAjEoIOJ6oRzTVbE1lRZptNdNkBtGelo5BwptHq1MbD8FI0Bg4u%2BIl43UqAvTPDjjzMmPYKTnZdNArohnmwyppc8lSNKfXHY5jM9kr18VbZUvRMrjGDY%2FLQciCCAK%2FWcYPAkecMAjuvGgLMP0hz4oFHwG5rOu%2BYAMS%2FHzf9hSg7TyNf0c1cgf8nyPfEQ%2FQm3JZbjhyl4HEzjrkcWTRmyKM7xWd%2BRrZ5OiNN1gDSVrvWTT9WGVusrTRVaq9jaX5Ll7NyxttGy2rCMmzF2j4yfrjmujXTgsE5iLlBI5kt%2Fh%2BqtiQAmDmiIaPEzDmQXJ2lGq6yCs7nstmzbA4LUuoxM%2BuPSjuxdmo6THnhIeBfuo9PlNgtD3lITuCiXEirE6rvI2SK054pPLmcIUsBADxNoWRWulKZgoNzEHBeznlf3hNtJoW4Dtv5upTq8RdRAOi5ktNJdaA0U7UoM80461uErgQ5IXIcMWGWxbS7ZeWFmGpvCByfoXKeMzznU%2FnEC17svisykdrT0Iy%2FsCmMrt5iRZyGUETtnUcQul%2B0Hriu8rkuE8kJIXyxFjB2ZhQWEX0Gw%2F75s7cWBRUZlAmRMBeMJUEG4vTM3IVHdvSEZ42Mkf4FipkpSbR%2BEAARyMxd5bgZQox4wkur7J3NnTmZsr6vzqxoThwEacgTXtv1ANzNcCWOqGvp7mgausZe8q6rDFUujyT1nfqDf%2BA%2FYUaMKOn2KKdAqqSQI%2F6AbQ6YrVzGUKc6G0dI8mxV%2B6M61%2BYvTAITYYH7ck8cDyrP19OdGJSlXsm81zCupuGdqzSUYdIkCRfXxYa5lazIRHhiJ3xr1pxICUZKFpOwxKtmWyVLCZ%2BRPoZKg3INd1gGtkrjjszTAKP0iZKQGncnkT7KEmmgP0%2BOmz26Jwsr6XKE8O%2Fv8T2OTqWH2ff4yMFuYo7tfmzpds%2FYg93ZXf2SH%2BT%2FYt8MHjO8DFaMvGTzmV7FkwCKQ11LlHbLKPKaOYDwgXShDKNDfFeV5MTKc5nlkDYyO8jK9%2BEpFs4GuJKEayzMMimvR4mh5kChZdoqCKqo6lvhgUuybcpfkacmiDZHc%2BSJGDUtr4gDoGei4z4DjyZ4G%2FA3k5EW0iEKZdFYKGc8bj6PWM6ovRXSjFkV8lBpGFAqhJ1DJqddKAOPi4emOIk%2FcQ6TAhQ6565LsxjBYMUQaJwWhjspHUL4peCS0%2BBl%2FhWo59VbSV0qM1ta9rmKB2lC8P2twtFyYpQqlBiYKlqam2JcFiZFlH8%2BINGiypxMjqIshrJ2leRckTgvwkcIS7%2FxyaUCTFlB1w0JTb4Ql5VFpJKBrVDaq5kuTSL3FZE9mB3xsJVE5mKdyN9MkgLWHHG6HtLsCJFK%2BQuxHX2xhNbbn513acUP7sMKwcEBtA4E4u91Uw7aYaGOHSAcl5zZLj1H9c%2FVVOPpSNZlulaMKRYYIrFiY6aH7RrIwLxaKwbkJFLnU8EcI2ojM1%2BUsF2kgBw99dPWUY2KejZCOP3sqxAWfS5AlDVpJc8plNyQJ%2Fxm37QudSMqddvyiN%2B7SWDme1%2FJXrFVX4OoWTLe56TIvqtZ38ePIYFsnpET%2BK58x6tmBZOLVnanSTtVpU0j%2FBEqEsN6k3NJQDJUdadyliVuZ6PSierY2Gey1IfC03uw0fll0pqd8If9kLJm88x5zJtx8zhuqQGQ%2BXf9S%2F5dSTiqH3sfQKFPF8eiTNUz3S85RjyXWG4%2F3XdDJ2kWMooMjakxV4uq%2BYlXM8bxk32iSQpPULEX3DSJzfAfKilwxs18s5MN3QgTCk8OZMyxMnlB1gyUrJIBnL1oXO3RJm4%2FGoW31%2FkN0TQ2URX4zxtmR43N9nywhzE1eLe%2B1JpNDV64l2t9WXLisPVxW1XuLBs8eztQqUc9avyhkzmDcNttJ4V5a74gMuN3WakFcWaXyGgdaI8Rh5qTu6z4gSSjeqmr2JUS0md6t%2FlT2OZKsPZtWHF%2BrjZwe0JapcvGwg85iwCgD7gSemAqADo0mma%2BBsSRJlhCk4%2B5kctSzhrH8n60LoISGvxcfia5TeeVCM6Zml27%2BJxzms1FtAyGQgZrcrr0S0L4twXfyhi%2FxcQRWqzfwUdYgw7nqTy297dgJh%2BlYIIgRC8gZ4drM%2FXB4S0xRdNgfUATTMvLIPUXPREaySl839gzoeLtSdzHNNGCaRZPvj1ibrvnGaBL5MkvhjBNtdefexDshBncv2uycxmZFWT6tOGpF%2BGgniZpmsWf9RQiBkLOot4bAiv3ONqdUOu8FWJdYzLJtd32jcRR4DTvI8u9rLH9%2F80qpKb3vW3n5vXAGOGTl7TtBMPh4YzEUcEAu3sH%2FHGDusstcfTd2Bfe9%2BzK3t%2FONdZn%2F6%2F4fdRnbwe9r2P3z4rskueq4Yqg0lvvHZO33cfntftV%2BJb4ncbf7PwN%2B8qOfC6879gudDX7zSvY4P3DWLjItjY%2Fcw7b47Mpb3jDbwK0Z4LRmIiT%2Fp5ZpEGLhZgEL8wqrJqwO6fR48L0eePErKRakTkJHJ0Fg6POzIJNkwj%2Bm0XO4gOKZoPyFbBQpkW1yxKwwImkgZx9iI5T2V6CGA7waRL4l60ER7Heh6gKdLj4gffX9ziib2v5mXZVdrAwgFeRZtXjutfaBZ0ZDb7%2BY0NfU0znGzjL2DqkwdFgRIb5c0iU2OW2mwH2vnSIU%2Fu1BTA8WWOIe%2Ft1h6L95R2e2zllUqiDPjvbyAUto01tTG2K5MgsPRTnr2LJS3Rnat12VbNGP%2FtkBKzrIVY3sreKtvdtN6o6uVVVrCqMjxhfZ5XW57JFX%2BedERd54wUQ7IxyH62PvlpfCvAJlptIUPrNWOLXaG%2BwXAsHimxgEI0pbVHzzypHPv%2FjdIIcrcC7wUf9liFwlRI77s0oNJUl3xBCFAxzhrC2O91HW0%2FiYj6F9RKBcf15J18oIuuxJH%2FPyB34Wy940ay6aRu%2BhkDroNult0xDXXhZ%2BUTz1GH0vwZgWMUKtqtiK15eYVabV1YUKnrtk%2BzSolY5FgVb5UTGaTQn8YD%2FV7tmcLj0FYXPgTFxH3vYYJqShQHDlDftgiqou25a730CxLoKse9AByGilfi4Muw004ZCnvEibiQen6zwSH%2FZQ%2F9wM8lO0p5iwJIU9YY2jw1jAdVSxoNBwhAgs8%2BddPbuZ8866Dem4yXAG4%2B19uvV1gn%2F8f5%2FfLJxHAPMAAMIMN78vwomL3qEP9ImSvVT4qdaJdVobyiH2qn%2FrzQpJSOuKgqSMfI%2FttMTV6%2BadvQ9ot%2FIdxd9BdquJq4hrkQN6uLpmMVArjaJRey%2FA2NXLizzbTsWFbvMgVd5icoFHIzg5o8twShFcFOBqzUOBAVvvFJmorU1iBoxokqkmEeoParEuKl1Ow8gpohD8SjygUW9bUcfszrEMoKRS1cqNsL6X35l5AA2C7l%2FG%2BK1%2Bg2j8uoCJn9kCZJbOslIbUCrDCn5dUUDhi3JWc43gyQoBMEfx5UQ3qSLrjBghBiV7cN5Z5AMjFixicoUL0SpOdj9TNSCABuigQ5E3U7rPABne4%2FYC60UwgqUArQfm%2FJtMz5PgOz50fAD9YMeDglEJjR9Mqph1ArjCeGRMTAQTp4SO19ZRCGOgAuZwGQY7T6DBSM41%2Bto7SVKLa7GrjfCaQR1lJAUBNyilyyADq7A7J1m04mHhioUzbLLAM7AF6Xg1BIsq9WKM6LQBoXfCKz2zkIrCDCyxSID4MswMMm4QTuMwjyYrE%2BxYUt8EOgZAspgLxyBaiiEAl3n0wsh9nnXRM8D7yJ9ggA%2FSYNX9GloTgAzgQLd%2FoknOk2m6TQxBRARIHeGWRHtjIgXko36dzYxR%2FPOOLxYubESmQApKtSqliMPtohrlasRiUTVKix7njJFdBQvlStZmgVq79xqVRMTEPEmEkhOIYzSZPAFaqUeOV%2FpwxKkmS7vLl6jSEXdE2OmieKEYF6vKLVQBb2cRWWdtAR8ZbyMVgmIP5FPoDQ%2BlYB5K%2BbPcJwlbRbSb7avFEDorecJaOWqoJO3IGm0LiOkN1mlsIRKCwdaJuhLy0wEtj7G3kOi%2FU9ACkIAMpl9HRNrqvw%2FNxcPn4CQiJiElBdvPnz58RcgUJBgCkoRVBMzHzReAk2Tbzy1DBqZsmQbZ5vTTtlOJ0e7XGflGXXGReecd0G%2Bqy65bECBDgY3XHNdoTdeeadYkZKs2pdbpUKVyvFqX0uvTr2brxeQmGyq6a8UsIw7NJhphllme2vYa%2B%2BDQj9z3ZwDR915un9KkTxb1lzQoNbelbSGGRN77bPbHsedcNAhm2xmE3nid9rlmIXCmLMQQma8iexMEOolSwss0qSRG1zwEAEy%2Fe9BL4wFZAlZQdZguRWxia25DsCbryd25tkfewTffPWdlQ8%2BGoRxnSz%2BtSGntS4OwrW45bZWd9z3II5xinOIIYUcSqhxCS2uwUIPI25xj8ck%2FszYWDj8NCT%2F4ny1jHp87U1FIpFcQai4KU9QU1tZQ9DfXbGbYKa%2FpjrPnmCaf3NttWk%2F5crqCkFueUVZZ1kQEPhB9gqIieC0fTQcXwuqvLO6YrjREonYe1gtTG8tFYnMxwhytJW2KC4vFiXlJaK0vFT3wlA%2F83S3Lqdy8jqJrzmNgkuRXGRStJO%2BusSAa2cgmJudBTdz3leirWjOVoCw%2FVNDYNrYl8BdmFS7%2BdQ7JwQ890nTaifHGC5JzjDkv2hHn0wrAAAA) format("woff2"),url(decidim/Source_Sans_Pro_600-d4baa84c5bb927222aee6bcebcb29510b33b6de1a7ec71acbb2a4921d9f6ff22.woff) format("woff"),url(decidim/Source_Sans_Pro_600-fe131ecfa8cb8e2f8b86c292b45ea42c5563e2bfae965f3e4f6b6f2994578b90.ttf) format("truetype")}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:900;src:url(data:;base64,d09GMgABAAAAADRgABEAAAAAhtgAADP%2FAAEMzAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAbsAwcgWAGYACDZggoCYJzEQgKgbosgaMWATYCJAOHRAuDZAAEIAWDSgeGOQxLGzZ4B9g2pR7e7QCateoPShTBxgEN%2FCgdGQg2Dswecyhk%2F%2F8nJCcjGsMPmKrdVUHMSLPZZdVsnXrLJgrVofqmOayLyoRguBhhD9Sqgaz3du13k9WTbKwwiQvStJ4gePo0mTMIjMZJEVKsiPSqrhI9fMOGq0wu6cGMry878aPfKlh%2FRNagiIrI%2BewaXRALxCNqjYb%2FD1xyYZi9XJ970TW42Y1dZodJw%2BLmhy9wnCc6dvIPdaPfzlJT1HK8HJ%2FACdrz4flt%2FrnvPRHxkSI2XrERGxkfo5jfabOIKtesmzVrs34lPP%2FfGKz7%2FmBmp4sn92qRaqVBaOINKnQ8JLGI7%2FrMb1o9JECA0ENanZIttZ87Yb4wftaYe%2F4HQALQ%2FvuSrjdpHHzy5vcJFxUVFd5dFZZG3p3LOgjlQWW36%2FYzef8RwTz8Nv%2FPntfEQlGi7uUSKegVFBWkLkgIGICUyhNzM1bOGYvGGbx0Fa7%2Bu1P35iLqv%2Fkiy1frn%2FT8fnhZMrU%2Bltw%2BvIYX6AUugH%2BtTgKQClTgsOMnsFxePg6Xgz%2Bhh0C%2FEKh8gKOFhzodsOV7gzpV2lh62wbRKVwDBCce4vN1994yBMnmlgNsaEAAgctgrA2x3fdsEkx9dasSVgcuYKaiDwHXVizjJ9j5V2eufHS60pXSOpdhsVL7lC1bhlH6Kubr69sWLo%2BP7HcBfHkG3ATXgCtw9ktI6x25cxWuhbuU1re6lVLWZFyyjBnGNszZ9sxj%2Fm9qST2jbfDSHt%2FrBHo3twAlKAhZmqInS%2BO5ovO%2BjaNrzdftlP7nz2hP1shO6RWFtQZIYyzB4AANxFhMTlcFGIvI53bDsKXu%2BQp2fzd6XfFEXAgSQnDBc99zHYAAJC9z2jgFH3AhdSl1DChbtNKuwJD%2Bzld%2FKc%2FZdUeZoa1LrZKs5goo6t%2B0r3PsDuji7QYhThtEiroSBYXEYFdi1GhiiisxdRrjEyBfPzrFMDNbja%2B%2FLcmFUBa2vHFQ%2FoG7SQnmfGMStiSXlRBCR7tzBhpEqUAERS%2FKLWPApA2OsXrwtrz255BB8viJuXDjxUe8BJ3GLLfSLocdJeR1%2BCzxU8I0UGSQ2q4mmLgASVig00ScxZ%2BVXX%2BlgWEGZQHMxXGCsVzsSj4%2BTjcWQw5j5cI0H4DbcAsfjUQKMBUu7E4HwmtgBpHicycBQprUSAsrA%2FlT%2FMaML%2BLgKQ1GOgD%2BGINSEv97Ajv%2FQTS0gGBfLFAemg7scdKKA9os%2FB%2BuqrXx2lYOOrPi9ZUC2T5zuz4mPYkTg%2BPch0Enkql9HBJupufsgphTGiAcRcaO3RnhU%2BUO8Zwg0oRoM1Q4tBQzEac8Xkeb7i0ACRsrULg1HBdUnuuT1PJkyNn%2FVbGgwYivA%2F0NQ7vL1YE6Z0kYvWTSPcdwtgXAEFKmqR8jG9s%2BoGZ02gjd%2FTTK7MgBzgOQx4OiOap9rHVOKP6hfDiW4iCco67P1SlPrVQtiLFGnkl4lIk%2B2xhjumcZGKNCb6ctyohYFWLKmmUgK1oUEwgSQ2xTbqIcGAEHB7BEuoHdbCXENICYokoVhKnMsg6AnWWG1wMlorZYqW1CNQdhhUimuIwH7XOxzdqUjSLXpE27WpXVSOxgQtRqZfVPg7NJC0OFsSmpURDYMMXE3VT%2Fr5p1Qvsd8wsZbKsrC8pQ7zIFgymzYkV99b9iMLnjpgAMnktmqdarqtrnLF%2BirJOL4mIGa0ctV%2F3CttRG3MIkau%2FllS19X%2Bmoiccqe4Jr3yrBQWglmKCfI%2BCjS4RFI64v3YBpZVOqx0Gtt7Q61sG4J2mwTDKDWgysxUMQhO7A%2B4Yy90YHwaoed%2B8anlqWZfWVBmSvA4N1ylxAwEwJ5ilQ4qzELRLX4IxHTTpORPRTo%2BTaWNhSp7UW7K2hDEy4rtBas7YKa2GAz%2Bve8y5KVg3r1lW6nSmO3tfoGsLF%2Fwk8ys41ehZgmC6rNXWVvyEYzmSwaFTsdewMa1rXzZ1LNgWUA1q8mLCeRJYhD5galAR2e%2B4gVSRt2WpST6s%2FZ9fIS8NCSLu5Cp%2FRlMY1nsmWSthP%2FRioJisypFq%2BtrnRluKJiW1yYIhkRUGFKWeE1%2FYZtqN%2FnNF0HMFFdQ29Xre3zKZ8Pu0iIxo2LP3xnwY6g%2FBidG0GAjvnOXXpt1Ge%2FZV4XcCkaumefGm4bjSBgrHnhA0iS6nngjJsw1axaEN7yXBEAJ6UMwXKlUYwb2H6QKlp%2FeivXb9kgyd1njJt8CLrDdtklyl7hZtrPzfPQW6%2Bw9wCRx%2BohQjOAQLOhHhBgrkAQoQScQUAvDAeSDEJKRktuQgKbpT8uAM8efHmCwB8AL4Av49Xwx8VQEMvgUGgNgQ7NIjQZWBDdgvwSweRRRR44d23CtSTe5RB9USDqg5re4qiAYG3AuDHS4ABeQBUrgQjFifOVIs%2F3zAARIshkXDlLADQgdUJI4sDuxRHeSIgb1hMHx5AwDwGFqFhMpgMLwbhhJyBAEfMHlBX6kDF6BBLi8ASxhiORgiN1Il2RoPpwFJqNFgUnFQ0FyyGCxGL5UUBhQDnT89RCZyGgQvQxjWUUTIXqbl47Qp5Re0ZHeShZHXuKdarn1T%2FQREGDwk2dLTU2AkKEycFvPqeS2KRxYSWWCrccjhPKzhfK129rLKanzWc2lpOYB2ntp4T2MQF2cyF2cIF2eoaZpudAu3i3O3jtA5wWoewVt%2BMB1U6DufmNKfSSpa%2FD7BX%2B%2BxaMBVns%2BnH2lLqLZYOVNgBSy4VF8DkuqnAwGlemoXg3cbBGcIRZwf3RdzlPkb3HwFjFWSUzpsKAngvOCEIfhIYHYJbwxELo2J5TMUg8F0OHLs%2FP4FY0tAWcAJqWXUB268XML3EhUK5ClmWYxmGozAYUfIP6aatGW0B%2Fu9McxcAzR75HJD1QEprA5iDBRQwoAkZE3gpceQ1WIvi4AtGItoP0nTTxzSz3PTSdy0cJDbt60F9qi9zlNSbqqmGmqiZXqR35zmNu8ORxEKpGCbpqOved%2Foet9iUahXWsrrbUAwN%2F%2FqZS%2F8b8uC4CziuA3BMgWMyHAb8P%2BF%2F9J%2BlAFB6KbiqNJ30bd%2FOMnCvjIAOQC9g0AjgCOAeoJTf20%2B%2BuausZVY747ZHpq%2By1z7HPbPYNoscVn7oFZvXrRdCif2OOuCtPewOOuKQd1osd98dt9x1zAlfnHLVFu9td9pXN71xznkffXCy9VB%2Bd9Y1Wz32xFMrdcxul5Obl%2F9CQVGxpX2H95xeGJOHDB02fMTIl0aNHTd%2BwsQpkwpHr7HWBuust5HSIieUAPiO8KnmS%2BAgBcwCaxyPiniMYRharXD5LI4Qssp7kjjWgvnAKbiQS%2B5LToIMQRAdapgifZYMZrhm9KFZH%2BwQNJawwUZLDeylg9ppu%2FAgNdKWvuEpLvha3GrTuKyrFJxC%2B6I1T9ihgKbSvNRbf6PXW3QLJ8dwFYNdqaZtyUyb2EBPjijKaWilU2yIs0tFzdQcM3UqzeClQhCIltz6LDx03gd5u%2FbLBSTFWjezlUQXOBuCfkMXZuiiqstUGnUKXQfLFnEwNDVn2TKfwU9QxpM7iVt7O0jApnlOYk%2F8CRHUSuY473fPSRr1D6EIKr6i4TU%2F1uFC29egQwcUbB3II81jA3wDUg7ewui1MOEkMMAC9Qjm3%2BD0r8Q1Y0HAgEwsk1m35KVmZyMe3X88cfjbXzmeUAs%2BSRX7VDVXkyFUDE3Q0SwtxZyLVRzBovhjOcjMD8CWnSmZjzATHGGAhyCABKMINil29jLcwRgnocjEDe7XybLLQQinGaODlIIvBfKSdJkXmomRmiPq1FQZXrNcdlbRRou4c5EK5IT8W%2BbrRSZzmRxVuZiqjkeG0iqVdlIki08jRFkltqMbu8zl0RHn%2B97LaU%2FEK6NeFU95P2GJAHStiHNRhOKoHmlN6ckJKkarMyS977xQ7Fs1yJu43CVxzbwgyyAO9roD0iAhAhRx7r6CFCkBSsvqHsk9cM79p5HylEoxdDLVExF6LPlRDNvdg%2FOqE0uyeX8QilKuxj4bRbkNc%2FGymxQFZPIULTUihEGjbgOpolGqNRE9UC7PqzpkkIfcP4CCqw3aJzJSJbWhNrzz3tTE%2FyGq8B1aKDsEEgJ1KH%2FJRFclqhNu6hixhO7sSFi2IUNAeaTe0ueXiy3CW%2BrFp3rre5xL0UVUujGC9GCRromn0l6uV8tiAqmIEVPL00CxWBCeXlFV0m5iL2JJAeH6UISwo8zB06lh34McV%2FrUViOkphVpotHDAowrmX9Xd8d8tFHfdWOQ7fn6ki4JJ8e7GkHYfsZ%2FwfzD1JaFTGxseOO6IGRrOnv0qn7EmXHLQOWi%2FThwkuqzBB4hcejhhyQKMckBP%2BkuKQ5Z1VxJnv%2BW8iYtb%2F5686oVc7K5QOqJTWUMMpszcdBmOmvEVFqv8J%2Frn1MssqjZJib4XXCHbt2Se61Ry%2FLyXYg%2Fs2cBw0GEf3yMVeEtqsLFdLzLlUK6VRPXAtkcgR3U2DpuB7KNXPO7cJoIXd9APKxhfVBSCnwVIspI7hx%2B9OarLdymiSeKSIkSb1dzffl8A3fgsw8qxfevk0jO%2FHC85ZxhkBACMrBzre3UWMw9j1UVXA1SRBtsDIyOkTXF60lIbpCjsgMtdPbndMemgXRdFukdHQPW8XwVJURVb6QmBXsJxoHEhBV%2B0KyO9jlX%2FoDKQRPSwjWAOikBSU5ISi1Fr4%2BN47pphVB7qYtKwXOR9H1eqgjuv85G88jq9nvyyhHp%2FKDDQ2RcOZYWpg1%2FMA5phYsKYANIOQhE%2FUCT0uJDfCWpd6IyLC45BvbNQ1mE3ovJ2ze%2B9X7luKU%2BFJD%2Few5qdbjoXWcEzmqtb%2FiiwXcDjK8XPGs0n%2BGuVb2UwO7fAwSq7LxSZ%2FYkTVsLnOghNpjhgIhXZGGE7N%2Bg%2FF9D1ORUsKZkdQWirjsURJBwLgIDSRDXbKInZU37AF%2F7hlyXkseT5g8sxLib9dvdkD6mnKF4OIJllTdbTlJjHKbNgOHuqzxsDmn014ggGHRLP1UMrBXKr960wn%2BLT4bBLvfPd%2BSUSmQm3IHgPZusFMKi%2Fg6NL6mkmzbu3eV6lnl0xMfGwbKRkc1yOW%2BwURCNmo4as37dXMZJEuBrk2HW95%2Fuv9nerPPs5Pkzw5M8PXMORDqZc6qU4df71F%2FRPTK6HwXltIb8K%2BJhVRFaFxiuE28LuBgkymhOVSplaLkkMNxsNmOrkH8Dw2IrLUDn%2FZ%2FAru6%2BR89P8x7x1jONvs54%2FUPlopthJyqdpRowvj2YF9BiWohRpgWlJ2VPwXnormrpYM7tFY87%2F9%2Br0an31fCWCClu%2FvueeukDpsfLpUTfa6qZQDG8Dzh32yG2NJuk5Rs%2F3nVTns1UaiTXxz%2BjuAwoiTVKMvD3WqI%2FNPzvqrMiCMi6P26JtQPXFG4FdBsHuBD6pw5rkBlmH13NQWyGqfpDf%2FycgSOR5Hwart3lejGs8xJR10Hg3DbD4m0Dg1AcwL1WYl9MHYJubKo2pZl2M6roeCa6gSz75xKR9ffT7m2CuGyeiJXKOdspM6SEaH%2FWm5lzh%2F6QAx3gFZxgFzGMdzJOvT5cD2WgQdbaZWawW27Jd4HoR4lcEpp3Bjfs4Hxy6OU4YJqSU5V2olOabTScXytUNScVK3MHvO7hOkAb2Q3%2BrJFHDb6HhTdKllG0gN7EfjV4En%2FBMK8Dano1JaZiEGbOMkfhyLzxOPeDGJrR71NLpzgMFMKGVpAdlGp6lJSxOzhkrKL8QAL3HEiqBA05Kn28A3%2FkUcgOcwU4%2ByW1ix6vGOnlJAS5jJWnEdrj1j9WTqzhKlYXe%2FiVcrb%2F2vHYPzDyBdU0p1YNeSRjiaUQtt2tx7aDZUfsdcJgX1gGRBaIcI5LImQhyKLnkAEYFNY6PEOFLUAGIvgxaaT%2B7Pw8F7chGiSKxhxwz5UF4M9SngPmZw8scbtoXMqLKHuipbx05w2wbyZLHt1cROb8GjVhR2XFQxWBqneT8i%2BRNYCuCLmGbH8Gr3lbwZQqpqpoenl64QFCTHsYDqaA7lSckNympqSalmpqKqR3hEu4Qeh4FJ0kn1jpMxd54u777nQkm9yJ228zIktHKI4HptyGE9cjvZkEE2347IAVY2HMVq0imjaITch%2FtDcjNxKC0aXEQVrlNbF%2Fi4nPUWC5GyI6hDAIjtI9Nq%2FqQ9uBg7Y1rE961CnG8SzMYMvAqblQ4j1444%2BmcxP04554RoozVKKolK%2BQiU7zWPyhs2eZvvg9%2BlUg7l%2FjH7SycOiI85AzVgOBwS4kPmCiC14pgsy7owdLAGEvwmVqhTAmHwZg209j%2Fs0MxWKH9B7WWoh4sGD3fp668llBh6bLbh%2FjLrpdnCoO6C9pxPPKS0rSSlnttyb1C0P4hkgCv%2FcLRu1KAnU4jmKhdxXi5sx9%2FLHmmuBUjjQ9E8zrr1GO1h9UaqMC8Jc2p0QjTq1MVkbiQZO76t7TUNivAXyuLaR7TF2CQZX5qBptCQbOsxi8u5oGHtqm7CbEGqy1GY%2BlQujQS6oK60O5l1rWpRdIAdgtSP6SeTcQLXvzFEA231HFJ3GTVMmMbty9xu4cI1%2FvBqivlO46K6CK5AA9NE1gnMm%2B8DAM7V09feoEcB7KeWbr8XecEfpiePluhRIu8K3YFkXfnwKncbI%2F84TC%2Bjpu1iTmoBUXDvVTenzOHOHSQkcsNJeOlz%2BNyegP5IxFCzsyh1%2FalYePW5esx%2FhV9CEp%2FlBF8gLnZGgNzuFDWR%2Ffh%2Fkh%2BNNWcLWyWl%2Fiv8y%2FVFVxwFnmTK3wP43BdYBNNKYt5dVl9mSSb3MgFTtPbJ8CdmfPO4%2B9uuY4MzJ1LXKff77j1abIj4g3VQt3yLJO7x8%2BDhhSDGXaPH6ZISeYlf%2F0m4hwMYOxVFjUj8aGLew0xDjiF5VWIss87gWSUnU4jxVsXfQuSDd3ZqPigC1Uyp1nDDbvnCst0cznuypz%2B5WmyEVLL%2Bwply11u6V9bkc3x3j7WAS%2Bf4tsVirJphufwkndclNkPPpf09vRtxc9F50oN0UORh%2F3vx99%2F1dM39OGve5uiR5tXiOOBy3dWWBFqCZ131pf%2FdB%2FCll3DqpfzPdU5vUn2mJ%2FXv4TG8Seu8xgZrF4gxhn4FrauSz8QeIYcwt2MJfikmsqOYXO1mK1KDInsPePs5fiv5t7dvSByrMH87f9D%2F%2BJ7tFbvd6YArcC1nco5fXBXRfJ1to%2BHiAf836okfsLGQN4fbVW8sUdnabI1CikegEQDMRqAA3j7Pjg1ChLFQU8aatLlhbB78UZOiR2t2iZ0ynqt1d3iAz6TpHdJeq77XOZ3d0p0b1UrGvyenX1xcUuMmpaisV%2FnF9LMOYJKlUlQpdJEaQgzv9jsy4kTSxGZGWY3junmyOEitNA6NNJ2130sbAgQLZIC3Q8UaVCWcXsNAz1p7yibZ%2Bf3mEjcLLcX1tnQ%2BoWt9CBqI%2FM6fxA9yE2%2BE9%2BbaZRKnCqjIX%2BB0OPqldeFzlZbB4vO%2FlC%2B2OTE9r8e4kZFsJl%2F9Qw5YULBHddc%2BNuBIHybCL%2Fop1xQ%2BsyCCCrpjAIqdSrxA7zlQdYFIhiDzFEH8HCnhwjgsiMnvB%2B54GVOzZE1uw4UJIYOa6nvpUZfht4Wxm%2BoqVOXYjc1yRGpmCqDteoA1bhG1epqFHLdwW%2BaTWgxzVqYer43MiHuXMWJ5XrAX16whZL57w76VT5vuKLotb9hs%2BAyfx1nNaT%2B%2FST6EVk4amqc8Bh5JB04Un%2Fqc%2BuHDopXT9NRK8B1zzRqxthLdvnmIbZnPjC79GrLfmvOzn6uUowbF9eM5papaFOh4s7HXOh4lBHR1%2F20AXgwwxQAPe0FuwVs3Oy9nxqeP%2BtbuUJbE%2BMaewBJDbBeVpqUKllhZUGC8yHfr8IvLPotbFfHuAZJ8rUHJjwW8xq5gO1KGTW1bPkEgt9c3lryqFUmVynVCp0AlIDTj%2FX6aPx5H6WXscNKeEHKlaoUGeGuYKipljTHuzk0Dlgs44JSS1wvp5WP6k2NMOET98%2B%2BYsST9132r9ZFb9ep3fBOQUVHLmW4skj6kn0C28JKakTBY1Dz9OEBUGWQccLFSwG7%2FDou5dWtCLTLyeTTsPJ1euqO7AO3QotEM%2FPLPvOAhbC%2Flj3ITnJJRb2ZBEEII%2Fx5Z4Noxu5xSgbUI2BlJkXgN18rTgHNpy1ZQnExaf7y%2FjWNPFTjzlDSP62uwiHf8y11jaVoAK%2BziJtI%2BtF1uRhxhdLSDNs%2BD6JdB9mz7Qv2l2Md71axkcqzR3BfIwhW04hzeaWYTWjucI6LrdOSF%2FzchX2FyYpnsU%2BFOJtdyysQngslj6w589Ear3ARe9UUIHyxMEFQOTw6SNvnIFPNxxR9hz02z9KqRQoMTa%2BInPgnfV08f9yUw1CkXJ26CzwsVmEIDq%2B4jeTFKm09j4adJUx2hTjOHO0ecLRocYCxvNDBp2XJZPVLGdIEFKrBRLUAK8NPzSpUoI6Hg8sqswW%2BTecQWy8dMFTKJN7loykBIuYhrOq8bHzz5CUor%2FH%2FLsXgZlF49horLHpR8YFWj7GJxrnAl635XCI0%2BPUl95cg6eOM7KxyuBefa6C2pGW9DRO5dXcRDqYnDvKsmyxuoafYG3cKyeKaUm%2FbKdwPe%2Bdiw8zfDbgIOXL2jidZke7boU1NnPlyKoF6xa8JlSTksOryH3yPmGugXaNYMlB5bPrUORX8TrsryGcFngrW4AIsGq8RdqIm43LP8Bb8E7AhCLMn0fj22eva4iz%2F%2BPMuOItbsCdbFstmXlROrM22dINuOMtLs7MjvmzN%2BHDlTjUC3gT0Uro8NXuvTHDv52E0ZeLXwbCj8JE9PXhmFfWsvDQcf84sIiymCqPg98lDcUkwMJu17kvsOILe9IMa4GFqejq3AvjB37K45vrDNk5FACgrzTy%2FOfwB9ctC%2BQH6eq6Laq%2BhDkAA%2FTEwZVpPdHxNfsKV0%2FzIkD016bb0duL%2BhmbolAi%2BUZR2HldPwjSyYQd8wnryY1qdJ6NPqgTqKwevaHqFrMDJdRfibBZpq%2F06NeKTO78pf7yPtg0Ff256Wb05qJ%2FolcNSzheB9I36SqimH94xlbdqewn31FMLqLXu%2FqDi5yLtmU%2Bc45vO9diMccSvKYIVuv0Ao6u%2Fv8%2BCMp7W9k52dJfBgUZG758CedoghRiFBpI0zGFiJWbqyN50WDUzEMruZQvJ5TtifJqzh%2FjP05dJ9NZPNM%2B4B1NFXzPIjy7b5jQBExv8G9Vzlre9Dg%2FrU2h8oRaBYUNO5Ip2ZQpsUnJM6eZHoXWT2maXvXZ8UmGW2EVVtPelz4z33sAfQpBLBtArKPg%2FXe4UM0JaXVuVi5i5l%2BcLeewNXOBnTM7a%2BHIc12sUh075J3PzP%2BZ%2BcqPculVv9SydAWV9M4JCK7fG0xPXW04ZVjDgQeelFFyJcbsauXC%2BW9kERbg09YZTmqGQGrBQgWFcokqGkFu%2Fy9MHEj%2FxHGZg8tMwI8Q4SeFctbQB2fMu9pVUJPa4hMWyVzQU05NYQGrOmKic0kp4FDasFFk7iigdPvMzRDKjx8xiSzebyaxFmxvjCa8H8yxwvlamjFfBZsbjkHPp0fjOUKzZduodj1cAvqXjfHmeuPoA%2BOLsrJ%2BYCRsi0PgE%2FVfijW6Y5iIEnQ1faDLg9lirG%2BcyIlTjGs8ulQvp3zyREFh4r9YQhdyCb%2Btwx9wM49jzVCpsorRQNVzWNkPX2yHMrV0eGeagSa2BytNYFXx16OR6DftsOnQtgSkVYvFDqXg5C6hugrqq6iAetVOF1%2Be7%2BarK6Cl5mTBfeoqtxBZnTZRjCsvLcVZlVhaGqbEWbf%2FspQXT8i1kQ1lPW0%2BK1Wx7PcFg%2Fv1cGhhvd%2Fk5JeBooMwCDT5%2FZF%2Fyl6DZQ76K0yblAvakXKN%2BfcFV7PaondVoVO3dSBLSGdknMn8IK%2BHb%2F7zFr5IB5I%2FcDV%2F2yAsbu0PuAONYsCpt5RIeAad1EvMtXdKlVVQWll6HDE7DTg79rFyrmOlYWTXSGrPewvfbTN4Qqdu%2FQFL4oWC%2F7gpeRz%2F%2B2ZpGtoT%2FTreH7s3XWAmLgfNeXJulbbQTZfZu%2FKaTOSF1LV5xLPgqynZm5I1wpoNEf%2FnPipxxfeZGub599K%2BE%2FON2VK6GUFYjhMOmiSnhoVahT1ut2i5qapWgBhC0mf6qRhL5gB7YVHn2fTo9bbO0k64O3VjTABDzh7jZkH0ATb%2BwddHz9wXL3rtBB8iMIhiCIz9sK6wCL0BBCTGPCFDN2wjScVlpBKali%2FO0WUB3yfbS7mg5g0XJV9WSbrH9MwJjU1PHitdN%2F%2FEGEeQunaeAG2%2B7Bf3id%2BKI0nmHy3RcOJ5FyXCo%2BJCZYXF27A8RCE1JMa%2BhMmFiVldorGup0yJydJ%2BGSljs453MM6MPZ0aR6QU5AZdgjpEKbJmRpg6KaP2O%2F07IuHk457x0WfbEVu2T6GaVAdx0O829FYA9%2Ff7vx5LwHg2lSv8gyvPt6FW6wIHJ8W88dBEuRd61m6cmfuK%2Bmdwux8FYQXe2uJEysc9j1NEyIZ5G2iON%2BfdTDm6kMF1G5hMg5vLaIrBfRdf%2B3Ftyo1z6ibDp2vWGD5RN88VyUPSt1pavEIeGp4Eh6y%2F9aubDZ90oZ%2Bqmw53WHXlc1%2F9wXrf58SXVO%2FuQPztJiIqnxFOnfNdOIWHsIkU%2Fx%2FhP%2FwUIhvhUSp%2FQ42%2BdJqCx40xi0sW9AA9C0rEMWYuT0ET6VXa1U73GdHfKk0%2BLsF3cxgso0907loHLqapg1T1S8f3HThI5D%2FR0b7kcsdlXMXC4rZOhFLZQ0xZWpPS20PqTNSFlLSheVU%2B7YNwxEq4%2B96Sc6sYhHPvrS2vk3vbGvqI2QF8avchFDzM00iqnIhDBA%2BJbSSksEOYE3It9VCo9WnpnjEtYztHI4P5BsXF9yiWBk%2BNuk74H384gn2INSTKgwxjsaCmSCNwG%2FODWXLxfY4Itct7fVVLxHq92%2Fqq5Uvtdnmfz7VEIvuU%2BFzyPmt5CTdkQAOcggIaDCg3VMLq9QZ9gP34sA16br1JJQZNlUYKVza7RI1%2BejFDsoknGecSf6PLy68%2F5IhNFB2tDPkFEZoZLqZFLOasLjND%2BNDqlVK7E0UhpfzPSPi3ln0fwj8i8cy6E6RCTcXzqRcSkz7mM2Qe6b0288RA70F9XdU6eW193jqnUdhsMFSzBBItb%2FVzO07MIaWpzdWojOktQC0CEcl9%2BrkHf6Rf4c0l2WM%2F53ARal2ppVliK%2B1BgnXKdVUW6Vwn2gIVsisIn8L%2B7%2BqzFLYhydygJloVLspJXRGXNWCxpRJ%2BMJ4vbT1aNq8aV2eb58vcXo%2FfHgjZ7PMCuLrqefVZR583FID%2FMyaubj%2BvXedw7I%2BukWy5uSTr1Y%2FY7DtXydbFG4Bsu3YHDhI%2B00G9H5CTksgf9EK6z%2Fi7U3y2yn8Ptb%2F%2F%2FLplLIGWcvnuGJ6ylZTxLYCWJlp5UkOFsVSscMaFW4Ti0AARJhKOZhDDIiNTQ8Q7MzKmz6MqWMeU0RjzWsifsJ7%2F9%2BwQddvkfKa8intQ%2FdZORuwSALZC5p8cRc4O57R69b87vi2yLX9Ecm59myCvVtYnlPIztm8XlOdbsnlam9l5un4ngL%2BW4k1J2iAOX0%2FNLj7zCDz%2B8QWBgKr5%2BAQInvi43leB4MLHx5lBspDNEZHJIg5bSD23Euxe3wSCTeu7wSaJ6aBzQJBDD3kQ03edSVWDwDfHq6tRdDYvb1YENnPmbwAEs%2F6509pobCWR8i%2BXpOAT3jYQ3Maj1zVx7Z0D8TTwb0amf6uWub1OYra12jPausLj9ewK88JhDRnkPqQTardrwe1Bsc3ZUJbW0tX0b5nos2D86MPo220vlJbJgYSYhuf1sc9pOlJzIcfxCrpM6RYo%2Ff6%2FufB%2BaUohPdrSByTE0pPNnhNLeYt3ZWsuAJNE7eR8ImwjeYHz1bxXPTiCjbza9LFgI3kN3hEI5ihkVVR9er5XHC%2B1I9lxybFy%2B9fk9tFFjRIPlxv0p1eTjNnBa9X3M%2BJTYg9Ub6V4jJSWuHbitvOvcmy1HwVu6mh%2F%2BQP%2BcEr3mi456FZqnIL%2FagPeqo9d5a0hw98xnz0ueA3n311vyaQ3UiZ6Jqb7p4MNHVr7fs%2F7KTnnIy9HW12NzeNSDvAcXK6DV7MK34gwRrOSskHQ2veODu3OXS8BTCjuoaWTzXqAbxlvQP3QXf27gr%2Bn%2F3BuStbCW9s3bB0d4rSL1gMmlLkYKiSrNjqkPOa7Pg6BIPnBoxcrgNd8XMSb3tUU908HUpRfZIr7Mo2RuuZgorcXK9373rhncz8p6SvjdHnfBhys6l9uGCchZzbEbNM4%2FXsb6jYvkJoBW%2B%2BCgqNn6voOLtyqB8AD3aQqwaYyCAjiz%2FpxyX9QbgweSqrVlp65QrlqnVWLxohuXlD3V0549AQ4D8Q1IzAGQRgcMg8%2FnBp%2B8zG1NZWr0CplMicKjg2mewgET3ponXlSoVVIpYEoKDbYSMgOKsZ1lNHng9ubfvX177SuNpnFRcPT5z1VumYuOaAzP3GdcDDKQkHwK%2FhV%2FBp%2BPdvICJZsTh8iNM%2FUgF%2FBr2LrGX63ZXbxK%2FhVbD2RT5EpIoqBM7sRv4Jfxa9h64mnQWYR%2BBX8Krae%2BEYxMkZ94tL4gV%2FOr%2BRX8%2BvYBoYu2RR%2FojHPlIFfzq9k65jBuy21hl%2FOr2TrSMQUGRPRDZzpSfxyfiW%2Fmq0jcQaZGvDL%2BZVsHTFEZSrB1CWGWgQxEHAqYheDRVY5c1U4MGvYNcxa51pUbmPw%2F0iESpoIM8SmCHOTR%2FHMZm2zCJYA2z4UWgQ%2B8OqXIFbWyl5mrpgCXHf4Btk9AItdhHBkPsg8S%2FNi6rWlL%2FUyZoj7CtMC021Ja0qXvtz%2FI1Ni4QDWEM9NIQhlS4umlkstlFoitTjiI6lltsHZ1FwChHj5%2Fvmv%2F%2FvXP%2F%2F%2FOys8WfsaWDuFtF4FVzl%2Bh7I0I9gC1vL%2BWUDXaTDWJtmQ35uxwpa%2FLZOfEuVZBeohlg21kA5AzV9dWgG8v9YS2sPqMc7CDHq0A%2FLUkJYc2nOT6rLTFtlc%2F0Y75XsFgVNTX3Zg25%2Bd0BdazQjRQyk58Mk1q2xMUDIxVsRWsQ%2BwAQMSau2A1YZ3vJUCMrw2SdiEI3%2BL6npWwZsTc7bUCYbEAB2SDRklYaxsoBdGhPsCIlzj6HMj9xjAnQqdbA2LSRK7ld0R2bGGthQqcu3QcnjmRLogKtEMLd7bv8muLlTk6Gf0DlNokNUmKga1IhBeUg%2FcgSm3xub8nf9NqJSMKbtbFbjGTgBDXB%2BVTb%2FS50XuJZWXI2W1p0Kypv52rCT3bAIOMeBrfWOFbUessHr6ZTBmfdc9JzOSwS1m1HtYANjPjzQDIpZOfhz8J%2B96BMzPgf9H%2B2gVqtoVFVQIR23PDnmToFTctLyxx%2BzwcdN0Lh0uAZAmDZbt1186GxdpQy1sgo6kk%2BvTUtyOaZ3VYx3inEgi9RR%2BOiDHwckEAtaQ01jFC3Pc%2FMK13RYBIF6KmuITkXgNlLJbZSuZa%2Ba0X7Wf7ztsq2E9qWdSzuxwbD6EBeFVwHzRHt6uaFc0pCHoIGYKQA013NrViqLGKNbgSekc3RYAQCwzCHVtVwiTMbCGgJJ2Qtv2FkizYxAiMuzQJtuWaJFPkAGgZYpyPzcg8Y7KTPa1A5E4ty3QLt6JGIZNmPjw%2BzvIVVMXKMEGKgRg%2BERobTkrM9q1d9RT%2Fy3bBmnolTmeA%2FWJVyR7vrV%2BiWm6GCGi%2FNFBEOuWSBLdWXZq8oRm7Rndq%2ByBcbRYZm%2BOKiOmYQt7ZAUOApVBQqMsGpkOZvYM8WjAymsUAUqCxNCKTxMDQIJMqAi8o2N1FDTNK3nnZBxN8%2FJs0Bh1EVxR6IHKA%2B9oWS17oHpObyOgMknSWcbtop1M6qYCq3wGRhKKZ8E%2FYVIPlShwaJEKnXLwnR1KuLqxsETUOsyxdAW0bJTLDVk0qHdUf61DJh%2FFVpwlfghMN0lZryrxfAWDBC9E%2Bvcu%2FJCfqg4k9WW0gdcS0Ft01DVxJLeNcvCygjnOJ86sVrzTNIKoxwnePy2yovWhhBVt7pPNPZ2zbXBOrC6FteMA8Du0Upmjb8kSn7V09%2Bb5DKzo1D7Rp%2Bc9IeS07dLkSV2GYGGds7HaXdbIKcw%2FGocn5FC9F7%2Fw%2FowfBw8OL4Dd%2FJD6IfN4EFnUKx1uHIYT%2BdIEAOGDdC3F0RY5W8GV5BybVN2L4MCV7c2JFvYAWDtBUdlJeA0pheJ0ZyCFDlBVsez7kBC7VNCa2asmkCfBLHuWgFJtYWARAHIGMp4ysGhAt5K9eYwHhLU0aqylCx5NftGkl3idm5ikSCUBs0pDEI5muuSR7vufYmJZTLuWIo%2BPYFMRpZ8iTUmShNauS6rFGOimAOAQyOVJYaURavTTkCYIEv6aK5P4tD4MJj7McR2XAZA%2BCdGkwPZPCNeWVzqpWhrk%2BCjYbWaqrXe8RWKN5Kqqlhq2n0JZoWWNa1PhjfBpz4RGQ2pchXekuZCj5DYBGFxBVyZJ4ximyMdF4IDPXWgQ3i70Ii8m0Q5wQ9y0mAjfUwD%2B27ZSGgRUhFrEs5ZeB1AsgueuPTVjPZRS1v7GXnKgq%2BpqWCNJwFOySqQhDCIrV19Es8LKJRfpioczVXR1qttMzQWu63QjGouSoDkXLVElXkppHoAFdVUJVOgcSGhDG7nE0CPbQ2XUtNlX3d%2F4b6voRka%2FGAGM%2FvpKkILeAlCR4Sp2NRN62H5I52x%2B1z%2BMCopLh%2BtJcpnS020Nb77U1Bx8EaVvlovBc9IcpnjDBLB7BkrQtX9tcJ8fAKU1TAbU2j7COkLAoBVBYSChR5WjpSQnMsWyK%2BVzdNx9Z%2FVy1uq%2Bvicitry3PHe1n%2BO99VqLjl5Xr7kM9sUupNWuKfJ9Rau3RccZv1p5JtTmc4LpbnzfI4Zeu7aiMl0udP9gK%2BzsxuEdn%2B7JyEmoBQwisNHqcqV7VVQbSjo%2Bv7NAvReD872GAnVg2sbjCbtLTcDFK%2BxP1uRNVXPjolPX%2BB8PQMEmGTd2bp%2ByP6KfoLscjHLyaeO8wGLG3sm9UYj5LhpaVashjSh%2BcClXm652Hy9gucvtZFXtfYxFJY5fqa1QLEUBsz7L1EMjfN9pLcrbraT8Kt7WcNFEELfKY2BEhlsiqE%2BHuSHo8nq%2Bq97GEkJUoCbdqtnaFTpc2dr65svcSHhB8mIDEV4IYfuUG%2F%2BBGRAA6IFrjBxgFlW5CQDH4nDLe%2FJ0cPOpmEQyWeTMumEsL3YgQwJ3elw9bgPg8%2BhaEGVMz6b9pMfxt7i6gJS5ohSGNe6iQXl6UXPB4%2FTCuUbJCWpuOfrBxZE3584et3%2BJYBskYmZsIgQstntCjV35Jw9vjcny2rmxzokvg9Trz0QMgRK7yGMS%2BaZzx0H24%2FObAFonF7%2BYdNkrEs%2FhqMQciZ57uCqBC4HT1aENX4lzEfVg3gL5wCYiR0AI1pkGH60aBlA1%2FOeQJ3rYFh39xOWCI5IGnozBlPBjs3F53g0Ukm56te0pIOdXYuBKHaSV7f4fmJNvD6rB265V%2Bxupamn09wb03Izsk7NH2I%2FF2cTZ5yjf9LQWjO3VWD%2FzOH%2BB3SnVBXfFjj2zTnaS9OA0mY88ioga5dsLBoVHH%2F29B70xITffi%2F0J6EY3gP5mBKenok6WJ1MMi0J8qYQHhPiGKHBHHCIc%2BxQh9A3mR2o9G0A95Y%2BqyCMNsaTNOkp5%2BrwuZqF5EtpxU6QotgnLxRd1csclB%2F9W9rHDePK8UBnGMZ86P%2FNAji9cntdjW%2BNPrko4HP4cG5SKjvm8CSacRAqHJAQoTanfe%2Fi1HQX1dbXdXYwSkmmw3t9ZAKBmfPMdXgzq%2Fr4%2FAOgE4b3KnMkiKAmb3LYGHIHBng3gRwchwZwnkbhKeh3Wmnd2oqpvbmef2vhUDMUZIktjUXoBzdKdqoXAJjIoGJ%2Flrar8KmZK0K%2FAqzJrqXTLmzttVUI1Lzq1fhEApbaAywEMLy7wOUyLrIM5EsbD2ayDH%2FPh2tfDTleU6HSVGfGityNP1V0e69C5N8zbwFp1EFNMSGludzjRUXQAXlvAfC%2BEQTTyKej8S4pNgiVEp%2BnwmmhXW%2FmADUSFr%2FpdFIRod%2FMsPqiD27RgU9lxNNyWmomLaXlwxhHgZQKAoBA0zNh0NP3kUmlqDsI83kkln%2FUksgn8M0uw9SV7LBS7KlM%2Bw7djtOD7xgamNjfXLuqCHXaB3rVCw9i7MRLg%2F0t6PcLxgPAzX0N0MBOsrTcjEgrfcdxQLJdkrJWykGJdFjBWkinftZRQhde3g2z0NG19yTBZ8fuPj1e8jFXsHwd8dL6nCGdsivuKGdMhV4hwkxyTiK4Z%2FgkBhH%2B2Xj5vjyxN%2BuXC1gLPrs2Z4z9doRz8%2F7OztNnBUDAAAjT7%2Fy0Y8PuR1hPwn6yCht%2FqlrzGsv7a56js%2FnsNkF05dDWPkA7AEy2SjmODkhQSQsRMILeCQU2I9rim83Q1jMAkqkeBPPWAuZL699eoiMkjRK2R2sWracvMFPs2t1lQSUAzhKo01JWlxVMx0fRHZUS0lqkNYEJlxcRqpngj%2B%2FSs9yiyhoTJYCisPKvmWb4yVo0nn4Tl0pYPtk69Pj9WpyCQpN4KkVE9ldfm1QZoUBvjYG5pBGHu4Jk%2FzK8tN7AppJwPRoLlQntjFSMP7J9S822LtEZo1TGYd5oTIcE0CFmnUAlVvQU4y%2FnSgAzgyyqhBkKADmhDNGmSUB7F5hBF4L7RojDnzSkzoiOGLTFIWaM6cZ4a8iuDX80OdHCUGo0CWqIhFvRXPJDZAz3pwIw6VEBCVG0BRmPaqac%2BvW1CqpUuXwW1HWLInxmyPVABT0K306DQCN6ZIlXG0%2FIl8vUAUawwnGRA7%2BBt2iCqphfeelR1Ju5xEJnR2zRAC%2BxNctnABHKLwRDQDywBe1yPQe8B3QKOkBMS5JEigDEkx7NLmHXz8hpCxSCAb8ZwxrAjTao7YBhQIOPbkm8wus2TcS4g0MIBZSBpy7A2i2zGTC68thPmmbO2ACFhCpEg%2B8nT9QPkEjpBCouiCqWkTwkgHflUOs%2F3wLTkY2EJisiErA7Oji6ztEzqvrxfciRH448D%2Bk8MQikHtA4q5bw0n35IQYYge2hm9M3y4sBEs4PYgMojwsiMVp9Dw8CTc7zIcADQRfbAmokssTKlQGcqA9AIiMCMAjhTiwjYZwuoGKXWBXxLP1m98N%2BgFEj%2BlpCm%2Fej%2BPWl3ur3%2BYDhCmFDGfz7%2Fk53NF8vVenN2iYKsH3%2FwebcFhahj%2B6XXuUvXbt179DzpsYdO6dd%2FjQFPDXzkiZeeee6FQW%2FYvHLa4LVKvPfWO0Ma1GkybOjwopJH7TF67BihkidOmDT5w%2F8eKGTq9Jkz9jpjqdmz5rQ7aXRFveYg8rasQdmqU%2FH43wHIp20nJ%2BVHjbN%2FUNQ%2BIk4uuuS8C%2B6574abjjpGFkk%2B65y7Fsv4oOlDkSKtVx%2BF3qlqiS2yxHLLBBLEmQiJyy8QvdF5IiYSIsVOu2IiN991zhbaFGeBa0kI%2Fean30Zp0eoxyl%2BA9dL7HoiXuZLdR6t88tU3WiZNdoghhRxKqKGFHkaYAQOFFTjscAbY%2F15fr0%2FfN6Zs%2BjxmD3noEHI4P0IoUJpH6WNWwk3jc2YnYt34ZEKezMmNSAAZIQR%2FLTkIEBSAtzLAufJeTdHv84VvL3kCD1fPGJ08rH68XpkT8jIG6Wq0ZmlJyrKSjOUlORnDsPlL6jY5DCUOdWz2MpRCgeRA7lpRlnhFlIhwNoSJyNlico%2BXik5TykQQRjxqc4JLSVqj8ZTujX12gNA54qGf647OLTnz3aUkv83te5hVAA%3D%3D) format("woff2"),url(decidim/Source_Sans_Pro_900-c3610e1397da654a025046597822bc430e5168d3252bfc1403eb01f263bbaa6d.woff) format("woff"),url(decidim/Source_Sans_Pro_900-0c06eae3332b848078c988eca567670e9e3926fc07b1f403b144112c6ece1f15.ttf) format("truetype")}.list-reset{margin:0;padding:0;list-style:none}.list-inline>li{display:inline-block;vertical-align:top}.list-inline>dt{clear:both;margin-right:0.3em}.list-inline>dt,.list-inline>dd{float:left;margin-bottom:0}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.toggle-show{display:none}.toggle-show.is-expanded{display:block}/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}main{display:block}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}input{overflow:visible}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{box-sizing:border-box;display:table;max-width:100%;padding:0;color:inherit;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}details{display:block}summary{display:list-item}menu{display:block}canvas{display:inline-block}template{display:none}[hidden]{display:none}.foundation-mq{font-family:"small=0em&smallmedium=28.125em&medium=40em&mediumlarge=50em&large=64em&xlarge=75em&xxlarge=90em"}html{box-sizing:border-box;font-size:100%}*,*::before,*::after{box-sizing:inherit}body{margin:0;padding:0;background:#fafafa;font-family:"Source Sans Pro", Helvetica, Roboto, Arial, sans-serif;font-weight:normal;line-height:1.5;color:#3D393C;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle;max-width:100%;height:auto;-ms-interpolation-mode:bicubic}textarea{height:auto;min-height:50px;border-radius:4px}select{width:100%;border-radius:4px}.map_canvas img,.map_canvas embed,.map_canvas object,.mqa-display img,.mqa-display embed,.mqa-display object{max-width:none !important}button{padding:0;appearance:none;border:0;border-radius:4px;background:transparent;line-height:1}[data-whatinput='mouse'] button{outline:0}.is-visible{display:block !important}.is-hidden{display:none !important}.row{max-width:75rem;margin-right:auto;margin-left:auto}.row::before,.row::after{display:table;content:' '}.row::after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-right:0;padding-left:0}.row .row{margin-right:-0.625rem;margin-left:-0.625rem}@media print, screen and (min-width: 28.125em){.row .row{margin-right:-0.625rem;margin-left:-0.625rem}}@media print, screen and (min-width: 40em){.row .row{margin-right:-0.9375rem;margin-left:-0.9375rem}}@media print, screen and (min-width: 50em){.row .row{margin-right:-0.9375rem;margin-left:-0.9375rem}}@media print, screen and (min-width: 64em){.row .row{margin-right:-0.9375rem;margin-left:-0.9375rem}}.row .row.collapse{margin-right:0;margin-left:0}.row.expanded{max-width:none}.row.expanded .row{margin-right:auto;margin-left:auto}.row.gutter-small>.column,.row.gutter-small>.columns{padding-right:0.625rem;padding-left:0.625rem}.row.gutter-medium>.column,.row.gutter-medium>.columns{padding-right:0.9375rem;padding-left:0.9375rem}.column,.columns{width:100%;float:left;padding-right:0.625rem;padding-left:0.625rem}@media print, screen and (min-width: 40em){.column,.columns{padding-right:0.9375rem;padding-left:0.9375rem}}.column:last-child:not(:first-child),.columns:last-child:not(:first-child){float:right}.column.end:last-child:last-child,.end.columns:last-child:last-child{float:left}.column.row.row,.row.row.columns{float:none}.row .column.row.row,.row .row.row.columns{margin-right:0;margin-left:0;padding-right:0;padding-left:0}.small-1{width:8.33333%}.small-push-1{position:relative;left:8.33333%}.small-pull-1{position:relative;left:-8.33333%}.small-offset-0{margin-left:0%}.small-2{width:16.66667%}.small-push-2{position:relative;left:16.66667%}.small-pull-2{position:relative;left:-16.66667%}.small-offset-1{margin-left:8.33333%}.small-3{width:25%}.small-push-3{position:relative;left:25%}.small-pull-3{position:relative;left:-25%}.small-offset-2{margin-left:16.66667%}.small-4{width:33.33333%}.small-push-4{position:relative;left:33.33333%}.small-pull-4{position:relative;left:-33.33333%}.small-offset-3{margin-left:25%}.small-5{width:41.66667%}.small-push-5{position:relative;left:41.66667%}.small-pull-5{position:relative;left:-41.66667%}.small-offset-4{margin-left:33.33333%}.small-6{width:50%}.small-push-6{position:relative;left:50%}.small-pull-6{position:relative;left:-50%}.small-offset-5{margin-left:41.66667%}.small-7{width:58.33333%}.small-push-7{position:relative;left:58.33333%}.small-pull-7{position:relative;left:-58.33333%}.small-offset-6{margin-left:50%}.small-8{width:66.66667%}.small-push-8{position:relative;left:66.66667%}.small-pull-8{position:relative;left:-66.66667%}.small-offset-7{margin-left:58.33333%}.small-9{width:75%}.small-push-9{position:relative;left:75%}.small-pull-9{position:relative;left:-75%}.small-offset-8{margin-left:66.66667%}.small-10{width:83.33333%}.small-push-10{position:relative;left:83.33333%}.small-pull-10{position:relative;left:-83.33333%}.small-offset-9{margin-left:75%}.small-11{width:91.66667%}.small-push-11{position:relative;left:91.66667%}.small-pull-11{position:relative;left:-91.66667%}.small-offset-10{margin-left:83.33333%}.small-12{width:100%}.small-offset-11{margin-left:91.66667%}.small-up-1>.column,.small-up-1>.columns{float:left;width:100%}.small-up-1>.column:nth-of-type(1n),.small-up-1>.columns:nth-of-type(1n){clear:none}.small-up-1>.column:nth-of-type(1n+1),.small-up-1>.columns:nth-of-type(1n+1){clear:both}.small-up-1>.column:last-child,.small-up-1>.columns:last-child{float:left}.small-up-2>.column,.small-up-2>.columns{float:left;width:50%}.small-up-2>.column:nth-of-type(1n),.small-up-2>.columns:nth-of-type(1n){clear:none}.small-up-2>.column:nth-of-type(2n+1),.small-up-2>.columns:nth-of-type(2n+1){clear:both}.small-up-2>.column:last-child,.small-up-2>.columns:last-child{float:left}.small-up-3>.column,.small-up-3>.columns{float:left;width:33.33333%}.small-up-3>.column:nth-of-type(1n),.small-up-3>.columns:nth-of-type(1n){clear:none}.small-up-3>.column:nth-of-type(3n+1),.small-up-3>.columns:nth-of-type(3n+1){clear:both}.small-up-3>.column:last-child,.small-up-3>.columns:last-child{float:left}.small-up-4>.column,.small-up-4>.columns{float:left;width:25%}.small-up-4>.column:nth-of-type(1n),.small-up-4>.columns:nth-of-type(1n){clear:none}.small-up-4>.column:nth-of-type(4n+1),.small-up-4>.columns:nth-of-type(4n+1){clear:both}.small-up-4>.column:last-child,.small-up-4>.columns:last-child{float:left}.small-up-5>.column,.small-up-5>.columns{float:left;width:20%}.small-up-5>.column:nth-of-type(1n),.small-up-5>.columns:nth-of-type(1n){clear:none}.small-up-5>.column:nth-of-type(5n+1),.small-up-5>.columns:nth-of-type(5n+1){clear:both}.small-up-5>.column:last-child,.small-up-5>.columns:last-child{float:left}.small-up-6>.column,.small-up-6>.columns{float:left;width:16.66667%}.small-up-6>.column:nth-of-type(1n),.small-up-6>.columns:nth-of-type(1n){clear:none}.small-up-6>.column:nth-of-type(6n+1),.small-up-6>.columns:nth-of-type(6n+1){clear:both}.small-up-6>.column:last-child,.small-up-6>.columns:last-child{float:left}.small-up-7>.column,.small-up-7>.columns{float:left;width:14.28571%}.small-up-7>.column:nth-of-type(1n),.small-up-7>.columns:nth-of-type(1n){clear:none}.small-up-7>.column:nth-of-type(7n+1),.small-up-7>.columns:nth-of-type(7n+1){clear:both}.small-up-7>.column:last-child,.small-up-7>.columns:last-child{float:left}.small-up-8>.column,.small-up-8>.columns{float:left;width:12.5%}.small-up-8>.column:nth-of-type(1n),.small-up-8>.columns:nth-of-type(1n){clear:none}.small-up-8>.column:nth-of-type(8n+1),.small-up-8>.columns:nth-of-type(8n+1){clear:both}.small-up-8>.column:last-child,.small-up-8>.columns:last-child{float:left}.small-collapse>.column,.small-collapse>.columns{padding-right:0;padding-left:0}.small-collapse .row{margin-right:0;margin-left:0}.expanded.row .small-collapse.row{margin-right:0;margin-left:0}.small-uncollapse>.column,.small-uncollapse>.columns{padding-right:0.625rem;padding-left:0.625rem}.small-centered{margin-right:auto;margin-left:auto}.small-centered,.small-centered:last-child:not(:first-child){float:none;clear:both}.small-uncentered,.small-push-0,.small-pull-0{position:static;float:left;margin-right:0;margin-left:0}@media print, screen and (min-width: 28.125em){.smallmedium-1{width:8.33333%}.smallmedium-push-1{position:relative;left:8.33333%}.smallmedium-pull-1{position:relative;left:-8.33333%}.smallmedium-offset-0{margin-left:0%}.smallmedium-2{width:16.66667%}.smallmedium-push-2{position:relative;left:16.66667%}.smallmedium-pull-2{position:relative;left:-16.66667%}.smallmedium-offset-1{margin-left:8.33333%}.smallmedium-3{width:25%}.smallmedium-push-3{position:relative;left:25%}.smallmedium-pull-3{position:relative;left:-25%}.smallmedium-offset-2{margin-left:16.66667%}.smallmedium-4{width:33.33333%}.smallmedium-push-4{position:relative;left:33.33333%}.smallmedium-pull-4{position:relative;left:-33.33333%}.smallmedium-offset-3{margin-left:25%}.smallmedium-5{width:41.66667%}.smallmedium-push-5{position:relative;left:41.66667%}.smallmedium-pull-5{position:relative;left:-41.66667%}.smallmedium-offset-4{margin-left:33.33333%}.smallmedium-6{width:50%}.smallmedium-push-6{position:relative;left:50%}.smallmedium-pull-6{position:relative;left:-50%}.smallmedium-offset-5{margin-left:41.66667%}.smallmedium-7{width:58.33333%}.smallmedium-push-7{position:relative;left:58.33333%}.smallmedium-pull-7{position:relative;left:-58.33333%}.smallmedium-offset-6{margin-left:50%}.smallmedium-8{width:66.66667%}.smallmedium-push-8{position:relative;left:66.66667%}.smallmedium-pull-8{position:relative;left:-66.66667%}.smallmedium-offset-7{margin-left:58.33333%}.smallmedium-9{width:75%}.smallmedium-push-9{position:relative;left:75%}.smallmedium-pull-9{position:relative;left:-75%}.smallmedium-offset-8{margin-left:66.66667%}.smallmedium-10{width:83.33333%}.smallmedium-push-10{position:relative;left:83.33333%}.smallmedium-pull-10{position:relative;left:-83.33333%}.smallmedium-offset-9{margin-left:75%}.smallmedium-11{width:91.66667%}.smallmedium-push-11{position:relative;left:91.66667%}.smallmedium-pull-11{position:relative;left:-91.66667%}.smallmedium-offset-10{margin-left:83.33333%}.smallmedium-12{width:100%}.smallmedium-offset-11{margin-left:91.66667%}.smallmedium-up-1>.column,.smallmedium-up-1>.columns{float:left;width:100%}.smallmedium-up-1>.column:nth-of-type(1n),.smallmedium-up-1>.columns:nth-of-type(1n){clear:none}.smallmedium-up-1>.column:nth-of-type(1n+1),.smallmedium-up-1>.columns:nth-of-type(1n+1){clear:both}.smallmedium-up-1>.column:last-child,.smallmedium-up-1>.columns:last-child{float:left}.smallmedium-up-2>.column,.smallmedium-up-2>.columns{float:left;width:50%}.smallmedium-up-2>.column:nth-of-type(1n),.smallmedium-up-2>.columns:nth-of-type(1n){clear:none}.smallmedium-up-2>.column:nth-of-type(2n+1),.smallmedium-up-2>.columns:nth-of-type(2n+1){clear:both}.smallmedium-up-2>.column:last-child,.smallmedium-up-2>.columns:last-child{float:left}.smallmedium-up-3>.column,.smallmedium-up-3>.columns{float:left;width:33.33333%}.smallmedium-up-3>.column:nth-of-type(1n),.smallmedium-up-3>.columns:nth-of-type(1n){clear:none}.smallmedium-up-3>.column:nth-of-type(3n+1),.smallmedium-up-3>.columns:nth-of-type(3n+1){clear:both}.smallmedium-up-3>.column:last-child,.smallmedium-up-3>.columns:last-child{float:left}.smallmedium-up-4>.column,.smallmedium-up-4>.columns{float:left;width:25%}.smallmedium-up-4>.column:nth-of-type(1n),.smallmedium-up-4>.columns:nth-of-type(1n){clear:none}.smallmedium-up-4>.column:nth-of-type(4n+1),.smallmedium-up-4>.columns:nth-of-type(4n+1){clear:both}.smallmedium-up-4>.column:last-child,.smallmedium-up-4>.columns:last-child{float:left}.smallmedium-up-5>.column,.smallmedium-up-5>.columns{float:left;width:20%}.smallmedium-up-5>.column:nth-of-type(1n),.smallmedium-up-5>.columns:nth-of-type(1n){clear:none}.smallmedium-up-5>.column:nth-of-type(5n+1),.smallmedium-up-5>.columns:nth-of-type(5n+1){clear:both}.smallmedium-up-5>.column:last-child,.smallmedium-up-5>.columns:last-child{float:left}.smallmedium-up-6>.column,.smallmedium-up-6>.columns{float:left;width:16.66667%}.smallmedium-up-6>.column:nth-of-type(1n),.smallmedium-up-6>.columns:nth-of-type(1n){clear:none}.smallmedium-up-6>.column:nth-of-type(6n+1),.smallmedium-up-6>.columns:nth-of-type(6n+1){clear:both}.smallmedium-up-6>.column:last-child,.smallmedium-up-6>.columns:last-child{float:left}.smallmedium-up-7>.column,.smallmedium-up-7>.columns{float:left;width:14.28571%}.smallmedium-up-7>.column:nth-of-type(1n),.smallmedium-up-7>.columns:nth-of-type(1n){clear:none}.smallmedium-up-7>.column:nth-of-type(7n+1),.smallmedium-up-7>.columns:nth-of-type(7n+1){clear:both}.smallmedium-up-7>.column:last-child,.smallmedium-up-7>.columns:last-child{float:left}.smallmedium-up-8>.column,.smallmedium-up-8>.columns{float:left;width:12.5%}.smallmedium-up-8>.column:nth-of-type(1n),.smallmedium-up-8>.columns:nth-of-type(1n){clear:none}.smallmedium-up-8>.column:nth-of-type(8n+1),.smallmedium-up-8>.columns:nth-of-type(8n+1){clear:both}.smallmedium-up-8>.column:last-child,.smallmedium-up-8>.columns:last-child{float:left}.smallmedium-collapse>.column,.smallmedium-collapse>.columns{padding-right:0;padding-left:0}.smallmedium-collapse .row{margin-right:0;margin-left:0}.expanded.row .smallmedium-collapse.row{margin-right:0;margin-left:0}.smallmedium-uncollapse>.column,.smallmedium-uncollapse>.columns{padding-right:0.625rem;padding-left:0.625rem}.smallmedium-centered{margin-right:auto;margin-left:auto}.smallmedium-centered,.smallmedium-centered:last-child:not(:first-child){float:none;clear:both}.smallmedium-uncentered,.smallmedium-push-0,.smallmedium-pull-0{position:static;float:left;margin-right:0;margin-left:0}}@media print, screen and (min-width: 40em){.medium-1{width:8.33333%}.medium-push-1{position:relative;left:8.33333%}.medium-pull-1{position:relative;left:-8.33333%}.medium-offset-0{margin-left:0%}.medium-2{width:16.66667%}.medium-push-2{position:relative;left:16.66667%}.medium-pull-2{position:relative;left:-16.66667%}.medium-offset-1{margin-left:8.33333%}.medium-3{width:25%}.medium-push-3{position:relative;left:25%}.medium-pull-3{position:relative;left:-25%}.medium-offset-2{margin-left:16.66667%}.medium-4{width:33.33333%}.medium-push-4{position:relative;left:33.33333%}.medium-pull-4{position:relative;left:-33.33333%}.medium-offset-3{margin-left:25%}.medium-5{width:41.66667%}.medium-push-5{position:relative;left:41.66667%}.medium-pull-5{position:relative;left:-41.66667%}.medium-offset-4{margin-left:33.33333%}.medium-6{width:50%}.medium-push-6{position:relative;left:50%}.medium-pull-6{position:relative;left:-50%}.medium-offset-5{margin-left:41.66667%}.medium-7{width:58.33333%}.medium-push-7{position:relative;left:58.33333%}.medium-pull-7{position:relative;left:-58.33333%}.medium-offset-6{margin-left:50%}.medium-8{width:66.66667%}.medium-push-8{position:relative;left:66.66667%}.medium-pull-8{position:relative;left:-66.66667%}.medium-offset-7{margin-left:58.33333%}.medium-9{width:75%}.medium-push-9{position:relative;left:75%}.medium-pull-9{position:relative;left:-75%}.medium-offset-8{margin-left:66.66667%}.medium-10{width:83.33333%}.medium-push-10{position:relative;left:83.33333%}.medium-pull-10{position:relative;left:-83.33333%}.medium-offset-9{margin-left:75%}.medium-11{width:91.66667%}.medium-push-11{position:relative;left:91.66667%}.medium-pull-11{position:relative;left:-91.66667%}.medium-offset-10{margin-left:83.33333%}.medium-12{width:100%}.medium-offset-11{margin-left:91.66667%}.medium-up-1>.column,.medium-up-1>.columns{float:left;width:100%}.medium-up-1>.column:nth-of-type(1n),.medium-up-1>.columns:nth-of-type(1n){clear:none}.medium-up-1>.column:nth-of-type(1n+1),.medium-up-1>.columns:nth-of-type(1n+1){clear:both}.medium-up-1>.column:last-child,.medium-up-1>.columns:last-child{float:left}.medium-up-2>.column,.medium-up-2>.columns{float:left;width:50%}.medium-up-2>.column:nth-of-type(1n),.medium-up-2>.columns:nth-of-type(1n){clear:none}.medium-up-2>.column:nth-of-type(2n+1),.medium-up-2>.columns:nth-of-type(2n+1){clear:both}.medium-up-2>.column:last-child,.medium-up-2>.columns:last-child{float:left}.medium-up-3>.column,.medium-up-3>.columns{float:left;width:33.33333%}.medium-up-3>.column:nth-of-type(1n),.medium-up-3>.columns:nth-of-type(1n){clear:none}.medium-up-3>.column:nth-of-type(3n+1),.medium-up-3>.columns:nth-of-type(3n+1){clear:both}.medium-up-3>.column:last-child,.medium-up-3>.columns:last-child{float:left}.medium-up-4>.column,.medium-up-4>.columns{float:left;width:25%}.medium-up-4>.column:nth-of-type(1n),.medium-up-4>.columns:nth-of-type(1n){clear:none}.medium-up-4>.column:nth-of-type(4n+1),.medium-up-4>.columns:nth-of-type(4n+1){clear:both}.medium-up-4>.column:last-child,.medium-up-4>.columns:last-child{float:left}.medium-up-5>.column,.medium-up-5>.columns{float:left;width:20%}.medium-up-5>.column:nth-of-type(1n),.medium-up-5>.columns:nth-of-type(1n){clear:none}.medium-up-5>.column:nth-of-type(5n+1),.medium-up-5>.columns:nth-of-type(5n+1){clear:both}.medium-up-5>.column:last-child,.medium-up-5>.columns:last-child{float:left}.medium-up-6>.column,.medium-up-6>.columns{float:left;width:16.66667%}.medium-up-6>.column:nth-of-type(1n),.medium-up-6>.columns:nth-of-type(1n){clear:none}.medium-up-6>.column:nth-of-type(6n+1),.medium-up-6>.columns:nth-of-type(6n+1){clear:both}.medium-up-6>.column:last-child,.medium-up-6>.columns:last-child{float:left}.medium-up-7>.column,.medium-up-7>.columns{float:left;width:14.28571%}.medium-up-7>.column:nth-of-type(1n),.medium-up-7>.columns:nth-of-type(1n){clear:none}.medium-up-7>.column:nth-of-type(7n+1),.medium-up-7>.columns:nth-of-type(7n+1){clear:both}.medium-up-7>.column:last-child,.medium-up-7>.columns:last-child{float:left}.medium-up-8>.column,.medium-up-8>.columns{float:left;width:12.5%}.medium-up-8>.column:nth-of-type(1n),.medium-up-8>.columns:nth-of-type(1n){clear:none}.medium-up-8>.column:nth-of-type(8n+1),.medium-up-8>.columns:nth-of-type(8n+1){clear:both}.medium-up-8>.column:last-child,.medium-up-8>.columns:last-child{float:left}.medium-collapse>.column,.medium-collapse>.columns{padding-right:0;padding-left:0}.medium-collapse .row{margin-right:0;margin-left:0}.expanded.row .medium-collapse.row{margin-right:0;margin-left:0}.medium-uncollapse>.column,.medium-uncollapse>.columns{padding-right:0.9375rem;padding-left:0.9375rem}.medium-centered{margin-right:auto;margin-left:auto}.medium-centered,.medium-centered:last-child:not(:first-child){float:none;clear:both}.medium-uncentered,.medium-push-0,.medium-pull-0{position:static;float:left;margin-right:0;margin-left:0}}@media print, screen and (min-width: 50em){.mediumlarge-1{width:8.33333%}.mediumlarge-push-1{position:relative;left:8.33333%}.mediumlarge-pull-1{position:relative;left:-8.33333%}.mediumlarge-offset-0{margin-left:0%}.mediumlarge-2{width:16.66667%}.mediumlarge-push-2{position:relative;left:16.66667%}.mediumlarge-pull-2{position:relative;left:-16.66667%}.mediumlarge-offset-1{margin-left:8.33333%}.mediumlarge-3{width:25%}.mediumlarge-push-3{position:relative;left:25%}.mediumlarge-pull-3{position:relative;left:-25%}.mediumlarge-offset-2{margin-left:16.66667%}.mediumlarge-4{width:33.33333%}.mediumlarge-push-4{position:relative;left:33.33333%}.mediumlarge-pull-4{position:relative;left:-33.33333%}.mediumlarge-offset-3{margin-left:25%}.mediumlarge-5{width:41.66667%}.mediumlarge-push-5{position:relative;left:41.66667%}.mediumlarge-pull-5{position:relative;left:-41.66667%}.mediumlarge-offset-4{margin-left:33.33333%}.mediumlarge-6{width:50%}.mediumlarge-push-6{position:relative;left:50%}.mediumlarge-pull-6{position:relative;left:-50%}.mediumlarge-offset-5{margin-left:41.66667%}.mediumlarge-7{width:58.33333%}.mediumlarge-push-7{position:relative;left:58.33333%}.mediumlarge-pull-7{position:relative;left:-58.33333%}.mediumlarge-offset-6{margin-left:50%}.mediumlarge-8{width:66.66667%}.mediumlarge-push-8{position:relative;left:66.66667%}.mediumlarge-pull-8{position:relative;left:-66.66667%}.mediumlarge-offset-7{margin-left:58.33333%}.mediumlarge-9{width:75%}.mediumlarge-push-9{position:relative;left:75%}.mediumlarge-pull-9{position:relative;left:-75%}.mediumlarge-offset-8{margin-left:66.66667%}.mediumlarge-10{width:83.33333%}.mediumlarge-push-10{position:relative;left:83.33333%}.mediumlarge-pull-10{position:relative;left:-83.33333%}.mediumlarge-offset-9{margin-left:75%}.mediumlarge-11{width:91.66667%}.mediumlarge-push-11{position:relative;left:91.66667%}.mediumlarge-pull-11{position:relative;left:-91.66667%}.mediumlarge-offset-10{margin-left:83.33333%}.mediumlarge-12{width:100%}.mediumlarge-offset-11{margin-left:91.66667%}.mediumlarge-up-1>.column,.mediumlarge-up-1>.columns{float:left;width:100%}.mediumlarge-up-1>.column:nth-of-type(1n),.mediumlarge-up-1>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-1>.column:nth-of-type(1n+1),.mediumlarge-up-1>.columns:nth-of-type(1n+1){clear:both}.mediumlarge-up-1>.column:last-child,.mediumlarge-up-1>.columns:last-child{float:left}.mediumlarge-up-2>.column,.mediumlarge-up-2>.columns{float:left;width:50%}.mediumlarge-up-2>.column:nth-of-type(1n),.mediumlarge-up-2>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-2>.column:nth-of-type(2n+1),.mediumlarge-up-2>.columns:nth-of-type(2n+1){clear:both}.mediumlarge-up-2>.column:last-child,.mediumlarge-up-2>.columns:last-child{float:left}.mediumlarge-up-3>.column,.mediumlarge-up-3>.columns{float:left;width:33.33333%}.mediumlarge-up-3>.column:nth-of-type(1n),.mediumlarge-up-3>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-3>.column:nth-of-type(3n+1),.mediumlarge-up-3>.columns:nth-of-type(3n+1){clear:both}.mediumlarge-up-3>.column:last-child,.mediumlarge-up-3>.columns:last-child{float:left}.mediumlarge-up-4>.column,.mediumlarge-up-4>.columns{float:left;width:25%}.mediumlarge-up-4>.column:nth-of-type(1n),.mediumlarge-up-4>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-4>.column:nth-of-type(4n+1),.mediumlarge-up-4>.columns:nth-of-type(4n+1){clear:both}.mediumlarge-up-4>.column:last-child,.mediumlarge-up-4>.columns:last-child{float:left}.mediumlarge-up-5>.column,.mediumlarge-up-5>.columns{float:left;width:20%}.mediumlarge-up-5>.column:nth-of-type(1n),.mediumlarge-up-5>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-5>.column:nth-of-type(5n+1),.mediumlarge-up-5>.columns:nth-of-type(5n+1){clear:both}.mediumlarge-up-5>.column:last-child,.mediumlarge-up-5>.columns:last-child{float:left}.mediumlarge-up-6>.column,.mediumlarge-up-6>.columns{float:left;width:16.66667%}.mediumlarge-up-6>.column:nth-of-type(1n),.mediumlarge-up-6>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-6>.column:nth-of-type(6n+1),.mediumlarge-up-6>.columns:nth-of-type(6n+1){clear:both}.mediumlarge-up-6>.column:last-child,.mediumlarge-up-6>.columns:last-child{float:left}.mediumlarge-up-7>.column,.mediumlarge-up-7>.columns{float:left;width:14.28571%}.mediumlarge-up-7>.column:nth-of-type(1n),.mediumlarge-up-7>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-7>.column:nth-of-type(7n+1),.mediumlarge-up-7>.columns:nth-of-type(7n+1){clear:both}.mediumlarge-up-7>.column:last-child,.mediumlarge-up-7>.columns:last-child{float:left}.mediumlarge-up-8>.column,.mediumlarge-up-8>.columns{float:left;width:12.5%}.mediumlarge-up-8>.column:nth-of-type(1n),.mediumlarge-up-8>.columns:nth-of-type(1n){clear:none}.mediumlarge-up-8>.column:nth-of-type(8n+1),.mediumlarge-up-8>.columns:nth-of-type(8n+1){clear:both}.mediumlarge-up-8>.column:last-child,.mediumlarge-up-8>.columns:last-child{float:left}.mediumlarge-collapse>.column,.mediumlarge-collapse>.columns{padding-right:0;padding-left:0}.mediumlarge-collapse .row{margin-right:0;margin-left:0}.expanded.row .mediumlarge-collapse.row{margin-right:0;margin-left:0}.mediumlarge-uncollapse>.column,.mediumlarge-uncollapse>.columns{padding-right:0.9375rem;padding-left:0.9375rem}.mediumlarge-centered{margin-right:auto;margin-left:auto}.mediumlarge-centered,.mediumlarge-centered:last-child:not(:first-child){float:none;clear:both}.mediumlarge-uncentered,.mediumlarge-push-0,.mediumlarge-pull-0{position:static;float:left;margin-right:0;margin-left:0}}@media print, screen and (min-width: 64em){.large-1{width:8.33333%}.large-push-1{position:relative;left:8.33333%}.large-pull-1{position:relative;left:-8.33333%}.large-offset-0{margin-left:0%}.large-2{width:16.66667%}.large-push-2{position:relative;left:16.66667%}.large-pull-2{position:relative;left:-16.66667%}.large-offset-1{margin-left:8.33333%}.large-3{width:25%}.large-push-3{position:relative;left:25%}.large-pull-3{position:relative;left:-25%}.large-offset-2{margin-left:16.66667%}.large-4{width:33.33333%}.large-push-4{position:relative;left:33.33333%}.large-pull-4{position:relative;left:-33.33333%}.large-offset-3{margin-left:25%}.large-5{width:41.66667%}.large-push-5{position:relative;left:41.66667%}.large-pull-5{position:relative;left:-41.66667%}.large-offset-4{margin-left:33.33333%}.large-6{width:50%}.large-push-6{position:relative;left:50%}.large-pull-6{position:relative;left:-50%}.large-offset-5{margin-left:41.66667%}.large-7{width:58.33333%}.large-push-7{position:relative;left:58.33333%}.large-pull-7{position:relative;left:-58.33333%}.large-offset-6{margin-left:50%}.large-8{width:66.66667%}.large-push-8{position:relative;left:66.66667%}.large-pull-8{position:relative;left:-66.66667%}.large-offset-7{margin-left:58.33333%}.large-9{width:75%}.large-push-9{position:relative;left:75%}.large-pull-9{position:relative;left:-75%}.large-offset-8{margin-left:66.66667%}.large-10{width:83.33333%}.large-push-10{position:relative;left:83.33333%}.large-pull-10{position:relative;left:-83.33333%}.large-offset-9{margin-left:75%}.large-11{width:91.66667%}.large-push-11{position:relative;left:91.66667%}.large-pull-11{position:relative;left:-91.66667%}.large-offset-10{margin-left:83.33333%}.large-12{width:100%}.large-offset-11{margin-left:91.66667%}.large-up-1>.column,.large-up-1>.columns{float:left;width:100%}.large-up-1>.column:nth-of-type(1n),.large-up-1>.columns:nth-of-type(1n){clear:none}.large-up-1>.column:nth-of-type(1n+1),.large-up-1>.columns:nth-of-type(1n+1){clear:both}.large-up-1>.column:last-child,.large-up-1>.columns:last-child{float:left}.large-up-2>.column,.large-up-2>.columns{float:left;width:50%}.large-up-2>.column:nth-of-type(1n),.large-up-2>.columns:nth-of-type(1n){clear:none}.large-up-2>.column:nth-of-type(2n+1),.large-up-2>.columns:nth-of-type(2n+1){clear:both}.large-up-2>.column:last-child,.large-up-2>.columns:last-child{float:left}.large-up-3>.column,.large-up-3>.columns{float:left;width:33.33333%}.large-up-3>.column:nth-of-type(1n),.large-up-3>.columns:nth-of-type(1n){clear:none}.large-up-3>.column:nth-of-type(3n+1),.large-up-3>.columns:nth-of-type(3n+1){clear:both}.large-up-3>.column:last-child,.large-up-3>.columns:last-child{float:left}.large-up-4>.column,.large-up-4>.columns{float:left;width:25%}.large-up-4>.column:nth-of-type(1n),.large-up-4>.columns:nth-of-type(1n){clear:none}.large-up-4>.column:nth-of-type(4n+1),.large-up-4>.columns:nth-of-type(4n+1){clear:both}.large-up-4>.column:last-child,.large-up-4>.columns:last-child{float:left}.large-up-5>.column,.large-up-5>.columns{float:left;width:20%}.large-up-5>.column:nth-of-type(1n),.large-up-5>.columns:nth-of-type(1n){clear:none}.large-up-5>.column:nth-of-type(5n+1),.large-up-5>.columns:nth-of-type(5n+1){clear:both}.large-up-5>.column:last-child,.large-up-5>.columns:last-child{float:left}.large-up-6>.column,.large-up-6>.columns{float:left;width:16.66667%}.large-up-6>.column:nth-of-type(1n),.large-up-6>.columns:nth-of-type(1n){clear:none}.large-up-6>.column:nth-of-type(6n+1),.large-up-6>.columns:nth-of-type(6n+1){clear:both}.large-up-6>.column:last-child,.large-up-6>.columns:last-child{float:left}.large-up-7>.column,.large-up-7>.columns{float:left;width:14.28571%}.large-up-7>.column:nth-of-type(1n),.large-up-7>.columns:nth-of-type(1n){clear:none}.large-up-7>.column:nth-of-type(7n+1),.large-up-7>.columns:nth-of-type(7n+1){clear:both}.large-up-7>.column:last-child,.large-up-7>.columns:last-child{float:left}.large-up-8>.column,.large-up-8>.columns{float:left;width:12.5%}.large-up-8>.column:nth-of-type(1n),.large-up-8>.columns:nth-of-type(1n){clear:none}.large-up-8>.column:nth-of-type(8n+1),.large-up-8>.columns:nth-of-type(8n+1){clear:both}.large-up-8>.column:last-child,.large-up-8>.columns:last-child{float:left}.large-collapse>.column,.large-collapse>.columns{padding-right:0;padding-left:0}.large-collapse .row{margin-right:0;margin-left:0}.expanded.row .large-collapse.row{margin-right:0;margin-left:0}.large-uncollapse>.column,.large-uncollapse>.columns{padding-right:0.9375rem;padding-left:0.9375rem}.large-centered{margin-right:auto;margin-left:auto}.large-centered,.large-centered:last-child:not(:first-child){float:none;clear:both}.large-uncentered,.large-push-0,.large-pull-0{position:static;float:left;margin-right:0;margin-left:0}}.column-block{margin-bottom:1.25rem}.column-block>:last-child{margin-bottom:0}@media print, screen and (min-width: 40em){.column-block{margin-bottom:1.875rem}.column-block>:last-child{margin-bottom:0}}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0}p{margin-bottom:1rem;font-size:inherit;line-height:1.6;text-rendering:optimizeLegibility}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:600;line-height:inherit}small{font-size:90%;line-height:inherit}h1,h2,h3,h4,h5,h6{font-family:"Source Sans Pro", Helvetica, Roboto, Arial, sans-serif;font-style:normal;font-weight:normal;color:inherit;text-rendering:optimizeLegibility}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{line-height:0;color:#8c838a}h1{font-size:2.5rem;line-height:1.4;margin-top:0;margin-bottom:0.5rem}h2{font-size:2rem;line-height:1.4;margin-top:0;margin-bottom:0.5rem}h3{font-size:1.75rem;line-height:1.4;margin-top:0;margin-bottom:0.5rem}h4{font-size:1.5rem;line-height:1.4;margin-top:0;margin-bottom:0.5rem}h5{font-size:1.25rem;line-height:1.4;margin-top:0;margin-bottom:0.5rem}h6{font-size:1rem;line-height:1.4;margin-top:0;margin-bottom:0.5rem}@media print, screen and (min-width: 40em){h1{font-size:3rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.5rem}h5{font-size:1.25rem}h6{font-size:1rem}}a{line-height:inherit;color:#599aa6;text-decoration:none;cursor:pointer}a:hover,a:focus{color:#4d848f}a img{border:0}hr{clear:both;max-width:75rem;height:0;margin:6rem auto 5rem;border-top:0;border-right:0;border-bottom:1px solid #e8e8e8;border-left:0}ul,ol,dl{margin-bottom:1rem;list-style-position:outside;line-height:1.6}li{font-size:inherit}ul{margin-left:1.25rem;list-style-type:disc}ol{margin-left:1.25rem}ul ul,ol ul,ul ol,ol ol{margin-left:1.25rem;margin-bottom:0}dl{margin-bottom:1rem}dl dt{margin-bottom:0.3rem;font-weight:600}blockquote{margin:0 0 1rem;padding:0.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #e8e8e8}blockquote,blockquote p{line-height:1.6;color:#2c2930}cite{display:block;font-size:0.8125rem;color:#2c2930}cite:before{content:"— "}abbr{border-bottom:1px dotted #1a181d;color:#3D393C;cursor:help}figure{margin:0}code{padding:0.125rem 0.3125rem 0.0625rem;border:1px solid #e8e8e8;background-color:#fafafa;font-family:Consolas, "Liberation Mono", Courier, monospace;font-weight:normal;color:#1a181d}kbd{margin:0;padding:0.125rem 0.25rem 0;background-color:#fafafa;font-family:Consolas, "Liberation Mono", Courier, monospace;color:#1a181d;border-radius:4px}.subheader{margin-top:0.2rem;margin-bottom:0.5rem;font-weight:normal;line-height:1.4;color:#2c2930}.lead{font-size:125%;line-height:1.45}.stat{font-size:2.5rem;line-height:1}p+.stat{margin-top:-1rem}.no-bullet{margin-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}@media print, screen and (min-width: 28.125em){.smallmedium-text-left{text-align:left}.smallmedium-text-right{text-align:right}.smallmedium-text-center{text-align:center}.smallmedium-text-justify{text-align:justify}}@media print, screen and (min-width: 40em){.medium-text-left{text-align:left}.medium-text-right{text-align:right}.medium-text-center{text-align:center}.medium-text-justify{text-align:justify}}@media print, screen and (min-width: 50em){.mediumlarge-text-left{text-align:left}.mediumlarge-text-right{text-align:right}.mediumlarge-text-center{text-align:center}.mediumlarge-text-justify{text-align:justify}}@media print, screen and (min-width: 64em){.large-text-left{text-align:left}.large-text-right{text-align:right}.large-text-center{text-align:center}.large-text-justify{text-align:justify}}.show-for-print{display:none !important}@media print{*{background:transparent !important;box-shadow:none !important;color:black !important;text-shadow:none !important}.show-for-print{display:block !important}.hide-for-print{display:none !important}table.show-for-print{display:table !important}thead.show-for-print{display:table-header-group !important}tbody.show-for-print{display:table-row-group !important}tr.show-for-print{display:table-row !important}td.show-for-print{display:table-cell !important}th.show-for-print{display:table-cell !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}.ir a:after,a[href^='javascript:']:after,a[href^='#']:after{content:''}abbr[title]:after{content:" (" attr(title) ")"}pre,blockquote{border:1px solid #2c2930;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}}[type='text'],[type='password'],[type='date'],[type='datetime'],[type='datetime-local'],[type='month'],[type='week'],[type='email'],[type='number'],[type='search'],[type='tel'],[type='time'],[type='url'],[type='color'],textarea{display:block;box-sizing:border-box;width:100%;height:2.4375rem;margin:0 0 1rem;padding:0.5rem;border:1px solid #e8e8e8;border-radius:4px;background-color:#fff;box-shadow:inset 0 1px 2px rgba(26,24,29,0.1);font-family:inherit;font-size:1rem;font-weight:normal;color:#1a181d;transition:box-shadow 0.5s, border-color 0.25s ease-in-out;appearance:none}[type='text']:focus,[type='password']:focus,[type='date']:focus,[type='datetime']:focus,[type='datetime-local']:focus,[type='month']:focus,[type='week']:focus,[type='email']:focus,[type='number']:focus,[type='search']:focus,[type='tel']:focus,[type='time']:focus,[type='url']:focus,[type='color']:focus,textarea:focus{outline:none;border:1px solid #ef604d;background-color:#fff;box-shadow:0 0 5px #e8e8e8;transition:box-shadow 0.5s, border-color 0.25s ease-in-out}textarea{max-width:100%}textarea[rows]{height:auto}input::placeholder,textarea::placeholder{color:#9c9c9c}input:disabled,input[readonly],textarea:disabled,textarea[readonly]{background-color:#fafafa;cursor:not-allowed}[type='submit'],[type='button']{appearance:none;border-radius:4px}input[type='search']{box-sizing:border-box}[type='file'],[type='checkbox'],[type='radio']{margin:0 0 1rem}[type='checkbox']+label,[type='radio']+label{display:inline-block;vertical-align:baseline;margin-left:0.5rem;margin-right:1rem;margin-bottom:0}[type='checkbox']+label[for],[type='radio']+label[for]{cursor:pointer}label>[type='checkbox'],label>[type='radio']{margin-right:0.5rem}[type='file']{width:100%}label{display:block;margin:0;font-size:1rem;font-weight:normal;line-height:1.8;color:#3D393C}label.middle{margin:0 0 1rem;padding:0.5625rem 0}.help-text{margin-top:-0.5rem;font-size:0.8125rem;font-style:italic;color:#3D393C}.input-group{display:table;width:100%;margin-bottom:1rem}.input-group>:first-child{border-radius:4px 0 0 4px}.input-group>:last-child>*{border-radius:0 4px 4px 0}.input-group-label,.input-group-field,.input-group-button,.input-group-button a,.input-group-button input,.input-group-button button,.input-group-button label{margin:0;white-space:nowrap;display:table-cell;vertical-align:middle}.input-group-label{padding:0 1rem;border:1px solid #e8e8e8;background:#fafafa;color:#1a181d;text-align:center;white-space:nowrap;width:1%;height:100%}.input-group-label:first-child{border-right:0}.input-group-label:last-child{border-left:0}.input-group-field{border-radius:0;height:2.5rem}.input-group-button{padding-top:0;padding-bottom:0;text-align:center;width:1%;height:100%}.input-group-button a,.input-group-button input,.input-group-button button,.input-group-button label{height:2.5rem;padding-top:0;padding-bottom:0;font-size:1rem}.input-group .input-group-button{display:table-cell}fieldset{margin:0;padding:0;border:0}legend{max-width:100%;margin-bottom:0.5rem}.fieldset{margin:1.125rem 0;padding:1.25rem;border:1px solid #e8e8e8}.fieldset legend{margin:0;margin-left:-0.1875rem;padding:0 0.1875rem;background:#fafafa}select{height:2.4375rem;margin:0 0 1rem;padding:0.5rem;appearance:none;border:1px solid #e8e8e8;border-radius:4px;background-color:#fff;font-family:inherit;font-size:1rem;line-height:normal;color:#1a181d;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2844, 41, 48%29'></polygon></svg>");background-origin:content-box;background-position:right -1rem center;background-repeat:no-repeat;background-size:9px 6px;padding-right:1.5rem;transition:box-shadow 0.5s, border-color 0.25s ease-in-out}@media screen and (min-width: 0\0){select{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==")}}select:focus{outline:none;border:1px solid #ef604d;background-color:#fff;box-shadow:0 0 5px #e8e8e8;transition:box-shadow 0.5s, border-color 0.25s ease-in-out}select:disabled{background-color:#fafafa;cursor:not-allowed}select::-ms-expand{display:none}select[multiple]{height:auto;background-image:none}.is-invalid-input:not(:focus){border-color:#ec5840;background-color:#fdeeec}.is-invalid-input:not(:focus)::placeholder{color:#ec5840}.is-invalid-label{color:#ec5840}.form-error{display:none;margin-top:-0.5rem;margin-bottom:1rem;font-size:0.75rem;font-weight:600;color:#ec5840}.form-error.is-visible{display:block}.button,.button:disabled{display:inline-block;vertical-align:middle;margin:0 0 1rem 0;padding:0.85em 1em;-webkit-appearance:none;border:1px solid transparent;border-radius:4px;transition:background-color 0.25s ease-out, color 0.25s ease-out;font-size:1rem;line-height:1;text-align:center;cursor:pointer;background-color:#ef604d;color:#fff}[data-whatinput='mouse'] .button{outline:0}.button:hover,.button:focus{background-color:#eb3922;color:#fff}.button.tiny{font-size:0.9rem}.button.small{font-size:0.9rem}.button.large{font-size:1.25rem}.button.expanded{display:block;width:100%;margin-right:0;margin-left:0}.button.primary{background-color:#ef604d;color:#fff}.button.primary:hover,.button.primary:focus{background-color:#e82e15;color:#fff}.button.secondary{background-color:#599aa6;color:#fff}.button.secondary:hover,.button.secondary:focus{background-color:#477b85;color:#fff}.button.success{background-color:#57d685;color:#1a181d}.button.success:hover,.button.success:focus{background-color:#2fc264;color:#1a181d}.button.warning{background-color:#ffae00;color:#1a181d}.button.warning:hover,.button.warning:focus{background-color:#cc8b00;color:#1a181d}.button.alert{background-color:#ec5840;color:#fff}.button.alert:hover,.button.alert:focus{background-color:#da3116;color:#fff}.button.hollow{border:1px solid #ef604d;color:#ef604d}.button.hollow,.button.hollow:hover,.button.hollow:focus{background-color:transparent}.button.hollow:hover,.button.hollow:focus{border-color:#911d0d;color:#911d0d}.button.hollow.primary{border:1px solid #ef604d;color:#ef604d}.button.hollow.primary:hover,.button.hollow.primary:focus{border-color:#911d0d;color:#911d0d}.button.hollow.secondary{border:1px solid #599aa6;color:#599aa6}.button.hollow.secondary:hover,.button.hollow.secondary:focus{border-color:#2d4d53;color:#2d4d53}.button.hollow.success{border:1px solid #57d685;color:#57d685}.button.hollow.success:hover,.button.hollow.success:focus{border-color:#1e793f;color:#1e793f}.button.hollow.warning{border:1px solid #ffae00;color:#ffae00}.button.hollow.warning:hover,.button.hollow.warning:focus{border-color:#805700;color:#805700}.button.hollow.alert{border:1px solid #ec5840;color:#ec5840}.button.hollow.alert:hover,.button.hollow.alert:focus{border-color:#881f0e;color:#881f0e}.button.disabled,.button:disabled,.button[disabled]{opacity:0.25;cursor:not-allowed}.button.disabled:hover,.button:hover:disabled,.button.disabled:focus,.button:focus:disabled,.button[disabled]:hover,.button[disabled]:focus{background-color:#ef604d;color:#fff}.button.disabled.primary,.primary.button:disabled,.button[disabled].primary{opacity:0.25;cursor:not-allowed}.button.disabled.primary:hover,.primary.button:hover:disabled,.button.disabled.primary:focus,.primary.button:focus:disabled,.button[disabled].primary:hover,.button[disabled].primary:focus{background-color:#ef604d;color:#fff}.button.disabled.secondary,.secondary.button:disabled,.button[disabled].secondary{opacity:0.25;cursor:not-allowed}.button.disabled.secondary:hover,.secondary.button:hover:disabled,.button.disabled.secondary:focus,.secondary.button:focus:disabled,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#599aa6;color:#fff}.button.disabled.success,.success.button:disabled,.button[disabled].success{opacity:0.25;cursor:not-allowed}.button.disabled.success:hover,.success.button:hover:disabled,.button.disabled.success:focus,.success.button:focus:disabled,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#57d685;color:#fff}.button.disabled.warning,.warning.button:disabled,.button[disabled].warning{opacity:0.25;cursor:not-allowed}.button.disabled.warning:hover,.warning.button:hover:disabled,.button.disabled.warning:focus,.warning.button:focus:disabled,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#ffae00;color:#fff}.button.disabled.alert,.alert.button:disabled,.button[disabled].alert{opacity:0.25;cursor:not-allowed}.button.disabled.alert:hover,.alert.button:hover:disabled,.button.disabled.alert:focus,.alert.button:focus:disabled,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#ec5840;color:#fff}.button.dropdown::after{display:block;width:0;height:0;border:inset 0.4em;content:'';border-bottom-width:0;border-top-style:solid;border-color:#fff transparent transparent;position:relative;top:0.4em;display:inline-block;float:right;margin-left:1em}.button.arrow-only::after{top:-0.1em;float:none;margin-left:0}.accordion{margin-left:0;background:#ef604d;list-style-type:none}.accordion-item:first-child>:first-child{border-radius:4px 4px 0 0}.accordion-item:last-child>:last-child{border-radius:0 0 4px 4px}.accordion-title{position:relative;display:block;padding:1.25rem 1rem;border:1px solid #fafafa;border-bottom:0;font-size:0.75rem;line-height:1;color:#fff}:last-child:not(.is-active)>.accordion-title{border-bottom:1px solid #fafafa;border-radius:0 0 4px 4px}.accordion-title:hover,.accordion-title:focus{background-color:#fafafa}.accordion-title::before{position:absolute;top:50%;right:1rem;margin-top:-0.5rem;content:'+'}.is-active>.accordion-title::before{content:'–'}.accordion-content{display:none;padding:1rem;border:1px solid #fafafa;border-bottom:0;background-color:#fff;color:inherit}:last-child>.accordion-content:last-child{border-bottom:1px solid #fafafa}.is-accordion-submenu-parent>a{position:relative}.is-accordion-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-bottom-width:0;border-top-style:solid;border-color:#ef604d transparent transparent;position:absolute;top:50%;margin-top:-3px;right:1rem}.is-accordion-submenu-parent[aria-expanded='true']>a::after{transform:rotate(180deg);transform-origin:50% 50%}.badge{display:inline-block;min-width:1.5em;padding:0.3em;border-radius:50%;font-size:0.6rem;text-align:center;background:#ef604d;color:#fff}.badge.primary{background:#ef604d;color:#fff}.badge.secondary{background:#599aa6;color:#fff}.badge.success{background:#57d685;color:#1a181d}.badge.warning{background:#ffae00;color:#1a181d}.badge.alert{background:#ec5840;color:#fff}.breadcrumbs{margin:0 0 1rem 0;list-style:none}.breadcrumbs::before,.breadcrumbs::after{display:table;content:' '}.breadcrumbs::after{clear:both}.breadcrumbs li{float:left;font-size:0.6875rem;color:#1a181d;cursor:default;text-transform:uppercase}.breadcrumbs li:not(:last-child)::after{position:relative;top:1px;margin:0 0.75rem;opacity:1;content:"/";color:#e8e8e8}.breadcrumbs a{color:#ef604d}.breadcrumbs a:hover{text-decoration:underline}.breadcrumbs .disabled{color:#e8e8e8;cursor:not-allowed}.button-group{margin-bottom:1rem;font-size:0}.button-group::before,.button-group::after{display:table;content:' '}.button-group::after{clear:both}.button-group .button{margin:0;margin-right:1px;margin-bottom:1px;font-size:1rem}.button-group .button:last-child{margin-right:0}.button-group.tiny .button{font-size:0.9rem}.button-group.small .button{font-size:0.9rem}.button-group.large .button{font-size:1.25rem}.button-group.expanded{margin-right:-1px}.button-group.expanded::before,.button-group.expanded::after{display:none}.button-group.expanded .button:first-child:nth-last-child(2),.button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button{display:inline-block;width:calc(50% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(2):last-child,.button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(3),.button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button{display:inline-block;width:calc(33.33333% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(3):last-child,.button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(4),.button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button{display:inline-block;width:calc(25% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(4):last-child,.button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(5),.button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button{display:inline-block;width:calc(20% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(5):last-child,.button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child{margin-right:-6px}.button-group.expanded .button:first-child:nth-last-child(6),.button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button{display:inline-block;width:calc(16.66667% - 1px);margin-right:1px}.button-group.expanded .button:first-child:nth-last-child(6):last-child,.button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child{margin-right:-6px}.button-group.primary .button{background-color:#ef604d;color:#fff}.button-group.primary .button:hover,.button-group.primary .button:focus{background-color:#e82e15;color:#fff}.button-group.secondary .button{background-color:#599aa6;color:#fff}.button-group.secondary .button:hover,.button-group.secondary .button:focus{background-color:#477b85;color:#fff}.button-group.success .button{background-color:#57d685;color:#1a181d}.button-group.success .button:hover,.button-group.success .button:focus{background-color:#2fc264;color:#1a181d}.button-group.warning .button{background-color:#ffae00;color:#1a181d}.button-group.warning .button:hover,.button-group.warning .button:focus{background-color:#cc8b00;color:#1a181d}.button-group.alert .button{background-color:#ec5840;color:#fff}.button-group.alert .button:hover,.button-group.alert .button:focus{background-color:#da3116;color:#fff}.button-group.stacked .button,.button-group.stacked-for-small .button,.button-group.stacked-for-medium .button{width:100%}.button-group.stacked .button:last-child,.button-group.stacked-for-small .button:last-child,.button-group.stacked-for-medium .button:last-child{margin-bottom:0}@media print, screen and (min-width: 40em){.button-group.stacked-for-small .button{width:auto;margin-bottom:0}}@media print, screen and (min-width: 64em){.button-group.stacked-for-medium .button{width:auto;margin-bottom:0}}@media screen and (max-width: 28.0625em){.button-group.stacked-for-small.expanded{display:block}.button-group.stacked-for-small.expanded .button{display:block;margin-right:0}}.callout{position:relative;margin:0 0 1rem 0;padding:1rem;border:0;border-radius:0;background-color:white;color:#3D393C}.callout>:first-child{margin-top:0}.callout>:last-child{margin-bottom:0}.callout.primary{background-color:#fdefed;color:#3D393C}.callout.secondary{background-color:#eef5f6;color:#3D393C}.callout.success{background-color:#eefbf3;color:#3D393C}.callout.warning{background-color:#fff7e6;color:#3D393C}.callout.alert{background-color:#fdeeec;color:#3D393C}.callout.small{padding-top:0.5rem;padding-right:0.5rem;padding-bottom:0.5rem;padding-left:0.5rem}.callout.large{padding-top:3rem;padding-right:3rem;padding-bottom:3rem;padding-left:3rem}.card,.comment-thread{margin-bottom:1rem;border:1px solid #fafafa;border-radius:4px;background:#fff;box-shadow:none;overflow:hidden;color:#3D393C}.card>:last-child,.comment-thread>:last-child{margin-bottom:0}.card-divider{padding:1rem;background:#fafafa}.card-divider>:last-child{margin-bottom:0}.card-section{padding:1rem}.card-section>:last-child{margin-bottom:0}.close-button{position:absolute;color:#2c2930;cursor:pointer}[data-whatinput='mouse'] .close-button{outline:0}.close-button:hover,.close-button:focus{color:#ef604d}.close-button.small{right:1rem;top:0.5rem;font-size:2em;line-height:1}.close-button,.close-button.medium{right:1rem;top:0.5rem;font-size:2em;line-height:1}.menu{margin:0;list-style-type:none}.menu>li{display:table-cell;vertical-align:middle}[data-whatinput='mouse'] .menu>li{outline:0}.menu>li>a{display:block;padding:0.7rem 1rem;line-height:1}.menu input,.menu select,.menu a,.menu button{margin-bottom:0}.menu>li>a img,.menu>li>a i,.menu>li>a svg{vertical-align:middle}.menu>li>a img+span,.menu>li>a i+span,.menu>li>a svg+span{vertical-align:middle}.menu>li>a img,.menu>li>a i,.menu>li>a svg{margin-right:0.25rem;display:inline-block}.menu>li,.menu.horizontal>li{display:table-cell}.menu.expanded{display:table;width:100%;table-layout:fixed}.menu.expanded>li:first-child:last-child{width:100%}.menu.vertical>li{display:block}@media print, screen and (min-width: 28.125em){.menu.smallmedium-horizontal>li{display:table-cell}.menu.smallmedium-expanded{display:table;width:100%;table-layout:fixed}.menu.smallmedium-expanded>li:first-child:last-child{width:100%}.menu.smallmedium-vertical>li{display:block}}@media print, screen and (min-width: 40em){.menu.medium-horizontal>li{display:table-cell}.menu.medium-expanded{display:table;width:100%;table-layout:fixed}.menu.medium-expanded>li:first-child:last-child{width:100%}.menu.medium-vertical>li{display:block}}@media print, screen and (min-width: 50em){.menu.mediumlarge-horizontal>li{display:table-cell}.menu.mediumlarge-expanded{display:table;width:100%;table-layout:fixed}.menu.mediumlarge-expanded>li:first-child:last-child{width:100%}.menu.mediumlarge-vertical>li{display:block}}@media print, screen and (min-width: 64em){.menu.large-horizontal>li{display:table-cell}.menu.large-expanded{display:table;width:100%;table-layout:fixed}.menu.large-expanded>li:first-child:last-child{width:100%}.menu.large-vertical>li{display:block}}.menu.simple li{display:inline-block;margin-right:1rem;line-height:1}.menu.simple a{padding:0}.menu.align-right::before,.menu.align-right::after{display:table;content:' '}.menu.align-right::after{clear:both}.menu.align-right>li{float:right}.menu.icon-top>li>a{text-align:center}.menu.icon-top>li>a img,.menu.icon-top>li>a i,.menu.icon-top>li>a svg{display:block;margin:0 auto 0.25rem}.menu.icon-top.vertical a>span{margin:auto}.menu.nested{margin-left:1rem}.menu .active>a{background:#ef604d;color:#fff}.menu.menu-bordered li{border:1px solid #fafafa}.menu.menu-bordered li:not(:first-child){border-top:0}.menu.menu-hover li:hover{background-color:#fafafa}.menu-text{padding-top:0;padding-bottom:0;padding:0.7rem 1rem;font-weight:bold;line-height:1;color:inherit}.menu-centered{text-align:center}.menu-centered>.menu{display:inline-block}.no-js [data-responsive-menu] ul{display:none}.menu-icon{position:relative;display:inline-block;vertical-align:middle;width:20px;height:16px;cursor:pointer}.menu-icon::after{position:absolute;top:0;left:0;display:block;width:100%;height:2px;background:#fff;box-shadow:0 7px 0 #fff, 0 14px 0 #fff;content:''}.menu-icon:hover::after{background:#e8e8e8;box-shadow:0 7px 0 #e8e8e8, 0 14px 0 #e8e8e8}.menu-icon.dark{position:relative;display:inline-block;vertical-align:middle;width:20px;height:16px;cursor:pointer}.menu-icon.dark::after{position:absolute;top:0;left:0;display:block;width:100%;height:2px;background:#1a181d;box-shadow:0 7px 0 #1a181d, 0 14px 0 #1a181d;content:''}.menu-icon.dark:hover::after{background:#2c2930;box-shadow:0 7px 0 #2c2930, 0 14px 0 #2c2930}.is-drilldown{position:relative;overflow:hidden}.is-drilldown li{display:block}.is-drilldown.animate-height{transition:height 0.5s}.is-drilldown-submenu{position:absolute;top:0;left:100%;z-index:-1;width:100%;background:#fff;transition:transform 0.15s linear}.is-drilldown-submenu.is-active{z-index:1;display:block;transform:translateX(-100%)}.is-drilldown-submenu.is-closing{transform:translateX(100%)}.drilldown-submenu-cover-previous{min-height:100%}.is-drilldown-submenu-parent>a{position:relative}.is-drilldown-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #ef604d;position:absolute;top:50%;margin-top:-6px;right:1rem}.js-drilldown-back>a::before{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #ef604d transparent transparent;border-left-width:0;display:inline-block;vertical-align:middle;margin-right:0.75rem;border-left-width:0}.dropdown-pane{position:absolute;z-index:10;display:block;width:300px;padding:1rem;visibility:hidden;border:1px solid #e8e8e8;border-radius:4px;background-color:#fafafa;font-size:1rem}.dropdown-pane.is-open{visibility:visible}.dropdown-pane.tiny{width:100px}.dropdown-pane.small{width:200px}.dropdown-pane.large{width:400px}.dropdown.menu>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-bottom-width:0;border-top-style:solid;border-color:#599aa6 transparent transparent;right:5px;margin-top:-3px}[data-whatinput='mouse'] .dropdown.menu a{outline:0}.no-js .dropdown.menu ul{display:none}.dropdown.menu.vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.vertical>li>a::after{right:14px}.dropdown.menu.vertical>li.opens-left>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #599aa6 transparent transparent}.dropdown.menu.vertical>li.opens-right>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #599aa6}@media print, screen and (min-width: 28.125em){.dropdown.menu.smallmedium-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.smallmedium-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.smallmedium-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.smallmedium-horizontal>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-bottom-width:0;border-top-style:solid;border-color:#599aa6 transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.smallmedium-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.smallmedium-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.smallmedium-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.smallmedium-vertical>li>a::after{right:14px}.dropdown.menu.smallmedium-vertical>li.opens-left>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #599aa6 transparent transparent}.dropdown.menu.smallmedium-vertical>li.opens-right>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #599aa6}}@media print, screen and (min-width: 40em){.dropdown.menu.medium-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.medium-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-bottom-width:0;border-top-style:solid;border-color:#599aa6 transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.medium-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.medium-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.medium-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.medium-vertical>li>a::after{right:14px}.dropdown.menu.medium-vertical>li.opens-left>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #599aa6 transparent transparent}.dropdown.menu.medium-vertical>li.opens-right>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #599aa6}}@media print, screen and (min-width: 50em){.dropdown.menu.mediumlarge-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.mediumlarge-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.mediumlarge-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.mediumlarge-horizontal>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-bottom-width:0;border-top-style:solid;border-color:#599aa6 transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.mediumlarge-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.mediumlarge-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.mediumlarge-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.mediumlarge-vertical>li>a::after{right:14px}.dropdown.menu.mediumlarge-vertical>li.opens-left>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #599aa6 transparent transparent}.dropdown.menu.mediumlarge-vertical>li.opens-right>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #599aa6}}@media print, screen and (min-width: 64em){.dropdown.menu.large-horizontal>li.opens-left>.is-dropdown-submenu{top:100%;right:0;left:auto}.dropdown.menu.large-horizontal>li.opens-right>.is-dropdown-submenu{top:100%;right:auto;left:0}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a{position:relative;padding-right:1.5rem}.dropdown.menu.large-horizontal>li.is-dropdown-submenu-parent>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-bottom-width:0;border-top-style:solid;border-color:#599aa6 transparent transparent;right:5px;margin-top:-3px}.dropdown.menu.large-vertical>li .is-dropdown-submenu{top:0}.dropdown.menu.large-vertical>li.opens-left>.is-dropdown-submenu{right:100%;left:auto}.dropdown.menu.large-vertical>li.opens-right>.is-dropdown-submenu{right:auto;left:100%}.dropdown.menu.large-vertical>li>a::after{right:14px}.dropdown.menu.large-vertical>li.opens-left>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #599aa6 transparent transparent}.dropdown.menu.large-vertical>li.opens-right>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #599aa6}}.dropdown.menu.align-right .is-dropdown-submenu.first-sub{top:100%;right:0;left:auto}.is-dropdown-menu.vertical{width:100px}.is-dropdown-menu.vertical.align-right{float:right}.is-dropdown-submenu-parent{position:relative}.is-dropdown-submenu-parent a::after{position:absolute;top:50%;right:5px;margin-top:-6px}.is-dropdown-submenu-parent.opens-inner>.is-dropdown-submenu{top:100%;left:auto}.is-dropdown-submenu-parent.opens-left>.is-dropdown-submenu{right:100%;left:auto}.is-dropdown-submenu-parent.opens-right>.is-dropdown-submenu{right:auto;left:100%}.is-dropdown-submenu{position:absolute;top:0;left:100%;z-index:1;display:none;min-width:200px;border:1px solid #e8e8e8;background:#fff}.is-dropdown-submenu .is-dropdown-submenu-parent>a::after{right:14px}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #599aa6 transparent transparent}.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right>a::after{display:block;width:0;height:0;border:inset 6px;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #599aa6}.is-dropdown-submenu .is-dropdown-submenu{margin-top:-1px}.is-dropdown-submenu>li{width:100%}.is-dropdown-submenu.js-dropdown-active{display:block}.responsive-embed,.flex-video{position:relative;height:0;margin-bottom:1rem;padding-bottom:75%;overflow:hidden}.responsive-embed iframe,.responsive-embed object,.responsive-embed embed,.responsive-embed video,.flex-video iframe,.flex-video object,.flex-video embed,.flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}.responsive-embed.widescreen,.flex-video.widescreen{padding-bottom:56.25%}.label{display:inline-block;padding:0.33333rem 0.5rem;border-radius:4px;font-size:0.8rem;line-height:1;white-space:nowrap;cursor:default;background:#ef604d;color:#fff}.label.primary{background:#ef604d;color:#fff}.label.secondary{background:#599aa6;color:#fff}.label.success{background:#57d685;color:#3D393C}.label.warning{background:#ffae00;color:#3D393C}.label.alert{background:#ec5840;color:#fff}.media-object{display:block;margin-bottom:1rem}.media-object img{max-width:none}@media screen and (max-width: 28.0625em){.media-object.stack-for-small .media-object-section{padding:0;padding-bottom:1rem;display:block}.media-object.stack-for-small .media-object-section img{width:100%}}.media-object-section{display:table-cell;vertical-align:top}.media-object-section:first-child{padding-right:1rem}.media-object-section:last-child:not(:nth-child(2)){padding-left:1rem}.media-object-section>:last-child{margin-bottom:0}.media-object-section.middle{vertical-align:middle}.media-object-section.bottom{vertical-align:bottom}.is-off-canvas-open{overflow:hidden}.js-off-canvas-overlay{position:absolute;top:0;left:0;width:100%;height:100%;transition:opacity 0.5s ease, visibility 0.5s ease;background:rgba(255,255,255,0.25);opacity:0;visibility:hidden;overflow:hidden}.js-off-canvas-overlay.is-visible{opacity:1;visibility:visible}.js-off-canvas-overlay.is-closable{cursor:pointer}.js-off-canvas-overlay.is-overlay-absolute{position:absolute}.js-off-canvas-overlay.is-overlay-fixed{position:fixed}.off-canvas-wrapper{position:relative;overflow:hidden}.off-canvas{position:fixed;z-index:1;transition:transform 0.5s ease;backface-visibility:hidden;background:#fafafa}[data-whatinput='mouse'] .off-canvas{outline:0}.off-canvas.is-transition-overlap{z-index:10}.off-canvas.is-transition-overlap.is-open{box-shadow:0 0 10px rgba(26,24,29,0.7)}.off-canvas.is-open{transform:translate(0, 0)}.off-canvas-absolute{position:absolute;z-index:1;transition:transform 0.5s ease;backface-visibility:hidden;background:#fafafa}[data-whatinput='mouse'] .off-canvas-absolute{outline:0}.off-canvas-absolute.is-transition-overlap{z-index:10}.off-canvas-absolute.is-transition-overlap.is-open{box-shadow:0 0 10px rgba(26,24,29,0.7)}.off-canvas-absolute.is-open{transform:translate(0, 0)}.position-left{top:0;left:0;width:250px;height:100%;transform:translateX(-250px);overflow-y:auto}.position-left.is-open ~ .off-canvas-content{transform:translateX(250px)}.position-left.is-transition-push::after{position:absolute;top:0;right:0;height:100%;width:1px;box-shadow:0 0 10px rgba(26,24,29,0.7);content:" "}.position-left.is-transition-overlap.is-open ~ .off-canvas-content{transform:none}.position-right{top:0;right:0;width:250px;height:100%;transform:translateX(250px);overflow-y:auto}.position-right.is-open ~ .off-canvas-content{transform:translateX(-250px)}.position-right.is-transition-push::after{position:absolute;top:0;left:0;height:100%;width:1px;box-shadow:0 0 10px rgba(26,24,29,0.7);content:" "}.position-right.is-transition-overlap.is-open ~ .off-canvas-content{transform:none}.position-top{top:0;left:0;width:100%;height:250px;transform:translateY(-250px);overflow-x:auto}.position-top.is-open ~ .off-canvas-content{transform:translateY(250px)}.position-top.is-transition-push::after{position:absolute;bottom:0;left:0;height:1px;width:100%;box-shadow:0 0 10px rgba(26,24,29,0.7);content:" "}.position-top.is-transition-overlap.is-open ~ .off-canvas-content{transform:none}.position-bottom{bottom:0;left:0;width:100%;height:250px;transform:translateY(250px);overflow-x:auto}.position-bottom.is-open ~ .off-canvas-content{transform:translateY(-250px)}.position-bottom.is-transition-push::after{position:absolute;top:0;left:0;height:1px;width:100%;box-shadow:0 0 10px rgba(26,24,29,0.7);content:" "}.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content{transform:none}.off-canvas-content{transition:transform 0.5s ease;backface-visibility:hidden}@media print, screen and (min-width: 28.125em){.position-left.reveal-for-smallmedium{transform:none;z-index:1}.position-left.reveal-for-smallmedium ~ .off-canvas-content{margin-left:250px}.position-right.reveal-for-smallmedium{transform:none;z-index:1}.position-right.reveal-for-smallmedium ~ .off-canvas-content{margin-right:250px}.position-top.reveal-for-smallmedium{transform:none;z-index:1}.position-top.reveal-for-smallmedium ~ .off-canvas-content{margin-top:250px}.position-bottom.reveal-for-smallmedium{transform:none;z-index:1}.position-bottom.reveal-for-smallmedium ~ .off-canvas-content{margin-bottom:250px}}@media print, screen and (min-width: 40em){.position-left.reveal-for-medium{transform:none;z-index:1}.position-left.reveal-for-medium ~ .off-canvas-content{margin-left:250px}.position-right.reveal-for-medium{transform:none;z-index:1}.position-right.reveal-for-medium ~ .off-canvas-content{margin-right:250px}.position-top.reveal-for-medium{transform:none;z-index:1}.position-top.reveal-for-medium ~ .off-canvas-content{margin-top:250px}.position-bottom.reveal-for-medium{transform:none;z-index:1}.position-bottom.reveal-for-medium ~ .off-canvas-content{margin-bottom:250px}}@media print, screen and (min-width: 50em){.position-left.reveal-for-mediumlarge{transform:none;z-index:1}.position-left.reveal-for-mediumlarge ~ .off-canvas-content{margin-left:250px}.position-right.reveal-for-mediumlarge{transform:none;z-index:1}.position-right.reveal-for-mediumlarge ~ .off-canvas-content{margin-right:250px}.position-top.reveal-for-mediumlarge{transform:none;z-index:1}.position-top.reveal-for-mediumlarge ~ .off-canvas-content{margin-top:250px}.position-bottom.reveal-for-mediumlarge{transform:none;z-index:1}.position-bottom.reveal-for-mediumlarge ~ .off-canvas-content{margin-bottom:250px}}@media print, screen and (min-width: 64em){.position-left.reveal-for-large{transform:none;z-index:1}.position-left.reveal-for-large ~ .off-canvas-content{margin-left:250px}.position-right.reveal-for-large{transform:none;z-index:1}.position-right.reveal-for-large ~ .off-canvas-content{margin-right:250px}.position-top.reveal-for-large{transform:none;z-index:1}.position-top.reveal-for-large ~ .off-canvas-content{margin-top:250px}.position-bottom.reveal-for-large{transform:none;z-index:1}.position-bottom.reveal-for-large ~ .off-canvas-content{margin-bottom:250px}}.orbit{position:relative}.orbit-container{position:relative;height:0;margin:0;list-style:none;overflow:hidden}.orbit-slide{width:100%}.orbit-slide.no-motionui.is-active{top:0;left:0}.orbit-figure{margin:0}.orbit-image{width:100%;max-width:100%;margin:0}.orbit-caption{position:absolute;bottom:0;width:100%;margin-bottom:0;padding:1rem;background-color:rgba(26,24,29,0.5);color:#fff}.orbit-previous,.orbit-next{position:absolute;top:50%;transform:translateY(-50%);z-index:10;padding:1rem;color:#fff}[data-whatinput='mouse'] .orbit-previous,[data-whatinput='mouse'] .orbit-next{outline:0}.orbit-previous:hover,.orbit-next:hover,.orbit-previous:active,.orbit-next:active,.orbit-previous:focus,.orbit-next:focus{background-color:rgba(26,24,29,0.5)}.orbit-previous{left:0}.orbit-next{left:auto;right:0}.orbit-bullets{position:relative;margin-top:0.8rem;margin-bottom:0.8rem;text-align:center}[data-whatinput='mouse'] .orbit-bullets{outline:0}.orbit-bullets button{width:1.2rem;height:1.2rem;margin:0.1rem;border-radius:50%;background-color:#e8e8e8}.orbit-bullets button:hover{background-color:#2c2930}.orbit-bullets button.is-active{background-color:#2c2930}.pagination{margin-left:0;margin-bottom:1rem}.pagination::before,.pagination::after{display:table;content:' '}.pagination::after{clear:both}.pagination li{margin-right:0.0625rem;border-radius:4px;font-size:1rem;display:none}.pagination li:last-child,.pagination li:first-child{display:inline-block}@media print, screen and (min-width: 40em){.pagination li{display:inline-block}}.pagination a,.pagination button{display:block;padding:0.1875rem 0.625rem;border-radius:4px;color:#3D393C}.pagination a:hover,.pagination button:hover{background:#e8e8e8}.pagination .current{padding:0.1875rem 0.625rem;background:#599aa6;color:#fff;cursor:default}.pagination .disabled{padding:0.1875rem 0.625rem;color:#8c838a;cursor:not-allowed}.pagination .disabled:hover{background:transparent}.pagination .ellipsis::after{padding:0.1875rem 0.625rem;content:'\2026';color:#3D393C}.progress{height:1rem;margin-bottom:1rem;border-radius:4px;background-color:#e8e8e8}.progress.primary .progress-meter{background-color:#ef604d}.progress.secondary .progress-meter{background-color:#599aa6}.progress.success .progress-meter{background-color:#57d685}.progress.warning .progress-meter{background-color:#ffae00}.progress.alert .progress-meter{background-color:#ec5840}.progress-meter{position:relative;display:block;width:0%;height:100%;background-color:#ef604d;border-radius:4px}.progress-meter-text{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);position:absolute;margin:0;font-size:0.75rem;font-weight:bold;color:#fff;white-space:nowrap;border-radius:4px}.slider{position:relative;height:0.5rem;margin-top:1.25rem;margin-bottom:2.25rem;background-color:#fafafa;cursor:pointer;user-select:none;touch-action:none}.slider-fill{position:absolute;top:0;left:0;display:inline-block;max-width:100%;height:0.5rem;background-color:#e8e8e8;transition:all 0.2s ease-in-out}.slider-fill.is-dragging{transition:all 0s linear}.slider-handle{position:absolute;top:50%;transform:translateY(-50%);position:absolute;left:0;z-index:1;display:inline-block;width:1.4rem;height:1.4rem;border-radius:4px;background-color:#ef604d;transition:all 0.2s ease-in-out;touch-action:manipulation}[data-whatinput='mouse'] .slider-handle{outline:0}.slider-handle:hover{background-color:#eb3922}.slider-handle.is-dragging{transition:all 0s linear}.slider.disabled,.slider[disabled]{opacity:0.25;cursor:not-allowed}.slider.vertical{display:inline-block;width:0.5rem;height:12.5rem;margin:0 1.25rem;transform:scale(1, -1)}.slider.vertical .slider-fill{top:0;width:0.5rem;max-height:100%}.slider.vertical .slider-handle{position:absolute;top:0;left:50%;width:1.4rem;height:1.4rem;transform:translateX(-50%)}.sticky-container{position:relative}.sticky{position:relative;z-index:0;transform:translate3d(0, 0, 0)}.sticky.is-stuck{position:fixed;z-index:5}.sticky.is-stuck.is-at-top{top:0}.sticky.is-stuck.is-at-bottom{bottom:0}.sticky.is-anchored{position:relative;right:auto;left:auto}.sticky.is-anchored.is-at-bottom{bottom:0}body.is-reveal-open{overflow:hidden}html.is-reveal-open,html.is-reveal-open body{min-height:100%;overflow:hidden;user-select:none}.reveal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1005;display:none;background-color:rgba(26,24,29,0.45);overflow-y:scroll}.reveal{z-index:1006;backface-visibility:hidden;display:none;padding:1rem;border:1px solid #e8e8e8;border-radius:4px;background-color:#fafafa;position:relative;top:100px;margin-right:auto;margin-left:auto;overflow-y:auto}[data-whatinput='mouse'] .reveal{outline:0}@media print, screen and (min-width: 40em){.reveal{min-height:0}}.reveal .column,.reveal .columns,.reveal .columns{min-width:0}.reveal>:last-child{margin-bottom:0}@media print, screen and (min-width: 40em){.reveal{width:600px;max-width:75rem}}@media print, screen and (min-width: 40em){.reveal .reveal{right:auto;left:auto;margin:0 auto}}.reveal.collapse{padding:0}@media print, screen and (min-width: 40em){.reveal.tiny{width:30%;max-width:75rem}}@media print, screen and (min-width: 40em){.reveal.small{width:50%;max-width:75rem}}@media print, screen and (min-width: 40em){.reveal.large{width:90%;max-width:75rem}}.reveal.full{top:0;left:0;width:100%;max-width:none;height:100%;height:100vh;min-height:100vh;margin-left:0;border:0;border-radius:0}@media screen and (max-width: 28.0625em){.reveal{top:0;left:0;width:100%;max-width:none;height:100%;height:100vh;min-height:100vh;margin-left:0;border:0;border-radius:0}}.reveal.without-overlay{position:fixed}.switch{height:2rem;position:relative;margin-bottom:1rem;outline:0;font-size:0.875rem;font-weight:bold;color:#fff;user-select:none}.switch-input{position:absolute;margin-bottom:0;opacity:0}.switch-paddle{position:relative;display:block;width:4rem;height:2rem;border-radius:4px;background:#e8e8e8;transition:all 0.25s ease-out;font-weight:inherit;color:inherit;cursor:pointer}input+.switch-paddle{margin:0}.switch-paddle::after{position:absolute;top:0.25rem;left:0.25rem;display:block;width:1.5rem;height:1.5rem;transform:translate3d(0, 0, 0);border-radius:4px;background:#fff;transition:all 0.25s ease-out;content:''}input:checked ~ .switch-paddle{background:#57d685}input:checked ~ .switch-paddle::after{left:2.25rem}[data-whatinput='mouse'] input:focus ~ .switch-paddle{outline:0}.switch-active,.switch-inactive{position:absolute;top:50%;transform:translateY(-50%)}.switch-active{left:8%;display:none}input:checked+label>.switch-active{display:block}.switch-inactive{right:15%}input:checked+label>.switch-inactive{display:none}.switch.tiny{height:1.5rem}.switch.tiny .switch-paddle{width:3rem;height:1.5rem;font-size:0.625rem}.switch.tiny .switch-paddle::after{top:0.25rem;left:0.25rem;width:1rem;height:1rem}.switch.tiny input:checked ~ .switch-paddle::after{left:1.75rem}.switch.small{height:1.75rem}.switch.small .switch-paddle{width:3.5rem;height:1.75rem;font-size:0.75rem}.switch.small .switch-paddle::after{top:0.25rem;left:0.25rem;width:1.25rem;height:1.25rem}.switch.small input:checked ~ .switch-paddle::after{left:2rem}.switch.large{height:2.5rem}.switch.large .switch-paddle{width:5rem;height:2.5rem;font-size:1rem}.switch.large .switch-paddle::after{top:0.25rem;left:0.25rem;width:2rem;height:2rem}.switch.large input:checked ~ .switch-paddle::after{left:2.75rem}table{width:100%;margin-bottom:1rem;border-radius:4px}thead,tbody,tfoot{border:1px solid #f2f2f2;background-color:#fff}caption{padding:0.5rem 0.625rem 0.625rem;font-weight:600}thead{background:#f9f9f9;color:#3D393C}tfoot{background:#f2f2f2;color:#3D393C}thead tr,tfoot tr{background:transparent}thead th,thead td,tfoot th,tfoot td{padding:0.5rem 0.625rem 0.625rem;font-weight:600;text-align:left}tbody th,tbody td{padding:0.5rem 0.625rem 0.625rem}tbody tr:nth-child(even){border-bottom:0;background-color:#f2f2f2}table.unstriped tbody{background-color:#fff}table.unstriped tbody tr{border-bottom:0;border-bottom:1px solid #f2f2f2;background-color:#fff}@media screen and (max-width: 49.9375em){table.stack thead{display:none}table.stack tfoot{display:none}table.stack tr,table.stack th,table.stack td{display:block}table.stack td{border-top:0}}table.scroll{display:block;width:100%;overflow-x:auto}table.hover thead tr:hover{background-color:#f4f4f4}table.hover tfoot tr:hover{background-color:#ededed}table.hover tbody tr:hover{background-color:#fafafa}table.hover:not(.unstriped) tr:nth-of-type(even):hover{background-color:#ededed}.table-scroll{overflow-x:auto}.table-scroll table{width:auto}.tabs{margin:0;border:1px solid transparent;background:#f4f4f4;list-style-type:none}.tabs::before,.tabs::after{display:table;content:' '}.tabs::after{clear:both}.tabs.vertical>li{display:block;float:none;width:auto}.tabs.simple>li>a{padding:0}.tabs.simple>li>a:hover{background:transparent}.tabs.primary{background:#ef604d}.tabs.primary>li>a{color:#fff}.tabs.primary>li>a:hover,.tabs.primary>li>a:focus{background:#ee533f}.tabs-title{float:left}.tabs-title>a{display:block;padding:1.25rem 1.5rem;font-size:1rem;line-height:1;color:#ef604d}.tabs-title>a:hover{background:#fff;color:#eb3c24}.tabs-title>a:focus,.tabs-title>a[aria-selected='true']{background:#fff;color:#ef604d}.tabs-content{border:1px solid transparent;border-top:0;background:#fff;color:inherit;transition:all 0.5s ease}.tabs-content.vertical{border:1px solid transparent;border-left:0}.tabs-panel{display:none;padding:0}.tabs-panel[aria-hidden="false"]{display:block}.thumbnail{display:inline-block;max-width:100%;margin-bottom:1rem;border:solid 4px #fff;border-radius:4px;box-shadow:0 0 0 1px #e8e8e8;line-height:0}a.thumbnail{transition:box-shadow 200ms ease-out}a.thumbnail:hover,a.thumbnail:focus{box-shadow:0 0 0px 1px #ef604d}a.thumbnail image{box-shadow:none}.title-bar{padding:1rem 0.5rem;background:#1a181d;color:#fff}.title-bar::before,.title-bar::after{display:table;content:' '}.title-bar::after{clear:both}.title-bar .menu-icon{margin-left:0.25rem;margin-right:0.25rem}.title-bar-left{float:left}.title-bar-right{float:right;text-align:right}.title-bar-title{display:inline-block;vertical-align:middle;font-weight:bold}.has-tip{position:relative;display:inline-block;border-bottom:dotted 1px #2c2930;font-weight:600;cursor:help}.tooltip{position:absolute;top:calc(100% + 0.6495rem);z-index:1200;max-width:10rem;padding:0.75rem;border-radius:4px;background-color:#1a181d;font-size:90%;color:#fff}.tooltip::before{display:block;width:0;height:0;border:inset 0.75rem;content:'';border-top-width:0;border-bottom-style:solid;border-color:transparent transparent #1a181d;position:absolute;bottom:100%;left:50%;transform:translateX(-50%)}.tooltip.top::before{display:block;width:0;height:0;border:inset 0.75rem;content:'';border-bottom-width:0;border-top-style:solid;border-color:#1a181d transparent transparent;top:100%;bottom:auto}.tooltip.left::before{display:block;width:0;height:0;border:inset 0.75rem;content:'';border-right-width:0;border-left-style:solid;border-color:transparent transparent transparent #1a181d;top:50%;bottom:auto;left:100%;transform:translateY(-50%)}.tooltip.right::before{display:block;width:0;height:0;border:inset 0.75rem;content:'';border-left-width:0;border-right-style:solid;border-color:transparent #1a181d transparent transparent;top:50%;right:100%;bottom:auto;left:auto;transform:translateY(-50%)}.top-bar{padding:0.5rem}.top-bar::before,.top-bar::after{display:table;content:' '}.top-bar::after{clear:both}.top-bar,.top-bar ul{background-color:#1a181d}.top-bar input{max-width:200px;margin-right:1rem}.top-bar .input-group-field{width:100%;margin-right:0}.top-bar input.button{width:auto}.top-bar .top-bar-left,.top-bar .top-bar-right{width:100%}@media print, screen and (min-width: 40em){.top-bar .top-bar-left,.top-bar .top-bar-right{width:auto}}@media screen and (max-width: 39.9375em){.top-bar.stacked-for-smallmedium .top-bar-left,.top-bar.stacked-for-smallmedium .top-bar-right{width:100%}}@media screen and (max-width: 49.9375em){.top-bar.stacked-for-medium .top-bar-left,.top-bar.stacked-for-medium .top-bar-right{width:100%}}@media screen and (max-width: 63.9375em){.top-bar.stacked-for-mediumlarge .top-bar-left,.top-bar.stacked-for-mediumlarge .top-bar-right{width:100%}}@media screen and (max-width: 74.9375em){.top-bar.stacked-for-large .top-bar-left,.top-bar.stacked-for-large .top-bar-right{width:100%}}.top-bar-title{display:inline-block;float:left;padding:1rem}.top-bar-title .menu-icon{bottom:2px}.top-bar-left{float:left}.top-bar-right{float:right}.hide{display:none !important}.invisible{visibility:hidden}@media screen and (max-width: 28.0625em){.hide-for-small-only{display:none !important}}@media screen and (max-width: 0em), screen and (min-width: 28.125em){.show-for-small-only{display:none !important}}@media print, screen and (min-width: 28.125em){.hide-for-smallmedium{display:none !important}}@media screen and (max-width: 28.0625em){.show-for-smallmedium{display:none !important}}@media screen and (min-width: 28.125em) and (max-width: 39.9375em){.hide-for-smallmedium-only{display:none !important}}@media screen and (max-width: 28.0625em), screen and (min-width: 40em){.show-for-smallmedium-only{display:none !important}}@media print, screen and (min-width: 40em){.hide-for-medium{display:none !important}}@media screen and (max-width: 39.9375em){.show-for-medium{display:none !important}}@media screen and (min-width: 40em) and (max-width: 49.9375em){.hide-for-medium-only{display:none !important}}@media screen and (max-width: 39.9375em), screen and (min-width: 50em){.show-for-medium-only{display:none !important}}@media print, screen and (min-width: 50em){.hide-for-mediumlarge{display:none !important}}@media screen and (max-width: 49.9375em){.show-for-mediumlarge{display:none !important}}@media screen and (min-width: 50em) and (max-width: 63.9375em){.hide-for-mediumlarge-only{display:none !important}}@media screen and (max-width: 49.9375em), screen and (min-width: 64em){.show-for-mediumlarge-only{display:none !important}}@media print, screen and (min-width: 64em){.hide-for-large{display:none !important}}@media screen and (max-width: 63.9375em){.show-for-large{display:none !important}}@media screen and (min-width: 64em) and (max-width: 74.9375em){.hide-for-large-only{display:none !important}}@media screen and (max-width: 63.9375em), screen and (min-width: 75em){.show-for-large-only{display:none !important}}.show-for-sr,.show-on-focus{position:absolute !important;width:1px;height:1px;overflow:hidden;clip:rect(0, 0, 0, 0)}.show-on-focus:active,.show-on-focus:focus{position:static !important;width:auto;height:auto;overflow:visible;clip:auto}.show-for-landscape,.hide-for-portrait{display:block !important}@media screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:block !important}}@media screen and (orientation: portrait){.show-for-landscape,.hide-for-portrait{display:none !important}}.hide-for-landscape,.show-for-portrait{display:none !important}@media screen and (orientation: landscape){.hide-for-landscape,.show-for-portrait{display:none !important}}@media screen and (orientation: portrait){.hide-for-landscape,.show-for-portrait{display:block !important}}.float-left{float:left !important}.float-right{float:right !important}.float-center{display:block;margin-right:auto;margin-left:auto}.clearfix::before,.clearfix::after{display:table;content:' '}.clearfix::after{clear:both}.section{margin-bottom:3rem}@media print, screen and (min-width: 64em){.section{margin-bottom:5rem}}.m-bottom{margin-bottom:1rem}button,input{font-family:inherit}.heading1{font-weight:600;line-height:1.2;font-size:2.5em;line-height:1.1}@media print, screen and (min-width: 40em){.heading1{font-size:3em}}.heading2,.card--full .card__title{line-height:1.2;font-size:2em}@media print, screen and (min-width: 40em){.heading2,.card--full .card__title{font-size:2em}}.heading3{line-height:1.2;font-size:1.75em}@media print, screen and (min-width: 40em){.heading3{font-size:1.75em}}.heading4{line-height:1.2;font-size:1.5em}@media print, screen and (min-width: 40em){.heading4{font-size:1.5em}}.heading5,.card__title{line-height:1.2;font-size:1.25em}@media print, screen and (min-width: 40em){.heading5,.card__title{font-size:1.25em}}.heading6{text-transform:uppercase;letter-spacing:.03em;font-weight:600;line-height:1.2;font-size:1em}@media print, screen and (min-width: 40em){.heading6{font-size:1em}}.heading-small{font-size:1rem}hr{width:50%}.section-heading{position:relative;margin-bottom:1rem;font-weight:600;text-transform:uppercase;font-size:1.125em;letter-spacing:.05em}.section-heading:before{content:"";display:inline-block;width:4px;height:.8em;background-color:#ef604d;margin-right:.5rem;margin-bottom:-.1rem}.mini-title{color:#8c838a;text-transform:uppercase;font-size:.9rem;letter-spacing:.01em;font-weight:600;margin-bottom:0}.mini-title__strong{color:#3D393C;font-size:1.2rem;font-weight:800}.mini-title__strong--highlight{font-size:1.4rem}.page-title{margin-bottom:3rem}.text-highlight{margin-bottom:0;color:#fff;text-shadow:0 0 10px rgba(0,0,0,0.8)}.text-highlight.heading1{font-weight:800}.text-highlight>a{color:inherit}.text-highlight>a:hover{color:#ef604d}.text-large{font-size:130%}.text-small{font-size:80%;color:#8c838a}.word-wrapper{display:inline-block}.title-action{margin-bottom:1rem;display:flex;flex-wrap:wrap;align-items:center;margin-bottom:1.5rem}.title-action__title{display:inline-block;margin-right:1rem;vertical-align:middle;margin-bottom:0}.title-action__title.section-heading{margin-bottom:0}.title-action__action{display:inline-block;vertical-align:middle;margin-bottom:0}.title-action__action .icon{width:11px;height:11px;margin-left:.3rem}.button.small{padding-top:.5rem;padding-bottom:.5rem}.button.tiny{padding-top:.25rem;padding-bottom:.25rem}.button--icon{display:flex;align-items:center}.button--icon .icon{margin:0 2px}.button--icon.small .icon{width:12px;height:12px}.button--frosted{background-color:rgba(255,255,255,0.65);color:#ef604d}.button--muted{background-color:#8c838a}.button--muted:hover{background-color:#599aa6}.button--muted.hollow{border-color:#8c838a}.button--sc{text-transform:uppercase;letter-spacing:.05em;font-weight:600}.button--sc.large{font-size:1rem}.button__info{text-transform:none;font-weight:normal;font-size:80%;margin-top:.25rem;display:block}.link{color:#599aa6;font-weight:600}.link--no-color{color:inherit}.muted-link{font-weight:600;color:#8c838a}.muted-link:hover{color:#599aa6}.show-more{text-align:center;margin-bottom:1rem}.button--social{padding:0 1.5rem 0 0;text-align:left;display:block;min-width:250px}.button--social__icon{display:inline-block;vertical-align:middle;padding:0.85em 1rem;border-right:1px solid rgba(0,0,0,0.075);margin-right:.5rem;min-width:3rem;text-align:center}.button--twitter{background-color:#55acee}.button--twitter:hover{background-color:#6cb7f0}.button--facebook{background-color:#3b5998}.button--facebook:hover{background-color:#4264aa}.button--google{background-color:#dd4b39}.button--google:hover{background-color:#e15f4f}.input-group-button button{height:2.5rem;padding:.5rem 1rem}.help-text{line-height:1.2}label>[type='checkbox'],label>[type='radio']{margin-bottom:0}.switch-with-label>label{display:flex;align-items:center;line-height:1.2}.switch-with-label .switch-paddle{display:inline-block;margin-right:1rem;flex-shrink:0}.icon{width:14px;height:14px;fill:currentColor}.icon--small{width:10px;height:10px}.icon--action{fill:rgba(0,0,0,0.2)}.icon--action:hover,a:hover .icon--action{fill:currentColor}.icon--after{margin-left:.3rem}.icon--before{margin-right:.3rem}.icon--share{margin-bottom:-2px;width:12px;height:12px}.embed-container{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%}.embed-container iframe,.embed-container object,.embed-container embed{position:absolute;top:0;left:0;width:100%;height:100%;border:none}@media screen and (max-width: 28.0625em){.reveal{width:95%;left:2.5%;top:2rem;height:auto;min-height:auto}}.reveal__header{border-bottom:1px solid #e8e8e8;margin-bottom:1rem}.reveal__title{margin-top:-6px}.wrapper{padding:3rem 1rem}@media print, screen and (min-width: 40em){.wrapper{padding-top:5rem;padding-left:1.5rem;padding-right:1.5rem}}@media print, screen and (min-width: 64em){.wrapper{padding-left:4rem;padding-right:4rem}}.wrapper--inner{background:#f4f4f4;padding-top:1rem}html{height:100%}body{display:flex;flex-direction:column;height:auto;min-height:100%}@media screen and (max-width: 39.9375em){body{background-color:#2c2930}}.footer-separator{flex-grow:1}.off-canvas-wrapper{background-color:#fafafa}.off-canvas-wrapper,.off-canvas-wrapper-inner,.off-canvas-content{display:flex;flex-direction:column;flex-grow:1}.off-canvas{background-color:#2c2930}.off-canvas .close-button{color:#fafafa;padding:.2rem .5rem;margin-right:-.5rem}.navbar{background:#2c2930}.title-bar{position:relative}@media screen and (max-width: 39.9375em){.title-bar{border-top:2.125rem solid #2c2930}}.logo-cityhall{position:absolute;z-index:1;right:0;top:0;margin-top:-1.95rem;text-align:right}.logo-cityhall img{width:auto;height:22px !important}@media print, screen and (min-width: 40em){.logo-cityhall{top:50%;margin-top:-19px}.logo-cityhall img{height:38px !important}}.topbar{display:flex;align-items:center;justify-content:flex-end}.logo-wrapper{display:inline-block;line-height:0;flex-grow:1}.logo-wrapper a{display:inline-block}.logo-wrapper img{display:block;max-height:33px}@media print, screen and (min-width: 50em){.logo-wrapper img{max-height:45px}}.topbar__dropmenu{display:inline-block;vertical-align:middle;padding-top:0;margin-left:2rem}.topbar__dropmenu .dropdown>li>a{padding-left:0}.topbar__dropmenu .dropdown{display:inline-block;vertical-align:middle}.topbar__dropmenu .is-dropdown-submenu{z-index:2;text-align:left;padding-left:.3rem;background-color:#fff;border:1px solid #fafafa;box-shadow:0 3px 5px rgba(0,0,0,0.3);min-width:150px}.topbar__dropmenu .is-dropdown-submenu a{color:#3D393C;padding:.5rem}.topbar__dropmenu .is-dropdown-submenu a:hover{color:#726a70}.topbar__dropmenu>ul>li>a{color:#e8e8e8}.topbar__dropmenu>ul>li>a:after{margin-top:-1px !important;border-top-color:#e8e8e8 !important}@media screen and (max-width: 39.9375em){.language-choose{font-size:.8rem;position:absolute;top:-2.2rem;left:.5rem;margin-left:0}.language-choose .dropdown.menu>li.is-dropdown-submenu-parent>a::after{border-width:3px;right:10px;margin-top:0}}.topbar__user{display:inline-block;padding-right:2.5rem;margin-left:2rem}@media (min-width: 81.25em){.topbar__user{padding-right:0}}.topbar__user__logged{text-align:right;padding-right:2.5rem;display:none}@media print, screen and (min-width: 40em){.topbar__user__logged{display:block}}@media (min-width: 81.25em){.topbar__user__logged{padding-right:0}}.topbar__notifications{margin-right:.5rem;vertical-align:-4px}.topbar__notifications .icon{fill:#fff;opacity:.3}.topbar__notifications.is-active .icon{fill:#ffae00;opacity:1}.topbar__user__login{text-align:right;line-height:1.2}.topbar__user__login a{color:#e8e8e8;font-weight:600}.topbar__user__login a:hover{color:#599aa6}.topbar__user__login a:first-of-type:after{content:"";margin-left:.5rem;margin-right:.5rem;display:inline-block;width:1px;height:2px;border-left:1px solid #e8e8e8;vertical-align:middle}.topbar__menu{text-align:right;font-size:20px;margin-right:.1rem}.topbar__menu button{color:inherit}.usermenu-off-canvas-holder .usermenu-off-canvas{border-top:1px solid;border-bottom:1px solid}.usermenu-off-canvas-holder .usermenu-off-canvas.is-dropdown-submenu{display:block;position:static;background:transparent;border-left:0;border-right:0}.usermenu-off-canvas-holder .usermenu-off-canvas a{display:block;padding:1em 2em;color:rgba(255,255,255,0.5)}.usermenu-off-canvas-holder .usermenu-off-canvas a:hover{background:rgba(255,255,255,0.02);color:#fff}.off-canvas .topbar__user__login{text-align:center;margin-top:1rem;padding-top:1rem;padding-bottom:1rem;border-top:1px solid;border-bottom:1px solid}.main-nav{padding:0;margin:0;list-style:none;overflow-x:auto}@media print, screen and (min-width: 40em){.main-nav{-webkit-overflow-scrolling:touch;white-space:nowrap;display:flex}.main-nav>li{display:inline-block;flex:1;text-align:center}}.main-nav__link{display:block;padding:1em 2em;color:rgba(255,255,255,0.5)}.main-nav__link:hover{background:rgba(255,255,255,0.02);color:#fff}@media print, screen and (min-width: 40em){.main-nav__link{padding:.75em 2em}}.main-nav__link--active{box-shadow:inset 4px 0 0 0 #ef604d;color:#fff;background:rgba(255,255,255,0.02)}@media print, screen and (min-width: 40em){.main-nav__link--active{box-shadow:inset 0 4px 0 0 #ef604d}}.main-container{background:#fff;border:1px solid #e8e8e8}.main-container__content{padding:1rem 0.5rem}@media print, screen and (min-width: 40em){.main-container__content{padding:2rem 2rem}}@media print, screen and (min-width: 40em){.main-container--side-panel{display:flex}}.side-panel{background-color:#f4f4f4;min-height:100%;border-bottom:1px solid #e8e8e8}@media print, screen and (min-width: 40em){.side-panel{border-bottom:0;border-right:1px solid #e8e8e8}}.side-panel__tabs{border:none}.side-panel__tabs .tabs-title{border-bottom:1px solid #e8e8e8}@media print, screen and (min-width: 40em){.side-panel__tabs .tabs-title:last-of-type{margin-bottom:4rem}}.side-panel__tabs .tabs-title>[role=tab],.side-panel__tabs .tabs-title>a{color:#3D393C}.side-panel__tabs .tabs-title>[role=tab]:hover,.side-panel__tabs .tabs-title>a:hover{color:#599aa6}.side-panel__tabs .tabs-title.is-active>[role=tab],.side-panel__tabs .tabs-title.is-active>a{color:#599aa6;box-shadow:inset 4px 0 0 #ef604d}.main-footer,.mini-footer{color:#e8e8e8}.main-footer a,.mini-footer a{color:#828282}.main-footer a:hover,.mini-footer a:hover{color:#b5b5b5}.main-footer{background-color:#1a181d;position:relative;padding:1rem 0;min-height:76px}.main-footer__badge{display:block;width:140px}@media print, screen and (min-width: 64em){.main-footer__badge{position:absolute}}.main__footer__nav{text-align:center}@media print, screen and (min-width: 40em){.main__footer__nav{text-align:left}}@media print, screen and (min-width: 64em){.main__footer__nav{text-align:center}}.footer-nav{list-style:none;padding-top:.5rem;margin:0 0 0 -1rem}.footer-nav li{display:inline-block;padding:0 1rem}@media print, screen and (min-width: 64em){.footer-nav{margin-left:0}}.main__footer__social{text-align:center}@media print, screen and (min-width: 40em){.main__footer__social{text-align:right}}.footer-social{list-style:none;padding-top:.5rem;margin:0}.footer-social li{display:inline-block;padding-left:1rem}.footer-social li:first-child{padding-left:0}.footer-social__icon .icon{width:16px;height:16px}.mini-footer{padding:1rem 0;background-color:#2c2930}.cc-badge{margin-right:.5rem}@media print, screen and (min-width: 40em){.static-with-nav{display:flex}}.static-nav{min-height:100%}.static-nav .list-latin{list-style-type:upper-latin}.static-nav ul{text-transform:uppercase;margin-left:.5rem}.static-nav li{color:#9c9c9c;line-height:1.2;margin-bottom:.8rem}.static-nav a{color:#3D393C}.static-nav a:hover{color:#599aa6}.static__message{text-align:center;padding:2rem 1rem}@media print, screen and (min-width: 40em){.static__message{padding:4rem 1.5rem}}.static__message__cta{margin-top:2rem}.card-grid{display:flex;flex-wrap:wrap}.card-grid:before{width:0}.card-grid .column,.card-grid .columns{margin-bottom:30px}.card-grid .card,.card-grid .comment-thread{margin-bottom:0;display:flex;flex-direction:column;height:100%}.card-grid .card__content{flex-grow:1}.card,.comment-thread{margin-bottom:30px;background:#fff;border:1px solid #e8e8e8;border-radius:4px;overflow:hidden}.card--nomargin{margin-bottom:0}.card--secondary{background:#f4f4f4;box-shadow:none}.card__content{padding:1rem}@media print, screen and (min-width: 40em){.card__content{padding:1.5rem}}.card__extra{background:#f4f4f4;padding:1rem}.card__header{margin-bottom:1rem}.card__button{margin-bottom:0}.card__type{background:#f4f4f4;padding:.1rem 1rem;margin-top:.5rem;margin-bottom:-.75rem;font-size:80%;text-transform:uppercase;font-weight:800;letter-spacing:.05em;color:#8c838a;align-self:flex-start;display:flex;align-items:center}.card__type .icon{width:14px;height:14px;fill:#8c838a;margin-right:.2rem}.card--meeting .card__content{display:flex;flex-direction:column;flex-grow:1}.card--meeting .card__content .address{margin-top:auto}.card__datetime{flex-shrink:0;text-align:center;margin-bottom:1rem;padding:.5rem;font-weight:600;display:flex;align-items:baseline;border-left:4px solid #ef604d;background:#f4f4f4;line-height:1}.card__datetime__date{font-size:1.4rem;margin-right:1rem}.card__datetime__month{text-transform:lowercase;font-variant:small-caps;font-size:1.2rem}.card__datetime__time{font-size:.8rem}.card__footer{background:#f4f4f4;border-top:1px solid #e8e8e8;border-radius:0 0 4px 4px;clear:both}.card__footer .card__content{display:flex}.card__footer--data{display:flex;align-items:center}.card__footer--data .card__content{flex-grow:1}.card__footer--data .card-data{flex-direction:column}.card__footer--data .card-data__item{flex-basis:auto;border-right:none;border-left:1px solid #e8e8e8;border-bottom:1px solid #e8e8e8}.card__footer--data .card-data__item:last-of-type{border-bottom:none}.card__author{margin-top:-.3rem;margin-bottom:.5rem}.card__voting{display:inline-block;text-align:center}.card__vote-number{font-size:1.3rem;font-weight:600;line-height:1}.card-data{list-style:none;margin:0;display:flex;flex-wrap:wrap}.card-data__item{display:inline-block;flex-basis:33.33%;flex-grow:1;text-align:center;text-transform:uppercase;font-size:85%;line-height:1;color:#8c838a;padding:.5em;border-right:1px solid #e8e8e8;margin-right:-1px;border-top:1px solid #e8e8e8;margin-top:-1px}.card-data__item__number,.card--list__data__number{display:block;line-height:1;font-weight:600;font-size:1.25rem;color:#3D393C;margin-bottom:.2rem}.card__popularity{padding:1.5rem;text-align:center}.card__popularity .icon{fill:#e8e8e8}.card__popularity__data{text-align:center;text-transform:uppercase;font-size:85%;line-height:1;margin-bottom:.2rem;color:#8c838a}.card__support{margin-left:auto;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;padding:1rem}@media print, screen and (min-width: 40em){.card__support{padding:1.5rem}}.card__support .card__button{font-size:90%}.card__support__data{text-align:center;text-transform:uppercase;font-size:85%;line-height:1;margin-bottom:.2rem;color:#8c838a}.card__support__number{line-height:1;font-weight:600;font-size:1.25rem;color:#3D393C}.card__img{text-align:center}@media print, screen and (min-width: 64em){.card__img{float:right;width:35%}}@media print, screen and (min-width: 64em){.card__content--img{float:left;width:60%}}.card__link{color:inherit}.card__link:hover{color:#599aa6}.card__link--block{display:block}.card--list .card--list__item:not(:last-of-type){border-bottom:1px solid #e8e8e8}.card--list__item{display:flex;align-items:center;padding-left:1rem}.card--list--mini .card--list__item{padding-left:1rem}@media print, screen and (min-width: 40em){.card--list__item{padding-left:1.5rem}}.card--list__icon{display:none;fill:#599aa6}@media print, screen and (min-width: 40em){.card--list__icon{margin-right:1rem;display:block;width:30px;height:30px;flex-shrink:0}}.card--list__text{flex-grow:1;flex-shrink:1;display:inline-flex;overflow:hidden;align-items:center;padding:1rem 1rem 1rem 0}.card--list--mini .card--list__text{padding:.5rem .5rem .5rem 0}.card--list__text .author{margin-top:.3rem;margin-right:1rem}.card--list__heading{margin-bottom:0;display:block}@media screen and (max-width: 49.9375em){.card--list .tags{display:none}}.card--list__data{flex-shrink:0;align-self:stretch;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;text-transform:uppercase;font-size:85%;line-height:1;color:#8c838a;padding:1rem;background:#f4f4f4}@media print, screen and (min-width: 40em){.card--list__data{padding:1rem 1.5rem}}.card--list--mini .card--list__data{padding:0.5rem 1rem}.card--list__data__icon .icon{width:20px;height:20px;fill:#8c838a}.card--list__data__icon:hover .icon{fill:#599aa6}.card--list__data__number{font-size:1.5rem}.card--full{margin-bottom:60px}.card--full:last-child{margin-bottom:0}.card--full .card__content{padding:1.5rem}@media print, screen and (min-width: 64em){.card--full .card__content{padding:3rem}}.card--full__image{background-size:cover;background-position:center;background-repeat:no-repeat;position:relative}@media screen and (min-width: 40em) and (max-width: 49.9375em){.card--full__image{min-height:15rem;display:flex;align-items:center;justify-content:center}}.card--full__image>.card__content{position:relative;z-index:1}@media screen and (min-width: 40em) and (max-width: 49.9375em){.card--full__image>.card__content{min-width:50%}}@media print, screen and (min-width: 50em){.card--full__image>.card__content{position:absolute;top:0;width:100%}}.card__image-top{background-size:cover;background-position:center;background-repeat:no-repeat;height:10rem}.card--process .card__image-top{display:none}@media print, screen and (min-width: 50em){.card--process .card__image-top{display:block}}@media print, screen and (min-width: 50em){.card--process__row{display:flex}.card--process__column{position:relative}.card--process__column .card--full__image-wrapper{height:100%;overflow:hidden}.card--process__column .card--full__image{height:100%;position:absolute;right:-1px;left:0}.card--process__column .card--full__image>img{min-height:100%;max-width:initial;position:absolute}}.card--process__small{font-size:90%}.card--process__small:last-child{margin-bottom:0}.card--mini .card__content{padding:1.5rem 1rem;display:flex;flex-direction:column;flex-grow:1}.card--mini .card__image-top{display:block;height:8rem}.card--mini .card--process__small{margin-top:auto}.extra{text-align:center;margin-bottom:1rem}.extra .button:last-of-type{margin-bottom:0}.extra__suport-number{display:block;font-weight:600;font-size:3rem;line-height:1}.extra__suport-text{display:block;text-transform:uppercase;line-height:1;font-size:.9rem;margin-bottom:.5rem}.extra__date{font-size:3rem;line-height:1}.extra__month{display:block;text-transform:uppercase;font-size:1rem}.extra__time{display:block;font-size:1.2rem;margin:1rem 0;font-weight:600}.extra--text{text-align:left}.definition-data{display:flex;flex-wrap:wrap}.definition-data__item{display:block;padding:.75rem .5rem;border-bottom:1px solid #e8e8e8;flex-basis:100%}.definition-data__item:last-child{border-bottom:0}.definition-data__item--double{display:inline-block;flex-basis:50%;width:50%;border-right:1px solid #e8e8e8}.definition-data__item--double:nth-of-type(even){border-right:0}.definition-data__item--double:nth-last-child(2):nth-child(odd){border-bottom:0}.definition-data__title{display:block;text-transform:uppercase;font-size:85%;line-height:1;margin-bottom:.25rem;color:#8c838a}.definition-data__number{display:block;line-height:1;font-weight:600;font-size:1.25rem;color:#3D393C;margin-bottom:.2rem}.definition-data__text{display:block;margin:.5rem;color:#3D393C;text-transform:none;font-size:1rem;line-height:1.5}.callout.primary{background:#fafafa;border-color:#e8e8e8;border-left:8px solid #ef604d}.callout.secondary{border-color:#e8e8e8;border-left:8px solid #599aa6}.callout.success{border-color:#e8e8e8;border-left:8px solid #57d685}.callout.warning{border-color:#e8e8e8;border-left:8px solid #ffae00}.callout.alert{border-color:#e8e8e8;border-left:8px solid #ec5840}.comments{padding-top:3rem}.comment-thread__title{font-weight:normal;font-size:90%;text-transform:none;color:#8c838a}.show-more--comment-thread{margin-top:-15px;margin-bottom:30px}.comment--highlight{background:rgba(89,154,166,0.15) !important}.comment--pinned{background:#fff7e6 !important}.comment__header{padding:1rem}.comment__content{padding:0 1rem}.comment__content>:last-child{margin-bottom:0}.comment__footer,.comment__additionalreply{padding:1rem;font-size:90%}.comment__footer::before,.comment__footer::after,.comment__additionalreply::before,.comment__additionalreply::after{display:table;content:' '}.comment__footer::after,.comment__additionalreply::after{clear:both}.comment--nested{background:#fafafa;margin:1rem;padding-bottom:1px}.comment--nested.comment--nested--alt{background:#fff}.comment--nested:first-of-type{margin-top:0}.comment__reply{float:left;color:#8c838a}.comment__votes{float:right}.comment__votes--up{color:#8c838a}.comment__votes--up .icon{color:#57d685}.comment__votes--up:hover,.comment__votes--up.is-vote-selected{color:#31c968}.comment__votes--up:hover .icon,.comment__votes--up.is-vote-selected .icon{color:inherit}.comment__votes--up.is-vote-notselected{color:#8c838a;opacity:.3}.comment__votes--up.is-vote-notselected .icon{color:inherit}.comment__votes--down{color:#8c838a;padding-left:.3rem}.comment__votes--down .icon{color:#ec5840}.comment__votes--down:hover,.comment__votes--down.is-vote-selected{color:#e23317}.comment__votes--down:hover .icon,.comment__votes--down.is-vote-selected .icon{color:inherit}.comment__votes--down.is-vote-notselected{color:#8c838a;opacity:.3}.comment__votes--down.is-vote-notselected .icon{color:inherit}.add-comment{background:#fafafa;padding:1rem}.add-comment .button{margin-bottom:0}.add-comment--reply{display:none}.add-comment--reply.is-active{display:block}.opinion-toggle{margin:2rem 0;display:flex;text-align:center}.opinion-toggle--ok.is-inactive,.opinion-toggle--ko.is-inactive,.opinion-toggle--meh.is-inactive{opacity:.3}.opinion-toggle--ok{border-top-right-radius:0;border-bottom-right-radius:0}.opinion-toggle--ok:hover,.opinion-toggle--ok:focus,.opinion-toggle--ok.is-active{background-color:#57d685}.opinion-toggle--ok .icon{vertical-align:middle}.opinion-toggle--ko{border-top-left-radius:0;border-bottom-left-radius:0}.opinion-toggle--ko:hover,.opinion-toggle--ko:focus,.opinion-toggle--ko.is-active{background-color:#ec5840}.opinion-toggle--ko .icon{vertical-align:middle}.opinion-toggle--meh{border-radius:0;padding-left:.5em;padding-right:.5em}.opinion-toggle--meh:hover,.opinion-toggle--meh:focus,.opinion-toggle--meh.is-active{background-color:#599aa6}.flag ul{list-style:none;margin-left:0}.flag li a{color:#599aa6}.author-data{color:#8c838a;font-size:.9rem;padding-left:30px;position:relative}.author-data::before,.author-data::after{display:table;content:' '}.author-data::after{clear:both}.author-data a,.author-data button{color:#8c838a}.author-data a:hover,.author-data button:hover{color:#599aa6}.author-data .author__name{color:#599aa6}.author-data .author__avatar{position:absolute;margin-left:-30px}.author-data--small{padding-left:25px}.author-data--noavatar{padding-left:0}.author-data__main{display:inline;margin-right:.8rem}.author-data__extra{display:inline-block}.author-data__extra>button,.author-data__extra>a{margin-right:1rem}@media print, screen and (min-width: 64em){.author-data__extra:before{content:"";margin-right:.8rem;border-right:1px solid #e8e8e8;height:.7rem;display:inline-block;vertical-align:middle}}.author{display:flex;font-size:.9rem}.author--inline{display:inline-block}.author__name{display:inline-block;flex-grow:1;align-self:center;color:#8c838a}.card__footer .author__name{color:#2c2930}a:hover .author__name{color:inherit}.author__avatar{padding:0 .5em 0 0;display:inline-block;display:flex;flex-direction:column;align-self:center}.author--inline .author__avatar{display:inline-block}.author__avatar img{border-radius:50%;width:100%;max-width:25px;margin-top:-5px}.author-data .author__avatar--small{margin-left:-25px}.author__avatar--small img{max-width:20px;margin-top:-3px}.author__date{display:block;color:#8c838a;font-size:90%}.address{display:flex}.address::before,.address::after{display:table;content:' '}.address::after{clear:both}.address__info{display:flex;flex-grow:1}.address__icon{float:left;display:flex;align-self:center;fill:#ef604d}.address__details{float:left;max-width:100%;padding-left:.5em;align-self:center}.order-by{margin-bottom:1rem;display:flex;align-items:baseline;flex-wrap:wrap}.order-by__dropdown{display:flex;flex-wrap:wrap}.order-by__dropdown .menu .is-dropdown-submenu-parent>a{padding:0;margin-left:.5rem;margin-top:.25rem}.order-by__dropdown--right{margin-left:auto}.order-by__action{margin-left:auto;justify-content:flex-end}.order-by__action .button{margin-bottom:0}.order-by__tabs{display:inline-block}.order-by__tab{color:#8c838a}.order-by__tab:after{content:"";display:inline-block;height:.75em;border-left:1px solid #e8e8e8;margin:0 .2em 0 .5em;vertical-align:middle}.order-by__tab.is-active{color:#599aa6}.order-by__tab:first-of-type{padding-left:0}.order-by__tab:last-of-type:after{border-left:none}.tags{list-style:none;margin:0 0 1rem;font-size:90%}.tags li{display:inline-block;margin-right:.3rem;margin-bottom:.5rem}.tags a{display:block;border:1px solid #e8e8e8;padding:0 .5rem}.tags:last-child{margin-bottom:-.5rem}.tags--inline{display:inline}.list-docs{list-style:none;margin:0;padding:0}.list-docs__icon{color:#8c838a;margin-right:3px}.list-check{list-style:none;margin:0;padding:0}.list-check>li{margin-bottom:1rem}.list-check__icon{vertical-align:-.05rem;margin-right:.2rem}.list-check__ok .list-check__icon{color:#57d685}.list-check__ko .list-check__icon{color:#ec5840}.process-header{margin-bottom:3rem}.process-header .heading2,.process-header .card--full .card__title,.card--full .process-header .card__title{font-weight:bold}.process-header__main{background-size:cover;position:relative;z-index:0;display:flex;flex-direction:column}.process-header__main:after{content:"";display:block;position:absolute;z-index:-1;top:0;width:100%;height:100%;background-color:rgba(26,24,29,0.6)}.process-header__container{position:relative;z-index:1;padding:0 0 0 1rem}@media print, screen and (min-width: 50em){.process-header__container{display:flex;align-items:center}}.process-header__info{padding:2rem 1.5rem 2rem 1rem}@media print, screen and (min-width: 50em){.process-header__info{padding-left:2rem}}.process-header__phase{background:rgba(44,41,48,0.8);color:#fff;text-align:center;padding:2rem 1rem;margin-left:-1rem}.process-header__phase .button{margin-top:1rem;margin-bottom:0;color:#fff;border-color:#fff}.process-header__phase .button:hover,.process-header__phase .button.is-active{color:#ef604d;border-color:#ef604d}.process-header__hashtag{font-weight:600}.process-header__hashtag::after{content:"·";margin-left:.5rem;margin-right:.5rem}.process-header__nav{margin-top:auto;z-index:1}.info-header{margin-bottom:2rem}@media print, screen and (min-width: 40em){.info-header{display:flex;align-items:center}}.info-details{color:#8c838a;margin-left:auto}.info-details .share{text-align:left;margin-top:.2rem}.info-details .share ul{margin-left:0}@media print, screen and (min-width: 40em){.info-details{border-left:1px solid #e8e8e8}}.info-image{margin-bottom:1rem}.info-image img{display:block}@media print, screen and (min-width: 40em){.info-image{float:right;margin-left:30px;width:50%}}@media print, screen and (min-width: 64em){.info-image{margin-right:calc(-50% - 2rem - 30px/2);width:80%}}.process-nav{background-color:#fff;border:1px solid #e8e8e8;padding:0.75rem 1rem}.process-nav ul{margin:0;list-style:none}.process-nav .about-link{font-size:80%}@media print, screen and (min-width: 40em){.process-nav ul{overflow-x:auto;-webkit-overflow-scrolling:touch;white-space:nowrap;display:flex;align-items:center}.process-nav ul::-webkit-scrollbar{display:none}.process-nav li{display:inline-block;margin-right:1.5rem}.process-nav .about-link{float:right;margin-right:0;margin-left:auto}}.process-nav__trigger{display:block;width:100%;text-align:left;position:relative}.process-nav__trigger__icon{position:absolute;right:.5rem;top:.55rem}@media screen and (max-width: 39.9375em){.js .process-nav__content{display:none}}.js .process-nav__content.is-active{display:block}@media screen and (max-width: 39.9375em){.process-nav__content li{margin-top:1rem}}@media screen and (max-width: 39.9375em){.process-nav__content li.is-active{display:none}}.process-nav__link{display:block;color:#8c838a;text-transform:uppercase;font-weight:600;display:flex;align-items:center}.process-nav__link svg{margin-right:.4em;width:25px;height:25px;fill:#8c838a}@media print, screen and (min-width: 40em){.process-nav__link:hover,.process-nav__link.is-active{color:#ef604d}.process-nav__link:hover svg,.process-nav__link.is-active svg{fill:#ef604d}}.phase-title{display:block;font-weight:600;font-size:1.1rem;line-height:1;text-transform:uppercase}.is-inactive .phase-title{color:#8c838a}.phase-date{color:#8c838a;font-weight:600;font-size:90%}.process-header__progress{margin-bottom:1rem}.process-header__progress ol{list-style:none;margin:0;padding:0;display:flex;justify-content:space-between}.process-header__progress li{margin:0;padding:0;position:relative;width:100%;text-align:center}.process-header__progress li::after{content:"";display:block;height:2px;width:100%;background-color:#8c838a;position:absolute;top:4px;z-index:0}.process-header__progress li span{display:block;width:10px;height:10px;border-radius:50%;background-color:#8c838a;margin:auto;z-index:1}.process-header__progress li:nth-last-child(n+11):nth-last-child(-n+20):first-child span,.process-header__progress li:nth-last-child(n+11):nth-last-child(-n+20):first-child ~ li span{width:5px;height:5px}.process-header__progress li:nth-last-child(n+11):nth-last-child(-n+20):first-child::after,.process-header__progress li:nth-last-child(n+11):nth-last-child(-n+20):first-child ~ li::after{height:1px;top:2px}.process-header__progress .phase-item--past::after{background-color:#ef604d}.process-header__progress .phase-item--past span{background-color:#ef604d;opacity:1}.phase-current{font-weight:600;font-size:90%}.timeline{list-style:none;margin:2rem 0 0}.timeline__item{padding-bottom:2em;position:relative}.timeline__item:before{content:"";width:3px;height:100%;background:#ef604d;left:1rem;top:0;position:absolute}.timeline__item:after{content:"";clear:both;display:table;width:100%}.timeline__item:last-of-type:before{width:0}.timeline__phase{width:30px;height:30px;margin-left:-13px;position:absolute;top:0;left:1rem;display:flex;justify-content:center;overflow:hidden;border-radius:50%;background:#ef604d;border:2px solid #fff;box-shadow:0 0 0 1px #e8e8e8}.timeline__phase__number{display:block;text-align:center;line-height:1;color:#fff;font-weight:600;font-size:1.2em;align-self:center;margin-left:1px;margin-top:-1px}.timeline__info{width:90%;width:calc(100% - 45px);float:right;background-color:#fff;border:1px solid #e8e8e8}.timeline__item--current .timeline__info{border-color:#ef604d}.timeline__header{background:#e8e8e8;padding:0.5rem 1rem}.timeline__item--current .timeline__header{background-color:#ef604d;color:#fff}.timeline__date{color:#8c838a}.timeline__item--current .timeline__date{color:rgba(255,255,255,0.8)}.timeline__title{margin-bottom:0}.timeline__content{padding:1rem}.timeline__content :last-child{margin-bottom:0}.timeline__footer{list-style:none;margin:0;border-top:1px solid #e8e8e8}@media print, screen and (min-width: 40em){.timeline__footer{display:flex;flex-wrap:wrap}}.timeline__footer-item{flex-grow:1;text-align:center;padding:.5em;border-bottom:1px solid #e8e8e8}.timeline__footer-item:last-child{border-bottom:0}@media print, screen and (min-width: 40em){.timeline__footer-item{border-bottom:0;border-right:1px solid #e8e8e8}.timeline__footer-item:last-child{border-right:0}}.timeline__footer-inner{display:block}.timeline__item-icon{width:1.5em;height:1.5em}.timeline__item-text{display:block;text-transform:uppercase;letter-spacing:0.03em;font-size:90%;color:#3D393C;font-weight:600;line-height:1}.timeline__item--current:before{background:#e8e8e8}.timeline__item--inactive:before{background:#e8e8e8}.timeline__item--inactive .timeline__phase{background:#e8e8e8}.timeline__item--inactive .timeline__phase__number{text-shadow:0 1px 2px rgba(0,0,0,0.1)}.filter-tags__title{margin-right:0.4rem}.filter-tags{margin-bottom:0.8rem}.filter-tag{display:inline-block;background-color:#f4f4f4;border:1px solid #e8e8e8;padding:0.2rem 0.4rem;margin-right:0.4rem;margin-bottom:0.2rem}.filter-tag__close{padding-left:.5rem;color:#3D393C}@media print, screen and (min-width: 40em){.filters-wrapper{display:flex}}.filters-controls{margin:1rem 0 2rem}.filters-controls::before,.filters-controls::after{display:table;content:' '}.filters-controls::after{clear:both}.filters-controls__trigger{width:100%;font-weight:600;text-align:left;background:#fafafa;padding:.5rem;border:1px solid #e8e8e8;display:flex;justify-content:space-between;align-items:center}.filters{display:none;min-height:100%;padding:1rem}@media print, screen and (min-width: 40em){.filters{display:block;padding:0;margin:0}}.reveal .filters{display:block;border:none;padding:0;margin:0}.js .filters__content{display:none}.js .filters__content.is-active{display:block}@media print, screen and (min-width: 40em){.js .filters__content{display:block}}.filters__section{border-bottom:1px solid #e8e8e8;padding:1rem 1rem}.filters__section:first-of-type{padding-top:1.5rem}.filters__section:last-of-type{padding-bottom:1.5rem;border-bottom:none}.filters__section label{line-height:1.2;margin-bottom:.4rem}.filters__section .button{margin-bottom:0}.filters__info__title{margin-bottom:0}.filters__info__icon{margin-left:.25rem}.filters__search .input-group{margin-bottom:0}.reference{color:#8c838a;font-size:.9rem;text-align:center;margin-bottom:1rem}.label--basic{background-color:#c5c1ca}.label--highlight{background-color:#599aa6}.label--admin{background-color:#ef604d}.proposal-status{float:left;margin-right:.5rem}.proposal-status--small,.label--small{margin:.2rem .2rem .2rem 0;padding:.2rem .3rem}.user-form input[type="text"],.user-form input[type="email"],.user-form input[type="password"]{height:3rem}.user-form .button{margin:2rem 0}.user-form__label{font-weight:600}.register__separator{display:block;text-align:center;position:relative;z-index:1;font-style:italic;margin:1rem 0 2rem}.register__separator:before{content:"";display:block;height:1px;width:100%;background-color:#e8e8e8;position:absolute;top:50%;z-index:-1}.register__separator__text{display:inline-block;background:#fafafa;padding:0 1rem}.register-form{margin-top:2rem}.register-form input[type="text"],.register-form input[type="email"],.register-form input[type="password"]{height:3rem}.register-form .button{margin:2rem 0}.register-form legend{margin-bottom:1rem}.share{text-align:center}.share ul{display:inline-block;list-style:none;margin:0 0 0 .5rem}.share li{display:inline-block}.share__icon{color:#8c838a;border:1px solid #e8e8e8;border-radius:50%;display:inline-block;width:1.8em;height:1.8em;text-align:center;padding:.1em 0 0;margin-right:.5em}.help{vertical-align:-2px}.help .icon{width:14px;height:14px;fill:#fff;background:#bdb8bc;border-radius:50%;padding:2px}.help .icon:hover{background:#599aa6}.cookie-warning{background:#e8e8e8;padding:.5em 1em;text-align:center}.cookie-warning a{color:#477b85}.cookie-warning__action{text-align:center}.cookie-warning__action .button{margin:.5em 0}@media print, screen and (min-width: 50em){.cookie-warning__action{vertical-align:baseline;display:inline-block}.cookie-warning__action .button{margin:0 0 0 1em}}.google-map{width:100%;height:200px;background-color:#e8e8e8;margin-bottom:2rem}@media print, screen and (min-width: 50em){.google-map{height:450px}}.map-info{background:#ef604d;border-radius:4px}.map-info>div:first-child>div:first-child{border-top-color:#ef604d !important}.map-info>div:first-child>div:nth-child(2){background-color:transparent !important;border-radius:4px !important}.map-info *{box-shadow:none !important}.map-info__content{padding-top:1rem;padding-left:1.2rem}.map__date-adress{margin-bottom:1rem}@media print, screen and (min-width: 40em){.map__date-adress{display:flex}}.map__date-adress .card__datetime{float:none;border-color:#ef604d;display:flex;flex-direction:column;justify-content:center;margin-right:0;margin-bottom:1rem;padding:.5em 1em}@media print, screen and (min-width: 40em){.map__date-adress .card__datetime{margin-right:.5rem;margin-bottom:0}}.map__date-adress .address{flex:1;margin-bottom:0}.map__date-adress .address__icon{display:none}@media print, screen and (min-width: 40em){.map__date-adress .address__icon{display:block}}.map__date-adress .card__extra{padding:0 1rem}.map-info__button{text-align:center}.map-info__button .button{min-width:12em}.hero{background-size:cover;position:relative;z-index:0}.hero:after{content:"";display:block;position:absolute;top:0;width:100%;height:100%;background-color:rgba(26,24,29,0.6)}.hero__container{position:relative;z-index:1;text-align:center;padding:3rem 0}@media print, screen and (min-width: 40em){.hero__container{padding:4rem 0}}@media print, screen and (min-width: 50em){.hero__container{padding:5rem 0}}@media print, screen and (min-width: 64em){.hero__container{padding:6rem 0}}.hero-heading{margin-bottom:1.5rem;font-size:2rem;line-height:1;text-shadow:0 0 5px rgba(0,0,0,0.8)}.hero-heading br{display:none}@media print, screen and (min-width: 40em){.hero-heading{font-size:2.5rem}.hero-heading br{display:block}}@media print, screen and (min-width: 50em){.hero-heading{font-size:3.5rem}}@media print, screen and (min-width: 64em){.hero-heading{font-size:4.5rem}}.hero-cta{margin-top:1rem;padding:1.2rem 1rem}@media print, screen and (min-width: 40em){.hero-cta{margin-top:2rem}}@media print, screen and (min-width: 50em){.hero-cta{margin-top:3rem}}@media print, screen and (min-width: 64em){.hero-cta{margin-top:4rem}}.wrapper-home{padding:4rem 1rem}@media print, screen and (min-width: 40em){.wrapper-home{padding-left:1.5rem;padding-right:1.5rem}}@media print, screen and (min-width: 64em){.wrapper-home{padding-left:4rem;padding-right:4rem}}.wrapper-home--mini{padding-top:1rem;padding-bottom:1rem}.home-section{background:#f4f4f4}.subhero{padding:4rem 0;text-align:center}@media screen and (max-width: 49.9375em){.subhero .heading3{font-size:1.3em}}@media screen and (max-width: 49.9375em){.subhero .heading2,.subhero .card--full .card__title,.card--full .subhero .card__title{font-size:1.5em}}@media screen and (max-width: 49.9375em){.subhero .heading4{font-size:1.2em}}.subhero-cta{margin-top:2rem;color:#ef604d;display:inline-block}.subhero-cta .icon{vertical-align:-1px}.subhero-cta--secondary{margin-top:0}.home-section__cta{margin-top:2rem}.home-bullets{margin-top:2rem;margin-bottom:2rem}@media print, screen and (min-width: 50em){.home-bullets{margin-top:5rem;margin-bottom:5rem}}.home-bullet{overflow:hidden}.home-bullet__icon{float:left;text-align:right}.home-bullet__icon svg{width:30px;height:30px;fill:#ef604d}.home-bullet__desc{float:right;width:85%;width:calc(100% - 30px);padding-left:1rem}.home-map .wrapper-home{padding-bottom:0}.home-map #google-map{margin-bottom:0}.home-pam{overflow:hidden;margin:2rem 0}@media print, screen and (min-width: 50em){.home-pam{margin:5rem 0}}.home-pam__title{color:#8c838a;text-transform:uppercase;font-size:.9rem;letter-spacing:.01em;font-weight:600;margin-bottom:0}.home-pam__lowlight .home-pam__title{display:inline}.home-pam__data{text-align:center;padding:.25rem}@media print, screen and (min-width: 40em){.home-pam__data{float:left}}.home-pam__highlight .home-pam__data{padding:1rem 2rem}@media print, screen and (min-width: 40em){.home-pam__highlight .home-pam__data{width:50%;border-bottom:1px solid #e8e8e8;border-right:1px solid #e8e8e8}}.home-pam__highlight .home-pam__data:last-child{border-right:none}.home-pam__lowlight .home-pam__data{float:none}@media print, screen and (min-width: 50em){.home-pam__lowlight .home-pam__data{float:left;width:33.33%}.home-pam__lowlight .home-pam__data:first-child{text-align:left;padding-left:0}.home-pam__lowlight .home-pam__data:last-child{text-align:right;padding-right:0}}@media print, screen and (min-width: 40em){.home-pam__highlight{display:flex}}.home-pam__lowlight{text-align:center}.home-pam__number{font-size:1.2rem;font-weight:800}.home-pam__highlight .home-pam__number{font-size:4rem;line-height:1}.user-header{display:flex;align-items:center;margin-bottom:1rem}.user-header::before,.user-header::after{display:table;content:' '}.user-header::after{clear:both}.user-header__avatar{float:left;margin-right:.5rem}.user-header__avatar>img{border-radius:50%}.user-header__heading{margin-bottom:0}.user-header__heading>.label{vertical-align:middle}.view-header{margin-bottom:2rem}@media screen and (max-width: 49.9375em){.support-wrapper-md{margin:1rem 0}}@media screen and (min-width: 40em) and (max-width: 49.9375em){.view-side{width:50%;margin:0 auto 2rem;float:none}}/*!
          Severity
          Category
          Status
          Source
          Language