
    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_3bff0ff705204c1823f3a428.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1409cd03faf64b2ce0cd1ba7.woff')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_2b259b08c92b70e133b459e2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_adf1f47d3d4d06d4b7836477.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_defca4745d71b77212ec84c0.woff')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_6be2ccedb4de175ab657a200.woff')format("woff");}.ff6{font-family:ff6;line-height:0.738770;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_c814c669a5841474ebd98c83.woff')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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);}
.v3{vertical-align:-79.920000px;}
.v5{vertical-align:-74.160000px;}
.v4{vertical-align:-68.400000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.019920px;}
.ls10{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.900000px;}
.lse{letter-spacing:375.300000px;}
.lsb{letter-spacing:805.440000px;}
.ls2{letter-spacing:1040.880000px;}
.ls5{letter-spacing:1045.800000px;}
.ls0{letter-spacing:1429.500000px;}
.ls7{letter-spacing:1434.000000px;}
.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:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-8.213760px;}
._10{margin-left:-7.173360px;}
._3{margin-left:-4.752000px;}
._2{margin-left:-3.378240px;}
._f{margin-left:-2.364480px;}
._1{margin-left:-1.173120px;}
._4{width:1.026000px;}
._8{width:2.755920px;}
._9{width:4.242960px;}
._a{width:5.352480px;}
._b{width:6.454080px;}
._c{width:7.519680px;}
._d{width:9.756480px;}
._e{width:12.071520px;}
._11{width:16.553520px;}
._14{width:18.406080px;}
._5{width:183.000000px;}
._13{width:285.652800px;}
._6{width:369.540000px;}
._7{width:1164.689760px;}
._12{width:2479.740000px;}
.fc6{color:transparent;}
.fc5{color:rgb(38,74,96);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(1,2,5);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.240000px;}
.y95{bottom:5.580000px;}
.y93{bottom:5.760000px;}
.ye9{bottom:6.840000px;}
.yef{bottom:9.720000px;}
.yed{bottom:10.440000px;}
.ybc{bottom:12.960000px;}
.y82{bottom:13.140000px;}
.yb9{bottom:13.320000px;}
.y7b{bottom:13.680000px;}
.y7d{bottom:13.860000px;}
.y7f{bottom:13.905000px;}
.y85{bottom:20.520000px;}
.ybb{bottom:22.680000px;}
.y66{bottom:23.040000px;}
.yd4{bottom:23.220000px;}
.yb7{bottom:23.580000px;}
.yd2{bottom:24.660000px;}
.yd9{bottom:26.280000px;}
.yf4{bottom:27.000000px;}
.yce{bottom:37.620000px;}
.yb4{bottom:37.800000px;}
.yeb{bottom:37.830000px;}
.y65{bottom:40.320000px;}
.yd1{bottom:41.940000px;}
.yd8{bottom:43.560000px;}
.ycf{bottom:54.900000px;}
.yb3{bottom:55.080000px;}
.y9{bottom:57.600000px;}
.yd7{bottom:60.840000px;}
.yf2{bottom:72.180000px;}
.yb2{bottom:72.360000px;}
.y8{bottom:75.996000px;}
.yb1{bottom:89.460000px;}
.ya9{bottom:91.260000px;}
.y94{bottom:95.796000px;}
.y3d{bottom:103.536000px;}
.yd0{bottom:104.796000px;}
.yb0{bottom:106.740000px;}
.ya8{bottom:108.540000px;}
.ycb{bottom:109.125000px;}
.yfa{bottom:110.556000px;}
.y92{bottom:116.136000px;}
.y3c{bottom:120.636000px;}
.y63{bottom:121.896000px;}
.yd3{bottom:123.516000px;}
.yaf{bottom:124.020000px;}
.ya7{bottom:125.865000px;}
.yca{bottom:126.405000px;}
.y91{bottom:136.656000px;}
.y3b{bottom:137.916000px;}
.y62{bottom:139.176000px;}
.yf9{bottom:141.300000px;}
.ya6{bottom:142.965000px;}
.yc9{bottom:143.685000px;}
.y90{bottom:154.650000px;}
.y3a{bottom:155.190000px;}
.y61{bottom:156.450000px;}
.yf8{bottom:158.400000px;}
.ya5{bottom:160.245000px;}
.yc8{bottom:160.965000px;}
.yf5{bottom:162.030000px;}
.ycd{bottom:162.210000px;}
.y39{bottom:172.470000px;}
.y8f{bottom:172.650000px;}
.y60{bottom:173.730000px;}
.yf7{bottom:175.725000px;}
.ya4{bottom:177.525000px;}
.yc7{bottom:178.245000px;}
.y38{bottom:189.750000px;}
.y8e{bottom:190.650000px;}
.y5f{bottom:191.010000px;}
.yf6{bottom:193.545000px;}
.yc6{bottom:195.345000px;}
.y37{bottom:206.850000px;}
.y5e{bottom:208.110000px;}
.y8d{bottom:208.650000px;}
.yc5{bottom:212.625000px;}
.ya3{bottom:221.610000px;}
.y36{bottom:224.130000px;}
.y5d{bottom:225.390000px;}
.y8c{bottom:226.650000px;}
.yc4{bottom:229.905000px;}
.y35{bottom:241.410000px;}
.y8b{bottom:244.650000px;}
.yc3{bottom:247.185000px;}
.y34{bottom:258.690000px;}
.y33{bottom:275.970000px;}
.y7a{bottom:283.170000px;}
.y32{bottom:293.250000px;}
.y79{bottom:300.450000px;}
.ycc{bottom:305.130000px;}
.y31{bottom:310.350000px;}
.y78{bottom:317.730000px;}
.yc2{bottom:319.170000px;}
.y30{bottom:327.630000px;}
.y77{bottom:334.830000px;}
.y2f{bottom:344.955000px;}
.y76{bottom:352.155000px;}
.y2e{bottom:362.235000px;}
.y75{bottom:369.435000px;}
.yf3{bottom:370.875000px;}
.y2d{bottom:379.515000px;}
.y74{bottom:383.475000px;}
.y6a{bottom:384.915000px;}
.y69{bottom:402.915000px;}
.yf1{bottom:411.915000px;}
.y2c{bottom:413.895000px;}
.y67{bottom:420.915000px;}
.y2b{bottom:431.175000px;}
.y64{bottom:438.915000px;}
.y2a{bottom:448.455000px;}
.y8a{bottom:452.955000px;}
.y29{bottom:465.735000px;}
.y89{bottom:470.955000px;}
.y28{bottom:483.015000px;}
.y88{bottom:488.955000px;}
.y5c{bottom:497.235000px;}
.yf0{bottom:499.575000px;}
.y27{bottom:500.115000px;}
.y87{bottom:506.955000px;}
.y5b{bottom:514.875000px;}
.y26{bottom:517.395000px;}
.y86{bottom:524.955000px;}
.yee{bottom:525.495000px;}
.y25{bottom:534.675000px;}
.y84{bottom:542.955000px;}
.yec{bottom:550.695000px;}
.y24{bottom:551.955000px;}
.y5a{bottom:552.495000px;}
.y23{bottom:569.235000px;}
.y59{bottom:569.775000px;}
.ya2{bottom:571.215000px;}
.yea{bottom:576.615000px;}
.y73{bottom:580.215000px;}
.y22{bottom:586.515000px;}
.y58{bottom:587.055000px;}
.ya1{bottom:588.495000px;}
.y72{bottom:597.495000px;}
.y21{bottom:603.645000px;}
.y57{bottom:604.185000px;}
.ya0{bottom:605.805000px;}
.y71{bottom:614.805000px;}
.y20{bottom:620.925000px;}
.y56{bottom:621.465000px;}
.y9f{bottom:623.085000px;}
.y70{bottom:631.905000px;}
.y1f{bottom:638.205000px;}
.y55{bottom:638.745000px;}
.y9e{bottom:640.365000px;}
.y6f{bottom:649.185000px;}
.yad{bottom:655.125000px;}
.y1e{bottom:655.485000px;}
.y54{bottom:656.025000px;}
.y6e{bottom:666.465000px;}
.yc1{bottom:672.225000px;}
.y1d{bottom:672.765000px;}
.yac{bottom:673.125000px;}
.y53{bottom:673.305000px;}
.y10d{bottom:678.525000px;}
.y6d{bottom:683.745000px;}
.yc0{bottom:689.505000px;}
.y1c{bottom:690.045000px;}
.y52{bottom:690.405000px;}
.yab{bottom:691.125000px;}
.y10c{bottom:697.425000px;}
.y6c{bottom:701.025000px;}
.ye8{bottom:703.365000px;}
.ybf{bottom:706.605000px;}
.y1b{bottom:707.145000px;}
.y51{bottom:707.685000px;}
.yaa{bottom:709.125000px;}
.y10b{bottom:714.705000px;}
.y6b{bottom:715.065000px;}
.ybe{bottom:723.885000px;}
.y50{bottom:724.965000px;}
.y1a{bottom:725.865000px;}
.ye7{bottom:730.905000px;}
.y10a{bottom:731.805000px;}
.y9d{bottom:738.465000px;}
.ybd{bottom:741.165000px;}
.y4f{bottom:742.245000px;}
.y19{bottom:744.585000px;}
.ye6{bottom:748.185000px;}
.y109{bottom:749.085000px;}
.y9c{bottom:755.745000px;}
.yba{bottom:756.645000px;}
.y4e{bottom:759.525000px;}
.y18{bottom:761.865000px;}
.ye5{bottom:765.465000px;}
.y108{bottom:766.365000px;}
.y9b{bottom:773.025000px;}
.y4d{bottom:776.805000px;}
.y17{bottom:779.145000px;}
.y83{bottom:779.505000px;}
.ye4{bottom:783.465000px;}
.y107{bottom:783.645000px;}
.y9a{bottom:790.305000px;}
.y4c{bottom:793.905000px;}
.yb8{bottom:794.805000px;}
.y16{bottom:796.245000px;}
.y106{bottom:800.925000px;}
.ye3{bottom:801.105000px;}
.y99{bottom:807.405000px;}
.y81{bottom:808.125000px;}
.y4b{bottom:811.185000px;}
.y15{bottom:813.525000px;}
.ye2{bottom:818.205000px;}
.y98{bottom:824.685000px;}
.y4a{bottom:828.465000px;}
.y14{bottom:830.805000px;}
.yb6{bottom:833.865000px;}
.y105{bottom:835.305000px;}
.ye1{bottom:835.485000px;}
.y80{bottom:836.025000px;}
.y97{bottom:841.965000px;}
.y49{bottom:845.745000px;}
.y13{bottom:848.085000px;}
.y104{bottom:852.585000px;}
.ye0{bottom:852.765000px;}
.y96{bottom:856.005000px;}
.y48{bottom:863.025000px;}
.y7e{bottom:864.645000px;}
.y12{bottom:865.365000px;}
.y103{bottom:869.865000px;}
.ydf{bottom:870.045000px;}
.yb5{bottom:872.970000px;}
.y47{bottom:880.350000px;}
.y11{bottom:883.050000px;}
.y102{bottom:887.190000px;}
.yde{bottom:887.370000px;}
.y7c{bottom:893.310000px;}
.y46{bottom:897.450000px;}
.ydd{bottom:904.650000px;}
.y101{bottom:904.830000px;}
.yae{bottom:911.490000px;}
.y45{bottom:914.730000px;}
.ydc{bottom:921.750000px;}
.y10{bottom:921.930000px;}
.y44{bottom:932.010000px;}
.yf{bottom:945.870000px;}
.y100{bottom:947.490000px;}
.y43{bottom:949.290000px;}
.yd6{bottom:954.510000px;}
.ye{bottom:963.150000px;}
.yff{bottom:964.770000px;}
.y42{bottom:966.570000px;}
.ydb{bottom:973.230000px;}
.yd{bottom:980.430000px;}
.yfe{bottom:982.050000px;}
.y41{bottom:983.850000px;}
.yda{bottom:992.130000px;}
.yc{bottom:992.850000px;}
.yfd{bottom:999.330000px;}
.y40{bottom:1000.950000px;}
.yb{bottom:1012.110000px;}
.yfc{bottom:1016.610000px;}
.y3f{bottom:1018.230000px;}
.yd5{bottom:1030.830000px;}
.ya{bottom:1032.810000px;}
.yfb{bottom:1034.250000px;}
.y3e{bottom:1035.510000px;}
.y7{bottom:1054.050000px;}
.y6{bottom:1073.670000px;}
.y5{bottom:1094.910000px;}
.y4{bottom:1114.530000px;}
.y3{bottom:1156.500000px;}
.y2{bottom:1175.400000px;}
.y1{bottom:1194.480000px;}
.h19{height:17.100000px;}
.hf{height:17.280000px;}
.h17{height:19.620000px;}
.h16{height:19.800000px;}
.h27{height:23.760000px;}
.h24{height:24.300000px;}
.h26{height:24.480000px;}
.h13{height:27.180000px;}
.h10{height:27.720000px;}
.h11{height:27.900000px;}
.h12{height:27.936000px;}
.h15{height:34.380000px;}
.h14{height:34.560000px;}
.h1e{height:36.720000px;}
.h22{height:37.080000px;}
.h1d{height:37.620000px;}
.h1c{height:37.656000px;}
.h9{height:38.158594px;}
.h1b{height:38.520000px;}
.h29{height:41.040000px;}
.hc{height:41.726953px;}
.hd{height:42.164648px;}
.h6{height:52.998047px;}
.he{height:54.360000px;}
.h21{height:55.800000px;}
.ha{height:58.651172px;}
.hb{height:60.226875px;}
.h2{height:65.010937px;}
.h5{height:65.884219px;}
.h8{height:66.757500px;}
.h4{height:70.664062px;}
.h7{height:72.562500px;}
.h23{height:74.700000px;}
.h3{height:84.898125px;}
.h28{height:86.220000px;}
.h25{height:126.756000px;}
.h1a{height:138.060000px;}
.h20{height:139.680000px;}
.h2a{height:208.830000px;}
.h18{height:279.570000px;}
.h1f{height:349.815000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:89.820000px;}
.w12{width:89.856000px;}
.w13{width:91.620000px;}
.w6{width:94.536000px;}
.w3{width:105.336000px;}
.w11{width:124.056000px;}
.wf{width:129.816000px;}
.w16{width:133.740000px;}
.w17{width:133.956000px;}
.wb{width:137.520000px;}
.we{width:151.410000px;}
.w5{width:161.490000px;}
.w4{width:170.670000px;}
.w9{width:180.030000px;}
.w19{width:182.550000px;}
.wd{width:190.290000px;}
.w8{width:200.955000px;}
.wa{width:211.575000px;}
.w18{width:224.535000px;}
.w1b{width:231.915000px;}
.w7{width:243.750000px;}
.w1c{width:267.330000px;}
.w1d{width:267.915000px;}
.w14{width:331.095000px;}
.w15{width:406.905000px;}
.wc{width:682.350000px;}
.w1a{width:768.600000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:1.260000px;}
.x2f{left:3.240000px;}
.x30{left:4.320000px;}
.xf{left:7.776000px;}
.x2d{left:8.856000px;}
.x3d{left:13.320000px;}
.x1b{left:17.460000px;}
.x1f{left:22.170000px;}
.x34{left:32.445000px;}
.x23{left:33.840000px;}
.x31{left:36.900000px;}
.x1d{left:38.520000px;}
.x21{left:40.680000px;}
.x40{left:46.260000px;}
.x27{left:55.800000px;}
.x28{left:65.340000px;}
.x2a{left:67.140000px;}
.x25{left:82.080000px;}
.x7{left:84.959987px;}
.x29{left:88.785000px;}
.x26{left:90.210000px;}
.x24{left:96.165000px;}
.x2b{left:97.770000px;}
.x37{left:102.645000px;}
.x3e{left:105.120000px;}
.x38{left:107.685000px;}
.x5{left:110.195987px;}
.x39{left:111.240000px;}
.x1{left:118.295987px;}
.x36{left:126.180000px;}
.x8{left:128.375987px;}
.xc{left:131.615987px;}
.x2{left:136.835987px;}
.x2c{left:165.450000px;}
.xb{left:170.849987px;}
.x14{left:181.110000px;}
.x10{left:191.910000px;}
.xa{left:208.829987px;}
.x41{left:221.790000px;}
.x42{left:229.725000px;}
.x1a{left:236.370000px;}
.x44{left:241.050000px;}
.x43{left:259.770000px;}
.x9{left:270.569987px;}
.x19{left:276.870000px;}
.xe{left:281.054987px;}
.x15{left:287.535000px;}
.x16{left:298.155000px;}
.x35{left:309.495000px;}
.x18{left:313.635000px;}
.x3c{left:316.875000px;}
.x3b{left:339.735000px;}
.x45{left:343.875000px;}
.x11{left:363.315000px;}
.x1c{left:367.635000px;}
.xd{left:384.374987px;}
.x6{left:385.994987px;}
.x46{left:391.934987px;}
.x47{left:395.534987px;}
.x3a{left:407.594987px;}
.x12{left:439.274987px;}
.x17{left:442.694987px;}
.x3{left:446.474987px;}
.x1e{left:458.895000px;}
.x2e{left:491.865000px;}
.x4{left:518.504987px;}
.x20{left:584.385000px;}
.x3f{left:585.645000px;}
.x32{left:627.225000px;}
.x22{left:675.690000px;}
.x13{left:808.169987px;}
@media print{
.v3{vertical-align:-71.040000pt;}
.v5{vertical-align:-65.920000pt;}
.v4{vertical-align:-60.800000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.017707pt;}
.ls10{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.800000pt;}
.lse{letter-spacing:333.600000pt;}
.lsb{letter-spacing:715.946667pt;}
.ls2{letter-spacing:925.226667pt;}
.ls5{letter-spacing:929.600000pt;}
.ls0{letter-spacing:1270.666667pt;}
.ls7{letter-spacing:1274.666667pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.301120pt;}
._10{margin-left:-6.376320pt;}
._3{margin-left:-4.224000pt;}
._2{margin-left:-3.002880pt;}
._f{margin-left:-2.101760pt;}
._1{margin-left:-1.042773pt;}
._4{width:0.912000pt;}
._8{width:2.449707pt;}
._9{width:3.771520pt;}
._a{width:4.757760pt;}
._b{width:5.736960pt;}
._c{width:6.684160pt;}
._d{width:8.672427pt;}
._e{width:10.730240pt;}
._11{width:14.714240pt;}
._14{width:16.360960pt;}
._5{width:162.666667pt;}
._13{width:253.913600pt;}
._6{width:328.480000pt;}
._7{width:1035.279787pt;}
._12{width:2204.213333pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.880000pt;}
.y95{bottom:4.960000pt;}
.y93{bottom:5.120000pt;}
.ye9{bottom:6.080000pt;}
.yef{bottom:8.640000pt;}
.yed{bottom:9.280000pt;}
.ybc{bottom:11.520000pt;}
.y82{bottom:11.680000pt;}
.yb9{bottom:11.840000pt;}
.y7b{bottom:12.160000pt;}
.y7d{bottom:12.320000pt;}
.y7f{bottom:12.360000pt;}
.y85{bottom:18.240000pt;}
.ybb{bottom:20.160000pt;}
.y66{bottom:20.480000pt;}
.yd4{bottom:20.640000pt;}
.yb7{bottom:20.960000pt;}
.yd2{bottom:21.920000pt;}
.yd9{bottom:23.360000pt;}
.yf4{bottom:24.000000pt;}
.yce{bottom:33.440000pt;}
.yb4{bottom:33.600000pt;}
.yeb{bottom:33.626667pt;}
.y65{bottom:35.840000pt;}
.yd1{bottom:37.280000pt;}
.yd8{bottom:38.720000pt;}
.ycf{bottom:48.800000pt;}
.yb3{bottom:48.960000pt;}
.y9{bottom:51.200000pt;}
.yd7{bottom:54.080000pt;}
.yf2{bottom:64.160000pt;}
.yb2{bottom:64.320000pt;}
.y8{bottom:67.552000pt;}
.yb1{bottom:79.520000pt;}
.ya9{bottom:81.120000pt;}
.y94{bottom:85.152000pt;}
.y3d{bottom:92.032000pt;}
.yd0{bottom:93.152000pt;}
.yb0{bottom:94.880000pt;}
.ya8{bottom:96.480000pt;}
.ycb{bottom:97.000000pt;}
.yfa{bottom:98.272000pt;}
.y92{bottom:103.232000pt;}
.y3c{bottom:107.232000pt;}
.y63{bottom:108.352000pt;}
.yd3{bottom:109.792000pt;}
.yaf{bottom:110.240000pt;}
.ya7{bottom:111.880000pt;}
.yca{bottom:112.360000pt;}
.y91{bottom:121.472000pt;}
.y3b{bottom:122.592000pt;}
.y62{bottom:123.712000pt;}
.yf9{bottom:125.600000pt;}
.ya6{bottom:127.080000pt;}
.yc9{bottom:127.720000pt;}
.y90{bottom:137.466667pt;}
.y3a{bottom:137.946667pt;}
.y61{bottom:139.066667pt;}
.yf8{bottom:140.800000pt;}
.ya5{bottom:142.440000pt;}
.yc8{bottom:143.080000pt;}
.yf5{bottom:144.026667pt;}
.ycd{bottom:144.186667pt;}
.y39{bottom:153.306667pt;}
.y8f{bottom:153.466667pt;}
.y60{bottom:154.426667pt;}
.yf7{bottom:156.200000pt;}
.ya4{bottom:157.800000pt;}
.yc7{bottom:158.440000pt;}
.y38{bottom:168.666667pt;}
.y8e{bottom:169.466667pt;}
.y5f{bottom:169.786667pt;}
.yf6{bottom:172.040000pt;}
.yc6{bottom:173.640000pt;}
.y37{bottom:183.866667pt;}
.y5e{bottom:184.986667pt;}
.y8d{bottom:185.466667pt;}
.yc5{bottom:189.000000pt;}
.ya3{bottom:196.986667pt;}
.y36{bottom:199.226667pt;}
.y5d{bottom:200.346667pt;}
.y8c{bottom:201.466667pt;}
.yc4{bottom:204.360000pt;}
.y35{bottom:214.586667pt;}
.y8b{bottom:217.466667pt;}
.yc3{bottom:219.720000pt;}
.y34{bottom:229.946667pt;}
.y33{bottom:245.306667pt;}
.y7a{bottom:251.706667pt;}
.y32{bottom:260.666667pt;}
.y79{bottom:267.066667pt;}
.ycc{bottom:271.226667pt;}
.y31{bottom:275.866667pt;}
.y78{bottom:282.426667pt;}
.yc2{bottom:283.706667pt;}
.y30{bottom:291.226667pt;}
.y77{bottom:297.626667pt;}
.y2f{bottom:306.626667pt;}
.y76{bottom:313.026667pt;}
.y2e{bottom:321.986667pt;}
.y75{bottom:328.386667pt;}
.yf3{bottom:329.666667pt;}
.y2d{bottom:337.346667pt;}
.y74{bottom:340.866667pt;}
.y6a{bottom:342.146667pt;}
.y69{bottom:358.146667pt;}
.yf1{bottom:366.146667pt;}
.y2c{bottom:367.906667pt;}
.y67{bottom:374.146667pt;}
.y2b{bottom:383.266667pt;}
.y64{bottom:390.146667pt;}
.y2a{bottom:398.626667pt;}
.y8a{bottom:402.626667pt;}
.y29{bottom:413.986667pt;}
.y89{bottom:418.626667pt;}
.y28{bottom:429.346667pt;}
.y88{bottom:434.626667pt;}
.y5c{bottom:441.986667pt;}
.yf0{bottom:444.066667pt;}
.y27{bottom:444.546667pt;}
.y87{bottom:450.626667pt;}
.y5b{bottom:457.666667pt;}
.y26{bottom:459.906667pt;}
.y86{bottom:466.626667pt;}
.yee{bottom:467.106667pt;}
.y25{bottom:475.266667pt;}
.y84{bottom:482.626667pt;}
.yec{bottom:489.506667pt;}
.y24{bottom:490.626667pt;}
.y5a{bottom:491.106667pt;}
.y23{bottom:505.986667pt;}
.y59{bottom:506.466667pt;}
.ya2{bottom:507.746667pt;}
.yea{bottom:512.546667pt;}
.y73{bottom:515.746667pt;}
.y22{bottom:521.346667pt;}
.y58{bottom:521.826667pt;}
.ya1{bottom:523.106667pt;}
.y72{bottom:531.106667pt;}
.y21{bottom:536.573333pt;}
.y57{bottom:537.053333pt;}
.ya0{bottom:538.493333pt;}
.y71{bottom:546.493333pt;}
.y20{bottom:551.933333pt;}
.y56{bottom:552.413333pt;}
.y9f{bottom:553.853333pt;}
.y70{bottom:561.693333pt;}
.y1f{bottom:567.293333pt;}
.y55{bottom:567.773333pt;}
.y9e{bottom:569.213333pt;}
.y6f{bottom:577.053333pt;}
.yad{bottom:582.333333pt;}
.y1e{bottom:582.653333pt;}
.y54{bottom:583.133333pt;}
.y6e{bottom:592.413333pt;}
.yc1{bottom:597.533333pt;}
.y1d{bottom:598.013333pt;}
.yac{bottom:598.333333pt;}
.y53{bottom:598.493333pt;}
.y10d{bottom:603.133333pt;}
.y6d{bottom:607.773333pt;}
.yc0{bottom:612.893333pt;}
.y1c{bottom:613.373333pt;}
.y52{bottom:613.693333pt;}
.yab{bottom:614.333333pt;}
.y10c{bottom:619.933333pt;}
.y6c{bottom:623.133333pt;}
.ye8{bottom:625.213333pt;}
.ybf{bottom:628.093333pt;}
.y1b{bottom:628.573333pt;}
.y51{bottom:629.053333pt;}
.yaa{bottom:630.333333pt;}
.y10b{bottom:635.293333pt;}
.y6b{bottom:635.613333pt;}
.ybe{bottom:643.453333pt;}
.y50{bottom:644.413333pt;}
.y1a{bottom:645.213333pt;}
.ye7{bottom:649.693333pt;}
.y10a{bottom:650.493333pt;}
.y9d{bottom:656.413333pt;}
.ybd{bottom:658.813333pt;}
.y4f{bottom:659.773333pt;}
.y19{bottom:661.853333pt;}
.ye6{bottom:665.053333pt;}
.y109{bottom:665.853333pt;}
.y9c{bottom:671.773333pt;}
.yba{bottom:672.573333pt;}
.y4e{bottom:675.133333pt;}
.y18{bottom:677.213333pt;}
.ye5{bottom:680.413333pt;}
.y108{bottom:681.213333pt;}
.y9b{bottom:687.133333pt;}
.y4d{bottom:690.493333pt;}
.y17{bottom:692.573333pt;}
.y83{bottom:692.893333pt;}
.ye4{bottom:696.413333pt;}
.y107{bottom:696.573333pt;}
.y9a{bottom:702.493333pt;}
.y4c{bottom:705.693333pt;}
.yb8{bottom:706.493333pt;}
.y16{bottom:707.773333pt;}
.y106{bottom:711.933333pt;}
.ye3{bottom:712.093333pt;}
.y99{bottom:717.693333pt;}
.y81{bottom:718.333333pt;}
.y4b{bottom:721.053333pt;}
.y15{bottom:723.133333pt;}
.ye2{bottom:727.293333pt;}
.y98{bottom:733.053333pt;}
.y4a{bottom:736.413333pt;}
.y14{bottom:738.493333pt;}
.yb6{bottom:741.213333pt;}
.y105{bottom:742.493333pt;}
.ye1{bottom:742.653333pt;}
.y80{bottom:743.133333pt;}
.y97{bottom:748.413333pt;}
.y49{bottom:751.773333pt;}
.y13{bottom:753.853333pt;}
.y104{bottom:757.853333pt;}
.ye0{bottom:758.013333pt;}
.y96{bottom:760.893333pt;}
.y48{bottom:767.133333pt;}
.y7e{bottom:768.573333pt;}
.y12{bottom:769.213333pt;}
.y103{bottom:773.213333pt;}
.ydf{bottom:773.373333pt;}
.yb5{bottom:775.973333pt;}
.y47{bottom:782.533333pt;}
.y11{bottom:784.933333pt;}
.y102{bottom:788.613333pt;}
.yde{bottom:788.773333pt;}
.y7c{bottom:794.053333pt;}
.y46{bottom:797.733333pt;}
.ydd{bottom:804.133333pt;}
.y101{bottom:804.293333pt;}
.yae{bottom:810.213333pt;}
.y45{bottom:813.093333pt;}
.ydc{bottom:819.333333pt;}
.y10{bottom:819.493333pt;}
.y44{bottom:828.453333pt;}
.yf{bottom:840.773333pt;}
.y100{bottom:842.213333pt;}
.y43{bottom:843.813333pt;}
.yd6{bottom:848.453333pt;}
.ye{bottom:856.133333pt;}
.yff{bottom:857.573333pt;}
.y42{bottom:859.173333pt;}
.ydb{bottom:865.093333pt;}
.yd{bottom:871.493333pt;}
.yfe{bottom:872.933333pt;}
.y41{bottom:874.533333pt;}
.yda{bottom:881.893333pt;}
.yc{bottom:882.533333pt;}
.yfd{bottom:888.293333pt;}
.y40{bottom:889.733333pt;}
.yb{bottom:899.653333pt;}
.yfc{bottom:903.653333pt;}
.y3f{bottom:905.093333pt;}
.yd5{bottom:916.293333pt;}
.ya{bottom:918.053333pt;}
.yfb{bottom:919.333333pt;}
.y3e{bottom:920.453333pt;}
.y7{bottom:936.933333pt;}
.y6{bottom:954.373333pt;}
.y5{bottom:973.253333pt;}
.y4{bottom:990.693333pt;}
.y3{bottom:1028.000000pt;}
.y2{bottom:1044.800000pt;}
.y1{bottom:1061.760000pt;}
.h19{height:15.200000pt;}
.hf{height:15.360000pt;}
.h17{height:17.440000pt;}
.h16{height:17.600000pt;}
.h27{height:21.120000pt;}
.h24{height:21.600000pt;}
.h26{height:21.760000pt;}
.h13{height:24.160000pt;}
.h10{height:24.640000pt;}
.h11{height:24.800000pt;}
.h12{height:24.832000pt;}
.h15{height:30.560000pt;}
.h14{height:30.720000pt;}
.h1e{height:32.640000pt;}
.h22{height:32.960000pt;}
.h1d{height:33.440000pt;}
.h1c{height:33.472000pt;}
.h9{height:33.918750pt;}
.h1b{height:34.240000pt;}
.h29{height:36.480000pt;}
.hc{height:37.090625pt;}
.hd{height:37.479688pt;}
.h6{height:47.109375pt;}
.he{height:48.320000pt;}
.h21{height:49.600000pt;}
.ha{height:52.134375pt;}
.hb{height:53.535000pt;}
.h2{height:57.787500pt;}
.h5{height:58.563750pt;}
.h8{height:59.340000pt;}
.h4{height:62.812500pt;}
.h7{height:64.500000pt;}
.h23{height:66.400000pt;}
.h3{height:75.465000pt;}
.h28{height:76.640000pt;}
.h25{height:112.672000pt;}
.h1a{height:122.720000pt;}
.h20{height:124.160000pt;}
.h2a{height:185.626667pt;}
.h18{height:248.506667pt;}
.h1f{height:310.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:79.840000pt;}
.w12{width:79.872000pt;}
.w13{width:81.440000pt;}
.w6{width:84.032000pt;}
.w3{width:93.632000pt;}
.w11{width:110.272000pt;}
.wf{width:115.392000pt;}
.w16{width:118.880000pt;}
.w17{width:119.072000pt;}
.wb{width:122.240000pt;}
.we{width:134.586667pt;}
.w5{width:143.546667pt;}
.w4{width:151.706667pt;}
.w9{width:160.026667pt;}
.w19{width:162.266667pt;}
.wd{width:169.146667pt;}
.w8{width:178.626667pt;}
.wa{width:188.066667pt;}
.w18{width:199.586667pt;}
.w1b{width:206.146667pt;}
.w7{width:216.666667pt;}
.w1c{width:237.626667pt;}
.w1d{width:238.146667pt;}
.w14{width:294.306667pt;}
.w15{width:361.693333pt;}
.wc{width:606.533333pt;}
.w1a{width:683.200000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:1.120000pt;}
.x2f{left:2.880000pt;}
.x30{left:3.840000pt;}
.xf{left:6.912000pt;}
.x2d{left:7.872000pt;}
.x3d{left:11.840000pt;}
.x1b{left:15.520000pt;}
.x1f{left:19.706667pt;}
.x34{left:28.840000pt;}
.x23{left:30.080000pt;}
.x31{left:32.800000pt;}
.x1d{left:34.240000pt;}
.x21{left:36.160000pt;}
.x40{left:41.120000pt;}
.x27{left:49.600000pt;}
.x28{left:58.080000pt;}
.x2a{left:59.680000pt;}
.x25{left:72.960000pt;}
.x7{left:75.519988pt;}
.x29{left:78.920000pt;}
.x26{left:80.186667pt;}
.x24{left:85.480000pt;}
.x2b{left:86.906667pt;}
.x37{left:91.240000pt;}
.x3e{left:93.440000pt;}
.x38{left:95.720000pt;}
.x5{left:97.951988pt;}
.x39{left:98.880000pt;}
.x1{left:105.151988pt;}
.x36{left:112.160000pt;}
.x8{left:114.111988pt;}
.xc{left:116.991988pt;}
.x2{left:121.631988pt;}
.x2c{left:147.066667pt;}
.xb{left:151.866655pt;}
.x14{left:160.986667pt;}
.x10{left:170.586667pt;}
.xa{left:185.626655pt;}
.x41{left:197.146667pt;}
.x42{left:204.200000pt;}
.x1a{left:210.106667pt;}
.x44{left:214.266667pt;}
.x43{left:230.906667pt;}
.x9{left:240.506655pt;}
.x19{left:246.106667pt;}
.xe{left:249.826655pt;}
.x15{left:255.586667pt;}
.x16{left:265.026667pt;}
.x35{left:275.106667pt;}
.x18{left:278.786667pt;}
.x3c{left:281.666667pt;}
.x3b{left:301.986667pt;}
.x45{left:305.666667pt;}
.x11{left:322.946667pt;}
.x1c{left:326.786667pt;}
.xd{left:341.666655pt;}
.x6{left:343.106655pt;}
.x46{left:348.386655pt;}
.x47{left:351.586655pt;}
.x3a{left:362.306655pt;}
.x12{left:390.466655pt;}
.x17{left:393.506655pt;}
.x3{left:396.866655pt;}
.x1e{left:407.906667pt;}
.x2e{left:437.213333pt;}
.x4{left:460.893322pt;}
.x20{left:519.453333pt;}
.x3f{left:520.573333pt;}
.x32{left:557.533333pt;}
.x22{left:600.613333pt;}
.x13{left:718.373322pt;}
}




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