
    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_918bfa46ff4a134965fed389.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_58ec4e5de9668ab167a0faab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_47ab9a6a05c5eb979e8f5b9a.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_07d8d0d3c98054eae4bba613.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_d05ee2ad322d6c748b65f409.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.770000px;}
.v1{vertical-align:26.730000px;}
.ls4{letter-spacing:-1.458000px;}
.ls16{letter-spacing:-1.104000px;}
.ls9{letter-spacing:-1.035000px;}
.ls14{letter-spacing:-0.966000px;}
.lsc{letter-spacing:-0.897000px;}
.ls10{letter-spacing:-0.828000px;}
.lsd{letter-spacing:-0.759000px;}
.lsa{letter-spacing:-0.690000px;}
.ls12{letter-spacing:-0.621000px;}
.ls11{letter-spacing:-0.552000px;}
.lsb{letter-spacing:-0.483000px;}
.lse{letter-spacing:-0.448500px;}
.ls18{letter-spacing:-0.414000px;}
.ls24{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.345000px;}
.ls5{letter-spacing:-0.315000px;}
.ls15{letter-spacing:-0.276000px;}
.ls23{letter-spacing:-0.252000px;}
.ls1a{letter-spacing:-0.207000px;}
.ls1f{letter-spacing:-0.189000px;}
.ls17{letter-spacing:-0.138000px;}
.ls20{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.069000px;}
.ls7{letter-spacing:-0.063000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.063000px;}
.ls1d{letter-spacing:0.069000px;}
.ls2{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.138000px;}
.ls6{letter-spacing:0.189000px;}
.ls1c{letter-spacing:0.276000px;}
.ls8{letter-spacing:0.315000px;}
.ls19{letter-spacing:0.345000px;}
.ls22{letter-spacing:0.346500px;}
.ls1{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.441000px;}
.ls1e{letter-spacing:2.205000px;}
.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;}
}
.ws1{word-spacing:-18.792000px;}
.ws1e{word-spacing:-17.250000px;}
.ws2{word-spacing:-15.750000px;}
.ws4{word-spacing:-15.687000px;}
.ws3{word-spacing:-15.435000px;}
.ws0{word-spacing:-12.750000px;}
.ws54{word-spacing:-11.212500px;}
.ws1f{word-spacing:-10.764000px;}
.ws9a{word-spacing:-2.205000px;}
.ws36{word-spacing:-0.621000px;}
.ws29{word-spacing:-0.345000px;}
.ws68{word-spacing:-0.069000px;}
.ws7{word-spacing:0.000000px;}
.ws49{word-spacing:0.069000px;}
.wsa0{word-spacing:0.126000px;}
.ws63{word-spacing:0.138000px;}
.ws10{word-spacing:0.189000px;}
.ws74{word-spacing:0.276000px;}
.ws48{word-spacing:0.345000px;}
.wsb5{word-spacing:0.378000px;}
.ws30{word-spacing:0.414000px;}
.ws52{word-spacing:0.483000px;}
.ws27{word-spacing:0.552000px;}
.wsb2{word-spacing:0.567000px;}
.ws6a{word-spacing:0.621000px;}
.wsad{word-spacing:0.630000px;}
.ws84{word-spacing:0.684000px;}
.ws2b{word-spacing:0.690000px;}
.ws16{word-spacing:0.756000px;}
.ws25{word-spacing:0.759000px;}
.ws43{word-spacing:0.828000px;}
.ws37{word-spacing:0.897000px;}
.ws83{word-spacing:1.083000px;}
.ws5a{word-spacing:1.104000px;}
.ws81{word-spacing:1.173000px;}
.ws9d{word-spacing:1.260000px;}
.ws6d{word-spacing:1.311000px;}
.ws8e{word-spacing:1.449000px;}
.ws23{word-spacing:1.587000px;}
.ws38{word-spacing:1.725000px;}
.ws99{word-spacing:1.794000px;}
.ws42{word-spacing:1.863000px;}
.wsb8{word-spacing:1.890000px;}
.ws50{word-spacing:1.932000px;}
.ws7f{word-spacing:2.001000px;}
.ws9b{word-spacing:2.016000px;}
.ws22{word-spacing:2.070000px;}
.wsa{word-spacing:2.079000px;}
.ws72{word-spacing:2.139000px;}
.wsa3{word-spacing:2.205000px;}
.ws98{word-spacing:2.208000px;}
.ws34{word-spacing:2.346000px;}
.wsba{word-spacing:2.394000px;}
.ws89{word-spacing:2.415000px;}
.ws79{word-spacing:2.484000px;}
.ws93{word-spacing:2.508000px;}
.wsa7{word-spacing:2.520000px;}
.ws5{word-spacing:2.550000px;}
.ws7d{word-spacing:2.553000px;}
.ws53{word-spacing:2.688000px;}
.ws78{word-spacing:2.691000px;}
.wsac{word-spacing:2.709000px;}
.ws5d{word-spacing:2.760000px;}
.wsaa{word-spacing:2.772000px;}
.ws7e{word-spacing:2.829000px;}
.ws1c{word-spacing:2.850000px;}
.ws39{word-spacing:2.898000px;}
.ws86{word-spacing:2.907000px;}
.ws14{word-spacing:2.961000px;}
.ws4f{word-spacing:2.967000px;}
.ws17{word-spacing:3.024000px;}
.ws1d{word-spacing:3.078000px;}
.ws69{word-spacing:3.105000px;}
.ws85{word-spacing:3.135000px;}
.ws8{word-spacing:3.150000px;}
.ws47{word-spacing:3.174000px;}
.ws8a{word-spacing:3.243000px;}
.ws92{word-spacing:3.249000px;}
.wsd{word-spacing:3.276000px;}
.ws20{word-spacing:3.300000px;}
.ws75{word-spacing:3.312000px;}
.ws5e{word-spacing:3.381000px;}
.ws2c{word-spacing:3.450000px;}
.ws9e{word-spacing:3.465000px;}
.ws5f{word-spacing:3.519000px;}
.ws11{word-spacing:3.528000px;}
.ws12{word-spacing:3.654000px;}
.ws96{word-spacing:3.726000px;}
.ws18{word-spacing:3.780000px;}
.ws44{word-spacing:3.795000px;}
.ws6f{word-spacing:3.864000px;}
.wsb{word-spacing:3.906000px;}
.ws4c{word-spacing:3.933000px;}
.wsb9{word-spacing:3.969000px;}
.ws6c{word-spacing:4.002000px;}
.wsb1{word-spacing:4.032000px;}
.ws6{word-spacing:4.050000px;}
.ws8f{word-spacing:4.071000px;}
.wsa4{word-spacing:4.095000px;}
.ws5b{word-spacing:4.140000px;}
.ws64{word-spacing:4.209000px;}
.ws2e{word-spacing:4.278000px;}
.wsa1{word-spacing:4.284000px;}
.ws15{word-spacing:4.347000px;}
.ws19{word-spacing:4.410000px;}
.ws3d{word-spacing:4.416000px;}
.ws46{word-spacing:4.485000px;}
.ws94{word-spacing:4.503000px;}
.ws1b{word-spacing:4.560000px;}
.wsae{word-spacing:4.599000px;}
.ws2d{word-spacing:4.623000px;}
.ws3b{word-spacing:4.692000px;}
.wsab{word-spacing:4.725000px;}
.ws1a{word-spacing:4.731000px;}
.ws28{word-spacing:4.761000px;}
.ws62{word-spacing:4.830000px;}
.wsbb{word-spacing:4.851000px;}
.ws33{word-spacing:4.899000px;}
.ws5c{word-spacing:4.968000px;}
.ws60{word-spacing:5.037000px;}
.ws3a{word-spacing:5.106000px;}
.ws45{word-spacing:5.175000px;}
.wsa2{word-spacing:5.229000px;}
.ws71{word-spacing:5.244000px;}
.ws2f{word-spacing:5.313000px;}
.ws95{word-spacing:5.415000px;}
.wsa9{word-spacing:5.418000px;}
.ws21{word-spacing:5.451000px;}
.wsa5{word-spacing:5.481000px;}
.ws7b{word-spacing:5.520000px;}
.wsf{word-spacing:5.544000px;}
.ws97{word-spacing:5.727000px;}
.ws9f{word-spacing:5.796000px;}
.ws91{word-spacing:5.865000px;}
.wsb4{word-spacing:5.985000px;}
.ws7c{word-spacing:6.003000px;}
.ws32{word-spacing:6.072000px;}
.ws76{word-spacing:6.141000px;}
.wsaf{word-spacing:6.174000px;}
.ws7a{word-spacing:6.210000px;}
.wsb7{word-spacing:6.237000px;}
.ws9{word-spacing:6.300000px;}
.ws88{word-spacing:6.486000px;}
.ws77{word-spacing:6.555000px;}
.ws51{word-spacing:6.624000px;}
.wsb3{word-spacing:6.678000px;}
.ws4e{word-spacing:6.693000px;}
.ws59{word-spacing:6.831000px;}
.ws90{word-spacing:6.969000px;}
.ws73{word-spacing:7.038000px;}
.ws8b{word-spacing:7.176000px;}
.ws40{word-spacing:7.245000px;}
.ws61{word-spacing:7.452000px;}
.ws9c{word-spacing:7.497000px;}
.ws8c{word-spacing:7.521000px;}
.ws87{word-spacing:7.590000px;}
.ws82{word-spacing:7.659000px;}
.ws70{word-spacing:7.797000px;}
.wsc{word-spacing:7.875000px;}
.ws3f{word-spacing:8.004000px;}
.wsa8{word-spacing:8.064000px;}
.ws65{word-spacing:8.211000px;}
.ws24{word-spacing:8.280000px;}
.wsb0{word-spacing:8.316000px;}
.ws6b{word-spacing:8.349000px;}
.ws4a{word-spacing:8.487000px;}
.ws4d{word-spacing:8.556000px;}
.ws26{word-spacing:8.625000px;}
.ws13{word-spacing:8.694000px;}
.ws2a{word-spacing:8.763000px;}
.ws8d{word-spacing:8.832000px;}
.wsb6{word-spacing:8.946000px;}
.ws4b{word-spacing:8.970000px;}
.ws3c{word-spacing:9.039000px;}
.wse{word-spacing:9.198000px;}
.ws3e{word-spacing:9.315000px;}
.wsa6{word-spacing:9.324000px;}
.ws80{word-spacing:9.729000px;}
.ws35{word-spacing:10.074000px;}
.ws6e{word-spacing:10.764000px;}
.ws41{word-spacing:11.661000px;}
.ws31{word-spacing:12.903000px;}
.ws55{word-spacing:260.692800px;}
.ws66{word-spacing:282.065400px;}
.ws67{word-spacing:285.798600px;}
.ws57{word-spacing:285.801600px;}
.ws58{word-spacing:292.071600px;}
.ws56{word-spacing:302.739600px;}
._8{margin-left:-20.493000px;}
._6{margin-left:-19.265100px;}
._9{margin-left:-17.040600px;}
._7{margin-left:-15.111000px;}
._1b{margin-left:-8.791500px;}
._1{margin-left:-7.435800px;}
._19{margin-left:-6.248400px;}
._2{margin-left:-5.142000px;}
._5{margin-left:-3.420900px;}
._0{margin-left:-1.892100px;}
._4{width:1.417500px;}
._3{width:2.575200px;}
._1a{width:4.319400px;}
._18{width:5.611800px;}
._d{width:68.052000px;}
._c{width:77.619600px;}
._b{width:86.874000px;}
._14{width:110.801400px;}
._13{width:120.370200px;}
._12{width:129.620400px;}
._11{width:316.989600px;}
._10{width:325.494000px;}
._e{width:331.629600px;}
._f{width:335.811600px;}
._15{width:356.967600px;}
._17{width:417.316200px;}
._16{width:452.973000px;}
._a{width:820.222500px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:44.850000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:52.650000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:83.016450px;}
.yd6{bottom:87.900000px;}
.yeb{bottom:94.393650px;}
.y2a{bottom:94.393800px;}
.y82{bottom:94.762500px;}
.ye8{bottom:103.266450px;}
.y121{bottom:107.496600px;}
.yd5{bottom:108.150000px;}
.y29{bottom:110.143800px;}
.y57{bottom:110.791950px;}
.yea{bottom:111.401550px;}
.y81{bottom:115.012500px;}
.y154{bottom:117.311850px;}
.ye7{bottom:123.516450px;}
.y120{bottom:125.496600px;}
.y28{bottom:125.893950px;}
.yd4{bottom:128.400000px;}
.y56{bottom:131.041950px;}
.y80{bottom:135.262500px;}
.y153{bottom:135.311850px;}
.yac{bottom:139.495500px;}
.y27{bottom:141.643950px;}
.y11f{bottom:143.496600px;}
.ye6{bottom:143.766450px;}
.yd3{bottom:148.650000px;}
.y55{bottom:151.291950px;}
.y152{bottom:153.311850px;}
.y7f{bottom:155.512500px;}
.y84{bottom:157.003950px;}
.y26{bottom:157.393950px;}
.y11e{bottom:161.496600px;}
.ye5{bottom:164.016450px;}
.yab{bottom:164.376000px;}
.yd2{bottom:168.900000px;}
.y151{bottom:171.311850px;}
.y54{bottom:171.541950px;}
.y7e{bottom:175.762500px;}
.y11d{bottom:179.496600px;}
.ye4{bottom:184.266450px;}
.yd1{bottom:189.150000px;}
.yaa{bottom:189.256350px;}
.y150{bottom:189.311850px;}
.yf7{bottom:191.791950px;}
.y7d{bottom:196.012500px;}
.y11c{bottom:197.496600px;}
.y53{bottom:200.295750px;}
.ye3{bottom:204.516450px;}
.y14f{bottom:207.311850px;}
.yd0{bottom:209.400000px;}
.yf6{bottom:212.041950px;}
.ya9{bottom:214.136700px;}
.y11b{bottom:215.496600px;}
.y7c{bottom:216.262500px;}
.y52{bottom:220.545750px;}
.ye2{bottom:224.766450px;}
.y14e{bottom:225.311850px;}
.ycf{bottom:229.650000px;}
.yf5{bottom:232.291950px;}
.y7b{bottom:236.512500px;}
.ya8{bottom:239.017050px;}
.y51{bottom:240.795750px;}
.y14d{bottom:243.311850px;}
.ye1{bottom:245.016450px;}
.y25{bottom:245.699100px;}
.y11a{bottom:248.378550px;}
.y83{bottom:249.642900px;}
.yce{bottom:249.900000px;}
.yf4{bottom:252.541950px;}
.y7a{bottom:256.762500px;}
.y50{bottom:261.045750px;}
.y14c{bottom:261.311850px;}
.ya7{bottom:263.667750px;}
.y24{bottom:263.699100px;}
.ye0{bottom:265.266450px;}
.ycd{bottom:270.150000px;}
.yf3{bottom:272.791800px;}
.y79{bottom:277.012500px;}
.y14b{bottom:279.311850px;}
.y4f{bottom:281.295750px;}
.y23{bottom:281.699100px;}
.ydf{bottom:285.516450px;}
.ya6{bottom:291.258000px;}
.yf2{bottom:293.041800px;}
.y78{bottom:297.262500px;}
.y14a{bottom:297.311850px;}
.y119{bottom:298.392300px;}
.ycc{bottom:298.903950px;}
.y22{bottom:299.699100px;}
.y4e{bottom:301.545750px;}
.yde{bottom:305.766450px;}
.ya5{bottom:307.008000px;}
.yf1{bottom:313.291800px;}
.y149{bottom:315.311850px;}
.y118{bottom:316.392300px;}
.y77{bottom:317.512500px;}
.y21{bottom:317.699100px;}
.ycb{bottom:319.153950px;}
.y4d{bottom:321.795750px;}
.ydd{bottom:326.016450px;}
.ya4{bottom:327.010050px;}
.y148{bottom:333.311850px;}
.yf0{bottom:333.541800px;}
.y117{bottom:334.392300px;}
.y20{bottom:335.699100px;}
.y76{bottom:337.762500px;}
.yca{bottom:339.403950px;}
.y4c{bottom:342.045750px;}
.ydc{bottom:346.266450px;}
.y147{bottom:351.311850px;}
.y116{bottom:352.392300px;}
.y1f{bottom:353.699100px;}
.yef{bottom:353.791800px;}
.y75{bottom:358.012500px;}
.yc9{bottom:359.653950px;}
.ya3{bottom:359.767800px;}
.y4b{bottom:362.295750px;}
.ydb{bottom:366.516450px;}
.y146{bottom:369.311850px;}
.y115{bottom:370.392300px;}
.y1e{bottom:371.699100px;}
.yee{bottom:374.041800px;}
.y74{bottom:378.262500px;}
.yc8{bottom:379.903950px;}
.ya2{bottom:380.017800px;}
.y4a{bottom:382.545750px;}
.yda{bottom:386.766450px;}
.y145{bottom:387.311850px;}
.y114{bottom:388.392300px;}
.y1d{bottom:389.699100px;}
.yc7{bottom:400.153950px;}
.ya1{bottom:400.267800px;}
.y49{bottom:402.795750px;}
.y144{bottom:405.311850px;}
.y113{bottom:406.392300px;}
.y73{bottom:407.016450px;}
.y1c{bottom:407.699100px;}
.yc6{bottom:420.403950px;}
.ya0{bottom:420.517800px;}
.y48{bottom:423.045750px;}
.y143{bottom:423.311850px;}
.y112{bottom:424.392300px;}
.y1b{bottom:425.699100px;}
.y72{bottom:427.266450px;}
.yc5{bottom:440.653950px;}
.y9f{bottom:440.767800px;}
.y142{bottom:441.311850px;}
.y47{bottom:443.295750px;}
.y71{bottom:447.516450px;}
.y111{bottom:457.274250px;}
.y141{bottom:459.311850px;}
.yc4{bottom:460.903950px;}
.y9e{bottom:461.017800px;}
.y1a{bottom:461.699100px;}
.y46{bottom:463.545750px;}
.y70{bottom:467.766450px;}
.y140{bottom:477.311850px;}
.y19{bottom:479.699100px;}
.yc3{bottom:481.153950px;}
.y9d{bottom:481.267800px;}
.y45{bottom:483.795750px;}
.y6f{bottom:488.016450px;}
.y13f{bottom:495.311850px;}
.y18{bottom:497.699100px;}
.yc2{bottom:501.403950px;}
.y9c{bottom:501.517800px;}
.y44{bottom:504.045750px;}
.y6e{bottom:508.266450px;}
.y13e{bottom:513.311850px;}
.y17{bottom:515.699100px;}
.y110{bottom:515.791950px;}
.yc1{bottom:521.653950px;}
.y9b{bottom:521.767800px;}
.y43{bottom:524.295750px;}
.y6d{bottom:528.516450px;}
.y13d{bottom:531.311850px;}
.y16{bottom:533.699100px;}
.y10f{bottom:536.041950px;}
.y9a{bottom:542.017800px;}
.y42{bottom:544.545750px;}
.y6c{bottom:548.766450px;}
.y13c{bottom:549.311850px;}
.y15{bottom:551.699100px;}
.y10e{bottom:556.291950px;}
.y99{bottom:562.267800px;}
.y41{bottom:564.795750px;}
.y13b{bottom:567.311850px;}
.y6b{bottom:569.016450px;}
.yc0{bottom:569.103300px;}
.y14{bottom:569.699100px;}
.y10d{bottom:576.541950px;}
.y98{bottom:582.517800px;}
.y40{bottom:585.045750px;}
.y13a{bottom:585.311850px;}
.y13{bottom:587.699100px;}
.y6a{bottom:589.266450px;}
.ybf{bottom:593.983650px;}
.y10c{bottom:596.791950px;}
.yd9{bottom:597.770400px;}
.y97{bottom:602.767800px;}
.y139{bottom:603.311850px;}
.y3f{bottom:605.295750px;}
.y12{bottom:605.699100px;}
.y69{bottom:609.516450px;}
.y10b{bottom:617.041950px;}
.yd8{bottom:618.020400px;}
.ybe{bottom:618.864000px;}
.y138{bottom:621.311850px;}
.y96{bottom:623.017800px;}
.y11{bottom:623.699100px;}
.y3e{bottom:625.545750px;}
.y10a{bottom:637.291950px;}
.y68{bottom:638.270400px;}
.y137{bottom:639.311850px;}
.y10{bottom:641.699100px;}
.y95{bottom:643.267800px;}
.ybd{bottom:643.744500px;}
.yed{bottom:645.795750px;}
.y3d{bottom:654.299700px;}
.y136{bottom:657.311850px;}
.y67{bottom:658.520400px;}
.y94{bottom:663.517800px;}
.yec{bottom:666.045750px;}
.y109{bottom:666.045900px;}
.ybc{bottom:668.624850px;}
.y3c{bottom:674.549700px;}
.y135{bottom:675.311850px;}
.yf{bottom:677.699100px;}
.y66{bottom:678.770400px;}
.y93{bottom:683.767800px;}
.y108{bottom:686.295900px;}
.ybb{bottom:693.275550px;}
.y134{bottom:693.311850px;}
.y3b{bottom:694.799700px;}
.ye{bottom:695.699100px;}
.y65{bottom:699.020400px;}
.y107{bottom:706.545900px;}
.y133{bottom:711.311850px;}
.y92{bottom:712.521750px;}
.yd{bottom:713.699100px;}
.y3a{bottom:715.049700px;}
.y64{bottom:719.270400px;}
.yba{bottom:720.865800px;}
.y106{bottom:726.795900px;}
.y132{bottom:729.311850px;}
.yc{bottom:731.699100px;}
.y91{bottom:732.771750px;}
.y39{bottom:735.299700px;}
.yb9{bottom:736.615800px;}
.y63{bottom:739.520400px;}
.y105{bottom:747.045900px;}
.y131{bottom:747.311850px;}
.yb{bottom:749.699100px;}
.yb8{bottom:752.365800px;}
.y90{bottom:753.021750px;}
.y38{bottom:755.549700px;}
.y62{bottom:759.770400px;}
.y130{bottom:765.311850px;}
.y104{bottom:767.295900px;}
.ya{bottom:767.699100px;}
.yb7{bottom:772.367700px;}
.y8f{bottom:773.271750px;}
.y37{bottom:775.799700px;}
.y61{bottom:780.020250px;}
.y12f{bottom:783.311850px;}
.y9{bottom:785.699100px;}
.y103{bottom:787.545900px;}
.y8e{bottom:793.521750px;}
.y36{bottom:796.049700px;}
.y60{bottom:800.270250px;}
.y12e{bottom:801.311850px;}
.y8{bottom:803.699100px;}
.y102{bottom:807.795900px;}
.y8d{bottom:813.771750px;}
.yb6{bottom:815.317050px;}
.y35{bottom:816.299700px;}
.y12d{bottom:819.311850px;}
.y5f{bottom:820.520250px;}
.y7{bottom:821.699100px;}
.y101{bottom:828.045900px;}
.y8c{bottom:834.021750px;}
.y34{bottom:836.549700px;}
.y12c{bottom:837.311850px;}
.yb5{bottom:840.197400px;}
.y5e{bottom:840.770250px;}
.y100{bottom:848.295900px;}
.y8b{bottom:854.271750px;}
.y12b{bottom:855.311850px;}
.y33{bottom:856.799700px;}
.y5d{bottom:861.020250px;}
.yb4{bottom:865.077750px;}
.y12a{bottom:873.311850px;}
.y8a{bottom:874.521750px;}
.y6{bottom:875.698650px;}
.y32{bottom:877.049700px;}
.yff{bottom:877.049850px;}
.yd7{bottom:879.020250px;}
.y5c{bottom:881.270250px;}
.yb3{bottom:889.958100px;}
.y129{bottom:891.311850px;}
.y89{bottom:894.771750px;}
.y31{bottom:897.299700px;}
.yfe{bottom:897.299850px;}
.y5b{bottom:901.520250px;}
.y128{bottom:909.311850px;}
.y5{bottom:910.630500px;}
.yb2{bottom:914.838450px;}
.y88{bottom:915.021750px;}
.y30{bottom:917.549700px;}
.yfd{bottom:917.549850px;}
.y127{bottom:927.311850px;}
.y87{bottom:935.271750px;}
.y2f{bottom:937.799700px;}
.yfc{bottom:937.799850px;}
.yb1{bottom:939.489300px;}
.y5a{bottom:939.770250px;}
.y126{bottom:945.311850px;}
.y4{bottom:948.562650px;}
.y86{bottom:955.521750px;}
.y2e{bottom:958.049700px;}
.yfb{bottom:958.049850px;}
.y125{bottom:963.311850px;}
.yb0{bottom:967.079550px;}
.y85{bottom:975.771750px;}
.y2d{bottom:978.299700px;}
.yfa{bottom:978.299850px;}
.y124{bottom:981.311850px;}
.yaf{bottom:982.829550px;}
.y59{bottom:996.021750px;}
.yae{bottom:998.579550px;}
.y123{bottom:999.311850px;}
.y58{bottom:1016.271750px;}
.y2c{bottom:1016.549700px;}
.yf9{bottom:1016.549850px;}
.y122{bottom:1017.311850px;}
.yad{bottom:1018.581450px;}
.y3{bottom:1031.437200px;}
.y2{bottom:1046.474700px;}
.y1{bottom:1061.512200px;}
.y2b{bottom:1070.326650px;}
.yf8{bottom:1070.326800px;}
.hc{height:34.359375px;}
.h2{height:35.411133px;}
.h3{height:35.436035px;}
.hd{height:38.630859px;}
.h8{height:39.604980px;}
.h7{height:43.773926px;}
.h6{height:45.558105px;}
.h9{height:45.858398px;}
.ha{height:46.763672px;}
.h5{height:47.942871px;}
.hb{height:53.932866px;}
.h4{height:63.312495px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x11{left:118.238700px;}
.x5{left:127.559100px;}
.x13{left:131.928150px;}
.xd{left:135.465150px;}
.xe{left:142.350750px;}
.x8{left:144.566850px;}
.x2{left:161.802300px;}
.x10{left:167.735700px;}
.x16{left:184.743450px;}
.x17{left:253.764300px;}
.x9{left:265.629600px;}
.x1e{left:270.776400px;}
.xf{left:308.063850px;}
.x14{left:313.809750px;}
.x15{left:325.070850px;}
.x24{left:345.871350px;}
.x25{left:386.015400px;}
.x4{left:394.201650px;}
.x23{left:396.731250px;}
.x7{left:408.150600px;}
.xc{left:415.487400px;}
.x6{left:425.260650px;}
.x3{left:429.327750px;}
.x12{left:432.495300px;}
.xb{left:583.921350px;}
.x1b{left:600.056250px;}
.x1c{left:615.806250px;}
.x1d{left:631.556250px;}
.x1f{left:639.307350px;}
.x20{left:655.057350px;}
.x18{left:662.064150px;}
.x21{left:670.807350px;}
.x19{left:677.814150px;}
.x22{left:686.557350px;}
.x1a{left:693.564150px;}
.xa{left:707.203200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.240000pt;}
.v1{vertical-align:23.760000pt;}
.ls4{letter-spacing:-1.296000pt;}
.ls16{letter-spacing:-0.981333pt;}
.ls9{letter-spacing:-0.920000pt;}
.ls14{letter-spacing:-0.858667pt;}
.lsc{letter-spacing:-0.797333pt;}
.ls10{letter-spacing:-0.736000pt;}
.lsd{letter-spacing:-0.674667pt;}
.lsa{letter-spacing:-0.613333pt;}
.ls12{letter-spacing:-0.552000pt;}
.ls11{letter-spacing:-0.490667pt;}
.lsb{letter-spacing:-0.429333pt;}
.lse{letter-spacing:-0.398667pt;}
.ls18{letter-spacing:-0.368000pt;}
.ls24{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.306667pt;}
.ls5{letter-spacing:-0.280000pt;}
.ls15{letter-spacing:-0.245333pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls1a{letter-spacing:-0.184000pt;}
.ls1f{letter-spacing:-0.168000pt;}
.ls17{letter-spacing:-0.122667pt;}
.ls20{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.061333pt;}
.ls7{letter-spacing:-0.056000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.056000pt;}
.ls1d{letter-spacing:0.061333pt;}
.ls2{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.122667pt;}
.ls6{letter-spacing:0.168000pt;}
.ls1c{letter-spacing:0.245333pt;}
.ls8{letter-spacing:0.280000pt;}
.ls19{letter-spacing:0.306667pt;}
.ls22{letter-spacing:0.308000pt;}
.ls1{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.392000pt;}
.ls1e{letter-spacing:1.960000pt;}
.ws1{word-spacing:-16.704000pt;}
.ws1e{word-spacing:-15.333333pt;}
.ws2{word-spacing:-14.000000pt;}
.ws4{word-spacing:-13.944000pt;}
.ws3{word-spacing:-13.720000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws54{word-spacing:-9.966667pt;}
.ws1f{word-spacing:-9.568000pt;}
.ws9a{word-spacing:-1.960000pt;}
.ws36{word-spacing:-0.552000pt;}
.ws29{word-spacing:-0.306667pt;}
.ws68{word-spacing:-0.061333pt;}
.ws7{word-spacing:0.000000pt;}
.ws49{word-spacing:0.061333pt;}
.wsa0{word-spacing:0.112000pt;}
.ws63{word-spacing:0.122667pt;}
.ws10{word-spacing:0.168000pt;}
.ws74{word-spacing:0.245333pt;}
.ws48{word-spacing:0.306667pt;}
.wsb5{word-spacing:0.336000pt;}
.ws30{word-spacing:0.368000pt;}
.ws52{word-spacing:0.429333pt;}
.ws27{word-spacing:0.490667pt;}
.wsb2{word-spacing:0.504000pt;}
.ws6a{word-spacing:0.552000pt;}
.wsad{word-spacing:0.560000pt;}
.ws84{word-spacing:0.608000pt;}
.ws2b{word-spacing:0.613333pt;}
.ws16{word-spacing:0.672000pt;}
.ws25{word-spacing:0.674667pt;}
.ws43{word-spacing:0.736000pt;}
.ws37{word-spacing:0.797333pt;}
.ws83{word-spacing:0.962667pt;}
.ws5a{word-spacing:0.981333pt;}
.ws81{word-spacing:1.042667pt;}
.ws9d{word-spacing:1.120000pt;}
.ws6d{word-spacing:1.165333pt;}
.ws8e{word-spacing:1.288000pt;}
.ws23{word-spacing:1.410667pt;}
.ws38{word-spacing:1.533333pt;}
.ws99{word-spacing:1.594667pt;}
.ws42{word-spacing:1.656000pt;}
.wsb8{word-spacing:1.680000pt;}
.ws50{word-spacing:1.717333pt;}
.ws7f{word-spacing:1.778667pt;}
.ws9b{word-spacing:1.792000pt;}
.ws22{word-spacing:1.840000pt;}
.wsa{word-spacing:1.848000pt;}
.ws72{word-spacing:1.901333pt;}
.wsa3{word-spacing:1.960000pt;}
.ws98{word-spacing:1.962667pt;}
.ws34{word-spacing:2.085333pt;}
.wsba{word-spacing:2.128000pt;}
.ws89{word-spacing:2.146667pt;}
.ws79{word-spacing:2.208000pt;}
.ws93{word-spacing:2.229333pt;}
.wsa7{word-spacing:2.240000pt;}
.ws5{word-spacing:2.266667pt;}
.ws7d{word-spacing:2.269333pt;}
.ws53{word-spacing:2.389333pt;}
.ws78{word-spacing:2.392000pt;}
.wsac{word-spacing:2.408000pt;}
.ws5d{word-spacing:2.453333pt;}
.wsaa{word-spacing:2.464000pt;}
.ws7e{word-spacing:2.514667pt;}
.ws1c{word-spacing:2.533333pt;}
.ws39{word-spacing:2.576000pt;}
.ws86{word-spacing:2.584000pt;}
.ws14{word-spacing:2.632000pt;}
.ws4f{word-spacing:2.637333pt;}
.ws17{word-spacing:2.688000pt;}
.ws1d{word-spacing:2.736000pt;}
.ws69{word-spacing:2.760000pt;}
.ws85{word-spacing:2.786667pt;}
.ws8{word-spacing:2.800000pt;}
.ws47{word-spacing:2.821333pt;}
.ws8a{word-spacing:2.882667pt;}
.ws92{word-spacing:2.888000pt;}
.wsd{word-spacing:2.912000pt;}
.ws20{word-spacing:2.933333pt;}
.ws75{word-spacing:2.944000pt;}
.ws5e{word-spacing:3.005333pt;}
.ws2c{word-spacing:3.066667pt;}
.ws9e{word-spacing:3.080000pt;}
.ws5f{word-spacing:3.128000pt;}
.ws11{word-spacing:3.136000pt;}
.ws12{word-spacing:3.248000pt;}
.ws96{word-spacing:3.312000pt;}
.ws18{word-spacing:3.360000pt;}
.ws44{word-spacing:3.373333pt;}
.ws6f{word-spacing:3.434667pt;}
.wsb{word-spacing:3.472000pt;}
.ws4c{word-spacing:3.496000pt;}
.wsb9{word-spacing:3.528000pt;}
.ws6c{word-spacing:3.557333pt;}
.wsb1{word-spacing:3.584000pt;}
.ws6{word-spacing:3.600000pt;}
.ws8f{word-spacing:3.618667pt;}
.wsa4{word-spacing:3.640000pt;}
.ws5b{word-spacing:3.680000pt;}
.ws64{word-spacing:3.741333pt;}
.ws2e{word-spacing:3.802667pt;}
.wsa1{word-spacing:3.808000pt;}
.ws15{word-spacing:3.864000pt;}
.ws19{word-spacing:3.920000pt;}
.ws3d{word-spacing:3.925333pt;}
.ws46{word-spacing:3.986667pt;}
.ws94{word-spacing:4.002667pt;}
.ws1b{word-spacing:4.053333pt;}
.wsae{word-spacing:4.088000pt;}
.ws2d{word-spacing:4.109333pt;}
.ws3b{word-spacing:4.170667pt;}
.wsab{word-spacing:4.200000pt;}
.ws1a{word-spacing:4.205333pt;}
.ws28{word-spacing:4.232000pt;}
.ws62{word-spacing:4.293333pt;}
.wsbb{word-spacing:4.312000pt;}
.ws33{word-spacing:4.354667pt;}
.ws5c{word-spacing:4.416000pt;}
.ws60{word-spacing:4.477333pt;}
.ws3a{word-spacing:4.538667pt;}
.ws45{word-spacing:4.600000pt;}
.wsa2{word-spacing:4.648000pt;}
.ws71{word-spacing:4.661333pt;}
.ws2f{word-spacing:4.722667pt;}
.ws95{word-spacing:4.813333pt;}
.wsa9{word-spacing:4.816000pt;}
.ws21{word-spacing:4.845333pt;}
.wsa5{word-spacing:4.872000pt;}
.ws7b{word-spacing:4.906667pt;}
.wsf{word-spacing:4.928000pt;}
.ws97{word-spacing:5.090667pt;}
.ws9f{word-spacing:5.152000pt;}
.ws91{word-spacing:5.213333pt;}
.wsb4{word-spacing:5.320000pt;}
.ws7c{word-spacing:5.336000pt;}
.ws32{word-spacing:5.397333pt;}
.ws76{word-spacing:5.458667pt;}
.wsaf{word-spacing:5.488000pt;}
.ws7a{word-spacing:5.520000pt;}
.wsb7{word-spacing:5.544000pt;}
.ws9{word-spacing:5.600000pt;}
.ws88{word-spacing:5.765333pt;}
.ws77{word-spacing:5.826667pt;}
.ws51{word-spacing:5.888000pt;}
.wsb3{word-spacing:5.936000pt;}
.ws4e{word-spacing:5.949333pt;}
.ws59{word-spacing:6.072000pt;}
.ws90{word-spacing:6.194667pt;}
.ws73{word-spacing:6.256000pt;}
.ws8b{word-spacing:6.378667pt;}
.ws40{word-spacing:6.440000pt;}
.ws61{word-spacing:6.624000pt;}
.ws9c{word-spacing:6.664000pt;}
.ws8c{word-spacing:6.685333pt;}
.ws87{word-spacing:6.746667pt;}
.ws82{word-spacing:6.808000pt;}
.ws70{word-spacing:6.930667pt;}
.wsc{word-spacing:7.000000pt;}
.ws3f{word-spacing:7.114667pt;}
.wsa8{word-spacing:7.168000pt;}
.ws65{word-spacing:7.298667pt;}
.ws24{word-spacing:7.360000pt;}
.wsb0{word-spacing:7.392000pt;}
.ws6b{word-spacing:7.421333pt;}
.ws4a{word-spacing:7.544000pt;}
.ws4d{word-spacing:7.605333pt;}
.ws26{word-spacing:7.666667pt;}
.ws13{word-spacing:7.728000pt;}
.ws2a{word-spacing:7.789333pt;}
.ws8d{word-spacing:7.850667pt;}
.wsb6{word-spacing:7.952000pt;}
.ws4b{word-spacing:7.973333pt;}
.ws3c{word-spacing:8.034667pt;}
.wse{word-spacing:8.176000pt;}
.ws3e{word-spacing:8.280000pt;}
.wsa6{word-spacing:8.288000pt;}
.ws80{word-spacing:8.648000pt;}
.ws35{word-spacing:8.954667pt;}
.ws6e{word-spacing:9.568000pt;}
.ws41{word-spacing:10.365333pt;}
.ws31{word-spacing:11.469333pt;}
.ws55{word-spacing:231.726933pt;}
.ws66{word-spacing:250.724800pt;}
.ws67{word-spacing:254.043200pt;}
.ws57{word-spacing:254.045867pt;}
.ws58{word-spacing:259.619200pt;}
.ws56{word-spacing:269.101867pt;}
._8{margin-left:-18.216000pt;}
._6{margin-left:-17.124533pt;}
._9{margin-left:-15.147200pt;}
._7{margin-left:-13.432000pt;}
._1b{margin-left:-7.814667pt;}
._1{margin-left:-6.609600pt;}
._19{margin-left:-5.554133pt;}
._2{margin-left:-4.570667pt;}
._5{margin-left:-3.040800pt;}
._0{margin-left:-1.681867pt;}
._4{width:1.260000pt;}
._3{width:2.289067pt;}
._1a{width:3.839467pt;}
._18{width:4.988267pt;}
._d{width:60.490667pt;}
._c{width:68.995200pt;}
._b{width:77.221333pt;}
._14{width:98.490133pt;}
._13{width:106.995733pt;}
._12{width:115.218133pt;}
._11{width:281.768533pt;}
._10{width:289.328000pt;}
._e{width:294.781867pt;}
._f{width:298.499200pt;}
._15{width:317.304533pt;}
._17{width:370.947733pt;}
._16{width:402.642667pt;}
._a{width:729.086667pt;}
.fs7{font-size:39.866667pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:46.800000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:73.792400pt;}
.yd6{bottom:78.133333pt;}
.yeb{bottom:83.905467pt;}
.y2a{bottom:83.905600pt;}
.y82{bottom:84.233333pt;}
.ye8{bottom:91.792400pt;}
.y121{bottom:95.552533pt;}
.yd5{bottom:96.133333pt;}
.y29{bottom:97.905600pt;}
.y57{bottom:98.481733pt;}
.yea{bottom:99.023600pt;}
.y81{bottom:102.233333pt;}
.y154{bottom:104.277200pt;}
.ye7{bottom:109.792400pt;}
.y120{bottom:111.552533pt;}
.y28{bottom:111.905733pt;}
.yd4{bottom:114.133333pt;}
.y56{bottom:116.481733pt;}
.y80{bottom:120.233333pt;}
.y153{bottom:120.277200pt;}
.yac{bottom:123.996000pt;}
.y27{bottom:125.905733pt;}
.y11f{bottom:127.552533pt;}
.ye6{bottom:127.792400pt;}
.yd3{bottom:132.133333pt;}
.y55{bottom:134.481733pt;}
.y152{bottom:136.277200pt;}
.y7f{bottom:138.233333pt;}
.y84{bottom:139.559067pt;}
.y26{bottom:139.905733pt;}
.y11e{bottom:143.552533pt;}
.ye5{bottom:145.792400pt;}
.yab{bottom:146.112000pt;}
.yd2{bottom:150.133333pt;}
.y151{bottom:152.277200pt;}
.y54{bottom:152.481733pt;}
.y7e{bottom:156.233333pt;}
.y11d{bottom:159.552533pt;}
.ye4{bottom:163.792400pt;}
.yd1{bottom:168.133333pt;}
.yaa{bottom:168.227867pt;}
.y150{bottom:168.277200pt;}
.yf7{bottom:170.481733pt;}
.y7d{bottom:174.233333pt;}
.y11c{bottom:175.552533pt;}
.y53{bottom:178.040667pt;}
.ye3{bottom:181.792400pt;}
.y14f{bottom:184.277200pt;}
.yd0{bottom:186.133333pt;}
.yf6{bottom:188.481733pt;}
.ya9{bottom:190.343733pt;}
.y11b{bottom:191.552533pt;}
.y7c{bottom:192.233333pt;}
.y52{bottom:196.040667pt;}
.ye2{bottom:199.792400pt;}
.y14e{bottom:200.277200pt;}
.ycf{bottom:204.133333pt;}
.yf5{bottom:206.481733pt;}
.y7b{bottom:210.233333pt;}
.ya8{bottom:212.459600pt;}
.y51{bottom:214.040667pt;}
.y14d{bottom:216.277200pt;}
.ye1{bottom:217.792400pt;}
.y25{bottom:218.399200pt;}
.y11a{bottom:220.780933pt;}
.y83{bottom:221.904800pt;}
.yce{bottom:222.133333pt;}
.yf4{bottom:224.481733pt;}
.y7a{bottom:228.233333pt;}
.y50{bottom:232.040667pt;}
.y14c{bottom:232.277200pt;}
.ya7{bottom:234.371333pt;}
.y24{bottom:234.399200pt;}
.ye0{bottom:235.792400pt;}
.ycd{bottom:240.133333pt;}
.yf3{bottom:242.481600pt;}
.y79{bottom:246.233333pt;}
.y14b{bottom:248.277200pt;}
.y4f{bottom:250.040667pt;}
.y23{bottom:250.399200pt;}
.ydf{bottom:253.792400pt;}
.ya6{bottom:258.896000pt;}
.yf2{bottom:260.481600pt;}
.y78{bottom:264.233333pt;}
.y14a{bottom:264.277200pt;}
.y119{bottom:265.237600pt;}
.ycc{bottom:265.692400pt;}
.y22{bottom:266.399200pt;}
.y4e{bottom:268.040667pt;}
.yde{bottom:271.792400pt;}
.ya5{bottom:272.896000pt;}
.yf1{bottom:278.481600pt;}
.y149{bottom:280.277200pt;}
.y118{bottom:281.237600pt;}
.y77{bottom:282.233333pt;}
.y21{bottom:282.399200pt;}
.ycb{bottom:283.692400pt;}
.y4d{bottom:286.040667pt;}
.ydd{bottom:289.792400pt;}
.ya4{bottom:290.675600pt;}
.y148{bottom:296.277200pt;}
.yf0{bottom:296.481600pt;}
.y117{bottom:297.237600pt;}
.y20{bottom:298.399200pt;}
.y76{bottom:300.233333pt;}
.yca{bottom:301.692400pt;}
.y4c{bottom:304.040667pt;}
.ydc{bottom:307.792400pt;}
.y147{bottom:312.277200pt;}
.y116{bottom:313.237600pt;}
.y1f{bottom:314.399200pt;}
.yef{bottom:314.481600pt;}
.y75{bottom:318.233333pt;}
.yc9{bottom:319.692400pt;}
.ya3{bottom:319.793600pt;}
.y4b{bottom:322.040667pt;}
.ydb{bottom:325.792400pt;}
.y146{bottom:328.277200pt;}
.y115{bottom:329.237600pt;}
.y1e{bottom:330.399200pt;}
.yee{bottom:332.481600pt;}
.y74{bottom:336.233333pt;}
.yc8{bottom:337.692400pt;}
.ya2{bottom:337.793600pt;}
.y4a{bottom:340.040667pt;}
.yda{bottom:343.792400pt;}
.y145{bottom:344.277200pt;}
.y114{bottom:345.237600pt;}
.y1d{bottom:346.399200pt;}
.yc7{bottom:355.692400pt;}
.ya1{bottom:355.793600pt;}
.y49{bottom:358.040667pt;}
.y144{bottom:360.277200pt;}
.y113{bottom:361.237600pt;}
.y73{bottom:361.792400pt;}
.y1c{bottom:362.399200pt;}
.yc6{bottom:373.692400pt;}
.ya0{bottom:373.793600pt;}
.y48{bottom:376.040667pt;}
.y143{bottom:376.277200pt;}
.y112{bottom:377.237600pt;}
.y1b{bottom:378.399200pt;}
.y72{bottom:379.792400pt;}
.yc5{bottom:391.692400pt;}
.y9f{bottom:391.793600pt;}
.y142{bottom:392.277200pt;}
.y47{bottom:394.040667pt;}
.y71{bottom:397.792400pt;}
.y111{bottom:406.466000pt;}
.y141{bottom:408.277200pt;}
.yc4{bottom:409.692400pt;}
.y9e{bottom:409.793600pt;}
.y1a{bottom:410.399200pt;}
.y46{bottom:412.040667pt;}
.y70{bottom:415.792400pt;}
.y140{bottom:424.277200pt;}
.y19{bottom:426.399200pt;}
.yc3{bottom:427.692400pt;}
.y9d{bottom:427.793600pt;}
.y45{bottom:430.040667pt;}
.y6f{bottom:433.792400pt;}
.y13f{bottom:440.277200pt;}
.y18{bottom:442.399200pt;}
.yc2{bottom:445.692400pt;}
.y9c{bottom:445.793600pt;}
.y44{bottom:448.040667pt;}
.y6e{bottom:451.792400pt;}
.y13e{bottom:456.277200pt;}
.y17{bottom:458.399200pt;}
.y110{bottom:458.481733pt;}
.yc1{bottom:463.692400pt;}
.y9b{bottom:463.793600pt;}
.y43{bottom:466.040667pt;}
.y6d{bottom:469.792400pt;}
.y13d{bottom:472.277200pt;}
.y16{bottom:474.399200pt;}
.y10f{bottom:476.481733pt;}
.y9a{bottom:481.793600pt;}
.y42{bottom:484.040667pt;}
.y6c{bottom:487.792400pt;}
.y13c{bottom:488.277200pt;}
.y15{bottom:490.399200pt;}
.y10e{bottom:494.481733pt;}
.y99{bottom:499.793600pt;}
.y41{bottom:502.040667pt;}
.y13b{bottom:504.277200pt;}
.y6b{bottom:505.792400pt;}
.yc0{bottom:505.869600pt;}
.y14{bottom:506.399200pt;}
.y10d{bottom:512.481733pt;}
.y98{bottom:517.793600pt;}
.y40{bottom:520.040667pt;}
.y13a{bottom:520.277200pt;}
.y13{bottom:522.399200pt;}
.y6a{bottom:523.792400pt;}
.ybf{bottom:527.985467pt;}
.y10c{bottom:530.481733pt;}
.yd9{bottom:531.351467pt;}
.y97{bottom:535.793600pt;}
.y139{bottom:536.277200pt;}
.y3f{bottom:538.040667pt;}
.y12{bottom:538.399200pt;}
.y69{bottom:541.792400pt;}
.y10b{bottom:548.481733pt;}
.yd8{bottom:549.351467pt;}
.ybe{bottom:550.101333pt;}
.y138{bottom:552.277200pt;}
.y96{bottom:553.793600pt;}
.y11{bottom:554.399200pt;}
.y3e{bottom:556.040667pt;}
.y10a{bottom:566.481733pt;}
.y68{bottom:567.351467pt;}
.y137{bottom:568.277200pt;}
.y10{bottom:570.399200pt;}
.y95{bottom:571.793600pt;}
.ybd{bottom:572.217333pt;}
.yed{bottom:574.040667pt;}
.y3d{bottom:581.599733pt;}
.y136{bottom:584.277200pt;}
.y67{bottom:585.351467pt;}
.y94{bottom:589.793600pt;}
.yec{bottom:592.040667pt;}
.y109{bottom:592.040800pt;}
.ybc{bottom:594.333200pt;}
.y3c{bottom:599.599733pt;}
.y135{bottom:600.277200pt;}
.yf{bottom:602.399200pt;}
.y66{bottom:603.351467pt;}
.y93{bottom:607.793600pt;}
.y108{bottom:610.040800pt;}
.ybb{bottom:616.244933pt;}
.y134{bottom:616.277200pt;}
.y3b{bottom:617.599733pt;}
.ye{bottom:618.399200pt;}
.y65{bottom:621.351467pt;}
.y107{bottom:628.040800pt;}
.y133{bottom:632.277200pt;}
.y92{bottom:633.352667pt;}
.yd{bottom:634.399200pt;}
.y3a{bottom:635.599733pt;}
.y64{bottom:639.351467pt;}
.yba{bottom:640.769600pt;}
.y106{bottom:646.040800pt;}
.y132{bottom:648.277200pt;}
.yc{bottom:650.399200pt;}
.y91{bottom:651.352667pt;}
.y39{bottom:653.599733pt;}
.yb9{bottom:654.769600pt;}
.y63{bottom:657.351467pt;}
.y105{bottom:664.040800pt;}
.y131{bottom:664.277200pt;}
.yb{bottom:666.399200pt;}
.yb8{bottom:668.769600pt;}
.y90{bottom:669.352667pt;}
.y38{bottom:671.599733pt;}
.y62{bottom:675.351467pt;}
.y130{bottom:680.277200pt;}
.y104{bottom:682.040800pt;}
.ya{bottom:682.399200pt;}
.yb7{bottom:686.549067pt;}
.y8f{bottom:687.352667pt;}
.y37{bottom:689.599733pt;}
.y61{bottom:693.351333pt;}
.y12f{bottom:696.277200pt;}
.y9{bottom:698.399200pt;}
.y103{bottom:700.040800pt;}
.y8e{bottom:705.352667pt;}
.y36{bottom:707.599733pt;}
.y60{bottom:711.351333pt;}
.y12e{bottom:712.277200pt;}
.y8{bottom:714.399200pt;}
.y102{bottom:718.040800pt;}
.y8d{bottom:723.352667pt;}
.yb6{bottom:724.726267pt;}
.y35{bottom:725.599733pt;}
.y12d{bottom:728.277200pt;}
.y5f{bottom:729.351333pt;}
.y7{bottom:730.399200pt;}
.y101{bottom:736.040800pt;}
.y8c{bottom:741.352667pt;}
.y34{bottom:743.599733pt;}
.y12c{bottom:744.277200pt;}
.yb5{bottom:746.842133pt;}
.y5e{bottom:747.351333pt;}
.y100{bottom:754.040800pt;}
.y8b{bottom:759.352667pt;}
.y12b{bottom:760.277200pt;}
.y33{bottom:761.599733pt;}
.y5d{bottom:765.351333pt;}
.yb4{bottom:768.958000pt;}
.y12a{bottom:776.277200pt;}
.y8a{bottom:777.352667pt;}
.y6{bottom:778.398800pt;}
.y32{bottom:779.599733pt;}
.yff{bottom:779.599867pt;}
.yd7{bottom:781.351333pt;}
.y5c{bottom:783.351333pt;}
.yb3{bottom:791.073867pt;}
.y129{bottom:792.277200pt;}
.y89{bottom:795.352667pt;}
.y31{bottom:797.599733pt;}
.yfe{bottom:797.599867pt;}
.y5b{bottom:801.351333pt;}
.y128{bottom:808.277200pt;}
.y5{bottom:809.449333pt;}
.yb2{bottom:813.189733pt;}
.y88{bottom:813.352667pt;}
.y30{bottom:815.599733pt;}
.yfd{bottom:815.599867pt;}
.y127{bottom:824.277200pt;}
.y87{bottom:831.352667pt;}
.y2f{bottom:833.599733pt;}
.yfc{bottom:833.599867pt;}
.yb1{bottom:835.101600pt;}
.y5a{bottom:835.351333pt;}
.y126{bottom:840.277200pt;}
.y4{bottom:843.166800pt;}
.y86{bottom:849.352667pt;}
.y2e{bottom:851.599733pt;}
.yfb{bottom:851.599867pt;}
.y125{bottom:856.277200pt;}
.yb0{bottom:859.626267pt;}
.y85{bottom:867.352667pt;}
.y2d{bottom:869.599733pt;}
.yfa{bottom:869.599867pt;}
.y124{bottom:872.277200pt;}
.yaf{bottom:873.626267pt;}
.y59{bottom:885.352667pt;}
.yae{bottom:887.626267pt;}
.y123{bottom:888.277200pt;}
.y58{bottom:903.352667pt;}
.y2c{bottom:903.599733pt;}
.yf9{bottom:903.599867pt;}
.y122{bottom:904.277200pt;}
.yad{bottom:905.405733pt;}
.y3{bottom:916.833067pt;}
.y2{bottom:930.199733pt;}
.y1{bottom:943.566400pt;}
.y2b{bottom:951.401467pt;}
.yf8{bottom:951.401600pt;}
.hc{height:30.541667pt;}
.h2{height:31.476562pt;}
.h3{height:31.498698pt;}
.hd{height:34.338542pt;}
.h8{height:35.204427pt;}
.h7{height:38.910156pt;}
.h6{height:40.496094pt;}
.h9{height:40.763021pt;}
.ha{height:41.567708pt;}
.h5{height:42.615885pt;}
.hb{height:47.940326pt;}
.h4{height:56.277773pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x11{left:105.101067pt;}
.x5{left:113.385867pt;}
.x13{left:117.269467pt;}
.xd{left:120.413467pt;}
.xe{left:126.534000pt;}
.x8{left:128.503867pt;}
.x2{left:143.824267pt;}
.x10{left:149.098400pt;}
.x16{left:164.216400pt;}
.x17{left:225.568267pt;}
.x9{left:236.115200pt;}
.x1e{left:240.690133pt;}
.xf{left:273.834533pt;}
.x14{left:278.942000pt;}
.x15{left:288.951867pt;}
.x24{left:307.441200pt;}
.x25{left:343.124800pt;}
.x4{left:350.401467pt;}
.x23{left:352.650000pt;}
.x7{left:362.800533pt;}
.xc{left:369.322133pt;}
.x6{left:378.009467pt;}
.x3{left:381.624667pt;}
.x12{left:384.440267pt;}
.xb{left:519.041200pt;}
.x1b{left:533.383333pt;}
.x1c{left:547.383333pt;}
.x1d{left:561.383333pt;}
.x1f{left:568.273200pt;}
.x20{left:582.273200pt;}
.x18{left:588.501467pt;}
.x21{left:596.273200pt;}
.x19{left:602.501467pt;}
.x22{left:610.273200pt;}
.x1a{left:616.501467pt;}
.xa{left:628.625067pt;}
}




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