
    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_07b6d4cd0f142805f25a2d40.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_8c2935b9f29864276350f785.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_15c9287906e57ced0ef0f65f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115723;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_acc2323e089aedb996ac4316.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_ca0bb380c054b4dab53c452e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_4a4239ea7d51cc2c466fb124.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-241.199904px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.759998px;}
.v1{vertical-align:172.799931px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.110400px;}
.ls1{letter-spacing:0.277734px;}
.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;}
}
.ws9{word-spacing:-211.535915px;}
.ws1b{word-spacing:-191.753203px;}
.ws19{word-spacing:-120.095952px;}
.ws1e{word-spacing:-110.087956px;}
.ws1f{word-spacing:-90.071964px;}
.ws4{word-spacing:-81.359967px;}
.ws1c{word-spacing:-80.063968px;}
.ws18{word-spacing:-73.458691px;}
.ws7{word-spacing:-73.223971px;}
.ws1a{word-spacing:-66.653253px;}
.ws3{word-spacing:-60.047976px;}
.wsb{word-spacing:-55.864058px;}
.ws1{word-spacing:-54.185738px;}
.ws21{word-spacing:-53.442699px;}
.ws5{word-spacing:-48.815980px;}
.ws20{word-spacing:-46.637261px;}
.wsd{word-spacing:-19.484446px;}
.wsc{word-spacing:-19.206712px;}
.wse{word-spacing:-16.613273px;}
.ws14{word-spacing:-2.319823px;}
.wsf{word-spacing:-1.599834px;}
.ws13{word-spacing:-1.546528px;}
.ws11{word-spacing:-1.133288px;}
.ws12{word-spacing:-0.879846px;}
.ws16{word-spacing:-0.313142px;}
.ws10{word-spacing:-0.159858px;}
.ws2{word-spacing:0.000000px;}
.ws1d{word-spacing:0.818438px;}
.ws0{word-spacing:0.876384px;}
.ws15{word-spacing:81.766767px;}
.ws17{word-spacing:556.488137px;}
.wsa{word-spacing:1133.425947px;}
.ws6{word-spacing:1775.360530px;}
.ws8{word-spacing:1775.488126px;}
._e{margin-left:-1783.973643px;}
._f{margin-left:-1425.239430px;}
._d{margin-left:-1409.995687px;}
._c{margin-left:-474.398306px;}
._b{margin-left:-18.385308px;}
._9{margin-left:-15.911979px;}
._5{margin-left:-14.184489px;}
._6{margin-left:-8.491885px;}
._1{margin-left:-7.256086px;}
._7{margin-left:-5.967973px;}
._a{margin-left:-4.381893px;}
._2{margin-left:-3.211861px;}
._0{margin-left:-1.923748px;}
._4{width:1.233949px;}
._10{width:2.355748px;}
._3{width:3.428920px;}
._12{width:4.734843px;}
._13{width:14.740527px;}
._14{width:16.800617px;}
._1a{width:17.903570px;}
._15{width:21.828594px;}
._1b{width:52.631979px;}
._17{width:100.959211px;}
._18{width:121.733231px;}
._19{width:123.580031px;}
._16{width:189.506324px;}
._8{width:213.481598px;}
._11{width:294.191882px;}
.fc7{color:rgb(254,208,0);}
.fc6{color:rgb(45,70,100);}
.fc3{color:rgb(255,222,5);}
.fc1{color:transparent;}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(127,127,127);}
.fc2{color:rgb(217,217,217);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:59.759976px;}
.fsc{font-size:71.999971px;}
.fsb{font-size:84.239966px;}
.fsf{font-size:107.999957px;}
.fse{font-size:120.239952px;}
.fsa{font-size:131.759947px;}
.fs9{font-size:143.999942px;}
.fs2{font-size:167.759933px;}
.fs6{font-size:192.239923px;}
.fs3{font-size:215.999914px;}
.fs1{font-size:239.759904px;}
.fs10{font-size:264.239894px;}
.fs0{font-size:287.999885px;}
.fs5{font-size:323.999870px;}
.fs4{font-size:359.999856px;}
.fs13{font-size:395.999842px;}
.fs11{font-size:431.999827px;}
.fs8{font-size:480.239808px;}
.fs12{font-size:689.759724px;}
.fs7{font-size:935.999626px;}
.y2f{bottom:-122.399773px;}
.y32{bottom:-75.239791px;}
.ybe{bottom:-58.499798px;}
.ye{bottom:-55.799799px;}
.y9f{bottom:-34.379808px;}
.y3d{bottom:-32.759808px;}
.y2a{bottom:-27.359811px;}
.y14{bottom:-26.279811px;}
.yb2{bottom:-24.299812px;}
.y9e{bottom:-19.979814px;}
.y13{bottom:-15.839815px;}
.y57{bottom:-15.479815px;}
.y44{bottom:-10.799817px;}
.y1d{bottom:-10.259817px;}
.y97{bottom:-6.119819px;}
.y51{bottom:-2.879820px;}
.y0{bottom:0.000000px;}
.y54{bottom:0.900178px;}
.ya6{bottom:1.440178px;}
.y84{bottom:1.800313px;}
.y71{bottom:3.060177px;}
.y96{bottom:3.240177px;}
.y24{bottom:4.500177px;}
.y6a{bottom:4.680178px;}
.y5b{bottom:4.680180px;}
.y70{bottom:4.680185px;}
.y5{bottom:5.760176px;}
.y99{bottom:6.120181px;}
.yb6{bottom:9.000188px;}
.y16{bottom:11.520185px;}
.yb4{bottom:11.520188px;}
.yaa{bottom:12.780178px;}
.y47{bottom:12.960183px;}
.y2c{bottom:12.960189px;}
.ya1{bottom:14.040186px;}
.y1f{bottom:14.580183px;}
.y7{bottom:16.020176px;}
.y10{bottom:16.020201px;}
.yc2{bottom:17.100202px;}
.yc0{bottom:21.060202px;}
.ya4{bottom:22.860192px;}
.y19{bottom:24.120189px;}
.y3b{bottom:24.120209px;}
.y43{bottom:25.380083px;}
.y3f{bottom:25.380192px;}
.y30{bottom:27.540167px;}
.y34{bottom:49.320294px;}
.y38{bottom:62.820167px;}
.y36{bottom:62.820227px;}
.y33{bottom:108.780000px;}
.y6e{bottom:129.120305px;}
.y85{bottom:129.480305px;}
.ya8{bottom:131.460304px;}
.ybd{bottom:132.360304px;}
.y86{bottom:148.380298px;}
.y63{bottom:154.320295px;}
.y5d{bottom:166.920290px;}
.y87{bottom:167.100290px;}
.yb{bottom:173.760287px;}
.y62{bottom:179.520285px;}
.y4a{bottom:180.240285px;}
.y88{bottom:186.000283px;}
.ybc{bottom:191.220281px;}
.yc4{bottom:191.760280px;}
.y5c{bottom:192.120280px;}
.y39{bottom:203.460276px;}
.y61{bottom:204.720275px;}
.y9c{bottom:219.300269px;}
.y89{bottom:223.620268px;}
.ya{bottom:224.160267px;}
.y21{bottom:224.700267px;}
.y6d{bottom:229.920265px;}
.yac{bottom:240.180261px;}
.y8a{bottom:242.340260px;}
.y9b{bottom:251.700256px;}
.ybb{bottom:256.020255px;}
.y35{bottom:261.060000px;}
.y8b{bottom:261.240253px;}
.y4b{bottom:265.380251px;}
.y9{bottom:274.560247px;}
.y68{bottom:276.900246px;}
.y4f{bottom:279.060245px;}
.y8c{bottom:279.960245px;}
.yc3{bottom:289.860241px;}
.yb8{bottom:292.380240px;}
.y60{bottom:292.560240px;}
.yb0{bottom:293.820239px;}
.y67{bottom:298.320238px;}
.y8d{bottom:298.860237px;}
.y1b{bottom:300.300237px;}
.y59{bottom:305.160235px;}
.ya2{bottom:308.580234px;}
.y49{bottom:309.300233px;}
.y8e{bottom:317.580230px;}
.y5f{bottom:317.760230px;}
.yba{bottom:318.120230px;}
.y11{bottom:318.480230px;}
.yab{bottom:319.380229px;}
.y66{bottom:319.740229px;}
.y8{bottom:324.960227px;}
.y58{bottom:330.360225px;}
.y8f{bottom:336.480222px;}
.y4e{bottom:336.660222px;}
.y2d{bottom:338.820221px;}
.y65{bottom:341.160221px;}
.y5e{bottom:342.960220px;}
.y3a{bottom:346.920000px;}
.yaf{bottom:351.420216px;}
.y90{bottom:355.200215px;}
.y26{bottom:356.280214px;}
.yb7{bottom:357.180214px;}
.y17{bottom:360.240213px;}
.y64{bottom:362.580212px;}
.ybf{bottom:366.720000px;}
.y48{bottom:367.440210px;}
.yc1{bottom:370.680000px;}
.y20{bottom:371.220209px;}
.y91{bottom:374.100207px;}
.yf{bottom:374.460000px;}
.y9a{bottom:376.800206px;}
.y3e{bottom:388.140000px;}
.ya3{bottom:389.040000px;}
.y92{bottom:392.820200px;}
.y4d{bottom:394.260199px;}
.y18{bottom:395.880000px;}
.y6c{bottom:404.340195px;}
.y2b{bottom:405.960000px;}
.yb3{bottom:410.460000px;}
.y37{bottom:411.000000px;}
.y93{bottom:411.720192px;}
.ya0{bottom:412.260000px;}
.yb5{bottom:412.980000px;}
.y15{bottom:418.920000px;}
.y1e{bottom:421.440000px;}
.y46{bottom:422.520000px;}
.y6b{bottom:425.760187px;}
.y6f{bottom:426.120000px;}
.y94{bottom:430.440185px;}
.y98{bottom:434.040000px;}
.y25{bottom:434.760000px;}
.ya9{bottom:434.940000px;}
.y6{bottom:436.020000px;}
.y5a{bottom:438.720000px;}
.y69{bottom:442.500000px;}
.y95{bottom:446.100000px;}
.y4{bottom:446.280000px;}
.y56{bottom:456.000175px;}
.y72{bottom:468.240170px;}
.y50{bottom:468.600170px;}
.y55{bottom:481.200165px;}
.yb9{bottom:485.880163px;}
.y73{bottom:486.960162px;}
.y53{bottom:490.020161px;}
.y29{bottom:499.200157px;}
.y83{bottom:499.380157px;}
.y12{bottom:500.820157px;}
.y74{bottom:505.860155px;}
.y52{bottom:511.440152px;}
.y31{bottom:512.520152px;}
.yae{bottom:515.940151px;}
.y75{bottom:524.580147px;}
.y3{bottom:527.280146px;}
.y4c{bottom:528.900145px;}
.y45{bottom:529.080145px;}
.y1a{bottom:532.500144px;}
.yd{bottom:534.480143px;}
.y76{bottom:543.480140px;}
.y9d{bottom:544.020139px;}
.y23{bottom:545.280139px;}
.y82{bottom:553.380136px;}
.ya7{bottom:560.580133px;}
.y41{bottom:560.940133px;}
.y77{bottom:562.200132px;}
.y28{bottom:579.300125px;}
.yad{bottom:580.740125px;}
.y78{bottom:581.100125px;}
.yb1{bottom:583.980123px;}
.y79{bottom:599.820117px;}
.y40{bottom:604.140115px;}
.yc{bottom:609.720113px;}
.y2{bottom:610.440113px;}
.y7a{bottom:618.720110px;}
.y2e{bottom:634.380103px;}
.y7b{bottom:637.440102px;}
.y22{bottom:639.780101px;}
.y7c{bottom:656.340094px;}
.y42{bottom:659.220000px;}
.y27{bottom:659.580093px;}
.y7d{bottom:675.060087px;}
.y1{bottom:685.680083px;}
.y3c{bottom:689.280081px;}
.y7e{bottom:693.960079px;}
.y1c{bottom:702.600076px;}
.ya5{bottom:708.360074px;}
.y7f{bottom:712.680072px;}
.y80{bottom:731.580064px;}
.y81{bottom:756.780054px;}
.h2f{height:0.180000px;}
.h6{height:1.260000px;}
.h29{height:3.780000px;}
.h2a{height:7.560000px;}
.h4{height:10.260000px;}
.h19{height:10.440000px;}
.h3d{height:11.340000px;}
.h12{height:11.520000px;}
.h32{height:12.240000px;}
.h42{height:14.580000px;}
.h47{height:14.760000px;}
.h2e{height:15.120000px;}
.h27{height:16.380000px;}
.h14{height:18.360000px;}
.h30{height:18.900000px;}
.h28{height:20.160000px;}
.h24{height:23.760000px;}
.h41{height:24.660000px;}
.h10{height:24.840000px;}
.hc{height:27.360000px;}
.h46{height:31.140000px;}
.h9{height:33.120000px;}
.h45{height:33.300000px;}
.h37{height:34.020000px;}
.h1c{height:35.280000px;}
.h44{height:35.820000px;}
.h34{height:39.780000px;}
.h15{height:40.320000px;}
.hf{height:41.220000px;}
.hd{height:50.400000px;}
.h3a{height:55.620000px;}
.h38{height:57.240000px;}
.h20{height:58.140000px;}
.ha{height:59.400000px;}
.h11{height:61.560000px;}
.h2b{height:62.327788px;}
.h3{height:62.820000px;}
.h35{height:63.360000px;}
.h7{height:71.820000px;}
.h2c{height:75.093720px;}
.h4a{height:75.600000px;}
.h1e{height:75.960000px;}
.h26{height:76.630399px;}
.h49{height:79.560000px;}
.h1d{height:99.360000px;}
.h16{height:100.440000px;}
.h31{height:112.640580px;}
.h5{height:116.645578px;}
.h22{height:124.560000px;}
.h2d{height:125.406512px;}
.h13{height:133.666822px;}
.he{height:150.187440px;}
.h23{height:151.868611px;}
.h2{height:166.708058px;}
.h3f{height:174.874500px;}
.h43{height:174.968368px;}
.h1b{height:185.220000px;}
.h3e{height:196.488203px;}
.h1{height:200.249920px;}
.h25{height:200.500232px;}
.h8{height:225.281160px;}
.h3b{height:250.062087px;}
.hb{height:250.312400px;}
.h18{height:250.380000px;}
.h1a{height:272.160000px;}
.h33{height:275.593952px;}
.h39{height:300.374880px;}
.h21{height:322.987371px;}
.h48{height:337.921740px;}
.h40{height:413.015460px;}
.h36{height:450.562320px;}
.h1f{height:500.875112px;}
.h17{height:650.812240px;}
.h3c{height:719.397837px;}
.h0{height:892.500000px;}
.w19{width:4.140000px;}
.w17{width:16.559640px;}
.wa{width:18.360000px;}
.w1c{width:19.980000px;}
.w4{width:31.860000px;}
.w16{width:39.060000px;}
.w18{width:43.020000px;}
.w1a{width:48.060000px;}
.w24{width:60.479640px;}
.w3{width:69.480000px;}
.w12{width:80.459640px;}
.w1b{width:82.439640px;}
.w13{width:96.120000px;}
.we{width:118.619640px;}
.wd{width:118.620000px;}
.w6{width:146.340000px;}
.w14{width:147.420000px;}
.w1e{width:178.919640px;}
.w2{width:185.580000px;}
.w22{width:215.819640px;}
.wb{width:243.540000px;}
.w20{width:256.680000px;}
.w7{width:285.300000px;}
.w1d{width:301.320000px;}
.w1{width:312.840000px;}
.w21{width:316.620000px;}
.w15{width:334.800000px;}
.w9{width:349.560000px;}
.w25{width:378.000000px;}
.w11{width:444.059640px;}
.wf{width:445.860000px;}
.w1f{width:450.360000px;}
.wc{width:747.719640px;}
.w23{width:785.340000px;}
.w8{width:913.499640px;}
.w5{width:930.240000px;}
.w10{width:1007.279640px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x15{left:102.225859px;}
.x24{left:115.905960px;}
.xd{left:119.145960px;}
.x28{left:121.305960px;}
.x20{left:123.465851px;}
.x21{left:126.345849px;}
.x33{left:127.605960px;}
.x53{left:131.926447px;}
.x38{left:136.245846px;}
.x2e{left:140.925844px;}
.x32{left:148.845840px;}
.x29{left:154.065960px;}
.x56{left:156.225960px;}
.x3f{left:164.145960px;}
.x4c{left:167.746433px;}
.x58{left:169.006432px;}
.x44{left:173.325960px;}
.x17{left:176.745960px;}
.x16{left:183.405827px;}
.x40{left:184.665600px;}
.x59{left:187.005600px;}
.x12{left:195.106422px;}
.xf{left:206.626417px;}
.x10{left:211.485600px;}
.xe{left:220.485600px;}
.x2f{left:224.626410px;}
.x41{left:227.685600px;}
.x36{left:244.426402px;}
.x52{left:255.046398px;}
.x45{left:259.725600px;}
.x1e{left:262.066395px;}
.x30{left:263.506395px;}
.x25{left:268.006393px;}
.xb{left:270.346392px;}
.x1{left:274.666390px;}
.x9{left:275.926390px;}
.x46{left:279.705600px;}
.xc{left:302.026379px;}
.x2{left:306.346377px;}
.x2c{left:335.506366px;}
.x27{left:338.746365px;}
.x4f{left:344.865600px;}
.x4{left:346.125600px;}
.x3{left:366.286353px;}
.x57{left:372.045600px;}
.x31{left:389.686344px;}
.x22{left:397.066341px;}
.x54{left:428.206329px;}
.x4d{left:439.725600px;}
.x4e{left:461.146316px;}
.x1b{left:468.885600px;}
.x1a{left:483.286307px;}
.x51{left:489.406304px;}
.x2b{left:501.646299px;}
.x7{left:523.786290px;}
.x18{left:529.006288px;}
.x49{left:535.666286px;}
.x13{left:546.106282px;}
.x26{left:548.805600px;}
.x11{left:552.765600px;}
.x14{left:557.626277px;}
.x19{left:564.286274px;}
.x2a{left:574.546270px;}
.x8{left:592.186263px;}
.x55{left:599.206260px;}
.x50{left:601.545600px;}
.x2d{left:603.346259px;}
.x3d{left:645.826242px;}
.x35{left:650.865600px;}
.x3c{left:653.746239px;}
.x3b{left:660.586236px;}
.x3a{left:662.566235px;}
.x39{left:667.426233px;}
.x5{left:673.005600px;}
.x34{left:679.846228px;}
.xa{left:685.786226px;}
.x48{left:704.506218px;}
.x43{left:715.486214px;}
.x47{left:769.845600px;}
.x37{left:779.926188px;}
.x42{left:781.186188px;}
.x4b{left:794.686182px;}
.x4a{left:806.566177px;}
.x1c{left:818.445600px;}
.x1f{left:827.986169px;}
.x1d{left:836.805600px;}
.x6{left:872.445600px;}
.x3e{left:887.386145px;}
.x23{left:1025.985600px;}
@media print{
.v3{vertical-align:-214.399914pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.119998pt;}
.v1{vertical-align:153.599939pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.098133pt;}
.ls1{letter-spacing:0.246875pt;}
.ws9{word-spacing:-188.031925pt;}
.ws1b{word-spacing:-170.447292pt;}
.ws19{word-spacing:-106.751957pt;}
.ws1e{word-spacing:-97.855961pt;}
.ws1f{word-spacing:-80.063968pt;}
.ws4{word-spacing:-72.319971pt;}
.ws1c{word-spacing:-71.167972pt;}
.ws18{word-spacing:-65.296614pt;}
.ws7{word-spacing:-65.087974pt;}
.ws1a{word-spacing:-59.247336pt;}
.ws3{word-spacing:-53.375979pt;}
.wsb{word-spacing:-49.656940pt;}
.ws1{word-spacing:-48.165101pt;}
.ws21{word-spacing:-47.504621pt;}
.ws5{word-spacing:-43.391983pt;}
.ws20{word-spacing:-41.455343pt;}
.wsd{word-spacing:-17.319508pt;}
.wsc{word-spacing:-17.072633pt;}
.wse{word-spacing:-14.767354pt;}
.ws14{word-spacing:-2.062064pt;}
.wsf{word-spacing:-1.422075pt;}
.ws13{word-spacing:-1.374692pt;}
.ws11{word-spacing:-1.007367pt;}
.ws12{word-spacing:-0.782085pt;}
.ws16{word-spacing:-0.278349pt;}
.ws10{word-spacing:-0.142096pt;}
.ws2{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.727501pt;}
.ws0{word-spacing:0.779008pt;}
.ws15{word-spacing:72.681571pt;}
.ws17{word-spacing:494.656122pt;}
.wsa{word-spacing:1007.489730pt;}
.ws6{word-spacing:1578.098249pt;}
.ws8{word-spacing:1578.211668pt;}
._e{margin-left:-1585.754350pt;}
._f{margin-left:-1266.879493pt;}
._d{margin-left:-1253.329500pt;}
._c{margin-left:-421.687383pt;}
._b{margin-left:-16.342496pt;}
._9{margin-left:-14.143982pt;}
._5{margin-left:-12.608435pt;}
._6{margin-left:-7.548342pt;}
._1{margin-left:-6.449854pt;}
._7{margin-left:-5.304865pt;}
._a{margin-left:-3.895016pt;}
._2{margin-left:-2.854988pt;}
._0{margin-left:-1.709998pt;}
._4{width:1.096843pt;}
._10{width:2.093998pt;}
._3{width:3.047929pt;}
._12{width:4.208749pt;}
._13{width:13.102690pt;}
._14{width:14.933882pt;}
._1a{width:15.914285pt;}
._15{width:19.403195pt;}
._1b{width:46.783981pt;}
._17{width:89.741520pt;}
._18{width:108.207317pt;}
._19{width:109.848916pt;}
._16{width:168.450066pt;}
._8{width:189.761420pt;}
._11{width:261.503895pt;}
.fsd{font-size:53.119979pt;}
.fsc{font-size:63.999974pt;}
.fsb{font-size:74.879970pt;}
.fsf{font-size:95.999962pt;}
.fse{font-size:106.879957pt;}
.fsa{font-size:117.119953pt;}
.fs9{font-size:127.999949pt;}
.fs2{font-size:149.119940pt;}
.fs6{font-size:170.879932pt;}
.fs3{font-size:191.999923pt;}
.fs1{font-size:213.119915pt;}
.fs10{font-size:234.879906pt;}
.fs0{font-size:255.999898pt;}
.fs5{font-size:287.999885pt;}
.fs4{font-size:319.999872pt;}
.fs13{font-size:351.999859pt;}
.fs11{font-size:383.999846pt;}
.fs8{font-size:426.879829pt;}
.fs12{font-size:613.119755pt;}
.fs7{font-size:831.999667pt;}
.y2f{bottom:-108.799798pt;}
.y32{bottom:-66.879815pt;}
.ybe{bottom:-51.999821pt;}
.ye{bottom:-49.599822pt;}
.y9f{bottom:-30.559829pt;}
.y3d{bottom:-29.119830pt;}
.y2a{bottom:-24.319832pt;}
.y14{bottom:-23.359832pt;}
.yb2{bottom:-21.599833pt;}
.y9e{bottom:-17.759834pt;}
.y13{bottom:-14.079836pt;}
.y57{bottom:-13.759836pt;}
.y44{bottom:-9.599838pt;}
.y1d{bottom:-9.119838pt;}
.y97{bottom:-5.439839pt;}
.y51{bottom:-2.559840pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:0.800158pt;}
.ya6{bottom:1.280158pt;}
.y84{bottom:1.600278pt;}
.y71{bottom:2.720158pt;}
.y96{bottom:2.880158pt;}
.y24{bottom:4.000157pt;}
.y6a{bottom:4.160158pt;}
.y5b{bottom:4.160160pt;}
.y70{bottom:4.160164pt;}
.y5{bottom:5.120157pt;}
.y99{bottom:5.440161pt;}
.yb6{bottom:8.000167pt;}
.y16{bottom:10.240164pt;}
.yb4{bottom:10.240167pt;}
.yaa{bottom:11.360158pt;}
.y47{bottom:11.520162pt;}
.y2c{bottom:11.520168pt;}
.ya1{bottom:12.480166pt;}
.y1f{bottom:12.960162pt;}
.y7{bottom:14.240157pt;}
.y10{bottom:14.240178pt;}
.yc2{bottom:15.200179pt;}
.yc0{bottom:18.720179pt;}
.ya4{bottom:20.320171pt;}
.y19{bottom:21.440168pt;}
.y3b{bottom:21.440185pt;}
.y43{bottom:22.560074pt;}
.y3f{bottom:22.560170pt;}
.y30{bottom:24.480149pt;}
.y34{bottom:43.840261pt;}
.y38{bottom:55.840149pt;}
.y36{bottom:55.840202pt;}
.y33{bottom:96.693333pt;}
.y6e{bottom:114.773605pt;}
.y85{bottom:115.093605pt;}
.ya8{bottom:116.853604pt;}
.ybd{bottom:117.653604pt;}
.y86{bottom:131.893598pt;}
.y63{bottom:137.173596pt;}
.y5d{bottom:148.373591pt;}
.y87{bottom:148.533591pt;}
.yb{bottom:154.453589pt;}
.y62{bottom:159.573587pt;}
.y4a{bottom:160.213587pt;}
.y88{bottom:165.333585pt;}
.ybc{bottom:169.973583pt;}
.yc4{bottom:170.453582pt;}
.y5c{bottom:170.773582pt;}
.y39{bottom:180.853578pt;}
.y61{bottom:181.973578pt;}
.y9c{bottom:194.933573pt;}
.y89{bottom:198.773571pt;}
.ya{bottom:199.253571pt;}
.y21{bottom:199.733571pt;}
.y6d{bottom:204.373569pt;}
.yac{bottom:213.493565pt;}
.y8a{bottom:215.413565pt;}
.y9b{bottom:223.733561pt;}
.ybb{bottom:227.573560pt;}
.y35{bottom:232.053333pt;}
.y8b{bottom:232.213558pt;}
.y4b{bottom:235.893556pt;}
.y9{bottom:244.053553pt;}
.y68{bottom:246.133552pt;}
.y4f{bottom:248.053551pt;}
.y8c{bottom:248.853551pt;}
.yc3{bottom:257.653548pt;}
.yb8{bottom:259.893547pt;}
.y60{bottom:260.053547pt;}
.yb0{bottom:261.173546pt;}
.y67{bottom:265.173545pt;}
.y8d{bottom:265.653544pt;}
.y1b{bottom:266.933544pt;}
.y59{bottom:271.253542pt;}
.ya2{bottom:274.293541pt;}
.y49{bottom:274.933541pt;}
.y8e{bottom:282.293538pt;}
.y5f{bottom:282.453538pt;}
.yba{bottom:282.773538pt;}
.y11{bottom:283.093537pt;}
.yab{bottom:283.893537pt;}
.y66{bottom:284.213537pt;}
.y8{bottom:288.853535pt;}
.y58{bottom:293.653533pt;}
.y8f{bottom:299.093531pt;}
.y4e{bottom:299.253531pt;}
.y2d{bottom:301.173530pt;}
.y65{bottom:303.253529pt;}
.y5e{bottom:304.853529pt;}
.y3a{bottom:308.373333pt;}
.yaf{bottom:312.373526pt;}
.y90{bottom:315.733524pt;}
.y26{bottom:316.693524pt;}
.yb7{bottom:317.493524pt;}
.y17{bottom:320.213523pt;}
.y64{bottom:322.293522pt;}
.ybf{bottom:325.973333pt;}
.y48{bottom:326.613520pt;}
.yc1{bottom:329.493333pt;}
.y20{bottom:329.973519pt;}
.y91{bottom:332.533518pt;}
.yf{bottom:332.853333pt;}
.y9a{bottom:334.933517pt;}
.y3e{bottom:345.013333pt;}
.ya3{bottom:345.813333pt;}
.y92{bottom:349.173511pt;}
.y4d{bottom:350.453510pt;}
.y18{bottom:351.893333pt;}
.y6c{bottom:359.413507pt;}
.y2b{bottom:360.853333pt;}
.yb3{bottom:364.853333pt;}
.y37{bottom:365.333333pt;}
.y93{bottom:365.973504pt;}
.ya0{bottom:366.453333pt;}
.yb5{bottom:367.093333pt;}
.y15{bottom:372.373333pt;}
.y1e{bottom:374.613333pt;}
.y46{bottom:375.573333pt;}
.y6b{bottom:378.453499pt;}
.y6f{bottom:378.773333pt;}
.y94{bottom:382.613498pt;}
.y98{bottom:385.813333pt;}
.y25{bottom:386.453333pt;}
.ya9{bottom:386.613333pt;}
.y6{bottom:387.573333pt;}
.y5a{bottom:389.973333pt;}
.y69{bottom:393.333333pt;}
.y95{bottom:396.533333pt;}
.y4{bottom:396.693333pt;}
.y56{bottom:405.333489pt;}
.y72{bottom:416.213484pt;}
.y50{bottom:416.533484pt;}
.y55{bottom:427.733480pt;}
.yb9{bottom:431.893478pt;}
.y73{bottom:432.853478pt;}
.y53{bottom:435.573476pt;}
.y29{bottom:443.733473pt;}
.y83{bottom:443.893473pt;}
.y12{bottom:445.173473pt;}
.y74{bottom:449.653471pt;}
.y52{bottom:454.613469pt;}
.y31{bottom:455.573468pt;}
.yae{bottom:458.613467pt;}
.y75{bottom:466.293464pt;}
.y3{bottom:468.693463pt;}
.y4c{bottom:470.133463pt;}
.y45{bottom:470.293463pt;}
.y1a{bottom:473.333461pt;}
.yd{bottom:475.093461pt;}
.y76{bottom:483.093457pt;}
.y9d{bottom:483.573457pt;}
.y23{bottom:484.693457pt;}
.y82{bottom:491.893454pt;}
.ya7{bottom:498.293451pt;}
.y41{bottom:498.613451pt;}
.y77{bottom:499.733451pt;}
.y28{bottom:514.933445pt;}
.yad{bottom:516.213444pt;}
.y78{bottom:516.533444pt;}
.yb1{bottom:519.093443pt;}
.y79{bottom:533.173437pt;}
.y40{bottom:537.013436pt;}
.yc{bottom:541.973434pt;}
.y2{bottom:542.613434pt;}
.y7a{bottom:549.973431pt;}
.y2e{bottom:563.893425pt;}
.y7b{bottom:566.613424pt;}
.y22{bottom:568.693423pt;}
.y7c{bottom:583.413417pt;}
.y42{bottom:585.973333pt;}
.y27{bottom:586.293416pt;}
.y7d{bottom:600.053411pt;}
.y1{bottom:609.493407pt;}
.y3c{bottom:612.693406pt;}
.y7e{bottom:616.853404pt;}
.y1c{bottom:624.533401pt;}
.ya5{bottom:629.653399pt;}
.y7f{bottom:633.493397pt;}
.y80{bottom:650.293391pt;}
.y81{bottom:672.693382pt;}
.h2f{height:0.160000pt;}
.h6{height:1.120000pt;}
.h29{height:3.360000pt;}
.h2a{height:6.720000pt;}
.h4{height:9.120000pt;}
.h19{height:9.280000pt;}
.h3d{height:10.080000pt;}
.h12{height:10.240000pt;}
.h32{height:10.880000pt;}
.h42{height:12.960000pt;}
.h47{height:13.120000pt;}
.h2e{height:13.440000pt;}
.h27{height:14.560000pt;}
.h14{height:16.320000pt;}
.h30{height:16.800000pt;}
.h28{height:17.920000pt;}
.h24{height:21.120000pt;}
.h41{height:21.920000pt;}
.h10{height:22.080000pt;}
.hc{height:24.320000pt;}
.h46{height:27.680000pt;}
.h9{height:29.440000pt;}
.h45{height:29.600000pt;}
.h37{height:30.240000pt;}
.h1c{height:31.360000pt;}
.h44{height:31.840000pt;}
.h34{height:35.360000pt;}
.h15{height:35.840000pt;}
.hf{height:36.640000pt;}
.hd{height:44.800000pt;}
.h3a{height:49.440000pt;}
.h38{height:50.880000pt;}
.h20{height:51.680000pt;}
.ha{height:52.800000pt;}
.h11{height:54.720000pt;}
.h2b{height:55.402478pt;}
.h3{height:55.840000pt;}
.h35{height:56.320000pt;}
.h7{height:63.840000pt;}
.h2c{height:66.749973pt;}
.h4a{height:67.200000pt;}
.h1e{height:67.520000pt;}
.h26{height:68.115910pt;}
.h49{height:70.720000pt;}
.h1d{height:88.320000pt;}
.h16{height:89.280000pt;}
.h31{height:100.124960pt;}
.h5{height:103.684959pt;}
.h22{height:110.720000pt;}
.h2d{height:111.472455pt;}
.h13{height:118.814952pt;}
.he{height:133.499947pt;}
.h23{height:134.994321pt;}
.h2{height:148.184941pt;}
.h3f{height:155.444000pt;}
.h43{height:155.527438pt;}
.h1b{height:164.640000pt;}
.h3e{height:174.656180pt;}
.h1{height:177.999929pt;}
.h25{height:178.222429pt;}
.h8{height:200.249920pt;}
.h3b{height:222.277411pt;}
.hb{height:222.499911pt;}
.h18{height:222.560000pt;}
.h1a{height:241.920000pt;}
.h33{height:244.972402pt;}
.h39{height:266.999893pt;}
.h21{height:287.099885pt;}
.h48{height:300.374880pt;}
.h40{height:367.124853pt;}
.h36{height:400.499840pt;}
.h1f{height:445.222322pt;}
.h17{height:578.499769pt;}
.h3c{height:639.464744pt;}
.h0{height:793.333333pt;}
.w19{width:3.680000pt;}
.w17{width:14.719680pt;}
.wa{width:16.320000pt;}
.w1c{width:17.760000pt;}
.w4{width:28.320000pt;}
.w16{width:34.720000pt;}
.w18{width:38.240000pt;}
.w1a{width:42.720000pt;}
.w24{width:53.759680pt;}
.w3{width:61.760000pt;}
.w12{width:71.519680pt;}
.w1b{width:73.279680pt;}
.w13{width:85.440000pt;}
.we{width:105.439680pt;}
.wd{width:105.440000pt;}
.w6{width:130.080000pt;}
.w14{width:131.040000pt;}
.w1e{width:159.039680pt;}
.w2{width:164.960000pt;}
.w22{width:191.839680pt;}
.wb{width:216.480000pt;}
.w20{width:228.160000pt;}
.w7{width:253.600000pt;}
.w1d{width:267.840000pt;}
.w1{width:278.080000pt;}
.w21{width:281.440000pt;}
.w15{width:297.600000pt;}
.w9{width:310.720000pt;}
.w25{width:336.000000pt;}
.w11{width:394.719680pt;}
.wf{width:396.320000pt;}
.w1f{width:400.320000pt;}
.wc{width:664.639680pt;}
.w23{width:698.080000pt;}
.w8{width:811.999680pt;}
.w5{width:826.880000pt;}
.w10{width:895.359680pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x15{left:90.867430pt;}
.x24{left:103.027520pt;}
.xd{left:105.907520pt;}
.x28{left:107.827520pt;}
.x20{left:109.747423pt;}
.x21{left:112.307422pt;}
.x33{left:113.427520pt;}
.x53{left:117.267953pt;}
.x38{left:121.107418pt;}
.x2e{left:125.267417pt;}
.x32{left:132.307414pt;}
.x29{left:136.947520pt;}
.x56{left:138.867520pt;}
.x3f{left:145.907520pt;}
.x4c{left:149.107940pt;}
.x58{left:150.227940pt;}
.x44{left:154.067520pt;}
.x17{left:157.107520pt;}
.x16{left:163.027401pt;}
.x40{left:164.147200pt;}
.x59{left:166.227200pt;}
.x12{left:173.427931pt;}
.xf{left:183.667927pt;}
.x10{left:187.987200pt;}
.xe{left:195.987200pt;}
.x2f{left:199.667920pt;}
.x41{left:202.387200pt;}
.x36{left:217.267913pt;}
.x52{left:226.707909pt;}
.x45{left:230.867200pt;}
.x1e{left:232.947907pt;}
.x30{left:234.227906pt;}
.x25{left:238.227905pt;}
.xb{left:240.307904pt;}
.x1{left:244.147902pt;}
.x9{left:245.267902pt;}
.x46{left:248.627200pt;}
.xc{left:268.467893pt;}
.x2{left:272.307891pt;}
.x2c{left:298.227881pt;}
.x27{left:301.107880pt;}
.x4f{left:306.547200pt;}
.x4{left:307.667200pt;}
.x3{left:325.587870pt;}
.x57{left:330.707200pt;}
.x31{left:346.387861pt;}
.x22{left:352.947859pt;}
.x54{left:380.627848pt;}
.x4d{left:390.867200pt;}
.x4e{left:409.907836pt;}
.x1b{left:416.787200pt;}
.x1a{left:429.587828pt;}
.x51{left:435.027826pt;}
.x2b{left:445.907822pt;}
.x7{left:465.587814pt;}
.x18{left:470.227812pt;}
.x49{left:476.147810pt;}
.x13{left:485.427806pt;}
.x26{left:487.827200pt;}
.x11{left:491.347200pt;}
.x14{left:495.667802pt;}
.x19{left:501.587799pt;}
.x2a{left:510.707796pt;}
.x8{left:526.387789pt;}
.x55{left:532.627787pt;}
.x50{left:534.707200pt;}
.x2d{left:536.307785pt;}
.x3d{left:574.067770pt;}
.x35{left:578.547200pt;}
.x3c{left:581.107768pt;}
.x3b{left:587.187765pt;}
.x3a{left:588.947764pt;}
.x39{left:593.267763pt;}
.x5{left:598.227200pt;}
.x34{left:604.307758pt;}
.xa{left:609.587756pt;}
.x48{left:626.227750pt;}
.x43{left:635.987746pt;}
.x47{left:684.307200pt;}
.x37{left:693.267723pt;}
.x42{left:694.387722pt;}
.x4b{left:706.387717pt;}
.x4a{left:716.947713pt;}
.x1c{left:727.507200pt;}
.x1f{left:735.987706pt;}
.x1d{left:743.827200pt;}
.x6{left:775.507200pt;}
.x3e{left:788.787684pt;}
.x23{left:911.987200pt;}
}




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