
    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_95a25e1bad3cd94c23fb3c32.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d88e97791d006d8d7948d822.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_c503cc8ce5cfa832409f06ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_56217d10b0f4707fe73ffce8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a56ce4893d18b0a40f35c4e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8e04a6f2fc88b757f0de057b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d33e0f815f3215d7d64332cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_80f03938b4ae069fcce9b33d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.886719;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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.305400px;}
.lsb{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.153360px;}
.ls17{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.212400px;}
.ls2{letter-spacing:0.298560px;}
.ls4{letter-spacing:0.322560px;}
.ls9{letter-spacing:0.326640px;}
.lsa{letter-spacing:0.345360px;}
.lse{letter-spacing:0.354720px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.369360px;}
.ls10{letter-spacing:0.378720px;}
.ls5{letter-spacing:0.687600px;}
.lsf{letter-spacing:36.305280px;}
.ls15{letter-spacing:53.202720px;}
.lsd{letter-spacing:59.345280px;}
.ls14{letter-spacing:83.442720px;}
.ls1{letter-spacing:201.060000px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-30.060000px;}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.060000px;}
.ws3{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.093600px;}
.wsd{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-210.240000px;}
._f{margin-left:-2.358720px;}
._4{margin-left:-1.320000px;}
._0{width:1.015920px;}
._a{width:2.270880px;}
._1{width:3.359040px;}
._12{width:4.783680px;}
._6{width:5.796720px;}
._7{width:6.821520px;}
._b{width:8.127360px;}
._17{width:9.661920px;}
._10{width:10.664640px;}
._1a{width:11.856960px;}
._18{width:13.324800px;}
._19{width:14.435520px;}
._c{width:16.135200px;}
._13{width:17.641440px;}
._9{width:19.481760px;}
._8{width:20.617200px;}
._15{width:21.743280px;}
._14{width:23.051520px;}
._d{width:25.099200px;}
._e{width:26.115120px;}
._16{width:27.324000px;}
._1b{width:28.720800px;}
._1c{width:31.927680px;}
._1d{width:33.120000px;}
._1e{width:34.577280px;}
._11{width:37.491840px;}
._2{width:89.248080px;}
._3{width:201.060000px;}
._1f{width:890.940000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y137{bottom:3.780000px;}
.y121{bottom:3.960000px;}
.y124{bottom:4.140000px;}
.y136{bottom:21.060000px;}
.y132{bottom:21.240000px;}
.y2{bottom:111.096000px;}
.yd8{bottom:141.516000px;}
.ya6{bottom:144.756000px;}
.y33{bottom:150.510000px;}
.y16e{bottom:158.610000px;}
.yd7{bottom:158.790000px;}
.ya5{bottom:163.830000px;}
.y32{bottom:169.410000px;}
.y12d{bottom:170.670000px;}
.y74{bottom:171.930000px;}
.yb2{bottom:174.090000px;}
.y16d{bottom:175.890000px;}
.yd6{bottom:176.070000px;}
.yfe{bottom:177.150000px;}
.y14a{bottom:177.510000px;}
.ya4{bottom:182.730000px;}
.y31{bottom:188.490000px;}
.y12c{bottom:189.750000px;}
.yd5{bottom:190.110000px;}
.y73{bottom:190.830000px;}
.yb1{bottom:193.170000px;}
.y149{bottom:194.790000px;}
.yfd{bottom:196.230000px;}
.ya3{bottom:201.630000px;}
.y30{bottom:207.390000px;}
.y12b{bottom:208.650000px;}
.y72{bottom:209.910000px;}
.y16c{bottom:210.450000px;}
.yb0{bottom:212.070000px;}
.y148{bottom:212.430000px;}
.yfc{bottom:215.130000px;}
.ya2{bottom:220.710000px;}
.y2f{bottom:226.290000px;}
.y12a{bottom:227.730000px;}
.y71{bottom:228.810000px;}
.yaf{bottom:230.970000px;}
.yfb{bottom:234.210000px;}
.ya1{bottom:239.610000px;}
.y16b{bottom:244.830000px;}
.y2e{bottom:245.370000px;}
.y129{bottom:246.630000px;}
.y70{bottom:247.710000px;}
.yae{bottom:250.050000px;}
.yfa{bottom:253.110000px;}
.ya0{bottom:258.690000px;}
.y16a{bottom:262.110000px;}
.y2d{bottom:265.170000px;}
.y128{bottom:265.530000px;}
.y6f{bottom:266.790000px;}
.yad{bottom:268.950000px;}
.yf9{bottom:272.010000px;}
.y9f{bottom:277.635000px;}
.y169{bottom:279.435000px;}
.y127{bottom:281.775000px;}
.y6e{bottom:285.735000px;}
.yac{bottom:288.075000px;}
.y2c{bottom:288.435000px;}
.yf8{bottom:291.135000px;}
.y9e{bottom:296.535000px;}
.y168{bottom:296.715000px;}
.y126{bottom:304.635000px;}
.y6d{bottom:304.815000px;}
.yab{bottom:306.975000px;}
.y2b{bottom:307.515000px;}
.yf7{bottom:310.035000px;}
.y167{bottom:313.995000px;}
.y9d{bottom:315.615000px;}
.y6c{bottom:323.715000px;}
.yaa{bottom:326.235000px;}
.y2a{bottom:326.415000px;}
.y125{bottom:327.495000px;}
.yf6{bottom:329.115000px;}
.y166{bottom:331.275000px;}
.y9c{bottom:334.515000px;}
.y6b{bottom:342.615000px;}
.y29{bottom:345.495000px;}
.ya9{bottom:346.935000px;}
.y5b{bottom:348.015000px;}
.yf5{bottom:348.375000px;}
.y123{bottom:350.175000px;}
.y9b{bottom:353.595000px;}
.y6a{bottom:361.695000px;}
.y28{bottom:364.395000px;}
.y165{bottom:365.655000px;}
.y5a{bottom:366.915000px;}
.ya8{bottom:367.275000px;}
.yf4{bottom:368.355000px;}
.y9a{bottom:372.495000px;}
.y122{bottom:373.035000px;}
.y69{bottom:380.595000px;}
.y164{bottom:382.935000px;}
.y27{bottom:383.295000px;}
.y59{bottom:385.995000px;}
.ya7{bottom:387.255000px;}
.y99{bottom:391.575000px;}
.y120{bottom:395.895000px;}
.y147{bottom:396.255000px;}
.y68{bottom:399.675000px;}
.y163{bottom:400.215000px;}
.y26{bottom:402.375000px;}
.y58{bottom:404.895000px;}
.y98{bottom:410.475000px;}
.y146{bottom:413.355000px;}
.y162{bottom:417.495000px;}
.y67{bottom:418.575000px;}
.y25{bottom:421.275000px;}
.y11f{bottom:421.815000px;}
.y57{bottom:423.795000px;}
.yf3{bottom:423.975000px;}
.y97{bottom:429.375000px;}
.y145{bottom:430.635000px;}
.y161{bottom:434.595000px;}
.y66{bottom:437.475000px;}
.y11e{bottom:439.095000px;}
.y24{bottom:440.355000px;}
.y56{bottom:442.875000px;}
.y144{bottom:444.675000px;}
.y96{bottom:448.455000px;}
.y160{bottom:451.875000px;}
.y65{bottom:456.555000px;}
.y11d{bottom:456.735000px;}
.y23{bottom:459.255000px;}
.y55{bottom:461.775000px;}
.yf2{bottom:462.675000px;}
.y95{bottom:467.355000px;}
.y15f{bottom:469.155000px;}
.y64{bottom:475.455000px;}
.y11c{bottom:475.635000px;}
.y22{bottom:478.335000px;}
.y54{bottom:480.855000px;}
.yd4{bottom:482.835000px;}
.yf1{bottom:486.075000px;}
.y94{bottom:486.435000px;}
.y63{bottom:494.535000px;}
.y11b{bottom:495.795000px;}
.y21{bottom:497.235000px;}
.y53{bottom:500.115000px;}
.yd3{bottom:501.915000px;}
.y15e{bottom:503.715000px;}
.yf0{bottom:504.975000px;}
.y93{bottom:505.335000px;}
.y62{bottom:513.435000px;}
.y11a{bottom:515.955000px;}
.y20{bottom:516.135000px;}
.yd2{bottom:520.815000px;}
.y15d{bottom:520.995000px;}
.y52{bottom:521.715000px;}
.y92{bottom:524.235000px;}
.yef{bottom:525.135000px;}
.y61{bottom:532.515000px;}
.y1f{bottom:535.935000px;}
.y119{bottom:536.295000px;}
.y15c{bottom:538.095000px;}
.yd1{bottom:539.895000px;}
.y51{bottom:543.315000px;}
.yee{bottom:545.295000px;}
.y60{bottom:551.415000px;}
.y118{bottom:555.195000px;}
.y15b{bottom:555.375000px;}
.yd0{bottom:558.825000px;}
.y1e{bottom:559.365000px;}
.y91{bottom:562.245000px;}
.yed{bottom:564.225000px;}
.y50{bottom:566.565000px;}
.y5f{bottom:570.345000px;}
.y15a{bottom:573.045000px;}
.y117{bottom:574.305000px;}
.ycf{bottom:577.725000px;}
.y1d{bottom:577.905000px;}
.y90{bottom:581.325000px;}
.yec{bottom:584.385000px;}
.y4f{bottom:585.645000px;}
.y5e{bottom:589.425000px;}
.y159{bottom:592.305000px;}
.y116{bottom:593.205000px;}
.y1c{bottom:595.185000px;}
.yce{bottom:596.805000px;}
.y8f{bottom:600.225000px;}
.yeb{bottom:603.285000px;}
.y4e{bottom:604.545000px;}
.y5d{bottom:604.725000px;}
.y115{bottom:612.105000px;}
.y1b{bottom:612.825000px;}
.ycd{bottom:615.705000px;}
.y8e{bottom:619.125000px;}
.yea{bottom:623.625000px;}
.y4d{bottom:624.705000px;}
.y114{bottom:631.185000px;}
.y158{bottom:631.725000px;}
.y1a{bottom:632.265000px;}
.ycc{bottom:634.785000px;}
.y8d{bottom:638.205000px;}
.ye9{bottom:642.525000px;}
.y4c{bottom:643.605000px;}
.y113{bottom:650.085000px;}
.y157{bottom:650.805000px;}
.ycb{bottom:653.685000px;}
.y19{bottom:654.225000px;}
.y8c{bottom:657.105000px;}
.ye8{bottom:661.605000px;}
.y4b{bottom:663.765000px;}
.y112{bottom:669.165000px;}
.y156{bottom:669.705000px;}
.y143{bottom:670.605000px;}
.yca{bottom:672.585000px;}
.y18{bottom:672.765000px;}
.y8b{bottom:676.185000px;}
.ye7{bottom:680.505000px;}
.y4a{bottom:682.845000px;}
.y111{bottom:688.065000px;}
.y142{bottom:688.245000px;}
.y155{bottom:688.605000px;}
.y17{bottom:690.045000px;}
.yc9{bottom:691.665000px;}
.y8a{bottom:695.085000px;}
.ye6{bottom:700.305000px;}
.y49{bottom:701.745000px;}
.y110{bottom:707.145000px;}
.y16{bottom:707.325000px;}
.y154{bottom:707.685000px;}
.yc8{bottom:710.565000px;}
.y89{bottom:713.985000px;}
.y48{bottom:720.645000px;}
.ye5{bottom:723.705000px;}
.y15{bottom:724.425000px;}
.y10f{bottom:726.045000px;}
.y141{bottom:726.225000px;}
.y153{bottom:726.585000px;}
.yc7{bottom:729.645000px;}
.y88{bottom:733.065000px;}
.y47{bottom:740.985000px;}
.y14{bottom:741.705000px;}
.ye4{bottom:742.245000px;}
.y10e{bottom:744.945000px;}
.y140{bottom:745.305000px;}
.y152{bottom:745.665000px;}
.yc6{bottom:748.545000px;}
.y87{bottom:751.965000px;}
.y13{bottom:758.985000px;}
.y46{bottom:759.885000px;}
.y10d{bottom:764.025000px;}
.y151{bottom:764.565000px;}
.y13f{bottom:765.105000px;}
.yc5{bottom:767.445000px;}
.y86{bottom:771.045000px;}
.ye3{bottom:775.185000px;}
.y12{bottom:776.265000px;}
.y45{bottom:778.785000px;}
.y10c{bottom:782.925000px;}
.y150{bottom:783.645000px;}
.yc4{bottom:786.525000px;}
.y13e{bottom:788.325000px;}
.y85{bottom:789.945000px;}
.y11{bottom:793.545000px;}
.y44{bottom:797.865000px;}
.y10b{bottom:802.005000px;}
.y14f{bottom:802.545000px;}
.yc3{bottom:805.425000px;}
.y13d{bottom:807.405000px;}
.y84{bottom:808.845000px;}
.y10{bottom:810.825000px;}
.y43{bottom:816.765000px;}
.y10a{bottom:821.265000px;}
.y14e{bottom:821.445000px;}
.yc2{bottom:824.505000px;}
.y13c{bottom:826.305000px;}
.yf{bottom:827.925000px;}
.y42{bottom:836.925000px;}
.y14d{bottom:840.030000px;}
.y109{bottom:841.650000px;}
.yc1{bottom:843.450000px;}
.ye{bottom:845.250000px;}
.y83{bottom:846.870000px;}
.y41{bottom:856.050000px;}
.y14c{bottom:857.310000px;}
.y108{bottom:860.550000px;}
.yc0{bottom:862.530000px;}
.yd{bottom:862.890000px;}
.y13b{bottom:864.330000px;}
.y82{bottom:865.950000px;}
.y14b{bottom:871.350000px;}
.y5c{bottom:873.870000px;}
.y40{bottom:874.950000px;}
.y107{bottom:879.630000px;}
.ybf{bottom:881.430000px;}
.yc{bottom:882.330000px;}
.y13a{bottom:883.230000px;}
.y81{bottom:884.850000px;}
.y3f{bottom:893.850000px;}
.y106{bottom:898.530000px;}
.y139{bottom:899.250000px;}
.ybe{bottom:900.690000px;}
.y80{bottom:903.930000px;}
.yb{bottom:904.290000px;}
.y3e{bottom:914.010000px;}
.y105{bottom:917.610000px;}
.ybd{bottom:921.030000px;}
.y138{bottom:922.110000px;}
.y7f{bottom:922.830000px;}
.ya{bottom:923.550000px;}
.ye2{bottom:931.830000px;}
.y3d{bottom:933.990000px;}
.y104{bottom:936.510000px;}
.ybc{bottom:940.110000px;}
.y7e{bottom:941.730000px;}
.y9{bottom:944.250000px;}
.y135{bottom:944.970000px;}
.ye1{bottom:950.730000px;}
.y103{bottom:955.410000px;}
.y3c{bottom:957.210000px;}
.ybb{bottom:959.010000px;}
.y7d{bottom:960.810000px;}
.y8{bottom:964.950000px;}
.ye0{bottom:970.890000px;}
.y102{bottom:975.570000px;}
.y3b{bottom:976.110000px;}
.yba{bottom:978.090000px;}
.y7c{bottom:979.710000px;}
.y134{bottom:984.750000px;}
.y7{bottom:985.830000px;}
.ydf{bottom:991.230000px;}
.y101{bottom:994.470000px;}
.y3a{bottom:995.190000px;}
.yb9{bottom:996.990000px;}
.y7b{bottom:998.790000px;}
.y133{bottom:1007.610000px;}
.y6{bottom:1008.330000px;}
.yde{bottom:1010.130000px;}
.y39{bottom:1014.090000px;}
.y100{bottom:1014.810000px;}
.yb8{bottom:1015.890000px;}
.y7a{bottom:1017.690000px;}
.ydd{bottom:1030.290000px;}
.y131{bottom:1030.470000px;}
.y38{bottom:1033.170000px;}
.yff{bottom:1033.710000px;}
.y5{bottom:1034.430000px;}
.yb7{bottom:1034.970000px;}
.y79{bottom:1036.590000px;}
.ydc{bottom:1050.450000px;}
.y37{bottom:1052.070000px;}
.yb6{bottom:1053.870000px;}
.y78{bottom:1055.670000px;}
.y170{bottom:1062.150000px;}
.y4{bottom:1068.270000px;}
.ydb{bottom:1069.350000px;}
.y130{bottom:1070.430000px;}
.y36{bottom:1072.230000px;}
.yb5{bottom:1072.950000px;}
.y77{bottom:1074.570000px;}
.y16f{bottom:1079.430000px;}
.yda{bottom:1088.430000px;}
.y35{bottom:1091.130000px;}
.yb4{bottom:1091.850000px;}
.y76{bottom:1093.650000px;}
.y12f{bottom:1096.530000px;}
.y3{bottom:1101.930000px;}
.yd9{bottom:1108.230000px;}
.yb3{bottom:1111.110000px;}
.y34{bottom:1111.290000px;}
.y75{bottom:1112.550000px;}
.y12e{bottom:1113.810000px;}
.y1{bottom:1140.840000px;}
.hf{height:18.000000px;}
.h10{height:18.180000px;}
.h12{height:35.100000px;}
.h11{height:35.280000px;}
.h2{height:43.215117px;}
.h13{height:43.506914px;}
.hd{height:46.736719px;}
.h6{height:47.901094px;}
.ha{height:48.224531px;}
.h8{height:49.255313px;}
.he{height:50.800781px;}
.h5{height:52.066406px;}
.hc{height:52.417969px;}
.h4{height:56.231719px;}
.h7{height:58.585781px;}
.h9{height:61.329023px;}
.hb{height:73.722656px;}
.h3{height:81.432070px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:151.230000px;}
.w5{width:194.430000px;}
.w6{width:215.130000px;}
.w3{width:227.910000px;}
.w4{width:301.755000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x8{left:122.255987px;}
.x2{left:123.335987px;}
.xc{left:132.155987px;}
.x1{left:139.175987px;}
.xd{left:144.575987px;}
.x4{left:146.735987px;}
.xa{left:150.329987px;}
.x6{left:151.769987px;}
.x10{left:155.369987px;}
.xe{left:165.809987px;}
.xb{left:177.329987px;}
.x16{left:181.290000px;}
.x5{left:184.169987px;}
.x14{left:203.789987px;}
.x1d{left:235.469987px;}
.x15{left:271.469987px;}
.x19{left:291.314987px;}
.x1f{left:298.874987px;}
.x21{left:304.094987px;}
.x12{left:307.874987px;}
.x11{left:334.334987px;}
.x7{left:345.314987px;}
.x1a{left:360.615000px;}
.x18{left:410.115000px;}
.x3{left:447.014987px;}
.x1b{left:576.645000px;}
.x1c{left:594.104987px;}
.x20{left:617.504987px;}
.x1e{left:706.289987px;}
.x13{left:720.509987px;}
.x9{left:754.889987px;}
.xf{left:770.909987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.136320pt;}
.ls17{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.188800pt;}
.ls2{letter-spacing:0.265387pt;}
.ls4{letter-spacing:0.286720pt;}
.ls9{letter-spacing:0.290347pt;}
.lsa{letter-spacing:0.306987pt;}
.lse{letter-spacing:0.315307pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.328320pt;}
.ls10{letter-spacing:0.336640pt;}
.ls5{letter-spacing:0.611200pt;}
.lsf{letter-spacing:32.271360pt;}
.ls15{letter-spacing:47.291307pt;}
.lsd{letter-spacing:52.751360pt;}
.ls14{letter-spacing:74.171307pt;}
.ls1{letter-spacing:178.720000pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-26.720000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.720000pt;}
.ws3{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-186.880000pt;}
._f{margin-left:-2.096640pt;}
._4{margin-left:-1.173333pt;}
._0{width:0.903040pt;}
._a{width:2.018560pt;}
._1{width:2.985813pt;}
._12{width:4.252160pt;}
._6{width:5.152640pt;}
._7{width:6.063573pt;}
._b{width:7.224320pt;}
._17{width:8.588373pt;}
._10{width:9.479680pt;}
._1a{width:10.539520pt;}
._18{width:11.844267pt;}
._19{width:12.831573pt;}
._c{width:14.342400pt;}
._13{width:15.681280pt;}
._9{width:17.317120pt;}
._8{width:18.326400pt;}
._15{width:19.327360pt;}
._14{width:20.490240pt;}
._d{width:22.310400pt;}
._e{width:23.213440pt;}
._16{width:24.288000pt;}
._1b{width:25.529600pt;}
._1c{width:28.380160pt;}
._1d{width:29.440000pt;}
._1e{width:30.735360pt;}
._11{width:33.326080pt;}
._2{width:79.331627pt;}
._3{width:178.720000pt;}
._1f{width:791.946667pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:3.360000pt;}
.y121{bottom:3.520000pt;}
.y124{bottom:3.680000pt;}
.y136{bottom:18.720000pt;}
.y132{bottom:18.880000pt;}
.y2{bottom:98.752000pt;}
.yd8{bottom:125.792000pt;}
.ya6{bottom:128.672000pt;}
.y33{bottom:133.786667pt;}
.y16e{bottom:140.986667pt;}
.yd7{bottom:141.146667pt;}
.ya5{bottom:145.626667pt;}
.y32{bottom:150.586667pt;}
.y12d{bottom:151.706667pt;}
.y74{bottom:152.826667pt;}
.yb2{bottom:154.746667pt;}
.y16d{bottom:156.346667pt;}
.yd6{bottom:156.506667pt;}
.yfe{bottom:157.466667pt;}
.y14a{bottom:157.786667pt;}
.ya4{bottom:162.426667pt;}
.y31{bottom:167.546667pt;}
.y12c{bottom:168.666667pt;}
.yd5{bottom:168.986667pt;}
.y73{bottom:169.626667pt;}
.yb1{bottom:171.706667pt;}
.y149{bottom:173.146667pt;}
.yfd{bottom:174.426667pt;}
.ya3{bottom:179.226667pt;}
.y30{bottom:184.346667pt;}
.y12b{bottom:185.466667pt;}
.y72{bottom:186.586667pt;}
.y16c{bottom:187.066667pt;}
.yb0{bottom:188.506667pt;}
.y148{bottom:188.826667pt;}
.yfc{bottom:191.226667pt;}
.ya2{bottom:196.186667pt;}
.y2f{bottom:201.146667pt;}
.y12a{bottom:202.426667pt;}
.y71{bottom:203.386667pt;}
.yaf{bottom:205.306667pt;}
.yfb{bottom:208.186667pt;}
.ya1{bottom:212.986667pt;}
.y16b{bottom:217.626667pt;}
.y2e{bottom:218.106667pt;}
.y129{bottom:219.226667pt;}
.y70{bottom:220.186667pt;}
.yae{bottom:222.266667pt;}
.yfa{bottom:224.986667pt;}
.ya0{bottom:229.946667pt;}
.y16a{bottom:232.986667pt;}
.y2d{bottom:235.706667pt;}
.y128{bottom:236.026667pt;}
.y6f{bottom:237.146667pt;}
.yad{bottom:239.066667pt;}
.yf9{bottom:241.786667pt;}
.y9f{bottom:246.786667pt;}
.y169{bottom:248.386667pt;}
.y127{bottom:250.466667pt;}
.y6e{bottom:253.986667pt;}
.yac{bottom:256.066667pt;}
.y2c{bottom:256.386667pt;}
.yf8{bottom:258.786667pt;}
.y9e{bottom:263.586667pt;}
.y168{bottom:263.746667pt;}
.y126{bottom:270.786667pt;}
.y6d{bottom:270.946667pt;}
.yab{bottom:272.866667pt;}
.y2b{bottom:273.346667pt;}
.yf7{bottom:275.586667pt;}
.y167{bottom:279.106667pt;}
.y9d{bottom:280.546667pt;}
.y6c{bottom:287.746667pt;}
.yaa{bottom:289.986667pt;}
.y2a{bottom:290.146667pt;}
.y125{bottom:291.106667pt;}
.yf6{bottom:292.546667pt;}
.y166{bottom:294.466667pt;}
.y9c{bottom:297.346667pt;}
.y6b{bottom:304.546667pt;}
.y29{bottom:307.106667pt;}
.ya9{bottom:308.386667pt;}
.y5b{bottom:309.346667pt;}
.yf5{bottom:309.666667pt;}
.y123{bottom:311.266667pt;}
.y9b{bottom:314.306667pt;}
.y6a{bottom:321.506667pt;}
.y28{bottom:323.906667pt;}
.y165{bottom:325.026667pt;}
.y5a{bottom:326.146667pt;}
.ya8{bottom:326.466667pt;}
.yf4{bottom:327.426667pt;}
.y9a{bottom:331.106667pt;}
.y122{bottom:331.586667pt;}
.y69{bottom:338.306667pt;}
.y164{bottom:340.386667pt;}
.y27{bottom:340.706667pt;}
.y59{bottom:343.106667pt;}
.ya7{bottom:344.226667pt;}
.y99{bottom:348.066667pt;}
.y120{bottom:351.906667pt;}
.y147{bottom:352.226667pt;}
.y68{bottom:355.266667pt;}
.y163{bottom:355.746667pt;}
.y26{bottom:357.666667pt;}
.y58{bottom:359.906667pt;}
.y98{bottom:364.866667pt;}
.y146{bottom:367.426667pt;}
.y162{bottom:371.106667pt;}
.y67{bottom:372.066667pt;}
.y25{bottom:374.466667pt;}
.y11f{bottom:374.946667pt;}
.y57{bottom:376.706667pt;}
.yf3{bottom:376.866667pt;}
.y97{bottom:381.666667pt;}
.y145{bottom:382.786667pt;}
.y161{bottom:386.306667pt;}
.y66{bottom:388.866667pt;}
.y11e{bottom:390.306667pt;}
.y24{bottom:391.426667pt;}
.y56{bottom:393.666667pt;}
.y144{bottom:395.266667pt;}
.y96{bottom:398.626667pt;}
.y160{bottom:401.666667pt;}
.y65{bottom:405.826667pt;}
.y11d{bottom:405.986667pt;}
.y23{bottom:408.226667pt;}
.y55{bottom:410.466667pt;}
.yf2{bottom:411.266667pt;}
.y95{bottom:415.426667pt;}
.y15f{bottom:417.026667pt;}
.y64{bottom:422.626667pt;}
.y11c{bottom:422.786667pt;}
.y22{bottom:425.186667pt;}
.y54{bottom:427.426667pt;}
.yd4{bottom:429.186667pt;}
.yf1{bottom:432.066667pt;}
.y94{bottom:432.386667pt;}
.y63{bottom:439.586667pt;}
.y11b{bottom:440.706667pt;}
.y21{bottom:441.986667pt;}
.y53{bottom:444.546667pt;}
.yd3{bottom:446.146667pt;}
.y15e{bottom:447.746667pt;}
.yf0{bottom:448.866667pt;}
.y93{bottom:449.186667pt;}
.y62{bottom:456.386667pt;}
.y11a{bottom:458.626667pt;}
.y20{bottom:458.786667pt;}
.yd2{bottom:462.946667pt;}
.y15d{bottom:463.106667pt;}
.y52{bottom:463.746667pt;}
.y92{bottom:465.986667pt;}
.yef{bottom:466.786667pt;}
.y61{bottom:473.346667pt;}
.y1f{bottom:476.386667pt;}
.y119{bottom:476.706667pt;}
.y15c{bottom:478.306667pt;}
.yd1{bottom:479.906667pt;}
.y51{bottom:482.946667pt;}
.yee{bottom:484.706667pt;}
.y60{bottom:490.146667pt;}
.y118{bottom:493.506667pt;}
.y15b{bottom:493.666667pt;}
.yd0{bottom:496.733333pt;}
.y1e{bottom:497.213333pt;}
.y91{bottom:499.773333pt;}
.yed{bottom:501.533333pt;}
.y50{bottom:503.613333pt;}
.y5f{bottom:506.973333pt;}
.y15a{bottom:509.373333pt;}
.y117{bottom:510.493333pt;}
.ycf{bottom:513.533333pt;}
.y1d{bottom:513.693333pt;}
.y90{bottom:516.733333pt;}
.yec{bottom:519.453333pt;}
.y4f{bottom:520.573333pt;}
.y5e{bottom:523.933333pt;}
.y159{bottom:526.493333pt;}
.y116{bottom:527.293333pt;}
.y1c{bottom:529.053333pt;}
.yce{bottom:530.493333pt;}
.y8f{bottom:533.533333pt;}
.yeb{bottom:536.253333pt;}
.y4e{bottom:537.373333pt;}
.y5d{bottom:537.533333pt;}
.y115{bottom:544.093333pt;}
.y1b{bottom:544.733333pt;}
.ycd{bottom:547.293333pt;}
.y8e{bottom:550.333333pt;}
.yea{bottom:554.333333pt;}
.y4d{bottom:555.293333pt;}
.y114{bottom:561.053333pt;}
.y158{bottom:561.533333pt;}
.y1a{bottom:562.013333pt;}
.ycc{bottom:564.253333pt;}
.y8d{bottom:567.293333pt;}
.ye9{bottom:571.133333pt;}
.y4c{bottom:572.093333pt;}
.y113{bottom:577.853333pt;}
.y157{bottom:578.493333pt;}
.ycb{bottom:581.053333pt;}
.y19{bottom:581.533333pt;}
.y8c{bottom:584.093333pt;}
.ye8{bottom:588.093333pt;}
.y4b{bottom:590.013333pt;}
.y112{bottom:594.813333pt;}
.y156{bottom:595.293333pt;}
.y143{bottom:596.093333pt;}
.yca{bottom:597.853333pt;}
.y18{bottom:598.013333pt;}
.y8b{bottom:601.053333pt;}
.ye7{bottom:604.893333pt;}
.y4a{bottom:606.973333pt;}
.y111{bottom:611.613333pt;}
.y142{bottom:611.773333pt;}
.y155{bottom:612.093333pt;}
.y17{bottom:613.373333pt;}
.yc9{bottom:614.813333pt;}
.y8a{bottom:617.853333pt;}
.ye6{bottom:622.493333pt;}
.y49{bottom:623.773333pt;}
.y110{bottom:628.573333pt;}
.y16{bottom:628.733333pt;}
.y154{bottom:629.053333pt;}
.yc8{bottom:631.613333pt;}
.y89{bottom:634.653333pt;}
.y48{bottom:640.573333pt;}
.ye5{bottom:643.293333pt;}
.y15{bottom:643.933333pt;}
.y10f{bottom:645.373333pt;}
.y141{bottom:645.533333pt;}
.y153{bottom:645.853333pt;}
.yc7{bottom:648.573333pt;}
.y88{bottom:651.613333pt;}
.y47{bottom:658.653333pt;}
.y14{bottom:659.293333pt;}
.ye4{bottom:659.773333pt;}
.y10e{bottom:662.173333pt;}
.y140{bottom:662.493333pt;}
.y152{bottom:662.813333pt;}
.yc6{bottom:665.373333pt;}
.y87{bottom:668.413333pt;}
.y13{bottom:674.653333pt;}
.y46{bottom:675.453333pt;}
.y10d{bottom:679.133333pt;}
.y151{bottom:679.613333pt;}
.y13f{bottom:680.093333pt;}
.yc5{bottom:682.173333pt;}
.y86{bottom:685.373333pt;}
.ye3{bottom:689.053333pt;}
.y12{bottom:690.013333pt;}
.y45{bottom:692.253333pt;}
.y10c{bottom:695.933333pt;}
.y150{bottom:696.573333pt;}
.yc4{bottom:699.133333pt;}
.y13e{bottom:700.733333pt;}
.y85{bottom:702.173333pt;}
.y11{bottom:705.373333pt;}
.y44{bottom:709.213333pt;}
.y10b{bottom:712.893333pt;}
.y14f{bottom:713.373333pt;}
.yc3{bottom:715.933333pt;}
.y13d{bottom:717.693333pt;}
.y84{bottom:718.973333pt;}
.y10{bottom:720.733333pt;}
.y43{bottom:726.013333pt;}
.y10a{bottom:730.013333pt;}
.y14e{bottom:730.173333pt;}
.yc2{bottom:732.893333pt;}
.y13c{bottom:734.493333pt;}
.yf{bottom:735.933333pt;}
.y42{bottom:743.933333pt;}
.y14d{bottom:746.693333pt;}
.y109{bottom:748.133333pt;}
.yc1{bottom:749.733333pt;}
.ye{bottom:751.333333pt;}
.y83{bottom:752.773333pt;}
.y41{bottom:760.933333pt;}
.y14c{bottom:762.053333pt;}
.y108{bottom:764.933333pt;}
.yc0{bottom:766.693333pt;}
.yd{bottom:767.013333pt;}
.y13b{bottom:768.293333pt;}
.y82{bottom:769.733333pt;}
.y14b{bottom:774.533333pt;}
.y5c{bottom:776.773333pt;}
.y40{bottom:777.733333pt;}
.y107{bottom:781.893333pt;}
.ybf{bottom:783.493333pt;}
.yc{bottom:784.293333pt;}
.y13a{bottom:785.093333pt;}
.y81{bottom:786.533333pt;}
.y3f{bottom:794.533333pt;}
.y106{bottom:798.693333pt;}
.y139{bottom:799.333333pt;}
.ybe{bottom:800.613333pt;}
.y80{bottom:803.493333pt;}
.yb{bottom:803.813333pt;}
.y3e{bottom:812.453333pt;}
.y105{bottom:815.653333pt;}
.ybd{bottom:818.693333pt;}
.y138{bottom:819.653333pt;}
.y7f{bottom:820.293333pt;}
.ya{bottom:820.933333pt;}
.ye2{bottom:828.293333pt;}
.y3d{bottom:830.213333pt;}
.y104{bottom:832.453333pt;}
.ybc{bottom:835.653333pt;}
.y7e{bottom:837.093333pt;}
.y9{bottom:839.333333pt;}
.y135{bottom:839.973333pt;}
.ye1{bottom:845.093333pt;}
.y103{bottom:849.253333pt;}
.y3c{bottom:850.853333pt;}
.ybb{bottom:852.453333pt;}
.y7d{bottom:854.053333pt;}
.y8{bottom:857.733333pt;}
.ye0{bottom:863.013333pt;}
.y102{bottom:867.173333pt;}
.y3b{bottom:867.653333pt;}
.yba{bottom:869.413333pt;}
.y7c{bottom:870.853333pt;}
.y134{bottom:875.333333pt;}
.y7{bottom:876.293333pt;}
.ydf{bottom:881.093333pt;}
.y101{bottom:883.973333pt;}
.y3a{bottom:884.613333pt;}
.yb9{bottom:886.213333pt;}
.y7b{bottom:887.813333pt;}
.y133{bottom:895.653333pt;}
.y6{bottom:896.293333pt;}
.yde{bottom:897.893333pt;}
.y39{bottom:901.413333pt;}
.y100{bottom:902.053333pt;}
.yb8{bottom:903.013333pt;}
.y7a{bottom:904.613333pt;}
.ydd{bottom:915.813333pt;}
.y131{bottom:915.973333pt;}
.y38{bottom:918.373333pt;}
.yff{bottom:918.853333pt;}
.y5{bottom:919.493333pt;}
.yb7{bottom:919.973333pt;}
.y79{bottom:921.413333pt;}
.ydc{bottom:933.733333pt;}
.y37{bottom:935.173333pt;}
.yb6{bottom:936.773333pt;}
.y78{bottom:938.373333pt;}
.y170{bottom:944.133333pt;}
.y4{bottom:949.573333pt;}
.ydb{bottom:950.533333pt;}
.y130{bottom:951.493333pt;}
.y36{bottom:953.093333pt;}
.yb5{bottom:953.733333pt;}
.y77{bottom:955.173333pt;}
.y16f{bottom:959.493333pt;}
.yda{bottom:967.493333pt;}
.y35{bottom:969.893333pt;}
.yb4{bottom:970.533333pt;}
.y76{bottom:972.133333pt;}
.y12f{bottom:974.693333pt;}
.y3{bottom:979.493333pt;}
.yd9{bottom:985.093333pt;}
.yb3{bottom:987.653333pt;}
.y34{bottom:987.813333pt;}
.y75{bottom:988.933333pt;}
.y12e{bottom:990.053333pt;}
.y1{bottom:1014.080000pt;}
.hf{height:16.000000pt;}
.h10{height:16.160000pt;}
.h12{height:31.200000pt;}
.h11{height:31.360000pt;}
.h2{height:38.413438pt;}
.h13{height:38.672812pt;}
.hd{height:41.543750pt;}
.h6{height:42.578750pt;}
.ha{height:42.866250pt;}
.h8{height:43.782500pt;}
.he{height:45.156250pt;}
.h5{height:46.281250pt;}
.hc{height:46.593750pt;}
.h4{height:49.983750pt;}
.h7{height:52.076250pt;}
.h9{height:54.514687pt;}
.hb{height:65.531250pt;}
.h3{height:72.384062pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:134.426667pt;}
.w5{width:172.826667pt;}
.w6{width:191.226667pt;}
.w3{width:202.586667pt;}
.w4{width:268.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x8{left:108.671988pt;}
.x2{left:109.631988pt;}
.xc{left:117.471988pt;}
.x1{left:123.711988pt;}
.xd{left:128.511988pt;}
.x4{left:130.431988pt;}
.xa{left:133.626655pt;}
.x6{left:134.906655pt;}
.x10{left:138.106655pt;}
.xe{left:147.386655pt;}
.xb{left:157.626655pt;}
.x16{left:161.146667pt;}
.x5{left:163.706655pt;}
.x14{left:181.146655pt;}
.x1d{left:209.306655pt;}
.x15{left:241.306655pt;}
.x19{left:258.946655pt;}
.x1f{left:265.666655pt;}
.x21{left:270.306655pt;}
.x12{left:273.666655pt;}
.x11{left:297.186655pt;}
.x7{left:306.946655pt;}
.x1a{left:320.546667pt;}
.x18{left:364.546667pt;}
.x3{left:397.346655pt;}
.x1b{left:512.573333pt;}
.x1c{left:528.093322pt;}
.x20{left:548.893322pt;}
.x1e{left:627.813322pt;}
.x13{left:640.453322pt;}
.x9{left:671.013322pt;}
.xf{left:685.253322pt;}
}




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