
    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_6a31095750e24a81ec102a71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_36ad6bedc3c53a46e6aa4d49.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_e6e46b26a3dc72fc81fc8ad6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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_9819d065bda4aaaa2ef1eae7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_be12706081c9806dbd089b12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a181a083aab6390d3943b5fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dca7f976ae00c6ae9352bb08.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b41d1c853ba9aa17ff3c3b26.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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:ff9;src:url('chunks/assets/font_91658eabb636b90b34b8371b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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:ffa;src:url('chunks/assets/font_86024f81a47b0927f174493b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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:ffb;src:url('chunks/assets/font_b6adb4c7e3db000e1a278976.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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:ffc;src:url('chunks/assets/font_dae7ea28d5aacf1886f09f7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.m1{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);}
.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;}
.v1{vertical-align:3.609600px;}
.ls1{letter-spacing:-2.160000px;}
.ls6{letter-spacing:-1.680000px;}
.ls2{letter-spacing:-1.620000px;}
.ls8{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.660000px;}
.ls5{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:25.376400px;}
.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;}
}
.ws17{word-spacing:-18.348000px;}
.ws12{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws23{word-spacing:-3.960000px;}
.ws1f{word-spacing:-3.000000px;}
.wsf{word-spacing:-2.256000px;}
.ws24{word-spacing:-1.860000px;}
.ws1b{word-spacing:-1.140000px;}
.ws5{word-spacing:-0.702000px;}
.ws3{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.600000px;}
.ws19{word-spacing:0.660000px;}
.ws22{word-spacing:0.900000px;}
.ws15{word-spacing:1.020000px;}
.ws1a{word-spacing:1.200000px;}
.ws6{word-spacing:1.620000px;}
.ws21{word-spacing:1.680000px;}
.ws4{word-spacing:1.728000px;}
.ws1e{word-spacing:1.860000px;}
.ws14{word-spacing:2.220000px;}
.wsb{word-spacing:2.304000px;}
.ws1c{word-spacing:2.820000px;}
.wsa{word-spacing:3.168000px;}
.ws1d{word-spacing:3.900000px;}
.wsc{word-spacing:4.512000px;}
.ws16{word-spacing:4.560000px;}
.ws25{word-spacing:4.740000px;}
.ws8{word-spacing:5.664000px;}
.ws10{word-spacing:5.760000px;}
.ws18{word-spacing:6.420000px;}
.ws13{word-spacing:6.720000px;}
.wse{word-spacing:8.496000px;}
.ws20{word-spacing:10.860000px;}
.ws9{word-spacing:12.864000px;}
.wsd{word-spacing:13.296000px;}
.ws7{word-spacing:22.032000px;}
.ws2{word-spacing:200.988000px;}
._1{margin-left:-210.114000px;}
._0{margin-left:-200.934000px;}
._15{margin-left:-18.297000px;}
._1c{margin-left:-16.979400px;}
._16{margin-left:-7.674000px;}
._1b{margin-left:-6.300000px;}
._7{margin-left:-5.238000px;}
._1e{margin-left:-4.200000px;}
._a{margin-left:-3.186000px;}
._8{margin-left:-2.160000px;}
._4{margin-left:-1.134000px;}
._5{width:1.080000px;}
._3{width:2.160000px;}
._6{width:3.888000px;}
._9{width:5.778000px;}
._f{width:6.864000px;}
._b{width:7.968000px;}
._c{width:9.696000px;}
._1f{width:10.819200px;}
._20{width:11.973600px;}
._d{width:13.632000px;}
._10{width:15.840000px;}
._e{width:19.632000px;}
._1a{width:23.419200px;}
._17{width:25.039200px;}
._14{width:34.039200px;}
._19{width:40.039200px;}
._13{width:49.020000px;}
._1d{width:50.220000px;}
._11{width:63.168000px;}
._18{width:70.020000px;}
._2{width:200.988000px;}
._12{width:204.330000px;}
.fc3{color:transparent;}
.fc1{color:rgb(79,76,77);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:20.879400px;}
.y53{bottom:21.056400px;}
.y34{bottom:37.841100px;}
.y181{bottom:61.032750px;}
.y17f{bottom:66.944550px;}
.y33{bottom:69.333600px;}
.y180{bottom:79.032750px;}
.y17e{bottom:84.944550px;}
.y32{bottom:85.533600px;}
.ye9{bottom:86.474400px;}
.yf3{bottom:94.924500px;}
.ya4{bottom:97.032750px;}
.y150{bottom:100.026900px;}
.y31{bottom:101.733600px;}
.y17d{bottom:102.944550px;}
.ye8{bottom:104.474400px;}
.y144{bottom:115.018050px;}
.ya3{bottom:115.032750px;}
.yf2{bottom:115.924500px;}
.y30{bottom:117.933750px;}
.y17c{bottom:120.944550px;}
.y14f{bottom:121.026900px;}
.yb4{bottom:121.570200px;}
.ye7{bottom:122.474400px;}
.y143{bottom:133.018050px;}
.ya2{bottom:133.032750px;}
.yf1{bottom:136.924500px;}
.y7a{bottom:140.141700px;}
.y14e{bottom:142.026900px;}
.yb3{bottom:142.570200px;}
.y2f{bottom:142.637550px;}
.y142{bottom:151.018050px;}
.ya1{bottom:151.032750px;}
.y17b{bottom:156.944550px;}
.yf0{bottom:157.924500px;}
.y79{bottom:158.141700px;}
.ye6{bottom:158.474400px;}
.y14d{bottom:163.026900px;}
.yb2{bottom:163.570200px;}
.y141{bottom:169.018050px;}
.ya0{bottom:169.032750px;}
.y17a{bottom:174.944550px;}
.y78{bottom:176.141700px;}
.ye5{bottom:176.474400px;}
.yef{bottom:178.924500px;}
.y52{bottom:179.313900px;}
.y2e{bottom:179.677050px;}
.y14c{bottom:184.026900px;}
.yb1{bottom:184.570200px;}
.y140{bottom:187.018050px;}
.y9f{bottom:187.032750px;}
.y101{bottom:190.428450px;}
.y51{bottom:192.813900px;}
.y179{bottom:192.944550px;}
.y2d{bottom:193.177050px;}
.y77{bottom:194.141700px;}
.ye4{bottom:194.474400px;}
.yee{bottom:199.924500px;}
.y13f{bottom:205.018050px;}
.y14b{bottom:205.026900px;}
.y9e{bottom:205.032750px;}
.yb0{bottom:205.570200px;}
.y50{bottom:206.313900px;}
.y2c{bottom:206.677050px;}
.y178{bottom:210.944550px;}
.y100{bottom:211.428450px;}
.y76{bottom:212.141700px;}
.ye3{bottom:212.474400px;}
.yed{bottom:220.924500px;}
.y13e{bottom:223.018050px;}
.y9d{bottom:223.032750px;}
.y14a{bottom:226.026900px;}
.yaf{bottom:226.570200px;}
.y177{bottom:228.944550px;}
.y75{bottom:230.141700px;}
.ye2{bottom:230.474400px;}
.yff{bottom:232.428450px;}
.y2b{bottom:233.677050px;}
.y13d{bottom:241.018050px;}
.yf6{bottom:241.032750px;}
.yec{bottom:241.924500px;}
.y4f{bottom:246.813900px;}
.y149{bottom:247.026900px;}
.y2a{bottom:247.177050px;}
.yae{bottom:247.570200px;}
.y74{bottom:248.141700px;}
.ye1{bottom:248.474400px;}
.yfe{bottom:253.428450px;}
.y9c{bottom:259.032750px;}
.y4e{bottom:260.313900px;}
.y29{bottom:260.677050px;}
.yeb{bottom:262.924500px;}
.y176{bottom:264.944550px;}
.ye0{bottom:266.474400px;}
.y148{bottom:268.026900px;}
.yad{bottom:268.570200px;}
.y4d{bottom:273.813900px;}
.y28{bottom:274.177050px;}
.yfd{bottom:274.428450px;}
.y13c{bottom:277.018050px;}
.y9b{bottom:277.032750px;}
.y175{bottom:282.944550px;}
.yea{bottom:283.924500px;}
.y73{bottom:284.141700px;}
.ydf{bottom:284.474400px;}
.y4c{bottom:287.313900px;}
.y27{bottom:287.677050px;}
.y147{bottom:289.026900px;}
.yac{bottom:289.570200px;}
.y13b{bottom:295.018050px;}
.y9a{bottom:295.032750px;}
.yfc{bottom:295.428450px;}
.y4b{bottom:300.813900px;}
.y174{bottom:300.944550px;}
.y26{bottom:301.177050px;}
.y72{bottom:302.141700px;}
.yab{bottom:310.570200px;}
.y99{bottom:313.032750px;}
.y4a{bottom:314.313900px;}
.y25{bottom:314.677050px;}
.yfb{bottom:316.428450px;}
.y173{bottom:318.944550px;}
.y71{bottom:320.141700px;}
.yde{bottom:320.474400px;}
.y49{bottom:327.813900px;}
.y24{bottom:328.177050px;}
.y13a{bottom:331.018050px;}
.y98{bottom:331.032750px;}
.yaa{bottom:331.570200px;}
.y172{bottom:336.944550px;}
.yfa{bottom:337.428450px;}
.ydd{bottom:338.474400px;}
.y48{bottom:341.313900px;}
.y23{bottom:341.677050px;}
.y139{bottom:349.018050px;}
.yba{bottom:349.032750px;}
.ya9{bottom:352.570200px;}
.y47{bottom:354.813900px;}
.y171{bottom:354.944550px;}
.y22{bottom:355.177050px;}
.y70{bottom:356.141700px;}
.ydc{bottom:356.474400px;}
.yf9{bottom:358.428450px;}
.y138{bottom:367.018050px;}
.y97{bottom:367.032750px;}
.y46{bottom:368.313900px;}
.y21{bottom:368.677050px;}
.ya8{bottom:373.570200px;}
.y6f{bottom:374.141700px;}
.ydb{bottom:374.474400px;}
.yf8{bottom:379.428450px;}
.y45{bottom:381.813900px;}
.y20{bottom:382.177050px;}
.y137{bottom:385.018050px;}
.y96{bottom:385.032750px;}
.y170{bottom:390.944550px;}
.y6e{bottom:392.141700px;}
.yda{bottom:392.474400px;}
.ya7{bottom:394.570200px;}
.y44{bottom:395.313900px;}
.y1f{bottom:395.677050px;}
.y158{bottom:400.121400px;}
.yf7{bottom:400.428450px;}
.y109{bottom:401.184450px;}
.y136{bottom:403.018050px;}
.y95{bottom:403.032750px;}
.y43{bottom:408.813900px;}
.y16f{bottom:408.944550px;}
.y1e{bottom:409.177050px;}
.y6d{bottom:410.141700px;}
.yd9{bottom:410.474400px;}
.ya6{bottom:415.570200px;}
.y135{bottom:421.018050px;}
.y94{bottom:421.032750px;}
.y157{bottom:421.121400px;}
.y108{bottom:422.184450px;}
.y42{bottom:422.313900px;}
.y1d{bottom:422.677050px;}
.y16e{bottom:426.944550px;}
.y6c{bottom:428.141700px;}
.y41{bottom:435.813900px;}
.y1c{bottom:436.177050px;}
.ya5{bottom:436.570200px;}
.y134{bottom:439.018050px;}
.y93{bottom:439.032750px;}
.y156{bottom:442.121400px;}
.y107{bottom:443.184450px;}
.y16d{bottom:444.944550px;}
.y6b{bottom:446.141700px;}
.yd8{bottom:446.474400px;}
.y40{bottom:449.313900px;}
.y1b{bottom:449.677050px;}
.y133{bottom:457.018050px;}
.yb9{bottom:457.032750px;}
.y3f{bottom:462.813900px;}
.y155{bottom:463.121400px;}
.y1a{bottom:463.177050px;}
.y6a{bottom:464.141700px;}
.y106{bottom:464.184450px;}
.yc4{bottom:466.546650px;}
.y132{bottom:475.018050px;}
.y92{bottom:475.032750px;}
.y3e{bottom:476.313900px;}
.y19{bottom:476.677050px;}
.y16c{bottom:480.944550px;}
.y69{bottom:482.141700px;}
.yd7{bottom:482.474400px;}
.y154{bottom:484.121400px;}
.y105{bottom:485.184450px;}
.yc3{bottom:487.546650px;}
.y131{bottom:493.018050px;}
.y91{bottom:493.032750px;}
.y16b{bottom:498.944550px;}
.y68{bottom:500.141700px;}
.yd6{bottom:500.474400px;}
.y153{bottom:505.121400px;}
.y104{bottom:506.184450px;}
.y3d{bottom:507.813900px;}
.y18{bottom:508.177050px;}
.yc2{bottom:508.546650px;}
.y90{bottom:511.032750px;}
.y16a{bottom:516.944550px;}
.y67{bottom:518.141700px;}
.yd5{bottom:518.474400px;}
.y3c{bottom:525.813900px;}
.y152{bottom:526.121400px;}
.y17{bottom:526.177050px;}
.y103{bottom:527.184450px;}
.y130{bottom:529.018050px;}
.y8f{bottom:529.032750px;}
.yc1{bottom:529.546650px;}
.y169{bottom:534.944550px;}
.yd4{bottom:536.474400px;}
.y3b{bottom:543.813900px;}
.y16{bottom:544.177050px;}
.y8e{bottom:547.032750px;}
.y151{bottom:547.121400px;}
.y102{bottom:548.184450px;}
.yc0{bottom:550.546650px;}
.y185{bottom:552.944550px;}
.y66{bottom:554.141700px;}
.yd3{bottom:554.474400px;}
.y3a{bottom:561.813900px;}
.y15{bottom:562.177050px;}
.y112{bottom:564.679200px;}
.y12f{bottom:565.018050px;}
.y8d{bottom:565.032750px;}
.y168{bottom:570.944550px;}
.ybf{bottom:571.546650px;}
.y65{bottom:572.141700px;}
.y146{bottom:572.232750px;}
.yd2{bottom:572.474400px;}
.y11d{bottom:576.837900px;}
.y39{bottom:579.813900px;}
.y14{bottom:580.177050px;}
.y12e{bottom:583.018050px;}
.yb8{bottom:583.032750px;}
.y111{bottom:585.679200px;}
.y167{bottom:588.944550px;}
.y64{bottom:590.141700px;}
.yd1{bottom:590.474400px;}
.ybe{bottom:592.546650px;}
.y145{bottom:597.432750px;}
.y11c{bottom:597.837900px;}
.y8c{bottom:601.032750px;}
.yf5{bottom:604.632750px;}
.y110{bottom:606.679200px;}
.y166{bottom:606.944550px;}
.y12{bottom:612.327600px;}
.ybd{bottom:613.546650px;}
.y11b{bottom:618.837900px;}
.y12d{bottom:619.018050px;}
.y8b{bottom:619.032750px;}
.y184{bottom:624.944550px;}
.y63{bottom:626.141700px;}
.y10f{bottom:627.679200px;}
.yd0{bottom:633.674400px;}
.ybc{bottom:634.546650px;}
.y12c{bottom:637.018050px;}
.y8a{bottom:637.032750px;}
.y11a{bottom:639.837900px;}
.y11{bottom:642.327600px;}
.y165{bottom:642.944550px;}
.y62{bottom:644.141700px;}
.y10e{bottom:648.679200px;}
.y89{bottom:655.032750px;}
.ybb{bottom:655.546650px;}
.y10{bottom:657.327600px;}
.y119{bottom:660.837900px;}
.y164{bottom:660.944550px;}
.y61{bottom:662.141700px;}
.yf4{bottom:669.432750px;}
.y10d{bottom:669.679200px;}
.yf{bottom:672.327600px;}
.y12b{bottom:673.018050px;}
.y88{bottom:673.032750px;}
.y163{bottom:678.944550px;}
.y60{bottom:680.141700px;}
.y118{bottom:681.837900px;}
.ye{bottom:687.327600px;}
.y10c{bottom:690.679200px;}
.y12a{bottom:691.018050px;}
.y87{bottom:691.032750px;}
.y162{bottom:696.944550px;}
.y5f{bottom:698.141700px;}
.yb7{bottom:698.232750px;}
.yd{bottom:702.327600px;}
.y117{bottom:702.837900px;}
.y13{bottom:708.588900px;}
.y129{bottom:709.018050px;}
.y86{bottom:709.032750px;}
.ycf{bottom:709.274400px;}
.y10b{bottom:711.679200px;}
.y161{bottom:714.944550px;}
.y5e{bottom:716.141700px;}
.yc{bottom:717.327600px;}
.yb6{bottom:723.432750px;}
.y116{bottom:723.837900px;}
.y128{bottom:727.018050px;}
.y85{bottom:727.032750px;}
.yce{bottom:727.274400px;}
.yb{bottom:732.327600px;}
.y10a{bottom:732.679200px;}
.y160{bottom:732.944550px;}
.y5d{bottom:734.141700px;}
.y115{bottom:744.837900px;}
.y127{bottom:745.018050px;}
.y84{bottom:745.032750px;}
.ycd{bottom:745.274400px;}
.ya{bottom:747.327600px;}
.y15f{bottom:750.944550px;}
.y9{bottom:762.327600px;}
.y126{bottom:763.018050px;}
.y83{bottom:763.032750px;}
.y15e{bottom:768.944550px;}
.y5c{bottom:770.141700px;}
.y8{bottom:777.327600px;}
.y125{bottom:781.018050px;}
.y82{bottom:781.032750px;}
.ycc{bottom:781.274400px;}
.y114{bottom:784.632750px;}
.y15d{bottom:786.944550px;}
.y5b{bottom:788.141700px;}
.y124{bottom:799.018050px;}
.yb5{bottom:799.032750px;}
.ycb{bottom:799.274400px;}
.y38{bottom:802.257150px;}
.y15c{bottom:804.944550px;}
.y5a{bottom:806.141700px;}
.y113{bottom:806.232750px;}
.y81{bottom:817.032750px;}
.yca{bottom:817.274400px;}
.y183{bottom:822.944550px;}
.y59{bottom:824.141700px;}
.y7{bottom:830.035500px;}
.y37{bottom:833.116650px;}
.y123{bottom:835.018050px;}
.y80{bottom:835.032750px;}
.yc9{bottom:835.274400px;}
.y15b{bottom:840.944550px;}
.y58{bottom:842.141700px;}
.y36{bottom:851.116650px;}
.y122{bottom:853.018050px;}
.y7f{bottom:853.032750px;}
.yc8{bottom:853.274400px;}
.y6{bottom:858.535500px;}
.y182{bottom:858.944550px;}
.y57{bottom:860.141700px;}
.y35{bottom:869.116650px;}
.y121{bottom:871.018050px;}
.y7e{bottom:871.032750px;}
.yc7{bottom:871.274400px;}
.y15a{bottom:876.944550px;}
.y56{bottom:878.141700px;}
.y5{bottom:887.035500px;}
.y120{bottom:889.018050px;}
.y7d{bottom:889.032750px;}
.yc6{bottom:889.274400px;}
.y11f{bottom:907.018050px;}
.y7c{bottom:907.032750px;}
.y4{bottom:915.535500px;}
.y159{bottom:920.144550px;}
.y55{bottom:920.439300px;}
.y11e{bottom:925.018050px;}
.y7b{bottom:925.032750px;}
.yc5{bottom:925.274400px;}
.y2{bottom:968.124300px;}
.y3{bottom:968.874450px;}
.y54{bottom:971.058450px;}
.ha{height:28.393066px;}
.h2{height:30.577148px;}
.h9{height:33.328125px;}
.h5{height:37.494141px;}
.h6{height:37.520508px;}
.h3{height:39.313477px;}
.h10{height:41.074219px;}
.hd{height:41.660156px;}
.hc{height:41.689453px;}
.h8{height:43.681641px;}
.he{height:48.049805px;}
.h7{height:52.417969px;}
.hf{height:61.154297px;}
.hb{height:64.763897px;}
.h4{height:78.626953px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:21.259800px;}
.x22{left:26.482050px;}
.x20{left:28.310850px;}
.x29{left:30.192000px;}
.x1e{left:31.952550px;}
.x2a{left:34.443600px;}
.x21{left:36.520650px;}
.x1d{left:40.202550px;}
.x18{left:41.273550px;}
.x2{left:42.519750px;}
.x1f{left:44.810850px;}
.x25{left:45.849750px;}
.x13{left:47.678550px;}
.x2b{left:49.114800px;}
.x24{left:50.442000px;}
.x8{left:52.116300px;}
.x1a{left:53.197350px;}
.x15{left:55.936650px;}
.x7{left:63.798300px;}
.xe{left:68.740200px;}
.x16{left:71.542350px;}
.x28{left:73.303200px;}
.x12{left:76.134600px;}
.x19{left:83.458050px;}
.x27{left:85.234950px;}
.x1c{left:88.824300px;}
.x23{left:91.708050px;}
.xd{left:93.543300px;}
.x17{left:98.129250px;}
.x2c{left:102.954750px;}
.xf{left:114.803100px;}
.x14{left:119.237700px;}
.x26{left:136.063050px;}
.xc{left:140.314950px;}
.x5{left:156.096150px;}
.x3{left:167.815500px;}
.x4{left:168.878550px;}
.x10{left:174.330750px;}
.x11{left:195.590550px;}
.x31{left:201.782700px;}
.x30{left:255.674400px;}
.x32{left:275.632800px;}
.x2f{left:291.379950px;}
.x9{left:406.136700px;}
.x36{left:409.746600px;}
.xa{left:413.366700px;}
.x34{left:418.089000px;}
.x33{left:421.392150px;}
.x2d{left:423.794400px;}
.x2e{left:438.962850px;}
.x35{left:458.108400px;}
.x1b{left:561.259800px;}
.x6{left:563.440200px;}
.xb{left:686.978400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.208533pt;}
.ls1{letter-spacing:-1.920000pt;}
.ls6{letter-spacing:-1.493333pt;}
.ls2{letter-spacing:-1.440000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:22.556800pt;}
.ws17{word-spacing:-16.309333pt;}
.ws12{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws23{word-spacing:-3.520000pt;}
.ws1f{word-spacing:-2.666667pt;}
.wsf{word-spacing:-2.005333pt;}
.ws24{word-spacing:-1.653333pt;}
.ws1b{word-spacing:-1.013333pt;}
.ws5{word-spacing:-0.624000pt;}
.ws3{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.533333pt;}
.ws19{word-spacing:0.586667pt;}
.ws22{word-spacing:0.800000pt;}
.ws15{word-spacing:0.906667pt;}
.ws1a{word-spacing:1.066667pt;}
.ws6{word-spacing:1.440000pt;}
.ws21{word-spacing:1.493333pt;}
.ws4{word-spacing:1.536000pt;}
.ws1e{word-spacing:1.653333pt;}
.ws14{word-spacing:1.973333pt;}
.wsb{word-spacing:2.048000pt;}
.ws1c{word-spacing:2.506667pt;}
.wsa{word-spacing:2.816000pt;}
.ws1d{word-spacing:3.466667pt;}
.wsc{word-spacing:4.010667pt;}
.ws16{word-spacing:4.053333pt;}
.ws25{word-spacing:4.213333pt;}
.ws8{word-spacing:5.034667pt;}
.ws10{word-spacing:5.120000pt;}
.ws18{word-spacing:5.706667pt;}
.ws13{word-spacing:5.973333pt;}
.wse{word-spacing:7.552000pt;}
.ws20{word-spacing:9.653333pt;}
.ws9{word-spacing:11.434667pt;}
.wsd{word-spacing:11.818667pt;}
.ws7{word-spacing:19.584000pt;}
.ws2{word-spacing:178.656000pt;}
._1{margin-left:-186.768000pt;}
._0{margin-left:-178.608000pt;}
._15{margin-left:-16.264000pt;}
._1c{margin-left:-15.092800pt;}
._16{margin-left:-6.821333pt;}
._1b{margin-left:-5.600000pt;}
._7{margin-left:-4.656000pt;}
._1e{margin-left:-3.733333pt;}
._a{margin-left:-2.832000pt;}
._8{margin-left:-1.920000pt;}
._4{margin-left:-1.008000pt;}
._5{width:0.960000pt;}
._3{width:1.920000pt;}
._6{width:3.456000pt;}
._9{width:5.136000pt;}
._f{width:6.101333pt;}
._b{width:7.082667pt;}
._c{width:8.618667pt;}
._1f{width:9.617067pt;}
._20{width:10.643200pt;}
._d{width:12.117333pt;}
._10{width:14.080000pt;}
._e{width:17.450667pt;}
._1a{width:20.817067pt;}
._17{width:22.257067pt;}
._14{width:30.257067pt;}
._19{width:35.590400pt;}
._13{width:43.573333pt;}
._1d{width:44.640000pt;}
._11{width:56.149333pt;}
._18{width:62.240000pt;}
._2{width:178.656000pt;}
._12{width:181.626667pt;}
.fs6{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.559467pt;}
.y53{bottom:18.716800pt;}
.y34{bottom:33.636533pt;}
.y181{bottom:54.251333pt;}
.y17f{bottom:59.506267pt;}
.y33{bottom:61.629867pt;}
.y180{bottom:70.251333pt;}
.y17e{bottom:75.506267pt;}
.y32{bottom:76.029867pt;}
.ye9{bottom:76.866133pt;}
.yf3{bottom:84.377333pt;}
.ya4{bottom:86.251333pt;}
.y150{bottom:88.912800pt;}
.y31{bottom:90.429867pt;}
.y17d{bottom:91.506267pt;}
.ye8{bottom:92.866133pt;}
.y144{bottom:102.238267pt;}
.ya3{bottom:102.251333pt;}
.yf2{bottom:103.044000pt;}
.y30{bottom:104.830000pt;}
.y17c{bottom:107.506267pt;}
.y14f{bottom:107.579467pt;}
.yb4{bottom:108.062400pt;}
.ye7{bottom:108.866133pt;}
.y143{bottom:118.238267pt;}
.ya2{bottom:118.251333pt;}
.yf1{bottom:121.710667pt;}
.y7a{bottom:124.570400pt;}
.y14e{bottom:126.246133pt;}
.yb3{bottom:126.729067pt;}
.y2f{bottom:126.788933pt;}
.y142{bottom:134.238267pt;}
.ya1{bottom:134.251333pt;}
.y17b{bottom:139.506267pt;}
.yf0{bottom:140.377333pt;}
.y79{bottom:140.570400pt;}
.ye6{bottom:140.866133pt;}
.y14d{bottom:144.912800pt;}
.yb2{bottom:145.395733pt;}
.y141{bottom:150.238267pt;}
.ya0{bottom:150.251333pt;}
.y17a{bottom:155.506267pt;}
.y78{bottom:156.570400pt;}
.ye5{bottom:156.866133pt;}
.yef{bottom:159.044000pt;}
.y52{bottom:159.390133pt;}
.y2e{bottom:159.712933pt;}
.y14c{bottom:163.579467pt;}
.yb1{bottom:164.062400pt;}
.y140{bottom:166.238267pt;}
.y9f{bottom:166.251333pt;}
.y101{bottom:169.269733pt;}
.y51{bottom:171.390133pt;}
.y179{bottom:171.506267pt;}
.y2d{bottom:171.712933pt;}
.y77{bottom:172.570400pt;}
.ye4{bottom:172.866133pt;}
.yee{bottom:177.710667pt;}
.y13f{bottom:182.238267pt;}
.y14b{bottom:182.246133pt;}
.y9e{bottom:182.251333pt;}
.yb0{bottom:182.729067pt;}
.y50{bottom:183.390133pt;}
.y2c{bottom:183.712933pt;}
.y178{bottom:187.506267pt;}
.y100{bottom:187.936400pt;}
.y76{bottom:188.570400pt;}
.ye3{bottom:188.866133pt;}
.yed{bottom:196.377333pt;}
.y13e{bottom:198.238267pt;}
.y9d{bottom:198.251333pt;}
.y14a{bottom:200.912800pt;}
.yaf{bottom:201.395733pt;}
.y177{bottom:203.506267pt;}
.y75{bottom:204.570400pt;}
.ye2{bottom:204.866133pt;}
.yff{bottom:206.603067pt;}
.y2b{bottom:207.712933pt;}
.y13d{bottom:214.238267pt;}
.yf6{bottom:214.251333pt;}
.yec{bottom:215.044000pt;}
.y4f{bottom:219.390133pt;}
.y149{bottom:219.579467pt;}
.y2a{bottom:219.712933pt;}
.yae{bottom:220.062400pt;}
.y74{bottom:220.570400pt;}
.ye1{bottom:220.866133pt;}
.yfe{bottom:225.269733pt;}
.y9c{bottom:230.251333pt;}
.y4e{bottom:231.390133pt;}
.y29{bottom:231.712933pt;}
.yeb{bottom:233.710667pt;}
.y176{bottom:235.506267pt;}
.ye0{bottom:236.866133pt;}
.y148{bottom:238.246133pt;}
.yad{bottom:238.729067pt;}
.y4d{bottom:243.390133pt;}
.y28{bottom:243.712933pt;}
.yfd{bottom:243.936400pt;}
.y13c{bottom:246.238267pt;}
.y9b{bottom:246.251333pt;}
.y175{bottom:251.506267pt;}
.yea{bottom:252.377333pt;}
.y73{bottom:252.570400pt;}
.ydf{bottom:252.866133pt;}
.y4c{bottom:255.390133pt;}
.y27{bottom:255.712933pt;}
.y147{bottom:256.912800pt;}
.yac{bottom:257.395733pt;}
.y13b{bottom:262.238267pt;}
.y9a{bottom:262.251333pt;}
.yfc{bottom:262.603067pt;}
.y4b{bottom:267.390133pt;}
.y174{bottom:267.506267pt;}
.y26{bottom:267.712933pt;}
.y72{bottom:268.570400pt;}
.yab{bottom:276.062400pt;}
.y99{bottom:278.251333pt;}
.y4a{bottom:279.390133pt;}
.y25{bottom:279.712933pt;}
.yfb{bottom:281.269733pt;}
.y173{bottom:283.506267pt;}
.y71{bottom:284.570400pt;}
.yde{bottom:284.866133pt;}
.y49{bottom:291.390133pt;}
.y24{bottom:291.712933pt;}
.y13a{bottom:294.238267pt;}
.y98{bottom:294.251333pt;}
.yaa{bottom:294.729067pt;}
.y172{bottom:299.506267pt;}
.yfa{bottom:299.936400pt;}
.ydd{bottom:300.866133pt;}
.y48{bottom:303.390133pt;}
.y23{bottom:303.712933pt;}
.y139{bottom:310.238267pt;}
.yba{bottom:310.251333pt;}
.ya9{bottom:313.395733pt;}
.y47{bottom:315.390133pt;}
.y171{bottom:315.506267pt;}
.y22{bottom:315.712933pt;}
.y70{bottom:316.570400pt;}
.ydc{bottom:316.866133pt;}
.yf9{bottom:318.603067pt;}
.y138{bottom:326.238267pt;}
.y97{bottom:326.251333pt;}
.y46{bottom:327.390133pt;}
.y21{bottom:327.712933pt;}
.ya8{bottom:332.062400pt;}
.y6f{bottom:332.570400pt;}
.ydb{bottom:332.866133pt;}
.yf8{bottom:337.269733pt;}
.y45{bottom:339.390133pt;}
.y20{bottom:339.712933pt;}
.y137{bottom:342.238267pt;}
.y96{bottom:342.251333pt;}
.y170{bottom:347.506267pt;}
.y6e{bottom:348.570400pt;}
.yda{bottom:348.866133pt;}
.ya7{bottom:350.729067pt;}
.y44{bottom:351.390133pt;}
.y1f{bottom:351.712933pt;}
.y158{bottom:355.663467pt;}
.yf7{bottom:355.936400pt;}
.y109{bottom:356.608400pt;}
.y136{bottom:358.238267pt;}
.y95{bottom:358.251333pt;}
.y43{bottom:363.390133pt;}
.y16f{bottom:363.506267pt;}
.y1e{bottom:363.712933pt;}
.y6d{bottom:364.570400pt;}
.yd9{bottom:364.866133pt;}
.ya6{bottom:369.395733pt;}
.y135{bottom:374.238267pt;}
.y94{bottom:374.251333pt;}
.y157{bottom:374.330133pt;}
.y108{bottom:375.275067pt;}
.y42{bottom:375.390133pt;}
.y1d{bottom:375.712933pt;}
.y16e{bottom:379.506267pt;}
.y6c{bottom:380.570400pt;}
.y41{bottom:387.390133pt;}
.y1c{bottom:387.712933pt;}
.ya5{bottom:388.062400pt;}
.y134{bottom:390.238267pt;}
.y93{bottom:390.251333pt;}
.y156{bottom:392.996800pt;}
.y107{bottom:393.941733pt;}
.y16d{bottom:395.506267pt;}
.y6b{bottom:396.570400pt;}
.yd8{bottom:396.866133pt;}
.y40{bottom:399.390133pt;}
.y1b{bottom:399.712933pt;}
.y133{bottom:406.238267pt;}
.yb9{bottom:406.251333pt;}
.y3f{bottom:411.390133pt;}
.y155{bottom:411.663467pt;}
.y1a{bottom:411.712933pt;}
.y6a{bottom:412.570400pt;}
.y106{bottom:412.608400pt;}
.yc4{bottom:414.708133pt;}
.y132{bottom:422.238267pt;}
.y92{bottom:422.251333pt;}
.y3e{bottom:423.390133pt;}
.y19{bottom:423.712933pt;}
.y16c{bottom:427.506267pt;}
.y69{bottom:428.570400pt;}
.yd7{bottom:428.866133pt;}
.y154{bottom:430.330133pt;}
.y105{bottom:431.275067pt;}
.yc3{bottom:433.374800pt;}
.y131{bottom:438.238267pt;}
.y91{bottom:438.251333pt;}
.y16b{bottom:443.506267pt;}
.y68{bottom:444.570400pt;}
.yd6{bottom:444.866133pt;}
.y153{bottom:448.996800pt;}
.y104{bottom:449.941733pt;}
.y3d{bottom:451.390133pt;}
.y18{bottom:451.712933pt;}
.yc2{bottom:452.041467pt;}
.y90{bottom:454.251333pt;}
.y16a{bottom:459.506267pt;}
.y67{bottom:460.570400pt;}
.yd5{bottom:460.866133pt;}
.y3c{bottom:467.390133pt;}
.y152{bottom:467.663467pt;}
.y17{bottom:467.712933pt;}
.y103{bottom:468.608400pt;}
.y130{bottom:470.238267pt;}
.y8f{bottom:470.251333pt;}
.yc1{bottom:470.708133pt;}
.y169{bottom:475.506267pt;}
.yd4{bottom:476.866133pt;}
.y3b{bottom:483.390133pt;}
.y16{bottom:483.712933pt;}
.y8e{bottom:486.251333pt;}
.y151{bottom:486.330133pt;}
.y102{bottom:487.275067pt;}
.yc0{bottom:489.374800pt;}
.y185{bottom:491.506267pt;}
.y66{bottom:492.570400pt;}
.yd3{bottom:492.866133pt;}
.y3a{bottom:499.390133pt;}
.y15{bottom:499.712933pt;}
.y112{bottom:501.937067pt;}
.y12f{bottom:502.238267pt;}
.y8d{bottom:502.251333pt;}
.y168{bottom:507.506267pt;}
.ybf{bottom:508.041467pt;}
.y65{bottom:508.570400pt;}
.y146{bottom:508.651333pt;}
.yd2{bottom:508.866133pt;}
.y11d{bottom:512.744800pt;}
.y39{bottom:515.390133pt;}
.y14{bottom:515.712933pt;}
.y12e{bottom:518.238267pt;}
.yb8{bottom:518.251333pt;}
.y111{bottom:520.603733pt;}
.y167{bottom:523.506267pt;}
.y64{bottom:524.570400pt;}
.yd1{bottom:524.866133pt;}
.ybe{bottom:526.708133pt;}
.y145{bottom:531.051333pt;}
.y11c{bottom:531.411467pt;}
.y8c{bottom:534.251333pt;}
.yf5{bottom:537.451333pt;}
.y110{bottom:539.270400pt;}
.y166{bottom:539.506267pt;}
.y12{bottom:544.291200pt;}
.ybd{bottom:545.374800pt;}
.y11b{bottom:550.078133pt;}
.y12d{bottom:550.238267pt;}
.y8b{bottom:550.251333pt;}
.y184{bottom:555.506267pt;}
.y63{bottom:556.570400pt;}
.y10f{bottom:557.937067pt;}
.yd0{bottom:563.266133pt;}
.ybc{bottom:564.041467pt;}
.y12c{bottom:566.238267pt;}
.y8a{bottom:566.251333pt;}
.y11a{bottom:568.744800pt;}
.y11{bottom:570.957867pt;}
.y165{bottom:571.506267pt;}
.y62{bottom:572.570400pt;}
.y10e{bottom:576.603733pt;}
.y89{bottom:582.251333pt;}
.ybb{bottom:582.708133pt;}
.y10{bottom:584.291200pt;}
.y119{bottom:587.411467pt;}
.y164{bottom:587.506267pt;}
.y61{bottom:588.570400pt;}
.yf4{bottom:595.051333pt;}
.y10d{bottom:595.270400pt;}
.yf{bottom:597.624533pt;}
.y12b{bottom:598.238267pt;}
.y88{bottom:598.251333pt;}
.y163{bottom:603.506267pt;}
.y60{bottom:604.570400pt;}
.y118{bottom:606.078133pt;}
.ye{bottom:610.957867pt;}
.y10c{bottom:613.937067pt;}
.y12a{bottom:614.238267pt;}
.y87{bottom:614.251333pt;}
.y162{bottom:619.506267pt;}
.y5f{bottom:620.570400pt;}
.yb7{bottom:620.651333pt;}
.yd{bottom:624.291200pt;}
.y117{bottom:624.744800pt;}
.y13{bottom:629.856800pt;}
.y129{bottom:630.238267pt;}
.y86{bottom:630.251333pt;}
.ycf{bottom:630.466133pt;}
.y10b{bottom:632.603733pt;}
.y161{bottom:635.506267pt;}
.y5e{bottom:636.570400pt;}
.yc{bottom:637.624533pt;}
.yb6{bottom:643.051333pt;}
.y116{bottom:643.411467pt;}
.y128{bottom:646.238267pt;}
.y85{bottom:646.251333pt;}
.yce{bottom:646.466133pt;}
.yb{bottom:650.957867pt;}
.y10a{bottom:651.270400pt;}
.y160{bottom:651.506267pt;}
.y5d{bottom:652.570400pt;}
.y115{bottom:662.078133pt;}
.y127{bottom:662.238267pt;}
.y84{bottom:662.251333pt;}
.ycd{bottom:662.466133pt;}
.ya{bottom:664.291200pt;}
.y15f{bottom:667.506267pt;}
.y9{bottom:677.624533pt;}
.y126{bottom:678.238267pt;}
.y83{bottom:678.251333pt;}
.y15e{bottom:683.506267pt;}
.y5c{bottom:684.570400pt;}
.y8{bottom:690.957867pt;}
.y125{bottom:694.238267pt;}
.y82{bottom:694.251333pt;}
.ycc{bottom:694.466133pt;}
.y114{bottom:697.451333pt;}
.y15d{bottom:699.506267pt;}
.y5b{bottom:700.570400pt;}
.y124{bottom:710.238267pt;}
.yb5{bottom:710.251333pt;}
.ycb{bottom:710.466133pt;}
.y38{bottom:713.117467pt;}
.y15c{bottom:715.506267pt;}
.y5a{bottom:716.570400pt;}
.y113{bottom:716.651333pt;}
.y81{bottom:726.251333pt;}
.yca{bottom:726.466133pt;}
.y183{bottom:731.506267pt;}
.y59{bottom:732.570400pt;}
.y7{bottom:737.809333pt;}
.y37{bottom:740.548133pt;}
.y123{bottom:742.238267pt;}
.y80{bottom:742.251333pt;}
.yc9{bottom:742.466133pt;}
.y15b{bottom:747.506267pt;}
.y58{bottom:748.570400pt;}
.y36{bottom:756.548133pt;}
.y122{bottom:758.238267pt;}
.y7f{bottom:758.251333pt;}
.yc8{bottom:758.466133pt;}
.y6{bottom:763.142667pt;}
.y182{bottom:763.506267pt;}
.y57{bottom:764.570400pt;}
.y35{bottom:772.548133pt;}
.y121{bottom:774.238267pt;}
.y7e{bottom:774.251333pt;}
.yc7{bottom:774.466133pt;}
.y15a{bottom:779.506267pt;}
.y56{bottom:780.570400pt;}
.y5{bottom:788.476000pt;}
.y120{bottom:790.238267pt;}
.y7d{bottom:790.251333pt;}
.yc6{bottom:790.466133pt;}
.y11f{bottom:806.238267pt;}
.y7c{bottom:806.251333pt;}
.y4{bottom:813.809333pt;}
.y159{bottom:817.906267pt;}
.y55{bottom:818.168267pt;}
.y11e{bottom:822.238267pt;}
.y7b{bottom:822.251333pt;}
.yc5{bottom:822.466133pt;}
.y2{bottom:860.554933pt;}
.y3{bottom:861.221733pt;}
.y54{bottom:863.163067pt;}
.ha{height:25.238281pt;}
.h2{height:27.179688pt;}
.h9{height:29.625000pt;}
.h5{height:33.328125pt;}
.h6{height:33.351562pt;}
.h3{height:34.945312pt;}
.h10{height:36.510417pt;}
.hd{height:37.031250pt;}
.hc{height:37.057292pt;}
.h8{height:38.828125pt;}
.he{height:42.710938pt;}
.h7{height:46.593750pt;}
.hf{height:54.359375pt;}
.hb{height:57.567908pt;}
.h4{height:69.890625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:18.897600pt;}
.x22{left:23.539600pt;}
.x20{left:25.165200pt;}
.x29{left:26.837333pt;}
.x1e{left:28.402267pt;}
.x2a{left:30.616533pt;}
.x21{left:32.462800pt;}
.x1d{left:35.735600pt;}
.x18{left:36.687600pt;}
.x2{left:37.795333pt;}
.x1f{left:39.831867pt;}
.x25{left:40.755333pt;}
.x13{left:42.380933pt;}
.x2b{left:43.657600pt;}
.x24{left:44.837333pt;}
.x8{left:46.325600pt;}
.x1a{left:47.286533pt;}
.x15{left:49.721467pt;}
.x7{left:56.709600pt;}
.xe{left:61.102400pt;}
.x16{left:63.593200pt;}
.x28{left:65.158400pt;}
.x12{left:67.675200pt;}
.x19{left:74.184933pt;}
.x27{left:75.764400pt;}
.x1c{left:78.954933pt;}
.x23{left:81.518267pt;}
.xd{left:83.149600pt;}
.x17{left:87.226000pt;}
.x2c{left:91.515333pt;}
.xf{left:102.047200pt;}
.x14{left:105.989067pt;}
.x26{left:120.944933pt;}
.xc{left:124.724400pt;}
.x5{left:138.752133pt;}
.x3{left:149.169333pt;}
.x4{left:150.114267pt;}
.x10{left:154.960667pt;}
.x11{left:173.858267pt;}
.x31{left:179.362400pt;}
.x30{left:227.266133pt;}
.x32{left:245.006933pt;}
.x2f{left:259.004400pt;}
.x9{left:361.010400pt;}
.x36{left:364.219200pt;}
.xa{left:367.437067pt;}
.x34{left:371.634667pt;}
.x33{left:374.570800pt;}
.x2d{left:376.706133pt;}
.x2e{left:390.189200pt;}
.x35{left:407.207467pt;}
.x1b{left:498.897600pt;}
.x6{left:500.835733pt;}
.xb{left:610.647467pt;}
}




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