
    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_f98f070df857e365c3f52df7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_7d80d6ce28d9b6e699216512.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_89a2b2afbf8a545da8e8c929.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e5069573896d71aa71192206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_aa9c3eb1459955c66c2e85ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_4f7d78dbd5f424d21cd348da.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-100.200000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.672000px;}
.ls14{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.223800px;}
.ls4{letter-spacing:-0.181200px;}
.ls1f{letter-spacing:-0.109200px;}
.ls1b{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.100200px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.090720px;}
.ls6{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.136200px;}
.ls12{letter-spacing:0.144000px;}
.lse{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.612000px;}
.ls9{letter-spacing:0.613440px;}
.ls1c{letter-spacing:0.858000px;}
.ls11{letter-spacing:0.924000px;}
.ls18{letter-spacing:846.156000px;}
.ls1e{letter-spacing:855.156000px;}
.ls0{letter-spacing:1280.382720px;}
.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;}
}
.ws17{word-spacing:-66.240000px;}
.ws0{word-spacing:-23.381280px;}
.ws12{word-spacing:-20.304000px;}
.wsc{word-spacing:-19.584000px;}
.ws19{word-spacing:-18.305520px;}
.wsb{word-spacing:-17.537280px;}
.ws6{word-spacing:-17.225280px;}
.ws9{word-spacing:-16.919880px;}
.ws8{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.506480px;}
.ws5{word-spacing:-15.228000px;}
.ws4{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.904000px;}
.wsd{word-spacing:-14.508000px;}
.ws15{word-spacing:-14.268720px;}
.ws2{word-spacing:-13.770720px;}
.ws13{word-spacing:-13.546920px;}
.wse{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws10{word-spacing:-13.186920px;}
.ws18{word-spacing:-13.141320px;}
.wsf{word-spacing:-12.738720px;}
.ws16{word-spacing:-12.420000px;}
.ws1a{word-spacing:-10.152000px;}
.ws11{word-spacing:-10.080000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-13.596000px;}
._9{margin-left:-12.510000px;}
._3{margin-left:-10.380000px;}
._4{margin-left:-8.784000px;}
._7{margin-left:-6.912000px;}
._6{margin-left:-5.022000px;}
._5{margin-left:-3.816000px;}
._c{margin-left:-2.568000px;}
._0{margin-left:-1.212480px;}
._8{width:1.056000px;}
._a{width:2.880720px;}
._1{width:846.156000px;}
._b{width:847.542720px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.yad{bottom:-10.980000px;}
.y0{bottom:0.000000px;}
.y76{bottom:2.700000px;}
.y68{bottom:2.880000px;}
.y73{bottom:3.060000px;}
.y8e{bottom:11.520000px;}
.y8d{bottom:11.700000px;}
.y67{bottom:16.740000px;}
.ybd{bottom:16.920000px;}
.ybc{bottom:30.600000px;}
.y21{bottom:57.456000px;}
.y20{bottom:76.716000px;}
.y60{bottom:226.290000px;}
.yb8{bottom:241.410000px;}
.y5f{bottom:243.390000px;}
.y98{bottom:247.170000px;}
.yb7{bottom:255.270000px;}
.y5e{bottom:260.670000px;}
.y97{bottom:261.030000px;}
.ya9{bottom:272.370000px;}
.y5d{bottom:277.950000px;}
.ya8{bottom:286.230000px;}
.y5c{bottom:295.230000px;}
.y1f{bottom:297.930000px;}
.y5b{bottom:312.555000px;}
.y1e{bottom:318.675000px;}
.y5a{bottom:329.655000px;}
.y1d{bottom:346.755000px;}
.y59{bottom:346.935000px;}
.y6f{bottom:358.095000px;}
.y58{bottom:364.215000px;}
.y1c{bottom:369.435000px;}
.y6e{bottom:374.295000px;}
.y57{bottom:381.495000px;}
.y1b{bottom:392.295000px;}
.y56{bottom:398.775000px;}
.y1a{bottom:415.155000px;}
.y55{bottom:416.055000px;}
.y54{bottom:433.155000px;}
.y19{bottom:437.835000px;}
.yd1{bottom:443.415000px;}
.y53{bottom:450.435000px;}
.y18{bottom:460.695000px;}
.yd0{bottom:463.035000px;}
.y52{bottom:467.715000px;}
.ycf{bottom:479.055000px;}
.y17{bottom:483.555000px;}
.y51{bottom:484.995000px;}
.yce{bottom:487.335000px;}
.y50{bottom:502.275000px;}
.y16{bottom:506.235000px;}
.ye5{bottom:509.835000px;}
.ycd{bottom:513.075000px;}
.y4f{bottom:519.555000px;}
.ye4{bottom:520.095000px;}
.ye3{bottom:528.375000px;}
.y15{bottom:529.095000px;}
.y4e{bottom:536.655000px;}
.ycc{bottom:538.995000px;}
.y14{bottom:551.955000px;}
.y4d{bottom:553.935000px;}
.ye2{bottom:554.295000px;}
.yba{bottom:562.965000px;}
.ycb{bottom:564.945000px;}
.y4c{bottom:571.245000px;}
.y13{bottom:574.665000px;}
.ydb{bottom:575.385000px;}
.yb9{bottom:576.825000px;}
.y86{bottom:577.185000px;}
.ye1{bottom:580.245000px;}
.yda{bottom:585.645000px;}
.y4b{bottom:588.525000px;}
.yd9{bottom:593.925000px;}
.y85{bottom:594.465000px;}
.yca{bottom:595.905000px;}
.y12{bottom:597.525000px;}
.y4a{bottom:605.805000px;}
.ye0{bottom:606.165000px;}
.y84{bottom:610.305000px;}
.y83{bottom:618.585000px;}
.yd8{bottom:619.845000px;}
.y11{bottom:620.385000px;}
.yc9{bottom:621.825000px;}
.yf5{bottom:622.005000px;}
.y49{bottom:623.085000px;}
.ydf{bottom:631.905000px;}
.y48{bottom:641.085000px;}
.y10{bottom:643.065000px;}
.y82{bottom:644.145000px;}
.yd7{bottom:645.765000px;}
.yf4{bottom:646.665000px;}
.yc8{bottom:647.565000px;}
.y33{bottom:652.965000px;}
.yde{bottom:657.825000px;}
.y47{bottom:661.065000px;}
.yf{bottom:665.925000px;}
.y81{bottom:669.525000px;}
.y32{bottom:669.705000px;}
.yf3{bottom:671.145000px;}
.yd6{bottom:671.685000px;}
.y46{bottom:677.625000px;}
.yc7{bottom:678.525000px;}
.ydd{bottom:683.745000px;}
.ye{bottom:688.785000px;}
.y45{bottom:692.205000px;}
.y31{bottom:694.725000px;}
.y80{bottom:695.085000px;}
.yf2{bottom:695.625000px;}
.yd5{bottom:697.425000px;}
.yb6{bottom:706.065000px;}
.y44{bottom:709.305000px;}
.yc6{bottom:709.665000px;}
.yd{bottom:711.465000px;}
.y30{bottom:719.205000px;}
.yf1{bottom:720.105000px;}
.y7f{bottom:720.645000px;}
.yb5{bottom:723.165000px;}
.yd4{bottom:723.345000px;}
.y43{bottom:726.405000px;}
.y96{bottom:727.485000px;}
.yc{bottom:734.325000px;}
.yc5{bottom:735.405000px;}
.ya7{bottom:737.025000px;}
.y2f{bottom:743.325000px;}
.y42{bottom:743.685000px;}
.y95{bottom:744.765000px;}
.y7e{bottom:746.025000px;}
.yd3{bottom:749.265000px;}
.ya6{bottom:754.125000px;}
.yb{bottom:757.185000px;}
.y94{bottom:760.605000px;}
.y41{bottom:760.965000px;}
.yc4{bottom:761.325000px;}
.y2e{bottom:767.805000px;}
.y93{bottom:768.885000px;}
.yf0{bottom:770.505000px;}
.y7d{bottom:771.585000px;}
.ya5{bottom:774.285000px;}
.yd2{bottom:775.185000px;}
.yb4{bottom:776.805000px;}
.y40{bottom:778.245000px;}
.ya{bottom:779.865000px;}
.yc3{bottom:787.245000px;}
.y2d{bottom:792.465000px;}
.yb3{bottom:792.645000px;}
.y92{bottom:794.805000px;}
.y3f{bottom:795.525000px;}
.y7c{bottom:797.145000px;}
.yb2{bottom:800.925000px;}
.y9{bottom:802.725000px;}
.ya4{bottom:807.765000px;}
.y3e{bottom:812.850000px;}
.yc2{bottom:813.210000px;}
.y2c{bottom:816.990000px;}
.y91{bottom:820.770000px;}
.y7b{bottom:822.570000px;}
.ya3{bottom:823.830000px;}
.yef{bottom:825.090000px;}
.y6d{bottom:825.270000px;}
.y8{bottom:825.630000px;}
.yb1{bottom:826.890000px;}
.y3d{bottom:830.850000px;}
.ya2{bottom:832.110000px;}
.yc1{bottom:838.950000px;}
.y6c{bottom:841.110000px;}
.y2b{bottom:841.470000px;}
.yee{bottom:845.250000px;}
.y90{bottom:846.510000px;}
.y7a{bottom:848.130000px;}
.y7{bottom:848.310000px;}
.y3c{bottom:850.650000px;}
.yb0{bottom:852.810000px;}
.ya1{bottom:857.850000px;}
.y6b{bottom:858.390000px;}
.yc0{bottom:864.870000px;}
.y2a{bottom:865.950000px;}
.y3b{bottom:867.930000px;}
.yed{bottom:869.910000px;}
.y8f{bottom:872.430000px;}
.y79{bottom:873.690000px;}
.y6a{bottom:874.410000px;}
.y6{bottom:875.310000px;}
.yaf{bottom:878.730000px;}
.y69{bottom:882.690000px;}
.ya0{bottom:883.770000px;}
.y3a{bottom:885.210000px;}
.y29{bottom:890.610000px;}
.ybf{bottom:890.790000px;}
.yec{bottom:894.390000px;}
.y8c{bottom:898.350000px;}
.y78{bottom:899.070000px;}
.y39{bottom:902.490000px;}
.yae{bottom:904.470000px;}
.y5{bottom:908.430000px;}
.y66{bottom:908.610000px;}
.y9f{bottom:909.690000px;}
.y28{bottom:915.090000px;}
.ybe{bottom:916.710000px;}
.yeb{bottom:918.870000px;}
.y38{bottom:919.770000px;}
.y77{bottom:924.630000px;}
.yac{bottom:930.390000px;}
.y9e{bottom:935.610000px;}
.y37{bottom:937.050000px;}
.y8b{bottom:938.670000px;}
.y27{bottom:939.570000px;}
.y4{bottom:941.550000px;}
.ybb{bottom:942.450000px;}
.yea{bottom:943.350000px;}
.y75{bottom:950.190000px;}
.y65{bottom:953.970000px;}
.y36{bottom:954.150000px;}
.y8a{bottom:955.770000px;}
.yab{bottom:956.310000px;}
.y9d{bottom:961.350000px;}
.y26{bottom:964.410000px;}
.ye9{bottom:968.010000px;}
.ydc{bottom:968.370000px;}
.y64{bottom:971.070000px;}
.y35{bottom:971.430000px;}
.y3{bottom:974.670000px;}
.y74{bottom:975.570000px;}
.y89{bottom:975.930000px;}
.yaa{bottom:982.230000px;}
.y9c{bottom:987.270000px;}
.y25{bottom:988.710000px;}
.y63{bottom:991.230000px;}
.ye8{bottom:992.490000px;}
.y72{bottom:1001.130000px;}
.y34{bottom:1006.710000px;}
.y2{bottom:1007.970000px;}
.y88{bottom:1009.410000px;}
.y24{bottom:1013.550000px;}
.ye7{bottom:1016.970000px;}
.y62{bottom:1024.710000px;}
.y87{bottom:1027.410000px;}
.y9b{bottom:1027.770000px;}
.y23{bottom:1038.030000px;}
.y61{bottom:1042.710000px;}
.ye6{bottom:1043.070000px;}
.y9a{bottom:1044.870000px;}
.y71{bottom:1046.670000px;}
.y22{bottom:1063.440000px;}
.y70{bottom:1063.800000px;}
.y99{bottom:1064.880000px;}
.y1{bottom:1066.140000px;}
.hc{height:22.140000px;}
.hd{height:22.176000px;}
.ha{height:22.500000px;}
.he{height:22.536000px;}
.h9{height:27.540000px;}
.h10{height:27.720000px;}
.hb{height:37.546875px;}
.hf{height:41.400000px;}
.h5{height:47.344922px;}
.h3{height:50.312812px;}
.h7{height:56.320312px;}
.h1{height:62.327813px;}
.h8{height:69.086250px;}
.h4{height:70.664062px;}
.h6{height:75.093750px;}
.h2{height:87.859687px;}
.h0{height:1188.000000px;}
.w1d{width:58.500000px;}
.w1e{width:58.536000px;}
.w1f{width:60.156000px;}
.w17{width:66.960000px;}
.w14{width:66.996000px;}
.w15{width:67.140000px;}
.w16{width:67.176000px;}
.w18{width:68.796000px;}
.we{width:71.316000px;}
.w11{width:73.620000px;}
.w12{width:73.656000px;}
.w2{width:77.760000px;}
.w3{width:77.796000px;}
.w4{width:77.940000px;}
.w5{width:79.236000px;}
.wa{width:87.120000px;}
.w9{width:87.156000px;}
.w8{width:87.300000px;}
.wb{width:87.480000px;}
.w7{width:87.516000px;}
.wc{width:88.596000px;}
.wf{width:106.056000px;}
.w24{width:106.956000px;}
.w25{width:108.576000px;}
.w6{width:119.700000px;}
.w1b{width:120.240000px;}
.w1a{width:120.276000px;}
.w21{width:124.956000px;}
.w22{width:126.576000px;}
.w1{width:176.610000px;}
.w1c{width:183.855000px;}
.w19{width:230.070000px;}
.w13{width:240.330000px;}
.w10{width:352.695000px;}
.w20{width:406.155000px;}
.w23{width:442.695000px;}
.wd{width:480.495000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x27{left:6.480000px;}
.x18{left:8.100000px;}
.x42{left:12.240000px;}
.x52{left:13.500000px;}
.x44{left:14.940000px;}
.x3e{left:17.100000px;}
.x46{left:19.260000px;}
.x16{left:21.780000px;}
.xf{left:23.220000px;}
.x11{left:25.560000px;}
.x2e{left:27.045000px;}
.x1e{left:28.125000px;}
.x20{left:30.420000px;}
.x36{left:31.860000px;}
.x17{left:33.480000px;}
.x56{left:34.740000px;}
.x5a{left:36.720000px;}
.x25{left:38.160000px;}
.x47{left:40.680000px;}
.x3a{left:43.380000px;}
.x31{left:45.045000px;}
.x30{left:46.980000px;}
.x1a{left:49.860000px;}
.x19{left:51.300000px;}
.x29{left:52.380000px;}
.x39{left:54.000000px;}
.x4e{left:55.080000px;}
.x2a{left:56.520000px;}
.x2b{left:59.040000px;}
.x1c{left:60.654000px;}
.x3b{left:63.180000px;}
.x28{left:67.725000px;}
.x26{left:74.385000px;}
.x50{left:76.725000px;}
.x64{left:80.505000px;}
.x62{left:87.165000px;}
.xd{left:89.094000px;}
.x63{left:93.780000px;}
.x5c{left:95.040000px;}
.x5e{left:98.505000px;}
.x5b{left:105.165000px;}
.x5d{left:111.825000px;}
.x4b{left:115.734000px;}
.x3c{left:120.954000px;}
.xc{left:126.756000px;}
.x1{left:134.856000px;}
.xa{left:152.850000px;}
.x48{left:173.919000px;}
.x33{left:177.159000px;}
.xb{left:188.850000px;}
.x3{left:198.750000px;}
.x57{left:203.979000px;}
.x5f{left:222.159000px;}
.x49{left:223.419000px;}
.x2c{left:241.059000px;}
.x1d{left:249.690000px;}
.xe{left:306.795000px;}
.x1f{left:340.455000px;}
.x4c{left:360.075000px;}
.x3d{left:370.515000px;}
.x10{left:387.795000px;}
.x51{left:421.815000px;}
.x2{left:427.035000px;}
.x21{left:431.175000px;}
.x4{left:435.675000px;}
.x3f{left:440.745000px;}
.x5{left:459.105000px;}
.x12{left:469.005000px;}
.x34{left:482.685000px;}
.x4d{left:483.765000px;}
.x40{left:511.125000px;}
.x22{left:521.745000px;}
.x8{left:526.605000px;}
.x58{left:536.325000px;}
.x53{left:545.505000px;}
.x13{left:550.005000px;}
.x35{left:559.725000px;}
.x60{left:572.685000px;}
.x41{left:581.505000px;}
.x4f{left:607.245000px;}
.x2d{left:610.665000px;}
.x23{left:612.150000px;}
.x7{left:616.650000px;}
.x14{left:631.050000px;}
.x37{left:636.630000px;}
.x43{left:651.930000px;}
.x59{left:664.530000px;}
.x54{left:669.030000px;}
.x61{left:682.890000px;}
.x2f{left:685.410000px;}
.x24{left:702.870000px;}
.x15{left:712.230000px;}
.x38{left:713.670000px;}
.x45{left:722.310000px;}
.x55{left:730.950000px;}
.x4a{left:771.450000px;}
.x9{left:777.570000px;}
.x6{left:783.510000px;}
.x32{left:797.400000px;}
.x1b{left:798.660000px;}
@media print{
.v1{vertical-align:-89.066667pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.597333pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.198933pt;}
.ls4{letter-spacing:-0.161067pt;}
.ls1f{letter-spacing:-0.097067pt;}
.ls1b{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.089067pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.080640pt;}
.ls6{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.121067pt;}
.ls12{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.544000pt;}
.ls9{letter-spacing:0.545280pt;}
.ls1c{letter-spacing:0.762667pt;}
.ls11{letter-spacing:0.821333pt;}
.ls18{letter-spacing:752.138667pt;}
.ls1e{letter-spacing:760.138667pt;}
.ls0{letter-spacing:1138.117973pt;}
.ws17{word-spacing:-58.880000pt;}
.ws0{word-spacing:-20.783360pt;}
.ws12{word-spacing:-18.048000pt;}
.wsc{word-spacing:-17.408000pt;}
.ws19{word-spacing:-16.271573pt;}
.wsb{word-spacing:-15.588693pt;}
.ws6{word-spacing:-15.311360pt;}
.ws9{word-spacing:-15.039893pt;}
.ws8{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.672427pt;}
.ws5{word-spacing:-13.536000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.248000pt;}
.wsd{word-spacing:-12.896000pt;}
.ws15{word-spacing:-12.683307pt;}
.ws2{word-spacing:-12.240640pt;}
.ws13{word-spacing:-12.041707pt;}
.wse{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws10{word-spacing:-11.721707pt;}
.ws18{word-spacing:-11.681173pt;}
.wsf{word-spacing:-11.323307pt;}
.ws16{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-9.024000pt;}
.ws11{word-spacing:-8.960000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-12.085333pt;}
._9{margin-left:-11.120000pt;}
._3{margin-left:-9.226667pt;}
._4{margin-left:-7.808000pt;}
._7{margin-left:-6.144000pt;}
._6{margin-left:-4.464000pt;}
._5{margin-left:-3.392000pt;}
._c{margin-left:-2.282667pt;}
._0{margin-left:-1.077760pt;}
._8{width:0.938667pt;}
._a{width:2.560640pt;}
._1{width:752.138667pt;}
._b{width:753.371307pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.yad{bottom:-9.760000pt;}
.y0{bottom:0.000000pt;}
.y76{bottom:2.400000pt;}
.y68{bottom:2.560000pt;}
.y73{bottom:2.720000pt;}
.y8e{bottom:10.240000pt;}
.y8d{bottom:10.400000pt;}
.y67{bottom:14.880000pt;}
.ybd{bottom:15.040000pt;}
.ybc{bottom:27.200000pt;}
.y21{bottom:51.072000pt;}
.y20{bottom:68.192000pt;}
.y60{bottom:201.146667pt;}
.yb8{bottom:214.586667pt;}
.y5f{bottom:216.346667pt;}
.y98{bottom:219.706667pt;}
.yb7{bottom:226.906667pt;}
.y5e{bottom:231.706667pt;}
.y97{bottom:232.026667pt;}
.ya9{bottom:242.106667pt;}
.y5d{bottom:247.066667pt;}
.ya8{bottom:254.426667pt;}
.y5c{bottom:262.426667pt;}
.y1f{bottom:264.826667pt;}
.y5b{bottom:277.826667pt;}
.y1e{bottom:283.266667pt;}
.y5a{bottom:293.026667pt;}
.y1d{bottom:308.226667pt;}
.y59{bottom:308.386667pt;}
.y6f{bottom:318.306667pt;}
.y58{bottom:323.746667pt;}
.y1c{bottom:328.386667pt;}
.y6e{bottom:332.706667pt;}
.y57{bottom:339.106667pt;}
.y1b{bottom:348.706667pt;}
.y56{bottom:354.466667pt;}
.y1a{bottom:369.026667pt;}
.y55{bottom:369.826667pt;}
.y54{bottom:385.026667pt;}
.y19{bottom:389.186667pt;}
.yd1{bottom:394.146667pt;}
.y53{bottom:400.386667pt;}
.y18{bottom:409.506667pt;}
.yd0{bottom:411.586667pt;}
.y52{bottom:415.746667pt;}
.ycf{bottom:425.826667pt;}
.y17{bottom:429.826667pt;}
.y51{bottom:431.106667pt;}
.yce{bottom:433.186667pt;}
.y50{bottom:446.466667pt;}
.y16{bottom:449.986667pt;}
.ye5{bottom:453.186667pt;}
.ycd{bottom:456.066667pt;}
.y4f{bottom:461.826667pt;}
.ye4{bottom:462.306667pt;}
.ye3{bottom:469.666667pt;}
.y15{bottom:470.306667pt;}
.y4e{bottom:477.026667pt;}
.ycc{bottom:479.106667pt;}
.y14{bottom:490.626667pt;}
.y4d{bottom:492.386667pt;}
.ye2{bottom:492.706667pt;}
.yba{bottom:500.413333pt;}
.ycb{bottom:502.173333pt;}
.y4c{bottom:507.773333pt;}
.y13{bottom:510.813333pt;}
.ydb{bottom:511.453333pt;}
.yb9{bottom:512.733333pt;}
.y86{bottom:513.053333pt;}
.ye1{bottom:515.773333pt;}
.yda{bottom:520.573333pt;}
.y4b{bottom:523.133333pt;}
.yd9{bottom:527.933333pt;}
.y85{bottom:528.413333pt;}
.yca{bottom:529.693333pt;}
.y12{bottom:531.133333pt;}
.y4a{bottom:538.493333pt;}
.ye0{bottom:538.813333pt;}
.y84{bottom:542.493333pt;}
.y83{bottom:549.853333pt;}
.yd8{bottom:550.973333pt;}
.y11{bottom:551.453333pt;}
.yc9{bottom:552.733333pt;}
.yf5{bottom:552.893333pt;}
.y49{bottom:553.853333pt;}
.ydf{bottom:561.693333pt;}
.y48{bottom:569.853333pt;}
.y10{bottom:571.613333pt;}
.y82{bottom:572.573333pt;}
.yd7{bottom:574.013333pt;}
.yf4{bottom:574.813333pt;}
.yc8{bottom:575.613333pt;}
.y33{bottom:580.413333pt;}
.yde{bottom:584.733333pt;}
.y47{bottom:587.613333pt;}
.yf{bottom:591.933333pt;}
.y81{bottom:595.133333pt;}
.y32{bottom:595.293333pt;}
.yf3{bottom:596.573333pt;}
.yd6{bottom:597.053333pt;}
.y46{bottom:602.333333pt;}
.yc7{bottom:603.133333pt;}
.ydd{bottom:607.773333pt;}
.ye{bottom:612.253333pt;}
.y45{bottom:615.293333pt;}
.y31{bottom:617.533333pt;}
.y80{bottom:617.853333pt;}
.yf2{bottom:618.333333pt;}
.yd5{bottom:619.933333pt;}
.yb6{bottom:627.613333pt;}
.y44{bottom:630.493333pt;}
.yc6{bottom:630.813333pt;}
.yd{bottom:632.413333pt;}
.y30{bottom:639.293333pt;}
.yf1{bottom:640.093333pt;}
.y7f{bottom:640.573333pt;}
.yb5{bottom:642.813333pt;}
.yd4{bottom:642.973333pt;}
.y43{bottom:645.693333pt;}
.y96{bottom:646.653333pt;}
.yc{bottom:652.733333pt;}
.yc5{bottom:653.693333pt;}
.ya7{bottom:655.133333pt;}
.y2f{bottom:660.733333pt;}
.y42{bottom:661.053333pt;}
.y95{bottom:662.013333pt;}
.y7e{bottom:663.133333pt;}
.yd3{bottom:666.013333pt;}
.ya6{bottom:670.333333pt;}
.yb{bottom:673.053333pt;}
.y94{bottom:676.093333pt;}
.y41{bottom:676.413333pt;}
.yc4{bottom:676.733333pt;}
.y2e{bottom:682.493333pt;}
.y93{bottom:683.453333pt;}
.yf0{bottom:684.893333pt;}
.y7d{bottom:685.853333pt;}
.ya5{bottom:688.253333pt;}
.yd2{bottom:689.053333pt;}
.yb4{bottom:690.493333pt;}
.y40{bottom:691.773333pt;}
.ya{bottom:693.213333pt;}
.yc3{bottom:699.773333pt;}
.y2d{bottom:704.413333pt;}
.yb3{bottom:704.573333pt;}
.y92{bottom:706.493333pt;}
.y3f{bottom:707.133333pt;}
.y7c{bottom:708.573333pt;}
.yb2{bottom:711.933333pt;}
.y9{bottom:713.533333pt;}
.ya4{bottom:718.013333pt;}
.y3e{bottom:722.533333pt;}
.yc2{bottom:722.853333pt;}
.y2c{bottom:726.213333pt;}
.y91{bottom:729.573333pt;}
.y7b{bottom:731.173333pt;}
.ya3{bottom:732.293333pt;}
.yef{bottom:733.413333pt;}
.y6d{bottom:733.573333pt;}
.y8{bottom:733.893333pt;}
.yb1{bottom:735.013333pt;}
.y3d{bottom:738.533333pt;}
.ya2{bottom:739.653333pt;}
.yc1{bottom:745.733333pt;}
.y6c{bottom:747.653333pt;}
.y2b{bottom:747.973333pt;}
.yee{bottom:751.333333pt;}
.y90{bottom:752.453333pt;}
.y7a{bottom:753.893333pt;}
.y7{bottom:754.053333pt;}
.y3c{bottom:756.133333pt;}
.yb0{bottom:758.053333pt;}
.ya1{bottom:762.533333pt;}
.y6b{bottom:763.013333pt;}
.yc0{bottom:768.773333pt;}
.y2a{bottom:769.733333pt;}
.y3b{bottom:771.493333pt;}
.yed{bottom:773.253333pt;}
.y8f{bottom:775.493333pt;}
.y79{bottom:776.613333pt;}
.y6a{bottom:777.253333pt;}
.y6{bottom:778.053333pt;}
.yaf{bottom:781.093333pt;}
.y69{bottom:784.613333pt;}
.ya0{bottom:785.573333pt;}
.y3a{bottom:786.853333pt;}
.y29{bottom:791.653333pt;}
.ybf{bottom:791.813333pt;}
.yec{bottom:795.013333pt;}
.y8c{bottom:798.533333pt;}
.y78{bottom:799.173333pt;}
.y39{bottom:802.213333pt;}
.yae{bottom:803.973333pt;}
.y5{bottom:807.493333pt;}
.y66{bottom:807.653333pt;}
.y9f{bottom:808.613333pt;}
.y28{bottom:813.413333pt;}
.ybe{bottom:814.853333pt;}
.yeb{bottom:816.773333pt;}
.y38{bottom:817.573333pt;}
.y77{bottom:821.893333pt;}
.yac{bottom:827.013333pt;}
.y9e{bottom:831.653333pt;}
.y37{bottom:832.933333pt;}
.y8b{bottom:834.373333pt;}
.y27{bottom:835.173333pt;}
.y4{bottom:836.933333pt;}
.ybb{bottom:837.733333pt;}
.yea{bottom:838.533333pt;}
.y75{bottom:844.613333pt;}
.y65{bottom:847.973333pt;}
.y36{bottom:848.133333pt;}
.y8a{bottom:849.573333pt;}
.yab{bottom:850.053333pt;}
.y9d{bottom:854.533333pt;}
.y26{bottom:857.253333pt;}
.ye9{bottom:860.453333pt;}
.ydc{bottom:860.773333pt;}
.y64{bottom:863.173333pt;}
.y35{bottom:863.493333pt;}
.y3{bottom:866.373333pt;}
.y74{bottom:867.173333pt;}
.y89{bottom:867.493333pt;}
.yaa{bottom:873.093333pt;}
.y9c{bottom:877.573333pt;}
.y25{bottom:878.853333pt;}
.y63{bottom:881.093333pt;}
.ye8{bottom:882.213333pt;}
.y72{bottom:889.893333pt;}
.y34{bottom:894.853333pt;}
.y2{bottom:895.973333pt;}
.y88{bottom:897.253333pt;}
.y24{bottom:900.933333pt;}
.ye7{bottom:903.973333pt;}
.y62{bottom:910.853333pt;}
.y87{bottom:913.253333pt;}
.y9b{bottom:913.573333pt;}
.y23{bottom:922.693333pt;}
.y61{bottom:926.853333pt;}
.ye6{bottom:927.173333pt;}
.y9a{bottom:928.773333pt;}
.y71{bottom:930.373333pt;}
.y22{bottom:945.280000pt;}
.y70{bottom:945.600000pt;}
.y99{bottom:946.560000pt;}
.y1{bottom:947.680000pt;}
.hc{height:19.680000pt;}
.hd{height:19.712000pt;}
.ha{height:20.000000pt;}
.he{height:20.032000pt;}
.h9{height:24.480000pt;}
.h10{height:24.640000pt;}
.hb{height:33.375000pt;}
.hf{height:36.800000pt;}
.h5{height:42.084375pt;}
.h3{height:44.722500pt;}
.h7{height:50.062500pt;}
.h1{height:55.402500pt;}
.h8{height:61.410000pt;}
.h4{height:62.812500pt;}
.h6{height:66.750000pt;}
.h2{height:78.097500pt;}
.h0{height:1056.000000pt;}
.w1d{width:52.000000pt;}
.w1e{width:52.032000pt;}
.w1f{width:53.472000pt;}
.w17{width:59.520000pt;}
.w14{width:59.552000pt;}
.w15{width:59.680000pt;}
.w16{width:59.712000pt;}
.w18{width:61.152000pt;}
.we{width:63.392000pt;}
.w11{width:65.440000pt;}
.w12{width:65.472000pt;}
.w2{width:69.120000pt;}
.w3{width:69.152000pt;}
.w4{width:69.280000pt;}
.w5{width:70.432000pt;}
.wa{width:77.440000pt;}
.w9{width:77.472000pt;}
.w8{width:77.600000pt;}
.wb{width:77.760000pt;}
.w7{width:77.792000pt;}
.wc{width:78.752000pt;}
.wf{width:94.272000pt;}
.w24{width:95.072000pt;}
.w25{width:96.512000pt;}
.w6{width:106.400000pt;}
.w1b{width:106.880000pt;}
.w1a{width:106.912000pt;}
.w21{width:111.072000pt;}
.w22{width:112.512000pt;}
.w1{width:156.986667pt;}
.w1c{width:163.426667pt;}
.w19{width:204.506667pt;}
.w13{width:213.626667pt;}
.w10{width:313.506667pt;}
.w20{width:361.026667pt;}
.w23{width:393.506667pt;}
.wd{width:427.106667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x27{left:5.760000pt;}
.x18{left:7.200000pt;}
.x42{left:10.880000pt;}
.x52{left:12.000000pt;}
.x44{left:13.280000pt;}
.x3e{left:15.200000pt;}
.x46{left:17.120000pt;}
.x16{left:19.360000pt;}
.xf{left:20.640000pt;}
.x11{left:22.720000pt;}
.x2e{left:24.040000pt;}
.x1e{left:25.000000pt;}
.x20{left:27.040000pt;}
.x36{left:28.320000pt;}
.x17{left:29.760000pt;}
.x56{left:30.880000pt;}
.x5a{left:32.640000pt;}
.x25{left:33.920000pt;}
.x47{left:36.160000pt;}
.x3a{left:38.560000pt;}
.x31{left:40.040000pt;}
.x30{left:41.760000pt;}
.x1a{left:44.320000pt;}
.x19{left:45.600000pt;}
.x29{left:46.560000pt;}
.x39{left:48.000000pt;}
.x4e{left:48.960000pt;}
.x2a{left:50.240000pt;}
.x2b{left:52.480000pt;}
.x1c{left:53.914667pt;}
.x3b{left:56.160000pt;}
.x28{left:60.200000pt;}
.x26{left:66.120000pt;}
.x50{left:68.200000pt;}
.x64{left:71.560000pt;}
.x62{left:77.480000pt;}
.xd{left:79.194667pt;}
.x63{left:83.360000pt;}
.x5c{left:84.480000pt;}
.x5e{left:87.560000pt;}
.x5b{left:93.480000pt;}
.x5d{left:99.400000pt;}
.x4b{left:102.874667pt;}
.x3c{left:107.514667pt;}
.xc{left:112.672000pt;}
.x1{left:119.872000pt;}
.xa{left:135.866667pt;}
.x48{left:154.594667pt;}
.x33{left:157.474667pt;}
.xb{left:167.866667pt;}
.x3{left:176.666667pt;}
.x57{left:181.314667pt;}
.x5f{left:197.474667pt;}
.x49{left:198.594667pt;}
.x2c{left:214.274667pt;}
.x1d{left:221.946667pt;}
.xe{left:272.706667pt;}
.x1f{left:302.626667pt;}
.x4c{left:320.066667pt;}
.x3d{left:329.346667pt;}
.x10{left:344.706667pt;}
.x51{left:374.946667pt;}
.x2{left:379.586667pt;}
.x21{left:383.266667pt;}
.x4{left:387.266667pt;}
.x3f{left:391.773333pt;}
.x5{left:408.093333pt;}
.x12{left:416.893333pt;}
.x34{left:429.053333pt;}
.x4d{left:430.013333pt;}
.x40{left:454.333333pt;}
.x22{left:463.773333pt;}
.x8{left:468.093333pt;}
.x58{left:476.733333pt;}
.x53{left:484.893333pt;}
.x13{left:488.893333pt;}
.x35{left:497.533333pt;}
.x60{left:509.053333pt;}
.x41{left:516.893333pt;}
.x4f{left:539.773333pt;}
.x2d{left:542.813333pt;}
.x23{left:544.133333pt;}
.x7{left:548.133333pt;}
.x14{left:560.933333pt;}
.x37{left:565.893333pt;}
.x43{left:579.493333pt;}
.x59{left:590.693333pt;}
.x54{left:594.693333pt;}
.x61{left:607.013333pt;}
.x2f{left:609.253333pt;}
.x24{left:624.773333pt;}
.x15{left:633.093333pt;}
.x38{left:634.373333pt;}
.x45{left:642.053333pt;}
.x55{left:649.733333pt;}
.x4a{left:685.733333pt;}
.x9{left:691.173333pt;}
.x6{left:696.453333pt;}
.x32{left:708.800000pt;}
.x1b{left:709.920000pt;}
}




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