
    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_183fbeb3e2808eecbd3d8130.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_ed96be7378e8e31159f62950.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ab1568a9fbcab9d959764cc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8b031904ddf505bffdbd575a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fb2801ca3f0439f4f6be94b0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_372773fb49e638dd524e5cda.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;}
.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:-68.400000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-61.200000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-23.760000px;}
.vb{vertical-align:-20.880000px;}
.v9{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:20.880000px;}
.v8{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls20{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.972000px;}
.ls14{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.756000px;}
.ls12{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.594000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.lsf{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.ls18{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls25{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.738000px;}
.ls1b{letter-spacing:0.792000px;}
.ls22{letter-spacing:1.620000px;}
.ls26{letter-spacing:2.340000px;}
.ls2b{letter-spacing:2.988000px;}
.ls15{letter-spacing:3.780000px;}
.ls5{letter-spacing:14.580000px;}
.ls4{letter-spacing:18.180000px;}
.ls2a{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls2{letter-spacing:66.420000px;}
.ls16{letter-spacing:95.220000px;}
.ls0{letter-spacing:154.980000px;}
.ls1d{letter-spacing:491.340000px;}
.ls11{letter-spacing:1220.160000px;}
.ls1e{letter-spacing:1281.360000px;}
.ls7{letter-spacing:1367.040000px;}
.ls27{letter-spacing:1411.080000px;}
.ls10{letter-spacing:1593.960000px;}
.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;}
}
.ws1d{word-spacing:-24.300000px;}
.wsc{word-spacing:-23.976000px;}
.ws6{word-spacing:-20.304000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.580000px;}
.ws21{word-spacing:-14.238000px;}
.ws3{word-spacing:-14.220000px;}
.ws1a{word-spacing:-14.202000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.wsb{word-spacing:-13.860000px;}
.ws1e{word-spacing:-13.716000px;}
.ws18{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.482000px;}
.ws12{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.374000px;}
.wsd{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws1b{word-spacing:-12.996000px;}
.ws15{word-spacing:-12.906000px;}
.ws22{word-spacing:-12.888000px;}
.ws13{word-spacing:-12.672000px;}
.ws19{word-spacing:-12.528000px;}
.ws20{word-spacing:-12.060000px;}
.ws7{word-spacing:-10.440000px;}
.ws17{word-spacing:-9.792000px;}
.ws1c{word-spacing:-9.072000px;}
.ws8{word-spacing:-9.000000px;}
.ws1f{word-spacing:-7.560000px;}
.wsf{word-spacing:0.000000px;}
._1{margin-left:-2.562960px;}
._0{margin-left:-1.248000px;}
._2{width:1.584240px;}
._7{width:3.066240px;}
._8{width:4.140960px;}
._c{width:5.276880px;}
._5{width:6.318000px;}
._6{width:7.493760px;}
._e{width:8.922240px;}
._d{width:10.422000px;}
._f{width:12.340560px;}
._b{width:15.228000px;}
._9{width:17.928000px;}
._a{width:19.854000px;}
._12{width:42.948000px;}
._13{width:468.408000px;}
._11{width:693.875760px;}
._10{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fsd{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:2.865000px;}
.yac{bottom:2.880000px;}
.yf9{bottom:2.910000px;}
.yfd{bottom:3.045000px;}
.y101{bottom:3.052500px;}
.ye8{bottom:3.060000px;}
.y104{bottom:3.090000px;}
.yae{bottom:3.240000px;}
.yc8{bottom:3.270000px;}
.yb0{bottom:3.420000px;}
.yf7{bottom:16.725000px;}
.yfc{bottom:16.905000px;}
.y100{bottom:16.912500px;}
.y106{bottom:16.920000px;}
.y103{bottom:16.950000px;}
.yc4{bottom:18.360000px;}
.ye6{bottom:18.570000px;}
.yea{bottom:18.720000px;}
.yee{bottom:18.900000px;}
.yc7{bottom:18.930000px;}
.yfb{bottom:30.585000px;}
.ye5{bottom:34.050000px;}
.yed{bottom:34.380000px;}
.y2{bottom:57.996000px;}
.y1{bottom:76.896000px;}
.yd3{bottom:96.696000px;}
.ya9{bottom:101.016000px;}
.y12d{bottom:101.556000px;}
.y38{bottom:103.176000px;}
.y6b{bottom:107.136000px;}
.yff{bottom:107.683500px;}
.yd2{bottom:111.816000px;}
.ya8{bottom:116.496000px;}
.y12c{bottom:117.036000px;}
.y37{bottom:118.836000px;}
.y6a{bottom:122.616000px;}
.yd1{bottom:124.596000px;}
.ya7{bottom:131.976000px;}
.y12b{bottom:132.696000px;}
.y36{bottom:134.496000px;}
.y69{bottom:138.096000px;}
.ya6{bottom:147.276000px;}
.y12a{bottom:148.176000px;}
.y35{bottom:150.330000px;}
.yfe{bottom:150.885000px;}
.y68{bottom:153.570000px;}
.y129{bottom:163.650000px;}
.y34{bottom:165.810000px;}
.y67{bottom:169.230000px;}
.ya5{bottom:178.410000px;}
.y128{bottom:179.130000px;}
.y33{bottom:181.470000px;}
.y66{bottom:184.710000px;}
.yfa{bottom:194.085000px;}
.ya4{bottom:194.430000px;}
.y127{bottom:194.790000px;}
.y32{bottom:196.950000px;}
.y65{bottom:200.010000px;}
.ya3{bottom:209.910000px;}
.y126{bottom:210.270000px;}
.y31{bottom:212.430000px;}
.y64{bottom:215.670000px;}
.ya2{bottom:225.390000px;}
.y125{bottom:225.750000px;}
.y30{bottom:228.090000px;}
.y63{bottom:231.510000px;}
.yf5{bottom:237.285000px;}
.ya1{bottom:241.050000px;}
.y124{bottom:241.230000px;}
.y2f{bottom:243.570000px;}
.y62{bottom:246.990000px;}
.ya0{bottom:256.530000px;}
.y123{bottom:256.890000px;}
.y2e{bottom:259.050000px;}
.y61{bottom:262.650000px;}
.y9f{bottom:272.010000px;}
.y122{bottom:272.190000px;}
.y2d{bottom:274.710000px;}
.y60{bottom:278.130000px;}
.yf8{bottom:280.485000px;}
.y9e{bottom:287.715000px;}
.y2c{bottom:290.235000px;}
.y5f{bottom:293.835000px;}
.y9d{bottom:303.195000px;}
.y121{bottom:303.735000px;}
.y2b{bottom:305.715000px;}
.y5e{bottom:308.955000px;}
.y9c{bottom:318.675000px;}
.y120{bottom:319.215000px;}
.y2a{bottom:321.375000px;}
.y5d{bottom:324.615000px;}
.yf4{bottom:327.135000px;}
.y9b{bottom:334.155000px;}
.y11f{bottom:334.695000px;}
.y29{bottom:336.855000px;}
.y5c{bottom:340.635000px;}
.yf3{bottom:342.795000px;}
.y9a{bottom:349.815000px;}
.y11e{bottom:350.355000px;}
.y28{bottom:352.515000px;}
.y5b{bottom:356.115000px;}
.yf2{bottom:357.915000px;}
.y99{bottom:365.295000px;}
.y11d{bottom:365.835000px;}
.yf1{bottom:371.235000px;}
.y5a{bottom:371.595000px;}
.y98{bottom:380.775000px;}
.y11c{bottom:381.315000px;}
.y27{bottom:383.295000px;}
.yd0{bottom:386.535000px;}
.y59{bottom:387.255000px;}
.yf0{bottom:388.875000px;}
.y97{bottom:396.435000px;}
.y11b{bottom:396.795000px;}
.ycf{bottom:402.195000px;}
.y58{bottom:402.375000px;}
.y96{bottom:411.915000px;}
.y11a{bottom:412.455000px;}
.y26{bottom:414.255000px;}
.yce{bottom:417.675000px;}
.y57{bottom:418.035000px;}
.yef{bottom:420.735000px;}
.y95{bottom:427.575000px;}
.y119{bottom:427.935000px;}
.y25{bottom:432.435000px;}
.ycd{bottom:433.335000px;}
.y56{bottom:434.055000px;}
.y94{bottom:443.055000px;}
.y118{bottom:443.415000px;}
.ycc{bottom:446.295000px;}
.y55{bottom:449.535000px;}
.yec{bottom:452.415000px;}
.y93{bottom:458.535000px;}
.y117{bottom:459.075000px;}
.y24{bottom:461.415000px;}
.y54{bottom:465.195000px;}
.y92{bottom:474.195000px;}
.y116{bottom:474.555000px;}
.ycb{bottom:478.515000px;}
.y23{bottom:479.775000px;}
.y53{bottom:480.675000px;}
.y91{bottom:489.315000px;}
.y115{bottom:490.035000px;}
.y22{bottom:495.255000px;}
.y52{bottom:495.975000px;}
.yeb{bottom:499.755000px;}
.y90{bottom:504.975000px;}
.y114{bottom:505.695000px;}
.yca{bottom:510.195000px;}
.y21{bottom:510.735000px;}
.ye9{bottom:517.395000px;}
.y8f{bottom:520.635000px;}
.y113{bottom:521.175000px;}
.y20{bottom:526.215000px;}
.y51{bottom:527.475000px;}
.yc9{bottom:530.895000px;}
.y8e{bottom:536.475000px;}
.y112{bottom:536.655000px;}
.y1f{bottom:541.875000px;}
.y50{bottom:542.955000px;}
.ye4{bottom:549.075000px;}
.y8d{bottom:551.955000px;}
.y111{bottom:552.315000px;}
.y1e{bottom:557.355000px;}
.y4f{bottom:558.435000px;}
.yc6{bottom:562.755000px;}
.ye7{bottom:566.745000px;}
.y8c{bottom:567.465000px;}
.y110{bottom:567.825000px;}
.y1d{bottom:572.865000px;}
.y4e{bottom:574.125000px;}
.y8b{bottom:583.125000px;}
.y10f{bottom:583.305000px;}
.y1c{bottom:588.345000px;}
.y4d{bottom:589.785000px;}
.yc3{bottom:595.365000px;}
.y8a{bottom:598.605000px;}
.y10e{bottom:598.785000px;}
.ye3{bottom:601.845000px;}
.y1b{bottom:604.005000px;}
.y4c{bottom:604.905000px;}
.y89{bottom:614.085000px;}
.y10d{bottom:614.445000px;}
.y4b{bottom:620.925000px;}
.y1a{bottom:626.145000px;}
.yc5{bottom:626.325000px;}
.y88{bottom:629.565000px;}
.y10c{bottom:629.925000px;}
.ye2{bottom:632.985000px;}
.y87{bottom:645.225000px;}
.y10b{bottom:645.405000px;}
.ye1{bottom:648.465000px;}
.y4a{bottom:652.065000px;}
.y19{bottom:652.785000px;}
.y86{bottom:660.705000px;}
.y10a{bottom:661.065000px;}
.ye0{bottom:664.125000px;}
.y49{bottom:667.725000px;}
.yc2{bottom:673.665000px;}
.y18{bottom:675.465000px;}
.y85{bottom:676.185000px;}
.ydf{bottom:679.605000px;}
.y48{bottom:683.385000px;}
.yc1{bottom:689.325000px;}
.y17{bottom:690.945000px;}
.y84{bottom:691.665000px;}
.y109{bottom:692.205000px;}
.yde{bottom:695.085000px;}
.y47{bottom:695.805000px;}
.y108{bottom:704.625000px;}
.yc0{bottom:704.805000px;}
.y16{bottom:706.605000px;}
.y83{bottom:707.325000px;}
.ydd{bottom:710.565000px;}
.ybf{bottom:720.285000px;}
.y82{bottom:722.625000px;}
.ydc{bottom:726.045000px;}
.y81{bottom:738.105000px;}
.y15{bottom:741.165000px;}
.ydb{bottom:741.705000px;}
.ybe{bottom:753.585000px;}
.y80{bottom:754.125000px;}
.yda{bottom:757.185000px;}
.y14{bottom:762.585000px;}
.ybd{bottom:769.065000px;}
.y7f{bottom:769.605000px;}
.yd9{bottom:772.665000px;}
.ybc{bottom:785.085000px;}
.y7e{bottom:785.265000px;}
.yd8{bottom:788.325000px;}
.y13{bottom:793.725000px;}
.ybb{bottom:800.565000px;}
.y7d{bottom:800.745000px;}
.y13d{bottom:801.645000px;}
.yd7{bottom:803.625000px;}
.yba{bottom:816.045000px;}
.y7c{bottom:816.225000px;}
.y13c{bottom:817.125000px;}
.y12{bottom:817.485000px;}
.yd6{bottom:819.105000px;}
.y11{bottom:824.505000px;}
.y7b{bottom:831.525000px;}
.yb9{bottom:831.705000px;}
.y13b{bottom:832.605000px;}
.yd5{bottom:834.765000px;}
.y7a{bottom:847.185000px;}
.y13a{bottom:848.130000px;}
.y10{bottom:850.110000px;}
.yd4{bottom:850.830000px;}
.yb8{bottom:862.890000px;}
.y79{bottom:863.070000px;}
.y139{bottom:863.790000px;}
.yb7{bottom:878.370000px;}
.y78{bottom:878.730000px;}
.y138{bottom:879.270000px;}
.yf{bottom:889.170000px;}
.yb6{bottom:894.030000px;}
.y77{bottom:894.210000px;}
.y137{bottom:894.750000px;}
.yb5{bottom:909.150000px;}
.y76{bottom:909.870000px;}
.y136{bottom:910.230000px;}
.ye{bottom:913.290000px;}
.y75{bottom:924.990000px;}
.y135{bottom:925.890000px;}
.y74{bottom:940.650000px;}
.y134{bottom:941.370000px;}
.yb4{bottom:955.950000px;}
.yd{bottom:956.670000px;}
.y133{bottom:956.850000px;}
.yb3{bottom:969.270000px;}
.y73{bottom:972.150000px;}
.y132{bottom:972.330000px;}
.y46{bottom:987.450000px;}
.y72{bottom:987.630000px;}
.y131{bottom:987.990000px;}
.yb2{bottom:992.490000px;}
.y45{bottom:1003.290000px;}
.y130{bottom:1003.470000px;}
.yb1{bottom:1015.710000px;}
.yc{bottom:1016.070000px;}
.y71{bottom:1018.410000px;}
.y44{bottom:1018.770000px;}
.y12f{bottom:1018.950000px;}
.y9{bottom:1034.070000px;}
.y43{bottom:1034.430000px;}
.yaf{bottom:1038.930000px;}
.yb{bottom:1039.290000px;}
.y42{bottom:1049.910000px;}
.y12e{bottom:1050.090000px;}
.y8{bottom:1057.290000px;}
.yad{bottom:1062.330000px;}
.y41{bottom:1065.390000px;}
.y70{bottom:1065.570000px;}
.ya{bottom:1071.330000px;}
.y107{bottom:1072.410000px;}
.y40{bottom:1080.870000px;}
.y6f{bottom:1081.050000px;}
.y105{bottom:1085.370000px;}
.yab{bottom:1085.550000px;}
.y7{bottom:1086.630000px;}
.y3f{bottom:1096.530000px;}
.y6{bottom:1105.710000px;}
.y3e{bottom:1111.830000px;}
.y6e{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y3d{bottom:1127.310000px;}
.y6d{bottom:1127.670000px;}
.y102{bottom:1128.570000px;}
.y4{bottom:1140.300000px;}
.y3c{bottom:1143.000000px;}
.y6c{bottom:1143.360000px;}
.y3{bottom:1158.300000px;}
.y3b{bottom:1158.660000px;}
.yaa{bottom:1158.840000px;}
.y3a{bottom:1175.220000px;}
.y39{bottom:1193.760000px;}
.hc{height:12.335625px;}
.h21{height:16.905000px;}
.h20{height:16.950000px;}
.h1b{height:19.965000px;}
.h15{height:22.485000px;}
.h17{height:27.720000px;}
.h18{height:30.240000px;}
.h1c{height:30.945000px;}
.h1f{height:30.960000px;}
.h1a{height:31.125000px;}
.h1d{height:31.485000px;}
.h19{height:31.710000px;}
.hd{height:35.314453px;}
.h11{height:38.158594px;}
.h25{height:42.465000px;}
.h27{height:42.472500px;}
.h24{height:42.501000px;}
.h28{height:42.510000px;}
.h22{height:46.605000px;}
.h12{height:47.344922px;}
.h7{height:48.616875px;}
.h1e{height:48.630000px;}
.h26{height:50.558906px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.hf{height:54.421875px;}
.h29{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h16{height:58.680000px;}
.h14{height:59.092031px;}
.h4{height:60.226875px;}
.h10{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.hb{height:72.326250px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h23{height:85.701000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wc{width:35.265000px;}
.w14{width:51.645000px;}
.w1d{width:52.005000px;}
.w5{width:63.180000px;}
.wa{width:63.540000px;}
.w16{width:84.441000px;}
.w1c{width:86.940000px;}
.w19{width:91.281000px;}
.w9{width:93.090000px;}
.w1a{width:95.205000px;}
.w18{width:95.256000px;}
.w17{width:95.400000px;}
.w1b{width:95.430000px;}
.w13{width:96.514500px;}
.w8{width:103.341000px;}
.wf{width:104.436000px;}
.w10{width:114.501000px;}
.w2{width:131.962500px;}
.w7{width:137.916000px;}
.w4{width:147.801000px;}
.wd{width:156.435000px;}
.w11{width:156.450000px;}
.w6{width:335.085000px;}
.we{width:376.125000px;}
.w3{width:510.585000px;}
.wb{width:547.155000px;}
.w12{width:568.575000px;}
.w15{width:646.155000px;}
.w1e{width:795.418500px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x21{left:8.130000px;}
.x2c{left:10.065000px;}
.x37{left:11.145000px;}
.x48{left:12.238500px;}
.x1e{left:13.500000px;}
.x49{left:14.580000px;}
.x2d{left:15.645000px;}
.x4b{left:16.740000px;}
.x1d{left:17.820000px;}
.x24{left:20.880000px;}
.x4a{left:23.025000px;}
.x39{left:25.020000px;}
.x3b{left:26.625000px;}
.x40{left:27.885000px;}
.x2{left:30.060000px;}
.x3a{left:33.150000px;}
.x27{left:35.460000px;}
.x43{left:37.290000px;}
.x18{left:39.583500px;}
.x34{left:40.665000px;}
.x16{left:41.923500px;}
.x1b{left:43.005000px;}
.x14{left:44.083500px;}
.xd{left:46.800000px;}
.x25{left:48.960000px;}
.xc{left:51.300000px;}
.x3d{left:55.261500px;}
.x36{left:58.320000px;}
.x38{left:68.070000px;}
.x51{left:74.340000px;}
.x2f{left:76.710000px;}
.x9{left:79.416000px;}
.x20{left:90.570000px;}
.x31{left:97.230000px;}
.x50{left:101.376000px;}
.x17{left:128.880000px;}
.x15{left:129.960000px;}
.x11{left:131.626500px;}
.x3e{left:152.505000px;}
.x2b{left:168.885000px;}
.x1a{left:179.505000px;}
.x32{left:186.510000px;}
.x2e{left:204.525000px;}
.xb{left:218.550000px;}
.x13{left:224.670000px;}
.x26{left:231.540000px;}
.x5{left:244.155000px;}
.x3f{left:250.800000px;}
.x12{left:263.955000px;}
.x3{left:270.255000px;}
.x41{left:289.335000px;}
.x4{left:290.595000px;}
.xa{left:317.235000px;}
.x4d{left:319.215000px;}
.x1c{left:328.035000px;}
.x10{left:337.575000px;}
.x2a{left:342.795000px;}
.x3c{left:350.175000px;}
.x19{left:359.175000px;}
.x30{left:361.335000px;}
.x42{left:385.095000px;}
.x1f{left:391.575000px;}
.xe{left:412.485000px;}
.x4f{left:430.845000px;}
.x1{left:440.745000px;}
.x8{left:449.205000px;}
.x33{left:466.140000px;}
.x4e{left:476.205000px;}
.x6{left:478.905000px;}
.x44{left:480.720000px;}
.x7{left:506.445000px;}
.x22{left:529.860000px;}
.xf{left:561.750000px;}
.x28{left:567.330000px;}
.x45{left:572.370000px;}
.x35{left:581.010000px;}
.x29{left:586.950000px;}
.x4c{left:627.450000px;}
.x23{left:633.570000px;}
.x46{left:667.950000px;}
.x47{left:763.740000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-54.400000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-21.120000pt;}
.vb{vertical-align:-18.560000pt;}
.v9{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:18.560000pt;}
.v8{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.864000pt;}
.ls14{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.672000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.528000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.ls18{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls25{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.656000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls22{letter-spacing:1.440000pt;}
.ls26{letter-spacing:2.080000pt;}
.ls2b{letter-spacing:2.656000pt;}
.ls15{letter-spacing:3.360000pt;}
.ls5{letter-spacing:12.960000pt;}
.ls4{letter-spacing:16.160000pt;}
.ls2a{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls16{letter-spacing:84.640000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1d{letter-spacing:436.746667pt;}
.ls11{letter-spacing:1084.586667pt;}
.ls1e{letter-spacing:1138.986667pt;}
.ls7{letter-spacing:1215.146667pt;}
.ls27{letter-spacing:1254.293333pt;}
.ls10{letter-spacing:1416.853333pt;}
.ws1d{word-spacing:-21.600000pt;}
.wsc{word-spacing:-21.312000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws21{word-spacing:-12.656000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws1a{word-spacing:-12.624000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.wsb{word-spacing:-12.320000pt;}
.ws1e{word-spacing:-12.192000pt;}
.ws18{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.984000pt;}
.ws12{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.888000pt;}
.wsd{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.552000pt;}
.ws15{word-spacing:-11.472000pt;}
.ws22{word-spacing:-11.456000pt;}
.ws13{word-spacing:-11.264000pt;}
.ws19{word-spacing:-11.136000pt;}
.ws20{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws17{word-spacing:-8.704000pt;}
.ws1c{word-spacing:-8.064000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws1f{word-spacing:-6.720000pt;}
.wsf{word-spacing:0.000000pt;}
._1{margin-left:-2.278187pt;}
._0{margin-left:-1.109333pt;}
._2{width:1.408213pt;}
._7{width:2.725547pt;}
._8{width:3.680853pt;}
._c{width:4.690560pt;}
._5{width:5.616000pt;}
._6{width:6.661120pt;}
._e{width:7.930880pt;}
._d{width:9.264000pt;}
._f{width:10.969387pt;}
._b{width:13.536000pt;}
._9{width:15.936000pt;}
._a{width:17.648000pt;}
._12{width:38.176000pt;}
._13{width:416.362667pt;}
._11{width:616.778453pt;}
._10{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fsd{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:2.546667pt;}
.yac{bottom:2.560000pt;}
.yf9{bottom:2.586667pt;}
.yfd{bottom:2.706667pt;}
.y101{bottom:2.713333pt;}
.ye8{bottom:2.720000pt;}
.y104{bottom:2.746667pt;}
.yae{bottom:2.880000pt;}
.yc8{bottom:2.906667pt;}
.yb0{bottom:3.040000pt;}
.yf7{bottom:14.866667pt;}
.yfc{bottom:15.026667pt;}
.y100{bottom:15.033333pt;}
.y106{bottom:15.040000pt;}
.y103{bottom:15.066667pt;}
.yc4{bottom:16.320000pt;}
.ye6{bottom:16.506667pt;}
.yea{bottom:16.640000pt;}
.yee{bottom:16.800000pt;}
.yc7{bottom:16.826667pt;}
.yfb{bottom:27.186667pt;}
.ye5{bottom:30.266667pt;}
.yed{bottom:30.560000pt;}
.y2{bottom:51.552000pt;}
.y1{bottom:68.352000pt;}
.yd3{bottom:85.952000pt;}
.ya9{bottom:89.792000pt;}
.y12d{bottom:90.272000pt;}
.y38{bottom:91.712000pt;}
.y6b{bottom:95.232000pt;}
.yff{bottom:95.718667pt;}
.yd2{bottom:99.392000pt;}
.ya8{bottom:103.552000pt;}
.y12c{bottom:104.032000pt;}
.y37{bottom:105.632000pt;}
.y6a{bottom:108.992000pt;}
.yd1{bottom:110.752000pt;}
.ya7{bottom:117.312000pt;}
.y12b{bottom:117.952000pt;}
.y36{bottom:119.552000pt;}
.y69{bottom:122.752000pt;}
.ya6{bottom:130.912000pt;}
.y12a{bottom:131.712000pt;}
.y35{bottom:133.626667pt;}
.yfe{bottom:134.120000pt;}
.y68{bottom:136.506667pt;}
.y129{bottom:145.466667pt;}
.y34{bottom:147.386667pt;}
.y67{bottom:150.426667pt;}
.ya5{bottom:158.586667pt;}
.y128{bottom:159.226667pt;}
.y33{bottom:161.306667pt;}
.y66{bottom:164.186667pt;}
.yfa{bottom:172.520000pt;}
.ya4{bottom:172.826667pt;}
.y127{bottom:173.146667pt;}
.y32{bottom:175.066667pt;}
.y65{bottom:177.786667pt;}
.ya3{bottom:186.586667pt;}
.y126{bottom:186.906667pt;}
.y31{bottom:188.826667pt;}
.y64{bottom:191.706667pt;}
.ya2{bottom:200.346667pt;}
.y125{bottom:200.666667pt;}
.y30{bottom:202.746667pt;}
.y63{bottom:205.786667pt;}
.yf5{bottom:210.920000pt;}
.ya1{bottom:214.266667pt;}
.y124{bottom:214.426667pt;}
.y2f{bottom:216.506667pt;}
.y62{bottom:219.546667pt;}
.ya0{bottom:228.026667pt;}
.y123{bottom:228.346667pt;}
.y2e{bottom:230.266667pt;}
.y61{bottom:233.466667pt;}
.y9f{bottom:241.786667pt;}
.y122{bottom:241.946667pt;}
.y2d{bottom:244.186667pt;}
.y60{bottom:247.226667pt;}
.yf8{bottom:249.320000pt;}
.y9e{bottom:255.746667pt;}
.y2c{bottom:257.986667pt;}
.y5f{bottom:261.186667pt;}
.y9d{bottom:269.506667pt;}
.y121{bottom:269.986667pt;}
.y2b{bottom:271.746667pt;}
.y5e{bottom:274.626667pt;}
.y9c{bottom:283.266667pt;}
.y120{bottom:283.746667pt;}
.y2a{bottom:285.666667pt;}
.y5d{bottom:288.546667pt;}
.yf4{bottom:290.786667pt;}
.y9b{bottom:297.026667pt;}
.y11f{bottom:297.506667pt;}
.y29{bottom:299.426667pt;}
.y5c{bottom:302.786667pt;}
.yf3{bottom:304.706667pt;}
.y9a{bottom:310.946667pt;}
.y11e{bottom:311.426667pt;}
.y28{bottom:313.346667pt;}
.y5b{bottom:316.546667pt;}
.yf2{bottom:318.146667pt;}
.y99{bottom:324.706667pt;}
.y11d{bottom:325.186667pt;}
.yf1{bottom:329.986667pt;}
.y5a{bottom:330.306667pt;}
.y98{bottom:338.466667pt;}
.y11c{bottom:338.946667pt;}
.y27{bottom:340.706667pt;}
.yd0{bottom:343.586667pt;}
.y59{bottom:344.226667pt;}
.yf0{bottom:345.666667pt;}
.y97{bottom:352.386667pt;}
.y11b{bottom:352.706667pt;}
.ycf{bottom:357.506667pt;}
.y58{bottom:357.666667pt;}
.y96{bottom:366.146667pt;}
.y11a{bottom:366.626667pt;}
.y26{bottom:368.226667pt;}
.yce{bottom:371.266667pt;}
.y57{bottom:371.586667pt;}
.yef{bottom:373.986667pt;}
.y95{bottom:380.066667pt;}
.y119{bottom:380.386667pt;}
.y25{bottom:384.386667pt;}
.ycd{bottom:385.186667pt;}
.y56{bottom:385.826667pt;}
.y94{bottom:393.826667pt;}
.y118{bottom:394.146667pt;}
.ycc{bottom:396.706667pt;}
.y55{bottom:399.586667pt;}
.yec{bottom:402.146667pt;}
.y93{bottom:407.586667pt;}
.y117{bottom:408.066667pt;}
.y24{bottom:410.146667pt;}
.y54{bottom:413.506667pt;}
.y92{bottom:421.506667pt;}
.y116{bottom:421.826667pt;}
.ycb{bottom:425.346667pt;}
.y23{bottom:426.466667pt;}
.y53{bottom:427.266667pt;}
.y91{bottom:434.946667pt;}
.y115{bottom:435.586667pt;}
.y22{bottom:440.226667pt;}
.y52{bottom:440.866667pt;}
.yeb{bottom:444.226667pt;}
.y90{bottom:448.866667pt;}
.y114{bottom:449.506667pt;}
.yca{bottom:453.506667pt;}
.y21{bottom:453.986667pt;}
.ye9{bottom:459.906667pt;}
.y8f{bottom:462.786667pt;}
.y113{bottom:463.266667pt;}
.y20{bottom:467.746667pt;}
.y51{bottom:468.866667pt;}
.yc9{bottom:471.906667pt;}
.y8e{bottom:476.866667pt;}
.y112{bottom:477.026667pt;}
.y1f{bottom:481.666667pt;}
.y50{bottom:482.626667pt;}
.ye4{bottom:488.066667pt;}
.y8d{bottom:490.626667pt;}
.y111{bottom:490.946667pt;}
.y1e{bottom:495.426667pt;}
.y4f{bottom:496.386667pt;}
.yc6{bottom:500.226667pt;}
.ye7{bottom:503.773333pt;}
.y8c{bottom:504.413333pt;}
.y110{bottom:504.733333pt;}
.y1d{bottom:509.213333pt;}
.y4e{bottom:510.333333pt;}
.y8b{bottom:518.333333pt;}
.y10f{bottom:518.493333pt;}
.y1c{bottom:522.973333pt;}
.y4d{bottom:524.253333pt;}
.yc3{bottom:529.213333pt;}
.y8a{bottom:532.093333pt;}
.y10e{bottom:532.253333pt;}
.ye3{bottom:534.973333pt;}
.y1b{bottom:536.893333pt;}
.y4c{bottom:537.693333pt;}
.y89{bottom:545.853333pt;}
.y10d{bottom:546.173333pt;}
.y4b{bottom:551.933333pt;}
.y1a{bottom:556.573333pt;}
.yc5{bottom:556.733333pt;}
.y88{bottom:559.613333pt;}
.y10c{bottom:559.933333pt;}
.ye2{bottom:562.653333pt;}
.y87{bottom:573.533333pt;}
.y10b{bottom:573.693333pt;}
.ye1{bottom:576.413333pt;}
.y4a{bottom:579.613333pt;}
.y19{bottom:580.253333pt;}
.y86{bottom:587.293333pt;}
.y10a{bottom:587.613333pt;}
.ye0{bottom:590.333333pt;}
.y49{bottom:593.533333pt;}
.yc2{bottom:598.813333pt;}
.y18{bottom:600.413333pt;}
.y85{bottom:601.053333pt;}
.ydf{bottom:604.093333pt;}
.y48{bottom:607.453333pt;}
.yc1{bottom:612.733333pt;}
.y17{bottom:614.173333pt;}
.y84{bottom:614.813333pt;}
.y109{bottom:615.293333pt;}
.yde{bottom:617.853333pt;}
.y47{bottom:618.493333pt;}
.y108{bottom:626.333333pt;}
.yc0{bottom:626.493333pt;}
.y16{bottom:628.093333pt;}
.y83{bottom:628.733333pt;}
.ydd{bottom:631.613333pt;}
.ybf{bottom:640.253333pt;}
.y82{bottom:642.333333pt;}
.ydc{bottom:645.373333pt;}
.y81{bottom:656.093333pt;}
.y15{bottom:658.813333pt;}
.ydb{bottom:659.293333pt;}
.ybe{bottom:669.853333pt;}
.y80{bottom:670.333333pt;}
.yda{bottom:673.053333pt;}
.y14{bottom:677.853333pt;}
.ybd{bottom:683.613333pt;}
.y7f{bottom:684.093333pt;}
.yd9{bottom:686.813333pt;}
.ybc{bottom:697.853333pt;}
.y7e{bottom:698.013333pt;}
.yd8{bottom:700.733333pt;}
.y13{bottom:705.533333pt;}
.ybb{bottom:711.613333pt;}
.y7d{bottom:711.773333pt;}
.y13d{bottom:712.573333pt;}
.yd7{bottom:714.333333pt;}
.yba{bottom:725.373333pt;}
.y7c{bottom:725.533333pt;}
.y13c{bottom:726.333333pt;}
.y12{bottom:726.653333pt;}
.yd6{bottom:728.093333pt;}
.y11{bottom:732.893333pt;}
.y7b{bottom:739.133333pt;}
.yb9{bottom:739.293333pt;}
.y13b{bottom:740.093333pt;}
.yd5{bottom:742.013333pt;}
.y7a{bottom:753.053333pt;}
.y13a{bottom:753.893333pt;}
.y10{bottom:755.653333pt;}
.yd4{bottom:756.293333pt;}
.yb8{bottom:767.013333pt;}
.y79{bottom:767.173333pt;}
.y139{bottom:767.813333pt;}
.yb7{bottom:780.773333pt;}
.y78{bottom:781.093333pt;}
.y138{bottom:781.573333pt;}
.yf{bottom:790.373333pt;}
.yb6{bottom:794.693333pt;}
.y77{bottom:794.853333pt;}
.y137{bottom:795.333333pt;}
.yb5{bottom:808.133333pt;}
.y76{bottom:808.773333pt;}
.y136{bottom:809.093333pt;}
.ye{bottom:811.813333pt;}
.y75{bottom:822.213333pt;}
.y135{bottom:823.013333pt;}
.y74{bottom:836.133333pt;}
.y134{bottom:836.773333pt;}
.yb4{bottom:849.733333pt;}
.yd{bottom:850.373333pt;}
.y133{bottom:850.533333pt;}
.yb3{bottom:861.573333pt;}
.y73{bottom:864.133333pt;}
.y132{bottom:864.293333pt;}
.y46{bottom:877.733333pt;}
.y72{bottom:877.893333pt;}
.y131{bottom:878.213333pt;}
.yb2{bottom:882.213333pt;}
.y45{bottom:891.813333pt;}
.y130{bottom:891.973333pt;}
.yb1{bottom:902.853333pt;}
.yc{bottom:903.173333pt;}
.y71{bottom:905.253333pt;}
.y44{bottom:905.573333pt;}
.y12f{bottom:905.733333pt;}
.y9{bottom:919.173333pt;}
.y43{bottom:919.493333pt;}
.yaf{bottom:923.493333pt;}
.yb{bottom:923.813333pt;}
.y42{bottom:933.253333pt;}
.y12e{bottom:933.413333pt;}
.y8{bottom:939.813333pt;}
.yad{bottom:944.293333pt;}
.y41{bottom:947.013333pt;}
.y70{bottom:947.173333pt;}
.ya{bottom:952.293333pt;}
.y107{bottom:953.253333pt;}
.y40{bottom:960.773333pt;}
.y6f{bottom:960.933333pt;}
.y105{bottom:964.773333pt;}
.yab{bottom:964.933333pt;}
.y7{bottom:965.893333pt;}
.y3f{bottom:974.693333pt;}
.y6{bottom:982.853333pt;}
.y3e{bottom:988.293333pt;}
.y6e{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y3d{bottom:1002.053333pt;}
.y6d{bottom:1002.373333pt;}
.y102{bottom:1003.173333pt;}
.y4{bottom:1013.600000pt;}
.y3c{bottom:1016.000000pt;}
.y6c{bottom:1016.320000pt;}
.y3{bottom:1029.600000pt;}
.y3b{bottom:1029.920000pt;}
.yaa{bottom:1030.080000pt;}
.y3a{bottom:1044.640000pt;}
.y39{bottom:1061.120000pt;}
.hc{height:10.965000pt;}
.h21{height:15.026667pt;}
.h20{height:15.066667pt;}
.h1b{height:17.746667pt;}
.h15{height:19.986667pt;}
.h17{height:24.640000pt;}
.h18{height:26.880000pt;}
.h1c{height:27.506667pt;}
.h1f{height:27.520000pt;}
.h1a{height:27.666667pt;}
.h1d{height:27.986667pt;}
.h19{height:28.186667pt;}
.hd{height:31.390625pt;}
.h11{height:33.918750pt;}
.h25{height:37.746667pt;}
.h27{height:37.753333pt;}
.h24{height:37.778667pt;}
.h28{height:37.786667pt;}
.h22{height:41.426667pt;}
.h12{height:42.084375pt;}
.h7{height:43.215000pt;}
.h1e{height:43.226667pt;}
.h26{height:44.941250pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.hf{height:48.375000pt;}
.h29{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h16{height:52.160000pt;}
.h14{height:52.526250pt;}
.h4{height:53.535000pt;}
.h10{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.hb{height:64.290000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h23{height:76.178667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wc{width:31.346667pt;}
.w14{width:45.906667pt;}
.w1d{width:46.226667pt;}
.w5{width:56.160000pt;}
.wa{width:56.480000pt;}
.w16{width:75.058667pt;}
.w1c{width:77.280000pt;}
.w19{width:81.138667pt;}
.w9{width:82.746667pt;}
.w1a{width:84.626667pt;}
.w18{width:84.672000pt;}
.w17{width:84.800000pt;}
.w1b{width:84.826667pt;}
.w13{width:85.790667pt;}
.w8{width:91.858667pt;}
.wf{width:92.832000pt;}
.w10{width:101.778667pt;}
.w2{width:117.300000pt;}
.w7{width:122.592000pt;}
.w4{width:131.378667pt;}
.wd{width:139.053333pt;}
.w11{width:139.066667pt;}
.w6{width:297.853333pt;}
.we{width:334.333333pt;}
.w3{width:453.853333pt;}
.wb{width:486.360000pt;}
.w12{width:505.400000pt;}
.w15{width:574.360000pt;}
.w1e{width:707.038667pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x21{left:7.226667pt;}
.x2c{left:8.946667pt;}
.x37{left:9.906667pt;}
.x48{left:10.878667pt;}
.x1e{left:12.000000pt;}
.x49{left:12.960000pt;}
.x2d{left:13.906667pt;}
.x4b{left:14.880000pt;}
.x1d{left:15.840000pt;}
.x24{left:18.560000pt;}
.x4a{left:20.466667pt;}
.x39{left:22.240000pt;}
.x3b{left:23.666667pt;}
.x40{left:24.786667pt;}
.x2{left:26.720000pt;}
.x3a{left:29.466667pt;}
.x27{left:31.520000pt;}
.x43{left:33.146667pt;}
.x18{left:35.185333pt;}
.x34{left:36.146667pt;}
.x16{left:37.265333pt;}
.x1b{left:38.226667pt;}
.x14{left:39.185333pt;}
.xd{left:41.600000pt;}
.x25{left:43.520000pt;}
.xc{left:45.600000pt;}
.x3d{left:49.121333pt;}
.x36{left:51.840000pt;}
.x38{left:60.506667pt;}
.x51{left:66.080000pt;}
.x2f{left:68.186667pt;}
.x9{left:70.592000pt;}
.x20{left:80.506667pt;}
.x31{left:86.426667pt;}
.x50{left:90.112000pt;}
.x17{left:114.560000pt;}
.x15{left:115.520000pt;}
.x11{left:117.001333pt;}
.x3e{left:135.560000pt;}
.x2b{left:150.120000pt;}
.x1a{left:159.560000pt;}
.x32{left:165.786667pt;}
.x2e{left:181.800000pt;}
.xb{left:194.266667pt;}
.x13{left:199.706667pt;}
.x26{left:205.813333pt;}
.x5{left:217.026667pt;}
.x3f{left:222.933333pt;}
.x12{left:234.626667pt;}
.x3{left:240.226667pt;}
.x41{left:257.186667pt;}
.x4{left:258.306667pt;}
.xa{left:281.986667pt;}
.x4d{left:283.746667pt;}
.x1c{left:291.586667pt;}
.x10{left:300.066667pt;}
.x2a{left:304.706667pt;}
.x3c{left:311.266667pt;}
.x19{left:319.266667pt;}
.x30{left:321.186667pt;}
.x42{left:342.306667pt;}
.x1f{left:348.066667pt;}
.xe{left:366.653333pt;}
.x4f{left:382.973333pt;}
.x1{left:391.773333pt;}
.x8{left:399.293333pt;}
.x33{left:414.346667pt;}
.x4e{left:423.293333pt;}
.x6{left:425.693333pt;}
.x44{left:427.306667pt;}
.x7{left:450.173333pt;}
.x22{left:470.986667pt;}
.xf{left:499.333333pt;}
.x28{left:504.293333pt;}
.x45{left:508.773333pt;}
.x35{left:516.453333pt;}
.x29{left:521.733333pt;}
.x4c{left:557.733333pt;}
.x23{left:563.173333pt;}
.x46{left:593.733333pt;}
.x47{left:678.880000pt;}
}




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