
    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_e392baddf936f2d62e93871b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_44c5267509c063dac790376f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e15c5e4cfb137b78b97fa252.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_65fabdcce98304274602c316.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_c994e880306ec1626999dafa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947266;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_d91a1015fa93977d47486dd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112793;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_a8ae22f27f251f27f1861d0f.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v4{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v5{vertical-align:-61.200000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.702000px;}
.ls18{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls13{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.109200px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.738000px;}
.ls5{letter-spacing:3.900000px;}
.ls4{letter-spacing:4.500000px;}
.ls3{letter-spacing:21.060000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls20{letter-spacing:57.108000px;}
.ls1f{letter-spacing:84.468000px;}
.ls0{letter-spacing:154.980000px;}
.ls14{letter-spacing:788.100000px;}
.ls1c{letter-spacing:1133.100000px;}
.ls1b{letter-spacing:1263.300000px;}
.ls1a{letter-spacing:1290.900000px;}
.ls9{letter-spacing:1295.700000px;}
.ls7{letter-spacing:1367.340000px;}
.ls10{letter-spacing:1428.300000px;}
.ls1d{letter-spacing:1469.100000px;}
.ls1e{letter-spacing:1593.900000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.669200px;}
.ws3{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.716000px;}
.ws14{word-spacing:-13.608000px;}
.ws10{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.888000px;}
.ws12{word-spacing:-12.798000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._8{width:2.484000px;}
._7{width:3.738000px;}
._c{width:5.154000px;}
._4{width:6.186000px;}
._3{width:7.290000px;}
._9{width:8.802000px;}
._d{width:10.422000px;}
._b{width:11.448000px;}
._a{width:12.450000px;}
._f{width:15.125760px;}
._12{width:17.329440px;}
._11{width:18.414000px;}
._e{width:19.740000px;}
._5{width:20.748000px;}
._6{width:22.038000px;}
._10{width:1041.240000px;}
._13{width:1063.638000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:49.845000px;}
.y9d{bottom:54.360000px;}
.y8a{bottom:57.889500px;}
.y3d{bottom:57.892500px;}
.y73{bottom:57.895500px;}
.yd2{bottom:57.960000px;}
.y2{bottom:57.963000px;}
.y5f{bottom:57.971550px;}
.y9e{bottom:57.975000px;}
.y5e{bottom:58.860000px;}
.y72{bottom:59.910000px;}
.y3c{bottom:64.410000px;}
.y89{bottom:68.910000px;}
.yd1{bottom:76.860000px;}
.y9c{bottom:96.619500px;}
.y39{bottom:96.870000px;}
.y88{bottom:97.645500px;}
.y71{bottom:99.131550px;}
.y5d{bottom:102.151500px;}
.yee{bottom:102.825000px;}
.yb4{bottom:103.185000px;}
.y87{bottom:110.065500px;}
.y70{bottom:111.551550px;}
.y9b{bottom:112.279500px;}
.y38{bottom:112.350000px;}
.y5c{bottom:117.811500px;}
.yed{bottom:118.305000px;}
.yb3{bottom:118.665000px;}
.y9a{bottom:124.699500px;}
.y37{bottom:128.010000px;}
.y5b{bottom:133.471500px;}
.yb2{bottom:134.145000px;}
.y36{bottom:143.520000px;}
.y5a{bottom:145.747500px;}
.yb1{bottom:149.835000px;}
.yec{bottom:150.015000px;}
.y35{bottom:159.180000px;}
.yb0{bottom:165.315000px;}
.yeb{bottom:165.495000px;}
.yd0{bottom:169.084500px;}
.yaf{bottom:180.795000px;}
.yea{bottom:181.155000px;}
.ycf{bottom:184.564500px;}
.y34{bottom:190.320000px;}
.ye9{bottom:196.275000px;}
.yae{bottom:196.455000px;}
.yce{bottom:200.044500px;}
.y33{bottom:205.980000px;}
.yad{bottom:211.755000px;}
.ycd{bottom:215.704500px;}
.y32{bottom:221.460000px;}
.ye8{bottom:227.955000px;}
.ycc{bottom:231.184500px;}
.yac{bottom:235.335000px;}
.y31{bottom:236.940000px;}
.ye7{bottom:243.435000px;}
.ycb{bottom:246.664500px;}
.yab{bottom:247.575000px;}
.y30{bottom:252.420000px;}
.yca{bottom:262.144500px;}
.y2f{bottom:268.080000px;}
.ye6{bottom:274.755000px;}
.yc9{bottom:277.804500px;}
.y2e{bottom:283.560000px;}
.y6f{bottom:283.601550px;}
.ye5{bottom:290.235000px;}
.yc8{bottom:293.284500px;}
.y2d{bottom:299.040000px;}
.y6e{bottom:299.081550px;}
.y126{bottom:300.810000px;}
.ye4{bottom:305.535000px;}
.yc7{bottom:308.764500px;}
.y2c{bottom:314.520000px;}
.y6d{bottom:314.561550px;}
.y99{bottom:314.599500px;}
.y125{bottom:316.470000px;}
.yc6{bottom:324.244500px;}
.y2b{bottom:330.000000px;}
.y6c{bottom:330.041550px;}
.y98{bottom:330.259500px;}
.y124{bottom:332.130000px;}
.ye3{bottom:337.035000px;}
.yc5{bottom:339.724500px;}
.y2a{bottom:345.660000px;}
.y6b{bottom:345.701550px;}
.y97{bottom:345.739500px;}
.y123{bottom:347.610000px;}
.ye2{bottom:352.695000px;}
.yc4{bottom:355.384500px;}
.y29{bottom:361.140000px;}
.y6a{bottom:361.361550px;}
.y96{bottom:361.399500px;}
.y122{bottom:363.270000px;}
.yc3{bottom:370.864500px;}
.y86{bottom:372.115500px;}
.y95{bottom:373.639500px;}
.y28{bottom:376.620000px;}
.y69{bottom:376.841550px;}
.y121{bottom:378.930000px;}
.ye1{bottom:383.835000px;}
.yc2{bottom:386.344500px;}
.y85{bottom:387.820500px;}
.y68{bottom:389.306550px;}
.y27{bottom:392.145000px;}
.y120{bottom:394.455000px;}
.ye0{bottom:399.540000px;}
.yc1{bottom:402.049500px;}
.y84{bottom:403.480500px;}
.y11f{bottom:410.115000px;}
.ydf{bottom:415.020000px;}
.yc0{bottom:417.529500px;}
.y26{bottom:423.105000px;}
.y11e{bottom:425.775000px;}
.y83{bottom:426.700500px;}
.yde{bottom:430.320000px;}
.ybf{bottom:433.009500px;}
.y11d{bottom:441.255000px;}
.y82{bottom:446.680500px;}
.ybe{bottom:448.669500px;}
.y25{bottom:454.065000px;}
.y11c{bottom:456.915000px;}
.ydd{bottom:461.820000px;}
.ybd{bottom:464.329500px;}
.y24{bottom:472.245000px;}
.y11b{bottom:472.575000px;}
.ydc{bottom:477.480000px;}
.ybc{bottom:479.809500px;}
.y11a{bottom:488.055000px;}
.ydb{bottom:492.960000px;}
.ybb{bottom:495.109500px;}
.y23{bottom:501.225000px;}
.y119{bottom:503.715000px;}
.yba{bottom:507.709500px;}
.yda{bottom:508.440000px;}
.y118{bottom:519.375000px;}
.y22{bottom:519.585000px;}
.yd9{bottom:524.100000px;}
.y117{bottom:534.855000px;}
.y21{bottom:535.065000px;}
.yd8{bottom:539.760000px;}
.y116{bottom:550.515000px;}
.y20{bottom:550.545000px;}
.yd7{bottom:554.880000px;}
.y59{bottom:558.697500px;}
.y1f{bottom:566.025000px;}
.y115{bottom:566.175000px;}
.yd6{bottom:570.540000px;}
.y58{bottom:574.177500px;}
.y114{bottom:581.655000px;}
.y1e{bottom:581.685000px;}
.yd5{bottom:586.200000px;}
.y57{bottom:589.837500px;}
.y1d{bottom:597.165000px;}
.y113{bottom:597.315000px;}
.yd4{bottom:602.040000px;}
.y56{bottom:605.317500px;}
.y1c{bottom:612.645000px;}
.y112{bottom:612.975000px;}
.yd3{bottom:614.460000px;}
.y55{bottom:620.977500px;}
.y1b{bottom:628.125000px;}
.y111{bottom:628.455000px;}
.y54{bottom:633.217500px;}
.y81{bottom:634.630500px;}
.yaa{bottom:636.975000px;}
.y1a{bottom:643.815000px;}
.y110{bottom:644.145000px;}
.y80{bottom:650.140500px;}
.ya9{bottom:652.665000px;}
.y10f{bottom:659.625000px;}
.y7f{bottom:665.800500px;}
.y19{bottom:665.955000px;}
.ya8{bottom:667.785000px;}
.y10e{bottom:675.285000px;}
.y7e{bottom:678.220500px;}
.ya7{bottom:683.805000px;}
.y10d{bottom:690.945000px;}
.y18{bottom:692.775000px;}
.ya6{bottom:696.225000px;}
.y10c{bottom:706.425000px;}
.y17{bottom:708.255000px;}
.y10b{bottom:722.085000px;}
.y16{bottom:723.735000px;}
.y94{bottom:732.589500px;}
.y10a{bottom:737.745000px;}
.y93{bottom:748.069500px;}
.y109{bottom:753.225000px;}
.y15{bottom:758.475000px;}
.y92{bottom:763.729500px;}
.y108{bottom:768.885000px;}
.y14{bottom:778.455000px;}
.y91{bottom:779.209500px;}
.y107{bottom:784.545000px;}
.y90{bottom:794.869500px;}
.y7d{bottom:799.180500px;}
.y106{bottom:800.025000px;}
.y8f{bottom:810.349500px;}
.y13{bottom:810.855000px;}
.y7c{bottom:814.660500px;}
.y105{bottom:815.685000px;}
.y53{bottom:816.667500px;}
.yb9{bottom:822.709500px;}
.y67{bottom:824.606550px;}
.y8e{bottom:826.009500px;}
.y12{bottom:828.855000px;}
.y7b{bottom:830.140500px;}
.y104{bottom:831.345000px;}
.y52{bottom:832.327500px;}
.yb8{bottom:838.189500px;}
.y8d{bottom:838.249500px;}
.y66{bottom:840.266550px;}
.y11{bottom:841.815000px;}
.y7a{bottom:845.800500px;}
.y103{bottom:846.825000px;}
.y51{bottom:847.807500px;}
.yb7{bottom:853.669500px;}
.y65{bottom:855.746550px;}
.y102{bottom:862.485000px;}
.y50{bottom:863.287500px;}
.y10{bottom:867.375000px;}
.y79{bottom:869.020500px;}
.yb6{bottom:877.069500px;}
.y101{bottom:878.145000px;}
.y4f{bottom:878.947500px;}
.y78{bottom:884.680500px;}
.y64{bottom:887.066550px;}
.yb5{bottom:889.489500px;}
.y100{bottom:893.670000px;}
.y4e{bottom:894.472500px;}
.y77{bottom:897.145500px;}
.y63{bottom:899.351550px;}
.yf{bottom:906.480000px;}
.yff{bottom:909.330000px;}
.y4d{bottom:909.952500px;}
.yfe{bottom:924.990000px;}
.y4c{bottom:925.432500px;}
.ye{bottom:930.600000px;}
.ya5{bottom:936.825000px;}
.yfd{bottom:940.470000px;}
.y4b{bottom:941.092500px;}
.ya4{bottom:952.485000px;}
.yfc{bottom:956.130000px;}
.y4a{bottom:956.752500px;}
.ya3{bottom:967.605000px;}
.yfb{bottom:971.790000px;}
.yd{bottom:973.980000px;}
.ya2{bottom:983.625000px;}
.yfa{bottom:987.270000px;}
.y49{bottom:987.892500px;}
.ya1{bottom:995.865000px;}
.yf9{bottom:1002.930000px;}
.y48{bottom:1003.372500px;}
.yc{bottom:1016.100000px;}
.yf8{bottom:1018.590000px;}
.y47{bottom:1019.032500px;}
.yf7{bottom:1034.070000px;}
.y9{bottom:1034.100000px;}
.y46{bottom:1034.512500px;}
.yb{bottom:1039.320000px;}
.yf6{bottom:1049.730000px;}
.y45{bottom:1049.992500px;}
.y8{bottom:1057.320000px;}
.yf5{bottom:1065.390000px;}
.y44{bottom:1065.652500px;}
.ya{bottom:1071.360000px;}
.yf4{bottom:1080.870000px;}
.y43{bottom:1081.132500px;}
.y7{bottom:1086.660000px;}
.yf3{bottom:1096.530000px;}
.y42{bottom:1096.612500px;}
.y6{bottom:1105.740000px;}
.y41{bottom:1112.092500px;}
.yf2{bottom:1112.190000px;}
.y5{bottom:1123.020000px;}
.y76{bottom:1127.545500px;}
.yf1{bottom:1127.670000px;}
.y40{bottom:1127.752500px;}
.y62{bottom:1127.801550px;}
.y4{bottom:1140.300000px;}
.y8c{bottom:1143.199500px;}
.y75{bottom:1143.205500px;}
.y3f{bottom:1143.232500px;}
.y61{bottom:1143.281550px;}
.ya0{bottom:1143.285000px;}
.yf0{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.yef{bottom:1158.660000px;}
.y3e{bottom:1158.742500px;}
.y8b{bottom:1158.889500px;}
.y74{bottom:1158.895500px;}
.y60{bottom:1158.971550px;}
.y9f{bottom:1158.975000px;}
.y3b{bottom:1175.160000px;}
.y3a{bottom:1193.700000px;}
.ha{height:12.335625px;}
.hc{height:35.314453px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h12{height:55.503491px;}
.h7{height:55.796836px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x2{left:30.090000px;}
.xc{left:46.650000px;}
.x36{left:49.260000px;}
.xd{left:50.265000px;}
.x35{left:90.765000px;}
.x9{left:93.240000px;}
.x12{left:129.954000px;}
.x16{left:173.400000px;}
.x2f{left:212.010000px;}
.x10{left:224.004000px;}
.x31{left:225.585000px;}
.x1b{left:228.570000px;}
.x2a{left:232.065000px;}
.x25{left:237.465000px;}
.x5{left:244.050000px;}
.x24{left:247.200000px;}
.xa{left:252.240000px;}
.x1f{left:263.775000px;}
.xb{left:268.110000px;}
.x3{left:270.300000px;}
.x4{left:290.610000px;}
.x2c{left:291.810000px;}
.x18{left:296.031000px;}
.x21{left:329.550000px;}
.x1d{left:339.735000px;}
.x27{left:363.240000px;}
.x34{left:403.125000px;}
.x2d{left:405.720000px;}
.x28{left:406.845000px;}
.x1{left:412.650000px;}
.xe{left:430.485000px;}
.x13{left:435.000000px;}
.x22{left:439.500000px;}
.x32{left:440.625000px;}
.x19{left:442.875000px;}
.x8{left:449.040000px;}
.x6{left:478.845000px;}
.x7{left:506.340000px;}
.xf{left:630.204000px;}
.x30{left:663.735000px;}
.x20{left:696.450000px;}
.x1a{left:702.120000px;}
.x11{left:715.104000px;}
.x26{left:722.640000px;}
.x33{left:724.665000px;}
.x23{left:730.200000px;}
.x29{left:741.615000px;}
.x14{left:744.915000px;}
.x2e{left:752.160000px;}
.x1e{left:754.425000px;}
.x17{left:762.831000px;}
.x2b{left:764.160000px;}
.x15{left:771.900000px;}
.x1c{left:775.785000px;}
@media print{
.v4{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v5{vertical-align:-54.400000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls18{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls13{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.097067pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.656000pt;}
.ls5{letter-spacing:3.466667pt;}
.ls4{letter-spacing:4.000000pt;}
.ls3{letter-spacing:18.720000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls20{letter-spacing:50.762667pt;}
.ls1f{letter-spacing:75.082667pt;}
.ls0{letter-spacing:137.760000pt;}
.ls14{letter-spacing:700.533333pt;}
.ls1c{letter-spacing:1007.200000pt;}
.ls1b{letter-spacing:1122.933333pt;}
.ls1a{letter-spacing:1147.466667pt;}
.ls9{letter-spacing:1151.733333pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls10{letter-spacing:1269.600000pt;}
.ls1d{letter-spacing:1305.866667pt;}
.ls1e{letter-spacing:1416.800000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.817067pt;}
.ws3{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.192000pt;}
.ws14{word-spacing:-12.096000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.456000pt;}
.ws12{word-spacing:-11.376000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._8{width:2.208000pt;}
._7{width:3.322667pt;}
._c{width:4.581333pt;}
._4{width:5.498667pt;}
._3{width:6.480000pt;}
._9{width:7.824000pt;}
._d{width:9.264000pt;}
._b{width:10.176000pt;}
._a{width:11.066667pt;}
._f{width:13.445120pt;}
._12{width:15.403947pt;}
._11{width:16.368000pt;}
._e{width:17.546667pt;}
._5{width:18.442667pt;}
._6{width:19.589333pt;}
._10{width:925.546667pt;}
._13{width:945.456000pt;}
.fs8{font-size:10.880000pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:44.306667pt;}
.y9d{bottom:48.320000pt;}
.y8a{bottom:51.457333pt;}
.y3d{bottom:51.460000pt;}
.y73{bottom:51.462667pt;}
.yd2{bottom:51.520000pt;}
.y2{bottom:51.522667pt;}
.y5f{bottom:51.530267pt;}
.y9e{bottom:51.533333pt;}
.y5e{bottom:52.320000pt;}
.y72{bottom:53.253333pt;}
.y3c{bottom:57.253333pt;}
.y89{bottom:61.253333pt;}
.yd1{bottom:68.320000pt;}
.y9c{bottom:85.884000pt;}
.y39{bottom:86.106667pt;}
.y88{bottom:86.796000pt;}
.y71{bottom:88.116933pt;}
.y5d{bottom:90.801333pt;}
.yee{bottom:91.400000pt;}
.yb4{bottom:91.720000pt;}
.y87{bottom:97.836000pt;}
.y70{bottom:99.156933pt;}
.y9b{bottom:99.804000pt;}
.y38{bottom:99.866667pt;}
.y5c{bottom:104.721333pt;}
.yed{bottom:105.160000pt;}
.yb3{bottom:105.480000pt;}
.y9a{bottom:110.844000pt;}
.y37{bottom:113.786667pt;}
.y5b{bottom:118.641333pt;}
.yb2{bottom:119.240000pt;}
.y36{bottom:127.573333pt;}
.y5a{bottom:129.553333pt;}
.yb1{bottom:133.186667pt;}
.yec{bottom:133.346667pt;}
.y35{bottom:141.493333pt;}
.yb0{bottom:146.946667pt;}
.yeb{bottom:147.106667pt;}
.yd0{bottom:150.297333pt;}
.yaf{bottom:160.706667pt;}
.yea{bottom:161.026667pt;}
.ycf{bottom:164.057333pt;}
.y34{bottom:169.173333pt;}
.ye9{bottom:174.466667pt;}
.yae{bottom:174.626667pt;}
.yce{bottom:177.817333pt;}
.y33{bottom:183.093333pt;}
.yad{bottom:188.226667pt;}
.ycd{bottom:191.737333pt;}
.y32{bottom:196.853333pt;}
.ye8{bottom:202.626667pt;}
.ycc{bottom:205.497333pt;}
.yac{bottom:209.186667pt;}
.y31{bottom:210.613333pt;}
.ye7{bottom:216.386667pt;}
.ycb{bottom:219.257333pt;}
.yab{bottom:220.066667pt;}
.y30{bottom:224.373333pt;}
.yca{bottom:233.017333pt;}
.y2f{bottom:238.293333pt;}
.ye6{bottom:244.226667pt;}
.yc9{bottom:246.937333pt;}
.y2e{bottom:252.053333pt;}
.y6f{bottom:252.090267pt;}
.ye5{bottom:257.986667pt;}
.yc8{bottom:260.697333pt;}
.y2d{bottom:265.813333pt;}
.y6e{bottom:265.850267pt;}
.y126{bottom:267.386667pt;}
.ye4{bottom:271.586667pt;}
.yc7{bottom:274.457333pt;}
.y2c{bottom:279.573333pt;}
.y6d{bottom:279.610267pt;}
.y99{bottom:279.644000pt;}
.y125{bottom:281.306667pt;}
.yc6{bottom:288.217333pt;}
.y2b{bottom:293.333333pt;}
.y6c{bottom:293.370267pt;}
.y98{bottom:293.564000pt;}
.y124{bottom:295.226667pt;}
.ye3{bottom:299.586667pt;}
.yc5{bottom:301.977333pt;}
.y2a{bottom:307.253333pt;}
.y6b{bottom:307.290267pt;}
.y97{bottom:307.324000pt;}
.y123{bottom:308.986667pt;}
.ye2{bottom:313.506667pt;}
.yc4{bottom:315.897333pt;}
.y29{bottom:321.013333pt;}
.y6a{bottom:321.210267pt;}
.y96{bottom:321.244000pt;}
.y122{bottom:322.906667pt;}
.yc3{bottom:329.657333pt;}
.y86{bottom:330.769333pt;}
.y95{bottom:332.124000pt;}
.y28{bottom:334.773333pt;}
.y69{bottom:334.970267pt;}
.y121{bottom:336.826667pt;}
.ye1{bottom:341.186667pt;}
.yc2{bottom:343.417333pt;}
.y85{bottom:344.729333pt;}
.y68{bottom:346.050267pt;}
.y27{bottom:348.573333pt;}
.y120{bottom:350.626667pt;}
.ye0{bottom:355.146667pt;}
.yc1{bottom:357.377333pt;}
.y84{bottom:358.649333pt;}
.y11f{bottom:364.546667pt;}
.ydf{bottom:368.906667pt;}
.yc0{bottom:371.137333pt;}
.y26{bottom:376.093333pt;}
.y11e{bottom:378.466667pt;}
.y83{bottom:379.289333pt;}
.yde{bottom:382.506667pt;}
.ybf{bottom:384.897333pt;}
.y11d{bottom:392.226667pt;}
.y82{bottom:397.049333pt;}
.ybe{bottom:398.817333pt;}
.y25{bottom:403.613333pt;}
.y11c{bottom:406.146667pt;}
.ydd{bottom:410.506667pt;}
.ybd{bottom:412.737333pt;}
.y24{bottom:419.773333pt;}
.y11b{bottom:420.066667pt;}
.ydc{bottom:424.426667pt;}
.ybc{bottom:426.497333pt;}
.y11a{bottom:433.826667pt;}
.ydb{bottom:438.186667pt;}
.ybb{bottom:440.097333pt;}
.y23{bottom:445.533333pt;}
.y119{bottom:447.746667pt;}
.yba{bottom:451.297333pt;}
.yda{bottom:451.946667pt;}
.y118{bottom:461.666667pt;}
.y22{bottom:461.853333pt;}
.yd9{bottom:465.866667pt;}
.y117{bottom:475.426667pt;}
.y21{bottom:475.613333pt;}
.yd8{bottom:479.786667pt;}
.y116{bottom:489.346667pt;}
.y20{bottom:489.373333pt;}
.yd7{bottom:493.226667pt;}
.y59{bottom:496.620000pt;}
.y1f{bottom:503.133333pt;}
.y115{bottom:503.266667pt;}
.yd6{bottom:507.146667pt;}
.y58{bottom:510.380000pt;}
.y114{bottom:517.026667pt;}
.y1e{bottom:517.053333pt;}
.yd5{bottom:521.066667pt;}
.y57{bottom:524.300000pt;}
.y1d{bottom:530.813333pt;}
.y113{bottom:530.946667pt;}
.yd4{bottom:535.146667pt;}
.y56{bottom:538.060000pt;}
.y1c{bottom:544.573333pt;}
.y112{bottom:544.866667pt;}
.yd3{bottom:546.186667pt;}
.y55{bottom:551.980000pt;}
.y1b{bottom:558.333333pt;}
.y111{bottom:558.626667pt;}
.y54{bottom:562.860000pt;}
.y81{bottom:564.116000pt;}
.yaa{bottom:566.200000pt;}
.y1a{bottom:572.280000pt;}
.y110{bottom:572.573333pt;}
.y80{bottom:577.902667pt;}
.ya9{bottom:580.146667pt;}
.y10f{bottom:586.333333pt;}
.y7f{bottom:591.822667pt;}
.y19{bottom:591.960000pt;}
.ya8{bottom:593.586667pt;}
.y10e{bottom:600.253333pt;}
.y7e{bottom:602.862667pt;}
.ya7{bottom:607.826667pt;}
.y10d{bottom:614.173333pt;}
.y18{bottom:615.800000pt;}
.ya6{bottom:618.866667pt;}
.y10c{bottom:627.933333pt;}
.y17{bottom:629.560000pt;}
.y10b{bottom:641.853333pt;}
.y16{bottom:643.320000pt;}
.y94{bottom:651.190667pt;}
.y10a{bottom:655.773333pt;}
.y93{bottom:664.950667pt;}
.y109{bottom:669.533333pt;}
.y15{bottom:674.200000pt;}
.y92{bottom:678.870667pt;}
.y108{bottom:683.453333pt;}
.y14{bottom:691.960000pt;}
.y91{bottom:692.630667pt;}
.y107{bottom:697.373333pt;}
.y90{bottom:706.550667pt;}
.y7d{bottom:710.382667pt;}
.y106{bottom:711.133333pt;}
.y8f{bottom:720.310667pt;}
.y13{bottom:720.760000pt;}
.y7c{bottom:724.142667pt;}
.y105{bottom:725.053333pt;}
.y53{bottom:725.926667pt;}
.yb9{bottom:731.297333pt;}
.y67{bottom:732.983600pt;}
.y8e{bottom:734.230667pt;}
.y12{bottom:736.760000pt;}
.y7b{bottom:737.902667pt;}
.y104{bottom:738.973333pt;}
.y52{bottom:739.846667pt;}
.yb8{bottom:745.057333pt;}
.y8d{bottom:745.110667pt;}
.y66{bottom:746.903600pt;}
.y11{bottom:748.280000pt;}
.y7a{bottom:751.822667pt;}
.y103{bottom:752.733333pt;}
.y51{bottom:753.606667pt;}
.yb7{bottom:758.817333pt;}
.y65{bottom:760.663600pt;}
.y102{bottom:766.653333pt;}
.y50{bottom:767.366667pt;}
.y10{bottom:771.000000pt;}
.y79{bottom:772.462667pt;}
.yb6{bottom:779.617333pt;}
.y101{bottom:780.573333pt;}
.y4f{bottom:781.286667pt;}
.y78{bottom:786.382667pt;}
.y64{bottom:788.503600pt;}
.yb5{bottom:790.657333pt;}
.y100{bottom:794.373333pt;}
.y4e{bottom:795.086667pt;}
.y77{bottom:797.462667pt;}
.y63{bottom:799.423600pt;}
.yf{bottom:805.760000pt;}
.yff{bottom:808.293333pt;}
.y4d{bottom:808.846667pt;}
.yfe{bottom:822.213333pt;}
.y4c{bottom:822.606667pt;}
.ye{bottom:827.200000pt;}
.ya5{bottom:832.733333pt;}
.yfd{bottom:835.973333pt;}
.y4b{bottom:836.526667pt;}
.ya4{bottom:846.653333pt;}
.yfc{bottom:849.893333pt;}
.y4a{bottom:850.446667pt;}
.ya3{bottom:860.093333pt;}
.yfb{bottom:863.813333pt;}
.yd{bottom:865.760000pt;}
.ya2{bottom:874.333333pt;}
.yfa{bottom:877.573333pt;}
.y49{bottom:878.126667pt;}
.ya1{bottom:885.213333pt;}
.yf9{bottom:891.493333pt;}
.y48{bottom:891.886667pt;}
.yc{bottom:903.200000pt;}
.yf8{bottom:905.413333pt;}
.y47{bottom:905.806667pt;}
.yf7{bottom:919.173333pt;}
.y9{bottom:919.200000pt;}
.y46{bottom:919.566667pt;}
.yb{bottom:923.840000pt;}
.yf6{bottom:933.093333pt;}
.y45{bottom:933.326667pt;}
.y8{bottom:939.840000pt;}
.yf5{bottom:947.013333pt;}
.y44{bottom:947.246667pt;}
.ya{bottom:952.320000pt;}
.yf4{bottom:960.773333pt;}
.y43{bottom:961.006667pt;}
.y7{bottom:965.920000pt;}
.yf3{bottom:974.693333pt;}
.y42{bottom:974.766667pt;}
.y6{bottom:982.880000pt;}
.y41{bottom:988.526667pt;}
.yf2{bottom:988.613333pt;}
.y5{bottom:998.240000pt;}
.y76{bottom:1002.262667pt;}
.yf1{bottom:1002.373333pt;}
.y40{bottom:1002.446667pt;}
.y62{bottom:1002.490267pt;}
.y4{bottom:1013.600000pt;}
.y8c{bottom:1016.177333pt;}
.y75{bottom:1016.182667pt;}
.y3f{bottom:1016.206667pt;}
.y61{bottom:1016.250267pt;}
.ya0{bottom:1016.253333pt;}
.yf0{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.yef{bottom:1029.920000pt;}
.y3e{bottom:1029.993333pt;}
.y8b{bottom:1030.124000pt;}
.y74{bottom:1030.129333pt;}
.y60{bottom:1030.196933pt;}
.y9f{bottom:1030.200000pt;}
.y3b{bottom:1044.586667pt;}
.y3a{bottom:1061.066667pt;}
.ha{height:10.965000pt;}
.hc{height:31.390625pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h12{height:49.336436pt;}
.h7{height:49.597187pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x2{left:26.746667pt;}
.xc{left:41.466667pt;}
.x36{left:43.786667pt;}
.xd{left:44.680000pt;}
.x35{left:80.680000pt;}
.x9{left:82.880000pt;}
.x12{left:115.514667pt;}
.x16{left:154.133333pt;}
.x2f{left:188.453333pt;}
.x10{left:199.114667pt;}
.x31{left:200.520000pt;}
.x1b{left:203.173333pt;}
.x2a{left:206.280000pt;}
.x25{left:211.080000pt;}
.x5{left:216.933333pt;}
.x24{left:219.733333pt;}
.xa{left:224.213333pt;}
.x1f{left:234.466667pt;}
.xb{left:238.320000pt;}
.x3{left:240.266667pt;}
.x4{left:258.320000pt;}
.x2c{left:259.386667pt;}
.x18{left:263.138667pt;}
.x21{left:292.933333pt;}
.x1d{left:301.986667pt;}
.x27{left:322.880000pt;}
.x34{left:358.333333pt;}
.x2d{left:360.640000pt;}
.x28{left:361.640000pt;}
.x1{left:366.800000pt;}
.xe{left:382.653333pt;}
.x13{left:386.666667pt;}
.x22{left:390.666667pt;}
.x32{left:391.666667pt;}
.x19{left:393.666667pt;}
.x8{left:399.146667pt;}
.x6{left:425.640000pt;}
.x7{left:450.080000pt;}
.xf{left:560.181333pt;}
.x30{left:589.986667pt;}
.x20{left:619.066667pt;}
.x1a{left:624.106667pt;}
.x11{left:635.648000pt;}
.x26{left:642.346667pt;}
.x33{left:644.146667pt;}
.x23{left:649.066667pt;}
.x29{left:659.213333pt;}
.x14{left:662.146667pt;}
.x2e{left:668.586667pt;}
.x1e{left:670.600000pt;}
.x17{left:678.072000pt;}
.x2b{left:679.253333pt;}
.x15{left:686.133333pt;}
.x1c{left:689.586667pt;}
}




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