
    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_43abac24266e782b779034ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_1916e116f6ccdb1ff801458d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_1b9efdcfd9a5e70dba144147.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_de79e3b3527845870ff458a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_6342a84cd17ffb88d8b45dca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_7d3003c8bd3c38a803bacced.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:31.680175px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.079822px;}
.ls0{letter-spacing:0.094301px;}
.ls4{letter-spacing:0.375694px;}
.ls7{letter-spacing:2.159145px;}
.ls5{letter-spacing:2.851308px;}
.ls3{letter-spacing:5.039212px;}
.ls8{letter-spacing:10.799132px;}
.ls2{letter-spacing:12.959118px;}
.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;}
}
.ws7{word-spacing:-26.612208px;}
.ws1{word-spacing:-23.855201px;}
.ws13{word-spacing:-23.840722px;}
.ws0{word-spacing:-23.760900px;}
.ws5{word-spacing:-19.800788px;}
.ws4{word-spacing:-13.860563px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:31.073409px;}
.ws8{word-spacing:47.838703px;}
.wsf{word-spacing:75.876618px;}
.ws9{word-spacing:79.203150px;}
.wse{word-spacing:80.787213px;}
.wsd{word-spacing:88.469919px;}
.wsc{word-spacing:88.707528px;}
.wsa{word-spacing:89.499560px;}
.ws11{word-spacing:107.161862px;}
.wsb{word-spacing:108.508315px;}
.ws10{word-spacing:119.596756px;}
.ws15{word-spacing:190.879592px;}
.ws19{word-spacing:194.839749px;}
.ws17{word-spacing:298.595876px;}
.ws16{word-spacing:299.387907px;}
.ws18{word-spacing:324.815095px;}
.ws1c{word-spacing:331.861199px;}
.ws1e{word-spacing:332.653230px;}
.ws1b{word-spacing:333.445262px;}
.ws14{word-spacing:394.583472px;}
.ws1a{word-spacing:452.249987px;}
.ws1d{word-spacing:472.050774px;}
.ws12{word-spacing:645.030292px;}
.ws6{word-spacing:1570.201708px;}
._64{margin-left:-22.810464px;}
._63{margin-left:-21.023663px;}
._16{margin-left:-16.477711px;}
._e{margin-left:-11.839121px;}
._62{margin-left:-10.653025px;}
._10{margin-left:-9.504360px;}
._4{margin-left:-7.660834px;}
._5{margin-left:-5.823024px;}
._2{margin-left:-3.925691px;}
._6{margin-left:-2.409597px;}
._3{margin-left:-1.140523px;}
._0{width:1.064507px;}
._8{width:2.737237px;}
._d{width:4.311954px;}
._c{width:5.592351px;}
._11{width:6.605159px;}
._b{width:7.699274px;}
._a{width:9.219229px;}
._12{width:10.550582px;}
._f{width:11.623442px;}
._9{width:13.020973px;}
._7{width:14.902818px;}
._60{width:16.304153px;}
._13{width:17.774370px;}
._14{width:18.944120px;}
._5f{width:25.454210px;}
._4e{width:42.063855px;}
._18{width:70.159942px;}
._1d{width:85.208541px;}
._17{width:88.549122px;}
._19{width:97.769358px;}
._1a{width:98.845531px;}
._46{width:100.746407px;}
._1b{width:105.184205px;}
._4b{width:107.085692px;}
._3d{width:108.508315px;}
._1c{width:109.933972px;}
._1e{width:111.233893px;}
._33{width:113.882064px;}
._3c{width:115.680098px;}
._3b{width:117.173111px;}
._2b{width:118.804725px;}
._4a{width:119.828309px;}
._2a{width:120.965611px;}
._23{width:121.972851px;}
._28{width:124.507352px;}
._3e{width:126.180489px;}
._26{width:127.517071px;}
._35{width:128.990898px;}
._2d{width:131.477229px;}
._3f{width:132.492768px;}
._2c{width:134.438779px;}
._2f{width:135.503286px;}
._30{width:137.057553px;}
._39{width:138.843122px;}
._25{width:139.951966px;}
._34{width:141.196816px;}
._3a{width:142.328679px;}
._27{width:143.357701px;}
._29{width:144.941764px;}
._43{width:145.970168px;}
._41{width:147.080250px;}
._24{width:148.867455px;}
._40{width:150.485985px;}
._44{width:151.832439px;}
._31{width:153.216334px;}
._1f{width:156.030205px;}
._2e{width:157.325913px;}
._4d{width:158.992155px;}
._21{width:161.732832px;}
._22{width:165.838092px;}
._32{width:167.118647px;}
._37{width:168.781913px;}
._20{width:170.049163px;}
._36{width:172.662867px;}
._49{width:175.390241px;}
._38{width:177.415056px;}
._4c{width:180.695215px;}
._47{width:183.629225px;}
._42{width:184.713812px;}
._45{width:196.772277px;}
._51{width:264.819135px;}
._50{width:265.859605px;}
._57{width:322.356820px;}
._5b{width:351.661986px;}
._48{width:371.868187px;}
._59{width:383.806399px;}
._52{width:403.844177px;}
._58{width:409.955504px;}
._5a{width:434.363378px;}
._56{width:435.947441px;}
._5c{width:438.627027px;}
._54{width:450.507517px;}
._53{width:472.050774px;}
._5d{width:491.059530px;}
._15{width:575.383683px;}
._4f{width:723.091014px;}
._55{width:727.078289px;}
._61{width:869.745645px;}
._1{width:1695.553076px;}
._5e{width:1910.834281px;}
.fc1{color:rgb(192,25,19);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:55.442250px;}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs4{font-size:79.203150px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980011px;}
.y18{bottom:41.040115px;}
.ye3{bottom:118.980079px;}
.y9f{bottom:120.240074px;}
.y47{bottom:121.320099px;}
.y22{bottom:121.860077px;}
.y72{bottom:124.560036px;}
.yc3{bottom:125.280052px;}
.ye2{bottom:147.600083px;}
.yf0{bottom:148.680039px;}
.y9e{bottom:148.860077px;}
.y46{bottom:149.940033px;}
.yc8{bottom:150.300041px;}
.yc2{bottom:151.020058px;}
.y71{bottom:153.000068px;}
.y37{bottom:154.980079px;}
.yad{bottom:155.520058px;}
.y84{bottom:156.960091px;}
.ye1{bottom:176.040047px;}
.y9d{bottom:176.580093px;}
.yc1{bottom:176.760064px;}
.y4b{bottom:178.380066px;}
.y86{bottom:178.560036px;}
.y17{bottom:178.920043px;}
.y70{bottom:181.620072px;}
.y36{bottom:202.500068px;}
.y9c{bottom:204.300041px;}
.y45{bottom:207.000068px;}
.y16{bottom:207.360077px;}
.yac{bottom:212.220085px;}
.ye0{bottom:214.560036px;}
.yc0{bottom:228.240074px;}
.y9b{bottom:232.020058px;}
.y44{bottom:235.440033px;}
.y4e{bottom:235.620072px;}
.y21{bottom:235.980079px;}
.ydf{bottom:243.000068px;}
.ybf{bottom:253.980079px;}
.y9a{bottom:259.920043px;}
.y35{bottom:264.060036px;}
.y15{bottom:264.420043px;}
.y6f{bottom:267.120072px;}
.yde{bottom:271.620072px;}
.y34{bottom:292.680039px;}
.y14{bottom:293.040047px;}
.y6e{bottom:295.740074px;}
.ydd{bottom:300.060036px;}
.y85{bottom:321.120072px;}
.y20{bottom:321.480079px;}
.y6d{bottom:324.180039px;}
.yab{bottom:325.440033px;}
.ydc{bottom:328.680039px;}
.y83{bottom:329.220085px;}
.ybe{bottom:331.380066px;}
.y99{bottom:343.080093px;}
.y43{bottom:349.560036px;}
.y33{bottom:349.740074px;}
.y13{bottom:350.100083px;}
.y68{bottom:350.640060px;}
.y6c{bottom:352.800041px;}
.ydb{bottom:357.120072px;}
.y82{bottom:358.740074px;}
.y42{bottom:378.180039px;}
.y67{bottom:380.160049px;}
.yaa{bottom:382.140060px;}
.y81{bottom:388.260064px;}
.yda{bottom:395.640060px;}
.y41{bottom:406.620072px;}
.y12{bottom:407.160049px;}
.ybd{bottom:408.600083px;}
.y66{bottom:409.680039px;}
.y80{bottom:417.960091px;}
.yd9{bottom:424.080093px;}
.y32{bottom:435.240074px;}
.y11{bottom:435.600083px;}
.y65{bottom:439.380066px;}
.y7f{bottom:447.480079px;}
.yd8{bottom:452.700096px;}
.y98{bottom:454.140060px;}
.ybc{bottom:460.080093px;}
.y31{bottom:463.860077px;}
.y1f{bottom:464.220085px;}
.ya9{bottom:467.280052px;}
.y64{bottom:468.900055px;}
.y7e{bottom:477.000068px;}
.yd7{bottom:481.140060px;}
.ybb{bottom:485.820099px;}
.y30{bottom:492.300041px;}
.ya8{bottom:495.540047px;}
.y63{bottom:498.420043px;}
.y7d{bottom:509.760064px;}
.yba{bottom:511.560036px;}
.yd6{bottom:519.660049px;}
.y40{bottom:520.740074px;}
.y2f{bottom:520.920043px;}
.y10{bottom:521.280052px;}
.y62{bottom:528.120072px;}
.y97{bottom:537.300041px;}
.y7c{bottom:538.920043px;}
.yd5{bottom:548.100083px;}
.y2e{bottom:549.360077px;}
.yf{bottom:549.720085px;}
.y61{bottom:557.640060px;}
.y96{bottom:565.020058px;}
.y7b{bottom:569.340088px;}
.yd4{bottom:576.720085px;}
.y3f{bottom:577.800041px;}
.y2d{bottom:577.980079px;}
.ye{bottom:578.340088px;}
.y60{bottom:587.160049px;}
.yb9{bottom:588.780052px;}
.y95{bottom:592.740074px;}
.y7a{bottom:597.780052px;}
.yd3{bottom:605.160049px;}
.y2c{bottom:606.420043px;}
.yd{bottom:606.780052px;}
.ya7{bottom:608.940033px;}
.yb8{bottom:614.520058px;}
.y5f{bottom:616.860077px;}
.y94{bottom:620.460091px;}
.yd2{bottom:633.780052px;}
.y3e{bottom:634.860077px;}
.y2b{bottom:635.040047px;}
.yc{bottom:635.400055px;}
.ya6{bottom:637.200096px;}
.yb7{bottom:640.260064px;}
.y5e{bottom:646.380066px;}
.y93{bottom:648.360077px;}
.y79{bottom:654.840088px;}
.yd1{bottom:662.220085px;}
.y2a{bottom:663.480079px;}
.y1e{bottom:663.840088px;}
.ya5{bottom:665.640060px;}
.yb6{bottom:666.000068px;}
.y5d{bottom:675.900055px;}
.y92{bottom:676.080093px;}
.yef{bottom:690.840054px;}
.y3d{bottom:691.920078px;}
.y29{bottom:692.100083px;}
.y1d{bottom:692.460056px;}
.ya4{bottom:693.900055px;}
.yd0{bottom:700.740074px;}
.y91{bottom:703.800076px;}
.y5c{bottom:705.600083px;}
.y78{bottom:711.900055px;}
.y69{bottom:720.540081px;}
.yb{bottom:720.900055px;}
.ya3{bottom:722.340054px;}
.ycf{bottom:729.180073px;}
.y90{bottom:731.520058px;}
.y5b{bottom:735.120072px;}
.y77{bottom:740.520058px;}
.yb5{bottom:743.400055px;}
.yee{bottom:747.900055px;}
.y28{bottom:749.160049px;}
.ya{bottom:749.520058px;}
.ya2{bottom:750.600083px;}
.yce{bottom:757.800076px;}
.y8f{bottom:759.240074px;}
.y5a{bottom:764.640060px;}
.yed{bottom:776.520058px;}
.y27{bottom:777.600083px;}
.y9{bottom:777.960056px;}
.ycd{bottom:786.240074px;}
.y8e{bottom:786.960056px;}
.y59{bottom:794.340054px;}
.yb4{bottom:794.880066px;}
.yec{bottom:804.960056px;}
.y3c{bottom:806.040081px;}
.y26{bottom:806.220051px;}
.yc7{bottom:806.580059px;}
.y8d{bottom:814.680073px;}
.ycc{bottom:814.860077px;}
.yb3{bottom:820.620072px;}
.y58{bottom:823.860077px;}
.y76{bottom:827.100083px;}
.yeb{bottom:833.580059px;}
.y4d{bottom:834.660049px;}
.ya1{bottom:835.560070px;}
.y8c{bottom:842.580059px;}
.ycb{bottom:843.300076px;}
.y57{bottom:853.380066px;}
.y75{bottom:856.620072px;}
.y4a{bottom:863.280052px;}
.y8{bottom:863.640060px;}
.y8b{bottom:870.300076px;}
.yb2{bottom:872.100083px;}
.yca{bottom:881.820065px;}
.y56{bottom:883.080059px;}
.y74{bottom:889.200061px;}
.y25{bottom:891.720051px;}
.y7{bottom:892.080059px;}
.ya0{bottom:892.260064px;}
.yc9{bottom:910.440067px;}
.y55{bottom:912.600083px;}
.y73{bottom:918.540081px;}
.y4c{bottom:920.340054px;}
.y1c{bottom:920.700061px;}
.yb1{bottom:923.580059px;}
.y8a{bottom:925.740074px;}
.yea{bottom:938.880066px;}
.y54{bottom:942.300076px;}
.y3b{bottom:948.780053px;}
.y6{bottom:949.140060px;}
.y89{bottom:953.460056px;}
.ye9{bottom:967.500068px;}
.y53{bottom:971.820065px;}
.y24{bottom:977.400072px;}
.y1b{bottom:977.760064px;}
.yb0{bottom:977.940067px;}
.y88{bottom:981.180073px;}
.ye8{bottom:995.940067px;}
.y52{bottom:1001.340070px;}
.y3a{bottom:1005.840070px;}
.y5{bottom:1006.200061px;}
.ye7{bottom:1024.560070px;}
.y51{bottom:1031.040064px;}
.y23{bottom:1034.460074px;}
.y1a{bottom:1034.820065px;}
.yc6{bottom:1042.740074px;}
.ye6{bottom:1053.000068px;}
.y50{bottom:1060.560070px;}
.y39{bottom:1062.900072px;}
.y19{bottom:1063.260064px;}
.yaf{bottom:1063.440067px;}
.y87{bottom:1064.520058px;}
.yc5{bottom:1071.180073px;}
.ye5{bottom:1081.620072px;}
.y4f{bottom:1090.080059px;}
.y38{bottom:1091.520058px;}
.y4{bottom:1091.880066px;}
.ye4{bottom:1110.060070px;}
.y49{bottom:1119.960065px;}
.yae{bottom:1120.140069px;}
.y3{bottom:1120.320065px;}
.yc4{bottom:1122.840063px;}
.y6b{bottom:1123.020066px;}
.y48{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.y6a{bottom:1151.640069px;}
.h7{height:55.596662px;}
.h6{height:57.534328px;}
.h8{height:64.414315px;}
.h5{height:65.992187px;}
.h2{height:67.837080px;}
.h9{height:69.496123px;}
.ha{height:70.346938px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:89.819996px;}
.x32{left:103.140000px;}
.x2d{left:121.680005px;}
.x35{left:128.159998px;}
.x2f{left:129.959997px;}
.x34{left:135.719999px;}
.x1{left:140.939999px;}
.x20{left:143.280001px;}
.x21{left:145.439999px;}
.x2{left:151.919992px;}
.x30{left:160.020006px;}
.x1f{left:167.759994px;}
.x33{left:170.280001px;}
.x3{left:172.259994px;}
.x11{left:174.240006px;}
.x1e{left:176.580008px;}
.x47{left:189.539996px;}
.x16{left:202.139992px;}
.x2b{left:209.159998px;}
.x2a{left:215.280001px;}
.x3f{left:217.979994px;}
.x14{left:224.639992px;}
.x1d{left:229.139992px;}
.x2e{left:247.860008px;}
.x19{left:252.719999px;}
.x46{left:262.800007px;}
.x5{left:274.319996px;}
.x44{left:278.099997px;}
.x2c{left:283.139992px;}
.x48{left:288.899987px;}
.x26{left:299.160015px;}
.x38{left:302.220017px;}
.x41{left:309.420010px;}
.x3a{left:324.720017px;}
.x43{left:328.500000px;}
.x3c{left:336.060001px;}
.x10{left:338.579990px;}
.x7{left:355.139992px;}
.x3e{left:359.100014px;}
.xf{left:360.360008px;}
.x6{left:367.379998px;}
.x12{left:371.699993px;}
.x37{left:381.600014px;}
.x4{left:417.779983px;}
.x8{left:419.579990px;}
.x9{left:472.139992px;}
.x25{left:479.519989px;}
.x23{left:489.959988px;}
.x15{left:504.899987px;}
.x42{left:520.920010px;}
.xd{left:532.800007px;}
.x1c{left:540.000000px;}
.xb{left:560.699993px;}
.x3b{left:565.920010px;}
.x22{left:572.040012px;}
.x24{left:590.940033px;}
.xa{left:593.639992px;}
.x17{left:634.679970px;}
.x1a{left:640.440033px;}
.x45{left:644.580025px;}
.xc{left:649.440033px;}
.x1b{left:659.700027px;}
.x28{left:667.259994px;}
.x31{left:670.139992px;}
.x39{left:682.740006px;}
.x40{left:701.100014px;}
.x13{left:711.720017px;}
.x27{left:720.360008px;}
.x3d{left:752.580025px;}
.x29{left:776.340019px;}
.x18{left:782.279983px;}
.x36{left:784.620002px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:28.160156pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.070953pt;}
.ls0{letter-spacing:0.083823pt;}
.ls4{letter-spacing:0.333950pt;}
.ls7{letter-spacing:1.919240pt;}
.ls5{letter-spacing:2.534496pt;}
.ls3{letter-spacing:4.479300pt;}
.ls8{letter-spacing:9.599228pt;}
.ls2{letter-spacing:11.519216pt;}
.ws7{word-spacing:-23.655296pt;}
.ws1{word-spacing:-21.204623pt;}
.ws13{word-spacing:-21.191753pt;}
.ws0{word-spacing:-21.120800pt;}
.ws5{word-spacing:-17.600700pt;}
.ws4{word-spacing:-12.320500pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:27.620808pt;}
.ws8{word-spacing:42.523291pt;}
.wsf{word-spacing:67.445882pt;}
.ws9{word-spacing:70.402800pt;}
.wse{word-spacing:71.810856pt;}
.wsd{word-spacing:78.639928pt;}
.wsc{word-spacing:78.851136pt;}
.wsa{word-spacing:79.555164pt;}
.ws11{word-spacing:95.254988pt;}
.wsb{word-spacing:96.451836pt;}
.ws10{word-spacing:106.308228pt;}
.ws15{word-spacing:169.670748pt;}
.ws19{word-spacing:173.190888pt;}
.ws17{word-spacing:265.418556pt;}
.ws16{word-spacing:266.122584pt;}
.ws18{word-spacing:288.724528pt;}
.ws1c{word-spacing:294.987732pt;}
.ws1e{word-spacing:295.691760pt;}
.ws1b{word-spacing:296.395788pt;}
.ws14{word-spacing:350.740864pt;}
.ws1a{word-spacing:401.999988pt;}
.ws1d{word-spacing:419.600688pt;}
.ws12{word-spacing:573.360259pt;}
.ws6{word-spacing:1395.734851pt;}
._64{margin-left:-20.275968pt;}
._63{margin-left:-18.687700pt;}
._16{margin-left:-14.646854pt;}
._e{margin-left:-10.523663pt;}
._62{margin-left:-9.469356pt;}
._10{margin-left:-8.448320pt;}
._4{margin-left:-6.809630pt;}
._5{margin-left:-5.176021pt;}
._2{margin-left:-3.489503pt;}
._6{margin-left:-2.141864pt;}
._3{margin-left:-1.013798pt;}
._0{width:0.946228pt;}
._8{width:2.433100pt;}
._d{width:3.832848pt;}
._c{width:4.970978pt;}
._11{width:5.871252pt;}
._b{width:6.843799pt;}
._a{width:8.194870pt;}
._12{width:9.378295pt;}
._f{width:10.331949pt;}
._9{width:11.574198pt;}
._7{width:13.246949pt;}
._60{width:14.492580pt;}
._13{width:15.799440pt;}
._14{width:16.839218pt;}
._5f{width:22.625964pt;}
._4e{width:37.390094pt;}
._18{width:62.364393pt;}
._1d{width:75.740925pt;}
._17{width:78.710330pt;}
._19{width:86.906096pt;}
._1a{width:87.862694pt;}
._46{width:89.552362pt;}
._1b{width:93.497071pt;}
._4b{width:95.187282pt;}
._3d{width:96.451836pt;}
._1c{width:97.719086pt;}
._1e{width:98.874572pt;}
._33{width:101.228501pt;}
._3c{width:102.826754pt;}
._3b{width:104.153877pt;}
._2b{width:105.604200pt;}
._4a{width:106.514053pt;}
._2a{width:107.524987pt;}
._23{width:108.420312pt;}
._28{width:110.673202pt;}
._3e{width:112.160434pt;}
._26{width:113.348508pt;}
._35{width:114.658576pt;}
._2d{width:116.868648pt;}
._3f{width:117.771349pt;}
._2c{width:119.501137pt;}
._2f{width:120.447365pt;}
._30{width:121.828936pt;}
._39{width:123.416108pt;}
._25{width:124.401748pt;}
._34{width:125.508281pt;}
._3a{width:126.514382pt;}
._27{width:127.429068pt;}
._29{width:128.837124pt;}
._43{width:129.751260pt;}
._41{width:130.738000pt;}
._24{width:132.326627pt;}
._40{width:133.765320pt;}
._44{width:134.962168pt;}
._31{width:136.192297pt;}
._1f{width:138.693516pt;}
._2e{width:139.845256pt;}
._4d{width:141.326360pt;}
._21{width:143.762518pt;}
._22{width:147.411638pt;}
._32{width:148.549908pt;}
._37{width:150.028367pt;}
._20{width:151.154812pt;}
._36{width:153.478104pt;}
._49{width:155.902436pt;}
._38{width:157.702272pt;}
._4c{width:160.617969pt;}
._47{width:163.225977pt;}
._42{width:164.190055pt;}
._45{width:174.908691pt;}
._51{width:235.394787pt;}
._50{width:236.319649pt;}
._57{width:286.539396pt;}
._5b{width:312.588432pt;}
._48{width:330.549500pt;}
._59{width:341.161243pt;}
._52{width:358.972602pt;}
._58{width:364.404893pt;}
._5a{width:386.100781pt;}
._56{width:387.508837pt;}
._5c{width:389.890690pt;}
._54{width:400.451126pt;}
._53{width:419.600688pt;}
._5d{width:436.497360pt;}
._15{width:511.452163pt;}
._4f{width:642.747568pt;}
._55{width:646.291812pt;}
._61{width:773.107240pt;}
._1{width:1507.158290pt;}
._5e{width:1698.519361pt;}
.fs3{font-size:49.282000pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs4{font-size:70.402800pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760010pt;}
.y18{bottom:36.480103pt;}
.ye3{bottom:105.760071pt;}
.y9f{bottom:106.880066pt;}
.y47{bottom:107.840088pt;}
.y22{bottom:108.320069pt;}
.y72{bottom:110.720032pt;}
.yc3{bottom:111.360047pt;}
.ye2{bottom:131.200074pt;}
.yf0{bottom:132.160035pt;}
.y9e{bottom:132.320069pt;}
.y46{bottom:133.280030pt;}
.yc8{bottom:133.600037pt;}
.yc2{bottom:134.240052pt;}
.y71{bottom:136.000061pt;}
.y37{bottom:137.760071pt;}
.yad{bottom:138.240052pt;}
.y84{bottom:139.520081pt;}
.ye1{bottom:156.480042pt;}
.y9d{bottom:156.960083pt;}
.yc1{bottom:157.120057pt;}
.y4b{bottom:158.560059pt;}
.y86{bottom:158.720032pt;}
.y17{bottom:159.040039pt;}
.y70{bottom:161.440064pt;}
.y36{bottom:180.000061pt;}
.y9c{bottom:181.600037pt;}
.y45{bottom:184.000061pt;}
.y16{bottom:184.320069pt;}
.yac{bottom:188.640076pt;}
.ye0{bottom:190.720032pt;}
.yc0{bottom:202.880066pt;}
.y9b{bottom:206.240052pt;}
.y44{bottom:209.280030pt;}
.y4e{bottom:209.440064pt;}
.y21{bottom:209.760071pt;}
.ydf{bottom:216.000061pt;}
.ybf{bottom:225.760071pt;}
.y9a{bottom:231.040039pt;}
.y35{bottom:234.720032pt;}
.y15{bottom:235.040039pt;}
.y6f{bottom:237.440064pt;}
.yde{bottom:241.440064pt;}
.y34{bottom:260.160035pt;}
.y14{bottom:260.480042pt;}
.y6e{bottom:262.880066pt;}
.ydd{bottom:266.720032pt;}
.y85{bottom:285.440064pt;}
.y20{bottom:285.760071pt;}
.y6d{bottom:288.160035pt;}
.yab{bottom:289.280030pt;}
.ydc{bottom:292.160035pt;}
.y83{bottom:292.640076pt;}
.ybe{bottom:294.560059pt;}
.y99{bottom:304.960083pt;}
.y43{bottom:310.720032pt;}
.y33{bottom:310.880066pt;}
.y13{bottom:311.200074pt;}
.y68{bottom:311.680054pt;}
.y6c{bottom:313.600037pt;}
.ydb{bottom:317.440064pt;}
.y82{bottom:318.880066pt;}
.y42{bottom:336.160035pt;}
.y67{bottom:337.920044pt;}
.yaa{bottom:339.680054pt;}
.y81{bottom:345.120057pt;}
.yda{bottom:351.680054pt;}
.y41{bottom:361.440064pt;}
.y12{bottom:361.920044pt;}
.ybd{bottom:363.200074pt;}
.y66{bottom:364.160035pt;}
.y80{bottom:371.520081pt;}
.yd9{bottom:376.960083pt;}
.y32{bottom:386.880066pt;}
.y11{bottom:387.200074pt;}
.y65{bottom:390.560059pt;}
.y7f{bottom:397.760071pt;}
.yd8{bottom:402.400086pt;}
.y98{bottom:403.680054pt;}
.ybc{bottom:408.960083pt;}
.y31{bottom:412.320069pt;}
.y1f{bottom:412.640076pt;}
.ya9{bottom:415.360047pt;}
.y64{bottom:416.800049pt;}
.y7e{bottom:424.000061pt;}
.yd7{bottom:427.680054pt;}
.ybb{bottom:431.840088pt;}
.y30{bottom:437.600037pt;}
.ya8{bottom:440.480042pt;}
.y63{bottom:443.040039pt;}
.y7d{bottom:453.120057pt;}
.yba{bottom:454.720032pt;}
.yd6{bottom:461.920044pt;}
.y40{bottom:462.880066pt;}
.y2f{bottom:463.040039pt;}
.y10{bottom:463.360047pt;}
.y62{bottom:469.440064pt;}
.y97{bottom:477.600037pt;}
.y7c{bottom:479.040039pt;}
.yd5{bottom:487.200074pt;}
.y2e{bottom:488.320069pt;}
.yf{bottom:488.640076pt;}
.y61{bottom:495.680054pt;}
.y96{bottom:502.240052pt;}
.y7b{bottom:506.080079pt;}
.yd4{bottom:512.640076pt;}
.y3f{bottom:513.600037pt;}
.y2d{bottom:513.760071pt;}
.ye{bottom:514.080079pt;}
.y60{bottom:521.920044pt;}
.yb9{bottom:523.360047pt;}
.y95{bottom:526.880066pt;}
.y7a{bottom:531.360047pt;}
.yd3{bottom:537.920044pt;}
.y2c{bottom:539.040039pt;}
.yd{bottom:539.360047pt;}
.ya7{bottom:541.280030pt;}
.yb8{bottom:546.240052pt;}
.y5f{bottom:548.320069pt;}
.y94{bottom:551.520081pt;}
.yd2{bottom:563.360047pt;}
.y3e{bottom:564.320069pt;}
.y2b{bottom:564.480042pt;}
.yc{bottom:564.800049pt;}
.ya6{bottom:566.400086pt;}
.yb7{bottom:569.120057pt;}
.y5e{bottom:574.560059pt;}
.y93{bottom:576.320069pt;}
.y79{bottom:582.080079pt;}
.yd1{bottom:588.640076pt;}
.y2a{bottom:589.760071pt;}
.y1e{bottom:590.080079pt;}
.ya5{bottom:591.680054pt;}
.yb6{bottom:592.000061pt;}
.y5d{bottom:600.800049pt;}
.y92{bottom:600.960083pt;}
.yef{bottom:614.080048pt;}
.y3d{bottom:615.040070pt;}
.y29{bottom:615.200074pt;}
.y1d{bottom:615.520050pt;}
.ya4{bottom:616.800049pt;}
.yd0{bottom:622.880066pt;}
.y91{bottom:625.600068pt;}
.y5c{bottom:627.200074pt;}
.y78{bottom:632.800049pt;}
.y69{bottom:640.480072pt;}
.yb{bottom:640.800049pt;}
.ya3{bottom:642.080048pt;}
.ycf{bottom:648.160065pt;}
.y90{bottom:650.240052pt;}
.y5b{bottom:653.440064pt;}
.y77{bottom:658.240052pt;}
.yb5{bottom:660.800049pt;}
.yee{bottom:664.800049pt;}
.y28{bottom:665.920044pt;}
.ya{bottom:666.240052pt;}
.ya2{bottom:667.200074pt;}
.yce{bottom:673.600068pt;}
.y8f{bottom:674.880066pt;}
.y5a{bottom:679.680054pt;}
.yed{bottom:690.240052pt;}
.y27{bottom:691.200074pt;}
.y9{bottom:691.520050pt;}
.ycd{bottom:698.880066pt;}
.y8e{bottom:699.520050pt;}
.y59{bottom:706.080048pt;}
.yb4{bottom:706.560059pt;}
.yec{bottom:715.520050pt;}
.y3c{bottom:716.480072pt;}
.y26{bottom:716.640046pt;}
.yc7{bottom:716.960053pt;}
.y8d{bottom:724.160065pt;}
.ycc{bottom:724.320069pt;}
.yb3{bottom:729.440064pt;}
.y58{bottom:732.320069pt;}
.y76{bottom:735.200074pt;}
.yeb{bottom:740.960053pt;}
.y4d{bottom:741.920044pt;}
.ya1{bottom:742.720063pt;}
.y8c{bottom:748.960053pt;}
.ycb{bottom:749.600068pt;}
.y57{bottom:758.560059pt;}
.y75{bottom:761.440064pt;}
.y4a{bottom:767.360047pt;}
.y8{bottom:767.680054pt;}
.y8b{bottom:773.600068pt;}
.yb2{bottom:775.200074pt;}
.yca{bottom:783.840058pt;}
.y56{bottom:784.960053pt;}
.y74{bottom:790.400055pt;}
.y25{bottom:792.640046pt;}
.y7{bottom:792.960053pt;}
.ya0{bottom:793.120057pt;}
.yc9{bottom:809.280060pt;}
.y55{bottom:811.200074pt;}
.y73{bottom:816.480072pt;}
.y4c{bottom:818.080048pt;}
.y1c{bottom:818.400055pt;}
.yb1{bottom:820.960053pt;}
.y8a{bottom:822.880066pt;}
.yea{bottom:834.560059pt;}
.y54{bottom:837.600068pt;}
.y3b{bottom:843.360047pt;}
.y6{bottom:843.680054pt;}
.y89{bottom:847.520050pt;}
.ye9{bottom:860.000061pt;}
.y53{bottom:863.840058pt;}
.y24{bottom:868.800064pt;}
.y1b{bottom:869.120057pt;}
.yb0{bottom:869.280060pt;}
.y88{bottom:872.160065pt;}
.ye8{bottom:885.280060pt;}
.y52{bottom:890.080063pt;}
.y3a{bottom:894.080063pt;}
.y5{bottom:894.400055pt;}
.ye7{bottom:910.720063pt;}
.y51{bottom:916.480057pt;}
.y23{bottom:919.520066pt;}
.y1a{bottom:919.840058pt;}
.yc6{bottom:926.880066pt;}
.ye6{bottom:936.000061pt;}
.y50{bottom:942.720063pt;}
.y39{bottom:944.800064pt;}
.y19{bottom:945.120057pt;}
.yaf{bottom:945.280060pt;}
.y87{bottom:946.240052pt;}
.yc5{bottom:952.160065pt;}
.ye5{bottom:961.440064pt;}
.y4f{bottom:968.960053pt;}
.y38{bottom:970.240052pt;}
.y4{bottom:970.560059pt;}
.ye4{bottom:986.720063pt;}
.y49{bottom:995.520058pt;}
.yae{bottom:995.680062pt;}
.y3{bottom:995.840058pt;}
.yc4{bottom:998.080056pt;}
.y6b{bottom:998.240059pt;}
.y48{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.y6a{bottom:1023.680062pt;}
.h7{height:49.419255pt;}
.h6{height:51.141625pt;}
.h8{height:57.257169pt;}
.h5{height:58.659722pt;}
.h2{height:60.299627pt;}
.h9{height:61.774332pt;}
.ha{height:62.530612pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:79.839996pt;}
.x32{left:91.680000pt;}
.x2d{left:108.160004pt;}
.x35{left:113.919998pt;}
.x2f{left:115.519997pt;}
.x34{left:120.639999pt;}
.x1{left:125.279999pt;}
.x20{left:127.360001pt;}
.x21{left:129.279999pt;}
.x2{left:135.039993pt;}
.x30{left:142.240005pt;}
.x1f{left:149.119995pt;}
.x33{left:151.360001pt;}
.x3{left:153.119995pt;}
.x11{left:154.880005pt;}
.x1e{left:156.960007pt;}
.x47{left:168.479996pt;}
.x16{left:179.679993pt;}
.x2b{left:185.919998pt;}
.x2a{left:191.360001pt;}
.x3f{left:193.759995pt;}
.x14{left:199.679993pt;}
.x1d{left:203.679993pt;}
.x2e{left:220.320007pt;}
.x19{left:224.639999pt;}
.x46{left:233.600006pt;}
.x5{left:243.839996pt;}
.x44{left:247.199997pt;}
.x2c{left:251.679993pt;}
.x48{left:256.799988pt;}
.x26{left:265.920013pt;}
.x38{left:268.640015pt;}
.x41{left:275.040009pt;}
.x3a{left:288.640015pt;}
.x43{left:292.000000pt;}
.x3c{left:298.720001pt;}
.x10{left:300.959991pt;}
.x7{left:315.679993pt;}
.x3e{left:319.200012pt;}
.xf{left:320.320007pt;}
.x6{left:326.559998pt;}
.x12{left:330.399994pt;}
.x37{left:339.200012pt;}
.x4{left:371.359985pt;}
.x8{left:372.959991pt;}
.x9{left:419.679993pt;}
.x25{left:426.239990pt;}
.x23{left:435.519989pt;}
.x15{left:448.799988pt;}
.x42{left:463.040009pt;}
.xd{left:473.600006pt;}
.x1c{left:480.000000pt;}
.xb{left:498.399994pt;}
.x3b{left:503.040009pt;}
.x22{left:508.480011pt;}
.x24{left:525.280029pt;}
.xa{left:527.679993pt;}
.x17{left:564.159973pt;}
.x1a{left:569.280029pt;}
.x45{left:572.960022pt;}
.xc{left:577.280029pt;}
.x1b{left:586.400024pt;}
.x28{left:593.119995pt;}
.x31{left:595.679993pt;}
.x39{left:606.880005pt;}
.x40{left:623.200012pt;}
.x13{left:632.640015pt;}
.x27{left:640.320007pt;}
.x3d{left:668.960022pt;}
.x29{left:690.080017pt;}
.x18{left:695.359985pt;}
.x36{left:697.440002pt;}
}




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