
    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_2ce61ebaf14ce8ab63ee8f2e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3613985e0fac963ec6b0dd53.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9e8abd7501e5f393e9308e43.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_94fc5c5d50de952ba90e75d8.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3d10361d17c60b61b8a488c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_503575f22667d355874de91f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a10db2329b017e101c88515d.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls12{letter-spacing:-5.760000px;}
.lsd{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lse{letter-spacing:10.080000px;}
.ls1{letter-spacing:13.824000px;}
.ls3{letter-spacing:15.840000px;}
.ls11{letter-spacing:17.424000px;}
.ls2{letter-spacing:20.880000px;}
.lsf{letter-spacing:53.424000px;}
.lsc{letter-spacing:195.120000px;}
.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;}
}
.ws4{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._35{margin-left:-9.504000px;}
._d{margin-left:-7.284000px;}
._4{margin-left:-5.808000px;}
._1{margin-left:-4.680000px;}
._2{margin-left:-3.408000px;}
._c{margin-left:-2.352000px;}
._3{margin-left:-1.320000px;}
._0{width:1.104000px;}
._7{width:2.304000px;}
._10{width:3.504000px;}
._6{width:4.680000px;}
._5{width:6.120000px;}
._11{width:7.224000px;}
._18{width:8.232000px;}
._8{width:9.432000px;}
._9{width:11.088000px;}
._17{width:12.240000px;}
._19{width:13.428000px;}
._12{width:14.472000px;}
._13{width:15.672000px;}
._14{width:16.776000px;}
._e{width:19.752000px;}
._f{width:20.976000px;}
._15{width:22.824000px;}
._16{width:24.540000px;}
._a{width:30.744000px;}
._b{width:31.824000px;}
._2e{width:33.240000px;}
._31{width:34.656000px;}
._2d{width:39.600000px;}
._2f{width:40.632000px;}
._30{width:41.796000px;}
._36{width:43.212000px;}
._37{width:44.616000px;}
._32{width:46.944000px;}
._33{width:48.000000px;}
._1f{width:63.432000px;}
._34{width:72.120000px;}
._1a{width:82.224000px;}
._2a{width:99.144000px;}
._22{width:157.176000px;}
._29{width:161.784000px;}
._2b{width:195.120000px;}
._20{width:253.980000px;}
._1e{width:271.056000px;}
._1b{width:292.788000px;}
._23{width:347.460000px;}
._25{width:355.356000px;}
._27{width:387.324000px;}
._28{width:401.292000px;}
._1c{width:468.228000px;}
._26{width:518.364000px;}
._21{width:842.304000px;}
._24{width:859.620000px;}
._1d{width:1345.092000px;}
._2c{width:2481.720000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:2.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y46{bottom:7.380000px;}
.yba{bottom:7.560000px;}
.yd0{bottom:8.100000px;}
.y40{bottom:9.360000px;}
.y83{bottom:12.060000px;}
.ycc{bottom:12.420000px;}
.y43{bottom:14.040000px;}
.y86{bottom:14.760000px;}
.y88{bottom:15.120000px;}
.y8a{bottom:15.480000px;}
.yd3{bottom:15.840000px;}
.yca{bottom:16.020000px;}
.y84{bottom:16.740000px;}
.y82{bottom:17.280000px;}
.ya4{bottom:22.860000px;}
.yaa{bottom:22.905000px;}
.yae{bottom:23.040000px;}
.yad{bottom:23.400000px;}
.yb9{bottom:27.045000px;}
.y45{bottom:31.140000px;}
.y3f{bottom:33.120000px;}
.ya2{bottom:34.920000px;}
.yd5{bottom:35.820000px;}
.y42{bottom:37.800000px;}
.ya6{bottom:38.340000px;}
.yab{bottom:38.385000px;}
.yaf{bottom:39.420000px;}
.y44{bottom:50.760000px;}
.y3e{bottom:52.740000px;}
.y41{bottom:57.240000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.yce{bottom:69.660000px;}
.y4{bottom:77.796000px;}
.ycb{bottom:94.716000px;}
.y63{bottom:103.536000px;}
.y8b{bottom:107.856000px;}
.ye7{bottom:110.736000px;}
.y89{bottom:124.956000px;}
.y62{bottom:127.296000px;}
.yc9{bottom:129.456000px;}
.ye6{bottom:134.496000px;}
.y31{bottom:137.736000px;}
.y3c{bottom:145.116000px;}
.y61{bottom:146.916000px;}
.yc5{bottom:149.445000px;}
.yb2{bottom:149.976000px;}
.y87{bottom:157.350000px;}
.ye5{bottom:158.250000px;}
.y30{bottom:161.490000px;}
.y3b{bottom:169.050000px;}
.yc8{bottom:171.030000px;}
.yc4{bottom:173.205000px;}
.yb1{bottom:173.730000px;}
.ye4{bottom:181.830000px;}
.y2f{bottom:185.430000px;}
.y85{bottom:189.390000px;}
.y3a{bottom:192.810000px;}
.y60{bottom:196.950000px;}
.yc3{bottom:196.965000px;}
.yb0{bottom:197.490000px;}
.ye3{bottom:205.590000px;}
.y2e{bottom:209.190000px;}
.yac{bottom:214.770000px;}
.y39{bottom:216.210000px;}
.y5f{bottom:216.570000px;}
.yc7{bottom:218.010000px;}
.yc2{bottom:220.725000px;}
.y81{bottom:221.070000px;}
.ye2{bottom:225.570000px;}
.y2d{bottom:232.950000px;}
.y38{bottom:236.010000px;}
.yc6{bottom:242.130000px;}
.yc1{bottom:244.665000px;}
.y2c{bottom:256.710000px;}
.yb8{bottom:259.230000px;}
.y80{bottom:262.290000px;}
.y5e{bottom:266.610000px;}
.yc0{bottom:268.425000px;}
.ya9{bottom:271.290000px;}
.y2b{bottom:280.650000px;}
.y5d{bottom:286.275000px;}
.y7f{bottom:286.635000px;}
.ybf{bottom:292.185000px;}
.yea{bottom:304.095000px;}
.y2a{bottom:304.455000px;}
.y7e{bottom:310.755000px;}
.ybe{bottom:315.975000px;}
.ya8{bottom:326.775000px;}
.y29{bottom:328.215000px;}
.y5c{bottom:336.675000px;}
.y7d{bottom:337.395000px;}
.ybd{bottom:339.915000px;}
.y28{bottom:351.975000px;}
.y7c{bottom:358.455000px;}
.ybc{bottom:363.675000px;}
.y5b{bottom:366.915000px;}
.y27{bottom:375.915000px;}
.ya7{bottom:382.215000px;}
.ybb{bottom:387.435000px;}
.y5a{bottom:395.715000px;}
.y26{bottom:399.675000px;}
.y25{bottom:423.435000px;}
.y59{bottom:426.855000px;}
.y7b{bottom:429.915000px;}
.ya5{bottom:437.655000px;}
.y24{bottom:447.195000px;}
.y7a{bottom:453.675000px;}
.y58{bottom:459.255000px;}
.y23{bottom:471.135000px;}
.y79{bottom:477.615000px;}
.y57{bottom:483.735000px;}
.ya1{bottom:493.095000px;}
.y22{bottom:494.895000px;}
.y78{bottom:502.995000px;}
.y56{bottom:508.215000px;}
.ya3{bottom:517.575000px;}
.y21{bottom:518.655000px;}
.y77{bottom:529.815000px;}
.y55{bottom:532.515000px;}
.y20{bottom:542.415000px;}
.y76{bottom:556.455000px;}
.y54{bottom:556.635000px;}
.y1f{bottom:566.385000px;}
.ya0{bottom:579.885000px;}
.y53{bottom:581.145000px;}
.y75{bottom:581.505000px;}
.y1e{bottom:590.145000px;}
.y9f{bottom:604.005000px;}
.y52{bottom:605.625000px;}
.y1d{bottom:613.905000px;}
.y74{bottom:614.625000px;}
.y9e{bottom:627.945000px;}
.y51{bottom:630.105000px;}
.y1c{bottom:637.665000px;}
.y9d{bottom:651.885000px;}
.y50{bottom:654.585000px;}
.y73{bottom:657.105000px;}
.y1b{bottom:661.425000px;}
.yb7{bottom:671.145000px;}
.y9c{bottom:677.445000px;}
.y4f{bottom:679.065000px;}
.y1a{bottom:685.365000px;}
.ye1{bottom:692.025000px;}
.yb6{bottom:695.085000px;}
.y72{bottom:701.745000px;}
.y9b{bottom:703.185000px;}
.y4e{bottom:703.545000px;}
.y19{bottom:709.125000px;}
.ye0{bottom:715.785000px;}
.yb5{bottom:718.845000px;}
.y4d{bottom:728.025000px;}
.y9a{bottom:731.085000px;}
.y18{bottom:732.885000px;}
.y71{bottom:737.385000px;}
.ydf{bottom:739.725000px;}
.yb4{bottom:742.245000px;}
.y4c{bottom:752.505000px;}
.y99{bottom:755.205000px;}
.ye9{bottom:756.285000px;}
.y17{bottom:756.645000px;}
.y70{bottom:761.145000px;}
.yde{bottom:763.485000px;}
.yb3{bottom:766.365000px;}
.y98{bottom:773.025000px;}
.y4b{bottom:776.625000px;}
.ye8{bottom:780.225000px;}
.y16{bottom:780.585000px;}
.y6f{bottom:784.905000px;}
.ydd{bottom:787.245000px;}
.y4a{bottom:800.385000px;}
.y97{bottom:803.265000px;}
.y15{bottom:804.345000px;}
.y6e{bottom:808.665000px;}
.ydc{bottom:811.005000px;}
.y49{bottom:824.145000px;}
.y14{bottom:828.105000px;}
.y6d{bottom:832.605000px;}
.ydb{bottom:834.945000px;}
.y96{bottom:839.265000px;}
.y48{bottom:848.130000px;}
.y13{bottom:851.910000px;}
.y6c{bottom:856.770000px;}
.yda{bottom:858.750000px;}
.y95{bottom:863.070000px;}
.y47{bottom:871.530000px;}
.y12{bottom:875.850000px;}
.yd9{bottom:882.510000px;}
.y94{bottom:887.190000px;}
.y3d{bottom:888.990000px;}
.y11{bottom:899.610000px;}
.y93{bottom:905.370000px;}
.yd8{bottom:906.270000px;}
.y6b{bottom:908.790000px;}
.y10{bottom:923.370000px;}
.yd7{bottom:929.670000px;}
.y6a{bottom:939.570000px;}
.y92{bottom:941.550000px;}
.yf{bottom:947.130000px;}
.yd4{bottom:947.310000px;}
.y91{bottom:965.310000px;}
.ye{bottom:970.710000px;}
.y37{bottom:971.070000px;}
.yd6{bottom:988.890000px;}
.y90{bottom:990.690000px;}
.y69{bottom:991.950000px;}
.yd{bottom:994.830000px;}
.yc{bottom:1018.230000px;}
.y36{bottom:1018.590000px;}
.y68{bottom:1023.990000px;}
.y8f{bottom:1025.070000px;}
.ycd{bottom:1028.850000px;}
.yb{bottom:1042.350000px;}
.y67{bottom:1054.950000px;}
.y8e{bottom:1062.870000px;}
.ya{bottom:1065.930000px;}
.y35{bottom:1066.290000px;}
.yd2{bottom:1070.430000px;}
.y66{bottom:1085.010000px;}
.y8d{bottom:1089.150000px;}
.y9{bottom:1090.050000px;}
.y65{bottom:1109.490000px;}
.yd1{bottom:1112.190000px;}
.y8{bottom:1113.450000px;}
.y34{bottom:1113.810000px;}
.y8c{bottom:1123.710000px;}
.y64{bottom:1136.160000px;}
.y7{bottom:1137.240000px;}
.y33{bottom:1137.600000px;}
.ycf{bottom:1152.000000px;}
.y6{bottom:1161.180000px;}
.y32{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.hd{height:2.825156px;}
.h2{height:16.920000px;}
.h13{height:23.760000px;}
.h1d{height:25.020000px;}
.he{height:30.960000px;}
.hf{height:31.320000px;}
.h10{height:31.680000px;}
.hc{height:33.480000px;}
.h1b{height:34.020000px;}
.h19{height:39.060000px;}
.h1e{height:39.096000px;}
.h1a{height:40.860000px;}
.h1f{height:41.040000px;}
.h17{height:50.273438px;}
.h12{height:54.576000px;}
.h14{height:54.720000px;}
.h15{height:54.756000px;}
.h16{height:55.800000px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.h8{height:74.004654px;}
.ha{height:74.704922px;}
.h11{height:79.056000px;}
.h20{height:80.640000px;}
.hb{height:100.904062px;}
.h1c{height:148.176000px;}
.h9{height:288.030000px;}
.h18{height:403.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.wc{width:49.680000px;}
.w9{width:94.176000px;}
.wb{width:106.380000px;}
.w11{width:119.700000px;}
.w8{width:138.240000px;}
.wa{width:141.516000px;}
.w10{width:144.756000px;}
.wf{width:180.030000px;}
.wd{width:209.370000px;}
.w7{width:221.610000px;}
.w5{width:238.350000px;}
.w14{width:247.530000px;}
.w4{width:250.950000px;}
.w6{width:252.930000px;}
.w13{width:365.970000px;}
.w12{width:372.495000px;}
.we{width:445.935000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:5.040000px;}
.x1c{left:7.740000px;}
.x2{left:9.180000px;}
.x36{left:11.700000px;}
.x4d{left:13.860000px;}
.x55{left:20.340000px;}
.x5a{left:24.840000px;}
.x3c{left:26.850000px;}
.x58{left:29.340000px;}
.x40{left:32.970000px;}
.x3f{left:35.454000px;}
.x3d{left:36.720000px;}
.x56{left:38.880000px;}
.x39{left:40.140000px;}
.x54{left:41.400000px;}
.x3e{left:43.920000px;}
.x3b{left:44.994000px;}
.x42{left:48.780000px;}
.x4f{left:51.300000px;}
.x16{left:52.734000px;}
.x59{left:53.820000px;}
.x34{left:57.414000px;}
.x41{left:59.934000px;}
.x5c{left:63.360000px;}
.x6a{left:66.060000px;}
.x5e{left:69.660000px;}
.x6e{left:70.914000px;}
.x57{left:74.160000px;}
.x68{left:76.854000px;}
.x19{left:79.380000px;}
.x6d{left:82.260000px;}
.x6c{left:83.694000px;}
.x5d{left:84.960000px;}
.x5b{left:86.940000px;}
.x1d{left:88.245000px;}
.x71{left:94.185000px;}
.x6f{left:100.260000px;}
.x65{left:103.674000px;}
.x67{left:106.236000px;}
.x70{left:107.865000px;}
.x6b{left:114.705000px;}
.x51{left:117.210000px;}
.x13{left:119.916000px;}
.x15{left:125.454000px;}
.xf{left:127.655987px;}
.x60{left:136.475987px;}
.x6{left:138.995987px;}
.x62{left:140.975987px;}
.x74{left:148.895987px;}
.x3{left:159.689987px;}
.x4e{left:170.310000px;}
.xe{left:180.749987px;}
.x20{left:190.829987px;}
.x1f{left:192.089987px;}
.x5f{left:195.329987px;}
.x27{left:207.029987px;}
.x73{left:210.629987px;}
.x22{left:217.289987px;}
.x18{left:224.310000px;}
.x21{left:232.589987px;}
.x7{left:241.589987px;}
.x14{left:243.219000px;}
.x1b{left:245.205000px;}
.x4c{left:249.149987px;}
.x33{left:310.214987px;}
.x61{left:318.854987px;}
.x12{left:324.614987px;}
.xd{left:327.674987px;}
.x63{left:341.174987px;}
.x35{left:348.375000px;}
.x69{left:354.675000px;}
.x9{left:358.994987px;}
.xb{left:361.334987px;}
.x17{left:371.595000px;}
.x23{left:376.634987px;}
.x50{left:380.415000px;}
.x64{left:398.409000px;}
.x8{left:407.234987px;}
.x28{left:409.934987px;}
.xa{left:413.354987px;}
.xc{left:422.354987px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x37{left:487.335000px;}
.x66{left:493.125000px;}
.x2a{left:505.004987px;}
.x46{left:536.504987px;}
.x44{left:539.924987px;}
.x52{left:561.165000px;}
.x2c{left:577.004987px;}
.x32{left:579.884987px;}
.x38{left:582.225000px;}
.x30{left:593.024987px;}
.x4b{left:597.524987px;}
.x31{left:600.404987px;}
.x45{left:601.484987px;}
.x2b{left:603.104987px;}
.x43{left:604.904987px;}
.x1a{left:610.665000px;}
.x49{left:616.784987px;}
.x4a{left:619.484987px;}
.x2f{left:628.484987px;}
.x1e{left:633.164987px;}
.x29{left:648.464987px;}
.x48{left:669.524987px;}
.x24{left:673.124987px;}
.x26{left:676.904987px;}
.x25{left:678.164987px;}
.x2d{left:697.469987px;}
.x53{left:706.650000px;}
.x47{left:708.449987px;}
.x2e{left:719.069987px;}
.x3a{left:724.650000px;}
.x11{left:806.369987px;}
.x4{left:829.409987px;}
.x72{left:843.269987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls12{letter-spacing:-5.120000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lse{letter-spacing:8.960000pt;}
.ls1{letter-spacing:12.288000pt;}
.ls3{letter-spacing:14.080000pt;}
.ls11{letter-spacing:15.488000pt;}
.ls2{letter-spacing:18.560000pt;}
.lsf{letter-spacing:47.488000pt;}
.lsc{letter-spacing:173.440000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._35{margin-left:-8.448000pt;}
._d{margin-left:-6.474667pt;}
._4{margin-left:-5.162667pt;}
._1{margin-left:-4.160000pt;}
._2{margin-left:-3.029333pt;}
._c{margin-left:-2.090667pt;}
._3{margin-left:-1.173333pt;}
._0{width:0.981333pt;}
._7{width:2.048000pt;}
._10{width:3.114667pt;}
._6{width:4.160000pt;}
._5{width:5.440000pt;}
._11{width:6.421333pt;}
._18{width:7.317333pt;}
._8{width:8.384000pt;}
._9{width:9.856000pt;}
._17{width:10.880000pt;}
._19{width:11.936000pt;}
._12{width:12.864000pt;}
._13{width:13.930667pt;}
._14{width:14.912000pt;}
._e{width:17.557333pt;}
._f{width:18.645333pt;}
._15{width:20.288000pt;}
._16{width:21.813333pt;}
._a{width:27.328000pt;}
._b{width:28.288000pt;}
._2e{width:29.546667pt;}
._31{width:30.805333pt;}
._2d{width:35.200000pt;}
._2f{width:36.117333pt;}
._30{width:37.152000pt;}
._36{width:38.410667pt;}
._37{width:39.658667pt;}
._32{width:41.728000pt;}
._33{width:42.666667pt;}
._1f{width:56.384000pt;}
._34{width:64.106667pt;}
._1a{width:73.088000pt;}
._2a{width:88.128000pt;}
._22{width:139.712000pt;}
._29{width:143.808000pt;}
._2b{width:173.440000pt;}
._20{width:225.760000pt;}
._1e{width:240.938667pt;}
._1b{width:260.256000pt;}
._23{width:308.853333pt;}
._25{width:315.872000pt;}
._27{width:344.288000pt;}
._28{width:356.704000pt;}
._1c{width:416.202667pt;}
._26{width:460.768000pt;}
._21{width:748.714667pt;}
._24{width:764.106667pt;}
._1d{width:1195.637333pt;}
._2c{width:2205.973333pt;}
.fs3{font-size:2.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y46{bottom:6.560000pt;}
.yba{bottom:6.720000pt;}
.yd0{bottom:7.200000pt;}
.y40{bottom:8.320000pt;}
.y83{bottom:10.720000pt;}
.ycc{bottom:11.040000pt;}
.y43{bottom:12.480000pt;}
.y86{bottom:13.120000pt;}
.y88{bottom:13.440000pt;}
.y8a{bottom:13.760000pt;}
.yd3{bottom:14.080000pt;}
.yca{bottom:14.240000pt;}
.y84{bottom:14.880000pt;}
.y82{bottom:15.360000pt;}
.ya4{bottom:20.320000pt;}
.yaa{bottom:20.360000pt;}
.yae{bottom:20.480000pt;}
.yad{bottom:20.800000pt;}
.yb9{bottom:24.040000pt;}
.y45{bottom:27.680000pt;}
.y3f{bottom:29.440000pt;}
.ya2{bottom:31.040000pt;}
.yd5{bottom:31.840000pt;}
.y42{bottom:33.600000pt;}
.ya6{bottom:34.080000pt;}
.yab{bottom:34.120000pt;}
.yaf{bottom:35.040000pt;}
.y44{bottom:45.120000pt;}
.y3e{bottom:46.880000pt;}
.y41{bottom:50.880000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.yce{bottom:61.920000pt;}
.y4{bottom:69.152000pt;}
.ycb{bottom:84.192000pt;}
.y63{bottom:92.032000pt;}
.y8b{bottom:95.872000pt;}
.ye7{bottom:98.432000pt;}
.y89{bottom:111.072000pt;}
.y62{bottom:113.152000pt;}
.yc9{bottom:115.072000pt;}
.ye6{bottom:119.552000pt;}
.y31{bottom:122.432000pt;}
.y3c{bottom:128.992000pt;}
.y61{bottom:130.592000pt;}
.yc5{bottom:132.840000pt;}
.yb2{bottom:133.312000pt;}
.y87{bottom:139.866667pt;}
.ye5{bottom:140.666667pt;}
.y30{bottom:143.546667pt;}
.y3b{bottom:150.266667pt;}
.yc8{bottom:152.026667pt;}
.yc4{bottom:153.960000pt;}
.yb1{bottom:154.426667pt;}
.ye4{bottom:161.626667pt;}
.y2f{bottom:164.826667pt;}
.y85{bottom:168.346667pt;}
.y3a{bottom:171.386667pt;}
.y60{bottom:175.066667pt;}
.yc3{bottom:175.080000pt;}
.yb0{bottom:175.546667pt;}
.ye3{bottom:182.746667pt;}
.y2e{bottom:185.946667pt;}
.yac{bottom:190.906667pt;}
.y39{bottom:192.186667pt;}
.y5f{bottom:192.506667pt;}
.yc7{bottom:193.786667pt;}
.yc2{bottom:196.200000pt;}
.y81{bottom:196.506667pt;}
.ye2{bottom:200.506667pt;}
.y2d{bottom:207.066667pt;}
.y38{bottom:209.786667pt;}
.yc6{bottom:215.226667pt;}
.yc1{bottom:217.480000pt;}
.y2c{bottom:228.186667pt;}
.yb8{bottom:230.426667pt;}
.y80{bottom:233.146667pt;}
.y5e{bottom:236.986667pt;}
.yc0{bottom:238.600000pt;}
.ya9{bottom:241.146667pt;}
.y2b{bottom:249.466667pt;}
.y5d{bottom:254.466667pt;}
.y7f{bottom:254.786667pt;}
.ybf{bottom:259.720000pt;}
.yea{bottom:270.306667pt;}
.y2a{bottom:270.626667pt;}
.y7e{bottom:276.226667pt;}
.ybe{bottom:280.866667pt;}
.ya8{bottom:290.466667pt;}
.y29{bottom:291.746667pt;}
.y5c{bottom:299.266667pt;}
.y7d{bottom:299.906667pt;}
.ybd{bottom:302.146667pt;}
.y28{bottom:312.866667pt;}
.y7c{bottom:318.626667pt;}
.ybc{bottom:323.266667pt;}
.y5b{bottom:326.146667pt;}
.y27{bottom:334.146667pt;}
.ya7{bottom:339.746667pt;}
.ybb{bottom:344.386667pt;}
.y5a{bottom:351.746667pt;}
.y26{bottom:355.266667pt;}
.y25{bottom:376.386667pt;}
.y59{bottom:379.426667pt;}
.y7b{bottom:382.146667pt;}
.ya5{bottom:389.026667pt;}
.y24{bottom:397.506667pt;}
.y7a{bottom:403.266667pt;}
.y58{bottom:408.226667pt;}
.y23{bottom:418.786667pt;}
.y79{bottom:424.546667pt;}
.y57{bottom:429.986667pt;}
.ya1{bottom:438.306667pt;}
.y22{bottom:439.906667pt;}
.y78{bottom:447.106667pt;}
.y56{bottom:451.746667pt;}
.ya3{bottom:460.066667pt;}
.y21{bottom:461.026667pt;}
.y77{bottom:470.946667pt;}
.y55{bottom:473.346667pt;}
.y20{bottom:482.146667pt;}
.y76{bottom:494.626667pt;}
.y54{bottom:494.786667pt;}
.y1f{bottom:503.453333pt;}
.ya0{bottom:515.453333pt;}
.y53{bottom:516.573333pt;}
.y75{bottom:516.893333pt;}
.y1e{bottom:524.573333pt;}
.y9f{bottom:536.893333pt;}
.y52{bottom:538.333333pt;}
.y1d{bottom:545.693333pt;}
.y74{bottom:546.333333pt;}
.y9e{bottom:558.173333pt;}
.y51{bottom:560.093333pt;}
.y1c{bottom:566.813333pt;}
.y9d{bottom:579.453333pt;}
.y50{bottom:581.853333pt;}
.y73{bottom:584.093333pt;}
.y1b{bottom:587.933333pt;}
.yb7{bottom:596.573333pt;}
.y9c{bottom:602.173333pt;}
.y4f{bottom:603.613333pt;}
.y1a{bottom:609.213333pt;}
.ye1{bottom:615.133333pt;}
.yb6{bottom:617.853333pt;}
.y72{bottom:623.773333pt;}
.y9b{bottom:625.053333pt;}
.y4e{bottom:625.373333pt;}
.y19{bottom:630.333333pt;}
.ye0{bottom:636.253333pt;}
.yb5{bottom:638.973333pt;}
.y4d{bottom:647.133333pt;}
.y9a{bottom:649.853333pt;}
.y18{bottom:651.453333pt;}
.y71{bottom:655.453333pt;}
.ydf{bottom:657.533333pt;}
.yb4{bottom:659.773333pt;}
.y4c{bottom:668.893333pt;}
.y99{bottom:671.293333pt;}
.ye9{bottom:672.253333pt;}
.y17{bottom:672.573333pt;}
.y70{bottom:676.573333pt;}
.yde{bottom:678.653333pt;}
.yb3{bottom:681.213333pt;}
.y98{bottom:687.133333pt;}
.y4b{bottom:690.333333pt;}
.ye8{bottom:693.533333pt;}
.y16{bottom:693.853333pt;}
.y6f{bottom:697.693333pt;}
.ydd{bottom:699.773333pt;}
.y4a{bottom:711.453333pt;}
.y97{bottom:714.013333pt;}
.y15{bottom:714.973333pt;}
.y6e{bottom:718.813333pt;}
.ydc{bottom:720.893333pt;}
.y49{bottom:732.573333pt;}
.y14{bottom:736.093333pt;}
.y6d{bottom:740.093333pt;}
.ydb{bottom:742.173333pt;}
.y96{bottom:746.013333pt;}
.y48{bottom:753.893333pt;}
.y13{bottom:757.253333pt;}
.y6c{bottom:761.573333pt;}
.yda{bottom:763.333333pt;}
.y95{bottom:767.173333pt;}
.y47{bottom:774.693333pt;}
.y12{bottom:778.533333pt;}
.yd9{bottom:784.453333pt;}
.y94{bottom:788.613333pt;}
.y3d{bottom:790.213333pt;}
.y11{bottom:799.653333pt;}
.y93{bottom:804.773333pt;}
.yd8{bottom:805.573333pt;}
.y6b{bottom:807.813333pt;}
.y10{bottom:820.773333pt;}
.yd7{bottom:826.373333pt;}
.y6a{bottom:835.173333pt;}
.y92{bottom:836.933333pt;}
.yf{bottom:841.893333pt;}
.yd4{bottom:842.053333pt;}
.y91{bottom:858.053333pt;}
.ye{bottom:862.853333pt;}
.y37{bottom:863.173333pt;}
.yd6{bottom:879.013333pt;}
.y90{bottom:880.613333pt;}
.y69{bottom:881.733333pt;}
.yd{bottom:884.293333pt;}
.yc{bottom:905.093333pt;}
.y36{bottom:905.413333pt;}
.y68{bottom:910.213333pt;}
.y8f{bottom:911.173333pt;}
.ycd{bottom:914.533333pt;}
.yb{bottom:926.533333pt;}
.y67{bottom:937.733333pt;}
.y8e{bottom:944.773333pt;}
.ya{bottom:947.493333pt;}
.y35{bottom:947.813333pt;}
.yd2{bottom:951.493333pt;}
.y66{bottom:964.453333pt;}
.y8d{bottom:968.133333pt;}
.y9{bottom:968.933333pt;}
.y65{bottom:986.213333pt;}
.yd1{bottom:988.613333pt;}
.y8{bottom:989.733333pt;}
.y34{bottom:990.053333pt;}
.y8c{bottom:998.853333pt;}
.y64{bottom:1009.920000pt;}
.y7{bottom:1010.880000pt;}
.y33{bottom:1011.200000pt;}
.ycf{bottom:1024.000000pt;}
.y6{bottom:1032.160000pt;}
.y32{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.hd{height:2.511250pt;}
.h2{height:15.040000pt;}
.h13{height:21.120000pt;}
.h1d{height:22.240000pt;}
.he{height:27.520000pt;}
.hf{height:27.840000pt;}
.h10{height:28.160000pt;}
.hc{height:29.760000pt;}
.h1b{height:30.240000pt;}
.h19{height:34.720000pt;}
.h1e{height:34.752000pt;}
.h1a{height:36.320000pt;}
.h1f{height:36.480000pt;}
.h17{height:44.687500pt;}
.h12{height:48.512000pt;}
.h14{height:48.640000pt;}
.h15{height:48.672000pt;}
.h16{height:49.600000pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.h8{height:65.781915pt;}
.ha{height:66.404375pt;}
.h11{height:70.272000pt;}
.h20{height:71.680000pt;}
.hb{height:89.692500pt;}
.h1c{height:131.712000pt;}
.h9{height:256.026667pt;}
.h18{height:358.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.wc{width:44.160000pt;}
.w9{width:83.712000pt;}
.wb{width:94.560000pt;}
.w11{width:106.400000pt;}
.w8{width:122.880000pt;}
.wa{width:125.792000pt;}
.w10{width:128.672000pt;}
.wf{width:160.026667pt;}
.wd{width:186.106667pt;}
.w7{width:196.986667pt;}
.w5{width:211.866667pt;}
.w14{width:220.026667pt;}
.w4{width:223.066667pt;}
.w6{width:224.826667pt;}
.w13{width:325.306667pt;}
.w12{width:331.106667pt;}
.we{width:396.386667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:4.480000pt;}
.x1c{left:6.880000pt;}
.x2{left:8.160000pt;}
.x36{left:10.400000pt;}
.x4d{left:12.320000pt;}
.x55{left:18.080000pt;}
.x5a{left:22.080000pt;}
.x3c{left:23.866667pt;}
.x58{left:26.080000pt;}
.x40{left:29.306667pt;}
.x3f{left:31.514667pt;}
.x3d{left:32.640000pt;}
.x56{left:34.560000pt;}
.x39{left:35.680000pt;}
.x54{left:36.800000pt;}
.x3e{left:39.040000pt;}
.x3b{left:39.994667pt;}
.x42{left:43.360000pt;}
.x4f{left:45.600000pt;}
.x16{left:46.874667pt;}
.x59{left:47.840000pt;}
.x34{left:51.034667pt;}
.x41{left:53.274667pt;}
.x5c{left:56.320000pt;}
.x6a{left:58.720000pt;}
.x5e{left:61.920000pt;}
.x6e{left:63.034667pt;}
.x57{left:65.920000pt;}
.x68{left:68.314667pt;}
.x19{left:70.560000pt;}
.x6d{left:73.120000pt;}
.x6c{left:74.394667pt;}
.x5d{left:75.520000pt;}
.x5b{left:77.280000pt;}
.x1d{left:78.440000pt;}
.x71{left:83.720000pt;}
.x6f{left:89.120000pt;}
.x65{left:92.154667pt;}
.x67{left:94.432000pt;}
.x70{left:95.880000pt;}
.x6b{left:101.960000pt;}
.x51{left:104.186667pt;}
.x13{left:106.592000pt;}
.x15{left:111.514667pt;}
.xf{left:113.471988pt;}
.x60{left:121.311988pt;}
.x6{left:123.551988pt;}
.x62{left:125.311988pt;}
.x74{left:132.351988pt;}
.x3{left:141.946655pt;}
.x4e{left:151.386667pt;}
.xe{left:160.666655pt;}
.x20{left:169.626655pt;}
.x1f{left:170.746655pt;}
.x5f{left:173.626655pt;}
.x27{left:184.026655pt;}
.x73{left:187.226655pt;}
.x22{left:193.146655pt;}
.x18{left:199.386667pt;}
.x21{left:206.746655pt;}
.x7{left:214.746655pt;}
.x14{left:216.194667pt;}
.x1b{left:217.960000pt;}
.x4c{left:221.466655pt;}
.x33{left:275.746655pt;}
.x61{left:283.426655pt;}
.x12{left:288.546655pt;}
.xd{left:291.266655pt;}
.x63{left:303.266655pt;}
.x35{left:309.666667pt;}
.x69{left:315.266667pt;}
.x9{left:319.106655pt;}
.xb{left:321.186655pt;}
.x17{left:330.306667pt;}
.x23{left:334.786655pt;}
.x50{left:338.146667pt;}
.x64{left:354.141333pt;}
.x8{left:361.986655pt;}
.x28{left:364.386655pt;}
.xa{left:367.426655pt;}
.xc{left:375.426655pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x37{left:433.186667pt;}
.x66{left:438.333333pt;}
.x2a{left:448.893322pt;}
.x46{left:476.893322pt;}
.x44{left:479.933322pt;}
.x52{left:498.813333pt;}
.x2c{left:512.893322pt;}
.x32{left:515.453322pt;}
.x38{left:517.533333pt;}
.x30{left:527.133322pt;}
.x4b{left:531.133322pt;}
.x31{left:533.693322pt;}
.x45{left:534.653322pt;}
.x2b{left:536.093322pt;}
.x43{left:537.693322pt;}
.x1a{left:542.813333pt;}
.x49{left:548.253322pt;}
.x4a{left:550.653322pt;}
.x2f{left:558.653322pt;}
.x1e{left:562.813322pt;}
.x29{left:576.413322pt;}
.x48{left:595.133322pt;}
.x24{left:598.333322pt;}
.x26{left:601.693322pt;}
.x25{left:602.813322pt;}
.x2d{left:619.973322pt;}
.x53{left:628.133333pt;}
.x47{left:629.733322pt;}
.x2e{left:639.173322pt;}
.x3a{left:644.133333pt;}
.x11{left:716.773322pt;}
.x4{left:737.253322pt;}
.x72{left:749.573322pt;}
}




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