
    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_3a1790cb5b2ae3366919dfb1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_ac214d42bdddff5f68532f3c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.988281;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_26bb06ef2d0f256215e107db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_b3e01aff1a8403e4be65e6b2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_124a668782c6baba2b08c1fb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.956543;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);}
.v3{vertical-align:-55.419250px;}
.v2{vertical-align:-25.180123px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.396442px;}
.v4{vertical-align:167.797625px;}
.v5{vertical-align:172.815841px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.115200px;}
.ls1{letter-spacing:0.134641px;}
.ls4{letter-spacing:0.138490px;}
.ls3{letter-spacing:0.139867px;}
.ls8{letter-spacing:0.144000px;}
.ls6{letter-spacing:22.908358px;}
.ls5{letter-spacing:22.908609px;}
.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;}
}
.ws1d{word-spacing:-66.240183px;}
.ws16{word-spacing:-60.263844px;}
.ws2{word-spacing:-40.175896px;}
.ws4{word-spacing:-32.255999px;}
.ws5{word-spacing:-32.140799px;}
.ws8{word-spacing:-26.716872px;}
.ws21{word-spacing:-26.230989px;}
.wsd{word-spacing:-23.250278px;}
.ws0{word-spacing:-19.871949px;}
.ws9{word-spacing:-18.282290px;}
.wsa{word-spacing:-17.487461px;}
.ws10{word-spacing:-3.000588px;}
.ws19{word-spacing:-3.000361px;}
.ws17{word-spacing:-2.980225px;}
.ws20{word-spacing:-2.583367px;}
.ws1e{word-spacing:-2.108631px;}
.wse{word-spacing:-1.405800px;}
.ws13{word-spacing:-1.233085px;}
.ws14{word-spacing:-1.025759px;}
.ws22{word-spacing:-0.917998px;}
.ws12{word-spacing:-0.711692px;}
.ws1c{word-spacing:-0.596162px;}
.wsf{word-spacing:-0.531257px;}
.ws1f{word-spacing:-0.513843px;}
.ws18{word-spacing:-0.397441px;}
.ws7{word-spacing:0.000000px;}
.wsb{word-spacing:0.215999px;}
.ws15{word-spacing:0.228671px;}
.ws11{word-spacing:0.311145px;}
.ws1a{word-spacing:0.385589px;}
.wsc{word-spacing:0.554419px;}
.ws3{word-spacing:8.179200px;}
.ws6{word-spacing:8.294400px;}
.ws1{word-spacing:9.290201px;}
.ws1b{word-spacing:1241.732258px;}
._c{margin-left:-3.553545px;}
._5{margin-left:-2.407287px;}
._0{margin-left:-1.187997px;}
._1{width:1.214553px;}
._3{width:2.761518px;}
._11{width:3.911493px;}
._9{width:16.195146px;}
._a{width:17.207401px;}
._10{width:19.308848px;}
._8{width:20.723074px;}
._d{width:22.163265px;}
._12{width:24.527167px;}
._6{width:27.770226px;}
._13{width:29.808994px;}
._e{width:34.678973px;}
._2{width:42.199196px;}
._4{width:43.351196px;}
._f{width:46.332075px;}
._b{width:611.361468px;}
._7{width:1106.084914px;}
.fc3{color:transparent;}
.fc2{color:rgb(27,129,165);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc4{color:rgb(0,74,173);}
.fc0{color:rgb(3,80,175);}
.fsf{font-size:41.759538px;}
.fs11{font-size:48.240229px;}
.fs10{font-size:53.999861px;}
.fs5{font-size:56.160091px;}
.fsc{font-size:59.759492px;}
.fsb{font-size:63.360367px;}
.fsa{font-size:66.240183px;}
.fs1{font-size:71.999814px;}
.fs9{font-size:79.200090px;}
.fs6{font-size:84.240136px;}
.fs12{font-size:89.999768px;}
.fsd{font-size:95.039814px;}
.fs7{font-size:95.759399px;}
.fs0{font-size:107.999721px;}
.fs4{font-size:115.199998px;}
.fs2{font-size:134.640596px;}
.fs3{font-size:143.999628px;}
.fse{font-size:197.999489px;}
.fs8{font-size:215.999442px;}
.y0{bottom:0.000000px;}
.yb9{bottom:14.939610px;}
.y2d{bottom:20.878922px;}
.y40{bottom:22.137319px;}
.y8d{bottom:22.314200px;}
.yc1{bottom:23.943095px;}
.y38{bottom:26.278106px;}
.y13{bottom:34.915974px;}
.yb8{bottom:36.895752px;}
.y3a{bottom:48.419164px;}
.y7c{bottom:48.592706px;}
.y61{bottom:48.779052px;}
.y5c{bottom:49.139002px;}
.y51{bottom:49.312482px;}
.yc0{bottom:50.948780px;}
.yb7{bottom:58.851799px;}
.y37{bottom:64.081806px;}
.y12{bottom:65.161532px;}
.ybf{bottom:77.940719px;}
.yb6{bottom:80.633840px;}
.y39{bottom:86.222865px;}
.y7b{bottom:86.396344px;}
.y60{bottom:86.582752px;}
.y5b{bottom:86.942640px;}
.y50{bottom:87.116182px;}
.y11{bottom:95.400626px;}
.yb5{bottom:102.589982px;}
.ybe{bottom:104.946471px;}
.y8c{bottom:107.461504px;}
.y41{bottom:115.555376px;}
.yb4{bottom:124.555706px;}
.y6b{bottom:125.273680px;}
.y53{bottom:130.672058px;}
.y28{bottom:131.391896px;}
.y77{bottom:131.938192px;}
.y33{bottom:139.318001px;}
.ybd{bottom:139.319830px;}
.yb3{bottom:146.337795px;}
.y6a{bottom:149.041388px;}
.y8b{bottom:149.045774px;}
.y3f{bottom:154.079250px;}
.y52{bottom:160.917554px;}
.yab{bottom:161.280039px;}
.y27{bottom:161.637392px;}
.y76{bottom:162.183688px;}
.y32{bottom:163.075543px;}
.yb2{bottom:168.293842px;}
.y69{bottom:172.793895px;}
.y8a{bottom:183.244188px;}
.ybc{bottom:183.607528px;}
.ya8{bottom:183.785993px;}
.y31{bottom:186.843251px;}
.yaa{bottom:187.737844px;}
.yb1{bottom:190.254798px;}
.ya6{bottom:200.516765px;}
.yb0{bottom:212.032025px;}
.ya5{bottom:220.321185px;}
.ya9{bottom:224.464804px;}
.y89{bottom:224.824139px;}
.y1d{bottom:225.539584px;}
.y17{bottom:225.716464px;}
.y1b{bottom:227.156776px;}
.y75{bottom:229.853727px;}
.yaf{bottom:230.937829px;}
.ya3{bottom:242.825747px;}
.ya4{bottom:243.182945px;}
.y1c{bottom:249.297175px;}
.y1e{bottom:249.297399px;}
.y16{bottom:249.474055px;}
.y1a{bottom:250.914367px;}
.yae{bottom:252.893923px;}
.y88{bottom:259.025456px;}
.y74{bottom:260.099223px;}
.yad{bottom:274.854832px;}
.yd{bottom:294.116132px;}
.yac{bottom:297.181964px;}
.ya7{bottom:297.545297px;}
.y9{bottom:299.702215px;}
.y87{bottom:300.605371px;}
.y21{bottom:322.919830px;}
.y73{bottom:323.279329px;}
.y86{bottom:334.806724px;}
.y8{bottom:341.280000px;}
.y20{bottom:342.714690px;}
.y72{bottom:353.522314px;}
.y9b{bottom:359.284774px;}
.ya1{bottom:360.366808px;}
.yc{bottom:360.900491px;}
.y1f{bottom:362.335966px;}
.y85{bottom:368.822447px;}
.y9d{bottom:380.699812px;}
.y98{bottom:381.786310px;}
.yba{bottom:382.327930px;}
.y7{bottom:384.480002px;}
.y9a{bottom:385.742539px;}
.ya2{bottom:386.275778px;}
.ya0{bottom:386.823364px;}
.y68{bottom:400.318616px;}
.y30{bottom:405.897948px;}
.y4c{bottom:408.599207px;}
.y84{bottom:410.402363px;}
.yb{bottom:415.077654px;}
.y15{bottom:417.420441px;}
.y19{bottom:418.859766px;}
.y99{bottom:421.383454px;}
.y9e{bottom:422.465152px;}
.ybb{bottom:422.821990px;}
.y67{bottom:424.075170px;}
.y6{bottom:427.688211px;}
.y43{bottom:427.859689px;}
.y2f{bottom:429.662596px;}
.y64{bottom:430.924100px;}
.y4b{bottom:438.842161px;}
.y97{bottom:439.741585px;}
.y9f{bottom:440.822890px;}
.y14{bottom:441.176995px;}
.y18{bottom:442.616320px;}
.y83{bottom:444.603680px;}
.y66{bottom:447.839819px;}
.y56{bottom:448.199897px;}
.ya{bottom:451.615639px;}
.y2b{bottom:452.344033px;}
.y2e{bottom:453.419151px;}
.y70{bottom:457.022886px;}
.y42{bottom:458.102643px;}
.y63{bottom:461.156761px;}
.y4a{bottom:469.074821px;}
.y5{bottom:470.877567px;}
.y55{bottom:473.404079px;}
.y82{bottom:478.805032px;}
.y2a{bottom:482.576694px;}
.y6f{bottom:487.255578px;}
.y62{bottom:491.399714px;}
.y9c{bottom:495.545614px;}
.y54{bottom:498.597968px;}
.y49{bottom:499.317775px;}
.y3{bottom:511.381850px;}
.y29{bottom:512.819648px;}
.y6e{bottom:517.498500px;}
.y81{bottom:520.384948px;}
.y79{bottom:538.383749px;}
.y3e{bottom:540.903119px;}
.y2{bottom:550.260196px;}
.y93{bottom:554.221862px;}
.y80{bottom:554.400671px;}
.y7a{bottom:562.323084px;}
.y78{bottom:568.616410px;}
.y3d{bottom:571.135780px;}
.y48{bottom:575.279916px;}
.y90{bottom:575.638529px;}
.y92{bottom:580.681257px;}
.y96{bottom:581.761325px;}
.y1{bottom:589.138502px;}
.y26{bottom:592.555744px;}
.y7f{bottom:596.166215px;}
.y3c{bottom:601.378733px;}
.y47{bottom:605.522870px;}
.y91{bottom:616.500987px;}
.y25{bottom:622.798698px;}
.yf{bottom:624.965907px;}
.y7e{bottom:630.181921px;}
.y3b{bottom:631.621687px;}
.y95{bottom:634.681107px;}
.y46{bottom:635.755546px;}
.y8f{bottom:635.765317px;}
.y7d{bottom:664.383274px;}
.ye{bottom:667.082742px;}
.y24{bottom:671.583160px;}
.y23{bottom:673.745685px;}
.y65{bottom:684.184311px;}
.y94{bottom:690.482953px;}
.y71{bottom:724.862662px;}
.y4{bottom:730.793312px;}
.y2c{bottom:742.859091px;}
.y4f{bottom:755.997230px;}
.y45{bottom:756.357149px;}
.y5f{bottom:757.262077px;}
.y5a{bottom:757.436890px;}
.y6c{bottom:760.142460px;}
.y10{bottom:774.908050px;}
.y8e{bottom:777.593095px;}
.y4e{bottom:781.201412px;}
.y36{bottom:781.561323px;}
.y5e{bottom:782.455958px;}
.y59{bottom:782.641057px;}
.y22{bottom:814.854236px;}
.y4d{bottom:831.599472px;}
.y35{bottom:831.959383px;}
.y5d{bottom:832.864307px;}
.y58{bottom:833.039120px;}
.y6d{bottom:856.803642px;}
.y34{bottom:856.978459px;}
.y44{bottom:857.163553px;}
.y57{bottom:858.243295px;}
.h18{height:32.583859px;}
.h1a{height:37.640570px;}
.h19{height:42.134657px;}
.h9{height:43.820227px;}
.h11{height:46.628744px;}
.hf{height:47.520275px;}
.h1c{height:49.438412px;}
.hd{height:49.680137px;}
.he{height:51.685455px;}
.h1b{height:53.999861px;}
.h12{height:57.410315px;}
.h13{height:63.180102px;}
.ha{height:65.730341px;}
.h1d{height:67.499826px;}
.h1e{height:70.224428px;}
.hb{height:71.819549px;}
.h16{height:74.157042px;}
.h7{height:86.399998px;}
.h2{height:88.575985px;}
.h4{height:88.576038px;}
.h3{height:88.593472px;}
.h5{height:100.980447px;}
.h8{height:107.977390px;}
.h6{height:107.999721px;}
.h17{height:148.499617px;}
.h10{height:161.683176px;}
.hc{height:161.999582px;}
.h14{height:230.977727px;}
.h15{height:238.546182px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.xab{left:12.238739px;}
.x10{left:32.405190px;}
.x99{left:34.198155px;}
.x11{left:36.001551px;}
.x26{left:37.625881px;}
.x36{left:39.600678px;}
.x2a{left:52.197623px;}
.x6d{left:55.076928px;}
.x5{left:57.427584px;}
.x3b{left:58.861153px;}
.x82{left:60.475618px;}
.x7a{left:62.820191px;}
.x71{left:72.003103px;}
.x7{left:90.000000px;}
.x4{left:95.227980px;}
.x8{left:97.917184px;}
.x7b{left:101.156038px;}
.x8a{left:102.238512px;}
.x12{left:106.200996px;}
.x4f{left:117.537208px;}
.x14{left:119.518573px;}
.x13{left:135.536858px;}
.x15{left:136.984251px;}
.xe{left:144.901553px;}
.x8b{left:149.040150px;}
.x9a{left:150.661722px;}
.x6{left:154.985928px;}
.x50{left:157.137882px;}
.x6e{left:184.316441px;}
.x88{left:210.775570px;}
.x98{left:212.396603px;}
.x89{left:221.582681px;}
.x97{left:224.278716px;}
.xf{left:231.660124px;}
.x9{left:264.778628px;}
.x21{left:281.161627px;}
.x22{left:302.941757px;}
.x23{left:305.641194px;}
.x7c{left:344.878637px;}
.x9c{left:346.493430px;}
.x8d{left:349.021555px;}
.x7d{left:399.780733px;}
.x9d{left:409.501136px;}
.x8e{left:420.300124px;}
.x16{left:424.981899px;}
.x18{left:456.840552px;}
.x8f{left:460.258687px;}
.x17{left:470.522032px;}
.x19{left:473.578499px;}
.x81{left:488.524940px;}
.x55{left:490.499301px;}
.x4d{left:492.843874px;}
.x6f{left:495.723194px;}
.x44{left:497.522758px;}
.x4e{left:498.602483px;}
.x66{left:500.936794px;}
.x80{left:502.376439px;}
.x67{left:505.266021px;}
.x42{left:513.358910px;}
.x5e{left:515.158474px;}
.x28{left:521.462092px;}
.x70{left:523.621575px;}
.x54{left:528.125630px;}
.x9e{left:530.271493px;}
.x8c{left:532.801218px;}
.x38{left:536.043722px;}
.x84{left:538.203173px;}
.x43{left:539.457696px;}
.x9b{left:541.078038px;}
.x39{left:548.825757px;}
.x83{left:552.424884px;}
.x45{left:555.664061px;}
.x46{left:565.556514px;}
.x37{left:570.420519px;}
.x58{left:573.125011px;}
.x3a{left:579.603427px;}
.x57{left:580.683153px;}
.x56{left:583.017464px;}
.x2c{left:585.362005px;}
.x29{left:589.135929px;}
.x2b{left:603.542731px;}
.x7e{left:610.196007px;}
.x68{left:628.201935px;}
.x72{left:635.225329px;}
.x91{left:658.077989px;}
.x5f{left:662.046558px;}
.x5d{left:668.698516px;}
.x35{left:670.498079px;}
.x25{left:672.840684px;}
.x24{left:676.254035px;}
.x47{left:683.641320px;}
.x7f{left:685.080996px;}
.xa7{left:698.407152px;}
.x59{left:700.737173px;}
.xa1{left:718.914553px;}
.x92{left:729.174464px;}
.xa{left:749.522466px;}
.x2{left:751.502509px;}
.xa8{left:758.523433px;}
.xb{left:759.602205px;}
.xa2{left:765.710484px;}
.x1{left:770.935064px;}
.x1a{left:815.039499px;}
.x1c{left:818.107120px;}
.xd{left:837.722542px;}
.x9f{left:839.329423px;}
.xa6{left:840.772644px;}
.x1b{left:842.041592px;}
.x90{left:848.699883px;}
.xa0{left:850.133627px;}
.xc{left:856.262339px;}
.x63{left:893.700729px;}
.x64{left:901.978770px;}
.x3{left:907.910595px;}
.x4a{left:909.721037px;}
.x4b{left:912.242866px;}
.x48{left:915.118455px;}
.x85{left:916.922595px;}
.x6b{left:918.716668px;}
.x33{left:920.167047px;}
.x76{left:921.243530px;}
.x30{left:922.501928px;}
.x3f{left:923.765359px;}
.x78{left:925.382551px;}
.x31{left:928.081260px;}
.x3d{left:929.167811px;}
.x51{left:930.239161px;}
.x5b{left:935.277685px;}
.x34{left:937.622633px;}
.x2f{left:938.699116px;}
.x49{left:945.182986px;}
.x32{left:947.340986px;}
.x62{left:949.503921px;}
.x65{left:953.819822px;}
.x40{left:955.260133px;}
.x87{left:967.146554px;}
.x52{left:973.984185px;}
.x61{left:975.770996px;}
.x3e{left:978.658880px;}
.x27{left:980.994687px;}
.x1f{left:984.064740px;}
.x41{left:991.444804px;}
.x6c{left:995.219996px;}
.x6a{left:996.483428px;}
.x1d{left:998.464448px;}
.x86{left:1020.599764px;}
.x20{left:1027.619408px;}
.x1e{left:1034.826000px;}
.x95{left:1036.428077px;}
.x5a{left:1038.247332px;}
.xa4{left:1040.043763px;}
.x77{left:1045.085061px;}
.x53{left:1048.142565px;}
.x79{left:1050.841274px;}
.x5c{left:1052.458466px;}
.x4c{left:1056.420606px;}
.xa5{left:1095.660936px;}
.xaa{left:1097.094681px;}
.x73{left:1098.532985px;}
.x74{left:1110.409929px;}
.x96{left:1155.769290px;}
.xa3{left:1157.390914px;}
.xa9{left:1158.827850px;}
.x94{left:1161.537538px;}
.x93{left:1167.655534px;}
.x69{left:1197.706571px;}
.x2d{left:1201.668610px;}
.x60{left:1205.986220px;}
.x75{left:1231.744394px;}
.x3c{left:1236.060295px;}
.x2e{left:1237.141812px;}
@media print{
.v3{vertical-align:-49.261556pt;}
.v2{vertical-align:-22.382331pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.796838pt;}
.v4{vertical-align:149.153444pt;}
.v5{vertical-align:153.614081pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.102400pt;}
.ls1{letter-spacing:0.119681pt;}
.ls4{letter-spacing:0.123103pt;}
.ls3{letter-spacing:0.124327pt;}
.ls8{letter-spacing:0.128000pt;}
.ls6{letter-spacing:20.362985pt;}
.ls5{letter-spacing:20.363208pt;}
.ws1d{word-spacing:-58.880163pt;}
.ws16{word-spacing:-53.567862pt;}
.ws2{word-spacing:-35.711908pt;}
.ws4{word-spacing:-28.671999pt;}
.ws5{word-spacing:-28.569599pt;}
.ws8{word-spacing:-23.748331pt;}
.ws21{word-spacing:-23.316434pt;}
.wsd{word-spacing:-20.666913pt;}
.ws0{word-spacing:-17.663954pt;}
.ws9{word-spacing:-16.250925pt;}
.wsa{word-spacing:-15.544410pt;}
.ws10{word-spacing:-2.667189pt;}
.ws19{word-spacing:-2.666987pt;}
.ws17{word-spacing:-2.649089pt;}
.ws20{word-spacing:-2.296326pt;}
.ws1e{word-spacing:-1.874338pt;}
.wse{word-spacing:-1.249600pt;}
.ws13{word-spacing:-1.096076pt;}
.ws14{word-spacing:-0.911786pt;}
.ws22{word-spacing:-0.815998pt;}
.ws12{word-spacing:-0.632616pt;}
.ws1c{word-spacing:-0.529921pt;}
.wsf{word-spacing:-0.472228pt;}
.ws1f{word-spacing:-0.456749pt;}
.ws18{word-spacing:-0.353281pt;}
.ws7{word-spacing:0.000000pt;}
.wsb{word-spacing:0.192000pt;}
.ws15{word-spacing:0.203263pt;}
.ws11{word-spacing:0.276573pt;}
.ws1a{word-spacing:0.342746pt;}
.wsc{word-spacing:0.492817pt;}
.ws3{word-spacing:7.270400pt;}
.ws6{word-spacing:7.372800pt;}
.ws1{word-spacing:8.257957pt;}
.ws1b{word-spacing:1103.762007pt;}
._c{margin-left:-3.158707pt;}
._5{margin-left:-2.139811pt;}
._0{margin-left:-1.055997pt;}
._1{width:1.079603pt;}
._3{width:2.454683pt;}
._11{width:3.476882pt;}
._9{width:14.395686pt;}
._a{width:15.295467pt;}
._10{width:17.163421pt;}
._8{width:18.420510pt;}
._d{width:19.700680pt;}
._12{width:21.801926pt;}
._6{width:24.684645pt;}
._13{width:26.496884pt;}
._e{width:30.825754pt;}
._2{width:37.510396pt;}
._4{width:38.534396pt;}
._f{width:41.184067pt;}
._b{width:543.432416pt;}
._7{width:983.186591pt;}
.fsf{font-size:37.119590pt;}
.fs11{font-size:42.880204pt;}
.fs10{font-size:47.999876pt;}
.fs5{font-size:49.920081pt;}
.fsc{font-size:53.119548pt;}
.fsb{font-size:56.320326pt;}
.fsa{font-size:58.880163pt;}
.fs1{font-size:63.999835pt;}
.fs9{font-size:70.400080pt;}
.fs6{font-size:74.880121pt;}
.fs12{font-size:79.999793pt;}
.fsd{font-size:84.479834pt;}
.fs7{font-size:85.119466pt;}
.fs0{font-size:95.999752pt;}
.fs4{font-size:102.399998pt;}
.fs2{font-size:119.680530pt;}
.fs3{font-size:127.999670pt;}
.fse{font-size:175.999546pt;}
.fs8{font-size:191.999504pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:13.279654pt;}
.y2d{bottom:18.559042pt;}
.y40{bottom:19.677617pt;}
.y8d{bottom:19.834844pt;}
.yc1{bottom:21.282751pt;}
.y38{bottom:23.358317pt;}
.y13{bottom:31.036421pt;}
.yb8{bottom:32.796224pt;}
.y3a{bottom:43.039257pt;}
.y7c{bottom:43.193517pt;}
.y61{bottom:43.359157pt;}
.y5c{bottom:43.679113pt;}
.y51{bottom:43.833317pt;}
.yc0{bottom:45.287804pt;}
.yb7{bottom:52.312710pt;}
.y37{bottom:56.961606pt;}
.y12{bottom:57.921362pt;}
.ybf{bottom:69.280639pt;}
.yb6{bottom:71.674525pt;}
.y39{bottom:76.642546pt;}
.y7b{bottom:76.796750pt;}
.y60{bottom:76.962446pt;}
.y5b{bottom:77.282346pt;}
.y50{bottom:77.436606pt;}
.y11{bottom:84.800556pt;}
.yb5{bottom:91.191095pt;}
.ybe{bottom:93.285752pt;}
.y8c{bottom:95.521337pt;}
.y41{bottom:102.715890pt;}
.yb4{bottom:110.716183pt;}
.y6b{bottom:111.354382pt;}
.y53{bottom:116.152940pt;}
.y28{bottom:116.792796pt;}
.y77{bottom:117.278393pt;}
.y33{bottom:123.838223pt;}
.ybd{bottom:123.839849pt;}
.yb3{bottom:130.078040pt;}
.y6a{bottom:132.481234pt;}
.y8b{bottom:132.485133pt;}
.y3f{bottom:136.959333pt;}
.y52{bottom:143.037825pt;}
.yab{bottom:143.360034pt;}
.y27{bottom:143.677681pt;}
.y76{bottom:144.163278pt;}
.y32{bottom:144.956038pt;}
.yb2{bottom:149.594526pt;}
.y69{bottom:153.594574pt;}
.y8a{bottom:162.883723pt;}
.ybc{bottom:163.206691pt;}
.ya8{bottom:163.365327pt;}
.y31{bottom:166.082890pt;}
.yaa{bottom:166.878084pt;}
.yb1{bottom:169.115376pt;}
.ya6{bottom:178.237124pt;}
.yb0{bottom:188.472911pt;}
.ya5{bottom:195.841053pt;}
.ya9{bottom:199.524270pt;}
.y89{bottom:199.843679pt;}
.y1d{bottom:200.479630pt;}
.y17{bottom:200.636857pt;}
.y1b{bottom:201.917134pt;}
.y75{bottom:204.314424pt;}
.yaf{bottom:205.278070pt;}
.ya3{bottom:215.845108pt;}
.ya4{bottom:216.162618pt;}
.y1c{bottom:221.597488pt;}
.y1e{bottom:221.597688pt;}
.y16{bottom:221.754715pt;}
.y1a{bottom:223.034992pt;}
.yae{bottom:224.794598pt;}
.y88{bottom:230.244850pt;}
.y74{bottom:231.199309pt;}
.yad{bottom:244.315406pt;}
.yd{bottom:261.436562pt;}
.yac{bottom:264.161746pt;}
.ya7{bottom:264.484708pt;}
.y9{bottom:266.401969pt;}
.y87{bottom:267.204774pt;}
.y21{bottom:287.039849pt;}
.y73{bottom:287.359404pt;}
.y86{bottom:297.605977pt;}
.y8{bottom:303.360000pt;}
.y20{bottom:304.635280pt;}
.y72{bottom:314.242057pt;}
.y9b{bottom:319.364244pt;}
.ya1{bottom:320.326051pt;}
.yc{bottom:320.800437pt;}
.y1f{bottom:322.076414pt;}
.y85{bottom:327.842176pt;}
.y9d{bottom:338.399833pt;}
.y98{bottom:339.365609pt;}
.yba{bottom:339.847049pt;}
.y7{bottom:341.760002pt;}
.y9a{bottom:342.882257pt;}
.ya2{bottom:343.356247pt;}
.ya0{bottom:343.842990pt;}
.y68{bottom:355.838770pt;}
.y30{bottom:360.798176pt;}
.y4c{bottom:363.199295pt;}
.y84{bottom:364.802100pt;}
.yb{bottom:368.957915pt;}
.y15{bottom:371.040392pt;}
.y19{bottom:372.319792pt;}
.y99{bottom:374.563070pt;}
.y9e{bottom:375.524580pt;}
.ybb{bottom:375.841769pt;}
.y67{bottom:376.955707pt;}
.y6{bottom:380.167299pt;}
.y43{bottom:380.319724pt;}
.y2f{bottom:381.922308pt;}
.y64{bottom:383.043644pt;}
.y4b{bottom:390.081921pt;}
.y97{bottom:390.881409pt;}
.y9f{bottom:391.842569pt;}
.y14{bottom:392.157329pt;}
.y18{bottom:393.436729pt;}
.y83{bottom:395.203271pt;}
.y66{bottom:398.079839pt;}
.y56{bottom:398.399909pt;}
.ya{bottom:401.436123pt;}
.y2b{bottom:402.083585pt;}
.y2e{bottom:403.039245pt;}
.y70{bottom:406.242565pt;}
.y42{bottom:407.202349pt;}
.y63{bottom:409.917120pt;}
.y4a{bottom:416.955397pt;}
.y5{bottom:418.557837pt;}
.y55{bottom:420.803626pt;}
.y82{bottom:425.604473pt;}
.y2a{bottom:428.957061pt;}
.y6f{bottom:433.116069pt;}
.y62{bottom:436.799746pt;}
.y9c{bottom:440.484990pt;}
.y54{bottom:443.198194pt;}
.y49{bottom:443.838022pt;}
.y3{bottom:454.561645pt;}
.y29{bottom:455.839687pt;}
.y6e{bottom:459.998667pt;}
.y81{bottom:462.564398pt;}
.y79{bottom:478.563332pt;}
.y3e{bottom:480.802773pt;}
.y2{bottom:489.120174pt;}
.y93{bottom:492.641655pt;}
.y80{bottom:492.800597pt;}
.y7a{bottom:499.842741pt;}
.y78{bottom:505.436808pt;}
.y3d{bottom:507.676249pt;}
.y48{bottom:511.359925pt;}
.y90{bottom:511.678692pt;}
.y92{bottom:516.161117pt;}
.y96{bottom:517.121178pt;}
.y1{bottom:523.678668pt;}
.y26{bottom:526.716217pt;}
.y7f{bottom:529.925525pt;}
.y3c{bottom:534.558874pt;}
.y47{bottom:538.242551pt;}
.y91{bottom:548.000877pt;}
.y25{bottom:553.598843pt;}
.yf{bottom:555.525251pt;}
.y7e{bottom:560.161708pt;}
.y3b{bottom:561.441500pt;}
.y95{bottom:564.160984pt;}
.y46{bottom:565.116041pt;}
.y8f{bottom:565.124726pt;}
.y7d{bottom:590.562910pt;}
.ye{bottom:592.962437pt;}
.y24{bottom:596.962809pt;}
.y23{bottom:598.885053pt;}
.y65{bottom:608.163832pt;}
.y94{bottom:613.762625pt;}
.y71{bottom:644.322366pt;}
.y4{bottom:649.594055pt;}
.y2c{bottom:660.319192pt;}
.y4f{bottom:671.997538pt;}
.y45{bottom:672.317466pt;}
.y5f{bottom:673.121846pt;}
.y5a{bottom:673.277236pt;}
.y6c{bottom:675.682187pt;}
.y10{bottom:688.807156pt;}
.y8e{bottom:691.193862pt;}
.y4e{bottom:694.401255pt;}
.y36{bottom:694.721176pt;}
.y5e{bottom:695.516408pt;}
.y59{bottom:695.680939pt;}
.y22{bottom:724.314877pt;}
.y4d{bottom:739.199530pt;}
.y35{bottom:739.519451pt;}
.y5d{bottom:740.323829pt;}
.y58{bottom:740.479218pt;}
.y6d{bottom:761.603238pt;}
.y34{bottom:761.758630pt;}
.y44{bottom:761.923159pt;}
.y57{bottom:762.882929pt;}
.h18{height:28.963430pt;}
.h1a{height:33.458284pt;}
.h19{height:37.453028pt;}
.h9{height:38.951313pt;}
.h11{height:41.447773pt;}
.hf{height:42.240245pt;}
.h1c{height:43.945255pt;}
.hd{height:44.160122pt;}
.he{height:45.942627pt;}
.h1b{height:47.999876pt;}
.h12{height:51.031391pt;}
.h13{height:56.160091pt;}
.ha{height:58.426970pt;}
.h1d{height:59.999845pt;}
.h1e{height:62.421714pt;}
.hb{height:63.839599pt;}
.h16{height:65.917371pt;}
.h7{height:76.799998pt;}
.h2{height:78.734209pt;}
.h4{height:78.734256pt;}
.h3{height:78.749753pt;}
.h5{height:89.760397pt;}
.h8{height:95.979902pt;}
.h6{height:95.999752pt;}
.h17{height:131.999659pt;}
.h10{height:143.718379pt;}
.hc{height:143.999628pt;}
.h14{height:205.313535pt;}
.h15{height:212.041051pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xab{left:10.878879pt;}
.x10{left:28.804614pt;}
.x99{left:30.398360pt;}
.x11{left:32.001379pt;}
.x26{left:33.445228pt;}
.x36{left:35.200603pt;}
.x2a{left:46.397887pt;}
.x6d{left:48.957269pt;}
.x5{left:51.046741pt;}
.x3b{left:52.321025pt;}
.x82{left:53.756105pt;}
.x7a{left:55.840170pt;}
.x71{left:64.002758pt;}
.x7{left:80.000000pt;}
.x4{left:84.647093pt;}
.x8{left:87.037497pt;}
.x7b{left:89.916478pt;}
.x8a{left:90.878677pt;}
.x12{left:94.400885pt;}
.x4f{left:104.477518pt;}
.x14{left:106.238731pt;}
.x13{left:120.477207pt;}
.x15{left:121.763779pt;}
.xe{left:128.801381pt;}
.x8b{left:132.480133pt;}
.x9a{left:133.921531pt;}
.x6{left:137.765269pt;}
.x50{left:139.678118pt;}
.x6e{left:163.836836pt;}
.x88{left:187.356063pt;}
.x98{left:188.796981pt;}
.x89{left:196.962383pt;}
.x97{left:199.358859pt;}
.xf{left:205.920110pt;}
.x9{left:235.358780pt;}
.x21{left:249.921447pt;}
.x22{left:269.281562pt;}
.x23{left:271.681061pt;}
.x7c{left:306.558789pt;}
.x9c{left:307.994160pt;}
.x8d{left:310.241382pt;}
.x7d{left:355.360651pt;}
.x9d{left:364.001010pt;}
.x8e{left:373.600111pt;}
.x16{left:377.761688pt;}
.x18{left:406.080491pt;}
.x8f{left:409.118833pt;}
.x17{left:418.241806pt;}
.x19{left:420.958666pt;}
.x81{left:434.244391pt;}
.x55{left:435.999378pt;}
.x4d{left:438.083443pt;}
.x6f{left:440.642839pt;}
.x44{left:442.242451pt;}
.x4e{left:443.202207pt;}
.x66{left:445.277150pt;}
.x80{left:446.556834pt;}
.x67{left:449.125352pt;}
.x42{left:456.319031pt;}
.x5e{left:457.918643pt;}
.x28{left:463.521860pt;}
.x70{left:465.441400pt;}
.x54{left:469.445005pt;}
.x9e{left:471.352438pt;}
.x8c{left:473.601083pt;}
.x38{left:476.483309pt;}
.x84{left:478.402821pt;}
.x43{left:479.517952pt;}
.x9b{left:480.958256pt;}
.x39{left:487.845118pt;}
.x83{left:491.044342pt;}
.x45{left:493.923610pt;}
.x46{left:502.716901pt;}
.x37{left:507.040462pt;}
.x58{left:509.444454pt;}
.x3a{left:515.203046pt;}
.x57{left:516.162802pt;}
.x56{left:518.237746pt;}
.x2c{left:520.321782pt;}
.x29{left:523.676382pt;}
.x2b{left:536.482427pt;}
.x7e{left:542.396450pt;}
.x68{left:558.401720pt;}
.x72{left:564.644737pt;}
.x91{left:584.958212pt;}
.x5f{left:588.485829pt;}
.x5d{left:594.398681pt;}
.x35{left:595.998293pt;}
.x25{left:598.080608pt;}
.x24{left:601.114697pt;}
.x47{left:607.681173pt;}
.x7f{left:608.960885pt;}
.xa7{left:620.806357pt;}
.x59{left:622.877487pt;}
.xa1{left:639.035158pt;}
.x92{left:648.155079pt;}
.xa{left:666.242192pt;}
.x2{left:668.002231pt;}
.xa8{left:674.243051pt;}
.xb{left:675.201960pt;}
.xa2{left:680.631541pt;}
.x1{left:685.275612pt;}
.x1a{left:724.479555pt;}
.x1c{left:727.206329pt;}
.xd{left:744.642260pt;}
.x9f{left:746.070598pt;}
.xa6{left:747.353461pt;}
.x1b{left:748.481415pt;}
.x90{left:754.399896pt;}
.xa0{left:755.674335pt;}
.xc{left:761.122080pt;}
.x63{left:794.400648pt;}
.x64{left:801.758907pt;}
.x3{left:807.031640pt;}
.x4a{left:808.640922pt;}
.x4b{left:810.882547pt;}
.x48{left:813.438627pt;}
.x85{left:815.042307pt;}
.x6b{left:816.637038pt;}
.x33{left:817.926264pt;}
.x76{left:818.883138pt;}
.x30{left:820.001713pt;}
.x3f{left:821.124763pt;}
.x78{left:822.562267pt;}
.x31{left:824.961120pt;}
.x3d{left:825.926943pt;}
.x51{left:826.879254pt;}
.x5b{left:831.357942pt;}
.x34{left:833.442341pt;}
.x2f{left:834.399214pt;}
.x49{left:840.162654pt;}
.x32{left:842.080876pt;}
.x62{left:844.003485pt;}
.x65{left:847.839842pt;}
.x40{left:849.120119pt;}
.x87{left:859.685826pt;}
.x52{left:865.763720pt;}
.x61{left:867.351996pt;}
.x3e{left:869.919005pt;}
.x27{left:871.995278pt;}
.x1f{left:874.724213pt;}
.x41{left:881.284271pt;}
.x6c{left:884.639997pt;}
.x6a{left:885.763047pt;}
.x1d{left:887.523954pt;}
.x86{left:907.199790pt;}
.x20{left:913.439473pt;}
.x1e{left:919.845333pt;}
.x95{left:921.269402pt;}
.x5a{left:922.886517pt;}
.xa4{left:924.483345pt;}
.x77{left:928.964499pt;}
.x53{left:931.682280pt;}
.x79{left:934.081132pt;}
.x5c{left:935.518636pt;}
.x4c{left:939.040539pt;}
.xa5{left:973.920832pt;}
.xaa{left:975.195272pt;}
.x73{left:976.473765pt;}
.x74{left:987.031048pt;}
.x96{left:1027.350480pt;}
.xa3{left:1028.791924pt;}
.xa9{left:1030.069200pt;}
.x94{left:1032.477811pt;}
.x93{left:1037.916030pt;}
.x69{left:1064.628063pt;}
.x2d{left:1068.149876pt;}
.x60{left:1071.987751pt;}
.x75{left:1094.883906pt;}
.x3c{left:1098.720262pt;}
.x2e{left:1099.681611pt;}
}




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