
    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_86a8d454b90b97e86d600912.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107000;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_ab3b539517b4c4f03d6c121f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.997000;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_f2d26a55f4eae36fb8b2bf70.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109000;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_66c9c0b47a2f3e7bc9a6b838.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.780000px;}
.v4{vertical-align:-9.136200px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.276600px;}
.v1{vertical-align:9.408000px;}
.v8{vertical-align:11.016000px;}
.v5{vertical-align:17.820000px;}
.v3{vertical-align:21.780000px;}
.v7{vertical-align:53.784000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000240px;}
.ls0{letter-spacing:0.990000px;}
.ls3{letter-spacing:51.011400px;}
.ls2{letter-spacing:202.752000px;}
.ls4{letter-spacing:205.146000px;}
.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:-16.500000px;}
.ws8{word-spacing:-11.826000px;}
.ws3{word-spacing:-8.995800px;}
.ws0{word-spacing:-7.694280px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:108.756000px;}
.ws9{word-spacing:118.314000px;}
.wsa{word-spacing:119.556000px;}
.ws11{word-spacing:121.554000px;}
.ws10{word-spacing:130.410000px;}
.ws1a{word-spacing:130.464000px;}
.ws13{word-spacing:132.138000px;}
.wse{word-spacing:142.992000px;}
.wsc{word-spacing:153.846000px;}
.ws7{word-spacing:189.935400px;}
.ws5{word-spacing:238.194000px;}
.ws6{word-spacing:292.446000px;}
.ws18{word-spacing:297.378000px;}
.ws17{word-spacing:299.484000px;}
.ws16{word-spacing:308.556000px;}
.ws19{word-spacing:318.829200px;}
.wsd{word-spacing:351.648000px;}
.wsb{word-spacing:351.972000px;}
.ws12{word-spacing:358.830000px;}
.ws4{word-spacing:360.492000px;}
.ws14{word-spacing:367.524000px;}
.ws1b{word-spacing:387.288000px;}
.ws15{word-spacing:388.800000px;}
.wsf{word-spacing:396.198000px;}
._37{margin-left:-205.146000px;}
._22{margin-left:-202.752000px;}
._8{margin-left:-2.970000px;}
._4{margin-left:-1.782000px;}
._3{width:1.320000px;}
._5{width:2.640000px;}
._2{width:3.828000px;}
._6{width:5.676000px;}
._7{width:6.930000px;}
._9{width:8.910000px;}
._43{width:10.098000px;}
._44{width:11.682000px;}
._46{width:12.834000px;}
._45{width:24.624000px;}
._23{width:49.140000px;}
._38{width:58.266000px;}
._d{width:69.696000px;}
._c{width:72.930000px;}
._10{width:95.172000px;}
._3a{width:106.866000px;}
._11{width:110.748000px;}
._17{width:115.896000px;}
._e{width:117.480000px;}
._39{width:120.582000px;}
._3f{width:128.412000px;}
._1{width:130.039800px;}
._f{width:138.732000px;}
._28{width:140.184000px;}
._2e{width:141.264000px;}
._2b{width:143.262000px;}
._29{width:144.774000px;}
._33{width:146.340000px;}
._2c{width:149.364000px;}
._2d{width:150.768000px;}
._36{width:152.010000px;}
._24{width:153.846000px;}
._3d{width:154.980000px;}
._27{width:157.734000px;}
._2a{width:160.218000px;}
._30{width:161.892000px;}
._25{width:164.700000px;}
._2f{width:168.048000px;}
._32{width:169.218000px;}
._26{width:171.072000px;}
._3b{width:177.660000px;}
._34{width:179.334000px;}
._40{width:212.004000px;}
._13{width:217.536000px;}
._16{width:243.012000px;}
._12{width:247.302000px;}
._1a{width:254.694000px;}
._19{width:261.294000px;}
._14{width:265.320000px;}
._31{width:269.784000px;}
._15{width:286.572000px;}
._3e{width:293.058000px;}
._3c{width:306.612000px;}
._1d{width:334.686000px;}
._42{width:343.980000px;}
._20{width:347.226000px;}
._1b{width:358.314000px;}
._1f{width:361.218000px;}
._35{width:368.550000px;}
._21{width:373.758000px;}
._b{width:396.924000px;}
._a{width:419.034000px;}
._1c{width:428.736000px;}
._41{width:430.002000px;}
._1e{width:455.268000px;}
._18{width:604.824000px;}
._0{width:2059.440000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.320000px;}
.fs2{font-size:38.280000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.903900px;}
.y3e{bottom:27.975750px;}
.y3c{bottom:27.995250px;}
.y71{bottom:30.259800px;}
.y3d{bottom:30.263250px;}
.y72{bottom:32.900100px;}
.y173{bottom:86.414100px;}
.y140{bottom:90.014100px;}
.y3b{bottom:93.625950px;}
.y110{bottom:93.627900px;}
.yde{bottom:100.258950px;}
.y172{bottom:102.614100px;}
.y77{bottom:107.655450px;}
.y97{bottom:109.632600px;}
.y13f{bottom:109.814100px;}
.y3a{bottom:113.425950px;}
.y10f{bottom:113.427900px;}
.y171{bottom:118.814100px;}
.ydd{bottom:124.626450px;}
.ya9{bottom:127.128600px;}
.y76{bottom:127.455450px;}
.y13e{bottom:129.614100px;}
.y10e{bottom:133.227900px;}
.y170{bottom:135.014100px;}
.y70{bottom:147.255450px;}
.ydc{bottom:148.993950px;}
.y13d{bottom:149.414100px;}
.y16f{bottom:151.214100px;}
.ya8{bottom:151.496100px;}
.y39{bottom:153.025950px;}
.y10d{bottom:153.027900px;}
.y6f{bottom:167.055450px;}
.y16e{bottom:167.414100px;}
.y13c{bottom:169.214100px;}
.y38{bottom:172.825950px;}
.y10c{bottom:172.827900px;}
.ydb{bottom:173.361450px;}
.ya7{bottom:175.863600px;}
.y16d{bottom:183.614100px;}
.y6e{bottom:186.855450px;}
.y13b{bottom:189.014100px;}
.y37{bottom:192.625950px;}
.y10b{bottom:192.627900px;}
.yd9{bottom:197.728950px;}
.y16c{bottom:199.814100px;}
.ya5{bottom:200.231100px;}
.y6d{bottom:206.655450px;}
.y13a{bottom:208.814100px;}
.y75{bottom:210.255450px;}
.y36{bottom:212.425950px;}
.y10a{bottom:212.427900px;}
.yd8{bottom:213.928950px;}
.y16b{bottom:216.014100px;}
.ya4{bottom:216.431100px;}
.ya6{bottom:216.539100px;}
.y139{bottom:228.614100px;}
.yd7{bottom:229.309650px;}
.y74{bottom:230.055450px;}
.yda{bottom:230.128950px;}
.y16a{bottom:232.214100px;}
.y35{bottom:232.225950px;}
.y109{bottom:232.227900px;}
.ya3{bottom:240.798600px;}
.y169{bottom:248.414100px;}
.y73{bottom:249.855450px;}
.y34{bottom:252.025950px;}
.y108{bottom:252.027900px;}
.yd6{bottom:254.494650px;}
.ya1{bottom:256.998600px;}
.y168{bottom:264.614100px;}
.y6c{bottom:269.655450px;}
.y33{bottom:271.825950px;}
.y107{bottom:271.827900px;}
.ya0{bottom:272.379450px;}
.ya2{bottom:273.198600px;}
.y167{bottom:280.814100px;}
.y6b{bottom:289.455450px;}
.y138{bottom:291.614100px;}
.y32{bottom:291.625950px;}
.y106{bottom:291.627900px;}
.y166{bottom:297.014100px;}
.y9f{bottom:297.564450px;}
.yd5{bottom:303.723150px;}
.y6a{bottom:309.255450px;}
.y137{bottom:311.414100px;}
.y31{bottom:311.425950px;}
.y105{bottom:311.427900px;}
.y165{bottom:313.214100px;}
.y69{bottom:329.055450px;}
.y164{bottom:329.414100px;}
.y136{bottom:331.214100px;}
.y30{bottom:331.225950px;}
.y104{bottom:331.227900px;}
.y9e{bottom:344.992800px;}
.y163{bottom:345.614100px;}
.yd4{bottom:346.923150px;}
.y68{bottom:348.855450px;}
.y135{bottom:351.014100px;}
.y2f{bottom:351.025950px;}
.y103{bottom:351.027900px;}
.y162{bottom:361.814100px;}
.y96{bottom:365.652600px;}
.yd3{bottom:366.723150px;}
.y67{bottom:368.655450px;}
.y134{bottom:370.814100px;}
.y2e{bottom:370.825950px;}
.y102{bottom:370.827900px;}
.y161{bottom:378.014100px;}
.y9d{bottom:386.392800px;}
.yd2{bottom:386.523150px;}
.y66{bottom:388.455450px;}
.y133{bottom:390.614100px;}
.y2d{bottom:390.625950px;}
.y101{bottom:390.627900px;}
.y160{bottom:394.214100px;}
.y9c{bottom:406.192800px;}
.yd1{bottom:406.323150px;}
.y95{bottom:407.072850px;}
.y65{bottom:408.255450px;}
.y132{bottom:410.414100px;}
.y2c{bottom:410.425950px;}
.y100{bottom:410.427900px;}
.yd0{bottom:426.123150px;}
.y15f{bottom:426.614100px;}
.y94{bottom:426.872850px;}
.y64{bottom:428.055450px;}
.y131{bottom:430.214100px;}
.y2b{bottom:430.225950px;}
.yff{bottom:430.227900px;}
.y15e{bottom:442.814100px;}
.ycf{bottom:445.923150px;}
.y93{bottom:446.672850px;}
.y63{bottom:447.855450px;}
.y130{bottom:450.014100px;}
.y2a{bottom:450.025950px;}
.yfe{bottom:450.027900px;}
.y15d{bottom:459.014100px;}
.yce{bottom:465.723150px;}
.y92{bottom:466.472850px;}
.y62{bottom:467.655450px;}
.y12f{bottom:469.814100px;}
.yfd{bottom:469.827900px;}
.y15c{bottom:475.214100px;}
.ycd{bottom:485.523150px;}
.y91{bottom:486.272850px;}
.y61{bottom:487.455450px;}
.y12e{bottom:489.614100px;}
.y29{bottom:489.625950px;}
.yfc{bottom:489.627900px;}
.y15b{bottom:491.414100px;}
.ycc{bottom:505.323150px;}
.y90{bottom:506.072850px;}
.y60{bottom:507.255450px;}
.y15a{bottom:507.614100px;}
.y12d{bottom:509.414100px;}
.y28{bottom:509.425950px;}
.yfb{bottom:509.427900px;}
.y159{bottom:523.814100px;}
.ycb{bottom:525.123150px;}
.y8f{bottom:525.872850px;}
.y5f{bottom:527.055450px;}
.y12c{bottom:529.214100px;}
.yfa{bottom:529.227900px;}
.y158{bottom:540.014100px;}
.yca{bottom:544.923150px;}
.y8e{bottom:545.672850px;}
.y5e{bottom:546.855450px;}
.y12b{bottom:549.014100px;}
.y27{bottom:549.025950px;}
.yf9{bottom:549.027900px;}
.y157{bottom:556.214100px;}
.yc9{bottom:564.723150px;}
.y8d{bottom:565.472850px;}
.y5d{bottom:566.655450px;}
.y12a{bottom:568.814100px;}
.y26{bottom:568.825950px;}
.yf8{bottom:568.827900px;}
.y156{bottom:572.414100px;}
.yc8{bottom:584.523150px;}
.y8c{bottom:586.394850px;}
.y5c{bottom:586.455450px;}
.y129{bottom:588.614100px;}
.y25{bottom:588.625950px;}
.yf7{bottom:588.627900px;}
.yc7{bottom:604.298100px;}
.y155{bottom:604.814100px;}
.y5b{bottom:606.255450px;}
.y128{bottom:608.414100px;}
.y24{bottom:608.425950px;}
.yf6{bottom:608.427900px;}
.y8b{bottom:613.372350px;}
.y154{bottom:621.014100px;}
.yc6{bottom:624.102600px;}
.y5a{bottom:626.055450px;}
.y127{bottom:628.214100px;}
.y23{bottom:628.225950px;}
.yf5{bottom:628.227900px;}
.y153{bottom:637.214100px;}
.y8a{bottom:640.349850px;}
.y59{bottom:645.855450px;}
.y126{bottom:648.014100px;}
.y22{bottom:648.025950px;}
.yf4{bottom:648.027900px;}
.y152{bottom:653.414100px;}
.yc5{bottom:657.515100px;}
.y58{bottom:665.655450px;}
.y89{bottom:667.327350px;}
.y125{bottom:667.814100px;}
.y21{bottom:667.825950px;}
.yf3{bottom:667.827900px;}
.y151{bottom:669.614100px;}
.yc3{bottom:681.882600px;}
.y57{bottom:685.455450px;}
.y150{bottom:685.814100px;}
.y88{bottom:687.127350px;}
.y124{bottom:687.614100px;}
.y20{bottom:687.625950px;}
.yf2{bottom:687.627900px;}
.yc2{bottom:698.082600px;}
.yc4{bottom:698.190600px;}
.y14f{bottom:702.014100px;}
.y56{bottom:705.255450px;}
.y123{bottom:707.414100px;}
.y1f{bottom:707.425950px;}
.yf1{bottom:707.427900px;}
.ye{bottom:715.563750px;}
.y14e{bottom:718.214100px;}
.yc1{bottom:722.450100px;}
.y55{bottom:725.055450px;}
.y122{bottom:727.214100px;}
.y1e{bottom:727.225950px;}
.yf0{bottom:727.227900px;}
.y87{bottom:733.904850px;}
.y14d{bottom:734.414100px;}
.y9b{bottom:743.458950px;}
.y54{bottom:744.855450px;}
.yc0{bottom:746.817600px;}
.y121{bottom:747.014100px;}
.y1d{bottom:747.025950px;}
.yef{bottom:747.027900px;}
.yd{bottom:747.963750px;}
.y14c{bottom:750.614100px;}
.yc{bottom:764.163750px;}
.y53{bottom:764.655450px;}
.y120{bottom:766.814100px;}
.y1c{bottom:766.825950px;}
.yee{bottom:766.828050px;}
.ybf{bottom:771.185100px;}
.yb{bottom:780.363750px;}
.y14b{bottom:783.014100px;}
.y86{bottom:783.133350px;}
.y52{bottom:784.455450px;}
.y11f{bottom:786.614100px;}
.y1b{bottom:786.625950px;}
.yed{bottom:786.628050px;}
.ybd{bottom:795.552600px;}
.ya{bottom:796.563750px;}
.y14a{bottom:799.214100px;}
.y51{bottom:804.255450px;}
.y11e{bottom:806.414100px;}
.y1a{bottom:806.425950px;}
.yec{bottom:806.427900px;}
.ybc{bottom:811.752600px;}
.ybe{bottom:811.860600px;}
.y149{bottom:815.414100px;}
.y9{bottom:818.208750px;}
.y50{bottom:824.055450px;}
.y85{bottom:824.553600px;}
.y11d{bottom:826.214100px;}
.y19{bottom:826.225950px;}
.yeb{bottom:826.227900px;}
.y148{bottom:831.614100px;}
.ybb{bottom:836.120100px;}
.y4f{bottom:843.855450px;}
.y84{bottom:844.353600px;}
.y11c{bottom:846.014100px;}
.y18{bottom:846.025950px;}
.yea{bottom:846.027900px;}
.y147{bottom:847.814100px;}
.y8{bottom:848.763750px;}
.y187{bottom:857.738100px;}
.yb9{bottom:860.487600px;}
.y4e{bottom:863.655450px;}
.y146{bottom:864.014100px;}
.y7{bottom:864.963750px;}
.y11b{bottom:865.814100px;}
.y17{bottom:865.825950px;}
.ye9{bottom:865.827900px;}
.y186{bottom:873.938100px;}
.yb8{bottom:876.687600px;}
.y145{bottom:880.214100px;}
.y6{bottom:881.163750px;}
.y4d{bottom:883.455450px;}
.y83{bottom:885.075600px;}
.y11a{bottom:885.614100px;}
.y16{bottom:885.625950px;}
.ye8{bottom:885.627900px;}
.y185{bottom:890.138100px;}
.yb7{bottom:892.887600px;}
.yba{bottom:892.995600px;}
.y144{bottom:896.414100px;}
.y5{bottom:897.363750px;}
.y4c{bottom:903.255450px;}
.y119{bottom:905.414100px;}
.y15{bottom:905.425950px;}
.ye7{bottom:905.427900px;}
.y184{bottom:906.338100px;}
.y82{bottom:912.053100px;}
.y143{bottom:912.614100px;}
.y4{bottom:913.563750px;}
.yb5{bottom:917.255100px;}
.y183{bottom:922.538100px;}
.y4b{bottom:923.055450px;}
.y118{bottom:925.214100px;}
.y14{bottom:925.225950px;}
.ye6{bottom:925.227900px;}
.y142{bottom:928.814100px;}
.y3{bottom:929.763750px;}
.yb4{bottom:933.455100px;}
.yb6{bottom:933.563100px;}
.y182{bottom:938.738100px;}
.y81{bottom:939.030600px;}
.y4a{bottom:942.855450px;}
.y117{bottom:945.014100px;}
.y13{bottom:945.025950px;}
.ye5{bottom:945.027900px;}
.y2{bottom:951.408750px;}
.y181{bottom:954.938100px;}
.yb3{bottom:957.822600px;}
.y80{bottom:958.830600px;}
.y141{bottom:961.214100px;}
.y49{bottom:962.655450px;}
.y116{bottom:964.814100px;}
.y180{bottom:971.138100px;}
.yb2{bottom:982.190100px;}
.y48{bottom:982.455450px;}
.y115{bottom:984.614100px;}
.y7f{bottom:985.808100px;}
.y17f{bottom:987.338100px;}
.y47{bottom:1002.255450px;}
.y17e{bottom:1003.538100px;}
.y114{bottom:1004.414100px;}
.ye4{bottom:1005.545100px;}
.y7e{bottom:1005.608100px;}
.yb1{bottom:1006.557600px;}
.y7c{bottom:1012.307250px;}
.y17d{bottom:1019.738100px;}
.y46{bottom:1022.055450px;}
.y113{bottom:1024.214100px;}
.ye3{bottom:1029.804600px;}
.yb0{bottom:1030.925100px;}
.y7d{bottom:1032.585750px;}
.y17c{bottom:1035.938100px;}
.y45{bottom:1041.855450px;}
.y9a{bottom:1042.214100px;}
.y112{bottom:1044.014100px;}
.y17b{bottom:1052.138100px;}
.ye2{bottom:1054.064100px;}
.y44{bottom:1061.655450px;}
.yaf{bottom:1062.015600px;}
.y111{bottom:1063.814100px;}
.y17a{bottom:1068.338100px;}
.y11{bottom:1069.309500px;}
.y12{bottom:1074.754500px;}
.ye1{bottom:1078.323600px;}
.y43{bottom:1081.455450px;}
.y7b{bottom:1081.814100px;}
.y99{bottom:1083.614100px;}
.y179{bottom:1084.538100px;}
.y178{bottom:1100.738100px;}
.y42{bottom:1101.255450px;}
.yae{bottom:1102.475100px;}
.ye0{bottom:1102.583100px;}
.y98{bottom:1103.414100px;}
.y177{bottom:1116.938100px;}
.ydf{bottom:1118.783100px;}
.y41{bottom:1121.055450px;}
.y10{bottom:1121.662950px;}
.y7a{bottom:1123.214100px;}
.yac{bottom:1126.842600px;}
.y176{bottom:1133.138100px;}
.y40{bottom:1140.855450px;}
.y79{bottom:1143.014100px;}
.yab{bottom:1143.042600px;}
.y175{bottom:1149.338100px;}
.yf{bottom:1154.062950px;}
.yaa{bottom:1159.242600px;}
.yad{bottom:1159.350600px;}
.y3f{bottom:1160.655450px;}
.y78{bottom:1162.814100px;}
.y174{bottom:1165.538100px;}
.h3{height:33.571560px;}
.ha{height:36.672000px;}
.h9{height:42.096000px;}
.h4{height:47.358000px;}
.h6{height:47.412000px;}
.h12{height:47.790000px;}
.h8{height:50.424000px;}
.he{height:51.445800px;}
.h10{height:52.740000px;}
.hd{height:57.882000px;}
.h13{height:57.882600px;}
.h7{height:58.014000px;}
.hb{height:60.582000px;}
.h2{height:60.869400px;}
.hf{height:63.216000px;}
.hc{height:68.562000px;}
.h5{height:94.932000px;}
.h11{height:112.212000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:31.081800px;}
.xb{left:54.000000px;}
.x1{left:85.039350px;}
.x37{left:86.539350px;}
.x1d{left:91.039350px;}
.x35{left:92.539350px;}
.x7{left:95.070300px;}
.x38{left:102.049350px;}
.x3{left:140.901900px;}
.x4{left:143.332650px;}
.x5{left:195.495750px;}
.x1e{left:199.798200px;}
.x9{left:204.094500px;}
.xc{left:210.094500px;}
.x2a{left:212.388300px;}
.x26{left:214.421700px;}
.x27{left:218.598300px;}
.x39{left:221.102400px;}
.x36{left:233.519850px;}
.x1f{left:260.021700px;}
.x1c{left:294.474900px;}
.x20{left:309.283200px;}
.x1a{left:314.941950px;}
.xf{left:325.534950px;}
.x1b{left:330.550500px;}
.xe{left:338.124450px;}
.x29{left:341.866800px;}
.x28{left:344.688300px;}
.x2c{left:359.579250px;}
.xd{left:360.723000px;}
.x21{left:369.506700px;}
.x11{left:405.988950px;}
.x2d{left:415.914750px;}
.x10{left:419.436450px;}
.x22{left:421.954200px;}
.x2b{left:424.562850px;}
.x2e{left:464.811750px;}
.x13{left:487.119450px;}
.x12{left:499.692450px;}
.x2f{left:510.522750px;}
.x23{left:533.264700px;}
.x30{left:559.419750px;}
.x15{left:571.830450px;}
.x24{left:581.797200px;}
.x14{left:585.277950px;}
.x31{left:609.032250px;}
.x25{left:631.045200px;}
.x17{left:658.785450px;}
.x32{left:666.785250px;}
.x16{left:671.374950px;}
.xa{left:677.848800px;}
.x33{left:715.682250px;}
.x2{left:722.451900px;}
.x6{left:732.954300px;}
.x19{left:740.113950px;}
.x18{left:753.561450px;}
.x34{left:766.712250px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v4{vertical-align:-8.121067pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.912533pt;}
.v1{vertical-align:8.362667pt;}
.v8{vertical-align:9.792000pt;}
.v5{vertical-align:15.840000pt;}
.v3{vertical-align:19.360000pt;}
.v7{vertical-align:47.808000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000213pt;}
.ls0{letter-spacing:0.880000pt;}
.ls3{letter-spacing:45.343467pt;}
.ls2{letter-spacing:180.224000pt;}
.ls4{letter-spacing:182.352000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws8{word-spacing:-10.512000pt;}
.ws3{word-spacing:-7.996267pt;}
.ws0{word-spacing:-6.839360pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:96.672000pt;}
.ws9{word-spacing:105.168000pt;}
.wsa{word-spacing:106.272000pt;}
.ws11{word-spacing:108.048000pt;}
.ws10{word-spacing:115.920000pt;}
.ws1a{word-spacing:115.968000pt;}
.ws13{word-spacing:117.456000pt;}
.wse{word-spacing:127.104000pt;}
.wsc{word-spacing:136.752000pt;}
.ws7{word-spacing:168.831467pt;}
.ws5{word-spacing:211.728000pt;}
.ws6{word-spacing:259.952000pt;}
.ws18{word-spacing:264.336000pt;}
.ws17{word-spacing:266.208000pt;}
.ws16{word-spacing:274.272000pt;}
.ws19{word-spacing:283.403733pt;}
.wsd{word-spacing:312.576000pt;}
.wsb{word-spacing:312.864000pt;}
.ws12{word-spacing:318.960000pt;}
.ws4{word-spacing:320.437333pt;}
.ws14{word-spacing:326.688000pt;}
.ws1b{word-spacing:344.256000pt;}
.ws15{word-spacing:345.600000pt;}
.wsf{word-spacing:352.176000pt;}
._37{margin-left:-182.352000pt;}
._22{margin-left:-180.224000pt;}
._8{margin-left:-2.640000pt;}
._4{margin-left:-1.584000pt;}
._3{width:1.173333pt;}
._5{width:2.346667pt;}
._2{width:3.402667pt;}
._6{width:5.045333pt;}
._7{width:6.160000pt;}
._9{width:7.920000pt;}
._43{width:8.976000pt;}
._44{width:10.384000pt;}
._46{width:11.408000pt;}
._45{width:21.888000pt;}
._23{width:43.680000pt;}
._38{width:51.792000pt;}
._d{width:61.952000pt;}
._c{width:64.826667pt;}
._10{width:84.597333pt;}
._3a{width:94.992000pt;}
._11{width:98.442667pt;}
._17{width:103.018667pt;}
._e{width:104.426667pt;}
._39{width:107.184000pt;}
._3f{width:114.144000pt;}
._1{width:115.590933pt;}
._f{width:123.317333pt;}
._28{width:124.608000pt;}
._2e{width:125.568000pt;}
._2b{width:127.344000pt;}
._29{width:128.688000pt;}
._33{width:130.080000pt;}
._2c{width:132.768000pt;}
._2d{width:134.016000pt;}
._36{width:135.120000pt;}
._24{width:136.752000pt;}
._3d{width:137.760000pt;}
._27{width:140.208000pt;}
._2a{width:142.416000pt;}
._30{width:143.904000pt;}
._25{width:146.400000pt;}
._2f{width:149.376000pt;}
._32{width:150.416000pt;}
._26{width:152.064000pt;}
._3b{width:157.920000pt;}
._34{width:159.408000pt;}
._40{width:188.448000pt;}
._13{width:193.365333pt;}
._16{width:216.010667pt;}
._12{width:219.824000pt;}
._1a{width:226.394667pt;}
._19{width:232.261333pt;}
._14{width:235.840000pt;}
._31{width:239.808000pt;}
._15{width:254.730667pt;}
._3e{width:260.496000pt;}
._3c{width:272.544000pt;}
._1d{width:297.498667pt;}
._42{width:305.760000pt;}
._20{width:308.645333pt;}
._1b{width:318.501333pt;}
._1f{width:321.082667pt;}
._35{width:327.600000pt;}
._21{width:332.229333pt;}
._b{width:352.821333pt;}
._a{width:372.474667pt;}
._1c{width:381.098667pt;}
._41{width:382.224000pt;}
._1e{width:404.682667pt;}
._18{width:537.621333pt;}
._0{width:1830.613333pt;}
.fs7{font-size:27.840000pt;}
.fs2{font-size:34.026667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.803467pt;}
.y3e{bottom:24.867333pt;}
.y3c{bottom:24.884667pt;}
.y71{bottom:26.897600pt;}
.y3d{bottom:26.900667pt;}
.y72{bottom:29.244533pt;}
.y173{bottom:76.812533pt;}
.y140{bottom:80.012533pt;}
.y3b{bottom:83.223067pt;}
.y110{bottom:83.224800pt;}
.yde{bottom:89.119067pt;}
.y172{bottom:91.212533pt;}
.y77{bottom:95.693733pt;}
.y97{bottom:97.451200pt;}
.y13f{bottom:97.612533pt;}
.y3a{bottom:100.823067pt;}
.y10f{bottom:100.824800pt;}
.y171{bottom:105.612533pt;}
.ydd{bottom:110.779067pt;}
.ya9{bottom:113.003200pt;}
.y76{bottom:113.293733pt;}
.y13e{bottom:115.212533pt;}
.y10e{bottom:118.424800pt;}
.y170{bottom:120.012533pt;}
.y70{bottom:130.893733pt;}
.ydc{bottom:132.439067pt;}
.y13d{bottom:132.812533pt;}
.y16f{bottom:134.412533pt;}
.ya8{bottom:134.663200pt;}
.y39{bottom:136.023067pt;}
.y10d{bottom:136.024800pt;}
.y6f{bottom:148.493733pt;}
.y16e{bottom:148.812533pt;}
.y13c{bottom:150.412533pt;}
.y38{bottom:153.623067pt;}
.y10c{bottom:153.624800pt;}
.ydb{bottom:154.099067pt;}
.ya7{bottom:156.323200pt;}
.y16d{bottom:163.212533pt;}
.y6e{bottom:166.093733pt;}
.y13b{bottom:168.012533pt;}
.y37{bottom:171.223067pt;}
.y10b{bottom:171.224800pt;}
.yd9{bottom:175.759067pt;}
.y16c{bottom:177.612533pt;}
.ya5{bottom:177.983200pt;}
.y6d{bottom:183.693733pt;}
.y13a{bottom:185.612533pt;}
.y75{bottom:186.893733pt;}
.y36{bottom:188.823067pt;}
.y10a{bottom:188.824800pt;}
.yd8{bottom:190.159067pt;}
.y16b{bottom:192.012533pt;}
.ya4{bottom:192.383200pt;}
.ya6{bottom:192.479200pt;}
.y139{bottom:203.212533pt;}
.yd7{bottom:203.830800pt;}
.y74{bottom:204.493733pt;}
.yda{bottom:204.559067pt;}
.y16a{bottom:206.412533pt;}
.y35{bottom:206.423067pt;}
.y109{bottom:206.424800pt;}
.ya3{bottom:214.043200pt;}
.y169{bottom:220.812533pt;}
.y73{bottom:222.093733pt;}
.y34{bottom:224.023067pt;}
.y108{bottom:224.024800pt;}
.yd6{bottom:226.217467pt;}
.ya1{bottom:228.443200pt;}
.y168{bottom:235.212533pt;}
.y6c{bottom:239.693733pt;}
.y33{bottom:241.623067pt;}
.y107{bottom:241.624800pt;}
.ya0{bottom:242.115067pt;}
.ya2{bottom:242.843200pt;}
.y167{bottom:249.612533pt;}
.y6b{bottom:257.293733pt;}
.y138{bottom:259.212533pt;}
.y32{bottom:259.223067pt;}
.y106{bottom:259.224800pt;}
.y166{bottom:264.012533pt;}
.y9f{bottom:264.501733pt;}
.yd5{bottom:269.976133pt;}
.y6a{bottom:274.893733pt;}
.y137{bottom:276.812533pt;}
.y31{bottom:276.823067pt;}
.y105{bottom:276.824800pt;}
.y165{bottom:278.412533pt;}
.y69{bottom:292.493733pt;}
.y164{bottom:292.812533pt;}
.y136{bottom:294.412533pt;}
.y30{bottom:294.423067pt;}
.y104{bottom:294.424800pt;}
.y9e{bottom:306.660267pt;}
.y163{bottom:307.212533pt;}
.yd4{bottom:308.376133pt;}
.y68{bottom:310.093733pt;}
.y135{bottom:312.012533pt;}
.y2f{bottom:312.023067pt;}
.y103{bottom:312.024800pt;}
.y162{bottom:321.612533pt;}
.y96{bottom:325.024533pt;}
.yd3{bottom:325.976133pt;}
.y67{bottom:327.693733pt;}
.y134{bottom:329.612533pt;}
.y2e{bottom:329.623067pt;}
.y102{bottom:329.624800pt;}
.y161{bottom:336.012533pt;}
.y9d{bottom:343.460267pt;}
.yd2{bottom:343.576133pt;}
.y66{bottom:345.293733pt;}
.y133{bottom:347.212533pt;}
.y2d{bottom:347.223067pt;}
.y101{bottom:347.224800pt;}
.y160{bottom:350.412533pt;}
.y9c{bottom:361.060267pt;}
.yd1{bottom:361.176133pt;}
.y95{bottom:361.842533pt;}
.y65{bottom:362.893733pt;}
.y132{bottom:364.812533pt;}
.y2c{bottom:364.823067pt;}
.y100{bottom:364.824800pt;}
.yd0{bottom:378.776133pt;}
.y15f{bottom:379.212533pt;}
.y94{bottom:379.442533pt;}
.y64{bottom:380.493733pt;}
.y131{bottom:382.412533pt;}
.y2b{bottom:382.423067pt;}
.yff{bottom:382.424800pt;}
.y15e{bottom:393.612533pt;}
.ycf{bottom:396.376133pt;}
.y93{bottom:397.042533pt;}
.y63{bottom:398.093733pt;}
.y130{bottom:400.012533pt;}
.y2a{bottom:400.023067pt;}
.yfe{bottom:400.024800pt;}
.y15d{bottom:408.012533pt;}
.yce{bottom:413.976133pt;}
.y92{bottom:414.642533pt;}
.y62{bottom:415.693733pt;}
.y12f{bottom:417.612533pt;}
.yfd{bottom:417.624800pt;}
.y15c{bottom:422.412533pt;}
.ycd{bottom:431.576133pt;}
.y91{bottom:432.242533pt;}
.y61{bottom:433.293733pt;}
.y12e{bottom:435.212533pt;}
.y29{bottom:435.223067pt;}
.yfc{bottom:435.224800pt;}
.y15b{bottom:436.812533pt;}
.ycc{bottom:449.176133pt;}
.y90{bottom:449.842533pt;}
.y60{bottom:450.893733pt;}
.y15a{bottom:451.212533pt;}
.y12d{bottom:452.812533pt;}
.y28{bottom:452.823067pt;}
.yfb{bottom:452.824800pt;}
.y159{bottom:465.612533pt;}
.ycb{bottom:466.776133pt;}
.y8f{bottom:467.442533pt;}
.y5f{bottom:468.493733pt;}
.y12c{bottom:470.412533pt;}
.yfa{bottom:470.424800pt;}
.y158{bottom:480.012533pt;}
.yca{bottom:484.376133pt;}
.y8e{bottom:485.042533pt;}
.y5e{bottom:486.093733pt;}
.y12b{bottom:488.012533pt;}
.y27{bottom:488.023067pt;}
.yf9{bottom:488.024800pt;}
.y157{bottom:494.412533pt;}
.yc9{bottom:501.976133pt;}
.y8d{bottom:502.642533pt;}
.y5d{bottom:503.693733pt;}
.y12a{bottom:505.612533pt;}
.y26{bottom:505.623067pt;}
.yf8{bottom:505.624800pt;}
.y156{bottom:508.812533pt;}
.yc8{bottom:519.576133pt;}
.y8c{bottom:521.239867pt;}
.y5c{bottom:521.293733pt;}
.y129{bottom:523.212533pt;}
.y25{bottom:523.223067pt;}
.yf7{bottom:523.224800pt;}
.yc7{bottom:537.153867pt;}
.y155{bottom:537.612533pt;}
.y5b{bottom:538.893733pt;}
.y128{bottom:540.812533pt;}
.y24{bottom:540.823067pt;}
.yf6{bottom:540.824800pt;}
.y8b{bottom:545.219867pt;}
.y154{bottom:552.012533pt;}
.yc6{bottom:554.757867pt;}
.y5a{bottom:556.493733pt;}
.y127{bottom:558.412533pt;}
.y23{bottom:558.423067pt;}
.yf5{bottom:558.424800pt;}
.y153{bottom:566.412533pt;}
.y8a{bottom:569.199867pt;}
.y59{bottom:574.093733pt;}
.y126{bottom:576.012533pt;}
.y22{bottom:576.023067pt;}
.yf4{bottom:576.024800pt;}
.y152{bottom:580.812533pt;}
.yc5{bottom:584.457867pt;}
.y58{bottom:591.693733pt;}
.y89{bottom:593.179867pt;}
.y125{bottom:593.612533pt;}
.y21{bottom:593.623067pt;}
.yf3{bottom:593.624800pt;}
.y151{bottom:595.212533pt;}
.yc3{bottom:606.117867pt;}
.y57{bottom:609.293733pt;}
.y150{bottom:609.612533pt;}
.y88{bottom:610.779867pt;}
.y124{bottom:611.212533pt;}
.y20{bottom:611.223067pt;}
.yf2{bottom:611.224800pt;}
.yc2{bottom:620.517867pt;}
.yc4{bottom:620.613867pt;}
.y14f{bottom:624.012533pt;}
.y56{bottom:626.893733pt;}
.y123{bottom:628.812533pt;}
.y1f{bottom:628.823067pt;}
.yf1{bottom:628.824800pt;}
.ye{bottom:636.056667pt;}
.y14e{bottom:638.412533pt;}
.yc1{bottom:642.177867pt;}
.y55{bottom:644.493733pt;}
.y122{bottom:646.412533pt;}
.y1e{bottom:646.423067pt;}
.yf0{bottom:646.424800pt;}
.y87{bottom:652.359867pt;}
.y14d{bottom:652.812533pt;}
.y9b{bottom:660.852400pt;}
.y54{bottom:662.093733pt;}
.yc0{bottom:663.837867pt;}
.y121{bottom:664.012533pt;}
.y1d{bottom:664.023067pt;}
.yef{bottom:664.024800pt;}
.yd{bottom:664.856667pt;}
.y14c{bottom:667.212533pt;}
.yc{bottom:679.256667pt;}
.y53{bottom:679.693733pt;}
.y120{bottom:681.612533pt;}
.y1c{bottom:681.623067pt;}
.yee{bottom:681.624933pt;}
.ybf{bottom:685.497867pt;}
.yb{bottom:693.656667pt;}
.y14b{bottom:696.012533pt;}
.y86{bottom:696.118533pt;}
.y52{bottom:697.293733pt;}
.y11f{bottom:699.212533pt;}
.y1b{bottom:699.223067pt;}
.yed{bottom:699.224933pt;}
.ybd{bottom:707.157867pt;}
.ya{bottom:708.056667pt;}
.y14a{bottom:710.412533pt;}
.y51{bottom:714.893733pt;}
.y11e{bottom:716.812533pt;}
.y1a{bottom:716.823067pt;}
.yec{bottom:716.824800pt;}
.ybc{bottom:721.557867pt;}
.ybe{bottom:721.653867pt;}
.y149{bottom:724.812533pt;}
.y9{bottom:727.296667pt;}
.y50{bottom:732.493733pt;}
.y85{bottom:732.936533pt;}
.y11d{bottom:734.412533pt;}
.y19{bottom:734.423067pt;}
.yeb{bottom:734.424800pt;}
.y148{bottom:739.212533pt;}
.ybb{bottom:743.217867pt;}
.y4f{bottom:750.093733pt;}
.y84{bottom:750.536533pt;}
.y11c{bottom:752.012533pt;}
.y18{bottom:752.023067pt;}
.yea{bottom:752.024800pt;}
.y147{bottom:753.612533pt;}
.y8{bottom:754.456667pt;}
.y187{bottom:762.433867pt;}
.yb9{bottom:764.877867pt;}
.y4e{bottom:767.693733pt;}
.y146{bottom:768.012533pt;}
.y7{bottom:768.856667pt;}
.y11b{bottom:769.612533pt;}
.y17{bottom:769.623067pt;}
.ye9{bottom:769.624800pt;}
.y186{bottom:776.833867pt;}
.yb8{bottom:779.277867pt;}
.y145{bottom:782.412533pt;}
.y6{bottom:783.256667pt;}
.y4d{bottom:785.293733pt;}
.y83{bottom:786.733867pt;}
.y11a{bottom:787.212533pt;}
.y16{bottom:787.223067pt;}
.ye8{bottom:787.224800pt;}
.y185{bottom:791.233867pt;}
.yb7{bottom:793.677867pt;}
.yba{bottom:793.773867pt;}
.y144{bottom:796.812533pt;}
.y5{bottom:797.656667pt;}
.y4c{bottom:802.893733pt;}
.y119{bottom:804.812533pt;}
.y15{bottom:804.823067pt;}
.ye7{bottom:804.824800pt;}
.y184{bottom:805.633867pt;}
.y82{bottom:810.713867pt;}
.y143{bottom:811.212533pt;}
.y4{bottom:812.056667pt;}
.yb5{bottom:815.337867pt;}
.y183{bottom:820.033867pt;}
.y4b{bottom:820.493733pt;}
.y118{bottom:822.412533pt;}
.y14{bottom:822.423067pt;}
.ye6{bottom:822.424800pt;}
.y142{bottom:825.612533pt;}
.y3{bottom:826.456667pt;}
.yb4{bottom:829.737867pt;}
.yb6{bottom:829.833867pt;}
.y182{bottom:834.433867pt;}
.y81{bottom:834.693867pt;}
.y4a{bottom:838.093733pt;}
.y117{bottom:840.012533pt;}
.y13{bottom:840.023067pt;}
.ye5{bottom:840.024800pt;}
.y2{bottom:845.696667pt;}
.y181{bottom:848.833867pt;}
.yb3{bottom:851.397867pt;}
.y80{bottom:852.293867pt;}
.y141{bottom:854.412533pt;}
.y49{bottom:855.693733pt;}
.y116{bottom:857.612533pt;}
.y180{bottom:863.233867pt;}
.yb2{bottom:873.057867pt;}
.y48{bottom:873.293733pt;}
.y115{bottom:875.212533pt;}
.y7f{bottom:876.273867pt;}
.y17f{bottom:877.633867pt;}
.y47{bottom:890.893733pt;}
.y17e{bottom:892.033867pt;}
.y114{bottom:892.812533pt;}
.ye4{bottom:893.817867pt;}
.y7e{bottom:893.873867pt;}
.yb1{bottom:894.717867pt;}
.y7c{bottom:899.828667pt;}
.y17d{bottom:906.433867pt;}
.y46{bottom:908.493733pt;}
.y113{bottom:910.412533pt;}
.ye3{bottom:915.381867pt;}
.yb0{bottom:916.377867pt;}
.y7d{bottom:917.854000pt;}
.y17c{bottom:920.833867pt;}
.y45{bottom:926.093733pt;}
.y9a{bottom:926.412533pt;}
.y112{bottom:928.012533pt;}
.y17b{bottom:935.233867pt;}
.ye2{bottom:936.945867pt;}
.y44{bottom:943.693733pt;}
.yaf{bottom:944.013867pt;}
.y111{bottom:945.612533pt;}
.y17a{bottom:949.633867pt;}
.y11{bottom:950.497333pt;}
.y12{bottom:955.337333pt;}
.ye1{bottom:958.509867pt;}
.y43{bottom:961.293733pt;}
.y7b{bottom:961.612533pt;}
.y99{bottom:963.212533pt;}
.y179{bottom:964.033867pt;}
.y178{bottom:978.433867pt;}
.y42{bottom:978.893733pt;}
.yae{bottom:979.977867pt;}
.ye0{bottom:980.073867pt;}
.y98{bottom:980.812533pt;}
.y177{bottom:992.833867pt;}
.ydf{bottom:994.473867pt;}
.y41{bottom:996.493733pt;}
.y10{bottom:997.033733pt;}
.y7a{bottom:998.412533pt;}
.yac{bottom:1001.637867pt;}
.y176{bottom:1007.233867pt;}
.y40{bottom:1014.093733pt;}
.y79{bottom:1016.012533pt;}
.yab{bottom:1016.037867pt;}
.y175{bottom:1021.633867pt;}
.yf{bottom:1025.833733pt;}
.yaa{bottom:1030.437867pt;}
.yad{bottom:1030.533867pt;}
.y3f{bottom:1031.693733pt;}
.y78{bottom:1033.612533pt;}
.y174{bottom:1036.033867pt;}
.h3{height:29.841387pt;}
.ha{height:32.597333pt;}
.h9{height:37.418667pt;}
.h4{height:42.096000pt;}
.h6{height:42.144000pt;}
.h12{height:42.480000pt;}
.h8{height:44.821333pt;}
.he{height:45.729600pt;}
.h10{height:46.880000pt;}
.hd{height:51.450667pt;}
.h13{height:51.451200pt;}
.h7{height:51.568000pt;}
.hb{height:53.850667pt;}
.h2{height:54.106133pt;}
.hf{height:56.192000pt;}
.hc{height:60.944000pt;}
.h5{height:84.384000pt;}
.h11{height:99.744000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:27.628267pt;}
.xb{left:48.000000pt;}
.x1{left:75.590533pt;}
.x37{left:76.923867pt;}
.x1d{left:80.923867pt;}
.x35{left:82.257200pt;}
.x7{left:84.506933pt;}
.x38{left:90.710533pt;}
.x3{left:125.246133pt;}
.x4{left:127.406800pt;}
.x5{left:173.774000pt;}
.x1e{left:177.598400pt;}
.x9{left:181.417333pt;}
.xc{left:186.750667pt;}
.x2a{left:188.789600pt;}
.x26{left:190.597067pt;}
.x27{left:194.309600pt;}
.x39{left:196.535467pt;}
.x36{left:207.573200pt;}
.x1f{left:231.130400pt;}
.x1c{left:261.755467pt;}
.x20{left:274.918400pt;}
.x1a{left:279.948400pt;}
.xf{left:289.364400pt;}
.x1b{left:293.822667pt;}
.xe{left:300.555067pt;}
.x29{left:303.881600pt;}
.x28{left:306.389600pt;}
.x2c{left:319.626000pt;}
.xd{left:320.642667pt;}
.x21{left:328.450400pt;}
.x11{left:360.879067pt;}
.x2d{left:369.702000pt;}
.x10{left:372.832400pt;}
.x22{left:375.070400pt;}
.x2b{left:377.389200pt;}
.x2e{left:413.166000pt;}
.x13{left:432.995067pt;}
.x12{left:444.171067pt;}
.x2f{left:453.798000pt;}
.x23{left:474.013067pt;}
.x30{left:497.262000pt;}
.x15{left:508.293733pt;}
.x24{left:517.153067pt;}
.x14{left:520.247067pt;}
.x31{left:541.362000pt;}
.x25{left:560.929067pt;}
.x17{left:585.587067pt;}
.x32{left:592.698000pt;}
.x16{left:596.777733pt;}
.xa{left:602.532267pt;}
.x33{left:636.162000pt;}
.x2{left:642.179467pt;}
.x6{left:651.514933pt;}
.x19{left:657.879067pt;}
.x18{left:669.832400pt;}
.x34{left:681.522000pt;}
}




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