
    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_88995740b1d4e82d29eabd71.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002441;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_826d17f3339cf1324f43f496.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a27f76b4526684758526e216.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_497692e7ec04b16b65e8233f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_d882d50d1c988628939e5e3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_08fab944a1ffe12d1c77c539.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_a9b1fed85b862e15f12cf304.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_818c0db785a0202e93213e24.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0a546117f4f425554fbe0783.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_5175d242087b07017059d388.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_f0795f350e0d87c70a71a58a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.864000px;}
.ls9{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.869760px;}
.lsf{letter-spacing:3.744000px;}
.ls14{letter-spacing:4.464000px;}
.ls13{letter-spacing:5.184000px;}
.ls1b{letter-spacing:6.600000px;}
.ls1a{letter-spacing:8.981280px;}
.ls16{letter-spacing:9.504000px;}
.ls10{letter-spacing:14.544000px;}
.ls15{letter-spacing:22.464000px;}
.ls18{letter-spacing:25.325760px;}
.lsc{letter-spacing:31.104000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws0{word-spacing:-32.940000px;}
.ws11{word-spacing:-20.880000px;}
.ws12{word-spacing:-20.520000px;}
.ws6{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws10{word-spacing:-20.160000px;}
.ws9{word-spacing:-20.016000px;}
.wse{word-spacing:-19.944000px;}
.ws7{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.800000px;}
.ws5{word-spacing:-19.584000px;}
.wsd{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.296000px;}
.wsf{word-spacing:-19.152000px;}
.ws4{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.837640px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-12.582240px;}
._9{margin-left:-11.131680px;}
._5{margin-left:-9.547680px;}
._8{margin-left:-7.780080px;}
._1b{margin-left:-6.226560px;}
._6{margin-left:-4.974960px;}
._12{margin-left:-3.819360px;}
._3{margin-left:-2.574240px;}
._1{margin-left:-1.436400px;}
._0{width:1.185840px;}
._7{width:2.430240px;}
._13{width:3.459600px;}
._e{width:4.460400px;}
._d{width:5.544000px;}
._f{width:7.418400px;}
._10{width:8.856000px;}
._11{width:10.440000px;}
._17{width:11.452320px;}
._16{width:12.528000px;}
._15{width:14.408400px;}
._14{width:15.480000px;}
._4{width:16.488000px;}
._18{width:17.551920px;}
._21{width:18.792000px;}
._19{width:21.096000px;}
._1a{width:22.320000px;}
._25{width:23.396400px;}
._a{width:24.408000px;}
._22{width:25.920000px;}
._20{width:27.504000px;}
._1f{width:28.584000px;}
._1c{width:30.096000px;}
._1d{width:31.260000px;}
._b{width:32.612400px;}
._2e{width:33.900240px;}
._1e{width:35.043840px;}
._23{width:36.648000px;}
._24{width:37.856400px;}
._2f{width:39.240000px;}
._30{width:40.536000px;}
._29{width:41.916000px;}
._28{width:43.560000px;}
._27{width:45.216000px;}
._26{width:46.368000px;}
._2c{width:48.312000px;}
._2d{width:56.066400px;}
._31{width:64.066560px;}
._33{width:87.336000px;}
._32{width:88.488000px;}
._2b{width:102.309120px;}
._2a{width:103.409280px;}
._35{width:144.000000px;}
._34{width:145.080000px;}
._36{width:329.688000px;}
._c{width:840.737280px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:14.571000px;}
.y1c{bottom:38.205000px;}
.y1b{bottom:68.436000px;}
.y1a{bottom:102.096000px;}
.y73{bottom:121.896000px;}
.y159{bottom:123.156000px;}
.y18d{bottom:124.596000px;}
.y147{bottom:128.196000px;}
.y94{bottom:130.536000px;}
.y19{bottom:131.076000px;}
.y128{bottom:132.156000px;}
.y81{bottom:132.876000px;}
.y13c{bottom:134.856000px;}
.yff{bottom:136.296000px;}
.y16a{bottom:137.196000px;}
.yc1{bottom:140.076000px;}
.y38{bottom:140.256000px;}
.yd7{bottom:141.156000px;}
.y1ce{bottom:142.956000px;}
.yb0{bottom:145.296000px;}
.y56{bottom:149.076000px;}
.y117{bottom:150.150000px;}
.y72{bottom:152.850000px;}
.y158{bottom:154.290000px;}
.y18c{bottom:155.550000px;}
.y1e8{bottom:157.710000px;}
.yea{bottom:159.150000px;}
.y93{bottom:161.490000px;}
.y127{bottom:163.290000px;}
.y18{bottom:163.830000px;}
.y37{bottom:165.810000px;}
.y13b{bottom:165.990000px;}
.yfe{bottom:167.250000px;}
.y169{bottom:168.150000px;}
.yc0{bottom:171.030000px;}
.yd6{bottom:172.290000px;}
.y12b{bottom:172.470000px;}
.y1cd{bottom:174.090000px;}
.y17a{bottom:174.990000px;}
.y1b3{bottom:176.070000px;}
.yaf{bottom:176.250000px;}
.y55{bottom:180.030000px;}
.y108{bottom:181.290000px;}
.y71{bottom:183.990000px;}
.y157{bottom:185.250000px;}
.y1e7{bottom:188.670000px;}
.ye9{bottom:190.290000px;}
.y92{bottom:192.630000px;}
.y126{bottom:194.250000px;}
.y18b{bottom:195.690000px;}
.y17{bottom:196.590000px;}
.y13a{bottom:196.950000px;}
.yfd{bottom:198.390000px;}
.y168{bottom:199.290000px;}
.yd5{bottom:203.250000px;}
.y36{bottom:205.230000px;}
.y179{bottom:205.950000px;}
.y1b2{bottom:207.030000px;}
.yae{bottom:207.390000px;}
.y54{bottom:211.170000px;}
.y107{bottom:212.250000px;}
.y1cc{bottom:214.230000px;}
.y19c{bottom:214.950000px;}
.y156{bottom:216.390000px;}
.y1e6{bottom:219.810000px;}
.ye8{bottom:221.250000px;}
.y91{bottom:223.590000px;}
.y70{bottom:223.950000px;}
.y125{bottom:225.390000px;}
.y18a{bottom:226.650000px;}
.y139{bottom:228.090000px;}
.y16{bottom:229.350000px;}
.y167{bottom:230.250000px;}
.yd4{bottom:234.390000px;}
.y178{bottom:237.090000px;}
.y1b1{bottom:238.170000px;}
.y192{bottom:238.350000px;}
.y114{bottom:242.130000px;}
.y106{bottom:243.390000px;}
.y1cb{bottom:245.370000px;}
.y35{bottom:245.730000px;}
.yad{bottom:247.350000px;}
.y1e5{bottom:250.770000px;}
.y53{bottom:251.130000px;}
.ye7{bottom:252.390000px;}
.ybf{bottom:253.650000px;}
.y6f{bottom:255.090000px;}
.y124{bottom:256.350000px;}
.y189{bottom:257.790000px;}
.y138{bottom:259.050000px;}
.yfc{bottom:260.490000px;}
.y15{bottom:261.390000px;}
.y90{bottom:263.730000px;}
.yd3{bottom:265.350000px;}
.y177{bottom:268.050000px;}
.y1b0{bottom:269.130000px;}
.y191{bottom:269.490000px;}
.y113{bottom:273.270000px;}
.y105{bottom:274.350000px;}
.y116{bottom:274.530000px;}
.yac{bottom:278.490000px;}
.y52{bottom:282.315000px;}
.ye6{bottom:283.395000px;}
.y1ca{bottom:285.375000px;}
.y6e{bottom:286.095000px;}
.y34{bottom:286.455000px;}
.y123{bottom:287.535000px;}
.y188{bottom:288.795000px;}
.y14{bottom:290.235000px;}
.y1e4{bottom:290.955000px;}
.yfb{bottom:291.495000px;}
.y166{bottom:292.395000px;}
.y8f{bottom:294.735000px;}
.ybe{bottom:296.535000px;}
.y176{bottom:299.235000px;}
.y1af{bottom:300.315000px;}
.y190{bottom:300.495000px;}
.y112{bottom:304.275000px;}
.y104{bottom:305.535000px;}
.y163{bottom:309.495000px;}
.y13{bottom:311.835000px;}
.y51{bottom:313.275000px;}
.ye5{bottom:314.535000px;}
.y1c9{bottom:316.335000px;}
.y19b{bottom:317.235000px;}
.y33{bottom:317.775000px;}
.yab{bottom:318.495000px;}
.y155{bottom:318.675000px;}
.y187{bottom:319.935000px;}
.y137{bottom:321.195000px;}
.y1e3{bottom:321.915000px;}
.y146{bottom:323.535000px;}
.y6d{bottom:326.235000px;}
.yd2{bottom:327.495000px;}
.y1ae{bottom:331.275000px;}
.yfa{bottom:331.635000px;}
.y111{bottom:335.415000px;}
.ybd{bottom:336.495000px;}
.y115{bottom:336.675000px;}
.y8e{bottom:337.215000px;}
.y175{bottom:339.195000px;}
.y12{bottom:340.635000px;}
.ye4{bottom:345.495000px;}
.y19a{bottom:348.195000px;}
.y32{bottom:348.735000px;}
.yaa{bottom:349.635000px;}
.y186{bottom:350.895000px;}
.y136{bottom:352.335000px;}
.y1e2{bottom:353.055000px;}
.y50{bottom:353.415000px;}
.y165{bottom:354.495000px;}
.y1c8{bottom:356.295000px;}
.y6c{bottom:357.195000px;}
.yd1{bottom:358.635000px;}
.y1ad{bottom:362.415000px;}
.yf9{bottom:362.595000px;}
.y145{bottom:363.495000px;}
.y110{bottom:366.375000px;}
.ybc{bottom:367.635000px;}
.y11{bottom:370.335000px;}
.y162{bottom:371.595000px;}
.ye3{bottom:376.635000px;}
.y8d{bottom:377.715000px;}
.y174{bottom:379.335000px;}
.ya9{bottom:380.595000px;}
.y185{bottom:381.855000px;}
.y135{bottom:383.295000px;}
.y4f{bottom:384.375000px;}
.y164{bottom:385.635000px;}
.y1c7{bottom:387.255000px;}
.y6b{bottom:388.335000px;}
.y31{bottom:389.055000px;}
.yd0{bottom:389.595000px;}
.y1e1{bottom:393.015000px;}
.y144{bottom:394.635000px;}
.ybb{bottom:398.595000px;}
.y1ac{bottom:402.375000px;}
.yf8{bottom:402.555000px;}
.y10{bottom:406.155000px;}
.y10f{bottom:406.515000px;}
.y12a{bottom:407.595000px;}
.y173{bottom:410.295000px;}
.ya8{bottom:411.555000px;}
.y8c{bottom:412.635000px;}
.y184{bottom:412.995000px;}
.y134{bottom:414.255000px;}
.y4e{bottom:415.515000px;}
.ye2{bottom:416.595000px;}
.y1c6{bottom:418.575000px;}
.y6a{bottom:419.295000px;}
.ycf{bottom:420.555000px;}
.y1e0{bottom:424.155000px;}
.y143{bottom:425.595000px;}
.yf{bottom:429.195000px;}
.y30{bottom:429.555000px;}
.y1ab{bottom:433.515000px;}
.yf7{bottom:433.695000px;}
.y10e{bottom:437.475000px;}
.y129{bottom:438.555000px;}
.y172{bottom:441.255000px;}
.y17d{bottom:442.695000px;}
.y183{bottom:443.955000px;}
.y8b{bottom:444.135000px;}
.y133{bottom:445.395000px;}
.y4d{bottom:446.475000px;}
.ye1{bottom:447.555000px;}
.y69{bottom:450.255000px;}
.ya7{bottom:451.695000px;}
.y1df{bottom:455.115000px;}
.y142{bottom:456.555000px;}
.y1c5{bottom:458.355000px;}
.yce{bottom:460.695000px;}
.y1aa{bottom:464.475000px;}
.ye{bottom:464.655000px;}
.y10d{bottom:468.615000px;}
.yba{bottom:469.695000px;}
.y2f{bottom:470.235000px;}
.y171{bottom:472.395000px;}
.y17c{bottom:473.655000px;}
.y182{bottom:475.095000px;}
.y132{bottom:476.355000px;}
.y4c{bottom:477.615000px;}
.ye0{bottom:478.695000px;}
.y68{bottom:481.395000px;}
.y153{bottom:482.655000px;}
.y122{bottom:482.835000px;}
.y1de{bottom:486.255000px;}
.yd{bottom:487.695000px;}
.y1c4{bottom:489.675000px;}
.ya6{bottom:491.655000px;}
.y1a9{bottom:495.615000px;}
.yf6{bottom:495.795000px;}
.y10c{bottom:499.575000px;}
.yb9{bottom:500.655000px;}
.y170{bottom:503.355000px;}
.y18f{bottom:504.795000px;}
.y131{bottom:507.495000px;}
.y4b{bottom:508.575000px;}
.ydf{bottom:509.655000px;}
.y2e{bottom:510.735000px;}
.y67{bottom:512.355000px;}
.y152{bottom:513.795000px;}
.y121{bottom:513.975000px;}
.y181{bottom:517.395000px;}
.y141{bottom:518.655000px;}
.y1c3{bottom:520.635000px;}
.ya5{bottom:522.795000px;}
.y1dd{bottom:526.215000px;}
.y1a8{bottom:526.575000px;}
.yf5{bottom:526.755000px;}
.yc{bottom:527.835000px;}
.y10b{bottom:530.715000px;}
.yb8{bottom:531.795000px;}
.y16f{bottom:534.495000px;}
.y4a{bottom:539.715000px;}
.yde{bottom:540.795000px;}
.y66{bottom:543.495000px;}
.y151{bottom:544.755000px;}
.y130{bottom:547.455000px;}
.y140{bottom:549.795000px;}
.y2d{bottom:551.415000px;}
.y180{bottom:553.575000px;}
.ya4{bottom:553.755000px;}
.y1dc{bottom:557.175000px;}
.y1a7{bottom:557.715000px;}
.y161{bottom:557.895000px;}
.y1c2{bottom:560.805000px;}
.yb7{bottom:562.785000px;}
.yb{bottom:563.145000px;}
.y16e{bottom:565.485000px;}
.yf4{bottom:566.925000px;}
.y10a{bottom:570.705000px;}
.ydd{bottom:571.785000px;}
.y65{bottom:574.485000px;}
.y150{bottom:575.925000px;}
.y12f{bottom:578.625000px;}
.y49{bottom:579.705000px;}
.y13f{bottom:580.785000px;}
.ya3{bottom:584.925000px;}
.y1db{bottom:588.345000px;}
.y1a6{bottom:588.705000px;}
.ya{bottom:589.245000px;}
.y17f{bottom:589.965000px;}
.y80{bottom:590.505000px;}
.y1c1{bottom:591.765000px;}
.y2c{bottom:591.945000px;}
.yb6{bottom:593.925000px;}
.y16d{bottom:596.625000px;}
.yf3{bottom:597.885000px;}
.y160{bottom:600.225000px;}
.ycd{bottom:602.925000px;}
.y64{bottom:605.625000px;}
.y14f{bottom:606.885000px;}
.y48{bottom:610.845000px;}
.y13e{bottom:611.925000px;}
.y109{bottom:613.185000px;}
.y120{bottom:615.885000px;}
.y12e{bottom:618.585000px;}
.y1da{bottom:619.305000px;}
.y1a5{bottom:619.845000px;}
.y1c0{bottom:622.725000px;}
.ya2{bottom:624.885000px;}
.y17e{bottom:626.325000px;}
.y7f{bottom:627.585000px;}
.yf2{bottom:629.025000px;}
.y9{bottom:630.105000px;}
.y2b{bottom:632.625000px;}
.ycc{bottom:633.885000px;}
.y15f{bottom:636.405000px;}
.y63{bottom:636.585000px;}
.y14e{bottom:638.025000px;}
.y16c{bottom:638.925000px;}
.y47{bottom:641.805000px;}
.y13d{bottom:642.885000px;}
.y11f{bottom:647.025000px;}
.y1a4{bottom:650.805000px;}
.ya1{bottom:656.025000px;}
.y7e{bottom:658.725000px;}
.y1d9{bottom:659.445000px;}
.yf1{bottom:659.985000px;}
.y12d{bottom:661.245000px;}
.y1bf{bottom:662.685000px;}
.ydc{bottom:665.025000px;}
.y62{bottom:667.725000px;}
.y14d{bottom:668.985000px;}
.y8{bottom:671.145000px;}
.y46{bottom:672.945000px;}
.y2a{bottom:673.125000px;}
.ycb{bottom:674.025000px;}
.y16b{bottom:675.285000px;}
.y11e{bottom:677.985000px;}
.y1a3{bottom:681.945000px;}
.ya0{bottom:686.985000px;}
.y7d{bottom:689.685000px;}
.y1d8{bottom:690.405000px;}
.yf0{bottom:691.125000px;}
.y1be{bottom:694.005000px;}
.ydb{bottom:695.985000px;}
.y12c{bottom:697.425000px;}
.y61{bottom:698.685000px;}
.y14c{bottom:700.125000px;}
.y45{bottom:703.905000px;}
.yca{bottom:704.985000px;}
.y11d{bottom:709.125000px;}
.y1a2{bottom:712.905000px;}
.y29{bottom:713.805000px;}
.y15e{bottom:715.605000px;}
.y9f{bottom:718.125000px;}
.y154{bottom:718.305000px;}
.y199{bottom:720.825000px;}
.y1d7{bottom:721.545000px;}
.yef{bottom:722.085000px;}
.yda{bottom:727.125000px;}
.y7{bottom:729.105000px;}
.y7c{bottom:729.825000px;}
.y14b{bottom:731.085000px;}
.y1bd{bottom:733.785000px;}
.y44{bottom:735.045000px;}
.yc9{bottom:736.125000px;}
.y11c{bottom:740.085000px;}
.y60{bottom:741.345000px;}
.y15d{bottom:746.745000px;}
.y9e{bottom:749.085000px;}
.y198{bottom:751.785000px;}
.y1d6{bottom:752.505000px;}
.y1a1{bottom:753.045000px;}
.y28{bottom:754.305000px;}
.yd9{bottom:758.085000px;}
.y7b{bottom:760.785000px;}
.yee{bottom:762.225000px;}
.y1bc{bottom:765.105000px;}
.y43{bottom:766.005000px;}
.yc8{bottom:767.085000px;}
.y17b{bottom:771.225000px;}
.y6{bottom:773.205000px;}
.y5f{bottom:775.005000px;}
.y15c{bottom:777.705000px;}
.y9d{bottom:780.225000px;}
.y197{bottom:782.925000px;}
.y1a0{bottom:784.005000px;}
.yd8{bottom:789.225000px;}
.y7a{bottom:791.925000px;}
.y1d5{bottom:792.645000px;}
.yed{bottom:793.185000px;}
.y27{bottom:794.985000px;}
.yc7{bottom:798.225000px;}
.y14a{bottom:802.185000px;}
.y1bb{bottom:805.065000px;}
.y42{bottom:806.145000px;}
.y9c{bottom:811.185000px;}
.y196{bottom:813.885000px;}
.y19f{bottom:815.145000px;}
.yb5{bottom:820.185000px;}
.y79{bottom:822.885000px;}
.yec{bottom:824.325000px;}
.yc6{bottom:829.185000px;}
.y1d4{bottom:832.605000px;}
.y149{bottom:833.325000px;}
.y26{bottom:835.485000px;}
.y1ba{bottom:836.205000px;}
.y5{bottom:836.565000px;}
.y41{bottom:837.105000px;}
.y9b{bottom:842.370000px;}
.y195{bottom:845.070000px;}
.y19e{bottom:846.150000px;}
.yb4{bottom:851.370000px;}
.y15b{bottom:856.590000px;}
.yc5{bottom:860.370000px;}
.y1d3{bottom:863.970000px;}
.yeb{bottom:864.330000px;}
.y4{bottom:865.590000px;}
.y40{bottom:868.290000px;}
.y9a{bottom:873.330000px;}
.y148{bottom:873.510000px;}
.y1b9{bottom:876.030000px;}
.y25{bottom:876.210000px;}
.y19d{bottom:877.290000px;}
.y8a{bottom:881.430000px;}
.yb3{bottom:882.330000px;}
.y11b{bottom:882.510000px;}
.y194{bottom:887.550000px;}
.yc4{bottom:891.330000px;}
.y15a{bottom:892.770000px;}
.y3{bottom:894.390000px;}
.y18e{bottom:895.470000px;}
.y5e{bottom:899.250000px;}
.y78{bottom:901.770000px;}
.y1d2{bottom:903.750000px;}
.y99{bottom:904.470000px;}
.y1b8{bottom:907.350000px;}
.y24{bottom:907.530000px;}
.y3f{bottom:908.250000px;}
.yb2{bottom:913.470000px;}
.y89{bottom:918.690000px;}
.yc3{bottom:922.470000px;}
.y2{bottom:923.370000px;}
.y193{bottom:923.730000px;}
.y5d{bottom:930.390000px;}
.y1d1{bottom:934.890000px;}
.y98{bottom:935.430000px;}
.y3e{bottom:939.390000px;}
.y1{bottom:940.650000px;}
.y77{bottom:944.430000px;}
.y1b7{bottom:947.130000px;}
.y23{bottom:947.850000px;}
.y88{bottom:949.650000px;}
.yc2{bottom:953.430000px;}
.y5c{bottom:961.350000px;}
.y1d0{bottom:965.850000px;}
.y97{bottom:966.570000px;}
.y3d{bottom:970.350000px;}
.yb1{bottom:975.570000px;}
.y1b6{bottom:978.270000px;}
.y87{bottom:980.610000px;}
.y76{bottom:984.570000px;}
.y11a{bottom:984.750000px;}
.y22{bottom:988.350000px;}
.y5b{bottom:992.310000px;}
.y103{bottom:997.530000px;}
.y3c{bottom:1001.310000px;}
.y96{bottom:1006.530000px;}
.y86{bottom:1011.750000px;}
.y75{bottom:1015.530000px;}
.y119{bottom:1015.710000px;}
.y1b5{bottom:1020.750000px;}
.y102{bottom:1028.670000px;}
.y21{bottom:1030.830000px;}
.y3b{bottom:1032.450000px;}
.y5a{bottom:1034.970000px;}
.y95{bottom:1037.670000px;}
.y85{bottom:1042.710000px;}
.y74{bottom:1046.670000px;}
.y101{bottom:1059.630000px;}
.y3a{bottom:1063.410000px;}
.y1b4{bottom:1065.930000px;}
.y20{bottom:1068.630000px;}
.y1cf{bottom:1068.810000px;}
.y84{bottom:1073.850000px;}
.y59{bottom:1077.630000px;}
.y39{bottom:1094.550000px;}
.y100{bottom:1099.770000px;}
.y1f{bottom:1100.850000px;}
.y83{bottom:1104.810000px;}
.y58{bottom:1108.770000px;}
.y1e{bottom:1137.060000px;}
.y57{bottom:1139.760000px;}
.y118{bottom:1139.940000px;}
.y82{bottom:1142.640000px;}
.hb{height:41.391000px;}
.ha{height:50.359219px;}
.h2{height:54.628594px;}
.h11{height:58.651172px;}
.h9{height:59.378906px;}
.h10{height:60.226875px;}
.hf{height:64.546875px;}
.h3{height:66.757500px;}
.h7{height:69.473320px;}
.he{height:70.664062px;}
.h8{height:75.093750px;}
.hd{height:84.898125px;}
.hc{height:87.859687px;}
.h6{height:99.874688px;}
.h5{height:129.315234px;}
.h4{height:145.125000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:52.365000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:17.805000px;}
.xd{left:21.945000px;}
.x2{left:127.656000px;}
.x10{left:144.216000px;}
.x14{left:154.650000px;}
.x6{left:157.890000px;}
.x11{left:160.590000px;}
.xe{left:167.070000px;}
.x15{left:181.650000px;}
.x16{left:197.130000px;}
.x3{left:205.050000px;}
.x5{left:218.910000px;}
.x9{left:266.115000px;}
.xf{left:332.895000px;}
.xb{left:345.315000px;}
.xa{left:358.815000px;}
.x8{left:372.135000px;}
.x7{left:374.655000px;}
.xc{left:430.860000px;}
.x4{left:457.125000px;}
.x1{left:567.465000px;}
.x12{left:786.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.773120pt;}
.lsf{letter-spacing:3.328000pt;}
.ls14{letter-spacing:3.968000pt;}
.ls13{letter-spacing:4.608000pt;}
.ls1b{letter-spacing:5.866667pt;}
.ls1a{letter-spacing:7.983360pt;}
.ls16{letter-spacing:8.448000pt;}
.ls10{letter-spacing:12.928000pt;}
.ls15{letter-spacing:19.968000pt;}
.ls18{letter-spacing:22.511787pt;}
.lsc{letter-spacing:27.648000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws0{word-spacing:-29.280000pt;}
.ws11{word-spacing:-18.560000pt;}
.ws12{word-spacing:-18.240000pt;}
.ws6{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws10{word-spacing:-17.920000pt;}
.ws9{word-spacing:-17.792000pt;}
.wse{word-spacing:-17.728000pt;}
.ws7{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws5{word-spacing:-17.408000pt;}
.wsd{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.152000pt;}
.wsf{word-spacing:-17.024000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.189013pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-11.184213pt;}
._9{margin-left:-9.894827pt;}
._5{margin-left:-8.486827pt;}
._8{margin-left:-6.915627pt;}
._1b{margin-left:-5.534720pt;}
._6{margin-left:-4.422187pt;}
._12{margin-left:-3.394987pt;}
._3{margin-left:-2.288213pt;}
._1{margin-left:-1.276800pt;}
._0{width:1.054080pt;}
._7{width:2.160213pt;}
._13{width:3.075200pt;}
._e{width:3.964800pt;}
._d{width:4.928000pt;}
._f{width:6.594133pt;}
._10{width:7.872000pt;}
._11{width:9.280000pt;}
._17{width:10.179840pt;}
._16{width:11.136000pt;}
._15{width:12.807467pt;}
._14{width:13.760000pt;}
._4{width:14.656000pt;}
._18{width:15.601707pt;}
._21{width:16.704000pt;}
._19{width:18.752000pt;}
._1a{width:19.840000pt;}
._25{width:20.796800pt;}
._a{width:21.696000pt;}
._22{width:23.040000pt;}
._20{width:24.448000pt;}
._1f{width:25.408000pt;}
._1c{width:26.752000pt;}
._1d{width:27.786667pt;}
._b{width:28.988800pt;}
._2e{width:30.133547pt;}
._1e{width:31.150080pt;}
._23{width:32.576000pt;}
._24{width:33.650133pt;}
._2f{width:34.880000pt;}
._30{width:36.032000pt;}
._29{width:37.258667pt;}
._28{width:38.720000pt;}
._27{width:40.192000pt;}
._26{width:41.216000pt;}
._2c{width:42.944000pt;}
._2d{width:49.836800pt;}
._31{width:56.948053pt;}
._33{width:77.632000pt;}
._32{width:78.656000pt;}
._2b{width:90.941440pt;}
._2a{width:91.919360pt;}
._35{width:128.000000pt;}
._34{width:128.960000pt;}
._36{width:293.056000pt;}
._c{width:747.322027pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:12.952000pt;}
.y1c{bottom:33.960000pt;}
.y1b{bottom:60.832000pt;}
.y1a{bottom:90.752000pt;}
.y73{bottom:108.352000pt;}
.y159{bottom:109.472000pt;}
.y18d{bottom:110.752000pt;}
.y147{bottom:113.952000pt;}
.y94{bottom:116.032000pt;}
.y19{bottom:116.512000pt;}
.y128{bottom:117.472000pt;}
.y81{bottom:118.112000pt;}
.y13c{bottom:119.872000pt;}
.yff{bottom:121.152000pt;}
.y16a{bottom:121.952000pt;}
.yc1{bottom:124.512000pt;}
.y38{bottom:124.672000pt;}
.yd7{bottom:125.472000pt;}
.y1ce{bottom:127.072000pt;}
.yb0{bottom:129.152000pt;}
.y56{bottom:132.512000pt;}
.y117{bottom:133.466667pt;}
.y72{bottom:135.866667pt;}
.y158{bottom:137.146667pt;}
.y18c{bottom:138.266667pt;}
.y1e8{bottom:140.186667pt;}
.yea{bottom:141.466667pt;}
.y93{bottom:143.546667pt;}
.y127{bottom:145.146667pt;}
.y18{bottom:145.626667pt;}
.y37{bottom:147.386667pt;}
.y13b{bottom:147.546667pt;}
.yfe{bottom:148.666667pt;}
.y169{bottom:149.466667pt;}
.yc0{bottom:152.026667pt;}
.yd6{bottom:153.146667pt;}
.y12b{bottom:153.306667pt;}
.y1cd{bottom:154.746667pt;}
.y17a{bottom:155.546667pt;}
.y1b3{bottom:156.506667pt;}
.yaf{bottom:156.666667pt;}
.y55{bottom:160.026667pt;}
.y108{bottom:161.146667pt;}
.y71{bottom:163.546667pt;}
.y157{bottom:164.666667pt;}
.y1e7{bottom:167.706667pt;}
.ye9{bottom:169.146667pt;}
.y92{bottom:171.226667pt;}
.y126{bottom:172.666667pt;}
.y18b{bottom:173.946667pt;}
.y17{bottom:174.746667pt;}
.y13a{bottom:175.066667pt;}
.yfd{bottom:176.346667pt;}
.y168{bottom:177.146667pt;}
.yd5{bottom:180.666667pt;}
.y36{bottom:182.426667pt;}
.y179{bottom:183.066667pt;}
.y1b2{bottom:184.026667pt;}
.yae{bottom:184.346667pt;}
.y54{bottom:187.706667pt;}
.y107{bottom:188.666667pt;}
.y1cc{bottom:190.426667pt;}
.y19c{bottom:191.066667pt;}
.y156{bottom:192.346667pt;}
.y1e6{bottom:195.386667pt;}
.ye8{bottom:196.666667pt;}
.y91{bottom:198.746667pt;}
.y70{bottom:199.066667pt;}
.y125{bottom:200.346667pt;}
.y18a{bottom:201.466667pt;}
.y139{bottom:202.746667pt;}
.y16{bottom:203.866667pt;}
.y167{bottom:204.666667pt;}
.yd4{bottom:208.346667pt;}
.y178{bottom:210.746667pt;}
.y1b1{bottom:211.706667pt;}
.y192{bottom:211.866667pt;}
.y114{bottom:215.226667pt;}
.y106{bottom:216.346667pt;}
.y1cb{bottom:218.106667pt;}
.y35{bottom:218.426667pt;}
.yad{bottom:219.866667pt;}
.y1e5{bottom:222.906667pt;}
.y53{bottom:223.226667pt;}
.ye7{bottom:224.346667pt;}
.ybf{bottom:225.466667pt;}
.y6f{bottom:226.746667pt;}
.y124{bottom:227.866667pt;}
.y189{bottom:229.146667pt;}
.y138{bottom:230.266667pt;}
.yfc{bottom:231.546667pt;}
.y15{bottom:232.346667pt;}
.y90{bottom:234.426667pt;}
.yd3{bottom:235.866667pt;}
.y177{bottom:238.266667pt;}
.y1b0{bottom:239.226667pt;}
.y191{bottom:239.546667pt;}
.y113{bottom:242.906667pt;}
.y105{bottom:243.866667pt;}
.y116{bottom:244.026667pt;}
.yac{bottom:247.546667pt;}
.y52{bottom:250.946667pt;}
.ye6{bottom:251.906667pt;}
.y1ca{bottom:253.666667pt;}
.y6e{bottom:254.306667pt;}
.y34{bottom:254.626667pt;}
.y123{bottom:255.586667pt;}
.y188{bottom:256.706667pt;}
.y14{bottom:257.986667pt;}
.y1e4{bottom:258.626667pt;}
.yfb{bottom:259.106667pt;}
.y166{bottom:259.906667pt;}
.y8f{bottom:261.986667pt;}
.ybe{bottom:263.586667pt;}
.y176{bottom:265.986667pt;}
.y1af{bottom:266.946667pt;}
.y190{bottom:267.106667pt;}
.y112{bottom:270.466667pt;}
.y104{bottom:271.586667pt;}
.y163{bottom:275.106667pt;}
.y13{bottom:277.186667pt;}
.y51{bottom:278.466667pt;}
.ye5{bottom:279.586667pt;}
.y1c9{bottom:281.186667pt;}
.y19b{bottom:281.986667pt;}
.y33{bottom:282.466667pt;}
.yab{bottom:283.106667pt;}
.y155{bottom:283.266667pt;}
.y187{bottom:284.386667pt;}
.y137{bottom:285.506667pt;}
.y1e3{bottom:286.146667pt;}
.y146{bottom:287.586667pt;}
.y6d{bottom:289.986667pt;}
.yd2{bottom:291.106667pt;}
.y1ae{bottom:294.466667pt;}
.yfa{bottom:294.786667pt;}
.y111{bottom:298.146667pt;}
.ybd{bottom:299.106667pt;}
.y115{bottom:299.266667pt;}
.y8e{bottom:299.746667pt;}
.y175{bottom:301.506667pt;}
.y12{bottom:302.786667pt;}
.ye4{bottom:307.106667pt;}
.y19a{bottom:309.506667pt;}
.y32{bottom:309.986667pt;}
.yaa{bottom:310.786667pt;}
.y186{bottom:311.906667pt;}
.y136{bottom:313.186667pt;}
.y1e2{bottom:313.826667pt;}
.y50{bottom:314.146667pt;}
.y165{bottom:315.106667pt;}
.y1c8{bottom:316.706667pt;}
.y6c{bottom:317.506667pt;}
.yd1{bottom:318.786667pt;}
.y1ad{bottom:322.146667pt;}
.yf9{bottom:322.306667pt;}
.y145{bottom:323.106667pt;}
.y110{bottom:325.666667pt;}
.ybc{bottom:326.786667pt;}
.y11{bottom:329.186667pt;}
.y162{bottom:330.306667pt;}
.ye3{bottom:334.786667pt;}
.y8d{bottom:335.746667pt;}
.y174{bottom:337.186667pt;}
.ya9{bottom:338.306667pt;}
.y185{bottom:339.426667pt;}
.y135{bottom:340.706667pt;}
.y4f{bottom:341.666667pt;}
.y164{bottom:342.786667pt;}
.y1c7{bottom:344.226667pt;}
.y6b{bottom:345.186667pt;}
.y31{bottom:345.826667pt;}
.yd0{bottom:346.306667pt;}
.y1e1{bottom:349.346667pt;}
.y144{bottom:350.786667pt;}
.ybb{bottom:354.306667pt;}
.y1ac{bottom:357.666667pt;}
.yf8{bottom:357.826667pt;}
.y10{bottom:361.026667pt;}
.y10f{bottom:361.346667pt;}
.y12a{bottom:362.306667pt;}
.y173{bottom:364.706667pt;}
.ya8{bottom:365.826667pt;}
.y8c{bottom:366.786667pt;}
.y184{bottom:367.106667pt;}
.y134{bottom:368.226667pt;}
.y4e{bottom:369.346667pt;}
.ye2{bottom:370.306667pt;}
.y1c6{bottom:372.066667pt;}
.y6a{bottom:372.706667pt;}
.ycf{bottom:373.826667pt;}
.y1e0{bottom:377.026667pt;}
.y143{bottom:378.306667pt;}
.yf{bottom:381.506667pt;}
.y30{bottom:381.826667pt;}
.y1ab{bottom:385.346667pt;}
.yf7{bottom:385.506667pt;}
.y10e{bottom:388.866667pt;}
.y129{bottom:389.826667pt;}
.y172{bottom:392.226667pt;}
.y17d{bottom:393.506667pt;}
.y183{bottom:394.626667pt;}
.y8b{bottom:394.786667pt;}
.y133{bottom:395.906667pt;}
.y4d{bottom:396.866667pt;}
.ye1{bottom:397.826667pt;}
.y69{bottom:400.226667pt;}
.ya7{bottom:401.506667pt;}
.y1df{bottom:404.546667pt;}
.y142{bottom:405.826667pt;}
.y1c5{bottom:407.426667pt;}
.yce{bottom:409.506667pt;}
.y1aa{bottom:412.866667pt;}
.ye{bottom:413.026667pt;}
.y10d{bottom:416.546667pt;}
.yba{bottom:417.506667pt;}
.y2f{bottom:417.986667pt;}
.y171{bottom:419.906667pt;}
.y17c{bottom:421.026667pt;}
.y182{bottom:422.306667pt;}
.y132{bottom:423.426667pt;}
.y4c{bottom:424.546667pt;}
.ye0{bottom:425.506667pt;}
.y68{bottom:427.906667pt;}
.y153{bottom:429.026667pt;}
.y122{bottom:429.186667pt;}
.y1de{bottom:432.226667pt;}
.yd{bottom:433.506667pt;}
.y1c4{bottom:435.266667pt;}
.ya6{bottom:437.026667pt;}
.y1a9{bottom:440.546667pt;}
.yf6{bottom:440.706667pt;}
.y10c{bottom:444.066667pt;}
.yb9{bottom:445.026667pt;}
.y170{bottom:447.426667pt;}
.y18f{bottom:448.706667pt;}
.y131{bottom:451.106667pt;}
.y4b{bottom:452.066667pt;}
.ydf{bottom:453.026667pt;}
.y2e{bottom:453.986667pt;}
.y67{bottom:455.426667pt;}
.y152{bottom:456.706667pt;}
.y121{bottom:456.866667pt;}
.y181{bottom:459.906667pt;}
.y141{bottom:461.026667pt;}
.y1c3{bottom:462.786667pt;}
.ya5{bottom:464.706667pt;}
.y1dd{bottom:467.746667pt;}
.y1a8{bottom:468.066667pt;}
.yf5{bottom:468.226667pt;}
.yc{bottom:469.186667pt;}
.y10b{bottom:471.746667pt;}
.yb8{bottom:472.706667pt;}
.y16f{bottom:475.106667pt;}
.y4a{bottom:479.746667pt;}
.yde{bottom:480.706667pt;}
.y66{bottom:483.106667pt;}
.y151{bottom:484.226667pt;}
.y130{bottom:486.626667pt;}
.y140{bottom:488.706667pt;}
.y2d{bottom:490.146667pt;}
.y180{bottom:492.066667pt;}
.ya4{bottom:492.226667pt;}
.y1dc{bottom:495.266667pt;}
.y1a7{bottom:495.746667pt;}
.y161{bottom:495.906667pt;}
.y1c2{bottom:498.493333pt;}
.yb7{bottom:500.253333pt;}
.yb{bottom:500.573333pt;}
.y16e{bottom:502.653333pt;}
.yf4{bottom:503.933333pt;}
.y10a{bottom:507.293333pt;}
.ydd{bottom:508.253333pt;}
.y65{bottom:510.653333pt;}
.y150{bottom:511.933333pt;}
.y12f{bottom:514.333333pt;}
.y49{bottom:515.293333pt;}
.y13f{bottom:516.253333pt;}
.ya3{bottom:519.933333pt;}
.y1db{bottom:522.973333pt;}
.y1a6{bottom:523.293333pt;}
.ya{bottom:523.773333pt;}
.y17f{bottom:524.413333pt;}
.y80{bottom:524.893333pt;}
.y1c1{bottom:526.013333pt;}
.y2c{bottom:526.173333pt;}
.yb6{bottom:527.933333pt;}
.y16d{bottom:530.333333pt;}
.yf3{bottom:531.453333pt;}
.y160{bottom:533.533333pt;}
.ycd{bottom:535.933333pt;}
.y64{bottom:538.333333pt;}
.y14f{bottom:539.453333pt;}
.y48{bottom:542.973333pt;}
.y13e{bottom:543.933333pt;}
.y109{bottom:545.053333pt;}
.y120{bottom:547.453333pt;}
.y12e{bottom:549.853333pt;}
.y1da{bottom:550.493333pt;}
.y1a5{bottom:550.973333pt;}
.y1c0{bottom:553.533333pt;}
.ya2{bottom:555.453333pt;}
.y17e{bottom:556.733333pt;}
.y7f{bottom:557.853333pt;}
.yf2{bottom:559.133333pt;}
.y9{bottom:560.093333pt;}
.y2b{bottom:562.333333pt;}
.ycc{bottom:563.453333pt;}
.y15f{bottom:565.693333pt;}
.y63{bottom:565.853333pt;}
.y14e{bottom:567.133333pt;}
.y16c{bottom:567.933333pt;}
.y47{bottom:570.493333pt;}
.y13d{bottom:571.453333pt;}
.y11f{bottom:575.133333pt;}
.y1a4{bottom:578.493333pt;}
.ya1{bottom:583.133333pt;}
.y7e{bottom:585.533333pt;}
.y1d9{bottom:586.173333pt;}
.yf1{bottom:586.653333pt;}
.y12d{bottom:587.773333pt;}
.y1bf{bottom:589.053333pt;}
.ydc{bottom:591.133333pt;}
.y62{bottom:593.533333pt;}
.y14d{bottom:594.653333pt;}
.y8{bottom:596.573333pt;}
.y46{bottom:598.173333pt;}
.y2a{bottom:598.333333pt;}
.ycb{bottom:599.133333pt;}
.y16b{bottom:600.253333pt;}
.y11e{bottom:602.653333pt;}
.y1a3{bottom:606.173333pt;}
.ya0{bottom:610.653333pt;}
.y7d{bottom:613.053333pt;}
.y1d8{bottom:613.693333pt;}
.yf0{bottom:614.333333pt;}
.y1be{bottom:616.893333pt;}
.ydb{bottom:618.653333pt;}
.y12c{bottom:619.933333pt;}
.y61{bottom:621.053333pt;}
.y14c{bottom:622.333333pt;}
.y45{bottom:625.693333pt;}
.yca{bottom:626.653333pt;}
.y11d{bottom:630.333333pt;}
.y1a2{bottom:633.693333pt;}
.y29{bottom:634.493333pt;}
.y15e{bottom:636.093333pt;}
.y9f{bottom:638.333333pt;}
.y154{bottom:638.493333pt;}
.y199{bottom:640.733333pt;}
.y1d7{bottom:641.373333pt;}
.yef{bottom:641.853333pt;}
.yda{bottom:646.333333pt;}
.y7{bottom:648.093333pt;}
.y7c{bottom:648.733333pt;}
.y14b{bottom:649.853333pt;}
.y1bd{bottom:652.253333pt;}
.y44{bottom:653.373333pt;}
.yc9{bottom:654.333333pt;}
.y11c{bottom:657.853333pt;}
.y60{bottom:658.973333pt;}
.y15d{bottom:663.773333pt;}
.y9e{bottom:665.853333pt;}
.y198{bottom:668.253333pt;}
.y1d6{bottom:668.893333pt;}
.y1a1{bottom:669.373333pt;}
.y28{bottom:670.493333pt;}
.yd9{bottom:673.853333pt;}
.y7b{bottom:676.253333pt;}
.yee{bottom:677.533333pt;}
.y1bc{bottom:680.093333pt;}
.y43{bottom:680.893333pt;}
.yc8{bottom:681.853333pt;}
.y17b{bottom:685.533333pt;}
.y6{bottom:687.293333pt;}
.y5f{bottom:688.893333pt;}
.y15c{bottom:691.293333pt;}
.y9d{bottom:693.533333pt;}
.y197{bottom:695.933333pt;}
.y1a0{bottom:696.893333pt;}
.yd8{bottom:701.533333pt;}
.y7a{bottom:703.933333pt;}
.y1d5{bottom:704.573333pt;}
.yed{bottom:705.053333pt;}
.y27{bottom:706.653333pt;}
.yc7{bottom:709.533333pt;}
.y14a{bottom:713.053333pt;}
.y1bb{bottom:715.613333pt;}
.y42{bottom:716.573333pt;}
.y9c{bottom:721.053333pt;}
.y196{bottom:723.453333pt;}
.y19f{bottom:724.573333pt;}
.yb5{bottom:729.053333pt;}
.y79{bottom:731.453333pt;}
.yec{bottom:732.733333pt;}
.yc6{bottom:737.053333pt;}
.y1d4{bottom:740.093333pt;}
.y149{bottom:740.733333pt;}
.y26{bottom:742.653333pt;}
.y1ba{bottom:743.293333pt;}
.y5{bottom:743.613333pt;}
.y41{bottom:744.093333pt;}
.y9b{bottom:748.773333pt;}
.y195{bottom:751.173333pt;}
.y19e{bottom:752.133333pt;}
.yb4{bottom:756.773333pt;}
.y15b{bottom:761.413333pt;}
.yc5{bottom:764.773333pt;}
.y1d3{bottom:767.973333pt;}
.yeb{bottom:768.293333pt;}
.y4{bottom:769.413333pt;}
.y40{bottom:771.813333pt;}
.y9a{bottom:776.293333pt;}
.y148{bottom:776.453333pt;}
.y1b9{bottom:778.693333pt;}
.y25{bottom:778.853333pt;}
.y19d{bottom:779.813333pt;}
.y8a{bottom:783.493333pt;}
.yb3{bottom:784.293333pt;}
.y11b{bottom:784.453333pt;}
.y194{bottom:788.933333pt;}
.yc4{bottom:792.293333pt;}
.y15a{bottom:793.573333pt;}
.y3{bottom:795.013333pt;}
.y18e{bottom:795.973333pt;}
.y5e{bottom:799.333333pt;}
.y78{bottom:801.573333pt;}
.y1d2{bottom:803.333333pt;}
.y99{bottom:803.973333pt;}
.y1b8{bottom:806.533333pt;}
.y24{bottom:806.693333pt;}
.y3f{bottom:807.333333pt;}
.yb2{bottom:811.973333pt;}
.y89{bottom:816.613333pt;}
.yc3{bottom:819.973333pt;}
.y2{bottom:820.773333pt;}
.y193{bottom:821.093333pt;}
.y5d{bottom:827.013333pt;}
.y1d1{bottom:831.013333pt;}
.y98{bottom:831.493333pt;}
.y3e{bottom:835.013333pt;}
.y1{bottom:836.133333pt;}
.y77{bottom:839.493333pt;}
.y1b7{bottom:841.893333pt;}
.y23{bottom:842.533333pt;}
.y88{bottom:844.133333pt;}
.yc2{bottom:847.493333pt;}
.y5c{bottom:854.533333pt;}
.y1d0{bottom:858.533333pt;}
.y97{bottom:859.173333pt;}
.y3d{bottom:862.533333pt;}
.yb1{bottom:867.173333pt;}
.y1b6{bottom:869.573333pt;}
.y87{bottom:871.653333pt;}
.y76{bottom:875.173333pt;}
.y11a{bottom:875.333333pt;}
.y22{bottom:878.533333pt;}
.y5b{bottom:882.053333pt;}
.y103{bottom:886.693333pt;}
.y3c{bottom:890.053333pt;}
.y96{bottom:894.693333pt;}
.y86{bottom:899.333333pt;}
.y75{bottom:902.693333pt;}
.y119{bottom:902.853333pt;}
.y1b5{bottom:907.333333pt;}
.y102{bottom:914.373333pt;}
.y21{bottom:916.293333pt;}
.y3b{bottom:917.733333pt;}
.y5a{bottom:919.973333pt;}
.y95{bottom:922.373333pt;}
.y85{bottom:926.853333pt;}
.y74{bottom:930.373333pt;}
.y101{bottom:941.893333pt;}
.y3a{bottom:945.253333pt;}
.y1b4{bottom:947.493333pt;}
.y20{bottom:949.893333pt;}
.y1cf{bottom:950.053333pt;}
.y84{bottom:954.533333pt;}
.y59{bottom:957.893333pt;}
.y39{bottom:972.933333pt;}
.y100{bottom:977.573333pt;}
.y1f{bottom:978.533333pt;}
.y83{bottom:982.053333pt;}
.y58{bottom:985.573333pt;}
.y1e{bottom:1010.720000pt;}
.y57{bottom:1013.120000pt;}
.y118{bottom:1013.280000pt;}
.y82{bottom:1015.680000pt;}
.hb{height:36.792000pt;}
.ha{height:44.763750pt;}
.h2{height:48.558750pt;}
.h11{height:52.134375pt;}
.h9{height:52.781250pt;}
.h10{height:53.535000pt;}
.hf{height:57.375000pt;}
.h3{height:59.340000pt;}
.h7{height:61.754062pt;}
.he{height:62.812500pt;}
.h8{height:66.750000pt;}
.hd{height:75.465000pt;}
.hc{height:78.097500pt;}
.h6{height:88.777500pt;}
.h5{height:114.946875pt;}
.h4{height:129.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:46.546667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:15.826667pt;}
.xd{left:19.506667pt;}
.x2{left:113.472000pt;}
.x10{left:128.192000pt;}
.x14{left:137.466667pt;}
.x6{left:140.346667pt;}
.x11{left:142.746667pt;}
.xe{left:148.506667pt;}
.x15{left:161.466667pt;}
.x16{left:175.226667pt;}
.x3{left:182.266667pt;}
.x5{left:194.586667pt;}
.x9{left:236.546667pt;}
.xf{left:295.906667pt;}
.xb{left:306.946667pt;}
.xa{left:318.946667pt;}
.x8{left:330.786667pt;}
.x7{left:333.026667pt;}
.xc{left:382.986667pt;}
.x4{left:406.333333pt;}
.x1{left:504.413333pt;}
.x12{left:699.520000pt;}
}




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