
    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_23ecfd3d500cb4e2b059b848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_75b95fff72e331628d95fdb7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_cafb22ac64118883d45ea916.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_e2a0917b16b7fb7f2f5047c1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_22129b1de9f88d5accc47b0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_4470d8baf3f84ecab5122cb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_18d11796aa451e68de0c53c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9ff2abf3cbeea2be015a942b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ee731c51717c90f7e0c1629.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9ccf70886a8389bc0f0fca07.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c1ef487bf55dbb94327edda6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_244a3af2faa6bcc6268b89b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_71cadebd072c9f2526e4ac6b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.011218px;}
.ls0{letter-spacing:0.039930px;}
.ls2{letter-spacing:0.238696px;}
.ls4{letter-spacing:0.243436px;}
.ls1{letter-spacing:0.245776px;}
.ls8{letter-spacing:0.573718px;}
.ls6{letter-spacing:0.681060px;}
.ls7{letter-spacing:15.524759px;}
.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;}
}
.ws0{word-spacing:-15.626041px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-1.151550px;}
._0{width:1.083032px;}
._2{width:2.321670px;}
._4{width:3.899842px;}
._3{width:5.088747px;}
._5{width:6.156298px;}
._e{width:7.488209px;}
._a{width:8.812169px;}
._8{width:10.000418px;}
._9{width:11.621831px;}
._6{width:12.922824px;}
._7{width:14.431137px;}
._b{width:16.967608px;}
._17{width:18.410148px;}
._15{width:19.720930px;}
._c{width:20.857501px;}
._d{width:21.942633px;}
._10{width:22.971961px;}
._f{width:24.254107px;}
._1e{width:25.629894px;}
._14{width:26.630282px;}
._13{width:27.679413px;}
._19{width:29.192508px;}
._1a{width:30.450916px;}
._1b{width:31.856409px;}
._11{width:33.351145px;}
._12{width:34.919984px;}
._1c{width:36.688688px;}
._24{width:38.079735px;}
._20{width:40.018124px;}
._18{width:42.054117px;}
._27{width:43.624087px;}
._21{width:44.873925px;}
._22{width:45.951768px;}
._25{width:47.392887px;}
._1f{width:49.749313px;}
._26{width:52.356761px;}
._2b{width:62.026882px;}
._2c{width:63.646361px;}
._1d{width:67.864190px;}
._23{width:74.335147px;}
._16{width:77.204796px;}
._2e{width:84.401647px;}
._2d{width:102.544088px;}
._2a{width:107.724475px;}
._28{width:114.543088px;}
._29{width:391.385962px;}
.fc5{color:rgb(57,76,168);}
.fc4{color:rgb(93,136,206);}
.fc3{color:rgb(112,28,34);}
.fc1{color:rgb(191,29,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:28.442940px;}
.fs7{font-size:50.791080px;}
.fs0{font-size:56.208780px;}
.fs1{font-size:62.303400px;}
.fs3{font-size:67.721400px;}
.fs5{font-size:79.233600px;}
.fs4{font-size:90.069000px;}
.fs6{font-size:123.930000px;}
.y12{bottom:-7.450500px;}
.y0{bottom:0.000000px;}
.y67{bottom:3.216750px;}
.y64{bottom:4.236000px;}
.ya{bottom:5.079450px;}
.y61{bottom:5.250000px;}
.y5e{bottom:7.958100px;}
.y7{bottom:7.958250px;}
.y10{bottom:10.327500px;}
.yb{bottom:18.656850px;}
.y66{bottom:19.470000px;}
.yf{bottom:26.749500px;}
.yd{bottom:28.950000px;}
.y9{bottom:31.692750px;}
.y62{bottom:39.311700px;}
.y5{bottom:42.359250px;}
.ydd{bottom:48.624000px;}
.y60{bottom:54.040500px;}
.y6{bottom:58.272000px;}
.y4{bottom:63.351600px;}
.ydc{bottom:69.618150px;}
.y5b{bottom:78.250350px;}
.y44{bottom:79.096650px;}
.y5d{bottom:80.790300px;}
.y5c{bottom:83.330250px;}
.y5a{bottom:94.503600px;}
.y43{bottom:95.181150px;}
.y115{bottom:95.182050px;}
.ya2{bottom:95.519850px;}
.y1af{bottom:105.336150px;}
.y59{bottom:110.756850px;}
.y114{bottom:111.264900px;}
.y42{bottom:111.433350px;}
.ya1{bottom:111.772050px;}
.y14c{bottom:112.620300px;}
.y1ae{bottom:121.589400px;}
.y58{bottom:127.009050px;}
.y113{bottom:127.518150px;}
.y41{bottom:127.687800px;}
.ydb{bottom:128.027100px;}
.y14b{bottom:128.873550px;}
.y17c{bottom:129.378300px;}
.y1ad{bottom:137.672850px;}
.y57{bottom:143.258250px;}
.y112{bottom:143.764500px;}
.y40{bottom:143.934750px;}
.yda{bottom:144.274500px;}
.ya0{bottom:144.949650px;}
.y14a{bottom:145.120500px;}
.y17b{bottom:145.626300px;}
.y1ac{bottom:153.922050px;}
.y111{bottom:160.017750px;}
.y3f{bottom:160.188000px;}
.yd9{bottom:160.526700px;}
.y9f{bottom:161.202900px;}
.y149{bottom:161.374950px;}
.y17a{bottom:161.877900px;}
.y8{bottom:165.774000px;}
.y110{bottom:176.101200px;}
.y56{bottom:176.439900px;}
.y3e{bottom:176.440200px;}
.y9e{bottom:177.455100px;}
.y148{bottom:177.627150px;}
.y179{bottom:178.132950px;}
.y1ab{bottom:187.103700px;}
.y5f{bottom:188.292000px;}
.y10f{bottom:192.355650px;}
.y55{bottom:192.524400px;}
.y3d{bottom:192.524700px;}
.y9d{bottom:193.710150px;}
.yd8{bottom:193.711200px;}
.y147{bottom:193.880400px;}
.y178{bottom:194.385150px;}
.y1aa{bottom:203.525700px;}
.y10e{bottom:208.607850px;}
.y54{bottom:208.777650px;}
.y3c{bottom:208.777950px;}
.y9c{bottom:209.793600px;}
.yd7{bottom:209.794650px;}
.y146{bottom:209.963850px;}
.y177{bottom:210.638400px;}
.y1a9{bottom:219.442050px;}
.y53{bottom:225.029850px;}
.y3b{bottom:225.030150px;}
.y9b{bottom:226.046850px;}
.yd6{bottom:226.047900px;}
.y145{bottom:226.217100px;}
.y176{bottom:226.721850px;}
.y52{bottom:241.283700px;}
.y10d{bottom:241.791300px;}
.y9a{bottom:242.299050px;}
.yd5{bottom:242.300100px;}
.y144{bottom:242.470350px;}
.y175{bottom:242.975100px;}
.y1a8{bottom:252.665850px;}
.y51{bottom:257.579250px;}
.y10c{bottom:258.087450px;}
.y3a{bottom:258.256950px;}
.y99{bottom:258.595800px;}
.yd4{bottom:258.597300px;}
.y143{bottom:258.764700px;}
.y174{bottom:259.270650px;}
.y1a7{bottom:269.087850px;}
.y50{bottom:273.832500px;}
.y10b{bottom:274.339050px;}
.y39{bottom:274.509150px;}
.y98{bottom:274.848000px;}
.yd3{bottom:274.849500px;}
.y142{bottom:275.019750px;}
.y173{bottom:275.522850px;}
.y1a6{bottom:285.172350px;}
.y4f{bottom:289.915950px;}
.y10a{bottom:290.424150px;}
.y38{bottom:290.762400px;}
.y97{bottom:291.100200px;}
.yd2{bottom:291.101700px;}
.y172{bottom:291.777900px;}
.y1a5{bottom:301.424550px;}
.y4e{bottom:306.169200px;}
.y109{bottom:306.677400px;}
.y37{bottom:306.845850px;}
.y96{bottom:307.184700px;}
.yd1{bottom:307.186200px;}
.y171{bottom:308.030100px;}
.y141{bottom:308.202000px;}
.y4d{bottom:322.421400px;}
.y108{bottom:322.930650px;}
.y36{bottom:323.100900px;}
.y95{bottom:323.437950px;}
.yd0{bottom:323.439450px;}
.y170{bottom:324.114600px;}
.y140{bottom:324.286500px;}
.y1a4{bottom:334.779600px;}
.y4c{bottom:338.676450px;}
.y107{bottom:339.182850px;}
.y35{bottom:339.352500px;}
.y94{bottom:339.691800px;}
.ycf{bottom:339.692700px;}
.y16f{bottom:340.366800px;}
.y13f{bottom:340.539750px;}
.y1a3{bottom:350.693100px;}
.y4b{bottom:354.928050px;}
.y106{bottom:355.436100px;}
.y34{bottom:355.604100px;}
.y93{bottom:355.943400px;}
.y16e{bottom:356.621850px;}
.y13e{bottom:356.791950px;}
.y4a{bottom:371.181900px;}
.y105{bottom:371.520600px;}
.y33{bottom:371.859150px;}
.y92{bottom:372.198450px;}
.y16d{bottom:372.874050px;}
.yce{bottom:372.876150px;}
.y13d{bottom:373.045200px;}
.y1a2{bottom:383.875950px;}
.y49{bottom:387.264750px;}
.y104{bottom:387.772800px;}
.y32{bottom:388.111350px;}
.y91{bottom:388.450650px;}
.y16c{bottom:389.126250px;}
.ycd{bottom:389.128350px;}
.y13c{bottom:389.298450px;}
.y1a1{bottom:400.299750px;}
.y103{bottom:404.026050px;}
.y31{bottom:404.195850px;}
.y13b{bottom:405.382950px;}
.ycc{bottom:405.383400px;}
.y1a0{bottom:416.383200px;}
.y102{bottom:420.279300px;}
.y30{bottom:420.448050px;}
.y48{bottom:420.448200px;}
.y90{bottom:421.464150px;}
.ycb{bottom:421.465050px;}
.y13a{bottom:421.635150px;}
.y16b{bottom:422.311350px;}
.y101{bottom:436.532550px;}
.y2f{bottom:436.703100px;}
.y47{bottom:436.703250px;}
.y8f{bottom:437.719200px;}
.yca{bottom:437.720100px;}
.y139{bottom:437.888400px;}
.y16a{bottom:438.394200px;}
.y19f{bottom:449.567700px;}
.y100{bottom:452.784750px;}
.y2e{bottom:452.955300px;}
.y46{bottom:452.955450px;}
.y8e{bottom:453.971400px;}
.yc9{bottom:453.972300px;}
.y138{bottom:454.141650px;}
.y169{bottom:454.648050px;}
.y19e{bottom:465.988650px;}
.yff{bottom:468.869250px;}
.y2d{bottom:469.206900px;}
.y45{bottom:469.207650px;}
.y8d{bottom:470.226450px;}
.yc8{bottom:470.226750px;}
.y137{bottom:470.393850px;}
.y168{bottom:470.901300px;}
.y8c{bottom:486.478650px;}
.yc7{bottom:486.478950px;}
.y167{bottom:487.153500px;}
.y19d{bottom:498.833400px;}
.yfe{bottom:502.052700px;}
.y2c{bottom:502.052850px;}
.y8b{bottom:502.562100px;}
.yc6{bottom:502.562400px;}
.y166{bottom:503.406750px;}
.y136{bottom:503.578350px;}
.y19c{bottom:515.087850px;}
.yfd{bottom:518.305950px;}
.y8a{bottom:518.815350px;}
.yc5{bottom:518.815650px;}
.y165{bottom:519.490200px;}
.y135{bottom:519.661800px;}
.y19b{bottom:531.368100px;}
.y2b{bottom:533.910300px;}
.yfc{bottom:534.586200px;}
.y89{bottom:535.096800px;}
.yc4{bottom:535.097700px;}
.y164{bottom:535.772850px;}
.y134{bottom:535.942050px;}
.y19a{bottom:547.621350px;}
.yfb{bottom:550.841250px;}
.y88{bottom:551.349000px;}
.yc3{bottom:551.349300px;}
.y163{bottom:552.025050px;}
.y133{bottom:552.197100px;}
.y199{bottom:564.043350px;}
.yfa{bottom:567.093450px;}
.y2a{bottom:567.093750px;}
.y87{bottom:567.602250px;}
.yc2{bottom:567.603150px;}
.y162{bottom:568.278300px;}
.y132{bottom:568.448700px;}
.y198{bottom:580.126800px;}
.yf9{bottom:583.177950px;}
.y29{bottom:583.178250px;}
.y86{bottom:583.855500px;}
.yc1{bottom:583.857000px;}
.y161{bottom:584.531550px;}
.y131{bottom:584.701950px;}
.yf8{bottom:599.430150px;}
.y28{bottom:599.430450px;}
.y85{bottom:599.940000px;}
.yc0{bottom:599.941500px;}
.y160{bottom:600.783750px;}
.y130{bottom:600.955200px;}
.y197{bottom:613.142550px;}
.yf7{bottom:615.683400px;}
.y27{bottom:615.683700px;}
.y84{bottom:616.192200px;}
.y15f{bottom:616.868250px;}
.y12f{bottom:617.039700px;}
.y196{bottom:629.564550px;}
.yf6{bottom:631.936650px;}
.y26{bottom:631.937550px;}
.y83{bottom:632.445450px;}
.y15e{bottom:633.120450px;}
.ybf{bottom:633.123150px;}
.y12e{bottom:633.291900px;}
.y195{bottom:645.646800px;}
.yf5{bottom:648.188850px;}
.y25{bottom:648.189150px;}
.y82{bottom:648.698700px;}
.y15d{bottom:649.374300px;}
.ybe{bottom:649.376400px;}
.y12d{bottom:649.544100px;}
.y194{bottom:661.901850px;}
.yf4{bottom:664.273350px;}
.y24{bottom:664.274250px;}
.y15c{bottom:665.627550px;}
.ybd{bottom:665.629650px;}
.y12c{bottom:665.798550px;}
.yf3{bottom:680.525550px;}
.y23{bottom:680.525850px;}
.y15b{bottom:681.881400px;}
.y81{bottom:681.882150px;}
.ybc{bottom:681.882900px;}
.y12b{bottom:682.050750px;}
.y193{bottom:695.085300px;}
.yf2{bottom:696.780600px;}
.y22{bottom:696.780900px;}
.y12a{bottom:698.135250px;}
.y80{bottom:698.135400px;}
.ybb{bottom:698.136150px;}
.y192{bottom:711.336900px;}
.yf1{bottom:713.032200px;}
.y21{bottom:713.033100px;}
.y7f{bottom:714.218850px;}
.yba{bottom:714.219600px;}
.y129{bottom:714.387450px;}
.y15a{bottom:715.064250px;}
.y191{bottom:727.590750px;}
.y20{bottom:729.288150px;}
.y7e{bottom:730.472100px;}
.yb9{bottom:730.472850px;}
.y128{bottom:730.641300px;}
.y159{bottom:731.147700px;}
.y1f{bottom:745.540350px;}
.yf0{bottom:746.215650px;}
.y7d{bottom:746.725950px;}
.yb8{bottom:746.726100px;}
.y127{bottom:746.895150px;}
.y158{bottom:747.401550px;}
.y190{bottom:760.605450px;}
.y1e{bottom:761.623200px;}
.yef{bottom:762.468900px;}
.y7c{bottom:762.977550px;}
.yb7{bottom:762.978300px;}
.y126{bottom:763.146750px;}
.y157{bottom:763.655400px;}
.y1bd{bottom:774.153000px;}
.y18f{bottom:777.027450px;}
.y1d{bottom:777.877050px;}
.yee{bottom:778.552350px;}
.y7b{bottom:779.231400px;}
.yb6{bottom:779.231550px;}
.y125{bottom:779.401800px;}
.y156{bottom:779.907000px;}
.y18e{bottom:793.323000px;}
.y1c{bottom:794.172600px;}
.yed{bottom:794.848500px;}
.y7a{bottom:795.358200px;}
.y155{bottom:796.204200px;}
.y1bc{bottom:807.209100px;}
.y18d{bottom:809.407500px;}
.y1b{bottom:810.425850px;}
.yec{bottom:811.101750px;}
.y79{bottom:811.610400px;}
.y154{bottom:812.286450px;}
.yb5{bottom:812.287200px;}
.y124{bottom:812.457450px;}
.y1bb{bottom:823.462350px;}
.y18c{bottom:825.489750px;}
.y1a{bottom:826.678050px;}
.y78{bottom:827.863650px;}
.y153{bottom:828.540900px;}
.yb4{bottom:828.542250px;}
.y123{bottom:828.710700px;}
.y19{bottom:842.931300px;}
.y77{bottom:844.116900px;}
.yeb{bottom:844.286250px;}
.y152{bottom:844.793100px;}
.yb3{bottom:844.793850px;}
.y122{bottom:844.963950px;}
.y1ba{bottom:856.814550px;}
.y18b{bottom:859.182300px;}
.y76{bottom:860.369100px;}
.yea{bottom:860.538450px;}
.y151{bottom:861.048150px;}
.yb2{bottom:861.048900px;}
.y121{bottom:861.217200px;}
.y18{bottom:875.946000px;}
.y75{bottom:876.624150px;}
.ye9{bottom:876.790650px;}
.y150{bottom:877.300350px;}
.yb1{bottom:877.301100px;}
.y120{bottom:877.469400px;}
.y1b9{bottom:889.998000px;}
.y74{bottom:892.707600px;}
.ye8{bottom:892.875150px;}
.y18a{bottom:893.549250px;}
.y14f{bottom:893.552550px;}
.yb0{bottom:893.553300px;}
.y11f{bottom:893.722650px;}
.y73{bottom:908.960850px;}
.ye7{bottom:909.128400px;}
.y189{bottom:909.633750px;}
.y14e{bottom:909.637050px;}
.yaf{bottom:909.637800px;}
.y17{bottom:909.806700px;}
.y11e{bottom:909.807150px;}
.y1b8{bottom:925.213050px;}
.y188{bottom:925.885950px;}
.y14d{bottom:925.889250px;}
.yae{bottom:925.890000px;}
.y11d{bottom:926.059350px;}
.y187{bottom:942.141000px;}
.y72{bottom:942.143700px;}
.yad{bottom:942.145050px;}
.ye6{bottom:942.311850px;}
.y11c{bottom:942.312600px;}
.y16{bottom:949.083900px;}
.y186{bottom:958.393200px;}
.y71{bottom:958.395900px;}
.yac{bottom:958.397250px;}
.ye5{bottom:958.565100px;}
.y1b7{bottom:958.566300px;}
.y11b{bottom:958.734600px;}
.y185{bottom:974.648250px;}
.y70{bottom:974.650950px;}
.yab{bottom:974.651700px;}
.ye4{bottom:974.817300px;}
.y11a{bottom:974.987850px;}
.y1b6{bottom:974.988300px;}
.y184{bottom:990.900450px;}
.y6f{bottom:990.903150px;}
.yaa{bottom:990.903900px;}
.ye3{bottom:991.072350px;}
.y1b5{bottom:991.242150px;}
.y15{bottom:1001.739750px;}
.y183{bottom:1006.984950px;}
.y6e{bottom:1006.987650px;}
.ya9{bottom:1006.988400px;}
.ye2{bottom:1007.154600px;}
.y1b4{bottom:1007.155050px;}
.y182{bottom:1023.237150px;}
.y6d{bottom:1023.239850px;}
.ya8{bottom:1023.240600px;}
.ye1{bottom:1023.409650px;}
.y119{bottom:1024.254600px;}
.y14{bottom:1037.461500px;}
.y181{bottom:1039.490400px;}
.y6c{bottom:1039.493100px;}
.ya7{bottom:1039.493850px;}
.ye0{bottom:1039.661850px;}
.y1b3{bottom:1040.339550px;}
.y118{bottom:1040.507850px;}
.y180{bottom:1055.771850px;}
.y6b{bottom:1055.774550px;}
.ya6{bottom:1055.775900px;}
.y117{bottom:1056.620550px;}
.y1b2{bottom:1056.621600px;}
.y17f{bottom:1072.024050px;}
.y6a{bottom:1072.026750px;}
.ya5{bottom:1072.027500px;}
.ydf{bottom:1072.872750px;}
.y1b1{bottom:1072.873200px;}
.y13{bottom:1073.212500px;}
.y17e{bottom:1088.277300px;}
.y69{bottom:1088.280000px;}
.ya4{bottom:1088.280750px;}
.yde{bottom:1089.126000px;}
.y116{bottom:1089.296550px;}
.y1b0{bottom:1089.297000px;}
.y17d{bottom:1104.361800px;}
.y68{bottom:1104.364500px;}
.ya3{bottom:1104.365850px;}
.yc{bottom:1120.281000px;}
.y3{bottom:1123.327650px;}
.ye{bottom:1126.713000px;}
.y65{bottom:1135.516500px;}
.y11{bottom:1137.040500px;}
.y63{bottom:1149.058500px;}
.y2{bottom:1159.219200px;}
.y1{bottom:1176.658500px;}
.h16{height:18.795750px;}
.h3{height:18.957331px;}
.h12{height:20.721126px;}
.h7{height:25.903200px;}
.h14{height:26.071950px;}
.h9{height:31.692750px;}
.h17{height:32.338500px;}
.h11{height:36.977295px;}
.h1{height:37.463371px;}
.he{height:40.921529px;}
.h6{height:40.948974px;}
.hc{height:41.140950px;}
.h2{height:41.525459px;}
.hd{height:45.358579px;}
.h18{height:45.389000px;}
.ha{height:47.574000px;}
.h4{height:49.336098px;}
.hb{height:52.809504px;}
.h15{height:54.040500px;}
.h8{height:65.616674px;}
.h10{height:90.224429px;}
.hf{height:90.284941px;}
.h5{height:717.238500px;}
.h13{height:780.922500px;}
.h0{height:1188.000000px;}
.w6{width:50.792550px;}
.w7{width:53.499600px;}
.w2{width:57.055650px;}
.w4{width:69.753000px;}
.w5{width:527.014500px;}
.w8{width:717.508500px;}
.w1{width:840.931500px;}
.w3{width:840.960000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:1.185000px;}
.x7{left:7.621500px;}
.xa{left:10.022400px;}
.x6{left:13.036500px;}
.x15{left:34.371000px;}
.x4{left:37.417500px;}
.x1{left:38.535300px;}
.x8{left:59.764500px;}
.x2{left:69.922950px;}
.xc{left:92.827650px;}
.x9{left:108.458250px;}
.x1b{left:120.761850px;}
.x11{left:125.158005px;}
.xd{left:127.195200px;}
.x12{left:147.846690px;}
.xe{left:173.749050px;}
.xb{left:202.870350px;}
.x10{left:371.368005px;}
.xf{left:428.280705px;}
.x13{left:454.016940px;}
.x1a{left:504.806970px;}
.x19{left:566.968950px;}
.x5{left:821.306850px;}
.x3{left:822.409500px;}
.x16{left:824.524350px;}
.x18{left:825.966000px;}
.x14{left:828.673500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.009972pt;}
.ls0{letter-spacing:0.035493pt;}
.ls2{letter-spacing:0.212174pt;}
.ls4{letter-spacing:0.216388pt;}
.ls1{letter-spacing:0.218468pt;}
.ls8{letter-spacing:0.509972pt;}
.ls6{letter-spacing:0.605387pt;}
.ls7{letter-spacing:13.799786pt;}
.ws0{word-spacing:-13.889814pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-1.023600pt;}
._0{width:0.962695pt;}
._2{width:2.063707pt;}
._4{width:3.466527pt;}
._3{width:4.523331pt;}
._5{width:5.472265pt;}
._e{width:6.656186pt;}
._a{width:7.833039pt;}
._8{width:8.889261pt;}
._9{width:10.330516pt;}
._6{width:11.486955pt;}
._7{width:12.827677pt;}
._b{width:15.082318pt;}
._17{width:16.364576pt;}
._15{width:17.529716pt;}
._c{width:18.540001pt;}
._d{width:19.504563pt;}
._10{width:20.419521pt;}
._f{width:21.559206pt;}
._1e{width:22.782128pt;}
._14{width:23.671362pt;}
._13{width:24.603923pt;}
._19{width:25.948896pt;}
._1a{width:27.067481pt;}
._1b{width:28.316808pt;}
._11{width:29.645462pt;}
._12{width:31.039986pt;}
._1c{width:32.612167pt;}
._24{width:33.848654pt;}
._20{width:35.571666pt;}
._18{width:37.381438pt;}
._27{width:38.776967pt;}
._21{width:39.887934pt;}
._22{width:40.846016pt;}
._25{width:42.127011pt;}
._1f{width:44.221612pt;}
._26{width:46.539343pt;}
._2b{width:55.135006pt;}
._2c{width:56.574543pt;}
._1d{width:60.323724pt;}
._23{width:66.075686pt;}
._16{width:68.626486pt;}
._2e{width:75.023686pt;}
._2d{width:91.150301pt;}
._2a{width:95.755089pt;}
._28{width:101.816079pt;}
._29{width:347.898633pt;}
.fs2{font-size:25.282613pt;}
.fs7{font-size:45.147627pt;}
.fs0{font-size:49.963360pt;}
.fs1{font-size:55.380800pt;}
.fs3{font-size:60.196800pt;}
.fs5{font-size:70.429867pt;}
.fs4{font-size:80.061333pt;}
.fs6{font-size:110.160000pt;}
.y12{bottom:-6.622667pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:2.859333pt;}
.y64{bottom:3.765333pt;}
.ya{bottom:4.515067pt;}
.y61{bottom:4.666667pt;}
.y5e{bottom:7.073867pt;}
.y7{bottom:7.074000pt;}
.y10{bottom:9.180000pt;}
.yb{bottom:16.583867pt;}
.y66{bottom:17.306667pt;}
.yf{bottom:23.777333pt;}
.yd{bottom:25.733333pt;}
.y9{bottom:28.171333pt;}
.y62{bottom:34.943733pt;}
.y5{bottom:37.652667pt;}
.ydd{bottom:43.221333pt;}
.y60{bottom:48.036000pt;}
.y6{bottom:51.797333pt;}
.y4{bottom:56.312533pt;}
.ydc{bottom:61.882800pt;}
.y5b{bottom:69.555867pt;}
.y44{bottom:70.308133pt;}
.y5d{bottom:71.813600pt;}
.y5c{bottom:74.071333pt;}
.y5a{bottom:84.003200pt;}
.y43{bottom:84.605467pt;}
.y115{bottom:84.606267pt;}
.ya2{bottom:84.906533pt;}
.y1af{bottom:93.632133pt;}
.y59{bottom:98.450533pt;}
.y114{bottom:98.902133pt;}
.y42{bottom:99.051867pt;}
.ya1{bottom:99.352933pt;}
.y14c{bottom:100.106933pt;}
.y1ae{bottom:108.079467pt;}
.y58{bottom:112.896933pt;}
.y113{bottom:113.349467pt;}
.y41{bottom:113.500267pt;}
.ydb{bottom:113.801867pt;}
.y14b{bottom:114.554267pt;}
.y17c{bottom:115.002933pt;}
.y1ad{bottom:122.375867pt;}
.y57{bottom:127.340667pt;}
.y112{bottom:127.790667pt;}
.y40{bottom:127.942000pt;}
.yda{bottom:128.244000pt;}
.ya0{bottom:128.844133pt;}
.y14a{bottom:128.996000pt;}
.y17b{bottom:129.445600pt;}
.y1ac{bottom:136.819600pt;}
.y111{bottom:142.238000pt;}
.y3f{bottom:142.389333pt;}
.yd9{bottom:142.690400pt;}
.y9f{bottom:143.291467pt;}
.y149{bottom:143.444400pt;}
.y17a{bottom:143.891467pt;}
.y8{bottom:147.354667pt;}
.y110{bottom:156.534400pt;}
.y56{bottom:156.835467pt;}
.y3e{bottom:156.835733pt;}
.y9e{bottom:157.737867pt;}
.y148{bottom:157.890800pt;}
.y179{bottom:158.340400pt;}
.y1ab{bottom:166.314400pt;}
.y5f{bottom:167.370667pt;}
.y10f{bottom:170.982800pt;}
.y55{bottom:171.132800pt;}
.y3d{bottom:171.133067pt;}
.y9d{bottom:172.186800pt;}
.yd8{bottom:172.187733pt;}
.y147{bottom:172.338133pt;}
.y178{bottom:172.786800pt;}
.y1aa{bottom:180.911733pt;}
.y10e{bottom:185.429200pt;}
.y54{bottom:185.580133pt;}
.y3c{bottom:185.580400pt;}
.y9c{bottom:186.483200pt;}
.yd7{bottom:186.484133pt;}
.y146{bottom:186.634533pt;}
.y177{bottom:187.234133pt;}
.y1a9{bottom:195.059600pt;}
.y53{bottom:200.026533pt;}
.y3b{bottom:200.026800pt;}
.y9b{bottom:200.930533pt;}
.yd6{bottom:200.931467pt;}
.y145{bottom:201.081867pt;}
.y176{bottom:201.530533pt;}
.y52{bottom:214.474400pt;}
.y10d{bottom:214.925600pt;}
.y9a{bottom:215.376933pt;}
.yd5{bottom:215.377867pt;}
.y144{bottom:215.529200pt;}
.y175{bottom:215.977867pt;}
.y1a8{bottom:224.591867pt;}
.y51{bottom:228.959333pt;}
.y10c{bottom:229.411067pt;}
.y3a{bottom:229.561733pt;}
.y99{bottom:229.862933pt;}
.yd4{bottom:229.864267pt;}
.y143{bottom:230.013067pt;}
.y174{bottom:230.462800pt;}
.y1a7{bottom:239.189200pt;}
.y50{bottom:243.406667pt;}
.y10b{bottom:243.856933pt;}
.y39{bottom:244.008133pt;}
.y98{bottom:244.309333pt;}
.yd3{bottom:244.310667pt;}
.y142{bottom:244.462000pt;}
.y173{bottom:244.909200pt;}
.y1a6{bottom:253.486533pt;}
.y4f{bottom:257.703067pt;}
.y10a{bottom:258.154800pt;}
.y38{bottom:258.455467pt;}
.y97{bottom:258.755733pt;}
.yd2{bottom:258.757067pt;}
.y172{bottom:259.358133pt;}
.y1a5{bottom:267.932933pt;}
.y4e{bottom:272.150400pt;}
.y109{bottom:272.602133pt;}
.y37{bottom:272.751867pt;}
.y96{bottom:273.053067pt;}
.yd1{bottom:273.054400pt;}
.y171{bottom:273.804533pt;}
.y141{bottom:273.957333pt;}
.y4d{bottom:286.596800pt;}
.y108{bottom:287.049467pt;}
.y36{bottom:287.200800pt;}
.y95{bottom:287.500400pt;}
.yd0{bottom:287.501733pt;}
.y170{bottom:288.101867pt;}
.y140{bottom:288.254667pt;}
.y1a4{bottom:297.581867pt;}
.y4c{bottom:301.045733pt;}
.y107{bottom:301.495867pt;}
.y35{bottom:301.646667pt;}
.y94{bottom:301.948267pt;}
.ycf{bottom:301.949067pt;}
.y16f{bottom:302.548267pt;}
.y13f{bottom:302.702000pt;}
.y1a3{bottom:311.727200pt;}
.y4b{bottom:315.491600pt;}
.y106{bottom:315.943200pt;}
.y34{bottom:316.092533pt;}
.y93{bottom:316.394133pt;}
.y16e{bottom:316.997200pt;}
.y13e{bottom:317.148400pt;}
.y4a{bottom:329.939467pt;}
.y105{bottom:330.240533pt;}
.y33{bottom:330.541467pt;}
.y92{bottom:330.843067pt;}
.y16d{bottom:331.443600pt;}
.yce{bottom:331.445467pt;}
.y13d{bottom:331.595733pt;}
.y1a2{bottom:341.223067pt;}
.y49{bottom:344.235333pt;}
.y104{bottom:344.686933pt;}
.y32{bottom:344.987867pt;}
.y91{bottom:345.289467pt;}
.y16c{bottom:345.890000pt;}
.ycd{bottom:345.891867pt;}
.y13c{bottom:346.043067pt;}
.y1a1{bottom:355.822000pt;}
.y103{bottom:359.134267pt;}
.y31{bottom:359.285200pt;}
.y13b{bottom:360.340400pt;}
.ycc{bottom:360.340800pt;}
.y1a0{bottom:370.118400pt;}
.y102{bottom:373.581600pt;}
.y30{bottom:373.731600pt;}
.y48{bottom:373.731733pt;}
.y90{bottom:374.634800pt;}
.ycb{bottom:374.635600pt;}
.y13a{bottom:374.786800pt;}
.y16b{bottom:375.387867pt;}
.y101{bottom:388.028933pt;}
.y2f{bottom:388.180533pt;}
.y47{bottom:388.180667pt;}
.y8f{bottom:389.083733pt;}
.yca{bottom:389.084533pt;}
.y139{bottom:389.234133pt;}
.y16a{bottom:389.683733pt;}
.y19f{bottom:399.615733pt;}
.y100{bottom:402.475333pt;}
.y2e{bottom:402.626933pt;}
.y46{bottom:402.627067pt;}
.y8e{bottom:403.530133pt;}
.yc9{bottom:403.530933pt;}
.y138{bottom:403.681467pt;}
.y169{bottom:404.131600pt;}
.y19e{bottom:414.212133pt;}
.yff{bottom:416.772667pt;}
.y2d{bottom:417.072800pt;}
.y45{bottom:417.073467pt;}
.y8d{bottom:417.979067pt;}
.yc8{bottom:417.979333pt;}
.y137{bottom:418.127867pt;}
.y168{bottom:418.578933pt;}
.y8c{bottom:432.425467pt;}
.yc7{bottom:432.425733pt;}
.y167{bottom:433.025333pt;}
.y19d{bottom:443.407467pt;}
.yfe{bottom:446.269067pt;}
.y2c{bottom:446.269200pt;}
.y8b{bottom:446.721867pt;}
.yc6{bottom:446.722133pt;}
.y166{bottom:447.472667pt;}
.y136{bottom:447.625200pt;}
.y19c{bottom:457.855867pt;}
.yfd{bottom:460.716400pt;}
.y8a{bottom:461.169200pt;}
.yc5{bottom:461.169467pt;}
.y165{bottom:461.769067pt;}
.y135{bottom:461.921600pt;}
.y19b{bottom:472.327200pt;}
.y2b{bottom:474.586933pt;}
.yfc{bottom:475.187733pt;}
.y89{bottom:475.641600pt;}
.yc4{bottom:475.642400pt;}
.y164{bottom:476.242533pt;}
.y134{bottom:476.392933pt;}
.y19a{bottom:486.774533pt;}
.yfb{bottom:489.636667pt;}
.y88{bottom:490.088000pt;}
.yc3{bottom:490.088267pt;}
.y163{bottom:490.688933pt;}
.y133{bottom:490.841867pt;}
.y199{bottom:501.371867pt;}
.yfa{bottom:504.083067pt;}
.y2a{bottom:504.083333pt;}
.y87{bottom:504.535333pt;}
.yc2{bottom:504.536133pt;}
.y162{bottom:505.136267pt;}
.y132{bottom:505.287733pt;}
.y198{bottom:515.668267pt;}
.yf9{bottom:518.380400pt;}
.y29{bottom:518.380667pt;}
.y86{bottom:518.982667pt;}
.yc1{bottom:518.984000pt;}
.y161{bottom:519.583600pt;}
.y131{bottom:519.735067pt;}
.yf8{bottom:532.826800pt;}
.y28{bottom:532.827067pt;}
.y85{bottom:533.280000pt;}
.yc0{bottom:533.281333pt;}
.y160{bottom:534.030000pt;}
.y130{bottom:534.182400pt;}
.y197{bottom:545.015600pt;}
.yf7{bottom:547.274133pt;}
.y27{bottom:547.274400pt;}
.y84{bottom:547.726400pt;}
.y15f{bottom:548.327333pt;}
.y12f{bottom:548.479733pt;}
.y196{bottom:559.612933pt;}
.yf6{bottom:561.721467pt;}
.y26{bottom:561.722267pt;}
.y83{bottom:562.173733pt;}
.y15e{bottom:562.773733pt;}
.ybf{bottom:562.776133pt;}
.y12e{bottom:562.926133pt;}
.y195{bottom:573.908267pt;}
.yf5{bottom:576.167867pt;}
.y25{bottom:576.168133pt;}
.y82{bottom:576.621067pt;}
.y15d{bottom:577.221600pt;}
.ybe{bottom:577.223467pt;}
.y12d{bottom:577.372533pt;}
.y194{bottom:588.357200pt;}
.yf4{bottom:590.465200pt;}
.y24{bottom:590.466000pt;}
.y15c{bottom:591.668933pt;}
.ybd{bottom:591.670800pt;}
.y12c{bottom:591.820933pt;}
.yf3{bottom:604.911600pt;}
.y23{bottom:604.911867pt;}
.y15b{bottom:606.116800pt;}
.y81{bottom:606.117467pt;}
.ybc{bottom:606.118133pt;}
.y12b{bottom:606.267333pt;}
.y193{bottom:617.853600pt;}
.yf2{bottom:619.360533pt;}
.y22{bottom:619.360800pt;}
.y12a{bottom:620.564667pt;}
.y80{bottom:620.564800pt;}
.ybb{bottom:620.565467pt;}
.y192{bottom:632.299467pt;}
.yf1{bottom:633.806400pt;}
.y21{bottom:633.807200pt;}
.y7f{bottom:634.861200pt;}
.yba{bottom:634.861867pt;}
.y129{bottom:635.011067pt;}
.y15a{bottom:635.612667pt;}
.y191{bottom:646.747333pt;}
.y20{bottom:648.256133pt;}
.y7e{bottom:649.308533pt;}
.yb9{bottom:649.309200pt;}
.y128{bottom:649.458933pt;}
.y159{bottom:649.909067pt;}
.y1f{bottom:662.702533pt;}
.yf0{bottom:663.302800pt;}
.y7d{bottom:663.756400pt;}
.yb8{bottom:663.756533pt;}
.y127{bottom:663.906800pt;}
.y158{bottom:664.356933pt;}
.y190{bottom:676.093733pt;}
.y1e{bottom:676.998400pt;}
.yef{bottom:677.750133pt;}
.y7c{bottom:678.202267pt;}
.yb7{bottom:678.202933pt;}
.y126{bottom:678.352667pt;}
.y157{bottom:678.804800pt;}
.y1bd{bottom:688.136000pt;}
.y18f{bottom:690.691067pt;}
.y1d{bottom:691.446267pt;}
.yee{bottom:692.046533pt;}
.y7b{bottom:692.650133pt;}
.yb6{bottom:692.650267pt;}
.y125{bottom:692.801600pt;}
.y156{bottom:693.250667pt;}
.y18e{bottom:705.176000pt;}
.y1c{bottom:705.931200pt;}
.yed{bottom:706.532000pt;}
.y7a{bottom:706.985067pt;}
.y155{bottom:707.737067pt;}
.y1bc{bottom:717.519200pt;}
.y18d{bottom:719.473333pt;}
.y1b{bottom:720.378533pt;}
.yec{bottom:720.979333pt;}
.y79{bottom:721.431467pt;}
.y154{bottom:722.032400pt;}
.yb5{bottom:722.033067pt;}
.y124{bottom:722.184400pt;}
.y1bb{bottom:731.966533pt;}
.y18c{bottom:733.768667pt;}
.y1a{bottom:734.824933pt;}
.y78{bottom:735.878800pt;}
.y153{bottom:736.480800pt;}
.yb4{bottom:736.482000pt;}
.y123{bottom:736.631733pt;}
.y19{bottom:749.272267pt;}
.y77{bottom:750.326133pt;}
.yeb{bottom:750.476667pt;}
.y152{bottom:750.927200pt;}
.yb3{bottom:750.927867pt;}
.y122{bottom:751.079067pt;}
.y1ba{bottom:761.612933pt;}
.y18b{bottom:763.717600pt;}
.y76{bottom:764.772533pt;}
.yea{bottom:764.923067pt;}
.y151{bottom:765.376133pt;}
.yb2{bottom:765.376800pt;}
.y121{bottom:765.526400pt;}
.y18{bottom:778.618667pt;}
.y75{bottom:779.221467pt;}
.ye9{bottom:779.369467pt;}
.y150{bottom:779.822533pt;}
.yb1{bottom:779.823200pt;}
.y120{bottom:779.972800pt;}
.y1b9{bottom:791.109333pt;}
.y74{bottom:793.517867pt;}
.ye8{bottom:793.666800pt;}
.y18a{bottom:794.266000pt;}
.y14f{bottom:794.268933pt;}
.yb0{bottom:794.269600pt;}
.y11f{bottom:794.420133pt;}
.y73{bottom:807.965200pt;}
.ye7{bottom:808.114133pt;}
.y189{bottom:808.563333pt;}
.y14e{bottom:808.566267pt;}
.yaf{bottom:808.566933pt;}
.y17{bottom:808.717067pt;}
.y11e{bottom:808.717467pt;}
.y1b8{bottom:822.411600pt;}
.y188{bottom:823.009733pt;}
.y14d{bottom:823.012667pt;}
.yae{bottom:823.013333pt;}
.y11d{bottom:823.163867pt;}
.y187{bottom:837.458667pt;}
.y72{bottom:837.461067pt;}
.yad{bottom:837.462267pt;}
.ye6{bottom:837.610533pt;}
.y11c{bottom:837.611200pt;}
.y16{bottom:843.630133pt;}
.y186{bottom:851.905067pt;}
.y71{bottom:851.907467pt;}
.yac{bottom:851.908667pt;}
.ye5{bottom:852.057867pt;}
.y1b7{bottom:852.058933pt;}
.y11b{bottom:852.208533pt;}
.y185{bottom:866.354000pt;}
.y70{bottom:866.356400pt;}
.yab{bottom:866.357067pt;}
.ye4{bottom:866.504267pt;}
.y11a{bottom:866.655867pt;}
.y1b6{bottom:866.656267pt;}
.y184{bottom:880.800400pt;}
.y6f{bottom:880.802800pt;}
.yaa{bottom:880.803467pt;}
.ye3{bottom:880.953200pt;}
.y1b5{bottom:881.104133pt;}
.y15{bottom:890.435333pt;}
.y183{bottom:895.097733pt;}
.y6e{bottom:895.100133pt;}
.ya9{bottom:895.100800pt;}
.ye2{bottom:895.248533pt;}
.y1b4{bottom:895.248933pt;}
.y182{bottom:909.544133pt;}
.y6d{bottom:909.546533pt;}
.ya8{bottom:909.547200pt;}
.ye1{bottom:909.697467pt;}
.y119{bottom:910.448533pt;}
.y14{bottom:922.188000pt;}
.y181{bottom:923.991467pt;}
.y6c{bottom:923.993867pt;}
.ya7{bottom:923.994533pt;}
.ye0{bottom:924.143867pt;}
.y1b3{bottom:924.746267pt;}
.y118{bottom:924.895867pt;}
.y180{bottom:938.463867pt;}
.y6b{bottom:938.466267pt;}
.ya6{bottom:938.467467pt;}
.y117{bottom:939.218267pt;}
.y1b2{bottom:939.219200pt;}
.y17f{bottom:952.910267pt;}
.y6a{bottom:952.912667pt;}
.ya5{bottom:952.913333pt;}
.ydf{bottom:953.664667pt;}
.y1b1{bottom:953.665067pt;}
.y13{bottom:953.966667pt;}
.y17e{bottom:967.357600pt;}
.y69{bottom:967.360000pt;}
.ya4{bottom:967.360667pt;}
.yde{bottom:968.112000pt;}
.y116{bottom:968.263600pt;}
.y1b0{bottom:968.264000pt;}
.y17d{bottom:981.654933pt;}
.y68{bottom:981.657333pt;}
.ya3{bottom:981.658533pt;}
.yc{bottom:995.805333pt;}
.y3{bottom:998.513467pt;}
.ye{bottom:1001.522667pt;}
.y65{bottom:1009.348000pt;}
.y11{bottom:1010.702667pt;}
.y63{bottom:1021.385333pt;}
.y2{bottom:1030.417067pt;}
.y1{bottom:1045.918667pt;}
.h16{height:16.707333pt;}
.h3{height:16.850961pt;}
.h12{height:18.418779pt;}
.h7{height:23.025067pt;}
.h14{height:23.175067pt;}
.h9{height:28.171333pt;}
.h17{height:28.745333pt;}
.h11{height:32.868707pt;}
.h1{height:33.300775pt;}
.he{height:36.374692pt;}
.h6{height:36.399088pt;}
.hc{height:36.569733pt;}
.h2{height:36.911520pt;}
.hd{height:40.318737pt;}
.h18{height:40.345778pt;}
.ha{height:42.288000pt;}
.h4{height:43.854309pt;}
.hb{height:46.941781pt;}
.h15{height:48.036000pt;}
.h8{height:58.325932pt;}
.h10{height:80.199492pt;}
.hf{height:80.253281pt;}
.h5{height:637.545333pt;}
.h13{height:694.153333pt;}
.h0{height:1056.000000pt;}
.w6{width:45.148933pt;}
.w7{width:47.555200pt;}
.w2{width:50.716133pt;}
.w4{width:62.002667pt;}
.w5{width:468.457333pt;}
.w8{width:637.785333pt;}
.w1{width:747.494667pt;}
.w3{width:747.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:1.053333pt;}
.x7{left:6.774667pt;}
.xa{left:8.908800pt;}
.x6{left:11.588000pt;}
.x15{left:30.552000pt;}
.x4{left:33.260000pt;}
.x1{left:34.253600pt;}
.x8{left:53.124000pt;}
.x2{left:62.153733pt;}
.xc{left:82.513467pt;}
.x9{left:96.407333pt;}
.x1b{left:107.343867pt;}
.x11{left:111.251560pt;}
.xd{left:113.062400pt;}
.x12{left:131.419280pt;}
.xe{left:154.443600pt;}
.xb{left:180.329200pt;}
.x10{left:330.104893pt;}
.xf{left:380.693960pt;}
.x13{left:403.570613pt;}
.x1a{left:448.717307pt;}
.x19{left:503.972400pt;}
.x5{left:730.050533pt;}
.x3{left:731.030667pt;}
.x16{left:732.910533pt;}
.x18{left:734.192000pt;}
.x14{left:736.598667pt;}
}




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