
    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_f720f3dbc12b779d10391476.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_791f8916552377106a45547b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4a1af274a3cbf35c633a14d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_37c6703e9eccbb06dc7ea460.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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);}
.v1{vertical-align:-69.000000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006000px;}
.lsc{letter-spacing:0.012000px;}
.ls0{letter-spacing:1.482000px;}
.lse{letter-spacing:1.488000px;}
.ls7{letter-spacing:1.494000px;}
.lsa{letter-spacing:1.500000px;}
.lsb{letter-spacing:1.506000px;}
.lsf{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.518000px;}
.ls9{letter-spacing:3.000000px;}
.ls8{letter-spacing:13.524000px;}
.lsd{letter-spacing:15.000000px;}
.ls4{letter-spacing:15.006000px;}
.ls6{letter-spacing:16.494000px;}
.ls5{letter-spacing:16.506000px;}
.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;}
}
.ws5e{word-spacing:-18.324000px;}
.ws4d{word-spacing:-18.270000px;}
.ws9{word-spacing:-18.024000px;}
.ws47{word-spacing:-17.880000px;}
.ws84{word-spacing:-17.814000px;}
.ws2c{word-spacing:-17.778000px;}
.ws7f{word-spacing:-17.760000px;}
.ws31{word-spacing:-17.700000px;}
.ws91{word-spacing:-17.658000px;}
.wsd{word-spacing:-17.652000px;}
.ws57{word-spacing:-17.616000px;}
.ws28{word-spacing:-17.580000px;}
.ws55{word-spacing:-17.556000px;}
.ws42{word-spacing:-17.484000px;}
.ws17{word-spacing:-17.472000px;}
.ws39{word-spacing:-17.448000px;}
.ws27{word-spacing:-17.388000px;}
.ws4e{word-spacing:-17.334000px;}
.ws38{word-spacing:-17.316000px;}
.ws83{word-spacing:-17.292000px;}
.ws46{word-spacing:-17.262000px;}
.ws16{word-spacing:-17.256000px;}
.ws1e{word-spacing:-17.244000px;}
.ws33{word-spacing:-17.238000px;}
.ws37{word-spacing:-17.220000px;}
.ws51{word-spacing:-17.214000px;}
.ws63{word-spacing:-17.190000px;}
.ws74{word-spacing:-17.184000px;}
.ws89{word-spacing:-17.148000px;}
.ws7d{word-spacing:-17.130000px;}
.ws1d{word-spacing:-17.124000px;}
.ws12{word-spacing:-17.106000px;}
.ws70{word-spacing:-17.058000px;}
.ws56{word-spacing:-17.046000px;}
.ws2b{word-spacing:-17.028000px;}
.ws60{word-spacing:-16.998000px;}
.ws26{word-spacing:-16.932000px;}
.ws6b{word-spacing:-16.920000px;}
.ws7e{word-spacing:-16.896000px;}
.ws6{word-spacing:-16.848000px;}
.ws18{word-spacing:-16.830000px;}
.ws5b{word-spacing:-16.824000px;}
.ws7{word-spacing:-16.812000px;}
.wsb{word-spacing:-16.788000px;}
.ws59{word-spacing:-16.770000px;}
.ws79{word-spacing:-16.758000px;}
.ws5d{word-spacing:-16.716000px;}
.ws40{word-spacing:-16.704000px;}
.ws35{word-spacing:-16.680000px;}
.ws4a{word-spacing:-16.674000px;}
.ws15{word-spacing:-16.668000px;}
.ws6d{word-spacing:-16.656000px;}
.ws50{word-spacing:-16.650000px;}
.ws73{word-spacing:-16.644000px;}
.ws71{word-spacing:-16.638000px;}
.ws58{word-spacing:-16.626000px;}
.ws48{word-spacing:-16.620000px;}
.ws23{word-spacing:-16.614000px;}
.ws20{word-spacing:-16.602000px;}
.ws21{word-spacing:-16.596000px;}
.ws3a{word-spacing:-16.590000px;}
.ws3d{word-spacing:-16.584000px;}
.ws13{word-spacing:-16.572000px;}
.ws5f{word-spacing:-16.560000px;}
.ws81{word-spacing:-16.554000px;}
.ws1f{word-spacing:-16.530000px;}
.ws6e{word-spacing:-16.524000px;}
.ws30{word-spacing:-16.512000px;}
.wsf{word-spacing:-16.500000px;}
.ws4f{word-spacing:-16.494000px;}
.ws43{word-spacing:-16.488000px;}
.ws1a{word-spacing:-16.446000px;}
.ws24{word-spacing:-16.434000px;}
.ws25{word-spacing:-16.380000px;}
.ws6f{word-spacing:-16.374000px;}
.ws1b{word-spacing:-16.350000px;}
.ws66{word-spacing:-16.344000px;}
.ws22{word-spacing:-16.338000px;}
.ws67{word-spacing:-16.332000px;}
.ws76{word-spacing:-16.326000px;}
.ws19{word-spacing:-16.314000px;}
.ws3f{word-spacing:-16.296000px;}
.ws93{word-spacing:-16.284000px;}
.ws5a{word-spacing:-16.248000px;}
.ws2a{word-spacing:-16.236000px;}
.ws2f{word-spacing:-16.230000px;}
.ws80{word-spacing:-16.224000px;}
.ws90{word-spacing:-16.182000px;}
.wsc{word-spacing:-16.152000px;}
.ws44{word-spacing:-16.140000px;}
.ws49{word-spacing:-16.122000px;}
.ws69{word-spacing:-16.116000px;}
.ws14{word-spacing:-16.110000px;}
.ws8d{word-spacing:-16.038000px;}
.ws88{word-spacing:-16.026000px;}
.ws34{word-spacing:-15.996000px;}
.ws29{word-spacing:-15.990000px;}
.ws4c{word-spacing:-15.900000px;}
.ws3b{word-spacing:-15.852000px;}
.ws8f{word-spacing:-15.792000px;}
.ws5c{word-spacing:-15.774000px;}
.ws1c{word-spacing:-15.750000px;}
.ws7c{word-spacing:-15.720000px;}
.ws87{word-spacing:-15.708000px;}
.ws8a{word-spacing:-15.660000px;}
.wsa7{word-spacing:-15.600000px;}
.ws3e{word-spacing:-15.576000px;}
.ws41{word-spacing:-15.540000px;}
.wse{word-spacing:-15.486000px;}
.wsbc{word-spacing:-15.468000px;}
.wsad{word-spacing:-15.462000px;}
.wsa2{word-spacing:-15.420000px;}
.ws8b{word-spacing:-15.408000px;}
.wsc3{word-spacing:-15.390000px;}
.ws62{word-spacing:-15.300000px;}
.wsa9{word-spacing:-15.222000px;}
.wsb8{word-spacing:-15.090000px;}
.ws95{word-spacing:-15.000000px;}
.ws8e{word-spacing:-14.952000px;}
.wsc5{word-spacing:-14.916000px;}
.ws7b{word-spacing:-14.850000px;}
.wsa6{word-spacing:-14.766000px;}
.wsc9{word-spacing:-14.670000px;}
.wsb2{word-spacing:-14.508000px;}
.ws9c{word-spacing:-14.454000px;}
.wscc{word-spacing:-13.890000px;}
.ws9a{word-spacing:-13.704000px;}
.wsb0{word-spacing:-13.674000px;}
.ws1{word-spacing:-13.500000px;}
.wsbf{word-spacing:-12.429000px;}
.wsb7{word-spacing:-12.415500px;}
.ws9d{word-spacing:-12.361500px;}
.wsc6{word-spacing:-11.731500px;}
.wsbb{word-spacing:-11.713500px;}
.wsac{word-spacing:-11.709000px;}
.wsa1{word-spacing:-11.668500px;}
.ws9e{word-spacing:-11.650500px;}
.wsc2{word-spacing:-11.637000px;}
.wsae{word-spacing:-11.569500px;}
.wsb9{word-spacing:-11.565000px;}
.wsca{word-spacing:-11.556000px;}
.wsa0{word-spacing:-11.542500px;}
.wsa8{word-spacing:-11.475000px;}
.wsa3{word-spacing:-11.443500px;}
.wsc1{word-spacing:-11.398500px;}
.wsb3{word-spacing:-11.250000px;}
.wsab{word-spacing:-11.182500px;}
.wscb{word-spacing:-11.124000px;}
.wsa5{word-spacing:-11.016000px;}
.ws98{word-spacing:-10.966500px;}
.wsba{word-spacing:-10.939500px;}
.wsaa{word-spacing:-10.930500px;}
.wsc8{word-spacing:-10.921500px;}
.wsce{word-spacing:-10.863000px;}
.ws97{word-spacing:-10.858500px;}
.wsa4{word-spacing:-10.773000px;}
.wsaf{word-spacing:-10.768500px;}
.wsbe{word-spacing:-10.728000px;}
.ws9b{word-spacing:-10.705500px;}
.wsb1{word-spacing:-10.678500px;}
.wsc4{word-spacing:-10.507500px;}
.ws9f{word-spacing:-10.156500px;}
.wscd{word-spacing:-10.138500px;}
.ws2{word-spacing:-10.125000px;}
.ws99{word-spacing:-9.949500px;}
.wsbd{word-spacing:-9.751500px;}
.ws72{word-spacing:-1.368000px;}
.ws78{word-spacing:-1.086000px;}
.ws61{word-spacing:-1.056000px;}
.ws8c{word-spacing:-0.924000px;}
.ws77{word-spacing:-0.834000px;}
.ws65{word-spacing:-0.822000px;}
.ws7a{word-spacing:-0.774000px;}
.ws10{word-spacing:-0.750000px;}
.ws53{word-spacing:-0.702000px;}
.ws6a{word-spacing:-0.636000px;}
.wsa{word-spacing:-0.624000px;}
.ws68{word-spacing:-0.612000px;}
.ws94{word-spacing:-0.558000px;}
.ws36{word-spacing:-0.528000px;}
.ws32{word-spacing:-0.498000px;}
.ws3{word-spacing:0.000000px;}
.ws6c{word-spacing:0.006000px;}
.ws5{word-spacing:0.672000px;}
.ws54{word-spacing:0.678000px;}
.ws52{word-spacing:0.798000px;}
.ws4b{word-spacing:0.810000px;}
.wsc7{word-spacing:0.852000px;}
.ws3c{word-spacing:0.930000px;}
.ws85{word-spacing:0.978000px;}
.wsc0{word-spacing:0.990000px;}
.ws2d{word-spacing:1.044000px;}
.ws92{word-spacing:1.068000px;}
.ws11{word-spacing:1.110000px;}
.ws82{word-spacing:1.266000px;}
.ws2e{word-spacing:1.278000px;}
.ws45{word-spacing:1.308000px;}
.ws64{word-spacing:1.320000px;}
.ws96{word-spacing:1.482000px;}
.wsb6{word-spacing:1.488000px;}
.ws75{word-spacing:1.572000px;}
.ws86{word-spacing:1.656000px;}
.ws8{word-spacing:1.674000px;}
.ws0{word-spacing:2.848500px;}
.wsb5{word-spacing:3.228000px;}
.wsb4{word-spacing:3.468000px;}
.ws4{word-spacing:35.706000px;}
._17{margin-left:-10.803000px;}
._11{margin-left:-9.171000px;}
._d{margin-left:-7.335000px;}
._7{margin-left:-6.039000px;}
._8{margin-left:-4.623000px;}
._2{margin-left:-3.021000px;}
._0{margin-left:-1.482000px;}
._1{width:1.482000px;}
._3{width:3.021000px;}
._c{width:4.413000px;}
._9{width:5.976000px;}
._a{width:6.984000px;}
._f{width:8.154000px;}
._10{width:9.450000px;}
._18{width:11.664000px;}
._15{width:13.464000px;}
._12{width:15.147000px;}
._14{width:16.563000px;}
._4{width:17.754000px;}
._13{width:19.368000px;}
._19{width:20.640000px;}
._16{width:22.884000px;}
._6{width:47.880000px;}
._5{width:67.500000px;}
._b{width:557.880000px;}
._e{width:673.068000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:39.000000px;}
.fs3{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:47.911425px;}
.y4b{bottom:49.786425px;}
.y9b{bottom:50.161425px;}
.y74{bottom:50.536425px;}
.ya8{bottom:52.036425px;}
.yfb{bottom:53.536425px;}
.y4a{bottom:67.036425px;}
.y9a{bottom:67.411425px;}
.y73{bottom:67.786425px;}
.ya7{bottom:69.286425px;}
.yd1{bottom:83.536425px;}
.y49{bottom:84.286425px;}
.y99{bottom:84.661425px;}
.y72{bottom:85.036425px;}
.ya6{bottom:86.536425px;}
.yd0{bottom:99.286425px;}
.yfa{bottom:100.786425px;}
.y48{bottom:101.536425px;}
.y98{bottom:101.911425px;}
.y71{bottom:102.286425px;}
.y1c{bottom:102.661425px;}
.ya5{bottom:103.786425px;}
.ycf{bottom:115.036425px;}
.yf9{bottom:116.536425px;}
.y1b{bottom:117.661425px;}
.y47{bottom:118.786425px;}
.y97{bottom:119.161425px;}
.y70{bottom:119.536425px;}
.ya4{bottom:121.036425px;}
.yce{bottom:130.786425px;}
.yf8{bottom:132.286425px;}
.y1a{bottom:132.661425px;}
.y46{bottom:136.036425px;}
.y96{bottom:136.411425px;}
.y6f{bottom:136.786425px;}
.ya3{bottom:138.286425px;}
.ycd{bottom:146.536425px;}
.y19{bottom:147.661425px;}
.yf7{bottom:148.036425px;}
.y45{bottom:153.286425px;}
.y95{bottom:153.661425px;}
.y6e{bottom:154.036425px;}
.ya2{bottom:155.536425px;}
.ycc{bottom:162.286425px;}
.y18{bottom:162.661425px;}
.yf6{bottom:163.786425px;}
.y44{bottom:170.536425px;}
.y94{bottom:170.911425px;}
.y6d{bottom:171.286425px;}
.ya1{bottom:172.786425px;}
.y17{bottom:177.661425px;}
.ycb{bottom:178.036425px;}
.yf5{bottom:179.536425px;}
.y43{bottom:187.786425px;}
.y93{bottom:188.161425px;}
.y6c{bottom:188.536425px;}
.ya0{bottom:190.036425px;}
.y16{bottom:192.661425px;}
.yca{bottom:193.786425px;}
.yf4{bottom:195.286425px;}
.y42{bottom:205.036425px;}
.y92{bottom:205.411425px;}
.y6b{bottom:205.786425px;}
.y9f{bottom:207.286425px;}
.y15{bottom:207.661425px;}
.yc9{bottom:209.536425px;}
.yf3{bottom:211.036425px;}
.y41{bottom:222.286425px;}
.y14{bottom:222.661425px;}
.y6a{bottom:223.036425px;}
.yc8{bottom:225.286425px;}
.yf2{bottom:226.786425px;}
.y9e{bottom:233.161425px;}
.y13{bottom:237.661425px;}
.y40{bottom:239.536425px;}
.y91{bottom:239.911425px;}
.y69{bottom:240.286425px;}
.yc7{bottom:241.036425px;}
.yf1{bottom:242.536425px;}
.y12{bottom:252.661425px;}
.y3f{bottom:256.786425px;}
.y90{bottom:257.161425px;}
.y68{bottom:257.536425px;}
.yf0{bottom:258.286425px;}
.yc6{bottom:272.536425px;}
.y3e{bottom:274.036425px;}
.y67{bottom:274.786425px;}
.y11{bottom:282.661425px;}
.yc5{bottom:288.286425px;}
.yef{bottom:289.786425px;}
.y3d{bottom:291.286425px;}
.y8f{bottom:291.661425px;}
.y66{bottom:292.036425px;}
.yc4{bottom:304.036425px;}
.yee{bottom:305.536425px;}
.y3c{bottom:308.536425px;}
.y8e{bottom:308.911425px;}
.y65{bottom:309.286425px;}
.y10{bottom:318.661425px;}
.yc3{bottom:319.786425px;}
.yed{bottom:321.286425px;}
.y3b{bottom:325.786425px;}
.y8d{bottom:326.161425px;}
.y64{bottom:326.536425px;}
.yf{bottom:333.661425px;}
.yc2{bottom:335.536425px;}
.yec{bottom:337.036425px;}
.y3a{bottom:343.036425px;}
.y8c{bottom:343.411425px;}
.y63{bottom:343.786425px;}
.yc1{bottom:351.286425px;}
.yeb{bottom:352.786425px;}
.ye{bottom:354.661425px;}
.y39{bottom:360.286425px;}
.y8b{bottom:360.661425px;}
.y62{bottom:361.036425px;}
.yc0{bottom:367.036425px;}
.yea{bottom:368.536425px;}
.yd{bottom:369.661425px;}
.y8a{bottom:377.911425px;}
.y61{bottom:378.286425px;}
.ybf{bottom:382.786425px;}
.ye9{bottom:384.286425px;}
.yc{bottom:384.661425px;}
.y38{bottom:386.161425px;}
.y89{bottom:395.161425px;}
.y60{bottom:395.536425px;}
.ybe{bottom:398.536425px;}
.yb{bottom:399.661425px;}
.ye8{bottom:400.036425px;}
.y88{bottom:412.411425px;}
.y5f{bottom:412.786425px;}
.ybd{bottom:414.286425px;}
.ya{bottom:414.661425px;}
.ye7{bottom:415.786425px;}
.y9{bottom:429.661425px;}
.y5e{bottom:430.036425px;}
.ye6{bottom:431.536425px;}
.y8{bottom:444.661425px;}
.ybc{bottom:445.786425px;}
.y37{bottom:446.536425px;}
.y87{bottom:446.911425px;}
.y5d{bottom:447.286425px;}
.y7{bottom:459.661425px;}
.y36{bottom:461.536425px;}
.ye5{bottom:463.036425px;}
.y86{bottom:464.161425px;}
.y5c{bottom:464.536425px;}
.y6{bottom:474.661425px;}
.ybb{bottom:477.286425px;}
.ye4{bottom:478.786425px;}
.y85{bottom:481.411425px;}
.y5b{bottom:481.786425px;}
.y35{bottom:482.536425px;}
.y5{bottom:489.661425px;}
.yba{bottom:493.036425px;}
.ye3{bottom:494.536425px;}
.y34{bottom:497.536425px;}
.y84{bottom:498.661425px;}
.y5a{bottom:499.036425px;}
.y4{bottom:504.661425px;}
.y9c{bottom:507.661425px;}
.yb9{bottom:508.786425px;}
.ye2{bottom:510.286425px;}
.y33{bottom:512.536425px;}
.y83{bottom:515.911425px;}
.y59{bottom:516.286425px;}
.y3{bottom:519.661425px;}
.yb8{bottom:524.536425px;}
.ye1{bottom:526.036425px;}
.y32{bottom:527.536425px;}
.y82{bottom:533.161425px;}
.y58{bottom:533.536425px;}
.y2{bottom:534.661425px;}
.yb7{bottom:540.286425px;}
.ye0{bottom:541.786425px;}
.y31{bottom:542.536425px;}
.y81{bottom:550.411425px;}
.y57{bottom:550.786425px;}
.yb6{bottom:556.036425px;}
.y30{bottom:557.536425px;}
.y9d{bottom:559.411425px;}
.y1{bottom:564.661425px;}
.y80{bottom:567.661425px;}
.y56{bottom:568.036425px;}
.yb5{bottom:571.786425px;}
.y2f{bottom:572.536425px;}
.ydf{bottom:573.286425px;}
.y7f{bottom:584.911425px;}
.y55{bottom:585.286425px;}
.y2e{bottom:587.536425px;}
.yde{bottom:589.036425px;}
.y7e{bottom:602.161425px;}
.y2d{bottom:602.536425px;}
.yb4{bottom:603.286425px;}
.ydd{bottom:604.786425px;}
.y2c{bottom:617.536425px;}
.yb3{bottom:619.036425px;}
.y7d{bottom:619.411425px;}
.y54{bottom:619.786425px;}
.ydc{bottom:620.536425px;}
.y2b{bottom:632.536425px;}
.yb2{bottom:634.786425px;}
.ydb{bottom:636.286425px;}
.y7c{bottom:636.661425px;}
.y53{bottom:637.036425px;}
.y2a{bottom:647.536425px;}
.yb1{bottom:650.536425px;}
.yda{bottom:652.036425px;}
.y7b{bottom:653.911425px;}
.y52{bottom:654.286425px;}
.y29{bottom:662.536425px;}
.yb0{bottom:666.286425px;}
.yd9{bottom:667.786425px;}
.y51{bottom:671.536425px;}
.y7a{bottom:679.786425px;}
.yaf{bottom:682.036425px;}
.yd8{bottom:683.536425px;}
.y50{bottom:688.786425px;}
.y28{bottom:692.536425px;}
.y78{bottom:697.411425px;}
.yae{bottom:697.786425px;}
.yd7{bottom:699.286425px;}
.y4f{bottom:706.036425px;}
.y79{bottom:710.911425px;}
.yad{bottom:713.536425px;}
.yd6{bottom:715.036425px;}
.y4e{bottom:723.286425px;}
.y27{bottom:728.536425px;}
.yac{bottom:729.286425px;}
.yd5{bottom:730.786425px;}
.y77{bottom:740.536425px;}
.y26{bottom:743.536425px;}
.y21{bottom:744.286425px;}
.yab{bottom:745.036425px;}
.yd4{bottom:746.536425px;}
.y4d{bottom:749.161425px;}
.y76{bottom:757.786425px;}
.yaa{bottom:760.786425px;}
.y20{bottom:762.286425px;}
.y25{bottom:764.536425px;}
.y75{bottom:775.036425px;}
.ya9{bottom:776.536425px;}
.yd3{bottom:778.036425px;}
.y24{bottom:779.536425px;}
.y4c{bottom:792.286425px;}
.yd2{bottom:793.786425px;}
.y23{bottom:794.536425px;}
.y1f{bottom:807.286425px;}
.y22{bottom:809.536425px;}
.y1e{bottom:858.286425px;}
.h5{height:51.216000px;}
.h4{height:57.618000px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.ha{height:64.020000px;}
.hb{height:65.040000px;}
.h8{height:70.422000px;}
.h9{height:71.544000px;}
.h7{height:76.824000px;}
.h6{height:102.432000px;}
.h1{height:909.750000px;}
.h0{height:910.086615px;}
.w1{width:594.750000px;}
.w0{width:594.862200px;}
.x0{left:0.000000px;}
.x1{left:50.868600px;}
.x4{left:65.372100px;}
.x3{left:73.080600px;}
.x2{left:410.868600px;}
@media print{
.v1{vertical-align:-61.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005333pt;}
.lsc{letter-spacing:0.010667pt;}
.ls0{letter-spacing:1.317333pt;}
.lse{letter-spacing:1.322667pt;}
.ls7{letter-spacing:1.328000pt;}
.lsa{letter-spacing:1.333333pt;}
.lsb{letter-spacing:1.338667pt;}
.lsf{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.349333pt;}
.ls9{letter-spacing:2.666667pt;}
.ls8{letter-spacing:12.021333pt;}
.lsd{letter-spacing:13.333333pt;}
.ls4{letter-spacing:13.338667pt;}
.ls6{letter-spacing:14.661333pt;}
.ls5{letter-spacing:14.672000pt;}
.ws5e{word-spacing:-16.288000pt;}
.ws4d{word-spacing:-16.240000pt;}
.ws9{word-spacing:-16.021333pt;}
.ws47{word-spacing:-15.893333pt;}
.ws84{word-spacing:-15.834667pt;}
.ws2c{word-spacing:-15.802667pt;}
.ws7f{word-spacing:-15.786667pt;}
.ws31{word-spacing:-15.733333pt;}
.ws91{word-spacing:-15.696000pt;}
.wsd{word-spacing:-15.690667pt;}
.ws57{word-spacing:-15.658667pt;}
.ws28{word-spacing:-15.626667pt;}
.ws55{word-spacing:-15.605333pt;}
.ws42{word-spacing:-15.541333pt;}
.ws17{word-spacing:-15.530667pt;}
.ws39{word-spacing:-15.509333pt;}
.ws27{word-spacing:-15.456000pt;}
.ws4e{word-spacing:-15.408000pt;}
.ws38{word-spacing:-15.392000pt;}
.ws83{word-spacing:-15.370667pt;}
.ws46{word-spacing:-15.344000pt;}
.ws16{word-spacing:-15.338667pt;}
.ws1e{word-spacing:-15.328000pt;}
.ws33{word-spacing:-15.322667pt;}
.ws37{word-spacing:-15.306667pt;}
.ws51{word-spacing:-15.301333pt;}
.ws63{word-spacing:-15.280000pt;}
.ws74{word-spacing:-15.274667pt;}
.ws89{word-spacing:-15.242667pt;}
.ws7d{word-spacing:-15.226667pt;}
.ws1d{word-spacing:-15.221333pt;}
.ws12{word-spacing:-15.205333pt;}
.ws70{word-spacing:-15.162667pt;}
.ws56{word-spacing:-15.152000pt;}
.ws2b{word-spacing:-15.136000pt;}
.ws60{word-spacing:-15.109333pt;}
.ws26{word-spacing:-15.050667pt;}
.ws6b{word-spacing:-15.040000pt;}
.ws7e{word-spacing:-15.018667pt;}
.ws6{word-spacing:-14.976000pt;}
.ws18{word-spacing:-14.960000pt;}
.ws5b{word-spacing:-14.954667pt;}
.ws7{word-spacing:-14.944000pt;}
.wsb{word-spacing:-14.922667pt;}
.ws59{word-spacing:-14.906667pt;}
.ws79{word-spacing:-14.896000pt;}
.ws5d{word-spacing:-14.858667pt;}
.ws40{word-spacing:-14.848000pt;}
.ws35{word-spacing:-14.826667pt;}
.ws4a{word-spacing:-14.821333pt;}
.ws15{word-spacing:-14.816000pt;}
.ws6d{word-spacing:-14.805333pt;}
.ws50{word-spacing:-14.800000pt;}
.ws73{word-spacing:-14.794667pt;}
.ws71{word-spacing:-14.789333pt;}
.ws58{word-spacing:-14.778667pt;}
.ws48{word-spacing:-14.773333pt;}
.ws23{word-spacing:-14.768000pt;}
.ws20{word-spacing:-14.757333pt;}
.ws21{word-spacing:-14.752000pt;}
.ws3a{word-spacing:-14.746667pt;}
.ws3d{word-spacing:-14.741333pt;}
.ws13{word-spacing:-14.730667pt;}
.ws5f{word-spacing:-14.720000pt;}
.ws81{word-spacing:-14.714667pt;}
.ws1f{word-spacing:-14.693333pt;}
.ws6e{word-spacing:-14.688000pt;}
.ws30{word-spacing:-14.677333pt;}
.wsf{word-spacing:-14.666667pt;}
.ws4f{word-spacing:-14.661333pt;}
.ws43{word-spacing:-14.656000pt;}
.ws1a{word-spacing:-14.618667pt;}
.ws24{word-spacing:-14.608000pt;}
.ws25{word-spacing:-14.560000pt;}
.ws6f{word-spacing:-14.554667pt;}
.ws1b{word-spacing:-14.533333pt;}
.ws66{word-spacing:-14.528000pt;}
.ws22{word-spacing:-14.522667pt;}
.ws67{word-spacing:-14.517333pt;}
.ws76{word-spacing:-14.512000pt;}
.ws19{word-spacing:-14.501333pt;}
.ws3f{word-spacing:-14.485333pt;}
.ws93{word-spacing:-14.474667pt;}
.ws5a{word-spacing:-14.442667pt;}
.ws2a{word-spacing:-14.432000pt;}
.ws2f{word-spacing:-14.426667pt;}
.ws80{word-spacing:-14.421333pt;}
.ws90{word-spacing:-14.384000pt;}
.wsc{word-spacing:-14.357333pt;}
.ws44{word-spacing:-14.346667pt;}
.ws49{word-spacing:-14.330667pt;}
.ws69{word-spacing:-14.325333pt;}
.ws14{word-spacing:-14.320000pt;}
.ws8d{word-spacing:-14.256000pt;}
.ws88{word-spacing:-14.245333pt;}
.ws34{word-spacing:-14.218667pt;}
.ws29{word-spacing:-14.213333pt;}
.ws4c{word-spacing:-14.133333pt;}
.ws3b{word-spacing:-14.090667pt;}
.ws8f{word-spacing:-14.037333pt;}
.ws5c{word-spacing:-14.021333pt;}
.ws1c{word-spacing:-14.000000pt;}
.ws7c{word-spacing:-13.973333pt;}
.ws87{word-spacing:-13.962667pt;}
.ws8a{word-spacing:-13.920000pt;}
.wsa7{word-spacing:-13.866667pt;}
.ws3e{word-spacing:-13.845333pt;}
.ws41{word-spacing:-13.813333pt;}
.wse{word-spacing:-13.765333pt;}
.wsbc{word-spacing:-13.749333pt;}
.wsad{word-spacing:-13.744000pt;}
.wsa2{word-spacing:-13.706667pt;}
.ws8b{word-spacing:-13.696000pt;}
.wsc3{word-spacing:-13.680000pt;}
.ws62{word-spacing:-13.600000pt;}
.wsa9{word-spacing:-13.530667pt;}
.wsb8{word-spacing:-13.413333pt;}
.ws95{word-spacing:-13.333333pt;}
.ws8e{word-spacing:-13.290667pt;}
.wsc5{word-spacing:-13.258667pt;}
.ws7b{word-spacing:-13.200000pt;}
.wsa6{word-spacing:-13.125333pt;}
.wsc9{word-spacing:-13.040000pt;}
.wsb2{word-spacing:-12.896000pt;}
.ws9c{word-spacing:-12.848000pt;}
.wscc{word-spacing:-12.346667pt;}
.ws9a{word-spacing:-12.181333pt;}
.wsb0{word-spacing:-12.154667pt;}
.ws1{word-spacing:-12.000000pt;}
.wsbf{word-spacing:-11.048000pt;}
.wsb7{word-spacing:-11.036000pt;}
.ws9d{word-spacing:-10.988000pt;}
.wsc6{word-spacing:-10.428000pt;}
.wsbb{word-spacing:-10.412000pt;}
.wsac{word-spacing:-10.408000pt;}
.wsa1{word-spacing:-10.372000pt;}
.ws9e{word-spacing:-10.356000pt;}
.wsc2{word-spacing:-10.344000pt;}
.wsae{word-spacing:-10.284000pt;}
.wsb9{word-spacing:-10.280000pt;}
.wsca{word-spacing:-10.272000pt;}
.wsa0{word-spacing:-10.260000pt;}
.wsa8{word-spacing:-10.200000pt;}
.wsa3{word-spacing:-10.172000pt;}
.wsc1{word-spacing:-10.132000pt;}
.wsb3{word-spacing:-10.000000pt;}
.wsab{word-spacing:-9.940000pt;}
.wscb{word-spacing:-9.888000pt;}
.wsa5{word-spacing:-9.792000pt;}
.ws98{word-spacing:-9.748000pt;}
.wsba{word-spacing:-9.724000pt;}
.wsaa{word-spacing:-9.716000pt;}
.wsc8{word-spacing:-9.708000pt;}
.wsce{word-spacing:-9.656000pt;}
.ws97{word-spacing:-9.652000pt;}
.wsa4{word-spacing:-9.576000pt;}
.wsaf{word-spacing:-9.572000pt;}
.wsbe{word-spacing:-9.536000pt;}
.ws9b{word-spacing:-9.516000pt;}
.wsb1{word-spacing:-9.492000pt;}
.wsc4{word-spacing:-9.340000pt;}
.ws9f{word-spacing:-9.028000pt;}
.wscd{word-spacing:-9.012000pt;}
.ws2{word-spacing:-9.000000pt;}
.ws99{word-spacing:-8.844000pt;}
.wsbd{word-spacing:-8.668000pt;}
.ws72{word-spacing:-1.216000pt;}
.ws78{word-spacing:-0.965333pt;}
.ws61{word-spacing:-0.938667pt;}
.ws8c{word-spacing:-0.821333pt;}
.ws77{word-spacing:-0.741333pt;}
.ws65{word-spacing:-0.730667pt;}
.ws7a{word-spacing:-0.688000pt;}
.ws10{word-spacing:-0.666667pt;}
.ws53{word-spacing:-0.624000pt;}
.ws6a{word-spacing:-0.565333pt;}
.wsa{word-spacing:-0.554667pt;}
.ws68{word-spacing:-0.544000pt;}
.ws94{word-spacing:-0.496000pt;}
.ws36{word-spacing:-0.469333pt;}
.ws32{word-spacing:-0.442667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.005333pt;}
.ws5{word-spacing:0.597333pt;}
.ws54{word-spacing:0.602667pt;}
.ws52{word-spacing:0.709333pt;}
.ws4b{word-spacing:0.720000pt;}
.wsc7{word-spacing:0.757333pt;}
.ws3c{word-spacing:0.826667pt;}
.ws85{word-spacing:0.869333pt;}
.wsc0{word-spacing:0.880000pt;}
.ws2d{word-spacing:0.928000pt;}
.ws92{word-spacing:0.949333pt;}
.ws11{word-spacing:0.986667pt;}
.ws82{word-spacing:1.125333pt;}
.ws2e{word-spacing:1.136000pt;}
.ws45{word-spacing:1.162667pt;}
.ws64{word-spacing:1.173333pt;}
.ws96{word-spacing:1.317333pt;}
.wsb6{word-spacing:1.322667pt;}
.ws75{word-spacing:1.397333pt;}
.ws86{word-spacing:1.472000pt;}
.ws8{word-spacing:1.488000pt;}
.ws0{word-spacing:2.532000pt;}
.wsb5{word-spacing:2.869333pt;}
.wsb4{word-spacing:3.082667pt;}
.ws4{word-spacing:31.738667pt;}
._17{margin-left:-9.602667pt;}
._11{margin-left:-8.152000pt;}
._d{margin-left:-6.520000pt;}
._7{margin-left:-5.368000pt;}
._8{margin-left:-4.109333pt;}
._2{margin-left:-2.685333pt;}
._0{margin-left:-1.317333pt;}
._1{width:1.317333pt;}
._3{width:2.685333pt;}
._c{width:3.922667pt;}
._9{width:5.312000pt;}
._a{width:6.208000pt;}
._f{width:7.248000pt;}
._10{width:8.400000pt;}
._18{width:10.368000pt;}
._15{width:11.968000pt;}
._12{width:13.464000pt;}
._14{width:14.722667pt;}
._4{width:15.781333pt;}
._13{width:17.216000pt;}
._19{width:18.346667pt;}
._16{width:20.341333pt;}
._6{width:42.560000pt;}
._5{width:60.000000pt;}
._b{width:495.893333pt;}
._e{width:598.282667pt;}
.fs2{font-size:34.666667pt;}
.fs3{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:42.587933pt;}
.y4b{bottom:44.254600pt;}
.y9b{bottom:44.587933pt;}
.y74{bottom:44.921267pt;}
.ya8{bottom:46.254600pt;}
.yfb{bottom:47.587933pt;}
.y4a{bottom:59.587933pt;}
.y9a{bottom:59.921267pt;}
.y73{bottom:60.254600pt;}
.ya7{bottom:61.587933pt;}
.yd1{bottom:74.254600pt;}
.y49{bottom:74.921267pt;}
.y99{bottom:75.254600pt;}
.y72{bottom:75.587933pt;}
.ya6{bottom:76.921267pt;}
.yd0{bottom:88.254600pt;}
.yfa{bottom:89.587933pt;}
.y48{bottom:90.254600pt;}
.y98{bottom:90.587933pt;}
.y71{bottom:90.921267pt;}
.y1c{bottom:91.254600pt;}
.ya5{bottom:92.254600pt;}
.ycf{bottom:102.254600pt;}
.yf9{bottom:103.587933pt;}
.y1b{bottom:104.587933pt;}
.y47{bottom:105.587933pt;}
.y97{bottom:105.921267pt;}
.y70{bottom:106.254600pt;}
.ya4{bottom:107.587933pt;}
.yce{bottom:116.254600pt;}
.yf8{bottom:117.587933pt;}
.y1a{bottom:117.921267pt;}
.y46{bottom:120.921267pt;}
.y96{bottom:121.254600pt;}
.y6f{bottom:121.587933pt;}
.ya3{bottom:122.921267pt;}
.ycd{bottom:130.254600pt;}
.y19{bottom:131.254600pt;}
.yf7{bottom:131.587933pt;}
.y45{bottom:136.254600pt;}
.y95{bottom:136.587933pt;}
.y6e{bottom:136.921267pt;}
.ya2{bottom:138.254600pt;}
.ycc{bottom:144.254600pt;}
.y18{bottom:144.587933pt;}
.yf6{bottom:145.587933pt;}
.y44{bottom:151.587933pt;}
.y94{bottom:151.921267pt;}
.y6d{bottom:152.254600pt;}
.ya1{bottom:153.587933pt;}
.y17{bottom:157.921267pt;}
.ycb{bottom:158.254600pt;}
.yf5{bottom:159.587933pt;}
.y43{bottom:166.921267pt;}
.y93{bottom:167.254600pt;}
.y6c{bottom:167.587933pt;}
.ya0{bottom:168.921267pt;}
.y16{bottom:171.254600pt;}
.yca{bottom:172.254600pt;}
.yf4{bottom:173.587933pt;}
.y42{bottom:182.254600pt;}
.y92{bottom:182.587933pt;}
.y6b{bottom:182.921267pt;}
.y9f{bottom:184.254600pt;}
.y15{bottom:184.587933pt;}
.yc9{bottom:186.254600pt;}
.yf3{bottom:187.587933pt;}
.y41{bottom:197.587933pt;}
.y14{bottom:197.921267pt;}
.y6a{bottom:198.254600pt;}
.yc8{bottom:200.254600pt;}
.yf2{bottom:201.587933pt;}
.y9e{bottom:207.254600pt;}
.y13{bottom:211.254600pt;}
.y40{bottom:212.921267pt;}
.y91{bottom:213.254600pt;}
.y69{bottom:213.587933pt;}
.yc7{bottom:214.254600pt;}
.yf1{bottom:215.587933pt;}
.y12{bottom:224.587933pt;}
.y3f{bottom:228.254600pt;}
.y90{bottom:228.587933pt;}
.y68{bottom:228.921267pt;}
.yf0{bottom:229.587933pt;}
.yc6{bottom:242.254600pt;}
.y3e{bottom:243.587933pt;}
.y67{bottom:244.254600pt;}
.y11{bottom:251.254600pt;}
.yc5{bottom:256.254600pt;}
.yef{bottom:257.587933pt;}
.y3d{bottom:258.921267pt;}
.y8f{bottom:259.254600pt;}
.y66{bottom:259.587933pt;}
.yc4{bottom:270.254600pt;}
.yee{bottom:271.587933pt;}
.y3c{bottom:274.254600pt;}
.y8e{bottom:274.587933pt;}
.y65{bottom:274.921267pt;}
.y10{bottom:283.254600pt;}
.yc3{bottom:284.254600pt;}
.yed{bottom:285.587933pt;}
.y3b{bottom:289.587933pt;}
.y8d{bottom:289.921267pt;}
.y64{bottom:290.254600pt;}
.yf{bottom:296.587933pt;}
.yc2{bottom:298.254600pt;}
.yec{bottom:299.587933pt;}
.y3a{bottom:304.921267pt;}
.y8c{bottom:305.254600pt;}
.y63{bottom:305.587933pt;}
.yc1{bottom:312.254600pt;}
.yeb{bottom:313.587933pt;}
.ye{bottom:315.254600pt;}
.y39{bottom:320.254600pt;}
.y8b{bottom:320.587933pt;}
.y62{bottom:320.921267pt;}
.yc0{bottom:326.254600pt;}
.yea{bottom:327.587933pt;}
.yd{bottom:328.587933pt;}
.y8a{bottom:335.921267pt;}
.y61{bottom:336.254600pt;}
.ybf{bottom:340.254600pt;}
.ye9{bottom:341.587933pt;}
.yc{bottom:341.921267pt;}
.y38{bottom:343.254600pt;}
.y89{bottom:351.254600pt;}
.y60{bottom:351.587933pt;}
.ybe{bottom:354.254600pt;}
.yb{bottom:355.254600pt;}
.ye8{bottom:355.587933pt;}
.y88{bottom:366.587933pt;}
.y5f{bottom:366.921267pt;}
.ybd{bottom:368.254600pt;}
.ya{bottom:368.587933pt;}
.ye7{bottom:369.587933pt;}
.y9{bottom:381.921267pt;}
.y5e{bottom:382.254600pt;}
.ye6{bottom:383.587933pt;}
.y8{bottom:395.254600pt;}
.ybc{bottom:396.254600pt;}
.y37{bottom:396.921267pt;}
.y87{bottom:397.254600pt;}
.y5d{bottom:397.587933pt;}
.y7{bottom:408.587933pt;}
.y36{bottom:410.254600pt;}
.ye5{bottom:411.587933pt;}
.y86{bottom:412.587933pt;}
.y5c{bottom:412.921267pt;}
.y6{bottom:421.921267pt;}
.ybb{bottom:424.254600pt;}
.ye4{bottom:425.587933pt;}
.y85{bottom:427.921267pt;}
.y5b{bottom:428.254600pt;}
.y35{bottom:428.921267pt;}
.y5{bottom:435.254600pt;}
.yba{bottom:438.254600pt;}
.ye3{bottom:439.587933pt;}
.y34{bottom:442.254600pt;}
.y84{bottom:443.254600pt;}
.y5a{bottom:443.587933pt;}
.y4{bottom:448.587933pt;}
.y9c{bottom:451.254600pt;}
.yb9{bottom:452.254600pt;}
.ye2{bottom:453.587933pt;}
.y33{bottom:455.587933pt;}
.y83{bottom:458.587933pt;}
.y59{bottom:458.921267pt;}
.y3{bottom:461.921267pt;}
.yb8{bottom:466.254600pt;}
.ye1{bottom:467.587933pt;}
.y32{bottom:468.921267pt;}
.y82{bottom:473.921267pt;}
.y58{bottom:474.254600pt;}
.y2{bottom:475.254600pt;}
.yb7{bottom:480.254600pt;}
.ye0{bottom:481.587933pt;}
.y31{bottom:482.254600pt;}
.y81{bottom:489.254600pt;}
.y57{bottom:489.587933pt;}
.yb6{bottom:494.254600pt;}
.y30{bottom:495.587933pt;}
.y9d{bottom:497.254600pt;}
.y1{bottom:501.921267pt;}
.y80{bottom:504.587933pt;}
.y56{bottom:504.921267pt;}
.yb5{bottom:508.254600pt;}
.y2f{bottom:508.921267pt;}
.ydf{bottom:509.587933pt;}
.y7f{bottom:519.921267pt;}
.y55{bottom:520.254600pt;}
.y2e{bottom:522.254600pt;}
.yde{bottom:523.587933pt;}
.y7e{bottom:535.254600pt;}
.y2d{bottom:535.587933pt;}
.yb4{bottom:536.254600pt;}
.ydd{bottom:537.587933pt;}
.y2c{bottom:548.921267pt;}
.yb3{bottom:550.254600pt;}
.y7d{bottom:550.587933pt;}
.y54{bottom:550.921267pt;}
.ydc{bottom:551.587933pt;}
.y2b{bottom:562.254600pt;}
.yb2{bottom:564.254600pt;}
.ydb{bottom:565.587933pt;}
.y7c{bottom:565.921267pt;}
.y53{bottom:566.254600pt;}
.y2a{bottom:575.587933pt;}
.yb1{bottom:578.254600pt;}
.yda{bottom:579.587933pt;}
.y7b{bottom:581.254600pt;}
.y52{bottom:581.587933pt;}
.y29{bottom:588.921267pt;}
.yb0{bottom:592.254600pt;}
.yd9{bottom:593.587933pt;}
.y51{bottom:596.921267pt;}
.y7a{bottom:604.254600pt;}
.yaf{bottom:606.254600pt;}
.yd8{bottom:607.587933pt;}
.y50{bottom:612.254600pt;}
.y28{bottom:615.587933pt;}
.y78{bottom:619.921267pt;}
.yae{bottom:620.254600pt;}
.yd7{bottom:621.587933pt;}
.y4f{bottom:627.587933pt;}
.y79{bottom:631.921267pt;}
.yad{bottom:634.254600pt;}
.yd6{bottom:635.587933pt;}
.y4e{bottom:642.921267pt;}
.y27{bottom:647.587933pt;}
.yac{bottom:648.254600pt;}
.yd5{bottom:649.587933pt;}
.y77{bottom:658.254600pt;}
.y26{bottom:660.921267pt;}
.y21{bottom:661.587933pt;}
.yab{bottom:662.254600pt;}
.yd4{bottom:663.587933pt;}
.y4d{bottom:665.921267pt;}
.y76{bottom:673.587933pt;}
.yaa{bottom:676.254600pt;}
.y20{bottom:677.587933pt;}
.y25{bottom:679.587933pt;}
.y75{bottom:688.921267pt;}
.ya9{bottom:690.254600pt;}
.yd3{bottom:691.587933pt;}
.y24{bottom:692.921267pt;}
.y4c{bottom:704.254600pt;}
.yd2{bottom:705.587933pt;}
.y23{bottom:706.254600pt;}
.y1f{bottom:717.587933pt;}
.y22{bottom:719.587933pt;}
.y1e{bottom:762.921267pt;}
.h5{height:45.525333pt;}
.h4{height:51.216000pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.ha{height:56.906667pt;}
.hb{height:57.813333pt;}
.h8{height:62.597333pt;}
.h9{height:63.594667pt;}
.h7{height:68.288000pt;}
.h6{height:91.050667pt;}
.h1{height:808.666667pt;}
.h0{height:808.965880pt;}
.w1{width:528.666667pt;}
.w0{width:528.766400pt;}
.x0{left:0.000000pt;}
.x1{left:45.216533pt;}
.x4{left:58.108533pt;}
.x3{left:64.960533pt;}
.x2{left:365.216533pt;}
}




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