
    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_978c12acdc811add8644b51a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_cbab9dbe153eed42f67417fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_5c4d7ecef9a0c50b667ab6ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.736816;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_8c81e84413946d436758fa34.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853516;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_b6ad902a95209e601bcf106c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1813d448c49d9e149111010d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_146d7982e6dc7ad52941fb70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_21544dea74937eed8bb191ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.769531;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_1815c2cb6115f22d09dfe29d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_1760af1981964e687326085e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875488;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_ba740a6e6a13ab26959c533f.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_5e34adcdcbcda037e3b7b6bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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);}
.v2{vertical-align:-20.880067px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360076px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.070763px;}
.ls2{letter-spacing:0.108268px;}
.ls8{letter-spacing:0.108272px;}
.ls9{letter-spacing:0.179375px;}
.ls7{letter-spacing:0.179437px;}
.ls6{letter-spacing:0.179442px;}
.ls1{letter-spacing:0.215255px;}
.ls4{letter-spacing:0.358974px;}
.ls0{letter-spacing:0.359109px;}
.ls5{letter-spacing:0.359113px;}
.lsa{letter-spacing:24.263379px;}
.lsc{letter-spacing:54.935246px;}
.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:-72.002705px;}
.ws1{word-spacing:-18.000676px;}
.ws8{word-spacing:-16.560675px;}
.ws2{word-spacing:-14.940563px;}
.ws6{word-spacing:-13.500563px;}
.ws4{word-spacing:-12.060450px;}
.ws3{word-spacing:-9.720371px;}
.ws5{word-spacing:-7.308283px;}
.ws0{word-spacing:0.000000px;}
._26{margin-left:-7.866692px;}
._27{margin-left:-6.577566px;}
._c{margin-left:-4.815038px;}
._3{margin-left:-3.775316px;}
._2{margin-left:-2.256950px;}
._1{margin-left:-1.075720px;}
._0{width:1.056811px;}
._5{width:2.513626px;}
._6{width:3.670169px;}
._b{width:5.270758px;}
._18{width:6.379833px;}
._f{width:8.124211px;}
._a{width:9.371040px;}
._9{width:10.694652px;}
._1d{width:12.320619px;}
._25{width:13.443476px;}
._11{width:14.599046px;}
._10{width:15.875537px;}
._1b{width:16.904257px;}
._1e{width:19.030256px;}
._17{width:20.081723px;}
._1a{width:21.502370px;}
._d{width:22.524752px;}
._e{width:23.564745px;}
._19{width:25.341736px;}
._1f{width:26.879229px;}
._4{width:28.093149px;}
._13{width:29.212004px;}
._14{width:30.728495px;}
._16{width:32.622850px;}
._12{width:34.573392px;}
._2b{width:35.817292px;}
._7{width:36.873260px;}
._8{width:38.144009px;}
._15{width:39.186074px;}
._20{width:41.845550px;}
._21{width:43.197966px;}
._22{width:44.674584px;}
._29{width:45.741341px;}
._28{width:47.030819px;}
._2f{width:48.030917px;}
._2e{width:49.032435px;}
._2d{width:51.399243px;}
._2c{width:56.947670px;}
._1c{width:59.060218px;}
._24{width:60.688717px;}
._23{width:61.915576px;}
._2a{width:68.414663px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(33,94,153);}
.fc4{color:rgb(14,40,65);}
.fc3{color:rgb(238,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(42,42,42);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.001395px;}
.fs5{font-size:38.881485px;}
.fs3{font-size:48.241800px;}
.fs6{font-size:54.002250px;}
.fs1{font-size:59.762250px;}
.fs2{font-size:66.242700px;}
.fs0{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.240005px;}
.y2{bottom:76.500000px;}
.y21{bottom:111.240074px;}
.y13d{bottom:112.860077px;}
.y17e{bottom:116.460091px;}
.y9c{bottom:117.360077px;}
.y1ab{bottom:120.420043px;}
.y20{bottom:128.520058px;}
.y9b{bottom:129.600083px;}
.y17d{bottom:130.320099px;}
.y13c{bottom:133.560036px;}
.ye1{bottom:133.740074px;}
.y79{bottom:134.640060px;}
.yd2{bottom:135.720085px;}
.y1aa{bottom:141.120072px;}
.y4d{bottom:145.800041px;}
.y126{bottom:146.880066px;}
.yd1{bottom:147.960091px;}
.y101{bottom:151.020058px;}
.y1f{bottom:151.920043px;}
.y78{bottom:153.000068px;}
.y13b{bottom:154.260064px;}
.y1a9{bottom:161.820099px;}
.yb3{bottom:163.080093px;}
.y1e{bottom:164.160049px;}
.y100{bottom:164.880066px;}
.y77{bottom:165.060036px;}
.y9a{bottom:167.040047px;}
.y4c{bottom:169.200096px;}
.yd0{bottom:170.280052px;}
.y13a{bottom:174.960091px;}
.y17c{bottom:175.320099px;}
.y116{bottom:180.180039px;}
.y4b{bottom:181.260064px;}
.y1a8{bottom:182.520058px;}
.ycf{bottom:184.140060px;}
.yb2{bottom:185.400055px;}
.yff{bottom:185.940033px;}
.y15d{bottom:186.300041px;}
.ye0{bottom:186.480079px;}
.y1d{bottom:187.380066px;}
.y76{bottom:187.560036px;}
.y99{bottom:193.500068px;}
.y17b{bottom:196.020058px;}
.ydf{bottom:200.340088px;}
.y1c{bottom:201.420043px;}
.yb1{bottom:202.680039px;}
.y115{bottom:203.580093px;}
.y15c{bottom:203.760064px;}
.y4a{bottom:204.660049px;}
.yfe{bottom:206.640060px;}
.y139{bottom:207.540047px;}
.y98{bottom:214.200096px;}
.yb0{bottom:216.540047px;}
.y15b{bottom:217.620072px;}
.y17a{bottom:217.980079px;}
.y114{bottom:221.940033px;}
.y49{bottom:223.020058px;}
.y1a7{bottom:224.280052px;}
.yfd{bottom:227.340088px;}
.y138{bottom:228.240074px;}
.y75{bottom:234.900055px;}
.y1b{bottom:235.800041px;}
.y113{bottom:235.980079px;}
.y48{bottom:237.060036px;}
.y179{bottom:238.680039px;}
.yaf{bottom:239.400055px;}
.yfc{bottom:248.040047px;}
.y137{bottom:248.940033px;}
.y15a{bottom:250.200096px;}
.y74{bottom:255.600083px;}
.y1a{bottom:256.500068px;}
.y47{bottom:258.300041px;}
.yae{bottom:260.100083px;}
.y112{bottom:264.960091px;}
.y1a6{bottom:266.040047px;}
.yfb{bottom:268.740074px;}
.y136{bottom:269.640060px;}
.y159{bottom:270.900055px;}
.y97{bottom:276.300041px;}
.yde{bottom:276.660049px;}
.y19{bottom:277.200096px;}
.y46{bottom:279.000068px;}
.yad{bottom:280.800041px;}
.y178{bottom:284.940033px;}
.y111{bottom:285.660049px;}
.y73{bottom:288.360077px;}
.yce{bottom:288.900055px;}
.yfa{bottom:289.440033px;}
.y135{bottom:290.340088px;}
.y96{bottom:297.000068px;}
.y18{bottom:297.900055px;}
.y45{bottom:299.700096px;}
.y158{bottom:303.660049px;}
.y110{bottom:306.360077px;}
.y1a5{bottom:307.620072px;}
.y72{bottom:309.060036px;}
.ycd{bottom:309.600083px;}
.yf9{bottom:310.140060px;}
.y134{bottom:311.040047px;}
.y95{bottom:317.700096px;}
.ydd{bottom:318.240074px;}
.y17{bottom:318.600083px;}
.y44{bottom:320.400055px;}
.yac{bottom:322.560036px;}
.y157{bottom:324.360077px;}
.y177{bottom:326.700096px;}
.y10f{bottom:327.060036px;}
.y1a4{bottom:328.320099px;}
.y71{bottom:329.760064px;}
.ycc{bottom:330.300041px;}
.yf8{bottom:330.840088px;}
.y133{bottom:331.740074px;}
.y94{bottom:338.400055px;}
.ydc{bottom:338.940033px;}
.y16{bottom:339.300041px;}
.yab{bottom:343.260064px;}
.y156{bottom:345.060036px;}
.y176{bottom:347.400055px;}
.y10e{bottom:347.760064px;}
.y1a3{bottom:350.280052px;}
.y70{bottom:350.460091px;}
.ycb{bottom:351.000068px;}
.yf7{bottom:351.540047px;}
.y132{bottom:352.440033px;}
.y43{bottom:356.400055px;}
.y93{bottom:359.100083px;}
.ydb{bottom:359.640060px;}
.y15{bottom:360.000068px;}
.y155{bottom:365.760064px;}
.y175{bottom:368.100083px;}
.y10d{bottom:368.460091px;}
.y6f{bottom:371.160049px;}
.yca{bottom:371.700096px;}
.yf6{bottom:372.240074px;}
.y92{bottom:379.800041px;}
.yda{bottom:380.340088px;}
.y14{bottom:380.700096px;}
.yaa{bottom:384.840088px;}
.y131{bottom:385.200096px;}
.y154{bottom:386.460091px;}
.y174{bottom:388.800041px;}
.y42{bottom:389.160049px;}
.y6e{bottom:391.860077px;}
.yc9{bottom:392.400055px;}
.yf5{bottom:392.940033px;}
.y1a2{bottom:393.120072px;}
.y91{bottom:400.500068px;}
.yd9{bottom:401.040047px;}
.y13{bottom:401.400055px;}
.ya9{bottom:405.540047px;}
.y153{bottom:407.160049px;}
.y173{bottom:409.500068px;}
.y10c{bottom:409.860077px;}
.y6d{bottom:412.560036px;}
.yc8{bottom:413.100083px;}
.yf4{bottom:413.640060px;}
.y1a1{bottom:413.820099px;}
.y130{bottom:417.960091px;}
.y90{bottom:421.200096px;}
.y41{bottom:421.740074px;}
.y12{bottom:422.100083px;}
.ya8{bottom:426.240074px;}
.y152{bottom:427.860077px;}
.y172{bottom:430.200096px;}
.y10b{bottom:430.560036px;}
.y6c{bottom:433.260064px;}
.yc7{bottom:433.800041px;}
.yf3{bottom:434.340088px;}
.y1a0{bottom:435.780052px;}
.y40{bottom:442.440033px;}
.y11{bottom:442.800041px;}
.ya7{bottom:446.940033px;}
.y151{bottom:448.560036px;}
.y12f{bottom:450.540047px;}
.y171{bottom:450.900055px;}
.y10a{bottom:451.260064px;}
.y6b{bottom:453.960091px;}
.yc6{bottom:454.500068px;}
.y19f{bottom:456.480079px;}
.y8f{bottom:462.960091px;}
.y3f{bottom:463.140060px;}
.y10{bottom:463.500068px;}
.ya6{bottom:467.640060px;}
.y150{bottom:469.260064px;}
.y170{bottom:471.600083px;}
.y109{bottom:471.960091px;}
.y6a{bottom:474.660049px;}
.yc5{bottom:475.200096px;}
.yf2{bottom:475.920043px;}
.y19e{bottom:477.180039px;}
.y12e{bottom:483.300041px;}
.y8e{bottom:483.660049px;}
.y3e{bottom:483.840088px;}
.yf{bottom:484.200096px;}
.ya5{bottom:488.340088px;}
.y14f{bottom:489.960091px;}
.y16f{bottom:492.300041px;}
.y69{bottom:495.360077px;}
.yc4{bottom:495.900055px;}
.yf1{bottom:496.620072px;}
.y19d{bottom:499.140060px;}
.y12d{bottom:504.000068px;}
.y8d{bottom:504.360077px;}
.y3d{bottom:504.540047px;}
.ye{bottom:504.900055px;}
.ya4{bottom:509.040047px;}
.y14e{bottom:510.660049px;}
.y16e{bottom:513.000068px;}
.y108{bottom:513.540047px;}
.y1ad{bottom:515.700096px;}
.y68{bottom:516.060036px;}
.yc3{bottom:516.600083px;}
.yf0{bottom:517.320099px;}
.y19c{bottom:519.840088px;}
.y12c{bottom:524.700096px;}
.y8c{bottom:525.060036px;}
.y3c{bottom:525.240074px;}
.yd{bottom:525.600083px;}
.ya3{bottom:529.740074px;}
.y16d{bottom:533.700096px;}
.y67{bottom:536.760064px;}
.yc2{bottom:537.300041px;}
.yef{bottom:538.020058px;}
.y19b{bottom:541.800041px;}
.y14d{bottom:543.240074px;}
.y12b{bottom:545.400055px;}
.y8b{bottom:545.760064px;}
.y3b{bottom:545.940033px;}
.yc{bottom:546.300041px;}
.ya2{bottom:550.440033px;}
.y16c{bottom:554.400055px;}
.y66{bottom:557.460091px;}
.yc1{bottom:558.000068px;}
.yee{bottom:558.720085px;}
.y19a{bottom:562.500068px;}
.y14c{bottom:563.940033px;}
.y12a{bottom:566.100083px;}
.y8a{bottom:566.460091px;}
.yd8{bottom:566.640060px;}
.y125{bottom:567.000068px;}
.ya1{bottom:571.140060px;}
.y65{bottom:578.160049px;}
.y3a{bottom:578.700096px;}
.y107{bottom:579.060036px;}
.yed{bottom:579.420043px;}
.yb{bottom:583.560036px;}
.y199{bottom:584.460091px;}
.y14b{bottom:584.640060px;}
.y129{bottom:586.800041px;}
.y89{bottom:587.160049px;}
.yd7{bottom:587.340088px;}
.y124{bottom:587.700096px;}
.ya0{bottom:591.840088px;}
.y16b{bottom:596.160049px;}
.y64{bottom:598.860077px;}
.y39{bottom:599.400055px;}
.y106{bottom:599.760064px;}
.yec{bottom:600.120072px;}
.y198{bottom:605.160049px;}
.y14a{bottom:605.340088px;}
.y123{bottom:608.400055px;}
.y16a{bottom:616.860077px;}
.y63{bottom:619.560036px;}
.ya{bottom:619.740074px;}
.y38{bottom:620.100083px;}
.y105{bottom:620.460091px;}
.yeb{bottom:620.820099px;}
.y128{bottom:622.260064px;}
.y149{bottom:626.040047px;}
.y197{bottom:627.120072px;}
.y88{bottom:628.740074px;}
.y122{bottom:629.100083px;}
.y9f{bottom:632.340088px;}
.y169{bottom:637.560036px;}
.y62{bottom:640.260064px;}
.y1ac{bottom:640.440033px;}
.y37{bottom:640.800041px;}
.y104{bottom:641.160049px;}
.yea{bottom:641.520058px;}
.y148{bottom:646.740074px;}
.y127{bottom:646.920043px;}
.y196{bottom:647.820099px;}
.y9e{bottom:648.000068px;}
.y87{bottom:649.440033px;}
.y121{bottom:649.800041px;}
.y9{bottom:651.960091px;}
.y168{bottom:658.260064px;}
.y61{bottom:660.960091px;}
.y36{bottom:661.500068px;}
.y103{bottom:661.860077px;}
.ye9{bottom:662.220085px;}
.y147{bottom:667.440033px;}
.y195{bottom:669.780052px;}
.y86{bottom:670.140060px;}
.y120{bottom:670.500068px;}
.y167{bottom:678.960091px;}
.y9d{bottom:681.480079px;}
.y60{bottom:681.660049px;}
.yc0{bottom:682.200096px;}
.y102{bottom:682.560036px;}
.ye8{bottom:682.920043px;}
.y146{bottom:688.140060px;}
.y194{bottom:690.660049px;}
.y85{bottom:690.840054px;}
.y11f{bottom:691.200061px;}
.y166{bottom:699.660049px;}
.y5f{bottom:702.360077px;}
.ybf{bottom:702.900055px;}
.y35{bottom:703.260064px;}
.ye7{bottom:703.620072px;}
.y145{bottom:708.840054px;}
.y84{bottom:711.540081px;}
.y11e{bottom:711.900055px;}
.y193{bottom:712.620072px;}
.y5e{bottom:723.060070px;}
.ybe{bottom:723.600083px;}
.y34{bottom:723.960056px;}
.ye6{bottom:724.320065px;}
.y144{bottom:729.540081px;}
.y83{bottom:732.240074px;}
.y11d{bottom:732.600083px;}
.y192{bottom:733.320065px;}
.y165{bottom:741.240074px;}
.y5d{bottom:743.760064px;}
.ybd{bottom:744.300076px;}
.y33{bottom:744.660049px;}
.ye5{bottom:745.020058px;}
.y143{bottom:750.240074px;}
.y82{bottom:752.940067px;}
.y11c{bottom:753.300076px;}
.y191{bottom:755.280052px;}
.y164{bottom:761.940067px;}
.y5c{bottom:764.460056px;}
.ybc{bottom:765.000068px;}
.y32{bottom:765.360077px;}
.y81{bottom:773.640060px;}
.y11b{bottom:774.000068px;}
.y190{bottom:775.980079px;}
.y163{bottom:782.640060px;}
.y142{bottom:783.000068px;}
.y5b{bottom:785.160049px;}
.ybb{bottom:785.700061px;}
.y31{bottom:785.880066px;}
.ye4{bottom:786.420078px;}
.y80{bottom:794.340054px;}
.y11a{bottom:794.700061px;}
.y18f{bottom:797.940067px;}
.ye3{bottom:802.980079px;}
.y162{bottom:803.340054px;}
.y5a{bottom:805.860077px;}
.yba{bottom:806.400055px;}
.y30{bottom:806.580059px;}
.y7f{bottom:815.040081px;}
.y119{bottom:815.400055px;}
.y141{bottom:815.580059px;}
.y18e{bottom:818.640060px;}
.y161{bottom:824.040081px;}
.yb9{bottom:827.100083px;}
.y2f{bottom:827.280052px;}
.ye2{bottom:827.640060px;}
.y118{bottom:836.100083px;}
.y18d{bottom:840.600083px;}
.y59{bottom:841.860077px;}
.y160{bottom:844.740074px;}
.yb8{bottom:847.800076px;}
.y2e{bottom:847.980079px;}
.y140{bottom:848.340054px;}
.y7e{bottom:856.800076px;}
.y18c{bottom:861.300076px;}
.y15f{bottom:865.440067px;}
.y58{bottom:865.800076px;}
.yb7{bottom:868.500068px;}
.y2d{bottom:868.680073px;}
.y13f{bottom:869.040081px;}
.y18b{bottom:882.000068px;}
.yb6{bottom:889.200061px;}
.y2c{bottom:889.380066px;}
.y13e{bottom:889.740074px;}
.y57{bottom:898.380066px;}
.y18a{bottom:902.700061px;}
.y15e{bottom:907.200061px;}
.yb5{bottom:909.900055px;}
.y2b{bottom:910.080059px;}
.y117{bottom:910.440067px;}
.y7d{bottom:919.080059px;}
.y189{bottom:924.660049px;}
.yb4{bottom:930.600083px;}
.y2a{bottom:930.780052px;}
.y56{bottom:931.140060px;}
.y7c{bottom:939.780053px;}
.y188{bottom:945.360077px;}
.yd6{bottom:951.300076px;}
.y29{bottom:951.480079px;}
.y55{bottom:951.840054px;}
.y7b{bottom:960.480079px;}
.y187{bottom:967.320065px;}
.yd5{bottom:972.000068px;}
.y28{bottom:972.180073px;}
.y54{bottom:972.540081px;}
.y7a{bottom:981.180073px;}
.y186{bottom:988.020058px;}
.yd4{bottom:992.700061px;}
.y27{bottom:992.880066px;}
.y53{bottom:993.240074px;}
.y185{bottom:1008.900072px;}
.yd3{bottom:1013.400072px;}
.y26{bottom:1013.580059px;}
.y52{bottom:1013.940067px;}
.y8{bottom:1021.500068px;}
.y184{bottom:1030.860060px;}
.y25{bottom:1034.280069px;}
.y51{bottom:1034.640060px;}
.y183{bottom:1052.820065px;}
.y24{bottom:1054.980063px;}
.y50{bottom:1055.340070px;}
.y7{bottom:1055.520058px;}
.y182{bottom:1073.520058px;}
.y23{bottom:1075.680073px;}
.y4f{bottom:1076.040064px;}
.y6{bottom:1090.260064px;}
.y181{bottom:1095.480063px;}
.y4e{bottom:1096.740074px;}
.y5{bottom:1114.200061px;}
.y180{bottom:1116.180073px;}
.y22{bottom:1117.440067px;}
.y17f{bottom:1136.880066px;}
.y4{bottom:1138.140069px;}
.y1{bottom:1192.860064px;}
.h16{height:28.116933px;}
.h19{height:28.377099px;}
.h1a{height:28.377104px;}
.h15{height:28.377374px;}
.h12{height:28.377378px;}
.hc{height:31.202381px;}
.h14{height:39.051432px;}
.h11{height:43.216744px;}
.h1d{height:43.275106px;}
.h13{height:44.509667px;}
.h17{height:45.405303px;}
.h1b{height:46.803708px;}
.h6{height:47.903046px;}
.h5{height:47.967736px;}
.hd{height:49.257167px;}
.h3{height:51.795895px;}
.h8{height:52.068362px;}
.h4{height:52.138677px;}
.h10{height:52.419938px;}
.h9{height:59.345979px;}
.h7{height:60.857755px;}
.hf{height:62.245596px;}
.h18{height:62.245731px;}
.h1c{height:62.245735px;}
.he{height:62.245803px;}
.ha{height:62.245870px;}
.hb{height:62.245875px;}
.h2{height:62.404688px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:135.000000px;}
.xa{left:162.000000px;}
.x9{left:189.000000px;}
.x2{left:198.900003px;}
.x4{left:221.039996px;}
.x3{left:228.780001px;}
.x5{left:288.899987px;}
.x8{left:351.000000px;}
.x6{left:354.060001px;}
.x7{left:758.159981px;}
@media print{
.v2{vertical-align:-18.560060pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320068pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.062901pt;}
.ls2{letter-spacing:0.096238pt;}
.ls8{letter-spacing:0.096242pt;}
.ls9{letter-spacing:0.159444pt;}
.ls7{letter-spacing:0.159500pt;}
.ls6{letter-spacing:0.159504pt;}
.ls1{letter-spacing:0.191338pt;}
.ls4{letter-spacing:0.319088pt;}
.ls0{letter-spacing:0.319208pt;}
.ls5{letter-spacing:0.319212pt;}
.lsa{letter-spacing:21.567448pt;}
.lsc{letter-spacing:48.831330pt;}
.ws7{word-spacing:-64.002404pt;}
.ws1{word-spacing:-16.000601pt;}
.ws8{word-spacing:-14.720600pt;}
.ws2{word-spacing:-13.280500pt;}
.ws6{word-spacing:-12.000500pt;}
.ws4{word-spacing:-10.720400pt;}
.ws3{word-spacing:-8.640330pt;}
.ws5{word-spacing:-6.496252pt;}
.ws0{word-spacing:0.000000pt;}
._26{margin-left:-6.992615pt;}
._27{margin-left:-5.846726pt;}
._c{margin-left:-4.280034pt;}
._3{margin-left:-3.355837pt;}
._2{margin-left:-2.006178pt;}
._1{margin-left:-0.956196pt;}
._0{width:0.939388pt;}
._5{width:2.234334pt;}
._6{width:3.262373pt;}
._b{width:4.685118pt;}
._18{width:5.670963pt;}
._f{width:7.221521pt;}
._a{width:8.329813pt;}
._9{width:9.506357pt;}
._1d{width:10.951661pt;}
._25{width:11.949757pt;}
._11{width:12.976930pt;}
._10{width:14.111588pt;}
._1b{width:15.026007pt;}
._1e{width:16.915783pt;}
._17{width:17.850421pt;}
._1a{width:19.113218pt;}
._d{width:20.022002pt;}
._e{width:20.946440pt;}
._19{width:22.525988pt;}
._1f{width:23.892648pt;}
._4{width:24.971688pt;}
._13{width:25.966225pt;}
._14{width:27.314218pt;}
._16{width:28.998089pt;}
._12{width:30.731904pt;}
._2b{width:31.837593pt;}
._7{width:32.776231pt;}
._8{width:33.905786pt;}
._15{width:34.832066pt;}
._20{width:37.196045pt;}
._21{width:38.398192pt;}
._22{width:39.710741pt;}
._29{width:40.658970pt;}
._28{width:41.805173pt;}
._2f{width:42.694148pt;}
._2e{width:43.584387pt;}
._2d{width:45.688216pt;}
._2c{width:50.620151pt;}
._1c{width:52.497972pt;}
._24{width:53.945526pt;}
._23{width:55.036067pt;}
._2a{width:60.813034pt;}
.fs4{font-size:32.001240pt;}
.fs5{font-size:34.561320pt;}
.fs3{font-size:42.881600pt;}
.fs6{font-size:48.002000pt;}
.fs1{font-size:53.122000pt;}
.fs2{font-size:58.882400pt;}
.fs0{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.880005pt;}
.y2{bottom:68.000000pt;}
.y21{bottom:98.880066pt;}
.y13d{bottom:100.320069pt;}
.y17e{bottom:103.520081pt;}
.y9c{bottom:104.320069pt;}
.y1ab{bottom:107.040039pt;}
.y20{bottom:114.240052pt;}
.y9b{bottom:115.200074pt;}
.y17d{bottom:115.840088pt;}
.y13c{bottom:118.720032pt;}
.ye1{bottom:118.880066pt;}
.y79{bottom:119.680054pt;}
.yd2{bottom:120.640076pt;}
.y1aa{bottom:125.440064pt;}
.y4d{bottom:129.600037pt;}
.y126{bottom:130.560059pt;}
.yd1{bottom:131.520081pt;}
.y101{bottom:134.240052pt;}
.y1f{bottom:135.040039pt;}
.y78{bottom:136.000061pt;}
.y13b{bottom:137.120057pt;}
.y1a9{bottom:143.840088pt;}
.yb3{bottom:144.960083pt;}
.y1e{bottom:145.920044pt;}
.y100{bottom:146.560059pt;}
.y77{bottom:146.720032pt;}
.y9a{bottom:148.480042pt;}
.y4c{bottom:150.400086pt;}
.yd0{bottom:151.360047pt;}
.y13a{bottom:155.520081pt;}
.y17c{bottom:155.840088pt;}
.y116{bottom:160.160035pt;}
.y4b{bottom:161.120057pt;}
.y1a8{bottom:162.240052pt;}
.ycf{bottom:163.680054pt;}
.yb2{bottom:164.800049pt;}
.yff{bottom:165.280030pt;}
.y15d{bottom:165.600037pt;}
.ye0{bottom:165.760071pt;}
.y1d{bottom:166.560059pt;}
.y76{bottom:166.720032pt;}
.y99{bottom:172.000061pt;}
.y17b{bottom:174.240052pt;}
.ydf{bottom:178.080079pt;}
.y1c{bottom:179.040039pt;}
.yb1{bottom:180.160035pt;}
.y115{bottom:180.960083pt;}
.y15c{bottom:181.120057pt;}
.y4a{bottom:181.920044pt;}
.yfe{bottom:183.680054pt;}
.y139{bottom:184.480042pt;}
.y98{bottom:190.400086pt;}
.yb0{bottom:192.480042pt;}
.y15b{bottom:193.440064pt;}
.y17a{bottom:193.760071pt;}
.y114{bottom:197.280030pt;}
.y49{bottom:198.240052pt;}
.y1a7{bottom:199.360047pt;}
.yfd{bottom:202.080079pt;}
.y138{bottom:202.880066pt;}
.y75{bottom:208.800049pt;}
.y1b{bottom:209.600037pt;}
.y113{bottom:209.760071pt;}
.y48{bottom:210.720032pt;}
.y179{bottom:212.160035pt;}
.yaf{bottom:212.800049pt;}
.yfc{bottom:220.480042pt;}
.y137{bottom:221.280030pt;}
.y15a{bottom:222.400086pt;}
.y74{bottom:227.200074pt;}
.y1a{bottom:228.000061pt;}
.y47{bottom:229.600037pt;}
.yae{bottom:231.200074pt;}
.y112{bottom:235.520081pt;}
.y1a6{bottom:236.480042pt;}
.yfb{bottom:238.880066pt;}
.y136{bottom:239.680054pt;}
.y159{bottom:240.800049pt;}
.y97{bottom:245.600037pt;}
.yde{bottom:245.920044pt;}
.y19{bottom:246.400086pt;}
.y46{bottom:248.000061pt;}
.yad{bottom:249.600037pt;}
.y178{bottom:253.280030pt;}
.y111{bottom:253.920044pt;}
.y73{bottom:256.320069pt;}
.yce{bottom:256.800049pt;}
.yfa{bottom:257.280030pt;}
.y135{bottom:258.080079pt;}
.y96{bottom:264.000061pt;}
.y18{bottom:264.800049pt;}
.y45{bottom:266.400086pt;}
.y158{bottom:269.920044pt;}
.y110{bottom:272.320069pt;}
.y1a5{bottom:273.440064pt;}
.y72{bottom:274.720032pt;}
.ycd{bottom:275.200074pt;}
.yf9{bottom:275.680054pt;}
.y134{bottom:276.480042pt;}
.y95{bottom:282.400086pt;}
.ydd{bottom:282.880066pt;}
.y17{bottom:283.200074pt;}
.y44{bottom:284.800049pt;}
.yac{bottom:286.720032pt;}
.y157{bottom:288.320069pt;}
.y177{bottom:290.400086pt;}
.y10f{bottom:290.720032pt;}
.y1a4{bottom:291.840088pt;}
.y71{bottom:293.120057pt;}
.ycc{bottom:293.600037pt;}
.yf8{bottom:294.080079pt;}
.y133{bottom:294.880066pt;}
.y94{bottom:300.800049pt;}
.ydc{bottom:301.280030pt;}
.y16{bottom:301.600037pt;}
.yab{bottom:305.120057pt;}
.y156{bottom:306.720032pt;}
.y176{bottom:308.800049pt;}
.y10e{bottom:309.120057pt;}
.y1a3{bottom:311.360047pt;}
.y70{bottom:311.520081pt;}
.ycb{bottom:312.000061pt;}
.yf7{bottom:312.480042pt;}
.y132{bottom:313.280030pt;}
.y43{bottom:316.800049pt;}
.y93{bottom:319.200074pt;}
.ydb{bottom:319.680054pt;}
.y15{bottom:320.000061pt;}
.y155{bottom:325.120057pt;}
.y175{bottom:327.200074pt;}
.y10d{bottom:327.520081pt;}
.y6f{bottom:329.920044pt;}
.yca{bottom:330.400086pt;}
.yf6{bottom:330.880066pt;}
.y92{bottom:337.600037pt;}
.yda{bottom:338.080079pt;}
.y14{bottom:338.400086pt;}
.yaa{bottom:342.080079pt;}
.y131{bottom:342.400086pt;}
.y154{bottom:343.520081pt;}
.y174{bottom:345.600037pt;}
.y42{bottom:345.920044pt;}
.y6e{bottom:348.320069pt;}
.yc9{bottom:348.800049pt;}
.yf5{bottom:349.280030pt;}
.y1a2{bottom:349.440064pt;}
.y91{bottom:356.000061pt;}
.yd9{bottom:356.480042pt;}
.y13{bottom:356.800049pt;}
.ya9{bottom:360.480042pt;}
.y153{bottom:361.920044pt;}
.y173{bottom:364.000061pt;}
.y10c{bottom:364.320069pt;}
.y6d{bottom:366.720032pt;}
.yc8{bottom:367.200074pt;}
.yf4{bottom:367.680054pt;}
.y1a1{bottom:367.840088pt;}
.y130{bottom:371.520081pt;}
.y90{bottom:374.400086pt;}
.y41{bottom:374.880066pt;}
.y12{bottom:375.200074pt;}
.ya8{bottom:378.880066pt;}
.y152{bottom:380.320069pt;}
.y172{bottom:382.400086pt;}
.y10b{bottom:382.720032pt;}
.y6c{bottom:385.120057pt;}
.yc7{bottom:385.600037pt;}
.yf3{bottom:386.080079pt;}
.y1a0{bottom:387.360047pt;}
.y40{bottom:393.280030pt;}
.y11{bottom:393.600037pt;}
.ya7{bottom:397.280030pt;}
.y151{bottom:398.720032pt;}
.y12f{bottom:400.480042pt;}
.y171{bottom:400.800049pt;}
.y10a{bottom:401.120057pt;}
.y6b{bottom:403.520081pt;}
.yc6{bottom:404.000061pt;}
.y19f{bottom:405.760071pt;}
.y8f{bottom:411.520081pt;}
.y3f{bottom:411.680054pt;}
.y10{bottom:412.000061pt;}
.ya6{bottom:415.680054pt;}
.y150{bottom:417.120057pt;}
.y170{bottom:419.200074pt;}
.y109{bottom:419.520081pt;}
.y6a{bottom:421.920044pt;}
.yc5{bottom:422.400086pt;}
.yf2{bottom:423.040039pt;}
.y19e{bottom:424.160035pt;}
.y12e{bottom:429.600037pt;}
.y8e{bottom:429.920044pt;}
.y3e{bottom:430.080079pt;}
.yf{bottom:430.400086pt;}
.ya5{bottom:434.080079pt;}
.y14f{bottom:435.520081pt;}
.y16f{bottom:437.600037pt;}
.y69{bottom:440.320069pt;}
.yc4{bottom:440.800049pt;}
.yf1{bottom:441.440064pt;}
.y19d{bottom:443.680054pt;}
.y12d{bottom:448.000061pt;}
.y8d{bottom:448.320069pt;}
.y3d{bottom:448.480042pt;}
.ye{bottom:448.800049pt;}
.ya4{bottom:452.480042pt;}
.y14e{bottom:453.920044pt;}
.y16e{bottom:456.000061pt;}
.y108{bottom:456.480042pt;}
.y1ad{bottom:458.400086pt;}
.y68{bottom:458.720032pt;}
.yc3{bottom:459.200074pt;}
.yf0{bottom:459.840088pt;}
.y19c{bottom:462.080079pt;}
.y12c{bottom:466.400086pt;}
.y8c{bottom:466.720032pt;}
.y3c{bottom:466.880066pt;}
.yd{bottom:467.200074pt;}
.ya3{bottom:470.880066pt;}
.y16d{bottom:474.400086pt;}
.y67{bottom:477.120057pt;}
.yc2{bottom:477.600037pt;}
.yef{bottom:478.240052pt;}
.y19b{bottom:481.600037pt;}
.y14d{bottom:482.880066pt;}
.y12b{bottom:484.800049pt;}
.y8b{bottom:485.120057pt;}
.y3b{bottom:485.280030pt;}
.yc{bottom:485.600037pt;}
.ya2{bottom:489.280030pt;}
.y16c{bottom:492.800049pt;}
.y66{bottom:495.520081pt;}
.yc1{bottom:496.000061pt;}
.yee{bottom:496.640076pt;}
.y19a{bottom:500.000061pt;}
.y14c{bottom:501.280030pt;}
.y12a{bottom:503.200074pt;}
.y8a{bottom:503.520081pt;}
.yd8{bottom:503.680054pt;}
.y125{bottom:504.000061pt;}
.ya1{bottom:507.680054pt;}
.y65{bottom:513.920044pt;}
.y3a{bottom:514.400086pt;}
.y107{bottom:514.720032pt;}
.yed{bottom:515.040039pt;}
.yb{bottom:518.720032pt;}
.y199{bottom:519.520081pt;}
.y14b{bottom:519.680054pt;}
.y129{bottom:521.600037pt;}
.y89{bottom:521.920044pt;}
.yd7{bottom:522.080079pt;}
.y124{bottom:522.400086pt;}
.ya0{bottom:526.080079pt;}
.y16b{bottom:529.920044pt;}
.y64{bottom:532.320069pt;}
.y39{bottom:532.800049pt;}
.y106{bottom:533.120057pt;}
.yec{bottom:533.440064pt;}
.y198{bottom:537.920044pt;}
.y14a{bottom:538.080079pt;}
.y123{bottom:540.800049pt;}
.y16a{bottom:548.320069pt;}
.y63{bottom:550.720032pt;}
.ya{bottom:550.880066pt;}
.y38{bottom:551.200074pt;}
.y105{bottom:551.520081pt;}
.yeb{bottom:551.840088pt;}
.y128{bottom:553.120057pt;}
.y149{bottom:556.480042pt;}
.y197{bottom:557.440064pt;}
.y88{bottom:558.880066pt;}
.y122{bottom:559.200074pt;}
.y9f{bottom:562.080079pt;}
.y169{bottom:566.720032pt;}
.y62{bottom:569.120057pt;}
.y1ac{bottom:569.280030pt;}
.y37{bottom:569.600037pt;}
.y104{bottom:569.920044pt;}
.yea{bottom:570.240052pt;}
.y148{bottom:574.880066pt;}
.y127{bottom:575.040039pt;}
.y196{bottom:575.840088pt;}
.y9e{bottom:576.000061pt;}
.y87{bottom:577.280030pt;}
.y121{bottom:577.600037pt;}
.y9{bottom:579.520081pt;}
.y168{bottom:585.120057pt;}
.y61{bottom:587.520081pt;}
.y36{bottom:588.000061pt;}
.y103{bottom:588.320069pt;}
.ye9{bottom:588.640076pt;}
.y147{bottom:593.280030pt;}
.y195{bottom:595.360047pt;}
.y86{bottom:595.680054pt;}
.y120{bottom:596.000061pt;}
.y167{bottom:603.520081pt;}
.y9d{bottom:605.760071pt;}
.y60{bottom:605.920044pt;}
.yc0{bottom:606.400086pt;}
.y102{bottom:606.720032pt;}
.ye8{bottom:607.040039pt;}
.y146{bottom:611.680054pt;}
.y194{bottom:613.920044pt;}
.y85{bottom:614.080048pt;}
.y11f{bottom:614.400055pt;}
.y166{bottom:621.920044pt;}
.y5f{bottom:624.320069pt;}
.ybf{bottom:624.800049pt;}
.y35{bottom:625.120057pt;}
.ye7{bottom:625.440064pt;}
.y145{bottom:630.080048pt;}
.y84{bottom:632.480072pt;}
.y11e{bottom:632.800049pt;}
.y193{bottom:633.440064pt;}
.y5e{bottom:642.720063pt;}
.ybe{bottom:643.200074pt;}
.y34{bottom:643.520050pt;}
.ye6{bottom:643.840058pt;}
.y144{bottom:648.480072pt;}
.y83{bottom:650.880066pt;}
.y11d{bottom:651.200074pt;}
.y192{bottom:651.840058pt;}
.y165{bottom:658.880066pt;}
.y5d{bottom:661.120057pt;}
.ybd{bottom:661.600068pt;}
.y33{bottom:661.920044pt;}
.ye5{bottom:662.240052pt;}
.y143{bottom:666.880066pt;}
.y82{bottom:669.280060pt;}
.y11c{bottom:669.600068pt;}
.y191{bottom:671.360047pt;}
.y164{bottom:677.280060pt;}
.y5c{bottom:679.520050pt;}
.ybc{bottom:680.000061pt;}
.y32{bottom:680.320069pt;}
.y81{bottom:687.680054pt;}
.y11b{bottom:688.000061pt;}
.y190{bottom:689.760071pt;}
.y163{bottom:695.680054pt;}
.y142{bottom:696.000061pt;}
.y5b{bottom:697.920044pt;}
.ybb{bottom:698.400055pt;}
.y31{bottom:698.560059pt;}
.ye4{bottom:699.040070pt;}
.y80{bottom:706.080048pt;}
.y11a{bottom:706.400055pt;}
.y18f{bottom:709.280060pt;}
.ye3{bottom:713.760071pt;}
.y162{bottom:714.080048pt;}
.y5a{bottom:716.320069pt;}
.yba{bottom:716.800049pt;}
.y30{bottom:716.960053pt;}
.y7f{bottom:724.480072pt;}
.y119{bottom:724.800049pt;}
.y141{bottom:724.960053pt;}
.y18e{bottom:727.680054pt;}
.y161{bottom:732.480072pt;}
.yb9{bottom:735.200074pt;}
.y2f{bottom:735.360047pt;}
.ye2{bottom:735.680054pt;}
.y118{bottom:743.200074pt;}
.y18d{bottom:747.200074pt;}
.y59{bottom:748.320069pt;}
.y160{bottom:750.880066pt;}
.yb8{bottom:753.600068pt;}
.y2e{bottom:753.760071pt;}
.y140{bottom:754.080048pt;}
.y7e{bottom:761.600068pt;}
.y18c{bottom:765.600068pt;}
.y15f{bottom:769.280060pt;}
.y58{bottom:769.600068pt;}
.yb7{bottom:772.000061pt;}
.y2d{bottom:772.160065pt;}
.y13f{bottom:772.480072pt;}
.y18b{bottom:784.000061pt;}
.yb6{bottom:790.400055pt;}
.y2c{bottom:790.560059pt;}
.y13e{bottom:790.880066pt;}
.y57{bottom:798.560059pt;}
.y18a{bottom:802.400055pt;}
.y15e{bottom:806.400055pt;}
.yb5{bottom:808.800049pt;}
.y2b{bottom:808.960053pt;}
.y117{bottom:809.280060pt;}
.y7d{bottom:816.960053pt;}
.y189{bottom:821.920044pt;}
.yb4{bottom:827.200074pt;}
.y2a{bottom:827.360047pt;}
.y56{bottom:827.680054pt;}
.y7c{bottom:835.360047pt;}
.y188{bottom:840.320069pt;}
.yd6{bottom:845.600068pt;}
.y29{bottom:845.760071pt;}
.y55{bottom:846.080048pt;}
.y7b{bottom:853.760071pt;}
.y187{bottom:859.840058pt;}
.yd5{bottom:864.000061pt;}
.y28{bottom:864.160065pt;}
.y54{bottom:864.480072pt;}
.y7a{bottom:872.160065pt;}
.y186{bottom:878.240052pt;}
.yd4{bottom:882.400055pt;}
.y27{bottom:882.560059pt;}
.y53{bottom:882.880066pt;}
.y185{bottom:896.800064pt;}
.yd3{bottom:900.800064pt;}
.y26{bottom:900.960053pt;}
.y52{bottom:901.280060pt;}
.y8{bottom:908.000061pt;}
.y184{bottom:916.320054pt;}
.y25{bottom:919.360062pt;}
.y51{bottom:919.680054pt;}
.y183{bottom:935.840058pt;}
.y24{bottom:937.760056pt;}
.y50{bottom:938.080063pt;}
.y7{bottom:938.240052pt;}
.y182{bottom:954.240052pt;}
.y23{bottom:956.160065pt;}
.y4f{bottom:956.480057pt;}
.y6{bottom:969.120057pt;}
.y181{bottom:973.760056pt;}
.y4e{bottom:974.880066pt;}
.y5{bottom:990.400055pt;}
.y180{bottom:992.160065pt;}
.y22{bottom:993.280060pt;}
.y17f{bottom:1010.560059pt;}
.y4{bottom:1011.680062pt;}
.y1{bottom:1060.320057pt;}
.h16{height:24.992830pt;}
.h19{height:25.224088pt;}
.h1a{height:25.224092pt;}
.h15{height:25.224332pt;}
.h12{height:25.224336pt;}
.hc{height:27.735450pt;}
.h14{height:34.712384pt;}
.h11{height:38.414884pt;}
.h1d{height:38.466761pt;}
.h13{height:39.564148pt;}
.h17{height:40.360270pt;}
.h1b{height:41.603296pt;}
.h6{height:42.580486pt;}
.h5{height:42.637988pt;}
.hd{height:43.784148pt;}
.h3{height:46.040796pt;}
.h8{height:46.282988pt;}
.h4{height:46.345491pt;}
.h10{height:46.595500pt;}
.h9{height:52.751981pt;}
.h7{height:54.095782pt;}
.hf{height:55.329419pt;}
.h18{height:55.329539pt;}
.h1c{height:55.329543pt;}
.he{height:55.329603pt;}
.ha{height:55.329663pt;}
.hb{height:55.329667pt;}
.h2{height:55.470834pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.000000pt;}
.xa{left:144.000000pt;}
.x9{left:168.000000pt;}
.x2{left:176.800003pt;}
.x4{left:196.479996pt;}
.x3{left:203.360001pt;}
.x5{left:256.799988pt;}
.x8{left:312.000000pt;}
.x6{left:314.720001pt;}
.x7{left:673.919983pt;}
}




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