
    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_93f9a99536e9ad6776129031.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.205000;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_d9a047457ca23dc34d55695e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_bfd732742d2b1c2211baf377.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_32ea173c675c153b8a5419f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_c9433124e0710a644673b999.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-96.480077px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.040011px;}
.v2{vertical-align:33.120026px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:2.160002px;}
.ls4{letter-spacing:86.400069px;}
.ls7{letter-spacing:270.000216px;}
.ls5{letter-spacing:1458.001166px;}
.ls0{letter-spacing:1476.001181px;}
.ls2{letter-spacing:1498.591199px;}
.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;}
}
.ws3{word-spacing:-72.000058px;}
.ws1{word-spacing:-20.970017px;}
.ws7{word-spacing:-20.016016px;}
.ws2{word-spacing:-18.000014px;}
.ws5{word-spacing:-15.030012px;}
.ws4{word-spacing:-13.500011px;}
.ws6{word-spacing:-11.970010px;}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-1.028161px;}
._0{width:1.117081px;}
._4{width:2.369522px;}
._a{width:4.176003px;}
._b{width:5.288764px;}
._d{width:6.311885px;}
._7{width:7.848006px;}
._f{width:8.850607px;}
._6{width:9.884168px;}
._5{width:10.944009px;}
._e{width:11.952010px;}
._3{width:13.032010px;}
._9{width:14.688012px;}
._8{width:15.696013px;}
._14{width:16.831093px;}
._2{width:19.584016px;}
._12{width:20.736017px;}
._13{width:22.032018px;}
._10{width:23.040018px;}
._16{width:40.608032px;}
._17{width:41.794953px;}
._15{width:108.000086px;}
._c{width:162.000130px;}
._11{width:164.016131px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.880038px;}
.fs5{font-size:54.000043px;}
.fs4{font-size:60.120048px;}
.fs0{font-size:72.000058px;}
.fs3{font-size:83.880067px;}
.fs1{font-size:96.120077px;}
.fs2{font-size:108.000086px;}
.y91{bottom:-11.609382px;}
.y97{bottom:-11.609242px;}
.y0{bottom:0.000000px;}
.ydd{bottom:0.090511px;}
.y10a{bottom:0.090756px;}
.y8e{bottom:0.720563px;}
.y8b{bottom:1.170629px;}
.yb2{bottom:1.170661px;}
.y87{bottom:1.170726px;}
.y85{bottom:1.170769px;}
.yb0{bottom:1.170801px;}
.yae{bottom:1.170823px;}
.y83{bottom:1.170834px;}
.yb4{bottom:2.340586px;}
.y94{bottom:3.600727px;}
.y3{bottom:4.050046px;}
.yda{bottom:4.050286px;}
.ybb{bottom:4.050301px;}
.ybf{bottom:4.050346px;}
.yc2{bottom:4.050379px;}
.yc5{bottom:4.050410px;}
.yc8{bottom:4.050444px;}
.ycb{bottom:4.050478px;}
.yce{bottom:4.050510px;}
.ye4{bottom:4.050525px;}
.yd1{bottom:4.050546px;}
.yea{bottom:4.050557px;}
.yd4{bottom:4.050580px;}
.yed{bottom:4.050590px;}
.yd7{bottom:4.050618px;}
.yf0{bottom:4.050623px;}
.yf3{bottom:4.050656px;}
.yf6{bottom:4.050689px;}
.yf9{bottom:4.050723px;}
.yfc{bottom:4.050756px;}
.yff{bottom:4.050789px;}
.y102{bottom:4.050822px;}
.y105{bottom:4.050842px;}
.y2{bottom:53.100000px;}
.y1{bottom:57.240046px;}
.yab{bottom:116.280093px;}
.y6e{bottom:119.160095px;}
.y112{bottom:121.500097px;}
.y10d{bottom:123.840099px;}
.y5c{bottom:133.200107px;}
.y3d{bottom:135.360108px;}
.y111{bottom:142.200114px;}
.yaa{bottom:147.330118px;}
.y6d{bottom:150.210120px;}
.y10c{bottom:154.890124px;}
.y110{bottom:162.900130px;}
.y5b{bottom:163.890131px;}
.y3c{bottom:166.410133px;}
.y81{bottom:168.750135px;}
.ya9{bottom:178.290143px;}
.y6c{bottom:181.260145px;}
.y10b{bottom:185.940149px;}
.y10f{bottom:194.130155px;}
.y5a{bottom:194.580156px;}
.y3b{bottom:197.460158px;}
.y80{bottom:199.800160px;}
.ya8{bottom:209.340167px;}
.y6b{bottom:212.310170px;}
.y10e{bottom:225.180180px;}
.y59{bottom:225.270180px;}
.y3a{bottom:228.510183px;}
.y7f{bottom:230.850185px;}
.yb8{bottom:234.720188px;}
.ya7{bottom:240.390192px;}
.y6a{bottom:243.360195px;}
.y58{bottom:256.230205px;}
.y39{bottom:259.560208px;}
.y7e{bottom:261.900210px;}
.yb7{bottom:265.770213px;}
.ya6{bottom:271.260217px;}
.y69{bottom:274.410220px;}
.y57{bottom:287.280230px;}
.y38{bottom:290.610232px;}
.y7d{bottom:292.950234px;}
.yb6{bottom:296.820237px;}
.ya5{bottom:302.310242px;}
.y68{bottom:305.460244px;}
.y56{bottom:318.330255px;}
.y37{bottom:321.660257px;}
.yb5{bottom:323.730259px;}
.y7c{bottom:324.000259px;}
.y1f{bottom:324.990260px;}
.ya4{bottom:333.540267px;}
.y67{bottom:336.510269px;}
.ybc{bottom:348.390279px;}
.y1e{bottom:349.110279px;}
.y55{bottom:349.380280px;}
.y36{bottom:352.710282px;}
.yd9{bottom:353.250000px;}
.y7b{bottom:355.050284px;}
.yd8{bottom:357.300286px;}
.ya3{bottom:364.590292px;}
.y66{bottom:367.560294px;}
.yba{bottom:372.150000px;}
.y1d{bottom:373.230299px;}
.yb9{bottom:376.200301px;}
.y54{bottom:380.250304px;}
.y70{bottom:380.430304px;}
.y35{bottom:383.760307px;}
.y7a{bottom:386.100309px;}
.ya2{bottom:395.640317px;}
.y1c{bottom:397.440318px;}
.y65{bottom:398.610319px;}
.y53{bottom:411.480329px;}
.y34{bottom:414.810332px;}
.y79{bottom:417.150334px;}
.ya1{bottom:426.690341px;}
.ybe{bottom:428.850000px;}
.y64{bottom:429.660344px;}
.ybd{bottom:432.900346px;}
.y52{bottom:442.530354px;}
.y1b{bottom:445.680357px;}
.y33{bottom:445.860357px;}
.y78{bottom:448.200359px;}
.ya0{bottom:457.740366px;}
.y63{bottom:460.710369px;}
.y1a{bottom:469.890376px;}
.yc1{bottom:469.980000px;}
.y51{bottom:473.580379px;}
.yc0{bottom:474.030379px;}
.y32{bottom:476.910382px;}
.y77{bottom:479.250383px;}
.y9f{bottom:488.790391px;}
.y62{bottom:491.760393px;}
.y19{bottom:494.010395px;}
.ydb{bottom:504.540404px;}
.y50{bottom:504.630404px;}
.y31{bottom:507.960406px;}
.yc4{bottom:508.950000px;}
.y76{bottom:510.300408px;}
.yc3{bottom:513.000410px;}
.y18{bottom:513.360411px;}
.ye1{bottom:514.170411px;}
.y9e{bottom:519.840416px;}
.y61{bottom:522.810418px;}
.y4f{bottom:535.590428px;}
.y30{bottom:539.010431px;}
.y75{bottom:541.350433px;}
.ye0{bottom:545.220436px;}
.yc7{bottom:550.350000px;}
.y9d{bottom:550.890441px;}
.y60{bottom:553.860443px;}
.yc6{bottom:554.400444px;}
.y4e{bottom:566.640453px;}
.y2f{bottom:570.060456px;}
.y74{bottom:572.220458px;}
.ydf{bottom:576.270461px;}
.y5f{bottom:580.680465px;}
.y9c{bottom:581.940466px;}
.yca{bottom:593.550000px;}
.yc9{bottom:597.600478px;}
.y4d{bottom:597.690478px;}
.y2e{bottom:601.110481px;}
.yde{bottom:603.180483px;}
.y73{bottom:603.270483px;}
.y11f{bottom:608.040486px;}
.y9b{bottom:612.990490px;}
.ye7{bottom:627.840502px;}
.y4c{bottom:628.740503px;}
.y2d{bottom:632.160506px;}
.y107{bottom:632.700000px;}
.ycd{bottom:633.420000px;}
.y72{bottom:634.500508px;}
.y106{bottom:636.750509px;}
.ycc{bottom:637.470510px;}
.ydc{bottom:638.460000px;}
.y9a{bottom:644.040515px;}
.y11e{bottom:649.440520px;}
.ye6{bottom:650.970000px;}
.ye3{bottom:651.600000px;}
.y71{bottom:652.410522px;}
.ye5{bottom:655.020524px;}
.ye2{bottom:655.650525px;}
.y4b{bottom:659.790528px;}
.y2c{bottom:663.210531px;}
.y11d{bottom:670.140536px;}
.y99{bottom:675.090540px;}
.yd0{bottom:678.150000px;}
.ycf{bottom:682.200546px;}
.y4a{bottom:690.840553px;}
.ye9{bottom:692.100000px;}
.y98{bottom:692.910554px;}
.y2b{bottom:694.260555px;}
.ye8{bottom:696.150557px;}
.y17{bottom:701.910562px;}
.y8d{bottom:703.530000px;}
.y11c{bottom:711.540569px;}
.y8c{bottom:719.730576px;}
.yd3{bottom:720.720000px;}
.y49{bottom:721.890578px;}
.yd2{bottom:724.770580px;}
.y2a{bottom:725.310580px;}
.y16{bottom:726.030581px;}
.yb3{bottom:729.900000px;}
.y11b{bottom:732.240586px;}
.yec{bottom:733.500000px;}
.yeb{bottom:737.550590px;}
.y15{bottom:750.150600px;}
.y48{bottom:752.940602px;}
.y29{bottom:756.360605px;}
.yd6{bottom:769.050000px;}
.yd5{bottom:773.100618px;}
.y14{bottom:773.640619px;}
.yef{bottom:774.900000px;}
.yee{bottom:778.950623px;}
.y89{bottom:781.650625px;}
.y90{bottom:783.990000px;}
.y47{bottom:783.990627px;}
.yac{bottom:784.440000px;}
.y8a{bottom:784.530000px;}
.y28{bottom:787.410630px;}
.y8f{bottom:787.860630px;}
.y13{bottom:794.340635px;}
.y88{bottom:799.200639px;}
.y108{bottom:810.900649px;}
.y46{bottom:815.040652px;}
.y12{bottom:815.760653px;}
.yf2{bottom:816.300000px;}
.y27{bottom:818.460655px;}
.yf1{bottom:820.350656px;}
.yb1{bottom:824.940000px;}
.y11a{bottom:835.740669px;}
.y45{bottom:846.090677px;}
.y11{bottom:849.420680px;}
.y26{bottom:849.510680px;}
.y119{bottom:856.440685px;}
.yf5{bottom:857.700000px;}
.y9{bottom:861.300689px;}
.yf4{bottom:861.750689px;}
.y10{bottom:870.120696px;}
.y44{bottom:877.140702px;}
.y25{bottom:880.560704px;}
.yf{bottom:891.630713px;}
.y118{bottom:897.840718px;}
.yf8{bottom:899.100000px;}
.yf7{bottom:903.150723px;}
.y8{bottom:904.860724px;}
.y93{bottom:905.490000px;}
.y86{bottom:906.030000px;}
.y6f{bottom:908.010726px;}
.y43{bottom:908.190727px;}
.y92{bottom:909.090727px;}
.y24{bottom:911.610729px;}
.ye{bottom:915.750733px;}
.y117{bottom:918.540735px;}
.y7{bottom:935.910749px;}
.y42{bottom:939.240751px;}
.yfb{bottom:940.500000px;}
.yd{bottom:941.040753px;}
.y23{bottom:942.660754px;}
.yfa{bottom:944.550756px;}
.y109{bottom:944.820000px;}
.y96{bottom:959.490000px;}
.y116{bottom:959.940768px;}
.y84{bottom:960.030000px;}
.y95{bottom:963.360771px;}
.y6{bottom:966.960774px;}
.y41{bottom:970.290776px;}
.yc{bottom:972.090778px;}
.y22{bottom:973.710779px;}
.y115{bottom:980.640785px;}
.yfe{bottom:981.900000px;}
.yfd{bottom:985.950789px;}
.yaf{bottom:1000.440000px;}
.y40{bottom:1001.340801px;}
.yb{bottom:1002.510802px;}
.y21{bottom:1016.100813px;}
.y5{bottom:1016.910814px;}
.y114{bottom:1022.040818px;}
.y101{bottom:1023.300000px;}
.y100{bottom:1027.350822px;}
.yad{bottom:1027.440000px;}
.ya{bottom:1030.050824px;}
.y3f{bottom:1032.390826px;}
.y5e{bottom:1032.750826px;}
.y82{bottom:1041.030000px;}
.y113{bottom:1042.740834px;}
.y104{bottom:1048.500000px;}
.y103{bottom:1049.040839px;}
.y4{bottom:1057.680846px;}
.y3e{bottom:1063.260851px;}
.y20{bottom:1063.440851px;}
.y5d{bottom:1063.530851px;}
.hd{height:0.450000px;}
.h16{height:3.420000px;}
.h17{height:3.510000px;}
.he{height:4.500000px;}
.hc{height:12.780000px;}
.h9{height:14.670000px;}
.h12{height:15.840000px;}
.h10{height:16.110000px;}
.h2{height:20.250000px;}
.hb{height:37.044030px;}
.ha{height:41.242353px;}
.h8{height:47.988320px;}
.hf{height:49.392040px;}
.h7{height:49.824040px;}
.h14{height:53.352043px;}
.h11{height:55.550924px;}
.h3{height:66.515093px;}
.h1{height:66.528053px;}
.h4{height:74.736060px;}
.h13{height:77.361182px;}
.h5{height:77.505182px;}
.h15{height:98.928079px;}
.h6{height:99.792080px;}
.h0{height:1188.000000px;}
.w1{width:0.090000px;}
.w21{width:3.330000px;}
.w16{width:3.420000px;}
.w1f{width:3.510000px;}
.wa{width:4.680000px;}
.w9{width:4.770000px;}
.w8{width:4.950000px;}
.wb{width:5.220000px;}
.w1c{width:5.850000px;}
.w18{width:6.480000px;}
.w1a{width:6.660000px;}
.w14{width:6.750000px;}
.w11{width:6.840000px;}
.wd{width:7.020000px;}
.w3{width:7.740000px;}
.w6{width:7.830000px;}
.wf{width:9.450000px;}
.we{width:17.550000px;}
.w20{width:20.610000px;}
.w19{width:28.350000px;}
.wc{width:31.230000px;}
.w12{width:35.010000px;}
.w5{width:57.780000px;}
.w4{width:60.120000px;}
.w13{width:67.140000px;}
.w17{width:68.670000px;}
.w15{width:71.730000px;}
.w10{width:74.520000px;}
.w7{width:83.790000px;}
.w1b{width:136.800000px;}
.w2{width:144.270000px;}
.w1d{width:147.150000px;}
.w1e{width:164.610000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x54{left:16.379939px;}
.x1{left:80.999915px;}
.x53{left:95.310000px;}
.x16{left:107.999936px;}
.x52{left:111.689939px;}
.x49{left:121.499947px;}
.x4{left:122.670098px;}
.x46{left:125.099950px;}
.x4c{left:127.169952px;}
.x4d{left:128.969953px;}
.x45{left:134.999958px;}
.x18{left:137.520000px;}
.x48{left:142.199964px;}
.x4b{left:146.699967px;}
.x55{left:149.399970px;}
.x28{left:150.930000px;}
.x4a{left:152.550000px;}
.x4e{left:153.990000px;}
.x47{left:156.150000px;}
.x3a{left:157.500126px;}
.x56{left:159.390000px;}
.x2c{left:164.430000px;}
.x7{left:172.440138px;}
.x6{left:192.420154px;}
.x5{left:210.060168px;}
.x57{left:221.400177px;}
.x29{left:225.450000px;}
.x2d{left:231.570000px;}
.x3{left:242.910194px;}
.x58{left:246.420000px;}
.x4f{left:263.700211px;}
.x3b{left:267.120000px;}
.x19{left:281.790000px;}
.x11{left:285.660229px;}
.x59{left:287.100230px;}
.x37{left:297.450000px;}
.x2a{left:299.430000px;}
.x10{left:304.020243px;}
.x5a{left:307.170000px;}
.x9{left:313.380101px;}
.x3c{left:325.800261px;}
.x2b{left:334.440000px;}
.x1e{left:339.480000px;}
.x3d{left:340.830000px;}
.x50{left:343.800275px;}
.x22{left:353.430283px;}
.x5b{left:354.600284px;}
.x5c{left:379.620000px;}
.xb{left:380.970155px;}
.x23{left:384.210000px;}
.x14{left:385.470158px;}
.xa{left:392.220164px;}
.x1f{left:399.600000px;}
.x3e{left:409.500328px;}
.x12{left:411.930330px;}
.xe{left:419.670186px;}
.xd{left:423.900189px;}
.x2e{left:425.160000px;}
.x13{left:431.190345px;}
.x3f{left:434.520000px;}
.x1b{left:437.490000px;}
.x1a{left:440.100000px;}
.x5d{left:443.970000px;}
.x20{left:447.480000px;}
.xc{left:459.000217px;}
.x8{left:460.890219px;}
.x2{left:463.500000px;}
.x51{left:467.820000px;}
.x2f{left:474.930000px;}
.x38{left:487.800000px;}
.x40{left:494.100395px;}
.x5e{left:495.900397px;}
.x21{left:504.990000px;}
.x41{left:509.130000px;}
.x5f{left:520.920000px;}
.x30{left:542.070000px;}
.x1c{left:555.570000px;}
.x60{left:561.600449px;}
.x35{left:569.430000px;}
.x42{left:577.800462px;}
.x61{left:581.670000px;}
.x31{left:582.930000px;}
.xf{left:586.710469px;}
.x44{left:594.900476px;}
.x43{left:602.820000px;}
.x1d{left:639.360000px;}
.x32{left:651.600000px;}
.x33{left:657.630000px;}
.x15{left:685.080548px;}
.x39{left:686.700399px;}
.x34{left:692.640000px;}
.x24{left:703.890563px;}
.x36{left:706.230000px;}
.x25{left:721.170000px;}
.x26{left:736.920000px;}
.x17{left:778.680623px;}
.x27{left:832.590666px;}
@media print{
.v1{vertical-align:-85.760069pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.480010pt;}
.v2{vertical-align:29.440024pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:1.920002pt;}
.ls4{letter-spacing:76.800061pt;}
.ls7{letter-spacing:240.000192pt;}
.ls5{letter-spacing:1296.001037pt;}
.ls0{letter-spacing:1312.001050pt;}
.ls2{letter-spacing:1332.081066pt;}
.ws3{word-spacing:-64.000051pt;}
.ws1{word-spacing:-18.640015pt;}
.ws7{word-spacing:-17.792014pt;}
.ws2{word-spacing:-16.000013pt;}
.ws5{word-spacing:-13.360011pt;}
.ws4{word-spacing:-12.000010pt;}
.ws6{word-spacing:-10.640009pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-0.913921pt;}
._0{width:0.992961pt;}
._4{width:2.106242pt;}
._a{width:3.712003pt;}
._b{width:4.701124pt;}
._d{width:5.610564pt;}
._7{width:6.976006pt;}
._f{width:7.867206pt;}
._6{width:8.785927pt;}
._5{width:9.728008pt;}
._e{width:10.624008pt;}
._3{width:11.584009pt;}
._9{width:13.056010pt;}
._8{width:13.952011pt;}
._14{width:14.960972pt;}
._2{width:17.408014pt;}
._12{width:18.432015pt;}
._13{width:19.584016pt;}
._10{width:20.480016pt;}
._16{width:36.096029pt;}
._17{width:37.151070pt;}
._15{width:96.000077pt;}
._c{width:144.000115pt;}
._11{width:145.792117pt;}
.fs6{font-size:42.560034pt;}
.fs5{font-size:48.000038pt;}
.fs4{font-size:53.440043pt;}
.fs0{font-size:64.000051pt;}
.fs3{font-size:74.560060pt;}
.fs1{font-size:85.440068pt;}
.fs2{font-size:96.000077pt;}
.y91{bottom:-10.319451pt;}
.y97{bottom:-10.319326pt;}
.y0{bottom:0.000000pt;}
.ydd{bottom:0.080454pt;}
.y10a{bottom:0.080672pt;}
.y8e{bottom:0.640501pt;}
.y8b{bottom:1.040559pt;}
.yb2{bottom:1.040587pt;}
.y87{bottom:1.040645pt;}
.y85{bottom:1.040684pt;}
.yb0{bottom:1.040712pt;}
.yae{bottom:1.040731pt;}
.y83{bottom:1.040741pt;}
.yb4{bottom:2.080521pt;}
.y94{bottom:3.200646pt;}
.y3{bottom:3.600041pt;}
.yda{bottom:3.600254pt;}
.ybb{bottom:3.600268pt;}
.ybf{bottom:3.600308pt;}
.yc2{bottom:3.600337pt;}
.yc5{bottom:3.600365pt;}
.yc8{bottom:3.600394pt;}
.ycb{bottom:3.600425pt;}
.yce{bottom:3.600453pt;}
.ye4{bottom:3.600466pt;}
.yd1{bottom:3.600485pt;}
.yea{bottom:3.600495pt;}
.yd4{bottom:3.600515pt;}
.yed{bottom:3.600524pt;}
.yd7{bottom:3.600550pt;}
.yf0{bottom:3.600554pt;}
.yf3{bottom:3.600583pt;}
.yf6{bottom:3.600613pt;}
.yf9{bottom:3.600642pt;}
.yfc{bottom:3.600672pt;}
.yff{bottom:3.600701pt;}
.y102{bottom:3.600731pt;}
.y105{bottom:3.600748pt;}
.y2{bottom:47.200000pt;}
.y1{bottom:50.880041pt;}
.yab{bottom:103.360083pt;}
.y6e{bottom:105.920085pt;}
.y112{bottom:108.000086pt;}
.y10d{bottom:110.080088pt;}
.y5c{bottom:118.400095pt;}
.y3d{bottom:120.320096pt;}
.y111{bottom:126.400101pt;}
.yaa{bottom:130.960105pt;}
.y6d{bottom:133.520107pt;}
.y10c{bottom:137.680110pt;}
.y110{bottom:144.800116pt;}
.y5b{bottom:145.680117pt;}
.y3c{bottom:147.920118pt;}
.y81{bottom:150.000120pt;}
.ya9{bottom:158.480127pt;}
.y6c{bottom:161.120129pt;}
.y10b{bottom:165.280132pt;}
.y10f{bottom:172.560138pt;}
.y5a{bottom:172.960138pt;}
.y3b{bottom:175.520140pt;}
.y80{bottom:177.600142pt;}
.ya8{bottom:186.080149pt;}
.y6b{bottom:188.720151pt;}
.y10e{bottom:200.160160pt;}
.y59{bottom:200.240160pt;}
.y3a{bottom:203.120162pt;}
.y7f{bottom:205.200164pt;}
.yb8{bottom:208.640167pt;}
.ya7{bottom:213.680171pt;}
.y6a{bottom:216.320173pt;}
.y58{bottom:227.760182pt;}
.y39{bottom:230.720185pt;}
.y7e{bottom:232.800186pt;}
.yb7{bottom:236.240189pt;}
.ya6{bottom:241.120193pt;}
.y69{bottom:243.920195pt;}
.y57{bottom:255.360204pt;}
.y38{bottom:258.320207pt;}
.y7d{bottom:260.400208pt;}
.yb6{bottom:263.840211pt;}
.ya5{bottom:268.720215pt;}
.y68{bottom:271.520217pt;}
.y56{bottom:282.960226pt;}
.y37{bottom:285.920229pt;}
.yb5{bottom:287.760230pt;}
.y7c{bottom:288.000230pt;}
.y1f{bottom:288.880231pt;}
.ya4{bottom:296.480237pt;}
.y67{bottom:299.120239pt;}
.ybc{bottom:309.680248pt;}
.y1e{bottom:310.320248pt;}
.y55{bottom:310.560248pt;}
.y36{bottom:313.520251pt;}
.yd9{bottom:314.000000pt;}
.y7b{bottom:315.600252pt;}
.yd8{bottom:317.600254pt;}
.ya3{bottom:324.080259pt;}
.y66{bottom:326.720261pt;}
.yba{bottom:330.800000pt;}
.y1d{bottom:331.760265pt;}
.yb9{bottom:334.400268pt;}
.y54{bottom:338.000270pt;}
.y70{bottom:338.160271pt;}
.y35{bottom:341.120273pt;}
.y7a{bottom:343.200275pt;}
.ya2{bottom:351.680281pt;}
.y1c{bottom:353.280283pt;}
.y65{bottom:354.320283pt;}
.y53{bottom:365.760293pt;}
.y34{bottom:368.720295pt;}
.y79{bottom:370.800297pt;}
.ya1{bottom:379.280303pt;}
.ybe{bottom:381.200000pt;}
.y64{bottom:381.920306pt;}
.ybd{bottom:384.800308pt;}
.y52{bottom:393.360315pt;}
.y1b{bottom:396.160317pt;}
.y33{bottom:396.320317pt;}
.y78{bottom:398.400319pt;}
.ya0{bottom:406.880326pt;}
.y63{bottom:409.520328pt;}
.y1a{bottom:417.680334pt;}
.yc1{bottom:417.760000pt;}
.y51{bottom:420.960337pt;}
.yc0{bottom:421.360337pt;}
.y32{bottom:423.920339pt;}
.y77{bottom:426.000341pt;}
.y9f{bottom:434.480348pt;}
.y62{bottom:437.120350pt;}
.y19{bottom:439.120351pt;}
.ydb{bottom:448.480359pt;}
.y50{bottom:448.560359pt;}
.y31{bottom:451.520361pt;}
.yc4{bottom:452.400000pt;}
.y76{bottom:453.600363pt;}
.yc3{bottom:456.000365pt;}
.y18{bottom:456.320365pt;}
.ye1{bottom:457.040366pt;}
.y9e{bottom:462.080370pt;}
.y61{bottom:464.720372pt;}
.y4f{bottom:476.080381pt;}
.y30{bottom:479.120383pt;}
.y75{bottom:481.200385pt;}
.ye0{bottom:484.640388pt;}
.yc7{bottom:489.200000pt;}
.y9d{bottom:489.680392pt;}
.y60{bottom:492.320394pt;}
.yc6{bottom:492.800394pt;}
.y4e{bottom:503.680403pt;}
.y2f{bottom:506.720405pt;}
.y74{bottom:508.640407pt;}
.ydf{bottom:512.240410pt;}
.y5f{bottom:516.160413pt;}
.y9c{bottom:517.280414pt;}
.yca{bottom:527.600000pt;}
.yc9{bottom:531.200425pt;}
.y4d{bottom:531.280425pt;}
.y2e{bottom:534.320427pt;}
.yde{bottom:536.160429pt;}
.y73{bottom:536.240429pt;}
.y11f{bottom:540.480432pt;}
.y9b{bottom:544.880436pt;}
.ye7{bottom:558.080446pt;}
.y4c{bottom:558.880447pt;}
.y2d{bottom:561.920450pt;}
.y107{bottom:562.400000pt;}
.ycd{bottom:563.040000pt;}
.y72{bottom:564.000451pt;}
.y106{bottom:566.000453pt;}
.ycc{bottom:566.640453pt;}
.ydc{bottom:567.520000pt;}
.y9a{bottom:572.480458pt;}
.y11e{bottom:577.280462pt;}
.ye6{bottom:578.640000pt;}
.ye3{bottom:579.200000pt;}
.y71{bottom:579.920464pt;}
.ye5{bottom:582.240466pt;}
.ye2{bottom:582.800466pt;}
.y4b{bottom:586.480469pt;}
.y2c{bottom:589.520472pt;}
.y11d{bottom:595.680477pt;}
.y99{bottom:600.080480pt;}
.yd0{bottom:602.800000pt;}
.ycf{bottom:606.400485pt;}
.y4a{bottom:614.080491pt;}
.ye9{bottom:615.200000pt;}
.y98{bottom:615.920493pt;}
.y2b{bottom:617.120494pt;}
.ye8{bottom:618.800495pt;}
.y17{bottom:623.920499pt;}
.y8d{bottom:625.360000pt;}
.y11c{bottom:632.480506pt;}
.y8c{bottom:639.760512pt;}
.yd3{bottom:640.640000pt;}
.y49{bottom:641.680513pt;}
.yd2{bottom:644.240515pt;}
.y2a{bottom:644.720516pt;}
.y16{bottom:645.360516pt;}
.yb3{bottom:648.800000pt;}
.y11b{bottom:650.880521pt;}
.yec{bottom:652.000000pt;}
.yeb{bottom:655.600524pt;}
.y15{bottom:666.800533pt;}
.y48{bottom:669.280535pt;}
.y29{bottom:672.320538pt;}
.yd6{bottom:683.600000pt;}
.yd5{bottom:687.200550pt;}
.y14{bottom:687.680550pt;}
.yef{bottom:688.800000pt;}
.yee{bottom:692.400554pt;}
.y89{bottom:694.800556pt;}
.y90{bottom:696.880000pt;}
.y47{bottom:696.880558pt;}
.yac{bottom:697.280000pt;}
.y8a{bottom:697.360000pt;}
.y28{bottom:699.920560pt;}
.y8f{bottom:700.320560pt;}
.y13{bottom:706.080565pt;}
.y88{bottom:710.400568pt;}
.y108{bottom:720.800577pt;}
.y46{bottom:724.480580pt;}
.y12{bottom:725.120580pt;}
.yf2{bottom:725.600000pt;}
.y27{bottom:727.520582pt;}
.yf1{bottom:729.200583pt;}
.yb1{bottom:733.280000pt;}
.y11a{bottom:742.880594pt;}
.y45{bottom:752.080602pt;}
.y11{bottom:755.040604pt;}
.y26{bottom:755.120604pt;}
.y119{bottom:761.280609pt;}
.yf5{bottom:762.400000pt;}
.y9{bottom:765.600612pt;}
.yf4{bottom:766.000613pt;}
.y10{bottom:773.440619pt;}
.y44{bottom:779.680624pt;}
.y25{bottom:782.720626pt;}
.yf{bottom:792.560634pt;}
.y118{bottom:798.080638pt;}
.yf8{bottom:799.200000pt;}
.yf7{bottom:802.800642pt;}
.y8{bottom:804.320643pt;}
.y93{bottom:804.880000pt;}
.y86{bottom:805.360000pt;}
.y6f{bottom:807.120646pt;}
.y43{bottom:807.280646pt;}
.y92{bottom:808.080646pt;}
.y24{bottom:810.320648pt;}
.ye{bottom:814.000651pt;}
.y117{bottom:816.480653pt;}
.y7{bottom:831.920666pt;}
.y42{bottom:834.880668pt;}
.yfb{bottom:836.000000pt;}
.yd{bottom:836.480669pt;}
.y23{bottom:837.920670pt;}
.yfa{bottom:839.600672pt;}
.y109{bottom:839.840000pt;}
.y96{bottom:852.880000pt;}
.y116{bottom:853.280683pt;}
.y84{bottom:853.360000pt;}
.y95{bottom:856.320685pt;}
.y6{bottom:859.520688pt;}
.y41{bottom:862.480690pt;}
.yc{bottom:864.080691pt;}
.y22{bottom:865.520692pt;}
.y115{bottom:871.680697pt;}
.yfe{bottom:872.800000pt;}
.yfd{bottom:876.400701pt;}
.yaf{bottom:889.280000pt;}
.y40{bottom:890.080712pt;}
.yb{bottom:891.120713pt;}
.y21{bottom:903.200723pt;}
.y5{bottom:903.920723pt;}
.y114{bottom:908.480727pt;}
.y101{bottom:909.600000pt;}
.y100{bottom:913.200731pt;}
.yad{bottom:913.280000pt;}
.ya{bottom:915.600732pt;}
.y3f{bottom:917.680734pt;}
.y5e{bottom:918.000734pt;}
.y82{bottom:925.360000pt;}
.y113{bottom:926.880742pt;}
.y104{bottom:932.000000pt;}
.y103{bottom:932.480746pt;}
.y4{bottom:940.160752pt;}
.y3e{bottom:945.120756pt;}
.y20{bottom:945.280756pt;}
.y5d{bottom:945.360756pt;}
.hd{height:0.400000pt;}
.h16{height:3.040000pt;}
.h17{height:3.120000pt;}
.he{height:4.000000pt;}
.hc{height:11.360000pt;}
.h9{height:13.040000pt;}
.h12{height:14.080000pt;}
.h10{height:14.320000pt;}
.h2{height:18.000000pt;}
.hb{height:32.928026pt;}
.ha{height:36.659869pt;}
.h8{height:42.656284pt;}
.hf{height:43.904035pt;}
.h7{height:44.288035pt;}
.h14{height:47.424038pt;}
.h11{height:49.378600pt;}
.h3{height:59.124527pt;}
.h1{height:59.136047pt;}
.h4{height:66.432053pt;}
.h13{height:68.765495pt;}
.h5{height:68.893495pt;}
.h15{height:87.936070pt;}
.h6{height:88.704071pt;}
.h0{height:1056.000000pt;}
.w1{width:0.080000pt;}
.w21{width:2.960000pt;}
.w16{width:3.040000pt;}
.w1f{width:3.120000pt;}
.wa{width:4.160000pt;}
.w9{width:4.240000pt;}
.w8{width:4.400000pt;}
.wb{width:4.640000pt;}
.w1c{width:5.200000pt;}
.w18{width:5.760000pt;}
.w1a{width:5.920000pt;}
.w14{width:6.000000pt;}
.w11{width:6.080000pt;}
.wd{width:6.240000pt;}
.w3{width:6.880000pt;}
.w6{width:6.960000pt;}
.wf{width:8.400000pt;}
.we{width:15.600000pt;}
.w20{width:18.320000pt;}
.w19{width:25.200000pt;}
.wc{width:27.760000pt;}
.w12{width:31.120000pt;}
.w5{width:51.360000pt;}
.w4{width:53.440000pt;}
.w13{width:59.680000pt;}
.w17{width:61.040000pt;}
.w15{width:63.760000pt;}
.w10{width:66.240000pt;}
.w7{width:74.480000pt;}
.w1b{width:121.600000pt;}
.w2{width:128.240000pt;}
.w1d{width:130.800000pt;}
.w1e{width:146.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x54{left:14.559946pt;}
.x1{left:71.999924pt;}
.x53{left:84.720000pt;}
.x16{left:95.999943pt;}
.x52{left:99.279946pt;}
.x49{left:107.999953pt;}
.x4{left:109.040087pt;}
.x46{left:111.199956pt;}
.x4c{left:113.039957pt;}
.x4d{left:114.639958pt;}
.x45{left:119.999963pt;}
.x18{left:122.240000pt;}
.x48{left:126.399968pt;}
.x4b{left:130.399971pt;}
.x55{left:132.799973pt;}
.x28{left:134.160000pt;}
.x4a{left:135.600000pt;}
.x4e{left:136.880000pt;}
.x47{left:138.800000pt;}
.x3a{left:140.000112pt;}
.x56{left:141.680000pt;}
.x2c{left:146.160000pt;}
.x7{left:153.280123pt;}
.x6{left:171.040137pt;}
.x5{left:186.720149pt;}
.x57{left:196.800157pt;}
.x29{left:200.400000pt;}
.x2d{left:205.840000pt;}
.x3{left:215.920173pt;}
.x58{left:219.040000pt;}
.x4f{left:234.400188pt;}
.x3b{left:237.440000pt;}
.x19{left:250.480000pt;}
.x11{left:253.920203pt;}
.x59{left:255.200204pt;}
.x37{left:264.400000pt;}
.x2a{left:266.160000pt;}
.x10{left:270.240216pt;}
.x5a{left:273.040000pt;}
.x9{left:278.560090pt;}
.x3c{left:289.600232pt;}
.x2b{left:297.280000pt;}
.x1e{left:301.760000pt;}
.x3d{left:302.960000pt;}
.x50{left:305.600244pt;}
.x22{left:314.160251pt;}
.x5b{left:315.200252pt;}
.x5c{left:337.440000pt;}
.xb{left:338.640138pt;}
.x23{left:341.520000pt;}
.x14{left:342.640141pt;}
.xa{left:348.640146pt;}
.x1f{left:355.200000pt;}
.x3e{left:364.000291pt;}
.x12{left:366.160293pt;}
.xe{left:373.040165pt;}
.xd{left:376.800168pt;}
.x2e{left:377.920000pt;}
.x13{left:383.280307pt;}
.x3f{left:386.240000pt;}
.x1b{left:388.880000pt;}
.x1a{left:391.200000pt;}
.x5d{left:394.640000pt;}
.x20{left:397.760000pt;}
.xc{left:408.000193pt;}
.x8{left:409.680194pt;}
.x2{left:412.000000pt;}
.x51{left:415.840000pt;}
.x2f{left:422.160000pt;}
.x38{left:433.600000pt;}
.x40{left:439.200351pt;}
.x5e{left:440.800353pt;}
.x21{left:448.880000pt;}
.x41{left:452.560000pt;}
.x5f{left:463.040000pt;}
.x30{left:481.840000pt;}
.x1c{left:493.840000pt;}
.x60{left:499.200399pt;}
.x35{left:506.160000pt;}
.x42{left:513.600411pt;}
.x61{left:517.040000pt;}
.x31{left:518.160000pt;}
.xf{left:521.520417pt;}
.x44{left:528.800423pt;}
.x43{left:535.840000pt;}
.x1d{left:568.320000pt;}
.x32{left:579.200000pt;}
.x33{left:584.560000pt;}
.x15{left:608.960487pt;}
.x39{left:610.400355pt;}
.x34{left:615.680000pt;}
.x24{left:625.680501pt;}
.x36{left:627.760000pt;}
.x25{left:641.040000pt;}
.x26{left:655.040000pt;}
.x17{left:692.160554pt;}
.x27{left:740.080592pt;}
}




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