
    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_b27f632be652e4bfdee540fd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_056ad9a6ed5e5c08c3d0db00.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f31d6a4c7cab31ada9795a5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0193d29670d8ab2db7b976ee.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_e81563d4899c34db6e6aabd6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_a1e3fd791caeb937a1a1ef43.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c331862f88a5214601664acc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c8a61e90cb627c2191db6c97.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d1e405e0a2cccd164d493ba2.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls17{letter-spacing:-1.080000px;}
.ls8{letter-spacing:-0.972000px;}
.ls7{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.702000px;}
.lsf{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.341400px;}
.ls1a{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.018000px;}
.ls6{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.153360px;}
.ls10{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.334080px;}
.lsd{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.612000px;}
.ls12{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.993360px;}
.lsc{letter-spacing:25.308000px;}
.ls1{letter-spacing:28.062720px;}
.ls14{letter-spacing:52.668000px;}
.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;}
}
.ws6{word-spacing:-20.718600px;}
.wsf{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.431360px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.840000px;}
.wsc{word-spacing:-14.112000px;}
.wsd{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.518000px;}
.ws0{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.ws13{word-spacing:-13.392000px;}
.ws12{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.798000px;}
.ws4{word-spacing:-12.672000px;}
.ws5{word-spacing:-12.528000px;}
.ws7{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._24{width:2.478960px;}
._6{width:3.539520px;}
._12{width:4.606800px;}
._4{width:5.616000px;}
._3{width:6.804000px;}
._10{width:7.884000px;}
._11{width:8.956800px;}
._1e{width:10.113120px;}
._14{width:11.118480px;}
._5{width:12.395520px;}
._21{width:14.634000px;}
._f{width:15.670320px;}
._16{width:16.827360px;}
._a{width:18.772560px;}
._9{width:19.872000px;}
._19{width:21.081840px;}
._13{width:22.665600px;}
._7{width:24.246000px;}
._23{width:25.390080px;}
._c{width:26.676000px;}
._1f{width:28.188000px;}
._b{width:29.592000px;}
._8{width:30.834000px;}
._d{width:32.022000px;}
._e{width:33.440160px;}
._25{width:34.678320px;}
._1a{width:35.910000px;}
._1b{width:36.911520px;}
._1d{width:38.232000px;}
._22{width:40.043520px;}
._18{width:41.094000px;}
._17{width:42.310320px;}
._1c{width:43.445520px;}
._2b{width:44.705520px;}
._27{width:46.062000px;}
._26{width:47.088000px;}
._38{width:48.816000px;}
._37{width:49.820400px;}
._30{width:51.089040px;}
._2f{width:52.434000px;}
._32{width:53.730000px;}
._31{width:55.350000px;}
._2a{width:56.430000px;}
._15{width:57.539520px;}
._2e{width:58.753440px;}
._2d{width:59.832000px;}
._33{width:61.358160px;}
._4c{width:63.882000px;}
._2c{width:65.394000px;}
._20{width:67.932000px;}
._29{width:75.492000px;}
._28{width:76.518000px;}
._50{width:80.057520px;}
._4f{width:81.378000px;}
._36{width:82.998000px;}
._4d{width:92.610000px;}
._3d{width:99.900000px;}
._35{width:101.441520px;}
._34{width:102.978000px;}
._53{width:105.894000px;}
._52{width:107.136000px;}
._44{width:111.834000px;}
._4b{width:118.984320px;}
._4a{width:120.557520px;}
._56{width:133.758000px;}
._42{width:141.426000px;}
._47{width:148.878000px;}
._45{width:155.784000px;}
._41{width:160.002000px;}
._48{width:164.646000px;}
._39{width:166.482000px;}
._46{width:170.370000px;}
._3f{width:181.710000px;}
._3c{width:196.128000px;}
._3b{width:198.018000px;}
._51{width:237.096000px;}
._4e{width:262.818000px;}
._55{width:279.018000px;}
._40{width:306.288000px;}
._3e{width:342.288000px;}
._3a{width:420.444000px;}
._54{width:441.342000px;}
._49{width:469.044000px;}
._43{width:603.720000px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y47{bottom:6.990000px;}
.y2c{bottom:13.605000px;}
.y8{bottom:22.500000px;}
.y40{bottom:40.530000px;}
.y7{bottom:41.040000px;}
.y6{bottom:56.880000px;}
.y30{bottom:60.585000px;}
.y95{bottom:82.620000px;}
.y149{bottom:82.800000px;}
.y27{bottom:83.340000px;}
.y1c{bottom:84.420000px;}
.y81{bottom:84.600000px;}
.y3d{bottom:89.130000px;}
.y129{bottom:89.640000px;}
.y10c{bottom:92.700000px;}
.yda{bottom:93.240000px;}
.yc2{bottom:93.600000px;}
.y94{bottom:100.440000px;}
.y148{bottom:100.800000px;}
.y26{bottom:101.160000px;}
.y1b{bottom:102.240000px;}
.y80{bottom:102.420000px;}
.y128{bottom:107.460000px;}
.y3c{bottom:108.930000px;}
.y10b{bottom:110.520000px;}
.yc1{bottom:111.420000px;}
.y93{bottom:118.260000px;}
.y147{bottom:118.620000px;}
.y25{bottom:118.980000px;}
.y1a{bottom:120.060000px;}
.y7f{bottom:120.240000px;}
.yd9{bottom:120.420000px;}
.y127{bottom:125.280000px;}
.y10a{bottom:128.340000px;}
.y3b{bottom:128.730000px;}
.yc0{bottom:129.240000px;}
.y92{bottom:136.080000px;}
.y146{bottom:136.440000px;}
.y24{bottom:136.980000px;}
.y19{bottom:138.060000px;}
.yd8{bottom:138.240000px;}
.y126{bottom:143.100000px;}
.y29{bottom:144.870000px;}
.y109{bottom:146.160000px;}
.ybf{bottom:147.060000px;}
.y3a{bottom:148.755000px;}
.y91{bottom:153.900000px;}
.y145{bottom:154.260000px;}
.y23{bottom:154.800000px;}
.y18{bottom:155.880000px;}
.yd7{bottom:156.060000px;}
.y125{bottom:161.100000px;}
.ybe{bottom:164.880000px;}
.y108{bottom:165.960000px;}
.y39{bottom:168.555000px;}
.y90{bottom:171.900000px;}
.y144{bottom:172.080000px;}
.y22{bottom:172.620000px;}
.y17{bottom:173.700000px;}
.y7e{bottom:173.880000px;}
.y124{bottom:178.920000px;}
.ybd{bottom:182.880000px;}
.y38{bottom:188.355000px;}
.y8f{bottom:189.720000px;}
.y143{bottom:189.900000px;}
.y21{bottom:190.440000px;}
.y7d{bottom:191.340000px;}
.y16{bottom:191.520000px;}
.yd6{bottom:191.880000px;}
.y123{bottom:196.740000px;}
.y107{bottom:198.900000px;}
.ybc{bottom:200.700000px;}
.y8e{bottom:207.570000px;}
.y142{bottom:207.930000px;}
.y37{bottom:208.155000px;}
.y20{bottom:208.290000px;}
.y7c{bottom:209.190000px;}
.y15{bottom:209.370000px;}
.yd5{bottom:209.730000px;}
.y122{bottom:214.590000px;}
.y106{bottom:216.750000px;}
.ybb{bottom:218.550000px;}
.y8d{bottom:225.390000px;}
.y141{bottom:225.750000px;}
.y1f{bottom:226.290000px;}
.y14{bottom:227.190000px;}
.yd4{bottom:227.550000px;}
.y36{bottom:227.955000px;}
.y7b{bottom:229.350000px;}
.y121{bottom:232.410000px;}
.y105{bottom:234.570000px;}
.yba{bottom:236.370000px;}
.y140{bottom:243.570000px;}
.y1e{bottom:244.110000px;}
.y13{bottom:245.190000px;}
.yd3{bottom:245.370000px;}
.y35{bottom:247.935000px;}
.y120{bottom:250.410000px;}
.y8c{bottom:252.210000px;}
.y104{bottom:252.390000px;}
.yb9{bottom:254.190000px;}
.y7a{bottom:255.090000px;}
.y13f{bottom:261.390000px;}
.y1d{bottom:261.930000px;}
.yd2{bottom:263.190000px;}
.y12{bottom:264.990000px;}
.y34{bottom:267.735000px;}
.y11f{bottom:268.230000px;}
.y8b{bottom:270.030000px;}
.y103{bottom:270.210000px;}
.yb8{bottom:272.190000px;}
.y13e{bottom:279.210000px;}
.yd1{bottom:281.190000px;}
.y11e{bottom:286.050000px;}
.y79{bottom:288.030000px;}
.yb7{bottom:290.010000px;}
.y13d{bottom:297.030000px;}
.yd0{bottom:299.010000px;}
.y11{bottom:300.630000px;}
.y11d{bottom:303.870000px;}
.y78{bottom:305.850000px;}
.y102{bottom:306.030000px;}
.yb6{bottom:307.830000px;}
.y13c{bottom:315.030000px;}
.ycf{bottom:316.830000px;}
.y33{bottom:316.980000px;}
.y11c{bottom:321.690000px;}
.y77{bottom:323.670000px;}
.y101{bottom:323.850000px;}
.yb5{bottom:325.650000px;}
.y13b{bottom:332.850000px;}
.yce{bottom:334.650000px;}
.y41{bottom:337.170000px;}
.y11b{bottom:339.510000px;}
.y76{bottom:341.490000px;}
.y100{bottom:341.670000px;}
.yb4{bottom:343.470000px;}
.y13a{bottom:350.670000px;}
.ycd{bottom:352.470000px;}
.y3f{bottom:357.510000px;}
.y75{bottom:359.310000px;}
.yff{bottom:359.490000px;}
.yb3{bottom:361.290000px;}
.y139{bottom:368.490000px;}
.ycc{bottom:370.290000px;}
.y11a{bottom:375.330000px;}
.y74{bottom:377.310000px;}
.yb2{bottom:379.290000px;}
.y3e{bottom:386.310000px;}
.ycb{bottom:388.290000px;}
.y119{bottom:393.150000px;}
.y73{bottom:395.130000px;}
.yfe{bottom:395.310000px;}
.yb1{bottom:397.110000px;}
.y138{bottom:404.310000px;}
.yca{bottom:406.110000px;}
.y118{bottom:410.970000px;}
.y72{bottom:412.950000px;}
.yfd{bottom:413.130000px;}
.yb0{bottom:414.570000px;}
.y137{bottom:422.130000px;}
.yc9{bottom:423.930000px;}
.y117{bottom:428.790000px;}
.y71{bottom:430.770000px;}
.yfc{bottom:430.950000px;}
.yaf{bottom:432.390000px;}
.y136{bottom:439.950000px;}
.yc8{bottom:441.795000px;}
.y116{bottom:446.835000px;}
.y70{bottom:448.635000px;}
.yfb{bottom:448.815000px;}
.y135{bottom:457.815000px;}
.yae{bottom:459.615000px;}
.y115{bottom:464.655000px;}
.y6f{bottom:466.455000px;}
.yfa{bottom:466.635000px;}
.y134{bottom:475.635000px;}
.yad{bottom:477.435000px;}
.y114{bottom:482.475000px;}
.y6e{bottom:484.455000px;}
.y133{bottom:493.455000px;}
.yac{bottom:495.435000px;}
.y14d{bottom:496.515000px;}
.y6d{bottom:502.275000px;}
.yf9{bottom:502.455000px;}
.y132{bottom:511.455000px;}
.yab{bottom:513.255000px;}
.y8a{bottom:519.735000px;}
.y6c{bottom:520.095000px;}
.yf8{bottom:520.275000px;}
.y14c{bottom:526.215000px;}
.y131{bottom:529.275000px;}
.yaa{bottom:531.075000px;}
.y89{bottom:537.555000px;}
.yf7{bottom:538.095000px;}
.y113{bottom:538.275000px;}
.y6b{bottom:546.915000px;}
.y130{bottom:547.095000px;}
.ya9{bottom:548.895000px;}
.yf6{bottom:555.915000px;}
.y14b{bottom:556.095000px;}
.y6a{bottom:564.735000px;}
.y12f{bottom:564.915000px;}
.ya8{bottom:566.715000px;}
.y14a{bottom:573.375000px;}
.yf5{bottom:573.735000px;}
.y69{bottom:582.735000px;}
.ya7{bottom:584.715000px;}
.yf4{bottom:591.735000px;}
.y68{bottom:600.555000px;}
.y12e{bottom:600.735000px;}
.ya6{bottom:602.535000px;}
.yf3{bottom:609.555000px;}
.y67{bottom:618.375000px;}
.y12d{bottom:618.555000px;}
.y10{bottom:620.355000px;}
.yf2{bottom:627.375000px;}
.y66{bottom:636.195000px;}
.y12c{bottom:636.375000px;}
.ya5{bottom:638.175000px;}
.yf1{bottom:645.195000px;}
.y65{bottom:654.015000px;}
.y12b{bottom:654.195000px;}
.ya4{bottom:655.995000px;}
.yf{bottom:661.575000px;}
.yf0{bottom:662.655000px;}
.y112{bottom:663.015000px;}
.y64{bottom:671.835000px;}
.y12a{bottom:672.015000px;}
.ya3{bottom:673.815000px;}
.ye{bottom:677.265000px;}
.y111{bottom:680.865000px;}
.y63{bottom:689.865000px;}
.yc7{bottom:691.485000px;}
.ya2{bottom:691.845000px;}
.y110{bottom:698.865000px;}
.y32{bottom:702.465000px;}
.y62{bottom:707.685000px;}
.yef{bottom:707.865000px;}
.ya1{bottom:709.665000px;}
.y2f{bottom:709.920000px;}
.yc6{bottom:711.645000px;}
.y10f{bottom:716.685000px;}
.y61{bottom:725.505000px;}
.yee{bottom:725.685000px;}
.ya0{bottom:727.485000px;}
.y10e{bottom:734.505000px;}
.yc5{bottom:737.385000px;}
.yd{bottom:740.265000px;}
.y60{bottom:743.325000px;}
.yed{bottom:743.505000px;}
.y9f{bottom:745.305000px;}
.y10d{bottom:752.325000px;}
.y88{bottom:761.145000px;}
.yec{bottom:761.325000px;}
.y9e{bottom:763.125000px;}
.y31{bottom:767.625000px;}
.y5f{bottom:770.145000px;}
.y87{bottom:779.145000px;}
.y9d{bottom:781.125000px;}
.y5e{bottom:788.145000px;}
.yc{bottom:789.765000px;}
.y86{bottom:796.965000px;}
.yeb{bottom:797.145000px;}
.y9c{bottom:798.945000px;}
.y5d{bottom:805.965000px;}
.y85{bottom:814.785000px;}
.yea{bottom:814.965000px;}
.y9b{bottom:816.405000px;}
.y2e{bottom:816.585000px;}
.y5c{bottom:823.785000px;}
.y84{bottom:832.605000px;}
.ye9{bottom:832.785000px;}
.y9a{bottom:836.565000px;}
.y5b{bottom:841.605000px;}
.ye8{bottom:850.605000px;}
.y5a{bottom:859.425000px;}
.y2b{bottom:861.840000px;}
.y99{bottom:862.305000px;}
.ye7{bottom:868.425000px;}
.y2d{bottom:875.445000px;}
.y59{bottom:877.245000px;}
.ye6{bottom:886.245000px;}
.y58{bottom:895.245000px;}
.y2a{bottom:900.105000px;}
.ye5{bottom:904.245000px;}
.y57{bottom:913.110000px;}
.ye4{bottom:922.110000px;}
.y56{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.ye3{bottom:939.930000px;}
.y28{bottom:941.400000px;}
.y55{bottom:948.750000px;}
.y46{bottom:955.800000px;}
.ye2{bottom:957.750000px;}
.y54{bottom:966.570000px;}
.ye1{bottom:975.570000px;}
.y53{bottom:984.570000px;}
.y45{bottom:989.430000px;}
.ye0{bottom:993.570000px;}
.y52{bottom:1002.390000px;}
.ydf{bottom:1011.390000px;}
.y44{bottom:1015.710000px;}
.y51{bottom:1020.210000px;}
.yde{bottom:1029.210000px;}
.y50{bottom:1038.030000px;}
.y43{bottom:1041.990000px;}
.ydd{bottom:1047.030000px;}
.y4f{bottom:1055.850000px;}
.ydc{bottom:1064.850000px;}
.y42{bottom:1068.450000px;}
.y4e{bottom:1073.670000px;}
.y83{bottom:1082.670000px;}
.y4d{bottom:1091.670000px;}
.y82{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.y98{bottom:1109.490000px;}
.y4c{bottom:1118.490000px;}
.yc4{bottom:1126.950000px;}
.y97{bottom:1127.310000px;}
.y4b{bottom:1136.310000px;}
.yc3{bottom:1144.770000px;}
.y96{bottom:1145.130000px;}
.y4a{bottom:1154.160000px;}
.y49{bottom:1171.980000px;}
.ydb{bottom:1189.440000px;}
.y48{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h13{height:40.985156px;}
.h1e{height:48.410156px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.h1b{height:54.421875px;}
.h1d{height:55.503491px;}
.h8{height:55.825312px;}
.h1a{height:56.214844px;}
.h16{height:58.621992px;}
.h12{height:58.651172px;}
.hc{height:59.092031px;}
.h1c{height:59.212031px;}
.h17{height:60.226875px;}
.h6{height:65.010937px;}
.h14{height:66.757500px;}
.hf{height:66.780000px;}
.h10{height:72.326250px;}
.h11{height:74.160000px;}
.h19{height:78.367500px;}
.hb{height:80.949375px;}
.he{height:84.898125px;}
.h18{height:132.480000px;}
.hd{height:160.380000px;}
.h15{height:290.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:774.540000px;}
.w4{width:783.360000px;}
.w5{width:784.080000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xe{left:10.800000px;}
.x13{left:51.660000px;}
.x5{left:54.000000px;}
.x16{left:61.200000px;}
.x15{left:65.160000px;}
.x17{left:72.000000px;}
.xc{left:81.000000px;}
.x1{left:100.080000px;}
.x12{left:105.336000px;}
.x1f{left:108.036000px;}
.x18{left:109.650000px;}
.xf{left:112.716000px;}
.x6{left:161.670000px;}
.x1e{left:170.895000px;}
.xa{left:174.090000px;}
.x1d{left:198.360000px;}
.x10{left:238.755000px;}
.x1b{left:254.730000px;}
.x1c{left:282.315000px;}
.x19{left:288.435000px;}
.x14{left:338.295000px;}
.x7{left:356.655000px;}
.x1a{left:358.635000px;}
.x3{left:367.920000px;}
.x4{left:462.960000px;}
.xd{left:465.945000px;}
.x20{left:492.945000px;}
.x21{left:519.945000px;}
.x11{left:600.045000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls7{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.624000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.303467pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.136320pt;}
.ls10{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.296960pt;}
.lsd{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.544000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.882987pt;}
.lsc{letter-spacing:22.496000pt;}
.ls1{letter-spacing:24.944640pt;}
.ls14{letter-spacing:46.816000pt;}
.ws6{word-spacing:-18.416533pt;}
.wsf{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.272320pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.080000pt;}
.wsc{word-spacing:-12.544000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.ws13{word-spacing:-11.904000pt;}
.ws12{word-spacing:-11.680000pt;}
.wsb{word-spacing:-11.376000pt;}
.ws4{word-spacing:-11.264000pt;}
.ws5{word-spacing:-11.136000pt;}
.ws7{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._24{width:2.203520pt;}
._6{width:3.146240pt;}
._12{width:4.094933pt;}
._4{width:4.992000pt;}
._3{width:6.048000pt;}
._10{width:7.008000pt;}
._11{width:7.961600pt;}
._1e{width:8.989440pt;}
._14{width:9.883093pt;}
._5{width:11.018240pt;}
._21{width:13.008000pt;}
._f{width:13.929173pt;}
._16{width:14.957653pt;}
._a{width:16.686720pt;}
._9{width:17.664000pt;}
._19{width:18.739413pt;}
._13{width:20.147200pt;}
._7{width:21.552000pt;}
._23{width:22.568960pt;}
._c{width:23.712000pt;}
._1f{width:25.056000pt;}
._b{width:26.304000pt;}
._8{width:27.408000pt;}
._d{width:28.464000pt;}
._e{width:29.724587pt;}
._25{width:30.825173pt;}
._1a{width:31.920000pt;}
._1b{width:32.810240pt;}
._1d{width:33.984000pt;}
._22{width:35.594240pt;}
._18{width:36.528000pt;}
._17{width:37.609173pt;}
._1c{width:38.618240pt;}
._2b{width:39.738240pt;}
._27{width:40.944000pt;}
._26{width:41.856000pt;}
._38{width:43.392000pt;}
._37{width:44.284800pt;}
._30{width:45.412480pt;}
._2f{width:46.608000pt;}
._32{width:47.760000pt;}
._31{width:49.200000pt;}
._2a{width:50.160000pt;}
._15{width:51.146240pt;}
._2e{width:52.225280pt;}
._2d{width:53.184000pt;}
._33{width:54.540587pt;}
._4c{width:56.784000pt;}
._2c{width:58.128000pt;}
._20{width:60.384000pt;}
._29{width:67.104000pt;}
._28{width:68.016000pt;}
._50{width:71.162240pt;}
._4f{width:72.336000pt;}
._36{width:73.776000pt;}
._4d{width:82.320000pt;}
._3d{width:88.800000pt;}
._35{width:90.170240pt;}
._34{width:91.536000pt;}
._53{width:94.128000pt;}
._52{width:95.232000pt;}
._44{width:99.408000pt;}
._4b{width:105.763840pt;}
._4a{width:107.162240pt;}
._56{width:118.896000pt;}
._42{width:125.712000pt;}
._47{width:132.336000pt;}
._45{width:138.474667pt;}
._41{width:142.224000pt;}
._48{width:146.352000pt;}
._39{width:147.984000pt;}
._46{width:151.440000pt;}
._3f{width:161.520000pt;}
._3c{width:174.336000pt;}
._3b{width:176.016000pt;}
._51{width:210.752000pt;}
._4e{width:233.616000pt;}
._55{width:248.016000pt;}
._40{width:272.256000pt;}
._3e{width:304.256000pt;}
._3a{width:373.728000pt;}
._54{width:392.304000pt;}
._49{width:416.928000pt;}
._43{width:536.640000pt;}
._2{width:2580.859733pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y47{bottom:6.213333pt;}
.y2c{bottom:12.093333pt;}
.y8{bottom:20.000000pt;}
.y40{bottom:36.026667pt;}
.y7{bottom:36.480000pt;}
.y6{bottom:50.560000pt;}
.y30{bottom:53.853333pt;}
.y95{bottom:73.440000pt;}
.y149{bottom:73.600000pt;}
.y27{bottom:74.080000pt;}
.y1c{bottom:75.040000pt;}
.y81{bottom:75.200000pt;}
.y3d{bottom:79.226667pt;}
.y129{bottom:79.680000pt;}
.y10c{bottom:82.400000pt;}
.yda{bottom:82.880000pt;}
.yc2{bottom:83.200000pt;}
.y94{bottom:89.280000pt;}
.y148{bottom:89.600000pt;}
.y26{bottom:89.920000pt;}
.y1b{bottom:90.880000pt;}
.y80{bottom:91.040000pt;}
.y128{bottom:95.520000pt;}
.y3c{bottom:96.826667pt;}
.y10b{bottom:98.240000pt;}
.yc1{bottom:99.040000pt;}
.y93{bottom:105.120000pt;}
.y147{bottom:105.440000pt;}
.y25{bottom:105.760000pt;}
.y1a{bottom:106.720000pt;}
.y7f{bottom:106.880000pt;}
.yd9{bottom:107.040000pt;}
.y127{bottom:111.360000pt;}
.y10a{bottom:114.080000pt;}
.y3b{bottom:114.426667pt;}
.yc0{bottom:114.880000pt;}
.y92{bottom:120.960000pt;}
.y146{bottom:121.280000pt;}
.y24{bottom:121.760000pt;}
.y19{bottom:122.720000pt;}
.yd8{bottom:122.880000pt;}
.y126{bottom:127.200000pt;}
.y29{bottom:128.773333pt;}
.y109{bottom:129.920000pt;}
.ybf{bottom:130.720000pt;}
.y3a{bottom:132.226667pt;}
.y91{bottom:136.800000pt;}
.y145{bottom:137.120000pt;}
.y23{bottom:137.600000pt;}
.y18{bottom:138.560000pt;}
.yd7{bottom:138.720000pt;}
.y125{bottom:143.200000pt;}
.ybe{bottom:146.560000pt;}
.y108{bottom:147.520000pt;}
.y39{bottom:149.826667pt;}
.y90{bottom:152.800000pt;}
.y144{bottom:152.960000pt;}
.y22{bottom:153.440000pt;}
.y17{bottom:154.400000pt;}
.y7e{bottom:154.560000pt;}
.y124{bottom:159.040000pt;}
.ybd{bottom:162.560000pt;}
.y38{bottom:167.426667pt;}
.y8f{bottom:168.640000pt;}
.y143{bottom:168.800000pt;}
.y21{bottom:169.280000pt;}
.y7d{bottom:170.080000pt;}
.y16{bottom:170.240000pt;}
.yd6{bottom:170.560000pt;}
.y123{bottom:174.880000pt;}
.y107{bottom:176.800000pt;}
.ybc{bottom:178.400000pt;}
.y8e{bottom:184.506667pt;}
.y142{bottom:184.826667pt;}
.y37{bottom:185.026667pt;}
.y20{bottom:185.146667pt;}
.y7c{bottom:185.946667pt;}
.y15{bottom:186.106667pt;}
.yd5{bottom:186.426667pt;}
.y122{bottom:190.746667pt;}
.y106{bottom:192.666667pt;}
.ybb{bottom:194.266667pt;}
.y8d{bottom:200.346667pt;}
.y141{bottom:200.666667pt;}
.y1f{bottom:201.146667pt;}
.y14{bottom:201.946667pt;}
.yd4{bottom:202.266667pt;}
.y36{bottom:202.626667pt;}
.y7b{bottom:203.866667pt;}
.y121{bottom:206.586667pt;}
.y105{bottom:208.506667pt;}
.yba{bottom:210.106667pt;}
.y140{bottom:216.506667pt;}
.y1e{bottom:216.986667pt;}
.y13{bottom:217.946667pt;}
.yd3{bottom:218.106667pt;}
.y35{bottom:220.386667pt;}
.y120{bottom:222.586667pt;}
.y8c{bottom:224.186667pt;}
.y104{bottom:224.346667pt;}
.yb9{bottom:225.946667pt;}
.y7a{bottom:226.746667pt;}
.y13f{bottom:232.346667pt;}
.y1d{bottom:232.826667pt;}
.yd2{bottom:233.946667pt;}
.y12{bottom:235.546667pt;}
.y34{bottom:237.986667pt;}
.y11f{bottom:238.426667pt;}
.y8b{bottom:240.026667pt;}
.y103{bottom:240.186667pt;}
.yb8{bottom:241.946667pt;}
.y13e{bottom:248.186667pt;}
.yd1{bottom:249.946667pt;}
.y11e{bottom:254.266667pt;}
.y79{bottom:256.026667pt;}
.yb7{bottom:257.786667pt;}
.y13d{bottom:264.026667pt;}
.yd0{bottom:265.786667pt;}
.y11{bottom:267.226667pt;}
.y11d{bottom:270.106667pt;}
.y78{bottom:271.866667pt;}
.y102{bottom:272.026667pt;}
.yb6{bottom:273.626667pt;}
.y13c{bottom:280.026667pt;}
.ycf{bottom:281.626667pt;}
.y33{bottom:281.760000pt;}
.y11c{bottom:285.946667pt;}
.y77{bottom:287.706667pt;}
.y101{bottom:287.866667pt;}
.yb5{bottom:289.466667pt;}
.y13b{bottom:295.866667pt;}
.yce{bottom:297.466667pt;}
.y41{bottom:299.706667pt;}
.y11b{bottom:301.786667pt;}
.y76{bottom:303.546667pt;}
.y100{bottom:303.706667pt;}
.yb4{bottom:305.306667pt;}
.y13a{bottom:311.706667pt;}
.ycd{bottom:313.306667pt;}
.y3f{bottom:317.786667pt;}
.y75{bottom:319.386667pt;}
.yff{bottom:319.546667pt;}
.yb3{bottom:321.146667pt;}
.y139{bottom:327.546667pt;}
.ycc{bottom:329.146667pt;}
.y11a{bottom:333.626667pt;}
.y74{bottom:335.386667pt;}
.yb2{bottom:337.146667pt;}
.y3e{bottom:343.386667pt;}
.ycb{bottom:345.146667pt;}
.y119{bottom:349.466667pt;}
.y73{bottom:351.226667pt;}
.yfe{bottom:351.386667pt;}
.yb1{bottom:352.986667pt;}
.y138{bottom:359.386667pt;}
.yca{bottom:360.986667pt;}
.y118{bottom:365.306667pt;}
.y72{bottom:367.066667pt;}
.yfd{bottom:367.226667pt;}
.yb0{bottom:368.506667pt;}
.y137{bottom:375.226667pt;}
.yc9{bottom:376.826667pt;}
.y117{bottom:381.146667pt;}
.y71{bottom:382.906667pt;}
.yfc{bottom:383.066667pt;}
.yaf{bottom:384.346667pt;}
.y136{bottom:391.066667pt;}
.yc8{bottom:392.706667pt;}
.y116{bottom:397.186667pt;}
.y70{bottom:398.786667pt;}
.yfb{bottom:398.946667pt;}
.y135{bottom:406.946667pt;}
.yae{bottom:408.546667pt;}
.y115{bottom:413.026667pt;}
.y6f{bottom:414.626667pt;}
.yfa{bottom:414.786667pt;}
.y134{bottom:422.786667pt;}
.yad{bottom:424.386667pt;}
.y114{bottom:428.866667pt;}
.y6e{bottom:430.626667pt;}
.y133{bottom:438.626667pt;}
.yac{bottom:440.386667pt;}
.y14d{bottom:441.346667pt;}
.y6d{bottom:446.466667pt;}
.yf9{bottom:446.626667pt;}
.y132{bottom:454.626667pt;}
.yab{bottom:456.226667pt;}
.y8a{bottom:461.986667pt;}
.y6c{bottom:462.306667pt;}
.yf8{bottom:462.466667pt;}
.y14c{bottom:467.746667pt;}
.y131{bottom:470.466667pt;}
.yaa{bottom:472.066667pt;}
.y89{bottom:477.826667pt;}
.yf7{bottom:478.306667pt;}
.y113{bottom:478.466667pt;}
.y6b{bottom:486.146667pt;}
.y130{bottom:486.306667pt;}
.ya9{bottom:487.906667pt;}
.yf6{bottom:494.146667pt;}
.y14b{bottom:494.306667pt;}
.y6a{bottom:501.986667pt;}
.y12f{bottom:502.146667pt;}
.ya8{bottom:503.746667pt;}
.y14a{bottom:509.666667pt;}
.yf5{bottom:509.986667pt;}
.y69{bottom:517.986667pt;}
.ya7{bottom:519.746667pt;}
.yf4{bottom:525.986667pt;}
.y68{bottom:533.826667pt;}
.y12e{bottom:533.986667pt;}
.ya6{bottom:535.586667pt;}
.yf3{bottom:541.826667pt;}
.y67{bottom:549.666667pt;}
.y12d{bottom:549.826667pt;}
.y10{bottom:551.426667pt;}
.yf2{bottom:557.666667pt;}
.y66{bottom:565.506667pt;}
.y12c{bottom:565.666667pt;}
.ya5{bottom:567.266667pt;}
.yf1{bottom:573.506667pt;}
.y65{bottom:581.346667pt;}
.y12b{bottom:581.506667pt;}
.ya4{bottom:583.106667pt;}
.yf{bottom:588.066667pt;}
.yf0{bottom:589.026667pt;}
.y112{bottom:589.346667pt;}
.y64{bottom:597.186667pt;}
.y12a{bottom:597.346667pt;}
.ya3{bottom:598.946667pt;}
.ye{bottom:602.013333pt;}
.y111{bottom:605.213333pt;}
.y63{bottom:613.213333pt;}
.yc7{bottom:614.653333pt;}
.ya2{bottom:614.973333pt;}
.y110{bottom:621.213333pt;}
.y32{bottom:624.413333pt;}
.y62{bottom:629.053333pt;}
.yef{bottom:629.213333pt;}
.ya1{bottom:630.813333pt;}
.y2f{bottom:631.040000pt;}
.yc6{bottom:632.573333pt;}
.y10f{bottom:637.053333pt;}
.y61{bottom:644.893333pt;}
.yee{bottom:645.053333pt;}
.ya0{bottom:646.653333pt;}
.y10e{bottom:652.893333pt;}
.yc5{bottom:655.453333pt;}
.yd{bottom:658.013333pt;}
.y60{bottom:660.733333pt;}
.yed{bottom:660.893333pt;}
.y9f{bottom:662.493333pt;}
.y10d{bottom:668.733333pt;}
.y88{bottom:676.573333pt;}
.yec{bottom:676.733333pt;}
.y9e{bottom:678.333333pt;}
.y31{bottom:682.333333pt;}
.y5f{bottom:684.573333pt;}
.y87{bottom:692.573333pt;}
.y9d{bottom:694.333333pt;}
.y5e{bottom:700.573333pt;}
.yc{bottom:702.013333pt;}
.y86{bottom:708.413333pt;}
.yeb{bottom:708.573333pt;}
.y9c{bottom:710.173333pt;}
.y5d{bottom:716.413333pt;}
.y85{bottom:724.253333pt;}
.yea{bottom:724.413333pt;}
.y9b{bottom:725.693333pt;}
.y2e{bottom:725.853333pt;}
.y5c{bottom:732.253333pt;}
.y84{bottom:740.093333pt;}
.ye9{bottom:740.253333pt;}
.y9a{bottom:743.613333pt;}
.y5b{bottom:748.093333pt;}
.ye8{bottom:756.093333pt;}
.y5a{bottom:763.933333pt;}
.y2b{bottom:766.080000pt;}
.y99{bottom:766.493333pt;}
.ye7{bottom:771.933333pt;}
.y2d{bottom:778.173333pt;}
.y59{bottom:779.773333pt;}
.ye6{bottom:787.773333pt;}
.y58{bottom:795.773333pt;}
.y2a{bottom:800.093333pt;}
.ye5{bottom:803.773333pt;}
.y57{bottom:811.653333pt;}
.ye4{bottom:819.653333pt;}
.y56{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.ye3{bottom:835.493333pt;}
.y28{bottom:836.800000pt;}
.y55{bottom:843.333333pt;}
.y46{bottom:849.600000pt;}
.ye2{bottom:851.333333pt;}
.y54{bottom:859.173333pt;}
.ye1{bottom:867.173333pt;}
.y53{bottom:875.173333pt;}
.y45{bottom:879.493333pt;}
.ye0{bottom:883.173333pt;}
.y52{bottom:891.013333pt;}
.ydf{bottom:899.013333pt;}
.y44{bottom:902.853333pt;}
.y51{bottom:906.853333pt;}
.yde{bottom:914.853333pt;}
.y50{bottom:922.693333pt;}
.y43{bottom:926.213333pt;}
.ydd{bottom:930.693333pt;}
.y4f{bottom:938.533333pt;}
.ydc{bottom:946.533333pt;}
.y42{bottom:949.733333pt;}
.y4e{bottom:954.373333pt;}
.y83{bottom:962.373333pt;}
.y4d{bottom:970.373333pt;}
.y82{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.y98{bottom:986.213333pt;}
.y4c{bottom:994.213333pt;}
.yc4{bottom:1001.733333pt;}
.y97{bottom:1002.053333pt;}
.y4b{bottom:1010.053333pt;}
.yc3{bottom:1017.573333pt;}
.y96{bottom:1017.893333pt;}
.y4a{bottom:1025.920000pt;}
.y49{bottom:1041.760000pt;}
.ydb{bottom:1057.280000pt;}
.y48{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h13{height:36.431250pt;}
.h1e{height:43.031250pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.h1b{height:48.375000pt;}
.h1d{height:49.336436pt;}
.h8{height:49.622500pt;}
.h1a{height:49.968750pt;}
.h16{height:52.108438pt;}
.h12{height:52.134375pt;}
.hc{height:52.526250pt;}
.h1c{height:52.632917pt;}
.h17{height:53.535000pt;}
.h6{height:57.787500pt;}
.h14{height:59.340000pt;}
.hf{height:59.360000pt;}
.h10{height:64.290000pt;}
.h11{height:65.920000pt;}
.h19{height:69.660000pt;}
.hb{height:71.955000pt;}
.he{height:75.465000pt;}
.h18{height:117.760000pt;}
.hd{height:142.560000pt;}
.h15{height:258.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:688.480000pt;}
.w4{width:696.320000pt;}
.w5{width:696.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xe{left:9.600000pt;}
.x13{left:45.920000pt;}
.x5{left:48.000000pt;}
.x16{left:54.400000pt;}
.x15{left:57.920000pt;}
.x17{left:64.000000pt;}
.xc{left:72.000000pt;}
.x1{left:88.960000pt;}
.x12{left:93.632000pt;}
.x1f{left:96.032000pt;}
.x18{left:97.466667pt;}
.xf{left:100.192000pt;}
.x6{left:143.706667pt;}
.x1e{left:151.906667pt;}
.xa{left:154.746667pt;}
.x1d{left:176.320000pt;}
.x10{left:212.226667pt;}
.x1b{left:226.426667pt;}
.x1c{left:250.946667pt;}
.x19{left:256.386667pt;}
.x14{left:300.706667pt;}
.x7{left:317.026667pt;}
.x1a{left:318.786667pt;}
.x3{left:327.040000pt;}
.x4{left:411.520000pt;}
.xd{left:414.173333pt;}
.x20{left:438.173333pt;}
.x21{left:462.173333pt;}
.x11{left:533.373333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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