
    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_572c2a2677d1055262150014.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_373f3a66e86d3dd1b36a294f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.884277;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_19dd05a582a626fd5ef813cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d625840e1b1c8047c98472bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_8a01c585cba81494c0439776.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_fefd89a96d29de0856e3d0cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_117048c0d6a5925a2cead04a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_28ea13e6f7f54e17d87fbdae.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.713867;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_20caf2bde2e603c47dca2295.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.990723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a608e8e7a3516afd4559b206.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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;}
.m1{transform:matrix(0.226776,0.105226,-0.105226,0.226776,0,0);-ms-transform:matrix(0.226776,0.105226,-0.105226,0.226776,0,0);-webkit-transform:matrix(0.226776,0.105226,-0.105226,0.226776,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-80.108418px;}
.v7{vertical-align:-1.466955px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.596465px;}
.v6{vertical-align:3.072195px;}
.v5{vertical-align:32.169930px;}
.v2{vertical-align:33.750001px;}
.v4{vertical-align:60.276170px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012015px;}
.ls4{letter-spacing:0.041892px;}
.ls5{letter-spacing:0.041896px;}
.lsa{letter-spacing:0.056852px;}
.lsb{letter-spacing:0.056879px;}
.ls9{letter-spacing:0.056924px;}
.ls7{letter-spacing:0.076076px;}
.lsc{letter-spacing:107.983491px;}
.lsd{letter-spacing:107.983509px;}
.lse{letter-spacing:107.992401px;}
.ls8{letter-spacing:135.926196px;}
.ls3{letter-spacing:150.000485px;}
.ls2{letter-spacing:150.000489px;}
.ls1{letter-spacing:1637.701762px;}
.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;}
}
.ws2{word-spacing:-54.240000px;}
.wsc{word-spacing:-48.816002px;}
.ws5{word-spacing:-46.536000px;}
.ws0{word-spacing:-32.544001px;}
.ws8{word-spacing:-32.272802px;}
.wsd{word-spacing:-25.316520px;}
.ws13{word-spacing:-24.408001px;}
.ws11{word-spacing:-24.381542px;}
.wsf{word-spacing:-19.944001px;}
.ws12{word-spacing:-18.984000px;}
.wsb{word-spacing:-18.282001px;}
.ws10{word-spacing:-17.733541px;}
.ws6{word-spacing:-16.272001px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:107.814430px;}
.ws4{word-spacing:112.609893px;}
.ws7{word-spacing:158.814421px;}
.wsa{word-spacing:684.714847px;}
.wse{word-spacing:700.779780px;}
.ws9{word-spacing:746.794464px;}
._e{margin-left:-759.402734px;}
._5{margin-left:-21.120000px;}
._11{margin-left:-14.191199px;}
._12{margin-left:-12.084000px;}
._15{margin-left:-10.992000px;}
._8{margin-left:-9.647432px;}
._3{margin-left:-6.912000px;}
._2{margin-left:-5.472000px;}
._1{margin-left:-3.888000px;}
._6{margin-left:-2.496000px;}
._0{margin-left:-1.188000px;}
._4{width:1.176000px;}
._14{width:2.907465px;}
._7{width:5.712000px;}
._16{width:94.080011px;}
._17{width:138.120012px;}
._f{width:315.764678px;}
._a{width:427.501364px;}
._c{width:649.101610px;}
._b{width:801.800441px;}
._10{width:1147.199267px;}
._9{width:1326.937722px;}
._13{width:1657.714658px;}
._d{width:2373.439511px;}
.fc13{color:rgb(204,0,153);}
.fc10{color:rgb(47,47,47);}
.fc0{color:rgb(0,105,146);}
.fcf{color:rgb(0,153,0);}
.fc7{color:rgb(118,146,60);}
.fc1{color:rgb(0,93,126);}
.fc8{color:rgb(79,129,189);}
.fce{color:rgb(89,89,89);}
.fc2{color:rgb(34,89,130);}
.fc6{color:rgb(16,20,24);}
.fcc{color:rgb(91,97,107);}
.fc15{color:rgb(0,0,255);}
.fcd{color:rgb(95,95,95);}
.fc3{color:rgb(141,191,34);}
.fc4{color:transparent;}
.fc9{color:rgb(255,255,255);}
.fc12{color:rgb(16,186,182);}
.fc11{color:rgb(207,165,0);}
.fc5{color:rgb(0,0,0);}
.fca{color:rgb(107,149,13);}
.fc14{color:rgb(128,181,16);}
.fcb{color:rgb(128,100,162);}
.fs9{font-size:54.000002px;}
.fsa{font-size:55.980002px;}
.fs11{font-size:60.000000px;}
.fs10{font-size:60.000005px;}
.fs17{font-size:64.020004px;}
.fs19{font-size:64.020005px;}
.fs7{font-size:66.000004px;}
.fs8{font-size:72.000002px;}
.fs18{font-size:79.980001px;}
.fs6{font-size:84.000000px;}
.fs16{font-size:88.020007px;}
.fsf{font-size:90.000003px;}
.fs0{font-size:96.000006px;}
.fs14{font-size:102.000000px;}
.fs1{font-size:108.000003px;}
.fs15{font-size:112.020002px;}
.fse{font-size:114.000007px;}
.fs1d{font-size:117.600011px;}
.fs12{font-size:120.000001px;}
.fsd{font-size:126.000004px;}
.fs1c{font-size:138.352954px;}
.fsc{font-size:142.800008px;}
.fs3{font-size:144.000005px;}
.fs13{font-size:162.000005px;}
.fs4{font-size:167.999999px;}
.fsb{font-size:168.000017px;}
.fs1b{font-size:192.000012px;}
.fs1a{font-size:194.399993px;}
.fs2{font-size:216.000007px;}
.fs5{font-size:240.000002px;}
.y0{bottom:0.000000px;}
.yab{bottom:25.889264px;}
.y12{bottom:27.907739px;}
.y1{bottom:34.602201px;}
.y5{bottom:41.300638px;}
.y65{bottom:53.937541px;}
.y45{bottom:57.378872px;}
.y4{bottom:74.461849px;}
.y6{bottom:74.910430px;}
.y49{bottom:78.280546px;}
.y64{bottom:82.737539px;}
.y96{bottom:86.670688px;}
.y48{bottom:92.804971px;}
.y2d{bottom:95.368106px;}
.y83{bottom:102.851910px;}
.yac{bottom:104.888229px;}
.y20{bottom:106.201440px;}
.yad{bottom:106.504066px;}
.y8d{bottom:106.528815px;}
.yaf{bottom:106.798479px;}
.y5f{bottom:108.200171px;}
.yb3{bottom:108.708954px;}
.y44{bottom:111.377823px;}
.y3f{bottom:120.920912px;}
.ye{bottom:126.835999px;}
.y93{bottom:127.397143px;}
.y43{bottom:128.205911px;}
.y82{bottom:129.257911px;}
.y91{bottom:130.251605px;}
.y2c{bottom:133.924107px;}
.y3b{bottom:136.778157px;}
.y8c{bottom:140.134816px;}
.y3e{bottom:145.959659px;}
.y47{bottom:146.567554px;}
.y92{bottom:148.997144px;}
.y42{bottom:151.158281px;}
.y90{bottom:151.851607px;}
.ya2{bottom:152.875734px;}
.y7e{bottom:154.504554px;}
.y81{bottom:155.663912px;}
.y61{bottom:157.243682px;}
.y5e{bottom:163.867929px;}
.y3c{bottom:168.124159px;}
.y41{bottom:170.567814px;}
.y56{bottom:173.016598px;}
.y2b{bottom:173.840908px;}
.y7d{bottom:180.910551px;}
.y80{bottom:182.069909px;}
.yd{bottom:185.636005px;}
.y1d{bottom:186.240569px;}
.y40{bottom:191.549043px;}
.y4e{bottom:197.410203px;}
.ya1{bottom:198.631027px;}
.y55{bottom:203.524968px;}
.yb2{bottom:203.537343px;}
.y60{bottom:203.611439px;}
.y50{bottom:203.985498px;}
.y7c{bottom:207.316555px;}
.y1c{bottom:207.840566px;}
.y7f{bottom:208.475912px;}
.y8b{bottom:219.319397px;}
.y8{bottom:221.066700px;}
.y2f{bottom:231.083108px;}
.y68{bottom:233.739492px;}
.y63{bottom:235.271457px;}
.yb1{bottom:239.537344px;}
.y31{bottom:240.434368px;}
.y6a{bottom:243.342606px;}
.ya0{bottom:244.386342px;}
.yc{bottom:244.435999px;}
.y84{bottom:245.600811px;}
.y46{bottom:245.762910px;}
.y67{bottom:252.945492px;}
.y24{bottom:252.970273px;}
.y69{bottom:262.548607px;}
.y7{bottom:271.466695px;}
.y66{bottom:272.151494px;}
.y2a{bottom:273.196130px;}
.yb0{bottom:276.977345px;}
.y1b{bottom:283.599557px;}
.y3d{bottom:287.018878px;}
.y54{bottom:288.386680px;}
.y9f{bottom:290.141657px;}
.y1a{bottom:305.199554px;}
.y38{bottom:312.420055px;}
.y85{bottom:312.935047px;}
.y29{bottom:313.112932px;}
.y5c{bottom:322.016789px;}
.y73{bottom:322.265587px;}
.y70{bottom:333.420633px;}
.y72{bottom:335.823105px;}
.y9e{bottom:335.896927px;}
.y3{bottom:336.145825px;}
.y62{bottom:337.085832px;}
.ya6{bottom:342.813294px;}
.y6d{bottom:343.176668px;}
.y4b{bottom:348.225569px;}
.yae{bottom:353.522348px;}
.y6f{bottom:355.020634px;}
.y11{bottom:356.797178px;}
.y8f{bottom:358.293703px;}
.y6c{bottom:364.776667px;}
.y6e{bottom:376.620634px;}
.y19{bottom:379.159940px;}
.y8e{bottom:379.893704px;}
.yaa{bottom:386.470786px;}
.y18{bottom:400.759937px;}
.y37{bottom:404.685685px;}
.y78{bottom:412.077497px;}
.y28{bottom:412.468097px;}
.y75{bottom:416.479780px;}
.y57{bottom:419.078777px;}
.y52{bottom:420.571979px;}
.y9d{bottom:421.804236px;}
.y95{bottom:425.937396px;}
.ya5{bottom:436.870777px;}
.y36{bottom:442.485697px;}
.ya9{bottom:445.270781px;}
.y3a{bottom:446.587920px;}
.y4d{bottom:449.712067px;}
.y1f{bottom:451.011500px;}
.y53{bottom:451.332065px;}
.y27{bottom:452.384921px;}
.y1e{bottom:462.834687px;}
.y9c{bottom:467.559529px;}
.y59{bottom:472.950124px;}
.y17{bottom:475.049757px;}
.y10{bottom:475.819358px;}
.y35{bottom:480.285698px;}
.y39{bottom:480.787921px;}
.y79{bottom:487.404469px;}
.y74{bottom:487.642405px;}
.ya4{bottom:495.670760px;}
.y16{bottom:496.649754px;}
.y76{bottom:500.769485px;}
.ya8{bottom:504.070764px;}
.y5a{bottom:504.702772px;}
.y2e{bottom:511.429686px;}
.y9b{bottom:513.314811px;}
.y15{bottom:517.030753px;}
.y30{bottom:522.020628px;}
.y77{bottom:522.311280px;}
.y94{bottom:532.149010px;}
.y8a{bottom:537.228828px;}
.yb{bottom:538.435983px;}
.y23{bottom:543.999905px;}
.y26{bottom:546.232126px;}
.y51{bottom:548.264276px;}
.ya3{bottom:554.470754px;}
.y2{bottom:554.534284px;}
.y34{bottom:555.885707px;}
.y89{bottom:558.828830px;}
.y9a{bottom:559.070114px;}
.y14{bottom:560.230750px;}
.ya7{bottom:562.870758px;}
.y25{bottom:586.148922px;}
.y33{bottom:593.685706px;}
.ya{bottom:597.235981px;}
.y7b{bottom:604.168079px;}
.y99{bottom:604.825413px;}
.y13{bottom:613.270753px;}
.y71{bottom:617.798759px;}
.y58{bottom:627.133573px;}
.y7a{bottom:630.574080px;}
.y88{bottom:631.175448px;}
.y32{bottom:631.485706px;}
.y4f{bottom:642.143301px;}
.y5b{bottom:642.265300px;}
.y98{bottom:667.251025px;}
.y22{bottom:670.286454px;}
.y87{bottom:681.365813px;}
.y9{bottom:689.571021px;}
.y4a{bottom:691.731020px;}
.y6b{bottom:705.835864px;}
.y4c{bottom:706.174604px;}
.y5d{bottom:709.073029px;}
.y97{bottom:719.091015px;}
.y21{bottom:735.086457px;}
.y86{bottom:739.685803px;}
.yf{bottom:779.715001px;}
.h10{height:39.313478px;}
.h14{height:40.754972px;}
.h1b{height:43.681641px;}
.h28{height:46.608313px;}
.hc{height:48.049807px;}
.hd{height:49.646272px;}
.h2e{height:51.679689px;}
.hf{height:52.277345px;}
.h27{height:52.417970px;}
.h2a{height:58.227628px;}
.h30{height:60.292969px;}
.hb{height:61.154297px;}
.h2d{height:63.909058px;}
.h22{height:64.080972px;}
.h1a{height:65.994891px;}
.h2b{height:67.153167px;}
.h1{height:68.906254px;}
.h23{height:69.703129px;}
.h20{height:69.890629px;}
.h1d{height:74.258789px;}
.h21{height:75.865109px;}
.h2{height:76.253909px;}
.h19{height:77.431645px;}
.h4{height:77.519534px;}
.h33{height:78.416018px;}
.h11{height:78.626956px;}
.h24{height:80.404982px;}
.h26{height:81.444230px;}
.h2f{height:81.553625px;}
.h1e{height:81.685549px;}
.h18{height:82.995122px;}
.h29{height:84.587900px;}
.h34{height:86.132813px;}
.h1f{height:86.223638px;}
.h1c{height:87.363282px;}
.h17{height:90.439456px;}
.he{height:98.437503px;}
.h32{height:98.765634px;}
.h6{height:101.671878px;}
.h16{height:102.498052px;}
.h5{height:104.554691px;}
.h12{height:104.835941px;}
.h25{height:112.694140px;}
.h15{height:113.777356px;}
.h7{height:118.617187px;}
.h9{height:120.585937px;}
.ha{height:122.308593px;}
.h31{height:137.812509px;}
.h2c{height:139.535151px;}
.h13{height:155.039067px;}
.h3{height:157.253911px;}
.h8{height:172.265626px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xd{left:10.125000px;}
.x68{left:33.461458px;}
.x70{left:41.471075px;}
.x30{left:43.851615px;}
.x40{left:49.423232px;}
.x1d{left:51.552544px;}
.x33{left:53.955377px;}
.x31{left:57.818523px;}
.x1a{left:62.048151px;}
.x59{left:72.385462px;}
.x5a{left:83.373196px;}
.xc{left:87.256231px;}
.x6b{left:88.389817px;}
.xa{left:90.783100px;}
.x62{left:94.024612px;}
.x9{left:109.125003px;}
.x3b{left:111.066614px;}
.x6d{left:115.125004px;}
.x21{left:117.848883px;}
.x1e{left:122.798153px;}
.x4f{left:133.794930px;}
.x4e{left:142.799326px;}
.xb{left:149.278707px;}
.x3a{left:150.987875px;}
.x23{left:166.500005px;}
.x2e{left:168.877513px;}
.x2f{left:169.920939px;}
.x22{left:171.848885px;}
.x6e{left:175.258907px;}
.x5{left:176.997763px;}
.x73{left:179.271613px;}
.x4{left:180.633201px;}
.x6f{left:182.169337px;}
.x2d{left:187.471840px;}
.x2c{left:191.309710px;}
.x56{left:203.918857px;}
.x5d{left:235.661558px;}
.x3c{left:245.873033px;}
.x50{left:249.742380px;}
.x53{left:253.974313px;}
.x19{left:274.139176px;}
.xf{left:278.567131px;}
.x63{left:292.922079px;}
.x61{left:297.681357px;}
.x60{left:314.266319px;}
.x34{left:346.978260px;}
.x29{left:370.231106px;}
.x72{left:376.539931px;}
.x4c{left:390.040458px;}
.x4d{left:391.543387px;}
.x10{left:401.722792px;}
.x44{left:422.160831px;}
.x35{left:433.708248px;}
.x42{left:454.316254px;}
.x11{left:459.019122px;}
.xe{left:467.262521px;}
.x28{left:469.291909px;}
.x14{left:478.368589px;}
.x2a{left:496.287612px;}
.x17{left:500.343620px;}
.x13{left:524.168398px;}
.x16{left:529.606513px;}
.x46{left:539.163833px;}
.x12{left:540.748615px;}
.x15{left:552.581118px;}
.x1f{left:556.880368px;}
.x3e{left:576.590632px;}
.x41{left:582.257370px;}
.x47{left:591.768266px;}
.x36{left:616.102287px;}
.x1c{left:624.034970px;}
.x5e{left:638.829583px;}
.x18{left:645.415626px;}
.x38{left:664.687799px;}
.x1b{left:680.540107px;}
.x71{left:695.661660px;}
.x6c{left:728.009243px;}
.x5b{left:741.637909px;}
.x5c{left:752.625643px;}
.x74{left:772.562950px;}
.x6{left:780.684671px;}
.x66{left:797.340876px;}
.x67{left:802.100154px;}
.x3d{left:810.222393px;}
.x8{left:844.579782px;}
.x2{left:856.169795px;}
.x6a{left:857.560118px;}
.x5f{left:880.164816px;}
.x2b{left:891.903404px;}
.x3f{left:895.661387px;}
.x39{left:917.384767px;}
.x51{left:954.477366px;}
.x7{left:1007.122341px;}
.x57{left:1018.553195px;}
.x69{left:1039.151351px;}
.x58{left:1063.146119px;}
.x48{left:1087.146980px;}
.x65{left:1088.193176px;}
.x49{left:1091.138194px;}
.x64{left:1104.778138px;}
.x32{left:1107.890605px;}
.x25{left:1118.894022px;}
.x24{left:1132.361960px;}
.x27{left:1137.881779px;}
.x26{left:1140.264628px;}
.x75{left:1141.796174px;}
.x3{left:1143.143845px;}
.x43{left:1150.696568px;}
.x55{left:1189.485774px;}
.x52{left:1200.153035px;}
.x37{left:1211.557764px;}
.x54{left:1280.787997px;}
.x4a{left:1290.229672px;}
.x4b{left:1291.565283px;}
.x45{left:1333.552813px;}
.x1{left:1345.713906px;}
.x20{left:1382.879312px;}
@media print{
.v3{vertical-align:-71.207482pt;}
.v7{vertical-align:-1.303960pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.419080pt;}
.v6{vertical-align:2.730840pt;}
.v5{vertical-align:28.595493pt;}
.v2{vertical-align:30.000001pt;}
.v4{vertical-align:53.578818pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.010680pt;}
.ls4{letter-spacing:0.037237pt;}
.ls5{letter-spacing:0.037241pt;}
.lsa{letter-spacing:0.050535pt;}
.lsb{letter-spacing:0.050559pt;}
.ls9{letter-spacing:0.050599pt;}
.ls7{letter-spacing:0.067623pt;}
.lsc{letter-spacing:95.985325pt;}
.lsd{letter-spacing:95.985341pt;}
.lse{letter-spacing:95.993245pt;}
.ls8{letter-spacing:120.823285pt;}
.ls3{letter-spacing:133.333764pt;}
.ls2{letter-spacing:133.333768pt;}
.ls1{letter-spacing:1455.734900pt;}
.ws2{word-spacing:-48.213334pt;}
.wsc{word-spacing:-43.392001pt;}
.ws5{word-spacing:-41.365333pt;}
.ws0{word-spacing:-28.928001pt;}
.ws8{word-spacing:-28.686935pt;}
.wsd{word-spacing:-22.503574pt;}
.ws13{word-spacing:-21.696001pt;}
.ws11{word-spacing:-21.672482pt;}
.wsf{word-spacing:-17.728001pt;}
.ws12{word-spacing:-16.874667pt;}
.wsb{word-spacing:-16.250668pt;}
.ws10{word-spacing:-15.763148pt;}
.ws6{word-spacing:-14.464000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:95.835049pt;}
.ws4{word-spacing:100.097682pt;}
.ws7{word-spacing:141.168374pt;}
.wsa{word-spacing:608.635419pt;}
.wse{word-spacing:622.915360pt;}
.ws9{word-spacing:663.817301pt;}
._e{margin-left:-675.024653pt;}
._5{margin-left:-18.773333pt;}
._11{margin-left:-12.614400pt;}
._12{margin-left:-10.741333pt;}
._15{margin-left:-9.770667pt;}
._8{margin-left:-8.575495pt;}
._3{margin-left:-6.144000pt;}
._2{margin-left:-4.864000pt;}
._1{margin-left:-3.456000pt;}
._6{margin-left:-2.218667pt;}
._0{margin-left:-1.056000pt;}
._4{width:1.045333pt;}
._14{width:2.584414pt;}
._7{width:5.077333pt;}
._16{width:83.626677pt;}
._17{width:122.773344pt;}
._f{width:280.679713pt;}
._a{width:380.001212pt;}
._c{width:576.979209pt;}
._b{width:712.711503pt;}
._10{width:1019.732682pt;}
._9{width:1179.500198pt;}
._13{width:1473.524140pt;}
._d{width:2109.724010pt;}
.fs9{font-size:48.000002pt;}
.fsa{font-size:49.760002pt;}
.fs11{font-size:53.333334pt;}
.fs10{font-size:53.333338pt;}
.fs17{font-size:56.906670pt;}
.fs19{font-size:56.906671pt;}
.fs7{font-size:58.666670pt;}
.fs8{font-size:64.000002pt;}
.fs18{font-size:71.093334pt;}
.fs6{font-size:74.666666pt;}
.fs16{font-size:78.240007pt;}
.fsf{font-size:80.000003pt;}
.fs0{font-size:85.333339pt;}
.fs14{font-size:90.666667pt;}
.fs1{font-size:96.000003pt;}
.fs15{font-size:99.573335pt;}
.fse{font-size:101.333339pt;}
.fs1d{font-size:104.533343pt;}
.fs12{font-size:106.666667pt;}
.fsd{font-size:112.000004pt;}
.fs1c{font-size:122.980404pt;}
.fsc{font-size:126.933340pt;}
.fs3{font-size:128.000004pt;}
.fs13{font-size:144.000005pt;}
.fs4{font-size:149.333333pt;}
.fsb{font-size:149.333349pt;}
.fs1b{font-size:170.666677pt;}
.fs1a{font-size:172.799994pt;}
.fs2{font-size:192.000006pt;}
.fs5{font-size:213.333335pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:23.012679pt;}
.y12{bottom:24.806879pt;}
.y1{bottom:30.757512pt;}
.y5{bottom:36.711678pt;}
.y65{bottom:47.944480pt;}
.y45{bottom:51.003442pt;}
.y4{bottom:66.188310pt;}
.y6{bottom:66.587049pt;}
.y49{bottom:69.582707pt;}
.y64{bottom:73.544479pt;}
.y96{bottom:77.040611pt;}
.y48{bottom:82.493308pt;}
.y2d{bottom:84.771650pt;}
.y83{bottom:91.423920pt;}
.yac{bottom:93.233981pt;}
.y20{bottom:94.401280pt;}
.yad{bottom:94.670281pt;}
.y8d{bottom:94.692280pt;}
.yaf{bottom:94.931981pt;}
.y5f{bottom:96.177930pt;}
.yb3{bottom:96.630181pt;}
.y44{bottom:99.002509pt;}
.y3f{bottom:107.485255pt;}
.ye{bottom:112.743111pt;}
.y93{bottom:113.241905pt;}
.y43{bottom:113.960810pt;}
.y82{bottom:114.895921pt;}
.y91{bottom:115.779205pt;}
.y2c{bottom:119.043651pt;}
.y3b{bottom:121.580584pt;}
.y8c{bottom:124.564281pt;}
.y3e{bottom:129.741919pt;}
.y47{bottom:130.282270pt;}
.y92{bottom:132.441906pt;}
.y42{bottom:134.362916pt;}
.y90{bottom:134.979206pt;}
.ya2{bottom:135.889541pt;}
.y7e{bottom:137.337381pt;}
.y81{bottom:138.367921pt;}
.y61{bottom:139.772161pt;}
.y5e{bottom:145.660382pt;}
.y3c{bottom:149.443697pt;}
.y41{bottom:151.615835pt;}
.y56{bottom:153.792532pt;}
.y2b{bottom:154.525252pt;}
.y7d{bottom:160.809379pt;}
.y80{bottom:161.839919pt;}
.yd{bottom:165.009782pt;}
.y1d{bottom:165.547172pt;}
.y40{bottom:170.265816pt;}
.y4e{bottom:175.475736pt;}
.ya1{bottom:176.560913pt;}
.y55{bottom:180.911083pt;}
.yb2{bottom:180.922083pt;}
.y60{bottom:180.987946pt;}
.y50{bottom:181.320443pt;}
.y7c{bottom:184.281382pt;}
.y1c{bottom:184.747170pt;}
.y7f{bottom:185.311922pt;}
.y8b{bottom:194.950575pt;}
.y8{bottom:196.503733pt;}
.y2f{bottom:205.407208pt;}
.y68{bottom:207.768438pt;}
.y63{bottom:209.130184pt;}
.yb1{bottom:212.922084pt;}
.y31{bottom:213.719438pt;}
.y6a{bottom:216.304539pt;}
.ya0{bottom:217.232304pt;}
.yc{bottom:217.276444pt;}
.y84{bottom:218.311832pt;}
.y46{bottom:218.455920pt;}
.y67{bottom:224.840437pt;}
.y24{bottom:224.862465pt;}
.y69{bottom:233.376539pt;}
.y7{bottom:241.303729pt;}
.y66{bottom:241.912439pt;}
.y2a{bottom:242.841005pt;}
.yb0{bottom:246.202085pt;}
.y1b{bottom:252.088495pt;}
.y3d{bottom:255.127891pt;}
.y54{bottom:256.343715pt;}
.y9f{bottom:257.903695pt;}
.y1a{bottom:271.288493pt;}
.y38{bottom:277.706716pt;}
.y85{bottom:278.164486pt;}
.y29{bottom:278.322606pt;}
.y5c{bottom:286.237146pt;}
.y73{bottom:286.458299pt;}
.y70{bottom:296.373896pt;}
.y72{bottom:298.509427pt;}
.y9e{bottom:298.575047pt;}
.y3{bottom:298.796289pt;}
.y62{bottom:299.631851pt;}
.ya6{bottom:304.722928pt;}
.y6d{bottom:305.045927pt;}
.y4b{bottom:309.533839pt;}
.yae{bottom:314.242087pt;}
.y6f{bottom:315.573897pt;}
.y11{bottom:317.153047pt;}
.y8f{bottom:318.483291pt;}
.y6c{bottom:324.245926pt;}
.y6e{bottom:334.773897pt;}
.y19{bottom:337.031058pt;}
.y8e{bottom:337.683293pt;}
.yaa{bottom:343.529588pt;}
.y18{bottom:356.231055pt;}
.y37{bottom:359.720608pt;}
.y78{bottom:366.291109pt;}
.y28{bottom:366.638309pt;}
.y75{bottom:370.204249pt;}
.y57{bottom:372.514469pt;}
.y52{bottom:373.841759pt;}
.y9d{bottom:374.937099pt;}
.y95{bottom:378.611019pt;}
.ya5{bottom:388.329579pt;}
.y36{bottom:393.320620pt;}
.ya9{bottom:395.796250pt;}
.y3a{bottom:396.967040pt;}
.y4d{bottom:399.744060pt;}
.y1f{bottom:400.899111pt;}
.y53{bottom:401.184058pt;}
.y27{bottom:402.119930pt;}
.y1e{bottom:411.408611pt;}
.y9c{bottom:415.608470pt;}
.y59{bottom:420.400110pt;}
.y17{bottom:422.266450pt;}
.y10{bottom:422.950540pt;}
.y35{bottom:426.920621pt;}
.y39{bottom:427.367041pt;}
.y79{bottom:433.248417pt;}
.y74{bottom:433.459916pt;}
.ya4{bottom:440.596231pt;}
.y16{bottom:441.466448pt;}
.y76{bottom:445.128431pt;}
.ya8{bottom:448.062901pt;}
.y5a{bottom:448.624686pt;}
.y2e{bottom:454.604166pt;}
.y9b{bottom:456.279832pt;}
.y15{bottom:459.582892pt;}
.y30{bottom:464.018336pt;}
.y77{bottom:464.276694pt;}
.y94{bottom:473.021342pt;}
.y8a{bottom:477.536736pt;}
.yb{bottom:478.609762pt;}
.y23{bottom:483.555471pt;}
.y26{bottom:485.539667pt;}
.y51{bottom:487.346024pt;}
.ya3{bottom:492.862893pt;}
.y2{bottom:492.919364pt;}
.y34{bottom:494.120629pt;}
.y89{bottom:496.736738pt;}
.y9a{bottom:496.951213pt;}
.y14{bottom:497.982889pt;}
.ya7{bottom:500.329563pt;}
.y25{bottom:521.021264pt;}
.y33{bottom:527.720628pt;}
.ya{bottom:530.876428pt;}
.y7b{bottom:537.038292pt;}
.y99{bottom:537.622589pt;}
.y13{bottom:545.129558pt;}
.y71{bottom:549.154453pt;}
.y58{bottom:557.452065pt;}
.y7a{bottom:560.510293pt;}
.y88{bottom:561.044843pt;}
.y32{bottom:561.320628pt;}
.y4f{bottom:570.794045pt;}
.y5b{bottom:570.902489pt;}
.y98{bottom:593.112022pt;}
.y22{bottom:595.810181pt;}
.y87{bottom:605.658500pt;}
.y9{bottom:612.952019pt;}
.y4a{bottom:614.872018pt;}
.y6b{bottom:627.409657pt;}
.y4c{bottom:627.710759pt;}
.y5d{bottom:630.287137pt;}
.y97{bottom:639.192013pt;}
.y21{bottom:653.410184pt;}
.y86{bottom:657.498492pt;}
.yf{bottom:693.080001pt;}
.h10{height:34.945314pt;}
.h14{height:36.226642pt;}
.h1b{height:38.828125pt;}
.h28{height:41.429612pt;}
.hc{height:42.710940pt;}
.hd{height:44.130020pt;}
.h2e{height:45.937501pt;}
.hf{height:46.468751pt;}
.h27{height:46.593751pt;}
.h2a{height:51.757891pt;}
.h30{height:53.593750pt;}
.hb{height:54.359375pt;}
.h2d{height:56.808052pt;}
.h22{height:56.960864pt;}
.h1a{height:58.662125pt;}
.h2b{height:59.691704pt;}
.h1{height:61.250004pt;}
.h23{height:61.958337pt;}
.h20{height:62.125004pt;}
.h1d{height:66.007813pt;}
.h21{height:67.435652pt;}
.h2{height:67.781252pt;}
.h19{height:68.828129pt;}
.h4{height:68.906252pt;}
.h33{height:69.703127pt;}
.h11{height:69.890627pt;}
.h24{height:71.471095pt;}
.h26{height:72.394871pt;}
.h2f{height:72.492111pt;}
.h1e{height:72.609377pt;}
.h18{height:73.773442pt;}
.h29{height:75.189244pt;}
.h34{height:76.562501pt;}
.h1f{height:76.643234pt;}
.h1c{height:77.656251pt;}
.h17{height:80.390628pt;}
.he{height:87.500003pt;}
.h32{height:87.791675pt;}
.h6{height:90.375003pt;}
.h16{height:91.109380pt;}
.h5{height:92.937503pt;}
.h12{height:93.187503pt;}
.h25{height:100.172569pt;}
.h15{height:101.135427pt;}
.h7{height:105.437500pt;}
.h9{height:107.187500pt;}
.ha{height:108.718750pt;}
.h31{height:122.500008pt;}
.h2c{height:124.031245pt;}
.h13{height:137.812504pt;}
.h3{height:139.781254pt;}
.h8{height:153.125001pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.000000pt;}
.x68{left:29.743518pt;}
.x70{left:36.863178pt;}
.x30{left:38.979213pt;}
.x40{left:43.931761pt;}
.x1d{left:45.824484pt;}
.x33{left:47.960336pt;}
.x31{left:51.394243pt;}
.x1a{left:55.153912pt;}
.x59{left:64.342633pt;}
.x5a{left:74.109507pt;}
.xc{left:77.561094pt;}
.x6b{left:78.568727pt;}
.xa{left:80.696089pt;}
.x62{left:83.577433pt;}
.x9{left:97.000003pt;}
.x3b{left:98.725879pt;}
.x6d{left:102.333337pt;}
.x21{left:104.754562pt;}
.x1e{left:109.153913pt;}
.x4f{left:118.928827pt;}
.x4e{left:126.932734pt;}
.xb{left:132.692184pt;}
.x3a{left:134.211444pt;}
.x23{left:148.000005pt;}
.x2e{left:150.113345pt;}
.x2f{left:151.040835pt;}
.x22{left:152.754565pt;}
.x6e{left:155.785695pt;}
.x5{left:157.331345pt;}
.x73{left:159.352545pt;}
.x4{left:160.562845pt;}
.x6f{left:161.928299pt;}
.x2d{left:166.641635pt;}
.x2c{left:170.053075pt;}
.x56{left:181.261206pt;}
.x5d{left:209.476941pt;}
.x3c{left:218.553807pt;}
.x50{left:221.993227pt;}
.x53{left:225.754945pt;}
.x19{left:243.679268pt;}
.xf{left:247.615228pt;}
.x63{left:260.375181pt;}
.x61{left:264.605650pt;}
.x60{left:279.347839pt;}
.x34{left:308.425120pt;}
.x29{left:329.094317pt;}
.x72{left:334.702161pt;}
.x4c{left:346.702629pt;}
.x4d{left:348.038566pt;}
.x10{left:357.086926pt;}
.x44{left:375.254072pt;}
.x35{left:385.518442pt;}
.x42{left:403.836670pt;}
.x11{left:408.016997pt;}
.xe{left:415.344463pt;}
.x28{left:417.148363pt;}
.x14{left:425.216524pt;}
.x2a{left:441.144544pt;}
.x17{left:444.749884pt;}
.x13{left:465.927465pt;}
.x16{left:470.761345pt;}
.x46{left:479.256740pt;}
.x12{left:480.665435pt;}
.x15{left:491.183216pt;}
.x1f{left:495.004772pt;}
.x3e{left:512.525006pt;}
.x41{left:517.562107pt;}
.x47{left:526.016237pt;}
.x36{left:547.646478pt;}
.x1c{left:554.697751pt;}
.x5e{left:567.848518pt;}
.x18{left:573.702778pt;}
.x38{left:590.833599pt;}
.x1b{left:604.924539pt;}
.x71{left:618.365920pt;}
.x6c{left:647.119327pt;}
.x5b{left:659.233697pt;}
.x5c{left:669.000571pt;}
.x74{left:686.722622pt;}
.x6{left:693.941930pt;}
.x66{left:708.747446pt;}
.x67{left:712.977915pt;}
.x3d{left:720.197683pt;}
.x8{left:750.737584pt;}
.x2{left:761.039817pt;}
.x6a{left:762.275660pt;}
.x5f{left:782.368725pt;}
.x2b{left:792.803025pt;}
.x3f{left:796.143455pt;}
.x39{left:815.453126pt;}
.x51{left:848.424325pt;}
.x7{left:895.219859pt;}
.x57{left:905.380618pt;}
.x69{left:923.690090pt;}
.x58{left:945.018772pt;}
.x48{left:966.352871pt;}
.x65{left:967.282823pt;}
.x49{left:969.900617pt;}
.x64{left:982.025011pt;}
.x32{left:984.791649pt;}
.x25{left:994.572464pt;}
.x24{left:1006.543964pt;}
.x27{left:1011.450470pt;}
.x26{left:1013.568558pt;}
.x75{left:1014.929932pt;}
.x3{left:1016.127863pt;}
.x43{left:1022.841394pt;}
.x55{left:1057.320688pt;}
.x52{left:1066.802698pt;}
.x37{left:1076.940234pt;}
.x54{left:1138.478219pt;}
.x4a{left:1146.870820pt;}
.x4b{left:1148.058030pt;}
.x45{left:1185.380278pt;}
.x1{left:1196.190138pt;}
.x20{left:1229.226055pt;}
}




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