
    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_eba38f08d9f79902ee4e28d7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0bdeb057d51acef2105bf19d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_b8029f927b70c11b0367090b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_455ca4b33baf32407159d8cf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_baa3dc172c0331fbe08a6d3b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a6e27cbfa9ceb1a85fb9e8c1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_786eaf26bf155ad56d4d10f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924316;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.440000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws4{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-88.708800px;}
._f{margin-left:-4.536000px;}
._5{margin-left:-3.168000px;}
._0{margin-left:-1.267920px;}
._1{width:1.588800px;}
._17{width:2.625600px;}
._a{width:3.787920px;}
._c{width:4.871280px;}
._b{width:5.882640px;}
._7{width:7.056000px;}
._8{width:8.424000px;}
._10{width:10.296000px;}
._1c{width:11.304000px;}
._11{width:12.312000px;}
._18{width:13.463760px;}
._6{width:14.472000px;}
._9{width:16.056000px;}
._19{width:19.080000px;}
._12{width:20.736000px;}
._13{width:21.816000px;}
._14{width:22.968000px;}
._15{width:24.384000px;}
._16{width:25.387200px;}
._d{width:27.288000px;}
._e{width:28.728000px;}
._1f{width:29.736000px;}
._1d{width:31.639680px;}
._1b{width:32.872320px;}
._1a{width:34.099920px;}
._1e{width:40.392000px;}
._23{width:68.112000px;}
._24{width:69.192000px;}
._25{width:76.176000px;}
._4{width:83.380080px;}
._2{width:109.380000px;}
._21{width:115.560000px;}
._22{width:116.712000px;}
._20{width:126.120960px;}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.600000px;}
.ya6{bottom:3.630000px;}
.y9b{bottom:3.780000px;}
.y32{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y30{bottom:10.800000px;}
.y7{bottom:21.600000px;}
.y113{bottom:22.500000px;}
.y12f{bottom:22.674000px;}
.y106{bottom:22.680000px;}
.y31{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y12e{bottom:41.574000px;}
.y6{bottom:57.780000px;}
.y5{bottom:78.516000px;}
.y77{bottom:113.076000px;}
.y116{bottom:114.156000px;}
.y130{bottom:119.376000px;}
.y196{bottom:120.636000px;}
.ybb{bottom:120.816000px;}
.y2f{bottom:122.796000px;}
.y5e{bottom:125.136000px;}
.ycc{bottom:126.396000px;}
.yf9{bottom:126.756000px;}
.y158{bottom:131.976000px;}
.y175{bottom:132.516000px;}
.y115{bottom:133.236000px;}
.y76{bottom:133.776000px;}
.y12d{bottom:138.276000px;}
.y195{bottom:141.336000px;}
.yba{bottom:141.516000px;}
.ycb{bottom:145.296000px;}
.y5d{bottom:145.836000px;}
.yf8{bottom:147.456000px;}
.y114{bottom:152.130000px;}
.y157{bottom:152.670000px;}
.y174{bottom:153.210000px;}
.y75{bottom:154.470000px;}
.y2e{bottom:155.370000px;}
.y194{bottom:162.030000px;}
.yb9{bottom:162.210000px;}
.yca{bottom:164.190000px;}
.y5c{bottom:166.530000px;}
.yf7{bottom:168.150000px;}
.y112{bottom:171.210000px;}
.y156{bottom:173.370000px;}
.y173{bottom:173.910000px;}
.y74{bottom:175.170000px;}
.y2d{bottom:176.070000px;}
.yb8{bottom:182.910000px;}
.yc9{bottom:183.270000px;}
.y5b{bottom:187.230000px;}
.yf6{bottom:188.850000px;}
.y155{bottom:194.070000px;}
.y193{bottom:194.610000px;}
.y12c{bottom:195.150000px;}
.y73{bottom:195.870000px;}
.y2c{bottom:196.770000px;}
.yc8{bottom:202.170000px;}
.yb7{bottom:203.610000px;}
.y172{bottom:206.670000px;}
.y5a{bottom:207.930000px;}
.y111{bottom:209.010000px;}
.yf5{bottom:209.550000px;}
.y154{bottom:214.770000px;}
.y192{bottom:215.310000px;}
.y72{bottom:216.570000px;}
.y2b{bottom:217.470000px;}
.yc7{bottom:221.250000px;}
.yb6{bottom:224.310000px;}
.y171{bottom:227.370000px;}
.y110{bottom:228.090000px;}
.y59{bottom:228.630000px;}
.yf4{bottom:230.250000px;}
.y12b{bottom:233.130000px;}
.y153{bottom:235.470000px;}
.y191{bottom:236.010000px;}
.y71{bottom:237.270000px;}
.y2a{bottom:238.170000px;}
.yc6{bottom:240.150000px;}
.yb5{bottom:245.010000px;}
.y10f{bottom:246.990000px;}
.y170{bottom:248.070000px;}
.y58{bottom:249.330000px;}
.yf3{bottom:250.950000px;}
.y152{bottom:256.170000px;}
.y190{bottom:256.710000px;}
.y98{bottom:257.970000px;}
.y29{bottom:258.870000px;}
.yc5{bottom:259.050000px;}
.yb4{bottom:265.710000px;}
.y10e{bottom:266.070000px;}
.y57{bottom:270.030000px;}
.y12a{bottom:271.110000px;}
.yf2{bottom:271.650000px;}
.y151{bottom:276.870000px;}
.yc4{bottom:278.130000px;}
.y97{bottom:278.670000px;}
.y28{bottom:279.570000px;}
.y16f{bottom:280.830000px;}
.y10d{bottom:284.970000px;}
.y18f{bottom:289.470000px;}
.y56{bottom:290.730000px;}
.yf1{bottom:292.350000px;}
.yc3{bottom:297.030000px;}
.y150{bottom:297.570000px;}
.yb3{bottom:298.470000px;}
.y96{bottom:299.370000px;}
.y27{bottom:300.270000px;}
.y16e{bottom:301.530000px;}
.y11b{bottom:302.610000px;}
.y10c{bottom:304.050000px;}
.y129{bottom:309.135000px;}
.y18e{bottom:310.215000px;}
.y55{bottom:311.475000px;}
.yf0{bottom:313.095000px;}
.yc2{bottom:316.155000px;}
.y14f{bottom:318.315000px;}
.yb2{bottom:319.215000px;}
.y95{bottom:320.115000px;}
.y26{bottom:321.015000px;}
.y16d{bottom:322.275000px;}
.y10b{bottom:322.995000px;}
.y11a{bottom:323.355000px;}
.y128{bottom:328.035000px;}
.y18d{bottom:330.915000px;}
.y54{bottom:332.175000px;}
.yc1{bottom:335.055000px;}
.y14e{bottom:339.015000px;}
.y25{bottom:341.715000px;}
.y10a{bottom:341.895000px;}
.y119{bottom:344.055000px;}
.yef{bottom:345.675000px;}
.y127{bottom:347.115000px;}
.yb1{bottom:351.975000px;}
.y53{bottom:352.875000px;}
.yc0{bottom:353.955000px;}
.y16c{bottom:354.855000px;}
.y14d{bottom:359.715000px;}
.y24{bottom:362.415000px;}
.y18c{bottom:363.675000px;}
.y118{bottom:364.755000px;}
.y126{bottom:366.015000px;}
.yee{bottom:366.375000px;}
.yb0{bottom:368.715000px;}
.ybf{bottom:373.035000px;}
.y70{bottom:373.575000px;}
.y16b{bottom:375.555000px;}
.y109{bottom:379.875000px;}
.y14c{bottom:380.415000px;}
.y23{bottom:383.115000px;}
.y18b{bottom:384.375000px;}
.y125{bottom:384.915000px;}
.y52{bottom:385.455000px;}
.yed{bottom:387.075000px;}
.yaf{bottom:387.615000px;}
.ybe{bottom:391.935000px;}
.y6f{bottom:394.275000px;}
.y16a{bottom:396.255000px;}
.y108{bottom:398.955000px;}
.y14b{bottom:401.115000px;}
.y22{bottom:403.815000px;}
.y124{bottom:403.995000px;}
.y18a{bottom:405.075000px;}
.y51{bottom:406.155000px;}
.yae{bottom:406.515000px;}
.yec{bottom:407.775000px;}
.y6e{bottom:414.975000px;}
.y169{bottom:416.955000px;}
.y107{bottom:417.855000px;}
.y14a{bottom:421.815000px;}
.y21{bottom:424.515000px;}
.yad{bottom:425.595000px;}
.y50{bottom:426.855000px;}
.yeb{bottom:428.475000px;}
.y6d{bottom:435.675000px;}
.y105{bottom:436.755000px;}
.y189{bottom:437.655000px;}
.y123{bottom:438.915000px;}
.y149{bottom:442.515000px;}
.yac{bottom:444.495000px;}
.y20{bottom:445.215000px;}
.y4f{bottom:447.555000px;}
.yea{bottom:449.175000px;}
.y168{bottom:449.715000px;}
.y94{bottom:456.375000px;}
.y188{bottom:458.355000px;}
.ybd{bottom:459.615000px;}
.yab{bottom:463.575000px;}
.y1f{bottom:465.915000px;}
.y4e{bottom:468.255000px;}
.ye9{bottom:469.875000px;}
.y167{bottom:470.415000px;}
.y122{bottom:471.675000px;}
.y104{bottom:474.735000px;}
.y148{bottom:475.275000px;}
.y93{bottom:477.075000px;}
.y187{bottom:479.055000px;}
.ybc{bottom:480.315000px;}
.yaa{bottom:482.475000px;}
.y1e{bottom:486.615000px;}
.y6c{bottom:488.955000px;}
.ye8{bottom:490.575000px;}
.y121{bottom:492.375000px;}
.y92{bottom:497.775000px;}
.y4d{bottom:501.015000px;}
.ya9{bottom:501.555000px;}
.y166{bottom:503.175000px;}
.y1d{bottom:507.315000px;}
.y147{bottom:507.855000px;}
.y6b{bottom:509.655000px;}
.ye7{bottom:511.275000px;}
.y186{bottom:511.815000px;}
.y120{bottom:513.075000px;}
.y91{bottom:518.475000px;}
.ya8{bottom:520.455000px;}
.y4c{bottom:521.715000px;}
.y165{bottom:523.875000px;}
.y1c{bottom:528.015000px;}
.y146{bottom:528.555000px;}
.y6a{bottom:530.355000px;}
.ye6{bottom:531.975000px;}
.y185{bottom:532.515000px;}
.y88{bottom:533.775000px;}
.y90{bottom:539.175000px;}
.ya7{bottom:539.355000px;}
.y4b{bottom:542.415000px;}
.y164{bottom:544.575000px;}
.y1b{bottom:548.715000px;}
.y145{bottom:549.255000px;}
.y69{bottom:551.055000px;}
.ye5{bottom:552.675000px;}
.y184{bottom:553.215000px;}
.y87{bottom:554.475000px;}
.ya5{bottom:558.435000px;}
.y8f{bottom:559.875000px;}
.y4a{bottom:563.145000px;}
.y1a{bottom:569.445000px;}
.y144{bottom:569.985000px;}
.y68{bottom:571.785000px;}
.ye4{bottom:573.405000px;}
.y86{bottom:575.205000px;}
.y163{bottom:577.185000px;}
.ya4{bottom:577.365000px;}
.y8e{bottom:580.605000px;}
.y49{bottom:583.845000px;}
.y183{bottom:586.005000px;}
.y19{bottom:590.145000px;}
.y143{bottom:590.685000px;}
.y67{bottom:592.485000px;}
.ye3{bottom:594.105000px;}
.y85{bottom:595.905000px;}
.ya3{bottom:596.445000px;}
.y162{bottom:597.885000px;}
.y8d{bottom:601.305000px;}
.y48{bottom:604.545000px;}
.y182{bottom:606.705000px;}
.y18{bottom:610.845000px;}
.y142{bottom:611.385000px;}
.y66{bottom:613.185000px;}
.ye2{bottom:614.805000px;}
.ya2{bottom:615.345000px;}
.y84{bottom:616.605000px;}
.y161{bottom:618.585000px;}
.y8c{bottom:622.005000px;}
.y47{bottom:625.245000px;}
.y181{bottom:627.405000px;}
.y17{bottom:631.545000px;}
.y141{bottom:632.085000px;}
.y65{bottom:633.885000px;}
.ya1{bottom:634.245000px;}
.y83{bottom:637.305000px;}
.y8b{bottom:642.705000px;}
.y46{bottom:645.945000px;}
.ye1{bottom:647.565000px;}
.y160{bottom:651.345000px;}
.y16{bottom:652.245000px;}
.ya0{bottom:653.325000px;}
.y64{bottom:654.585000px;}
.y82{bottom:658.005000px;}
.y180{bottom:659.985000px;}
.y8a{bottom:663.405000px;}
.y140{bottom:664.845000px;}
.y45{bottom:666.645000px;}
.ye0{bottom:668.265000px;}
.y15f{bottom:672.045000px;}
.y9f{bottom:672.225000px;}
.y15{bottom:672.945000px;}
.y63{bottom:675.285000px;}
.y81{bottom:678.705000px;}
.y17f{bottom:680.685000px;}
.y13f{bottom:685.545000px;}
.y44{bottom:687.345000px;}
.ydf{bottom:688.965000px;}
.y9e{bottom:691.305000px;}
.y15e{bottom:692.745000px;}
.y14{bottom:693.645000px;}
.y62{bottom:695.985000px;}
.y80{bottom:699.405000px;}
.y13e{bottom:706.245000px;}
.y43{bottom:708.045000px;}
.yde{bottom:709.665000px;}
.y9c{bottom:710.205000px;}
.y17e{bottom:713.445000px;}
.y13{bottom:714.345000px;}
.y61{bottom:716.685000px;}
.y7f{bottom:719.925000px;}
.y15d{bottom:725.325000px;}
.y13d{bottom:726.945000px;}
.y42{bottom:728.745000px;}
.y9a{bottom:729.105000px;}
.ydd{bottom:730.365000px;}
.y17d{bottom:734.145000px;}
.y103{bottom:737.385000px;}
.y7e{bottom:740.625000px;}
.y15c{bottom:746.025000px;}
.y12{bottom:747.105000px;}
.y13c{bottom:747.645000px;}
.y60{bottom:749.445000px;}
.ydc{bottom:751.065000px;}
.y17c{bottom:754.845000px;}
.y41{bottom:761.325000px;}
.y99{bottom:764.205000px;}
.y15b{bottom:766.725000px;}
.y13b{bottom:768.345000px;}
.y102{bottom:770.145000px;}
.ydb{bottom:771.765000px;}
.y11{bottom:779.685000px;}
.y40{bottom:782.025000px;}
.y17b{bottom:787.425000px;}
.y13a{bottom:789.045000px;}
.y101{bottom:790.845000px;}
.yda{bottom:792.465000px;}
.y11f{bottom:794.085000px;}
.y15a{bottom:799.485000px;}
.y3f{bottom:802.725000px;}
.y17a{bottom:808.125000px;}
.y139{bottom:809.745000px;}
.y100{bottom:811.590000px;}
.yd9{bottom:813.210000px;}
.y11e{bottom:814.830000px;}
.y159{bottom:820.230000px;}
.y10{bottom:822.390000px;}
.y3e{bottom:823.470000px;}
.y179{bottom:828.870000px;}
.y138{bottom:830.490000px;}
.yff{bottom:832.290000px;}
.yd8{bottom:833.910000px;}
.y11d{bottom:835.530000px;}
.y3d{bottom:844.170000px;}
.y137{bottom:851.190000px;}
.yfe{bottom:852.990000px;}
.yd7{bottom:854.610000px;}
.y11c{bottom:856.230000px;}
.yf{bottom:858.030000px;}
.y178{bottom:861.630000px;}
.y3c{bottom:864.870000px;}
.y136{bottom:871.890000px;}
.yfd{bottom:873.690000px;}
.yd6{bottom:875.310000px;}
.y89{bottom:876.930000px;}
.y177{bottom:882.330000px;}
.ye{bottom:883.950000px;}
.y3b{bottom:885.570000px;}
.y135{bottom:892.590000px;}
.yfc{bottom:894.390000px;}
.yd5{bottom:896.010000px;}
.y7d{bottom:897.630000px;}
.y3a{bottom:906.270000px;}
.y134{bottom:913.290000px;}
.yfb{bottom:915.090000px;}
.yd{bottom:916.530000px;}
.yd4{bottom:916.710000px;}
.y7c{bottom:918.330000px;}
.y39{bottom:926.970000px;}
.y133{bottom:933.990000px;}
.yfa{bottom:935.790000px;}
.y7b{bottom:939.030000px;}
.y38{bottom:947.670000px;}
.yc{bottom:949.290000px;}
.yd3{bottom:949.470000px;}
.y132{bottom:954.690000px;}
.y176{bottom:956.490000px;}
.y7a{bottom:959.730000px;}
.yd2{bottom:966.210000px;}
.y37{bottom:968.370000px;}
.yb{bottom:969.990000px;}
.y79{bottom:980.430000px;}
.yd1{bottom:985.110000px;}
.y131{bottom:987.270000px;}
.y36{bottom:989.070000px;}
.y78{bottom:1001.130000px;}
.yd0{bottom:1004.010000px;}
.y35{bottom:1009.770000px;}
.y4{bottom:1011.570000px;}
.y5f{bottom:1021.830000px;}
.ycf{bottom:1023.090000px;}
.y117{bottom:1030.470000px;}
.yce{bottom:1041.990000px;}
.y34{bottom:1042.530000px;}
.y3{bottom:1053.870000px;}
.ycd{bottom:1061.070000px;}
.y33{bottom:1063.260000px;}
.y2{bottom:1091.160000px;}
.y1{bottom:1114.380000px;}
.ha{height:18.900000px;}
.hb{height:18.936000px;}
.h8{height:19.080000px;}
.hd{height:19.116000px;}
.hf{height:37.800000px;}
.he{height:37.980000px;}
.h10{height:38.016000px;}
.h7{height:42.327773px;}
.h4{height:49.500000px;}
.h2{height:50.800781px;}
.hc{height:52.171875px;}
.h11{height:56.880000px;}
.h6{height:57.796523px;}
.h9{height:58.121719px;}
.h5{height:58.320000px;}
.h1{height:63.175781px;}
.h3{height:73.915664px;}
.h0{height:1188.000000px;}
.w8{width:86.076000px;}
.w10{width:92.196000px;}
.w9{width:93.960000px;}
.wc{width:98.676000px;}
.wd{width:99.720000px;}
.w11{width:100.980000px;}
.w2{width:168.300000px;}
.w5{width:175.350000px;}
.w4{width:175.530000px;}
.w3{width:182.190000px;}
.wf{width:213.330000px;}
.wa{width:242.670000px;}
.wb{width:260.310000px;}
.w6{width:260.850000px;}
.w7{width:261.210000px;}
.we{width:289.830000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x7{left:9.719986px;}
.x8{left:38.339986px;}
.x6{left:106.955986px;}
.xf{left:108.035986px;}
.xa{left:115.955986px;}
.x1b{left:162.029986px;}
.x1{left:176.249986px;}
.xe{left:184.349986px;}
.x3{left:206.309986px;}
.x4{left:236.549986px;}
.x11{left:276.330000px;}
.x2{left:284.249986px;}
.xb{left:305.354986px;}
.xd{left:321.374986px;}
.x16{left:350.715000px;}
.x13{left:368.895000px;}
.x19{left:397.875000px;}
.x9{left:423.074986px;}
.xc{left:459.074986px;}
.x17{left:611.025000px;}
.x14{left:630.105000px;}
.x12{left:634.065000px;}
.x1a{left:703.410000px;}
.x18{left:709.710000px;}
.x15{left:716.190000px;}
.x5{left:792.149986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.280000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-78.852267pt;}
._f{margin-left:-4.032000pt;}
._5{margin-left:-2.816000pt;}
._0{margin-left:-1.127040pt;}
._1{width:1.412267pt;}
._17{width:2.333867pt;}
._a{width:3.367040pt;}
._c{width:4.330027pt;}
._b{width:5.229013pt;}
._7{width:6.272000pt;}
._8{width:7.488000pt;}
._10{width:9.152000pt;}
._1c{width:10.048000pt;}
._11{width:10.944000pt;}
._18{width:11.967787pt;}
._6{width:12.864000pt;}
._9{width:14.272000pt;}
._19{width:16.960000pt;}
._12{width:18.432000pt;}
._13{width:19.392000pt;}
._14{width:20.416000pt;}
._15{width:21.674667pt;}
._16{width:22.566400pt;}
._d{width:24.256000pt;}
._e{width:25.536000pt;}
._1f{width:26.432000pt;}
._1d{width:28.124160pt;}
._1b{width:29.219840pt;}
._1a{width:30.311040pt;}
._1e{width:35.904000pt;}
._23{width:60.544000pt;}
._24{width:61.504000pt;}
._25{width:67.712000pt;}
._4{width:74.115627pt;}
._2{width:97.226667pt;}
._21{width:102.720000pt;}
._22{width:103.744000pt;}
._20{width:112.107520pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.200000pt;}
.ya6{bottom:3.226667pt;}
.y9b{bottom:3.360000pt;}
.y32{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y30{bottom:9.600000pt;}
.y7{bottom:19.200000pt;}
.y113{bottom:20.000000pt;}
.y12f{bottom:20.154667pt;}
.y106{bottom:20.160000pt;}
.y31{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y12e{bottom:36.954667pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:69.792000pt;}
.y77{bottom:100.512000pt;}
.y116{bottom:101.472000pt;}
.y130{bottom:106.112000pt;}
.y196{bottom:107.232000pt;}
.ybb{bottom:107.392000pt;}
.y2f{bottom:109.152000pt;}
.y5e{bottom:111.232000pt;}
.ycc{bottom:112.352000pt;}
.yf9{bottom:112.672000pt;}
.y158{bottom:117.312000pt;}
.y175{bottom:117.792000pt;}
.y115{bottom:118.432000pt;}
.y76{bottom:118.912000pt;}
.y12d{bottom:122.912000pt;}
.y195{bottom:125.632000pt;}
.yba{bottom:125.792000pt;}
.ycb{bottom:129.152000pt;}
.y5d{bottom:129.632000pt;}
.yf8{bottom:131.072000pt;}
.y114{bottom:135.226667pt;}
.y157{bottom:135.706667pt;}
.y174{bottom:136.186667pt;}
.y75{bottom:137.306667pt;}
.y2e{bottom:138.106667pt;}
.y194{bottom:144.026667pt;}
.yb9{bottom:144.186667pt;}
.yca{bottom:145.946667pt;}
.y5c{bottom:148.026667pt;}
.yf7{bottom:149.466667pt;}
.y112{bottom:152.186667pt;}
.y156{bottom:154.106667pt;}
.y173{bottom:154.586667pt;}
.y74{bottom:155.706667pt;}
.y2d{bottom:156.506667pt;}
.yb8{bottom:162.586667pt;}
.yc9{bottom:162.906667pt;}
.y5b{bottom:166.426667pt;}
.yf6{bottom:167.866667pt;}
.y155{bottom:172.506667pt;}
.y193{bottom:172.986667pt;}
.y12c{bottom:173.466667pt;}
.y73{bottom:174.106667pt;}
.y2c{bottom:174.906667pt;}
.yc8{bottom:179.706667pt;}
.yb7{bottom:180.986667pt;}
.y172{bottom:183.706667pt;}
.y5a{bottom:184.826667pt;}
.y111{bottom:185.786667pt;}
.yf5{bottom:186.266667pt;}
.y154{bottom:190.906667pt;}
.y192{bottom:191.386667pt;}
.y72{bottom:192.506667pt;}
.y2b{bottom:193.306667pt;}
.yc7{bottom:196.666667pt;}
.yb6{bottom:199.386667pt;}
.y171{bottom:202.106667pt;}
.y110{bottom:202.746667pt;}
.y59{bottom:203.226667pt;}
.yf4{bottom:204.666667pt;}
.y12b{bottom:207.226667pt;}
.y153{bottom:209.306667pt;}
.y191{bottom:209.786667pt;}
.y71{bottom:210.906667pt;}
.y2a{bottom:211.706667pt;}
.yc6{bottom:213.466667pt;}
.yb5{bottom:217.786667pt;}
.y10f{bottom:219.546667pt;}
.y170{bottom:220.506667pt;}
.y58{bottom:221.626667pt;}
.yf3{bottom:223.066667pt;}
.y152{bottom:227.706667pt;}
.y190{bottom:228.186667pt;}
.y98{bottom:229.306667pt;}
.y29{bottom:230.106667pt;}
.yc5{bottom:230.266667pt;}
.yb4{bottom:236.186667pt;}
.y10e{bottom:236.506667pt;}
.y57{bottom:240.026667pt;}
.y12a{bottom:240.986667pt;}
.yf2{bottom:241.466667pt;}
.y151{bottom:246.106667pt;}
.yc4{bottom:247.226667pt;}
.y97{bottom:247.706667pt;}
.y28{bottom:248.506667pt;}
.y16f{bottom:249.626667pt;}
.y10d{bottom:253.306667pt;}
.y18f{bottom:257.306667pt;}
.y56{bottom:258.426667pt;}
.yf1{bottom:259.866667pt;}
.yc3{bottom:264.026667pt;}
.y150{bottom:264.506667pt;}
.yb3{bottom:265.306667pt;}
.y96{bottom:266.106667pt;}
.y27{bottom:266.906667pt;}
.y16e{bottom:268.026667pt;}
.y11b{bottom:268.986667pt;}
.y10c{bottom:270.266667pt;}
.y129{bottom:274.786667pt;}
.y18e{bottom:275.746667pt;}
.y55{bottom:276.866667pt;}
.yf0{bottom:278.306667pt;}
.yc2{bottom:281.026667pt;}
.y14f{bottom:282.946667pt;}
.yb2{bottom:283.746667pt;}
.y95{bottom:284.546667pt;}
.y26{bottom:285.346667pt;}
.y16d{bottom:286.466667pt;}
.y10b{bottom:287.106667pt;}
.y11a{bottom:287.426667pt;}
.y128{bottom:291.586667pt;}
.y18d{bottom:294.146667pt;}
.y54{bottom:295.266667pt;}
.yc1{bottom:297.826667pt;}
.y14e{bottom:301.346667pt;}
.y25{bottom:303.746667pt;}
.y10a{bottom:303.906667pt;}
.y119{bottom:305.826667pt;}
.yef{bottom:307.266667pt;}
.y127{bottom:308.546667pt;}
.yb1{bottom:312.866667pt;}
.y53{bottom:313.666667pt;}
.yc0{bottom:314.626667pt;}
.y16c{bottom:315.426667pt;}
.y14d{bottom:319.746667pt;}
.y24{bottom:322.146667pt;}
.y18c{bottom:323.266667pt;}
.y118{bottom:324.226667pt;}
.y126{bottom:325.346667pt;}
.yee{bottom:325.666667pt;}
.yb0{bottom:327.746667pt;}
.ybf{bottom:331.586667pt;}
.y70{bottom:332.066667pt;}
.y16b{bottom:333.826667pt;}
.y109{bottom:337.666667pt;}
.y14c{bottom:338.146667pt;}
.y23{bottom:340.546667pt;}
.y18b{bottom:341.666667pt;}
.y125{bottom:342.146667pt;}
.y52{bottom:342.626667pt;}
.yed{bottom:344.066667pt;}
.yaf{bottom:344.546667pt;}
.ybe{bottom:348.386667pt;}
.y6f{bottom:350.466667pt;}
.y16a{bottom:352.226667pt;}
.y108{bottom:354.626667pt;}
.y14b{bottom:356.546667pt;}
.y22{bottom:358.946667pt;}
.y124{bottom:359.106667pt;}
.y18a{bottom:360.066667pt;}
.y51{bottom:361.026667pt;}
.yae{bottom:361.346667pt;}
.yec{bottom:362.466667pt;}
.y6e{bottom:368.866667pt;}
.y169{bottom:370.626667pt;}
.y107{bottom:371.426667pt;}
.y14a{bottom:374.946667pt;}
.y21{bottom:377.346667pt;}
.yad{bottom:378.306667pt;}
.y50{bottom:379.426667pt;}
.yeb{bottom:380.866667pt;}
.y6d{bottom:387.266667pt;}
.y105{bottom:388.226667pt;}
.y189{bottom:389.026667pt;}
.y123{bottom:390.146667pt;}
.y149{bottom:393.346667pt;}
.yac{bottom:395.106667pt;}
.y20{bottom:395.746667pt;}
.y4f{bottom:397.826667pt;}
.yea{bottom:399.266667pt;}
.y168{bottom:399.746667pt;}
.y94{bottom:405.666667pt;}
.y188{bottom:407.426667pt;}
.ybd{bottom:408.546667pt;}
.yab{bottom:412.066667pt;}
.y1f{bottom:414.146667pt;}
.y4e{bottom:416.226667pt;}
.ye9{bottom:417.666667pt;}
.y167{bottom:418.146667pt;}
.y122{bottom:419.266667pt;}
.y104{bottom:421.986667pt;}
.y148{bottom:422.466667pt;}
.y93{bottom:424.066667pt;}
.y187{bottom:425.826667pt;}
.ybc{bottom:426.946667pt;}
.yaa{bottom:428.866667pt;}
.y1e{bottom:432.546667pt;}
.y6c{bottom:434.626667pt;}
.ye8{bottom:436.066667pt;}
.y121{bottom:437.666667pt;}
.y92{bottom:442.466667pt;}
.y4d{bottom:445.346667pt;}
.ya9{bottom:445.826667pt;}
.y166{bottom:447.266667pt;}
.y1d{bottom:450.946667pt;}
.y147{bottom:451.426667pt;}
.y6b{bottom:453.026667pt;}
.ye7{bottom:454.466667pt;}
.y186{bottom:454.946667pt;}
.y120{bottom:456.066667pt;}
.y91{bottom:460.866667pt;}
.ya8{bottom:462.626667pt;}
.y4c{bottom:463.746667pt;}
.y165{bottom:465.666667pt;}
.y1c{bottom:469.346667pt;}
.y146{bottom:469.826667pt;}
.y6a{bottom:471.426667pt;}
.ye6{bottom:472.866667pt;}
.y185{bottom:473.346667pt;}
.y88{bottom:474.466667pt;}
.y90{bottom:479.266667pt;}
.ya7{bottom:479.426667pt;}
.y4b{bottom:482.146667pt;}
.y164{bottom:484.066667pt;}
.y1b{bottom:487.746667pt;}
.y145{bottom:488.226667pt;}
.y69{bottom:489.826667pt;}
.ye5{bottom:491.266667pt;}
.y184{bottom:491.746667pt;}
.y87{bottom:492.866667pt;}
.ya5{bottom:496.386667pt;}
.y8f{bottom:497.666667pt;}
.y4a{bottom:500.573333pt;}
.y1a{bottom:506.173333pt;}
.y144{bottom:506.653333pt;}
.y68{bottom:508.253333pt;}
.ye4{bottom:509.693333pt;}
.y86{bottom:511.293333pt;}
.y163{bottom:513.053333pt;}
.ya4{bottom:513.213333pt;}
.y8e{bottom:516.093333pt;}
.y49{bottom:518.973333pt;}
.y183{bottom:520.893333pt;}
.y19{bottom:524.573333pt;}
.y143{bottom:525.053333pt;}
.y67{bottom:526.653333pt;}
.ye3{bottom:528.093333pt;}
.y85{bottom:529.693333pt;}
.ya3{bottom:530.173333pt;}
.y162{bottom:531.453333pt;}
.y8d{bottom:534.493333pt;}
.y48{bottom:537.373333pt;}
.y182{bottom:539.293333pt;}
.y18{bottom:542.973333pt;}
.y142{bottom:543.453333pt;}
.y66{bottom:545.053333pt;}
.ye2{bottom:546.493333pt;}
.ya2{bottom:546.973333pt;}
.y84{bottom:548.093333pt;}
.y161{bottom:549.853333pt;}
.y8c{bottom:552.893333pt;}
.y47{bottom:555.773333pt;}
.y181{bottom:557.693333pt;}
.y17{bottom:561.373333pt;}
.y141{bottom:561.853333pt;}
.y65{bottom:563.453333pt;}
.ya1{bottom:563.773333pt;}
.y83{bottom:566.493333pt;}
.y8b{bottom:571.293333pt;}
.y46{bottom:574.173333pt;}
.ye1{bottom:575.613333pt;}
.y160{bottom:578.973333pt;}
.y16{bottom:579.773333pt;}
.ya0{bottom:580.733333pt;}
.y64{bottom:581.853333pt;}
.y82{bottom:584.893333pt;}
.y180{bottom:586.653333pt;}
.y8a{bottom:589.693333pt;}
.y140{bottom:590.973333pt;}
.y45{bottom:592.573333pt;}
.ye0{bottom:594.013333pt;}
.y15f{bottom:597.373333pt;}
.y9f{bottom:597.533333pt;}
.y15{bottom:598.173333pt;}
.y63{bottom:600.253333pt;}
.y81{bottom:603.293333pt;}
.y17f{bottom:605.053333pt;}
.y13f{bottom:609.373333pt;}
.y44{bottom:610.973333pt;}
.ydf{bottom:612.413333pt;}
.y9e{bottom:614.493333pt;}
.y15e{bottom:615.773333pt;}
.y14{bottom:616.573333pt;}
.y62{bottom:618.653333pt;}
.y80{bottom:621.693333pt;}
.y13e{bottom:627.773333pt;}
.y43{bottom:629.373333pt;}
.yde{bottom:630.813333pt;}
.y9c{bottom:631.293333pt;}
.y17e{bottom:634.173333pt;}
.y13{bottom:634.973333pt;}
.y61{bottom:637.053333pt;}
.y7f{bottom:639.933333pt;}
.y15d{bottom:644.733333pt;}
.y13d{bottom:646.173333pt;}
.y42{bottom:647.773333pt;}
.y9a{bottom:648.093333pt;}
.ydd{bottom:649.213333pt;}
.y17d{bottom:652.573333pt;}
.y103{bottom:655.453333pt;}
.y7e{bottom:658.333333pt;}
.y15c{bottom:663.133333pt;}
.y12{bottom:664.093333pt;}
.y13c{bottom:664.573333pt;}
.y60{bottom:666.173333pt;}
.ydc{bottom:667.613333pt;}
.y17c{bottom:670.973333pt;}
.y41{bottom:676.733333pt;}
.y99{bottom:679.293333pt;}
.y15b{bottom:681.533333pt;}
.y13b{bottom:682.973333pt;}
.y102{bottom:684.573333pt;}
.ydb{bottom:686.013333pt;}
.y11{bottom:693.053333pt;}
.y40{bottom:695.133333pt;}
.y17b{bottom:699.933333pt;}
.y13a{bottom:701.373333pt;}
.y101{bottom:702.973333pt;}
.yda{bottom:704.413333pt;}
.y11f{bottom:705.853333pt;}
.y15a{bottom:710.653333pt;}
.y3f{bottom:713.533333pt;}
.y17a{bottom:718.333333pt;}
.y139{bottom:719.773333pt;}
.y100{bottom:721.413333pt;}
.yd9{bottom:722.853333pt;}
.y11e{bottom:724.293333pt;}
.y159{bottom:729.093333pt;}
.y10{bottom:731.013333pt;}
.y3e{bottom:731.973333pt;}
.y179{bottom:736.773333pt;}
.y138{bottom:738.213333pt;}
.yff{bottom:739.813333pt;}
.yd8{bottom:741.253333pt;}
.y11d{bottom:742.693333pt;}
.y3d{bottom:750.373333pt;}
.y137{bottom:756.613333pt;}
.yfe{bottom:758.213333pt;}
.yd7{bottom:759.653333pt;}
.y11c{bottom:761.093333pt;}
.yf{bottom:762.693333pt;}
.y178{bottom:765.893333pt;}
.y3c{bottom:768.773333pt;}
.y136{bottom:775.013333pt;}
.yfd{bottom:776.613333pt;}
.yd6{bottom:778.053333pt;}
.y89{bottom:779.493333pt;}
.y177{bottom:784.293333pt;}
.ye{bottom:785.733333pt;}
.y3b{bottom:787.173333pt;}
.y135{bottom:793.413333pt;}
.yfc{bottom:795.013333pt;}
.yd5{bottom:796.453333pt;}
.y7d{bottom:797.893333pt;}
.y3a{bottom:805.573333pt;}
.y134{bottom:811.813333pt;}
.yfb{bottom:813.413333pt;}
.yd{bottom:814.693333pt;}
.yd4{bottom:814.853333pt;}
.y7c{bottom:816.293333pt;}
.y39{bottom:823.973333pt;}
.y133{bottom:830.213333pt;}
.yfa{bottom:831.813333pt;}
.y7b{bottom:834.693333pt;}
.y38{bottom:842.373333pt;}
.yc{bottom:843.813333pt;}
.yd3{bottom:843.973333pt;}
.y132{bottom:848.613333pt;}
.y176{bottom:850.213333pt;}
.y7a{bottom:853.093333pt;}
.yd2{bottom:858.853333pt;}
.y37{bottom:860.773333pt;}
.yb{bottom:862.213333pt;}
.y79{bottom:871.493333pt;}
.yd1{bottom:875.653333pt;}
.y131{bottom:877.573333pt;}
.y36{bottom:879.173333pt;}
.y78{bottom:889.893333pt;}
.yd0{bottom:892.453333pt;}
.y35{bottom:897.573333pt;}
.y4{bottom:899.173333pt;}
.y5f{bottom:908.293333pt;}
.ycf{bottom:909.413333pt;}
.y117{bottom:915.973333pt;}
.yce{bottom:926.213333pt;}
.y34{bottom:926.693333pt;}
.y3{bottom:936.773333pt;}
.ycd{bottom:943.173333pt;}
.y33{bottom:945.120000pt;}
.y2{bottom:969.920000pt;}
.y1{bottom:990.560000pt;}
.ha{height:16.800000pt;}
.hb{height:16.832000pt;}
.h8{height:16.960000pt;}
.hd{height:16.992000pt;}
.hf{height:33.600000pt;}
.he{height:33.760000pt;}
.h10{height:33.792000pt;}
.h7{height:37.624687pt;}
.h4{height:44.000000pt;}
.h2{height:45.156250pt;}
.hc{height:46.375000pt;}
.h11{height:50.560000pt;}
.h6{height:51.374688pt;}
.h9{height:51.663750pt;}
.h5{height:51.840000pt;}
.h1{height:56.156250pt;}
.h3{height:65.702812pt;}
.h0{height:1056.000000pt;}
.w8{width:76.512000pt;}
.w10{width:81.952000pt;}
.w9{width:83.520000pt;}
.wc{width:87.712000pt;}
.wd{width:88.640000pt;}
.w11{width:89.760000pt;}
.w2{width:149.600000pt;}
.w5{width:155.866667pt;}
.w4{width:156.026667pt;}
.w3{width:161.946667pt;}
.wf{width:189.626667pt;}
.wa{width:215.706667pt;}
.wb{width:231.386667pt;}
.w6{width:231.866667pt;}
.w7{width:232.186667pt;}
.we{width:257.626667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x7{left:8.639988pt;}
.x8{left:34.079988pt;}
.x6{left:95.071988pt;}
.xf{left:96.031988pt;}
.xa{left:103.071988pt;}
.x1b{left:144.026655pt;}
.x1{left:156.666655pt;}
.xe{left:163.866655pt;}
.x3{left:183.386655pt;}
.x4{left:210.266655pt;}
.x11{left:245.626667pt;}
.x2{left:252.666655pt;}
.xb{left:271.426655pt;}
.xd{left:285.666655pt;}
.x16{left:311.746667pt;}
.x13{left:327.906667pt;}
.x19{left:353.666667pt;}
.x9{left:376.066655pt;}
.xc{left:408.066655pt;}
.x17{left:543.133333pt;}
.x14{left:560.093333pt;}
.x12{left:563.613333pt;}
.x1a{left:625.253333pt;}
.x18{left:630.853333pt;}
.x15{left:636.613333pt;}
.x5{left:704.133321pt;}
}




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