
    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_8a56da7a07fa0127e3f90aaf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_de218e250bda18e29262063c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_0139a48675adbb3f2f4f518d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_efd1974e122501851f47136a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.012695;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_0d4b26b8f9474e9196c18657.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_4887f3ff23d7fcab486157c0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_b5d535abb45c0d537c14a02c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_6608179db37986f46d9ba1b4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680176;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_3e1f8b3031c19466a1d662ad.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_0c94c00d18a0a0e593cdbb55.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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:ffb;src:url('chunks/assets/font_44b7bdf8123fc30bbcd8d468.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b9b114ec203ee74a24e5eea1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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:ffd;src:url('chunks/assets/font_ecdb40572216c2b79c00ca68.woff')format("woff");}.ffd{font-family:ffd;line-height:1.122070;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:ffe;src:url('chunks/assets/font_b4ee82399ef7417b3ead73e9.woff')format("woff");}.ffe{font-family:ffe;line-height:1.122070;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:fff;src:url('chunks/assets/font_c5e32ae7834d9779b1320d01.woff')format("woff");}.fff{font-family:fff;line-height:0.875488;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:-21.366271px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:120.913429px;}
.v2{vertical-align:144.430340px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.061258px;}
.ls6{letter-spacing:0.071849px;}
.ls4{letter-spacing:0.086850px;}
.ls3{letter-spacing:0.093751px;}
.lse{letter-spacing:0.099497px;}
.ls2{letter-spacing:0.122448px;}
.ls10{letter-spacing:0.131596px;}
.ls9{letter-spacing:24.008242px;}
.lsa{letter-spacing:36.014064px;}
.ls5{letter-spacing:107.972295px;}
.ls7{letter-spacing:107.986506px;}
.lsb{letter-spacing:107.994231px;}
.lsd{letter-spacing:108.000566px;}
.lsc{letter-spacing:108.000707px;}
.ls12{letter-spacing:143.986326px;}
.ls13{letter-spacing:143.986471px;}
.lsf{letter-spacing:143.986538px;}
.ls1{letter-spacing:143.986615px;}
.ls11{letter-spacing:144.000567px;}
.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;}
}
.ws11{word-spacing:-100.800000px;}
.wse{word-spacing:-66.480000px;}
.ws14{word-spacing:-41.550000px;}
.ws13{word-spacing:-40.464001px;}
.wsa{word-spacing:-39.888001px;}
.ws5{word-spacing:-36.036003px;}
.ws12{word-spacing:-32.034002px;}
.wsc{word-spacing:-27.173712px;}
.ws6{word-spacing:-21.000000px;}
.wsd{word-spacing:-16.800000px;}
.ws10{word-spacing:-0.199800px;}
.wsb{word-spacing:-0.142800px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:15.327525px;}
.ws8{word-spacing:15.340834px;}
.wsf{word-spacing:41.506822px;}
.ws7{word-spacing:120.340838px;}
.ws4{word-spacing:415.940671px;}
.ws3{word-spacing:1143.800859px;}
.ws0{word-spacing:1377.592588px;}
.ws2{word-spacing:1544.293489px;}
._3{margin-left:-1861.454490px;}
._12{margin-left:-41.298004px;}
._14{margin-left:-26.400000px;}
._13{margin-left:-21.312001px;}
._9{margin-left:-19.486261px;}
._10{margin-left:-15.840001px;}
._c{margin-left:-13.222259px;}
._f{margin-left:-12.000001px;}
._11{margin-left:-10.964219px;}
._d{margin-left:-9.900000px;}
._7{margin-left:-7.967521px;}
._8{margin-left:-6.307621px;}
._a{margin-left:-4.887119px;}
._6{margin-left:-3.651780px;}
._0{margin-left:-2.430000px;}
._1{margin-left:-1.080000px;}
._2{width:1.335169px;}
._b{width:2.751780px;}
._5{width:4.464000px;}
._15{width:7.866000px;}
._17{width:9.311042px;}
._e{width:108.109081px;}
._18{width:143.986471px;}
._16{width:585.467953px;}
._4{width:3147.485226px;}
.fca{color:rgb(116,23,85);}
.fc8{color:rgb(28,41,84);}
.fc7{color:transparent;}
.fc6{color:rgb(70,120,134);}
.fc4{color:rgb(0,151,167);}
.fc2{color:rgb(240,98,146);}
.fcb{color:rgb(89,89,89);}
.fc5{color:rgb(117,117,117);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc9{color:rgb(0,0,255);}
.fc0{color:rgb(86,17,65);}
.fs16{font-size:84.000000px;}
.fs19{font-size:91.800012px;}
.fs0{font-size:96.000006px;}
.fs1a{font-size:98.100044px;}
.fs17{font-size:108.000003px;}
.fs22{font-size:114.000007px;}
.fs6{font-size:126.000004px;}
.fs18{font-size:142.800008px;}
.fs9{font-size:144.000005px;}
.fs10{font-size:149.999999px;}
.fsf{font-size:151.979990px;}
.fs12{font-size:156.000011px;}
.fs13{font-size:158.999999px;}
.fs11{font-size:162.000005px;}
.fs3{font-size:167.999999px;}
.fs21{font-size:172.049991px;}
.fsa{font-size:174.000012px;}
.fsd{font-size:180.000006px;}
.fs8{font-size:186.000000px;}
.fs23{font-size:199.799997px;}
.fs7{font-size:222.000001px;}
.fsc{font-size:223.980015px;}
.fs5{font-size:234.000007px;}
.fs1b{font-size:237.600008px;}
.fs15{font-size:240.000002px;}
.fs1{font-size:252.000008px;}
.fs1f{font-size:253.980017px;}
.fse{font-size:259.980016px;}
.fs2{font-size:270.000009px;}
.fs1d{font-size:288.000009px;}
.fsb{font-size:331.980041px;}
.fs4{font-size:353.999999px;}
.fs14{font-size:360.000012px;}
.fs1e{font-size:385.980042px;}
.fs1c{font-size:412.980043px;}
.fs20{font-size:414.000013px;}
.y0{bottom:0.000000px;}
.yd{bottom:25.491462px;}
.y1b{bottom:25.504231px;}
.y1{bottom:27.614675px;}
.y84{bottom:30.010813px;}
.y41{bottom:31.180320px;}
.y63{bottom:32.759300px;}
.yae{bottom:72.038429px;}
.y62{bottom:75.959302px;}
.y8e{bottom:81.546277px;}
.y5d{bottom:90.997728px;}
.ya5{bottom:95.545316px;}
.y7f{bottom:104.662845px;}
.y9a{bottom:106.838752px;}
.y7e{bottom:107.405895px;}
.y16{bottom:116.115953px;}
.y8d{bottom:121.087845px;}
.y38{bottom:121.351320px;}
.y54{bottom:124.573444px;}
.y75{bottom:132.406932px;}
.yad{bottom:139.538397px;}
.y37{bottom:151.591321px;}
.y99{bottom:156.518754px;}
.y15{bottom:159.315954px;}
.y85{bottom:160.100934px;}
.ya4{bottom:163.045284px;}
.y8{bottom:177.270876px;}
.y7d{bottom:179.405898px;}
.y2d{bottom:179.801957px;}
.y36{bottom:181.831322px;}
.y65{bottom:182.253245px;}
.y67{bottom:182.573240px;}
.y72{bottom:182.741920px;}
.y4f{bottom:185.529243px;}
.y25{bottom:189.111018px;}
.y69{bottom:189.174535px;}
.y21{bottom:192.973840px;}
.y8c{bottom:196.687848px;}
.y5c{bottom:202.423582px;}
.y19{bottom:204.666539px;}
.y48{bottom:205.161224px;}
.y32{bottom:205.361958px;}
.yac{bottom:207.038399px;}
.y64{bottom:208.579596px;}
.y74{bottom:208.600935px;}
.y35{bottom:212.071323px;}
.y83{bottom:220.178966px;}
.y7{bottom:227.670878px;}
.ya3{bottom:230.545286px;}
.y53{bottom:232.333441px;}
.y70{bottom:236.741922px;}
.y2c{bottom:237.761948px;}
.y5b{bottom:243.121572px;}
.y4e{bottom:243.489233px;}
.y98{bottom:245.917894px;}
.y68{bottom:249.654537px;}
.y7c{bottom:251.405900px;}
.y40{bottom:254.810986px;}
.y20{bottom:260.167831px;}
.y47{bottom:265.521211px;}
.y8b{bottom:272.287873px;}
.y18{bottom:272.958958px;}
.yab{bottom:274.538402px;}
.y6{bottom:278.070879px;}
.y5a{bottom:283.819562px;}
.y6f{bottom:290.741923px;}
.y97{bottom:291.277907px;}
.y52{bottom:295.069360px;}
.y2b{bottom:295.721939px;}
.y82{bottom:296.901099px;}
.y24{bottom:297.111021px;}
.ya2{bottom:298.045289px;}
.y4d{bottom:301.449224px;}
.y14{bottom:306.608834px;}
.y1a{bottom:309.066543px;}
.y31{bottom:313.721939px;}
.y7b{bottom:323.405902px;}
.y59{bottom:324.517563px;}
.y46{bottom:325.881198px;}
.y1f{bottom:327.361833px;}
.y5{bottom:328.470874px;}
.y96{bottom:336.637920px;}
.yaa{bottom:342.038404px;}
.y6e{bottom:344.741925px;}
.y66{bottom:346.177247px;}
.y3f{bottom:346.862978px;}
.y8a{bottom:347.887864px;}
.y23{bottom:351.111030px;}
.y4c{bottom:359.409214px;}
.y13{bottom:362.408824px;}
.y58{bottom:365.215553px;}
.ya1{bottom:365.545291px;}
.y30{bottom:367.541930px;}
.y45{bottom:371.241200px;}
.yb{bottom:376.628195px;}
.y95{bottom:379.747899px;}
.y3e{bottom:385.610983px;}
.y51{bottom:392.269352px;}
.y2a{bottom:392.561942px;}
.y1e{bottom:394.555824px;}
.y7a{bottom:395.405871px;}
.y17{bottom:398.430943px;}
.y6d{bottom:398.741927px;}
.y61{bottom:398.873642px;}
.y22{bottom:405.111027px;}
.y57{bottom:405.913555px;}
.y9c{bottom:407.828158px;}
.y81{bottom:407.828181px;}
.ya9{bottom:409.538406px;}
.y94{bottom:415.657877px;}
.y4b{bottom:417.369205px;}
.y12{bottom:418.208815px;}
.y2f{bottom:421.361931px;}
.y89{bottom:423.487866px;}
.yc{bottom:424.245509px;}
.y4{bottom:428.042920px;}
.y34{bottom:429.756468px;}
.y2{bottom:430.648919px;}
.y44{bottom:431.601187px;}
.ya0{bottom:433.045293px;}
.y3d{bottom:434.882992px;}
.ya{bottom:446.828186px;}
.y8f{bottom:448.790366px;}
.y93{bottom:453.817856px;}
.y29{bottom:462.941933px;}
.y79{bottom:467.405873px;}
.y3c{bottom:472.622997px;}
.y11{bottom:474.008817px;}
.y4a{bottom:475.329190px;}
.y43{bottom:476.961182px;}
.ya8{bottom:477.038397px;}
.y56{bottom:487.309546px;}
.y50{bottom:489.469343px;}
.y88{bottom:499.087869px;}
.y92{bottom:499.177858px;}
.y9f{bottom:500.545284px;}
.y6c{bottom:506.741930px;}
.ye{bottom:508.196997px;}
.y3{bottom:509.042918px;}
.y3b{bottom:511.370990px;}
.y60{bottom:522.767657px;}
.y33{bottom:526.956477px;}
.y55{bottom:528.007540px;}
.y2e{bottom:529.001924px;}
.y10{bottom:529.808812px;}
.y28{bottom:530.441924px;}
.y9b{bottom:532.028162px;}
.y49{bottom:533.289179px;}
.y42{bottom:537.321178px;}
.y78{bottom:539.405875px;}
.y91{bottom:542.287859px;}
.ya7{bottom:544.538388px;}
.y6b{bottom:560.741939px;}
.y3a{bottom:561.650992px;}
.y9e{bottom:568.045275px;}
.y87{bottom:574.687864px;}
.y9{bottom:576.302983px;}
.y90{bottom:580.447860px;}
.y1d{bottom:591.700603px;}
.y77{bottom:611.405873px;}
.ya6{bottom:612.038379px;}
.y6a{bottom:614.741936px;}
.y9d{bottom:635.545266px;}
.y73{bottom:640.152059px;}
.yf{bottom:644.489294px;}
.y5f{bottom:647.920521px;}
.y27{bottom:649.231977px;}
.y39{bottom:669.153717px;}
.y86{bottom:678.465325px;}
.y76{bottom:683.405871px;}
.y1c{bottom:687.568595px;}
.yaf{bottom:702.509646px;}
.y26{bottom:703.105979px;}
.y5e{bottom:712.072520px;}
.y71{bottom:717.525083px;}
.y80{bottom:779.715001px;}
.h21{height:58.365234px;}
.h29{height:60.816000px;}
.h30{height:61.236328px;}
.h1{height:69.984379px;}
.h7{height:77.015630px;}
.h1c{height:95.976566px;}
.h1d{height:100.054691px;}
.h34{height:103.312506px;}
.h25{height:104.101763px;}
.h28{height:104.256003px;}
.h20{height:104.976566px;}
.h39{height:109.350585px;}
.hc{height:115.523441px;}
.h23{height:116.730468px;}
.h22{height:117.600000px;}
.h14{height:117.936472px;}
.h15{height:120.336913px;}
.h1f{height:122.472656px;}
.h18{height:123.246102px;}
.h2b{height:125.068363px;}
.h19{height:125.150399px;}
.h1a{height:127.557128px;}
.h16{height:127.986332px;}
.h37{height:130.500004px;}
.h3a{height:131.044926px;}
.h2c{height:131.220707px;}
.h17{height:132.726562px;}
.h4{height:134.777343px;}
.h38{height:135.937499px;}
.hd{height:137.466806px;}
.h11{height:139.680004px;}
.h12{height:140.940005px;}
.ha{height:146.947266px;}
.hb{height:149.217773px;}
.h36{height:152.249999px;}
.h33{height:155.920304px;}
.h26{height:166.320005px;}
.h10{height:173.808491px;}
.h1e{height:174.726564px;}
.h2f{height:174.960939px;}
.h9{height:178.098634px;}
.h35{height:181.068748px;}
.h2{height:183.708990px;}
.h2e{height:185.152425px;}
.h6{height:187.725592px;}
.h2a{height:200.109381px;}
.h32{height:201.187501px;}
.h13{height:201.744492px;}
.h3{height:216.606452px;}
.h8{height:221.996440px;}
.h24{height:252.000008px;}
.hf{height:257.616512px;}
.h1b{height:262.089852px;}
.h2d{height:281.380959px;}
.he{height:281.897146px;}
.h5{height:283.995117px;}
.h27{height:286.948536px;}
.h31{height:375.187512px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x9{left:2.153544px;}
.x3d{left:10.125000px;}
.xb{left:21.417349px;}
.x1c{left:34.093757px;}
.x31{left:43.845474px;}
.x4c{left:44.909490px;}
.x48{left:52.974053px;}
.x1e{left:57.739529px;}
.x3b{left:59.211615px;}
.xa{left:61.437304px;}
.x1{left:62.586615px;}
.x32{left:71.855766px;}
.x38{left:74.046206px;}
.x1d{left:77.819104px;}
.x1f{left:81.075929px;}
.x2b{left:88.822916px;}
.x3c{left:92.585630px;}
.x4e{left:94.137837px;}
.x4d{left:103.556107px;}
.x3{left:107.688975px;}
.x27{left:109.125003px;}
.x30{left:112.500004px;}
.x28{left:115.422944px;}
.x17{left:116.841011px;}
.x39{left:128.226384px;}
.x20{left:131.625004px;}
.x43{left:134.586617px;}
.x49{left:149.810458px;}
.x46{left:153.376037px;}
.x34{left:158.520189px;}
.x2c{left:163.680125px;}
.x16{left:164.681218px;}
.x29{left:168.521490px;}
.x36{left:179.855770px;}
.x3e{left:194.535802px;}
.x47{left:206.586620px;}
.x3f{left:214.436555px;}
.x22{left:222.385260px;}
.x4a{left:242.015416px;}
.x15{left:252.299776px;}
.x42{left:296.150151px;}
.x21{left:309.990244px;}
.x3a{left:322.483567px;}
.x4{left:375.287381px;}
.xc{left:384.707823px;}
.x13{left:386.022309px;}
.x14{left:398.975492px;}
.x2{left:420.534235px;}
.x4b{left:445.964780px;}
.x7{left:447.984262px;}
.x40{left:480.440563px;}
.x37{left:513.822076px;}
.x8{left:597.968569px;}
.x12{left:599.582719px;}
.x33{left:623.151965px;}
.x25{left:632.091823px;}
.x2f{left:745.253640px;}
.x2d{left:769.610313px;}
.x11{left:808.434049px;}
.x2e{left:818.217521px;}
.x35{left:825.724894px;}
.x10{left:833.565098px;}
.xd{left:870.743840px;}
.x2a{left:886.357345px;}
.x1b{left:923.793135px;}
.x24{left:949.992218px;}
.x19{left:962.673083px;}
.x1a{left:991.023062px;}
.x44{left:1001.980379px;}
.x6{left:1013.946438px;}
.x23{left:1023.556645px;}
.x18{left:1027.248029px;}
.x5{left:1030.342435px;}
.x26{left:1056.796909px;}
.x45{left:1060.408807px;}
.xe{left:1083.367207px;}
.x41{left:1111.405536px;}
.xf{left:1238.551010px;}
@media print{
.v3{vertical-align:-18.992241pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:107.478603pt;}
.v2{vertical-align:128.382524pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.054452pt;}
.ls6{letter-spacing:0.063865pt;}
.ls4{letter-spacing:0.077200pt;}
.ls3{letter-spacing:0.083335pt;}
.lse{letter-spacing:0.088442pt;}
.ls2{letter-spacing:0.108843pt;}
.ls10{letter-spacing:0.116975pt;}
.ls9{letter-spacing:21.340660pt;}
.lsa{letter-spacing:32.012501pt;}
.ls5{letter-spacing:95.975373pt;}
.ls7{letter-spacing:95.988005pt;}
.lsb{letter-spacing:95.994872pt;}
.lsd{letter-spacing:96.000503pt;}
.lsc{letter-spacing:96.000628pt;}
.ls12{letter-spacing:127.987845pt;}
.ls13{letter-spacing:127.987974pt;}
.lsf{letter-spacing:127.988034pt;}
.ls1{letter-spacing:127.988102pt;}
.ls11{letter-spacing:128.000504pt;}
.ws11{word-spacing:-89.600000pt;}
.wse{word-spacing:-59.093334pt;}
.ws14{word-spacing:-36.933333pt;}
.ws13{word-spacing:-35.968001pt;}
.wsa{word-spacing:-35.456001pt;}
.ws5{word-spacing:-32.032002pt;}
.ws12{word-spacing:-28.474668pt;}
.wsc{word-spacing:-24.154411pt;}
.ws6{word-spacing:-18.666667pt;}
.wsd{word-spacing:-14.933333pt;}
.ws10{word-spacing:-0.177600pt;}
.wsb{word-spacing:-0.126933pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:13.624467pt;}
.ws8{word-spacing:13.636297pt;}
.wsf{word-spacing:36.894953pt;}
.ws7{word-spacing:106.969634pt;}
.ws4{word-spacing:369.725041pt;}
.ws3{word-spacing:1016.711875pt;}
.ws0{word-spacing:1224.526745pt;}
.ws2{word-spacing:1372.705324pt;}
._3{margin-left:-1654.626213pt;}
._12{margin-left:-36.709337pt;}
._14{margin-left:-23.466667pt;}
._13{margin-left:-18.944001pt;}
._9{margin-left:-17.321121pt;}
._10{margin-left:-14.080000pt;}
._c{margin-left:-11.753119pt;}
._f{margin-left:-10.666668pt;}
._11{margin-left:-9.745973pt;}
._d{margin-left:-8.800000pt;}
._7{margin-left:-7.082241pt;}
._8{margin-left:-5.606774pt;}
._a{margin-left:-4.344106pt;}
._6{margin-left:-3.246027pt;}
._0{margin-left:-2.160000pt;}
._1{margin-left:-0.960000pt;}
._2{width:1.186817pt;}
._b{width:2.446027pt;}
._5{width:3.968000pt;}
._15{width:6.992000pt;}
._17{width:8.276482pt;}
._e{width:96.096961pt;}
._18{width:127.987974pt;}
._16{width:520.415958pt;}
._4{width:2797.764646pt;}
.fs16{font-size:74.666666pt;}
.fs19{font-size:81.600011pt;}
.fs0{font-size:85.333339pt;}
.fs1a{font-size:87.200039pt;}
.fs17{font-size:96.000003pt;}
.fs22{font-size:101.333339pt;}
.fs6{font-size:112.000004pt;}
.fs18{font-size:126.933340pt;}
.fs9{font-size:128.000004pt;}
.fs10{font-size:133.333332pt;}
.fsf{font-size:135.093324pt;}
.fs12{font-size:138.666676pt;}
.fs13{font-size:141.333333pt;}
.fs11{font-size:144.000005pt;}
.fs3{font-size:149.333333pt;}
.fs21{font-size:152.933325pt;}
.fsa{font-size:154.666677pt;}
.fsd{font-size:160.000005pt;}
.fs8{font-size:165.333333pt;}
.fs23{font-size:177.599998pt;}
.fs7{font-size:197.333334pt;}
.fsc{font-size:199.093346pt;}
.fs5{font-size:208.000007pt;}
.fs1b{font-size:211.200007pt;}
.fs15{font-size:213.333335pt;}
.fs1{font-size:224.000007pt;}
.fs1f{font-size:225.760015pt;}
.fse{font-size:231.093347pt;}
.fs2{font-size:240.000008pt;}
.fs1d{font-size:256.000008pt;}
.fsb{font-size:295.093369pt;}
.fs4{font-size:314.666666pt;}
.fs14{font-size:320.000010pt;}
.fs1e{font-size:343.093371pt;}
.fs1c{font-size:367.093372pt;}
.fs20{font-size:368.000012pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:22.659078pt;}
.y1b{bottom:22.670428pt;}
.y1{bottom:24.546378pt;}
.y84{bottom:26.676278pt;}
.y41{bottom:27.715840pt;}
.y63{bottom:29.119378pt;}
.yae{bottom:64.034159pt;}
.y62{bottom:67.519379pt;}
.y8e{bottom:72.485579pt;}
.y5d{bottom:80.886870pt;}
.ya5{bottom:84.929170pt;}
.y7f{bottom:93.033640pt;}
.y9a{bottom:94.967780pt;}
.y7e{bottom:95.471907pt;}
.y16{bottom:103.214180pt;}
.y8d{bottom:107.633640pt;}
.y38{bottom:107.867840pt;}
.y54{bottom:110.731951pt;}
.y75{bottom:117.695051pt;}
.yad{bottom:124.034131pt;}
.y37{bottom:134.747841pt;}
.y99{bottom:139.127781pt;}
.y15{bottom:141.614181pt;}
.y85{bottom:142.311942pt;}
.ya4{bottom:144.929142pt;}
.y8{bottom:157.574112pt;}
.y7d{bottom:159.471909pt;}
.y2d{bottom:159.823962pt;}
.y36{bottom:161.627842pt;}
.y65{bottom:162.002884pt;}
.y67{bottom:162.287324pt;}
.y72{bottom:162.437262pt;}
.y4f{bottom:164.914882pt;}
.y25{bottom:168.098682pt;}
.y69{bottom:168.155142pt;}
.y21{bottom:171.532302pt;}
.y8c{bottom:174.833643pt;}
.y5c{bottom:179.932073pt;}
.y19{bottom:181.925813pt;}
.y48{bottom:182.365533pt;}
.y32{bottom:182.543963pt;}
.yac{bottom:184.034133pt;}
.y64{bottom:185.404085pt;}
.y74{bottom:185.423053pt;}
.y35{bottom:188.507843pt;}
.y83{bottom:195.714636pt;}
.y7{bottom:202.374113pt;}
.ya3{bottom:204.929144pt;}
.y53{bottom:206.518615pt;}
.y70{bottom:210.437264pt;}
.y2c{bottom:211.343954pt;}
.y5b{bottom:216.108064pt;}
.y4e{bottom:216.434874pt;}
.y98{bottom:218.593684pt;}
.y68{bottom:221.915144pt;}
.y7c{bottom:223.471911pt;}
.y40{bottom:226.498654pt;}
.y20{bottom:231.260294pt;}
.y47{bottom:236.018855pt;}
.y8b{bottom:242.033665pt;}
.y18{bottom:242.630185pt;}
.yab{bottom:244.034135pt;}
.y6{bottom:247.174115pt;}
.y5a{bottom:252.284055pt;}
.y6f{bottom:258.437265pt;}
.y97{bottom:258.913695pt;}
.y52{bottom:262.283875pt;}
.y2b{bottom:262.863945pt;}
.y82{bottom:263.912088pt;}
.y24{bottom:264.098685pt;}
.ya2{bottom:264.929145pt;}
.y4d{bottom:267.954866pt;}
.y14{bottom:272.541186pt;}
.y1a{bottom:274.725816pt;}
.y31{bottom:278.863946pt;}
.y7b{bottom:287.471913pt;}
.y59{bottom:288.460056pt;}
.y46{bottom:289.672176pt;}
.y1f{bottom:290.988296pt;}
.y5{bottom:291.974110pt;}
.y96{bottom:299.233707pt;}
.yaa{bottom:304.034137pt;}
.y6e{bottom:306.437267pt;}
.y66{bottom:307.713109pt;}
.y3f{bottom:308.322647pt;}
.y8a{bottom:309.233657pt;}
.y23{bottom:312.098693pt;}
.y4c{bottom:319.474857pt;}
.y13{bottom:322.141177pt;}
.y58{bottom:324.636047pt;}
.ya1{bottom:324.929147pt;}
.y30{bottom:326.703937pt;}
.y45{bottom:329.992178pt;}
.yb{bottom:334.780618pt;}
.y95{bottom:337.553688pt;}
.y3e{bottom:342.765318pt;}
.y51{bottom:348.683868pt;}
.y2a{bottom:348.943948pt;}
.y1e{bottom:350.716288pt;}
.y7a{bottom:351.471885pt;}
.y17{bottom:354.160838pt;}
.y6d{bottom:354.437268pt;}
.y61{bottom:354.554348pt;}
.y22{bottom:360.098690pt;}
.y57{bottom:360.812049pt;}
.y9c{bottom:362.513919pt;}
.y81{bottom:362.513939pt;}
.ya9{bottom:364.034139pt;}
.y94{bottom:369.473669pt;}
.y4b{bottom:370.994849pt;}
.y12{bottom:371.741169pt;}
.y2f{bottom:374.543939pt;}
.y89{bottom:376.433659pt;}
.yc{bottom:377.107119pt;}
.y4{bottom:380.482595pt;}
.y34{bottom:382.005749pt;}
.y2{bottom:382.799039pt;}
.y44{bottom:383.645499pt;}
.ya0{bottom:384.929149pt;}
.y3d{bottom:386.562659pt;}
.ya{bottom:397.180610pt;}
.y8f{bottom:398.924770pt;}
.y93{bottom:403.393650pt;}
.y29{bottom:411.503940pt;}
.y79{bottom:415.471887pt;}
.y3c{bottom:420.109330pt;}
.y11{bottom:421.341170pt;}
.y4a{bottom:422.514835pt;}
.y43{bottom:423.965496pt;}
.ya8{bottom:424.034131pt;}
.y56{bottom:433.164041pt;}
.y50{bottom:435.083861pt;}
.y88{bottom:443.633661pt;}
.y92{bottom:443.713651pt;}
.y9f{bottom:444.929141pt;}
.y6c{bottom:450.437271pt;}
.ye{bottom:451.730664pt;}
.y3{bottom:452.482593pt;}
.y3b{bottom:454.551992pt;}
.y60{bottom:464.682362pt;}
.y33{bottom:468.405757pt;}
.y55{bottom:469.340036pt;}
.y2e{bottom:470.223932pt;}
.y10{bottom:470.941166pt;}
.y28{bottom:471.503932pt;}
.y9b{bottom:472.913922pt;}
.y49{bottom:474.034826pt;}
.y42{bottom:477.618825pt;}
.y78{bottom:479.471889pt;}
.y91{bottom:482.033652pt;}
.ya7{bottom:484.034122pt;}
.y6b{bottom:498.437279pt;}
.y3a{bottom:499.245326pt;}
.y9e{bottom:504.929133pt;}
.y87{bottom:510.833657pt;}
.y9{bottom:512.269318pt;}
.y90{bottom:515.953653pt;}
.y1d{bottom:525.956092pt;}
.y77{bottom:543.471887pt;}
.ya6{bottom:544.034114pt;}
.y6a{bottom:546.437276pt;}
.y9d{bottom:564.929125pt;}
.y73{bottom:569.024052pt;}
.yf{bottom:572.879372pt;}
.y5f{bottom:575.929352pt;}
.y27{bottom:577.095091pt;}
.y39{bottom:594.803304pt;}
.y86{bottom:603.080289pt;}
.y76{bottom:607.471885pt;}
.y1c{bottom:611.172085pt;}
.yaf{bottom:624.453019pt;}
.y26{bottom:624.983092pt;}
.y5e{bottom:632.953351pt;}
.y71{bottom:637.800073pt;}
.y80{bottom:693.080001pt;}
.h21{height:51.880208pt;}
.h29{height:54.058666pt;}
.h30{height:54.432291pt;}
.h1{height:62.208337pt;}
.h7{height:68.458338pt;}
.h1c{height:85.312503pt;}
.h1d{height:88.937503pt;}
.h34{height:91.833339pt;}
.h25{height:92.534901pt;}
.h28{height:92.672003pt;}
.h20{height:93.312503pt;}
.h39{height:97.200520pt;}
.hc{height:102.687503pt;}
.h23{height:103.760416pt;}
.h22{height:104.533333pt;}
.h14{height:104.832420pt;}
.h15{height:106.966145pt;}
.h1f{height:108.864583pt;}
.h18{height:109.552091pt;}
.h2b{height:111.171879pt;}
.h19{height:111.244800pt;}
.h1a{height:113.384114pt;}
.h16{height:113.765629pt;}
.h37{height:116.000004pt;}
.h3a{height:116.484379pt;}
.h2c{height:116.640629pt;}
.h17{height:117.979166pt;}
.h4{height:119.802083pt;}
.h38{height:120.833332pt;}
.hd{height:122.192716pt;}
.h11{height:124.160004pt;}
.h12{height:125.280004pt;}
.ha{height:130.619792pt;}
.hb{height:132.638021pt;}
.h36{height:135.333333pt;}
.h33{height:138.595826pt;}
.h26{height:147.840005pt;}
.h10{height:154.496437pt;}
.h1e{height:155.312501pt;}
.h2f{height:155.520834pt;}
.h9{height:158.309897pt;}
.h35{height:160.949998pt;}
.h2{height:163.296880pt;}
.h2e{height:164.579933pt;}
.h6{height:166.867193pt;}
.h2a{height:177.875006pt;}
.h32{height:178.833334pt;}
.h13{height:179.328438pt;}
.h3{height:192.539069pt;}
.h8{height:197.330169pt;}
.h24{height:224.000007pt;}
.hf{height:228.992455pt;}
.h1b{height:232.968757pt;}
.h2d{height:250.116408pt;}
.he{height:250.575241pt;}
.h5{height:252.440104pt;}
.h27{height:255.065365pt;}
.h31{height:333.500011pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.914261pt;}
.x3d{left:9.000000pt;}
.xb{left:19.037644pt;}
.x1c{left:30.305562pt;}
.x31{left:38.973754pt;}
.x4c{left:39.919546pt;}
.x48{left:47.088048pt;}
.x1e{left:51.324026pt;}
.x3b{left:52.632547pt;}
.xa{left:54.610937pt;}
.x1{left:55.632547pt;}
.x32{left:63.871792pt;}
.x38{left:65.818850pt;}
.x1d{left:69.172537pt;}
.x1f{left:72.067492pt;}
.x2b{left:78.953703pt;}
.x3c{left:82.298338pt;}
.x4e{left:83.678078pt;}
.x4d{left:92.049873pt;}
.x3{left:95.723533pt;}
.x27{left:97.000003pt;}
.x30{left:100.000003pt;}
.x28{left:102.598172pt;}
.x17{left:103.858676pt;}
.x39{left:113.979008pt;}
.x20{left:117.000004pt;}
.x43{left:119.632549pt;}
.x49{left:133.164851pt;}
.x46{left:136.334255pt;}
.x34{left:140.906835pt;}
.x2c{left:145.493445pt;}
.x16{left:146.383305pt;}
.x29{left:149.796880pt;}
.x36{left:159.871795pt;}
.x3e{left:172.920713pt;}
.x47{left:183.632551pt;}
.x3f{left:190.610271pt;}
.x22{left:197.675786pt;}
.x4a{left:215.124814pt;}
.x15{left:224.266467pt;}
.x42{left:263.244578pt;}
.x21{left:275.546884pt;}
.x3a{left:286.652059pt;}
.x4{left:333.588783pt;}
.xc{left:341.962509pt;}
.x13{left:343.130941pt;}
.x14{left:354.644881pt;}
.x2{left:373.808209pt;}
.x4b{left:396.413138pt;}
.x7{left:398.208233pt;}
.x40{left:427.058279pt;}
.x37{left:456.730735pt;}
.x8{left:531.527617pt;}
.x12{left:532.962417pt;}
.x33{left:553.912858pt;}
.x25{left:561.859398pt;}
.x2f{left:662.447680pt;}
.x2d{left:684.098056pt;}
.x11{left:718.608044pt;}
.x2e{left:727.304463pt;}
.x35{left:733.977683pt;}
.x10{left:740.946754pt;}
.xd{left:773.994525pt;}
.x2a{left:787.873195pt;}
.x1b{left:821.149453pt;}
.x24{left:844.437527pt;}
.x19{left:855.709407pt;}
.x1a{left:880.909388pt;}
.x44{left:890.649226pt;}
.x6{left:901.285723pt;}
.x23{left:909.828129pt;}
.x18{left:913.109359pt;}
.x5{left:915.859942pt;}
.x26{left:939.375030pt;}
.x45{left:942.585606pt;}
.xe{left:962.993073pt;}
.x41{left:987.916032pt;}
.xf{left:1100.934231pt;}
}




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