
    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_88ebbe8ce6a1f1db00765147.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_438938c9ca45d5ce65d2d10d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b9e30306c85c654987d02aec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.030000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_73611b077251f38624fda867.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088000;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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.400000px;}
.ls4{letter-spacing:-1.143072px;}
.ls6{letter-spacing:-0.762048px;}
.ls5{letter-spacing:-0.381024px;}
.ls1{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:4.500000px;}
.ls3{letter-spacing:815.024326px;}
.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;}
}
.ws3{word-spacing:-19.224000px;}
.ws1{word-spacing:-16.020000px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:2327.380800px;}
.ws2{word-spacing:2360.080800px;}
._b{margin-left:-10.176000px;}
._7{margin-left:-8.400000px;}
._a{margin-left:-7.224000px;}
._6{margin-left:-6.000000px;}
._0{margin-left:-4.440000px;}
._5{margin-left:-3.420000px;}
._1{margin-left:-2.280000px;}
._2{margin-left:-1.080000px;}
._3{width:1.200000px;}
._4{width:2.640000px;}
._d{width:3.660000px;}
._8{width:4.680000px;}
._c{width:1624.780800px;}
._9{width:1657.480800px;}
.fc2{color:rgb(146,154,159);}
.fc1{color:rgb(60,60,61);}
.fc3{color:rgb(111,111,137);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.102400px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1ea{bottom:64.420200px;}
.y5{bottom:66.525004px;}
.y8b{bottom:85.320000px;}
.y1e9{bottom:87.348300px;}
.y6e{bottom:94.309500px;}
.y4{bottom:97.125005px;}
.y1c5{bottom:99.888000px;}
.y106{bottom:103.309500px;}
.y8a{bottom:103.320000px;}
.y12b{bottom:110.149500px;}
.y155{bottom:112.320000px;}
.yed{bottom:114.469500px;}
.y48{bottom:116.803350px;}
.y178{bottom:117.663000px;}
.y1a1{bottom:119.313000px;}
.y6d{bottom:121.309500px;}
.y89{bottom:121.320000px;}
.y1e1{bottom:121.938000px;}
.y154{bottom:130.320000px;}
.y47{bottom:136.228350px;}
.y177{bottom:137.088000px;}
.y12a{bottom:137.149500px;}
.yca{bottom:138.246150px;}
.y1bd{bottom:138.738000px;}
.y21{bottom:139.264499px;}
.y1e0{bottom:141.363000px;}
.yae{bottom:141.469500px;}
.y6c{bottom:148.309500px;}
.y105{bottom:150.469500px;}
.y1a0{bottom:155.538000px;}
.y46{bottom:155.653350px;}
.y176{bottom:156.513000px;}
.y14d{bottom:162.985500px;}
.y129{bottom:164.149500px;}
.yc9{bottom:166.410150px;}
.yad{bottom:168.469500px;}
.y88{bottom:174.145500px;}
.y19f{bottom:174.963000px;}
.y45{bottom:175.078350px;}
.y6b{bottom:175.309500px;}
.y104{bottom:177.469500px;}
.y1df{bottom:177.588000px;}
.y14c{bottom:189.985500px;}
.y128{bottom:191.149500px;}
.y1c4{bottom:191.763000px;}
.y175{bottom:192.738000px;}
.yc8{bottom:193.410150px;}
.y1bc{bottom:194.388000px;}
.y44{bottom:194.503350px;}
.yac{bottom:195.469500px;}
.y18{bottom:196.933500px;}
.y1de{bottom:197.013000px;}
.y87{bottom:201.145500px;}
.y6a{bottom:202.309500px;}
.y103{bottom:204.469500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y19e{bottom:211.188000px;}
.y174{bottom:212.163000px;}
.y1bb{bottom:213.813000px;}
.y43{bottom:213.928350px;}
.y14b{bottom:216.985500px;}
.y127{bottom:218.149500px;}
.yc7{bottom:220.410150px;}
.y153{bottom:221.305500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yab{bottom:222.469500px;}
.y86{bottom:228.145500px;}
.y69{bottom:229.309500px;}
.y19d{bottom:230.613000px;}
.y102{bottom:231.469500px;}
.y1dd{bottom:233.238000px;}
.y42{bottom:233.353350px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yec{bottom:242.629500px;}
.y14a{bottom:243.985500px;}
.y126{bottom:245.149500px;}
.y144{bottom:248.305500px;}
.y173{bottom:248.388000px;}
.yaa{bottom:249.469500px;}
.y19c{bottom:250.038000px;}
.y1dc{bottom:252.663000px;}
.y41{bottom:252.778350px;}
.y85{bottom:255.145500px;}
.y68{bottom:256.309500px;}
.y101{bottom:258.469500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1c3{bottom:266.838000px;}
.yc6{bottom:267.570150px;}
.y172{bottom:267.813000px;}
.y1ba{bottom:269.463000px;}
.yeb{bottom:269.629500px;}
.y149{bottom:270.985500px;}
.y1db{bottom:272.088000px;}
.y125{bottom:272.149500px;}
.y40{bottom:272.203350px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y143{bottom:275.305500px;}
.ya9{bottom:276.469500px;}
.y84{bottom:282.145500px;}
.y67{bottom:283.309500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y100{bottom:285.469500px;}
.y19b{bottom:286.263000px;}
.y171{bottom:287.238000px;}
.y1b9{bottom:288.888000px;}
.y3f{bottom:291.628350px;}
.yc5{bottom:294.570150px;}
.yea{bottom:296.629500px;}
.y142{bottom:302.305500px;}
.ya8{bottom:303.469500px;}
.y19a{bottom:305.688000px;}
.y170{bottom:306.663000px;}
.y1cc{bottom:308.313000px;}
.y83{bottom:309.145500px;}
.y66{bottom:310.309500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y3e{bottom:311.053350px;}
.yff{bottom:312.469500px;}
.y148{bottom:318.145500px;}
.y124{bottom:319.309500px;}
.yc4{bottom:321.570150px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ye9{bottom:323.629500px;}
.y199{bottom:325.113000px;}
.y1da{bottom:327.738000px;}
.y141{bottom:329.305500px;}
.ya7{bottom:330.469500px;}
.y3d{bottom:330.478350px;}
.y82{bottom:336.145500px;}
.ya4{bottom:337.309500px;}
.yfe{bottom:339.469500px;}
.y1c2{bottom:341.913000px;}
.y16f{bottom:342.888000px;}
.y1b8{bottom:344.538000px;}
.y123{bottom:346.309500px;}
.y1d9{bottom:347.163000px;}
.yf{bottom:348.133500px;}
.yc3{bottom:348.570150px;}
.y3c{bottom:349.903350px;}
.ye8{bottom:350.629500px;}
.y140{bottom:356.305500px;}
.y65{bottom:357.469500px;}
.y198{bottom:361.338000px;}
.y16e{bottom:362.313000px;}
.y81{bottom:363.145500px;}
.y1b7{bottom:363.963000px;}
.yd4{bottom:364.309500px;}
.yfd{bottom:366.469500px;}
.y3b{bottom:369.328350px;}
.y122{bottom:373.309500px;}
.yc2{bottom:375.570150px;}
.ye7{bottom:377.629500px;}
.y16d{bottom:381.738000px;}
.y13f{bottom:383.305500px;}
.y1d8{bottom:383.388000px;}
.y64{bottom:384.469500px;}
.ye{bottom:386.785499px;}
.y3a{bottom:388.753350px;}
.y80{bottom:390.145500px;}
.yd3{bottom:391.309500px;}
.yfc{bottom:393.469500px;}
.y197{bottom:397.563000px;}
.y1b6{bottom:400.188000px;}
.y121{bottom:400.309500px;}
.y152{bottom:400.657500px;}
.yc1{bottom:402.570150px;}
.y1d7{bottom:402.813000px;}
.ye6{bottom:404.629500px;}
.yd{bottom:408.044999px;}
.y39{bottom:408.178350px;}
.y13e{bottom:410.305500px;}
.y63{bottom:411.469500px;}
.y196{bottom:416.988000px;}
.y7f{bottom:417.145500px;}
.y16c{bottom:417.963000px;}
.y107{bottom:418.309500px;}
.y1b5{bottom:419.613000px;}
.y1e8{bottom:422.238000px;}
.y120{bottom:427.309500px;}
.y38{bottom:427.603350px;}
.yc0{bottom:429.570150px;}
.ye5{bottom:431.629500px;}
.yd2{bottom:435.661500px;}
.y195{bottom:436.413000px;}
.y13d{bottom:437.305500px;}
.y16b{bottom:437.388000px;}
.y62{bottom:438.469500px;}
.y1cb{bottom:439.038000px;}
.yfb{bottom:440.629500px;}
.y7e{bottom:444.145500px;}
.y11f{bottom:454.309500px;}
.y1b4{bottom:455.838000px;}
.ybf{bottom:456.570150px;}
.y151{bottom:457.465500px;}
.y1d6{bottom:458.463000px;}
.ye4{bottom:458.629500px;}
.yd1{bottom:462.661500px;}
.y13c{bottom:464.305500px;}
.y61{bottom:465.469500px;}
.yfa{bottom:467.629500px;}
.y9d{bottom:471.145500px;}
.y194{bottom:472.638000px;}
.y16a{bottom:473.613000px;}
.y1b3{bottom:475.263000px;}
.y1d5{bottom:477.888000px;}
.y37{bottom:478.828350px;}
.y11e{bottom:481.309500px;}
.ybe{bottom:483.570150px;}
.y150{bottom:484.465500px;}
.ye3{bottom:485.629500px;}
.y7d{bottom:491.305500px;}
.y193{bottom:492.063000px;}
.y60{bottom:492.469500px;}
.y169{bottom:493.038000px;}
.yf9{bottom:494.629500px;}
.y1b2{bottom:494.688000px;}
.y9c{bottom:498.145500px;}
.y36{bottom:498.253350px;}
.yc{bottom:502.864502px;}
.y11d{bottom:508.309500px;}
.ybd{bottom:510.570150px;}
.y14f{bottom:511.465500px;}
.y192{bottom:511.488000px;}
.y168{bottom:512.463000px;}
.ye2{bottom:512.629500px;}
.y1ca{bottom:514.113000px;}
.y7c{bottom:518.305500px;}
.y5f{bottom:519.469500px;}
.yb{bottom:520.864502px;}
.yf8{bottom:521.629500px;}
.y9b{bottom:525.145500px;}
.y1b1{bottom:530.913000px;}
.y35{bottom:532.678350px;}
.y1d4{bottom:533.538000px;}
.y11c{bottom:535.309500px;}
.ybc{bottom:537.570150px;}
.y14e{bottom:538.465500px;}
.ya{bottom:538.864499px;}
.ye1{bottom:539.629500px;}
.y7b{bottom:545.305500px;}
.y5e{bottom:546.469500px;}
.y191{bottom:547.713000px;}
.yf7{bottom:548.629500px;}
.y167{bottom:548.688000px;}
.y1b0{bottom:550.338000px;}
.y34{bottom:552.103350px;}
.y1e7{bottom:552.963000px;}
.y9{bottom:556.864499px;}
.ybb{bottom:564.570150px;}
.y13b{bottom:565.465500px;}
.ye0{bottom:566.629500px;}
.y190{bottom:567.138000px;}
.y166{bottom:568.113000px;}
.y9a{bottom:569.497500px;}
.y1af{bottom:569.763000px;}
.y33{bottom:571.528350px;}
.y7a{bottom:572.305500px;}
.y1e6{bottom:572.388000px;}
.y5d{bottom:573.469500px;}
.yf6{bottom:575.629500px;}
.y11b{bottom:582.469500px;}
.y1c1{bottom:586.563000px;}
.y165{bottom:587.538000px;}
.y1c9{bottom:589.188000px;}
.y13a{bottom:592.465500px;}
.ydf{bottom:593.629500px;}
.y79{bottom:599.305500px;}
.y5c{bottom:600.469500px;}
.yf5{bottom:602.629500px;}
.y18f{bottom:603.363000px;}
.y32{bottom:605.953350px;}
.y1ae{bottom:605.988000px;}
.y1e5{bottom:608.613000px;}
.y11a{bottom:609.469500px;}
.yba{bottom:611.730150px;}
.y139{bottom:619.465500px;}
.ya6{bottom:620.629500px;}
.y18e{bottom:622.788000px;}
.y164{bottom:623.763000px;}
.y31{bottom:625.378350px;}
.y1ad{bottom:625.413000px;}
.y99{bottom:626.305500px;}
.y5b{bottom:627.469500px;}
.y1e4{bottom:628.038000px;}
.yf4{bottom:629.629500px;}
.y119{bottom:636.469500px;}
.yb9{bottom:638.730150px;}
.yde{bottom:640.789500px;}
.y18d{bottom:642.213000px;}
.y163{bottom:643.188000px;}
.y30{bottom:644.803350px;}
.y1c8{bottom:644.838000px;}
.y8{bottom:645.510000px;}
.y138{bottom:646.465500px;}
.ya5{bottom:647.629500px;}
.y98{bottom:653.305500px;}
.y5a{bottom:654.469500px;}
.yf3{bottom:656.629500px;}
.y1ac{bottom:661.638000px;}
.y118{bottom:663.469500px;}
.y2f{bottom:664.228350px;}
.y1c7{bottom:664.263000px;}
.yb8{bottom:665.730150px;}
.y7{bottom:666.771000px;}
.ydd{bottom:667.789500px;}
.y137{bottom:673.465500px;}
.ya3{bottom:674.629500px;}
.y18c{bottom:678.438000px;}
.y162{bottom:679.413000px;}
.y97{bottom:680.305500px;}
.y1ab{bottom:681.063000px;}
.y78{bottom:681.469500px;}
.yf2{bottom:683.629500px;}
.y2e{bottom:683.653350px;}
.y1e3{bottom:683.688000px;}
.y117{bottom:690.469500px;}
.yb7{bottom:692.730150px;}
.ydc{bottom:694.789500px;}
.y18b{bottom:697.863000px;}
.y161{bottom:698.838000px;}
.y136{bottom:700.465500px;}
.y1aa{bottom:700.488000px;}
.y59{bottom:701.629500px;}
.y2d{bottom:702.365850px;}
.y96{bottom:707.305500px;}
.y77{bottom:708.469500px;}
.yf1{bottom:710.629500px;}
.y18a{bottom:717.288000px;}
.y116{bottom:717.469500px;}
.yb6{bottom:719.730150px;}
.y1c6{bottom:719.913000px;}
.y2c{bottom:720.365850px;}
.ydb{bottom:721.789500px;}
.y6{bottom:726.298500px;}
.y135{bottom:727.465500px;}
.y58{bottom:728.629500px;}
.y95{bottom:734.305500px;}
.y160{bottom:735.063000px;}
.y76{bottom:735.469500px;}
.y189{bottom:736.713000px;}
.yf0{bottom:737.629500px;}
.y2b{bottom:739.078350px;}
.y1d3{bottom:739.338000px;}
.y115{bottom:744.469500px;}
.yee{bottom:745.981500px;}
.yb5{bottom:746.730150px;}
.yda{bottom:748.789500px;}
.y3{bottom:752.599495px;}
.y1c0{bottom:753.513000px;}
.y134{bottom:754.465500px;}
.y15f{bottom:754.488000px;}
.y57{bottom:755.629500px;}
.y188{bottom:756.138000px;}
.y2a{bottom:758.503350px;}
.y1e2{bottom:758.763000px;}
.y94{bottom:761.305500px;}
.y75{bottom:762.469500px;}
.y114{bottom:771.469500px;}
.y1bf{bottom:772.938000px;}
.y15e{bottom:773.913000px;}
.y1a9{bottom:775.563000px;}
.yd9{bottom:775.789500px;}
.yef{bottom:781.135500px;}
.y133{bottom:781.465500px;}
.y56{bottom:782.629500px;}
.y93{bottom:788.305500px;}
.yd0{bottom:789.469500px;}
.y187{bottom:792.363000px;}
.y29{bottom:792.928350px;}
.y1a8{bottom:794.988000px;}
.y113{bottom:798.469500px;}
.yd8{bottom:802.789500px;}
.y55{bottom:809.629500px;}
.y15d{bottom:810.138000px;}
.y186{bottom:811.788000px;}
.y28{bottom:812.353350px;}
.yb4{bottom:814.404900px;}
.y1a7{bottom:814.413000px;}
.ycf{bottom:816.469500px;}
.y112{bottom:825.469500px;}
.y132{bottom:828.625500px;}
.y15c{bottom:829.563000px;}
.yd7{bottom:829.789500px;}
.y185{bottom:831.213000px;}
.y92{bottom:835.465500px;}
.y54{bottom:836.629500px;}
.yb3{bottom:837.714900px;}
.yce{bottom:843.469500px;}
.y27{bottom:846.778350px;}
.y1be{bottom:848.013000px;}
.y15b{bottom:848.988000px;}
.y1a6{bottom:850.638000px;}
.y111{bottom:852.469500px;}
.y131{bottom:855.625500px;}
.yd6{bottom:856.789500px;}
.yb2{bottom:861.024900px;}
.y91{bottom:862.465500px;}
.y53{bottom:863.629500px;}
.y184{bottom:867.438000px;}
.y1a5{bottom:870.063000px;}
.ycd{bottom:870.469500px;}
.y2{bottom:879.369000px;}
.y110{bottom:879.469500px;}
.y130{bottom:882.625500px;}
.yd5{bottom:883.789500px;}
.yb1{bottom:884.334900px;}
.y15a{bottom:885.256500px;}
.y183{bottom:886.863000px;}
.y90{bottom:889.465500px;}
.y1d2{bottom:889.488000px;}
.y52{bottom:890.629500px;}
.ycc{bottom:897.469500px;}
.y147{bottom:899.629500px;}
.y182{bottom:906.288000px;}
.y10f{bottom:906.469500px;}
.yb0{bottom:907.644900px;}
.y12f{bottom:909.625500px;}
.ya2{bottom:910.789500px;}
.y8f{bottom:916.465500px;}
.y51{bottom:917.629500px;}
.ycb{bottom:924.469500px;}
.y1a4{bottom:925.713000px;}
.y146{bottom:926.629500px;}
.yaf{bottom:930.954900px;}
.y10e{bottom:933.469500px;}
.y12e{bottom:936.625500px;}
.ya1{bottom:937.789500px;}
.y26{bottom:940.484850px;}
.y181{bottom:942.513000px;}
.y8e{bottom:943.465500px;}
.y50{bottom:944.629500px;}
.y1d1{bottom:945.138000px;}
.y145{bottom:953.629500px;}
.y180{bottom:961.938000px;}
.y12d{bottom:963.625500px;}
.y1d0{bottom:964.563000px;}
.ya0{bottom:964.789500px;}
.y1{bottom:966.726000px;}
.y8d{bottom:970.465500px;}
.y4f{bottom:971.629500px;}
.y25{bottom:978.395850px;}
.y10d{bottom:980.629500px;}
.y17f{bottom:981.363000px;}
.y74{bottom:988.981500px;}
.y12c{bottom:990.625500px;}
.y9f{bottom:991.789500px;}
.y8c{bottom:997.465500px;}
.y4e{bottom:998.629500px;}
.y1a3{bottom:1000.788000px;}
.y10c{bottom:1007.629500px;}
.y159{bottom:1007.779500px;}
.y24{bottom:1008.395850px;}
.y17e{bottom:1017.588000px;}
.y9e{bottom:1018.789500px;}
.y1cf{bottom:1020.213000px;}
.y4d{bottom:1025.629500px;}
.y158{bottom:1031.089500px;}
.y10b{bottom:1034.629500px;}
.y17d{bottom:1037.013000px;}
.y23{bottom:1038.395850px;}
.y1ce{bottom:1039.638000px;}
.y73{bottom:1045.789500px;}
.y4c{bottom:1052.629500px;}
.y157{bottom:1054.399500px;}
.y17c{bottom:1056.438000px;}
.y10a{bottom:1061.629500px;}
.y72{bottom:1072.789500px;}
.y17b{bottom:1075.863000px;}
.y4b{bottom:1079.629500px;}
.y22{bottom:1080.575850px;}
.y1a2{bottom:1092.663000px;}
.y1cd{bottom:1095.288000px;}
.y71{bottom:1099.789500px;}
.y156{bottom:1100.650500px;}
.y109{bottom:1105.135500px;}
.y17a{bottom:1112.088000px;}
.y4a{bottom:1123.981500px;}
.y70{bottom:1126.789500px;}
.y108{bottom:1127.635500px;}
.y179{bottom:1131.513000px;}
.y49{bottom:1178.430300px;}
.y6f{bottom:1194.375150px;}
.h13{height:30.481920px;}
.h7{height:32.130000px;}
.h11{height:42.840000px;}
.h6{height:45.900000px;}
.h9{height:48.000000px;}
.h3{height:48.195000px;}
.hb{height:52.200000px;}
.h2{height:55.080000px;}
.hd{height:57.600000px;}
.hf{height:62.640000px;}
.h10{height:64.260000px;}
.hc{height:77.112000px;}
.h5{height:78.030000px;}
.he{height:80.400000px;}
.ha{height:85.680000px;}
.h12{height:104.632200px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:637.795350px;}
.w0{width:892.912500px;}
.w3{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:112.169100px;}
.x6{left:127.559100px;}
.x9{left:148.893900px;}
.x4{left:203.484001px;}
.x5{left:212.598450px;}
.x7{left:284.881950px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.800000pt;}
.ls4{letter-spacing:-1.016064pt;}
.ls6{letter-spacing:-0.677376pt;}
.ls5{letter-spacing:-0.338688pt;}
.ls1{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.000000pt;}
.ls3{letter-spacing:724.466067pt;}
.ws3{word-spacing:-17.088000pt;}
.ws1{word-spacing:-14.240000pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:2068.782933pt;}
.ws2{word-spacing:2097.849600pt;}
._b{margin-left:-9.045333pt;}
._7{margin-left:-7.466667pt;}
._a{margin-left:-6.421333pt;}
._6{margin-left:-5.333333pt;}
._0{margin-left:-3.946667pt;}
._5{margin-left:-3.040000pt;}
._1{margin-left:-2.026667pt;}
._2{margin-left:-0.960000pt;}
._3{width:1.066667pt;}
._4{width:2.346667pt;}
._d{width:3.253333pt;}
._8{width:4.160000pt;}
._c{width:1444.249600pt;}
._9{width:1473.316267pt;}
.fs8{font-size:33.868800pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1ea{bottom:57.262400pt;}
.y5{bottom:59.133337pt;}
.y8b{bottom:75.840000pt;}
.y1e9{bottom:77.642933pt;}
.y6e{bottom:83.830667pt;}
.y4{bottom:86.333337pt;}
.y1c5{bottom:88.789333pt;}
.y106{bottom:91.830667pt;}
.y8a{bottom:91.840000pt;}
.y12b{bottom:97.910667pt;}
.y155{bottom:99.840000pt;}
.yed{bottom:101.750667pt;}
.y48{bottom:103.825200pt;}
.y178{bottom:104.589333pt;}
.y1a1{bottom:106.056000pt;}
.y6d{bottom:107.830667pt;}
.y89{bottom:107.840000pt;}
.y1e1{bottom:108.389333pt;}
.y154{bottom:115.840000pt;}
.y47{bottom:121.091867pt;}
.y177{bottom:121.856000pt;}
.y12a{bottom:121.910667pt;}
.yca{bottom:122.885467pt;}
.y1bd{bottom:123.322667pt;}
.y21{bottom:123.790666pt;}
.y1e0{bottom:125.656000pt;}
.yae{bottom:125.750667pt;}
.y6c{bottom:131.830667pt;}
.y105{bottom:133.750667pt;}
.y1a0{bottom:138.256000pt;}
.y46{bottom:138.358533pt;}
.y176{bottom:139.122667pt;}
.y14d{bottom:144.876000pt;}
.y129{bottom:145.910667pt;}
.yc9{bottom:147.920133pt;}
.yad{bottom:149.750667pt;}
.y88{bottom:154.796000pt;}
.y19f{bottom:155.522667pt;}
.y45{bottom:155.625200pt;}
.y6b{bottom:155.830667pt;}
.y104{bottom:157.750667pt;}
.y1df{bottom:157.856000pt;}
.y14c{bottom:168.876000pt;}
.y128{bottom:169.910667pt;}
.y1c4{bottom:170.456000pt;}
.y175{bottom:171.322667pt;}
.yc8{bottom:171.920133pt;}
.y1bc{bottom:172.789333pt;}
.y44{bottom:172.891867pt;}
.yac{bottom:173.750667pt;}
.y18{bottom:175.052000pt;}
.y1de{bottom:175.122667pt;}
.y87{bottom:178.796000pt;}
.y6a{bottom:179.830667pt;}
.y103{bottom:181.750667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y19e{bottom:187.722667pt;}
.y174{bottom:188.589333pt;}
.y1bb{bottom:190.056000pt;}
.y43{bottom:190.158533pt;}
.y14b{bottom:192.876000pt;}
.y127{bottom:193.910667pt;}
.yc7{bottom:195.920133pt;}
.y153{bottom:196.716000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yab{bottom:197.750667pt;}
.y86{bottom:202.796000pt;}
.y69{bottom:203.830667pt;}
.y19d{bottom:204.989333pt;}
.y102{bottom:205.750667pt;}
.y1dd{bottom:207.322667pt;}
.y42{bottom:207.425200pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yec{bottom:215.670667pt;}
.y14a{bottom:216.876000pt;}
.y126{bottom:217.910667pt;}
.y144{bottom:220.716000pt;}
.y173{bottom:220.789333pt;}
.yaa{bottom:221.750667pt;}
.y19c{bottom:222.256000pt;}
.y1dc{bottom:224.589333pt;}
.y41{bottom:224.691867pt;}
.y85{bottom:226.796000pt;}
.y68{bottom:227.830667pt;}
.y101{bottom:229.750667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1c3{bottom:237.189333pt;}
.yc6{bottom:237.840133pt;}
.y172{bottom:238.056000pt;}
.y1ba{bottom:239.522667pt;}
.yeb{bottom:239.670667pt;}
.y149{bottom:240.876000pt;}
.y1db{bottom:241.856000pt;}
.y125{bottom:241.910667pt;}
.y40{bottom:241.958533pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y143{bottom:244.716000pt;}
.ya9{bottom:245.750667pt;}
.y84{bottom:250.796000pt;}
.y67{bottom:251.830667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y100{bottom:253.750667pt;}
.y19b{bottom:254.456000pt;}
.y171{bottom:255.322667pt;}
.y1b9{bottom:256.789333pt;}
.y3f{bottom:259.225200pt;}
.yc5{bottom:261.840133pt;}
.yea{bottom:263.670667pt;}
.y142{bottom:268.716000pt;}
.ya8{bottom:269.750667pt;}
.y19a{bottom:271.722667pt;}
.y170{bottom:272.589333pt;}
.y1cc{bottom:274.056000pt;}
.y83{bottom:274.796000pt;}
.y66{bottom:275.830667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y3e{bottom:276.491867pt;}
.yff{bottom:277.750667pt;}
.y148{bottom:282.796000pt;}
.y124{bottom:283.830667pt;}
.yc4{bottom:285.840133pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ye9{bottom:287.670667pt;}
.y199{bottom:288.989333pt;}
.y1da{bottom:291.322667pt;}
.y141{bottom:292.716000pt;}
.ya7{bottom:293.750667pt;}
.y3d{bottom:293.758533pt;}
.y82{bottom:298.796000pt;}
.ya4{bottom:299.830667pt;}
.yfe{bottom:301.750667pt;}
.y1c2{bottom:303.922667pt;}
.y16f{bottom:304.789333pt;}
.y1b8{bottom:306.256000pt;}
.y123{bottom:307.830667pt;}
.y1d9{bottom:308.589333pt;}
.yf{bottom:309.452000pt;}
.yc3{bottom:309.840133pt;}
.y3c{bottom:311.025200pt;}
.ye8{bottom:311.670667pt;}
.y140{bottom:316.716000pt;}
.y65{bottom:317.750667pt;}
.y198{bottom:321.189333pt;}
.y16e{bottom:322.056000pt;}
.y81{bottom:322.796000pt;}
.y1b7{bottom:323.522667pt;}
.yd4{bottom:323.830667pt;}
.yfd{bottom:325.750667pt;}
.y3b{bottom:328.291867pt;}
.y122{bottom:331.830667pt;}
.yc2{bottom:333.840133pt;}
.ye7{bottom:335.670667pt;}
.y16d{bottom:339.322667pt;}
.y13f{bottom:340.716000pt;}
.y1d8{bottom:340.789333pt;}
.y64{bottom:341.750667pt;}
.ye{bottom:343.809333pt;}
.y3a{bottom:345.558533pt;}
.y80{bottom:346.796000pt;}
.yd3{bottom:347.830667pt;}
.yfc{bottom:349.750667pt;}
.y197{bottom:353.389333pt;}
.y1b6{bottom:355.722667pt;}
.y121{bottom:355.830667pt;}
.y152{bottom:356.140000pt;}
.yc1{bottom:357.840133pt;}
.y1d7{bottom:358.056000pt;}
.ye6{bottom:359.670667pt;}
.yd{bottom:362.706666pt;}
.y39{bottom:362.825200pt;}
.y13e{bottom:364.716000pt;}
.y63{bottom:365.750667pt;}
.y196{bottom:370.656000pt;}
.y7f{bottom:370.796000pt;}
.y16c{bottom:371.522667pt;}
.y107{bottom:371.830667pt;}
.y1b5{bottom:372.989333pt;}
.y1e8{bottom:375.322667pt;}
.y120{bottom:379.830667pt;}
.y38{bottom:380.091867pt;}
.yc0{bottom:381.840133pt;}
.ye5{bottom:383.670667pt;}
.yd2{bottom:387.254667pt;}
.y195{bottom:387.922667pt;}
.y13d{bottom:388.716000pt;}
.y16b{bottom:388.789333pt;}
.y62{bottom:389.750667pt;}
.y1cb{bottom:390.256000pt;}
.yfb{bottom:391.670667pt;}
.y7e{bottom:394.796000pt;}
.y11f{bottom:403.830667pt;}
.y1b4{bottom:405.189333pt;}
.ybf{bottom:405.840133pt;}
.y151{bottom:406.636000pt;}
.y1d6{bottom:407.522667pt;}
.ye4{bottom:407.670667pt;}
.yd1{bottom:411.254667pt;}
.y13c{bottom:412.716000pt;}
.y61{bottom:413.750667pt;}
.yfa{bottom:415.670667pt;}
.y9d{bottom:418.796000pt;}
.y194{bottom:420.122667pt;}
.y16a{bottom:420.989333pt;}
.y1b3{bottom:422.456000pt;}
.y1d5{bottom:424.789333pt;}
.y37{bottom:425.625200pt;}
.y11e{bottom:427.830667pt;}
.ybe{bottom:429.840133pt;}
.y150{bottom:430.636000pt;}
.ye3{bottom:431.670667pt;}
.y7d{bottom:436.716000pt;}
.y193{bottom:437.389333pt;}
.y60{bottom:437.750667pt;}
.y169{bottom:438.256000pt;}
.yf9{bottom:439.670667pt;}
.y1b2{bottom:439.722667pt;}
.y9c{bottom:442.796000pt;}
.y36{bottom:442.891867pt;}
.yc{bottom:446.990669pt;}
.y11d{bottom:451.830667pt;}
.ybd{bottom:453.840133pt;}
.y14f{bottom:454.636000pt;}
.y192{bottom:454.656000pt;}
.y168{bottom:455.522667pt;}
.ye2{bottom:455.670667pt;}
.y1ca{bottom:456.989333pt;}
.y7c{bottom:460.716000pt;}
.y5f{bottom:461.750667pt;}
.yb{bottom:462.990669pt;}
.yf8{bottom:463.670667pt;}
.y9b{bottom:466.796000pt;}
.y1b1{bottom:471.922667pt;}
.y35{bottom:473.491867pt;}
.y1d4{bottom:474.256000pt;}
.y11c{bottom:475.830667pt;}
.ybc{bottom:477.840133pt;}
.y14e{bottom:478.636000pt;}
.ya{bottom:478.990666pt;}
.ye1{bottom:479.670667pt;}
.y7b{bottom:484.716000pt;}
.y5e{bottom:485.750667pt;}
.y191{bottom:486.856000pt;}
.yf7{bottom:487.670667pt;}
.y167{bottom:487.722667pt;}
.y1b0{bottom:489.189333pt;}
.y34{bottom:490.758533pt;}
.y1e7{bottom:491.522667pt;}
.y9{bottom:494.990666pt;}
.ybb{bottom:501.840133pt;}
.y13b{bottom:502.636000pt;}
.ye0{bottom:503.670667pt;}
.y190{bottom:504.122667pt;}
.y166{bottom:504.989333pt;}
.y9a{bottom:506.220000pt;}
.y1af{bottom:506.456000pt;}
.y33{bottom:508.025200pt;}
.y7a{bottom:508.716000pt;}
.y1e6{bottom:508.789333pt;}
.y5d{bottom:509.750667pt;}
.yf6{bottom:511.670667pt;}
.y11b{bottom:517.750667pt;}
.y1c1{bottom:521.389333pt;}
.y165{bottom:522.256000pt;}
.y1c9{bottom:523.722667pt;}
.y13a{bottom:526.636000pt;}
.ydf{bottom:527.670667pt;}
.y79{bottom:532.716000pt;}
.y5c{bottom:533.750667pt;}
.yf5{bottom:535.670667pt;}
.y18f{bottom:536.322667pt;}
.y32{bottom:538.625200pt;}
.y1ae{bottom:538.656000pt;}
.y1e5{bottom:540.989333pt;}
.y11a{bottom:541.750667pt;}
.yba{bottom:543.760133pt;}
.y139{bottom:550.636000pt;}
.ya6{bottom:551.670667pt;}
.y18e{bottom:553.589333pt;}
.y164{bottom:554.456000pt;}
.y31{bottom:555.891867pt;}
.y1ad{bottom:555.922667pt;}
.y99{bottom:556.716000pt;}
.y5b{bottom:557.750667pt;}
.y1e4{bottom:558.256000pt;}
.yf4{bottom:559.670667pt;}
.y119{bottom:565.750667pt;}
.yb9{bottom:567.760133pt;}
.yde{bottom:569.590667pt;}
.y18d{bottom:570.856000pt;}
.y163{bottom:571.722667pt;}
.y30{bottom:573.158533pt;}
.y1c8{bottom:573.189333pt;}
.y8{bottom:573.786667pt;}
.y138{bottom:574.636000pt;}
.ya5{bottom:575.670667pt;}
.y98{bottom:580.716000pt;}
.y5a{bottom:581.750667pt;}
.yf3{bottom:583.670667pt;}
.y1ac{bottom:588.122667pt;}
.y118{bottom:589.750667pt;}
.y2f{bottom:590.425200pt;}
.y1c7{bottom:590.456000pt;}
.yb8{bottom:591.760133pt;}
.y7{bottom:592.685334pt;}
.ydd{bottom:593.590667pt;}
.y137{bottom:598.636000pt;}
.ya3{bottom:599.670667pt;}
.y18c{bottom:603.056000pt;}
.y162{bottom:603.922667pt;}
.y97{bottom:604.716000pt;}
.y1ab{bottom:605.389333pt;}
.y78{bottom:605.750667pt;}
.yf2{bottom:607.670667pt;}
.y2e{bottom:607.691867pt;}
.y1e3{bottom:607.722667pt;}
.y117{bottom:613.750667pt;}
.yb7{bottom:615.760133pt;}
.ydc{bottom:617.590667pt;}
.y18b{bottom:620.322667pt;}
.y161{bottom:621.189333pt;}
.y136{bottom:622.636000pt;}
.y1aa{bottom:622.656000pt;}
.y59{bottom:623.670667pt;}
.y2d{bottom:624.325200pt;}
.y96{bottom:628.716000pt;}
.y77{bottom:629.750667pt;}
.yf1{bottom:631.670667pt;}
.y18a{bottom:637.589333pt;}
.y116{bottom:637.750667pt;}
.yb6{bottom:639.760133pt;}
.y1c6{bottom:639.922667pt;}
.y2c{bottom:640.325200pt;}
.ydb{bottom:641.590667pt;}
.y6{bottom:645.598667pt;}
.y135{bottom:646.636000pt;}
.y58{bottom:647.670667pt;}
.y95{bottom:652.716000pt;}
.y160{bottom:653.389333pt;}
.y76{bottom:653.750667pt;}
.y189{bottom:654.856000pt;}
.yf0{bottom:655.670667pt;}
.y2b{bottom:656.958533pt;}
.y1d3{bottom:657.189333pt;}
.y115{bottom:661.750667pt;}
.yee{bottom:663.094667pt;}
.yb5{bottom:663.760133pt;}
.yda{bottom:665.590667pt;}
.y3{bottom:668.977329pt;}
.y1c0{bottom:669.789333pt;}
.y134{bottom:670.636000pt;}
.y15f{bottom:670.656000pt;}
.y57{bottom:671.670667pt;}
.y188{bottom:672.122667pt;}
.y2a{bottom:674.225200pt;}
.y1e2{bottom:674.456000pt;}
.y94{bottom:676.716000pt;}
.y75{bottom:677.750667pt;}
.y114{bottom:685.750667pt;}
.y1bf{bottom:687.056000pt;}
.y15e{bottom:687.922667pt;}
.y1a9{bottom:689.389333pt;}
.yd9{bottom:689.590667pt;}
.yef{bottom:694.342667pt;}
.y133{bottom:694.636000pt;}
.y56{bottom:695.670667pt;}
.y93{bottom:700.716000pt;}
.yd0{bottom:701.750667pt;}
.y187{bottom:704.322667pt;}
.y29{bottom:704.825200pt;}
.y1a8{bottom:706.656000pt;}
.y113{bottom:709.750667pt;}
.yd8{bottom:713.590667pt;}
.y55{bottom:719.670667pt;}
.y15d{bottom:720.122667pt;}
.y186{bottom:721.589333pt;}
.y28{bottom:722.091867pt;}
.yb4{bottom:723.915467pt;}
.y1a7{bottom:723.922667pt;}
.ycf{bottom:725.750667pt;}
.y112{bottom:733.750667pt;}
.y132{bottom:736.556000pt;}
.y15c{bottom:737.389333pt;}
.yd7{bottom:737.590667pt;}
.y185{bottom:738.856000pt;}
.y92{bottom:742.636000pt;}
.y54{bottom:743.670667pt;}
.yb3{bottom:744.635467pt;}
.yce{bottom:749.750667pt;}
.y27{bottom:752.691867pt;}
.y1be{bottom:753.789333pt;}
.y15b{bottom:754.656000pt;}
.y1a6{bottom:756.122667pt;}
.y111{bottom:757.750667pt;}
.y131{bottom:760.556000pt;}
.yd6{bottom:761.590667pt;}
.yb2{bottom:765.355467pt;}
.y91{bottom:766.636000pt;}
.y53{bottom:767.670667pt;}
.y184{bottom:771.056000pt;}
.y1a5{bottom:773.389333pt;}
.ycd{bottom:773.750667pt;}
.y2{bottom:781.661334pt;}
.y110{bottom:781.750667pt;}
.y130{bottom:784.556000pt;}
.yd5{bottom:785.590667pt;}
.yb1{bottom:786.075467pt;}
.y15a{bottom:786.894667pt;}
.y183{bottom:788.322667pt;}
.y90{bottom:790.636000pt;}
.y1d2{bottom:790.656000pt;}
.y52{bottom:791.670667pt;}
.ycc{bottom:797.750667pt;}
.y147{bottom:799.670667pt;}
.y182{bottom:805.589333pt;}
.y10f{bottom:805.750667pt;}
.yb0{bottom:806.795467pt;}
.y12f{bottom:808.556000pt;}
.ya2{bottom:809.590667pt;}
.y8f{bottom:814.636000pt;}
.y51{bottom:815.670667pt;}
.ycb{bottom:821.750667pt;}
.y1a4{bottom:822.856000pt;}
.y146{bottom:823.670667pt;}
.yaf{bottom:827.515467pt;}
.y10e{bottom:829.750667pt;}
.y12e{bottom:832.556000pt;}
.ya1{bottom:833.590667pt;}
.y26{bottom:835.986533pt;}
.y181{bottom:837.789333pt;}
.y8e{bottom:838.636000pt;}
.y50{bottom:839.670667pt;}
.y1d1{bottom:840.122667pt;}
.y145{bottom:847.670667pt;}
.y180{bottom:855.056000pt;}
.y12d{bottom:856.556000pt;}
.y1d0{bottom:857.389333pt;}
.ya0{bottom:857.590667pt;}
.y1{bottom:859.312000pt;}
.y8d{bottom:862.636000pt;}
.y4f{bottom:863.670667pt;}
.y25{bottom:869.685200pt;}
.y10d{bottom:871.670667pt;}
.y17f{bottom:872.322667pt;}
.y74{bottom:879.094667pt;}
.y12c{bottom:880.556000pt;}
.y9f{bottom:881.590667pt;}
.y8c{bottom:886.636000pt;}
.y4e{bottom:887.670667pt;}
.y1a3{bottom:889.589333pt;}
.y10c{bottom:895.670667pt;}
.y159{bottom:895.804000pt;}
.y24{bottom:896.351867pt;}
.y17e{bottom:904.522667pt;}
.y9e{bottom:905.590667pt;}
.y1cf{bottom:906.856000pt;}
.y4d{bottom:911.670667pt;}
.y158{bottom:916.524000pt;}
.y10b{bottom:919.670667pt;}
.y17d{bottom:921.789333pt;}
.y23{bottom:923.018533pt;}
.y1ce{bottom:924.122667pt;}
.y73{bottom:929.590667pt;}
.y4c{bottom:935.670667pt;}
.y157{bottom:937.244000pt;}
.y17c{bottom:939.056000pt;}
.y10a{bottom:943.670667pt;}
.y72{bottom:953.590667pt;}
.y17b{bottom:956.322667pt;}
.y4b{bottom:959.670667pt;}
.y22{bottom:960.511867pt;}
.y1a2{bottom:971.256000pt;}
.y1cd{bottom:973.589333pt;}
.y71{bottom:977.590667pt;}
.y156{bottom:978.356000pt;}
.y109{bottom:982.342667pt;}
.y17a{bottom:988.522667pt;}
.y4a{bottom:999.094667pt;}
.y70{bottom:1001.590667pt;}
.y108{bottom:1002.342667pt;}
.y179{bottom:1005.789333pt;}
.y49{bottom:1047.493600pt;}
.y6f{bottom:1061.666800pt;}
.h13{height:27.095040pt;}
.h7{height:28.560000pt;}
.h11{height:38.080000pt;}
.h6{height:40.800000pt;}
.h9{height:42.666667pt;}
.h3{height:42.840000pt;}
.hb{height:46.400000pt;}
.h2{height:48.960000pt;}
.hd{height:51.200000pt;}
.hf{height:55.680000pt;}
.h10{height:57.120000pt;}
.hc{height:68.544000pt;}
.h5{height:69.360000pt;}
.he{height:71.466667pt;}
.ha{height:76.160000pt;}
.h12{height:93.006400pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:566.929200pt;}
.w0{width:793.700000pt;}
.w3{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:99.705867pt;}
.x6{left:113.385867pt;}
.x9{left:132.350133pt;}
.x4{left:180.874667pt;}
.x5{left:188.976400pt;}
.x7{left:253.228400pt;}
.x3{left:404.408000pt;}
}




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