
    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_f079404d43a126140a0ba67e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_0e11689c36f90ef20958a02a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_73f3704a0e1de46f1d5f50fb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_3f9e90d4db7908d7d85d0e9e.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_5a6035e5c8cffaae1e3660cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_6d7ed017d74ed0f2fbaf8b44.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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);}
.v3{vertical-align:-30.960022px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:30.960022px;}
.v5{vertical-align:37.439897px;}
.v4{vertical-align:46.800041px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053709px;}
.ls1{letter-spacing:0.094301px;}
.ls2{letter-spacing:0.358830px;}
.ls5{letter-spacing:33.119100px;}
.ls4{letter-spacing:775.439059px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws3{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws4{word-spacing:-23.760900px;}
.ws6{word-spacing:-19.800788px;}
.ws10{word-spacing:-15.894272px;}
.ws9{word-spacing:-15.840563px;}
.ws5{word-spacing:-13.860563px;}
.ws2{word-spacing:0.000000px;}
.wse{word-spacing:72.233179px;}
.wsd{word-spacing:79.012726px;}
.wsb{word-spacing:92.952421px;}
.wsa{word-spacing:93.586043px;}
.wsf{word-spacing:94.219666px;}
.ws8{word-spacing:129.180338px;}
.wsc{word-spacing:147.594987px;}
.ws7{word-spacing:382.217078px;}
._35{margin-left:-23.646576px;}
._19{margin-left:-19.515864px;}
._1d{margin-left:-18.230567px;}
._1e{margin-left:-15.031720px;}
._15{margin-left:-13.959152px;}
._7{margin-left:-12.177577px;}
._17{margin-left:-10.135630px;}
._4{margin-left:-8.898194px;}
._2{margin-left:-7.436441px;}
._d{margin-left:-5.883160px;}
._1{margin-left:-4.861811px;}
._12{margin-left:-3.856049px;}
._c{margin-left:-2.836477px;}
._3{margin-left:-1.520522px;}
._0{width:1.048595px;}
._9{width:2.189980px;}
._5{width:3.231513px;}
._6{width:4.656990px;}
._e{width:6.554107px;}
._16{width:7.595801px;}
._13{width:9.513996px;}
._14{width:10.741775px;}
._a{width:11.865950px;}
._8{width:13.116331px;}
._b{width:14.882814px;}
._f{width:16.009509px;}
._11{width:17.161015px;}
._18{width:18.254277px;}
._1f{width:25.501347px;}
._33{width:32.399150px;}
._25{width:65.305809px;}
._1b{width:69.630022px;}
._2d{width:109.426606px;}
._32{width:114.495586px;}
._2f{width:129.068903px;}
._2c{width:141.107731px;}
._31{width:144.909466px;}
._2a{width:146.177206px;}
._2e{width:151.246186px;}
._30{width:157.581916px;}
._28{width:162.017273px;}
._1a{width:167.306460px;}
._26{width:173.422478px;}
._2b{width:177.224213px;}
._27{width:192.431153px;}
._23{width:225.626048px;}
._29{width:227.914013px;}
._20{width:274.992165px;}
._24{width:280.694768px;}
._22{width:320.311076px;}
._1c{width:506.989782px;}
._21{width:558.855045px;}
._34{width:857.255859px;}
._36{width:879.721228px;}
._37{width:1671.705573px;}
._10{width:1695.568988px;}
._38{width:1881.861370px;}
.fc2{color:rgb(41,40,34);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1e{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y35{bottom:41.040115px;}
.y60{bottom:97.920043px;}
.ye4{bottom:104.220016px;}
.yd5{bottom:104.760132px;}
.y175{bottom:112.500068px;}
.yd8{bottom:121.320099px;}
.y42{bottom:121.680039px;}
.y34{bottom:121.860077px;}
.yfa{bottom:122.940033px;}
.y18e{bottom:125.280052px;}
.y47{bottom:126.360077px;}
.ye3{bottom:131.940033px;}
.yd4{bottom:133.200096px;}
.y5f{bottom:145.440033px;}
.yd7{bottom:149.940033px;}
.y6d{bottom:150.300041px;}
.y18d{bottom:153.900055px;}
.yd3{bottom:161.820099px;}
.y163{bottom:164.160049px;}
.y174{bottom:167.940033px;}
.y6b{bottom:178.560036px;}
.y46{bottom:178.740074px;}
.y164{bottom:178.920043px;}
.yf9{bottom:180.000068px;}
.y18c{bottom:182.340088px;}
.ye2{bottom:187.560036px;}
.yd2{bottom:190.260064px;}
.y41{bottom:192.960091px;}
.y160{bottom:193.140060px;}
.yb3{bottom:195.120072px;}
.y173{bottom:195.660049px;}
.y45{bottom:202.500068px;}
.y6a{bottom:207.000068px;}
.y6c{bottom:207.360077px;}
.y1c{bottom:207.360150px;}
.y15f{bottom:212.220085px;}
.ye1{bottom:215.280052px;}
.y40{bottom:216.720085px;}
.yb2{bottom:218.880066px;}
.y162{bottom:221.760064px;}
.y15e{bottom:231.300041px;}
.y69{bottom:235.620072px;}
.y33{bottom:235.980079px;}
.y1b{bottom:235.980150px;}
.yf8{bottom:237.060036px;}
.y18b{bottom:239.400055px;}
.y159{bottom:240.840088px;}
.yb1{bottom:242.640060px;}
.ye0{bottom:243.000068px;}
.y15d{bottom:250.200096px;}
.y121{bottom:255.780052px;}
.y158{bottom:259.740074px;}
.y5e{bottom:264.060036px;}
.y32{bottom:264.420043px;}
.yf7{bottom:265.680039px;}
.yb0{bottom:266.400055px;}
.y18a{bottom:268.020058px;}
.y15c{bottom:269.280052px;}
.ydf{bottom:270.720085px;}
.y120{bottom:274.680039px;}
.yd1{bottom:275.940033px;}
.yaa{bottom:278.280052px;}
.ya8{bottom:278.460091px;}
.y161{bottom:278.820099px;}
.y15b{bottom:288.360077px;}
.yaf{bottom:290.160049px;}
.y5d{bottom:292.680039px;}
.y44{bottom:293.040047px;}
.y1a{bottom:293.040150px;}
.y11d{bottom:293.760064px;}
.yf6{bottom:294.120072px;}
.y189{bottom:296.460091px;}
.yde{bottom:298.440033px;}
.ya9{bottom:302.040047px;}
.ya7{bottom:302.220085px;}
.y11b{bottom:303.300041px;}
.yd0{bottom:304.380066px;}
.y172{bottom:306.720085px;}
.y15a{bottom:307.260064px;}
.y118{bottom:312.840088px;}
.yae{bottom:313.920043px;}
.y5c{bottom:321.120072px;}
.y31{bottom:321.480079px;}
.y19{bottom:321.480150px;}
.y11a{bottom:322.380066px;}
.ydd{bottom:326.160049px;}
.y117{bottom:331.740074px;}
.ycf{bottom:333.000068px;}
.y153{bottom:334.260064px;}
.y171{bottom:334.440033px;}
.yad{bottom:337.860077px;}
.y119{bottom:341.280052px;}
.y157{bottom:343.620072px;}
.y194{bottom:349.560036px;}
.y5b{bottom:349.740074px;}
.y3f{bottom:350.100083px;}
.y11c{bottom:350.820099px;}
.yf5{bottom:351.180039px;}
.y152{bottom:353.160049px;}
.y188{bottom:353.520058px;}
.yac{bottom:361.620072px;}
.y156{bottom:362.700096px;}
.y11f{bottom:369.900055px;}
.y151{bottom:372.240074px;}
.y5a{bottom:378.180039px;}
.y18{bottom:378.540000px;}
.y30{bottom:378.540047px;}
.ydc{bottom:381.780052px;}
.y187{bottom:382.140060px;}
.yab{bottom:385.380066px;}
.y11e{bottom:388.800041px;}
.y170{bottom:389.880066px;}
.yce{bottom:390.060036px;}
.y150{bottom:391.320099px;}
.y14b{bottom:400.680039px;}
.y68{bottom:406.800041px;}
.y17{bottom:407.160000px;}
.y2f{bottom:407.160049px;}
.yf4{bottom:408.240074px;}
.ydb{bottom:409.500068px;}
.y14f{bottom:410.220085px;}
.y186{bottom:410.580093px;}
.ya1{bottom:414.900055px;}
.y115{bottom:415.800041px;}
.y16f{bottom:417.780052px;}
.y14a{bottom:419.760064px;}
.y114{bottom:434.700096px;}
.y59{bottom:435.240074px;}
.y16{bottom:435.600000px;}
.y3e{bottom:435.600083px;}
.yda{bottom:437.220085px;}
.ya0{bottom:438.660049px;}
.y14c{bottom:438.840088px;}
.y16e{bottom:445.500068px;}
.ycd{bottom:447.120072px;}
.y14e{bottom:448.380066px;}
.ya6{bottom:450.540047px;}
.y113{bottom:453.780052px;}
.y155{bottom:457.740074px;}
.y9d{bottom:462.420043px;}
.y9a{bottom:462.600083px;}
.y193{bottom:463.680039px;}
.y58{bottom:463.860077px;}
.y15{bottom:464.220000px;}
.y2e{bottom:464.220085px;}
.yd9{bottom:464.940033px;}
.y14d{bottom:467.280052px;}
.y185{bottom:467.640060px;}
.y112{bottom:472.860077px;}
.y16d{bottom:473.220085px;}
.ya4{bottom:474.300041px;}
.ycc{bottom:475.560036px;}
.y154{bottom:476.820099px;}
.y9c{bottom:486.180039px;}
.y99{bottom:486.360077px;}
.y111{bottom:491.760064px;}
.y67{bottom:492.300041px;}
.y14{bottom:492.660000px;}
.y2d{bottom:492.660049px;}
.yf3{bottom:493.920043px;}
.y184{bottom:496.260064px;}
.ya3{bottom:498.060036px;}
.y16c{bottom:500.940033px;}
.ycb{bottom:504.180039px;}
.y9b{bottom:509.940033px;}
.y98{bottom:510.120072px;}
.y10b{bottom:510.840088px;}
.y149{bottom:513.180039px;}
.y116{bottom:520.380066px;}
.y66{bottom:520.920043px;}
.y13{bottom:521.280000px;}
.y3d{bottom:521.280052px;}
.ya2{bottom:521.820099px;}
.y16b{bottom:528.660049px;}
.y10a{bottom:529.920043px;}
.y148{bottom:532.260064px;}
.yca{bottom:532.620072px;}
.y97{bottom:533.880066px;}
.ya5{bottom:545.760064px;}
.y110{bottom:548.820099px;}
.y57{bottom:549.360077px;}
.y12{bottom:549.720000px;}
.y3c{bottom:549.720085px;}
.yf2{bottom:550.980079px;}
.y147{bottom:551.160049px;}
.y183{bottom:553.320099px;}
.y16a{bottom:556.380066px;}
.y9f{bottom:557.640060px;}
.y141{bottom:560.700096px;}
.yc9{bottom:561.240074px;}
.y10f{bottom:567.900055px;}
.y146{bottom:570.240074px;}
.y192{bottom:577.800041px;}
.y56{bottom:577.980079px;}
.y11{bottom:578.340000px;}
.y2c{bottom:578.340088px;}
.y140{bottom:579.780052px;}
.y9e{bottom:581.400055px;}
.y182{bottom:581.760064px;}
.y169{bottom:584.100083px;}
.y10e{bottom:586.980079px;}
.y13c{bottom:589.320099px;}
.yc8{bottom:589.680039px;}
.y13f{bottom:598.860077px;}
.y10d{bottom:605.880066px;}
.y55{bottom:606.420043px;}
.y10{bottom:606.780000px;}
.y2b{bottom:606.780052px;}
.yf1{bottom:608.040047px;}
.y13b{bottom:608.220085px;}
.y8f{bottom:610.920043px;}
.y168{bottom:612.000068px;}
.y13e{bottom:617.760064px;}
.yc7{bottom:618.300041px;}
.y10c{bottom:624.960091px;}
.y145{bottom:627.300041px;}
.y8d{bottom:634.680039px;}
.y54{bottom:635.040047px;}
.y2a{bottom:635.400055px;}
.yf0{bottom:636.480079px;}
.y13d{bottom:636.840088px;}
.y181{bottom:638.820099px;}
.y144{bottom:646.380066px;}
.y96{bottom:646.560036px;}
.yc6{bottom:646.740074px;}
.y109{bottom:651.780052px;}
.y8c{bottom:658.440033px;}
.y65{bottom:663.480079px;}
.y29{bottom:663.840088px;}
.yef{bottom:665.100083px;}
.y143{bottom:665.280052px;}
.y167{bottom:667.440033px;}
.y95{bottom:670.320099px;}
.y108{bottom:670.860077px;}
.y8b{bottom:682.200096px;}
.y142{bottom:684.360077px;}
.y107{bottom:689.760064px;}
.y191{bottom:691.920078px;}
.y64{bottom:692.100083px;}
.y28{bottom:692.460056px;}
.yee{bottom:693.540081px;}
.y94{bottom:694.080059px;}
.y83{bottom:694.260064px;}
.y166{bottom:695.160049px;}
.yc5{bottom:703.800076px;}
.y8a{bottom:705.960056px;}
.y103{bottom:708.840054px;}
.y13a{bottom:711.180073px;}
.y93{bottom:717.840054px;}
.y82{bottom:718.020058px;}
.y53{bottom:720.540081px;}
.yf{bottom:720.900000px;}
.y3b{bottom:720.900055px;}
.yed{bottom:722.160049px;}
.y180{bottom:724.500068px;}
.y106{bottom:727.920078px;}
.y89{bottom:729.720051px;}
.y139{bottom:730.260064px;}
.yc4{bottom:732.420078px;}
.y81{bottom:741.780052px;}
.y105{bottom:746.820065px;}
.y190{bottom:748.980079px;}
.y63{bottom:749.160049px;}
.ye{bottom:749.520000px;}
.y3a{bottom:749.520058px;}
.yec{bottom:750.600083px;}
.y17f{bottom:752.940067px;}
.y88{bottom:753.660049px;}
.y135{bottom:758.700061px;}
.y80{bottom:765.540081px;}
.y104{bottom:765.900055px;}
.y138{bottom:768.240074px;}
.y87{bottom:777.420078px;}
.y52{bottom:777.600083px;}
.y134{bottom:777.780052px;}
.yd{bottom:777.960000px;}
.y27{bottom:777.960056px;}
.y165{bottom:778.320065px;}
.yeb{bottom:779.220051px;}
.y17e{bottom:781.560070px;}
.y102{bottom:785.340054px;}
.y137{bottom:787.320065px;}
.y92{bottom:789.300076px;}
.y7f{bottom:789.480079px;}
.yfe{bottom:794.880066px;}
.y86{bottom:801.180073px;}
.y100{bottom:804.420078px;}
.y18f{bottom:806.040081px;}
.yd6{bottom:806.220051px;}
.y26{bottom:806.580059px;}
.y91{bottom:813.060070px;}
.yfc{bottom:813.780052px;}
.yff{bottom:823.320065px;}
.y85{bottom:824.940067px;}
.y136{bottom:825.300076px;}
.yfd{bottom:832.860077px;}
.y51{bottom:834.660049px;}
.yc{bottom:835.020000px;}
.y39{bottom:835.020058px;}
.y90{bottom:836.820065px;}
.y17d{bottom:838.620072px;}
.y101{bottom:842.400055px;}
.yc3{bottom:846.540081px;}
.y84{bottom:848.700061px;}
.y133{bottom:861.840054px;}
.yfb{bottom:862.920078px;}
.y50{bottom:863.280052px;}
.yb{bottom:863.640000px;}
.y38{bottom:863.640060px;}
.yea{bottom:864.720051px;}
.y17c{bottom:867.060070px;}
.y131{bottom:871.380066px;}
.y8e{bottom:872.460056px;}
.yc2{bottom:875.520058px;}
.y12e{bottom:880.920078px;}
.y130{bottom:890.280052px;}
.y4f{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y43{bottom:892.080059px;}
.yc1{bottom:899.280052px;}
.y12d{bottom:899.820065px;}
.y7e{bottom:901.980079px;}
.y12f{bottom:909.360077px;}
.y132{bottom:918.900055px;}
.y4e{bottom:920.340054px;}
.y9{bottom:920.700000px;}
.y37{bottom:920.700061px;}
.ye9{bottom:921.780052px;}
.yba{bottom:923.040081px;}
.y17b{bottom:924.120072px;}
.y7d{bottom:925.740074px;}
.y7a{bottom:937.620072px;}
.yc0{bottom:946.800076px;}
.y4d{bottom:948.780053px;}
.y25{bottom:949.140060px;}
.y77{bottom:949.680073px;}
.ye8{bottom:950.400055px;}
.y12c{bottom:955.440067px;}
.ybb{bottom:958.680073px;}
.yb9{bottom:958.860077px;}
.y79{bottom:961.560070px;}
.ybf{bottom:970.560070px;}
.y76{bottom:973.440067px;}
.y12b{bottom:974.340054px;}
.y4c{bottom:977.400072px;}
.y8{bottom:977.760000px;}
.y24{bottom:977.760064px;}
.y17a{bottom:981.180073px;}
.y78{bottom:985.320065px;}
.y12a{bottom:993.420061px;}
.ybe{bottom:994.320065px;}
.y7c{bottom:997.200061px;}
.y4b{bottom:1005.840070px;}
.y7{bottom:1006.200000px;}
.y23{bottom:1006.200061px;}
.ye7{bottom:1007.460074px;}
.y179{bottom:1009.800058px;}
.y129{bottom:1012.500068px;}
.ybd{bottom:1018.080059px;}
.y7b{bottom:1020.960074px;}
.y124{bottom:1031.400072px;}
.y62{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y22{bottom:1034.820065px;}
.ye6{bottom:1035.900072px;}
.y178{bottom:1037.520058px;}
.y123{bottom:1040.940067px;}
.ybc{bottom:1042.020058px;}
.y75{bottom:1050.480063px;}
.y122{bottom:1060.020058px;}
.y71{bottom:1062.360060px;}
.y4a{bottom:1062.900072px;}
.y21{bottom:1063.260064px;}
.y177{bottom:1065.240074px;}
.y128{bottom:1069.560070px;}
.y1d{bottom:1071.000150px;}
.yb8{bottom:1071.540064px;}
.y73{bottom:1074.240074px;}
.y70{bottom:1086.120072px;}
.y127{bottom:1088.460074px;}
.y49{bottom:1091.520058px;}
.y5{bottom:1091.880000px;}
.y36{bottom:1091.880066px;}
.y176{bottom:1092.960074px;}
.yb5{bottom:1095.300058px;}
.y72{bottom:1098.000068px;}
.yb4{bottom:1107.360060px;}
.y6f{bottom:1109.880066px;}
.yb7{bottom:1119.060070px;}
.y48{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y20{bottom:1120.320065px;}
.ye5{bottom:1120.860068px;}
.y74{bottom:1121.760064px;}
.y126{bottom:1126.620063px;}
.yb6{bottom:1142.820065px;}
.y125{bottom:1145.520066px;}
.y61{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y1f{bottom:1148.940067px;}
.y6e{bottom:1151.640069px;}
.h6{height:55.303923px;}
.hd{height:55.472907px;}
.h3{height:55.474877px;}
.h13{height:56.277311px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h8{height:64.414315px;}
.h9{height:65.992187px;}
.h7{height:67.713326px;}
.he{height:69.341430px;}
.hf{height:70.346938px;}
.hb{height:83.209558px;}
.h5{height:83.210346px;}
.ha{height:84.416166px;}
.h4{height:84.416966px;}
.h17{height:92.912939px;}
.h15{height:93.632889px;}
.h16{height:93.632957px;}
.h14{height:93.717207px;}
.h12{height:116.141403px;}
.h10{height:116.141470px;}
.h11{height:116.861488px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.xb{left:94.680000px;}
.xa{left:97.380000px;}
.x1f{left:98.819996px;}
.x3{left:106.200000px;}
.x4{left:118.440000px;}
.x12{left:140.939999px;}
.x3a{left:142.379998px;}
.x1a{left:149.219999px;}
.x29{left:151.560001px;}
.x43{left:160.020006px;}
.x3f{left:171.360008px;}
.x16{left:174.060001px;}
.x28{left:180.900003px;}
.x6{left:184.140000px;}
.x8{left:190.980000px;}
.x9{left:217.260000px;}
.x7{left:222.660000px;}
.x15{left:224.639992px;}
.x20{left:230.759994px;}
.x2a{left:234.900003px;}
.x19{left:245.340002px;}
.x2b{left:251.099997px;}
.x23{left:252.900003px;}
.x11{left:257.220000px;}
.x44{left:274.319996px;}
.x4a{left:275.759994px;}
.x5{left:276.840000px;}
.x40{left:278.460005px;}
.x1b{left:281.340002px;}
.xf{left:285.840000px;}
.xe{left:297.360000px;}
.x27{left:302.399987px;}
.xd{left:307.260000px;}
.x18{left:314.459988px;}
.xc{left:320.220000px;}
.x48{left:322.199993px;}
.x3b{left:328.860008px;}
.x26{left:329.939999px;}
.x2c{left:336.779983px;}
.x2d{left:343.980011px;}
.x47{left:350.459988px;}
.x42{left:361.980011px;}
.x10{left:369.180000px;}
.x3d{left:379.079990px;}
.x22{left:381.420010px;}
.x41{left:385.740006px;}
.x14{left:389.160015px;}
.x49{left:392.399987px;}
.x13{left:410.939999px;}
.x2e{left:420.300007px;}
.x1c{left:432.000000px;}
.x46{left:433.259994px;}
.x2f{left:436.680005px;}
.x3c{left:440.100014px;}
.x30{left:485.819996px;}
.x31{left:501.120002px;}
.x1{left:532.800000px;}
.x1d{left:547.379998px;}
.x32{left:549.180005px;}
.x33{left:552.600014px;}
.x24{left:595.259994px;}
.x45{left:600.120002px;}
.x21{left:633.059967px;}
.x36{left:659.159981px;}
.x34{left:663.120002px;}
.x35{left:667.980011px;}
.x37{left:670.679970px;}
.x1e{left:683.639992px;}
.x3e{left:719.279983px;}
.x38{left:720.360008px;}
.x25{left:725.220017px;}
.x39{left:736.559967px;}
.x17{left:746.100014px;}
@media print{
.v3{vertical-align:-27.520020pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.520020pt;}
.v5{vertical-align:33.279908pt;}
.v4{vertical-align:41.600036pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047742pt;}
.ls1{letter-spacing:0.083823pt;}
.ls2{letter-spacing:0.318960pt;}
.ls5{letter-spacing:29.439200pt;}
.ls4{letter-spacing:689.279164pt;}
.ws1{word-spacing:-70.404000pt;}
.ws3{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws4{word-spacing:-21.120800pt;}
.ws6{word-spacing:-17.600700pt;}
.ws10{word-spacing:-14.128242pt;}
.ws9{word-spacing:-14.080500pt;}
.ws5{word-spacing:-12.320500pt;}
.ws2{word-spacing:0.000000pt;}
.wse{word-spacing:64.207270pt;}
.wsd{word-spacing:70.233534pt;}
.wsb{word-spacing:82.624374pt;}
.wsa{word-spacing:83.187594pt;}
.wsf{word-spacing:83.750814pt;}
.ws8{word-spacing:114.826967pt;}
.wsc{word-spacing:131.195544pt;}
.ws7{word-spacing:339.748514pt;}
._35{margin-left:-21.019179pt;}
._19{margin-left:-17.347435pt;}
._1d{margin-left:-16.204949pt;}
._1e{margin-left:-13.361529pt;}
._15{margin-left:-12.408135pt;}
._7{margin-left:-10.824513pt;}
._17{margin-left:-9.009449pt;}
._4{margin-left:-7.909506pt;}
._2{margin-left:-6.610170pt;}
._d{margin-left:-5.229475pt;}
._1{margin-left:-4.321610pt;}
._12{margin-left:-3.427599pt;}
._c{margin-left:-2.521313pt;}
._3{margin-left:-1.351575pt;}
._0{width:0.932084pt;}
._9{width:1.946649pt;}
._5{width:2.872456pt;}
._6{width:4.139547pt;}
._e{width:5.825873pt;}
._16{width:6.751823pt;}
._13{width:8.456886pt;}
._14{width:9.548244pt;}
._a{width:10.547511pt;}
._8{width:11.658961pt;}
._b{width:13.229168pt;}
._f{width:14.230675pt;}
._11{width:15.254236pt;}
._18{width:16.226024pt;}
._1f{width:22.667864pt;}
._33{width:28.799244pt;}
._25{width:58.049608pt;}
._1b{width:61.893353pt;}
._2d{width:97.268094pt;}
._32{width:101.773854pt;}
._2f{width:114.727914pt;}
._2c{width:125.429094pt;}
._31{width:128.808414pt;}
._2a{width:129.935294pt;}
._2e{width:134.441054pt;}
._30{width:140.072814pt;}
._28{width:144.015354pt;}
._1a{width:148.716853pt;}
._26{width:154.153314pt;}
._2b{width:157.532634pt;}
._27{width:171.049914pt;}
._23{width:200.556487pt;}
._29{width:202.590234pt;}
._20{width:244.437480pt;}
._24{width:249.506460pt;}
._22{width:284.720956pt;}
._1c{width:450.657584pt;}
._21{width:496.760040pt;}
._34{width:762.005208pt;}
._36{width:781.974425pt;}
._37{width:1485.960509pt;}
._10{width:1507.172434pt;}
._38{width:1672.765663pt;}
.fs7{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1e{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y35{bottom:36.480103pt;}
.y60{bottom:87.040039pt;}
.ye4{bottom:92.640015pt;}
.yd5{bottom:93.120118pt;}
.y175{bottom:100.000061pt;}
.yd8{bottom:107.840088pt;}
.y42{bottom:108.160035pt;}
.y34{bottom:108.320069pt;}
.yfa{bottom:109.280030pt;}
.y18e{bottom:111.360047pt;}
.y47{bottom:112.320069pt;}
.ye3{bottom:117.280030pt;}
.yd4{bottom:118.400086pt;}
.y5f{bottom:129.280030pt;}
.yd7{bottom:133.280030pt;}
.y6d{bottom:133.600037pt;}
.y18d{bottom:136.800049pt;}
.yd3{bottom:143.840088pt;}
.y163{bottom:145.920044pt;}
.y174{bottom:149.280030pt;}
.y6b{bottom:158.720032pt;}
.y46{bottom:158.880066pt;}
.y164{bottom:159.040039pt;}
.yf9{bottom:160.000061pt;}
.y18c{bottom:162.080079pt;}
.ye2{bottom:166.720032pt;}
.yd2{bottom:169.120057pt;}
.y41{bottom:171.520081pt;}
.y160{bottom:171.680054pt;}
.yb3{bottom:173.440064pt;}
.y173{bottom:173.920044pt;}
.y45{bottom:180.000061pt;}
.y6a{bottom:184.000061pt;}
.y6c{bottom:184.320069pt;}
.y1c{bottom:184.320133pt;}
.y15f{bottom:188.640076pt;}
.ye1{bottom:191.360047pt;}
.y40{bottom:192.640076pt;}
.yb2{bottom:194.560059pt;}
.y162{bottom:197.120057pt;}
.y15e{bottom:205.600037pt;}
.y69{bottom:209.440064pt;}
.y33{bottom:209.760071pt;}
.y1b{bottom:209.760133pt;}
.yf8{bottom:210.720032pt;}
.y18b{bottom:212.800049pt;}
.y159{bottom:214.080079pt;}
.yb1{bottom:215.680054pt;}
.ye0{bottom:216.000061pt;}
.y15d{bottom:222.400086pt;}
.y121{bottom:227.360047pt;}
.y158{bottom:230.880066pt;}
.y5e{bottom:234.720032pt;}
.y32{bottom:235.040039pt;}
.yf7{bottom:236.160035pt;}
.yb0{bottom:236.800049pt;}
.y18a{bottom:238.240052pt;}
.y15c{bottom:239.360047pt;}
.ydf{bottom:240.640076pt;}
.y120{bottom:244.160035pt;}
.yd1{bottom:245.280030pt;}
.yaa{bottom:247.360047pt;}
.ya8{bottom:247.520081pt;}
.y161{bottom:247.840088pt;}
.y15b{bottom:256.320069pt;}
.yaf{bottom:257.920044pt;}
.y5d{bottom:260.160035pt;}
.y44{bottom:260.480042pt;}
.y1a{bottom:260.480133pt;}
.y11d{bottom:261.120057pt;}
.yf6{bottom:261.440064pt;}
.y189{bottom:263.520081pt;}
.yde{bottom:265.280030pt;}
.ya9{bottom:268.480042pt;}
.ya7{bottom:268.640076pt;}
.y11b{bottom:269.600037pt;}
.yd0{bottom:270.560059pt;}
.y172{bottom:272.640076pt;}
.y15a{bottom:273.120057pt;}
.y118{bottom:278.080079pt;}
.yae{bottom:279.040039pt;}
.y5c{bottom:285.440064pt;}
.y31{bottom:285.760071pt;}
.y19{bottom:285.760133pt;}
.y11a{bottom:286.560059pt;}
.ydd{bottom:289.920044pt;}
.y117{bottom:294.880066pt;}
.ycf{bottom:296.000061pt;}
.y153{bottom:297.120057pt;}
.y171{bottom:297.280030pt;}
.yad{bottom:300.320069pt;}
.y119{bottom:303.360047pt;}
.y157{bottom:305.440064pt;}
.y194{bottom:310.720032pt;}
.y5b{bottom:310.880066pt;}
.y3f{bottom:311.200074pt;}
.y11c{bottom:311.840088pt;}
.yf5{bottom:312.160035pt;}
.y152{bottom:313.920044pt;}
.y188{bottom:314.240052pt;}
.yac{bottom:321.440064pt;}
.y156{bottom:322.400086pt;}
.y11f{bottom:328.800049pt;}
.y151{bottom:330.880066pt;}
.y5a{bottom:336.160035pt;}
.y18{bottom:336.480000pt;}
.y30{bottom:336.480042pt;}
.ydc{bottom:339.360047pt;}
.y187{bottom:339.680054pt;}
.yab{bottom:342.560059pt;}
.y11e{bottom:345.600037pt;}
.y170{bottom:346.560059pt;}
.yce{bottom:346.720032pt;}
.y150{bottom:347.840088pt;}
.y14b{bottom:356.160035pt;}
.y68{bottom:361.600037pt;}
.y17{bottom:361.920000pt;}
.y2f{bottom:361.920044pt;}
.yf4{bottom:362.880066pt;}
.ydb{bottom:364.000061pt;}
.y14f{bottom:364.640076pt;}
.y186{bottom:364.960083pt;}
.ya1{bottom:368.800049pt;}
.y115{bottom:369.600037pt;}
.y16f{bottom:371.360047pt;}
.y14a{bottom:373.120057pt;}
.y114{bottom:386.400086pt;}
.y59{bottom:386.880066pt;}
.y16{bottom:387.200000pt;}
.y3e{bottom:387.200074pt;}
.yda{bottom:388.640076pt;}
.ya0{bottom:389.920044pt;}
.y14c{bottom:390.080079pt;}
.y16e{bottom:396.000061pt;}
.ycd{bottom:397.440064pt;}
.y14e{bottom:398.560059pt;}
.ya6{bottom:400.480042pt;}
.y113{bottom:403.360047pt;}
.y155{bottom:406.880066pt;}
.y9d{bottom:411.040039pt;}
.y9a{bottom:411.200074pt;}
.y193{bottom:412.160035pt;}
.y58{bottom:412.320069pt;}
.y15{bottom:412.640000pt;}
.y2e{bottom:412.640076pt;}
.yd9{bottom:413.280030pt;}
.y14d{bottom:415.360047pt;}
.y185{bottom:415.680054pt;}
.y112{bottom:420.320069pt;}
.y16d{bottom:420.640076pt;}
.ya4{bottom:421.600037pt;}
.ycc{bottom:422.720032pt;}
.y154{bottom:423.840088pt;}
.y9c{bottom:432.160035pt;}
.y99{bottom:432.320069pt;}
.y111{bottom:437.120057pt;}
.y67{bottom:437.600037pt;}
.y14{bottom:437.920000pt;}
.y2d{bottom:437.920044pt;}
.yf3{bottom:439.040039pt;}
.y184{bottom:441.120057pt;}
.ya3{bottom:442.720032pt;}
.y16c{bottom:445.280030pt;}
.ycb{bottom:448.160035pt;}
.y9b{bottom:453.280030pt;}
.y98{bottom:453.440064pt;}
.y10b{bottom:454.080079pt;}
.y149{bottom:456.160035pt;}
.y116{bottom:462.560059pt;}
.y66{bottom:463.040039pt;}
.y13{bottom:463.360000pt;}
.y3d{bottom:463.360047pt;}
.ya2{bottom:463.840088pt;}
.y16b{bottom:469.920044pt;}
.y10a{bottom:471.040039pt;}
.y148{bottom:473.120057pt;}
.yca{bottom:473.440064pt;}
.y97{bottom:474.560059pt;}
.ya5{bottom:485.120057pt;}
.y110{bottom:487.840088pt;}
.y57{bottom:488.320069pt;}
.y12{bottom:488.640000pt;}
.y3c{bottom:488.640076pt;}
.yf2{bottom:489.760071pt;}
.y147{bottom:489.920044pt;}
.y183{bottom:491.840088pt;}
.y16a{bottom:494.560059pt;}
.y9f{bottom:495.680054pt;}
.y141{bottom:498.400086pt;}
.yc9{bottom:498.880066pt;}
.y10f{bottom:504.800049pt;}
.y146{bottom:506.880066pt;}
.y192{bottom:513.600037pt;}
.y56{bottom:513.760071pt;}
.y11{bottom:514.080000pt;}
.y2c{bottom:514.080079pt;}
.y140{bottom:515.360047pt;}
.y9e{bottom:516.800049pt;}
.y182{bottom:517.120057pt;}
.y169{bottom:519.200074pt;}
.y10e{bottom:521.760071pt;}
.y13c{bottom:523.840088pt;}
.yc8{bottom:524.160035pt;}
.y13f{bottom:532.320069pt;}
.y10d{bottom:538.560059pt;}
.y55{bottom:539.040039pt;}
.y10{bottom:539.360000pt;}
.y2b{bottom:539.360047pt;}
.yf1{bottom:540.480042pt;}
.y13b{bottom:540.640076pt;}
.y8f{bottom:543.040039pt;}
.y168{bottom:544.000061pt;}
.y13e{bottom:549.120057pt;}
.yc7{bottom:549.600037pt;}
.y10c{bottom:555.520081pt;}
.y145{bottom:557.600037pt;}
.y8d{bottom:564.160035pt;}
.y54{bottom:564.480042pt;}
.y2a{bottom:564.800049pt;}
.yf0{bottom:565.760071pt;}
.y13d{bottom:566.080079pt;}
.y181{bottom:567.840088pt;}
.y144{bottom:574.560059pt;}
.y96{bottom:574.720032pt;}
.yc6{bottom:574.880066pt;}
.y109{bottom:579.360047pt;}
.y8c{bottom:585.280030pt;}
.y65{bottom:589.760071pt;}
.y29{bottom:590.080079pt;}
.yef{bottom:591.200074pt;}
.y143{bottom:591.360047pt;}
.y167{bottom:593.280030pt;}
.y95{bottom:595.840088pt;}
.y108{bottom:596.320069pt;}
.y8b{bottom:606.400086pt;}
.y142{bottom:608.320069pt;}
.y107{bottom:613.120057pt;}
.y191{bottom:615.040070pt;}
.y64{bottom:615.200074pt;}
.y28{bottom:615.520050pt;}
.yee{bottom:616.480072pt;}
.y94{bottom:616.960053pt;}
.y83{bottom:617.120057pt;}
.y166{bottom:617.920044pt;}
.yc5{bottom:625.600068pt;}
.y8a{bottom:627.520050pt;}
.y103{bottom:630.080048pt;}
.y13a{bottom:632.160065pt;}
.y93{bottom:638.080048pt;}
.y82{bottom:638.240052pt;}
.y53{bottom:640.480072pt;}
.yf{bottom:640.800000pt;}
.y3b{bottom:640.800049pt;}
.yed{bottom:641.920044pt;}
.y180{bottom:644.000061pt;}
.y106{bottom:647.040070pt;}
.y89{bottom:648.640046pt;}
.y139{bottom:649.120057pt;}
.yc4{bottom:651.040070pt;}
.y81{bottom:659.360047pt;}
.y105{bottom:663.840058pt;}
.y190{bottom:665.760071pt;}
.y63{bottom:665.920044pt;}
.ye{bottom:666.240000pt;}
.y3a{bottom:666.240052pt;}
.yec{bottom:667.200074pt;}
.y17f{bottom:669.280060pt;}
.y88{bottom:669.920044pt;}
.y135{bottom:674.400055pt;}
.y80{bottom:680.480072pt;}
.y104{bottom:680.800049pt;}
.y138{bottom:682.880066pt;}
.y87{bottom:691.040070pt;}
.y52{bottom:691.200074pt;}
.y134{bottom:691.360047pt;}
.yd{bottom:691.520000pt;}
.y27{bottom:691.520050pt;}
.y165{bottom:691.840058pt;}
.yeb{bottom:692.640046pt;}
.y17e{bottom:694.720063pt;}
.y102{bottom:698.080048pt;}
.y137{bottom:699.840058pt;}
.y92{bottom:701.600068pt;}
.y7f{bottom:701.760071pt;}
.yfe{bottom:706.560059pt;}
.y86{bottom:712.160065pt;}
.y100{bottom:715.040070pt;}
.y18f{bottom:716.480072pt;}
.yd6{bottom:716.640046pt;}
.y26{bottom:716.960053pt;}
.y91{bottom:722.720063pt;}
.yfc{bottom:723.360047pt;}
.yff{bottom:731.840058pt;}
.y85{bottom:733.280060pt;}
.y136{bottom:733.600068pt;}
.yfd{bottom:740.320069pt;}
.y51{bottom:741.920044pt;}
.yc{bottom:742.240000pt;}
.y39{bottom:742.240052pt;}
.y90{bottom:743.840058pt;}
.y17d{bottom:745.440064pt;}
.y101{bottom:748.800049pt;}
.yc3{bottom:752.480072pt;}
.y84{bottom:754.400055pt;}
.y133{bottom:766.080048pt;}
.yfb{bottom:767.040070pt;}
.y50{bottom:767.360047pt;}
.yb{bottom:767.680000pt;}
.y38{bottom:767.680054pt;}
.yea{bottom:768.640046pt;}
.y17c{bottom:770.720063pt;}
.y131{bottom:774.560059pt;}
.y8e{bottom:775.520050pt;}
.yc2{bottom:778.240052pt;}
.y12e{bottom:783.040070pt;}
.y130{bottom:791.360047pt;}
.y4f{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y43{bottom:792.960053pt;}
.yc1{bottom:799.360047pt;}
.y12d{bottom:799.840058pt;}
.y7e{bottom:801.760071pt;}
.y12f{bottom:808.320069pt;}
.y132{bottom:816.800049pt;}
.y4e{bottom:818.080048pt;}
.y9{bottom:818.400000pt;}
.y37{bottom:818.400055pt;}
.ye9{bottom:819.360047pt;}
.yba{bottom:820.480072pt;}
.y17b{bottom:821.440064pt;}
.y7d{bottom:822.880066pt;}
.y7a{bottom:833.440064pt;}
.yc0{bottom:841.600068pt;}
.y4d{bottom:843.360047pt;}
.y25{bottom:843.680054pt;}
.y77{bottom:844.160065pt;}
.ye8{bottom:844.800049pt;}
.y12c{bottom:849.280060pt;}
.ybb{bottom:852.160065pt;}
.yb9{bottom:852.320069pt;}
.y79{bottom:854.720063pt;}
.ybf{bottom:862.720063pt;}
.y76{bottom:865.280060pt;}
.y12b{bottom:866.080048pt;}
.y4c{bottom:868.800064pt;}
.y8{bottom:869.120000pt;}
.y24{bottom:869.120057pt;}
.y17a{bottom:872.160065pt;}
.y78{bottom:875.840058pt;}
.y12a{bottom:883.040055pt;}
.ybe{bottom:883.840058pt;}
.y7c{bottom:886.400055pt;}
.y4b{bottom:894.080063pt;}
.y7{bottom:894.400000pt;}
.y23{bottom:894.400055pt;}
.ye7{bottom:895.520066pt;}
.y179{bottom:897.600052pt;}
.y129{bottom:900.000061pt;}
.ybd{bottom:904.960053pt;}
.y7b{bottom:907.520066pt;}
.y124{bottom:916.800064pt;}
.y62{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y22{bottom:919.840058pt;}
.ye6{bottom:920.800064pt;}
.y178{bottom:922.240052pt;}
.y123{bottom:925.280060pt;}
.ybc{bottom:926.240052pt;}
.y75{bottom:933.760056pt;}
.y122{bottom:942.240052pt;}
.y71{bottom:944.320054pt;}
.y4a{bottom:944.800064pt;}
.y21{bottom:945.120057pt;}
.y177{bottom:946.880066pt;}
.y128{bottom:950.720063pt;}
.y1d{bottom:952.000133pt;}
.yb8{bottom:952.480057pt;}
.y73{bottom:954.880066pt;}
.y70{bottom:965.440064pt;}
.y127{bottom:967.520066pt;}
.y49{bottom:970.240052pt;}
.y5{bottom:970.560000pt;}
.y36{bottom:970.560059pt;}
.y176{bottom:971.520066pt;}
.yb5{bottom:973.600052pt;}
.y72{bottom:976.000061pt;}
.yb4{bottom:984.320054pt;}
.y6f{bottom:986.560059pt;}
.yb7{bottom:994.720063pt;}
.y48{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y20{bottom:995.840058pt;}
.ye5{bottom:996.320061pt;}
.y74{bottom:997.120057pt;}
.y126{bottom:1001.440056pt;}
.yb6{bottom:1015.840058pt;}
.y125{bottom:1018.240059pt;}
.y61{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y1f{bottom:1021.280060pt;}
.y6e{bottom:1023.680062pt;}
.h6{height:49.159043pt;}
.hd{height:49.309251pt;}
.h3{height:49.311002pt;}
.h13{height:50.024276pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h8{height:57.257169pt;}
.h9{height:58.659722pt;}
.h7{height:60.189623pt;}
.he{height:61.636826pt;}
.hf{height:62.530612pt;}
.hb{height:73.964052pt;}
.h5{height:73.964752pt;}
.ha{height:75.036592pt;}
.h4{height:75.037303pt;}
.h17{height:82.589279pt;}
.h15{height:83.229235pt;}
.h16{height:83.229295pt;}
.h14{height:83.304184pt;}
.h12{height:103.236802pt;}
.h10{height:103.236862pt;}
.h11{height:103.876878pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.xb{left:84.160000pt;}
.xa{left:86.560000pt;}
.x1f{left:87.839996pt;}
.x3{left:94.400000pt;}
.x4{left:105.280000pt;}
.x12{left:125.279999pt;}
.x3a{left:126.559998pt;}
.x1a{left:132.639999pt;}
.x29{left:134.720001pt;}
.x43{left:142.240005pt;}
.x3f{left:152.320007pt;}
.x16{left:154.720001pt;}
.x28{left:160.800003pt;}
.x6{left:163.680000pt;}
.x8{left:169.760000pt;}
.x9{left:193.120000pt;}
.x7{left:197.920000pt;}
.x15{left:199.679993pt;}
.x20{left:205.119995pt;}
.x2a{left:208.800003pt;}
.x19{left:218.080002pt;}
.x2b{left:223.199997pt;}
.x23{left:224.800003pt;}
.x11{left:228.640000pt;}
.x44{left:243.839996pt;}
.x4a{left:245.119995pt;}
.x5{left:246.080000pt;}
.x40{left:247.520004pt;}
.x1b{left:250.080002pt;}
.xf{left:254.080000pt;}
.xe{left:264.320000pt;}
.x27{left:268.799988pt;}
.xd{left:273.120000pt;}
.x18{left:279.519989pt;}
.xc{left:284.640000pt;}
.x48{left:286.399994pt;}
.x3b{left:292.320007pt;}
.x26{left:293.279999pt;}
.x2c{left:299.359985pt;}
.x2d{left:305.760010pt;}
.x47{left:311.519989pt;}
.x42{left:321.760010pt;}
.x10{left:328.160000pt;}
.x3d{left:336.959991pt;}
.x22{left:339.040009pt;}
.x41{left:342.880005pt;}
.x14{left:345.920013pt;}
.x49{left:348.799988pt;}
.x13{left:365.279999pt;}
.x2e{left:373.600006pt;}
.x1c{left:384.000000pt;}
.x46{left:385.119995pt;}
.x2f{left:388.160004pt;}
.x3c{left:391.200012pt;}
.x30{left:431.839996pt;}
.x31{left:445.440002pt;}
.x1{left:473.600000pt;}
.x1d{left:486.559998pt;}
.x32{left:488.160004pt;}
.x33{left:491.200012pt;}
.x24{left:529.119995pt;}
.x45{left:533.440002pt;}
.x21{left:562.719971pt;}
.x36{left:585.919983pt;}
.x34{left:589.440002pt;}
.x35{left:593.760010pt;}
.x37{left:596.159973pt;}
.x1e{left:607.679993pt;}
.x3e{left:639.359985pt;}
.x38{left:640.320007pt;}
.x25{left:644.640015pt;}
.x39{left:654.719971pt;}
.x17{left:663.200012pt;}
}




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