
    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_d1cd134efff50c645df5ca31.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_347d732aa01c513622c1921f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_4477fe6c956a2bb729184c0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_7d0fa6a73d4f853b641c2af2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_81af9192c9b87622bf6e0784.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_a88dc53353963b45e22a889b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_1308453c3a2e16867ea8ea41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_5bbbc24671f34f399e47a09e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-75.600000px;}
.v3{vertical-align:-74.160000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-2.988000px;}
.ls7{letter-spacing:-0.414600px;}
.lsd{letter-spacing:-0.109200px;}
.ls5{letter-spacing:-0.106800px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.027360px;}
.ls1{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.281280px;}
.lsb{letter-spacing:0.305280px;}
.lsc{letter-spacing:0.305400px;}
.ls27{letter-spacing:0.666720px;}
.ls1d{letter-spacing:0.979920px;}
.ls23{letter-spacing:1.025280px;}
.ls18{letter-spacing:1.745280px;}
.ls10{letter-spacing:5.345280px;}
.ls17{letter-spacing:6.065280px;}
.ls1a{letter-spacing:6.785280px;}
.lsf{letter-spacing:7.481280px;}
.ls4{letter-spacing:7.866720px;}
.ls14{letter-spacing:13.985280px;}
.ls24{letter-spacing:14.705280px;}
.ls19{letter-spacing:17.585280px;}
.ls21{letter-spacing:19.025280px;}
.ls11{letter-spacing:21.905280px;}
.ls22{letter-spacing:23.345280px;}
.ls1c{letter-spacing:24.065280px;}
.ls26{letter-spacing:24.426720px;}
.ls1f{letter-spacing:31.985280px;}
.lse{letter-spacing:33.425280px;}
.lsa{letter-spacing:34.865280px;}
.ls25{letter-spacing:41.706720px;}
.ls13{letter-spacing:151.505280px;}
.ls12{letter-spacing:192.581280px;}
.ls16{letter-spacing:197.585280px;}
.ls20{letter-spacing:200.988000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.305520px;}
.ws5{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.812640px;}
.ws8{word-spacing:-15.264000px;}
.ws9{word-spacing:-15.012000px;}
.ws4{word-spacing:-13.625280px;}
.wsb{word-spacing:-13.410720px;}
.ws6{word-spacing:0.000000px;}
._37{margin-left:-6.405120px;}
._35{margin-left:-5.130000px;}
._13{margin-left:-3.916800px;}
._12{margin-left:-2.808720px;}
._1{margin-left:-1.441440px;}
._0{width:1.097040px;}
._11{width:2.766240px;}
._1b{width:3.974400px;}
._16{width:5.232960px;}
._f{width:6.756480px;}
._10{width:7.917120px;}
._3{width:9.671040px;}
._2{width:11.236080px;}
._e{width:12.823440px;}
._26{width:14.467440px;}
._2d{width:15.473040px;}
._20{width:16.626240px;}
._25{width:19.474560px;}
._24{width:20.584800px;}
._9{width:21.594240px;}
._21{width:22.919040px;}
._1c{width:24.228000px;}
._1f{width:26.297280px;}
._2e{width:28.681920px;}
._33{width:29.735280px;}
._d{width:30.801600px;}
._c{width:31.993920px;}
._23{width:33.435360px;}
._5{width:34.511040px;}
._4{width:35.687520px;}
._7{width:36.763200px;}
._6{width:38.072160px;}
._28{width:40.008960px;}
._30{width:41.333760px;}
._31{width:42.802320px;}
._1d{width:44.645760px;}
._1e{width:46.203840px;}
._2b{width:47.592000px;}
._27{width:49.888320px;}
._38{width:51.193920px;}
._2f{width:56.378400px;}
._2c{width:57.430080px;}
._32{width:58.953600px;}
._36{width:60.395040px;}
._14{width:63.425280px;}
._15{width:64.548480px;}
._18{width:66.504960px;}
._17{width:67.615200px;}
._b{width:72.334080px;}
._a{width:73.576800px;}
._29{width:80.282880px;}
._2a{width:81.289680px;}
._1a{width:84.553920px;}
._19{width:85.632480px;}
._22{width:93.332160px;}
._34{width:97.571520px;}
._8{width:119.042400px;}
._39{width:846.067680px;}
.fc2{color:transparent;}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.y8f{bottom:3.600000px;}
.y93{bottom:4.140000px;}
.y6a{bottom:5.580000px;}
.y7d{bottom:20.340000px;}
.y82{bottom:20.565000px;}
.y2{bottom:22.500000px;}
.y92{bottom:23.040000px;}
.y7c{bottom:37.620000px;}
.y81{bottom:37.845000px;}
.y1{bottom:41.040000px;}
.y91{bottom:42.120000px;}
.y80{bottom:55.125000px;}
.y90{bottom:61.020000px;}
.y2b{bottom:109.476000px;}
.y7a{bottom:114.696000px;}
.y68{bottom:116.856000px;}
.y50{bottom:122.076000px;}
.y8d{bottom:125.136000px;}
.y2a{bottom:126.576000px;}
.ycb{bottom:126.756000px;}
.y79{bottom:127.296000px;}
.yb1{bottom:128.376000px;}
.yf0{bottom:130.536000px;}
.y67{bottom:135.756000px;}
.y4f{bottom:140.976000px;}
.y29{bottom:143.856000px;}
.yca{bottom:145.656000px;}
.yb0{bottom:147.276000px;}
.yef{bottom:147.816000px;}
.y28{bottom:148.356000px;}
.y66{bottom:154.830000px;}
.y4e{bottom:159.870000px;}
.y27{bottom:161.850000px;}
.yc9{bottom:164.550000px;}
.yee{bottom:164.910000px;}
.yaf{bottom:166.170000px;}
.y65{bottom:173.730000px;}
.y4d{bottom:178.950000px;}
.yed{bottom:182.190000px;}
.y26{bottom:182.370000px;}
.yc8{bottom:184.710000px;}
.yae{bottom:185.250000px;}
.y64{bottom:192.810000px;}
.y4c{bottom:197.850000px;}
.yec{bottom:199.470000px;}
.y25{bottom:201.270000px;}
.yc7{bottom:203.610000px;}
.yad{bottom:204.150000px;}
.y63{bottom:211.710000px;}
.yeb{bottom:216.750000px;}
.y4b{bottom:216.930000px;}
.y24{bottom:220.350000px;}
.yc6{bottom:222.510000px;}
.yac{bottom:223.230000px;}
.y62{bottom:230.610000px;}
.yea{bottom:234.075000px;}
.y4a{bottom:235.875000px;}
.y23{bottom:239.295000px;}
.yab{bottom:242.175000px;}
.yc5{bottom:242.715000px;}
.y61{bottom:249.735000px;}
.ye9{bottom:251.355000px;}
.y49{bottom:254.955000px;}
.y22{bottom:258.375000px;}
.yaa{bottom:261.075000px;}
.yc4{bottom:261.795000px;}
.ye8{bottom:268.455000px;}
.y60{bottom:268.635000px;}
.y48{bottom:273.855000px;}
.y21{bottom:277.275000px;}
.ya9{bottom:280.155000px;}
.yc3{bottom:280.695000px;}
.ye7{bottom:285.735000px;}
.y5f{bottom:287.715000px;}
.y47{bottom:292.755000px;}
.y20{bottom:296.175000px;}
.ya8{bottom:299.055000px;}
.yc2{bottom:299.775000px;}
.ye6{bottom:303.015000px;}
.y5e{bottom:306.615000px;}
.y46{bottom:311.835000px;}
.y1f{bottom:315.255000px;}
.ya7{bottom:318.135000px;}
.yc1{bottom:318.675000px;}
.ye5{bottom:320.295000px;}
.y5d{bottom:325.515000px;}
.y45{bottom:330.735000px;}
.y1e{bottom:334.155000px;}
.ya6{bottom:337.035000px;}
.yc0{bottom:337.575000px;}
.y5c{bottom:344.595000px;}
.y44{bottom:349.815000px;}
.y1d{bottom:353.235000px;}
.ye4{bottom:354.855000px;}
.ya5{bottom:356.115000px;}
.ybf{bottom:356.655000px;}
.y5b{bottom:363.495000px;}
.y8c{bottom:364.935000px;}
.y43{bottom:368.715000px;}
.ye3{bottom:371.955000px;}
.y1c{bottom:372.135000px;}
.ya4{bottom:375.015000px;}
.ybe{bottom:375.555000px;}
.y5a{bottom:382.575000px;}
.y8b{bottom:384.015000px;}
.y42{bottom:387.615000px;}
.ye2{bottom:389.235000px;}
.y1b{bottom:391.215000px;}
.ya3{bottom:393.375000px;}
.ybd{bottom:394.635000px;}
.y59{bottom:401.475000px;}
.y8a{bottom:402.915000px;}
.ye1{bottom:406.515000px;}
.y41{bottom:406.695000px;}
.ya2{bottom:409.575000px;}
.y1a{bottom:410.115000px;}
.ybc{bottom:413.535000px;}
.y58{bottom:420.375000px;}
.y89{bottom:421.845000px;}
.ye0{bottom:423.825000px;}
.y40{bottom:425.625000px;}
.ya1{bottom:428.505000px;}
.y19{bottom:428.865000px;}
.ybb{bottom:432.645000px;}
.y57{bottom:439.485000px;}
.y88{bottom:440.925000px;}
.ydf{bottom:441.285000px;}
.y3f{bottom:444.705000px;}
.y18{bottom:446.325000px;}
.ya0{bottom:446.865000px;}
.yba{bottom:451.545000px;}
.y56{bottom:458.385000px;}
.y87{bottom:459.825000px;}
.yde{bottom:460.185000px;}
.y9f{bottom:463.065000px;}
.y3e{bottom:463.605000px;}
.y17{bottom:465.405000px;}
.yb9{bottom:470.445000px;}
.y86{bottom:478.905000px;}
.ydd{bottom:479.265000px;}
.y9e{bottom:481.965000px;}
.y3d{bottom:482.505000px;}
.y16{bottom:483.765000px;}
.yb8{bottom:489.525000px;}
.y55{bottom:496.365000px;}
.y85{bottom:497.805000px;}
.ydc{bottom:498.165000px;}
.y15{bottom:499.785000px;}
.y9d{bottom:500.865000px;}
.y3c{bottom:501.585000px;}
.yb7{bottom:508.425000px;}
.y54{bottom:515.265000px;}
.y84{bottom:516.705000px;}
.ydb{bottom:517.245000px;}
.y73{bottom:518.325000px;}
.y14{bottom:518.865000px;}
.y76{bottom:519.045000px;}
.y9c{bottom:519.945000px;}
.y77{bottom:520.305000px;}
.y3b{bottom:520.485000px;}
.yb6{bottom:527.505000px;}
.y53{bottom:534.345000px;}
.yda{bottom:536.145000px;}
.y13{bottom:537.765000px;}
.y9b{bottom:538.845000px;}
.y3a{bottom:539.565000px;}
.yb5{bottom:546.405000px;}
.y83{bottom:551.085000px;}
.y52{bottom:553.245000px;}
.yd9{bottom:555.225000px;}
.y12{bottom:556.665000px;}
.y9a{bottom:557.925000px;}
.y70{bottom:558.105000px;}
.y39{bottom:558.465000px;}
.y71{bottom:558.825000px;}
.y72{bottom:559.365000px;}
.y74{bottom:560.085000px;}
.y75{bottom:561.345000px;}
.yb4{bottom:565.305000px;}
.yd8{bottom:574.125000px;}
.y11{bottom:575.745000px;}
.y99{bottom:576.825000px;}
.y38{bottom:577.365000px;}
.yb3{bottom:583.845000px;}
.y51{bottom:592.305000px;}
.yd7{bottom:593.025000px;}
.y10{bottom:594.645000px;}
.y98{bottom:595.725000px;}
.y37{bottom:596.445000px;}
.y6b{bottom:599.325000px;}
.yb2{bottom:599.865000px;}
.y6e{bottom:600.045000px;}
.y6f{bottom:600.765000px;}
.y7f{bottom:603.465000px;}
.yd6{bottom:612.150000px;}
.yf{bottom:613.770000px;}
.y97{bottom:614.850000px;}
.y36{bottom:615.390000px;}
.yd5{bottom:631.050000px;}
.ye{bottom:632.670000px;}
.y96{bottom:633.750000px;}
.y35{bottom:634.470000px;}
.y69{bottom:637.350000px;}
.y6c{bottom:638.610000px;}
.y6d{bottom:639.330000px;}
.yd4{bottom:650.130000px;}
.yd{bottom:651.570000px;}
.y95{bottom:652.830000px;}
.y34{bottom:653.370000px;}
.yd3{bottom:669.030000px;}
.yc{bottom:670.650000px;}
.y94{bottom:671.730000px;}
.y33{bottom:672.270000px;}
.y7b{bottom:673.350000px;}
.y8e{bottom:687.210000px;}
.yd2{bottom:687.930000px;}
.yb{bottom:689.910000px;}
.y32{bottom:691.350000px;}
.yd1{bottom:708.090000px;}
.y31{bottom:710.250000px;}
.ya{bottom:710.610000px;}
.yd0{bottom:726.990000px;}
.y30{bottom:729.330000px;}
.y9{bottom:730.410000px;}
.ycf{bottom:745.890000px;}
.y8{bottom:746.790000px;}
.y2f{bottom:748.230000px;}
.yce{bottom:766.050000px;}
.y7{bottom:766.590000px;}
.y2e{bottom:767.310000px;}
.y5{bottom:782.970000px;}
.ycd{bottom:785.130000px;}
.y2d{bottom:786.210000px;}
.y6{bottom:788.910000px;}
.y4{bottom:803.700000px;}
.ycc{bottom:804.060000px;}
.y2c{bottom:805.140000px;}
.y78{bottom:811.080000px;}
.h10{height:18.180000px;}
.h12{height:18.216000px;}
.h14{height:27.147656px;}
.he{height:34.874297px;}
.h13{height:38.008125px;}
.hb{height:39.840820px;}
.h5{height:43.905937px;}
.h17{height:44.090508px;}
.h3{height:46.251562px;}
.h11{height:48.436523px;}
.ha{height:48.871406px;}
.h6{height:49.148438px;}
.hd{height:50.273438px;}
.hc{height:50.488594px;}
.h15{height:51.660000px;}
.h2{height:53.603086px;}
.h1a{height:54.390938px;}
.h9{height:59.415469px;}
.h8{height:60.288750px;}
.h7{height:64.582031px;}
.h4{height:65.531250px;}
.h16{height:68.976000px;}
.hf{height:75.560977px;}
.h19{height:76.500000px;}
.h18{height:222.870000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w4{width:52.740000px;}
.w6{width:53.460000px;}
.w9{width:59.040000px;}
.wb{width:60.840000px;}
.wa{width:61.596000px;}
.wc{width:62.820000px;}
.w5{width:63.936000px;}
.w7{width:65.160000px;}
.w1c{width:68.616000px;}
.wf{width:72.720000px;}
.w13{width:73.980000px;}
.w10{width:74.556000px;}
.wd{width:77.796000px;}
.we{width:77.940000px;}
.w8{width:77.976000px;}
.w12{width:78.336000px;}
.w1b{width:78.840000px;}
.w17{width:79.560000px;}
.w15{width:94.896000px;}
.w11{width:103.860000px;}
.w14{width:107.856000px;}
.w16{width:110.736000px;}
.w19{width:233.850000px;}
.w1a{width:233.895000px;}
.w1d{width:319.935000px;}
.w18{width:386.025000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x26{left:7.740000px;}
.x13{left:10.800000px;}
.x2a{left:60.345000px;}
.x29{left:63.000000px;}
.x2{left:80.855991px;}
.x12{left:82.296000px;}
.xe{left:86.255991px;}
.x3{left:87.515991px;}
.x9{left:98.855991px;}
.x4{left:103.355991px;}
.x2c{left:108.575991px;}
.xf{left:112.895991px;}
.xc{left:123.335991px;}
.x11{left:134.855991px;}
.x10{left:139.895991px;}
.x14{left:140.976000px;}
.x16{left:152.670000px;}
.xa{left:156.629991px;}
.xb{left:158.429991px;}
.x1e{left:160.230000px;}
.x27{left:161.850000px;}
.x8{left:169.049991px;}
.x22{left:190.830000px;}
.x15{left:209.775000px;}
.x2b{left:228.315000px;}
.x1a{left:235.875000px;}
.x28{left:237.639000px;}
.x1f{left:239.475000px;}
.x17{left:268.275000px;}
.xd{left:296.894991px;}
.x1b{left:304.275000px;}
.x1{left:306.434991px;}
.x7{left:314.714991px;}
.x18{left:332.535000px;}
.x24{left:367.484981px;}
.x25{left:373.244991px;}
.x1c{left:386.925000px;}
.x20{left:389.625000px;}
.x19{left:398.805000px;}
.x23{left:404.385000px;}
.x1d{left:469.770000px;}
.x21{left:473.190000px;}
.x5{left:519.449981px;}
.x6{left:526.109991px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-67.200000pt;}
.v3{vertical-align:-65.920000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-2.656000pt;}
.ls7{letter-spacing:-0.368533pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024320pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.250027pt;}
.lsb{letter-spacing:0.271360pt;}
.lsc{letter-spacing:0.271467pt;}
.ls27{letter-spacing:0.592640pt;}
.ls1d{letter-spacing:0.871040pt;}
.ls23{letter-spacing:0.911360pt;}
.ls18{letter-spacing:1.551360pt;}
.ls10{letter-spacing:4.751360pt;}
.ls17{letter-spacing:5.391360pt;}
.ls1a{letter-spacing:6.031360pt;}
.lsf{letter-spacing:6.650027pt;}
.ls4{letter-spacing:6.992640pt;}
.ls14{letter-spacing:12.431360pt;}
.ls24{letter-spacing:13.071360pt;}
.ls19{letter-spacing:15.631360pt;}
.ls21{letter-spacing:16.911360pt;}
.ls11{letter-spacing:19.471360pt;}
.ls22{letter-spacing:20.751360pt;}
.ls1c{letter-spacing:21.391360pt;}
.ls26{letter-spacing:21.712640pt;}
.ls1f{letter-spacing:28.431360pt;}
.lse{letter-spacing:29.711360pt;}
.lsa{letter-spacing:30.991360pt;}
.ls25{letter-spacing:37.072640pt;}
.ls13{letter-spacing:134.671360pt;}
.ls12{letter-spacing:171.183360pt;}
.ls16{letter-spacing:175.631360pt;}
.ls20{letter-spacing:178.656000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.271573pt;}
.ws5{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.055680pt;}
.ws8{word-spacing:-13.568000pt;}
.ws9{word-spacing:-13.344000pt;}
.ws4{word-spacing:-12.111360pt;}
.wsb{word-spacing:-11.920640pt;}
.ws6{word-spacing:0.000000pt;}
._37{margin-left:-5.693440pt;}
._35{margin-left:-4.560000pt;}
._13{margin-left:-3.481600pt;}
._12{margin-left:-2.496640pt;}
._1{margin-left:-1.281280pt;}
._0{width:0.975147pt;}
._11{width:2.458880pt;}
._1b{width:3.532800pt;}
._16{width:4.651520pt;}
._f{width:6.005760pt;}
._10{width:7.037440pt;}
._3{width:8.596480pt;}
._2{width:9.987627pt;}
._e{width:11.398613pt;}
._26{width:12.859947pt;}
._2d{width:13.753813pt;}
._20{width:14.778880pt;}
._25{width:17.310720pt;}
._24{width:18.297600pt;}
._9{width:19.194880pt;}
._21{width:20.372480pt;}
._1c{width:21.536000pt;}
._1f{width:23.375360pt;}
._2e{width:25.495040pt;}
._33{width:26.431360pt;}
._d{width:27.379200pt;}
._c{width:28.439040pt;}
._23{width:29.720320pt;}
._5{width:30.676480pt;}
._4{width:31.722240pt;}
._7{width:32.678400pt;}
._6{width:33.841920pt;}
._28{width:35.563520pt;}
._30{width:36.741120pt;}
._31{width:38.046507pt;}
._1d{width:39.685120pt;}
._1e{width:41.070080pt;}
._2b{width:42.304000pt;}
._27{width:44.345173pt;}
._38{width:45.505707pt;}
._2f{width:50.114133pt;}
._2c{width:51.048960pt;}
._32{width:52.403200pt;}
._36{width:53.684480pt;}
._14{width:56.378027pt;}
._15{width:57.376427pt;}
._18{width:59.115520pt;}
._17{width:60.102400pt;}
._b{width:64.296960pt;}
._a{width:65.401600pt;}
._29{width:71.362560pt;}
._2a{width:72.257493pt;}
._1a{width:75.159040pt;}
._19{width:76.117760pt;}
._22{width:82.961920pt;}
._34{width:86.730240pt;}
._8{width:105.815467pt;}
._39{width:752.060160pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.y8f{bottom:3.200000pt;}
.y93{bottom:3.680000pt;}
.y6a{bottom:4.960000pt;}
.y7d{bottom:18.080000pt;}
.y82{bottom:18.280000pt;}
.y2{bottom:20.000000pt;}
.y92{bottom:20.480000pt;}
.y7c{bottom:33.440000pt;}
.y81{bottom:33.640000pt;}
.y1{bottom:36.480000pt;}
.y91{bottom:37.440000pt;}
.y80{bottom:49.000000pt;}
.y90{bottom:54.240000pt;}
.y2b{bottom:97.312000pt;}
.y7a{bottom:101.952000pt;}
.y68{bottom:103.872000pt;}
.y50{bottom:108.512000pt;}
.y8d{bottom:111.232000pt;}
.y2a{bottom:112.512000pt;}
.ycb{bottom:112.672000pt;}
.y79{bottom:113.152000pt;}
.yb1{bottom:114.112000pt;}
.yf0{bottom:116.032000pt;}
.y67{bottom:120.672000pt;}
.y4f{bottom:125.312000pt;}
.y29{bottom:127.872000pt;}
.yca{bottom:129.472000pt;}
.yb0{bottom:130.912000pt;}
.yef{bottom:131.392000pt;}
.y28{bottom:131.872000pt;}
.y66{bottom:137.626667pt;}
.y4e{bottom:142.106667pt;}
.y27{bottom:143.866667pt;}
.yc9{bottom:146.266667pt;}
.yee{bottom:146.586667pt;}
.yaf{bottom:147.706667pt;}
.y65{bottom:154.426667pt;}
.y4d{bottom:159.066667pt;}
.yed{bottom:161.946667pt;}
.y26{bottom:162.106667pt;}
.yc8{bottom:164.186667pt;}
.yae{bottom:164.666667pt;}
.y64{bottom:171.386667pt;}
.y4c{bottom:175.866667pt;}
.yec{bottom:177.306667pt;}
.y25{bottom:178.906667pt;}
.yc7{bottom:180.986667pt;}
.yad{bottom:181.466667pt;}
.y63{bottom:188.186667pt;}
.yeb{bottom:192.666667pt;}
.y4b{bottom:192.826667pt;}
.y24{bottom:195.866667pt;}
.yc6{bottom:197.786667pt;}
.yac{bottom:198.426667pt;}
.y62{bottom:204.986667pt;}
.yea{bottom:208.066667pt;}
.y4a{bottom:209.666667pt;}
.y23{bottom:212.706667pt;}
.yab{bottom:215.266667pt;}
.yc5{bottom:215.746667pt;}
.y61{bottom:221.986667pt;}
.ye9{bottom:223.426667pt;}
.y49{bottom:226.626667pt;}
.y22{bottom:229.666667pt;}
.yaa{bottom:232.066667pt;}
.yc4{bottom:232.706667pt;}
.ye8{bottom:238.626667pt;}
.y60{bottom:238.786667pt;}
.y48{bottom:243.426667pt;}
.y21{bottom:246.466667pt;}
.ya9{bottom:249.026667pt;}
.yc3{bottom:249.506667pt;}
.ye7{bottom:253.986667pt;}
.y5f{bottom:255.746667pt;}
.y47{bottom:260.226667pt;}
.y20{bottom:263.266667pt;}
.ya8{bottom:265.826667pt;}
.yc2{bottom:266.466667pt;}
.ye6{bottom:269.346667pt;}
.y5e{bottom:272.546667pt;}
.y46{bottom:277.186667pt;}
.y1f{bottom:280.226667pt;}
.ya7{bottom:282.786667pt;}
.yc1{bottom:283.266667pt;}
.ye5{bottom:284.706667pt;}
.y5d{bottom:289.346667pt;}
.y45{bottom:293.986667pt;}
.y1e{bottom:297.026667pt;}
.ya6{bottom:299.586667pt;}
.yc0{bottom:300.066667pt;}
.y5c{bottom:306.306667pt;}
.y44{bottom:310.946667pt;}
.y1d{bottom:313.986667pt;}
.ye4{bottom:315.426667pt;}
.ya5{bottom:316.546667pt;}
.ybf{bottom:317.026667pt;}
.y5b{bottom:323.106667pt;}
.y8c{bottom:324.386667pt;}
.y43{bottom:327.746667pt;}
.ye3{bottom:330.626667pt;}
.y1c{bottom:330.786667pt;}
.ya4{bottom:333.346667pt;}
.ybe{bottom:333.826667pt;}
.y5a{bottom:340.066667pt;}
.y8b{bottom:341.346667pt;}
.y42{bottom:344.546667pt;}
.ye2{bottom:345.986667pt;}
.y1b{bottom:347.746667pt;}
.ya3{bottom:349.666667pt;}
.ybd{bottom:350.786667pt;}
.y59{bottom:356.866667pt;}
.y8a{bottom:358.146667pt;}
.ye1{bottom:361.346667pt;}
.y41{bottom:361.506667pt;}
.ya2{bottom:364.066667pt;}
.y1a{bottom:364.546667pt;}
.ybc{bottom:367.586667pt;}
.y58{bottom:373.666667pt;}
.y89{bottom:374.973333pt;}
.ye0{bottom:376.733333pt;}
.y40{bottom:378.333333pt;}
.ya1{bottom:380.893333pt;}
.y19{bottom:381.213333pt;}
.ybb{bottom:384.573333pt;}
.y57{bottom:390.653333pt;}
.y88{bottom:391.933333pt;}
.ydf{bottom:392.253333pt;}
.y3f{bottom:395.293333pt;}
.y18{bottom:396.733333pt;}
.ya0{bottom:397.213333pt;}
.yba{bottom:401.373333pt;}
.y56{bottom:407.453333pt;}
.y87{bottom:408.733333pt;}
.yde{bottom:409.053333pt;}
.y9f{bottom:411.613333pt;}
.y3e{bottom:412.093333pt;}
.y17{bottom:413.693333pt;}
.yb9{bottom:418.173333pt;}
.y86{bottom:425.693333pt;}
.ydd{bottom:426.013333pt;}
.y9e{bottom:428.413333pt;}
.y3d{bottom:428.893333pt;}
.y16{bottom:430.013333pt;}
.yb8{bottom:435.133333pt;}
.y55{bottom:441.213333pt;}
.y85{bottom:442.493333pt;}
.ydc{bottom:442.813333pt;}
.y15{bottom:444.253333pt;}
.y9d{bottom:445.213333pt;}
.y3c{bottom:445.853333pt;}
.yb7{bottom:451.933333pt;}
.y54{bottom:458.013333pt;}
.y84{bottom:459.293333pt;}
.ydb{bottom:459.773333pt;}
.y73{bottom:460.733333pt;}
.y14{bottom:461.213333pt;}
.y76{bottom:461.373333pt;}
.y9c{bottom:462.173333pt;}
.y77{bottom:462.493333pt;}
.y3b{bottom:462.653333pt;}
.yb6{bottom:468.893333pt;}
.y53{bottom:474.973333pt;}
.yda{bottom:476.573333pt;}
.y13{bottom:478.013333pt;}
.y9b{bottom:478.973333pt;}
.y3a{bottom:479.613333pt;}
.yb5{bottom:485.693333pt;}
.y83{bottom:489.853333pt;}
.y52{bottom:491.773333pt;}
.yd9{bottom:493.533333pt;}
.y12{bottom:494.813333pt;}
.y9a{bottom:495.933333pt;}
.y70{bottom:496.093333pt;}
.y39{bottom:496.413333pt;}
.y71{bottom:496.733333pt;}
.y72{bottom:497.213333pt;}
.y74{bottom:497.853333pt;}
.y75{bottom:498.973333pt;}
.yb4{bottom:502.493333pt;}
.yd8{bottom:510.333333pt;}
.y11{bottom:511.773333pt;}
.y99{bottom:512.733333pt;}
.y38{bottom:513.213333pt;}
.yb3{bottom:518.973333pt;}
.y51{bottom:526.493333pt;}
.yd7{bottom:527.133333pt;}
.y10{bottom:528.573333pt;}
.y98{bottom:529.533333pt;}
.y37{bottom:530.173333pt;}
.y6b{bottom:532.733333pt;}
.yb2{bottom:533.213333pt;}
.y6e{bottom:533.373333pt;}
.y6f{bottom:534.013333pt;}
.y7f{bottom:536.413333pt;}
.yd6{bottom:544.133333pt;}
.yf{bottom:545.573333pt;}
.y97{bottom:546.533333pt;}
.y36{bottom:547.013333pt;}
.yd5{bottom:560.933333pt;}
.ye{bottom:562.373333pt;}
.y96{bottom:563.333333pt;}
.y35{bottom:563.973333pt;}
.y69{bottom:566.533333pt;}
.y6c{bottom:567.653333pt;}
.y6d{bottom:568.293333pt;}
.yd4{bottom:577.893333pt;}
.yd{bottom:579.173333pt;}
.y95{bottom:580.293333pt;}
.y34{bottom:580.773333pt;}
.yd3{bottom:594.693333pt;}
.yc{bottom:596.133333pt;}
.y94{bottom:597.093333pt;}
.y33{bottom:597.573333pt;}
.y7b{bottom:598.533333pt;}
.y8e{bottom:610.853333pt;}
.yd2{bottom:611.493333pt;}
.yb{bottom:613.253333pt;}
.y32{bottom:614.533333pt;}
.yd1{bottom:629.413333pt;}
.y31{bottom:631.333333pt;}
.ya{bottom:631.653333pt;}
.yd0{bottom:646.213333pt;}
.y30{bottom:648.293333pt;}
.y9{bottom:649.253333pt;}
.ycf{bottom:663.013333pt;}
.y8{bottom:663.813333pt;}
.y2f{bottom:665.093333pt;}
.yce{bottom:680.933333pt;}
.y7{bottom:681.413333pt;}
.y2e{bottom:682.053333pt;}
.y5{bottom:695.973333pt;}
.ycd{bottom:697.893333pt;}
.y2d{bottom:698.853333pt;}
.y6{bottom:701.253333pt;}
.y4{bottom:714.400000pt;}
.ycc{bottom:714.720000pt;}
.y2c{bottom:715.680000pt;}
.y78{bottom:720.960000pt;}
.h10{height:16.160000pt;}
.h12{height:16.192000pt;}
.h14{height:24.131250pt;}
.he{height:30.999375pt;}
.h13{height:33.785000pt;}
.hb{height:35.414062pt;}
.h5{height:39.027500pt;}
.h17{height:39.191562pt;}
.h3{height:41.112500pt;}
.h11{height:43.054688pt;}
.ha{height:43.441250pt;}
.h6{height:43.687500pt;}
.hd{height:44.687500pt;}
.hc{height:44.878750pt;}
.h15{height:45.920000pt;}
.h2{height:47.647188pt;}
.h1a{height:48.347500pt;}
.h9{height:52.813750pt;}
.h8{height:53.590000pt;}
.h7{height:57.406250pt;}
.h4{height:58.250000pt;}
.h16{height:61.312000pt;}
.hf{height:67.165312pt;}
.h19{height:68.000000pt;}
.h18{height:198.106667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w4{width:46.880000pt;}
.w6{width:47.520000pt;}
.w9{width:52.480000pt;}
.wb{width:54.080000pt;}
.wa{width:54.752000pt;}
.wc{width:55.840000pt;}
.w5{width:56.832000pt;}
.w7{width:57.920000pt;}
.w1c{width:60.992000pt;}
.wf{width:64.640000pt;}
.w13{width:65.760000pt;}
.w10{width:66.272000pt;}
.wd{width:69.152000pt;}
.we{width:69.280000pt;}
.w8{width:69.312000pt;}
.w12{width:69.632000pt;}
.w1b{width:70.080000pt;}
.w17{width:70.720000pt;}
.w15{width:84.352000pt;}
.w11{width:92.320000pt;}
.w14{width:95.872000pt;}
.w16{width:98.432000pt;}
.w19{width:207.866667pt;}
.w1a{width:207.906667pt;}
.w1d{width:284.386667pt;}
.w18{width:343.133333pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x26{left:6.880000pt;}
.x13{left:9.600000pt;}
.x2a{left:53.640000pt;}
.x29{left:56.000000pt;}
.x2{left:71.871992pt;}
.x12{left:73.152000pt;}
.xe{left:76.671992pt;}
.x3{left:77.791992pt;}
.x9{left:87.871992pt;}
.x4{left:91.871992pt;}
.x2c{left:96.511992pt;}
.xf{left:100.351992pt;}
.xc{left:109.631992pt;}
.x11{left:119.871992pt;}
.x10{left:124.351992pt;}
.x14{left:125.312000pt;}
.x16{left:135.706667pt;}
.xa{left:139.226658pt;}
.xb{left:140.826658pt;}
.x1e{left:142.426667pt;}
.x27{left:143.866667pt;}
.x8{left:150.266658pt;}
.x22{left:169.626667pt;}
.x15{left:186.466667pt;}
.x2b{left:202.946667pt;}
.x1a{left:209.666667pt;}
.x28{left:211.234667pt;}
.x1f{left:212.866667pt;}
.x17{left:238.466667pt;}
.xd{left:263.906658pt;}
.x1b{left:270.466667pt;}
.x1{left:272.386658pt;}
.x7{left:279.746658pt;}
.x18{left:295.586667pt;}
.x24{left:326.653317pt;}
.x25{left:331.773325pt;}
.x1c{left:343.933333pt;}
.x20{left:346.333333pt;}
.x19{left:354.493333pt;}
.x23{left:359.453333pt;}
.x1d{left:417.573333pt;}
.x21{left:420.613333pt;}
.x5{left:461.733317pt;}
.x6{left:467.653325pt;}
}




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