
    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_3e38a10bf4ab8c52f0671f0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_dccb675d7c6079a56bb9c51b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_47d485a6749f8c4ce83e40ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_54a0215e9904a0bd1c325a9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.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;}
}
.ws8{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.520000px;}
.ws6{word-spacing:-13.860000px;}
.ws4{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws7{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws0{word-spacing:-0.032400px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-11.739000px;}
._1e{margin-left:-9.826500px;}
._4{margin-left:-8.025900px;}
._2{margin-left:-6.442800px;}
._15{margin-left:-5.394300px;}
._3{margin-left:-4.352400px;}
._0{margin-left:-3.307500px;}
._13{margin-left:-2.303400px;}
._1{margin-left:-1.278900px;}
._9{width:1.002300px;}
._19{width:2.046000px;}
._c{width:3.047700px;}
._8{width:4.184400px;}
._b{width:6.118200px;}
._f{width:7.747200px;}
._10{width:9.246600px;}
._12{width:10.468500px;}
._11{width:11.470800px;}
._d{width:12.832500px;}
._21{width:14.548500px;}
._a{width:16.163400px;}
._e{width:17.898000px;}
._18{width:19.105200px;}
._6{width:20.494200px;}
._7{width:21.627000px;}
._1a{width:23.035200px;}
._1b{width:24.183600px;}
._16{width:25.415100px;}
._14{width:27.066600px;}
._17{width:28.347000px;}
._1c{width:29.396400px;}
._1d{width:30.597600px;}
._1f{width:31.713000px;}
._20{width:37.019400px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y172{bottom:126.636900px;}
.y134{bottom:127.386900px;}
.yd0{bottom:128.136900px;}
.y111{bottom:131.136900px;}
.yf3{bottom:131.586900px;}
.y14c{bottom:132.636900px;}
.y24{bottom:133.275900px;}
.y158{bottom:133.386900px;}
.y75{bottom:133.653900px;}
.y10b{bottom:134.136900px;}
.y149{bottom:135.636900px;}
.yb9{bottom:137.127900px;}
.y18f{bottom:138.149400px;}
.y18e{bottom:140.136900px;}
.y4d{bottom:140.877900px;}
.y171{bottom:145.386900px;}
.y133{bottom:146.136900px;}
.ycf{bottom:146.886900px;}
.y23{bottom:149.475900px;}
.y93{bottom:149.853900px;}
.y110{bottom:149.886900px;}
.yf2{bottom:150.336900px;}
.y14b{bottom:151.386900px;}
.y74{bottom:151.653900px;}
.y157{bottom:152.136900px;}
.y10a{bottom:152.886900px;}
.y148{bottom:154.386900px;}
.yb8{bottom:155.877900px;}
.y18d{bottom:158.886900px;}
.y4c{bottom:159.627900px;}
.y170{bottom:164.136900px;}
.y132{bottom:164.886900px;}
.y92{bottom:166.053900px;}
.yce{bottom:167.136900px;}
.y10f{bottom:168.636900px;}
.y73{bottom:169.653900px;}
.y14a{bottom:170.136900px;}
.y22{bottom:170.171400px;}
.y109{bottom:171.636900px;}
.y147{bottom:173.136900px;}
.yb7{bottom:174.627900px;}
.y18c{bottom:177.636900px;}
.yf1{bottom:178.086900px;}
.y4b{bottom:178.377900px;}
.y156{bottom:179.886900px;}
.y91{bottom:182.253900px;}
.y16f{bottom:182.886900px;}
.y131{bottom:183.636900px;}
.ycd{bottom:185.886900px;}
.y21{bottom:186.371400px;}
.y10e{bottom:187.386900px;}
.y108{bottom:190.386900px;}
.y146{bottom:191.886900px;}
.y72{bottom:192.149400px;}
.yb6{bottom:193.377900px;}
.y18b{bottom:196.386900px;}
.y90{bottom:198.453900px;}
.y4a{bottom:198.627900px;}
.y130{bottom:202.386900px;}
.y16e{bottom:203.136900px;}
.ycc{bottom:204.636900px;}
.y10d{bottom:206.136900px;}
.y107{bottom:209.136900px;}
.y145{bottom:210.636900px;}
.yf0{bottom:211.836900px;}
.yb5{bottom:212.127900px;}
.y8f{bottom:214.653900px;}
.y18a{bottom:215.136900px;}
.y49{bottom:217.377900px;}
.y155{bottom:218.136900px;}
.y12f{bottom:221.136900px;}
.y16d{bottom:221.886900px;}
.y71{bottom:223.386900px;}
.y10c{bottom:224.886900px;}
.y106{bottom:227.886900px;}
.y144{bottom:229.386900px;}
.yef{bottom:230.286900px;}
.y8e{bottom:230.853900px;}
.yb4{bottom:230.877900px;}
.y189{bottom:233.886900px;}
.y48{bottom:236.127900px;}
.y154{bottom:236.886900px;}
.y20{bottom:239.652900px;}
.y16c{bottom:240.636900px;}
.y12e{bottom:241.386900px;}
.y70{bottom:242.136900px;}
.ycb{bottom:243.636900px;}
.y105{bottom:246.636900px;}
.y8d{bottom:247.053900px;}
.y143{bottom:248.136900px;}
.yee{bottom:248.736900px;}
.yb3{bottom:249.627900px;}
.y188{bottom:252.636900px;}
.y47{bottom:254.877900px;}
.y153{bottom:255.636900px;}
.y1f{bottom:258.402900px;}
.y16b{bottom:259.386900px;}
.y12d{bottom:260.136900px;}
.y6f{bottom:260.886900px;}
.yca{bottom:262.386900px;}
.y8c{bottom:263.253900px;}
.y104{bottom:265.386900px;}
.y142{bottom:266.886900px;}
.yed{bottom:267.186900px;}
.yb2{bottom:268.377900px;}
.y187{bottom:271.386900px;}
.y46{bottom:273.627900px;}
.y152{bottom:274.386900px;}
.y16a{bottom:278.136900px;}
.y12c{bottom:278.886900px;}
.y8b{bottom:279.453900px;}
.y6e{bottom:279.636900px;}
.yc9{bottom:281.136900px;}
.y103{bottom:284.136900px;}
.y141{bottom:285.636900px;}
.y1e{bottom:286.152900px;}
.yb1{bottom:287.127900px;}
.yec{bottom:287.136900px;}
.y186{bottom:290.136900px;}
.y45{bottom:292.377900px;}
.y151{bottom:293.136900px;}
.y8a{bottom:295.653900px;}
.y169{bottom:296.886900px;}
.y12b{bottom:297.636900px;}
.y6d{bottom:298.386900px;}
.yc8{bottom:299.886900px;}
.y102{bottom:302.886900px;}
.y140{bottom:304.386900px;}
.y1d{bottom:304.902900px;}
.yeb{bottom:305.586900px;}
.y1af{bottom:307.152900px;}
.yb0{bottom:307.377900px;}
.y185{bottom:308.886900px;}
.y44{bottom:311.127900px;}
.y89{bottom:311.853900px;}
.y150{bottom:311.886900px;}
.y168{bottom:315.636900px;}
.y12a{bottom:316.386900px;}
.y6c{bottom:317.136900px;}
.yc7{bottom:318.636900px;}
.y101{bottom:321.636900px;}
.y13f{bottom:323.136900px;}
.y1c{bottom:323.652900px;}
.yea{bottom:324.036900px;}
.y1ae{bottom:325.902900px;}
.yaf{bottom:326.127900px;}
.y88{bottom:328.053900px;}
.y184{bottom:329.136900px;}
.y43{bottom:329.877900px;}
.y14f{bottom:330.636900px;}
.y167{bottom:334.386900px;}
.y129{bottom:335.136900px;}
.y6b{bottom:337.386900px;}
.yc6{bottom:338.886900px;}
.y100{bottom:340.386900px;}
.y13e{bottom:341.886900px;}
.y1b{bottom:342.402900px;}
.ye9{bottom:342.486900px;}
.y87{bottom:344.253900px;}
.yae{bottom:344.877900px;}
.y1ad{bottom:346.152900px;}
.y183{bottom:347.886900px;}
.y14e{bottom:349.386900px;}
.y42{bottom:350.127900px;}
.y166{bottom:353.136900px;}
.y128{bottom:353.886900px;}
.y6a{bottom:356.136900px;}
.yc5{bottom:357.636900px;}
.yff{bottom:359.136900px;}
.y86{bottom:360.453900px;}
.y13d{bottom:360.636900px;}
.ye8{bottom:360.936900px;}
.y1a{bottom:361.152900px;}
.yad{bottom:363.627900px;}
.y1ac{bottom:364.902900px;}
.y182{bottom:366.636900px;}
.y41{bottom:368.877900px;}
.y165{bottom:371.886900px;}
.y127{bottom:372.636900px;}
.y69{bottom:374.886900px;}
.yc4{bottom:376.386900px;}
.y85{bottom:376.653900px;}
.y14d{bottom:377.136900px;}
.yfe{bottom:377.886900px;}
.ye7{bottom:379.386900px;}
.y19{bottom:379.902900px;}
.yac{bottom:382.377900px;}
.y1ab{bottom:383.652900px;}
.y181{bottom:385.386900px;}
.y40{bottom:387.627900px;}
.y164{bottom:390.636900px;}
.y126{bottom:391.386900px;}
.y84{bottom:392.853900px;}
.y68{bottom:393.636900px;}
.yc3{bottom:395.136900px;}
.yfd{bottom:396.636900px;}
.ye6{bottom:397.836900px;}
.y13c{bottom:398.136900px;}
.y18{bottom:398.652900px;}
.yab{bottom:401.127900px;}
.y1aa{bottom:402.402900px;}
.y180{bottom:404.136900px;}
.y3f{bottom:406.377900px;}
.y83{bottom:409.053900px;}
.y125{bottom:410.136900px;}
.y163{bottom:410.886900px;}
.y67{bottom:412.386900px;}
.yc2{bottom:413.886900px;}
.yfc{bottom:415.386900px;}
.ye5{bottom:416.286900px;}
.y13b{bottom:416.886900px;}
.y17{bottom:417.402900px;}
.yaa{bottom:419.877900px;}
.y1a9{bottom:421.152900px;}
.y17f{bottom:422.886900px;}
.y3e{bottom:425.127900px;}
.y82{bottom:425.253900px;}
.y162{bottom:429.636900px;}
.y124{bottom:430.386900px;}
.y66{bottom:431.136900px;}
.yc1{bottom:432.636900px;}
.yfb{bottom:434.136900px;}
.ye4{bottom:434.736900px;}
.y13a{bottom:435.636900px;}
.y16{bottom:436.152900px;}
.ya9{bottom:438.627900px;}
.y1a8{bottom:439.902900px;}
.y17e{bottom:441.636900px;}
.y3d{bottom:443.877900px;}
.y81{bottom:445.949400px;}
.y161{bottom:448.386900px;}
.y123{bottom:449.136900px;}
.y65{bottom:449.886900px;}
.yc0{bottom:451.386900px;}
.yfa{bottom:452.886900px;}
.y139{bottom:454.386900px;}
.ye3{bottom:454.686900px;}
.y15{bottom:454.902900px;}
.ya8{bottom:457.377900px;}
.y80{bottom:457.653900px;}
.y1a7{bottom:458.652900px;}
.y17d{bottom:460.386900px;}
.y3c{bottom:462.627900px;}
.y160{bottom:467.136900px;}
.y122{bottom:467.886900px;}
.y64{bottom:468.636900px;}
.ybf{bottom:470.136900px;}
.yf9{bottom:471.636900px;}
.ye2{bottom:473.136900px;}
.y14{bottom:473.652900px;}
.ya7{bottom:476.127900px;}
.y1a6{bottom:477.402900px;}
.y17c{bottom:479.136900px;}
.y7f{bottom:480.149400px;}
.y3b{bottom:481.377900px;}
.y15f{bottom:485.886900px;}
.y121{bottom:486.636900px;}
.y63{bottom:487.386900px;}
.ybe{bottom:488.886900px;}
.yf8{bottom:490.386900px;}
.ye1{bottom:491.586900px;}
.y138{bottom:491.886900px;}
.y13{bottom:492.402900px;}
.ya6{bottom:494.877900px;}
.y1a5{bottom:496.152900px;}
.y17b{bottom:499.386900px;}
.y3a{bottom:500.127900px;}
.y15e{bottom:504.636900px;}
.y120{bottom:505.386900px;}
.y62{bottom:507.636900px;}
.yf7{bottom:509.136900px;}
.ye0{bottom:510.036900px;}
.y137{bottom:510.636900px;}
.y12{bottom:511.152900px;}
.y1a4{bottom:514.902900px;}
.ya5{bottom:515.127900px;}
.y17a{bottom:518.136900px;}
.y39{bottom:518.877900px;}
.y11f{bottom:524.136900px;}
.y15d{bottom:524.886900px;}
.y61{bottom:526.386900px;}
.yf6{bottom:527.886900px;}
.ydf{bottom:528.486900px;}
.y136{bottom:529.386900px;}
.y11{bottom:529.902900px;}
.y1a3{bottom:533.652900px;}
.ya4{bottom:533.877900px;}
.y179{bottom:536.886900px;}
.y38{bottom:537.627900px;}
.y11e{bottom:542.886900px;}
.y15c{bottom:543.636900px;}
.y60{bottom:545.136900px;}
.yf5{bottom:546.636900px;}
.yde{bottom:546.936900px;}
.y135{bottom:548.136900px;}
.y10{bottom:548.652900px;}
.y1a2{bottom:552.402900px;}
.ya3{bottom:552.627900px;}
.y178{bottom:555.636900px;}
.y37{bottom:556.377900px;}
.y11d{bottom:561.636900px;}
.y15b{bottom:562.386900px;}
.y5f{bottom:563.886900px;}
.yf4{bottom:565.386900px;}
.ydd{bottom:566.886900px;}
.yf{bottom:567.402900px;}
.y1a1{bottom:571.152900px;}
.ya2{bottom:571.377900px;}
.y177{bottom:574.386900px;}
.y36{bottom:575.127900px;}
.y11c{bottom:580.386900px;}
.y15a{bottom:581.136900px;}
.y5e{bottom:582.636900px;}
.ybd{bottom:584.136900px;}
.ydc{bottom:585.636900px;}
.ye{bottom:586.152900px;}
.y1a0{bottom:589.902900px;}
.ya1{bottom:590.127900px;}
.y176{bottom:593.136900px;}
.y35{bottom:595.377900px;}
.y11b{bottom:599.136900px;}
.y159{bottom:599.886900px;}
.y5d{bottom:601.386900px;}
.ybc{bottom:602.886900px;}
.ydb{bottom:604.386900px;}
.yd{bottom:604.902900px;}
.y19f{bottom:608.652900px;}
.ya0{bottom:608.877900px;}
.y196{bottom:608.886900px;}
.y175{bottom:611.886900px;}
.y34{bottom:614.127900px;}
.y11a{bottom:617.886900px;}
.y5c{bottom:620.136900px;}
.ybb{bottom:621.636900px;}
.yda{bottom:623.136900px;}
.yc{bottom:623.652900px;}
.y19e{bottom:627.402900px;}
.y9f{bottom:627.627900px;}
.y195{bottom:627.636900px;}
.y174{bottom:630.636900px;}
.y33{bottom:632.877900px;}
.y119{bottom:636.636900px;}
.y5b{bottom:638.886900px;}
.yba{bottom:640.386900px;}
.yd9{bottom:641.886900px;}
.y19d{bottom:646.152900px;}
.y9e{bottom:646.377900px;}
.y194{bottom:650.886900px;}
.y32{bottom:651.627900px;}
.y118{bottom:655.386900px;}
.y7e{bottom:657.636900px;}
.y173{bottom:658.386900px;}
.y5a{bottom:659.136900px;}
.yd8{bottom:660.636900px;}
.y19c{bottom:664.902900px;}
.y9d{bottom:665.127900px;}
.y193{bottom:669.636900px;}
.y31{bottom:670.377900px;}
.y117{bottom:674.136900px;}
.y7d{bottom:676.386900px;}
.y59{bottom:677.886900px;}
.yd7{bottom:679.386900px;}
.y19b{bottom:683.652900px;}
.y9c{bottom:685.377900px;}
.yb{bottom:687.402900px;}
.y192{bottom:688.386900px;}
.y30{bottom:689.127900px;}
.y116{bottom:692.886900px;}
.y7c{bottom:695.136900px;}
.y58{bottom:696.636900px;}
.yd6{bottom:698.136900px;}
.y9b{bottom:704.127900px;}
.y191{bottom:707.136900px;}
.y2f{bottom:707.877900px;}
.ya{bottom:709.902900px;}
.y19a{bottom:711.402900px;}
.y115{bottom:711.636900px;}
.y7b{bottom:713.886900px;}
.y57{bottom:715.386900px;}
.yd5{bottom:716.886900px;}
.y9a{bottom:722.877900px;}
.y2e{bottom:726.627900px;}
.y114{bottom:730.386900px;}
.y9{bottom:732.402900px;}
.y7a{bottom:732.636900px;}
.y56{bottom:734.136900px;}
.y190{bottom:734.886900px;}
.yd4{bottom:735.636900px;}
.y99{bottom:741.627900px;}
.y199{bottom:743.652900px;}
.y2d{bottom:745.377900px;}
.y79{bottom:751.386900px;}
.y55{bottom:752.886900px;}
.yd3{bottom:754.386900px;}
.y113{bottom:758.136900px;}
.y98{bottom:760.377900px;}
.y198{bottom:762.402900px;}
.y2c{bottom:764.127900px;}
.y54{bottom:771.636900px;}
.yd2{bottom:773.136900px;}
.y112{bottom:776.886900px;}
.y97{bottom:779.127900px;}
.y197{bottom:781.152900px;}
.y2b{bottom:782.877900px;}
.y53{bottom:790.386900px;}
.yd1{bottom:791.886900px;}
.y96{bottom:797.877900px;}
.y2a{bottom:801.627900px;}
.y78{bottom:809.136900px;}
.y52{bottom:810.636900px;}
.y29{bottom:820.377900px;}
.y95{bottom:825.627900px;}
.y77{bottom:827.886900px;}
.y51{bottom:829.386900px;}
.y8{bottom:829.902900px;}
.y4{bottom:837.318900px;}
.y28{bottom:839.127900px;}
.y76{bottom:846.636900px;}
.y50{bottom:848.136900px;}
.y7{bottom:848.652900px;}
.y27{bottom:857.877900px;}
.y94{bottom:866.877900px;}
.y4f{bottom:866.886900px;}
.y6{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y26{bottom:885.627900px;}
.y4e{bottom:885.636900px;}
.y5{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y25{bottom:922.796400px;}
.h9{height:29.004328px;}
.hb{height:41.765625px;}
.h3{height:44.586914px;}
.hc{height:46.792969px;}
.ha{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.hd{height:57.427734px;}
.h7{height:57.750000px;}
.he{height:59.449219px;}
.hf{height:63.000000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.xe{left:99.504600px;}
.x6{left:103.670100px;}
.x9{left:108.425100px;}
.x7{left:110.954100px;}
.xd{left:130.854600px;}
.xa{left:133.937100px;}
.x8{left:142.440600px;}
.xf{left:247.818600px;}
.x10{left:322.938600px;}
.x3{left:441.618600px;}
.x4{left:443.360100px;}
.x2{left:487.353600px;}
.xb{left:512.874600px;}
.xc{left:605.471100px;}
.x1{left:614.192100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ws8{word-spacing:-14.080000pt;}
.ws2{word-spacing:-12.906667pt;}
.ws6{word-spacing:-12.320000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws7{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws0{word-spacing:-0.028800pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-10.434667pt;}
._1e{margin-left:-8.734667pt;}
._4{margin-left:-7.134133pt;}
._2{margin-left:-5.726933pt;}
._15{margin-left:-4.794933pt;}
._3{margin-left:-3.868800pt;}
._0{margin-left:-2.940000pt;}
._13{margin-left:-2.047467pt;}
._1{margin-left:-1.136800pt;}
._9{width:0.890933pt;}
._19{width:1.818667pt;}
._c{width:2.709067pt;}
._8{width:3.719467pt;}
._b{width:5.438400pt;}
._f{width:6.886400pt;}
._10{width:8.219200pt;}
._12{width:9.305333pt;}
._11{width:10.196267pt;}
._d{width:11.406667pt;}
._21{width:12.932000pt;}
._a{width:14.367467pt;}
._e{width:15.909333pt;}
._18{width:16.982400pt;}
._6{width:18.217067pt;}
._7{width:19.224000pt;}
._1a{width:20.475733pt;}
._1b{width:21.496533pt;}
._16{width:22.591200pt;}
._14{width:24.059200pt;}
._17{width:25.197333pt;}
._1c{width:26.130133pt;}
._1d{width:27.197867pt;}
._1f{width:28.189333pt;}
._20{width:32.906133pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y172{bottom:112.566133pt;}
.y134{bottom:113.232800pt;}
.yd0{bottom:113.899467pt;}
.y111{bottom:116.566133pt;}
.yf3{bottom:116.966133pt;}
.y14c{bottom:117.899467pt;}
.y24{bottom:118.467467pt;}
.y158{bottom:118.566133pt;}
.y75{bottom:118.803467pt;}
.y10b{bottom:119.232800pt;}
.y149{bottom:120.566133pt;}
.yb9{bottom:121.891467pt;}
.y18f{bottom:122.799467pt;}
.y18e{bottom:124.566133pt;}
.y4d{bottom:125.224800pt;}
.y171{bottom:129.232800pt;}
.y133{bottom:129.899467pt;}
.ycf{bottom:130.566133pt;}
.y23{bottom:132.867467pt;}
.y93{bottom:133.203467pt;}
.y110{bottom:133.232800pt;}
.yf2{bottom:133.632800pt;}
.y14b{bottom:134.566133pt;}
.y74{bottom:134.803467pt;}
.y157{bottom:135.232800pt;}
.y10a{bottom:135.899467pt;}
.y148{bottom:137.232800pt;}
.yb8{bottom:138.558133pt;}
.y18d{bottom:141.232800pt;}
.y4c{bottom:141.891467pt;}
.y170{bottom:145.899467pt;}
.y132{bottom:146.566133pt;}
.y92{bottom:147.603467pt;}
.yce{bottom:148.566133pt;}
.y10f{bottom:149.899467pt;}
.y73{bottom:150.803467pt;}
.y14a{bottom:151.232800pt;}
.y22{bottom:151.263467pt;}
.y109{bottom:152.566133pt;}
.y147{bottom:153.899467pt;}
.yb7{bottom:155.224800pt;}
.y18c{bottom:157.899467pt;}
.yf1{bottom:158.299467pt;}
.y4b{bottom:158.558133pt;}
.y156{bottom:159.899467pt;}
.y91{bottom:162.003467pt;}
.y16f{bottom:162.566133pt;}
.y131{bottom:163.232800pt;}
.ycd{bottom:165.232800pt;}
.y21{bottom:165.663467pt;}
.y10e{bottom:166.566133pt;}
.y108{bottom:169.232800pt;}
.y146{bottom:170.566133pt;}
.y72{bottom:170.799467pt;}
.yb6{bottom:171.891467pt;}
.y18b{bottom:174.566133pt;}
.y90{bottom:176.403467pt;}
.y4a{bottom:176.558133pt;}
.y130{bottom:179.899467pt;}
.y16e{bottom:180.566133pt;}
.ycc{bottom:181.899467pt;}
.y10d{bottom:183.232800pt;}
.y107{bottom:185.899467pt;}
.y145{bottom:187.232800pt;}
.yf0{bottom:188.299467pt;}
.yb5{bottom:188.558133pt;}
.y8f{bottom:190.803467pt;}
.y18a{bottom:191.232800pt;}
.y49{bottom:193.224800pt;}
.y155{bottom:193.899467pt;}
.y12f{bottom:196.566133pt;}
.y16d{bottom:197.232800pt;}
.y71{bottom:198.566133pt;}
.y10c{bottom:199.899467pt;}
.y106{bottom:202.566133pt;}
.y144{bottom:203.899467pt;}
.yef{bottom:204.699467pt;}
.y8e{bottom:205.203467pt;}
.yb4{bottom:205.224800pt;}
.y189{bottom:207.899467pt;}
.y48{bottom:209.891467pt;}
.y154{bottom:210.566133pt;}
.y20{bottom:213.024800pt;}
.y16c{bottom:213.899467pt;}
.y12e{bottom:214.566133pt;}
.y70{bottom:215.232800pt;}
.ycb{bottom:216.566133pt;}
.y105{bottom:219.232800pt;}
.y8d{bottom:219.603467pt;}
.y143{bottom:220.566133pt;}
.yee{bottom:221.099467pt;}
.yb3{bottom:221.891467pt;}
.y188{bottom:224.566133pt;}
.y47{bottom:226.558133pt;}
.y153{bottom:227.232800pt;}
.y1f{bottom:229.691467pt;}
.y16b{bottom:230.566133pt;}
.y12d{bottom:231.232800pt;}
.y6f{bottom:231.899467pt;}
.yca{bottom:233.232800pt;}
.y8c{bottom:234.003467pt;}
.y104{bottom:235.899467pt;}
.y142{bottom:237.232800pt;}
.yed{bottom:237.499467pt;}
.yb2{bottom:238.558133pt;}
.y187{bottom:241.232800pt;}
.y46{bottom:243.224800pt;}
.y152{bottom:243.899467pt;}
.y16a{bottom:247.232800pt;}
.y12c{bottom:247.899467pt;}
.y8b{bottom:248.403467pt;}
.y6e{bottom:248.566133pt;}
.yc9{bottom:249.899467pt;}
.y103{bottom:252.566133pt;}
.y141{bottom:253.899467pt;}
.y1e{bottom:254.358133pt;}
.yb1{bottom:255.224800pt;}
.yec{bottom:255.232800pt;}
.y186{bottom:257.899467pt;}
.y45{bottom:259.891467pt;}
.y151{bottom:260.566133pt;}
.y8a{bottom:262.803467pt;}
.y169{bottom:263.899467pt;}
.y12b{bottom:264.566133pt;}
.y6d{bottom:265.232800pt;}
.yc8{bottom:266.566133pt;}
.y102{bottom:269.232800pt;}
.y140{bottom:270.566133pt;}
.y1d{bottom:271.024800pt;}
.yeb{bottom:271.632800pt;}
.y1af{bottom:273.024800pt;}
.yb0{bottom:273.224800pt;}
.y185{bottom:274.566133pt;}
.y44{bottom:276.558133pt;}
.y89{bottom:277.203467pt;}
.y150{bottom:277.232800pt;}
.y168{bottom:280.566133pt;}
.y12a{bottom:281.232800pt;}
.y6c{bottom:281.899467pt;}
.yc7{bottom:283.232800pt;}
.y101{bottom:285.899467pt;}
.y13f{bottom:287.232800pt;}
.y1c{bottom:287.691467pt;}
.yea{bottom:288.032800pt;}
.y1ae{bottom:289.691467pt;}
.yaf{bottom:289.891467pt;}
.y88{bottom:291.603467pt;}
.y184{bottom:292.566133pt;}
.y43{bottom:293.224800pt;}
.y14f{bottom:293.899467pt;}
.y167{bottom:297.232800pt;}
.y129{bottom:297.899467pt;}
.y6b{bottom:299.899467pt;}
.yc6{bottom:301.232800pt;}
.y100{bottom:302.566133pt;}
.y13e{bottom:303.899467pt;}
.y1b{bottom:304.358133pt;}
.ye9{bottom:304.432800pt;}
.y87{bottom:306.003467pt;}
.yae{bottom:306.558133pt;}
.y1ad{bottom:307.691467pt;}
.y183{bottom:309.232800pt;}
.y14e{bottom:310.566133pt;}
.y42{bottom:311.224800pt;}
.y166{bottom:313.899467pt;}
.y128{bottom:314.566133pt;}
.y6a{bottom:316.566133pt;}
.yc5{bottom:317.899467pt;}
.yff{bottom:319.232800pt;}
.y86{bottom:320.403467pt;}
.y13d{bottom:320.566133pt;}
.ye8{bottom:320.832800pt;}
.y1a{bottom:321.024800pt;}
.yad{bottom:323.224800pt;}
.y1ac{bottom:324.358133pt;}
.y182{bottom:325.899467pt;}
.y41{bottom:327.891467pt;}
.y165{bottom:330.566133pt;}
.y127{bottom:331.232800pt;}
.y69{bottom:333.232800pt;}
.yc4{bottom:334.566133pt;}
.y85{bottom:334.803467pt;}
.y14d{bottom:335.232800pt;}
.yfe{bottom:335.899467pt;}
.ye7{bottom:337.232800pt;}
.y19{bottom:337.691467pt;}
.yac{bottom:339.891467pt;}
.y1ab{bottom:341.024800pt;}
.y181{bottom:342.566133pt;}
.y40{bottom:344.558133pt;}
.y164{bottom:347.232800pt;}
.y126{bottom:347.899467pt;}
.y84{bottom:349.203467pt;}
.y68{bottom:349.899467pt;}
.yc3{bottom:351.232800pt;}
.yfd{bottom:352.566133pt;}
.ye6{bottom:353.632800pt;}
.y13c{bottom:353.899467pt;}
.y18{bottom:354.358133pt;}
.yab{bottom:356.558133pt;}
.y1aa{bottom:357.691467pt;}
.y180{bottom:359.232800pt;}
.y3f{bottom:361.224800pt;}
.y83{bottom:363.603467pt;}
.y125{bottom:364.566133pt;}
.y163{bottom:365.232800pt;}
.y67{bottom:366.566133pt;}
.yc2{bottom:367.899467pt;}
.yfc{bottom:369.232800pt;}
.ye5{bottom:370.032800pt;}
.y13b{bottom:370.566133pt;}
.y17{bottom:371.024800pt;}
.yaa{bottom:373.224800pt;}
.y1a9{bottom:374.358133pt;}
.y17f{bottom:375.899467pt;}
.y3e{bottom:377.891467pt;}
.y82{bottom:378.003467pt;}
.y162{bottom:381.899467pt;}
.y124{bottom:382.566133pt;}
.y66{bottom:383.232800pt;}
.yc1{bottom:384.566133pt;}
.yfb{bottom:385.899467pt;}
.ye4{bottom:386.432800pt;}
.y13a{bottom:387.232800pt;}
.y16{bottom:387.691467pt;}
.ya9{bottom:389.891467pt;}
.y1a8{bottom:391.024800pt;}
.y17e{bottom:392.566133pt;}
.y3d{bottom:394.558133pt;}
.y81{bottom:396.399467pt;}
.y161{bottom:398.566133pt;}
.y123{bottom:399.232800pt;}
.y65{bottom:399.899467pt;}
.yc0{bottom:401.232800pt;}
.yfa{bottom:402.566133pt;}
.y139{bottom:403.899467pt;}
.ye3{bottom:404.166133pt;}
.y15{bottom:404.358133pt;}
.ya8{bottom:406.558133pt;}
.y80{bottom:406.803467pt;}
.y1a7{bottom:407.691467pt;}
.y17d{bottom:409.232800pt;}
.y3c{bottom:411.224800pt;}
.y160{bottom:415.232800pt;}
.y122{bottom:415.899467pt;}
.y64{bottom:416.566133pt;}
.ybf{bottom:417.899467pt;}
.yf9{bottom:419.232800pt;}
.ye2{bottom:420.566133pt;}
.y14{bottom:421.024800pt;}
.ya7{bottom:423.224800pt;}
.y1a6{bottom:424.358133pt;}
.y17c{bottom:425.899467pt;}
.y7f{bottom:426.799467pt;}
.y3b{bottom:427.891467pt;}
.y15f{bottom:431.899467pt;}
.y121{bottom:432.566133pt;}
.y63{bottom:433.232800pt;}
.ybe{bottom:434.566133pt;}
.yf8{bottom:435.899467pt;}
.ye1{bottom:436.966133pt;}
.y138{bottom:437.232800pt;}
.y13{bottom:437.691467pt;}
.ya6{bottom:439.891467pt;}
.y1a5{bottom:441.024800pt;}
.y17b{bottom:443.899467pt;}
.y3a{bottom:444.558133pt;}
.y15e{bottom:448.566133pt;}
.y120{bottom:449.232800pt;}
.y62{bottom:451.232800pt;}
.yf7{bottom:452.566133pt;}
.ye0{bottom:453.366133pt;}
.y137{bottom:453.899467pt;}
.y12{bottom:454.358133pt;}
.y1a4{bottom:457.691467pt;}
.ya5{bottom:457.891467pt;}
.y17a{bottom:460.566133pt;}
.y39{bottom:461.224800pt;}
.y11f{bottom:465.899467pt;}
.y15d{bottom:466.566133pt;}
.y61{bottom:467.899467pt;}
.yf6{bottom:469.232800pt;}
.ydf{bottom:469.766133pt;}
.y136{bottom:470.566133pt;}
.y11{bottom:471.024800pt;}
.y1a3{bottom:474.358133pt;}
.ya4{bottom:474.558133pt;}
.y179{bottom:477.232800pt;}
.y38{bottom:477.891467pt;}
.y11e{bottom:482.566133pt;}
.y15c{bottom:483.232800pt;}
.y60{bottom:484.566133pt;}
.yf5{bottom:485.899467pt;}
.yde{bottom:486.166133pt;}
.y135{bottom:487.232800pt;}
.y10{bottom:487.691467pt;}
.y1a2{bottom:491.024800pt;}
.ya3{bottom:491.224800pt;}
.y178{bottom:493.899467pt;}
.y37{bottom:494.558133pt;}
.y11d{bottom:499.232800pt;}
.y15b{bottom:499.899467pt;}
.y5f{bottom:501.232800pt;}
.yf4{bottom:502.566133pt;}
.ydd{bottom:503.899467pt;}
.yf{bottom:504.358133pt;}
.y1a1{bottom:507.691467pt;}
.ya2{bottom:507.891467pt;}
.y177{bottom:510.566133pt;}
.y36{bottom:511.224800pt;}
.y11c{bottom:515.899467pt;}
.y15a{bottom:516.566133pt;}
.y5e{bottom:517.899467pt;}
.ybd{bottom:519.232800pt;}
.ydc{bottom:520.566133pt;}
.ye{bottom:521.024800pt;}
.y1a0{bottom:524.358133pt;}
.ya1{bottom:524.558133pt;}
.y176{bottom:527.232800pt;}
.y35{bottom:529.224800pt;}
.y11b{bottom:532.566133pt;}
.y159{bottom:533.232800pt;}
.y5d{bottom:534.566133pt;}
.ybc{bottom:535.899467pt;}
.ydb{bottom:537.232800pt;}
.yd{bottom:537.691467pt;}
.y19f{bottom:541.024800pt;}
.ya0{bottom:541.224800pt;}
.y196{bottom:541.232800pt;}
.y175{bottom:543.899467pt;}
.y34{bottom:545.891467pt;}
.y11a{bottom:549.232800pt;}
.y5c{bottom:551.232800pt;}
.ybb{bottom:552.566133pt;}
.yda{bottom:553.899467pt;}
.yc{bottom:554.358133pt;}
.y19e{bottom:557.691467pt;}
.y9f{bottom:557.891467pt;}
.y195{bottom:557.899467pt;}
.y174{bottom:560.566133pt;}
.y33{bottom:562.558133pt;}
.y119{bottom:565.899467pt;}
.y5b{bottom:567.899467pt;}
.yba{bottom:569.232800pt;}
.yd9{bottom:570.566133pt;}
.y19d{bottom:574.358133pt;}
.y9e{bottom:574.558133pt;}
.y194{bottom:578.566133pt;}
.y32{bottom:579.224800pt;}
.y118{bottom:582.566133pt;}
.y7e{bottom:584.566133pt;}
.y173{bottom:585.232800pt;}
.y5a{bottom:585.899467pt;}
.yd8{bottom:587.232800pt;}
.y19c{bottom:591.024800pt;}
.y9d{bottom:591.224800pt;}
.y193{bottom:595.232800pt;}
.y31{bottom:595.891467pt;}
.y117{bottom:599.232800pt;}
.y7d{bottom:601.232800pt;}
.y59{bottom:602.566133pt;}
.yd7{bottom:603.899467pt;}
.y19b{bottom:607.691467pt;}
.y9c{bottom:609.224800pt;}
.yb{bottom:611.024800pt;}
.y192{bottom:611.899467pt;}
.y30{bottom:612.558133pt;}
.y116{bottom:615.899467pt;}
.y7c{bottom:617.899467pt;}
.y58{bottom:619.232800pt;}
.yd6{bottom:620.566133pt;}
.y9b{bottom:625.891467pt;}
.y191{bottom:628.566133pt;}
.y2f{bottom:629.224800pt;}
.ya{bottom:631.024800pt;}
.y19a{bottom:632.358133pt;}
.y115{bottom:632.566133pt;}
.y7b{bottom:634.566133pt;}
.y57{bottom:635.899467pt;}
.yd5{bottom:637.232800pt;}
.y9a{bottom:642.558133pt;}
.y2e{bottom:645.891467pt;}
.y114{bottom:649.232800pt;}
.y9{bottom:651.024800pt;}
.y7a{bottom:651.232800pt;}
.y56{bottom:652.566133pt;}
.y190{bottom:653.232800pt;}
.yd4{bottom:653.899467pt;}
.y99{bottom:659.224800pt;}
.y199{bottom:661.024800pt;}
.y2d{bottom:662.558133pt;}
.y79{bottom:667.899467pt;}
.y55{bottom:669.232800pt;}
.yd3{bottom:670.566133pt;}
.y113{bottom:673.899467pt;}
.y98{bottom:675.891467pt;}
.y198{bottom:677.691467pt;}
.y2c{bottom:679.224800pt;}
.y54{bottom:685.899467pt;}
.yd2{bottom:687.232800pt;}
.y112{bottom:690.566133pt;}
.y97{bottom:692.558133pt;}
.y197{bottom:694.358133pt;}
.y2b{bottom:695.891467pt;}
.y53{bottom:702.566133pt;}
.yd1{bottom:703.899467pt;}
.y96{bottom:709.224800pt;}
.y2a{bottom:712.558133pt;}
.y78{bottom:719.232800pt;}
.y52{bottom:720.566133pt;}
.y29{bottom:729.224800pt;}
.y95{bottom:733.891467pt;}
.y77{bottom:735.899467pt;}
.y51{bottom:737.232800pt;}
.y8{bottom:737.691467pt;}
.y4{bottom:744.283467pt;}
.y28{bottom:745.891467pt;}
.y76{bottom:752.566133pt;}
.y50{bottom:753.899467pt;}
.y7{bottom:754.358133pt;}
.y27{bottom:762.558133pt;}
.y94{bottom:770.558133pt;}
.y4f{bottom:770.566133pt;}
.y6{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y26{bottom:787.224800pt;}
.y4e{bottom:787.232800pt;}
.y5{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y25{bottom:820.263467pt;}
.h9{height:25.781625pt;}
.hb{height:37.125000pt;}
.h3{height:39.632812pt;}
.hc{height:41.593750pt;}
.ha{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.hd{height:51.046875pt;}
.h7{height:51.333333pt;}
.he{height:52.843750pt;}
.hf{height:56.000000pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.xe{left:88.448533pt;}
.x6{left:92.151200pt;}
.x9{left:96.377867pt;}
.x7{left:98.625867pt;}
.xd{left:116.315200pt;}
.xa{left:119.055200pt;}
.x8{left:126.613867pt;}
.xf{left:220.283200pt;}
.x10{left:287.056533pt;}
.x3{left:392.549867pt;}
.x4{left:394.097867pt;}
.x2{left:433.203200pt;}
.xb{left:455.888533pt;}
.xc{left:538.196533pt;}
.x1{left:545.948533pt;}
}




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