
    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_13fe156acc540895687420e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104492;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_161858d618138decaf8c802f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.760796;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_cf97cb64f7f58ab14274346a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.117676;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_af7c81aeb8738028891d2c99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_9b559926c65fa70fc4a94b47.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_60cb1948c46a8080d2c35dd8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_9a5dfa239aa90401ca032921.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_50b8a63de91f68b249166565.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ba5f62b16cc74c13bbde457d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976074;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:ffa;src:url('chunks/assets/font_6216efce615960857f0cffda.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.760254;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:-6.780000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.020000px;}
.v1{vertical-align:28.620000px;}
.ls9{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.307200px;}
.ls7{letter-spacing:-0.294600px;}
.ls8{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.087000px;}
.ls3{letter-spacing:-0.038580px;}
.ls4{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.000870px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.307200px;}
.lsc{letter-spacing:0.313800px;}
.lsf{letter-spacing:349.152000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-131.448096px;}
.wsa{word-spacing:-87.264000px;}
.ws10{word-spacing:-87.207792px;}
.wsb{word-spacing:-87.120000px;}
.ws2{word-spacing:-81.353964px;}
.ws6{word-spacing:-70.272000px;}
.ws1{word-spacing:-63.385344px;}
.ws8{word-spacing:-59.700240px;}
.wsd{word-spacing:-58.296672px;}
.wsc{word-spacing:-52.488000px;}
.ws7{word-spacing:-43.385760px;}
.ws11{word-spacing:-41.772240px;}
.ws16{word-spacing:-36.036000px;}
.ws14{word-spacing:-29.690760px;}
.ws5{word-spacing:-24.516000px;}
.ws3{word-spacing:-24.372000px;}
.ws4{word-spacing:-24.331344px;}
.ws15{word-spacing:-24.228000px;}
.wsf{word-spacing:-20.777520px;}
.ws12{word-spacing:-20.371674px;}
.ws13{word-spacing:-17.887560px;}
.ws9{word-spacing:-17.496000px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-10.145520px;}
._4{margin-left:-8.592480px;}
._5{margin-left:-6.708240px;}
._9{margin-left:-4.800240px;}
._3{margin-left:-3.202800px;}
._0{margin-left:-1.730160px;}
._1{width:1.345680px;}
._8{width:3.486960px;}
._2{width:9.003600px;}
._e{width:195.110160px;}
._10{width:238.419120px;}
._11{width:321.243120px;}
._c{width:335.114160px;}
._f{width:365.974320px;}
._d{width:396.362160px;}
._b{width:485.736240px;}
._6{width:498.902400px;}
._7{width:796.469760px;}
._12{width:2035.762800px;}
.fc5{color:rgb(0,132,209);}
.fc3{color:rgb(80,175,216);}
.fc2{color:rgb(79,129,189);}
.fc8{color:rgb(28,28,28);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(51,51,51);}
.fc4{color:rgb(63,63,63);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs20{font-size:54.000000px;}
.fs21{font-size:54.144000px;}
.fs22{font-size:66.240000px;}
.fs23{font-size:66.384000px;}
.fs10{font-size:72.000000px;}
.fs1a{font-size:72.144000px;}
.fs1f{font-size:77.760000px;}
.fs5{font-size:77.904000px;}
.fs8{font-size:84.240000px;}
.fsa{font-size:84.384000px;}
.fs1e{font-size:90.000000px;}
.fs1d{font-size:90.144000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fs4{font-size:120.240000px;}
.fs6{font-size:131.760000px;}
.fs18{font-size:144.000000px;}
.fs25{font-size:144.144000px;}
.fs28{font-size:149.760000px;}
.fs19{font-size:167.760000px;}
.fs12{font-size:174.240000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fs13{font-size:216.000000px;}
.fs24{font-size:216.144000px;}
.fse{font-size:239.760000px;}
.fs17{font-size:239.904000px;}
.fsd{font-size:264.240000px;}
.fsf{font-size:264.384000px;}
.fs11{font-size:288.000000px;}
.fs15{font-size:324.144000px;}
.fs16{font-size:360.000000px;}
.fs3{font-size:360.144000px;}
.fsb{font-size:396.000000px;}
.fs27{font-size:480.384000px;}
.fs1b{font-size:527.904000px;}
.fsc{font-size:690.060000px;}
.fs14{font-size:828.120000px;}
.fs1c{font-size:828.300000px;}
.fs26{font-size:846.300000px;}
.y0{bottom:0.000000px;}
.y66{bottom:21.240000px;}
.y63{bottom:60.480000px;}
.y65{bottom:63.720000px;}
.y36{bottom:111.390000px;}
.y49{bottom:111.495000px;}
.y68{bottom:111.525000px;}
.y43{bottom:125.172000px;}
.ya5{bottom:132.156000px;}
.y25{bottom:137.415000px;}
.y89{bottom:139.248000px;}
.y42{bottom:146.772000px;}
.y18{bottom:152.490000px;}
.y13{bottom:152.670000px;}
.y35{bottom:158.400000px;}
.y24{bottom:162.615000px;}
.y95{bottom:165.885000px;}
.y41{bottom:168.375000px;}
.y91{bottom:168.480000px;}
.y64{bottom:171.750000px;}
.y44{bottom:174.600000px;}
.ya4{bottom:179.670000px;}
.y11{bottom:179.850000px;}
.y8a{bottom:181.770000px;}
.y17{bottom:187.050000px;}
.y23{bottom:187.815000px;}
.yf{bottom:189.285000px;}
.y40{bottom:190.005000px;}
.y5f{bottom:191.265000px;}
.y30{bottom:194.865000px;}
.y4a{bottom:195.300000px;}
.yb{bottom:208.050000px;}
.y3f{bottom:211.605000px;}
.y5e{bottom:212.865000px;}
.y22{bottom:213.015000px;}
.y2f{bottom:216.465000px;}
.y3a{bottom:216.645000px;}
.y90{bottom:216.825000px;}
.ya3{bottom:227.010000px;}
.y7f{bottom:228.525000px;}
.y5{bottom:231.090000px;}
.y3e{bottom:233.205000px;}
.y9f{bottom:233.490000px;}
.y5d{bottom:234.465000px;}
.y16{bottom:235.005000px;}
.y47{bottom:237.750000px;}
.y21{bottom:238.215000px;}
.y7e{bottom:251.925000px;}
.y54{bottom:254.805000px;}
.y5c{bottom:256.065000px;}
.yc{bottom:256.395000px;}
.y34{bottom:259.665000px;}
.y3d{bottom:262.365000px;}
.y4{bottom:262.950000px;}
.y20{bottom:263.415000px;}
.y86{bottom:266.220000px;}
.y2e{bottom:268.125000px;}
.y84{bottom:274.320000px;}
.y7d{bottom:275.325000px;}
.y8f{bottom:276.375000px;}
.y53{bottom:276.405000px;}
.y9e{bottom:276.690000px;}
.ya2{bottom:277.275000px;}
.y5b{bottom:277.665000px;}
.y46{bottom:282.390000px;}
.y15{bottom:283.215000px;}
.y39{bottom:283.830000px;}
.y6c{bottom:285.405000px;}
.y85{bottom:286.050000px;}
.y69{bottom:286.380000px;}
.y1f{bottom:288.645000px;}
.y12{bottom:293.370000px;}
.y52{bottom:298.005000px;}
.y7c{bottom:298.770000px;}
.y5a{bottom:299.265000px;}
.y60{bottom:306.105000px;}
.ye{bottom:311.730000px;}
.y1e{bottom:313.845000px;}
.y51{bottom:319.605000px;}
.y9d{bottom:319.935000px;}
.y59{bottom:320.865000px;}
.y38{bottom:321.090000px;}
.y7b{bottom:322.170000px;}
.y3c{bottom:324.465000px;}
.y6b{bottom:327.885000px;}
.y2d{bottom:331.710000px;}
.y4d{bottom:333.975000px;}
.y33{bottom:335.850000px;}
.y14{bottom:337.065000px;}
.ya1{bottom:337.215000px;}
.y1d{bottom:339.045000px;}
.y62{bottom:342.510000px;}
.y58{bottom:348.450000px;}
.yd{bottom:348.690000px;}
.y50{bottom:350.250000px;}
.y74{bottom:361.620000px;}
.y9c{bottom:363.135000px;}
.y6e{bottom:364.110000px;}
.y1c{bottom:364.245000px;}
.y76{bottom:364.500000px;}
.y83{bottom:370.335000px;}
.y61{bottom:374.550000px;}
.y87{bottom:375.045000px;}
.y1b{bottom:376.380000px;}
.y4c{bottom:376.455000px;}
.y3{bottom:386.205000px;}
.y82{bottom:386.565000px;}
.y75{bottom:387.930000px;}
.y73{bottom:388.650000px;}
.y6d{bottom:391.650000px;}
.y57{bottom:397.410000px;}
.y71{bottom:397.470000px;}
.y45{bottom:399.060000px;}
.y32{bottom:402.270000px;}
.y3b{bottom:403.710000px;}
.y9b{bottom:406.335000px;}
.y2c{bottom:409.470000px;}
.y94{bottom:412.815000px;}
.y37{bottom:416.160000px;}
.y4f{bottom:416.670000px;}
.y29{bottom:424.440000px;}
.y10{bottom:429.150000px;}
.y26{bottom:429.225000px;}
.y6a{bottom:435.930000px;}
.y2{bottom:443.850000px;}
.y56{bottom:446.550000px;}
.y9a{bottom:455.325000px;}
.y48{bottom:457.020000px;}
.y72{bottom:460.185000px;}
.y93{bottom:463.530000px;}
.y92{bottom:463.785000px;}
.y31{bottom:477.180000px;}
.y2b{bottom:482.940000px;}
.y28{bottom:484.350000px;}
.y4b{bottom:484.485000px;}
.y4e{bottom:488.700000px;}
.y67{bottom:499.500000px;}
.y81{bottom:499.680000px;}
.y1a{bottom:500.145000px;}
.y1{bottom:501.450000px;}
.y88{bottom:502.020000px;}
.ya{bottom:507.750000px;}
.y55{bottom:518.580000px;}
.y99{bottom:519.405000px;}
.ya0{bottom:523.155000px;}
.y7a{bottom:524.850000px;}
.y27{bottom:526.965000px;}
.y19{bottom:528.945000px;}
.y70{bottom:534.855000px;}
.y9{bottom:538.890000px;}
.y79{bottom:548.250000px;}
.y80{bottom:557.100000px;}
.y8e{bottom:558.900000px;}
.y6f{bottom:564.585000px;}
.y78{bottom:571.650000px;}
.y8{bottom:575.070000px;}
.y98{bottom:584.250000px;}
.y77{bottom:595.050000px;}
.y7{bottom:601.200000px;}
.y8d{bottom:608.145000px;}
.y2a{bottom:618.840000px;}
.y97{bottom:649.050000px;}
.y8b{bottom:651.090000px;}
.y8c{bottom:659.370000px;}
.y6{bottom:680.010000px;}
.y96{bottom:713.850000px;}
.h37{height:43.453125px;}
.h38{height:43.569000px;}
.h39{height:53.302500px;}
.h3a{height:53.418375px;}
.h36{height:62.572500px;}
.h7{height:62.688375px;}
.h17{height:65.074219px;}
.h2b{height:65.204367px;}
.h10{height:67.581211px;}
.h11{height:67.696734px;}
.hb{height:67.786875px;}
.h35{height:72.421875px;}
.h34{height:72.537750px;}
.h22{height:76.136836px;}
.h9{height:77.056875px;}
.h3c{height:80.126250px;}
.h4{height:86.906250px;}
.hd{height:87.022125px;}
.h3b{height:87.926250px;}
.he{height:90.756914px;}
.h6{height:96.755625px;}
.h3{height:97.611328px;}
.h3f{height:101.984695px;}
.h8{height:106.025625px;}
.hc{height:113.957930px;}
.ha{height:115.526250px;}
.h43{height:120.510000px;}
.h29{height:129.796875px;}
.h40{height:141.257812px;}
.h41{height:141.399070px;}
.h2a{height:151.622930px;}
.h1{height:173.278828px;}
.h2{height:173.408625px;}
.h3e{height:173.812500px;}
.h26{height:194.695312px;}
.h3d{height:194.825109px;}
.h19{height:195.222656px;}
.h15{height:216.111797px;}
.h27{height:216.697148px;}
.h28{height:216.827297px;}
.h1a{height:238.177266px;}
.h16{height:238.307063px;}
.h14{height:238.822383px;}
.h1f{height:238.952531px;}
.h18{height:260.296875px;}
.h1e{height:292.172766px;}
.h30{height:310.500000px;}
.h2d{height:317.340000px;}
.h2f{height:324.492188px;}
.h25{height:324.621984px;}
.h21{height:325.371094px;}
.h33{height:325.501242px;}
.h5{height:341.327883px;}
.h23{height:352.980000px;}
.h12{height:356.941406px;}
.h1b{height:368.100000px;}
.hf{height:433.620000px;}
.h2c{height:477.124172px;}
.h32{height:523.620000px;}
.h2e{height:537.660000px;}
.h24{height:614.700000px;}
.h13{height:621.997441px;}
.h42{height:680.180566px;}
.h1c{height:746.440195px;}
.h31{height:746.602441px;}
.h20{height:793.800000px;}
.h1d{height:806.940000px;}
.h0{height:810.000000px;}
.w2{width:237.420000px;}
.w4{width:254.880000px;}
.w1{width:298.440000px;}
.w3{width:689.400000px;}
.w5{width:739.980000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x19{left:11.265000px;}
.x2e{left:22.110000px;}
.x36{left:35.640000px;}
.x3c{left:41.370000px;}
.x38{left:46.800000px;}
.x9{left:50.652000px;}
.x71{left:54.000000px;}
.x2b{left:58.716000px;}
.x55{left:64.440000px;}
.x39{left:67.500000px;}
.x27{left:78.264000px;}
.x72{left:79.704000px;}
.x29{left:87.840000px;}
.x2a{left:89.280000px;}
.x6{left:100.728000px;}
.x53{left:103.428000px;}
.x8{left:108.396000px;}
.xe{left:112.464000px;}
.x4a{left:118.692000px;}
.x48{left:121.752000px;}
.x56{left:124.380000px;}
.x70{left:130.140000px;}
.x45{left:132.372000px;}
.x37{left:133.740000px;}
.x2f{left:134.820000px;}
.x7{left:139.896000px;}
.x74{left:148.032000px;}
.x3d{left:153.360000px;}
.x52{left:155.130000px;}
.x57{left:167.940000px;}
.x79{left:171.645000px;}
.x76{left:173.625000px;}
.x28{left:175.860000px;}
.x1{left:180.975000px;}
.x49{left:185.865000px;}
.x7b{left:191.445000px;}
.x47{left:193.245000px;}
.x3e{left:195.120000px;}
.x25{left:196.560000px;}
.x6c{left:203.250000px;}
.x26{left:205.020000px;}
.x46{left:206.925000px;}
.x2{left:208.515000px;}
.xa{left:212.325000px;}
.x50{left:213.630000px;}
.x8a{left:217.830000px;}
.x1b{left:229.425000px;}
.xf{left:237.630000px;}
.x54{left:251.280000px;}
.x44{left:254.985000px;}
.x6f{left:256.710000px;}
.x51{left:263.490000px;}
.x35{left:292.890000px;}
.x3a{left:301.680000px;}
.x2d{left:303.150000px;}
.x6d{left:313.125000px;}
.x3b{left:318.450000px;}
.x2c{left:326.880000px;}
.x30{left:344.730000px;}
.x6e{left:349.950000px;}
.x1c{left:355.530000px;}
.x77{left:373.500000px;}
.x78{left:381.420000px;}
.x85{left:382.890000px;}
.x3{left:391.065000px;}
.x7f{left:396.180000px;}
.x1d{left:402.225000px;}
.x13{left:416.520000px;}
.x4{left:420.150000px;}
.x1a{left:423.150000px;}
.x80{left:424.800000px;}
.x82{left:426.990000px;}
.x18{left:446.400000px;}
.x5{left:451.695000px;}
.x6a{left:455.325000px;}
.x68{left:456.735000px;}
.x67{left:462.495000px;}
.x66{left:467.355000px;}
.x73{left:473.190000px;}
.x69{left:474.585000px;}
.x65{left:486.255000px;}
.x63{left:491.040000px;}
.x60{left:496.230000px;}
.x64{left:497.880000px;}
.x87{left:512.535000px;}
.x81{left:519.915000px;}
.x75{left:529.815000px;}
.x6b{left:557.025000px;}
.x7c{left:564.810000px;}
.x7a{left:577.950000px;}
.x62{left:621.510000px;}
.x8b{left:626.970000px;}
.xc{left:629.025000px;}
.x61{left:631.980000px;}
.x10{left:652.470000px;}
.x5a{left:653.685000px;}
.xb{left:654.690000px;}
.x5b{left:670.785000px;}
.x41{left:678.495000px;}
.x1f{left:680.115000px;}
.x21{left:682.815000px;}
.x20{left:684.615000px;}
.xd{left:685.875000px;}
.x4d{left:687.855000px;}
.x3f{left:690.735000px;}
.x4e{left:692.355000px;}
.x34{left:709.455000px;}
.x4f{left:712.515000px;}
.x43{left:722.955000px;}
.x23{left:726.915000px;}
.x5c{left:731.310000px;}
.x33{left:734.295000px;}
.x42{left:740.595000px;}
.x32{left:759.855000px;}
.x7e{left:764.205000px;}
.x4b{left:766.545000px;}
.x24{left:773.355000px;}
.x58{left:775.050000px;}
.x5f{left:776.415000px;}
.x7d{left:793.950000px;}
.x1e{left:796.215000px;}
.x31{left:808.095000px;}
.x40{left:810.075000px;}
.x83{left:812.445000px;}
.x4c{left:816.405000px;}
.x59{left:824.910000px;}
.x86{left:832.785000px;}
.x22{left:846.105000px;}
.x16{left:849.420000px;}
.x12{left:855.360000px;}
.x17{left:861.120000px;}
.x11{left:863.790000px;}
.x89{left:878.505000px;}
.x88{left:905.145000px;}
.x14{left:914.475000px;}
.x15{left:919.410000px;}
.x5d{left:924.735000px;}
.x5e{left:940.395000px;}
.x84{left:1041.090000px;}
@media print{
.v3{vertical-align:-6.026667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.906667pt;}
.v1{vertical-align:25.440000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.273067pt;}
.ls7{letter-spacing:-0.261867pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.077333pt;}
.ls3{letter-spacing:-0.034293pt;}
.ls4{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.000773pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.273067pt;}
.lsc{letter-spacing:0.278933pt;}
.lsf{letter-spacing:310.357333pt;}
.wse{word-spacing:-116.842752pt;}
.wsa{word-spacing:-77.568000pt;}
.ws10{word-spacing:-77.518037pt;}
.wsb{word-spacing:-77.440000pt;}
.ws2{word-spacing:-72.314635pt;}
.ws6{word-spacing:-62.464000pt;}
.ws1{word-spacing:-56.342528pt;}
.ws8{word-spacing:-53.066880pt;}
.wsd{word-spacing:-51.819264pt;}
.wsc{word-spacing:-46.656000pt;}
.ws7{word-spacing:-38.565120pt;}
.ws11{word-spacing:-37.130880pt;}
.ws16{word-spacing:-32.032000pt;}
.ws14{word-spacing:-26.391787pt;}
.ws5{word-spacing:-21.792000pt;}
.ws3{word-spacing:-21.664000pt;}
.ws4{word-spacing:-21.627861pt;}
.ws15{word-spacing:-21.536000pt;}
.wsf{word-spacing:-18.468907pt;}
.ws12{word-spacing:-18.108155pt;}
.ws13{word-spacing:-15.900053pt;}
.ws9{word-spacing:-15.552000pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-9.018240pt;}
._4{margin-left:-7.637760pt;}
._5{margin-left:-5.962880pt;}
._9{margin-left:-4.266880pt;}
._3{margin-left:-2.846933pt;}
._0{margin-left:-1.537920pt;}
._1{width:1.196160pt;}
._8{width:3.099520pt;}
._2{width:8.003200pt;}
._e{width:173.431253pt;}
._10{width:211.928107pt;}
._11{width:285.549440pt;}
._c{width:297.879253pt;}
._f{width:325.310507pt;}
._d{width:352.321920pt;}
._b{width:431.765547pt;}
._6{width:443.468800pt;}
._7{width:707.973120pt;}
._12{width:1809.566933pt;}
.fs20{font-size:48.000000pt;}
.fs21{font-size:48.128000pt;}
.fs22{font-size:58.880000pt;}
.fs23{font-size:59.008000pt;}
.fs10{font-size:64.000000pt;}
.fs1a{font-size:64.128000pt;}
.fs1f{font-size:69.120000pt;}
.fs5{font-size:69.248000pt;}
.fs8{font-size:74.880000pt;}
.fsa{font-size:75.008000pt;}
.fs1e{font-size:80.000000pt;}
.fs1d{font-size:80.128000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fs4{font-size:106.880000pt;}
.fs6{font-size:117.120000pt;}
.fs18{font-size:128.000000pt;}
.fs25{font-size:128.128000pt;}
.fs28{font-size:133.120000pt;}
.fs19{font-size:149.120000pt;}
.fs12{font-size:154.880000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fs13{font-size:192.000000pt;}
.fs24{font-size:192.128000pt;}
.fse{font-size:213.120000pt;}
.fs17{font-size:213.248000pt;}
.fsd{font-size:234.880000pt;}
.fsf{font-size:235.008000pt;}
.fs11{font-size:256.000000pt;}
.fs15{font-size:288.128000pt;}
.fs16{font-size:320.000000pt;}
.fs3{font-size:320.128000pt;}
.fsb{font-size:352.000000pt;}
.fs27{font-size:427.008000pt;}
.fs1b{font-size:469.248000pt;}
.fsc{font-size:613.386667pt;}
.fs14{font-size:736.106667pt;}
.fs1c{font-size:736.266667pt;}
.fs26{font-size:752.266667pt;}
.y0{bottom:0.000000pt;}
.y66{bottom:18.880000pt;}
.y63{bottom:53.760000pt;}
.y65{bottom:56.640000pt;}
.y36{bottom:99.013333pt;}
.y49{bottom:99.106667pt;}
.y68{bottom:99.133333pt;}
.y43{bottom:111.264000pt;}
.ya5{bottom:117.472000pt;}
.y25{bottom:122.146667pt;}
.y89{bottom:123.776000pt;}
.y42{bottom:130.464000pt;}
.y18{bottom:135.546667pt;}
.y13{bottom:135.706667pt;}
.y35{bottom:140.800000pt;}
.y24{bottom:144.546667pt;}
.y95{bottom:147.453333pt;}
.y41{bottom:149.666667pt;}
.y91{bottom:149.760000pt;}
.y64{bottom:152.666667pt;}
.y44{bottom:155.200000pt;}
.ya4{bottom:159.706667pt;}
.y11{bottom:159.866667pt;}
.y8a{bottom:161.573333pt;}
.y17{bottom:166.266667pt;}
.y23{bottom:166.946667pt;}
.yf{bottom:168.253333pt;}
.y40{bottom:168.893333pt;}
.y5f{bottom:170.013333pt;}
.y30{bottom:173.213333pt;}
.y4a{bottom:173.600000pt;}
.yb{bottom:184.933333pt;}
.y3f{bottom:188.093333pt;}
.y5e{bottom:189.213333pt;}
.y22{bottom:189.346667pt;}
.y2f{bottom:192.413333pt;}
.y3a{bottom:192.573333pt;}
.y90{bottom:192.733333pt;}
.ya3{bottom:201.786667pt;}
.y7f{bottom:203.133333pt;}
.y5{bottom:205.413333pt;}
.y3e{bottom:207.293333pt;}
.y9f{bottom:207.546667pt;}
.y5d{bottom:208.413333pt;}
.y16{bottom:208.893333pt;}
.y47{bottom:211.333333pt;}
.y21{bottom:211.746667pt;}
.y7e{bottom:223.933333pt;}
.y54{bottom:226.493333pt;}
.y5c{bottom:227.613333pt;}
.yc{bottom:227.906667pt;}
.y34{bottom:230.813333pt;}
.y3d{bottom:233.213333pt;}
.y4{bottom:233.733333pt;}
.y20{bottom:234.146667pt;}
.y86{bottom:236.640000pt;}
.y2e{bottom:238.333333pt;}
.y84{bottom:243.840000pt;}
.y7d{bottom:244.733333pt;}
.y8f{bottom:245.666667pt;}
.y53{bottom:245.693333pt;}
.y9e{bottom:245.946667pt;}
.ya2{bottom:246.466667pt;}
.y5b{bottom:246.813333pt;}
.y46{bottom:251.013333pt;}
.y15{bottom:251.746667pt;}
.y39{bottom:252.293333pt;}
.y6c{bottom:253.693333pt;}
.y85{bottom:254.266667pt;}
.y69{bottom:254.560000pt;}
.y1f{bottom:256.573333pt;}
.y12{bottom:260.773333pt;}
.y52{bottom:264.893333pt;}
.y7c{bottom:265.573333pt;}
.y5a{bottom:266.013333pt;}
.y60{bottom:272.093333pt;}
.ye{bottom:277.093333pt;}
.y1e{bottom:278.973333pt;}
.y51{bottom:284.093333pt;}
.y9d{bottom:284.386667pt;}
.y59{bottom:285.213333pt;}
.y38{bottom:285.413333pt;}
.y7b{bottom:286.373333pt;}
.y3c{bottom:288.413333pt;}
.y6b{bottom:291.453333pt;}
.y2d{bottom:294.853333pt;}
.y4d{bottom:296.866667pt;}
.y33{bottom:298.533333pt;}
.y14{bottom:299.613333pt;}
.ya1{bottom:299.746667pt;}
.y1d{bottom:301.373333pt;}
.y62{bottom:304.453333pt;}
.y58{bottom:309.733333pt;}
.yd{bottom:309.946667pt;}
.y50{bottom:311.333333pt;}
.y74{bottom:321.440000pt;}
.y9c{bottom:322.786667pt;}
.y6e{bottom:323.653333pt;}
.y1c{bottom:323.773333pt;}
.y76{bottom:324.000000pt;}
.y83{bottom:329.186667pt;}
.y61{bottom:332.933333pt;}
.y87{bottom:333.373333pt;}
.y1b{bottom:334.560000pt;}
.y4c{bottom:334.626667pt;}
.y3{bottom:343.293333pt;}
.y82{bottom:343.613333pt;}
.y75{bottom:344.826667pt;}
.y73{bottom:345.466667pt;}
.y6d{bottom:348.133333pt;}
.y57{bottom:353.253333pt;}
.y71{bottom:353.306667pt;}
.y45{bottom:354.720000pt;}
.y32{bottom:357.573333pt;}
.y3b{bottom:358.853333pt;}
.y9b{bottom:361.186667pt;}
.y2c{bottom:363.973333pt;}
.y94{bottom:366.946667pt;}
.y37{bottom:369.920000pt;}
.y4f{bottom:370.373333pt;}
.y29{bottom:377.280000pt;}
.y10{bottom:381.466667pt;}
.y26{bottom:381.533333pt;}
.y6a{bottom:387.493333pt;}
.y2{bottom:394.533333pt;}
.y56{bottom:396.933333pt;}
.y9a{bottom:404.733333pt;}
.y48{bottom:406.240000pt;}
.y72{bottom:409.053333pt;}
.y93{bottom:412.026667pt;}
.y92{bottom:412.253333pt;}
.y31{bottom:424.160000pt;}
.y2b{bottom:429.280000pt;}
.y28{bottom:430.533333pt;}
.y4b{bottom:430.653333pt;}
.y4e{bottom:434.400000pt;}
.y67{bottom:444.000000pt;}
.y81{bottom:444.160000pt;}
.y1a{bottom:444.573333pt;}
.y1{bottom:445.733333pt;}
.y88{bottom:446.240000pt;}
.ya{bottom:451.333333pt;}
.y55{bottom:460.960000pt;}
.y99{bottom:461.693333pt;}
.ya0{bottom:465.026667pt;}
.y7a{bottom:466.533333pt;}
.y27{bottom:468.413333pt;}
.y19{bottom:470.173333pt;}
.y70{bottom:475.426667pt;}
.y9{bottom:479.013333pt;}
.y79{bottom:487.333333pt;}
.y80{bottom:495.200000pt;}
.y8e{bottom:496.800000pt;}
.y6f{bottom:501.853333pt;}
.y78{bottom:508.133333pt;}
.y8{bottom:511.173333pt;}
.y98{bottom:519.333333pt;}
.y77{bottom:528.933333pt;}
.y7{bottom:534.400000pt;}
.y8d{bottom:540.573333pt;}
.y2a{bottom:550.080000pt;}
.y97{bottom:576.933333pt;}
.y8b{bottom:578.746667pt;}
.y8c{bottom:586.106667pt;}
.y6{bottom:604.453333pt;}
.y96{bottom:634.533333pt;}
.h37{height:38.625000pt;}
.h38{height:38.728000pt;}
.h39{height:47.380000pt;}
.h3a{height:47.483000pt;}
.h36{height:55.620000pt;}
.h7{height:55.723000pt;}
.h17{height:57.843750pt;}
.h2b{height:57.959437pt;}
.h10{height:60.072187pt;}
.h11{height:60.174875pt;}
.hb{height:60.255000pt;}
.h35{height:64.375000pt;}
.h34{height:64.478000pt;}
.h22{height:67.677187pt;}
.h9{height:68.495000pt;}
.h3c{height:71.223333pt;}
.h4{height:77.250000pt;}
.hd{height:77.353000pt;}
.h3b{height:78.156667pt;}
.he{height:80.672812pt;}
.h6{height:86.005000pt;}
.h3{height:86.765625pt;}
.h3f{height:90.653063pt;}
.h8{height:94.245000pt;}
.hc{height:101.295937pt;}
.ha{height:102.690000pt;}
.h43{height:107.120000pt;}
.h29{height:115.375000pt;}
.h40{height:125.562500pt;}
.h41{height:125.688063pt;}
.h2a{height:134.775937pt;}
.h1{height:154.025625pt;}
.h2{height:154.141000pt;}
.h3e{height:154.500000pt;}
.h26{height:173.062500pt;}
.h3d{height:173.177875pt;}
.h19{height:173.531250pt;}
.h15{height:192.099375pt;}
.h27{height:192.619687pt;}
.h28{height:192.735375pt;}
.h1a{height:211.713125pt;}
.h16{height:211.828500pt;}
.h14{height:212.286562pt;}
.h1f{height:212.402250pt;}
.h18{height:231.375000pt;}
.h1e{height:259.709125pt;}
.h30{height:276.000000pt;}
.h2d{height:282.080000pt;}
.h2f{height:288.437500pt;}
.h25{height:288.552875pt;}
.h21{height:289.218750pt;}
.h33{height:289.334437pt;}
.h5{height:303.402562pt;}
.h23{height:313.760000pt;}
.h12{height:317.281250pt;}
.h1b{height:327.200000pt;}
.hf{height:385.440000pt;}
.h2c{height:424.110375pt;}
.h32{height:465.440000pt;}
.h2e{height:477.920000pt;}
.h24{height:546.400000pt;}
.h13{height:552.886615pt;}
.h42{height:604.604948pt;}
.h1c{height:663.502396pt;}
.h31{height:663.646615pt;}
.h20{height:705.600000pt;}
.h1d{height:717.280000pt;}
.h0{height:720.000000pt;}
.w2{width:211.040000pt;}
.w4{width:226.560000pt;}
.w1{width:265.280000pt;}
.w3{width:612.800000pt;}
.w5{width:657.760000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x19{left:10.013333pt;}
.x2e{left:19.653333pt;}
.x36{left:31.680000pt;}
.x3c{left:36.773333pt;}
.x38{left:41.600000pt;}
.x9{left:45.024000pt;}
.x71{left:48.000000pt;}
.x2b{left:52.192000pt;}
.x55{left:57.280000pt;}
.x39{left:60.000000pt;}
.x27{left:69.568000pt;}
.x72{left:70.848000pt;}
.x29{left:78.080000pt;}
.x2a{left:79.360000pt;}
.x6{left:89.536000pt;}
.x53{left:91.936000pt;}
.x8{left:96.352000pt;}
.xe{left:99.968000pt;}
.x4a{left:105.504000pt;}
.x48{left:108.224000pt;}
.x56{left:110.560000pt;}
.x70{left:115.680000pt;}
.x45{left:117.664000pt;}
.x37{left:118.880000pt;}
.x2f{left:119.840000pt;}
.x7{left:124.352000pt;}
.x74{left:131.584000pt;}
.x3d{left:136.320000pt;}
.x52{left:137.893333pt;}
.x57{left:149.280000pt;}
.x79{left:152.573333pt;}
.x76{left:154.333333pt;}
.x28{left:156.320000pt;}
.x1{left:160.866667pt;}
.x49{left:165.213333pt;}
.x7b{left:170.173333pt;}
.x47{left:171.773333pt;}
.x3e{left:173.440000pt;}
.x25{left:174.720000pt;}
.x6c{left:180.666667pt;}
.x26{left:182.240000pt;}
.x46{left:183.933333pt;}
.x2{left:185.346667pt;}
.xa{left:188.733333pt;}
.x50{left:189.893333pt;}
.x8a{left:193.626667pt;}
.x1b{left:203.933333pt;}
.xf{left:211.226667pt;}
.x54{left:223.360000pt;}
.x44{left:226.653333pt;}
.x6f{left:228.186667pt;}
.x51{left:234.213333pt;}
.x35{left:260.346667pt;}
.x3a{left:268.160000pt;}
.x2d{left:269.466667pt;}
.x6d{left:278.333333pt;}
.x3b{left:283.066667pt;}
.x2c{left:290.560000pt;}
.x30{left:306.426667pt;}
.x6e{left:311.066667pt;}
.x1c{left:316.026667pt;}
.x77{left:332.000000pt;}
.x78{left:339.040000pt;}
.x85{left:340.346667pt;}
.x3{left:347.613333pt;}
.x7f{left:352.160000pt;}
.x1d{left:357.533333pt;}
.x13{left:370.240000pt;}
.x4{left:373.466667pt;}
.x1a{left:376.133333pt;}
.x80{left:377.600000pt;}
.x82{left:379.546667pt;}
.x18{left:396.800000pt;}
.x5{left:401.506667pt;}
.x6a{left:404.733333pt;}
.x68{left:405.986667pt;}
.x67{left:411.106667pt;}
.x66{left:415.426667pt;}
.x73{left:420.613333pt;}
.x69{left:421.853333pt;}
.x65{left:432.226667pt;}
.x63{left:436.480000pt;}
.x60{left:441.093333pt;}
.x64{left:442.560000pt;}
.x87{left:455.586667pt;}
.x81{left:462.146667pt;}
.x75{left:470.946667pt;}
.x6b{left:495.133333pt;}
.x7c{left:502.053333pt;}
.x7a{left:513.733333pt;}
.x62{left:552.453333pt;}
.x8b{left:557.306667pt;}
.xc{left:559.133333pt;}
.x61{left:561.760000pt;}
.x10{left:579.973333pt;}
.x5a{left:581.053333pt;}
.xb{left:581.946667pt;}
.x5b{left:596.253333pt;}
.x41{left:603.106667pt;}
.x1f{left:604.546667pt;}
.x21{left:606.946667pt;}
.x20{left:608.546667pt;}
.xd{left:609.666667pt;}
.x4d{left:611.426667pt;}
.x3f{left:613.986667pt;}
.x4e{left:615.426667pt;}
.x34{left:630.626667pt;}
.x4f{left:633.346667pt;}
.x43{left:642.626667pt;}
.x23{left:646.146667pt;}
.x5c{left:650.053333pt;}
.x33{left:652.706667pt;}
.x42{left:658.306667pt;}
.x32{left:675.426667pt;}
.x7e{left:679.293333pt;}
.x4b{left:681.373333pt;}
.x24{left:687.426667pt;}
.x58{left:688.933333pt;}
.x5f{left:690.146667pt;}
.x7d{left:705.733333pt;}
.x1e{left:707.746667pt;}
.x31{left:718.306667pt;}
.x40{left:720.066667pt;}
.x83{left:722.173333pt;}
.x4c{left:725.693333pt;}
.x59{left:733.253333pt;}
.x86{left:740.253333pt;}
.x22{left:752.093333pt;}
.x16{left:755.040000pt;}
.x12{left:760.320000pt;}
.x17{left:765.440000pt;}
.x11{left:767.813333pt;}
.x89{left:780.893333pt;}
.x88{left:804.573333pt;}
.x14{left:812.866667pt;}
.x15{left:817.253333pt;}
.x5d{left:821.986667pt;}
.x5e{left:835.906667pt;}
.x84{left:925.413333pt;}
}




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