
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_cc90b27db63a2b962c43a8bb.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5ef5e3b01b5ad0b69656a650.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a91926070ec6f6d2a235c750.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_818dd2c57e956e30da5841b9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_abdd9c6a6eebf09a9f1a8ab3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6c1e4b15d48ed448334b7b70.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5ca82ad9fb142dd677e6e9f4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ad603f0fddbb1a309bbe0e19.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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:ffd;src:url('chunks/assets/font_d8a140790281417667b364f6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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:ffe;src:url('chunks/assets/font_f628eb2eaf29ee85d26b4950.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6ae33d42f3f23657fca60a2b.woff')format("woff");}.fff{font-family:fff;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_81a0c027a9b5a3500c6e9421.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b9790ff2b4aee69a9f1db987.woff')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-77.760000px;}
.v2{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.409200px;}
.ls5{letter-spacing:-0.089400px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.080000px;}
.lse{letter-spacing:2.160000px;}
.ls10{letter-spacing:3.600000px;}
.lsf{letter-spacing:5.040000px;}
.ls12{letter-spacing:16.306560px;}
.lsc{letter-spacing:43.666560px;}
.ls9{letter-spacing:46.546560px;}
.lsb{letter-spacing:525.036000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-60.480000px;}
.ws1{word-spacing:-24.730320px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws8{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-3.289440px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._6{width:4.964640px;}
._c{width:6.309120px;}
._7{width:7.551840px;}
._d{width:8.710560px;}
._14{width:9.732960px;}
._10{width:10.915200px;}
._11{width:11.923200px;}
._f{width:12.939840px;}
._e{width:14.040000px;}
._b{width:16.182240px;}
._a{width:17.447040px;}
._12{width:18.760320px;}
._13{width:20.187840px;}
._15{width:21.559680px;}
._16{width:22.734720px;}
._17{width:24.223680px;}
._5{width:980.525760px;}
._8{width:2160.229920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:83.520000px;}
.fs9{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:1.425000px;}
.y90{bottom:1.800000px;}
.y49{bottom:2.865000px;}
.y3f{bottom:3.600000px;}
.y5{bottom:4.320000px;}
.y76{bottom:5.040000px;}
.y57{bottom:5.370000px;}
.y78{bottom:5.400000px;}
.y8c{bottom:8.625000px;}
.y2{bottom:10.080000px;}
.y48{bottom:10.785000px;}
.y3e{bottom:20.880000px;}
.y54{bottom:23.385000px;}
.y4{bottom:23.400000px;}
.y7e{bottom:23.445000px;}
.y75{bottom:23.760000px;}
.y80{bottom:24.120000px;}
.y3d{bottom:38.205000px;}
.y53{bottom:38.865000px;}
.y47{bottom:40.305000px;}
.y3{bottom:47.880000px;}
.y46{bottom:52.185000px;}
.y3c{bottom:55.485000px;}
.y52{bottom:56.505000px;}
.y45{bottom:65.145000px;}
.y9{bottom:71.676000px;}
.y51{bottom:72.345000px;}
.y3b{bottom:72.765000px;}
.y44{bottom:78.105000px;}
.y50{bottom:85.305000px;}
.y3a{bottom:90.045000px;}
.y4f{bottom:91.425000px;}
.y43{bottom:99.705000px;}
.y8{bottom:105.156000px;}
.y4e{bottom:107.295000px;}
.y39{bottom:107.325000px;}
.y4d{bottom:122.775000px;}
.y38{bottom:124.605000px;}
.y7{bottom:124.956000px;}
.y4c{bottom:138.255000px;}
.y37{bottom:141.885000px;}
.y4b{bottom:153.735000px;}
.y55{bottom:153.795000px;}
.y89{bottom:154.515000px;}
.yce{bottom:156.315000px;}
.y36{bottom:159.165000px;}
.y42{bottom:162.375000px;}
.ya7{bottom:167.835000px;}
.y40{bottom:168.210000px;}
.y4a{bottom:169.215000px;}
.y88{bottom:171.795000px;}
.y41{bottom:172.815000px;}
.ycd{bottom:173.595000px;}
.y35{bottom:176.475000px;}
.ya6{bottom:185.115000px;}
.y87{bottom:189.075000px;}
.ye2{bottom:190.155000px;}
.ycc{bottom:190.515000px;}
.y34{bottom:193.035000px;}
.ya5{bottom:202.035000px;}
.y8f{bottom:204.555000px;}
.y86{bottom:206.355000px;}
.ycb{bottom:207.795000px;}
.ya4{bottom:219.315000px;}
.y33{bottom:219.675000px;}
.y85{bottom:222.915000px;}
.ye1{bottom:224.715000px;}
.yca{bottom:225.075000px;}
.y8b{bottom:229.740000px;}
.ya3{bottom:236.595000px;}
.y32{bottom:236.955000px;}
.yc9{bottom:242.355000px;}
.y84{bottom:249.555000px;}
.ye0{bottom:251.355000px;}
.ya2{bottom:253.515000px;}
.y31{bottom:254.235000px;}
.yc8{bottom:259.635000px;}
.y1e{bottom:263.955000px;}
.y83{bottom:266.835000px;}
.ydf{bottom:268.635000px;}
.y30{bottom:271.515000px;}
.yc7{bottom:276.585000px;}
.ya1{bottom:280.185000px;}
.y82{bottom:280.905000px;}
.yde{bottom:285.945000px;}
.y1d{bottom:288.075000px;}
.y2f{bottom:288.795000px;}
.ya0{bottom:297.465000px;}
.yc6{bottom:303.225000px;}
.y2e{bottom:306.105000px;}
.y1c{bottom:312.225000px;}
.y9f{bottom:314.745000px;}
.y81{bottom:319.065000px;}
.yc5{bottom:320.505000px;}
.y2d{bottom:323.385000px;}
.y9e{bottom:332.025000px;}
.y1b{bottom:336.345000px;}
.yc4{bottom:337.785000px;}
.y2c{bottom:340.665000px;}
.y9d{bottom:349.305000px;}
.yc3{bottom:355.065000px;}
.y7f{bottom:356.865000px;}
.y2b{bottom:357.945000px;}
.y1a{bottom:360.465000px;}
.yff{bottom:364.425000px;}
.y9c{bottom:366.585000px;}
.y10{bottom:370.905000px;}
.yc2{bottom:372.345000px;}
.y2a{bottom:375.225000px;}
.yfe{bottom:382.065000px;}
.y9b{bottom:383.505000px;}
.y19{bottom:384.585000px;}
.yc1{bottom:389.625000px;}
.y29{bottom:392.145000px;}
.y7d{bottom:395.025000px;}
.yfd{bottom:399.345000px;}
.yc0{bottom:406.230000px;}
.ydd{bottom:406.590000px;}
.y18{bottom:408.705000px;}
.y28{bottom:409.425000px;}
.y9a{bottom:410.190000px;}
.yfc{bottom:416.670000px;}
.ydc{bottom:423.870000px;}
.y27{bottom:426.705000px;}
.y99{bottom:427.110000px;}
.y17{bottom:432.870000px;}
.yfb{bottom:433.590000px;}
.ydb{bottom:440.790000px;}
.y26{bottom:444.030000px;}
.ybf{bottom:450.150000px;}
.yfa{bottom:450.870000px;}
.y7c{bottom:454.110000px;}
.y16{bottom:456.990000px;}
.y25{bottom:461.310000px;}
.ybe{bottom:467.430000px;}
.y7b{bottom:468.150000px;}
.y24{bottom:478.590000px;}
.y98{bottom:479.670000px;}
.y15{bottom:481.110000px;}
.ybd{bottom:484.710000px;}
.yf9{bottom:485.430000px;}
.y7a{bottom:487.590000px;}
.y23{bottom:495.870000px;}
.y97{bottom:496.950000px;}
.ybc{bottom:501.990000px;}
.yf8{bottom:502.710000px;}
.y14{bottom:505.230000px;}
.y22{bottom:513.150000px;}
.y96{bottom:513.870000px;}
.ybb{bottom:519.270000px;}
.yf7{bottom:519.990000px;}
.y79{bottom:525.750000px;}
.y13{bottom:529.350000px;}
.y21{bottom:530.430000px;}
.yba{bottom:536.550000px;}
.yf6{bottom:537.300000px;}
.y95{bottom:540.540000px;}
.y77{bottom:544.860000px;}
.y20{bottom:547.710000px;}
.y12{bottom:553.830000px;}
.yb9{bottom:553.860000px;}
.yf5{bottom:554.580000px;}
.y94{bottom:557.820000px;}
.y74{bottom:564.300000px;}
.y1f{bottom:564.660000px;}
.yb8{bottom:570.780000px;}
.yda{bottom:571.140000px;}
.yf4{bottom:571.860000px;}
.y93{bottom:574.740000px;}
.y11{bottom:577.980000px;}
.yd9{bottom:588.420000px;}
.yf3{bottom:589.140000px;}
.y92{bottom:592.380000px;}
.yb7{bottom:597.420000px;}
.yd8{bottom:604.980000px;}
.y73{bottom:606.060000px;}
.yf2{bottom:606.420000px;}
.y91{bottom:609.660000px;}
.yb6{bottom:614.340000px;}
.y72{bottom:623.340000px;}
.y8e{bottom:623.700000px;}
.yb5{bottom:631.620000px;}
.y71{bottom:640.620000px;}
.yb4{bottom:648.900000px;}
.y70{bottom:657.900000px;}
.yb3{bottom:666.180000px;}
.yf1{bottom:674.850000px;}
.y6f{bottom:675.210000px;}
.yb2{bottom:683.490000px;}
.y6e{bottom:692.490000px;}
.yb1{bottom:700.770000px;}
.yf0{bottom:701.490000px;}
.y6d{bottom:709.770000px;}
.yb0{bottom:717.690000px;}
.yd7{bottom:718.050000px;}
.yef{bottom:718.770000px;}
.y6c{bottom:727.050000px;}
.yd6{bottom:735.330000px;}
.yee{bottom:736.050000px;}
.y6b{bottom:744.330000px;}
.yd5{bottom:752.610000px;}
.yed{bottom:753.330000px;}
.y6a{bottom:761.610000px;}
.yd4{bottom:769.890000px;}
.yec{bottom:770.610000px;}
.y69{bottom:778.890000px;}
.yd3{bottom:787.170000px;}
.yeb{bottom:787.890000px;}
.y68{bottom:796.170000px;}
.yd2{bottom:804.135000px;}
.yea{bottom:805.215000px;}
.y67{bottom:813.495000px;}
.ye9{bottom:822.495000px;}
.y66{bottom:830.415000px;}
.ye8{bottom:839.415000px;}
.y8a{bottom:842.310000px;}
.y65{bottom:847.695000px;}
.ye7{bottom:856.695000px;}
.yd1{bottom:864.615000px;}
.yaf{bottom:864.975000px;}
.y64{bottom:873.975000px;}
.yae{bottom:881.895000px;}
.y63{bottom:891.255000px;}
.y62{bottom:908.535000px;}
.ye6{bottom:925.455000px;}
.y61{bottom:925.815000px;}
.y60{bottom:943.125000px;}
.ye5{bottom:952.125000px;}
.y5f{bottom:960.045000px;}
.yad{bottom:960.405000px;}
.yf{bottom:960.765000px;}
.ye{bottom:966.165000px;}
.ye4{bottom:969.405000px;}
.yd0{bottom:977.325000px;}
.yac{bottom:977.685000px;}
.yd{bottom:983.445000px;}
.y5e{bottom:986.685000px;}
.yab{bottom:994.965000px;}
.y5d{bottom:1003.965000px;}
.yaa{bottom:1012.245000px;}
.yc{bottom:1019.805000px;}
.ye3{bottom:1020.885000px;}
.y5c{bottom:1021.245000px;}
.ya9{bottom:1029.165000px;}
.y5b{bottom:1038.165000px;}
.yb{bottom:1044.285000px;}
.ya8{bottom:1046.085000px;}
.y5a{bottom:1055.445000px;}
.ya{bottom:1072.050000px;}
.y59{bottom:1072.770000px;}
.y56{bottom:1075.320000px;}
.ycf{bottom:1089.690000px;}
.y58{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.165313px;}
.h17{height:5.650313px;}
.h1d{height:18.390000px;}
.h1f{height:18.705000px;}
.h1c{height:18.720000px;}
.h18{height:27.720000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.h1e{height:37.065000px;}
.h20{height:37.110000px;}
.h21{height:37.425000px;}
.h1b{height:37.440000px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h10{height:42.229688px;}
.hf{height:46.098281px;}
.h15{height:53.677969px;}
.h16{height:55.147500px;}
.he{height:59.328281px;}
.h6{height:59.357813px;}
.h9{height:60.952500px;}
.h11{height:61.927031px;}
.h1a{height:62.163910px;}
.h24{height:62.960625px;}
.h19{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:201.600000px;}
.h23{height:217.875000px;}
.h22{height:243.045000px;}
.hb{height:587.325000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:68.062500px;}
.w2{width:103.702500px;}
.wb{width:113.781000px;}
.w9{width:120.672000px;}
.wa{width:127.476000px;}
.wc{width:132.165000px;}
.w4{width:132.502500px;}
.w8{width:134.280000px;}
.wd{width:149.805000px;}
.w6{width:163.080000px;}
.w10{width:174.645000px;}
.we{width:181.155000px;}
.wf{width:193.395000px;}
.w11{width:358.695000px;}
.w12{width:376.695000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.876000px;}
.x19{left:8.295000px;}
.x28{left:10.440000px;}
.x4{left:13.305000px;}
.x34{left:14.400000px;}
.x17{left:16.546500px;}
.x14{left:17.626500px;}
.x16{left:19.786500px;}
.x2b{left:24.135000px;}
.x35{left:25.200000px;}
.x15{left:26.986500px;}
.x1d{left:29.146500px;}
.x37{left:31.305000px;}
.x36{left:32.386500px;}
.x6{left:35.265000px;}
.x2c{left:38.535000px;}
.x32{left:40.342500px;}
.xe{left:43.906500px;}
.x2f{left:45.360000px;}
.x1c{left:47.542500px;}
.xf{left:50.782500px;}
.xd{left:55.102500px;}
.x1f{left:57.262500px;}
.x1a{left:62.295000px;}
.x31{left:64.815000px;}
.x1e{left:66.265500px;}
.x12{left:73.105500px;}
.x33{left:76.725000px;}
.x1{left:78.529500px;}
.x13{left:80.305500px;}
.x7{left:86.436000px;}
.x11{left:92.905500px;}
.x2{left:95.425500px;}
.x24{left:96.529500px;}
.x20{left:102.985500px;}
.x1b{left:106.945500px;}
.x22{left:113.436000px;}
.x10{left:124.585500px;}
.x5{left:141.540000px;}
.x3d{left:150.175500px;}
.x38{left:154.495500px;}
.x3b{left:159.195000px;}
.x25{left:165.330000px;}
.x23{left:166.395000px;}
.x3{left:182.250000px;}
.x18{left:218.970000px;}
.x2d{left:246.705000px;}
.xa{left:280.905000px;}
.x26{left:300.345000px;}
.x39{left:351.850500px;}
.x3e{left:356.170500px;}
.x3f{left:366.990000px;}
.x3c{left:374.190000px;}
.x27{left:421.740000px;}
.x2e{left:428.580000px;}
.x3a{left:438.300000px;}
.x29{left:550.305000px;}
.xb{left:583.455000px;}
.x30{left:622.710000px;}
.x2a{left:664.830000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v2{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.363733pt;}
.ls5{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.920000pt;}
.ls10{letter-spacing:3.200000pt;}
.lsf{letter-spacing:4.480000pt;}
.ls12{letter-spacing:14.494720pt;}
.lsc{letter-spacing:38.814720pt;}
.ls9{letter-spacing:41.374720pt;}
.lsb{letter-spacing:466.698667pt;}
.wsb{word-spacing:-53.760000pt;}
.ws1{word-spacing:-21.982507pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-2.923947pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._6{width:4.413013pt;}
._c{width:5.608107pt;}
._7{width:6.712747pt;}
._d{width:7.742720pt;}
._14{width:8.651520pt;}
._10{width:9.702400pt;}
._11{width:10.598400pt;}
._f{width:11.502080pt;}
._e{width:12.480000pt;}
._b{width:14.384213pt;}
._a{width:15.508480pt;}
._12{width:16.675840pt;}
._13{width:17.944747pt;}
._15{width:19.164160pt;}
._16{width:20.208640pt;}
._17{width:21.532160pt;}
._5{width:871.578453pt;}
._8{width:1920.204373pt;}
.fs4{font-size:5.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.240000pt;}
.fs9{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:1.266667pt;}
.y90{bottom:1.600000pt;}
.y49{bottom:2.546667pt;}
.y3f{bottom:3.200000pt;}
.y5{bottom:3.840000pt;}
.y76{bottom:4.480000pt;}
.y57{bottom:4.773333pt;}
.y78{bottom:4.800000pt;}
.y8c{bottom:7.666667pt;}
.y2{bottom:8.960000pt;}
.y48{bottom:9.586667pt;}
.y3e{bottom:18.560000pt;}
.y54{bottom:20.786667pt;}
.y4{bottom:20.800000pt;}
.y7e{bottom:20.840000pt;}
.y75{bottom:21.120000pt;}
.y80{bottom:21.440000pt;}
.y3d{bottom:33.960000pt;}
.y53{bottom:34.546667pt;}
.y47{bottom:35.826667pt;}
.y3{bottom:42.560000pt;}
.y46{bottom:46.386667pt;}
.y3c{bottom:49.320000pt;}
.y52{bottom:50.226667pt;}
.y45{bottom:57.906667pt;}
.y9{bottom:63.712000pt;}
.y51{bottom:64.306667pt;}
.y3b{bottom:64.680000pt;}
.y44{bottom:69.426667pt;}
.y50{bottom:75.826667pt;}
.y3a{bottom:80.040000pt;}
.y4f{bottom:81.266667pt;}
.y43{bottom:88.626667pt;}
.y8{bottom:93.472000pt;}
.y4e{bottom:95.373333pt;}
.y39{bottom:95.400000pt;}
.y4d{bottom:109.133333pt;}
.y38{bottom:110.760000pt;}
.y7{bottom:111.072000pt;}
.y4c{bottom:122.893333pt;}
.y37{bottom:126.120000pt;}
.y4b{bottom:136.653333pt;}
.y55{bottom:136.706667pt;}
.y89{bottom:137.346667pt;}
.yce{bottom:138.946667pt;}
.y36{bottom:141.480000pt;}
.y42{bottom:144.333333pt;}
.ya7{bottom:149.186667pt;}
.y40{bottom:149.520000pt;}
.y4a{bottom:150.413333pt;}
.y88{bottom:152.706667pt;}
.y41{bottom:153.613333pt;}
.ycd{bottom:154.306667pt;}
.y35{bottom:156.866667pt;}
.ya6{bottom:164.546667pt;}
.y87{bottom:168.066667pt;}
.ye2{bottom:169.026667pt;}
.ycc{bottom:169.346667pt;}
.y34{bottom:171.586667pt;}
.ya5{bottom:179.586667pt;}
.y8f{bottom:181.826667pt;}
.y86{bottom:183.426667pt;}
.ycb{bottom:184.706667pt;}
.ya4{bottom:194.946667pt;}
.y33{bottom:195.266667pt;}
.y85{bottom:198.146667pt;}
.ye1{bottom:199.746667pt;}
.yca{bottom:200.066667pt;}
.y8b{bottom:204.213333pt;}
.ya3{bottom:210.306667pt;}
.y32{bottom:210.626667pt;}
.yc9{bottom:215.426667pt;}
.y84{bottom:221.826667pt;}
.ye0{bottom:223.426667pt;}
.ya2{bottom:225.346667pt;}
.y31{bottom:225.986667pt;}
.yc8{bottom:230.786667pt;}
.y1e{bottom:234.626667pt;}
.y83{bottom:237.186667pt;}
.ydf{bottom:238.786667pt;}
.y30{bottom:241.346667pt;}
.yc7{bottom:245.853333pt;}
.ya1{bottom:249.053333pt;}
.y82{bottom:249.693333pt;}
.yde{bottom:254.173333pt;}
.y1d{bottom:256.066667pt;}
.y2f{bottom:256.706667pt;}
.ya0{bottom:264.413333pt;}
.yc6{bottom:269.533333pt;}
.y2e{bottom:272.093333pt;}
.y1c{bottom:277.533333pt;}
.y9f{bottom:279.773333pt;}
.y81{bottom:283.613333pt;}
.yc5{bottom:284.893333pt;}
.y2d{bottom:287.453333pt;}
.y9e{bottom:295.133333pt;}
.y1b{bottom:298.973333pt;}
.yc4{bottom:300.253333pt;}
.y2c{bottom:302.813333pt;}
.y9d{bottom:310.493333pt;}
.yc3{bottom:315.613333pt;}
.y7f{bottom:317.213333pt;}
.y2b{bottom:318.173333pt;}
.y1a{bottom:320.413333pt;}
.yff{bottom:323.933333pt;}
.y9c{bottom:325.853333pt;}
.y10{bottom:329.693333pt;}
.yc2{bottom:330.973333pt;}
.y2a{bottom:333.533333pt;}
.yfe{bottom:339.613333pt;}
.y9b{bottom:340.893333pt;}
.y19{bottom:341.853333pt;}
.yc1{bottom:346.333333pt;}
.y29{bottom:348.573333pt;}
.y7d{bottom:351.133333pt;}
.yfd{bottom:354.973333pt;}
.yc0{bottom:361.093333pt;}
.ydd{bottom:361.413333pt;}
.y18{bottom:363.293333pt;}
.y28{bottom:363.933333pt;}
.y9a{bottom:364.613333pt;}
.yfc{bottom:370.373333pt;}
.ydc{bottom:376.773333pt;}
.y27{bottom:379.293333pt;}
.y99{bottom:379.653333pt;}
.y17{bottom:384.773333pt;}
.yfb{bottom:385.413333pt;}
.ydb{bottom:391.813333pt;}
.y26{bottom:394.693333pt;}
.ybf{bottom:400.133333pt;}
.yfa{bottom:400.773333pt;}
.y7c{bottom:403.653333pt;}
.y16{bottom:406.213333pt;}
.y25{bottom:410.053333pt;}
.ybe{bottom:415.493333pt;}
.y7b{bottom:416.133333pt;}
.y24{bottom:425.413333pt;}
.y98{bottom:426.373333pt;}
.y15{bottom:427.653333pt;}
.ybd{bottom:430.853333pt;}
.yf9{bottom:431.493333pt;}
.y7a{bottom:433.413333pt;}
.y23{bottom:440.773333pt;}
.y97{bottom:441.733333pt;}
.ybc{bottom:446.213333pt;}
.yf8{bottom:446.853333pt;}
.y14{bottom:449.093333pt;}
.y22{bottom:456.133333pt;}
.y96{bottom:456.773333pt;}
.ybb{bottom:461.573333pt;}
.yf7{bottom:462.213333pt;}
.y79{bottom:467.333333pt;}
.y13{bottom:470.533333pt;}
.y21{bottom:471.493333pt;}
.yba{bottom:476.933333pt;}
.yf6{bottom:477.600000pt;}
.y95{bottom:480.480000pt;}
.y77{bottom:484.320000pt;}
.y20{bottom:486.853333pt;}
.y12{bottom:492.293333pt;}
.yb9{bottom:492.320000pt;}
.yf5{bottom:492.960000pt;}
.y94{bottom:495.840000pt;}
.y74{bottom:501.600000pt;}
.y1f{bottom:501.920000pt;}
.yb8{bottom:507.360000pt;}
.yda{bottom:507.680000pt;}
.yf4{bottom:508.320000pt;}
.y93{bottom:510.880000pt;}
.y11{bottom:513.760000pt;}
.yd9{bottom:523.040000pt;}
.yf3{bottom:523.680000pt;}
.y92{bottom:526.560000pt;}
.yb7{bottom:531.040000pt;}
.yd8{bottom:537.760000pt;}
.y73{bottom:538.720000pt;}
.yf2{bottom:539.040000pt;}
.y91{bottom:541.920000pt;}
.yb6{bottom:546.080000pt;}
.y72{bottom:554.080000pt;}
.y8e{bottom:554.400000pt;}
.yb5{bottom:561.440000pt;}
.y71{bottom:569.440000pt;}
.yb4{bottom:576.800000pt;}
.y70{bottom:584.800000pt;}
.yb3{bottom:592.160000pt;}
.yf1{bottom:599.866667pt;}
.y6f{bottom:600.186667pt;}
.yb2{bottom:607.546667pt;}
.y6e{bottom:615.546667pt;}
.yb1{bottom:622.906667pt;}
.yf0{bottom:623.546667pt;}
.y6d{bottom:630.906667pt;}
.yb0{bottom:637.946667pt;}
.yd7{bottom:638.266667pt;}
.yef{bottom:638.906667pt;}
.y6c{bottom:646.266667pt;}
.yd6{bottom:653.626667pt;}
.yee{bottom:654.266667pt;}
.y6b{bottom:661.626667pt;}
.yd5{bottom:668.986667pt;}
.yed{bottom:669.626667pt;}
.y6a{bottom:676.986667pt;}
.yd4{bottom:684.346667pt;}
.yec{bottom:684.986667pt;}
.y69{bottom:692.346667pt;}
.yd3{bottom:699.706667pt;}
.yeb{bottom:700.346667pt;}
.y68{bottom:707.706667pt;}
.yd2{bottom:714.786667pt;}
.yea{bottom:715.746667pt;}
.y67{bottom:723.106667pt;}
.ye9{bottom:731.106667pt;}
.y66{bottom:738.146667pt;}
.ye8{bottom:746.146667pt;}
.y8a{bottom:748.720000pt;}
.y65{bottom:753.506667pt;}
.ye7{bottom:761.506667pt;}
.yd1{bottom:768.546667pt;}
.yaf{bottom:768.866667pt;}
.y64{bottom:776.866667pt;}
.yae{bottom:783.906667pt;}
.y63{bottom:792.226667pt;}
.y62{bottom:807.586667pt;}
.ye6{bottom:822.626667pt;}
.y61{bottom:822.946667pt;}
.y60{bottom:838.333333pt;}
.ye5{bottom:846.333333pt;}
.y5f{bottom:853.373333pt;}
.yad{bottom:853.693333pt;}
.yf{bottom:854.013333pt;}
.ye{bottom:858.813333pt;}
.ye4{bottom:861.693333pt;}
.yd0{bottom:868.733333pt;}
.yac{bottom:869.053333pt;}
.yd{bottom:874.173333pt;}
.y5e{bottom:877.053333pt;}
.yab{bottom:884.413333pt;}
.y5d{bottom:892.413333pt;}
.yaa{bottom:899.773333pt;}
.yc{bottom:906.493333pt;}
.ye3{bottom:907.453333pt;}
.y5c{bottom:907.773333pt;}
.ya9{bottom:914.813333pt;}
.y5b{bottom:922.813333pt;}
.yb{bottom:928.253333pt;}
.ya8{bottom:929.853333pt;}
.y5a{bottom:938.173333pt;}
.ya{bottom:952.933333pt;}
.y59{bottom:953.573333pt;}
.y56{bottom:955.840000pt;}
.ycf{bottom:968.613333pt;}
.y58{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.702500pt;}
.h17{height:5.022500pt;}
.h1d{height:16.346667pt;}
.h1f{height:16.626667pt;}
.h1c{height:16.640000pt;}
.h18{height:24.640000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.h1e{height:32.946667pt;}
.h20{height:32.986667pt;}
.h21{height:33.266667pt;}
.h1b{height:33.280000pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h10{height:37.537500pt;}
.hf{height:40.976250pt;}
.h15{height:47.713750pt;}
.h16{height:49.020000pt;}
.he{height:52.736250pt;}
.h6{height:52.762500pt;}
.h9{height:54.180000pt;}
.h11{height:55.046250pt;}
.h1a{height:55.256809pt;}
.h24{height:55.965000pt;}
.h19{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:179.200000pt;}
.h23{height:193.666667pt;}
.h22{height:216.040000pt;}
.hb{height:522.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:60.500000pt;}
.w2{width:92.180000pt;}
.wb{width:101.138667pt;}
.w9{width:107.264000pt;}
.wa{width:113.312000pt;}
.wc{width:117.480000pt;}
.w4{width:117.780000pt;}
.w8{width:119.360000pt;}
.wd{width:133.160000pt;}
.w6{width:144.960000pt;}
.w10{width:155.240000pt;}
.we{width:161.026667pt;}
.wf{width:171.906667pt;}
.w11{width:318.840000pt;}
.w12{width:334.840000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.112000pt;}
.x19{left:7.373333pt;}
.x28{left:9.280000pt;}
.x4{left:11.826667pt;}
.x34{left:12.800000pt;}
.x17{left:14.708000pt;}
.x14{left:15.668000pt;}
.x16{left:17.588000pt;}
.x2b{left:21.453333pt;}
.x35{left:22.400000pt;}
.x15{left:23.988000pt;}
.x1d{left:25.908000pt;}
.x37{left:27.826667pt;}
.x36{left:28.788000pt;}
.x6{left:31.346667pt;}
.x2c{left:34.253333pt;}
.x32{left:35.860000pt;}
.xe{left:39.028000pt;}
.x2f{left:40.320000pt;}
.x1c{left:42.260000pt;}
.xf{left:45.140000pt;}
.xd{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x1a{left:55.373333pt;}
.x31{left:57.613333pt;}
.x1e{left:58.902667pt;}
.x12{left:64.982667pt;}
.x33{left:68.200000pt;}
.x1{left:69.804000pt;}
.x13{left:71.382667pt;}
.x7{left:76.832000pt;}
.x11{left:82.582667pt;}
.x2{left:84.822667pt;}
.x24{left:85.804000pt;}
.x20{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x22{left:100.832000pt;}
.x10{left:110.742667pt;}
.x5{left:125.813333pt;}
.x3d{left:133.489333pt;}
.x38{left:137.329333pt;}
.x3b{left:141.506667pt;}
.x25{left:146.960000pt;}
.x23{left:147.906667pt;}
.x3{left:162.000000pt;}
.x18{left:194.640000pt;}
.x2d{left:219.293333pt;}
.xa{left:249.693333pt;}
.x26{left:266.973333pt;}
.x39{left:312.756000pt;}
.x3e{left:316.596000pt;}
.x3f{left:326.213333pt;}
.x3c{left:332.613333pt;}
.x27{left:374.880000pt;}
.x2e{left:380.960000pt;}
.x3a{left:389.600000pt;}
.x29{left:489.160000pt;}
.xb{left:518.626667pt;}
.x30{left:553.520000pt;}
.x2a{left:590.960000pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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