
    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_5cc5ed2411866af7fdebd09a.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_d8fb3bb52bf567018deb9cfe.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_748bb8455d66cd5b77a73932.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_96f942ae14fbd35a1fd2fa53.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;}
.ls3{letter-spacing:0.047223px;}
.ls5{letter-spacing:0.478526px;}
.ls4{letter-spacing:0.513157px;}
.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;}
}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws4{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws6{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-8.455200px;}
._4{margin-left:-7.121400px;}
._1a{margin-left:-5.895900px;}
._13{margin-left:-4.889400px;}
._0{margin-left:-3.439800px;}
._1{margin-left:-2.425500px;}
._2{margin-left:-1.108800px;}
._5{width:1.188000px;}
._6{width:2.455200px;}
._9{width:3.577200px;}
._8{width:5.167800px;}
._7{width:6.893700px;}
._c{width:8.032200px;}
._d{width:9.306000px;}
._e{width:10.401600px;}
._f{width:11.491800px;}
._15{width:12.987600px;}
._1c{width:14.271000px;}
._12{width:15.675000px;}
._a{width:16.955400px;}
._14{width:18.080700px;}
._10{width:19.384200px;}
._16{width:20.816400px;}
._11{width:22.248600px;}
._b{width:23.614800px;}
._17{width:24.967800px;}
._19{width:26.096400px;}
._18{width:27.409800px;}
._1b{width:28.776000px;}
._1d{width:32.095800px;}
._1e{width:33.234300px;}
._1f{width:40.557000px;}
._20{width:42.013500px;}
.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;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:89.291400px;}
.y26{bottom:125.732400px;}
.y166{bottom:128.136900px;}
.y71{bottom:133.653900px;}
.y97{bottom:138.149400px;}
.y4e{bottom:141.636900px;}
.y25{bottom:141.932400px;}
.y185{bottom:143.136900px;}
.y165{bottom:146.886900px;}
.y70{bottom:151.653900px;}
.y113{bottom:156.149400px;}
.y4d{bottom:160.386900px;}
.y184{bottom:161.886900px;}
.y24{bottom:162.627900px;}
.y164{bottom:165.636900px;}
.y6f{bottom:169.653900px;}
.yef{bottom:174.149400px;}
.y23{bottom:178.827900px;}
.y4c{bottom:179.136900px;}
.y183{bottom:180.636900px;}
.y95{bottom:187.653900px;}
.y163{bottom:188.886900px;}
.y6e{bottom:192.149400px;}
.y4b{bottom:197.886900px;}
.yb5{bottom:201.486900px;}
.y182{bottom:203.886900px;}
.y6d{bottom:205.653900px;}
.y162{bottom:207.636900px;}
.y22{bottom:208.902900px;}
.y94{bottom:210.149400px;}
.y4a{bottom:216.636900px;}
.yb4{bottom:220.236900px;}
.y181{bottom:227.136900px;}
.y21{bottom:227.652900px;}
.y6c{bottom:228.149400px;}
.y161{bottom:230.886900px;}
.y112{bottom:233.127900px;}
.y49{bottom:235.386900px;}
.y6b{bottom:241.653900px;}
.y180{bottom:245.886900px;}
.y96{bottom:246.149400px;}
.y20{bottom:246.402900px;}
.yb3{bottom:247.986900px;}
.y160{bottom:249.636900px;}
.yee{bottom:251.436900px;}
.y111{bottom:251.877900px;}
.yce{bottom:252.636900px;}
.y48{bottom:254.136900px;}
.y6a{bottom:264.149400px;}
.y158{bottom:264.636900px;}
.y1f{bottom:265.152900px;}
.y93{bottom:266.886900px;}
.y17f{bottom:269.136900px;}
.yed{bottom:270.486900px;}
.y110{bottom:270.627900px;}
.ycd{bottom:271.836900px;}
.y47{bottom:272.886900px;}
.y73{bottom:277.653900px;}
.y147{bottom:281.136900px;}
.y157{bottom:283.386900px;}
.y1e{bottom:283.902900px;}
.y92{bottom:285.636900px;}
.yb2{bottom:286.236900px;}
.y17e{bottom:287.886900px;}
.y13f{bottom:288.186900px;}
.y10f{bottom:289.377900px;}
.yec{bottom:289.536900px;}
.ycc{bottom:291.036900px;}
.y46{bottom:291.636900px;}
.y146{bottom:299.886900px;}
.y72{bottom:300.149400px;}
.y1d{bottom:302.652900px;}
.y91{bottom:304.386900px;}
.yb1{bottom:304.686900px;}
.y17d{bottom:306.636900px;}
.y13e{bottom:306.786900px;}
.y10e{bottom:308.127900px;}
.yeb{bottom:308.586900px;}
.ycb{bottom:310.236900px;}
.y125{bottom:310.386900px;}
.y156{bottom:311.136900px;}
.y45{bottom:319.386900px;}
.y145{bottom:320.136900px;}
.y1c{bottom:321.402900px;}
.y90{bottom:323.136900px;}
.y69{bottom:324.186900px;}
.y13d{bottom:325.386900px;}
.y19d{bottom:325.902900px;}
.yea{bottom:327.636900px;}
.y10d{bottom:328.377900px;}
.y124{bottom:329.136900px;}
.yca{bottom:329.436900px;}
.y17c{bottom:329.886900px;}
.y144{bottom:338.886900px;}
.y1b{bottom:340.152900px;}
.yb0{bottom:341.586900px;}
.y8f{bottom:341.886900px;}
.y68{bottom:342.786900px;}
.y13c{bottom:343.986900px;}
.y19c{bottom:344.652900px;}
.y10c{bottom:347.127900px;}
.y123{bottom:347.886900px;}
.ye9{bottom:348.186900px;}
.yc9{bottom:348.636900px;}
.y155{bottom:349.386900px;}
.y15f{bottom:356.886900px;}
.y44{bottom:357.636900px;}
.y8e{bottom:360.636900px;}
.y67{bottom:361.386900px;}
.yaf{bottom:361.536900px;}
.y13b{bottom:362.586900px;}
.y19b{bottom:364.902900px;}
.y10b{bottom:365.877900px;}
.y122{bottom:366.636900px;}
.ye8{bottom:367.236900px;}
.yc8{bottom:367.836900px;}
.y1a{bottom:367.902900px;}
.y154{bottom:368.136900px;}
.y17b{bottom:371.886900px;}
.y43{bottom:376.386900px;}
.y66{bottom:379.986900px;}
.y13a{bottom:381.186900px;}
.y19a{bottom:383.652900px;}
.y10a{bottom:384.627900px;}
.y121{bottom:385.386900px;}
.ye7{bottom:386.286900px;}
.y153{bottom:386.886900px;}
.yc7{bottom:387.036900px;}
.y8d{bottom:388.386900px;}
.y17a{bottom:390.636900px;}
.y42{bottom:395.136900px;}
.yae{bottom:398.436900px;}
.y65{bottom:398.586900px;}
.y139{bottom:399.786900px;}
.y199{bottom:402.402900px;}
.y109{bottom:403.377900px;}
.ye6{bottom:405.336900px;}
.y120{bottom:405.636900px;}
.yc6{bottom:407.736900px;}
.y179{bottom:409.386900px;}
.y19{bottom:413.652900px;}
.y41{bottom:413.886900px;}
.yad{bottom:416.886900px;}
.y64{bottom:417.186900px;}
.y138{bottom:418.386900px;}
.y198{bottom:421.152900px;}
.y108{bottom:422.127900px;}
.ye5{bottom:424.386900px;}
.y8c{bottom:426.636900px;}
.yc5{bottom:426.936900px;}
.y18{bottom:432.402900px;}
.y40{bottom:432.636900px;}
.yac{bottom:435.336900px;}
.y63{bottom:435.786900px;}
.y137{bottom:436.986900px;}
.y197{bottom:439.902900px;}
.y107{bottom:440.877900px;}
.y11f{bottom:443.136900px;}
.ye4{bottom:443.436900px;}
.y8b{bottom:444.936900px;}
.yc4{bottom:446.136900px;}
.y3f{bottom:451.386900px;}
.yab{bottom:455.286900px;}
.y136{bottom:455.586900px;}
.y62{bottom:455.886900px;}
.y196{bottom:458.652900px;}
.y17{bottom:460.152900px;}
.y106{bottom:461.127900px;}
.y11e{bottom:461.886900px;}
.ye3{bottom:462.486900px;}
.y8a{bottom:463.236900px;}
.yc3{bottom:465.336900px;}
.y3e{bottom:470.136900px;}
.yaa{bottom:473.736900px;}
.y135{bottom:474.186900px;}
.y61{bottom:474.486900px;}
.y178{bottom:474.636900px;}
.y195{bottom:477.402900px;}
.y16{bottom:478.902900px;}
.y105{bottom:479.877900px;}
.y11d{bottom:480.636900px;}
.y89{bottom:481.536900px;}
.yc2{bottom:484.536900px;}
.y3d{bottom:488.886900px;}
.y143{bottom:490.386900px;}
.ya9{bottom:492.186900px;}
.y134{bottom:492.786900px;}
.y60{bottom:493.086900px;}
.y177{bottom:493.386900px;}
.y194{bottom:496.152900px;}
.y15{bottom:497.652900px;}
.y104{bottom:498.627900px;}
.y11c{bottom:499.386900px;}
.y88{bottom:499.836900px;}
.ye2{bottom:502.086900px;}
.yc1{bottom:503.736900px;}
.y3c{bottom:507.636900px;}
.y142{bottom:509.136900px;}
.ya8{bottom:510.636900px;}
.y133{bottom:511.386900px;}
.y5f{bottom:511.686900px;}
.y193{bottom:514.902900px;}
.y14{bottom:516.402900px;}
.y176{bottom:516.636900px;}
.y103{bottom:517.377900px;}
.y87{bottom:518.136900px;}
.ye1{bottom:521.136900px;}
.yc0{bottom:522.936900px;}
.y15e{bottom:526.386900px;}
.y3b{bottom:527.886900px;}
.y132{bottom:529.986900px;}
.y5e{bottom:530.286900px;}
.ya7{bottom:530.586900px;}
.y192{bottom:533.652900px;}
.y13{bottom:535.152900px;}
.y175{bottom:535.386900px;}
.y102{bottom:536.127900px;}
.y86{bottom:536.436900px;}
.y11b{bottom:536.886900px;}
.ye0{bottom:540.186900px;}
.ybf{bottom:542.136900px;}
.y15d{bottom:545.136900px;}
.y3a{bottom:546.636900px;}
.y131{bottom:548.586900px;}
.y5d{bottom:548.886900px;}
.ya6{bottom:549.036900px;}
.y191{bottom:552.402900px;}
.y12{bottom:553.902900px;}
.y174{bottom:554.136900px;}
.y85{bottom:554.736900px;}
.y101{bottom:554.877900px;}
.y11a{bottom:555.636900px;}
.ydf{bottom:559.236900px;}
.ybe{bottom:561.336900px;}
.y15c{bottom:563.886900px;}
.y39{bottom:565.386900px;}
.y130{bottom:567.186900px;}
.y5c{bottom:567.486900px;}
.y190{bottom:571.152900px;}
.y11{bottom:572.652900px;}
.y173{bottom:572.886900px;}
.y84{bottom:573.036900px;}
.y119{bottom:574.386900px;}
.y100{bottom:575.127900px;}
.y152{bottom:575.886900px;}
.yde{bottom:578.286900px;}
.ybd{bottom:580.536900px;}
.y15b{bottom:582.636900px;}
.y38{bottom:584.136900px;}
.y12f{bottom:585.786900px;}
.ya5{bottom:585.936900px;}
.y5b{bottom:586.086900px;}
.y18f{bottom:589.902900px;}
.y83{bottom:591.336900px;}
.y10{bottom:591.402900px;}
.yff{bottom:593.877900px;}
.y151{bottom:594.636900px;}
.y172{bottom:596.136900px;}
.ydd{bottom:597.336900px;}
.ybc{bottom:599.736900px;}
.y15a{bottom:601.386900px;}
.y118{bottom:602.136900px;}
.y37{bottom:602.886900px;}
.ya4{bottom:604.386900px;}
.y5a{bottom:604.686900px;}
.y18e{bottom:608.652900px;}
.y82{bottom:609.636900px;}
.yf{bottom:610.152900px;}
.yfe{bottom:612.627900px;}
.y150{bottom:613.386900px;}
.y171{bottom:614.886900px;}
.ydc{bottom:616.386900px;}
.ybb{bottom:618.936900px;}
.y159{bottom:620.136900px;}
.y36{bottom:621.636900px;}
.ya3{bottom:622.836900px;}
.y12e{bottom:622.986900px;}
.y59{bottom:623.286900px;}
.y18d{bottom:627.402900px;}
.y81{bottom:627.936900px;}
.ye{bottom:628.902900px;}
.yfd{bottom:631.377900px;}
.y14f{bottom:632.136900px;}
.ydb{bottom:635.436900px;}
.yba{bottom:638.136900px;}
.y35{bottom:640.386900px;}
.ya2{bottom:641.286900px;}
.y12d{bottom:641.586900px;}
.y58{bottom:641.886900px;}
.y18c{bottom:646.152900px;}
.y80{bottom:646.236900px;}
.yd{bottom:647.652900px;}
.y14e{bottom:650.886900px;}
.yfc{bottom:651.627900px;}
.yda{bottom:654.486900px;}
.y170{bottom:656.886900px;}
.yb9{bottom:657.336900px;}
.y34{bottom:659.136900px;}
.y12c{bottom:660.186900px;}
.y57{bottom:660.486900px;}
.y141{bottom:660.636900px;}
.ya1{bottom:661.236900px;}
.y18b{bottom:664.902900px;}
.y7f{bottom:666.036900px;}
.yc{bottom:666.402900px;}
.y14d{bottom:669.636900px;}
.yfb{bottom:670.377900px;}
.yd9{bottom:673.536900px;}
.yb8{bottom:676.536900px;}
.y33{bottom:677.886900px;}
.y12b{bottom:678.786900px;}
.y56{bottom:679.086900px;}
.y140{bottom:679.386900px;}
.ya0{bottom:679.686900px;}
.y16f{bottom:680.136900px;}
.y18a{bottom:683.652900px;}
.y7e{bottom:684.336900px;}
.yb{bottom:685.152900px;}
.y14c{bottom:688.386900px;}
.yfa{bottom:689.127900px;}
.yd8{bottom:692.586900px;}
.yb7{bottom:695.736900px;}
.y32{bottom:696.636900px;}
.y12a{bottom:697.386900px;}
.y55{bottom:697.686900px;}
.y9f{bottom:698.136900px;}
.y16e{bottom:698.886900px;}
.y189{bottom:702.402900px;}
.y7d{bottom:702.636900px;}
.y14b{bottom:707.136900px;}
.yf9{bottom:707.877900px;}
.yd7{bottom:711.636900px;}
.yb6{bottom:714.936900px;}
.y117{bottom:715.386900px;}
.y129{bottom:715.986900px;}
.y54{bottom:716.286900px;}
.y9e{bottom:716.586900px;}
.y31{bottom:716.886900px;}
.y7c{bottom:720.936900px;}
.y16d{bottom:722.136900px;}
.y14a{bottom:725.886900px;}
.yf8{bottom:726.627900px;}
.y188{bottom:730.152900px;}
.yd6{bottom:730.686900px;}
.y116{bottom:734.136900px;}
.y128{bottom:734.586900px;}
.y53{bottom:734.886900px;}
.y9d{bottom:735.036900px;}
.y30{bottom:735.636900px;}
.ya{bottom:736.902900px;}
.y7b{bottom:739.236900px;}
.y149{bottom:744.636900px;}
.yf7{bottom:745.377900px;}
.y16c{bottom:745.386900px;}
.yd5{bottom:751.236900px;}
.y115{bottom:752.886900px;}
.y127{bottom:753.186900px;}
.y52{bottom:753.486900px;}
.y2f{bottom:754.386900px;}
.y7a{bottom:757.536900px;}
.y9{bottom:759.402900px;}
.y187{bottom:762.402900px;}
.yf6{bottom:764.127900px;}
.y16b{bottom:764.136900px;}
.yd4{bottom:770.436900px;}
.y114{bottom:771.636900px;}
.y126{bottom:771.786900px;}
.y9c{bottom:771.936900px;}
.y51{bottom:772.086900px;}
.y148{bottom:772.386900px;}
.y2e{bottom:773.136900px;}
.y79{bottom:775.836900px;}
.y186{bottom:781.152900px;}
.yf5{bottom:782.877900px;}
.y16a{bottom:787.386900px;}
.yd3{bottom:789.636900px;}
.y50{bottom:790.686900px;}
.y2d{bottom:791.886900px;}
.y78{bottom:794.136900px;}
.yf4{bottom:801.627900px;}
.y169{bottom:806.136900px;}
.yd2{bottom:808.836900px;}
.y4f{bottom:809.286900px;}
.y9b{bottom:810.336900px;}
.y2c{bottom:810.636900px;}
.y77{bottom:812.436900px;}
.yf3{bottom:820.377900px;}
.y168{bottom:824.886900px;}
.yd1{bottom:828.036900px;}
.y9a{bottom:828.786900px;}
.y2b{bottom:829.386900px;}
.y8{bottom:829.902900px;}
.y76{bottom:830.736900px;}
.yf2{bottom:839.127900px;}
.y4{bottom:841.998900px;}
.y167{bottom:843.636900px;}
.yd0{bottom:847.236900px;}
.y2a{bottom:848.136900px;}
.y7{bottom:848.652900px;}
.y99{bottom:848.736900px;}
.y75{bottom:849.036900px;}
.yf1{bottom:857.877900px;}
.ycf{bottom:866.436900px;}
.y29{bottom:866.886900px;}
.y98{bottom:867.186900px;}
.y74{bottom:867.336900px;}
.y6{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.yf0{bottom:885.627900px;}
.y28{bottom:885.636900px;}
.y5{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y27{bottom:922.796400px;}
.hb{height:29.004328px;}
.hd{height:41.765625px;}
.h3{height:44.586914px;}
.h9{height:46.792969px;}
.hc{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.ha{height:57.427734px;}
.h7{height:57.750000px;}
.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;}
.xa{left:108.425100px;}
.x9{left:133.937100px;}
.x8{left:142.440600px;}
.x6{left:146.021100px;}
.x7{left:171.099600px;}
.xc{left:288.020100px;}
.xd{left:322.938600px;}
.x4{left:443.360100px;}
.xb{left:468.243600px;}
.x2{left:520.668600px;}
.x3{left:545.558100px;}
.x1{left:596.750100px;}
@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;}
.ls3{letter-spacing:0.041976pt;}
.ls5{letter-spacing:0.425357pt;}
.ls4{letter-spacing:0.456139pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws6{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-7.515733pt;}
._4{margin-left:-6.330133pt;}
._1a{margin-left:-5.240800pt;}
._13{margin-left:-4.346133pt;}
._0{margin-left:-3.057600pt;}
._1{margin-left:-2.156000pt;}
._2{margin-left:-0.985600pt;}
._5{width:1.056000pt;}
._6{width:2.182400pt;}
._9{width:3.179733pt;}
._8{width:4.593600pt;}
._7{width:6.127733pt;}
._c{width:7.139733pt;}
._d{width:8.272000pt;}
._e{width:9.245867pt;}
._f{width:10.214933pt;}
._15{width:11.544533pt;}
._1c{width:12.685333pt;}
._12{width:13.933333pt;}
._a{width:15.071467pt;}
._14{width:16.071733pt;}
._10{width:17.230400pt;}
._16{width:18.503467pt;}
._11{width:19.776533pt;}
._b{width:20.990933pt;}
._17{width:22.193600pt;}
._19{width:23.196800pt;}
._18{width:24.364267pt;}
._1b{width:25.578667pt;}
._1d{width:28.529600pt;}
._1e{width:29.541600pt;}
._1f{width:36.050667pt;}
._20{width:37.345333pt;}
.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;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:79.370133pt;}
.y26{bottom:111.762133pt;}
.y166{bottom:113.899467pt;}
.y71{bottom:118.803467pt;}
.y97{bottom:122.799467pt;}
.y4e{bottom:125.899467pt;}
.y25{bottom:126.162133pt;}
.y185{bottom:127.232800pt;}
.y165{bottom:130.566133pt;}
.y70{bottom:134.803467pt;}
.y113{bottom:138.799467pt;}
.y4d{bottom:142.566133pt;}
.y184{bottom:143.899467pt;}
.y24{bottom:144.558133pt;}
.y164{bottom:147.232800pt;}
.y6f{bottom:150.803467pt;}
.yef{bottom:154.799467pt;}
.y23{bottom:158.958133pt;}
.y4c{bottom:159.232800pt;}
.y183{bottom:160.566133pt;}
.y95{bottom:166.803467pt;}
.y163{bottom:167.899467pt;}
.y6e{bottom:170.799467pt;}
.y4b{bottom:175.899467pt;}
.yb5{bottom:179.099467pt;}
.y182{bottom:181.232800pt;}
.y6d{bottom:182.803467pt;}
.y162{bottom:184.566133pt;}
.y22{bottom:185.691467pt;}
.y94{bottom:186.799467pt;}
.y4a{bottom:192.566133pt;}
.yb4{bottom:195.766133pt;}
.y181{bottom:201.899467pt;}
.y21{bottom:202.358133pt;}
.y6c{bottom:202.799467pt;}
.y161{bottom:205.232800pt;}
.y112{bottom:207.224800pt;}
.y49{bottom:209.232800pt;}
.y6b{bottom:214.803467pt;}
.y180{bottom:218.566133pt;}
.y96{bottom:218.799467pt;}
.y20{bottom:219.024800pt;}
.yb3{bottom:220.432800pt;}
.y160{bottom:221.899467pt;}
.yee{bottom:223.499467pt;}
.y111{bottom:223.891467pt;}
.yce{bottom:224.566133pt;}
.y48{bottom:225.899467pt;}
.y6a{bottom:234.799467pt;}
.y158{bottom:235.232800pt;}
.y1f{bottom:235.691467pt;}
.y93{bottom:237.232800pt;}
.y17f{bottom:239.232800pt;}
.yed{bottom:240.432800pt;}
.y110{bottom:240.558133pt;}
.ycd{bottom:241.632800pt;}
.y47{bottom:242.566133pt;}
.y73{bottom:246.803467pt;}
.y147{bottom:249.899467pt;}
.y157{bottom:251.899467pt;}
.y1e{bottom:252.358133pt;}
.y92{bottom:253.899467pt;}
.yb2{bottom:254.432800pt;}
.y17e{bottom:255.899467pt;}
.y13f{bottom:256.166133pt;}
.y10f{bottom:257.224800pt;}
.yec{bottom:257.366133pt;}
.ycc{bottom:258.699467pt;}
.y46{bottom:259.232800pt;}
.y146{bottom:266.566133pt;}
.y72{bottom:266.799467pt;}
.y1d{bottom:269.024800pt;}
.y91{bottom:270.566133pt;}
.yb1{bottom:270.832800pt;}
.y17d{bottom:272.566133pt;}
.y13e{bottom:272.699467pt;}
.y10e{bottom:273.891467pt;}
.yeb{bottom:274.299467pt;}
.ycb{bottom:275.766133pt;}
.y125{bottom:275.899467pt;}
.y156{bottom:276.566133pt;}
.y45{bottom:283.899467pt;}
.y145{bottom:284.566133pt;}
.y1c{bottom:285.691467pt;}
.y90{bottom:287.232800pt;}
.y69{bottom:288.166133pt;}
.y13d{bottom:289.232800pt;}
.y19d{bottom:289.691467pt;}
.yea{bottom:291.232800pt;}
.y10d{bottom:291.891467pt;}
.y124{bottom:292.566133pt;}
.yca{bottom:292.832800pt;}
.y17c{bottom:293.232800pt;}
.y144{bottom:301.232800pt;}
.y1b{bottom:302.358133pt;}
.yb0{bottom:303.632800pt;}
.y8f{bottom:303.899467pt;}
.y68{bottom:304.699467pt;}
.y13c{bottom:305.766133pt;}
.y19c{bottom:306.358133pt;}
.y10c{bottom:308.558133pt;}
.y123{bottom:309.232800pt;}
.ye9{bottom:309.499467pt;}
.yc9{bottom:309.899467pt;}
.y155{bottom:310.566133pt;}
.y15f{bottom:317.232800pt;}
.y44{bottom:317.899467pt;}
.y8e{bottom:320.566133pt;}
.y67{bottom:321.232800pt;}
.yaf{bottom:321.366133pt;}
.y13b{bottom:322.299467pt;}
.y19b{bottom:324.358133pt;}
.y10b{bottom:325.224800pt;}
.y122{bottom:325.899467pt;}
.ye8{bottom:326.432800pt;}
.yc8{bottom:326.966133pt;}
.y1a{bottom:327.024800pt;}
.y154{bottom:327.232800pt;}
.y17b{bottom:330.566133pt;}
.y43{bottom:334.566133pt;}
.y66{bottom:337.766133pt;}
.y13a{bottom:338.832800pt;}
.y19a{bottom:341.024800pt;}
.y10a{bottom:341.891467pt;}
.y121{bottom:342.566133pt;}
.ye7{bottom:343.366133pt;}
.y153{bottom:343.899467pt;}
.yc7{bottom:344.032800pt;}
.y8d{bottom:345.232800pt;}
.y17a{bottom:347.232800pt;}
.y42{bottom:351.232800pt;}
.yae{bottom:354.166133pt;}
.y65{bottom:354.299467pt;}
.y139{bottom:355.366133pt;}
.y199{bottom:357.691467pt;}
.y109{bottom:358.558133pt;}
.ye6{bottom:360.299467pt;}
.y120{bottom:360.566133pt;}
.yc6{bottom:362.432800pt;}
.y179{bottom:363.899467pt;}
.y19{bottom:367.691467pt;}
.y41{bottom:367.899467pt;}
.yad{bottom:370.566133pt;}
.y64{bottom:370.832800pt;}
.y138{bottom:371.899467pt;}
.y198{bottom:374.358133pt;}
.y108{bottom:375.224800pt;}
.ye5{bottom:377.232800pt;}
.y8c{bottom:379.232800pt;}
.yc5{bottom:379.499467pt;}
.y18{bottom:384.358133pt;}
.y40{bottom:384.566133pt;}
.yac{bottom:386.966133pt;}
.y63{bottom:387.366133pt;}
.y137{bottom:388.432800pt;}
.y197{bottom:391.024800pt;}
.y107{bottom:391.891467pt;}
.y11f{bottom:393.899467pt;}
.ye4{bottom:394.166133pt;}
.y8b{bottom:395.499467pt;}
.yc4{bottom:396.566133pt;}
.y3f{bottom:401.232800pt;}
.yab{bottom:404.699467pt;}
.y136{bottom:404.966133pt;}
.y62{bottom:405.232800pt;}
.y196{bottom:407.691467pt;}
.y17{bottom:409.024800pt;}
.y106{bottom:409.891467pt;}
.y11e{bottom:410.566133pt;}
.ye3{bottom:411.099467pt;}
.y8a{bottom:411.766133pt;}
.yc3{bottom:413.632800pt;}
.y3e{bottom:417.899467pt;}
.yaa{bottom:421.099467pt;}
.y135{bottom:421.499467pt;}
.y61{bottom:421.766133pt;}
.y178{bottom:421.899467pt;}
.y195{bottom:424.358133pt;}
.y16{bottom:425.691467pt;}
.y105{bottom:426.558133pt;}
.y11d{bottom:427.232800pt;}
.y89{bottom:428.032800pt;}
.yc2{bottom:430.699467pt;}
.y3d{bottom:434.566133pt;}
.y143{bottom:435.899467pt;}
.ya9{bottom:437.499467pt;}
.y134{bottom:438.032800pt;}
.y60{bottom:438.299467pt;}
.y177{bottom:438.566133pt;}
.y194{bottom:441.024800pt;}
.y15{bottom:442.358133pt;}
.y104{bottom:443.224800pt;}
.y11c{bottom:443.899467pt;}
.y88{bottom:444.299467pt;}
.ye2{bottom:446.299467pt;}
.yc1{bottom:447.766133pt;}
.y3c{bottom:451.232800pt;}
.y142{bottom:452.566133pt;}
.ya8{bottom:453.899467pt;}
.y133{bottom:454.566133pt;}
.y5f{bottom:454.832800pt;}
.y193{bottom:457.691467pt;}
.y14{bottom:459.024800pt;}
.y176{bottom:459.232800pt;}
.y103{bottom:459.891467pt;}
.y87{bottom:460.566133pt;}
.ye1{bottom:463.232800pt;}
.yc0{bottom:464.832800pt;}
.y15e{bottom:467.899467pt;}
.y3b{bottom:469.232800pt;}
.y132{bottom:471.099467pt;}
.y5e{bottom:471.366133pt;}
.ya7{bottom:471.632800pt;}
.y192{bottom:474.358133pt;}
.y13{bottom:475.691467pt;}
.y175{bottom:475.899467pt;}
.y102{bottom:476.558133pt;}
.y86{bottom:476.832800pt;}
.y11b{bottom:477.232800pt;}
.ye0{bottom:480.166133pt;}
.ybf{bottom:481.899467pt;}
.y15d{bottom:484.566133pt;}
.y3a{bottom:485.899467pt;}
.y131{bottom:487.632800pt;}
.y5d{bottom:487.899467pt;}
.ya6{bottom:488.032800pt;}
.y191{bottom:491.024800pt;}
.y12{bottom:492.358133pt;}
.y174{bottom:492.566133pt;}
.y85{bottom:493.099467pt;}
.y101{bottom:493.224800pt;}
.y11a{bottom:493.899467pt;}
.ydf{bottom:497.099467pt;}
.ybe{bottom:498.966133pt;}
.y15c{bottom:501.232800pt;}
.y39{bottom:502.566133pt;}
.y130{bottom:504.166133pt;}
.y5c{bottom:504.432800pt;}
.y190{bottom:507.691467pt;}
.y11{bottom:509.024800pt;}
.y173{bottom:509.232800pt;}
.y84{bottom:509.366133pt;}
.y119{bottom:510.566133pt;}
.y100{bottom:511.224800pt;}
.y152{bottom:511.899467pt;}
.yde{bottom:514.032800pt;}
.ybd{bottom:516.032800pt;}
.y15b{bottom:517.899467pt;}
.y38{bottom:519.232800pt;}
.y12f{bottom:520.699467pt;}
.ya5{bottom:520.832800pt;}
.y5b{bottom:520.966133pt;}
.y18f{bottom:524.358133pt;}
.y83{bottom:525.632800pt;}
.y10{bottom:525.691467pt;}
.yff{bottom:527.891467pt;}
.y151{bottom:528.566133pt;}
.y172{bottom:529.899467pt;}
.ydd{bottom:530.966133pt;}
.ybc{bottom:533.099467pt;}
.y15a{bottom:534.566133pt;}
.y118{bottom:535.232800pt;}
.y37{bottom:535.899467pt;}
.ya4{bottom:537.232800pt;}
.y5a{bottom:537.499467pt;}
.y18e{bottom:541.024800pt;}
.y82{bottom:541.899467pt;}
.yf{bottom:542.358133pt;}
.yfe{bottom:544.558133pt;}
.y150{bottom:545.232800pt;}
.y171{bottom:546.566133pt;}
.ydc{bottom:547.899467pt;}
.ybb{bottom:550.166133pt;}
.y159{bottom:551.232800pt;}
.y36{bottom:552.566133pt;}
.ya3{bottom:553.632800pt;}
.y12e{bottom:553.766133pt;}
.y59{bottom:554.032800pt;}
.y18d{bottom:557.691467pt;}
.y81{bottom:558.166133pt;}
.ye{bottom:559.024800pt;}
.yfd{bottom:561.224800pt;}
.y14f{bottom:561.899467pt;}
.ydb{bottom:564.832800pt;}
.yba{bottom:567.232800pt;}
.y35{bottom:569.232800pt;}
.ya2{bottom:570.032800pt;}
.y12d{bottom:570.299467pt;}
.y58{bottom:570.566133pt;}
.y18c{bottom:574.358133pt;}
.y80{bottom:574.432800pt;}
.yd{bottom:575.691467pt;}
.y14e{bottom:578.566133pt;}
.yfc{bottom:579.224800pt;}
.yda{bottom:581.766133pt;}
.y170{bottom:583.899467pt;}
.yb9{bottom:584.299467pt;}
.y34{bottom:585.899467pt;}
.y12c{bottom:586.832800pt;}
.y57{bottom:587.099467pt;}
.y141{bottom:587.232800pt;}
.ya1{bottom:587.766133pt;}
.y18b{bottom:591.024800pt;}
.y7f{bottom:592.032800pt;}
.yc{bottom:592.358133pt;}
.y14d{bottom:595.232800pt;}
.yfb{bottom:595.891467pt;}
.yd9{bottom:598.699467pt;}
.yb8{bottom:601.366133pt;}
.y33{bottom:602.566133pt;}
.y12b{bottom:603.366133pt;}
.y56{bottom:603.632800pt;}
.y140{bottom:603.899467pt;}
.ya0{bottom:604.166133pt;}
.y16f{bottom:604.566133pt;}
.y18a{bottom:607.691467pt;}
.y7e{bottom:608.299467pt;}
.yb{bottom:609.024800pt;}
.y14c{bottom:611.899467pt;}
.yfa{bottom:612.558133pt;}
.yd8{bottom:615.632800pt;}
.yb7{bottom:618.432800pt;}
.y32{bottom:619.232800pt;}
.y12a{bottom:619.899467pt;}
.y55{bottom:620.166133pt;}
.y9f{bottom:620.566133pt;}
.y16e{bottom:621.232800pt;}
.y189{bottom:624.358133pt;}
.y7d{bottom:624.566133pt;}
.y14b{bottom:628.566133pt;}
.yf9{bottom:629.224800pt;}
.yd7{bottom:632.566133pt;}
.yb6{bottom:635.499467pt;}
.y117{bottom:635.899467pt;}
.y129{bottom:636.432800pt;}
.y54{bottom:636.699467pt;}
.y9e{bottom:636.966133pt;}
.y31{bottom:637.232800pt;}
.y7c{bottom:640.832800pt;}
.y16d{bottom:641.899467pt;}
.y14a{bottom:645.232800pt;}
.yf8{bottom:645.891467pt;}
.y188{bottom:649.024800pt;}
.yd6{bottom:649.499467pt;}
.y116{bottom:652.566133pt;}
.y128{bottom:652.966133pt;}
.y53{bottom:653.232800pt;}
.y9d{bottom:653.366133pt;}
.y30{bottom:653.899467pt;}
.ya{bottom:655.024800pt;}
.y7b{bottom:657.099467pt;}
.y149{bottom:661.899467pt;}
.yf7{bottom:662.558133pt;}
.y16c{bottom:662.566133pt;}
.yd5{bottom:667.766133pt;}
.y115{bottom:669.232800pt;}
.y127{bottom:669.499467pt;}
.y52{bottom:669.766133pt;}
.y2f{bottom:670.566133pt;}
.y7a{bottom:673.366133pt;}
.y9{bottom:675.024800pt;}
.y187{bottom:677.691467pt;}
.yf6{bottom:679.224800pt;}
.y16b{bottom:679.232800pt;}
.yd4{bottom:684.832800pt;}
.y114{bottom:685.899467pt;}
.y126{bottom:686.032800pt;}
.y9c{bottom:686.166133pt;}
.y51{bottom:686.299467pt;}
.y148{bottom:686.566133pt;}
.y2e{bottom:687.232800pt;}
.y79{bottom:689.632800pt;}
.y186{bottom:694.358133pt;}
.yf5{bottom:695.891467pt;}
.y16a{bottom:699.899467pt;}
.yd3{bottom:701.899467pt;}
.y50{bottom:702.832800pt;}
.y2d{bottom:703.899467pt;}
.y78{bottom:705.899467pt;}
.yf4{bottom:712.558133pt;}
.y169{bottom:716.566133pt;}
.yd2{bottom:718.966133pt;}
.y4f{bottom:719.366133pt;}
.y9b{bottom:720.299467pt;}
.y2c{bottom:720.566133pt;}
.y77{bottom:722.166133pt;}
.yf3{bottom:729.224800pt;}
.y168{bottom:733.232800pt;}
.yd1{bottom:736.032800pt;}
.y9a{bottom:736.699467pt;}
.y2b{bottom:737.232800pt;}
.y8{bottom:737.691467pt;}
.y76{bottom:738.432800pt;}
.yf2{bottom:745.891467pt;}
.y4{bottom:748.443467pt;}
.y167{bottom:749.899467pt;}
.yd0{bottom:753.099467pt;}
.y2a{bottom:753.899467pt;}
.y7{bottom:754.358133pt;}
.y99{bottom:754.432800pt;}
.y75{bottom:754.699467pt;}
.yf1{bottom:762.558133pt;}
.ycf{bottom:770.166133pt;}
.y29{bottom:770.566133pt;}
.y98{bottom:770.832800pt;}
.y74{bottom:770.966133pt;}
.y6{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.yf0{bottom:787.224800pt;}
.y28{bottom:787.232800pt;}
.y5{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y27{bottom:820.263467pt;}
.hb{height:25.781625pt;}
.hd{height:37.125000pt;}
.h3{height:39.632812pt;}
.h9{height:41.593750pt;}
.hc{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.ha{height:51.046875pt;}
.h7{height:51.333333pt;}
.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;}
.xa{left:96.377867pt;}
.x9{left:119.055200pt;}
.x8{left:126.613867pt;}
.x6{left:129.796533pt;}
.x7{left:152.088533pt;}
.xc{left:256.017867pt;}
.xd{left:287.056533pt;}
.x4{left:394.097867pt;}
.xb{left:416.216533pt;}
.x2{left:462.816533pt;}
.x3{left:484.940533pt;}
.x1{left:530.444533pt;}
}




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