
    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_5e4fdddbb72d67a0152a4985.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_353446d36b248a4ca63f6fc8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_421bbf9bf2111202072c0400.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.147461;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_81a06a17c76c9659e78c4286.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7f7a692454fd10dc7b3ed9a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_0a3c1b8667850201d232a71e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4987f5b8b150eadb78778d3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_17acce1da161ba5f4ce08bd3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_4ea59acf419bc9024927e92a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.147461;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_94936abb0ed5c1ffeb262794.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a32b35474f1e4c0e47d0b31d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104492;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_cdd408aa8926d9b53c92ffdd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.215999px;}
.ls1{letter-spacing:18.370786px;}
.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;}
}
.ws2{word-spacing:-66.242700px;}
.ws0{word-spacing:-18.349228px;}
.ws4{word-spacing:-12.203968px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:75.667746px;}
.ws8{word-spacing:75.667906px;}
.ws7{word-spacing:209.411459px;}
.ws6{word-spacing:283.931267px;}
.ws3{word-spacing:294.731239px;}
._8{margin-left:-4.027576px;}
._7{margin-left:-2.385772px;}
._1{margin-left:-1.109969px;}
._0{width:1.038062px;}
._4{width:2.113701px;}
._3{width:3.740986px;}
._f{width:5.645783px;}
._e{width:7.578033px;}
._d{width:8.688920px;}
._11{width:10.216529px;}
._10{width:11.470079px;}
._b{width:12.586113px;}
._c{width:13.746890px;}
._9{width:15.113427px;}
._a{width:16.172275px;}
._12{width:17.223102px;}
._5a{width:22.992314px;}
._5{width:24.682651px;}
._6{width:25.726781px;}
._13{width:26.908654px;}
._16{width:28.475032px;}
._54{width:29.931133px;}
._15{width:30.990457px;}
._5c{width:32.637772px;}
._5d{width:33.807447px;}
._56{width:39.567088px;}
._55{width:40.768128px;}
._58{width:42.004943px;}
._59{width:43.015783px;}
._57{width:44.080263px;}
._14{width:55.677201px;}
._1a{width:88.245368px;}
._1b{width:89.535176px;}
._22{width:106.164127px;}
._2c{width:110.776943px;}
._27{width:112.101797px;}
._2b{width:129.713298px;}
._2a{width:131.165608px;}
._3c{width:142.508231px;}
._18{width:143.578206px;}
._38{width:147.553317px;}
._2f{width:148.923681px;}
._30{width:150.239479px;}
._29{width:157.809260px;}
._4b{width:160.438784px;}
._4a{width:161.907250px;}
._25{width:165.693176px;}
._24{width:167.018030px;}
._31{width:168.433968px;}
._3a{width:179.279537px;}
._4d{width:189.066757px;}
._2{width:194.289839px;}
._3e{width:198.330644px;}
._4e{width:216.672772px;}
._53{width:222.845360px;}
._3f{width:224.693168px;}
._40{width:226.758854px;}
._5b{width:230.807680px;}
._52{width:235.655392px;}
._39{width:240.299380px;}
._51{width:249.695355px;}
._2d{width:258.660878px;}
._46{width:267.731309px;}
._47{width:268.811306px;}
._28{width:277.010105px;}
._45{width:281.825508px;}
._35{width:295.730119px;}
._21{width:305.099212px;}
._1d{width:387.540941px;}
._1c{width:405.890168px;}
._4c{width:427.140887px;}
._42{width:445.140887px;}
._34{width:455.803339px;}
._41{width:463.490114px;}
._23{width:473.633752px;}
._32{width:479.249069px;}
._37{width:497.969082px;}
._36{width:520.377129px;}
._2e{width:538.377129px;}
._33{width:545.928797px;}
._26{width:563.774754px;}
._3b{width:568.271800px;}
._17{width:583.651750px;}
._48{width:586.963885px;}
._1f{width:608.129132px;}
._1e{width:648.537178px;}
._20{width:656.088846px;}
._4f{width:688.137125px;}
._19{width:692.654817px;}
._50{width:695.688792px;}
._43{width:706.137125px;}
._44{width:713.688792px;}
._49{width:732.254763px;}
._3d{width:750.254763px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:53.999861px;}
.fs3{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs2{font-size:84.243145px;}
.fs1{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.600083px;}
.y1{bottom:77.760132px;}
.y86{bottom:115.020058px;}
.y142{bottom:115.740074px;}
.y108{bottom:120.060036px;}
.y27{bottom:120.600083px;}
.yf7{bottom:122.400055px;}
.yb3{bottom:127.980079px;}
.y4b{bottom:133.020058px;}
.y141{bottom:134.820099px;}
.y6c{bottom:141.300041px;}
.y94{bottom:141.480079px;}
.yda{bottom:141.840088px;}
.y168{bottom:143.280052px;}
.y85{bottom:143.460091px;}
.y107{bottom:148.500068px;}
.y26{bottom:149.040047px;}
.yf6{bottom:151.020058px;}
.y140{bottom:153.720085px;}
.yb2{bottom:156.420043px;}
.y4a{bottom:161.460091px;}
.y167{bottom:168.120072px;}
.y6b{bottom:169.740074px;}
.yd9{bottom:170.280052px;}
.y84{bottom:171.900055px;}
.y13f{bottom:172.620072px;}
.y93{bottom:176.040047px;}
.y25{bottom:177.480079px;}
.yf5{bottom:179.460091px;}
.yb1{bottom:184.860077px;}
.y49{bottom:189.900055px;}
.y13e{bottom:191.700096px;}
.y166{bottom:193.140060px;}
.y6a{bottom:198.180039px;}
.yd8{bottom:198.720085px;}
.y110{bottom:198.723686px;}
.y11c{bottom:200.340088px;}
.y24{bottom:206.100083px;}
.y83{bottom:206.460091px;}
.yf4{bottom:207.900055px;}
.y92{bottom:210.420043px;}
.y13d{bottom:210.600083px;}
.yb0{bottom:213.300041px;}
.y165{bottom:217.980079px;}
.y48{bottom:218.340088px;}
.y69{bottom:226.620072px;}
.yd7{bottom:227.340088px;}
.y109{bottom:228.605081px;}
.y11b{bottom:228.780052px;}
.y13c{bottom:229.680039px;}
.y23{bottom:234.540047px;}
.y82{bottom:234.900055px;}
.yf3{bottom:236.340088px;}
.y91{bottom:238.860077px;}
.yaf{bottom:241.740074px;}
.y164{bottom:243.000068px;}
.y47{bottom:246.780052px;}
.y13b{bottom:248.580093px;}
.yc0{bottom:251.820099px;}
.y68{bottom:255.060036px;}
.y11a{bottom:257.400055px;}
.yd6{bottom:261.720085px;}
.y81{bottom:263.340088px;}
.y10a{bottom:263.883415px;}
.yf2{bottom:264.780052px;}
.y13a{bottom:267.660049px;}
.y163{bottom:268.020058px;}
.y22{bottom:268.920043px;}
.y90{bottom:269.820099px;}
.yae{bottom:270.180039px;}
.y46{bottom:275.400055px;}
.y67{bottom:283.500068px;}
.y119{bottom:285.840088px;}
.ybf{bottom:286.200096px;}
.y139{bottom:286.560036px;}
.y9e{bottom:287.824001px;}
.yd5{bottom:290.160049px;}
.y80{bottom:291.780052px;}
.y162{bottom:293.040047px;}
.yf1{bottom:293.220085px;}
.y21{bottom:297.360077px;}
.yad{bottom:298.620072px;}
.y10b{bottom:299.701516px;}
.y45{bottom:303.840088px;}
.y138{bottom:305.460091px;}
.y66{bottom:311.940033px;}
.ybe{bottom:312.480079px;}
.y118{bottom:314.280052px;}
.y9d{bottom:317.705315px;}
.y161{bottom:317.880066px;}
.yd4{bottom:318.600083px;}
.y7f{bottom:320.220085px;}
.yf0{bottom:321.660049px;}
.y137{bottom:324.540047px;}
.y20{bottom:325.800041px;}
.yac{bottom:327.060036px;}
.y44{bottom:332.280052px;}
.y95{bottom:335.161221px;}
.y10c{bottom:335.523720px;}
.y65{bottom:340.560036px;}
.y117{bottom:342.720085px;}
.y160{bottom:342.900055px;}
.y136{bottom:343.440033px;}
.ybd{bottom:344.700096px;}
.yd3{bottom:347.040047px;}
.y7e{bottom:348.660049px;}
.yef{bottom:349.740074px;}
.y1f{bottom:354.240074px;}
.yab{bottom:355.500068px;}
.y96{bottom:360.543677px;}
.y43{bottom:360.720085px;}
.y135{bottom:362.520058px;}
.y15f{bottom:367.920043px;}
.y116{bottom:371.160049px;}
.y10d{bottom:371.164635px;}
.y64{bottom:374.940033px;}
.yd2{bottom:375.480079px;}
.ybc{bottom:376.920043px;}
.y7d{bottom:377.100083px;}
.yee{bottom:377.640060px;}
.y134{bottom:381.420043px;}
.y1e{bottom:382.860077px;}
.yaa{bottom:384.120072px;}
.y97{bottom:385.922030px;}
.y42{bottom:389.160049px;}
.y15e{bottom:392.940033px;}
.y115{bottom:399.600083px;}
.y133{bottom:400.320099px;}
.y63{bottom:403.380066px;}
.yd1{bottom:404.100083px;}
.y7c{bottom:405.540047px;}
.ybb{bottom:405.900055px;}
.yed{bottom:406.080093px;}
.y10e{bottom:406.982735px;}
.y1d{bottom:411.300041px;}
.y98{bottom:411.300383px;}
.y41{bottom:417.600083px;}
.y15d{bottom:417.780052px;}
.ya9{bottom:418.500068px;}
.y132{bottom:419.400055px;}
.y62{bottom:431.820099px;}
.yd0{bottom:432.540047px;}
.y7b{bottom:434.160049px;}
.y99{bottom:436.678736px;}
.yec{bottom:437.040047px;}
.y131{bottom:438.300041px;}
.yba{bottom:439.560036px;}
.y1c{bottom:439.740074px;}
.y15c{bottom:442.800041px;}
.y10f{bottom:442.804940px;}
.y40{bottom:446.040047px;}
.ya8{bottom:452.880066px;}
.yff{bottom:456.482883px;}
.y130{bottom:457.380066px;}
.y61{bottom:460.260064px;}
.ycf{bottom:460.980079px;}
.y9a{bottom:462.065297px;}
.y7a{bottom:462.600083px;}
.y15b{bottom:467.820099px;}
.y1b{bottom:468.180039px;}
.yb9{bottom:470.520058px;}
.y3f{bottom:474.480079px;}
.y12f{bottom:476.280052px;}
.ya7{bottom:479.340088px;}
.yf8{bottom:486.360174px;}
.y9b{bottom:487.443650px;}
.y60{bottom:488.700096px;}
.yce{bottom:489.420043px;}
.y79{bottom:491.040047px;}
.y15a{bottom:492.840088px;}
.y12e{bottom:495.180039px;}
.y106{bottom:499.860077px;}
.y3e{bottom:502.920043px;}
.ya6{bottom:506.880066px;}
.yb8{bottom:507.420043px;}
.y9c{bottom:512.822003px;}
.y12d{bottom:514.260064px;}
.y5f{bottom:517.320099px;}
.y159{bottom:517.680039px;}
.ycd{bottom:517.860077px;}
.y78{bottom:519.480079px;}
.yf9{bottom:523.084564px;}
.y1a{bottom:523.620072px;}
.y12c{bottom:533.160049px;}
.ya5{bottom:534.420043px;}
.y3d{bottom:537.480079px;}
.y158{bottom:542.700096px;}
.y5e{bottom:545.760064px;}
.ycc{bottom:546.300041px;}
.y77{bottom:547.920043px;}
.y19{bottom:552.060036px;}
.y12b{bottom:552.240074px;}
.yb7{bottom:553.860077px;}
.y105{bottom:560.700096px;}
.yfa{bottom:561.424069px;}
.ya4{bottom:563.220085px;}
.y3c{bottom:565.920043px;}
.y157{bottom:567.720085px;}
.y12a{bottom:571.140060px;}
.y5d{bottom:574.200096px;}
.ycb{bottom:574.740074px;}
.y76{bottom:576.360077px;}
.y18{bottom:580.500068px;}
.y8f{bottom:586.620072px;}
.yb6{bottom:588.420043px;}
.y104{bottom:590.040047px;}
.y156{bottom:592.740074px;}
.y3b{bottom:594.360077px;}
.ya3{bottom:595.260064px;}
.yfb{bottom:599.759350px;}
.y5c{bottom:602.640060px;}
.yca{bottom:603.180039px;}
.y114{bottom:604.800041px;}
.y17{bottom:608.940033px;}
.y129{bottom:609.120072px;}
.y75{bottom:610.920043px;}
.y8e{bottom:612.900055px;}
.y155{bottom:617.580093px;}
.y103{bottom:619.380066px;}
.y3a{bottom:622.800041px;}
.ya2{bottom:624.780052px;}
.y128{bottom:628.020058px;}
.y5b{bottom:631.080093px;}
.yc9{bottom:631.620072px;}
.y113{bottom:633.240074px;}
.y16{bottom:637.380066px;}
.yfc{bottom:638.102918px;}
.y74{bottom:639.360077px;}
.y8d{bottom:642.420043px;}
.y154{bottom:642.600083px;}
.y127{bottom:647.100083px;}
.y102{bottom:649.080093px;}
.y39{bottom:651.240074px;}
.yc8{bottom:660.240074px;}
.ya1{bottom:661.680039px;}
.y5a{bottom:665.460091px;}
.y15{bottom:666.000068px;}
.y153{bottom:667.620072px;}
.y73{bottom:667.800041px;}
.y8c{bottom:674.640060px;}
.yfd{bottom:676.442342px;}
.y38{bottom:679.680039px;}
.y101{bottom:684.180039px;}
.y126{bottom:684.900055px;}
.yc7{bottom:688.680073px;}
.y112{bottom:690.300076px;}
.y152{bottom:692.640060px;}
.y59{bottom:694.080059px;}
.y14{bottom:694.440067px;}
.y72{bottom:696.240074px;}
.y125{bottom:703.980079px;}
.y8b{bottom:706.320065px;}
.y37{bottom:708.300076px;}
.yfe{bottom:714.781807px;}
.y100{bottom:716.220051px;}
.yc6{bottom:717.120072px;}
.y151{bottom:717.480079px;}
.y58{bottom:722.520058px;}
.y13{bottom:722.880066px;}
.y71{bottom:724.680073px;}
.y36{bottom:736.740074px;}
.y8a{bottom:738.000068px;}
.y124{bottom:741.960056px;}
.ya0{bottom:742.680073px;}
.yc5{bottom:745.560070px;}
.y57{bottom:750.960056px;}
.y12{bottom:751.320065px;}
.y70{bottom:753.120072px;}
.y111{bottom:759.060070px;}
.y123{bottom:760.860077px;}
.y150{bottom:761.580059px;}
.y35{bottom:765.180073px;}
.y89{bottom:767.160049px;}
.y9f{bottom:771.120072px;}
.yeb{bottom:773.280052px;}
.yc4{bottom:774.000068px;}
.y11{bottom:779.760064px;}
.y122{bottom:779.940067px;}
.y56{bottom:780.480079px;}
.y14f{bottom:780.660049px;}
.y6f{bottom:787.680073px;}
.yb5{bottom:793.620072px;}
.y121{bottom:798.840054px;}
.y34{bottom:799.560070px;}
.yc3{bottom:802.440067px;}
.y88{bottom:804.060070px;}
.yea{bottom:807.840054px;}
.y10{bottom:808.200061px;}
.y55{bottom:816.120072px;}
.y120{bottom:817.740074px;}
.y14e{bottom:818.640060px;}
.yb4{bottom:822.060070px;}
.y33{bottom:828.000068px;}
.yc2{bottom:830.880066px;}
.ye9{bottom:834.120072px;}
.yf{bottom:836.640060px;}
.y14d{bottom:837.540081px;}
.y54{bottom:844.560070px;}
.y11f{bottom:847.800076px;}
.y87{bottom:850.500068px;}
.y32{bottom:856.440067px;}
.yc1{bottom:859.320065px;}
.ye{bottom:865.080059px;}
.ye8{bottom:866.160049px;}
.y11e{bottom:867.060070px;}
.y6e{bottom:873.000068px;}
.y14c{bottom:875.520058px;}
.y53{bottom:878.940067px;}
.y31{bottom:885.060070px;}
.yd{bottom:893.520058px;}
.y14b{bottom:894.420078px;}
.ye7{bottom:898.380066px;}
.y11d{bottom:901.440067px;}
.ye2{bottom:902.883182px;}
.y52{bottom:907.380066px;}
.y30{bottom:913.500068px;}
.yc{bottom:922.140060px;}
.ye6{bottom:928.080059px;}
.y14a{bottom:932.400055px;}
.ydb{bottom:932.941702px;}
.y51{bottom:935.820065px;}
.y2f{bottom:941.940067px;}
.yb{bottom:950.580059px;}
.y149{bottom:951.480079px;}
.ye5{bottom:962.100083px;}
.y50{bottom:964.440067px;}
.ydc{bottom:965.880828px;}
.y2e{bottom:970.380066px;}
.ya{bottom:979.020058px;}
.y148{bottom:989.280069px;}
.y4f{bottom:992.880066px;}
.ye4{bottom:993.060070px;}
.ydd{bottom:996.842419px;}
.y2d{bottom:998.820065px;}
.y9{bottom:999.000068px;}
.y147{bottom:1008.360060px;}
.ye3{bottom:1019.520058px;}
.y4e{bottom:1021.320065px;}
.y8{bottom:1021.860060px;}
.y2c{bottom:1027.260064px;}
.yde{bottom:1027.797413px;}
.y7{bottom:1039.140060px;}
.y146{bottom:1046.340070px;}
.y4d{bottom:1049.760064px;}
.y2b{bottom:1055.700061px;}
.y6{bottom:1057.680073px;}
.ydf{bottom:1058.759004px;}
.y145{bottom:1065.240074px;}
.y4c{bottom:1078.200061px;}
.y5{bottom:1081.800058px;}
.y2a{bottom:1084.140060px;}
.ye0{bottom:1089.898566px;}
.y144{bottom:1103.220068px;}
.y4{bottom:1106.460074px;}
.y6d{bottom:1106.640060px;}
.y29{bottom:1112.580059px;}
.ye1{bottom:1120.860168px;}
.y143{bottom:1122.120063px;}
.y3{bottom:1134.180064px;}
.y28{bottom:1141.200061px;}
.h6{height:48.226497px;}
.ha{height:53.709822px;}
.h5{height:55.997929px;}
.h7{height:59.223820px;}
.h8{height:59.935412px;}
.h9{height:62.070186px;}
.h2{height:65.886904px;}
.h4{height:76.221948px;}
.h3{height:86.645484px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200002px;}
.xa{left:112.319996px;}
.x1d{left:113.579999px;}
.x11{left:116.101024px;}
.x16{left:119.159610px;}
.x10{left:122.936697px;}
.x3{left:124.379998px;}
.x8{left:133.200002px;}
.xc{left:134.459997px;}
.xf{left:146.522085px;}
.x17{left:152.639256px;}
.x9{left:160.199993px;}
.x15{left:166.857730px;}
.x12{left:204.121062px;}
.x14{left:207.898159px;}
.x1a{left:211.139992px;}
.x13{left:239.222290px;}
.xe{left:257.400003px;}
.x6{left:300.420010px;}
.x1e{left:318.059983px;}
.x7{left:320.399987px;}
.x18{left:322.740131px;}
.x1b{left:323.821193px;}
.xd{left:326.160015px;}
.x4{left:392.399987px;}
.x5{left:446.399987px;}
.x1{left:769.860008px;}
.x1c{left:790.200027px;}
.x19{left:801.360008px;}
.xb{left:805.860008px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1{letter-spacing:16.329587pt;}
.ws2{word-spacing:-58.882400pt;}
.ws0{word-spacing:-16.310425pt;}
.ws4{word-spacing:-10.847972pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:67.260218pt;}
.ws8{word-spacing:67.260361pt;}
.ws7{word-spacing:186.143519pt;}
.ws6{word-spacing:252.383349pt;}
.ws3{word-spacing:261.983324pt;}
._8{margin-left:-3.580068pt;}
._7{margin-left:-2.120686pt;}
._1{margin-left:-0.986639pt;}
._0{width:0.922722pt;}
._4{width:1.878846pt;}
._3{width:3.325321pt;}
._f{width:5.018474pt;}
._e{width:6.736029pt;}
._d{width:7.723485pt;}
._11{width:9.081359pt;}
._10{width:10.195626pt;}
._b{width:11.187656pt;}
._c{width:12.219458pt;}
._9{width:13.434158pt;}
._a{width:14.375356pt;}
._12{width:15.309424pt;}
._5a{width:20.437612pt;}
._5{width:21.940134pt;}
._6{width:22.868250pt;}
._13{width:23.918804pt;}
._16{width:25.311139pt;}
._54{width:26.605452pt;}
._15{width:27.547073pt;}
._5c{width:29.011353pt;}
._5d{width:30.051064pt;}
._56{width:35.170745pt;}
._55{width:36.238336pt;}
._58{width:37.337727pt;}
._59{width:38.236251pt;}
._57{width:39.182456pt;}
._14{width:49.490846pt;}
._1a{width:78.440327pt;}
._1b{width:79.586823pt;}
._22{width:94.368113pt;}
._2c{width:98.468394pt;}
._27{width:99.646042pt;}
._2b{width:115.300710pt;}
._2a{width:116.591651pt;}
._3c{width:126.673983pt;}
._18{width:127.625072pt;}
._38{width:131.158504pt;}
._2f{width:132.376606pt;}
._30{width:133.546203pt;}
._29{width:140.274898pt;}
._4b{width:142.612253pt;}
._4a{width:143.917556pt;}
._25{width:147.282823pt;}
._24{width:148.460471pt;}
._31{width:149.719082pt;}
._3a{width:159.359589pt;}
._4d{width:168.059340pt;}
._2{width:172.702079pt;}
._3e{width:176.293906pt;}
._4e{width:192.598019pt;}
._53{width:198.084764pt;}
._3f{width:199.727261pt;}
._40{width:201.563426pt;}
._5b{width:205.162382pt;}
._52{width:209.471459pt;}
._39{width:213.599449pt;}
._51{width:221.951427pt;}
._2d{width:229.920780pt;}
._46{width:237.983386pt;}
._47{width:238.943383pt;}
._28{width:246.231205pt;}
._45{width:250.511563pt;}
._35{width:262.871217pt;}
._21{width:271.199300pt;}
._1d{width:344.480836pt;}
._1c{width:360.791261pt;}
._4c{width:379.680788pt;}
._42{width:395.680788pt;}
._34{width:405.158524pt;}
._41{width:411.991213pt;}
._23{width:421.007780pt;}
._32{width:425.999172pt;}
._37{width:442.639184pt;}
._36{width:462.557448pt;}
._2e{width:478.557448pt;}
._33{width:485.270042pt;}
._26{width:501.133114pt;}
._3b{width:505.130489pt;}
._17{width:518.801556pt;}
._48{width:521.745676pt;}
._1f{width:540.559228pt;}
._1e{width:576.477492pt;}
._20{width:583.190086pt;}
._4f{width:611.677444pt;}
._19{width:615.693170pt;}
._50{width:618.390038pt;}
._43{width:627.677444pt;}
._44{width:634.390038pt;}
._49{width:650.893122pt;}
._3d{width:666.893122pt;}
.fs4{font-size:47.999876pt;}
.fs3{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs2{font-size:74.882796pt;}
.fs1{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.200074pt;}
.y1{bottom:69.120118pt;}
.y86{bottom:102.240052pt;}
.y142{bottom:102.880066pt;}
.y108{bottom:106.720032pt;}
.y27{bottom:107.200074pt;}
.yf7{bottom:108.800049pt;}
.yb3{bottom:113.760071pt;}
.y4b{bottom:118.240052pt;}
.y141{bottom:119.840088pt;}
.y6c{bottom:125.600037pt;}
.y94{bottom:125.760071pt;}
.yda{bottom:126.080079pt;}
.y168{bottom:127.360047pt;}
.y85{bottom:127.520081pt;}
.y107{bottom:132.000061pt;}
.y26{bottom:132.480042pt;}
.yf6{bottom:134.240052pt;}
.y140{bottom:136.640076pt;}
.yb2{bottom:139.040039pt;}
.y4a{bottom:143.520081pt;}
.y167{bottom:149.440064pt;}
.y6b{bottom:150.880066pt;}
.yd9{bottom:151.360047pt;}
.y84{bottom:152.800049pt;}
.y13f{bottom:153.440064pt;}
.y93{bottom:156.480042pt;}
.y25{bottom:157.760071pt;}
.yf5{bottom:159.520081pt;}
.yb1{bottom:164.320069pt;}
.y49{bottom:168.800049pt;}
.y13e{bottom:170.400086pt;}
.y166{bottom:171.680054pt;}
.y6a{bottom:176.160035pt;}
.yd8{bottom:176.640076pt;}
.y110{bottom:176.643276pt;}
.y11c{bottom:178.080079pt;}
.y24{bottom:183.200074pt;}
.y83{bottom:183.520081pt;}
.yf4{bottom:184.800049pt;}
.y92{bottom:187.040039pt;}
.y13d{bottom:187.200074pt;}
.yb0{bottom:189.600037pt;}
.y165{bottom:193.760071pt;}
.y48{bottom:194.080079pt;}
.y69{bottom:201.440064pt;}
.yd7{bottom:202.080079pt;}
.y109{bottom:203.204516pt;}
.y11b{bottom:203.360047pt;}
.y13c{bottom:204.160035pt;}
.y23{bottom:208.480042pt;}
.y82{bottom:208.800049pt;}
.yf3{bottom:210.080079pt;}
.y91{bottom:212.320069pt;}
.yaf{bottom:214.880066pt;}
.y164{bottom:216.000061pt;}
.y47{bottom:219.360047pt;}
.y13b{bottom:220.960083pt;}
.yc0{bottom:223.840088pt;}
.y68{bottom:226.720032pt;}
.y11a{bottom:228.800049pt;}
.yd6{bottom:232.640076pt;}
.y81{bottom:234.080079pt;}
.y10a{bottom:234.563036pt;}
.yf2{bottom:235.360047pt;}
.y13a{bottom:237.920044pt;}
.y163{bottom:238.240052pt;}
.y22{bottom:239.040039pt;}
.y90{bottom:239.840088pt;}
.yae{bottom:240.160035pt;}
.y46{bottom:244.800049pt;}
.y67{bottom:252.000061pt;}
.y119{bottom:254.080079pt;}
.ybf{bottom:254.400086pt;}
.y139{bottom:254.720032pt;}
.y9e{bottom:255.843556pt;}
.yd5{bottom:257.920044pt;}
.y80{bottom:259.360047pt;}
.y162{bottom:260.480042pt;}
.yf1{bottom:260.640076pt;}
.y21{bottom:264.320069pt;}
.yad{bottom:265.440064pt;}
.y10b{bottom:266.401347pt;}
.y45{bottom:270.080079pt;}
.y138{bottom:271.520081pt;}
.y66{bottom:277.280030pt;}
.ybe{bottom:277.760071pt;}
.y118{bottom:279.360047pt;}
.y9d{bottom:282.404724pt;}
.y161{bottom:282.560059pt;}
.yd4{bottom:283.200074pt;}
.y7f{bottom:284.640076pt;}
.yf0{bottom:285.920044pt;}
.y137{bottom:288.480042pt;}
.y20{bottom:289.600037pt;}
.yac{bottom:290.720032pt;}
.y44{bottom:295.360047pt;}
.y95{bottom:297.921085pt;}
.y10c{bottom:298.243307pt;}
.y65{bottom:302.720032pt;}
.y117{bottom:304.640076pt;}
.y160{bottom:304.800049pt;}
.y136{bottom:305.280030pt;}
.ybd{bottom:306.400086pt;}
.yd3{bottom:308.480042pt;}
.y7e{bottom:309.920044pt;}
.yef{bottom:310.880066pt;}
.y1f{bottom:314.880066pt;}
.yab{bottom:316.000061pt;}
.y96{bottom:320.483269pt;}
.y43{bottom:320.640076pt;}
.y135{bottom:322.240052pt;}
.y15f{bottom:327.040039pt;}
.y116{bottom:329.920044pt;}
.y10d{bottom:329.924120pt;}
.y64{bottom:333.280030pt;}
.yd2{bottom:333.760071pt;}
.ybc{bottom:335.040039pt;}
.y7d{bottom:335.200074pt;}
.yee{bottom:335.680054pt;}
.y134{bottom:339.040039pt;}
.y1e{bottom:340.320069pt;}
.yaa{bottom:341.440064pt;}
.y97{bottom:343.041805pt;}
.y42{bottom:345.920044pt;}
.y15e{bottom:349.280030pt;}
.y115{bottom:355.200074pt;}
.y133{bottom:355.840088pt;}
.y63{bottom:358.560059pt;}
.yd1{bottom:359.200074pt;}
.y7c{bottom:360.480042pt;}
.ybb{bottom:360.800049pt;}
.yed{bottom:360.960083pt;}
.y10e{bottom:361.762431pt;}
.y1d{bottom:365.600037pt;}
.y98{bottom:365.600341pt;}
.y41{bottom:371.200074pt;}
.y15d{bottom:371.360047pt;}
.ya9{bottom:372.000061pt;}
.y132{bottom:372.800049pt;}
.y62{bottom:383.840088pt;}
.yd0{bottom:384.480042pt;}
.y7b{bottom:385.920044pt;}
.y99{bottom:388.158877pt;}
.yec{bottom:388.480042pt;}
.y131{bottom:389.600037pt;}
.yba{bottom:390.720032pt;}
.y1c{bottom:390.880066pt;}
.y15c{bottom:393.600037pt;}
.y10f{bottom:393.604391pt;}
.y40{bottom:396.480042pt;}
.ya8{bottom:402.560059pt;}
.yff{bottom:405.762563pt;}
.y130{bottom:406.560059pt;}
.y61{bottom:409.120057pt;}
.ycf{bottom:409.760071pt;}
.y9a{bottom:410.724708pt;}
.y7a{bottom:411.200074pt;}
.y15b{bottom:415.840088pt;}
.y1b{bottom:416.160035pt;}
.yb9{bottom:418.240052pt;}
.y3f{bottom:421.760071pt;}
.y12f{bottom:423.360047pt;}
.ya7{bottom:426.080079pt;}
.yf8{bottom:432.320155pt;}
.y9b{bottom:433.283244pt;}
.y60{bottom:434.400086pt;}
.yce{bottom:435.040039pt;}
.y79{bottom:436.480042pt;}
.y15a{bottom:438.080079pt;}
.y12e{bottom:440.160035pt;}
.y106{bottom:444.320069pt;}
.y3e{bottom:447.040039pt;}
.ya6{bottom:450.560059pt;}
.yb8{bottom:451.040039pt;}
.y9c{bottom:455.841780pt;}
.y12d{bottom:457.120057pt;}
.y5f{bottom:459.840088pt;}
.y159{bottom:460.160035pt;}
.ycd{bottom:460.320069pt;}
.y78{bottom:461.760071pt;}
.yf9{bottom:464.964057pt;}
.y1a{bottom:465.440064pt;}
.y12c{bottom:473.920044pt;}
.ya5{bottom:475.040039pt;}
.y3d{bottom:477.760071pt;}
.y158{bottom:482.400086pt;}
.y5e{bottom:485.120057pt;}
.ycc{bottom:485.600037pt;}
.y77{bottom:487.040039pt;}
.y19{bottom:490.720032pt;}
.y12b{bottom:490.880066pt;}
.yb7{bottom:492.320069pt;}
.y105{bottom:498.400086pt;}
.yfa{bottom:499.043617pt;}
.ya4{bottom:500.640076pt;}
.y3c{bottom:503.040039pt;}
.y157{bottom:504.640076pt;}
.y12a{bottom:507.680054pt;}
.y5d{bottom:510.400086pt;}
.ycb{bottom:510.880066pt;}
.y76{bottom:512.320069pt;}
.y18{bottom:516.000061pt;}
.y8f{bottom:521.440064pt;}
.yb6{bottom:523.040039pt;}
.y104{bottom:524.480042pt;}
.y156{bottom:526.880066pt;}
.y3b{bottom:528.320069pt;}
.ya3{bottom:529.120057pt;}
.yfb{bottom:533.119422pt;}
.y5c{bottom:535.680054pt;}
.yca{bottom:536.160035pt;}
.y114{bottom:537.600037pt;}
.y17{bottom:541.280030pt;}
.y129{bottom:541.440064pt;}
.y75{bottom:543.040039pt;}
.y8e{bottom:544.800049pt;}
.y155{bottom:548.960083pt;}
.y103{bottom:550.560059pt;}
.y3a{bottom:553.600037pt;}
.ya2{bottom:555.360047pt;}
.y128{bottom:558.240052pt;}
.y5b{bottom:560.960083pt;}
.yc9{bottom:561.440064pt;}
.y113{bottom:562.880066pt;}
.y16{bottom:566.560059pt;}
.yfc{bottom:567.202594pt;}
.y74{bottom:568.320069pt;}
.y8d{bottom:571.040039pt;}
.y154{bottom:571.200074pt;}
.y127{bottom:575.200074pt;}
.y102{bottom:576.960083pt;}
.y39{bottom:578.880066pt;}
.yc8{bottom:586.880066pt;}
.ya1{bottom:588.160035pt;}
.y5a{bottom:591.520081pt;}
.y15{bottom:592.000061pt;}
.y153{bottom:593.440064pt;}
.y73{bottom:593.600037pt;}
.y8c{bottom:599.680054pt;}
.yfd{bottom:601.282082pt;}
.y38{bottom:604.160035pt;}
.y101{bottom:608.160035pt;}
.y126{bottom:608.800049pt;}
.yc7{bottom:612.160065pt;}
.y112{bottom:613.600068pt;}
.y152{bottom:615.680054pt;}
.y59{bottom:616.960053pt;}
.y14{bottom:617.280060pt;}
.y72{bottom:618.880066pt;}
.y125{bottom:625.760071pt;}
.y8b{bottom:627.840058pt;}
.y37{bottom:629.600068pt;}
.yfe{bottom:635.361606pt;}
.y100{bottom:636.640046pt;}
.yc6{bottom:637.440064pt;}
.y151{bottom:637.760071pt;}
.y58{bottom:642.240052pt;}
.y13{bottom:642.560059pt;}
.y71{bottom:644.160065pt;}
.y36{bottom:654.880066pt;}
.y8a{bottom:656.000061pt;}
.y124{bottom:659.520050pt;}
.ya0{bottom:660.160065pt;}
.yc5{bottom:662.720063pt;}
.y57{bottom:667.520050pt;}
.y12{bottom:667.840058pt;}
.y70{bottom:669.440064pt;}
.y111{bottom:674.720063pt;}
.y123{bottom:676.320069pt;}
.y150{bottom:676.960053pt;}
.y35{bottom:680.160065pt;}
.y89{bottom:681.920044pt;}
.y9f{bottom:685.440064pt;}
.yeb{bottom:687.360047pt;}
.yc4{bottom:688.000061pt;}
.y11{bottom:693.120057pt;}
.y122{bottom:693.280060pt;}
.y56{bottom:693.760071pt;}
.y14f{bottom:693.920044pt;}
.y6f{bottom:700.160065pt;}
.yb5{bottom:705.440064pt;}
.y121{bottom:710.080048pt;}
.y34{bottom:710.720063pt;}
.yc3{bottom:713.280060pt;}
.y88{bottom:714.720063pt;}
.yea{bottom:718.080048pt;}
.y10{bottom:718.400055pt;}
.y55{bottom:725.440064pt;}
.y120{bottom:726.880066pt;}
.y14e{bottom:727.680054pt;}
.yb4{bottom:730.720063pt;}
.y33{bottom:736.000061pt;}
.yc2{bottom:738.560059pt;}
.ye9{bottom:741.440064pt;}
.yf{bottom:743.680054pt;}
.y14d{bottom:744.480072pt;}
.y54{bottom:750.720063pt;}
.y11f{bottom:753.600068pt;}
.y87{bottom:756.000061pt;}
.y32{bottom:761.280060pt;}
.yc1{bottom:763.840058pt;}
.ye{bottom:768.960053pt;}
.ye8{bottom:769.920044pt;}
.y11e{bottom:770.720063pt;}
.y6e{bottom:776.000061pt;}
.y14c{bottom:778.240052pt;}
.y53{bottom:781.280060pt;}
.y31{bottom:786.720063pt;}
.yd{bottom:794.240052pt;}
.y14b{bottom:795.040070pt;}
.ye7{bottom:798.560059pt;}
.y11d{bottom:801.280060pt;}
.ye2{bottom:802.562828pt;}
.y52{bottom:806.560059pt;}
.y30{bottom:812.000061pt;}
.yc{bottom:819.680054pt;}
.ye6{bottom:824.960053pt;}
.y14a{bottom:828.800049pt;}
.ydb{bottom:829.281513pt;}
.y51{bottom:831.840058pt;}
.y2f{bottom:837.280060pt;}
.yb{bottom:844.960053pt;}
.y149{bottom:845.760071pt;}
.ye5{bottom:855.200074pt;}
.y50{bottom:857.280060pt;}
.ydc{bottom:858.560736pt;}
.y2e{bottom:862.560059pt;}
.ya{bottom:870.240052pt;}
.y148{bottom:879.360062pt;}
.y4f{bottom:882.560059pt;}
.ye4{bottom:882.720063pt;}
.ydd{bottom:886.082151pt;}
.y2d{bottom:887.840058pt;}
.y9{bottom:888.000061pt;}
.y147{bottom:896.320054pt;}
.ye3{bottom:906.240052pt;}
.y4e{bottom:907.840058pt;}
.y8{bottom:908.320054pt;}
.y2c{bottom:913.120057pt;}
.yde{bottom:913.597700pt;}
.y7{bottom:923.680054pt;}
.y146{bottom:930.080063pt;}
.y4d{bottom:933.120057pt;}
.y2b{bottom:938.400055pt;}
.y6{bottom:940.160065pt;}
.ydf{bottom:941.119115pt;}
.y145{bottom:946.880066pt;}
.y4c{bottom:958.400055pt;}
.y5{bottom:961.600052pt;}
.y2a{bottom:963.680054pt;}
.ye0{bottom:968.798726pt;}
.y144{bottom:980.640061pt;}
.y4{bottom:983.520066pt;}
.y6d{bottom:983.680054pt;}
.y29{bottom:988.960053pt;}
.ye1{bottom:996.320149pt;}
.y143{bottom:997.440056pt;}
.y3{bottom:1008.160057pt;}
.y28{bottom:1014.400055pt;}
.h6{height:42.867997pt;}
.ha{height:47.742064pt;}
.h5{height:49.775937pt;}
.h7{height:52.643396pt;}
.h8{height:53.275921pt;}
.h9{height:55.173499pt;}
.h2{height:58.566137pt;}
.h4{height:67.752842pt;}
.h3{height:77.018208pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400002pt;}
.xa{left:99.839996pt;}
.x1d{left:100.959999pt;}
.x11{left:103.200911pt;}
.x16{left:105.919653pt;}
.x10{left:109.277064pt;}
.x3{left:110.559998pt;}
.x8{left:118.400002pt;}
.xc{left:119.519997pt;}
.xf{left:130.241853pt;}
.x17{left:135.679339pt;}
.x9{left:142.399994pt;}
.x15{left:148.317983pt;}
.x12{left:181.440944pt;}
.x14{left:184.798364pt;}
.x1a{left:187.679993pt;}
.x13{left:212.642036pt;}
.xe{left:228.800003pt;}
.x6{left:267.040009pt;}
.x1e{left:282.719985pt;}
.x7{left:284.799988pt;}
.x18{left:286.880116pt;}
.x1b{left:287.841060pt;}
.xd{left:289.920013pt;}
.x4{left:348.799988pt;}
.x5{left:396.799988pt;}
.x1{left:684.320007pt;}
.x1c{left:702.400024pt;}
.x19{left:712.320007pt;}
.xb{left:716.320007pt;}
}




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