
    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_d3538f5ca42b178cddfaed4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_07fa25fb1b21302663f69bf0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.082000;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_e08638ceb3d15eb928a535fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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:ff6;src:url('chunks/assets/font_279db830f9baf86fdf0f6275.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.108000;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);}
.v5{vertical-align:-24.210000px;}
.v2{vertical-align:-16.872000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.294000px;}
.v3{vertical-align:21.690000px;}
.v1{vertical-align:26.034000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001747px;}
.ls5{letter-spacing:2.988600px;}
.ls6{letter-spacing:13.450800px;}
.ls3{letter-spacing:14.947200px;}
.ls7{letter-spacing:19.722600px;}
.ls2{letter-spacing:20.921700px;}
.ls4{letter-spacing:25.890600px;}
.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;}
}
.ws2{word-spacing:-0.071731px;}
.ws8{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.057385px;}
.ws0{word-spacing:0.000000px;}
.ws9e{word-spacing:9.659761px;}
.wsa8{word-spacing:9.922750px;}
.ws1a{word-spacing:10.161852px;}
.ws9c{word-spacing:10.185788px;}
.ws20{word-spacing:10.221628px;}
.ws88{word-spacing:10.281403px;}
.wsa0{word-spacing:10.400954px;}
.wsc7{word-spacing:10.460730px;}
.ws1d{word-spacing:10.568353px;}
.ws58{word-spacing:10.640057px;}
.ws5c{word-spacing:10.711814px;}
.ws70{word-spacing:10.759608px;}
.ws87{word-spacing:10.819384px;}
.wsa4{word-spacing:10.879159px;}
.ws75{word-spacing:10.938935px;}
.ws46{word-spacing:11.058486px;}
.ws7e{word-spacing:11.118262px;}
.ws9d{word-spacing:11.285662px;}
.ws6f{word-spacing:11.297588px;}
.wsb{word-spacing:11.357364px;}
.wsae{word-spacing:11.417140px;}
.ws36{word-spacing:11.476915px;}
.wsca{word-spacing:11.596466px;}
.ws8d{word-spacing:11.716018px;}
.wsb0{word-spacing:11.895344px;}
.ws1c{word-spacing:11.907329px;}
.ws27{word-spacing:12.014896px;}
.ws39{word-spacing:12.074671px;}
.ws45{word-spacing:12.134447px;}
.wscf{word-spacing:12.194222px;}
.ws69{word-spacing:12.253998px;}
.ws97{word-spacing:12.289894px;}
.ws32{word-spacing:12.373549px;}
.ws2f{word-spacing:12.493100px;}
.wsba{word-spacing:12.552876px;}
.wsdd{word-spacing:12.572341px;}
.wsb2{word-spacing:12.612652px;}
.wse{word-spacing:12.672427px;}
.wsb3{word-spacing:12.732203px;}
.ws38{word-spacing:12.791978px;}
.ws9{word-spacing:12.851754px;}
.ws11{word-spacing:12.911530px;}
.ws80{word-spacing:12.971305px;}
.ws9f{word-spacing:13.055024px;}
.ws95{word-spacing:13.150632px;}
.ws91{word-spacing:13.210408px;}
.wsa1{word-spacing:13.270183px;}
.ws73{word-spacing:13.329959px;}
.ws9b{word-spacing:13.341947px;}
.ws28{word-spacing:13.389734px;}
.ws1{word-spacing:13.395802px;}
.ws2c{word-spacing:13.449510px;}
.ws94{word-spacing:13.509286px;}
.ws98{word-spacing:13.533230px;}
.ws93{word-spacing:13.569061px;}
.wsd1{word-spacing:13.688612px;}
.wsaf{word-spacing:13.808164px;}
.wsaa{word-spacing:13.867939px;}
.ws12{word-spacing:13.927715px;}
.wsd{word-spacing:13.987490px;}
.wsc2{word-spacing:14.047266px;}
.ws47{word-spacing:14.107042px;}
.ws5d{word-spacing:14.166817px;}
.ws6e{word-spacing:14.226593px;}
.ws4f{word-spacing:14.286368px;}
.ws4b{word-spacing:14.346144px;}
.ws99{word-spacing:14.394001px;}
.ws29{word-spacing:14.405920px;}
.wsa2{word-spacing:14.465695px;}
.wsd4{word-spacing:14.525471px;}
.wsc5{word-spacing:14.585246px;}
.wsdc{word-spacing:14.645022px;}
.ws3e{word-spacing:14.704798px;}
.ws61{word-spacing:14.764573px;}
.ws57{word-spacing:14.824349px;}
.ws15{word-spacing:14.884124px;}
.ws13{word-spacing:14.943900px;}
.ws86{word-spacing:15.003676px;}
.ws6d{word-spacing:15.063451px;}
.ws3c{word-spacing:15.123227px;}
.ws7d{word-spacing:15.183002px;}
.ws2b{word-spacing:15.242778px;}
.wsd8{word-spacing:15.302554px;}
.ws34{word-spacing:15.422105px;}
.ws4a{word-spacing:15.481880px;}
.ws5a{word-spacing:15.541656px;}
.wsa9{word-spacing:15.601432px;}
.ws10{word-spacing:15.661207px;}
.ws7f{word-spacing:15.720983px;}
.ws24{word-spacing:15.840534px;}
.wsb1{word-spacing:15.900310px;}
.ws43{word-spacing:15.960085px;}
.ws68{word-spacing:16.019861px;}
.ws5b{word-spacing:16.079636px;}
.ws31{word-spacing:16.139412px;}
.wsb5{word-spacing:16.199188px;}
.wse2{word-spacing:16.315150px;}
.wsd2{word-spacing:16.318739px;}
.wsa3{word-spacing:16.438290px;}
.ws59{word-spacing:16.498066px;}
.ws78{word-spacing:16.506041px;}
.ws50{word-spacing:16.557841px;}
.wsa6{word-spacing:16.617617px;}
.ws19{word-spacing:16.677392px;}
.wsda{word-spacing:16.737168px;}
.ws9a{word-spacing:16.832851px;}
.ws42{word-spacing:16.856719px;}
.ws21{word-spacing:16.916495px;}
.wsad{word-spacing:16.976270px;}
.ws67{word-spacing:17.036046px;}
.ws90{word-spacing:17.095822px;}
.ws7c{word-spacing:17.155597px;}
.wsc{word-spacing:17.215373px;}
.wsc3{word-spacing:17.275148px;}
.wsd7{word-spacing:17.454475px;}
.ws63{word-spacing:17.514251px;}
.ws55{word-spacing:17.633802px;}
.ws14{word-spacing:17.693578px;}
.wsab{word-spacing:17.753353px;}
.ws40{word-spacing:17.813129px;}
.ws6{word-spacing:17.849393px;}
.ws7{word-spacing:17.861069px;}
.ws74{word-spacing:17.872904px;}
.ws3{word-spacing:17.879917px;}
.ws4{word-spacing:17.881033px;}
.wsd3{word-spacing:17.932680px;}
.ws2d{word-spacing:17.992456px;}
.ws96{word-spacing:18.052231px;}
.ws33{word-spacing:18.112007px;}
.wsbb{word-spacing:18.231558px;}
.wscc{word-spacing:18.291334px;}
.wsc6{word-spacing:18.470660px;}
.ws72{word-spacing:18.530436px;}
.ws8a{word-spacing:18.649987px;}
.ws85{word-spacing:18.709763px;}
.ws1f{word-spacing:18.769538px;}
.wsa{word-spacing:18.829314px;}
.wsc4{word-spacing:18.889090px;}
.ws7b{word-spacing:19.008641px;}
.ws35{word-spacing:19.068416px;}
.wsc9{word-spacing:19.128192px;}
.ws79{word-spacing:19.187968px;}
.ws64{word-spacing:19.247743px;}
.wsdb{word-spacing:19.307519px;}
.ws89{word-spacing:19.367294px;}
.ws6b{word-spacing:19.427070px;}
.ws7a{word-spacing:19.486846px;}
.ws48{word-spacing:19.606397px;}
.ws8b{word-spacing:19.666172px;}
.ws4c{word-spacing:19.725948px;}
.wsa5{word-spacing:19.785724px;}
.ws77{word-spacing:19.845499px;}
.ws26{word-spacing:19.905275px;}
.wsac{word-spacing:19.965050px;}
.wsb8{word-spacing:20.024826px;}
.ws5f{word-spacing:20.084602px;}
.ws56{word-spacing:20.204153px;}
.ws1e{word-spacing:20.263928px;}
.ws16{word-spacing:20.323704px;}
.ws3d{word-spacing:20.383480px;}
.wscb{word-spacing:20.443255px;}
.ws8e{word-spacing:20.503031px;}
.wse1{word-spacing:20.562806px;}
.wsb9{word-spacing:20.622582px;}
.ws71{word-spacing:20.682358px;}
.ws76{word-spacing:20.742133px;}
.ws37{word-spacing:20.801909px;}
.ws6a{word-spacing:20.861684px;}
.ws8f{word-spacing:20.921460px;}
.ws52{word-spacing:21.041011px;}
.ws3b{word-spacing:21.100787px;}
.ws65{word-spacing:21.160562px;}
.ws18{word-spacing:21.220338px;}
.ws66{word-spacing:21.339889px;}
.wsf{word-spacing:21.459440px;}
.ws23{word-spacing:21.638767px;}
.ws83{word-spacing:21.698543px;}
.ws1b{word-spacing:21.758318px;}
.wsc8{word-spacing:21.877870px;}
.ws82{word-spacing:21.937645px;}
.wsb7{word-spacing:21.997421px;}
.ws30{word-spacing:22.057196px;}
.ws51{word-spacing:22.236523px;}
.wse3{word-spacing:22.296299px;}
.wsd9{word-spacing:22.356074px;}
.ws5e{word-spacing:22.535401px;}
.ws92{word-spacing:22.654952px;}
.wsb6{word-spacing:22.774504px;}
.ws41{word-spacing:22.834279px;}
.wsde{word-spacing:22.953830px;}
.wsdf{word-spacing:23.013606px;}
.wsb4{word-spacing:23.073382px;}
.ws25{word-spacing:23.252708px;}
.ws6c{word-spacing:23.372260px;}
.ws2a{word-spacing:23.551586px;}
.ws49{word-spacing:23.910240px;}
.wsd0{word-spacing:23.970016px;}
.ws44{word-spacing:24.029791px;}
.wsd5{word-spacing:24.209118px;}
.ws54{word-spacing:24.268894px;}
.ws22{word-spacing:24.388445px;}
.ws3a{word-spacing:24.567772px;}
.ws8c{word-spacing:24.627547px;}
.wsd6{word-spacing:24.687323px;}
.ws4e{word-spacing:24.747098px;}
.ws4d{word-spacing:24.806874px;}
.wse0{word-spacing:25.105752px;}
.ws3f{word-spacing:25.165528px;}
.wsa7{word-spacing:25.285079px;}
.ws53{word-spacing:25.583957px;}
.ws2e{word-spacing:25.643732px;}
.ws60{word-spacing:25.763284px;}
.ws62{word-spacing:25.882835px;}
.ws84{word-spacing:26.002386px;}
.ws81{word-spacing:26.719693px;}
.ws17{word-spacing:59.715824px;}
.wscd{word-spacing:71.659469px;}
.wsce{word-spacing:125.457869px;}
.wsbd{word-spacing:131.429491px;}
.wsbc{word-spacing:155.096995px;}
.wsc1{word-spacing:158.328691px;}
.wsc0{word-spacing:158.352202px;}
.wsbe{word-spacing:185.227891px;}
.wsbf{word-spacing:185.250202px;}
._31{margin-left:-6.120973px;}
._3{margin-left:-5.107777px;}
._1{margin-left:-3.335501px;}
._0{margin-left:-1.936742px;}
._5{width:1.195512px;}
._9{width:2.403018px;}
._33{width:4.922652px;}
._2{width:8.984333px;}
._b{width:10.311257px;}
._4{width:13.918771px;}
._6{width:16.019861px;}
._23{width:17.301999px;}
._d{width:20.311771px;}
._8{width:21.327956px;}
._32{width:23.455958px;}
._a{width:25.452473px;}
._c{width:59.775600px;}
._25{width:78.493066px;}
._26{width:85.162867px;}
._2a{width:98.069736px;}
._27{width:99.208997px;}
._29{width:112.113466px;}
._28{width:125.511667px;}
._2d{width:139.012666px;}
._2c{width:152.410867px;}
._1b{width:164.688835px;}
._22{width:171.823354px;}
._20{width:185.281690px;}
._1c{width:198.731290px;}
._1f{width:212.180890px;}
._1d{width:219.000931px;}
._1e{width:252.529690px;}
._21{width:279.460378px;}
._24{width:335.327386px;}
._e{width:358.554389px;}
._2e{width:368.199797px;}
._19{width:375.781824px;}
._10{width:389.231424px;}
._12{width:422.855424px;}
._f{width:424.296034px;}
._16{width:449.754624px;}
._2b{width:473.925600px;}
._2f{width:484.792877px;}
._17{width:504.252403px;}
._11{width:509.094259px;}
._13{width:517.702003px;}
._30{width:526.861354px;}
._15{width:545.031590px;}
._14{width:552.348173px;}
._1a{width:595.349386px;}
._7{width:841.137984px;}
._18{width:932.161805px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs7{font-size:57.384600px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y40{bottom:96.870000px;}
.y4{bottom:97.125005px;}
.y100{bottom:99.282000px;}
.y70{bottom:101.089500px;}
.y6b{bottom:102.609000px;}
.y9e{bottom:108.163500px;}
.y7b{bottom:111.067500px;}
.yb2{bottom:114.802500px;}
.y3f{bottom:115.285500px;}
.yff{bottom:117.214500px;}
.y6a{bottom:120.541500px;}
.y7a{bottom:125.263500px;}
.y9d{bottom:126.097500px;}
.y6f{bottom:128.250000px;}
.y3e{bottom:129.798000px;}
.yb1{bottom:132.735000px;}
.yb7{bottom:134.221500px;}
.yfe{bottom:135.147000px;}
.y69{bottom:138.474000px;}
.y21{bottom:139.264499px;}
.y79{bottom:139.461000px;}
.y9c{bottom:144.030000px;}
.y6e{bottom:146.182500px;}
.yf6{bottom:150.667500px;}
.yb0{bottom:150.669000px;}
.yb6{bottom:152.155500px;}
.yfd{bottom:153.079500px;}
.y78{bottom:153.657000px;}
.y3d{bottom:153.912000px;}
.y68{bottom:156.406500px;}
.yd4{bottom:159.213000px;}
.y9b{bottom:161.962500px;}
.y6d{bottom:164.115000px;}
.y77{bottom:167.854500px;}
.yaf{bottom:168.601500px;}
.yb5{bottom:170.088000px;}
.yfc{bottom:171.012000px;}
.y3c{bottom:171.846000px;}
.y67{bottom:174.339000px;}
.yd3{bottom:177.145500px;}
.y9a{bottom:179.895000px;}
.y76{bottom:182.050500px;}
.yae{bottom:186.534000px;}
.yb4{bottom:188.020500px;}
.yfb{bottom:188.946000px;}
.y3b{bottom:189.778500px;}
.y6c{bottom:191.784000px;}
.y66{bottom:192.273000px;}
.yd2{bottom:195.079500px;}
.y18{bottom:196.933500px;}
.y99{bottom:197.827500px;}
.y75{bottom:200.466000px;}
.yad{bottom:204.466500px;}
.yb3{bottom:205.953000px;}
.yfa{bottom:206.878500px;}
.y3a{bottom:207.711000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y65{bottom:210.205500px;}
.y74{bottom:210.760500px;}
.yd1{bottom:213.012000px;}
.yf5{bottom:213.208500px;}
.y98{bottom:215.760000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yac{bottom:222.399000px;}
.yf9{bottom:224.811000px;}
.y73{bottom:224.956500px;}
.y64{bottom:228.138000px;}
.yd0{bottom:230.944500px;}
.y97{bottom:233.694000px;}
.y39{bottom:234.627000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y72{bottom:239.154000px;}
.yab{bottom:240.331500px;}
.yf8{bottom:242.743500px;}
.y63{bottom:246.070500px;}
.ycf{bottom:248.877000px;}
.y96{bottom:251.626500px;}
.y71{bottom:257.569500px;}
.yaa{bottom:258.265500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yf4{bottom:261.460500px;}
.y62{bottom:264.003000px;}
.yf7{bottom:264.928500px;}
.yce{bottom:266.809500px;}
.y95{bottom:269.559000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yf3{bottom:279.393000px;}
.y61{bottom:281.935500px;}
.ycd{bottom:284.742000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ya9{bottom:285.721500px;}
.y94{bottom:287.491500px;}
.yf2{bottom:297.325500px;}
.y60{bottom:299.869500px;}
.y38{bottom:300.342000px;}
.ycc{bottom:302.676000px;}
.ya8{bottom:303.654000px;}
.y93{bottom:305.424000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yf1{bottom:315.259500px;}
.y5f{bottom:317.802000px;}
.y37{bottom:318.274500px;}
.ycb{bottom:320.608500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y92{bottom:323.356500px;}
.yf0{bottom:333.192000px;}
.y5e{bottom:335.734500px;}
.yca{bottom:338.541000px;}
.y36{bottom:340.459500px;}
.y91{bottom:341.290500px;}
.yf{bottom:348.133500px;}
.yef{bottom:351.124500px;}
.y5d{bottom:353.667000px;}
.yc9{bottom:356.473500px;}
.ya7{bottom:356.874000px;}
.y90{bottom:359.223000px;}
.yee{bottom:369.057000px;}
.y5c{bottom:371.599500px;}
.yc8{bottom:374.406000px;}
.ya6{bottom:374.808000px;}
.y35{bottom:376.324500px;}
.y8f{bottom:377.155500px;}
.ye{bottom:386.785499px;}
.yed{bottom:386.989500px;}
.y5b{bottom:389.532000px;}
.yc7{bottom:392.340000px;}
.ya5{bottom:392.740500px;}
.y34{bottom:394.258500px;}
.y8e{bottom:395.088000px;}
.yec{bottom:404.922000px;}
.y5a{bottom:407.466000px;}
.yd{bottom:408.044999px;}
.yc6{bottom:410.272500px;}
.ya4{bottom:410.673000px;}
.y33{bottom:412.191000px;}
.y8d{bottom:413.020500px;}
.yeb{bottom:422.856000px;}
.y59{bottom:425.398500px;}
.yc5{bottom:428.205000px;}
.ya3{bottom:428.605500px;}
.y32{bottom:430.123500px;}
.y8c{bottom:430.954500px;}
.yea{bottom:440.788500px;}
.y58{bottom:443.331000px;}
.ya2{bottom:446.538000px;}
.y31{bottom:448.056000px;}
.y8b{bottom:448.887000px;}
.ye9{bottom:458.721000px;}
.y57{bottom:461.263500px;}
.ya1{bottom:464.470500px;}
.y30{bottom:465.988500px;}
.y8a{bottom:466.819500px;}
.yc4{bottom:473.037000px;}
.ye8{bottom:476.653500px;}
.y56{bottom:479.196000px;}
.y2f{bottom:483.921000px;}
.y89{bottom:484.752000px;}
.ye7{bottom:494.586000px;}
.y55{bottom:497.130000px;}
.ya0{bottom:500.337000px;}
.y2e{bottom:501.855000px;}
.y88{bottom:502.684500px;}
.yc{bottom:502.864502px;}
.ye6{bottom:512.520000px;}
.y54{bottom:515.062500px;}
.y2d{bottom:519.787500px;}
.y87{bottom:520.617000px;}
.yb{bottom:520.864502px;}
.y9f{bottom:528.972000px;}
.ye5{bottom:530.452500px;}
.y53{bottom:532.995000px;}
.y2c{bottom:537.720000px;}
.yc3{bottom:538.551000px;}
.ya{bottom:538.864499px;}
.ye4{bottom:548.385000px;}
.y52{bottom:550.927500px;}
.y2b{bottom:555.652500px;}
.y9{bottom:556.864499px;}
.y86{bottom:565.449000px;}
.ye3{bottom:566.317500px;}
.y51{bottom:568.860000px;}
.y2a{bottom:573.585000px;}
.yc2{bottom:583.381500px;}
.ye2{bottom:584.250000px;}
.y85{bottom:585.931500px;}
.y50{bottom:586.792500px;}
.y29{bottom:591.519000px;}
.ye1{bottom:602.182500px;}
.y84{bottom:602.967000px;}
.yc1{bottom:603.864000px;}
.y4f{bottom:604.726500px;}
.y28{bottom:609.451500px;}
.y83{bottom:619.405500px;}
.ye0{bottom:620.116500px;}
.yc0{bottom:620.899500px;}
.y4e{bottom:622.659000px;}
.y27{bottom:631.635000px;}
.y82{bottom:635.844000px;}
.ybf{bottom:637.338000px;}
.ydf{bottom:638.049000px;}
.y4d{bottom:640.591500px;}
.y8{bottom:645.510000px;}
.y81{bottom:652.282500px;}
.ybe{bottom:653.776500px;}
.yde{bottom:655.981500px;}
.y4c{bottom:658.524000px;}
.y7{bottom:666.771000px;}
.y80{bottom:668.721000px;}
.ybd{bottom:670.215000px;}
.y4b{bottom:676.456500px;}
.y26{bottom:681.658500px;}
.y7f{bottom:685.159500px;}
.ybc{bottom:686.653500px;}
.y4a{bottom:694.389000px;}
.ydd{bottom:698.451000px;}
.y7e{bottom:701.598000px;}
.ybb{bottom:703.092000px;}
.y49{bottom:712.323000px;}
.y7d{bottom:718.633500px;}
.ydc{bottom:718.932000px;}
.y25{bottom:723.841500px;}
.yba{bottom:726.180000px;}
.y6{bottom:726.298500px;}
.y48{bottom:730.255500px;}
.ydb{bottom:735.969000px;}
.yb9{bottom:736.566000px;}
.y7c{bottom:739.221000px;}
.y24{bottom:744.763500px;}
.y47{bottom:748.188000px;}
.yda{bottom:752.407500px;}
.y3{bottom:752.599495px;}
.yb8{bottom:757.155000px;}
.y46{bottom:766.120500px;}
.yd9{bottom:768.846000px;}
.y45{bottom:784.053000px;}
.yd8{bottom:785.284500px;}
.yd7{bottom:801.721500px;}
.y44{bottom:801.985500px;}
.yd6{bottom:818.758500px;}
.y43{bottom:819.919500px;}
.yd5{bottom:835.197000px;}
.y42{bottom:837.852000px;}
.y41{bottom:855.784500px;}
.y2{bottom:879.369000px;}
.y23{bottom:888.306000px;}
.y22{bottom:904.744500px;}
.y1{bottom:966.726000px;}
.h11{height:31.920384px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h15{height:38.358259px;}
.h12{height:42.560334px;}
.hf{height:42.620003px;}
.h7{height:45.960000px;}
.hc{height:46.966003px;}
.h16{height:47.880576px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hd{height:51.144346px;}
.h14{height:52.184099px;}
.h10{height:53.200284px;}
.h19{height:53.764284px;}
.h2{height:55.152000px;}
.h17{height:56.260003px;}
.h13{height:58.930092px;}
.h18{height:58.936092px;}
.he{height:68.594334px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.hb{height:973.500000px;}
.ha{height:973.701000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:688.500000px;}
.w3{width:688.819500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:85.039500px;}
.xe{left:93.213000px;}
.xd{left:94.305000px;}
.x1{left:102.045000px;}
.x11{left:104.632500px;}
.x2{left:106.297500px;}
.x10{left:107.389500px;}
.xc{left:142.984500px;}
.x14{left:168.307500px;}
.x7{left:186.349500px;}
.x4{left:203.484001px;}
.x9{left:219.591000px;}
.x8{left:240.139500px;}
.x13{left:246.111000px;}
.x12{left:282.523500px;}
.xa{left:297.961500px;}
.xf{left:328.506000px;}
.xb{left:393.448500px;}
.x3{left:454.959000px;}
.x6{left:596.361000px;}
@media print{
.v5{vertical-align:-21.520000pt;}
.v2{vertical-align:-14.997333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.261333pt;}
.v3{vertical-align:19.280000pt;}
.v1{vertical-align:23.141333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001553pt;}
.ls5{letter-spacing:2.656533pt;}
.ls6{letter-spacing:11.956267pt;}
.ls3{letter-spacing:13.286400pt;}
.ls7{letter-spacing:17.531200pt;}
.ls2{letter-spacing:18.597067pt;}
.ls4{letter-spacing:23.013867pt;}
.ws2{word-spacing:-0.063761pt;}
.ws8{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.051009pt;}
.ws0{word-spacing:0.000000pt;}
.ws9e{word-spacing:8.586454pt;}
.wsa8{word-spacing:8.820222pt;}
.ws1a{word-spacing:9.032757pt;}
.ws9c{word-spacing:9.054034pt;}
.ws20{word-spacing:9.085891pt;}
.ws88{word-spacing:9.139025pt;}
.wsa0{word-spacing:9.245293pt;}
.wsc7{word-spacing:9.298427pt;}
.ws1d{word-spacing:9.394091pt;}
.ws58{word-spacing:9.457828pt;}
.ws5c{word-spacing:9.521613pt;}
.ws70{word-spacing:9.564096pt;}
.ws87{word-spacing:9.617230pt;}
.wsa4{word-spacing:9.670364pt;}
.ws75{word-spacing:9.723498pt;}
.ws46{word-spacing:9.829765pt;}
.ws7e{word-spacing:9.882899pt;}
.ws9d{word-spacing:10.031699pt;}
.ws6f{word-spacing:10.042301pt;}
.wsb{word-spacing:10.095435pt;}
.wsae{word-spacing:10.148569pt;}
.ws36{word-spacing:10.201702pt;}
.wsca{word-spacing:10.307970pt;}
.ws8d{word-spacing:10.414238pt;}
.wsb0{word-spacing:10.573639pt;}
.ws1c{word-spacing:10.584293pt;}
.ws27{word-spacing:10.679907pt;}
.ws39{word-spacing:10.733041pt;}
.ws45{word-spacing:10.786175pt;}
.wscf{word-spacing:10.839309pt;}
.ws69{word-spacing:10.892443pt;}
.ws97{word-spacing:10.924350pt;}
.ws32{word-spacing:10.998710pt;}
.ws2f{word-spacing:11.104978pt;}
.wsba{word-spacing:11.158112pt;}
.wsdd{word-spacing:11.175414pt;}
.wsb2{word-spacing:11.211246pt;}
.wse{word-spacing:11.264380pt;}
.wsb3{word-spacing:11.317514pt;}
.ws38{word-spacing:11.370647pt;}
.ws9{word-spacing:11.423781pt;}
.ws11{word-spacing:11.476915pt;}
.ws80{word-spacing:11.530049pt;}
.ws9f{word-spacing:11.604466pt;}
.ws95{word-spacing:11.689451pt;}
.ws91{word-spacing:11.742585pt;}
.wsa1{word-spacing:11.795718pt;}
.ws73{word-spacing:11.848852pt;}
.ws9b{word-spacing:11.859509pt;}
.ws28{word-spacing:11.901986pt;}
.ws1{word-spacing:11.907379pt;}
.ws2c{word-spacing:11.955120pt;}
.ws94{word-spacing:12.008254pt;}
.ws98{word-spacing:12.029538pt;}
.ws93{word-spacing:12.061388pt;}
.wsd1{word-spacing:12.167655pt;}
.wsaf{word-spacing:12.273923pt;}
.wsaa{word-spacing:12.327057pt;}
.ws12{word-spacing:12.380191pt;}
.wsd{word-spacing:12.433325pt;}
.wsc2{word-spacing:12.486459pt;}
.ws47{word-spacing:12.539593pt;}
.ws5d{word-spacing:12.592726pt;}
.ws6e{word-spacing:12.645860pt;}
.ws4f{word-spacing:12.698994pt;}
.ws4b{word-spacing:12.752128pt;}
.ws99{word-spacing:12.794667pt;}
.ws29{word-spacing:12.805262pt;}
.wsa2{word-spacing:12.858396pt;}
.wsd4{word-spacing:12.911530pt;}
.wsc5{word-spacing:12.964663pt;}
.wsdc{word-spacing:13.017797pt;}
.ws3e{word-spacing:13.070931pt;}
.ws61{word-spacing:13.124065pt;}
.ws57{word-spacing:13.177199pt;}
.ws15{word-spacing:13.230333pt;}
.ws13{word-spacing:13.283467pt;}
.ws86{word-spacing:13.336601pt;}
.ws6d{word-spacing:13.389734pt;}
.ws3c{word-spacing:13.442868pt;}
.ws7d{word-spacing:13.496002pt;}
.ws2b{word-spacing:13.549136pt;}
.wsd8{word-spacing:13.602270pt;}
.ws34{word-spacing:13.708538pt;}
.ws4a{word-spacing:13.761671pt;}
.ws5a{word-spacing:13.814805pt;}
.wsa9{word-spacing:13.867939pt;}
.ws10{word-spacing:13.921073pt;}
.ws7f{word-spacing:13.974207pt;}
.ws24{word-spacing:14.080475pt;}
.wsb1{word-spacing:14.133609pt;}
.ws43{word-spacing:14.186742pt;}
.ws68{word-spacing:14.239876pt;}
.ws5b{word-spacing:14.293010pt;}
.ws31{word-spacing:14.346144pt;}
.wsb5{word-spacing:14.399278pt;}
.wse2{word-spacing:14.502355pt;}
.wsd2{word-spacing:14.505546pt;}
.wsa3{word-spacing:14.611813pt;}
.ws59{word-spacing:14.664947pt;}
.ws78{word-spacing:14.672036pt;}
.ws50{word-spacing:14.718081pt;}
.wsa6{word-spacing:14.771215pt;}
.ws19{word-spacing:14.824349pt;}
.wsda{word-spacing:14.877483pt;}
.ws9a{word-spacing:14.962534pt;}
.ws42{word-spacing:14.983750pt;}
.ws21{word-spacing:15.036884pt;}
.wsad{word-spacing:15.090018pt;}
.ws67{word-spacing:15.143152pt;}
.ws90{word-spacing:15.196286pt;}
.ws7c{word-spacing:15.249420pt;}
.wsc{word-spacing:15.302554pt;}
.wsc3{word-spacing:15.355687pt;}
.wsd7{word-spacing:15.515089pt;}
.ws63{word-spacing:15.568223pt;}
.ws55{word-spacing:15.674491pt;}
.ws14{word-spacing:15.727625pt;}
.wsab{word-spacing:15.780758pt;}
.ws40{word-spacing:15.833892pt;}
.ws6{word-spacing:15.866127pt;}
.ws7{word-spacing:15.876506pt;}
.ws74{word-spacing:15.887026pt;}
.ws3{word-spacing:15.893259pt;}
.ws4{word-spacing:15.894251pt;}
.wsd3{word-spacing:15.940160pt;}
.ws2d{word-spacing:15.993294pt;}
.ws96{word-spacing:16.046428pt;}
.ws33{word-spacing:16.099562pt;}
.wsbb{word-spacing:16.205829pt;}
.wscc{word-spacing:16.258963pt;}
.wsc6{word-spacing:16.418365pt;}
.ws72{word-spacing:16.471499pt;}
.ws8a{word-spacing:16.577766pt;}
.ws85{word-spacing:16.630900pt;}
.ws1f{word-spacing:16.684034pt;}
.wsa{word-spacing:16.737168pt;}
.wsc4{word-spacing:16.790302pt;}
.ws7b{word-spacing:16.896570pt;}
.ws35{word-spacing:16.949703pt;}
.wsc9{word-spacing:17.002837pt;}
.ws79{word-spacing:17.055971pt;}
.ws64{word-spacing:17.109105pt;}
.wsdb{word-spacing:17.162239pt;}
.ws89{word-spacing:17.215373pt;}
.ws6b{word-spacing:17.268507pt;}
.ws7a{word-spacing:17.321641pt;}
.ws48{word-spacing:17.427908pt;}
.ws8b{word-spacing:17.481042pt;}
.ws4c{word-spacing:17.534176pt;}
.wsa5{word-spacing:17.587310pt;}
.ws77{word-spacing:17.640444pt;}
.ws26{word-spacing:17.693578pt;}
.wsac{word-spacing:17.746711pt;}
.wsb8{word-spacing:17.799845pt;}
.ws5f{word-spacing:17.852979pt;}
.ws56{word-spacing:17.959247pt;}
.ws1e{word-spacing:18.012381pt;}
.ws16{word-spacing:18.065515pt;}
.ws3d{word-spacing:18.118649pt;}
.wscb{word-spacing:18.171782pt;}
.ws8e{word-spacing:18.224916pt;}
.wse1{word-spacing:18.278050pt;}
.wsb9{word-spacing:18.331184pt;}
.ws71{word-spacing:18.384318pt;}
.ws76{word-spacing:18.437452pt;}
.ws37{word-spacing:18.490586pt;}
.ws6a{word-spacing:18.543719pt;}
.ws8f{word-spacing:18.596853pt;}
.ws52{word-spacing:18.703121pt;}
.ws3b{word-spacing:18.756255pt;}
.ws65{word-spacing:18.809389pt;}
.ws18{word-spacing:18.862523pt;}
.ws66{word-spacing:18.968790pt;}
.wsf{word-spacing:19.075058pt;}
.ws23{word-spacing:19.234460pt;}
.ws83{word-spacing:19.287594pt;}
.ws1b{word-spacing:19.340727pt;}
.wsc8{word-spacing:19.446995pt;}
.ws82{word-spacing:19.500129pt;}
.wsb7{word-spacing:19.553263pt;}
.ws30{word-spacing:19.606397pt;}
.ws51{word-spacing:19.765798pt;}
.wse3{word-spacing:19.818932pt;}
.wsd9{word-spacing:19.872066pt;}
.ws5e{word-spacing:20.031468pt;}
.ws92{word-spacing:20.137735pt;}
.wsb6{word-spacing:20.244003pt;}
.ws41{word-spacing:20.297137pt;}
.wsde{word-spacing:20.403405pt;}
.wsdf{word-spacing:20.456539pt;}
.wsb4{word-spacing:20.509673pt;}
.ws25{word-spacing:20.669074pt;}
.ws6c{word-spacing:20.775342pt;}
.ws2a{word-spacing:20.934743pt;}
.ws49{word-spacing:21.253547pt;}
.wsd0{word-spacing:21.306681pt;}
.ws44{word-spacing:21.359814pt;}
.wsd5{word-spacing:21.519216pt;}
.ws54{word-spacing:21.572350pt;}
.ws22{word-spacing:21.678618pt;}
.ws3a{word-spacing:21.838019pt;}
.ws8c{word-spacing:21.891153pt;}
.wsd6{word-spacing:21.944287pt;}
.ws4e{word-spacing:21.997421pt;}
.ws4d{word-spacing:22.050555pt;}
.wse0{word-spacing:22.316224pt;}
.ws3f{word-spacing:22.369358pt;}
.wsa7{word-spacing:22.475626pt;}
.ws53{word-spacing:22.741295pt;}
.ws2e{word-spacing:22.794429pt;}
.ws60{word-spacing:22.900697pt;}
.ws62{word-spacing:23.006964pt;}
.ws84{word-spacing:23.113232pt;}
.ws81{word-spacing:23.750838pt;}
.ws17{word-spacing:53.080733pt;}
.wscd{word-spacing:63.697306pt;}
.wsce{word-spacing:111.518106pt;}
.wsbd{word-spacing:116.826214pt;}
.wsbc{word-spacing:137.863996pt;}
.wsc1{word-spacing:140.736614pt;}
.wsc0{word-spacing:140.757513pt;}
.wsbe{word-spacing:164.647014pt;}
.wsbf{word-spacing:164.666846pt;}
._31{margin-left:-5.440865pt;}
._3{margin-left:-4.540246pt;}
._1{margin-left:-2.964890pt;}
._0{margin-left:-1.721549pt;}
._5{width:1.062677pt;}
._9{width:2.136016pt;}
._33{width:4.375691pt;}
._2{width:7.986074pt;}
._b{width:9.165562pt;}
._4{width:12.372241pt;}
._6{width:14.239876pt;}
._23{width:15.379555pt;}
._d{width:18.054908pt;}
._8{width:18.958183pt;}
._32{width:20.849741pt;}
._a{width:22.624420pt;}
._c{width:53.133867pt;}
._25{width:69.771614pt;}
._26{width:75.700326pt;}
._2a{width:87.173099pt;}
._27{width:88.185775pt;}
._29{width:99.656414pt;}
._28{width:111.565926pt;}
._2d{width:123.566814pt;}
._2c{width:135.476326pt;}
._1b{width:146.390076pt;}
._22{width:152.731870pt;}
._20{width:164.694835pt;}
._1c{width:176.650035pt;}
._1f{width:188.605235pt;}
._1d{width:194.667494pt;}
._1e{width:224.470835pt;}
._21{width:248.409225pt;}
._24{width:298.068787pt;}
._e{width:318.715012pt;}
._2e{width:327.288708pt;}
._19{width:334.028288pt;}
._10{width:345.983488pt;}
._12{width:375.871488pt;}
._f{width:377.152030pt;}
._16{width:399.781888pt;}
._2b{width:421.267200pt;}
._2f{width:430.927002pt;}
._17{width:448.224358pt;}
._11{width:452.528230pt;}
._13{width:460.179558pt;}
._30{width:468.321204pt;}
._15{width:484.472525pt;}
._14{width:490.976154pt;}
._1a{width:529.199454pt;}
._7{width:747.678208pt;}
._18{width:828.588271pt;}
.fsa{font-size:31.880533pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs7{font-size:51.008533pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y40{bottom:86.106667pt;}
.y4{bottom:86.333337pt;}
.y100{bottom:88.250667pt;}
.y70{bottom:89.857333pt;}
.y6b{bottom:91.208000pt;}
.y9e{bottom:96.145333pt;}
.y7b{bottom:98.726667pt;}
.yb2{bottom:102.046667pt;}
.y3f{bottom:102.476000pt;}
.yff{bottom:104.190667pt;}
.y6a{bottom:107.148000pt;}
.y7a{bottom:111.345333pt;}
.y9d{bottom:112.086667pt;}
.y6f{bottom:114.000000pt;}
.y3e{bottom:115.376000pt;}
.yb1{bottom:117.986667pt;}
.yb7{bottom:119.308000pt;}
.yfe{bottom:120.130667pt;}
.y69{bottom:123.088000pt;}
.y21{bottom:123.790666pt;}
.y79{bottom:123.965333pt;}
.y9c{bottom:128.026667pt;}
.y6e{bottom:129.940000pt;}
.yf6{bottom:133.926667pt;}
.yb0{bottom:133.928000pt;}
.yb6{bottom:135.249333pt;}
.yfd{bottom:136.070667pt;}
.y78{bottom:136.584000pt;}
.y3d{bottom:136.810667pt;}
.y68{bottom:139.028000pt;}
.yd4{bottom:141.522667pt;}
.y9b{bottom:143.966667pt;}
.y6d{bottom:145.880000pt;}
.y77{bottom:149.204000pt;}
.yaf{bottom:149.868000pt;}
.yb5{bottom:151.189333pt;}
.yfc{bottom:152.010667pt;}
.y3c{bottom:152.752000pt;}
.y67{bottom:154.968000pt;}
.yd3{bottom:157.462667pt;}
.y9a{bottom:159.906667pt;}
.y76{bottom:161.822667pt;}
.yae{bottom:165.808000pt;}
.yb4{bottom:167.129333pt;}
.yfb{bottom:167.952000pt;}
.y3b{bottom:168.692000pt;}
.y6c{bottom:170.474667pt;}
.y66{bottom:170.909333pt;}
.yd2{bottom:173.404000pt;}
.y18{bottom:175.052000pt;}
.y99{bottom:175.846667pt;}
.y75{bottom:178.192000pt;}
.yad{bottom:181.748000pt;}
.yb3{bottom:183.069333pt;}
.yfa{bottom:183.892000pt;}
.y3a{bottom:184.632000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y65{bottom:186.849333pt;}
.y74{bottom:187.342667pt;}
.yd1{bottom:189.344000pt;}
.yf5{bottom:189.518667pt;}
.y98{bottom:191.786667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yac{bottom:197.688000pt;}
.yf9{bottom:199.832000pt;}
.y73{bottom:199.961333pt;}
.y64{bottom:202.789333pt;}
.yd0{bottom:205.284000pt;}
.y97{bottom:207.728000pt;}
.y39{bottom:208.557333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y72{bottom:212.581333pt;}
.yab{bottom:213.628000pt;}
.yf8{bottom:215.772000pt;}
.y63{bottom:218.729333pt;}
.ycf{bottom:221.224000pt;}
.y96{bottom:223.668000pt;}
.y71{bottom:228.950667pt;}
.yaa{bottom:229.569333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yf4{bottom:232.409333pt;}
.y62{bottom:234.669333pt;}
.yf7{bottom:235.492000pt;}
.yce{bottom:237.164000pt;}
.y95{bottom:239.608000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yf3{bottom:248.349333pt;}
.y61{bottom:250.609333pt;}
.ycd{bottom:253.104000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ya9{bottom:253.974667pt;}
.y94{bottom:255.548000pt;}
.yf2{bottom:264.289333pt;}
.y60{bottom:266.550667pt;}
.y38{bottom:266.970667pt;}
.ycc{bottom:269.045333pt;}
.ya8{bottom:269.914667pt;}
.y93{bottom:271.488000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yf1{bottom:280.230667pt;}
.y5f{bottom:282.490667pt;}
.y37{bottom:282.910667pt;}
.ycb{bottom:284.985333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y92{bottom:287.428000pt;}
.yf0{bottom:296.170667pt;}
.y5e{bottom:298.430667pt;}
.yca{bottom:300.925333pt;}
.y36{bottom:302.630667pt;}
.y91{bottom:303.369333pt;}
.yf{bottom:309.452000pt;}
.yef{bottom:312.110667pt;}
.y5d{bottom:314.370667pt;}
.yc9{bottom:316.865333pt;}
.ya7{bottom:317.221333pt;}
.y90{bottom:319.309333pt;}
.yee{bottom:328.050667pt;}
.y5c{bottom:330.310667pt;}
.yc8{bottom:332.805333pt;}
.ya6{bottom:333.162667pt;}
.y35{bottom:334.510667pt;}
.y8f{bottom:335.249333pt;}
.ye{bottom:343.809333pt;}
.yed{bottom:343.990667pt;}
.y5b{bottom:346.250667pt;}
.yc7{bottom:348.746667pt;}
.ya5{bottom:349.102667pt;}
.y34{bottom:350.452000pt;}
.y8e{bottom:351.189333pt;}
.yec{bottom:359.930667pt;}
.y5a{bottom:362.192000pt;}
.yd{bottom:362.706666pt;}
.yc6{bottom:364.686667pt;}
.ya4{bottom:365.042667pt;}
.y33{bottom:366.392000pt;}
.y8d{bottom:367.129333pt;}
.yeb{bottom:375.872000pt;}
.y59{bottom:378.132000pt;}
.yc5{bottom:380.626667pt;}
.ya3{bottom:380.982667pt;}
.y32{bottom:382.332000pt;}
.y8c{bottom:383.070667pt;}
.yea{bottom:391.812000pt;}
.y58{bottom:394.072000pt;}
.ya2{bottom:396.922667pt;}
.y31{bottom:398.272000pt;}
.y8b{bottom:399.010667pt;}
.ye9{bottom:407.752000pt;}
.y57{bottom:410.012000pt;}
.ya1{bottom:412.862667pt;}
.y30{bottom:414.212000pt;}
.y8a{bottom:414.950667pt;}
.yc4{bottom:420.477333pt;}
.ye8{bottom:423.692000pt;}
.y56{bottom:425.952000pt;}
.y2f{bottom:430.152000pt;}
.y89{bottom:430.890667pt;}
.ye7{bottom:439.632000pt;}
.y55{bottom:441.893333pt;}
.ya0{bottom:444.744000pt;}
.y2e{bottom:446.093333pt;}
.y88{bottom:446.830667pt;}
.yc{bottom:446.990669pt;}
.ye6{bottom:455.573333pt;}
.y54{bottom:457.833333pt;}
.y2d{bottom:462.033333pt;}
.y87{bottom:462.770667pt;}
.yb{bottom:462.990669pt;}
.y9f{bottom:470.197333pt;}
.ye5{bottom:471.513333pt;}
.y53{bottom:473.773333pt;}
.y2c{bottom:477.973333pt;}
.yc3{bottom:478.712000pt;}
.ya{bottom:478.990666pt;}
.ye4{bottom:487.453333pt;}
.y52{bottom:489.713333pt;}
.y2b{bottom:493.913333pt;}
.y9{bottom:494.990666pt;}
.y86{bottom:502.621333pt;}
.ye3{bottom:503.393333pt;}
.y51{bottom:505.653333pt;}
.y2a{bottom:509.853333pt;}
.yc2{bottom:518.561333pt;}
.ye2{bottom:519.333333pt;}
.y85{bottom:520.828000pt;}
.y50{bottom:521.593333pt;}
.y29{bottom:525.794667pt;}
.ye1{bottom:535.273333pt;}
.y84{bottom:535.970667pt;}
.yc1{bottom:536.768000pt;}
.y4f{bottom:537.534667pt;}
.y28{bottom:541.734667pt;}
.y83{bottom:550.582667pt;}
.ye0{bottom:551.214667pt;}
.yc0{bottom:551.910667pt;}
.y4e{bottom:553.474667pt;}
.y27{bottom:561.453333pt;}
.y82{bottom:565.194667pt;}
.ybf{bottom:566.522667pt;}
.ydf{bottom:567.154667pt;}
.y4d{bottom:569.414667pt;}
.y8{bottom:573.786667pt;}
.y81{bottom:579.806667pt;}
.ybe{bottom:581.134667pt;}
.yde{bottom:583.094667pt;}
.y4c{bottom:585.354667pt;}
.y7{bottom:592.685334pt;}
.y80{bottom:594.418667pt;}
.ybd{bottom:595.746667pt;}
.y4b{bottom:601.294667pt;}
.y26{bottom:605.918667pt;}
.y7f{bottom:609.030667pt;}
.ybc{bottom:610.358667pt;}
.y4a{bottom:617.234667pt;}
.ydd{bottom:620.845333pt;}
.y7e{bottom:623.642667pt;}
.ybb{bottom:624.970667pt;}
.y49{bottom:633.176000pt;}
.y7d{bottom:638.785333pt;}
.ydc{bottom:639.050667pt;}
.y25{bottom:643.414667pt;}
.yba{bottom:645.493333pt;}
.y6{bottom:645.598667pt;}
.y48{bottom:649.116000pt;}
.ydb{bottom:654.194667pt;}
.yb9{bottom:654.725333pt;}
.y7c{bottom:657.085333pt;}
.y24{bottom:662.012000pt;}
.y47{bottom:665.056000pt;}
.yda{bottom:668.806667pt;}
.y3{bottom:668.977329pt;}
.yb8{bottom:673.026667pt;}
.y46{bottom:680.996000pt;}
.yd9{bottom:683.418667pt;}
.y45{bottom:696.936000pt;}
.yd8{bottom:698.030667pt;}
.yd7{bottom:712.641333pt;}
.y44{bottom:712.876000pt;}
.yd6{bottom:727.785333pt;}
.y43{bottom:728.817333pt;}
.yd5{bottom:742.397333pt;}
.y42{bottom:744.757333pt;}
.y41{bottom:760.697333pt;}
.y2{bottom:781.661334pt;}
.y23{bottom:789.605333pt;}
.y22{bottom:804.217333pt;}
.y1{bottom:859.312000pt;}
.h11{height:28.373675pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h15{height:34.096230pt;}
.h12{height:37.831408pt;}
.hf{height:37.884447pt;}
.h7{height:40.853333pt;}
.hc{height:41.747558pt;}
.h16{height:42.560512pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hd{height:45.461641pt;}
.h14{height:46.385866pt;}
.h10{height:47.289141pt;}
.h19{height:47.790475pt;}
.h2{height:49.024000pt;}
.h17{height:50.008892pt;}
.h13{height:52.382304pt;}
.h18{height:52.387637pt;}
.he{height:60.972741pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.hb{height:865.333333pt;}
.ha{height:865.512000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:612.000000pt;}
.w3{width:612.284000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:75.590667pt;}
.xe{left:82.856000pt;}
.xd{left:83.826667pt;}
.x1{left:90.706667pt;}
.x11{left:93.006667pt;}
.x2{left:94.486667pt;}
.x10{left:95.457333pt;}
.xc{left:127.097333pt;}
.x14{left:149.606667pt;}
.x7{left:165.644000pt;}
.x4{left:180.874667pt;}
.x9{left:195.192000pt;}
.x8{left:213.457333pt;}
.x13{left:218.765333pt;}
.x12{left:251.132000pt;}
.xa{left:264.854667pt;}
.xf{left:292.005333pt;}
.xb{left:349.732000pt;}
.x3{left:404.408000pt;}
.x6{left:530.098667pt;}
}




    .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; }
  