
    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_3db7544acd865b870ed160e3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6ad21aa46f770fe7856644c6.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_5cbed677a477c2ccb1726b99.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_42cfa77c466c02ac3f523e5f.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_fb13039cbaa6d693f3e1f65e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d9ecd3e7a61835461028005e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1112b8b3b1b56e4e81b7f875.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_44038f59f7f638d75db8d003.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88c8eeb39e8c29cabb2a4cb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ee542863e4cd1f0f5618973b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.759766;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);}
.v5{vertical-align:-82.800000px;}
.v3{vertical-align:-76.500000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.870000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.014400px;}
.ls19{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.126000px;}
.ls6{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.181440px;}
.ls1c{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.305400px;}
.lsb{letter-spacing:0.336000px;}
.lsf{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.560000px;}
.ls13{letter-spacing:6.480000px;}
.ls1a{letter-spacing:6.606720px;}
.lsc{letter-spacing:7.344000px;}
.lse{letter-spacing:12.240000px;}
.ls12{letter-spacing:24.480000px;}
.ls10{letter-spacing:33.984000px;}
.ls15{letter-spacing:38.304000px;}
.ls2{letter-spacing:1154.436000px;}
.ls1{letter-spacing:1163.796000px;}
.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;}
}
.ws7{word-spacing:-54.000000px;}
.ws8{word-spacing:-36.000000px;}
.ws6{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.840000px;}
.wse{word-spacing:-15.690000px;}
.ws0{word-spacing:-14.878200px;}
.ws4{word-spacing:-14.158200px;}
.ws9{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-6.480000px;}
._16{margin-left:-5.112000px;}
._10{margin-left:-3.816000px;}
._2{margin-left:-2.233200px;}
._0{margin-left:-1.100400px;}
._1{width:1.656000px;}
._7{width:2.865840px;}
._4{width:3.974400px;}
._3{width:5.942640px;}
._d{width:7.239120px;}
._9{width:8.346240px;}
._a{width:9.512880px;}
._b{width:11.343360px;}
._c{width:12.461280px;}
._1a{width:13.513200px;}
._12{width:14.664000px;}
._15{width:15.812400px;}
._11{width:16.848000px;}
._14{width:19.380000px;}
._f{width:20.834160px;}
._e{width:21.838080px;}
._13{width:23.593920px;}
._18{width:24.646080px;}
._19{width:26.712000px;}
._5{width:28.483200px;}
._6{width:29.586240px;}
._8{width:31.420800px;}
._17{width:32.731200px;}
._23{width:33.825600px;}
._1b{width:36.288000px;}
._1c{width:37.532400px;}
._25{width:39.620400px;}
._24{width:40.752000px;}
._22{width:74.664000px;}
._20{width:219.168000px;}
._1f{width:231.480000px;}
._1e{width:398.532000px;}
._21{width:647.508000px;}
.fc4{color:rgb(68,71,70);}
.fc3{color:rgb(38,74,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:2.880000px;}
.y8e{bottom:3.960000px;}
.y2{bottom:5.220000px;}
.y8c{bottom:7.020000px;}
.y97{bottom:7.380000px;}
.y6b{bottom:8.460000px;}
.y74{bottom:9.000000px;}
.y9b{bottom:10.080000px;}
.y96{bottom:10.800000px;}
.y99{bottom:11.700000px;}
.y76{bottom:14.040000px;}
.y73{bottom:14.940000px;}
.y77{bottom:15.840000px;}
.y6f{bottom:18.360000px;}
.yb7{bottom:19.980000px;}
.yb2{bottom:24.480000px;}
.y90{bottom:24.660000px;}
.yb6{bottom:40.680000px;}
.y92{bottom:45.360000px;}
.y91{bottom:66.060000px;}
.yb0{bottom:68.940000px;}
.y71{bottom:72.900000px;}
.y94{bottom:83.700000px;}
.y36{bottom:115.740000px;}
.y69{bottom:120.960000px;}
.yac{bottom:121.860000px;}
.yfb{bottom:124.920000px;}
.yf5{bottom:129.600000px;}
.ydf{bottom:131.940000px;}
.y8a{bottom:135.360000px;}
.y35{bottom:136.440000px;}
.y68{bottom:141.660000px;}
.yfa{bottom:146.880000px;}
.yf4{bottom:150.300000px;}
.yb5{bottom:150.660000px;}
.yde{bottom:152.640000px;}
.y89{bottom:156.060000px;}
.y34{bottom:157.140000px;}
.y67{bottom:162.360000px;}
.yf9{bottom:165.960000px;}
.yf3{bottom:171.000000px;}
.ydd{bottom:173.340000px;}
.y88{bottom:176.760000px;}
.y33{bottom:177.840000px;}
.y66{bottom:183.060000px;}
.yf8{bottom:184.860000px;}
.yf2{bottom:191.700000px;}
.ydc{bottom:194.070000px;}
.y87{bottom:197.490000px;}
.y32{bottom:198.570000px;}
.y65{bottom:203.790000px;}
.yf7{bottom:203.970000px;}
.yb4{bottom:208.110000px;}
.yf1{bottom:212.430000px;}
.ydb{bottom:214.770000px;}
.y86{bottom:218.190000px;}
.y31{bottom:219.270000px;}
.yf6{bottom:222.870000px;}
.y64{bottom:224.490000px;}
.yaf{bottom:230.250000px;}
.yf0{bottom:233.130000px;}
.yda{bottom:235.470000px;}
.y85{bottom:238.890000px;}
.y30{bottom:239.970000px;}
.y63{bottom:245.190000px;}
.yb3{bottom:252.390000px;}
.yef{bottom:253.830000px;}
.yd9{bottom:256.170000px;}
.y84{bottom:259.590000px;}
.y2f{bottom:261.030000px;}
.y62{bottom:265.890000px;}
.yee{bottom:274.530000px;}
.yb1{bottom:274.710000px;}
.yd8{bottom:276.870000px;}
.y83{bottom:280.290000px;}
.y2e{bottom:284.250000px;}
.y61{bottom:286.590000px;}
.yed{bottom:295.230000px;}
.yd7{bottom:297.570000px;}
.y82{bottom:300.990000px;}
.y2d{bottom:303.150000px;}
.y60{bottom:307.290000px;}
.yec{bottom:315.930000px;}
.yae{bottom:317.550000px;}
.yd6{bottom:318.270000px;}
.y81{bottom:321.690000px;}
.y2c{bottom:322.230000px;}
.y5f{bottom:327.990000px;}
.yeb{bottom:336.630000px;}
.yd5{bottom:338.970000px;}
.y2b{bottom:341.130000px;}
.y80{bottom:342.390000px;}
.y5e{bottom:348.690000px;}
.yea{bottom:357.330000px;}
.yad{bottom:358.950000px;}
.yd4{bottom:359.670000px;}
.y2a{bottom:360.210000px;}
.y7f{bottom:363.090000px;}
.y5d{bottom:369.390000px;}
.ye9{bottom:378.030000px;}
.y29{bottom:379.110000px;}
.yd3{bottom:380.370000px;}
.y7e{bottom:383.790000px;}
.y5c{bottom:390.090000px;}
.y28{bottom:398.010000px;}
.ye8{bottom:398.730000px;}
.yd2{bottom:401.070000px;}
.y7d{bottom:404.490000px;}
.yab{bottom:407.370000px;}
.y5b{bottom:410.790000px;}
.y27{bottom:417.090000px;}
.ye7{bottom:419.430000px;}
.yd1{bottom:421.770000px;}
.y7c{bottom:425.190000px;}
.yaa{bottom:428.070000px;}
.y5a{bottom:431.490000px;}
.y26{bottom:436.035000px;}
.ye6{bottom:440.175000px;}
.yd0{bottom:442.515000px;}
.y7b{bottom:445.935000px;}
.ya9{bottom:448.815000px;}
.y59{bottom:452.235000px;}
.y25{bottom:455.115000px;}
.ye5{bottom:460.875000px;}
.ycf{bottom:463.215000px;}
.y7a{bottom:466.635000px;}
.ya8{bottom:469.515000px;}
.y58{bottom:472.935000px;}
.y24{bottom:474.015000px;}
.ye4{bottom:481.575000px;}
.yce{bottom:483.915000px;}
.y79{bottom:487.335000px;}
.ya7{bottom:490.215000px;}
.y23{bottom:493.095000px;}
.y57{bottom:493.635000px;}
.ye3{bottom:502.275000px;}
.y78{bottom:504.075000px;}
.ycd{bottom:504.615000px;}
.ya6{bottom:510.915000px;}
.y22{bottom:511.995000px;}
.y56{bottom:514.335000px;}
.ye2{bottom:522.975000px;}
.ycc{bottom:525.315000px;}
.y21{bottom:530.895000px;}
.y70{bottom:532.335000px;}
.y55{bottom:535.035000px;}
.ya5{bottom:543.495000px;}
.ye1{bottom:543.675000px;}
.ycb{bottom:546.015000px;}
.y20{bottom:549.975000px;}
.y54{bottom:555.735000px;}
.y119{bottom:556.455000px;}
.y75{bottom:562.215000px;}
.ya4{bottom:564.195000px;}
.ye0{bottom:564.375000px;}
.yca{bottom:566.715000px;}
.y53{bottom:576.435000px;}
.y118{bottom:578.415000px;}
.ya3{bottom:584.895000px;}
.y1f{bottom:587.955000px;}
.y72{bottom:590.295000px;}
.y52{bottom:597.135000px;}
.y117{bottom:597.315000px;}
.yc9{bottom:599.475000px;}
.ya2{bottom:605.595000px;}
.y1e{bottom:606.855000px;}
.y51{bottom:617.835000px;}
.y116{bottom:619.275000px;}
.y6c{bottom:619.455000px;}
.yc8{bottom:620.175000px;}
.y1d{bottom:625.755000px;}
.ya1{bottom:626.295000px;}
.y115{bottom:638.355000px;}
.y50{bottom:638.535000px;}
.yc7{bottom:640.875000px;}
.y1c{bottom:644.835000px;}
.y6e{bottom:646.275000px;}
.ya0{bottom:646.995000px;}
.y114{bottom:657.255000px;}
.y4f{bottom:659.235000px;}
.yc6{bottom:661.575000px;}
.y1b{bottom:663.735000px;}
.y9f{bottom:667.695000px;}
.y113{bottom:679.245000px;}
.y4e{bottom:679.965000px;}
.yc5{bottom:682.305000px;}
.y1a{bottom:682.845000px;}
.y9e{bottom:688.425000px;}
.y6a{bottom:690.585000px;}
.y112{bottom:698.325000px;}
.y4d{bottom:700.665000px;}
.y19{bottom:701.745000px;}
.y9d{bottom:709.125000px;}
.yc4{bottom:711.105000px;}
.y111{bottom:717.225000px;}
.y18{bottom:720.645000px;}
.y4c{bottom:721.365000px;}
.y9c{bottom:729.825000px;}
.yc3{bottom:731.805000px;}
.y110{bottom:736.125000px;}
.y17{bottom:739.725000px;}
.y4b{bottom:742.065000px;}
.y9a{bottom:746.565000px;}
.y10f{bottom:758.265000px;}
.y16{bottom:758.625000px;}
.y4a{bottom:762.765000px;}
.yc2{bottom:774.645000px;}
.y93{bottom:774.825000px;}
.y10e{bottom:777.165000px;}
.y15{bottom:777.705000px;}
.y49{bottom:783.465000px;}
.y10d{bottom:796.065000px;}
.y14{bottom:796.605000px;}
.yc1{bottom:796.785000px;}
.y48{bottom:803.985000px;}
.y98{bottom:804.885000px;}
.y13{bottom:815.505000px;}
.y10c{bottom:818.025000px;}
.y47{bottom:824.685000px;}
.y12{bottom:834.585000px;}
.y10b{bottom:837.105000px;}
.yc0{bottom:838.185000px;}
.y46{bottom:845.385000px;}
.y95{bottom:847.725000px;}
.y11{bottom:853.485000px;}
.y10a{bottom:856.005000px;}
.ybf{bottom:862.845000px;}
.y45{bottom:866.085000px;}
.y10{bottom:872.565000px;}
.y8d{bottom:876.885000px;}
.y109{bottom:877.965000px;}
.y44{bottom:886.785000px;}
.yf{bottom:891.465000px;}
.y108{bottom:897.045000px;}
.ybe{bottom:904.245000px;}
.y43{bottom:907.485000px;}
.y107{bottom:915.990000px;}
.y8f{bottom:918.330000px;}
.ybd{bottom:924.990000px;}
.y42{bottom:928.230000px;}
.ye{bottom:929.490000px;}
.y106{bottom:934.890000px;}
.ybc{bottom:945.690000px;}
.yd{bottom:948.390000px;}
.y41{bottom:948.930000px;}
.y105{bottom:957.030000px;}
.ybb{bottom:966.390000px;}
.yc{bottom:967.470000px;}
.y40{bottom:969.630000px;}
.y104{bottom:975.930000px;}
.yb{bottom:986.370000px;}
.yba{bottom:987.090000px;}
.y3f{bottom:990.330000px;}
.y103{bottom:994.830000px;}
.y8b{bottom:1001.130000px;}
.ya{bottom:1005.450000px;}
.yb9{bottom:1007.790000px;}
.y3e{bottom:1011.030000px;}
.y102{bottom:1016.970000px;}
.y9{bottom:1024.350000px;}
.y3d{bottom:1031.730000px;}
.y101{bottom:1035.870000px;}
.yb8{bottom:1040.550000px;}
.y8{bottom:1045.590000px;}
.y3c{bottom:1052.430000px;}
.y100{bottom:1054.770000px;}
.y7{bottom:1059.990000px;}
.y3b{bottom:1073.130000px;}
.yff{bottom:1076.730000px;}
.y6{bottom:1084.110000px;}
.y3a{bottom:1093.830000px;}
.yfe{bottom:1095.810000px;}
.y5{bottom:1108.230000px;}
.y39{bottom:1114.530000px;}
.yfd{bottom:1117.770000px;}
.y4{bottom:1132.350000px;}
.y38{bottom:1135.230000px;}
.yfc{bottom:1136.670000px;}
.y1{bottom:1199.700000px;}
.y37{bottom:1204.920000px;}
.y3{bottom:1219.680000px;}
.h1e{height:20.700000px;}
.h2{height:22.500000px;}
.h15{height:26.640000px;}
.he{height:26.820000px;}
.h14{height:27.540000px;}
.h16{height:28.440000px;}
.h12{height:37.705078px;}
.h20{height:41.220000px;}
.h1d{height:41.400000px;}
.h1b{height:41.436000px;}
.h6{height:42.086250px;}
.h11{height:44.316000px;}
.h18{height:50.273438px;}
.hf{height:52.998047px;}
.h3{height:55.825312px;}
.h22{height:57.456000px;}
.h4{height:58.651172px;}
.ha{height:64.978594px;}
.h9{height:65.010937px;}
.h7{height:66.757500px;}
.hd{height:70.664062px;}
.h10{height:71.136000px;}
.hc{height:72.562500px;}
.h17{height:74.004654px;}
.h21{height:74.704922px;}
.hb{height:79.850391px;}
.h1a{height:82.800000px;}
.h5{height:84.898125px;}
.h13{height:85.500000px;}
.h1f{height:85.680000px;}
.h8{height:90.517500px;}
.h1c{height:100.440000px;}
.h19{height:124.236000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w11{width:40.860000px;}
.wc{width:42.300000px;}
.w15{width:42.660000px;}
.w8{width:51.660000px;}
.w18{width:59.796000px;}
.wb{width:62.280000px;}
.w9{width:63.216000px;}
.wa{width:73.800000px;}
.w13{width:75.780000px;}
.w19{width:76.500000px;}
.w14{width:76.536000px;}
.w1a{width:80.316000px;}
.w16{width:84.996000px;}
.w7{width:94.176000px;}
.w12{width:104.616000px;}
.w1b{width:109.080000px;}
.w1c{width:110.016000px;}
.w10{width:116.136000px;}
.wf{width:127.656000px;}
.w6{width:137.520000px;}
.wd{width:212.475000px;}
.w5{width:254.775000px;}
.w2{width:346.215000px;}
.w17{width:440.565000px;}
.we{width:547.710000px;}
.w4{width:605.850000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:3.060000px;}
.x11{left:4.500000px;}
.x23{left:31.500000px;}
.x3{left:111.095987px;}
.x2a{left:113.075987px;}
.x5{left:117.935987px;}
.x4{left:119.915987px;}
.x7{left:121.715987px;}
.x1{left:124.596000px;}
.x18{left:131.435987px;}
.x1a{left:138.095987px;}
.xf{left:143.135987px;}
.x29{left:147.095987px;}
.xe{left:151.589987px;}
.x9{left:161.129987px;}
.xc{left:165.089987px;}
.x19{left:170.129987px;}
.x1c{left:172.290000px;}
.x17{left:186.150000px;}
.x22{left:214.950000px;}
.x24{left:226.470000px;}
.xa{left:277.094987px;}
.x25{left:286.275000px;}
.x10{left:297.434987px;}
.x1d{left:299.955000px;}
.xb{left:315.074987px;}
.x6{left:344.234987px;}
.x26{left:364.395000px;}
.x1b{left:378.254987px;}
.x12{left:398.625000px;}
.x8{left:411.224987px;}
.x1e{left:417.705000px;}
.x27{left:446.325000px;}
.x1f{left:460.005000px;}
.x16{left:473.865000px;}
.x13{left:537.585000px;}
.x28{left:557.025000px;}
.x20{left:566.250000px;}
.xd{left:607.289987px;}
.x14{left:633.390000px;}
.x21{left:643.470000px;}
.x15{left:686.490000px;}
@media print{
.v5{vertical-align:-73.600000pt;}
.v3{vertical-align:-68.000000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.773333pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012800pt;}
.ls19{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.112000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.161280pt;}
.ls1c{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.271467pt;}
.lsb{letter-spacing:0.298667pt;}
.lsf{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.386667pt;}
.ls13{letter-spacing:5.760000pt;}
.ls1a{letter-spacing:5.872640pt;}
.lsc{letter-spacing:6.528000pt;}
.lse{letter-spacing:10.880000pt;}
.ls12{letter-spacing:21.760000pt;}
.ls10{letter-spacing:30.208000pt;}
.ls15{letter-spacing:34.048000pt;}
.ls2{letter-spacing:1026.165333pt;}
.ls1{letter-spacing:1034.485333pt;}
.ws7{word-spacing:-48.000000pt;}
.ws8{word-spacing:-32.000000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.946667pt;}
.ws0{word-spacing:-13.225067pt;}
.ws4{word-spacing:-12.585067pt;}
.ws9{word-spacing:-12.000000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-5.760000pt;}
._16{margin-left:-4.544000pt;}
._10{margin-left:-3.392000pt;}
._2{margin-left:-1.985067pt;}
._0{margin-left:-0.978133pt;}
._1{width:1.472000pt;}
._7{width:2.547413pt;}
._4{width:3.532800pt;}
._3{width:5.282347pt;}
._d{width:6.434773pt;}
._9{width:7.418880pt;}
._a{width:8.455893pt;}
._b{width:10.082987pt;}
._c{width:11.076693pt;}
._1a{width:12.011733pt;}
._12{width:13.034667pt;}
._15{width:14.055467pt;}
._11{width:14.976000pt;}
._14{width:17.226667pt;}
._f{width:18.519253pt;}
._e{width:19.411627pt;}
._13{width:20.972373pt;}
._18{width:21.907627pt;}
._19{width:23.744000pt;}
._5{width:25.318400pt;}
._6{width:26.298880pt;}
._8{width:27.929600pt;}
._17{width:29.094400pt;}
._23{width:30.067200pt;}
._1b{width:32.256000pt;}
._1c{width:33.362133pt;}
._25{width:35.218133pt;}
._24{width:36.224000pt;}
._22{width:66.368000pt;}
._20{width:194.816000pt;}
._1f{width:205.760000pt;}
._1e{width:354.250667pt;}
._21{width:575.562667pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:2.560000pt;}
.y8e{bottom:3.520000pt;}
.y2{bottom:4.640000pt;}
.y8c{bottom:6.240000pt;}
.y97{bottom:6.560000pt;}
.y6b{bottom:7.520000pt;}
.y74{bottom:8.000000pt;}
.y9b{bottom:8.960000pt;}
.y96{bottom:9.600000pt;}
.y99{bottom:10.400000pt;}
.y76{bottom:12.480000pt;}
.y73{bottom:13.280000pt;}
.y77{bottom:14.080000pt;}
.y6f{bottom:16.320000pt;}
.yb7{bottom:17.760000pt;}
.yb2{bottom:21.760000pt;}
.y90{bottom:21.920000pt;}
.yb6{bottom:36.160000pt;}
.y92{bottom:40.320000pt;}
.y91{bottom:58.720000pt;}
.yb0{bottom:61.280000pt;}
.y71{bottom:64.800000pt;}
.y94{bottom:74.400000pt;}
.y36{bottom:102.880000pt;}
.y69{bottom:107.520000pt;}
.yac{bottom:108.320000pt;}
.yfb{bottom:111.040000pt;}
.yf5{bottom:115.200000pt;}
.ydf{bottom:117.280000pt;}
.y8a{bottom:120.320000pt;}
.y35{bottom:121.280000pt;}
.y68{bottom:125.920000pt;}
.yfa{bottom:130.560000pt;}
.yf4{bottom:133.600000pt;}
.yb5{bottom:133.920000pt;}
.yde{bottom:135.680000pt;}
.y89{bottom:138.720000pt;}
.y34{bottom:139.680000pt;}
.y67{bottom:144.320000pt;}
.yf9{bottom:147.520000pt;}
.yf3{bottom:152.000000pt;}
.ydd{bottom:154.080000pt;}
.y88{bottom:157.120000pt;}
.y33{bottom:158.080000pt;}
.y66{bottom:162.720000pt;}
.yf8{bottom:164.320000pt;}
.yf2{bottom:170.400000pt;}
.ydc{bottom:172.506667pt;}
.y87{bottom:175.546667pt;}
.y32{bottom:176.506667pt;}
.y65{bottom:181.146667pt;}
.yf7{bottom:181.306667pt;}
.yb4{bottom:184.986667pt;}
.yf1{bottom:188.826667pt;}
.ydb{bottom:190.906667pt;}
.y86{bottom:193.946667pt;}
.y31{bottom:194.906667pt;}
.yf6{bottom:198.106667pt;}
.y64{bottom:199.546667pt;}
.yaf{bottom:204.666667pt;}
.yf0{bottom:207.226667pt;}
.yda{bottom:209.306667pt;}
.y85{bottom:212.346667pt;}
.y30{bottom:213.306667pt;}
.y63{bottom:217.946667pt;}
.yb3{bottom:224.346667pt;}
.yef{bottom:225.626667pt;}
.yd9{bottom:227.706667pt;}
.y84{bottom:230.746667pt;}
.y2f{bottom:232.026667pt;}
.y62{bottom:236.346667pt;}
.yee{bottom:244.026667pt;}
.yb1{bottom:244.186667pt;}
.yd8{bottom:246.106667pt;}
.y83{bottom:249.146667pt;}
.y2e{bottom:252.666667pt;}
.y61{bottom:254.746667pt;}
.yed{bottom:262.426667pt;}
.yd7{bottom:264.506667pt;}
.y82{bottom:267.546667pt;}
.y2d{bottom:269.466667pt;}
.y60{bottom:273.146667pt;}
.yec{bottom:280.826667pt;}
.yae{bottom:282.266667pt;}
.yd6{bottom:282.906667pt;}
.y81{bottom:285.946667pt;}
.y2c{bottom:286.426667pt;}
.y5f{bottom:291.546667pt;}
.yeb{bottom:299.226667pt;}
.yd5{bottom:301.306667pt;}
.y2b{bottom:303.226667pt;}
.y80{bottom:304.346667pt;}
.y5e{bottom:309.946667pt;}
.yea{bottom:317.626667pt;}
.yad{bottom:319.066667pt;}
.yd4{bottom:319.706667pt;}
.y2a{bottom:320.186667pt;}
.y7f{bottom:322.746667pt;}
.y5d{bottom:328.346667pt;}
.ye9{bottom:336.026667pt;}
.y29{bottom:336.986667pt;}
.yd3{bottom:338.106667pt;}
.y7e{bottom:341.146667pt;}
.y5c{bottom:346.746667pt;}
.y28{bottom:353.786667pt;}
.ye8{bottom:354.426667pt;}
.yd2{bottom:356.506667pt;}
.y7d{bottom:359.546667pt;}
.yab{bottom:362.106667pt;}
.y5b{bottom:365.146667pt;}
.y27{bottom:370.746667pt;}
.ye7{bottom:372.826667pt;}
.yd1{bottom:374.906667pt;}
.y7c{bottom:377.946667pt;}
.yaa{bottom:380.506667pt;}
.y5a{bottom:383.546667pt;}
.y26{bottom:387.586667pt;}
.ye6{bottom:391.266667pt;}
.yd0{bottom:393.346667pt;}
.y7b{bottom:396.386667pt;}
.ya9{bottom:398.946667pt;}
.y59{bottom:401.986667pt;}
.y25{bottom:404.546667pt;}
.ye5{bottom:409.666667pt;}
.ycf{bottom:411.746667pt;}
.y7a{bottom:414.786667pt;}
.ya8{bottom:417.346667pt;}
.y58{bottom:420.386667pt;}
.y24{bottom:421.346667pt;}
.ye4{bottom:428.066667pt;}
.yce{bottom:430.146667pt;}
.y79{bottom:433.186667pt;}
.ya7{bottom:435.746667pt;}
.y23{bottom:438.306667pt;}
.y57{bottom:438.786667pt;}
.ye3{bottom:446.466667pt;}
.y78{bottom:448.066667pt;}
.ycd{bottom:448.546667pt;}
.ya6{bottom:454.146667pt;}
.y22{bottom:455.106667pt;}
.y56{bottom:457.186667pt;}
.ye2{bottom:464.866667pt;}
.ycc{bottom:466.946667pt;}
.y21{bottom:471.906667pt;}
.y70{bottom:473.186667pt;}
.y55{bottom:475.586667pt;}
.ya5{bottom:483.106667pt;}
.ye1{bottom:483.266667pt;}
.ycb{bottom:485.346667pt;}
.y20{bottom:488.866667pt;}
.y54{bottom:493.986667pt;}
.y119{bottom:494.626667pt;}
.y75{bottom:499.746667pt;}
.ya4{bottom:501.506667pt;}
.ye0{bottom:501.666667pt;}
.yca{bottom:503.746667pt;}
.y53{bottom:512.386667pt;}
.y118{bottom:514.146667pt;}
.ya3{bottom:519.906667pt;}
.y1f{bottom:522.626667pt;}
.y72{bottom:524.706667pt;}
.y52{bottom:530.786667pt;}
.y117{bottom:530.946667pt;}
.yc9{bottom:532.866667pt;}
.ya2{bottom:538.306667pt;}
.y1e{bottom:539.426667pt;}
.y51{bottom:549.186667pt;}
.y116{bottom:550.466667pt;}
.y6c{bottom:550.626667pt;}
.yc8{bottom:551.266667pt;}
.y1d{bottom:556.226667pt;}
.ya1{bottom:556.706667pt;}
.y115{bottom:567.426667pt;}
.y50{bottom:567.586667pt;}
.yc7{bottom:569.666667pt;}
.y1c{bottom:573.186667pt;}
.y6e{bottom:574.466667pt;}
.ya0{bottom:575.106667pt;}
.y114{bottom:584.226667pt;}
.y4f{bottom:585.986667pt;}
.yc6{bottom:588.066667pt;}
.y1b{bottom:589.986667pt;}
.y9f{bottom:593.506667pt;}
.y113{bottom:603.773333pt;}
.y4e{bottom:604.413333pt;}
.yc5{bottom:606.493333pt;}
.y1a{bottom:606.973333pt;}
.y9e{bottom:611.933333pt;}
.y6a{bottom:613.853333pt;}
.y112{bottom:620.733333pt;}
.y4d{bottom:622.813333pt;}
.y19{bottom:623.773333pt;}
.y9d{bottom:630.333333pt;}
.yc4{bottom:632.093333pt;}
.y111{bottom:637.533333pt;}
.y18{bottom:640.573333pt;}
.y4c{bottom:641.213333pt;}
.y9c{bottom:648.733333pt;}
.yc3{bottom:650.493333pt;}
.y110{bottom:654.333333pt;}
.y17{bottom:657.533333pt;}
.y4b{bottom:659.613333pt;}
.y9a{bottom:663.613333pt;}
.y10f{bottom:674.013333pt;}
.y16{bottom:674.333333pt;}
.y4a{bottom:678.013333pt;}
.yc2{bottom:688.573333pt;}
.y93{bottom:688.733333pt;}
.y10e{bottom:690.813333pt;}
.y15{bottom:691.293333pt;}
.y49{bottom:696.413333pt;}
.y10d{bottom:707.613333pt;}
.y14{bottom:708.093333pt;}
.yc1{bottom:708.253333pt;}
.y48{bottom:714.653333pt;}
.y98{bottom:715.453333pt;}
.y13{bottom:724.893333pt;}
.y10c{bottom:727.133333pt;}
.y47{bottom:733.053333pt;}
.y12{bottom:741.853333pt;}
.y10b{bottom:744.093333pt;}
.yc0{bottom:745.053333pt;}
.y46{bottom:751.453333pt;}
.y95{bottom:753.533333pt;}
.y11{bottom:758.653333pt;}
.y10a{bottom:760.893333pt;}
.ybf{bottom:766.973333pt;}
.y45{bottom:769.853333pt;}
.y10{bottom:775.613333pt;}
.y8d{bottom:779.453333pt;}
.y109{bottom:780.413333pt;}
.y44{bottom:788.253333pt;}
.yf{bottom:792.413333pt;}
.y108{bottom:797.373333pt;}
.ybe{bottom:803.773333pt;}
.y43{bottom:806.653333pt;}
.y107{bottom:814.213333pt;}
.y8f{bottom:816.293333pt;}
.ybd{bottom:822.213333pt;}
.y42{bottom:825.093333pt;}
.ye{bottom:826.213333pt;}
.y106{bottom:831.013333pt;}
.ybc{bottom:840.613333pt;}
.yd{bottom:843.013333pt;}
.y41{bottom:843.493333pt;}
.y105{bottom:850.693333pt;}
.ybb{bottom:859.013333pt;}
.yc{bottom:859.973333pt;}
.y40{bottom:861.893333pt;}
.y104{bottom:867.493333pt;}
.yb{bottom:876.773333pt;}
.yba{bottom:877.413333pt;}
.y3f{bottom:880.293333pt;}
.y103{bottom:884.293333pt;}
.y8b{bottom:889.893333pt;}
.ya{bottom:893.733333pt;}
.yb9{bottom:895.813333pt;}
.y3e{bottom:898.693333pt;}
.y102{bottom:903.973333pt;}
.y9{bottom:910.533333pt;}
.y3d{bottom:917.093333pt;}
.y101{bottom:920.773333pt;}
.yb8{bottom:924.933333pt;}
.y8{bottom:929.413333pt;}
.y3c{bottom:935.493333pt;}
.y100{bottom:937.573333pt;}
.y7{bottom:942.213333pt;}
.y3b{bottom:953.893333pt;}
.yff{bottom:957.093333pt;}
.y6{bottom:963.653333pt;}
.y3a{bottom:972.293333pt;}
.yfe{bottom:974.053333pt;}
.y5{bottom:985.093333pt;}
.y39{bottom:990.693333pt;}
.yfd{bottom:993.573333pt;}
.y4{bottom:1006.533333pt;}
.y38{bottom:1009.093333pt;}
.yfc{bottom:1010.373333pt;}
.y1{bottom:1066.400000pt;}
.y37{bottom:1071.040000pt;}
.y3{bottom:1084.160000pt;}
.h1e{height:18.400000pt;}
.h2{height:20.000000pt;}
.h15{height:23.680000pt;}
.he{height:23.840000pt;}
.h14{height:24.480000pt;}
.h16{height:25.280000pt;}
.h12{height:33.515625pt;}
.h20{height:36.640000pt;}
.h1d{height:36.800000pt;}
.h1b{height:36.832000pt;}
.h6{height:37.410000pt;}
.h11{height:39.392000pt;}
.h18{height:44.687500pt;}
.hf{height:47.109375pt;}
.h3{height:49.622500pt;}
.h22{height:51.072000pt;}
.h4{height:52.134375pt;}
.ha{height:57.758750pt;}
.h9{height:57.787500pt;}
.h7{height:59.340000pt;}
.hd{height:62.812500pt;}
.h10{height:63.232000pt;}
.hc{height:64.500000pt;}
.h17{height:65.781915pt;}
.h21{height:66.404375pt;}
.hb{height:70.978125pt;}
.h1a{height:73.600000pt;}
.h5{height:75.465000pt;}
.h13{height:76.000000pt;}
.h1f{height:76.160000pt;}
.h8{height:80.460000pt;}
.h1c{height:89.280000pt;}
.h19{height:110.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w11{width:36.320000pt;}
.wc{width:37.600000pt;}
.w15{width:37.920000pt;}
.w8{width:45.920000pt;}
.w18{width:53.152000pt;}
.wb{width:55.360000pt;}
.w9{width:56.192000pt;}
.wa{width:65.600000pt;}
.w13{width:67.360000pt;}
.w19{width:68.000000pt;}
.w14{width:68.032000pt;}
.w1a{width:71.392000pt;}
.w16{width:75.552000pt;}
.w7{width:83.712000pt;}
.w12{width:92.992000pt;}
.w1b{width:96.960000pt;}
.w1c{width:97.792000pt;}
.w10{width:103.232000pt;}
.wf{width:113.472000pt;}
.w6{width:122.240000pt;}
.wd{width:188.866667pt;}
.w5{width:226.466667pt;}
.w2{width:307.746667pt;}
.w17{width:391.613333pt;}
.we{width:486.853333pt;}
.w4{width:538.533333pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:2.720000pt;}
.x11{left:4.000000pt;}
.x23{left:28.000000pt;}
.x3{left:98.751988pt;}
.x2a{left:100.511988pt;}
.x5{left:104.831988pt;}
.x4{left:106.591988pt;}
.x7{left:108.191988pt;}
.x1{left:110.752000pt;}
.x18{left:116.831988pt;}
.x1a{left:122.751988pt;}
.xf{left:127.231988pt;}
.x29{left:130.751988pt;}
.xe{left:134.746655pt;}
.x9{left:143.226655pt;}
.xc{left:146.746655pt;}
.x19{left:151.226655pt;}
.x1c{left:153.146667pt;}
.x17{left:165.466667pt;}
.x22{left:191.066667pt;}
.x24{left:201.306667pt;}
.xa{left:246.306655pt;}
.x25{left:254.466667pt;}
.x10{left:264.386655pt;}
.x1d{left:266.626667pt;}
.xb{left:280.066655pt;}
.x6{left:305.986655pt;}
.x26{left:323.906667pt;}
.x1b{left:336.226655pt;}
.x12{left:354.333333pt;}
.x8{left:365.533321pt;}
.x1e{left:371.293333pt;}
.x27{left:396.733333pt;}
.x1f{left:408.893333pt;}
.x16{left:421.213333pt;}
.x13{left:477.853333pt;}
.x28{left:495.133333pt;}
.x20{left:503.333333pt;}
.xd{left:539.813322pt;}
.x14{left:563.013333pt;}
.x21{left:571.973333pt;}
.x15{left:610.213333pt;}
}




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