
    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_d7bbbedca45d1ba01e7774a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_3b2f5bf891d688cb59d7c5bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_db0a8904cee2c9ca74a6bb96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929199;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_566fe7f8eb4aff05cf3c6208.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_d8bba0fd56cb5ffd07e6c170.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.808105;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_61f7a34f85b461e2c3ad1087.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v5{vertical-align:-21.978000px;}
.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;}
.ls6{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.009186px;}
.ls5{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.016200px;}
.ls9{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.019800px;}
.ls4{letter-spacing:0.024000px;}
.ls3{letter-spacing:0.030000px;}
.ls7{letter-spacing:0.513157px;}
.ls8{letter-spacing:0.612000px;}
.lsa{letter-spacing:17.790000px;}
.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;}
}
.ws7{word-spacing:-33.462000px;}
.ws8{word-spacing:-19.508346px;}
.wsa{word-spacing:-14.539800px;}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:37.265400px;}
._3{margin-left:-10.577400px;}
._1d{margin-left:-9.013800px;}
._1c{margin-left:-7.220400px;}
._11{margin-left:-6.075000px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.278900px;}
._7{width:1.551000px;}
._10{width:2.884200px;}
._b{width:3.951000px;}
._6{width:5.062200px;}
._d{width:6.745200px;}
._a{width:7.959600px;}
._8{width:9.946200px;}
._9{width:11.056800px;}
._4{width:12.138600px;}
._5{width:13.505400px;}
._1e{width:15.065700px;}
._c{width:16.163400px;}
._12{width:17.392800px;}
._15{width:18.421200px;}
._14{width:19.597200px;}
._19{width:20.817600px;}
._16{width:22.649700px;}
._e{width:23.753400px;}
._f{width:24.868800px;}
._13{width:26.591700px;}
._17{width:28.591200px;}
._18{width:29.713200px;}
._1a{width:30.716400px;}
._1b{width:32.343000px;}
._20{width:33.906600px;}
._21{width:35.665800px;}
._1f{width:37.474800px;}
._23{width:41.065200px;}
._24{width:42.147600px;}
._22{width:51.315000px;}
.fc1{color:rgb(0,0,0);}
.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:210.472500px;}
.y70{bottom:244.600500px;}
.y23{bottom:246.936000px;}
.y1b6{bottom:247.218000px;}
.y158{bottom:248.983500px;}
.y164{bottom:249.096000px;}
.yca{bottom:249.433500px;}
.y193{bottom:254.418000px;}
.yf0{bottom:254.835000px;}
.y48{bottom:260.559000px;}
.y6f{bottom:260.800500px;}
.y17a{bottom:261.318000px;}
.y22{bottom:263.136000px;}
.y157{bottom:265.183500px;}
.y1b5{bottom:265.968000px;}
.y192{bottom:272.718000px;}
.yef{bottom:272.835000px;}
.y6e{bottom:277.000500px;}
.y47{bottom:278.559000px;}
.y179{bottom:279.318000px;}
.y163{bottom:281.496000px;}
.y21{bottom:283.831500px;}
.y1b4{bottom:284.718000px;}
.y156{bottom:286.068000px;}
.yee{bottom:290.835000px;}
.y191{bottom:291.018000px;}
.y6d{bottom:293.200500px;}
.y46{bottom:296.559000px;}
.y178{bottom:297.318000px;}
.y20{bottom:300.031500px;}
.y155{bottom:304.818000px;}
.yed{bottom:308.835000px;}
.y6c{bottom:309.400500px;}
.y1b3{bottom:312.468000px;}
.yac{bottom:313.896000px;}
.y45{bottom:314.559000px;}
.y177{bottom:315.318000px;}
.y190{bottom:318.318000px;}
.y90{bottom:325.600500px;}
.yec{bottom:326.835000px;}
.y6b{bottom:330.096000px;}
.y102{bottom:331.330500px;}
.y44{bottom:332.559000px;}
.y154{bottom:332.568000px;}
.y176{bottom:333.318000px;}
.y18f{bottom:337.068000px;}
.y1b2{bottom:340.218000px;}
.y8f{bottom:341.800500px;}
.yeb{bottom:343.488000px;}
.y11f{bottom:344.835000px;}
.y160{bottom:346.296000px;}
.y43{bottom:350.559000px;}
.y153{bottom:351.168000px;}
.y175{bottom:351.318000px;}
.y6a{bottom:353.568000px;}
.y18e{bottom:355.818000px;}
.y8e{bottom:358.000500px;}
.y1b1{bottom:358.518000px;}
.yea{bottom:359.688000px;}
.y101{bottom:361.818000px;}
.y135{bottom:362.496000px;}
.y11e{bottom:362.835000px;}
.y174{bottom:369.318000px;}
.y1f{bottom:372.084000px;}
.y69{bottom:372.318000px;}
.y8d{bottom:374.200500px;}
.y18d{bottom:374.568000px;}
.ye9{bottom:375.888000px;}
.y1b0{bottom:376.818000px;}
.y42{bottom:377.559000px;}
.y152{bottom:378.768000px;}
.y100{bottom:380.568000px;}
.y11d{bottom:380.835000px;}
.y173{bottom:387.318000px;}
.yae{bottom:390.400500px;}
.y1e{bottom:390.834000px;}
.ye8{bottom:392.088000px;}
.y134{bottom:394.368000px;}
.y8c{bottom:394.896000px;}
.y1af{bottom:395.118000px;}
.y41{bottom:396.309000px;}
.y11c{bottom:398.835000px;}
.yff{bottom:399.318000px;}
.y68{bottom:400.068000px;}
.y18c{bottom:402.318000px;}
.y172{bottom:405.318000px;}
.y151{bottom:406.368000px;}
.y162{bottom:406.600500px;}
.ye7{bottom:408.288000px;}
.yad{bottom:411.096000px;}
.y133{bottom:412.518000px;}
.y11b{bottom:416.835000px;}
.yfe{bottom:418.068000px;}
.y1d{bottom:418.584000px;}
.y67{bottom:418.818000px;}
.y18b{bottom:421.068000px;}
.y1ae{bottom:422.418000px;}
.yab{bottom:422.800500px;}
.y171{bottom:423.318000px;}
.y40{bottom:424.059000px;}
.ye6{bottom:428.983500px;}
.y132{bottom:430.668000px;}
.y8b{bottom:432.468000px;}
.yc9{bottom:432.834000px;}
.y150{bottom:433.968000px;}
.y11a{bottom:434.835000px;}
.yfd{bottom:436.818000px;}
.y1c{bottom:437.334000px;}
.y66{bottom:437.568000px;}
.yaa{bottom:439.000500px;}
.ye5{bottom:440.688000px;}
.y1ad{bottom:440.718000px;}
.y170{bottom:441.318000px;}
.y18a{bottom:448.818000px;}
.y8a{bottom:451.368000px;}
.y14f{bottom:452.268000px;}
.yc8{bottom:452.334000px;}
.y119{bottom:452.835000px;}
.ya9{bottom:455.200500px;}
.yfc{bottom:455.568000px;}
.y1b{bottom:456.084000px;}
.y65{bottom:456.318000px;}
.ye4{bottom:456.888000px;}
.y131{bottom:457.818000px;}
.y16f{bottom:459.318000px;}
.y161{bottom:459.696000px;}
.y3f{bottom:465.309000px;}
.y189{bottom:467.568000px;}
.y1ac{bottom:468.018000px;}
.y89{bottom:470.268000px;}
.y14e{bottom:470.568000px;}
.y118{bottom:470.835000px;}
.ya8{bottom:471.400500px;}
.ye3{bottom:473.088000px;}
.yfb{bottom:474.318000px;}
.y1a{bottom:474.834000px;}
.y64{bottom:475.068000px;}
.y130{bottom:476.568000px;}
.y16e{bottom:477.318000px;}
.yc7{bottom:480.834000px;}
.y1ab{bottom:486.318000px;}
.ya7{bottom:487.600500px;}
.y14d{bottom:488.868000px;}
.y88{bottom:489.168000px;}
.ye2{bottom:489.288000px;}
.yfa{bottom:493.068000px;}
.y19{bottom:493.584000px;}
.y63{bottom:493.818000px;}
.y188{bottom:495.318000px;}
.yc6{bottom:500.334000px;}
.y16d{bottom:504.318000px;}
.ye1{bottom:505.488000px;}
.y14c{bottom:507.168000px;}
.ya6{bottom:508.296000px;}
.y3e{bottom:511.059000px;}
.yf9{bottom:511.818000px;}
.y18{bottom:512.334000px;}
.y62{bottom:512.568000px;}
.y12f{bottom:513.318000px;}
.y1aa{bottom:513.618000px;}
.y187{bottom:514.068000px;}
.y1c9{bottom:514.584000px;}
.y87{bottom:517.068000px;}
.yc5{bottom:519.834000px;}
.ye0{bottom:521.688000px;}
.y14b{bottom:525.468000px;}
.y3d{bottom:529.809000px;}
.y15f{bottom:529.818000px;}
.yf8{bottom:530.568000px;}
.y17{bottom:531.084000px;}
.y61{bottom:531.318000px;}
.y1a9{bottom:531.918000px;}
.y12e{bottom:532.068000px;}
.y186{bottom:532.818000px;}
.y1c8{bottom:533.334000px;}
.ydf{bottom:537.888000px;}
.yc4{bottom:539.334000px;}
.y117{bottom:540.168000px;}
.y14a{bottom:543.768000px;}
.y3c{bottom:548.559000px;}
.y15e{bottom:548.568000px;}
.y16{bottom:549.834000px;}
.y60{bottom:550.068000px;}
.y1a8{bottom:550.218000px;}
.yde{bottom:554.088000px;}
.y86{bottom:558.318000px;}
.yc3{bottom:558.834000px;}
.y116{bottom:559.818000px;}
.y185{bottom:560.568000px;}
.y1c7{bottom:561.084000px;}
.y149{bottom:562.068000px;}
.y3b{bottom:567.309000px;}
.y15d{bottom:567.318000px;}
.y1a7{bottom:568.518000px;}
.y15{bottom:568.584000px;}
.y5f{bottom:568.818000px;}
.ydd{bottom:570.288000px;}
.y85{bottom:577.068000px;}
.yc2{bottom:578.334000px;}
.y184{bottom:579.318000px;}
.y1c6{bottom:579.834000px;}
.y148{bottom:580.368000px;}
.y3a{bottom:586.059000px;}
.y15c{bottom:586.068000px;}
.ydc{bottom:586.488000px;}
.y14{bottom:587.334000px;}
.y12d{bottom:587.568000px;}
.y115{bottom:588.468000px;}
.ya5{bottom:591.018000px;}
.yf7{bottom:595.818000px;}
.y5e{bottom:596.568000px;}
.yc1{bottom:597.834000px;}
.y1c5{bottom:598.584000px;}
.y147{bottom:598.668000px;}
.ydb{bottom:602.688000px;}
.y39{bottom:604.809000px;}
.y15b{bottom:604.818000px;}
.y13{bottom:606.084000px;}
.y16c{bottom:606.318000px;}
.y183{bottom:607.068000px;}
.y114{bottom:608.118000px;}
.ya4{bottom:609.918000px;}
.y1a6{bottom:614.118000px;}
.y12c{bottom:615.318000px;}
.yc0{bottom:617.334000px;}
.yda{bottom:618.888000px;}
.y84{bottom:622.818000px;}
.y38{bottom:623.559000px;}
.yf6{bottom:623.568000px;}
.y12{bottom:624.834000px;}
.y16b{bottom:625.068000px;}
.y182{bottom:625.818000px;}
.y146{bottom:625.968000px;}
.y113{bottom:627.768000px;}
.ya3{bottom:628.818000px;}
.y1a5{bottom:632.418000px;}
.yd9{bottom:635.088000px;}
.y1c4{bottom:636.084000px;}
.ybf{bottom:636.834000px;}
.y5d{bottom:637.818000px;}
.y83{bottom:641.568000px;}
.y37{bottom:642.309000px;}
.yf5{bottom:642.318000px;}
.y12b{bottom:643.068000px;}
.y11{bottom:643.584000px;}
.y145{bottom:644.118000px;}
.y181{bottom:644.568000px;}
.ya2{bottom:647.718000px;}
.y1a4{bottom:650.718000px;}
.y16a{bottom:652.818000px;}
.y1c3{bottom:654.834000px;}
.yd8{bottom:655.783500px;}
.y5c{bottom:655.818000px;}
.ybe{bottom:656.334000px;}
.y112{bottom:656.418000px;}
.y82{bottom:660.318000px;}
.y36{bottom:661.059000px;}
.yf4{bottom:661.068000px;}
.y12a{bottom:661.818000px;}
.y10{bottom:662.334000px;}
.y180{bottom:663.318000px;}
.ya1{bottom:666.618000px;}
.y144{bottom:671.268000px;}
.y169{bottom:671.568000px;}
.y1c2{bottom:673.584000px;}
.y5b{bottom:673.818000px;}
.ybd{bottom:675.834000px;}
.y111{bottom:676.068000px;}
.y1a3{bottom:678.018000px;}
.y81{bottom:679.068000px;}
.y35{bottom:679.809000px;}
.yf3{bottom:679.818000px;}
.y129{bottom:680.568000px;}
.yf{bottom:681.084000px;}
.ya0{bottom:685.518000px;}
.yd7{bottom:688.818000px;}
.y143{bottom:689.418000px;}
.y17f{bottom:691.068000px;}
.y5a{bottom:691.818000px;}
.y1c1{bottom:692.334000px;}
.ybc{bottom:695.334000px;}
.y110{bottom:695.718000px;}
.y1a2{bottom:696.318000px;}
.y80{bottom:697.818000px;}
.y34{bottom:698.559000px;}
.yf2{bottom:698.568000px;}
.y128{bottom:699.318000px;}
.ye{bottom:699.834000px;}
.y9f{bottom:704.418000px;}
.yd6{bottom:707.568000px;}
.y59{bottom:709.818000px;}
.y1c0{bottom:711.084000px;}
.y1a1{bottom:714.618000px;}
.ybb{bottom:714.834000px;}
.y7f{bottom:716.568000px;}
.y33{bottom:717.309000px;}
.yf1{bottom:717.318000px;}
.y127{bottom:718.068000px;}
.yd{bottom:718.584000px;}
.y9e{bottom:723.318000px;}
.y10f{bottom:724.368000px;}
.yd5{bottom:726.318000px;}
.y58{bottom:727.818000px;}
.y1bf{bottom:729.834000px;}
.y7e{bottom:735.318000px;}
.y32{bottom:736.059000px;}
.y126{bottom:736.818000px;}
.yc{bottom:737.334000px;}
.y1a0{bottom:741.918000px;}
.y9d{bottom:742.218000px;}
.yba{bottom:743.334000px;}
.y142{bottom:743.718000px;}
.y10e{bottom:744.018000px;}
.yd4{bottom:745.068000px;}
.y57{bottom:745.818000px;}
.y1be{bottom:748.584000px;}
.y7d{bottom:754.068000px;}
.y31{bottom:754.809000px;}
.y17e{bottom:754.818000px;}
.y19f{bottom:760.218000px;}
.y9c{bottom:761.118000px;}
.y141{bottom:761.868000px;}
.yb9{bottom:762.834000px;}
.y15a{bottom:763.068000px;}
.y56{bottom:763.818000px;}
.y125{bottom:764.568000px;}
.y1bd{bottom:767.334000px;}
.y10d{bottom:772.668000px;}
.y7c{bottom:772.818000px;}
.y30{bottom:773.559000px;}
.y19e{bottom:778.518000px;}
.y9b{bottom:780.018000px;}
.y55{bottom:781.818000px;}
.yb8{bottom:782.334000px;}
.yd3{bottom:782.568000px;}
.y124{bottom:783.318000px;}
.y1bc{bottom:786.084000px;}
.y17d{bottom:790.818000px;}
.y7b{bottom:791.568000px;}
.y2f{bottom:792.309000px;}
.y10c{bottom:792.318000px;}
.y9a{bottom:798.918000px;}
.y54{bottom:799.818000px;}
.y159{bottom:800.568000px;}
.yb7{bottom:801.834000px;}
.y123{bottom:802.068000px;}
.y1bb{bottom:804.834000px;}
.y19d{bottom:805.818000px;}
.y140{bottom:807.168000px;}
.yb{bottom:808.584000px;}
.y17c{bottom:808.818000px;}
.yd2{bottom:810.318000px;}
.y168{bottom:811.068000px;}
.y10b{bottom:811.968000px;}
.y53{bottom:817.818000px;}
.y7a{bottom:819.318000px;}
.y2e{bottom:820.059000px;}
.y122{bottom:820.818000px;}
.yb6{bottom:821.334000px;}
.y1ba{bottom:823.584000px;}
.y19c{bottom:824.118000px;}
.y13f{bottom:825.318000px;}
.y17b{bottom:826.818000px;}
.yd1{bottom:829.068000px;}
.ya{bottom:831.084000px;}
.y99{bottom:836.718000px;}
.y79{bottom:838.068000px;}
.y2d{bottom:838.809000px;}
.y167{bottom:838.818000px;}
.y10a{bottom:840.618000px;}
.yb5{bottom:840.834000px;}
.y19b{bottom:842.418000px;}
.y13e{bottom:843.468000px;}
.y52{bottom:844.818000px;}
.yd0{bottom:847.818000px;}
.y121{bottom:848.568000px;}
.y1b9{bottom:851.334000px;}
.y98{bottom:855.618000px;}
.y78{bottom:856.818000px;}
.y2c{bottom:857.559000px;}
.y166{bottom:857.568000px;}
.y109{bottom:860.268000px;}
.yb4{bottom:860.334000px;}
.y13d{bottom:861.618000px;}
.y51{bottom:862.818000px;}
.ycf{bottom:866.568000px;}
.y19a{bottom:869.718000px;}
.y97{bottom:874.518000px;}
.y77{bottom:875.568000px;}
.y2b{bottom:876.309000px;}
.y13c{bottom:879.768000px;}
.yb3{bottom:879.834000px;}
.y50{bottom:880.818000px;}
.y1b8{bottom:883.584000px;}
.yce{bottom:885.318000px;}
.y199{bottom:888.018000px;}
.y108{bottom:888.918000px;}
.y96{bottom:893.418000px;}
.y76{bottom:894.318000px;}
.y2a{bottom:895.059000px;}
.y13b{bottom:897.918000px;}
.y4f{bottom:898.818000px;}
.yb2{bottom:899.334000px;}
.y1b7{bottom:902.334000px;}
.ycd{bottom:904.068000px;}
.y198{bottom:906.318000px;}
.y107{bottom:908.568000px;}
.y95{bottom:912.318000px;}
.y75{bottom:913.068000px;}
.y29{bottom:913.809000px;}
.y13a{bottom:916.068000px;}
.y4e{bottom:916.818000px;}
.yb1{bottom:918.834000px;}
.ycc{bottom:922.818000px;}
.y197{bottom:924.618000px;}
.y106{bottom:928.218000px;}
.y94{bottom:931.218000px;}
.y74{bottom:931.818000px;}
.y28{bottom:932.559000px;}
.y139{bottom:934.218000px;}
.y4d{bottom:934.818000px;}
.y120{bottom:941.568000px;}
.y5{bottom:945.075000px;}
.yb0{bottom:947.334000px;}
.y105{bottom:947.868000px;}
.y93{bottom:950.118000px;}
.y73{bottom:950.568000px;}
.y9{bottom:951.084000px;}
.y196{bottom:951.918000px;}
.y138{bottom:952.368000px;}
.y4c{bottom:952.818000px;}
.y27{bottom:960.309000px;}
.y165{bottom:960.318000px;}
.yaf{bottom:966.084000px;}
.y104{bottom:967.518000px;}
.y92{bottom:969.018000px;}
.y72{bottom:969.318000px;}
.y8{bottom:969.834000px;}
.y195{bottom:970.218000px;}
.y137{bottom:970.518000px;}
.y4b{bottom:970.818000px;}
.y4{bottom:976.519500px;}
.y26{bottom:979.059000px;}
.y103{bottom:987.168000px;}
.ycb{bottom:987.318000px;}
.y91{bottom:987.918000px;}
.y71{bottom:988.068000px;}
.y194{bottom:988.518000px;}
.y7{bottom:988.584000px;}
.y136{bottom:988.668000px;}
.y4a{bottom:988.818000px;}
.y3{bottom:992.719500px;}
.y25{bottom:1006.809000px;}
.y49{bottom:1006.818000px;}
.y6{bottom:1007.334000px;}
.y2{bottom:1008.919500px;}
.y24{bottom:1043.977500px;}
.ha{height:22.381734px;}
.hc{height:34.125000px;}
.h3{height:38.285156px;}
.hb{height:38.390625px;}
.h5{height:44.666016px;}
.h2{height:44.789062px;}
.hd{height:46.245117px;}
.h9{height:46.792969px;}
.h8{height:46.921875px;}
.h4{height:47.088023px;}
.hf{height:47.623737px;}
.he{height:49.333453px;}
.h6{height:55.453125px;}
.h7{height:58.303172px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:180.708000px;}
.xe{left:190.392000px;}
.xa{left:197.716500px;}
.x8{left:204.429000px;}
.xc{left:206.220000px;}
.xb{left:207.708000px;}
.xd{left:223.228500px;}
.x9{left:231.732000px;}
.x7{left:236.350500px;}
.xf{left:352.360500px;}
.x10{left:412.230000px;}
.x5{left:532.651500px;}
.x4{left:582.220500px;}
.x3{left:607.270500px;}
.x2{left:631.356000px;}
.x1{left:686.041500px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.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;}
.ls6{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.008165pt;}
.ls5{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.014400pt;}
.ls9{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.017600pt;}
.ls4{letter-spacing:0.021333pt;}
.ls3{letter-spacing:0.026667pt;}
.ls7{letter-spacing:0.456139pt;}
.ls8{letter-spacing:0.544000pt;}
.lsa{letter-spacing:15.813333pt;}
.ws7{word-spacing:-29.744000pt;}
.ws8{word-spacing:-17.340752pt;}
.wsa{word-spacing:-12.924267pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:33.124800pt;}
._3{margin-left:-9.402133pt;}
._1d{margin-left:-8.012267pt;}
._1c{margin-left:-6.418133pt;}
._11{margin-left:-5.400000pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-1.136800pt;}
._7{width:1.378667pt;}
._10{width:2.563733pt;}
._b{width:3.512000pt;}
._6{width:4.499733pt;}
._d{width:5.995733pt;}
._a{width:7.075200pt;}
._8{width:8.841067pt;}
._9{width:9.828267pt;}
._4{width:10.789867pt;}
._5{width:12.004800pt;}
._1e{width:13.391733pt;}
._c{width:14.367467pt;}
._12{width:15.460267pt;}
._15{width:16.374400pt;}
._14{width:17.419733pt;}
._19{width:18.504533pt;}
._16{width:20.133067pt;}
._e{width:21.114133pt;}
._f{width:22.105600pt;}
._13{width:23.637067pt;}
._17{width:25.414400pt;}
._18{width:26.411733pt;}
._1a{width:27.303467pt;}
._1b{width:28.749333pt;}
._20{width:30.139200pt;}
._21{width:31.702933pt;}
._1f{width:33.310933pt;}
._23{width:36.502400pt;}
._24{width:37.464533pt;}
._22{width:45.613333pt;}
.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:187.086667pt;}
.y70{bottom:217.422667pt;}
.y23{bottom:219.498667pt;}
.y1b6{bottom:219.749333pt;}
.y158{bottom:221.318667pt;}
.y164{bottom:221.418667pt;}
.yca{bottom:221.718667pt;}
.y193{bottom:226.149333pt;}
.yf0{bottom:226.520000pt;}
.y48{bottom:231.608000pt;}
.y6f{bottom:231.822667pt;}
.y17a{bottom:232.282667pt;}
.y22{bottom:233.898667pt;}
.y157{bottom:235.718667pt;}
.y1b5{bottom:236.416000pt;}
.y192{bottom:242.416000pt;}
.yef{bottom:242.520000pt;}
.y6e{bottom:246.222667pt;}
.y47{bottom:247.608000pt;}
.y179{bottom:248.282667pt;}
.y163{bottom:250.218667pt;}
.y21{bottom:252.294667pt;}
.y1b4{bottom:253.082667pt;}
.y156{bottom:254.282667pt;}
.yee{bottom:258.520000pt;}
.y191{bottom:258.682667pt;}
.y6d{bottom:260.622667pt;}
.y46{bottom:263.608000pt;}
.y178{bottom:264.282667pt;}
.y20{bottom:266.694667pt;}
.y155{bottom:270.949333pt;}
.yed{bottom:274.520000pt;}
.y6c{bottom:275.022667pt;}
.y1b3{bottom:277.749333pt;}
.yac{bottom:279.018667pt;}
.y45{bottom:279.608000pt;}
.y177{bottom:280.282667pt;}
.y190{bottom:282.949333pt;}
.y90{bottom:289.422667pt;}
.yec{bottom:290.520000pt;}
.y6b{bottom:293.418667pt;}
.y102{bottom:294.516000pt;}
.y44{bottom:295.608000pt;}
.y154{bottom:295.616000pt;}
.y176{bottom:296.282667pt;}
.y18f{bottom:299.616000pt;}
.y1b2{bottom:302.416000pt;}
.y8f{bottom:303.822667pt;}
.yeb{bottom:305.322667pt;}
.y11f{bottom:306.520000pt;}
.y160{bottom:307.818667pt;}
.y43{bottom:311.608000pt;}
.y153{bottom:312.149333pt;}
.y175{bottom:312.282667pt;}
.y6a{bottom:314.282667pt;}
.y18e{bottom:316.282667pt;}
.y8e{bottom:318.222667pt;}
.y1b1{bottom:318.682667pt;}
.yea{bottom:319.722667pt;}
.y101{bottom:321.616000pt;}
.y135{bottom:322.218667pt;}
.y11e{bottom:322.520000pt;}
.y174{bottom:328.282667pt;}
.y1f{bottom:330.741333pt;}
.y69{bottom:330.949333pt;}
.y8d{bottom:332.622667pt;}
.y18d{bottom:332.949333pt;}
.ye9{bottom:334.122667pt;}
.y1b0{bottom:334.949333pt;}
.y42{bottom:335.608000pt;}
.y152{bottom:336.682667pt;}
.y100{bottom:338.282667pt;}
.y11d{bottom:338.520000pt;}
.y173{bottom:344.282667pt;}
.yae{bottom:347.022667pt;}
.y1e{bottom:347.408000pt;}
.ye8{bottom:348.522667pt;}
.y134{bottom:350.549333pt;}
.y8c{bottom:351.018667pt;}
.y1af{bottom:351.216000pt;}
.y41{bottom:352.274667pt;}
.y11c{bottom:354.520000pt;}
.yff{bottom:354.949333pt;}
.y68{bottom:355.616000pt;}
.y18c{bottom:357.616000pt;}
.y172{bottom:360.282667pt;}
.y151{bottom:361.216000pt;}
.y162{bottom:361.422667pt;}
.ye7{bottom:362.922667pt;}
.yad{bottom:365.418667pt;}
.y133{bottom:366.682667pt;}
.y11b{bottom:370.520000pt;}
.yfe{bottom:371.616000pt;}
.y1d{bottom:372.074667pt;}
.y67{bottom:372.282667pt;}
.y18b{bottom:374.282667pt;}
.y1ae{bottom:375.482667pt;}
.yab{bottom:375.822667pt;}
.y171{bottom:376.282667pt;}
.y40{bottom:376.941333pt;}
.ye6{bottom:381.318667pt;}
.y132{bottom:382.816000pt;}
.y8b{bottom:384.416000pt;}
.yc9{bottom:384.741333pt;}
.y150{bottom:385.749333pt;}
.y11a{bottom:386.520000pt;}
.yfd{bottom:388.282667pt;}
.y1c{bottom:388.741333pt;}
.y66{bottom:388.949333pt;}
.yaa{bottom:390.222667pt;}
.ye5{bottom:391.722667pt;}
.y1ad{bottom:391.749333pt;}
.y170{bottom:392.282667pt;}
.y18a{bottom:398.949333pt;}
.y8a{bottom:401.216000pt;}
.y14f{bottom:402.016000pt;}
.yc8{bottom:402.074667pt;}
.y119{bottom:402.520000pt;}
.ya9{bottom:404.622667pt;}
.yfc{bottom:404.949333pt;}
.y1b{bottom:405.408000pt;}
.y65{bottom:405.616000pt;}
.ye4{bottom:406.122667pt;}
.y131{bottom:406.949333pt;}
.y16f{bottom:408.282667pt;}
.y161{bottom:408.618667pt;}
.y3f{bottom:413.608000pt;}
.y189{bottom:415.616000pt;}
.y1ac{bottom:416.016000pt;}
.y89{bottom:418.016000pt;}
.y14e{bottom:418.282667pt;}
.y118{bottom:418.520000pt;}
.ya8{bottom:419.022667pt;}
.ye3{bottom:420.522667pt;}
.yfb{bottom:421.616000pt;}
.y1a{bottom:422.074667pt;}
.y64{bottom:422.282667pt;}
.y130{bottom:423.616000pt;}
.y16e{bottom:424.282667pt;}
.yc7{bottom:427.408000pt;}
.y1ab{bottom:432.282667pt;}
.ya7{bottom:433.422667pt;}
.y14d{bottom:434.549333pt;}
.y88{bottom:434.816000pt;}
.ye2{bottom:434.922667pt;}
.yfa{bottom:438.282667pt;}
.y19{bottom:438.741333pt;}
.y63{bottom:438.949333pt;}
.y188{bottom:440.282667pt;}
.yc6{bottom:444.741333pt;}
.y16d{bottom:448.282667pt;}
.ye1{bottom:449.322667pt;}
.y14c{bottom:450.816000pt;}
.ya6{bottom:451.818667pt;}
.y3e{bottom:454.274667pt;}
.yf9{bottom:454.949333pt;}
.y18{bottom:455.408000pt;}
.y62{bottom:455.616000pt;}
.y12f{bottom:456.282667pt;}
.y1aa{bottom:456.549333pt;}
.y187{bottom:456.949333pt;}
.y1c9{bottom:457.408000pt;}
.y87{bottom:459.616000pt;}
.yc5{bottom:462.074667pt;}
.ye0{bottom:463.722667pt;}
.y14b{bottom:467.082667pt;}
.y3d{bottom:470.941333pt;}
.y15f{bottom:470.949333pt;}
.yf8{bottom:471.616000pt;}
.y17{bottom:472.074667pt;}
.y61{bottom:472.282667pt;}
.y1a9{bottom:472.816000pt;}
.y12e{bottom:472.949333pt;}
.y186{bottom:473.616000pt;}
.y1c8{bottom:474.074667pt;}
.ydf{bottom:478.122667pt;}
.yc4{bottom:479.408000pt;}
.y117{bottom:480.149333pt;}
.y14a{bottom:483.349333pt;}
.y3c{bottom:487.608000pt;}
.y15e{bottom:487.616000pt;}
.y16{bottom:488.741333pt;}
.y60{bottom:488.949333pt;}
.y1a8{bottom:489.082667pt;}
.yde{bottom:492.522667pt;}
.y86{bottom:496.282667pt;}
.yc3{bottom:496.741333pt;}
.y116{bottom:497.616000pt;}
.y185{bottom:498.282667pt;}
.y1c7{bottom:498.741333pt;}
.y149{bottom:499.616000pt;}
.y3b{bottom:504.274667pt;}
.y15d{bottom:504.282667pt;}
.y1a7{bottom:505.349333pt;}
.y15{bottom:505.408000pt;}
.y5f{bottom:505.616000pt;}
.ydd{bottom:506.922667pt;}
.y85{bottom:512.949333pt;}
.yc2{bottom:514.074667pt;}
.y184{bottom:514.949333pt;}
.y1c6{bottom:515.408000pt;}
.y148{bottom:515.882667pt;}
.y3a{bottom:520.941333pt;}
.y15c{bottom:520.949333pt;}
.ydc{bottom:521.322667pt;}
.y14{bottom:522.074667pt;}
.y12d{bottom:522.282667pt;}
.y115{bottom:523.082667pt;}
.ya5{bottom:525.349333pt;}
.yf7{bottom:529.616000pt;}
.y5e{bottom:530.282667pt;}
.yc1{bottom:531.408000pt;}
.y1c5{bottom:532.074667pt;}
.y147{bottom:532.149333pt;}
.ydb{bottom:535.722667pt;}
.y39{bottom:537.608000pt;}
.y15b{bottom:537.616000pt;}
.y13{bottom:538.741333pt;}
.y16c{bottom:538.949333pt;}
.y183{bottom:539.616000pt;}
.y114{bottom:540.549333pt;}
.ya4{bottom:542.149333pt;}
.y1a6{bottom:545.882667pt;}
.y12c{bottom:546.949333pt;}
.yc0{bottom:548.741333pt;}
.yda{bottom:550.122667pt;}
.y84{bottom:553.616000pt;}
.y38{bottom:554.274667pt;}
.yf6{bottom:554.282667pt;}
.y12{bottom:555.408000pt;}
.y16b{bottom:555.616000pt;}
.y182{bottom:556.282667pt;}
.y146{bottom:556.416000pt;}
.y113{bottom:558.016000pt;}
.ya3{bottom:558.949333pt;}
.y1a5{bottom:562.149333pt;}
.yd9{bottom:564.522667pt;}
.y1c4{bottom:565.408000pt;}
.ybf{bottom:566.074667pt;}
.y5d{bottom:566.949333pt;}
.y83{bottom:570.282667pt;}
.y37{bottom:570.941333pt;}
.yf5{bottom:570.949333pt;}
.y12b{bottom:571.616000pt;}
.y11{bottom:572.074667pt;}
.y145{bottom:572.549333pt;}
.y181{bottom:572.949333pt;}
.ya2{bottom:575.749333pt;}
.y1a4{bottom:578.416000pt;}
.y16a{bottom:580.282667pt;}
.y1c3{bottom:582.074667pt;}
.yd8{bottom:582.918667pt;}
.y5c{bottom:582.949333pt;}
.ybe{bottom:583.408000pt;}
.y112{bottom:583.482667pt;}
.y82{bottom:586.949333pt;}
.y36{bottom:587.608000pt;}
.yf4{bottom:587.616000pt;}
.y12a{bottom:588.282667pt;}
.y10{bottom:588.741333pt;}
.y180{bottom:589.616000pt;}
.ya1{bottom:592.549333pt;}
.y144{bottom:596.682667pt;}
.y169{bottom:596.949333pt;}
.y1c2{bottom:598.741333pt;}
.y5b{bottom:598.949333pt;}
.ybd{bottom:600.741333pt;}
.y111{bottom:600.949333pt;}
.y1a3{bottom:602.682667pt;}
.y81{bottom:603.616000pt;}
.y35{bottom:604.274667pt;}
.yf3{bottom:604.282667pt;}
.y129{bottom:604.949333pt;}
.yf{bottom:605.408000pt;}
.ya0{bottom:609.349333pt;}
.yd7{bottom:612.282667pt;}
.y143{bottom:612.816000pt;}
.y17f{bottom:614.282667pt;}
.y5a{bottom:614.949333pt;}
.y1c1{bottom:615.408000pt;}
.ybc{bottom:618.074667pt;}
.y110{bottom:618.416000pt;}
.y1a2{bottom:618.949333pt;}
.y80{bottom:620.282667pt;}
.y34{bottom:620.941333pt;}
.yf2{bottom:620.949333pt;}
.y128{bottom:621.616000pt;}
.ye{bottom:622.074667pt;}
.y9f{bottom:626.149333pt;}
.yd6{bottom:628.949333pt;}
.y59{bottom:630.949333pt;}
.y1c0{bottom:632.074667pt;}
.y1a1{bottom:635.216000pt;}
.ybb{bottom:635.408000pt;}
.y7f{bottom:636.949333pt;}
.y33{bottom:637.608000pt;}
.yf1{bottom:637.616000pt;}
.y127{bottom:638.282667pt;}
.yd{bottom:638.741333pt;}
.y9e{bottom:642.949333pt;}
.y10f{bottom:643.882667pt;}
.yd5{bottom:645.616000pt;}
.y58{bottom:646.949333pt;}
.y1bf{bottom:648.741333pt;}
.y7e{bottom:653.616000pt;}
.y32{bottom:654.274667pt;}
.y126{bottom:654.949333pt;}
.yc{bottom:655.408000pt;}
.y1a0{bottom:659.482667pt;}
.y9d{bottom:659.749333pt;}
.yba{bottom:660.741333pt;}
.y142{bottom:661.082667pt;}
.y10e{bottom:661.349333pt;}
.yd4{bottom:662.282667pt;}
.y57{bottom:662.949333pt;}
.y1be{bottom:665.408000pt;}
.y7d{bottom:670.282667pt;}
.y31{bottom:670.941333pt;}
.y17e{bottom:670.949333pt;}
.y19f{bottom:675.749333pt;}
.y9c{bottom:676.549333pt;}
.y141{bottom:677.216000pt;}
.yb9{bottom:678.074667pt;}
.y15a{bottom:678.282667pt;}
.y56{bottom:678.949333pt;}
.y125{bottom:679.616000pt;}
.y1bd{bottom:682.074667pt;}
.y10d{bottom:686.816000pt;}
.y7c{bottom:686.949333pt;}
.y30{bottom:687.608000pt;}
.y19e{bottom:692.016000pt;}
.y9b{bottom:693.349333pt;}
.y55{bottom:694.949333pt;}
.yb8{bottom:695.408000pt;}
.yd3{bottom:695.616000pt;}
.y124{bottom:696.282667pt;}
.y1bc{bottom:698.741333pt;}
.y17d{bottom:702.949333pt;}
.y7b{bottom:703.616000pt;}
.y2f{bottom:704.274667pt;}
.y10c{bottom:704.282667pt;}
.y9a{bottom:710.149333pt;}
.y54{bottom:710.949333pt;}
.y159{bottom:711.616000pt;}
.yb7{bottom:712.741333pt;}
.y123{bottom:712.949333pt;}
.y1bb{bottom:715.408000pt;}
.y19d{bottom:716.282667pt;}
.y140{bottom:717.482667pt;}
.yb{bottom:718.741333pt;}
.y17c{bottom:718.949333pt;}
.yd2{bottom:720.282667pt;}
.y168{bottom:720.949333pt;}
.y10b{bottom:721.749333pt;}
.y53{bottom:726.949333pt;}
.y7a{bottom:728.282667pt;}
.y2e{bottom:728.941333pt;}
.y122{bottom:729.616000pt;}
.yb6{bottom:730.074667pt;}
.y1ba{bottom:732.074667pt;}
.y19c{bottom:732.549333pt;}
.y13f{bottom:733.616000pt;}
.y17b{bottom:734.949333pt;}
.yd1{bottom:736.949333pt;}
.ya{bottom:738.741333pt;}
.y99{bottom:743.749333pt;}
.y79{bottom:744.949333pt;}
.y2d{bottom:745.608000pt;}
.y167{bottom:745.616000pt;}
.y10a{bottom:747.216000pt;}
.yb5{bottom:747.408000pt;}
.y19b{bottom:748.816000pt;}
.y13e{bottom:749.749333pt;}
.y52{bottom:750.949333pt;}
.yd0{bottom:753.616000pt;}
.y121{bottom:754.282667pt;}
.y1b9{bottom:756.741333pt;}
.y98{bottom:760.549333pt;}
.y78{bottom:761.616000pt;}
.y2c{bottom:762.274667pt;}
.y166{bottom:762.282667pt;}
.y109{bottom:764.682667pt;}
.yb4{bottom:764.741333pt;}
.y13d{bottom:765.882667pt;}
.y51{bottom:766.949333pt;}
.ycf{bottom:770.282667pt;}
.y19a{bottom:773.082667pt;}
.y97{bottom:777.349333pt;}
.y77{bottom:778.282667pt;}
.y2b{bottom:778.941333pt;}
.y13c{bottom:782.016000pt;}
.yb3{bottom:782.074667pt;}
.y50{bottom:782.949333pt;}
.y1b8{bottom:785.408000pt;}
.yce{bottom:786.949333pt;}
.y199{bottom:789.349333pt;}
.y108{bottom:790.149333pt;}
.y96{bottom:794.149333pt;}
.y76{bottom:794.949333pt;}
.y2a{bottom:795.608000pt;}
.y13b{bottom:798.149333pt;}
.y4f{bottom:798.949333pt;}
.yb2{bottom:799.408000pt;}
.y1b7{bottom:802.074667pt;}
.ycd{bottom:803.616000pt;}
.y198{bottom:805.616000pt;}
.y107{bottom:807.616000pt;}
.y95{bottom:810.949333pt;}
.y75{bottom:811.616000pt;}
.y29{bottom:812.274667pt;}
.y13a{bottom:814.282667pt;}
.y4e{bottom:814.949333pt;}
.yb1{bottom:816.741333pt;}
.ycc{bottom:820.282667pt;}
.y197{bottom:821.882667pt;}
.y106{bottom:825.082667pt;}
.y94{bottom:827.749333pt;}
.y74{bottom:828.282667pt;}
.y28{bottom:828.941333pt;}
.y139{bottom:830.416000pt;}
.y4d{bottom:830.949333pt;}
.y120{bottom:836.949333pt;}
.y5{bottom:840.066667pt;}
.yb0{bottom:842.074667pt;}
.y105{bottom:842.549333pt;}
.y93{bottom:844.549333pt;}
.y73{bottom:844.949333pt;}
.y9{bottom:845.408000pt;}
.y196{bottom:846.149333pt;}
.y138{bottom:846.549333pt;}
.y4c{bottom:846.949333pt;}
.y27{bottom:853.608000pt;}
.y165{bottom:853.616000pt;}
.yaf{bottom:858.741333pt;}
.y104{bottom:860.016000pt;}
.y92{bottom:861.349333pt;}
.y72{bottom:861.616000pt;}
.y8{bottom:862.074667pt;}
.y195{bottom:862.416000pt;}
.y137{bottom:862.682667pt;}
.y4b{bottom:862.949333pt;}
.y4{bottom:868.017333pt;}
.y26{bottom:870.274667pt;}
.y103{bottom:877.482667pt;}
.ycb{bottom:877.616000pt;}
.y91{bottom:878.149333pt;}
.y71{bottom:878.282667pt;}
.y194{bottom:878.682667pt;}
.y7{bottom:878.741333pt;}
.y136{bottom:878.816000pt;}
.y4a{bottom:878.949333pt;}
.y3{bottom:882.417333pt;}
.y25{bottom:894.941333pt;}
.y49{bottom:894.949333pt;}
.y6{bottom:895.408000pt;}
.y2{bottom:896.817333pt;}
.y24{bottom:927.980000pt;}
.ha{height:19.894875pt;}
.hc{height:30.333333pt;}
.h3{height:34.031250pt;}
.hb{height:34.125000pt;}
.h5{height:39.703125pt;}
.h2{height:39.812500pt;}
.hd{height:41.106771pt;}
.h9{height:41.593750pt;}
.h8{height:41.708333pt;}
.h4{height:41.856021pt;}
.hf{height:42.332211pt;}
.he{height:43.851958pt;}
.h6{height:49.291667pt;}
.h7{height:51.825042pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:160.629333pt;}
.xe{left:169.237333pt;}
.xa{left:175.748000pt;}
.x8{left:181.714667pt;}
.xc{left:183.306667pt;}
.xb{left:184.629333pt;}
.xd{left:198.425333pt;}
.x9{left:205.984000pt;}
.x7{left:210.089333pt;}
.xf{left:313.209333pt;}
.x10{left:366.426667pt;}
.x5{left:473.468000pt;}
.x4{left:517.529333pt;}
.x3{left:539.796000pt;}
.x2{left:561.205333pt;}
.x1{left:609.814667pt;}
}




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