
    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_a7fa432ba674bf32a4ce21ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_65407d3e38c49638e14f6c0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.043945;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_5320e2b17bfc0600f666b40b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_986f1dcee67cb13c74fdc8cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_7a330089670c31aede45d54f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.842285;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.ls3{letter-spacing:0.024000px;}
.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:-51.348000px;}
.ws3{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws5{word-spacing:-11.880000px;}
.ws2{word-spacing:-10.004280px;}
.ws4{word-spacing:-6.926040px;}
.ws1{word-spacing:-0.032400px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-9.813000px;}
._2c{margin-left:-8.611500px;}
._3{margin-left:-7.492800px;}
._11{margin-left:-6.183900px;}
._12{margin-left:-5.149800px;}
._2{margin-left:-4.063500px;}
._0{margin-left:-3.040200px;}
._1{margin-left:-1.140300px;}
._6{width:1.005000px;}
._4{width:2.522400px;}
._5{width:3.974700px;}
._9{width:5.332800px;}
._d{width:6.348300px;}
._a{width:7.359000px;}
._b{width:8.863800px;}
._c{width:10.269600px;}
._13{width:11.416500px;}
._10{width:12.672000px;}
._7{width:15.734400px;}
._8{width:16.836600px;}
._23{width:17.836800px;}
._18{width:18.876000px;}
._e{width:20.552400px;}
._f{width:21.667800px;}
._19{width:23.448300px;}
._15{width:24.576900px;}
._17{width:26.059800px;}
._1f{width:27.238200px;}
._16{width:28.419600px;}
._29{width:29.554500px;}
._1e{width:31.475400px;}
._1a{width:32.485200px;}
._1b{width:33.567600px;}
._14{width:34.696200px;}
._28{width:36.003000px;}
._26{width:37.639800px;}
._27{width:39.243600px;}
._1c{width:42.015600px;}
._1d{width:43.956000px;}
._20{width:46.061400px;}
._21{width:47.519700px;}
._2b{width:48.891300px;}
._2d{width:50.015400px;}
._2a{width:51.051000px;}
._22{width:52.529400px;}
._24{width:111.507000px;}
.fc1{color:rgb(19,16,15);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.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:89.291400px;}
.y1a0{bottom:125.886900px;}
.y1b6{bottom:127.386900px;}
.y136{bottom:128.136900px;}
.y76{bottom:129.636900px;}
.y15f{bottom:129.644400px;}
.y1cf{bottom:131.136900px;}
.ycb{bottom:132.636900px;}
.y1e8{bottom:134.886900px;}
.yb2{bottom:136.386900px;}
.y4d{bottom:137.127900px;}
.y186{bottom:139.377900px;}
.yf2{bottom:139.902900px;}
.y9b{bottom:140.136900px;}
.y25{bottom:140.783400px;}
.y11e{bottom:141.636900px;}
.y207{bottom:142.386900px;}
.y10d{bottom:144.636900px;}
.y1b5{bottom:146.136900px;}
.y135{bottom:146.886900px;}
.y75{bottom:148.386900px;}
.y15e{bottom:148.394400px;}
.y1ce{bottom:149.886900px;}
.yca{bottom:151.386900px;}
.y1e7{bottom:153.636900px;}
.yb1{bottom:155.136900px;}
.y4c{bottom:155.877900px;}
.y24{bottom:156.983400px;}
.y185{bottom:158.127900px;}
.yf1{bottom:158.652900px;}
.y9a{bottom:158.886900px;}
.y11d{bottom:160.386900px;}
.y206{bottom:161.136900px;}
.y10c{bottom:163.386900px;}
.y1b4{bottom:164.886900px;}
.y134{bottom:165.636900px;}
.y74{bottom:167.136900px;}
.y15d{bottom:167.144400px;}
.y199{bottom:168.636900px;}
.yc9{bottom:170.136900px;}
.y1e6{bottom:172.386900px;}
.yb0{bottom:173.886900px;}
.y4b{bottom:174.627900px;}
.y184{bottom:176.877900px;}
.yf0{bottom:177.402900px;}
.y99{bottom:177.636900px;}
.y23{bottom:177.678900px;}
.y11c{bottom:179.136900px;}
.y205{bottom:179.886900px;}
.y10b{bottom:182.136900px;}
.y1b3{bottom:183.636900px;}
.y133{bottom:184.386900px;}
.y73{bottom:185.886900px;}
.y15c{bottom:185.894400px;}
.y198{bottom:187.386900px;}
.yc8{bottom:188.886900px;}
.y1e5{bottom:191.136900px;}
.yaf{bottom:192.636900px;}
.y22{bottom:193.878900px;}
.y4a{bottom:194.877900px;}
.yef{bottom:196.152900px;}
.y98{bottom:196.386900px;}
.y183{bottom:197.127900px;}
.y11b{bottom:197.886900px;}
.y204{bottom:198.636900px;}
.y10a{bottom:200.886900px;}
.y1b2{bottom:202.386900px;}
.y72{bottom:204.636900px;}
.y15b{bottom:204.644400px;}
.y197{bottom:206.136900px;}
.y1cd{bottom:206.886900px;}
.yc7{bottom:207.636900px;}
.yae{bottom:211.386900px;}
.y49{bottom:213.627900px;}
.y1e4{bottom:214.386900px;}
.y97{bottom:215.136900px;}
.y182{bottom:215.877900px;}
.yee{bottom:216.402900px;}
.y11a{bottom:216.636900px;}
.y109{bottom:219.636900px;}
.y1b1{bottom:221.136900px;}
.y203{bottom:221.886900px;}
.y71{bottom:223.386900px;}
.y15a{bottom:223.394400px;}
.y196{bottom:224.886900px;}
.yc6{bottom:226.386900px;}
.yad{bottom:230.136900px;}
.y193{bottom:231.636900px;}
.y48{bottom:232.377900px;}
.y1e3{bottom:233.136900px;}
.y181{bottom:234.627900px;}
.yed{bottom:235.152900px;}
.y96{bottom:235.386900px;}
.y12e{bottom:236.886900px;}
.y108{bottom:238.386900px;}
.y19f{bottom:239.886900px;}
.y202{bottom:240.636900px;}
.y1b0{bottom:241.386900px;}
.y70{bottom:242.136900px;}
.y1ba{bottom:242.886900px;}
.y195{bottom:243.636900px;}
.y159{bottom:243.644400px;}
.y1d4{bottom:244.386900px;}
.yc5{bottom:245.136900px;}
.y21{bottom:247.152900px;}
.yac{bottom:248.886900px;}
.y192{bottom:250.386900px;}
.y47{bottom:251.127900px;}
.y1e2{bottom:251.886900px;}
.y180{bottom:253.377900px;}
.yec{bottom:253.902900px;}
.y95{bottom:254.136900px;}
.y12d{bottom:255.636900px;}
.y107{bottom:257.136900px;}
.y19e{bottom:258.636900px;}
.y201{bottom:259.386900px;}
.y1af{bottom:260.136900px;}
.y132{bottom:260.886900px;}
.y6f{bottom:262.386900px;}
.y158{bottom:262.394400px;}
.yc4{bottom:263.886900px;}
.y20{bottom:265.902900px;}
.yab{bottom:267.636900px;}
.y191{bottom:269.136900px;}
.y46{bottom:269.877900px;}
.y17f{bottom:272.127900px;}
.yeb{bottom:272.652900px;}
.y94{bottom:272.886900px;}
.y12c{bottom:274.386900px;}
.y1e1{bottom:275.136900px;}
.y106{bottom:275.886900px;}
.y19d{bottom:277.386900px;}
.y1ae{bottom:278.886900px;}
.y131{bottom:279.636900px;}
.y6e{bottom:281.136900px;}
.y157{bottom:281.144400px;}
.yc3{bottom:282.636900px;}
.yaa{bottom:286.386900px;}
.y190{bottom:287.886900px;}
.y45{bottom:288.627900px;}
.y17e{bottom:290.877900px;}
.yea{bottom:291.402900px;}
.y93{bottom:291.636900px;}
.y12b{bottom:293.136900px;}
.y1f{bottom:293.652900px;}
.y1e0{bottom:293.886900px;}
.y105{bottom:294.636900px;}
.y19c{bottom:296.136900px;}
.y1ad{bottom:297.636900px;}
.y130{bottom:298.386900px;}
.y6d{bottom:299.886900px;}
.y156{bottom:299.894400px;}
.yc2{bottom:301.386900px;}
.ya9{bottom:306.636900px;}
.y44{bottom:307.377900px;}
.y17d{bottom:309.627900px;}
.ye9{bottom:310.152900px;}
.y92{bottom:310.386900px;}
.y12a{bottom:311.886900px;}
.y1e{bottom:312.402900px;}
.y1df{bottom:312.636900px;}
.y104{bottom:313.386900px;}
.y19b{bottom:314.886900px;}
.y1ac{bottom:316.386900px;}
.y12f{bottom:317.136900px;}
.y6c{bottom:318.636900px;}
.y155{bottom:318.644400px;}
.yc1{bottom:320.136900px;}
.y200{bottom:324.636900px;}
.ya8{bottom:325.386900px;}
.y21f{bottom:325.902900px;}
.y43{bottom:326.127900px;}
.y17c{bottom:328.377900px;}
.ye8{bottom:328.902900px;}
.y91{bottom:330.636900px;}
.y1d{bottom:331.152900px;}
.y103{bottom:333.636900px;}
.y1ab{bottom:335.136900px;}
.y1de{bottom:335.886900px;}
.y6b{bottom:337.386900px;}
.y154{bottom:337.394400px;}
.yc0{bottom:338.886900px;}
.y1ff{bottom:343.386900px;}
.ya7{bottom:344.136900px;}
.y21e{bottom:344.652900px;}
.y42{bottom:344.877900px;}
.y17b{bottom:348.627900px;}
.ye7{bottom:349.152900px;}
.y90{bottom:349.386900px;}
.y1c{bottom:349.902900px;}
.y102{bottom:352.386900px;}
.y1aa{bottom:353.886900px;}
.y1dd{bottom:354.636900px;}
.y6a{bottom:356.136900px;}
.y153{bottom:356.144400px;}
.ybf{bottom:357.636900px;}
.ya6{bottom:362.886900px;}
.y41{bottom:363.627900px;}
.y21d{bottom:364.902900px;}
.y1fe{bottom:366.636900px;}
.y17a{bottom:367.377900px;}
.ye6{bottom:367.902900px;}
.y8f{bottom:368.136900px;}
.y1b{bottom:368.652900px;}
.y101{bottom:371.136900px;}
.y1a9{bottom:372.636900px;}
.y1dc{bottom:373.386900px;}
.y69{bottom:374.886900px;}
.y152{bottom:374.894400px;}
.ybe{bottom:376.386900px;}
.y129{bottom:377.136900px;}
.ya5{bottom:381.636900px;}
.y40{bottom:382.377900px;}
.y18f{bottom:383.136900px;}
.y21c{bottom:383.652900px;}
.y1fd{bottom:385.386900px;}
.y179{bottom:386.127900px;}
.ye5{bottom:386.652900px;}
.y8e{bottom:386.886900px;}
.y1a{bottom:387.402900px;}
.y100{bottom:389.886900px;}
.y1a8{bottom:391.386900px;}
.y68{bottom:393.636900px;}
.y151{bottom:393.644400px;}
.ybd{bottom:395.136900px;}
.y1d3{bottom:396.636900px;}
.ya4{bottom:400.386900px;}
.y3f{bottom:401.127900px;}
.y18e{bottom:401.886900px;}
.y21b{bottom:402.402900px;}
.y1fc{bottom:404.136900px;}
.y178{bottom:404.877900px;}
.ye4{bottom:405.402900px;}
.y119{bottom:405.636900px;}
.y19{bottom:406.152900px;}
.y8d{bottom:407.136900px;}
.yff{bottom:408.636900px;}
.y1a7{bottom:410.136900px;}
.y67{bottom:412.386900px;}
.y150{bottom:412.394400px;}
.ybc{bottom:413.886900px;}
.y128{bottom:415.386900px;}
.ya3{bottom:419.136900px;}
.y3e{bottom:419.877900px;}
.y18d{bottom:420.636900px;}
.y21a{bottom:421.152900px;}
.y1fb{bottom:422.886900px;}
.y177{bottom:423.627900px;}
.ye3{bottom:424.152900px;}
.y118{bottom:424.386900px;}
.y18{bottom:424.902900px;}
.y8c{bottom:425.886900px;}
.yfe{bottom:427.386900px;}
.y1a6{bottom:428.886900px;}
.y66{bottom:431.136900px;}
.y14f{bottom:431.144400px;}
.ybb{bottom:432.636900px;}
.y127{bottom:434.136900px;}
.y18c{bottom:439.386900px;}
.y219{bottom:439.902900px;}
.y3d{bottom:440.127900px;}
.y1fa{bottom:441.636900px;}
.y176{bottom:442.377900px;}
.ye2{bottom:442.902900px;}
.y117{bottom:443.136900px;}
.y17{bottom:443.652900px;}
.y8b{bottom:444.636900px;}
.yfd{bottom:446.136900px;}
.ya2{bottom:446.886900px;}
.y1a5{bottom:447.636900px;}
.y65{bottom:449.886900px;}
.y14e{bottom:449.894400px;}
.yba{bottom:451.386900px;}
.y126{bottom:452.886900px;}
.y18b{bottom:458.136900px;}
.y218{bottom:458.652900px;}
.y3c{bottom:458.877900px;}
.y175{bottom:461.127900px;}
.ye1{bottom:461.652900px;}
.y116{bottom:461.886900px;}
.y16{bottom:462.402900px;}
.y8a{bottom:463.386900px;}
.yfc{bottom:464.886900px;}
.y1a4{bottom:466.386900px;}
.y64{bottom:468.636900px;}
.yb9{bottom:470.136900px;}
.y14d{bottom:470.144400px;}
.y125{bottom:471.636900px;}
.y19a{bottom:473.886900px;}
.y1db{bottom:476.136900px;}
.y18a{bottom:476.886900px;}
.y217{bottom:477.402900px;}
.y3b{bottom:477.627900px;}
.y174{bottom:479.877900px;}
.ye0{bottom:480.402900px;}
.y115{bottom:480.636900px;}
.y15{bottom:481.152900px;}
.y89{bottom:482.136900px;}
.yfb{bottom:483.636900px;}
.y1a3{bottom:485.136900px;}
.y63{bottom:487.386900px;}
.ya1{bottom:488.136900px;}
.yb8{bottom:488.886900px;}
.y14c{bottom:488.894400px;}
.y124{bottom:490.386900px;}
.y1da{bottom:494.886900px;}
.y189{bottom:495.636900px;}
.y216{bottom:496.152900px;}
.y3a{bottom:496.377900px;}
.y173{bottom:498.627900px;}
.ydf{bottom:499.152900px;}
.y114{bottom:499.386900px;}
.y14{bottom:499.902900px;}
.y88{bottom:502.386900px;}
.y1a2{bottom:503.886900px;}
.y1bb{bottom:506.136900px;}
.y62{bottom:507.636900px;}
.y14b{bottom:507.644400px;}
.y123{bottom:509.136900px;}
.y1d9{bottom:513.636900px;}
.y215{bottom:514.902900px;}
.y39{bottom:515.127900px;}
.y113{bottom:518.136900px;}
.y13{bottom:518.652900px;}
.y172{bottom:518.877900px;}
.yde{bottom:519.402900px;}
.y1cc{bottom:519.636900px;}
.y87{bottom:521.136900px;}
.yfa{bottom:522.636900px;}
.y188{bottom:523.386900px;}
.y1f9{bottom:525.636900px;}
.y61{bottom:526.386900px;}
.y14a{bottom:526.394400px;}
.y1d0{bottom:527.136900px;}
.y122{bottom:527.886900px;}
.y1d8{bottom:532.386900px;}
.y214{bottom:533.652900px;}
.y38{bottom:533.877900px;}
.y112{bottom:536.886900px;}
.y12{bottom:537.402900px;}
.y171{bottom:537.627900px;}
.ydd{bottom:538.152900px;}
.y1cb{bottom:538.386900px;}
.y86{bottom:539.886900px;}
.yf9{bottom:541.386900px;}
.y1f8{bottom:544.386900px;}
.y60{bottom:545.136900px;}
.y149{bottom:545.144400px;}
.y121{bottom:546.636900px;}
.y213{bottom:552.402900px;}
.y37{bottom:552.627900px;}
.y111{bottom:555.636900px;}
.y11{bottom:556.152900px;}
.y170{bottom:556.377900px;}
.ydc{bottom:556.902900px;}
.y1ca{bottom:557.136900px;}
.y85{bottom:558.636900px;}
.yf8{bottom:560.136900px;}
.y5f{bottom:563.886900px;}
.y148{bottom:563.894400px;}
.y187{bottom:564.636900px;}
.y120{bottom:565.386900px;}
.y1f7{bottom:567.636900px;}
.y212{bottom:571.152900px;}
.y36{bottom:571.377900px;}
.y110{bottom:574.386900px;}
.y10{bottom:574.902900px;}
.y16f{bottom:575.127900px;}
.ydb{bottom:575.652900px;}
.y1c9{bottom:575.886900px;}
.y84{bottom:577.386900px;}
.yf7{bottom:578.886900px;}
.y5e{bottom:582.636900px;}
.y147{bottom:582.644400px;}
.yb7{bottom:584.136900px;}
.y1f6{bottom:586.386900px;}
.y211{bottom:589.902900px;}
.y35{bottom:590.127900px;}
.y1d7{bottom:593.136900px;}
.yf{bottom:593.652900px;}
.y16e{bottom:593.877900px;}
.yda{bottom:594.402900px;}
.y1c8{bottom:594.636900px;}
.y83{bottom:597.636900px;}
.y5d{bottom:601.386900px;}
.y146{bottom:601.394400px;}
.y10f{bottom:602.136900px;}
.yb6{bottom:602.886900px;}
.y1f5{bottom:605.136900px;}
.y1a1{bottom:606.636900px;}
.y210{bottom:608.652900px;}
.y34{bottom:608.877900px;}
.ye{bottom:612.402900px;}
.y16d{bottom:612.627900px;}
.yd9{bottom:613.152900px;}
.y1c7{bottom:613.386900px;}
.y82{bottom:616.386900px;}
.y5c{bottom:620.136900px;}
.y145{bottom:620.144400px;}
.y1d6{bottom:620.886900px;}
.yb5{bottom:621.636900px;}
.y1f4{bottom:623.886900px;}
.y20f{bottom:627.402900px;}
.y33{bottom:629.127900px;}
.yd{bottom:631.152900px;}
.y16c{bottom:631.377900px;}
.yd8{bottom:631.902900px;}
.y1c6{bottom:632.136900px;}
.y81{bottom:635.136900px;}
.y5b{bottom:638.886900px;}
.y144{bottom:638.894400px;}
.yb4{bottom:640.386900px;}
.y1f3{bottom:642.636900px;}
.y20e{bottom:646.152900px;}
.y32{bottom:647.877900px;}
.yc{bottom:649.902900px;}
.y16b{bottom:650.127900px;}
.yd7{bottom:650.652900px;}
.y1c5{bottom:650.886900px;}
.y80{bottom:653.886900px;}
.yf6{bottom:655.386900px;}
.y5a{bottom:657.636900px;}
.yb3{bottom:659.136900px;}
.y143{bottom:659.144400px;}
.y1d2{bottom:660.636900px;}
.y1f2{bottom:661.386900px;}
.y20d{bottom:664.902900px;}
.y31{bottom:666.627900px;}
.yb{bottom:668.652900px;}
.y16a{bottom:668.877900px;}
.yd6{bottom:669.402900px;}
.y1c4{bottom:669.636900px;}
.y7f{bottom:672.636900px;}
.yf5{bottom:674.136900px;}
.ya0{bottom:676.386900px;}
.y59{bottom:677.886900px;}
.y142{bottom:677.894400px;}
.y1d1{bottom:679.386900px;}
.y20c{bottom:683.652900px;}
.y1f1{bottom:684.636900px;}
.y30{bottom:685.377900px;}
.y169{bottom:687.627900px;}
.y1c3{bottom:688.386900px;}
.yd5{bottom:689.652900px;}
.y7e{bottom:691.386900px;}
.yf4{bottom:692.886900px;}
.y9f{bottom:695.136900px;}
.y58{bottom:696.636900px;}
.y141{bottom:696.644400px;}
.y1b9{bottom:698.136900px;}
.y20b{bottom:702.402900px;}
.y1f0{bottom:703.386900px;}
.y2f{bottom:704.127900px;}
.y168{bottom:706.377900px;}
.y1c2{bottom:707.136900px;}
.yd4{bottom:708.402900px;}
.y7d{bottom:711.636900px;}
.y9e{bottom:713.886900px;}
.y57{bottom:715.386900px;}
.y140{bottom:715.394400px;}
.y1b8{bottom:716.886900px;}
.y20a{bottom:721.152900px;}
.y2e{bottom:722.877900px;}
.y1c1{bottom:725.886900px;}
.y167{bottom:726.627900px;}
.y1ef{bottom:726.636900px;}
.yd3{bottom:727.152900px;}
.y7c{bottom:730.386900px;}
.ya{bottom:732.402900px;}
.y56{bottom:734.136900px;}
.y13f{bottom:734.144400px;}
.y1b7{bottom:735.636900px;}
.y2d{bottom:741.627900px;}
.y1c0{bottom:744.636900px;}
.y166{bottom:745.377900px;}
.y1ee{bottom:745.386900px;}
.yd2{bottom:745.902900px;}
.y209{bottom:748.902900px;}
.y7b{bottom:749.136900px;}
.y55{bottom:752.886900px;}
.y13e{bottom:752.894400px;}
.y11f{bottom:754.386900px;}
.yf3{bottom:758.136900px;}
.y2c{bottom:760.377900px;}
.y1bf{bottom:763.386900px;}
.y165{bottom:764.127900px;}
.y1ed{bottom:764.136900px;}
.yd1{bottom:764.652900px;}
.y7a{bottom:767.886900px;}
.y54{bottom:771.636900px;}
.y13d{bottom:771.644400px;}
.y10e{bottom:773.136900px;}
.y2b{bottom:779.127900px;}
.y208{bottom:781.152900px;}
.y1be{bottom:782.136900px;}
.y164{bottom:782.877900px;}
.y1ec{bottom:782.886900px;}
.yd0{bottom:783.402900px;}
.y79{bottom:786.636900px;}
.y9d{bottom:790.386900px;}
.y13c{bottom:790.394400px;}
.y53{bottom:791.886900px;}
.y2a{bottom:797.877900px;}
.y1bd{bottom:800.886900px;}
.y163{bottom:801.627900px;}
.y1eb{bottom:801.636900px;}
.ycf{bottom:802.152900px;}
.y78{bottom:805.386900px;}
.y9c{bottom:809.136900px;}
.y52{bottom:810.636900px;}
.y13b{bottom:810.644400px;}
.y29{bottom:816.627900px;}
.y162{bottom:820.377900px;}
.yce{bottom:820.902900px;}
.y5{bottom:823.998900px;}
.y1ea{bottom:824.886900px;}
.y194{bottom:827.886900px;}
.y1bc{bottom:828.636900px;}
.y51{bottom:829.386900px;}
.y13a{bottom:829.394400px;}
.y9{bottom:829.902900px;}
.y77{bottom:833.136900px;}
.y161{bottom:839.127900px;}
.ycd{bottom:839.652900px;}
.y1e9{bottom:843.636900px;}
.y28{bottom:844.377900px;}
.y1d5{bottom:846.636900px;}
.y50{bottom:848.136900px;}
.y139{bottom:848.144400px;}
.y8{bottom:848.652900px;}
.y4{bottom:855.338400px;}
.y160{bottom:857.877900px;}
.ycc{bottom:858.402900px;}
.y4f{bottom:866.886900px;}
.y138{bottom:866.894400px;}
.y7{bottom:867.402900px;}
.y3{bottom:871.538400px;}
.y27{bottom:885.627900px;}
.y4e{bottom:885.636900px;}
.y137{bottom:885.644400px;}
.y6{bottom:886.152900px;}
.y2{bottom:887.738400px;}
.y26{bottom:922.796400px;}
.h9{height:29.004328px;}
.hb{height:41.765625px;}
.h3{height:44.586914px;}
.hc{height:46.792969px;}
.ha{height:46.986328px;}
.h5{height:52.018066px;}
.h8{height:54.495117px;}
.h2{height:54.817383px;}
.h4{height:55.125000px;}
.hd{height:57.427734px;}
.h7{height:57.750000px;}
.h6{height:68.250000px;}
.h0{height:1020.473400px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330600px;}
.x0{left:0.000000px;}
.x5{left:91.416600px;}
.x8{left:108.425100px;}
.x9{left:133.937100px;}
.x7{left:142.440600px;}
.x6{left:166.649100px;}
.xb{left:190.286100px;}
.xc{left:322.938600px;}
.x4{left:443.360100px;}
.xa{left:472.842600px;}
.x2{left:494.735100px;}
.x3{left:510.846600px;}
.x1{left:596.750100px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ls3{letter-spacing:0.021333pt;}
.ws7{word-spacing:-45.642667pt;}
.ws3{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws2{word-spacing:-8.892693pt;}
.ws4{word-spacing:-6.156480pt;}
.ws1{word-spacing:-0.028800pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-8.722667pt;}
._2c{margin-left:-7.654667pt;}
._3{margin-left:-6.660267pt;}
._11{margin-left:-5.496800pt;}
._12{margin-left:-4.577600pt;}
._2{margin-left:-3.612000pt;}
._0{margin-left:-2.702400pt;}
._1{margin-left:-1.013600pt;}
._6{width:0.893333pt;}
._4{width:2.242133pt;}
._5{width:3.533067pt;}
._9{width:4.740267pt;}
._d{width:5.642933pt;}
._a{width:6.541333pt;}
._b{width:7.878933pt;}
._c{width:9.128533pt;}
._13{width:10.148000pt;}
._10{width:11.264000pt;}
._7{width:13.986133pt;}
._8{width:14.965867pt;}
._23{width:15.854933pt;}
._18{width:16.778667pt;}
._e{width:18.268800pt;}
._f{width:19.260267pt;}
._19{width:20.842933pt;}
._15{width:21.846133pt;}
._17{width:23.164267pt;}
._1f{width:24.211733pt;}
._16{width:25.261867pt;}
._29{width:26.270667pt;}
._1e{width:27.978133pt;}
._1a{width:28.875733pt;}
._1b{width:29.837867pt;}
._14{width:30.841067pt;}
._28{width:32.002667pt;}
._26{width:33.457600pt;}
._27{width:34.883200pt;}
._1c{width:37.347200pt;}
._1d{width:39.072000pt;}
._20{width:40.943467pt;}
._21{width:42.239733pt;}
._2b{width:43.458933pt;}
._2d{width:44.458133pt;}
._2a{width:45.378667pt;}
._22{width:46.692800pt;}
._24{width:99.117333pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.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:79.370133pt;}
.y1a0{bottom:111.899467pt;}
.y1b6{bottom:113.232800pt;}
.y136{bottom:113.899467pt;}
.y76{bottom:115.232800pt;}
.y15f{bottom:115.239467pt;}
.y1cf{bottom:116.566133pt;}
.ycb{bottom:117.899467pt;}
.y1e8{bottom:119.899467pt;}
.yb2{bottom:121.232800pt;}
.y4d{bottom:121.891467pt;}
.y186{bottom:123.891467pt;}
.yf2{bottom:124.358133pt;}
.y9b{bottom:124.566133pt;}
.y25{bottom:125.140800pt;}
.y11e{bottom:125.899467pt;}
.y207{bottom:126.566133pt;}
.y10d{bottom:128.566133pt;}
.y1b5{bottom:129.899467pt;}
.y135{bottom:130.566133pt;}
.y75{bottom:131.899467pt;}
.y15e{bottom:131.906133pt;}
.y1ce{bottom:133.232800pt;}
.yca{bottom:134.566133pt;}
.y1e7{bottom:136.566133pt;}
.yb1{bottom:137.899467pt;}
.y4c{bottom:138.558133pt;}
.y24{bottom:139.540800pt;}
.y185{bottom:140.558133pt;}
.yf1{bottom:141.024800pt;}
.y9a{bottom:141.232800pt;}
.y11d{bottom:142.566133pt;}
.y206{bottom:143.232800pt;}
.y10c{bottom:145.232800pt;}
.y1b4{bottom:146.566133pt;}
.y134{bottom:147.232800pt;}
.y74{bottom:148.566133pt;}
.y15d{bottom:148.572800pt;}
.y199{bottom:149.899467pt;}
.yc9{bottom:151.232800pt;}
.y1e6{bottom:153.232800pt;}
.yb0{bottom:154.566133pt;}
.y4b{bottom:155.224800pt;}
.y184{bottom:157.224800pt;}
.yf0{bottom:157.691467pt;}
.y99{bottom:157.899467pt;}
.y23{bottom:157.936800pt;}
.y11c{bottom:159.232800pt;}
.y205{bottom:159.899467pt;}
.y10b{bottom:161.899467pt;}
.y1b3{bottom:163.232800pt;}
.y133{bottom:163.899467pt;}
.y73{bottom:165.232800pt;}
.y15c{bottom:165.239467pt;}
.y198{bottom:166.566133pt;}
.yc8{bottom:167.899467pt;}
.y1e5{bottom:169.899467pt;}
.yaf{bottom:171.232800pt;}
.y22{bottom:172.336800pt;}
.y4a{bottom:173.224800pt;}
.yef{bottom:174.358133pt;}
.y98{bottom:174.566133pt;}
.y183{bottom:175.224800pt;}
.y11b{bottom:175.899467pt;}
.y204{bottom:176.566133pt;}
.y10a{bottom:178.566133pt;}
.y1b2{bottom:179.899467pt;}
.y72{bottom:181.899467pt;}
.y15b{bottom:181.906133pt;}
.y197{bottom:183.232800pt;}
.y1cd{bottom:183.899467pt;}
.yc7{bottom:184.566133pt;}
.yae{bottom:187.899467pt;}
.y49{bottom:189.891467pt;}
.y1e4{bottom:190.566133pt;}
.y97{bottom:191.232800pt;}
.y182{bottom:191.891467pt;}
.yee{bottom:192.358133pt;}
.y11a{bottom:192.566133pt;}
.y109{bottom:195.232800pt;}
.y1b1{bottom:196.566133pt;}
.y203{bottom:197.232800pt;}
.y71{bottom:198.566133pt;}
.y15a{bottom:198.572800pt;}
.y196{bottom:199.899467pt;}
.yc6{bottom:201.232800pt;}
.yad{bottom:204.566133pt;}
.y193{bottom:205.899467pt;}
.y48{bottom:206.558133pt;}
.y1e3{bottom:207.232800pt;}
.y181{bottom:208.558133pt;}
.yed{bottom:209.024800pt;}
.y96{bottom:209.232800pt;}
.y12e{bottom:210.566133pt;}
.y108{bottom:211.899467pt;}
.y19f{bottom:213.232800pt;}
.y202{bottom:213.899467pt;}
.y1b0{bottom:214.566133pt;}
.y70{bottom:215.232800pt;}
.y1ba{bottom:215.899467pt;}
.y195{bottom:216.566133pt;}
.y159{bottom:216.572800pt;}
.y1d4{bottom:217.232800pt;}
.yc5{bottom:217.899467pt;}
.y21{bottom:219.691467pt;}
.yac{bottom:221.232800pt;}
.y192{bottom:222.566133pt;}
.y47{bottom:223.224800pt;}
.y1e2{bottom:223.899467pt;}
.y180{bottom:225.224800pt;}
.yec{bottom:225.691467pt;}
.y95{bottom:225.899467pt;}
.y12d{bottom:227.232800pt;}
.y107{bottom:228.566133pt;}
.y19e{bottom:229.899467pt;}
.y201{bottom:230.566133pt;}
.y1af{bottom:231.232800pt;}
.y132{bottom:231.899467pt;}
.y6f{bottom:233.232800pt;}
.y158{bottom:233.239467pt;}
.yc4{bottom:234.566133pt;}
.y20{bottom:236.358133pt;}
.yab{bottom:237.899467pt;}
.y191{bottom:239.232800pt;}
.y46{bottom:239.891467pt;}
.y17f{bottom:241.891467pt;}
.yeb{bottom:242.358133pt;}
.y94{bottom:242.566133pt;}
.y12c{bottom:243.899467pt;}
.y1e1{bottom:244.566133pt;}
.y106{bottom:245.232800pt;}
.y19d{bottom:246.566133pt;}
.y1ae{bottom:247.899467pt;}
.y131{bottom:248.566133pt;}
.y6e{bottom:249.899467pt;}
.y157{bottom:249.906133pt;}
.yc3{bottom:251.232800pt;}
.yaa{bottom:254.566133pt;}
.y190{bottom:255.899467pt;}
.y45{bottom:256.558133pt;}
.y17e{bottom:258.558133pt;}
.yea{bottom:259.024800pt;}
.y93{bottom:259.232800pt;}
.y12b{bottom:260.566133pt;}
.y1f{bottom:261.024800pt;}
.y1e0{bottom:261.232800pt;}
.y105{bottom:261.899467pt;}
.y19c{bottom:263.232800pt;}
.y1ad{bottom:264.566133pt;}
.y130{bottom:265.232800pt;}
.y6d{bottom:266.566133pt;}
.y156{bottom:266.572800pt;}
.yc2{bottom:267.899467pt;}
.ya9{bottom:272.566133pt;}
.y44{bottom:273.224800pt;}
.y17d{bottom:275.224800pt;}
.ye9{bottom:275.691467pt;}
.y92{bottom:275.899467pt;}
.y12a{bottom:277.232800pt;}
.y1e{bottom:277.691467pt;}
.y1df{bottom:277.899467pt;}
.y104{bottom:278.566133pt;}
.y19b{bottom:279.899467pt;}
.y1ac{bottom:281.232800pt;}
.y12f{bottom:281.899467pt;}
.y6c{bottom:283.232800pt;}
.y155{bottom:283.239467pt;}
.yc1{bottom:284.566133pt;}
.y200{bottom:288.566133pt;}
.ya8{bottom:289.232800pt;}
.y21f{bottom:289.691467pt;}
.y43{bottom:289.891467pt;}
.y17c{bottom:291.891467pt;}
.ye8{bottom:292.358133pt;}
.y91{bottom:293.899467pt;}
.y1d{bottom:294.358133pt;}
.y103{bottom:296.566133pt;}
.y1ab{bottom:297.899467pt;}
.y1de{bottom:298.566133pt;}
.y6b{bottom:299.899467pt;}
.y154{bottom:299.906133pt;}
.yc0{bottom:301.232800pt;}
.y1ff{bottom:305.232800pt;}
.ya7{bottom:305.899467pt;}
.y21e{bottom:306.358133pt;}
.y42{bottom:306.558133pt;}
.y17b{bottom:309.891467pt;}
.ye7{bottom:310.358133pt;}
.y90{bottom:310.566133pt;}
.y1c{bottom:311.024800pt;}
.y102{bottom:313.232800pt;}
.y1aa{bottom:314.566133pt;}
.y1dd{bottom:315.232800pt;}
.y6a{bottom:316.566133pt;}
.y153{bottom:316.572800pt;}
.ybf{bottom:317.899467pt;}
.ya6{bottom:322.566133pt;}
.y41{bottom:323.224800pt;}
.y21d{bottom:324.358133pt;}
.y1fe{bottom:325.899467pt;}
.y17a{bottom:326.558133pt;}
.ye6{bottom:327.024800pt;}
.y8f{bottom:327.232800pt;}
.y1b{bottom:327.691467pt;}
.y101{bottom:329.899467pt;}
.y1a9{bottom:331.232800pt;}
.y1dc{bottom:331.899467pt;}
.y69{bottom:333.232800pt;}
.y152{bottom:333.239467pt;}
.ybe{bottom:334.566133pt;}
.y129{bottom:335.232800pt;}
.ya5{bottom:339.232800pt;}
.y40{bottom:339.891467pt;}
.y18f{bottom:340.566133pt;}
.y21c{bottom:341.024800pt;}
.y1fd{bottom:342.566133pt;}
.y179{bottom:343.224800pt;}
.ye5{bottom:343.691467pt;}
.y8e{bottom:343.899467pt;}
.y1a{bottom:344.358133pt;}
.y100{bottom:346.566133pt;}
.y1a8{bottom:347.899467pt;}
.y68{bottom:349.899467pt;}
.y151{bottom:349.906133pt;}
.ybd{bottom:351.232800pt;}
.y1d3{bottom:352.566133pt;}
.ya4{bottom:355.899467pt;}
.y3f{bottom:356.558133pt;}
.y18e{bottom:357.232800pt;}
.y21b{bottom:357.691467pt;}
.y1fc{bottom:359.232800pt;}
.y178{bottom:359.891467pt;}
.ye4{bottom:360.358133pt;}
.y119{bottom:360.566133pt;}
.y19{bottom:361.024800pt;}
.y8d{bottom:361.899467pt;}
.yff{bottom:363.232800pt;}
.y1a7{bottom:364.566133pt;}
.y67{bottom:366.566133pt;}
.y150{bottom:366.572800pt;}
.ybc{bottom:367.899467pt;}
.y128{bottom:369.232800pt;}
.ya3{bottom:372.566133pt;}
.y3e{bottom:373.224800pt;}
.y18d{bottom:373.899467pt;}
.y21a{bottom:374.358133pt;}
.y1fb{bottom:375.899467pt;}
.y177{bottom:376.558133pt;}
.ye3{bottom:377.024800pt;}
.y118{bottom:377.232800pt;}
.y18{bottom:377.691467pt;}
.y8c{bottom:378.566133pt;}
.yfe{bottom:379.899467pt;}
.y1a6{bottom:381.232800pt;}
.y66{bottom:383.232800pt;}
.y14f{bottom:383.239467pt;}
.ybb{bottom:384.566133pt;}
.y127{bottom:385.899467pt;}
.y18c{bottom:390.566133pt;}
.y219{bottom:391.024800pt;}
.y3d{bottom:391.224800pt;}
.y1fa{bottom:392.566133pt;}
.y176{bottom:393.224800pt;}
.ye2{bottom:393.691467pt;}
.y117{bottom:393.899467pt;}
.y17{bottom:394.358133pt;}
.y8b{bottom:395.232800pt;}
.yfd{bottom:396.566133pt;}
.ya2{bottom:397.232800pt;}
.y1a5{bottom:397.899467pt;}
.y65{bottom:399.899467pt;}
.y14e{bottom:399.906133pt;}
.yba{bottom:401.232800pt;}
.y126{bottom:402.566133pt;}
.y18b{bottom:407.232800pt;}
.y218{bottom:407.691467pt;}
.y3c{bottom:407.891467pt;}
.y175{bottom:409.891467pt;}
.ye1{bottom:410.358133pt;}
.y116{bottom:410.566133pt;}
.y16{bottom:411.024800pt;}
.y8a{bottom:411.899467pt;}
.yfc{bottom:413.232800pt;}
.y1a4{bottom:414.566133pt;}
.y64{bottom:416.566133pt;}
.yb9{bottom:417.899467pt;}
.y14d{bottom:417.906133pt;}
.y125{bottom:419.232800pt;}
.y19a{bottom:421.232800pt;}
.y1db{bottom:423.232800pt;}
.y18a{bottom:423.899467pt;}
.y217{bottom:424.358133pt;}
.y3b{bottom:424.558133pt;}
.y174{bottom:426.558133pt;}
.ye0{bottom:427.024800pt;}
.y115{bottom:427.232800pt;}
.y15{bottom:427.691467pt;}
.y89{bottom:428.566133pt;}
.yfb{bottom:429.899467pt;}
.y1a3{bottom:431.232800pt;}
.y63{bottom:433.232800pt;}
.ya1{bottom:433.899467pt;}
.yb8{bottom:434.566133pt;}
.y14c{bottom:434.572800pt;}
.y124{bottom:435.899467pt;}
.y1da{bottom:439.899467pt;}
.y189{bottom:440.566133pt;}
.y216{bottom:441.024800pt;}
.y3a{bottom:441.224800pt;}
.y173{bottom:443.224800pt;}
.ydf{bottom:443.691467pt;}
.y114{bottom:443.899467pt;}
.y14{bottom:444.358133pt;}
.y88{bottom:446.566133pt;}
.y1a2{bottom:447.899467pt;}
.y1bb{bottom:449.899467pt;}
.y62{bottom:451.232800pt;}
.y14b{bottom:451.239467pt;}
.y123{bottom:452.566133pt;}
.y1d9{bottom:456.566133pt;}
.y215{bottom:457.691467pt;}
.y39{bottom:457.891467pt;}
.y113{bottom:460.566133pt;}
.y13{bottom:461.024800pt;}
.y172{bottom:461.224800pt;}
.yde{bottom:461.691467pt;}
.y1cc{bottom:461.899467pt;}
.y87{bottom:463.232800pt;}
.yfa{bottom:464.566133pt;}
.y188{bottom:465.232800pt;}
.y1f9{bottom:467.232800pt;}
.y61{bottom:467.899467pt;}
.y14a{bottom:467.906133pt;}
.y1d0{bottom:468.566133pt;}
.y122{bottom:469.232800pt;}
.y1d8{bottom:473.232800pt;}
.y214{bottom:474.358133pt;}
.y38{bottom:474.558133pt;}
.y112{bottom:477.232800pt;}
.y12{bottom:477.691467pt;}
.y171{bottom:477.891467pt;}
.ydd{bottom:478.358133pt;}
.y1cb{bottom:478.566133pt;}
.y86{bottom:479.899467pt;}
.yf9{bottom:481.232800pt;}
.y1f8{bottom:483.899467pt;}
.y60{bottom:484.566133pt;}
.y149{bottom:484.572800pt;}
.y121{bottom:485.899467pt;}
.y213{bottom:491.024800pt;}
.y37{bottom:491.224800pt;}
.y111{bottom:493.899467pt;}
.y11{bottom:494.358133pt;}
.y170{bottom:494.558133pt;}
.ydc{bottom:495.024800pt;}
.y1ca{bottom:495.232800pt;}
.y85{bottom:496.566133pt;}
.yf8{bottom:497.899467pt;}
.y5f{bottom:501.232800pt;}
.y148{bottom:501.239467pt;}
.y187{bottom:501.899467pt;}
.y120{bottom:502.566133pt;}
.y1f7{bottom:504.566133pt;}
.y212{bottom:507.691467pt;}
.y36{bottom:507.891467pt;}
.y110{bottom:510.566133pt;}
.y10{bottom:511.024800pt;}
.y16f{bottom:511.224800pt;}
.ydb{bottom:511.691467pt;}
.y1c9{bottom:511.899467pt;}
.y84{bottom:513.232800pt;}
.yf7{bottom:514.566133pt;}
.y5e{bottom:517.899467pt;}
.y147{bottom:517.906133pt;}
.yb7{bottom:519.232800pt;}
.y1f6{bottom:521.232800pt;}
.y211{bottom:524.358133pt;}
.y35{bottom:524.558133pt;}
.y1d7{bottom:527.232800pt;}
.yf{bottom:527.691467pt;}
.y16e{bottom:527.891467pt;}
.yda{bottom:528.358133pt;}
.y1c8{bottom:528.566133pt;}
.y83{bottom:531.232800pt;}
.y5d{bottom:534.566133pt;}
.y146{bottom:534.572800pt;}
.y10f{bottom:535.232800pt;}
.yb6{bottom:535.899467pt;}
.y1f5{bottom:537.899467pt;}
.y1a1{bottom:539.232800pt;}
.y210{bottom:541.024800pt;}
.y34{bottom:541.224800pt;}
.ye{bottom:544.358133pt;}
.y16d{bottom:544.558133pt;}
.yd9{bottom:545.024800pt;}
.y1c7{bottom:545.232800pt;}
.y82{bottom:547.899467pt;}
.y5c{bottom:551.232800pt;}
.y145{bottom:551.239467pt;}
.y1d6{bottom:551.899467pt;}
.yb5{bottom:552.566133pt;}
.y1f4{bottom:554.566133pt;}
.y20f{bottom:557.691467pt;}
.y33{bottom:559.224800pt;}
.yd{bottom:561.024800pt;}
.y16c{bottom:561.224800pt;}
.yd8{bottom:561.691467pt;}
.y1c6{bottom:561.899467pt;}
.y81{bottom:564.566133pt;}
.y5b{bottom:567.899467pt;}
.y144{bottom:567.906133pt;}
.yb4{bottom:569.232800pt;}
.y1f3{bottom:571.232800pt;}
.y20e{bottom:574.358133pt;}
.y32{bottom:575.891467pt;}
.yc{bottom:577.691467pt;}
.y16b{bottom:577.891467pt;}
.yd7{bottom:578.358133pt;}
.y1c5{bottom:578.566133pt;}
.y80{bottom:581.232800pt;}
.yf6{bottom:582.566133pt;}
.y5a{bottom:584.566133pt;}
.yb3{bottom:585.899467pt;}
.y143{bottom:585.906133pt;}
.y1d2{bottom:587.232800pt;}
.y1f2{bottom:587.899467pt;}
.y20d{bottom:591.024800pt;}
.y31{bottom:592.558133pt;}
.yb{bottom:594.358133pt;}
.y16a{bottom:594.558133pt;}
.yd6{bottom:595.024800pt;}
.y1c4{bottom:595.232800pt;}
.y7f{bottom:597.899467pt;}
.yf5{bottom:599.232800pt;}
.ya0{bottom:601.232800pt;}
.y59{bottom:602.566133pt;}
.y142{bottom:602.572800pt;}
.y1d1{bottom:603.899467pt;}
.y20c{bottom:607.691467pt;}
.y1f1{bottom:608.566133pt;}
.y30{bottom:609.224800pt;}
.y169{bottom:611.224800pt;}
.y1c3{bottom:611.899467pt;}
.yd5{bottom:613.024800pt;}
.y7e{bottom:614.566133pt;}
.yf4{bottom:615.899467pt;}
.y9f{bottom:617.899467pt;}
.y58{bottom:619.232800pt;}
.y141{bottom:619.239467pt;}
.y1b9{bottom:620.566133pt;}
.y20b{bottom:624.358133pt;}
.y1f0{bottom:625.232800pt;}
.y2f{bottom:625.891467pt;}
.y168{bottom:627.891467pt;}
.y1c2{bottom:628.566133pt;}
.yd4{bottom:629.691467pt;}
.y7d{bottom:632.566133pt;}
.y9e{bottom:634.566133pt;}
.y57{bottom:635.899467pt;}
.y140{bottom:635.906133pt;}
.y1b8{bottom:637.232800pt;}
.y20a{bottom:641.024800pt;}
.y2e{bottom:642.558133pt;}
.y1c1{bottom:645.232800pt;}
.y167{bottom:645.891467pt;}
.y1ef{bottom:645.899467pt;}
.yd3{bottom:646.358133pt;}
.y7c{bottom:649.232800pt;}
.ya{bottom:651.024800pt;}
.y56{bottom:652.566133pt;}
.y13f{bottom:652.572800pt;}
.y1b7{bottom:653.899467pt;}
.y2d{bottom:659.224800pt;}
.y1c0{bottom:661.899467pt;}
.y166{bottom:662.558133pt;}
.y1ee{bottom:662.566133pt;}
.yd2{bottom:663.024800pt;}
.y209{bottom:665.691467pt;}
.y7b{bottom:665.899467pt;}
.y55{bottom:669.232800pt;}
.y13e{bottom:669.239467pt;}
.y11f{bottom:670.566133pt;}
.yf3{bottom:673.899467pt;}
.y2c{bottom:675.891467pt;}
.y1bf{bottom:678.566133pt;}
.y165{bottom:679.224800pt;}
.y1ed{bottom:679.232800pt;}
.yd1{bottom:679.691467pt;}
.y7a{bottom:682.566133pt;}
.y54{bottom:685.899467pt;}
.y13d{bottom:685.906133pt;}
.y10e{bottom:687.232800pt;}
.y2b{bottom:692.558133pt;}
.y208{bottom:694.358133pt;}
.y1be{bottom:695.232800pt;}
.y164{bottom:695.891467pt;}
.y1ec{bottom:695.899467pt;}
.yd0{bottom:696.358133pt;}
.y79{bottom:699.232800pt;}
.y9d{bottom:702.566133pt;}
.y13c{bottom:702.572800pt;}
.y53{bottom:703.899467pt;}
.y2a{bottom:709.224800pt;}
.y1bd{bottom:711.899467pt;}
.y163{bottom:712.558133pt;}
.y1eb{bottom:712.566133pt;}
.ycf{bottom:713.024800pt;}
.y78{bottom:715.899467pt;}
.y9c{bottom:719.232800pt;}
.y52{bottom:720.566133pt;}
.y13b{bottom:720.572800pt;}
.y29{bottom:725.891467pt;}
.y162{bottom:729.224800pt;}
.yce{bottom:729.691467pt;}
.y5{bottom:732.443467pt;}
.y1ea{bottom:733.232800pt;}
.y194{bottom:735.899467pt;}
.y1bc{bottom:736.566133pt;}
.y51{bottom:737.232800pt;}
.y13a{bottom:737.239467pt;}
.y9{bottom:737.691467pt;}
.y77{bottom:740.566133pt;}
.y161{bottom:745.891467pt;}
.ycd{bottom:746.358133pt;}
.y1e9{bottom:749.899467pt;}
.y28{bottom:750.558133pt;}
.y1d5{bottom:752.566133pt;}
.y50{bottom:753.899467pt;}
.y139{bottom:753.906133pt;}
.y8{bottom:754.358133pt;}
.y4{bottom:760.300800pt;}
.y160{bottom:762.558133pt;}
.ycc{bottom:763.024800pt;}
.y4f{bottom:770.566133pt;}
.y138{bottom:770.572800pt;}
.y7{bottom:771.024800pt;}
.y3{bottom:774.700800pt;}
.y27{bottom:787.224800pt;}
.y4e{bottom:787.232800pt;}
.y137{bottom:787.239467pt;}
.y6{bottom:787.691467pt;}
.y2{bottom:789.100800pt;}
.y26{bottom:820.263467pt;}
.h9{height:25.781625pt;}
.hb{height:37.125000pt;}
.h3{height:39.632812pt;}
.hc{height:41.593750pt;}
.ha{height:41.765625pt;}
.h5{height:46.238281pt;}
.h8{height:48.440104pt;}
.h2{height:48.726562pt;}
.h4{height:49.000000pt;}
.hd{height:51.046875pt;}
.h7{height:51.333333pt;}
.h6{height:60.666667pt;}
.h0{height:907.087467pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960533pt;}
.x0{left:0.000000pt;}
.x5{left:81.259200pt;}
.x8{left:96.377867pt;}
.x9{left:119.055200pt;}
.x7{left:126.613867pt;}
.x6{left:148.132533pt;}
.xb{left:169.143200pt;}
.xc{left:287.056533pt;}
.x4{left:394.097867pt;}
.xa{left:420.304533pt;}
.x2{left:439.764533pt;}
.x3{left:454.085867pt;}
.x1{left:530.444533pt;}
}




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