
    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_989d5fca900824cec6cea7f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156000;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_353d0e67aaf4d201fc8870e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_5300a8d38b12130d3a652d8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.185000;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_a0cdf40f9fc9fbb70e3079c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_4c3ca48cdb49b429cf55cf65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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;}
.m2{transform:matrix(0.241482,0.000000,-0.064705,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064705,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064705,0.241482,0,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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006833px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(38,38,38),0 0.015em rgb(38,38,38),0.015em 0 rgb(38,38,38),0 -0.015em  rgb(38,38,38);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(38,38,38);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-43.680000px;}
.ws5{word-spacing:-24.960000px;}
.ws4{word-spacing:-17.772228px;}
.ws3{word-spacing:-17.765395px;}
.ws2{word-spacing:-17.160000px;}
.ws6{word-spacing:-5.280600px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-16.726200px;}
._14{margin-left:-13.908000px;}
._a{margin-left:-12.480000px;}
._27{margin-left:-11.220000px;}
._f{margin-left:-10.200000px;}
._7{margin-left:-8.313600px;}
._4{margin-left:-7.260000px;}
._1{margin-left:-5.846400px;}
._8{margin-left:-4.841400px;}
._0{margin-left:-3.840000px;}
._2{margin-left:-2.760000px;}
._3{margin-left:-1.680000px;}
._23{width:1.008000px;}
._b{width:2.241000px;}
._c{width:4.221000px;}
._25{width:6.030000px;}
._15{width:7.362000px;}
._9{width:11.951400px;}
._d{width:12.982200px;}
._19{width:16.576800px;}
._24{width:19.374600px;}
._28{width:25.912200px;}
._10{width:30.142200px;}
._1a{width:32.472000px;}
._29{width:41.956200px;}
._1e{width:45.718200px;}
._1c{width:53.622000px;}
._16{width:56.592000px;}
._22{width:63.388200px;}
._1d{width:66.026400px;}
._18{width:70.452000px;}
._12{width:74.233800px;}
._20{width:82.749000px;}
._13{width:90.842400px;}
._21{width:117.189000px;}
._e{width:140.353800px;}
._1b{width:142.248000px;}
._1f{width:150.843000px;}
._11{width:153.337800px;}
._26{width:173.988000px;}
._6{width:198.838200px;}
._5{width:1378.047000px;}
.fc8{color:rgb(254,169,51);}
.fc6{color:rgb(35,31,31);}
.fc4{color:rgb(255,201,129);}
.fc7{color:transparent;}
.fc2{color:rgb(230,133,0);}
.fc3{color:rgb(255,169,51);}
.fc1{color:rgb(44,49,61);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs6{font-size:21.373020px;}
.fs7{font-size:30.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:68.328443px;}
.fs5{font-size:83.999952px;}
.fs8{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.fs3{font-size:96.000048px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:168.000000px;}
.y2f{bottom:-18.290772px;}
.y0{bottom:0.000000px;}
.y97{bottom:0.045354px;}
.y2e{bottom:5.709204px;}
.y6a{bottom:8.500284px;}
.y4c{bottom:19.844892px;}
.y6f{bottom:28.030650px;}
.y2d{bottom:29.709216px;}
.y69{bottom:32.500260px;}
.y6e{bottom:33.373950px;}
.y4b{bottom:43.844760px;}
.y2c{bottom:53.709120px;}
.y68{bottom:56.500200px;}
.y4a{bottom:67.844880px;}
.y2b{bottom:77.709240px;}
.y67{bottom:80.500320px;}
.y8f{bottom:86.880000px;}
.y49{bottom:91.845000px;}
.y70{bottom:97.124700px;}
.y2a{bottom:101.709360px;}
.y66{bottom:104.500440px;}
.y8e{bottom:107.880000px;}
.y48{bottom:115.844760px;}
.y29{bottom:125.709120px;}
.y65{bottom:128.500200px;}
.y8d{bottom:128.880000px;}
.y47{bottom:139.844880px;}
.y28{bottom:149.709240px;}
.y8c{bottom:149.880000px;}
.y64{bottom:152.500320px;}
.y46{bottom:163.845000px;}
.yc{bottom:170.880000px;}
.y27{bottom:173.709360px;}
.y63{bottom:176.500440px;}
.y45{bottom:187.844760px;}
.yb{bottom:191.880000px;}
.y26{bottom:197.709120px;}
.y62{bottom:200.500200px;}
.y44{bottom:211.844880px;}
.ya{bottom:212.880000px;}
.y25{bottom:221.709240px;}
.y61{bottom:224.500320px;}
.y9{bottom:233.880000px;}
.y43{bottom:235.845000px;}
.y24{bottom:245.709360px;}
.y60{bottom:248.500440px;}
.y9a{bottom:254.330646px;}
.y8b{bottom:254.880000px;}
.y42{bottom:259.844760px;}
.y23{bottom:269.709120px;}
.y5f{bottom:272.500200px;}
.yb3{bottom:275.876890px;}
.y8{bottom:275.880000px;}
.y41{bottom:283.844880px;}
.y22{bottom:293.709240px;}
.y5e{bottom:296.500320px;}
.yb2{bottom:296.877676px;}
.y7{bottom:296.880000px;}
.y40{bottom:307.845000px;}
.y99{bottom:311.917146px;}
.y21{bottom:317.709360px;}
.yb1{bottom:317.876750px;}
.y8a{bottom:317.880000px;}
.ya9{bottom:318.253146px;}
.y5d{bottom:320.500440px;}
.y3f{bottom:331.844760px;}
.yb0{bottom:338.877536px;}
.y6{bottom:338.880000px;}
.y98{bottom:338.917146px;}
.y20{bottom:341.709120px;}
.y5c{bottom:344.500200px;}
.y6d{bottom:355.519800px;}
.y3e{bottom:355.844880px;}
.yaf{bottom:359.878322px;}
.y5{bottom:359.880000px;}
.y1f{bottom:365.709600px;}
.yab{bottom:366.131646px;}
.y5b{bottom:368.499600px;}
.y3d{bottom:379.843200px;}
.ya0{bottom:380.876861px;}
.yae{bottom:380.877397px;}
.y4{bottom:380.880000px;}
.y6c{bottom:385.520400px;}
.y1e{bottom:389.710800px;}
.y5a{bottom:392.500800px;}
.y9b{bottom:401.834646px;}
.yad{bottom:401.878183px;}
.y3{bottom:401.880000px;}
.yaa{bottom:402.131646px;}
.y3c{bottom:403.844400px;}
.y1d{bottom:413.708400px;}
.yb4{bottom:415.924146px;}
.y59{bottom:416.502000px;}
.y9f{bottom:422.876721px;}
.ya6{bottom:422.877429px;}
.y2{bottom:422.880000px;}
.y3b{bottom:427.845600px;}
.y6b{bottom:428.961600px;}
.y1c{bottom:437.709600px;}
.y58{bottom:440.499600px;}
.ya5{bottom:443.876504px;}
.y95{bottom:443.880000px;}
.y3a{bottom:451.843200px;}
.y1b{bottom:461.710800px;}
.y57{bottom:464.500800px;}
.ya4{bottom:464.877290px;}
.y1{bottom:464.880000px;}
.y39{bottom:475.844400px;}
.y1a{bottom:485.708400px;}
.y89{bottom:485.880000px;}
.y56{bottom:488.502000px;}
.y38{bottom:499.845600px;}
.y94{bottom:506.880000px;}
.y19{bottom:509.709600px;}
.y55{bottom:512.499600px;}
.y37{bottom:523.843200px;}
.y88{bottom:527.880000px;}
.y18{bottom:533.710800px;}
.y54{bottom:536.500800px;}
.y36{bottom:547.844400px;}
.y87{bottom:548.880000px;}
.y17{bottom:557.708400px;}
.y53{bottom:560.502000px;}
.y10{bottom:569.859000px;}
.y86{bottom:569.880000px;}
.y35{bottom:571.845600px;}
.y16{bottom:581.709600px;}
.y52{bottom:584.499600px;}
.y85{bottom:590.880000px;}
.y34{bottom:595.843200px;}
.y15{bottom:605.710800px;}
.y51{bottom:608.500800px;}
.y93{bottom:611.880000px;}
.y33{bottom:619.844400px;}
.y14{bottom:629.708400px;}
.y50{bottom:632.502000px;}
.y84{bottom:632.880000px;}
.y32{bottom:643.845600px;}
.y13{bottom:653.709600px;}
.y83{bottom:653.880000px;}
.y4f{bottom:656.499600px;}
.y31{bottom:667.843200px;}
.ya3{bottom:674.878302px;}
.y82{bottom:674.880000px;}
.y12{bottom:677.710800px;}
.y4e{bottom:680.500800px;}
.y30{bottom:691.844400px;}
.y81{bottom:695.880000px;}
.y11{bottom:701.708400px;}
.y4d{bottom:704.502000px;}
.y80{bottom:716.880000px;}
.y7f{bottom:737.880000px;}
.y7e{bottom:758.880000px;}
.y7d{bottom:779.880000px;}
.y7c{bottom:800.880000px;}
.y92{bottom:821.880000px;}
.y7b{bottom:842.880000px;}
.y7a{bottom:863.880000px;}
.y79{bottom:884.880000px;}
.ya2{bottom:905.878389px;}
.y78{bottom:905.880000px;}
.y77{bottom:926.880000px;}
.y9e{bottom:947.879253px;}
.yf{bottom:947.880000px;}
.y76{bottom:968.880000px;}
.ye{bottom:989.880000px;}
.y75{bottom:1010.880000px;}
.yac{bottom:1030.341000px;}
.ya8{bottom:1031.878095px;}
.y74{bottom:1031.880000px;}
.ya7{bottom:1052.878881px;}
.yd{bottom:1052.880000px;}
.ya1{bottom:1066.341000px;}
.y73{bottom:1073.880000px;}
.y91{bottom:1094.880000px;}
.y9d{bottom:1102.341000px;}
.y72{bottom:1109.601000px;}
.y96{bottom:1115.880000px;}
.y71{bottom:1136.601000px;}
.y90{bottom:1136.880000px;}
.y9c{bottom:1138.341000px;}
.ha{height:15.816035px;}
.hb{height:22.950000px;}
.h3{height:50.160000px;}
.he{height:50.490000px;}
.hd{height:60.456000px;}
.h4{height:62.304000px;}
.h10{height:64.502050px;}
.h9{height:79.295955px;}
.hc{height:82.440000px;}
.h8{height:82.620000px;}
.h2{height:87.936000px;}
.h7{height:90.624045px;}
.h5{height:153.888000px;}
.h6{height:294.741000px;}
.hf{height:1262.834646px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:294.741000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x5d{left:-215.921562px;}
.x5c{left:-212.837550px;}
.x5e{left:-211.601562px;}
.x4f{left:-202.736778px;}
.x51{left:-200.960790px;}
.x50{left:-198.416778px;}
.xa8{left:-190.029592px;}
.xa7{left:-186.945590px;}
.xa6{left:-185.709592px;}
.x5a{left:-184.477758px;}
.x58{left:-180.637746px;}
.x59{left:-179.005758px;}
.x5b{left:-176.353746px;}
.x54{left:-171.292974px;}
.x53{left:-166.840962px;}
.x52{left:-164.404986px;}
.xa4{left:-158.585766px;}
.xa2{left:-154.781790px;}
.xa3{left:-153.113730px;}
.xa5{left:-150.461610px;}
.x55{left:-144.777930px;}
.x56{left:-143.650050px;}
.x57{left:-141.105930px;}
.x1a{left:-131.557290px;}
.x1c{left:-129.157170px;}
.x1b{left:-127.921290px;}
.xa0{left:-118.886010px;}
.xa1{left:-117.758130px;}
.x9f{left:-115.214010px;}
.x5f{left:-113.982090px;}
.x60{left:-109.493970px;}
.x61{left:-107.718090px;}
.x17{left:-95.452170px;}
.x19{left:-93.052050px;}
.x18{left:-91.816170px;}
.xaa{left:-88.090170px;}
.xa9{left:-83.638050px;}
.xab{left:-81.826170px;}
.xe9{left:-80.675250px;}
.x69{left:-74.930370px;}
.x68{left:-71.846250px;}
.x6a{left:-70.610370px;}
.x15{left:-64.692330px;}
.x13{left:-60.888210px;}
.x14{left:-59.220330px;}
.x16{left:-56.568210px;}
.xb5{left:-49.038450px;}
.xb4{left:-45.954330px;}
.xb3{left:-44.718450px;}
.x66{left:-43.486530px;}
.x64{left:-39.646410px;}
.x65{left:-38.014530px;}
.x67{left:-35.362410px;}
.x10{left:-25.640610px;}
.x12{left:-23.864370px;}
.x11{left:-21.320610px;}
.xb1{left:-17.594610px;}
.xaf{left:-13.790490px;}
.xb0{left:-12.122610px;}
.xb2{left:-9.470490px;}
.x62{left:-3.786810px;}
.x63{left:-2.658570px;}
.x0{left:0.000000px;}
.x1f{left:5.803230px;}
.x1e{left:10.255350px;}
.x1d{left:12.691470px;}
.xad{left:22.105110px;}
.xae{left:23.233350px;}
.xac{left:25.777110px;}
.x6b{left:27.009030px;}
.x6c{left:31.497150px;}
.x6d{left:33.273030px;}
.xea{left:41.927430px;}
.x27{left:45.538950px;}
.x29{left:47.939070px;}
.x28{left:49.174950px;}
.xb7{left:52.900950px;}
.xb6{left:57.353070px;}
.xb8{left:59.164950px;}
.x76{left:66.061110px;}
.x75{left:69.144870px;}
.x77{left:70.381110px;}
.x25{left:76.298790px;}
.x23{left:80.102910px;}
.x24{left:81.770790px;}
.x26{left:84.422910px;}
.xc2{left:91.953030px;}
.xc1{left:95.036790px;}
.xc0{left:96.273030px;}
.x73{left:97.504590px;}
.x71{left:101.344710px;}
.x72{left:102.976590px;}
.x74{left:105.628710px;}
.x20{left:115.350870px;}
.x22{left:117.126750px;}
.x21{left:119.670870px;}
.xbe{left:123.396870px;}
.xbc{left:127.200630px;}
.xbd{left:128.868870px;}
.xbf{left:131.520630px;}
.xd{left:133.908900px;}
.x6e{left:137.204670px;}
.x6f{left:138.332550px;}
.x70{left:140.876670px;}
.x2c{left:146.794710px;}
.x2b{left:151.246470px;}
.x2a{left:153.682590px;}
.xeb{left:160.299000px;}
.xba{left:163.096590px;}
.xbb{left:164.224470px;}
.xb9{left:166.768590px;}
.x78{left:168.000510px;}
.x79{left:172.489350px;}
.x7a{left:174.264150px;}
.x32{left:186.529350px;}
.x34{left:188.930550px;}
.x33{left:190.165350px;}
.xc4{left:193.891350px;}
.xc3{left:198.344550px;}
.xc5{left:200.155350px;}
.x82{left:207.052950px;}
.x81{left:210.134550px;}
.x5{left:212.140500px;}
.x3{left:218.022000px;}
.x2f{left:221.092950px;}
.x30{left:222.763350px;}
.x31{left:225.412950px;}
.x4{left:229.489500px;}
.xcf{left:232.944150px;}
.xce{left:236.029350px;}
.xcd{left:237.264150px;}
.x7f{left:238.495350px;}
.x9{left:242.904000px;}
.x7e{left:243.967350px;}
.x80{left:246.620550px;}
.xf8{left:253.149487px;}
.x2d{left:256.340550px;}
.x2e{left:258.118950px;}
.x6{left:261.466500px;}
.xcb{left:264.386550px;}
.xc9{left:268.191750px;}
.xca{left:269.858550px;}
.xcc{left:272.511750px;}
.x7b{left:278.196150px;}
.x7c{left:279.322950px;}
.x7d{left:281.868150px;}
.x35{left:287.786550px;}
.xb{left:292.132500px;}
.x36{left:294.050550px;}
.xf{left:295.419000px;}
.xc7{left:304.087350px;}
.xc8{left:305.214150px;}
.xc6{left:307.759350px;}
.x83{left:308.990550px;}
.x84{left:313.479750px;}
.x85{left:315.254550px;}
.xc{left:320.443500px;}
.x3c{left:327.523350px;}
.x3e{left:329.920950px;}
.x3d{left:331.159350px;}
.xa{left:334.099500px;}
.xd0{left:339.334950px;}
.xd1{left:341.149350px;}
.x8e{left:348.043350px;}
.x8d{left:351.128550px;}
.x2{left:352.678500px;}
.x3a{left:358.281750px;}
.x1{left:362.391000px;}
.x39{left:363.753750px;}
.xf7{left:365.365691px;}
.x3b{left:366.406950px;}
.xe{left:372.313500px;}
.xdb{left:373.934550px;}
.xda{left:377.019750px;}
.xd9{left:378.254550px;}
.x8b{left:379.485750px;}
.x89{left:383.326950px;}
.x8a{left:384.957750px;}
.x8c{left:387.610950px;}
.x7{left:393.516000px;}
.x37{left:397.334550px;}
.x38{left:399.109350px;}
.x8{left:401.238000px;}
.xec{left:402.970865px;}
.xd7{left:405.380550px;}
.xd5{left:409.182150px;}
.xd6{left:410.852550px;}
.xf0{left:412.126500px;}
.xd8{left:413.502150px;}
.x86{left:419.186550px;}
.x87{left:420.313350px;}
.x88{left:422.858550px;}
.x41{left:428.776950px;}
.x40{left:433.230150px;}
.x3f{left:435.663750px;}
.xf1{left:439.104000px;}
.xd3{left:445.077750px;}
.xd4{left:446.208150px;}
.xd2{left:448.749750px;}
.x8f{left:449.984550px;}
.x90{left:454.470150px;}
.x91{left:456.248550px;}
.x49{left:468.513750px;}
.x4b{left:470.911350px;}
.x4a{left:472.149750px;}
.xdd{left:475.875750px;}
.xdc{left:480.325350px;}
.xde{left:482.139750px;}
.xf9{left:485.469000px;}
.x9a{left:489.033750px;}
.x99{left:492.118950px;}
.x9b{left:493.353750px;}
.x47{left:499.272150px;}
.x45{left:503.077350px;}
.x46{left:504.744150px;}
.x48{left:507.397350px;}
.xe8{left:514.924950px;}
.xe7{left:518.010150px;}
.xe6{left:519.244950px;}
.x97{left:520.479750px;}
.x95{left:524.317350px;}
.x96{left:525.951750px;}
.x98{left:528.601350px;}
.xf2{left:533.814000px;}
.x42{left:538.324950px;}
.x44{left:540.099750px;}
.x43{left:542.644950px;}
.xe4{left:546.370950px;}
.xe2{left:550.176150px;}
.xe3{left:551.842950px;}
.xe5{left:554.496150px;}
.xfc{left:556.404850px;}
.x92{left:560.176950px;}
.x93{left:561.307350px;}
.x94{left:563.848950px;}
.x4e{left:569.767350px;}
.xf3{left:572.937139px;}
.x4d{left:574.220550px;}
.x4c{left:576.657750px;}
.xe0{left:586.071750px;}
.xe1{left:587.198550px;}
.xdf{left:589.743750px;}
.x9c{left:590.974950px;}
.x9d{left:595.460550px;}
.x9e{left:597.238950px;}
.xfd{left:608.941066px;}
.xfe{left:621.528000px;}
.xfa{left:626.100440px;}
.xf5{left:644.364000px;}
.xed{left:665.863500px;}
.xee{left:674.577493px;}
.xfb{left:679.575000px;}
.xef{left:718.119000px;}
.xf6{left:738.690000px;}
.xf4{left:743.958000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.006074pt;}
.ws0{word-spacing:-38.826667pt;}
.ws5{word-spacing:-22.186667pt;}
.ws4{word-spacing:-15.797536pt;}
.ws3{word-spacing:-15.791462pt;}
.ws2{word-spacing:-15.253333pt;}
.ws6{word-spacing:-4.693867pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-14.867733pt;}
._14{margin-left:-12.362667pt;}
._a{margin-left:-11.093333pt;}
._27{margin-left:-9.973333pt;}
._f{margin-left:-9.066667pt;}
._7{margin-left:-7.389867pt;}
._4{margin-left:-6.453333pt;}
._1{margin-left:-5.196800pt;}
._8{margin-left:-4.303467pt;}
._0{margin-left:-3.413333pt;}
._2{margin-left:-2.453333pt;}
._3{margin-left:-1.493333pt;}
._23{width:0.896000pt;}
._b{width:1.992000pt;}
._c{width:3.752000pt;}
._25{width:5.360000pt;}
._15{width:6.544000pt;}
._9{width:10.623467pt;}
._d{width:11.539733pt;}
._19{width:14.734933pt;}
._24{width:17.221867pt;}
._28{width:23.033067pt;}
._10{width:26.793067pt;}
._1a{width:28.864000pt;}
._29{width:37.294400pt;}
._1e{width:40.638400pt;}
._1c{width:47.664000pt;}
._16{width:50.304000pt;}
._22{width:56.345067pt;}
._1d{width:58.690133pt;}
._18{width:62.624000pt;}
._12{width:65.985600pt;}
._20{width:73.554667pt;}
._13{width:80.748800pt;}
._21{width:104.168000pt;}
._e{width:124.758933pt;}
._1b{width:126.442667pt;}
._1f{width:134.082667pt;}
._11{width:136.300267pt;}
._26{width:154.656000pt;}
._6{width:176.745067pt;}
._5{width:1224.930667pt;}
.fs6{font-size:18.998240pt;}
.fs7{font-size:26.666667pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:60.736394pt;}
.fs5{font-size:74.666624pt;}
.fs8{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.fs3{font-size:85.333376pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:149.333333pt;}
.y2f{bottom:-16.258464pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:0.040315pt;}
.y2e{bottom:5.074848pt;}
.y6a{bottom:7.555808pt;}
.y4c{bottom:17.639904pt;}
.y6f{bottom:24.916133pt;}
.y2d{bottom:26.408192pt;}
.y69{bottom:28.889120pt;}
.y6e{bottom:29.665733pt;}
.y4b{bottom:38.973120pt;}
.y2c{bottom:47.741440pt;}
.y68{bottom:50.222400pt;}
.y4a{bottom:60.306560pt;}
.y2b{bottom:69.074880pt;}
.y67{bottom:71.555840pt;}
.y8f{bottom:77.226667pt;}
.y49{bottom:81.640000pt;}
.y70{bottom:86.333067pt;}
.y2a{bottom:90.408320pt;}
.y66{bottom:92.889280pt;}
.y8e{bottom:95.893333pt;}
.y48{bottom:102.973120pt;}
.y29{bottom:111.741440pt;}
.y65{bottom:114.222400pt;}
.y8d{bottom:114.560000pt;}
.y47{bottom:124.306560pt;}
.y28{bottom:133.074880pt;}
.y8c{bottom:133.226667pt;}
.y64{bottom:135.555840pt;}
.y46{bottom:145.640000pt;}
.yc{bottom:151.893333pt;}
.y27{bottom:154.408320pt;}
.y63{bottom:156.889280pt;}
.y45{bottom:166.973120pt;}
.yb{bottom:170.560000pt;}
.y26{bottom:175.741440pt;}
.y62{bottom:178.222400pt;}
.y44{bottom:188.306560pt;}
.ya{bottom:189.226667pt;}
.y25{bottom:197.074880pt;}
.y61{bottom:199.555840pt;}
.y9{bottom:207.893333pt;}
.y43{bottom:209.640000pt;}
.y24{bottom:218.408320pt;}
.y60{bottom:220.889280pt;}
.y9a{bottom:226.071685pt;}
.y8b{bottom:226.560000pt;}
.y42{bottom:230.973120pt;}
.y23{bottom:239.741440pt;}
.y5f{bottom:242.222400pt;}
.yb3{bottom:245.223902pt;}
.y8{bottom:245.226667pt;}
.y41{bottom:252.306560pt;}
.y22{bottom:261.074880pt;}
.y5e{bottom:263.555840pt;}
.yb2{bottom:263.891268pt;}
.y7{bottom:263.893333pt;}
.y40{bottom:273.640000pt;}
.y99{bottom:277.259685pt;}
.y21{bottom:282.408320pt;}
.yb1{bottom:282.557112pt;}
.y8a{bottom:282.560000pt;}
.ya9{bottom:282.891685pt;}
.y5d{bottom:284.889280pt;}
.y3f{bottom:294.973120pt;}
.yb0{bottom:301.224477pt;}
.y6{bottom:301.226667pt;}
.y98{bottom:301.259685pt;}
.y20{bottom:303.741440pt;}
.y5c{bottom:306.222400pt;}
.y6d{bottom:316.017600pt;}
.y3e{bottom:316.306560pt;}
.yaf{bottom:319.891842pt;}
.y5{bottom:319.893333pt;}
.y1f{bottom:325.075200pt;}
.yab{bottom:325.450352pt;}
.y5b{bottom:327.555200pt;}
.y3d{bottom:337.638400pt;}
.ya0{bottom:338.557210pt;}
.yae{bottom:338.557686pt;}
.y4{bottom:338.560000pt;}
.y6c{bottom:342.684800pt;}
.y1e{bottom:346.409600pt;}
.y5a{bottom:348.889600pt;}
.y9b{bottom:357.186352pt;}
.yad{bottom:357.225051pt;}
.y3{bottom:357.226667pt;}
.yaa{bottom:357.450352pt;}
.y3c{bottom:358.972800pt;}
.y1d{bottom:367.740800pt;}
.yb4{bottom:369.710352pt;}
.y59{bottom:370.224000pt;}
.y9f{bottom:375.890419pt;}
.ya6{bottom:375.891048pt;}
.y2{bottom:375.893333pt;}
.y3b{bottom:380.307200pt;}
.y6b{bottom:381.299200pt;}
.y1c{bottom:389.075200pt;}
.y58{bottom:391.555200pt;}
.ya5{bottom:394.556892pt;}
.y95{bottom:394.560000pt;}
.y3a{bottom:401.638400pt;}
.y1b{bottom:410.409600pt;}
.y57{bottom:412.889600pt;}
.ya4{bottom:413.224257pt;}
.y1{bottom:413.226667pt;}
.y39{bottom:422.972800pt;}
.y1a{bottom:431.740800pt;}
.y89{bottom:431.893333pt;}
.y56{bottom:434.224000pt;}
.y38{bottom:444.307200pt;}
.y94{bottom:450.560000pt;}
.y19{bottom:453.075200pt;}
.y55{bottom:455.555200pt;}
.y37{bottom:465.638400pt;}
.y88{bottom:469.226667pt;}
.y18{bottom:474.409600pt;}
.y54{bottom:476.889600pt;}
.y36{bottom:486.972800pt;}
.y87{bottom:487.893333pt;}
.y17{bottom:495.740800pt;}
.y53{bottom:498.224000pt;}
.y10{bottom:506.541333pt;}
.y86{bottom:506.560000pt;}
.y35{bottom:508.307200pt;}
.y16{bottom:517.075200pt;}
.y52{bottom:519.555200pt;}
.y85{bottom:525.226667pt;}
.y34{bottom:529.638400pt;}
.y15{bottom:538.409600pt;}
.y51{bottom:540.889600pt;}
.y93{bottom:543.893333pt;}
.y33{bottom:550.972800pt;}
.y14{bottom:559.740800pt;}
.y50{bottom:562.224000pt;}
.y84{bottom:562.560000pt;}
.y32{bottom:572.307200pt;}
.y13{bottom:581.075200pt;}
.y83{bottom:581.226667pt;}
.y4f{bottom:583.555200pt;}
.y31{bottom:593.638400pt;}
.ya3{bottom:599.891824pt;}
.y82{bottom:599.893333pt;}
.y12{bottom:602.409600pt;}
.y4e{bottom:604.889600pt;}
.y30{bottom:614.972800pt;}
.y81{bottom:618.560000pt;}
.y11{bottom:623.740800pt;}
.y4d{bottom:626.224000pt;}
.y80{bottom:637.226667pt;}
.y7f{bottom:655.893333pt;}
.y7e{bottom:674.560000pt;}
.y7d{bottom:693.226667pt;}
.y7c{bottom:711.893333pt;}
.y92{bottom:730.560000pt;}
.y7b{bottom:749.226667pt;}
.y7a{bottom:767.893333pt;}
.y79{bottom:786.560000pt;}
.ya2{bottom:805.225235pt;}
.y78{bottom:805.226667pt;}
.y77{bottom:823.893333pt;}
.y9e{bottom:842.559336pt;}
.yf{bottom:842.560000pt;}
.y76{bottom:861.226667pt;}
.ye{bottom:879.893333pt;}
.y75{bottom:898.560000pt;}
.yac{bottom:915.858667pt;}
.ya8{bottom:917.224974pt;}
.y74{bottom:917.226667pt;}
.ya7{bottom:935.892339pt;}
.yd{bottom:935.893333pt;}
.ya1{bottom:947.858667pt;}
.y73{bottom:954.560000pt;}
.y91{bottom:973.226667pt;}
.y9d{bottom:979.858667pt;}
.y72{bottom:986.312000pt;}
.y96{bottom:991.893333pt;}
.y71{bottom:1010.312000pt;}
.y90{bottom:1010.560000pt;}
.y9c{bottom:1011.858667pt;}
.ha{height:14.058698pt;}
.hb{height:20.400000pt;}
.h3{height:44.586667pt;}
.he{height:44.880000pt;}
.hd{height:53.738667pt;}
.h4{height:55.381333pt;}
.h10{height:57.335156pt;}
.h9{height:70.485293pt;}
.hc{height:73.280000pt;}
.h8{height:73.440000pt;}
.h2{height:78.165333pt;}
.h7{height:80.554707pt;}
.h5{height:136.789333pt;}
.h6{height:261.992000pt;}
.hf{height:1122.519685pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:261.992000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x5d{left:-191.930277pt;}
.x5c{left:-189.188933pt;}
.x5e{left:-188.090277pt;}
.x4f{left:-180.210469pt;}
.x51{left:-178.631813pt;}
.x50{left:-176.370469pt;}
.xa8{left:-168.915193pt;}
.xa7{left:-166.173858pt;}
.xa6{left:-165.075193pt;}
.x5a{left:-163.980229pt;}
.x58{left:-160.566885pt;}
.x59{left:-159.116229pt;}
.x5b{left:-156.758885pt;}
.x54{left:-152.260421pt;}
.x53{left:-148.303077pt;}
.x52{left:-146.137765pt;}
.xa4{left:-140.965125pt;}
.xa2{left:-137.583813pt;}
.xa3{left:-136.101093pt;}
.xa5{left:-133.743653pt;}
.x55{left:-128.691493pt;}
.x56{left:-127.688933pt;}
.x57{left:-125.427493pt;}
.x1a{left:-116.939813pt;}
.x1c{left:-114.806373pt;}
.x1b{left:-113.707813pt;}
.xa0{left:-105.676453pt;}
.xa1{left:-104.673893pt;}
.x9f{left:-102.412453pt;}
.x5f{left:-101.317413pt;}
.x60{left:-97.327973pt;}
.x61{left:-95.749413pt;}
.x17{left:-84.846373pt;}
.x19{left:-82.712933pt;}
.x18{left:-81.614373pt;}
.xaa{left:-78.302373pt;}
.xa9{left:-74.344933pt;}
.xab{left:-72.734373pt;}
.xe9{left:-71.711333pt;}
.x69{left:-66.604773pt;}
.x68{left:-63.863333pt;}
.x6a{left:-62.764773pt;}
.x15{left:-57.504293pt;}
.x13{left:-54.122853pt;}
.x14{left:-52.640293pt;}
.x16{left:-50.282853pt;}
.xb5{left:-43.589733pt;}
.xb4{left:-40.848293pt;}
.xb3{left:-39.749733pt;}
.x66{left:-38.654693pt;}
.x64{left:-35.241253pt;}
.x65{left:-33.790693pt;}
.x67{left:-31.433253pt;}
.x10{left:-22.791653pt;}
.x12{left:-21.212773pt;}
.x11{left:-18.951653pt;}
.xb1{left:-15.639653pt;}
.xaf{left:-12.258213pt;}
.xb0{left:-10.775653pt;}
.xb2{left:-8.418213pt;}
.x62{left:-3.366053pt;}
.x63{left:-2.363173pt;}
.x0{left:0.000000pt;}
.x1f{left:5.158427pt;}
.x1e{left:9.115867pt;}
.x1d{left:11.281307pt;}
.xad{left:19.648987pt;}
.xae{left:20.651867pt;}
.xac{left:22.912987pt;}
.x6b{left:24.008027pt;}
.x6c{left:27.997467pt;}
.x6d{left:29.576027pt;}
.xea{left:37.268827pt;}
.x27{left:40.479067pt;}
.x29{left:42.612507pt;}
.x28{left:43.711067pt;}
.xb7{left:47.023067pt;}
.xb6{left:50.980507pt;}
.xb8{left:52.591067pt;}
.x76{left:58.720987pt;}
.x75{left:61.462107pt;}
.x77{left:62.560987pt;}
.x25{left:67.821147pt;}
.x23{left:71.202587pt;}
.x24{left:72.685147pt;}
.x26{left:75.042587pt;}
.xc2{left:81.736027pt;}
.xc1{left:84.477147pt;}
.xc0{left:85.576027pt;}
.x73{left:86.670747pt;}
.x71{left:90.084187pt;}
.x72{left:91.534747pt;}
.x74{left:93.892187pt;}
.x20{left:102.534107pt;}
.x22{left:104.112667pt;}
.x21{left:106.374107pt;}
.xbe{left:109.686107pt;}
.xbc{left:113.067227pt;}
.xbd{left:114.550107pt;}
.xbf{left:116.907227pt;}
.xd{left:119.030133pt;}
.x6e{left:121.959707pt;}
.x6f{left:122.962267pt;}
.x70{left:125.223707pt;}
.x2c{left:130.484187pt;}
.x2b{left:134.441307pt;}
.x2a{left:136.606747pt;}
.xeb{left:142.488000pt;}
.xba{left:144.974747pt;}
.xbb{left:145.977307pt;}
.xb9{left:148.238747pt;}
.x78{left:149.333787pt;}
.x79{left:153.323867pt;}
.x7a{left:154.901467pt;}
.x32{left:165.803867pt;}
.x34{left:167.938267pt;}
.x33{left:169.035867pt;}
.xc4{left:172.347867pt;}
.xc3{left:176.306267pt;}
.xc5{left:177.915867pt;}
.x82{left:184.047067pt;}
.x81{left:186.786267pt;}
.x5{left:188.569333pt;}
.x3{left:193.797333pt;}
.x2f{left:196.527067pt;}
.x30{left:198.011867pt;}
.x31{left:200.367067pt;}
.x4{left:203.990667pt;}
.xcf{left:207.061467pt;}
.xce{left:209.803867pt;}
.xcd{left:210.901467pt;}
.x7f{left:211.995867pt;}
.x9{left:215.914667pt;}
.x7e{left:216.859867pt;}
.x80{left:219.218267pt;}
.xf8{left:225.021766pt;}
.x2d{left:227.858267pt;}
.x2e{left:229.439067pt;}
.x6{left:232.414667pt;}
.xcb{left:235.010267pt;}
.xc9{left:238.392667pt;}
.xca{left:239.874267pt;}
.xcc{left:242.232667pt;}
.x7b{left:247.285467pt;}
.x7c{left:248.287067pt;}
.x7d{left:250.549467pt;}
.x35{left:255.810267pt;}
.xb{left:259.673333pt;}
.x36{left:261.378267pt;}
.xf{left:262.594667pt;}
.xc7{left:270.299867pt;}
.xc8{left:271.301467pt;}
.xc6{left:273.563867pt;}
.x83{left:274.658267pt;}
.x84{left:278.648667pt;}
.x85{left:280.226267pt;}
.xc{left:284.838667pt;}
.x3c{left:291.131867pt;}
.x3e{left:293.263067pt;}
.x3d{left:294.363867pt;}
.xa{left:296.977333pt;}
.xd0{left:301.631067pt;}
.xd1{left:303.243867pt;}
.x8e{left:309.371867pt;}
.x8d{left:312.114267pt;}
.x2{left:313.492000pt;}
.x3a{left:318.472667pt;}
.x1{left:322.125333pt;}
.x39{left:323.336667pt;}
.xf7{left:324.769503pt;}
.x3b{left:325.695067pt;}
.xe{left:330.945333pt;}
.xdb{left:332.386267pt;}
.xda{left:335.128667pt;}
.xd9{left:336.226267pt;}
.x8b{left:337.320667pt;}
.x89{left:340.735067pt;}
.x8a{left:342.184667pt;}
.x8c{left:344.543067pt;}
.x7{left:349.792000pt;}
.x37{left:353.186267pt;}
.x38{left:354.763867pt;}
.x8{left:356.656000pt;}
.xec{left:358.196325pt;}
.xd7{left:360.338267pt;}
.xd5{left:363.717467pt;}
.xd6{left:365.202267pt;}
.xf0{left:366.334667pt;}
.xd8{left:367.557467pt;}
.x86{left:372.610267pt;}
.x87{left:373.611867pt;}
.x88{left:375.874267pt;}
.x41{left:381.135067pt;}
.x40{left:385.093467pt;}
.x3f{left:387.256667pt;}
.xf1{left:390.314667pt;}
.xd3{left:395.624667pt;}
.xd4{left:396.629467pt;}
.xd2{left:398.888667pt;}
.x8f{left:399.986267pt;}
.x90{left:403.973467pt;}
.x91{left:405.554267pt;}
.x49{left:416.456667pt;}
.x4b{left:418.587867pt;}
.x4a{left:419.688667pt;}
.xdd{left:423.000667pt;}
.xdc{left:426.955867pt;}
.xde{left:428.568667pt;}
.xf9{left:431.528000pt;}
.x9a{left:434.696667pt;}
.x99{left:437.439067pt;}
.x9b{left:438.536667pt;}
.x47{left:443.797467pt;}
.x45{left:447.179867pt;}
.x46{left:448.661467pt;}
.x48{left:451.019867pt;}
.xe8{left:457.711067pt;}
.xe7{left:460.453467pt;}
.xe6{left:461.551067pt;}
.x97{left:462.648667pt;}
.x95{left:466.059867pt;}
.x96{left:467.512667pt;}
.x98{left:469.867867pt;}
.xf2{left:474.501333pt;}
.x42{left:478.511067pt;}
.x44{left:480.088667pt;}
.x43{left:482.351067pt;}
.xe4{left:485.663067pt;}
.xe2{left:489.045467pt;}
.xe3{left:490.527067pt;}
.xe5{left:492.885467pt;}
.xfc{left:494.582089pt;}
.x92{left:497.935067pt;}
.x93{left:498.939867pt;}
.x94{left:501.199067pt;}
.x4e{left:506.459867pt;}
.xf3{left:509.277457pt;}
.x4d{left:510.418267pt;}
.x4c{left:512.584667pt;}
.xe0{left:520.952667pt;}
.xe1{left:521.954267pt;}
.xdf{left:524.216667pt;}
.x9c{left:525.311067pt;}
.x9d{left:529.298267pt;}
.x9e{left:530.879067pt;}
.xfd{left:541.280947pt;}
.xfe{left:552.469333pt;}
.xfa{left:556.533725pt;}
.xf5{left:572.768000pt;}
.xed{left:591.878667pt;}
.xee{left:599.624438pt;}
.xfb{left:604.066667pt;}
.xef{left:638.328000pt;}
.xf6{left:656.613333pt;}
.xf4{left:661.296000pt;}
}




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