
    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_8192eca65de61cb8ce17b364.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_8291a0609648aea702a40efb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_07341c9e1f1ff59e0cfd5634.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b8a721339b70b7933ecf8193.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_cb977db02ad194432ce2816a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5520a1583ee1f4ff39b0b095.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_87e5522e15b4c50dac2a824c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_7bfabb22247f6b6da68448bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_469c0ebe8eab091d5b717061.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b473dfc837604097df0abc98.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3069c1aa2421e76963e0b593.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls18{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.864000px;}
.lse{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.589760px;}
.lsa{letter-spacing:3.600000px;}
.ls12{letter-spacing:7.920000px;}
.lsb{letter-spacing:10.229760px;}
.ls6{letter-spacing:10.944000px;}
.ls16{letter-spacing:12.240000px;}
.ls11{letter-spacing:27.504000px;}
.ls19{letter-spacing:169.344000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws1{word-spacing:-28.356000px;}
.ws2{word-spacing:-23.352000px;}
.ws4{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.208000px;}
.ws9{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.226440px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-16.800000px;}
._1f{margin-left:-14.424000px;}
._21{margin-left:-13.092000px;}
._23{margin-left:-10.464000px;}
._22{margin-left:-9.204000px;}
._1{margin-left:-7.588800px;}
._3{margin-left:-6.249600px;}
._2{margin-left:-4.621800px;}
._0{margin-left:-3.561600px;}
._10{margin-left:-2.160000px;}
._7{margin-left:-1.080000px;}
._5{width:1.152000px;}
._18{width:2.736000px;}
._19{width:3.744000px;}
._4{width:4.752000px;}
._6{width:6.120000px;}
._b{width:7.560000px;}
._8{width:9.144000px;}
._9{width:10.656000px;}
._a{width:11.940000px;}
._13{width:13.464000px;}
._14{width:15.192000px;}
._24{width:16.620000px;}
._1e{width:19.368000px;}
._15{width:20.592000px;}
._e{width:22.320000px;}
._f{width:23.928000px;}
._16{width:24.960000px;}
._17{width:26.064000px;}
._1a{width:27.144000px;}
._1b{width:28.344000px;}
._d{width:30.144000px;}
._c{width:31.464000px;}
._2a{width:32.568000px;}
._26{width:33.708000px;}
._25{width:34.920000px;}
._28{width:36.360000px;}
._11{width:37.800000px;}
._12{width:39.312000px;}
._27{width:40.896000px;}
._2f{width:41.940000px;}
._40{width:43.416000px;}
._45{width:44.532000px;}
._2e{width:45.792000px;}
._2b{width:47.604000px;}
._1c{width:48.744000px;}
._1d{width:50.244000px;}
._3e{width:51.924000px;}
._36{width:53.208000px;}
._29{width:54.792000px;}
._3d{width:55.944000px;}
._3c{width:57.168000px;}
._3f{width:59.112000px;}
._3b{width:60.984000px;}
._3a{width:62.424000px;}
._2c{width:64.800000px;}
._2d{width:65.808000px;}
._39{width:66.816000px;}
._41{width:68.616000px;}
._42{width:69.984000px;}
._33{width:78.984000px;}
._32{width:92.088000px;}
._31{width:101.016000px;}
._34{width:103.608000px;}
._35{width:105.048000px;}
._37{width:110.448000px;}
._38{width:111.528000px;}
._30{width:129.744000px;}
._43{width:616.824000px;}
._44{width:618.264000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:24.840000px;}
.y103{bottom:25.200000px;}
.y10d{bottom:25.230000px;}
.y108{bottom:26.085000px;}
.y68{bottom:57.600000px;}
.y102{bottom:66.600000px;}
.y10c{bottom:66.630000px;}
.y107{bottom:67.530000px;}
.y67{bottom:77.760000px;}
.y15{bottom:91.227600px;}
.y101{bottom:108.000000px;}
.y10b{bottom:108.030000px;}
.y106{bottom:108.930000px;}
.y114{bottom:110.700000px;}
.yd4{bottom:115.740000px;}
.y99{bottom:116.100000px;}
.y128{bottom:119.520000px;}
.y41{bottom:120.240000px;}
.y179{bottom:120.600000px;}
.y187{bottom:121.500000px;}
.y19a{bottom:122.760000px;}
.y66{bottom:125.640000px;}
.y115{bottom:128.160000px;}
.yf5{bottom:130.140000px;}
.yb9{bottom:133.560000px;}
.y10e{bottom:135.540000px;}
.y185{bottom:137.700000px;}
.y12d{bottom:138.960000px;}
.ye1{bottom:139.140000px;}
.y76{bottom:140.040000px;}
.y199{bottom:142.560000px;}
.y92{bottom:144.360000px;}
.yb0{bottom:145.440000px;}
.ycd{bottom:146.700000px;}
.y100{bottom:149.430000px;}
.y54{bottom:149.580000px;}
.y157{bottom:149.760000px;}
.y105{bottom:150.330000px;}
.y113{bottom:152.100000px;}
.y109{bottom:152.460000px;}
.y2d{bottom:157.500000px;}
.yf1{bottom:160.050000px;}
.y127{bottom:160.950000px;}
.y84{bottom:161.670000px;}
.y15c{bottom:162.930000px;}
.y159{bottom:164.190000px;}
.y141{bottom:168.330000px;}
.yd3{bottom:169.230000px;}
.yc1{bottom:169.590000px;}
.y40{bottom:173.730000px;}
.y178{bottom:174.090000px;}
.yb8{bottom:174.990000px;}
.y191{bottom:178.050000px;}
.y65{bottom:179.130000px;}
.ye0{bottom:180.570000px;}
.y75{bottom:181.470000px;}
.y198{bottom:183.990000px;}
.y16f{bottom:184.890000px;}
.yfc{bottom:185.430000px;}
.yaf{bottom:186.870000px;}
.ycc{bottom:188.130000px;}
.y163{bottom:190.290000px;}
.y10a{bottom:190.830000px;}
.y184{bottom:191.190000px;}
.y12c{bottom:192.270000px;}
.ya8{bottom:193.530000px;}
.y91{bottom:197.670000px;}
.y2c{bottom:198.930000px;}
.y53{bottom:201.810000px;}
.y126{bottom:202.350000px;}
.y156{bottom:203.070000px;}
.yf4{bottom:204.330000px;}
.y112{bottom:205.590000px;}
.y140{bottom:209.730000px;}
.y98{bottom:210.990000px;}
.yf0{bottom:213.330000px;}
.y83{bottom:215.130000px;}
.yb7{bottom:216.390000px;}
.y1a8{bottom:217.470000px;}
.y190{bottom:219.450000px;}
.ydf{bottom:221.970000px;}
.yd2{bottom:222.510000px;}
.y87{bottom:222.870000px;}
.y197{bottom:225.390000px;}
.y16e{bottom:226.290000px;}
.yfb{bottom:226.830000px;}
.y3f{bottom:227.190000px;}
.y177{bottom:227.550000px;}
.y149{bottom:228.270000px;}
.ycb{bottom:229.350000px;}
.y1a3{bottom:229.530000px;}
.y64{bottom:232.590000px;}
.y139{bottom:233.670000px;}
.y74{bottom:234.930000px;}
.y2b{bottom:240.330000px;}
.y183{bottom:244.470000px;}
.y12b{bottom:245.730000px;}
.y6{bottom:246.387150px;}
.y111{bottom:246.990000px;}
.y90{bottom:251.130000px;}
.y97{bottom:252.390000px;}
.y52{bottom:254.190000px;}
.y125{bottom:255.810000px;}
.y155{bottom:256.530000px;}
.yf3{bottom:257.790000px;}
.y1a7{bottom:258.870000px;}
.y18f{bottom:260.850000px;}
.y13f{bottom:263.190000px;}
.yde{bottom:263.370000px;}
.ybe{bottom:264.270000px;}
.yef{bottom:266.790000px;}
.y14{bottom:267.627600px;}
.y16d{bottom:267.690000px;}
.yfa{bottom:268.230000px;}
.y82{bottom:268.590000px;}
.yb6{bottom:269.310000px;}
.y148{bottom:269.670000px;}
.y1a2{bottom:270.930000px;}
.y138{bottom:275.070000px;}
.yd1{bottom:275.970000px;}
.y73{bottom:276.330000px;}
.y3e{bottom:280.470000px;}
.y176{bottom:280.830000px;}
.y9b{bottom:281.730000px;}
.yca{bottom:282.810000px;}
.y63{bottom:285.870000px;}
.y162{bottom:287.130000px;}
.y110{bottom:288.390000px;}
.y14d{bottom:292.530000px;}
.y2a{bottom:293.790000px;}
.y124{bottom:297.210000px;}
.y182{bottom:297.930000px;}
.y12a{bottom:299.190000px;}
.y1a6{bottom:300.270000px;}
.y13{bottom:303.627600px;}
.y8f{bottom:304.590000px;}
.ydd{bottom:304.770000px;}
.ybd{bottom:305.670000px;}
.y51{bottom:306.390000px;}
.yee{bottom:308.190000px;}
.y16c{bottom:309.090000px;}
.yf9{bottom:309.630000px;}
.y154{bottom:309.990000px;}
.yf2{bottom:311.070000px;}
.y1a1{bottom:312.330000px;}
.y18e{bottom:314.310000px;}
.y137{bottom:316.470000px;}
.y72{bottom:317.730000px;}
.y81{bottom:321.870000px;}
.yae{bottom:323.130000px;}
.yc9{bottom:324.210000px;}
.y161{bottom:328.530000px;}
.yd0{bottom:329.790000px;}
.y3d{bottom:333.930000px;}
.y175{bottom:334.290000px;}
.y29{bottom:335.190000px;}
.y123{bottom:338.610000px;}
.y62{bottom:339.330000px;}
.y12{bottom:339.627600px;}
.y1a5{bottom:341.670000px;}
.ydc{bottom:346.170000px;}
.ybc{bottom:347.070000px;}
.yed{bottom:349.590000px;}
.y16b{bottom:350.490000px;}
.yf8{bottom:351.030000px;}
.y181{bottom:351.390000px;}
.y129{bottom:352.470000px;}
.y1a0{bottom:353.730000px;}
.y18d{bottom:355.710000px;}
.y8e{bottom:357.870000px;}
.y50{bottom:359.130000px;}
.y104{bottom:360.225000px;}
.y153{bottom:363.270000px;}
.yad{bottom:364.530000px;}
.yc8{bottom:365.610000px;}
.y136{bottom:369.930000px;}
.ya7{bottom:370.830000px;}
.ycf{bottom:371.190000px;}
.y80{bottom:375.330000px;}
.y28{bottom:376.590000px;}
.y122{bottom:380.010000px;}
.y160{bottom:381.990000px;}
.y1a4{bottom:383.070000px;}
.y3c{bottom:387.390000px;}
.ydb{bottom:387.570000px;}
.y174{bottom:387.750000px;}
.yc0{bottom:388.470000px;}
.yec{bottom:390.990000px;}
.y16a{bottom:391.890000px;}
.y61{bottom:392.790000px;}
.y158{bottom:393.870000px;}
.y19f{bottom:395.130000px;}
.y18c{bottom:397.110000px;}
.y4f{bottom:400.530000px;}
.yf7{bottom:404.310000px;}
.y180{bottom:404.670000px;}
.yac{bottom:405.975000px;}
.yc7{bottom:407.055000px;}
.y11{bottom:408.027600px;}
.ye5{bottom:409.215000px;}
.y8d{bottom:411.375000px;}
.yce{bottom:412.635000px;}
.y152{bottom:416.775000px;}
.y27{bottom:418.035000px;}
.y121{bottom:421.455000px;}
.y135{bottom:423.435000px;}
.ya6{bottom:424.515000px;}
.y7f{bottom:428.835000px;}
.ybf{bottom:429.915000px;}
.yeb{bottom:432.435000px;}
.y169{bottom:433.335000px;}
.y19e{bottom:436.575000px;}
.y18b{bottom:438.555000px;}
.y3b{bottom:440.715000px;}
.yda{bottom:441.075000px;}
.y71{bottom:441.975000px;}
.y196{bottom:444.495000px;}
.y60{bottom:446.115000px;}
.y147{bottom:447.375000px;}
.yc6{bottom:448.455000px;}
.y13e{bottom:452.775000px;}
.yf6{bottom:453.495000px;}
.y4e{bottom:453.675000px;}
.ybb{bottom:454.035000px;}
.y17f{bottom:458.175000px;}
.yab{bottom:459.075000px;}
.y26{bottom:459.435000px;}
.ye4{bottom:462.495000px;}
.y120{bottom:462.855000px;}
.y8c{bottom:464.835000px;}
.ya5{bottom:465.915000px;}
.y151{bottom:470.235000px;}
.y9a{bottom:471.315000px;}
.yea{bottom:473.835000px;}
.y168{bottom:474.735000px;}
.y165{bottom:476.355000px;}
.y15f{bottom:476.715000px;}
.y19d{bottom:477.975000px;}
.y18a{bottom:479.955000px;}
.y7e{bottom:482.115000px;}
.yd9{bottom:482.475000px;}
.y186{bottom:483.015000px;}
.y70{bottom:483.375000px;}
.y195{bottom:485.895000px;}
.y146{bottom:488.775000px;}
.yc5{bottom:489.855000px;}
.y3a{bottom:494.175000px;}
.y173{bottom:494.535000px;}
.yba{bottom:495.435000px;}
.y5f{bottom:499.575000px;}
.y15b{bottom:500.475000px;}
.yb5{bottom:500.835000px;}
.ye3{bottom:503.895000px;}
.y134{bottom:506.235000px;}
.y4d{bottom:507.315000px;}
.y10{bottom:508.827600px;}
.y17e{bottom:511.455000px;}
.y25{bottom:512.715000px;}
.ye9{bottom:515.235000px;}
.y11f{bottom:516.135000px;}
.y8b{bottom:518.115000px;}
.y19c{bottom:519.375000px;}
.y189{bottom:521.175000px;}
.y14c{bottom:523.515000px;}
.yd8{bottom:523.875000px;}
.y6f{bottom:524.775000px;}
.y194{bottom:527.295000px;}
.yff{bottom:527.475000px;}
.y164{bottom:529.815000px;}
.y145{bottom:530.175000px;}
.yc4{bottom:531.255000px;}
.y7d{bottom:535.575000px;}
.y172{bottom:535.935000px;}
.y86{bottom:536.835000px;}
.yf{bottom:539.427600px;}
.yb4{bottom:542.235000px;}
.y39{bottom:547.455000px;}
.y4c{bottom:548.715000px;}
.y5e{bottom:552.855000px;}
.y24{bottom:554.115000px;}
.ye8{bottom:556.635000px;}
.ye2{bottom:557.355000px;}
.y11e{bottom:557.535000px;}
.y133{bottom:559.515000px;}
.y19b{bottom:560.775000px;}
.y17d{bottom:564.915000px;}
.yd7{bottom:565.275000px;}
.y6e{bottom:566.175000px;}
.y193{bottom:568.695000px;}
.ye{bottom:570.027600px;}
.y188{bottom:570.315000px;}
.y8a{bottom:571.575000px;}
.y14b{bottom:576.975000px;}
.y171{bottom:577.335000px;}
.y85{bottom:578.235000px;}
.yb3{bottom:583.455000px;}
.yc3{bottom:584.715000px;}
.y7c{bottom:588.855000px;}
.y4b{bottom:590.115000px;}
.y23{bottom:595.515000px;}
.y167{bottom:598.755000px;}
.y11d{bottom:598.935000px;}
.yd{bottom:600.627600px;}
.y38{bottom:600.915000px;}
.ya4{bottom:602.175000px;}
.y5d{bottom:606.315000px;}
.yaa{bottom:607.575000px;}
.ye7{bottom:610.095000px;}
.y132{bottom:612.615000px;}
.y13d{bottom:612.975000px;}
.y14a{bottom:618.375000px;}
.yd6{bottom:618.555000px;}
.y13b{bottom:619.095000px;}
.y6d{bottom:619.455000px;}
.y89{bottom:624.855000px;}
.y150{bottom:630.255000px;}
.y170{bottom:630.795000px;}
.yc{bottom:631.227600px;}
.y4a{bottom:631.515000px;}
.yc2{bottom:633.675000px;}
.y96{bottom:636.915000px;}
.y11c{bottom:640.335000px;}
.y7b{bottom:642.315000px;}
.ya3{bottom:643.575000px;}
.y22{bottom:648.975000px;}
.y166{bottom:652.245000px;}
.y37{bottom:654.405000px;}
.y5c{bottom:659.805000px;}
.y6c{bottom:660.885000px;}
.y192{bottom:663.405000px;}
.y131{bottom:666.285000px;}
.yd5{bottom:667.725000px;}
.y17c{bottom:671.685000px;}
.y49{bottom:672.945000px;}
.yb2{bottom:677.985000px;}
.y88{bottom:678.345000px;}
.y11b{bottom:681.765000px;}
.y14f{bottom:683.745000px;}
.ya2{bottom:685.005000px;}
.y15a{bottom:690.045000px;}
.y21{bottom:690.405000px;}
.yfd{bottom:693.825000px;}
.y7a{bottom:695.805000px;}
.y6b{bottom:702.285000px;}
.y36{bottom:707.685000px;}
.yb{bottom:712.227600px;}
.y5b{bottom:713.085000px;}
.y48{bottom:714.345000px;}
.y13c{bottom:719.745000px;}
.y17b{bottom:725.145000px;}
.y13a{bottom:726.045000px;}
.ya1{bottom:726.405000px;}
.y20{bottom:731.805000px;}
.y11a{bottom:735.225000px;}
.y14e{bottom:737.205000px;}
.ya{bottom:742.827600px;}
.y6a{bottom:743.685000px;}
.y79{bottom:749.085000px;}
.y47{bottom:755.745000px;}
.y35{bottom:761.145000px;}
.y5a{bottom:766.545000px;}
.ya0{bottom:767.805000px;}
.y1f{bottom:773.205000px;}
.y119{bottom:776.625000px;}
.y17a{bottom:778.605000px;}
.y69{bottom:785.085000px;}
.y130{bottom:790.485000px;}
.y46{bottom:797.145000px;}
.y78{bottom:802.545000px;}
.y9{bottom:804.027600px;}
.y9f{bottom:809.205000px;}
.y34{bottom:814.605000px;}
.y118{bottom:818.025000px;}
.y59{bottom:820.005000px;}
.y1e{bottom:826.485000px;}
.y8{bottom:829.227600px;}
.y12f{bottom:831.885000px;}
.y45{bottom:838.545000px;}
.y144{bottom:843.945000px;}
.y9e{bottom:850.605000px;}
.y77{bottom:856.005000px;}
.y117{bottom:859.425000px;}
.y1d{bottom:867.885000px;}
.y58{bottom:873.285000px;}
.y10f{bottom:879.585000px;}
.y7{bottom:879.627600px;}
.y44{bottom:879.945000px;}
.y143{bottom:885.345000px;}
.y9d{bottom:892.005000px;}
.y95{bottom:897.450000px;}
.y15d{bottom:908.970000px;}
.y1c{bottom:909.330000px;}
.y116{bottom:910.590000px;}
.y33{bottom:921.390000px;}
.y57{bottom:926.790000px;}
.y9c{bottom:933.450000px;}
.y142{bottom:938.490000px;}
.y94{bottom:938.850000px;}
.y1b{bottom:950.730000px;}
.ya9{bottom:962.430000px;}
.y43{bottom:962.790000px;}
.y32{bottom:974.850000px;}
.y12e{bottom:979.890000px;}
.y56{bottom:980.250000px;}
.y1a{bottom:992.130000px;}
.y5{bottom:1000.731150px;}
.y15e{bottom:1003.830000px;}
.y42{bottom:1004.190000px;}
.y31{bottom:1016.250000px;}
.y4{bottom:1029.531150px;}
.y55{bottom:1033.530000px;}
.yb1{bottom:1045.230000px;}
.y19{bottom:1045.590000px;}
.y30{bottom:1057.650000px;}
.y3{bottom:1058.331150px;}
.y93{bottom:1086.630000px;}
.y18{bottom:1086.990000px;}
.y2{bottom:1087.131150px;}
.y2f{bottom:1099.050000px;}
.y1{bottom:1115.931150px;}
.ye6{bottom:1139.550000px;}
.y17{bottom:1140.090000px;}
.y2e{bottom:1140.480000px;}
.y16{bottom:1194.300000px;}
.hb{height:41.400000px;}
.h3{height:61.154297px;}
.h9{height:64.546875px;}
.h6{height:65.884219px;}
.h2{height:70.125000px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.hf{height:74.004654px;}
.h4{height:74.258789px;}
.ha{height:74.953125px;}
.hc{height:165.630000px;}
.hd{height:166.515000px;}
.he{height:207.030000px;}
.h0{height:1262.835000px;}
.h5{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:326.175000px;}
.w4{width:326.220000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.731000px;}
.x24{left:69.150000px;}
.x1{left:79.275150px;}
.x2{left:90.819150px;}
.x23{left:119.925000px;}
.xf{left:127.656000px;}
.x1f{left:134.856000px;}
.x2a{left:139.896000px;}
.x27{left:143.136000px;}
.x1b{left:150.150000px;}
.x26{left:154.650000px;}
.x2b{left:161.850000px;}
.x14{left:163.650000px;}
.x6{left:171.841650px;}
.xa{left:173.877450px;}
.x19{left:176.070000px;}
.x13{left:180.750000px;}
.x1d{left:185.970000px;}
.x3{left:210.783900px;}
.x9{left:225.618300px;}
.x8{left:232.254750px;}
.x17{left:234.030000px;}
.x4{left:256.823850px;}
.xb{left:277.259850px;}
.x20{left:281.190000px;}
.x7{left:297.928500px;}
.x10{left:318.855000px;}
.x1e{left:331.815000px;}
.x21{left:338.295000px;}
.x5{left:344.946000px;}
.x29{left:348.555000px;}
.xd{left:363.033900px;}
.xe{left:377.030400px;}
.xc{left:404.110950px;}
.x28{left:405.615000px;}
.x15{left:411.555000px;}
.x18{left:446.475000px;}
.x1c{left:722.490000px;}
.x22{left:728.430000px;}
.x2c{left:740.490000px;}
.x12{left:748.770000px;}
.x16{left:750.210000px;}
.x11{left:757.230000px;}
.x1a{left:790.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls18{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.768000pt;}
.lse{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.413120pt;}
.lsa{letter-spacing:3.200000pt;}
.ls12{letter-spacing:7.040000pt;}
.lsb{letter-spacing:9.093120pt;}
.ls6{letter-spacing:9.728000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls11{letter-spacing:24.448000pt;}
.ls19{letter-spacing:150.528000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1{word-spacing:-25.205333pt;}
.ws2{word-spacing:-20.757333pt;}
.ws4{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.534613pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-14.933333pt;}
._1f{margin-left:-12.821333pt;}
._21{margin-left:-11.637333pt;}
._23{margin-left:-9.301333pt;}
._22{margin-left:-8.181333pt;}
._1{margin-left:-6.745600pt;}
._3{margin-left:-5.555200pt;}
._2{margin-left:-4.108267pt;}
._0{margin-left:-3.165867pt;}
._10{margin-left:-1.920000pt;}
._7{margin-left:-0.960000pt;}
._5{width:1.024000pt;}
._18{width:2.432000pt;}
._19{width:3.328000pt;}
._4{width:4.224000pt;}
._6{width:5.440000pt;}
._b{width:6.720000pt;}
._8{width:8.128000pt;}
._9{width:9.472000pt;}
._a{width:10.613333pt;}
._13{width:11.968000pt;}
._14{width:13.504000pt;}
._24{width:14.773333pt;}
._1e{width:17.216000pt;}
._15{width:18.304000pt;}
._e{width:19.840000pt;}
._f{width:21.269333pt;}
._16{width:22.186667pt;}
._17{width:23.168000pt;}
._1a{width:24.128000pt;}
._1b{width:25.194667pt;}
._d{width:26.794667pt;}
._c{width:27.968000pt;}
._2a{width:28.949333pt;}
._26{width:29.962667pt;}
._25{width:31.040000pt;}
._28{width:32.320000pt;}
._11{width:33.600000pt;}
._12{width:34.944000pt;}
._27{width:36.352000pt;}
._2f{width:37.280000pt;}
._40{width:38.592000pt;}
._45{width:39.584000pt;}
._2e{width:40.704000pt;}
._2b{width:42.314667pt;}
._1c{width:43.328000pt;}
._1d{width:44.661333pt;}
._3e{width:46.154667pt;}
._36{width:47.296000pt;}
._29{width:48.704000pt;}
._3d{width:49.728000pt;}
._3c{width:50.816000pt;}
._3f{width:52.544000pt;}
._3b{width:54.208000pt;}
._3a{width:55.488000pt;}
._2c{width:57.600000pt;}
._2d{width:58.496000pt;}
._39{width:59.392000pt;}
._41{width:60.992000pt;}
._42{width:62.208000pt;}
._33{width:70.208000pt;}
._32{width:81.856000pt;}
._31{width:89.792000pt;}
._34{width:92.096000pt;}
._35{width:93.376000pt;}
._37{width:98.176000pt;}
._38{width:99.136000pt;}
._30{width:115.328000pt;}
._43{width:548.288000pt;}
._44{width:549.568000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:22.080000pt;}
.y103{bottom:22.400000pt;}
.y10d{bottom:22.426667pt;}
.y108{bottom:23.186667pt;}
.y68{bottom:51.200000pt;}
.y102{bottom:59.200000pt;}
.y10c{bottom:59.226667pt;}
.y107{bottom:60.026667pt;}
.y67{bottom:69.120000pt;}
.y15{bottom:81.091200pt;}
.y101{bottom:96.000000pt;}
.y10b{bottom:96.026667pt;}
.y106{bottom:96.826667pt;}
.y114{bottom:98.400000pt;}
.yd4{bottom:102.880000pt;}
.y99{bottom:103.200000pt;}
.y128{bottom:106.240000pt;}
.y41{bottom:106.880000pt;}
.y179{bottom:107.200000pt;}
.y187{bottom:108.000000pt;}
.y19a{bottom:109.120000pt;}
.y66{bottom:111.680000pt;}
.y115{bottom:113.920000pt;}
.yf5{bottom:115.680000pt;}
.yb9{bottom:118.720000pt;}
.y10e{bottom:120.480000pt;}
.y185{bottom:122.400000pt;}
.y12d{bottom:123.520000pt;}
.ye1{bottom:123.680000pt;}
.y76{bottom:124.480000pt;}
.y199{bottom:126.720000pt;}
.y92{bottom:128.320000pt;}
.yb0{bottom:129.280000pt;}
.ycd{bottom:130.400000pt;}
.y100{bottom:132.826667pt;}
.y54{bottom:132.960000pt;}
.y157{bottom:133.120000pt;}
.y105{bottom:133.626667pt;}
.y113{bottom:135.200000pt;}
.y109{bottom:135.520000pt;}
.y2d{bottom:140.000000pt;}
.yf1{bottom:142.266667pt;}
.y127{bottom:143.066667pt;}
.y84{bottom:143.706667pt;}
.y15c{bottom:144.826667pt;}
.y159{bottom:145.946667pt;}
.y141{bottom:149.626667pt;}
.yd3{bottom:150.426667pt;}
.yc1{bottom:150.746667pt;}
.y40{bottom:154.426667pt;}
.y178{bottom:154.746667pt;}
.yb8{bottom:155.546667pt;}
.y191{bottom:158.266667pt;}
.y65{bottom:159.226667pt;}
.ye0{bottom:160.506667pt;}
.y75{bottom:161.306667pt;}
.y198{bottom:163.546667pt;}
.y16f{bottom:164.346667pt;}
.yfc{bottom:164.826667pt;}
.yaf{bottom:166.106667pt;}
.ycc{bottom:167.226667pt;}
.y163{bottom:169.146667pt;}
.y10a{bottom:169.626667pt;}
.y184{bottom:169.946667pt;}
.y12c{bottom:170.906667pt;}
.ya8{bottom:172.026667pt;}
.y91{bottom:175.706667pt;}
.y2c{bottom:176.826667pt;}
.y53{bottom:179.386667pt;}
.y126{bottom:179.866667pt;}
.y156{bottom:180.506667pt;}
.yf4{bottom:181.626667pt;}
.y112{bottom:182.746667pt;}
.y140{bottom:186.426667pt;}
.y98{bottom:187.546667pt;}
.yf0{bottom:189.626667pt;}
.y83{bottom:191.226667pt;}
.yb7{bottom:192.346667pt;}
.y1a8{bottom:193.306667pt;}
.y190{bottom:195.066667pt;}
.ydf{bottom:197.306667pt;}
.yd2{bottom:197.786667pt;}
.y87{bottom:198.106667pt;}
.y197{bottom:200.346667pt;}
.y16e{bottom:201.146667pt;}
.yfb{bottom:201.626667pt;}
.y3f{bottom:201.946667pt;}
.y177{bottom:202.266667pt;}
.y149{bottom:202.906667pt;}
.ycb{bottom:203.866667pt;}
.y1a3{bottom:204.026667pt;}
.y64{bottom:206.746667pt;}
.y139{bottom:207.706667pt;}
.y74{bottom:208.826667pt;}
.y2b{bottom:213.626667pt;}
.y183{bottom:217.306667pt;}
.y12b{bottom:218.426667pt;}
.y6{bottom:219.010800pt;}
.y111{bottom:219.546667pt;}
.y90{bottom:223.226667pt;}
.y97{bottom:224.346667pt;}
.y52{bottom:225.946667pt;}
.y125{bottom:227.386667pt;}
.y155{bottom:228.026667pt;}
.yf3{bottom:229.146667pt;}
.y1a7{bottom:230.106667pt;}
.y18f{bottom:231.866667pt;}
.y13f{bottom:233.946667pt;}
.yde{bottom:234.106667pt;}
.ybe{bottom:234.906667pt;}
.yef{bottom:237.146667pt;}
.y14{bottom:237.891200pt;}
.y16d{bottom:237.946667pt;}
.yfa{bottom:238.426667pt;}
.y82{bottom:238.746667pt;}
.yb6{bottom:239.386667pt;}
.y148{bottom:239.706667pt;}
.y1a2{bottom:240.826667pt;}
.y138{bottom:244.506667pt;}
.yd1{bottom:245.306667pt;}
.y73{bottom:245.626667pt;}
.y3e{bottom:249.306667pt;}
.y176{bottom:249.626667pt;}
.y9b{bottom:250.426667pt;}
.yca{bottom:251.386667pt;}
.y63{bottom:254.106667pt;}
.y162{bottom:255.226667pt;}
.y110{bottom:256.346667pt;}
.y14d{bottom:260.026667pt;}
.y2a{bottom:261.146667pt;}
.y124{bottom:264.186667pt;}
.y182{bottom:264.826667pt;}
.y12a{bottom:265.946667pt;}
.y1a6{bottom:266.906667pt;}
.y13{bottom:269.891200pt;}
.y8f{bottom:270.746667pt;}
.ydd{bottom:270.906667pt;}
.ybd{bottom:271.706667pt;}
.y51{bottom:272.346667pt;}
.yee{bottom:273.946667pt;}
.y16c{bottom:274.746667pt;}
.yf9{bottom:275.226667pt;}
.y154{bottom:275.546667pt;}
.yf2{bottom:276.506667pt;}
.y1a1{bottom:277.626667pt;}
.y18e{bottom:279.386667pt;}
.y137{bottom:281.306667pt;}
.y72{bottom:282.426667pt;}
.y81{bottom:286.106667pt;}
.yae{bottom:287.226667pt;}
.yc9{bottom:288.186667pt;}
.y161{bottom:292.026667pt;}
.yd0{bottom:293.146667pt;}
.y3d{bottom:296.826667pt;}
.y175{bottom:297.146667pt;}
.y29{bottom:297.946667pt;}
.y123{bottom:300.986667pt;}
.y62{bottom:301.626667pt;}
.y12{bottom:301.891200pt;}
.y1a5{bottom:303.706667pt;}
.ydc{bottom:307.706667pt;}
.ybc{bottom:308.506667pt;}
.yed{bottom:310.746667pt;}
.y16b{bottom:311.546667pt;}
.yf8{bottom:312.026667pt;}
.y181{bottom:312.346667pt;}
.y129{bottom:313.306667pt;}
.y1a0{bottom:314.426667pt;}
.y18d{bottom:316.186667pt;}
.y8e{bottom:318.106667pt;}
.y50{bottom:319.226667pt;}
.y104{bottom:320.200000pt;}
.y153{bottom:322.906667pt;}
.yad{bottom:324.026667pt;}
.yc8{bottom:324.986667pt;}
.y136{bottom:328.826667pt;}
.ya7{bottom:329.626667pt;}
.ycf{bottom:329.946667pt;}
.y80{bottom:333.626667pt;}
.y28{bottom:334.746667pt;}
.y122{bottom:337.786667pt;}
.y160{bottom:339.546667pt;}
.y1a4{bottom:340.506667pt;}
.y3c{bottom:344.346667pt;}
.ydb{bottom:344.506667pt;}
.y174{bottom:344.666667pt;}
.yc0{bottom:345.306667pt;}
.yec{bottom:347.546667pt;}
.y16a{bottom:348.346667pt;}
.y61{bottom:349.146667pt;}
.y158{bottom:350.106667pt;}
.y19f{bottom:351.226667pt;}
.y18c{bottom:352.986667pt;}
.y4f{bottom:356.026667pt;}
.yf7{bottom:359.386667pt;}
.y180{bottom:359.706667pt;}
.yac{bottom:360.866667pt;}
.yc7{bottom:361.826667pt;}
.y11{bottom:362.691200pt;}
.ye5{bottom:363.746667pt;}
.y8d{bottom:365.666667pt;}
.yce{bottom:366.786667pt;}
.y152{bottom:370.466667pt;}
.y27{bottom:371.586667pt;}
.y121{bottom:374.626667pt;}
.y135{bottom:376.386667pt;}
.ya6{bottom:377.346667pt;}
.y7f{bottom:381.186667pt;}
.ybf{bottom:382.146667pt;}
.yeb{bottom:384.386667pt;}
.y169{bottom:385.186667pt;}
.y19e{bottom:388.066667pt;}
.y18b{bottom:389.826667pt;}
.y3b{bottom:391.746667pt;}
.yda{bottom:392.066667pt;}
.y71{bottom:392.866667pt;}
.y196{bottom:395.106667pt;}
.y60{bottom:396.546667pt;}
.y147{bottom:397.666667pt;}
.yc6{bottom:398.626667pt;}
.y13e{bottom:402.466667pt;}
.yf6{bottom:403.106667pt;}
.y4e{bottom:403.266667pt;}
.ybb{bottom:403.586667pt;}
.y17f{bottom:407.266667pt;}
.yab{bottom:408.066667pt;}
.y26{bottom:408.386667pt;}
.ye4{bottom:411.106667pt;}
.y120{bottom:411.426667pt;}
.y8c{bottom:413.186667pt;}
.ya5{bottom:414.146667pt;}
.y151{bottom:417.986667pt;}
.y9a{bottom:418.946667pt;}
.yea{bottom:421.186667pt;}
.y168{bottom:421.986667pt;}
.y165{bottom:423.426667pt;}
.y15f{bottom:423.746667pt;}
.y19d{bottom:424.866667pt;}
.y18a{bottom:426.626667pt;}
.y7e{bottom:428.546667pt;}
.yd9{bottom:428.866667pt;}
.y186{bottom:429.346667pt;}
.y70{bottom:429.666667pt;}
.y195{bottom:431.906667pt;}
.y146{bottom:434.466667pt;}
.yc5{bottom:435.426667pt;}
.y3a{bottom:439.266667pt;}
.y173{bottom:439.586667pt;}
.yba{bottom:440.386667pt;}
.y5f{bottom:444.066667pt;}
.y15b{bottom:444.866667pt;}
.yb5{bottom:445.186667pt;}
.ye3{bottom:447.906667pt;}
.y134{bottom:449.986667pt;}
.y4d{bottom:450.946667pt;}
.y10{bottom:452.291200pt;}
.y17e{bottom:454.626667pt;}
.y25{bottom:455.746667pt;}
.ye9{bottom:457.986667pt;}
.y11f{bottom:458.786667pt;}
.y8b{bottom:460.546667pt;}
.y19c{bottom:461.666667pt;}
.y189{bottom:463.266667pt;}
.y14c{bottom:465.346667pt;}
.yd8{bottom:465.666667pt;}
.y6f{bottom:466.466667pt;}
.y194{bottom:468.706667pt;}
.yff{bottom:468.866667pt;}
.y164{bottom:470.946667pt;}
.y145{bottom:471.266667pt;}
.yc4{bottom:472.226667pt;}
.y7d{bottom:476.066667pt;}
.y172{bottom:476.386667pt;}
.y86{bottom:477.186667pt;}
.yf{bottom:479.491200pt;}
.yb4{bottom:481.986667pt;}
.y39{bottom:486.626667pt;}
.y4c{bottom:487.746667pt;}
.y5e{bottom:491.426667pt;}
.y24{bottom:492.546667pt;}
.ye8{bottom:494.786667pt;}
.ye2{bottom:495.426667pt;}
.y11e{bottom:495.586667pt;}
.y133{bottom:497.346667pt;}
.y19b{bottom:498.466667pt;}
.y17d{bottom:502.146667pt;}
.yd7{bottom:502.466667pt;}
.y6e{bottom:503.266667pt;}
.y193{bottom:505.506667pt;}
.ye{bottom:506.691200pt;}
.y188{bottom:506.946667pt;}
.y8a{bottom:508.066667pt;}
.y14b{bottom:512.866667pt;}
.y171{bottom:513.186667pt;}
.y85{bottom:513.986667pt;}
.yb3{bottom:518.626667pt;}
.yc3{bottom:519.746667pt;}
.y7c{bottom:523.426667pt;}
.y4b{bottom:524.546667pt;}
.y23{bottom:529.346667pt;}
.y167{bottom:532.226667pt;}
.y11d{bottom:532.386667pt;}
.yd{bottom:533.891200pt;}
.y38{bottom:534.146667pt;}
.ya4{bottom:535.266667pt;}
.y5d{bottom:538.946667pt;}
.yaa{bottom:540.066667pt;}
.ye7{bottom:542.306667pt;}
.y132{bottom:544.546667pt;}
.y13d{bottom:544.866667pt;}
.y14a{bottom:549.666667pt;}
.yd6{bottom:549.826667pt;}
.y13b{bottom:550.306667pt;}
.y6d{bottom:550.626667pt;}
.y89{bottom:555.426667pt;}
.y150{bottom:560.226667pt;}
.y170{bottom:560.706667pt;}
.yc{bottom:561.091200pt;}
.y4a{bottom:561.346667pt;}
.yc2{bottom:563.266667pt;}
.y96{bottom:566.146667pt;}
.y11c{bottom:569.186667pt;}
.y7b{bottom:570.946667pt;}
.ya3{bottom:572.066667pt;}
.y22{bottom:576.866667pt;}
.y166{bottom:579.773333pt;}
.y37{bottom:581.693333pt;}
.y5c{bottom:586.493333pt;}
.y6c{bottom:587.453333pt;}
.y192{bottom:589.693333pt;}
.y131{bottom:592.253333pt;}
.yd5{bottom:593.533333pt;}
.y17c{bottom:597.053333pt;}
.y49{bottom:598.173333pt;}
.yb2{bottom:602.653333pt;}
.y88{bottom:602.973333pt;}
.y11b{bottom:606.013333pt;}
.y14f{bottom:607.773333pt;}
.ya2{bottom:608.893333pt;}
.y15a{bottom:613.373333pt;}
.y21{bottom:613.693333pt;}
.yfd{bottom:616.733333pt;}
.y7a{bottom:618.493333pt;}
.y6b{bottom:624.253333pt;}
.y36{bottom:629.053333pt;}
.yb{bottom:633.091200pt;}
.y5b{bottom:633.853333pt;}
.y48{bottom:634.973333pt;}
.y13c{bottom:639.773333pt;}
.y17b{bottom:644.573333pt;}
.y13a{bottom:645.373333pt;}
.ya1{bottom:645.693333pt;}
.y20{bottom:650.493333pt;}
.y11a{bottom:653.533333pt;}
.y14e{bottom:655.293333pt;}
.ya{bottom:660.291200pt;}
.y6a{bottom:661.053333pt;}
.y79{bottom:665.853333pt;}
.y47{bottom:671.773333pt;}
.y35{bottom:676.573333pt;}
.y5a{bottom:681.373333pt;}
.ya0{bottom:682.493333pt;}
.y1f{bottom:687.293333pt;}
.y119{bottom:690.333333pt;}
.y17a{bottom:692.093333pt;}
.y69{bottom:697.853333pt;}
.y130{bottom:702.653333pt;}
.y46{bottom:708.573333pt;}
.y78{bottom:713.373333pt;}
.y9{bottom:714.691200pt;}
.y9f{bottom:719.293333pt;}
.y34{bottom:724.093333pt;}
.y118{bottom:727.133333pt;}
.y59{bottom:728.893333pt;}
.y1e{bottom:734.653333pt;}
.y8{bottom:737.091200pt;}
.y12f{bottom:739.453333pt;}
.y45{bottom:745.373333pt;}
.y144{bottom:750.173333pt;}
.y9e{bottom:756.093333pt;}
.y77{bottom:760.893333pt;}
.y117{bottom:763.933333pt;}
.y1d{bottom:771.453333pt;}
.y58{bottom:776.253333pt;}
.y10f{bottom:781.853333pt;}
.y7{bottom:781.891200pt;}
.y44{bottom:782.173333pt;}
.y143{bottom:786.973333pt;}
.y9d{bottom:792.893333pt;}
.y95{bottom:797.733333pt;}
.y15d{bottom:807.973333pt;}
.y1c{bottom:808.293333pt;}
.y116{bottom:809.413333pt;}
.y33{bottom:819.013333pt;}
.y57{bottom:823.813333pt;}
.y9c{bottom:829.733333pt;}
.y142{bottom:834.213333pt;}
.y94{bottom:834.533333pt;}
.y1b{bottom:845.093333pt;}
.ya9{bottom:855.493333pt;}
.y43{bottom:855.813333pt;}
.y32{bottom:866.533333pt;}
.y12e{bottom:871.013333pt;}
.y56{bottom:871.333333pt;}
.y1a{bottom:881.893333pt;}
.y5{bottom:889.538800pt;}
.y15e{bottom:892.293333pt;}
.y42{bottom:892.613333pt;}
.y31{bottom:903.333333pt;}
.y4{bottom:915.138800pt;}
.y55{bottom:918.693333pt;}
.yb1{bottom:929.093333pt;}
.y19{bottom:929.413333pt;}
.y30{bottom:940.133333pt;}
.y3{bottom:940.738800pt;}
.y93{bottom:965.893333pt;}
.y18{bottom:966.213333pt;}
.y2{bottom:966.338800pt;}
.y2f{bottom:976.933333pt;}
.y1{bottom:991.938800pt;}
.ye6{bottom:1012.933333pt;}
.y17{bottom:1013.413333pt;}
.y2e{bottom:1013.760000pt;}
.y16{bottom:1061.600000pt;}
.hb{height:36.800000pt;}
.h3{height:54.359375pt;}
.h9{height:57.375000pt;}
.h6{height:58.563750pt;}
.h2{height:62.333333pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.hf{height:65.781915pt;}
.h4{height:66.007812pt;}
.ha{height:66.625000pt;}
.hc{height:147.226667pt;}
.hd{height:148.013333pt;}
.he{height:184.026667pt;}
.h0{height:1122.520000pt;}
.h5{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:289.933333pt;}
.w4{width:289.973333pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.872000pt;}
.x24{left:61.466667pt;}
.x1{left:70.466800pt;}
.x2{left:80.728133pt;}
.x23{left:106.600000pt;}
.xf{left:113.472000pt;}
.x1f{left:119.872000pt;}
.x2a{left:124.352000pt;}
.x27{left:127.232000pt;}
.x1b{left:133.466667pt;}
.x26{left:137.466667pt;}
.x2b{left:143.866667pt;}
.x14{left:145.466667pt;}
.x6{left:152.748133pt;}
.xa{left:154.557733pt;}
.x19{left:156.506667pt;}
.x13{left:160.666667pt;}
.x1d{left:165.306667pt;}
.x3{left:187.363467pt;}
.x9{left:200.549600pt;}
.x8{left:206.448667pt;}
.x17{left:208.026667pt;}
.x4{left:228.287867pt;}
.xb{left:246.453200pt;}
.x20{left:249.946667pt;}
.x7{left:264.825333pt;}
.x10{left:283.426667pt;}
.x1e{left:294.946667pt;}
.x21{left:300.706667pt;}
.x5{left:306.618667pt;}
.x29{left:309.826667pt;}
.xd{left:322.696800pt;}
.xe{left:335.138133pt;}
.xc{left:359.209733pt;}
.x28{left:360.546667pt;}
.x15{left:365.826667pt;}
.x18{left:396.866667pt;}
.x1c{left:642.213333pt;}
.x22{left:647.493333pt;}
.x2c{left:658.213333pt;}
.x12{left:665.573333pt;}
.x16{left:666.853333pt;}
.x11{left:673.093333pt;}
.x1a{left:702.693333pt;}
}




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