
    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_a255257b01127dde2cb45776.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_0de52eb244258f4fd9b11b37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904000;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_46a98dbd22fa3200fa92c82e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108000;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_b53d165e520bec0bd0f07f48.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_17d41c9f2a3853fd0dddf0ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710449;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010553px;}
.ls0{letter-spacing:0.010641px;}
.lsc{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.189257px;}
.ls1{letter-spacing:0.189300px;}
.lsa{letter-spacing:0.272340px;}
.ls4{letter-spacing:0.378602px;}
.ls3{letter-spacing:2.350619px;}
.lsd{letter-spacing:3.071039px;}
.lsb{letter-spacing:3.791518px;}
.ls8{letter-spacing:5.232418px;}
.ls9{letter-spacing:6.673257px;}
.ls5{letter-spacing:9.555056px;}
.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;}
}
.ws3{word-spacing:-44.009982px;}
.ws7{word-spacing:-18.021275px;}
.ws5{word-spacing:-17.999993px;}
.ws2{word-spacing:-15.318596px;}
.ws0{word-spacing:-14.939994px;}
.ws1{word-spacing:-12.059995px;}
.ws6{word-spacing:-9.719996px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-5.032719px;}
._15{margin-left:-2.949063px;}
._1{margin-left:-1.078701px;}
._0{width:1.199889px;}
._a{width:3.174382px;}
._4{width:4.351924px;}
._5{width:5.385717px;}
._c{width:6.405441px;}
._11{width:7.658973px;}
._10{width:9.289683px;}
._2{width:10.926435px;}
._3{width:11.961315px;}
._b{width:13.199200px;}
._7{width:15.185873px;}
._6{width:16.295112px;}
._19{width:17.474286px;}
._e{width:19.116491px;}
._d{width:20.223809px;}
._f{width:21.443761px;}
._14{width:22.710716px;}
._13{width:23.894923px;}
._12{width:26.030862px;}
._18{width:27.920592px;}
._8{width:31.255771px;}
._9{width:32.409469px;}
._1a{width:194.525202px;}
._17{width:197.590385px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y121{bottom:4.320785px;}
.y42{bottom:110.100856px;}
.yf1{bottom:110.101456px;}
.ya1{bottom:126.301449px;}
.y41{bottom:127.380849px;}
.yf0{bottom:127.381449px;}
.y40{bottom:134.220846px;}
.y84{bottom:144.660842px;}
.yd7{bottom:144.661442px;}
.y3f{bottom:144.840842px;}
.ya0{bottom:147.001441px;}
.y83{bottom:151.501439px;}
.y3e{bottom:151.681439px;}
.y82{bottom:161.941435px;}
.y3d{bottom:162.841435px;}
.y9f{bottom:167.701433px;}
.yd6{bottom:168.781432px;}
.y81{bottom:179.221428px;}
.y110{bottom:179.941428px;}
.y3c{bottom:180.121428px;}
.y80{bottom:186.061426px;}
.y9e{bottom:187.681425px;}
.y7f{bottom:196.501421px;}
.y3b{bottom:197.401421px;}
.y123{bottom:203.341419px;}
.y9d{bottom:204.961418px;}
.y7e{bottom:213.601415px;}
.y122{bottom:214.501414px;}
.y3a{bottom:214.681414px;}
.y7d{bottom:220.441412px;}
.y39{bottom:221.521411px;}
.y9c{bottom:222.241411px;}
.y7c{bottom:230.881408px;}
.y38{bottom:231.961407px;}
.y7b{bottom:237.721405px;}
.y9b{bottom:240.241404px;}
.y7a{bottom:248.161401px;}
.yef{bottom:248.881400px;}
.y37{bottom:249.061400px;}
.y79{bottom:255.001398px;}
.y36{bottom:255.901398px;}
.y9a{bottom:260.761396px;}
.y78{bottom:265.441394px;}
.y35{bottom:266.341393px;}
.y34{bottom:273.181391px;}
.y99{bottom:281.461387px;}
.y77{bottom:282.721387px;}
.y33{bottom:283.621387px;}
.y120{bottom:284.160600px;}
.y11f{bottom:288.481385px;}
.y76{bottom:289.561384px;}
.y10f{bottom:289.741384px;}
.yee{bottom:291.901383px;}
.y75{bottom:299.821380px;}
.y32{bottom:300.901380px;}
.y98{bottom:302.161379px;}
.y31{bottom:307.741377px;}
.y11e{bottom:309.181376px;}
.yec{bottom:312.601375px;}
.y74{bottom:317.101373px;}
.y30{bottom:318.901372px;}
.yed{bottom:320.881372px;}
.y97{bottom:322.861371px;}
.yd5{bottom:323.941370px;}
.y11d{bottom:329.881368px;}
.yeb{bottom:332.581367px;}
.y73{bottom:334.381366px;}
.y2f{bottom:340.141364px;}
.yab{bottom:341.221364px;}
.y96{bottom:342.841363px;}
.yea{bottom:349.861360px;}
.y11c{bottom:350.581360px;}
.y72{bottom:351.661359px;}
.y95{bottom:360.121356px;}
.y2d{bottom:360.841356px;}
.ye9{bottom:366.961353px;}
.y71{bottom:368.941352px;}
.y2e{bottom:369.121352px;}
.y11b{bottom:371.281351px;}
.y94{bottom:377.401349px;}
.y2c{bottom:381.541347px;}
.ye8{bottom:384.241346px;}
.y6f{bottom:386.221346px;}
.yd4{bottom:386.941345px;}
.y11a{bottom:391.981343px;}
.y70{bottom:393.061343px;}
.y93{bottom:394.681342px;}
.ye7{bottom:401.521339px;}
.y2b{bottom:402.241339px;}
.y6e{bottom:403.321339px;}
.y10e{bottom:411.961335px;}
.y92{bottom:412.681335px;}
.yd3{bottom:415.381334px;}
.ye6{bottom:418.801332px;}
.y6d{bottom:420.601332px;}
.y29{bottom:422.941331px;}
.y6c{bottom:427.441329px;}
.y10d{bottom:429.961328px;}
.y2a{bottom:431.221328px;}
.yd2{bottom:432.661327px;}
.y91{bottom:433.381327px;}
.ye5{bottom:436.801325px;}
.y6b{bottom:437.881325px;}
.y28{bottom:443.641323px;}
.y6a{bottom:444.721322px;}
.yd1{bottom:450.661320px;}
.y90{bottom:454.081318px;}
.y69{bottom:455.161318px;}
.ye4{bottom:457.501317px;}
.yaa{bottom:462.001315px;}
.y27{bottom:464.341314px;}
.yd0{bottom:471.361311px;}
.y68{bottom:472.441311px;}
.y8f{bottom:474.781310px;}
.ye3{bottom:478.201309px;}
.y25{bottom:485.041306px;}
.ya9{bottom:489.721304px;}
.y67{bottom:490.441304px;}
.ycf{bottom:492.061303px;}
.y26{bottom:493.321303px;}
.y8e{bottom:495.481302px;}
.ya8{bottom:496.561301px;}
.ye2{bottom:498.901300px;}
.y24{bottom:505.741298px;}
.ya7{bottom:507.721297px;}
.yce{bottom:512.761295px;}
.y8d{bottom:516.181294px;}
.y66{bottom:519.601292px;}
.y23{bottom:526.441289px;}
.ycc{bottom:533.461287px;}
.y8c{bottom:536.881285px;}
.y65{bottom:540.301284px;}
.ycd{bottom:541.741283px;}
.y22{bottom:547.141281px;}
.ya6{bottom:548.581281px;}
.y10c{bottom:553.261279px;}
.yca{bottom:554.161278px;}
.y8b{bottom:557.581277px;}
.y63{bottom:561.001276px;}
.ycb{bottom:562.441275px;}
.y21{bottom:567.841273px;}
.y64{bottom:569.281272px;}
.y10b{bottom:570.541272px;}
.yc9{bottom:574.861270px;}
.y8a{bottom:578.281269px;}
.y62{bottom:581.701267px;}
.y10a{bottom:587.821265px;}
.y1f{bottom:588.541265px;}
.ye1{bottom:589.981264px;}
.yc8{bottom:595.561262px;}
.y20{bottom:596.821261px;}
.y89{bottom:598.261261px;}
.y119{bottom:598.981260px;}
.y61{bottom:602.401259px;}
.y109{bottom:605.101258px;}
.y1e{bottom:609.241256px;}
.y88{bottom:615.361254px;}
.yc7{bottom:616.081254px;}
.y118{bottom:619.681252px;}
.y108{bottom:622.381251px;}
.y60{bottom:623.101251px;}
.y1d{bottom:629.941248px;}
.y87{bottom:632.641247px;}
.yc6{bottom:636.781245px;}
.y107{bottom:640.381244px;}
.y5f{bottom:643.801242px;}
.y86{bottom:649.921240px;}
.y1c{bottom:650.641240px;}
.ya5{bottom:652.081239px;}
.yc5{bottom:657.481237px;}
.y106{bottom:661.081236px;}
.y5e{bottom:664.501234px;}
.y85{bottom:667.201233px;}
.y1a{bottom:671.341231px;}
.yc4{bottom:678.181229px;}
.y1b{bottom:679.621228px;}
.y117{bottom:680.881228px;}
.y105{bottom:681.781227px;}
.y5d{bottom:685.201226px;}
.y19{bottom:692.041223px;}
.ya4{bottom:693.481223px;}
.y116{bottom:698.161221px;}
.yc3{bottom:698.881220px;}
.y104{bottom:702.481219px;}
.y5c{bottom:705.901218px;}
.y18{bottom:712.741215px;}
.y115{bottom:715.441214px;}
.yc2{bottom:719.581212px;}
.y103{bottom:723.181211px;}
.y5b{bottom:726.601209px;}
.y114{bottom:732.721207px;}
.y17{bottom:733.441207px;}
.yc1{bottom:740.281204px;}
.y102{bottom:743.881202px;}
.y5a{bottom:747.301201px;}
.y113{bottom:750.001200px;}
.y16{bottom:754.141198px;}
.ya3{bottom:755.581198px;}
.yc0{bottom:760.981196px;}
.y101{bottom:764.581194px;}
.y58{bottom:768.001193px;}
.y15{bottom:774.841190px;}
.y59{bottom:776.281189px;}
.ybf{bottom:781.681187px;}
.y100{bottom:785.281186px;}
.y57{bottom:788.701185px;}
.y14{bottom:795.541182px;}
.ybe{bottom:802.381179px;}
.yff{bottom:805.981178px;}
.y55{bottom:809.401176px;}
.y13{bottom:816.241174px;}
.y56{bottom:817.681173px;}
.ybd{bottom:823.081171px;}
.yfe{bottom:826.681169px;}
.y53{bottom:830.101168px;}
.y12{bottom:836.941165px;}
.y54{bottom:838.381165px;}
.ybc{bottom:843.781162px;}
.yfd{bottom:847.381161px;}
.y52{bottom:850.801160px;}
.y11{bottom:857.641157px;}
.ya2{bottom:859.081156px;}
.ybb{bottom:864.481154px;}
.yfc{bottom:868.081153px;}
.y51{bottom:871.501151px;}
.y10{bottom:878.341149px;}
.yba{bottom:885.181146px;}
.yfb{bottom:888.781144px;}
.y50{bottom:892.201143px;}
.yf{bottom:899.041140px;}
.y112{bottom:900.481140px;}
.yb9{bottom:905.881138px;}
.yfa{bottom:909.481136px;}
.y4f{bottom:912.901135px;}
.ye{bottom:919.741132px;}
.ye0{bottom:921.181132px;}
.yb8{bottom:926.581129px;}
.yf9{bottom:930.181128px;}
.y4d{bottom:933.601127px;}
.yd{bottom:940.081124px;}
.y4e{bottom:941.881123px;}
.yb7{bottom:947.281121px;}
.yf8{bottom:950.881120px;}
.y4c{bottom:954.301118px;}
.yc{bottom:960.421116px;}
.yb6{bottom:967.981113px;}
.yf7{bottom:971.401111px;}
.y4b{bottom:975.001110px;}
.yb{bottom:977.341109px;}
.yb4{bottom:988.681105px;}
.yf6{bottom:991.381103px;}
.ya{bottom:994.801102px;}
.y49{bottom:995.701102px;}
.yb5{bottom:996.961101px;}
.y4a{bottom:1003.981098px;}
.yf5{bottom:1008.661097px;}
.yb2{bottom:1009.381096px;}
.y9{bottom:1012.081095px;}
.ydf{bottom:1015.501094px;}
.y48{bottom:1016.401093px;}
.yb3{bottom:1017.661093px;}
.yf4{bottom:1025.941090px;}
.y8{bottom:1029.361088px;}
.yb1{bottom:1030.081088px;}
.yde{bottom:1032.781087px;}
.y47{bottom:1037.101085px;}
.yf3{bottom:1043.221083px;}
.y7{bottom:1046.641081px;}
.ydd{bottom:1050.061080px;}
.yb0{bottom:1050.781080px;}
.y46{bottom:1057.801077px;}
.yf2{bottom:1060.501076px;}
.y6{bottom:1063.921074px;}
.y111{bottom:1066.081074px;}
.ydc{bottom:1067.341073px;}
.yaf{bottom:1070.761072px;}
.y45{bottom:1078.501069px;}
.y5{bottom:1080.841068px;}
.ydb{bottom:1085.341066px;}
.yae{bottom:1088.041065px;}
.y4{bottom:1098.841060px;}
.y44{bottom:1099.201060px;}
.yad{bottom:1105.321058px;}
.yda{bottom:1106.041058px;}
.y2{bottom:1119.901052px;}
.yac{bottom:1122.601051px;}
.yd9{bottom:1126.021050px;}
.y3{bottom:1128.181049px;}
.y1{bottom:1140.241044px;}
.y43{bottom:1140.601044px;}
.yd8{bottom:1143.301043px;}
.ha{height:20.520000px;}
.h8{height:26.555029px;}
.h6{height:34.603186px;}
.h7{height:37.362290px;}
.h9{height:40.816064px;}
.h2{height:42.933583px;}
.h3{height:53.186379px;}
.h4{height:55.158458px;}
.h5{height:64.079974px;}
.h1{height:66.455973px;}
.h0{height:1263.000000px;}
.w1{width:127.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:127.620136px;}
.x14{left:132.479197px;}
.x68{left:136.079196px;}
.x3e{left:137.339195px;}
.x74{left:151.919939px;}
.x69{left:161.819935px;}
.x1a{left:162.899935px;}
.x15{left:166.319933px;}
.x9{left:169.199024px;}
.x38{left:170.459932px;}
.x1d{left:173.519931px;}
.x6d{left:174.599930px;}
.x5a{left:177.299929px;}
.x56{left:179.459928px;}
.x47{left:180.719928px;}
.x51{left:184.679926px;}
.x70{left:186.659925px;}
.x48{left:189.719924px;}
.x29{left:195.659922px;}
.x52{left:196.919921px;}
.x71{left:198.899920px;}
.x33{left:204.119918px;}
.x17{left:205.379918px;}
.x2a{left:207.899917px;}
.x16{left:214.739914px;}
.x39{left:219.599912px;}
.x57{left:221.939911px;}
.x3a{left:223.379911px;}
.x3b{left:227.699909px;}
.x1e{left:229.499908px;}
.x59{left:233.099907px;}
.x3c{left:237.599905px;}
.x1{left:239.219904px;}
.x5b{left:240.659904px;}
.x5f{left:241.739903px;}
.x49{left:242.819903px;}
.x3d{left:246.239902px;}
.x4a{left:247.679901px;}
.x77{left:253.259899px;}
.x58{left:262.439895px;}
.x2b{left:266.579893px;}
.x36{left:268.919892px;}
.x4c{left:272.339891px;}
.x5c{left:274.499890px;}
.x53{left:277.559889px;}
.x2c{left:278.819888px;}
.x6e{left:284.039886px;}
.x2{left:285.659920px;}
.x54{left:289.799884px;}
.x4b{left:292.499883px;}
.x6f{left:296.279881px;}
.x37{left:301.499879px;}
.x10{left:318.419873px;}
.x11{left:324.539870px;}
.x6a{left:331.559867px;}
.xe{left:338.039865px;}
.xf{left:344.159862px;}
.x23{left:354.599858px;}
.x24{left:360.719856px;}
.x78{left:363.599855px;}
.x75{left:365.399854px;}
.x79{left:375.839850px;}
.x3f{left:380.519848px;}
.x76{left:397.979841px;}
.x1b{left:403.205839px;}
.x8{left:413.999127px;}
.x40{left:417.599833px;}
.x6{left:420.659832px;}
.x1f{left:440.279824px;}
.x5{left:446.400320px;}
.x1c{left:449.279820px;}
.x60{left:454.499818px;}
.x61{left:457.919817px;}
.x50{left:460.259816px;}
.x18{left:461.519815px;}
.x12{left:466.199814px;}
.x62{left:468.899812px;}
.x13{left:472.319811px;}
.x72{left:476.999809px;}
.x20{left:483.479807px;}
.x73{left:489.239804px;}
.x63{left:500.939800px;}
.x25{left:504.719798px;}
.x26{left:510.839796px;}
.x19{left:518.759792px;}
.x4d{left:532.619787px;}
.x7b{left:563.399941px;}
.x31{left:577.079769px;}
.x41{left:589.319764px;}
.x2f{left:590.579764px;}
.x6b{left:596.159762px;}
.x7c{left:597.599987px;}
.x3{left:601.199760px;}
.x30{left:602.819759px;}
.x4{left:607.319757px;}
.x6c{left:628.739749px;}
.x32{left:633.599747px;}
.x42{left:638.459745px;}
.x7d{left:640.440029px;}
.x43{left:642.239743px;}
.x44{left:645.299742px;}
.x7a{left:646.379741px;}
.x5d{left:650.699740px;}
.xa{left:651.959739px;}
.x45{left:655.199738px;}
.xb{left:658.079737px;}
.x46{left:663.839734px;}
.x27{left:668.519733px;}
.x4e{left:672.659731px;}
.x21{left:676.439729px;}
.x5e{left:679.679728px;}
.x28{left:680.759728px;}
.x22{left:682.559727px;}
.x4f{left:684.899726px;}
.x55{left:697.679721px;}
.x66{left:718.919712px;}
.xc{left:728.999708px;}
.x67{left:731.159708px;}
.x64{left:732.779707px;}
.xd{left:735.119706px;}
.x65{left:745.019702px;}
.x2d{left:748.799700px;}
.x34{left:757.439697px;}
.x2e{left:761.039696px;}
.x35{left:765.359694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009381pt;}
.ls0{letter-spacing:0.009459pt;}
.lsc{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.168228pt;}
.ls1{letter-spacing:0.168267pt;}
.lsa{letter-spacing:0.242080pt;}
.ls4{letter-spacing:0.336535pt;}
.ls3{letter-spacing:2.089439pt;}
.lsd{letter-spacing:2.729812pt;}
.lsb{letter-spacing:3.370239pt;}
.ls8{letter-spacing:4.651038pt;}
.ls9{letter-spacing:5.931784pt;}
.ls5{letter-spacing:8.493383pt;}
.ws3{word-spacing:-39.119984pt;}
.ws7{word-spacing:-16.018911pt;}
.ws5{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.616529pt;}
.ws0{word-spacing:-13.279995pt;}
.ws1{word-spacing:-10.719996pt;}
.ws6{word-spacing:-8.639997pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-4.473528pt;}
._15{margin-left:-2.621390pt;}
._1{margin-left:-0.958846pt;}
._0{width:1.066568pt;}
._a{width:2.821673pt;}
._4{width:3.868377pt;}
._5{width:4.787304pt;}
._c{width:5.693725pt;}
._11{width:6.807976pt;}
._10{width:8.257496pt;}
._2{width:9.712387pt;}
._3{width:10.632280pt;}
._b{width:11.732622pt;}
._7{width:13.498554pt;}
._6{width:14.484544pt;}
._19{width:15.532698pt;}
._e{width:16.992437pt;}
._d{width:17.976719pt;}
._f{width:19.061121pt;}
._14{width:20.187303pt;}
._13{width:21.239932pt;}
._12{width:23.138544pt;}
._18{width:24.818304pt;}
._8{width:27.782908pt;}
._9{width:28.808417pt;}
._1a{width:172.911291pt;}
._17{width:175.635898pt;}
.fs3{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:3.840697pt;}
.y42{bottom:97.867428pt;}
.yf1{bottom:97.867961pt;}
.ya1{bottom:112.267955pt;}
.y41{bottom:113.227421pt;}
.yf0{bottom:113.227955pt;}
.y40{bottom:119.307419pt;}
.y84{bottom:128.587415pt;}
.yd7{bottom:128.587949pt;}
.y3f{bottom:128.747415pt;}
.ya0{bottom:130.667948pt;}
.y83{bottom:134.667946pt;}
.y3e{bottom:134.827946pt;}
.y82{bottom:143.947942pt;}
.y3d{bottom:144.747942pt;}
.y9f{bottom:149.067940pt;}
.yd6{bottom:150.027940pt;}
.y81{bottom:159.307936pt;}
.y110{bottom:159.947936pt;}
.y3c{bottom:160.107936pt;}
.y80{bottom:165.387934pt;}
.y9e{bottom:166.827933pt;}
.y7f{bottom:174.667930pt;}
.y3b{bottom:175.467930pt;}
.y123{bottom:180.747928pt;}
.y9d{bottom:182.187927pt;}
.y7e{bottom:189.867924pt;}
.y122{bottom:190.667924pt;}
.y3a{bottom:190.827924pt;}
.y7d{bottom:195.947922pt;}
.y39{bottom:196.907921pt;}
.y9c{bottom:197.547921pt;}
.y7c{bottom:205.227918pt;}
.y38{bottom:206.187918pt;}
.y7b{bottom:211.307915pt;}
.y9b{bottom:213.547915pt;}
.y7a{bottom:220.587912pt;}
.yef{bottom:221.227912pt;}
.y37{bottom:221.387911pt;}
.y79{bottom:226.667909pt;}
.y36{bottom:227.467909pt;}
.y9a{bottom:231.787907pt;}
.y78{bottom:235.947906pt;}
.y35{bottom:236.747905pt;}
.y34{bottom:242.827903pt;}
.y99{bottom:250.187900pt;}
.y77{bottom:251.307899pt;}
.y33{bottom:252.107899pt;}
.y120{bottom:252.587200pt;}
.y11f{bottom:256.427897pt;}
.y76{bottom:257.387897pt;}
.y10f{bottom:257.547897pt;}
.yee{bottom:259.467896pt;}
.y75{bottom:266.507893pt;}
.y32{bottom:267.467893pt;}
.y98{bottom:268.587893pt;}
.y31{bottom:273.547891pt;}
.y11e{bottom:274.827890pt;}
.yec{bottom:277.867889pt;}
.y74{bottom:281.867887pt;}
.y30{bottom:283.467887pt;}
.yed{bottom:285.227886pt;}
.y97{bottom:286.987885pt;}
.yd5{bottom:287.947885pt;}
.y11d{bottom:293.227883pt;}
.yeb{bottom:295.627882pt;}
.y73{bottom:297.227881pt;}
.y2f{bottom:302.347879pt;}
.yab{bottom:303.307879pt;}
.y96{bottom:304.747878pt;}
.yea{bottom:310.987876pt;}
.y11c{bottom:311.627875pt;}
.y72{bottom:312.587875pt;}
.y95{bottom:320.107872pt;}
.y2d{bottom:320.747872pt;}
.ye9{bottom:326.187870pt;}
.y71{bottom:327.947869pt;}
.y2e{bottom:328.107869pt;}
.y11b{bottom:330.027868pt;}
.y94{bottom:335.467866pt;}
.y2c{bottom:339.147864pt;}
.ye8{bottom:341.547863pt;}
.y6f{bottom:343.307863pt;}
.yd4{bottom:343.947862pt;}
.y11a{bottom:348.427861pt;}
.y70{bottom:349.387860pt;}
.y93{bottom:350.827860pt;}
.ye7{bottom:356.907857pt;}
.y2b{bottom:357.547857pt;}
.y6e{bottom:358.507857pt;}
.y10e{bottom:366.187854pt;}
.y92{bottom:366.827853pt;}
.yd3{bottom:369.227852pt;}
.ye6{bottom:372.267851pt;}
.y6d{bottom:373.867850pt;}
.y29{bottom:375.947850pt;}
.y6c{bottom:379.947848pt;}
.y10d{bottom:382.187847pt;}
.y2a{bottom:383.307847pt;}
.yd2{bottom:384.587846pt;}
.y91{bottom:385.227846pt;}
.ye5{bottom:388.267845pt;}
.y6b{bottom:389.227844pt;}
.y28{bottom:394.347842pt;}
.y6a{bottom:395.307842pt;}
.yd1{bottom:400.587840pt;}
.y90{bottom:403.627839pt;}
.y69{bottom:404.587838pt;}
.ye4{bottom:406.667837pt;}
.yaa{bottom:410.667836pt;}
.y27{bottom:412.747835pt;}
.yd0{bottom:418.987832pt;}
.y68{bottom:419.947832pt;}
.y8f{bottom:422.027831pt;}
.ye3{bottom:425.067830pt;}
.y25{bottom:431.147828pt;}
.ya9{bottom:435.307826pt;}
.y67{bottom:435.947826pt;}
.ycf{bottom:437.387825pt;}
.y26{bottom:438.507825pt;}
.y8e{bottom:440.427824pt;}
.ya8{bottom:441.387823pt;}
.ye2{bottom:443.467823pt;}
.y24{bottom:449.547820pt;}
.ya7{bottom:451.307819pt;}
.yce{bottom:455.787818pt;}
.y8d{bottom:458.827816pt;}
.y66{bottom:461.867815pt;}
.y23{bottom:467.947813pt;}
.ycc{bottom:474.187810pt;}
.y8c{bottom:477.227809pt;}
.y65{bottom:480.267808pt;}
.ycd{bottom:481.547807pt;}
.y22{bottom:486.347805pt;}
.ya6{bottom:487.627805pt;}
.y10c{bottom:491.787803pt;}
.yca{bottom:492.587803pt;}
.y8b{bottom:495.627802pt;}
.y63{bottom:498.667801pt;}
.ycb{bottom:499.947800pt;}
.y21{bottom:504.747798pt;}
.y64{bottom:506.027798pt;}
.y10b{bottom:507.147797pt;}
.yc9{bottom:510.987796pt;}
.y8a{bottom:514.027794pt;}
.y62{bottom:517.067793pt;}
.y10a{bottom:522.507791pt;}
.y1f{bottom:523.147791pt;}
.ye1{bottom:524.427790pt;}
.yc8{bottom:529.387788pt;}
.y20{bottom:530.507788pt;}
.y89{bottom:531.787787pt;}
.y119{bottom:532.427787pt;}
.y61{bottom:535.467786pt;}
.y109{bottom:537.867785pt;}
.y1e{bottom:541.547783pt;}
.y88{bottom:546.987781pt;}
.yc7{bottom:547.627781pt;}
.y118{bottom:550.827780pt;}
.y108{bottom:553.227779pt;}
.y60{bottom:553.867778pt;}
.y1d{bottom:559.947776pt;}
.y87{bottom:562.347775pt;}
.yc6{bottom:566.027774pt;}
.y107{bottom:569.227772pt;}
.y5f{bottom:572.267771pt;}
.y86{bottom:577.707769pt;}
.y1c{bottom:578.347769pt;}
.ya5{bottom:579.627768pt;}
.yc5{bottom:584.427766pt;}
.y106{bottom:587.627765pt;}
.y5e{bottom:590.667764pt;}
.y85{bottom:593.067763pt;}
.y1a{bottom:596.747761pt;}
.yc4{bottom:602.827759pt;}
.y1b{bottom:604.107758pt;}
.y117{bottom:605.227758pt;}
.y105{bottom:606.027758pt;}
.y5d{bottom:609.067756pt;}
.y19{bottom:615.147754pt;}
.ya4{bottom:616.427753pt;}
.y116{bottom:620.587752pt;}
.yc3{bottom:621.227752pt;}
.y104{bottom:624.427750pt;}
.y5c{bottom:627.467749pt;}
.y18{bottom:633.547747pt;}
.y115{bottom:635.947746pt;}
.yc2{bottom:639.627744pt;}
.y103{bottom:642.827743pt;}
.y5b{bottom:645.867742pt;}
.y114{bottom:651.307739pt;}
.y17{bottom:651.947739pt;}
.yc1{bottom:658.027737pt;}
.y102{bottom:661.227736pt;}
.y5a{bottom:664.267734pt;}
.y113{bottom:666.667733pt;}
.y16{bottom:670.347732pt;}
.ya3{bottom:671.627731pt;}
.yc0{bottom:676.427729pt;}
.y101{bottom:679.627728pt;}
.y58{bottom:682.667727pt;}
.y15{bottom:688.747725pt;}
.y59{bottom:690.027724pt;}
.ybf{bottom:694.827722pt;}
.y100{bottom:698.027721pt;}
.y57{bottom:701.067720pt;}
.y14{bottom:707.147717pt;}
.ybe{bottom:713.227715pt;}
.yff{bottom:716.427713pt;}
.y55{bottom:719.467712pt;}
.y13{bottom:725.547710pt;}
.y56{bottom:726.827709pt;}
.ybd{bottom:731.627707pt;}
.yfe{bottom:734.827706pt;}
.y53{bottom:737.867705pt;}
.y12{bottom:743.947702pt;}
.y54{bottom:745.227702pt;}
.ybc{bottom:750.027700pt;}
.yfd{bottom:753.227699pt;}
.y52{bottom:756.267697pt;}
.y11{bottom:762.347695pt;}
.ya2{bottom:763.627695pt;}
.ybb{bottom:768.427693pt;}
.yfc{bottom:771.627691pt;}
.y51{bottom:774.667690pt;}
.y10{bottom:780.747688pt;}
.yba{bottom:786.827685pt;}
.yfb{bottom:790.027684pt;}
.y50{bottom:793.067683pt;}
.yf{bottom:799.147680pt;}
.y112{bottom:800.427680pt;}
.yb9{bottom:805.227678pt;}
.yfa{bottom:808.427677pt;}
.y4f{bottom:811.467675pt;}
.ye{bottom:817.547673pt;}
.ye0{bottom:818.827672pt;}
.yb8{bottom:823.627671pt;}
.yf9{bottom:826.827669pt;}
.y4d{bottom:829.867668pt;}
.yd{bottom:835.627666pt;}
.y4e{bottom:837.227665pt;}
.yb7{bottom:842.027663pt;}
.yf8{bottom:845.227662pt;}
.y4c{bottom:848.267661pt;}
.yc{bottom:853.707659pt;}
.yb6{bottom:860.427656pt;}
.yf7{bottom:863.467655pt;}
.y4b{bottom:866.667653pt;}
.yb{bottom:868.747653pt;}
.yb4{bottom:878.827648pt;}
.yf6{bottom:881.227648pt;}
.ya{bottom:884.267646pt;}
.y49{bottom:885.067646pt;}
.yb5{bottom:886.187646pt;}
.y4a{bottom:892.427643pt;}
.yf5{bottom:896.587641pt;}
.yb2{bottom:897.227641pt;}
.y9{bottom:899.627640pt;}
.ydf{bottom:902.667639pt;}
.y48{bottom:903.467639pt;}
.yb3{bottom:904.587638pt;}
.yf4{bottom:911.947635pt;}
.y8{bottom:914.987634pt;}
.yb1{bottom:915.627634pt;}
.yde{bottom:918.027633pt;}
.y47{bottom:921.867631pt;}
.yf3{bottom:927.307629pt;}
.y7{bottom:930.347628pt;}
.ydd{bottom:933.387627pt;}
.yb0{bottom:934.027626pt;}
.y46{bottom:940.267624pt;}
.yf2{bottom:942.667623pt;}
.y6{bottom:945.707622pt;}
.y111{bottom:947.627621pt;}
.ydc{bottom:948.747621pt;}
.yaf{bottom:951.787619pt;}
.y45{bottom:958.667617pt;}
.y5{bottom:960.747616pt;}
.ydb{bottom:964.747614pt;}
.yae{bottom:967.147613pt;}
.y4{bottom:976.747609pt;}
.y44{bottom:977.067609pt;}
.yad{bottom:982.507607pt;}
.yda{bottom:983.147607pt;}
.y2{bottom:995.467602pt;}
.yac{bottom:997.867601pt;}
.yd9{bottom:1000.907600pt;}
.y3{bottom:1002.827599pt;}
.y1{bottom:1013.547595pt;}
.y43{bottom:1013.867594pt;}
.yd8{bottom:1016.267593pt;}
.ha{height:18.240000pt;}
.h8{height:23.604471pt;}
.h6{height:30.758388pt;}
.h7{height:33.210924pt;}
.h9{height:36.280945pt;}
.h2{height:38.163185pt;}
.h3{height:47.276781pt;}
.h4{height:49.029740pt;}
.h5{height:56.959977pt;}
.h1{height:59.071976pt;}
.h0{height:1122.666667pt;}
.w1{width:112.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:113.440121pt;}
.x14{left:117.759286pt;}
.x68{left:120.959285pt;}
.x3e{left:122.079285pt;}
.x74{left:135.039946pt;}
.x69{left:143.839942pt;}
.x1a{left:144.799942pt;}
.x15{left:147.839941pt;}
.x9{left:150.399133pt;}
.x38{left:151.519939pt;}
.x1d{left:154.239938pt;}
.x6d{left:155.199938pt;}
.x5a{left:157.599937pt;}
.x56{left:159.519936pt;}
.x47{left:160.639936pt;}
.x51{left:164.159934pt;}
.x70{left:165.919934pt;}
.x48{left:168.639933pt;}
.x29{left:173.919930pt;}
.x52{left:175.039930pt;}
.x71{left:176.799929pt;}
.x33{left:181.439927pt;}
.x17{left:182.559927pt;}
.x2a{left:184.799926pt;}
.x16{left:190.879924pt;}
.x39{left:195.199922pt;}
.x57{left:197.279921pt;}
.x3a{left:198.559921pt;}
.x3b{left:202.399919pt;}
.x1e{left:203.999918pt;}
.x59{left:207.199917pt;}
.x3c{left:211.199916pt;}
.x1{left:212.639915pt;}
.x5b{left:213.919914pt;}
.x5f{left:214.879914pt;}
.x49{left:215.839914pt;}
.x3d{left:218.879912pt;}
.x4a{left:220.159912pt;}
.x77{left:225.119910pt;}
.x58{left:233.279907pt;}
.x2b{left:236.959905pt;}
.x36{left:239.039904pt;}
.x4c{left:242.079903pt;}
.x5c{left:243.999902pt;}
.x53{left:246.719901pt;}
.x2c{left:247.839901pt;}
.x6e{left:252.479899pt;}
.x2{left:253.919929pt;}
.x54{left:257.599897pt;}
.x4b{left:259.999896pt;}
.x6f{left:263.359895pt;}
.x37{left:267.999893pt;}
.x10{left:283.039887pt;}
.x11{left:288.479885pt;}
.x6a{left:294.719882pt;}
.xe{left:300.479880pt;}
.xf{left:305.919878pt;}
.x23{left:315.199874pt;}
.x24{left:320.639872pt;}
.x78{left:323.199871pt;}
.x75{left:324.799870pt;}
.x79{left:334.079866pt;}
.x3f{left:338.239865pt;}
.x76{left:353.759858pt;}
.x1b{left:358.405190pt;}
.x8{left:367.999224pt;}
.x40{left:371.199852pt;}
.x6{left:373.919850pt;}
.x1f{left:391.359843pt;}
.x5{left:396.800284pt;}
.x1c{left:399.359840pt;}
.x60{left:403.999838pt;}
.x61{left:407.039837pt;}
.x50{left:409.119836pt;}
.x18{left:410.239836pt;}
.x12{left:414.399834pt;}
.x62{left:416.799833pt;}
.x13{left:419.839832pt;}
.x72{left:423.999830pt;}
.x20{left:429.759828pt;}
.x73{left:434.879826pt;}
.x63{left:445.279822pt;}
.x25{left:448.639821pt;}
.x26{left:454.079818pt;}
.x19{left:461.119816pt;}
.x4d{left:473.439811pt;}
.x7b{left:500.799947pt;}
.x31{left:512.959795pt;}
.x41{left:523.839790pt;}
.x2f{left:524.959790pt;}
.x6b{left:529.919788pt;}
.x7c{left:531.199988pt;}
.x3{left:534.399786pt;}
.x30{left:535.839786pt;}
.x4{left:539.839784pt;}
.x6c{left:558.879776pt;}
.x32{left:563.199775pt;}
.x42{left:567.519773pt;}
.x7d{left:569.280026pt;}
.x43{left:570.879772pt;}
.x44{left:573.599771pt;}
.x7a{left:574.559770pt;}
.x5d{left:578.399769pt;}
.xa{left:579.519768pt;}
.x45{left:582.399767pt;}
.xb{left:584.959766pt;}
.x46{left:590.079764pt;}
.x27{left:594.239762pt;}
.x4e{left:597.919761pt;}
.x21{left:601.279759pt;}
.x5e{left:604.159758pt;}
.x28{left:605.119758pt;}
.x22{left:606.719757pt;}
.x4f{left:608.799756pt;}
.x55{left:620.159752pt;}
.x66{left:639.039744pt;}
.xc{left:647.999741pt;}
.x67{left:649.919740pt;}
.x64{left:651.359739pt;}
.xd{left:653.439739pt;}
.x65{left:662.239735pt;}
.x2d{left:665.599734pt;}
.x34{left:673.279731pt;}
.x2e{left:676.479729pt;}
.x35{left:680.319728pt;}
}




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