
    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_5ad81e1998739d3338b13330.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d76ab09cd0cf71b3c7975efc.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_e62ea9cf5da1ebff04df79d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_dd10b9188e5e7a39eb893bea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aea952ce3f884ca4834d3682.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_b0511457ab90973cdae57cd1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005859;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_51f4549441eaf7d5996207c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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);}
.v1{vertical-align:-13.080000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.080000px;}
.v4{vertical-align:20.880000px;}
.v5{vertical-align:23.040000px;}
.v3{vertical-align:36.120000px;}
.ls8{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.343200px;}
.ls18{letter-spacing:-0.334200px;}
.ls9{letter-spacing:-0.219000px;}
.ls4{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.054720px;}
.ls11{letter-spacing:-0.051840px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000006px;}
.ls0{letter-spacing:0.053280px;}
.ls15{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.178800px;}
.ls1f{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.195600px;}
.ls13{letter-spacing:0.213000px;}
.ls17{letter-spacing:0.219000px;}
.ls1e{letter-spacing:0.284400px;}
.ls16{letter-spacing:0.334200px;}
.ls1d{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:1.816560px;}
.lsd{letter-spacing:2.536560px;}
.lsf{letter-spacing:3.202560px;}
.lse{letter-spacing:3.600000px;}
.ls1a{letter-spacing:13.150080px;}
.lsc{letter-spacing:16.216560px;}
.lsb{letter-spacing:42.841920px;}
.lsa{letter-spacing:64.002720px;}
.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;}
}
.ws19{word-spacing:-63.538800px;}
.ws13{word-spacing:-63.360000px;}
.ws9{word-spacing:-59.760000px;}
.ws12{word-spacing:-50.209920px;}
.wsd{word-spacing:-49.489920px;}
.ws14{word-spacing:-49.309920px;}
.ws10{word-spacing:-48.943320px;}
.wsf{word-spacing:-48.665880px;}
.ws11{word-spacing:-48.637457px;}
.ws1c{word-spacing:-48.296880px;}
.ws1a{word-spacing:-47.030040px;}
.ws1b{word-spacing:-46.171800px;}
.wsc{word-spacing:-45.889920px;}
.wse{word-spacing:-45.016800px;}
.ws1e{word-spacing:-38.394000px;}
.ws4{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.174200px;}
.ws17{word-spacing:-16.059000px;}
.ws7{word-spacing:-15.948000px;}
.wsa{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.788160px;}
.ws8{word-spacing:-15.621000px;}
.ws18{word-spacing:-15.505800px;}
.ws6{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1f{word-spacing:-14.504400px;}
.ws1d{word-spacing:-14.220000px;}
.ws3{word-spacing:-14.165280px;}
.ws15{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-4.476960px;}
._d{margin-left:-2.902320px;}
._0{margin-left:-1.324800px;}
._1{width:1.252800px;}
._15{width:2.465040px;}
._12{width:4.266000px;}
._17{width:5.374080px;}
._3{width:6.541200px;}
._2{width:7.849440px;}
._11{width:8.873280px;}
._10{width:10.410480px;}
._a{width:11.602080px;}
._13{width:12.911760px;}
._1c{width:14.129280px;}
._c{width:15.389760px;}
._b{width:16.438320px;}
._1b{width:17.506560px;}
._7{width:18.656640px;}
._18{width:20.070720px;}
._16{width:21.130560px;}
._19{width:22.370400px;}
._6{width:23.491440px;}
._5{width:24.742800px;}
._1e{width:26.605440px;}
._f{width:31.340880px;}
._e{width:32.364720px;}
._4{width:34.924320px;}
._9{width:36.676800px;}
._8{width:45.219600px;}
._14{width:62.624880px;}
._1d{width:194.656560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs9{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:2.160000px;}
.y35{bottom:3.240000px;}
.y6f{bottom:3.420000px;}
.yfc{bottom:12.240000px;}
.ya8{bottom:12.420000px;}
.y6d{bottom:12.600000px;}
.y11{bottom:14.400000px;}
.yc1{bottom:18.000000px;}
.y18{bottom:21.060000px;}
.ya7{bottom:21.420000px;}
.y6e{bottom:21.600000px;}
.ybf{bottom:27.000000px;}
.y34{bottom:29.340000px;}
.yfb{bottom:30.960000px;}
.yc0{bottom:36.180000px;}
.y17{bottom:38.340000px;}
.y33{bottom:45.720000px;}
.yfa{bottom:49.680000px;}
.yfd{bottom:50.040000px;}
.y16{bottom:55.650000px;}
.y32{bottom:62.100000px;}
.y15{bottom:72.930000px;}
.y31{bottom:78.480000px;}
.y14{bottom:90.210000px;}
.y30{bottom:94.860000px;}
.y19{bottom:95.430000px;}
.y13{bottom:105.150000px;}
.y2f{bottom:111.240000px;}
.y2e{bottom:127.620000px;}
.y2d{bottom:144.045000px;}
.y71{bottom:158.940000px;}
.y2c{bottom:160.425000px;}
.y95{bottom:160.770000px;}
.y133{bottom:163.110000px;}
.yf4{bottom:166.350000px;}
.y118{bottom:167.610000px;}
.y42{bottom:171.030000px;}
.yc8{bottom:171.390000px;}
.y2b{bottom:176.805000px;}
.y70{bottom:177.150000px;}
.y132{bottom:179.490000px;}
.yf3{bottom:184.530000px;}
.y117{bottom:185.790000px;}
.y94{bottom:188.310000px;}
.yc7{bottom:189.390000px;}
.y41{bottom:189.930000px;}
.y2a{bottom:193.185000px;}
.y131{bottom:200.370000px;}
.y6c{bottom:200.730000px;}
.yf2{bottom:202.710000px;}
.y116{bottom:203.970000px;}
.y93{bottom:206.490000px;}
.yc6{bottom:207.570000px;}
.y40{bottom:208.830000px;}
.y29{bottom:209.565000px;}
.y130{bottom:216.750000px;}
.yf1{bottom:220.710000px;}
.y115{bottom:221.970000px;}
.y3c{bottom:223.965000px;}
.yc5{bottom:225.570000px;}
.y28{bottom:225.945000px;}
.y92{bottom:233.850000px;}
.y3f{bottom:236.730000px;}
.y6b{bottom:237.090000px;}
.y12f{bottom:237.810000px;}
.y114{bottom:240.150000px;}
.y3b{bottom:241.245000px;}
.y27{bottom:242.325000px;}
.yc4{bottom:243.750000px;}
.yf0{bottom:247.890000px;}
.y12e{bottom:254.190000px;}
.y3e{bottom:255.450000px;}
.y113{bottom:258.330000px;}
.y3a{bottom:258.525000px;}
.y26{bottom:258.705000px;}
.y91{bottom:261.570000px;}
.yc3{bottom:261.930000px;}
.y12d{bottom:270.570000px;}
.y1a{bottom:271.650000px;}
.yef{bottom:273.090000px;}
.y25{bottom:275.085000px;}
.y39{bottom:275.805000px;}
.y112{bottom:276.330000px;}
.y90{bottom:279.750000px;}
.yc2{bottom:279.930000px;}
.yee{bottom:291.270000px;}
.y24{bottom:291.465000px;}
.y38{bottom:293.085000px;}
.y111{bottom:294.510000px;}
.y8f{bottom:297.930000px;}
.ybe{bottom:298.830000px;}
.y12c{bottom:305.310000px;}
.y23{bottom:308.025000px;}
.yed{bottom:309.450000px;}
.y37{bottom:310.365000px;}
.y110{bottom:312.510000px;}
.y3d{bottom:315.405000px;}
.y8e{bottom:315.930000px;}
.y22{bottom:324.405000px;}
.y36{bottom:325.125000px;}
.yec{bottom:327.450000px;}
.y10f{bottom:330.690000px;}
.y12b{bottom:333.210000px;}
.y21{bottom:340.785000px;}
.y8d{bottom:343.110000px;}
.yeb{bottom:345.630000px;}
.y10e{bottom:348.870000px;}
.y20{bottom:357.165000px;}
.y12a{bottom:361.290000px;}
.yea{bottom:363.630000px;}
.y10d{bottom:366.870000px;}
.y8c{bottom:367.590000px;}
.ybd{bottom:368.490000px;}
.y1f{bottom:373.545000px;}
.ye9{bottom:381.810000px;}
.y10c{bottom:385.050000px;}
.y8a{bottom:385.770000px;}
.y129{bottom:389.010000px;}
.y1e{bottom:389.955000px;}
.ybc{bottom:392.790000px;}
.ye8{bottom:400.710000px;}
.y10b{bottom:403.050000px;}
.y1d{bottom:406.335000px;}
.y128{bottom:407.235000px;}
.ybb{bottom:411.015000px;}
.y6a{bottom:411.375000px;}
.y1c{bottom:422.715000px;}
.yba{bottom:429.195000px;}
.y69{bottom:429.555000px;}
.y10a{bottom:430.275000px;}
.ye7{bottom:431.895000px;}
.y127{bottom:434.415000px;}
.y1b{bottom:436.935000px;}
.yb9{bottom:447.195000px;}
.y68{bottom:447.735000px;}
.y109{bottom:454.035000px;}
.ye6{bottom:459.075000px;}
.y126{bottom:462.315000px;}
.yb8{bottom:465.375000px;}
.y67{bottom:465.915000px;}
.ye5{bottom:477.255000px;}
.y125{bottom:480.495000px;}
.yb7{bottom:483.375000px;}
.y66{bottom:483.915000px;}
.ye4{bottom:495.255000px;}
.y124{bottom:498.675000px;}
.yb6{bottom:501.555000px;}
.y65{bottom:502.095000px;}
.ye3{bottom:513.435000px;}
.y123{bottom:516.675000px;}
.yb5{bottom:519.735000px;}
.y64{bottom:520.095000px;}
.ye2{bottom:531.615000px;}
.y122{bottom:534.855000px;}
.yb4{bottom:537.735000px;}
.y63{bottom:538.275000px;}
.ye1{bottom:549.615000px;}
.y121{bottom:553.035000px;}
.yb3{bottom:555.915000px;}
.y62{bottom:565.455000px;}
.ye0{bottom:567.795000px;}
.y120{bottom:571.035000px;}
.yb2{bottom:573.915000px;}
.y150{bottom:581.295000px;}
.ydf{bottom:585.975000px;}
.y11f{bottom:589.215000px;}
.yb1{bottom:592.095000px;}
.y61{bottom:593.355000px;}
.y89{bottom:596.235000px;}
.y12{bottom:603.435000px;}
.yde{bottom:603.975000px;}
.y14f{bottom:605.595000px;}
.y11e{bottom:607.215000px;}
.yb0{bottom:610.275000px;}
.y88{bottom:614.415000px;}
.y14e{bottom:621.975000px;}
.ydd{bottom:622.155000px;}
.y11d{bottom:625.395000px;}
.yaf{bottom:628.275000px;}
.y60{bottom:630.435000px;}
.y87{bottom:632.415000px;}
.ydc{bottom:640.155000px;}
.y14d{bottom:643.035000px;}
.y11c{bottom:643.575000px;}
.yae{bottom:646.455000px;}
.y5f{bottom:649.515000px;}
.y86{bottom:659.445000px;}
.yad{bottom:664.665000px;}
.y5e{bottom:668.625000px;}
.y11b{bottom:670.785000px;}
.y14c{bottom:675.825000px;}
.y85{bottom:677.625000px;}
.yac{bottom:682.665000px;}
.ydb{bottom:682.845000px;}
.y5d{bottom:687.525000px;}
.y84{bottom:695.805000px;}
.y14b{bottom:696.705000px;}
.yab{bottom:700.845000px;}
.y5c{bottom:706.425000px;}
.y14a{bottom:713.085000px;}
.y10{bottom:715.065000px;}
.y11a{bottom:716.685000px;}
.yaa{bottom:718.845000px;}
.yda{bottom:719.025000px;}
.y83{bottom:722.805000px;}
.y5b{bottom:725.505000px;}
.y108{bottom:733.065000px;}
.y149{bottom:733.965000px;}
.ya9{bottom:737.025000px;}
.yd9{bottom:737.205000px;}
.y119{bottom:740.265000px;}
.y82{bottom:740.985000px;}
.y5a{bottom:744.405000px;}
.y148{bottom:750.345000px;}
.y107{bottom:751.245000px;}
.yd8{bottom:755.205000px;}
.ya6{bottom:755.925000px;}
.yf{bottom:759.525000px;}
.y59{bottom:763.485000px;}
.y147{bottom:766.725000px;}
.y81{bottom:768.165000px;}
.y106{bottom:769.245000px;}
.yd7{bottom:773.385000px;}
.ye{bottom:776.805000px;}
.y58{bottom:782.385000px;}
.y80{bottom:786.345000px;}
.y105{bottom:787.425000px;}
.y146{bottom:787.605000px;}
.yd6{bottom:791.565000px;}
.ya5{bottom:792.825000px;}
.yd{bottom:793.905000px;}
.y57{bottom:801.465000px;}
.y145{bottom:803.985000px;}
.y104{bottom:805.425000px;}
.yd5{bottom:809.565000px;}
.yc{bottom:811.185000px;}
.y7f{bottom:813.345000px;}
.ya4{bottom:815.145000px;}
.y103{bottom:823.605000px;}
.y56{bottom:824.685000px;}
.y144{bottom:824.865000px;}
.yd4{bottom:827.745000px;}
.yb{bottom:828.465000px;}
.y7e{bottom:840.525000px;}
.y143{bottom:841.245000px;}
.ya3{bottom:842.145000px;}
.y55{bottom:843.765000px;}
.ya{bottom:845.745000px;}
.y102{bottom:850.785000px;}
.ya2{bottom:860.325000px;}
.y142{bottom:862.125000px;}
.y54{bottom:862.845000px;}
.yd3{bottom:863.925000px;}
.y7d{bottom:868.425000px;}
.ya1{bottom:878.505000px;}
.y101{bottom:878.685000px;}
.y53{bottom:881.745000px;}
.yd2{bottom:882.105000px;}
.y9{bottom:884.985000px;}
.y7c{bottom:886.605000px;}
.y141{bottom:894.885000px;}
.ya0{bottom:896.505000px;}
.y100{bottom:896.865000px;}
.yd1{bottom:900.150000px;}
.y52{bottom:900.870000px;}
.y7b{bottom:904.650000px;}
.y9f{bottom:914.730000px;}
.yff{bottom:914.910000px;}
.y140{bottom:915.810000px;}
.yd0{bottom:919.050000px;}
.y51{bottom:919.770000px;}
.y8{bottom:923.730000px;}
.y7a{bottom:931.830000px;}
.y13f{bottom:932.190000px;}
.y9e{bottom:932.910000px;}
.yfe{bottom:933.090000px;}
.y50{bottom:938.670000px;}
.y7{bottom:944.430000px;}
.y9d{bottom:950.910000px;}
.y13e{bottom:953.070000px;}
.yf9{bottom:956.850000px;}
.y4f{bottom:957.750000px;}
.y79{bottom:959.190000px;}
.y6{bottom:965.130000px;}
.ycf{bottom:968.370000px;}
.y9c{bottom:969.090000px;}
.y13d{bottom:969.450000px;}
.y4e{bottom:976.650000px;}
.y78{bottom:986.730000px;}
.y9b{bottom:987.270000px;}
.y13c{bottom:990.330000px;}
.yce{bottom:992.850000px;}
.y4d{bottom:995.730000px;}
.y5{bottom:1003.830000px;}
.y9a{bottom:1005.270000px;}
.y13b{bottom:1006.710000px;}
.ycd{bottom:1011.030000px;}
.y77{bottom:1014.270000px;}
.y4c{bottom:1018.950000px;}
.y13a{bottom:1027.590000px;}
.ycc{bottom:1029.030000px;}
.y76{bottom:1032.450000px;}
.y4b{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.yf8{bottom:1042.890000px;}
.y139{bottom:1043.970000px;}
.ycb{bottom:1047.210000px;}
.y4a{bottom:1057.110000px;}
.y75{bottom:1059.630000px;}
.y99{bottom:1060.530000px;}
.yf7{bottom:1061.070000px;}
.y138{bottom:1064.850000px;}
.yca{bottom:1065.390000px;}
.y49{bottom:1076.010000px;}
.yf6{bottom:1079.250000px;}
.y137{bottom:1081.230000px;}
.yc9{bottom:1084.110000px;}
.y74{bottom:1087.530000px;}
.y98{bottom:1088.250000px;}
.y48{bottom:1095.090000px;}
.yf5{bottom:1097.430000px;}
.y136{bottom:1097.610000px;}
.y97{bottom:1106.430000px;}
.y47{bottom:1113.990000px;}
.y73{bottom:1115.430000px;}
.y135{bottom:1118.490000px;}
.y46{bottom:1132.890000px;}
.y96{bottom:1133.430000px;}
.y72{bottom:1133.610000px;}
.y134{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hb{height:17.657227px;}
.h19{height:18.000000px;}
.h1c{height:18.036000px;}
.h17{height:18.180000px;}
.h1a{height:18.216000px;}
.h18{height:36.180000px;}
.h14{height:36.360000px;}
.h8{height:40.500000px;}
.h1d{height:44.240625px;}
.h11{height:46.251562px;}
.h1f{height:53.398125px;}
.he{height:55.796836px;}
.h21{height:55.824609px;}
.hc{height:58.621992px;}
.h5{height:58.651172px;}
.h7{height:60.226875px;}
.h20{height:61.268203px;}
.h12{height:62.184375px;}
.h2{height:65.010937px;}
.h15{height:65.124096px;}
.h1b{height:65.340000px;}
.h9{height:66.757500px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.h1e{height:73.800000px;}
.h3{height:96.508125px;}
.ha{height:109.476000px;}
.h10{height:153.341016px;}
.h13{height:162.000000px;}
.h16{height:198.030000px;}
.hf{height:329.430000px;}
.hd{height:441.255000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w12{width:49.500000px;}
.w1a{width:50.400000px;}
.wd{width:81.216000px;}
.w17{width:100.080000px;}
.w13{width:100.116000px;}
.w14{width:100.260000px;}
.w15{width:100.296000px;}
.w11{width:101.160000px;}
.wf{width:114.876000px;}
.we{width:127.980000px;}
.w16{width:134.280000px;}
.wc{width:148.536000px;}
.w10{width:149.976000px;}
.w18{width:175.350000px;}
.w6{width:224.130000px;}
.w7{width:225.390000px;}
.w8{width:227.730000px;}
.w3{width:237.990000px;}
.w9{width:308.730000px;}
.wa{width:319.935000px;}
.wb{width:324.075000px;}
.w5{width:406.875000px;}
.w19{width:551.265000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x28{left:10.440000px;}
.x23{left:12.240000px;}
.x13{left:15.480000px;}
.x22{left:16.560000px;}
.x15{left:18.720000px;}
.x14{left:19.800000px;}
.x40{left:23.940000px;}
.x29{left:25.380000px;}
.x26{left:35.460000px;}
.x25{left:39.060000px;}
.x21{left:44.100000px;}
.x2a{left:46.260000px;}
.x1b{left:55.794000px;}
.x2b{left:60.480000px;}
.x1c{left:80.670000px;}
.x5{left:108.035987px;}
.xc{left:121.355987px;}
.x6{left:122.796000px;}
.x36{left:129.096000px;}
.x2{left:131.255987px;}
.x17{left:132.336000px;}
.x16{left:135.035987px;}
.x1f{left:145.305000px;}
.x3e{left:153.945000px;}
.xe{left:161.094000px;}
.x12{left:182.385000px;}
.x3d{left:183.630000px;}
.xa{left:185.250000px;}
.x10{left:193.710000px;}
.x1e{left:210.450000px;}
.x33{left:246.270000px;}
.x2c{left:249.689987px;}
.x37{left:263.370000px;}
.x3c{left:271.290000px;}
.x41{left:273.629987px;}
.x43{left:278.174987px;}
.x35{left:284.834987px;}
.x24{left:291.675000px;}
.x2d{left:295.995000px;}
.x18{left:300.639000px;}
.x1a{left:311.835000px;}
.x3{left:314.354987px;}
.x32{left:323.894987px;}
.xf{left:332.175000px;}
.x34{left:346.395000px;}
.x1d{left:353.594987px;}
.x8{left:360.795000px;}
.x38{left:363.495000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x2e{left:397.155000px;}
.x27{left:419.655000px;}
.x19{left:441.075000px;}
.x2f{left:446.655000px;}
.x39{left:463.575000px;}
.x20{left:534.525000px;}
.x30{left:546.765000px;}
.x11{left:557.565000px;}
.x3a{left:563.865000px;}
.x31{left:647.025000px;}
.x42{left:650.264987px;}
.x3b{left:664.170000px;}
.x3f{left:734.910000px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v1{vertical-align:-11.626667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.626667pt;}
.v4{vertical-align:18.560000pt;}
.v5{vertical-align:20.480000pt;}
.v3{vertical-align:32.106667pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.305067pt;}
.ls18{letter-spacing:-0.297067pt;}
.ls9{letter-spacing:-0.194667pt;}
.ls4{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.048640pt;}
.ls11{letter-spacing:-0.046080pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000005pt;}
.ls0{letter-spacing:0.047360pt;}
.ls15{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.158933pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.173867pt;}
.ls13{letter-spacing:0.189333pt;}
.ls17{letter-spacing:0.194667pt;}
.ls1e{letter-spacing:0.252800pt;}
.ls16{letter-spacing:0.297067pt;}
.ls1d{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:1.614720pt;}
.lsd{letter-spacing:2.254720pt;}
.lsf{letter-spacing:2.846720pt;}
.lse{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:11.688960pt;}
.lsc{letter-spacing:14.414720pt;}
.lsb{letter-spacing:38.081707pt;}
.lsa{letter-spacing:56.891307pt;}
.ws19{word-spacing:-56.478933pt;}
.ws13{word-spacing:-56.320000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws12{word-spacing:-44.631040pt;}
.wsd{word-spacing:-43.991040pt;}
.ws14{word-spacing:-43.831040pt;}
.ws10{word-spacing:-43.505173pt;}
.wsf{word-spacing:-43.258560pt;}
.ws11{word-spacing:-43.233295pt;}
.ws1c{word-spacing:-42.930560pt;}
.ws1a{word-spacing:-41.804480pt;}
.ws1b{word-spacing:-41.041600pt;}
.wsc{word-spacing:-40.791040pt;}
.wse{word-spacing:-40.014933pt;}
.ws1e{word-spacing:-34.128000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.377067pt;}
.ws17{word-spacing:-14.274667pt;}
.ws7{word-spacing:-14.176000pt;}
.wsa{word-spacing:-14.080000pt;}
.wsb{word-spacing:-14.033920pt;}
.ws8{word-spacing:-13.885333pt;}
.ws18{word-spacing:-13.782933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1f{word-spacing:-12.892800pt;}
.ws1d{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.591360pt;}
.ws15{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-3.979520pt;}
._d{margin-left:-2.579840pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.113600pt;}
._15{width:2.191147pt;}
._12{width:3.792000pt;}
._17{width:4.776960pt;}
._3{width:5.814400pt;}
._2{width:6.977280pt;}
._11{width:7.887360pt;}
._10{width:9.253760pt;}
._a{width:10.312960pt;}
._13{width:11.477120pt;}
._1c{width:12.559360pt;}
._c{width:13.679787pt;}
._b{width:14.611840pt;}
._1b{width:15.561387pt;}
._7{width:16.583680pt;}
._18{width:17.840640pt;}
._16{width:18.782720pt;}
._19{width:19.884800pt;}
._6{width:20.881280pt;}
._5{width:21.993600pt;}
._1e{width:23.649280pt;}
._f{width:27.858560pt;}
._e{width:28.768640pt;}
._4{width:31.043840pt;}
._9{width:32.601600pt;}
._8{width:40.195200pt;}
._14{width:55.666560pt;}
._1d{width:173.028053pt;}
.fs4{font-size:16.000000pt;}
.fs9{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:1.920000pt;}
.y35{bottom:2.880000pt;}
.y6f{bottom:3.040000pt;}
.yfc{bottom:10.880000pt;}
.ya8{bottom:11.040000pt;}
.y6d{bottom:11.200000pt;}
.y11{bottom:12.800000pt;}
.yc1{bottom:16.000000pt;}
.y18{bottom:18.720000pt;}
.ya7{bottom:19.040000pt;}
.y6e{bottom:19.200000pt;}
.ybf{bottom:24.000000pt;}
.y34{bottom:26.080000pt;}
.yfb{bottom:27.520000pt;}
.yc0{bottom:32.160000pt;}
.y17{bottom:34.080000pt;}
.y33{bottom:40.640000pt;}
.yfa{bottom:44.160000pt;}
.yfd{bottom:44.480000pt;}
.y16{bottom:49.466667pt;}
.y32{bottom:55.200000pt;}
.y15{bottom:64.826667pt;}
.y31{bottom:69.760000pt;}
.y14{bottom:80.186667pt;}
.y30{bottom:84.320000pt;}
.y19{bottom:84.826667pt;}
.y13{bottom:93.466667pt;}
.y2f{bottom:98.880000pt;}
.y2e{bottom:113.440000pt;}
.y2d{bottom:128.040000pt;}
.y71{bottom:141.280000pt;}
.y2c{bottom:142.600000pt;}
.y95{bottom:142.906667pt;}
.y133{bottom:144.986667pt;}
.yf4{bottom:147.866667pt;}
.y118{bottom:148.986667pt;}
.y42{bottom:152.026667pt;}
.yc8{bottom:152.346667pt;}
.y2b{bottom:157.160000pt;}
.y70{bottom:157.466667pt;}
.y132{bottom:159.546667pt;}
.yf3{bottom:164.026667pt;}
.y117{bottom:165.146667pt;}
.y94{bottom:167.386667pt;}
.yc7{bottom:168.346667pt;}
.y41{bottom:168.826667pt;}
.y2a{bottom:171.720000pt;}
.y131{bottom:178.106667pt;}
.y6c{bottom:178.426667pt;}
.yf2{bottom:180.186667pt;}
.y116{bottom:181.306667pt;}
.y93{bottom:183.546667pt;}
.yc6{bottom:184.506667pt;}
.y40{bottom:185.626667pt;}
.y29{bottom:186.280000pt;}
.y130{bottom:192.666667pt;}
.yf1{bottom:196.186667pt;}
.y115{bottom:197.306667pt;}
.y3c{bottom:199.080000pt;}
.yc5{bottom:200.506667pt;}
.y28{bottom:200.840000pt;}
.y92{bottom:207.866667pt;}
.y3f{bottom:210.426667pt;}
.y6b{bottom:210.746667pt;}
.y12f{bottom:211.386667pt;}
.y114{bottom:213.466667pt;}
.y3b{bottom:214.440000pt;}
.y27{bottom:215.400000pt;}
.yc4{bottom:216.666667pt;}
.yf0{bottom:220.346667pt;}
.y12e{bottom:225.946667pt;}
.y3e{bottom:227.066667pt;}
.y113{bottom:229.626667pt;}
.y3a{bottom:229.800000pt;}
.y26{bottom:229.960000pt;}
.y91{bottom:232.506667pt;}
.yc3{bottom:232.826667pt;}
.y12d{bottom:240.506667pt;}
.y1a{bottom:241.466667pt;}
.yef{bottom:242.746667pt;}
.y25{bottom:244.520000pt;}
.y39{bottom:245.160000pt;}
.y112{bottom:245.626667pt;}
.y90{bottom:248.666667pt;}
.yc2{bottom:248.826667pt;}
.yee{bottom:258.906667pt;}
.y24{bottom:259.080000pt;}
.y38{bottom:260.520000pt;}
.y111{bottom:261.786667pt;}
.y8f{bottom:264.826667pt;}
.ybe{bottom:265.626667pt;}
.y12c{bottom:271.386667pt;}
.y23{bottom:273.800000pt;}
.yed{bottom:275.066667pt;}
.y37{bottom:275.880000pt;}
.y110{bottom:277.786667pt;}
.y3d{bottom:280.360000pt;}
.y8e{bottom:280.826667pt;}
.y22{bottom:288.360000pt;}
.y36{bottom:289.000000pt;}
.yec{bottom:291.066667pt;}
.y10f{bottom:293.946667pt;}
.y12b{bottom:296.186667pt;}
.y21{bottom:302.920000pt;}
.y8d{bottom:304.986667pt;}
.yeb{bottom:307.226667pt;}
.y10e{bottom:310.106667pt;}
.y20{bottom:317.480000pt;}
.y12a{bottom:321.146667pt;}
.yea{bottom:323.226667pt;}
.y10d{bottom:326.106667pt;}
.y8c{bottom:326.746667pt;}
.ybd{bottom:327.546667pt;}
.y1f{bottom:332.040000pt;}
.ye9{bottom:339.386667pt;}
.y10c{bottom:342.266667pt;}
.y8a{bottom:342.906667pt;}
.y129{bottom:345.786667pt;}
.y1e{bottom:346.626667pt;}
.ybc{bottom:349.146667pt;}
.ye8{bottom:356.186667pt;}
.y10b{bottom:358.266667pt;}
.y1d{bottom:361.186667pt;}
.y128{bottom:361.986667pt;}
.ybb{bottom:365.346667pt;}
.y6a{bottom:365.666667pt;}
.y1c{bottom:375.746667pt;}
.yba{bottom:381.506667pt;}
.y69{bottom:381.826667pt;}
.y10a{bottom:382.466667pt;}
.ye7{bottom:383.906667pt;}
.y127{bottom:386.146667pt;}
.y1b{bottom:388.386667pt;}
.yb9{bottom:397.506667pt;}
.y68{bottom:397.986667pt;}
.y109{bottom:403.586667pt;}
.ye6{bottom:408.066667pt;}
.y126{bottom:410.946667pt;}
.yb8{bottom:413.666667pt;}
.y67{bottom:414.146667pt;}
.ye5{bottom:424.226667pt;}
.y125{bottom:427.106667pt;}
.yb7{bottom:429.666667pt;}
.y66{bottom:430.146667pt;}
.ye4{bottom:440.226667pt;}
.y124{bottom:443.266667pt;}
.yb6{bottom:445.826667pt;}
.y65{bottom:446.306667pt;}
.ye3{bottom:456.386667pt;}
.y123{bottom:459.266667pt;}
.yb5{bottom:461.986667pt;}
.y64{bottom:462.306667pt;}
.ye2{bottom:472.546667pt;}
.y122{bottom:475.426667pt;}
.yb4{bottom:477.986667pt;}
.y63{bottom:478.466667pt;}
.ye1{bottom:488.546667pt;}
.y121{bottom:491.586667pt;}
.yb3{bottom:494.146667pt;}
.y62{bottom:502.626667pt;}
.ye0{bottom:504.706667pt;}
.y120{bottom:507.586667pt;}
.yb2{bottom:510.146667pt;}
.y150{bottom:516.706667pt;}
.ydf{bottom:520.866667pt;}
.y11f{bottom:523.746667pt;}
.yb1{bottom:526.306667pt;}
.y61{bottom:527.426667pt;}
.y89{bottom:529.986667pt;}
.y12{bottom:536.386667pt;}
.yde{bottom:536.866667pt;}
.y14f{bottom:538.306667pt;}
.y11e{bottom:539.746667pt;}
.yb0{bottom:542.466667pt;}
.y88{bottom:546.146667pt;}
.y14e{bottom:552.866667pt;}
.ydd{bottom:553.026667pt;}
.y11d{bottom:555.906667pt;}
.yaf{bottom:558.466667pt;}
.y60{bottom:560.386667pt;}
.y87{bottom:562.146667pt;}
.ydc{bottom:569.026667pt;}
.y14d{bottom:571.586667pt;}
.y11c{bottom:572.066667pt;}
.yae{bottom:574.626667pt;}
.y5f{bottom:577.346667pt;}
.y86{bottom:586.173333pt;}
.yad{bottom:590.813333pt;}
.y5e{bottom:594.333333pt;}
.y11b{bottom:596.253333pt;}
.y14c{bottom:600.733333pt;}
.y85{bottom:602.333333pt;}
.yac{bottom:606.813333pt;}
.ydb{bottom:606.973333pt;}
.y5d{bottom:611.133333pt;}
.y84{bottom:618.493333pt;}
.y14b{bottom:619.293333pt;}
.yab{bottom:622.973333pt;}
.y5c{bottom:627.933333pt;}
.y14a{bottom:633.853333pt;}
.y10{bottom:635.613333pt;}
.y11a{bottom:637.053333pt;}
.yaa{bottom:638.973333pt;}
.yda{bottom:639.133333pt;}
.y83{bottom:642.493333pt;}
.y5b{bottom:644.893333pt;}
.y108{bottom:651.613333pt;}
.y149{bottom:652.413333pt;}
.ya9{bottom:655.133333pt;}
.yd9{bottom:655.293333pt;}
.y119{bottom:658.013333pt;}
.y82{bottom:658.653333pt;}
.y5a{bottom:661.693333pt;}
.y148{bottom:666.973333pt;}
.y107{bottom:667.773333pt;}
.yd8{bottom:671.293333pt;}
.ya6{bottom:671.933333pt;}
.yf{bottom:675.133333pt;}
.y59{bottom:678.653333pt;}
.y147{bottom:681.533333pt;}
.y81{bottom:682.813333pt;}
.y106{bottom:683.773333pt;}
.yd7{bottom:687.453333pt;}
.ye{bottom:690.493333pt;}
.y58{bottom:695.453333pt;}
.y80{bottom:698.973333pt;}
.y105{bottom:699.933333pt;}
.y146{bottom:700.093333pt;}
.yd6{bottom:703.613333pt;}
.ya5{bottom:704.733333pt;}
.yd{bottom:705.693333pt;}
.y57{bottom:712.413333pt;}
.y145{bottom:714.653333pt;}
.y104{bottom:715.933333pt;}
.yd5{bottom:719.613333pt;}
.yc{bottom:721.053333pt;}
.y7f{bottom:722.973333pt;}
.ya4{bottom:724.573333pt;}
.y103{bottom:732.093333pt;}
.y56{bottom:733.053333pt;}
.y144{bottom:733.213333pt;}
.yd4{bottom:735.773333pt;}
.yb{bottom:736.413333pt;}
.y7e{bottom:747.133333pt;}
.y143{bottom:747.773333pt;}
.ya3{bottom:748.573333pt;}
.y55{bottom:750.013333pt;}
.ya{bottom:751.773333pt;}
.y102{bottom:756.253333pt;}
.ya2{bottom:764.733333pt;}
.y142{bottom:766.333333pt;}
.y54{bottom:766.973333pt;}
.yd3{bottom:767.933333pt;}
.y7d{bottom:771.933333pt;}
.ya1{bottom:780.893333pt;}
.y101{bottom:781.053333pt;}
.y53{bottom:783.773333pt;}
.yd2{bottom:784.093333pt;}
.y9{bottom:786.653333pt;}
.y7c{bottom:788.093333pt;}
.y141{bottom:795.453333pt;}
.ya0{bottom:796.893333pt;}
.y100{bottom:797.213333pt;}
.yd1{bottom:800.133333pt;}
.y52{bottom:800.773333pt;}
.y7b{bottom:804.133333pt;}
.y9f{bottom:813.093333pt;}
.yff{bottom:813.253333pt;}
.y140{bottom:814.053333pt;}
.yd0{bottom:816.933333pt;}
.y51{bottom:817.573333pt;}
.y8{bottom:821.093333pt;}
.y7a{bottom:828.293333pt;}
.y13f{bottom:828.613333pt;}
.y9e{bottom:829.253333pt;}
.yfe{bottom:829.413333pt;}
.y50{bottom:834.373333pt;}
.y7{bottom:839.493333pt;}
.y9d{bottom:845.253333pt;}
.y13e{bottom:847.173333pt;}
.yf9{bottom:850.533333pt;}
.y4f{bottom:851.333333pt;}
.y79{bottom:852.613333pt;}
.y6{bottom:857.893333pt;}
.ycf{bottom:860.773333pt;}
.y9c{bottom:861.413333pt;}
.y13d{bottom:861.733333pt;}
.y4e{bottom:868.133333pt;}
.y78{bottom:877.093333pt;}
.y9b{bottom:877.573333pt;}
.y13c{bottom:880.293333pt;}
.yce{bottom:882.533333pt;}
.y4d{bottom:885.093333pt;}
.y5{bottom:892.293333pt;}
.y9a{bottom:893.573333pt;}
.y13b{bottom:894.853333pt;}
.ycd{bottom:898.693333pt;}
.y77{bottom:901.573333pt;}
.y4c{bottom:905.733333pt;}
.y13a{bottom:913.413333pt;}
.ycc{bottom:914.693333pt;}
.y76{bottom:917.733333pt;}
.y4b{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.yf8{bottom:927.013333pt;}
.y139{bottom:927.973333pt;}
.ycb{bottom:930.853333pt;}
.y4a{bottom:939.653333pt;}
.y75{bottom:941.893333pt;}
.y99{bottom:942.693333pt;}
.yf7{bottom:943.173333pt;}
.y138{bottom:946.533333pt;}
.yca{bottom:947.013333pt;}
.y49{bottom:956.453333pt;}
.yf6{bottom:959.333333pt;}
.y137{bottom:961.093333pt;}
.yc9{bottom:963.653333pt;}
.y74{bottom:966.693333pt;}
.y98{bottom:967.333333pt;}
.y48{bottom:973.413333pt;}
.yf5{bottom:975.493333pt;}
.y136{bottom:975.653333pt;}
.y97{bottom:983.493333pt;}
.y47{bottom:990.213333pt;}
.y73{bottom:991.493333pt;}
.y135{bottom:994.213333pt;}
.y46{bottom:1007.013333pt;}
.y96{bottom:1007.493333pt;}
.y72{bottom:1007.653333pt;}
.y134{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hb{height:15.695312pt;}
.h19{height:16.000000pt;}
.h1c{height:16.032000pt;}
.h17{height:16.160000pt;}
.h1a{height:16.192000pt;}
.h18{height:32.160000pt;}
.h14{height:32.320000pt;}
.h8{height:36.000000pt;}
.h1d{height:39.325000pt;}
.h11{height:41.112500pt;}
.h1f{height:47.465000pt;}
.he{height:49.597187pt;}
.h21{height:49.621875pt;}
.hc{height:52.108438pt;}
.h5{height:52.134375pt;}
.h7{height:53.535000pt;}
.h20{height:54.460625pt;}
.h12{height:55.275000pt;}
.h2{height:57.787500pt;}
.h15{height:57.888085pt;}
.h1b{height:58.080000pt;}
.h9{height:59.340000pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1e{height:65.600000pt;}
.h3{height:85.785000pt;}
.ha{height:97.312000pt;}
.h10{height:136.303125pt;}
.h13{height:144.000000pt;}
.h16{height:176.026667pt;}
.hf{height:292.826667pt;}
.hd{height:392.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w12{width:44.000000pt;}
.w1a{width:44.800000pt;}
.wd{width:72.192000pt;}
.w17{width:88.960000pt;}
.w13{width:88.992000pt;}
.w14{width:89.120000pt;}
.w15{width:89.152000pt;}
.w11{width:89.920000pt;}
.wf{width:102.112000pt;}
.we{width:113.760000pt;}
.w16{width:119.360000pt;}
.wc{width:132.032000pt;}
.w10{width:133.312000pt;}
.w18{width:155.866667pt;}
.w6{width:199.226667pt;}
.w7{width:200.346667pt;}
.w8{width:202.426667pt;}
.w3{width:211.546667pt;}
.w9{width:274.426667pt;}
.wa{width:284.386667pt;}
.wb{width:288.066667pt;}
.w5{width:361.666667pt;}
.w19{width:490.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x28{left:9.280000pt;}
.x23{left:10.880000pt;}
.x13{left:13.760000pt;}
.x22{left:14.720000pt;}
.x15{left:16.640000pt;}
.x14{left:17.600000pt;}
.x40{left:21.280000pt;}
.x29{left:22.560000pt;}
.x26{left:31.520000pt;}
.x25{left:34.720000pt;}
.x21{left:39.200000pt;}
.x2a{left:41.120000pt;}
.x1b{left:49.594667pt;}
.x2b{left:53.760000pt;}
.x1c{left:71.706667pt;}
.x5{left:96.031988pt;}
.xc{left:107.871988pt;}
.x6{left:109.152000pt;}
.x36{left:114.752000pt;}
.x2{left:116.671988pt;}
.x17{left:117.632000pt;}
.x16{left:120.031988pt;}
.x1f{left:129.160000pt;}
.x3e{left:136.840000pt;}
.xe{left:143.194667pt;}
.x12{left:162.120000pt;}
.x3d{left:163.226667pt;}
.xa{left:164.666667pt;}
.x10{left:172.186667pt;}
.x1e{left:187.066667pt;}
.x33{left:218.906667pt;}
.x2c{left:221.946655pt;}
.x37{left:234.106667pt;}
.x3c{left:241.146667pt;}
.x41{left:243.226655pt;}
.x43{left:247.266655pt;}
.x35{left:253.186655pt;}
.x24{left:259.266667pt;}
.x2d{left:263.106667pt;}
.x18{left:267.234667pt;}
.x1a{left:277.186667pt;}
.x3{left:279.426655pt;}
.x32{left:287.906655pt;}
.xf{left:295.266667pt;}
.x34{left:307.906667pt;}
.x1d{left:314.306655pt;}
.x8{left:320.706667pt;}
.x38{left:323.106667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x2e{left:353.026667pt;}
.x27{left:373.026667pt;}
.x19{left:392.066667pt;}
.x2f{left:397.026667pt;}
.x39{left:412.066667pt;}
.x20{left:475.133333pt;}
.x30{left:486.013333pt;}
.x11{left:495.613333pt;}
.x3a{left:501.213333pt;}
.x31{left:575.133333pt;}
.x42{left:578.013322pt;}
.x3b{left:590.373333pt;}
.x3f{left:653.253333pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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