
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ef19ce68c56fbdb41d4c9ce2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c01290a8afc2b908ef1e6318.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5e0c7874768cf1fe4f01f632.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8fd316617eae123f6fe90dc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b88c03f89978088dd6b11553.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-54.000000px;}
.ws12{word-spacing:-47.850000px;}
.ws6{word-spacing:-39.249600px;}
.ws10{word-spacing:-36.000000px;}
.ws7{word-spacing:-32.899716px;}
.ws8{word-spacing:-27.349272px;}
.ws8f{word-spacing:-25.439185px;}
.ws58{word-spacing:-25.271249px;}
.ws3{word-spacing:-25.218862px;}
.ws5{word-spacing:-24.765080px;}
.ws3f{word-spacing:-24.719621px;}
.ws4e{word-spacing:-24.330556px;}
.ws7a{word-spacing:-24.306616px;}
.ws9{word-spacing:-21.965124px;}
.ws22{word-spacing:-18.714816px;}
.ws20{word-spacing:-18.707832px;}
.ws3e{word-spacing:-18.705456px;}
.ws23{word-spacing:-18.429624px;}
.ws6a{word-spacing:-18.287496px;}
.wscd{word-spacing:-18.285120px;}
.wsd3{word-spacing:-18.128448px;}
.ws9d{word-spacing:-18.004680px;}
.ws1{word-spacing:-18.000000px;}
.ws4d{word-spacing:-17.995320px;}
.ws8e{word-spacing:-17.992944px;}
.ws79{word-spacing:-17.990640px;}
.wsc1{word-spacing:-17.983584px;}
.wsca{word-spacing:-17.920584px;}
.ws0{word-spacing:-17.872311px;}
.wsbf{word-spacing:-17.852688px;}
.wsae{word-spacing:-17.850384px;}
.ws9e{word-spacing:-17.766216px;}
.wsf4{word-spacing:-17.570304px;}
.ws77{word-spacing:-17.568000px;}
.ws80{word-spacing:-17.565552px;}
.ws101{word-spacing:-17.490816px;}
.ws57{word-spacing:-17.483832px;}
.ws86{word-spacing:-17.282808px;}
.wsff{word-spacing:-17.268768px;}
.wsc0{word-spacing:-17.264088px;}
.ws88{word-spacing:-17.257032px;}
.ws2c{word-spacing:-17.252352px;}
.wsfc{word-spacing:-17.198568px;}
.ws9f{word-spacing:-17.123832px;}
.ws2f{word-spacing:-16.776000px;}
.wsc3{word-spacing:-16.556256px;}
.ws4f{word-spacing:-16.481448px;}
.wse9{word-spacing:-16.413624px;}
.ws17{word-spacing:-16.404264px;}
.wsa3{word-spacing:-16.126560px;}
.ws7e{word-spacing:-16.124184px;}
.wsf3{word-spacing:-16.056432px;}
.ws55{word-spacing:-15.836688px;}
.ws59{word-spacing:-15.764256px;}
.wsd0{word-spacing:-15.759648px;}
.ws40{word-spacing:-15.759576px;}
.wsdf{word-spacing:-15.689448px;}
.wsf7{word-spacing:-15.414048px;}
.ws36{word-spacing:-15.350960px;}
.wsda{word-spacing:-15.327504px;}
.wse{word-spacing:-15.169173px;}
.ws14{word-spacing:-15.117192px;}
.wscb{word-spacing:-15.105456px;}
.ws107{word-spacing:-15.093720px;}
.ws2{word-spacing:-14.799451px;}
.wsf{word-spacing:-14.756706px;}
.ws56{word-spacing:-14.680512px;}
.ws1f{word-spacing:-14.678136px;}
.ws7c{word-spacing:-14.545008px;}
.wsa4{word-spacing:-14.397624px;}
.wsbc{word-spacing:-14.395320px;}
.ws75{word-spacing:-14.388264px;}
.ws8a{word-spacing:-14.376528px;}
.wsc{word-spacing:-14.336716px;}
.ws1b{word-spacing:-14.252616px;}
.wsd{word-spacing:-14.034813px;}
.wsb{word-spacing:-14.027769px;}
.wsd5{word-spacing:-13.968000px;}
.wsa{word-spacing:-13.795297px;}
.ws62{word-spacing:-13.680504px;}
.wsaa{word-spacing:-13.666392px;}
.ws90{word-spacing:-13.603248px;}
.ws37{word-spacing:-13.248432px;}
.wsac{word-spacing:-13.222656px;}
.ws116{word-spacing:-13.176578px;}
.wsfb{word-spacing:-13.176000px;}
.ws112{word-spacing:-13.078094px;}
.ws110{word-spacing:-13.005451px;}
.wsc6{word-spacing:-12.949200px;}
.wse5{word-spacing:-12.944520px;}
.ws8c{word-spacing:-12.524256px;}
.ws119{word-spacing:-12.466278px;}
.ws10a{word-spacing:-12.461738px;}
.ws10d{word-spacing:-12.461593px;}
.wse7{word-spacing:-12.459371px;}
.ws113{word-spacing:-12.457053px;}
.wsc5{word-spacing:-12.454128px;}
.wse6{word-spacing:-12.297663px;}
.ws100{word-spacing:-12.236688px;}
.ws19{word-spacing:-12.229704px;}
.wsb9{word-spacing:-12.091680px;}
.wsa1{word-spacing:-11.729880px;}
.ws6b{word-spacing:-11.544905px;}
.ws82{word-spacing:-11.519496px;}
.wsf1{word-spacing:-11.503152px;}
.ws69{word-spacing:-11.498472px;}
.ws1a{word-spacing:-11.017368px;}
.ws18{word-spacing:-10.937880px;}
.ws4a{word-spacing:-10.795320px;}
.wsd1{word-spacing:-10.792944px;}
.wsad{word-spacing:-10.785960px;}
.ws63{word-spacing:-10.638648px;}
.ws10e{word-spacing:-10.303114px;}
.ws2d{word-spacing:-10.085184px;}
.wsb5{word-spacing:-10.078128px;}
.wsb2{word-spacing:-10.075752px;}
.ws21{word-spacing:-9.928539px;}
.ws1e{word-spacing:-9.358560px;}
.wsa0{word-spacing:-9.353880px;}
.ws70{word-spacing:-9.349200px;}
.ws44{word-spacing:-8.924256px;}
.ws65{word-spacing:-8.924184px;}
.wsc9{word-spacing:-8.919504px;}
.wsec{word-spacing:-8.856432px;}
.ws114{word-spacing:-8.704674px;}
.ws53{word-spacing:-8.643744px;}
.ws4b{word-spacing:-8.639064px;}
.ws9a{word-spacing:-8.636688px;}
.ws16{word-spacing:-8.632008px;}
.ws5c{word-spacing:-8.613288px;}
.wsd6{word-spacing:-7.917192px;}
.ws81{word-spacing:-7.762896px;}
.ws67{word-spacing:-7.482816px;}
.wse4{word-spacing:-7.480440px;}
.ws50{word-spacing:-7.181280px;}
.ws7d{word-spacing:-6.763248px;}
.ws68{word-spacing:-6.482808px;}
.ws15{word-spacing:-6.473448px;}
.wsa7{word-spacing:-5.758560px;}
.ws4c{word-spacing:-5.324184px;}
.ws102{word-spacing:-5.240016px;}
.ws99{word-spacing:-5.036688px;}
.wsfa{word-spacing:-5.032008px;}
.ws38{word-spacing:-4.889448px;}
.wsf5{word-spacing:-4.606992px;}
.wsd9{word-spacing:-4.321872px;}
.ws28{word-spacing:-4.317192px;}
.ws8d{word-spacing:-4.242312px;}
.ws6f{word-spacing:-4.167576px;}
.wsce{word-spacing:-3.880368px;}
.ws41{word-spacing:-3.878136px;}
.ws115{word-spacing:-3.735957px;}
.ws13{word-spacing:-3.592944px;}
.ws111{word-spacing:-3.098445px;}
.ws71{word-spacing:-2.873448px;}
.wsef{word-spacing:-2.861712px;}
.wsba{word-spacing:-2.453040px;}
.ws30{word-spacing:-2.448360px;}
.ws3b{word-spacing:-2.439072px;}
.ws31{word-spacing:-2.153880px;}
.wse1{word-spacing:-2.149200px;}
.ws7f{word-spacing:-2.079072px;}
.ws60{word-spacing:-1.434384px;}
.wsa8{word-spacing:-0.934632px;}
.ws91{word-spacing:-0.714816px;}
.ws6e{word-spacing:-0.285120px;}
.wseb{word-spacing:-0.280512px;}
.ws108{word-spacing:-0.224981px;}
.ws89{word-spacing:0.000000px;}
.ws109{word-spacing:0.585976px;}
.ws9c{word-spacing:0.719496px;}
.wscf{word-spacing:0.721872px;}
.wsd2{word-spacing:0.724248px;}
.wscc{word-spacing:0.728928px;}
.wsea{word-spacing:0.876168px;}
.wse2{word-spacing:1.156176px;}
.ws64{word-spacing:1.175112px;}
.ws118{word-spacing:1.232809px;}
.ws52{word-spacing:1.523304px;}
.ws2a{word-spacing:1.527912px;}
.wsb7{word-spacing:1.532664px;}
.wsb8{word-spacing:2.240496px;}
.ws66{word-spacing:2.882808px;}
.wsc7{word-spacing:2.899224px;}
.ws10f{word-spacing:3.478180px;}
.ws10c{word-spacing:3.539086px;}
.ws84{word-spacing:3.607056px;}
.ws72{word-spacing:3.625776px;}
.wsc4{word-spacing:3.688776px;}
.ws46{word-spacing:4.097448px;}
.wsf0{word-spacing:4.106808px;}
.ws32{word-spacing:4.181688px;}
.ws61{word-spacing:4.321872px;}
.ws1d{word-spacing:4.326552px;}
.wsc8{word-spacing:4.331232px;}
.ws34{word-spacing:5.041440px;}
.wsa2{word-spacing:5.053104px;}
.wsb1{word-spacing:5.765616px;}
.wsbb{word-spacing:5.913000px;}
.wsa9{word-spacing:6.195240px;}
.ws117{word-spacing:6.262481px;}
.wsbd{word-spacing:6.482808px;}
.ws6d{word-spacing:6.912576px;}
.wsb0{word-spacing:6.919488px;}
.ws10b{word-spacing:6.986740px;}
.ws97{word-spacing:7.337880px;}
.wsd7{word-spacing:7.999056px;}
.wsb3{word-spacing:8.358552px;}
.wsdc{word-spacing:8.648424px;}
.ws5e{word-spacing:9.075744px;}
.ws95{word-spacing:9.138888px;}
.ws5d{word-spacing:9.223056px;}
.ws27{word-spacing:10.110960px;}
.wsaf{word-spacing:10.584936px;}
.wsdb{word-spacing:11.232000px;}
.ws54{word-spacing:11.598984px;}
.ws3c{word-spacing:11.603736px;}
.wsbe{word-spacing:11.669184px;}
.ws3d{word-spacing:11.979648px;}
.wsfd{word-spacing:12.680568px;}
.wse0{word-spacing:13.404672px;}
.ws26{word-spacing:13.696848px;}
.ws25{word-spacing:13.764672px;}
.ws76{word-spacing:14.145408px;}
.wsab{word-spacing:14.407056px;}
.ws2b{word-spacing:14.479488px;}
.ws7b{word-spacing:16.275816px;}
.wsb4{word-spacing:16.287480px;}
.ws8b{word-spacing:16.638048px;}
.ws5b{word-spacing:17.714808px;}
.ws96{word-spacing:18.740592px;}
.wsfe{word-spacing:19.878120px;}
.wsee{word-spacing:19.896840px;}
.ws1c{word-spacing:20.156256px;}
.ws78{word-spacing:20.172672px;}
.ws105{word-spacing:20.252088px;}
.ws42{word-spacing:20.875752px;}
.ws5f{word-spacing:20.885184px;}
.ws103{word-spacing:25.928928px;}
.ws93{word-spacing:26.641440px;}
.wsde{word-spacing:27.452160px;}
.ws87{word-spacing:28.082808px;}
.wsf8{word-spacing:28.804680px;}
.ws73{word-spacing:29.951568px;}
.wsa6{word-spacing:30.963312px;}
.ws33{word-spacing:32.114880px;}
.ws106{word-spacing:32.114952px;}
.ws39{word-spacing:32.414040px;}
.ws2e{word-spacing:32.479416px;}
.ws3a{word-spacing:33.843744px;}
.ws98{word-spacing:34.289856px;}
.ws92{word-spacing:35.004744px;}
.ws5a{word-spacing:35.294544px;}
.ws6c{word-spacing:35.719632px;}
.ws74{word-spacing:36.082080px;}
.ws48{word-spacing:37.539360px;}
.wsd8{word-spacing:37.871280px;}
.wsf9{word-spacing:38.172960px;}
.ws83{word-spacing:38.254320px;}
.wsdd{word-spacing:38.261520px;}
.ws43{word-spacing:40.322160px;}
.ws104{word-spacing:42.195600px;}
.ws85{word-spacing:43.211520px;}
.wsa5{word-spacing:46.512720px;}
.wsed{word-spacing:46.949760px;}
.wse8{word-spacing:48.250800px;}
.wse3{word-spacing:48.977280px;}
.ws49{word-spacing:51.143040px;}
.ws51{word-spacing:52.560720px;}
.ws29{word-spacing:53.287200px;}
.wsf2{word-spacing:53.994960px;}
.wsb6{word-spacing:54.719280px;}
.ws45{word-spacing:55.878480px;}
.wsf6{word-spacing:59.067360px;}
.ws94{word-spacing:60.195600px;}
.ws24{word-spacing:61.922160px;}
.wsd4{word-spacing:68.411520px;}
.ws47{word-spacing:78.480720px;}
.ws9b{word-spacing:90.745200px;}
.wsc2{word-spacing:108.000000px;}
.ws35{word-spacing:113.034240px;}
.ws4{word-spacing:693.347458px;}
._e{margin-left:-2.180596px;}
._1{margin-left:-1.134284px;}
._4{width:1.356711px;}
._38{width:12.092766px;}
._39{width:13.421314px;}
._9{width:14.954486px;}
._3{width:16.380710px;}
._0{width:18.223117px;}
._f{width:19.974550px;}
._8{width:21.515843px;}
._c{width:22.686132px;}
._35{width:23.983338px;}
._d{width:25.037356px;}
._7{width:26.887785px;}
._1e{width:28.453512px;}
._1d{width:29.473839px;}
._b{width:30.868413px;}
._18{width:32.177587px;}
._a{width:33.511758px;}
._2{width:34.543273px;}
._12{width:36.256211px;}
._22{width:37.289612px;}
._13{width:38.797007px;}
._21{width:40.446888px;}
._15{width:41.679781px;}
._16{width:43.364319px;}
._28{width:44.425785px;}
._34{width:45.718202px;}
._11{width:47.458025px;}
._19{width:48.703280px;}
._2d{width:49.915008px;}
._10{width:50.972746px;}
._2a{width:53.702747px;}
._20{width:55.371282px;}
._1a{width:57.898306px;}
._2b{width:63.650269px;}
._23{width:65.399779px;}
._25{width:67.106283px;}
._2e{width:68.180109px;}
._14{width:69.544793px;}
._1f{width:72.913507px;}
._33{width:75.314991px;}
._37{width:79.264552px;}
._24{width:80.855999px;}
._2f{width:84.169615px;}
._3a{width:85.521362px;}
._27{width:91.000364px;}
._1b{width:93.312167px;}
._36{width:96.597321px;}
._31{width:101.447127px;}
._32{width:105.759897px;}
._30{width:107.934543px;}
._2c{width:113.976148px;}
._1c{width:115.598803px;}
._26{width:144.138163px;}
._29{width:148.475225px;}
._5{width:238.532581px;}
._6{width:756.373431px;}
._17{width:1812.922163px;}
.fc3{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(30,115,190);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:48.300000px;}
.fs2{font-size:59.700000px;}
.fs3{font-size:66.300000px;}
.fs0{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.300000px;}
.fs6{font-size:95.700000px;}
.fs4{font-size:108.000000px;}
.y35{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y29{bottom:5.265000px;}
.ya7{bottom:12.825000px;}
.y8a{bottom:13.546500px;}
.y33{bottom:19.665000px;}
.yc6{bottom:20.025000px;}
.yd4{bottom:22.905150px;}
.y61{bottom:24.525300px;}
.y28{bottom:25.965000px;}
.ya6{bottom:33.525000px;}
.y89{bottom:34.246500px;}
.y32{bottom:40.365000px;}
.yc5{bottom:40.725000px;}
.yd3{bottom:43.605150px;}
.y60{bottom:45.225300px;}
.y27{bottom:46.665000px;}
.ya5{bottom:54.046350px;}
.y88{bottom:54.765450px;}
.y3{bottom:56.775000px;}
.y31{bottom:61.065000px;}
.yc4{bottom:61.425000px;}
.yd2{bottom:64.305150px;}
.y5f{bottom:65.925300px;}
.y26{bottom:67.365000px;}
.ya4{bottom:74.746350px;}
.y87{bottom:75.465450px;}
.y30{bottom:81.765000px;}
.yc3{bottom:82.125000px;}
.yd1{bottom:85.005150px;}
.y5e{bottom:86.625300px;}
.y25{bottom:88.065000px;}
.ya3{bottom:95.446350px;}
.y86{bottom:96.165450px;}
.y2f{bottom:102.465000px;}
.yc2{bottom:102.825000px;}
.yf8{bottom:104.265285px;}
.yd0{bottom:105.705150px;}
.y5d{bottom:107.325300px;}
.y24{bottom:108.765000px;}
.ya2{bottom:116.145150px;}
.y85{bottom:116.865450px;}
.yf7{bottom:118.125045px;}
.y2e{bottom:123.165000px;}
.yc1{bottom:123.525000px;}
.ycf{bottom:126.405150px;}
.y5c{bottom:128.025300px;}
.y23{bottom:129.465000px;}
.yf6{bottom:131.804925px;}
.y84{bottom:137.565450px;}
.ya1{bottom:141.346350px;}
.y2d{bottom:143.865000px;}
.yc0{bottom:144.225000px;}
.yf5{bottom:145.665270px;}
.yce{bottom:147.105150px;}
.y22{bottom:150.165000px;}
.y5b{bottom:152.505150px;}
.y83{bottom:158.265450px;}
.yf4{bottom:159.525030px;}
.y2c{bottom:164.565000px;}
.ybf{bottom:164.925000px;}
.ycd{bottom:167.805150px;}
.yf3{bottom:173.204910px;}
.ya0{bottom:173.386650px;}
.y21{bottom:175.365000px;}
.y82{bottom:178.965450px;}
.y20{bottom:181.650000px;}
.y5a{bottom:181.665450px;}
.y2b{bottom:185.265000px;}
.ybe{bottom:185.625000px;}
.yf2{bottom:187.065255px;}
.ycc{bottom:188.505150px;}
.y9f{bottom:194.086650px;}
.y81{bottom:199.665450px;}
.yf1{bottom:200.925015px;}
.y59{bottom:202.365450px;}
.y2a{bottom:205.965000px;}
.ybd{bottom:206.325000px;}
.ycb{bottom:209.205150px;}
.yf0{bottom:214.604895px;}
.y9e{bottom:214.786650px;}
.y80{bottom:220.365450px;}
.y58{bottom:223.065450px;}
.yef{bottom:228.465240px;}
.ybc{bottom:231.525000px;}
.yca{bottom:234.405150px;}
.y9d{bottom:235.486650px;}
.y7f{bottom:241.065450px;}
.yee{bottom:242.325000px;}
.y57{bottom:243.765450px;}
.yed{bottom:256.004880px;}
.y9c{bottom:256.186650px;}
.y7e{bottom:261.765450px;}
.y56{bottom:264.465450px;}
.yc9{bottom:267.346500px;}
.yec{bottom:269.865225px;}
.y9b{bottom:276.886650px;}
.y7d{bottom:282.465450px;}
.yeb{bottom:283.724985px;}
.y55{bottom:285.165450px;}
.ybb{bottom:286.425000px;}
.yea{bottom:297.404865px;}
.y9a{bottom:297.586650px;}
.y7c{bottom:303.165450px;}
.y54{bottom:305.865450px;}
.yba{bottom:307.125000px;}
.ye9{bottom:311.265210px;}
.y99{bottom:318.286650px;}
.y7b{bottom:323.865450px;}
.ye8{bottom:325.124970px;}
.y53{bottom:326.565450px;}
.yb9{bottom:327.825000px;}
.ye7{bottom:338.804850px;}
.y98{bottom:338.986650px;}
.y52{bottom:347.265450px;}
.yb8{bottom:348.525000px;}
.y7a{bottom:348.525150px;}
.ye6{bottom:358.425000px;}
.y97{bottom:359.686650px;}
.y51{bottom:367.965450px;}
.yb7{bottom:369.225000px;}
.y79{bottom:377.686650px;}
.y96{bottom:380.386650px;}
.yb6{bottom:389.925000px;}
.y50{bottom:392.625150px;}
.y78{bottom:398.386650px;}
.y95{bottom:401.086650px;}
.yb5{bottom:410.625000px;}
.ye5{bottom:413.325000px;}
.y77{bottom:419.086650px;}
.y4f{bottom:421.786650px;}
.y1f{bottom:430.996500px;}
.yb4{bottom:431.325000px;}
.ye4{bottom:434.025000px;}
.y76{bottom:439.786650px;}
.y4e{bottom:442.486650px;}
.yb3{bottom:452.025000px;}
.ye3{bottom:454.725000px;}
.y1e{bottom:460.155150px;}
.y75{bottom:460.486650px;}
.y4d{bottom:463.186650px;}
.yb2{bottom:472.725000px;}
.ye2{bottom:475.425000px;}
.y1d{bottom:480.855150px;}
.y74{bottom:481.186650px;}
.y4c{bottom:483.886650px;}
.yc8{bottom:486.765000px;}
.yb1{bottom:493.425000px;}
.ye1{bottom:496.125000px;}
.y73{bottom:501.886650px;}
.y4b{bottom:504.586650px;}
.yb0{bottom:514.125000px;}
.ye0{bottom:516.825000px;}
.y1c{bottom:522.255150px;}
.y72{bottom:522.586650px;}
.y4a{bottom:525.286650px;}
.y94{bottom:529.786650px;}
.yaf{bottom:534.825000px;}
.ydf{bottom:537.525000px;}
.y1b{bottom:542.955150px;}
.y71{bottom:543.286650px;}
.y49{bottom:545.986650px;}
.yae{bottom:555.525000px;}
.yde{bottom:558.225000px;}
.y1a{bottom:563.655150px;}
.y70{bottom:563.986650px;}
.y48{bottom:566.686650px;}
.yad{bottom:576.225000px;}
.ydd{bottom:578.925000px;}
.y19{bottom:584.355150px;}
.y6f{bottom:584.686650px;}
.y47{bottom:587.386650px;}
.yac{bottom:596.925000px;}
.ydc{bottom:599.625000px;}
.y18{bottom:605.055150px;}
.y6e{bottom:605.386650px;}
.y46{bottom:608.086650px;}
.yab{bottom:617.625000px;}
.ydb{bottom:620.325000px;}
.y17{bottom:625.755150px;}
.y6d{bottom:626.086650px;}
.y45{bottom:628.786650px;}
.yaa{bottom:638.325000px;}
.yda{bottom:641.025000px;}
.y16{bottom:646.455150px;}
.y6c{bottom:646.786650px;}
.y44{bottom:649.486650px;}
.ya9{bottom:659.025000px;}
.yd9{bottom:661.725000px;}
.y15{bottom:667.155150px;}
.y6b{bottom:667.486650px;}
.y43{bottom:670.186650px;}
.ya8{bottom:679.725000px;}
.yd8{bottom:682.425000px;}
.y14{bottom:687.855150px;}
.y93{bottom:688.186650px;}
.y42{bottom:690.886650px;}
.y6a{bottom:691.965300px;}
.yc7{bottom:700.425000px;}
.yd7{bottom:703.125000px;}
.y13{bottom:708.555150px;}
.y92{bottom:708.886650px;}
.y41{bottom:715.365300px;}
.y69{bottom:721.125000px;}
.yd6{bottom:723.825000px;}
.y12{bottom:729.255150px;}
.y91{bottom:729.586650px;}
.y68{bottom:741.825000px;}
.y40{bottom:744.525000px;}
.y11{bottom:749.955150px;}
.y90{bottom:750.286650px;}
.y67{bottom:762.525000px;}
.y3f{bottom:765.225000px;}
.y10{bottom:770.655150px;}
.y8f{bottom:770.986650px;}
.y66{bottom:783.225000px;}
.y3e{bottom:785.925000px;}
.yd5{bottom:790.425000px;}
.yf{bottom:791.355150px;}
.y8e{bottom:791.686650px;}
.y65{bottom:803.925000px;}
.y3d{bottom:806.625000px;}
.y8d{bottom:812.386650px;}
.y64{bottom:824.625000px;}
.y3c{bottom:827.325000px;}
.y8c{bottom:833.086650px;}
.ye{bottom:834.015450px;}
.y63{bottom:845.325000px;}
.y3b{bottom:852.525000px;}
.y8b{bottom:857.565300px;}
.y62{bottom:866.025000px;}
.yd{bottom:884.055150px;}
.y3a{bottom:886.725000px;}
.y39{bottom:907.425000px;}
.y38{bottom:928.125000px;}
.y37{bottom:948.825000px;}
.yc{bottom:950.475300px;}
.yb{bottom:967.575300px;}
.y36{bottom:969.525000px;}
.ya{bottom:984.855150px;}
.y9{bottom:1002.136800px;}
.y8{bottom:1019.415450px;}
.y7{bottom:1036.695300px;}
.y6{bottom:1055.236650px;}
.y5{bottom:1080.615300px;}
.y4{bottom:1111.755000px;}
.y34{bottom:1147.575000px;}
.y2{bottom:1180.155000px;}
.y1{bottom:1206.975000px;}
.hd{height:12.975000px;}
.h10{height:33.560010px;}
.hf{height:40.431592px;}
.h3{height:40.460742px;}
.h7{height:41.481006px;}
.h4{height:45.426710px;}
.h2{height:48.796875px;}
.hb{height:49.992188px;}
.ha{height:50.027344px;}
.h6{height:58.573682px;}
.h9{height:64.859180px;}
.h5{height:73.195313px;}
.h8{height:75.041016px;}
.hc{height:223.950000px;}
.he{height:987.450000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:447.750000px;}
.w3{width:722.775000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.200000px;}
.x16{left:21.000000px;}
.x13{left:23.700000px;}
.x12{left:26.400000px;}
.x17{left:42.600000px;}
.x3{left:60.838500px;}
.xe{left:77.038500px;}
.x11{left:83.175000px;}
.xd{left:105.836400px;}
.x1{left:127.079850px;}
.xb{left:144.718500px;}
.x9{left:148.500000px;}
.x7{left:154.080000px;}
.x2{left:168.660000px;}
.x4{left:180.000000px;}
.x14{left:208.620000px;}
.x15{left:212.400000px;}
.x6{left:229.138650px;}
.x8{left:296.638500px;}
.xa{left:322.558500px;}
.x5{left:337.680000px;}
.xc{left:356.757900px;}
.xf{left:445.200000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws11{word-spacing:-48.000000pt;}
.ws12{word-spacing:-42.533333pt;}
.ws6{word-spacing:-34.888533pt;}
.ws10{word-spacing:-32.000000pt;}
.ws7{word-spacing:-29.244192pt;}
.ws8{word-spacing:-24.310464pt;}
.ws8f{word-spacing:-22.612609pt;}
.ws58{word-spacing:-22.463332pt;}
.ws3{word-spacing:-22.416767pt;}
.ws5{word-spacing:-22.013405pt;}
.ws3f{word-spacing:-21.972996pt;}
.ws4e{word-spacing:-21.627161pt;}
.ws7a{word-spacing:-21.605881pt;}
.ws9{word-spacing:-19.524554pt;}
.ws22{word-spacing:-16.635392pt;}
.ws20{word-spacing:-16.629184pt;}
.ws3e{word-spacing:-16.627072pt;}
.ws23{word-spacing:-16.381888pt;}
.ws6a{word-spacing:-16.255552pt;}
.wscd{word-spacing:-16.253440pt;}
.wsd3{word-spacing:-16.114176pt;}
.ws9d{word-spacing:-16.004160pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4d{word-spacing:-15.995840pt;}
.ws8e{word-spacing:-15.993728pt;}
.ws79{word-spacing:-15.991680pt;}
.wsc1{word-spacing:-15.985408pt;}
.wsca{word-spacing:-15.929408pt;}
.ws0{word-spacing:-15.886499pt;}
.wsbf{word-spacing:-15.869056pt;}
.wsae{word-spacing:-15.867008pt;}
.ws9e{word-spacing:-15.792192pt;}
.wsf4{word-spacing:-15.618048pt;}
.ws77{word-spacing:-15.616000pt;}
.ws80{word-spacing:-15.613824pt;}
.ws101{word-spacing:-15.547392pt;}
.ws57{word-spacing:-15.541184pt;}
.ws86{word-spacing:-15.362496pt;}
.wsff{word-spacing:-15.350016pt;}
.wsc0{word-spacing:-15.345856pt;}
.ws88{word-spacing:-15.339584pt;}
.ws2c{word-spacing:-15.335424pt;}
.wsfc{word-spacing:-15.287616pt;}
.ws9f{word-spacing:-15.221184pt;}
.ws2f{word-spacing:-14.912000pt;}
.wsc3{word-spacing:-14.716672pt;}
.ws4f{word-spacing:-14.650176pt;}
.wse9{word-spacing:-14.589888pt;}
.ws17{word-spacing:-14.581568pt;}
.wsa3{word-spacing:-14.334720pt;}
.ws7e{word-spacing:-14.332608pt;}
.wsf3{word-spacing:-14.272384pt;}
.ws55{word-spacing:-14.077056pt;}
.ws59{word-spacing:-14.012672pt;}
.wsd0{word-spacing:-14.008576pt;}
.ws40{word-spacing:-14.008512pt;}
.wsdf{word-spacing:-13.946176pt;}
.wsf7{word-spacing:-13.701376pt;}
.ws36{word-spacing:-13.645297pt;}
.wsda{word-spacing:-13.624448pt;}
.wse{word-spacing:-13.483709pt;}
.ws14{word-spacing:-13.437504pt;}
.wscb{word-spacing:-13.427072pt;}
.ws107{word-spacing:-13.416640pt;}
.ws2{word-spacing:-13.155067pt;}
.wsf{word-spacing:-13.117072pt;}
.ws56{word-spacing:-13.049344pt;}
.ws1f{word-spacing:-13.047232pt;}
.ws7c{word-spacing:-12.928896pt;}
.wsa4{word-spacing:-12.797888pt;}
.wsbc{word-spacing:-12.795840pt;}
.ws75{word-spacing:-12.789568pt;}
.ws8a{word-spacing:-12.779136pt;}
.wsc{word-spacing:-12.743748pt;}
.ws1b{word-spacing:-12.668992pt;}
.wsd{word-spacing:-12.475390pt;}
.wsb{word-spacing:-12.469128pt;}
.wsd5{word-spacing:-12.416000pt;}
.wsa{word-spacing:-12.262486pt;}
.ws62{word-spacing:-12.160448pt;}
.wsaa{word-spacing:-12.147904pt;}
.ws90{word-spacing:-12.091776pt;}
.ws37{word-spacing:-11.776384pt;}
.wsac{word-spacing:-11.753472pt;}
.ws116{word-spacing:-11.712514pt;}
.wsfb{word-spacing:-11.712000pt;}
.ws112{word-spacing:-11.624973pt;}
.ws110{word-spacing:-11.560401pt;}
.wsc6{word-spacing:-11.510400pt;}
.wse5{word-spacing:-11.506240pt;}
.ws8c{word-spacing:-11.132672pt;}
.ws119{word-spacing:-11.081136pt;}
.ws10a{word-spacing:-11.077101pt;}
.ws10d{word-spacing:-11.076972pt;}
.wse7{word-spacing:-11.074997pt;}
.ws113{word-spacing:-11.072936pt;}
.wsc5{word-spacing:-11.070336pt;}
.wse6{word-spacing:-10.931256pt;}
.ws100{word-spacing:-10.877056pt;}
.ws19{word-spacing:-10.870848pt;}
.wsb9{word-spacing:-10.748160pt;}
.wsa1{word-spacing:-10.426560pt;}
.ws6b{word-spacing:-10.262138pt;}
.ws82{word-spacing:-10.239552pt;}
.wsf1{word-spacing:-10.225024pt;}
.ws69{word-spacing:-10.220864pt;}
.ws1a{word-spacing:-9.793216pt;}
.ws18{word-spacing:-9.722560pt;}
.ws4a{word-spacing:-9.595840pt;}
.wsd1{word-spacing:-9.593728pt;}
.wsad{word-spacing:-9.587520pt;}
.ws63{word-spacing:-9.456576pt;}
.ws10e{word-spacing:-9.158324pt;}
.ws2d{word-spacing:-8.964608pt;}
.wsb5{word-spacing:-8.958336pt;}
.wsb2{word-spacing:-8.956224pt;}
.ws21{word-spacing:-8.825368pt;}
.ws1e{word-spacing:-8.318720pt;}
.wsa0{word-spacing:-8.314560pt;}
.ws70{word-spacing:-8.310400pt;}
.ws44{word-spacing:-7.932672pt;}
.ws65{word-spacing:-7.932608pt;}
.wsc9{word-spacing:-7.928448pt;}
.wsec{word-spacing:-7.872384pt;}
.ws114{word-spacing:-7.737488pt;}
.ws53{word-spacing:-7.683328pt;}
.ws4b{word-spacing:-7.679168pt;}
.ws9a{word-spacing:-7.677056pt;}
.ws16{word-spacing:-7.672896pt;}
.ws5c{word-spacing:-7.656256pt;}
.wsd6{word-spacing:-7.037504pt;}
.ws81{word-spacing:-6.900352pt;}
.ws67{word-spacing:-6.651392pt;}
.wse4{word-spacing:-6.649280pt;}
.ws50{word-spacing:-6.383360pt;}
.ws7d{word-spacing:-6.011776pt;}
.ws68{word-spacing:-5.762496pt;}
.ws15{word-spacing:-5.754176pt;}
.wsa7{word-spacing:-5.118720pt;}
.ws4c{word-spacing:-4.732608pt;}
.ws102{word-spacing:-4.657792pt;}
.ws99{word-spacing:-4.477056pt;}
.wsfa{word-spacing:-4.472896pt;}
.ws38{word-spacing:-4.346176pt;}
.wsf5{word-spacing:-4.095104pt;}
.wsd9{word-spacing:-3.841664pt;}
.ws28{word-spacing:-3.837504pt;}
.ws8d{word-spacing:-3.770944pt;}
.ws6f{word-spacing:-3.704512pt;}
.wsce{word-spacing:-3.449216pt;}
.ws41{word-spacing:-3.447232pt;}
.ws115{word-spacing:-3.320850pt;}
.ws13{word-spacing:-3.193728pt;}
.ws111{word-spacing:-2.754173pt;}
.ws71{word-spacing:-2.554176pt;}
.wsef{word-spacing:-2.543744pt;}
.wsba{word-spacing:-2.180480pt;}
.ws30{word-spacing:-2.176320pt;}
.ws3b{word-spacing:-2.168064pt;}
.ws31{word-spacing:-1.914560pt;}
.wse1{word-spacing:-1.910400pt;}
.ws7f{word-spacing:-1.848064pt;}
.ws60{word-spacing:-1.275008pt;}
.wsa8{word-spacing:-0.830784pt;}
.ws91{word-spacing:-0.635392pt;}
.ws6e{word-spacing:-0.253440pt;}
.wseb{word-spacing:-0.249344pt;}
.ws108{word-spacing:-0.199983pt;}
.ws89{word-spacing:0.000000pt;}
.ws109{word-spacing:0.520867pt;}
.ws9c{word-spacing:0.639552pt;}
.wscf{word-spacing:0.641664pt;}
.wsd2{word-spacing:0.643776pt;}
.wscc{word-spacing:0.647936pt;}
.wsea{word-spacing:0.778816pt;}
.wse2{word-spacing:1.027712pt;}
.ws64{word-spacing:1.044544pt;}
.ws118{word-spacing:1.095830pt;}
.ws52{word-spacing:1.354048pt;}
.ws2a{word-spacing:1.358144pt;}
.wsb7{word-spacing:1.362368pt;}
.wsb8{word-spacing:1.991552pt;}
.ws66{word-spacing:2.562496pt;}
.wsc7{word-spacing:2.577088pt;}
.ws10f{word-spacing:3.091715pt;}
.ws10c{word-spacing:3.145854pt;}
.ws84{word-spacing:3.206272pt;}
.ws72{word-spacing:3.222912pt;}
.wsc4{word-spacing:3.278912pt;}
.ws46{word-spacing:3.642176pt;}
.wsf0{word-spacing:3.650496pt;}
.ws32{word-spacing:3.717056pt;}
.ws61{word-spacing:3.841664pt;}
.ws1d{word-spacing:3.845824pt;}
.wsc8{word-spacing:3.849984pt;}
.ws34{word-spacing:4.481280pt;}
.wsa2{word-spacing:4.491648pt;}
.wsb1{word-spacing:5.124992pt;}
.wsbb{word-spacing:5.256000pt;}
.wsa9{word-spacing:5.506880pt;}
.ws117{word-spacing:5.566650pt;}
.wsbd{word-spacing:5.762496pt;}
.ws6d{word-spacing:6.144512pt;}
.wsb0{word-spacing:6.150656pt;}
.ws10b{word-spacing:6.210435pt;}
.ws97{word-spacing:6.522560pt;}
.wsd7{word-spacing:7.110272pt;}
.wsb3{word-spacing:7.429824pt;}
.wsdc{word-spacing:7.687488pt;}
.ws5e{word-spacing:8.067328pt;}
.ws95{word-spacing:8.123456pt;}
.ws5d{word-spacing:8.198272pt;}
.ws27{word-spacing:8.987520pt;}
.wsaf{word-spacing:9.408832pt;}
.wsdb{word-spacing:9.984000pt;}
.ws54{word-spacing:10.310208pt;}
.ws3c{word-spacing:10.314432pt;}
.wsbe{word-spacing:10.372608pt;}
.ws3d{word-spacing:10.648576pt;}
.wsfd{word-spacing:11.271616pt;}
.wse0{word-spacing:11.915264pt;}
.ws26{word-spacing:12.174976pt;}
.ws25{word-spacing:12.235264pt;}
.ws76{word-spacing:12.573696pt;}
.wsab{word-spacing:12.806272pt;}
.ws2b{word-spacing:12.870656pt;}
.ws7b{word-spacing:14.467392pt;}
.wsb4{word-spacing:14.477760pt;}
.ws8b{word-spacing:14.789376pt;}
.ws5b{word-spacing:15.746496pt;}
.ws96{word-spacing:16.658304pt;}
.wsfe{word-spacing:17.669440pt;}
.wsee{word-spacing:17.686080pt;}
.ws1c{word-spacing:17.916672pt;}
.ws78{word-spacing:17.931264pt;}
.ws105{word-spacing:18.001856pt;}
.ws42{word-spacing:18.556224pt;}
.ws5f{word-spacing:18.564608pt;}
.ws103{word-spacing:23.047936pt;}
.ws93{word-spacing:23.681280pt;}
.wsde{word-spacing:24.401920pt;}
.ws87{word-spacing:24.962496pt;}
.wsf8{word-spacing:25.604160pt;}
.ws73{word-spacing:26.623616pt;}
.wsa6{word-spacing:27.522944pt;}
.ws33{word-spacing:28.546560pt;}
.ws106{word-spacing:28.546624pt;}
.ws39{word-spacing:28.812480pt;}
.ws2e{word-spacing:28.870592pt;}
.ws3a{word-spacing:30.083328pt;}
.ws98{word-spacing:30.479872pt;}
.ws92{word-spacing:31.115328pt;}
.ws5a{word-spacing:31.372928pt;}
.ws6c{word-spacing:31.750784pt;}
.ws74{word-spacing:32.072960pt;}
.ws48{word-spacing:33.368320pt;}
.wsd8{word-spacing:33.663360pt;}
.wsf9{word-spacing:33.931520pt;}
.ws83{word-spacing:34.003840pt;}
.wsdd{word-spacing:34.010240pt;}
.ws43{word-spacing:35.841920pt;}
.ws104{word-spacing:37.507200pt;}
.ws85{word-spacing:38.410240pt;}
.wsa5{word-spacing:41.344640pt;}
.wsed{word-spacing:41.733120pt;}
.wse8{word-spacing:42.889600pt;}
.wse3{word-spacing:43.535360pt;}
.ws49{word-spacing:45.460480pt;}
.ws51{word-spacing:46.720640pt;}
.ws29{word-spacing:47.366400pt;}
.wsf2{word-spacing:47.995520pt;}
.wsb6{word-spacing:48.639360pt;}
.ws45{word-spacing:49.669760pt;}
.wsf6{word-spacing:52.504320pt;}
.ws94{word-spacing:53.507200pt;}
.ws24{word-spacing:55.041920pt;}
.wsd4{word-spacing:60.810240pt;}
.ws47{word-spacing:69.760640pt;}
.ws9b{word-spacing:80.662400pt;}
.wsc2{word-spacing:96.000000pt;}
.ws35{word-spacing:100.474880pt;}
.ws4{word-spacing:616.308851pt;}
._e{margin-left:-1.938308pt;}
._1{margin-left:-1.008253pt;}
._4{width:1.205965pt;}
._38{width:10.749125pt;}
._39{width:11.930057pt;}
._9{width:13.292877pt;}
._3{width:14.560632pt;}
._0{width:16.198326pt;}
._f{width:17.755156pt;}
._8{width:19.125194pt;}
._c{width:20.165451pt;}
._35{width:21.318523pt;}
._d{width:22.255428pt;}
._7{width:23.900253pt;}
._1e{width:25.292010pt;}
._1d{width:26.198968pt;}
._b{width:27.438590pt;}
._18{width:28.602299pt;}
._a{width:29.788229pt;}
._2{width:30.705131pt;}
._12{width:32.227743pt;}
._22{width:33.146322pt;}
._13{width:34.486228pt;}
._21{width:35.952789pt;}
._15{width:37.048695pt;}
._16{width:38.546061pt;}
._28{width:39.489587pt;}
._34{width:40.638402pt;}
._11{width:42.184911pt;}
._19{width:43.291805pt;}
._2d{width:44.368896pt;}
._10{width:45.309107pt;}
._2a{width:47.735775pt;}
._20{width:49.218917pt;}
._1a{width:51.465161pt;}
._2b{width:56.578017pt;}
._23{width:58.133137pt;}
._25{width:59.650029pt;}
._2e{width:60.604541pt;}
._14{width:61.817594pt;}
._1f{width:64.812006pt;}
._33{width:66.946659pt;}
._37{width:70.457379pt;}
._24{width:71.871999pt;}
._2f{width:74.817436pt;}
._3a{width:76.018989pt;}
._27{width:80.889212pt;}
._1b{width:82.944148pt;}
._36{width:85.864285pt;}
._31{width:90.175224pt;}
._32{width:94.008797pt;}
._30{width:95.941816pt;}
._2c{width:101.312132pt;}
._1c{width:102.754492pt;}
._26{width:128.122811pt;}
._29{width:131.977978pt;}
._5{width:212.028961pt;}
._6{width:672.331939pt;}
._17{width:1611.486367pt;}
.fs7{font-size:42.933333pt;}
.fs2{font-size:53.066667pt;}
.fs3{font-size:58.933333pt;}
.fs0{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.933333pt;}
.fs6{font-size:85.066667pt;}
.fs4{font-size:96.000000pt;}
.y35{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:4.680000pt;}
.ya7{bottom:11.400000pt;}
.y8a{bottom:12.041333pt;}
.y33{bottom:17.480000pt;}
.yc6{bottom:17.800000pt;}
.yd4{bottom:20.360133pt;}
.y61{bottom:21.800267pt;}
.y28{bottom:23.080000pt;}
.ya6{bottom:29.800000pt;}
.y89{bottom:30.441333pt;}
.y32{bottom:35.880000pt;}
.yc5{bottom:36.200000pt;}
.yd3{bottom:38.760133pt;}
.y60{bottom:40.200267pt;}
.y27{bottom:41.480000pt;}
.ya5{bottom:48.041200pt;}
.y88{bottom:48.680400pt;}
.y3{bottom:50.466667pt;}
.y31{bottom:54.280000pt;}
.yc4{bottom:54.600000pt;}
.yd2{bottom:57.160133pt;}
.y5f{bottom:58.600267pt;}
.y26{bottom:59.880000pt;}
.ya4{bottom:66.441200pt;}
.y87{bottom:67.080400pt;}
.y30{bottom:72.680000pt;}
.yc3{bottom:73.000000pt;}
.yd1{bottom:75.560133pt;}
.y5e{bottom:77.000267pt;}
.y25{bottom:78.280000pt;}
.ya3{bottom:84.841200pt;}
.y86{bottom:85.480400pt;}
.y2f{bottom:91.080000pt;}
.yc2{bottom:91.400000pt;}
.yf8{bottom:92.680253pt;}
.yd0{bottom:93.960133pt;}
.y5d{bottom:95.400267pt;}
.y24{bottom:96.680000pt;}
.ya2{bottom:103.240133pt;}
.y85{bottom:103.880400pt;}
.yf7{bottom:105.000040pt;}
.y2e{bottom:109.480000pt;}
.yc1{bottom:109.800000pt;}
.ycf{bottom:112.360133pt;}
.y5c{bottom:113.800267pt;}
.y23{bottom:115.080000pt;}
.yf6{bottom:117.159933pt;}
.y84{bottom:122.280400pt;}
.ya1{bottom:125.641200pt;}
.y2d{bottom:127.880000pt;}
.yc0{bottom:128.200000pt;}
.yf5{bottom:129.480240pt;}
.yce{bottom:130.760133pt;}
.y22{bottom:133.480000pt;}
.y5b{bottom:135.560133pt;}
.y83{bottom:140.680400pt;}
.yf4{bottom:141.800027pt;}
.y2c{bottom:146.280000pt;}
.ybf{bottom:146.600000pt;}
.ycd{bottom:149.160133pt;}
.yf3{bottom:153.959920pt;}
.ya0{bottom:154.121467pt;}
.y21{bottom:155.880000pt;}
.y82{bottom:159.080400pt;}
.y20{bottom:161.466667pt;}
.y5a{bottom:161.480400pt;}
.y2b{bottom:164.680000pt;}
.ybe{bottom:165.000000pt;}
.yf2{bottom:166.280227pt;}
.ycc{bottom:167.560133pt;}
.y9f{bottom:172.521467pt;}
.y81{bottom:177.480400pt;}
.yf1{bottom:178.600013pt;}
.y59{bottom:179.880400pt;}
.y2a{bottom:183.080000pt;}
.ybd{bottom:183.400000pt;}
.ycb{bottom:185.960133pt;}
.yf0{bottom:190.759907pt;}
.y9e{bottom:190.921467pt;}
.y80{bottom:195.880400pt;}
.y58{bottom:198.280400pt;}
.yef{bottom:203.080213pt;}
.ybc{bottom:205.800000pt;}
.yca{bottom:208.360133pt;}
.y9d{bottom:209.321467pt;}
.y7f{bottom:214.280400pt;}
.yee{bottom:215.400000pt;}
.y57{bottom:216.680400pt;}
.yed{bottom:227.559893pt;}
.y9c{bottom:227.721467pt;}
.y7e{bottom:232.680400pt;}
.y56{bottom:235.080400pt;}
.yc9{bottom:237.641333pt;}
.yec{bottom:239.880200pt;}
.y9b{bottom:246.121467pt;}
.y7d{bottom:251.080400pt;}
.yeb{bottom:252.199987pt;}
.y55{bottom:253.480400pt;}
.ybb{bottom:254.600000pt;}
.yea{bottom:264.359880pt;}
.y9a{bottom:264.521467pt;}
.y7c{bottom:269.480400pt;}
.y54{bottom:271.880400pt;}
.yba{bottom:273.000000pt;}
.ye9{bottom:276.680187pt;}
.y99{bottom:282.921467pt;}
.y7b{bottom:287.880400pt;}
.ye8{bottom:288.999973pt;}
.y53{bottom:290.280400pt;}
.yb9{bottom:291.400000pt;}
.ye7{bottom:301.159867pt;}
.y98{bottom:301.321467pt;}
.y52{bottom:308.680400pt;}
.yb8{bottom:309.800000pt;}
.y7a{bottom:309.800133pt;}
.ye6{bottom:318.600000pt;}
.y97{bottom:319.721467pt;}
.y51{bottom:327.080400pt;}
.yb7{bottom:328.200000pt;}
.y79{bottom:335.721467pt;}
.y96{bottom:338.121467pt;}
.yb6{bottom:346.600000pt;}
.y50{bottom:349.000133pt;}
.y78{bottom:354.121467pt;}
.y95{bottom:356.521467pt;}
.yb5{bottom:365.000000pt;}
.ye5{bottom:367.400000pt;}
.y77{bottom:372.521467pt;}
.y4f{bottom:374.921467pt;}
.y1f{bottom:383.108000pt;}
.yb4{bottom:383.400000pt;}
.ye4{bottom:385.800000pt;}
.y76{bottom:390.921467pt;}
.y4e{bottom:393.321467pt;}
.yb3{bottom:401.800000pt;}
.ye3{bottom:404.200000pt;}
.y1e{bottom:409.026800pt;}
.y75{bottom:409.321467pt;}
.y4d{bottom:411.721467pt;}
.yb2{bottom:420.200000pt;}
.ye2{bottom:422.600000pt;}
.y1d{bottom:427.426800pt;}
.y74{bottom:427.721467pt;}
.y4c{bottom:430.121467pt;}
.yc8{bottom:432.680000pt;}
.yb1{bottom:438.600000pt;}
.ye1{bottom:441.000000pt;}
.y73{bottom:446.121467pt;}
.y4b{bottom:448.521467pt;}
.yb0{bottom:457.000000pt;}
.ye0{bottom:459.400000pt;}
.y1c{bottom:464.226800pt;}
.y72{bottom:464.521467pt;}
.y4a{bottom:466.921467pt;}
.y94{bottom:470.921467pt;}
.yaf{bottom:475.400000pt;}
.ydf{bottom:477.800000pt;}
.y1b{bottom:482.626800pt;}
.y71{bottom:482.921467pt;}
.y49{bottom:485.321467pt;}
.yae{bottom:493.800000pt;}
.yde{bottom:496.200000pt;}
.y1a{bottom:501.026800pt;}
.y70{bottom:501.321467pt;}
.y48{bottom:503.721467pt;}
.yad{bottom:512.200000pt;}
.ydd{bottom:514.600000pt;}
.y19{bottom:519.426800pt;}
.y6f{bottom:519.721467pt;}
.y47{bottom:522.121467pt;}
.yac{bottom:530.600000pt;}
.ydc{bottom:533.000000pt;}
.y18{bottom:537.826800pt;}
.y6e{bottom:538.121467pt;}
.y46{bottom:540.521467pt;}
.yab{bottom:549.000000pt;}
.ydb{bottom:551.400000pt;}
.y17{bottom:556.226800pt;}
.y6d{bottom:556.521467pt;}
.y45{bottom:558.921467pt;}
.yaa{bottom:567.400000pt;}
.yda{bottom:569.800000pt;}
.y16{bottom:574.626800pt;}
.y6c{bottom:574.921467pt;}
.y44{bottom:577.321467pt;}
.ya9{bottom:585.800000pt;}
.yd9{bottom:588.200000pt;}
.y15{bottom:593.026800pt;}
.y6b{bottom:593.321467pt;}
.y43{bottom:595.721467pt;}
.ya8{bottom:604.200000pt;}
.yd8{bottom:606.600000pt;}
.y14{bottom:611.426800pt;}
.y93{bottom:611.721467pt;}
.y42{bottom:614.121467pt;}
.y6a{bottom:615.080267pt;}
.yc7{bottom:622.600000pt;}
.yd7{bottom:625.000000pt;}
.y13{bottom:629.826800pt;}
.y92{bottom:630.121467pt;}
.y41{bottom:635.880267pt;}
.y69{bottom:641.000000pt;}
.yd6{bottom:643.400000pt;}
.y12{bottom:648.226800pt;}
.y91{bottom:648.521467pt;}
.y68{bottom:659.400000pt;}
.y40{bottom:661.800000pt;}
.y11{bottom:666.626800pt;}
.y90{bottom:666.921467pt;}
.y67{bottom:677.800000pt;}
.y3f{bottom:680.200000pt;}
.y10{bottom:685.026800pt;}
.y8f{bottom:685.321467pt;}
.y66{bottom:696.200000pt;}
.y3e{bottom:698.600000pt;}
.yd5{bottom:702.600000pt;}
.yf{bottom:703.426800pt;}
.y8e{bottom:703.721467pt;}
.y65{bottom:714.600000pt;}
.y3d{bottom:717.000000pt;}
.y8d{bottom:722.121467pt;}
.y64{bottom:733.000000pt;}
.y3c{bottom:735.400000pt;}
.y8c{bottom:740.521467pt;}
.ye{bottom:741.347067pt;}
.y63{bottom:751.400000pt;}
.y3b{bottom:757.800000pt;}
.y8b{bottom:762.280267pt;}
.y62{bottom:769.800000pt;}
.yd{bottom:785.826800pt;}
.y3a{bottom:788.200000pt;}
.y39{bottom:806.600000pt;}
.y38{bottom:825.000000pt;}
.y37{bottom:843.400000pt;}
.yc{bottom:844.866933pt;}
.yb{bottom:860.066933pt;}
.y36{bottom:861.800000pt;}
.ya{bottom:875.426800pt;}
.y9{bottom:890.788267pt;}
.y8{bottom:906.147067pt;}
.y7{bottom:921.506933pt;}
.y6{bottom:937.988133pt;}
.y5{bottom:960.546933pt;}
.y4{bottom:988.226667pt;}
.y34{bottom:1020.066667pt;}
.y2{bottom:1049.026667pt;}
.y1{bottom:1072.866667pt;}
.hd{height:11.533333pt;}
.h10{height:29.831120pt;}
.hf{height:35.939193pt;}
.h3{height:35.965104pt;}
.h7{height:36.872005pt;}
.h4{height:40.379298pt;}
.h2{height:43.375000pt;}
.hb{height:44.437500pt;}
.ha{height:44.468750pt;}
.h6{height:52.065495pt;}
.h9{height:57.652604pt;}
.h5{height:65.062500pt;}
.h8{height:66.703125pt;}
.hc{height:199.066667pt;}
.he{height:877.733333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:398.000000pt;}
.w3{width:642.466667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.066667pt;}
.x16{left:18.666667pt;}
.x13{left:21.066667pt;}
.x12{left:23.466667pt;}
.x17{left:37.866667pt;}
.x3{left:54.078667pt;}
.xe{left:68.478667pt;}
.x11{left:73.933333pt;}
.xd{left:94.076800pt;}
.x1{left:112.959867pt;}
.xb{left:128.638667pt;}
.x9{left:132.000000pt;}
.x7{left:136.960000pt;}
.x2{left:149.920000pt;}
.x4{left:160.000000pt;}
.x14{left:185.440000pt;}
.x15{left:188.800000pt;}
.x6{left:203.678800pt;}
.x8{left:263.678667pt;}
.xa{left:286.718667pt;}
.x5{left:300.160000pt;}
.xc{left:317.118133pt;}
.xf{left:395.733333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  