
    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_32f1d7aca0f413383a942be0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.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_b74d3d1ac62d0ee46ad59942.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_de78a082cd1f6fdcb79ba2c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184082;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_5748d709ce37127001777544.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_41170eb29dfb6015709f3f69.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_a0b1208d32525db2c76f0a2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_34ccb433d5b26fda653b2313.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765137;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_0c8bc5069a22aca166eb81ba.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_857503279331014e773ff802.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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:ffb;src:url('chunks/assets/font_69d0514a07a7b1a5a4d6ffe7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.746094;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;}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{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);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-69.096000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.296000px;}
.ls5{letter-spacing:-0.648000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.010620px;}
.ls8{letter-spacing:0.095400px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:708.072000px;}
.ls0{letter-spacing:841.093440px;}
.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;}
}
.ws0{word-spacing:-83.520000px;}
.ws2{word-spacing:-72.000000px;}
.ws5{word-spacing:-55.943978px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.999993px;}
.ws4{word-spacing:-17.352000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.506240px;}
._1{width:1.010880px;}
._2{width:2.106720px;}
._b{width:3.318684px;}
._3{width:4.927680px;}
._14{width:5.937998px;}
._7{width:7.816113px;}
._6{width:8.907301px;}
._12{width:9.939022px;}
._d{width:11.079100px;}
._5{width:12.254245px;}
._f{width:13.338671px;}
._13{width:14.550225px;}
._10{width:15.836272px;}
._11{width:16.849898px;}
._16{width:19.452423px;}
._c{width:20.668527px;}
._8{width:21.937484px;}
._4{width:23.824790px;}
._17{width:24.905555px;}
._e{width:25.984824px;}
._18{width:27.273371px;}
._15{width:29.300026px;}
._20{width:30.323961px;}
._22{width:31.500486px;}
._9{width:33.754729px;}
._a{width:35.066792px;}
._23{width:41.440903px;}
._24{width:43.133263px;}
._21{width:45.847391px;}
._1e{width:69.250530px;}
._1b{width:98.788127px;}
._1f{width:198.127361px;}
._19{width:216.697817px;}
._1d{width:275.412302px;}
._1c{width:293.894438px;}
._1a{width:305.670290px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(32,31,30);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,32,96);}
.fs8{font-size:48.239981px;}
.fs3{font-size:60.480000px;}
.fs6{font-size:66.239974px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:71.999971px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs5{font-size:84.239966px;}
.fs0{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:2.700463px;}
.yc8{bottom:2.700548px;}
.y3d{bottom:3.960000px;}
.y65{bottom:24.240890px;}
.y3c{bottom:24.480000px;}
.y3b{bottom:45.360000px;}
.y3a{bottom:65.925000px;}
.y39{bottom:86.805000px;}
.y38{bottom:107.325000px;}
.y92{bottom:113.700855px;}
.ye9{bottom:115.321454px;}
.yb7{bottom:119.100852px;}
.y64{bottom:120.001452px;}
.y2c{bottom:127.116000px;}
.y37{bottom:128.205000px;}
.y135{bottom:128.821448px;}
.y91{bottom:134.400846px;}
.ye8{bottom:136.021446px;}
.yb6{bottom:139.800844px;}
.y63{bottom:140.701444px;}
.y36{bottom:148.725000px;}
.y134{bottom:149.701440px;}
.y2d{bottom:150.510000px;}
.y112{bottom:152.041439px;}
.y90{bottom:155.100838px;}
.ye7{bottom:156.541437px;}
.yb5{bottom:160.500836px;}
.y62{bottom:161.401435px;}
.y2b{bottom:161.670000px;}
.y35{bottom:169.605000px;}
.y8f{bottom:175.800830px;}
.y2a{bottom:178.950000px;}
.yb4{bottom:181.200828px;}
.y61{bottom:182.101427px;}
.y133{bottom:185.161426px;}
.y111{bottom:187.321425px;}
.y34{bottom:190.155000px;}
.ye6{bottom:195.421422px;}
.y29{bottom:196.230000px;}
.y8e{bottom:196.500821px;}
.yb3{bottom:201.900819px;}
.y33{bottom:211.035000px;}
.y28{bottom:213.555000px;}
.ye5{bottom:216.121414px;}
.y60{bottom:217.561413px;}
.y132{bottom:220.801412px;}
.yb2{bottom:222.600811px;}
.y110{bottom:223.321411px;}
.y27{bottom:230.835000px;}
.y32{bottom:231.555000px;}
.y8d{bottom:231.780807px;}
.ye4{bottom:236.821405px;}
.y5f{bottom:238.441405px;}
.y131{bottom:241.681403px;}
.yb1{bottom:243.300803px;}
.y10f{bottom:244.201402px;}
.y26{bottom:248.115000px;}
.y8c{bottom:250.680800px;}
.y31{bottom:252.435000px;}
.ye3{bottom:257.341397px;}
.y5e{bottom:259.141396px;}
.yb0{bottom:264.000794px;}
.y10e{bottom:264.901394px;}
.y25{bottom:265.035000px;}
.y8b{bottom:269.760792px;}
.y30{bottom:272.955000px;}
.y130{bottom:277.141389px;}
.y5d{bottom:279.841388px;}
.y24{bottom:282.315000px;}
.yaf{bottom:284.340786px;}
.y10d{bottom:285.601386px;}
.y8a{bottom:288.660785px;}
.y2f{bottom:293.835000px;}
.ye2{bottom:296.221382px;}
.y12f{bottom:298.020781px;}
.y23{bottom:299.595000px;}
.y5c{bottom:300.541380px;}
.yae{bottom:305.040778px;}
.y10c{bottom:306.301377px;}
.y2e{bottom:314.400000px;}
.y22{bottom:316.875000px;}
.ye1{bottom:316.921373px;}
.y5b{bottom:321.241372px;}
.y89{bottom:322.860771px;}
.yad{bottom:326.100770px;}
.y10b{bottom:327.001369px;}
.y12e{bottom:333.660767px;}
.y21{bottom:334.155000px;}
.ye0{bottom:337.621365px;}
.y5a{bottom:341.941363px;}
.yac{bottom:346.620761px;}
.y10a{bottom:347.701361px;}
.y20{bottom:351.465000px;}
.y12d{bottom:354.540758px;}
.ydf{bottom:358.321357px;}
.y88{bottom:358.680757px;}
.yab{bottom:367.320753px;}
.y1f{bottom:368.745000px;}
.y12c{bottom:375.240750px;}
.y59{bottom:377.041349px;}
.yde{bottom:379.021348px;}
.y87{bottom:379.560748px;}
.y1e{bottom:386.025000px;}
.y109{bottom:386.221346px;}
.ydd{bottom:399.721340px;}
.y86{bottom:400.260740px;}
.yaa{bottom:402.960739px;}
.y1d{bottom:403.305000px;}
.y108{bottom:407.101337px;}
.y12b{bottom:410.700736px;}
.y58{bottom:412.681335px;}
.ydc{bottom:420.241332px;}
.y1c{bottom:420.585000px;}
.y85{bottom:420.960732px;}
.ya9{bottom:423.840730px;}
.y107{bottom:427.801329px;}
.y12a{bottom:431.580727px;}
.y1b{bottom:437.865000px;}
.y84{bottom:441.660723px;}
.ya8{bottom:444.540722px;}
.y106{bottom:448.501321px;}
.y57{bottom:448.861320px;}
.y129{bottom:452.280719px;}
.y1a{bottom:455.145000px;}
.ydb{bottom:459.121316px;}
.y83{bottom:462.360715px;}
.ya7{bottom:465.240714px;}
.y105{bottom:469.201312px;}
.y19{bottom:472.110000px;}
.y128{bottom:472.980711px;}
.yda{bottom:479.821308px;}
.y82{bottom:483.060707px;}
.y56{bottom:484.501306px;}
.ya6{bottom:485.940706px;}
.y18{bottom:489.390000px;}
.y104{bottom:489.901304px;}
.yd9{bottom:500.521300px;}
.y81{bottom:503.760698px;}
.y55{bottom:505.381298px;}
.ya5{bottom:506.640697px;}
.y17{bottom:506.670000px;}
.y127{bottom:508.440697px;}
.y103{bottom:510.601296px;}
.yd8{bottom:521.221292px;}
.y16{bottom:523.950000px;}
.y54{bottom:526.081290px;}
.ya4{bottom:527.340689px;}
.y126{bottom:529.320688px;}
.y80{bottom:539.220684px;}
.yd7{bottom:541.921283px;}
.y102{bottom:545.881282px;}
.y53{bottom:546.781281px;}
.y7f{bottom:560.100676px;}
.yd6{bottom:562.621275px;}
.ya3{bottom:562.800675px;}
.y125{bottom:564.960674px;}
.y52{bottom:567.481273px;}
.y15{bottom:569.310000px;}
.y7e{bottom:580.800668px;}
.y101{bottom:581.881267px;}
.yd5{bottom:583.141267px;}
.ya2{bottom:583.680667px;}
.y124{bottom:585.840666px;}
.y51{bottom:588.181265px;}
.y7d{bottom:601.500659px;}
.y100{bottom:602.761259px;}
.ya1{bottom:604.380658px;}
.y50{bottom:608.881256px;}
.y14{bottom:620.820000px;}
.y123{bottom:621.300651px;}
.yd4{bottom:621.841251px;}
.yff{bottom:623.461251px;}
.ya0{bottom:625.080650px;}
.y4f{bottom:629.581248px;}
.y7c{bottom:636.780645px;}
.y122{bottom:642.180643px;}
.yd3{bottom:643.441243px;}
.yfe{bottom:644.161242px;}
.y9f{bottom:645.780642px;}
.y4e{bottom:650.281240px;}
.y7b{bottom:655.680638px;}
.yd2{bottom:664.141234px;}
.yfd{bottom:664.861234px;}
.y13{bottom:669.060000px;}
.y4d{bottom:670.981232px;}
.y7a{bottom:674.580630px;}
.y121{bottom:677.640629px;}
.y9e{bottom:681.240628px;}
.yd1{bottom:684.841226px;}
.yfc{bottom:685.561226px;}
.y4c{bottom:691.681223px;}
.y79{bottom:693.660623px;}
.y120{bottom:698.520621px;}
.y9d{bottom:702.120619px;}
.yd0{bottom:705.541218px;}
.y4b{bottom:712.381215px;}
.y78{bottom:712.560615px;}
.y12{bottom:714.090000px;}
.y11f{bottom:719.220612px;}
.y9c{bottom:722.820611px;}
.yfb{bottom:724.081210px;}
.ycf{bottom:726.241210px;}
.y77{bottom:731.640607px;}
.y4a{bottom:733.081207px;}
.y11e{bottom:739.920604px;}
.y9b{bottom:743.520603px;}
.yfa{bottom:744.961202px;}
.yce{bottom:746.941201px;}
.y76{bottom:750.540600px;}
.y49{bottom:753.781198px;}
.y11{bottom:759.090000px;}
.y9a{bottom:764.220594px;}
.yf9{bottom:765.661194px;}
.ycd{bottom:768.361193px;}
.y11d{bottom:775.560590px;}
.y75{bottom:784.740586px;}
.yf8{bottom:786.361185px;}
.y48{bottom:788.881184px;}
.ycc{bottom:789.781184px;}
.y11c{bottom:796.440581px;}
.y99{bottom:799.860580px;}
.y10{bottom:804.450000px;}
.y74{bottom:805.620578px;}
.yf7{bottom:807.061177px;}
.ycb{bottom:810.481176px;}
.y98{bottom:820.740572px;}
.y47{bottom:824.701170px;}
.yf6{bottom:827.761169px;}
.yca{bottom:831.181168px;}
.y11b{bottom:831.900567px;}
.y73{bottom:841.260563px;}
.y97{bottom:841.440563px;}
.yf5{bottom:848.461161px;}
.yf{bottom:849.495000px;}
.yc9{bottom:852.241159px;}
.y13e{bottom:852.601159px;}
.y11a{bottom:852.780559px;}
.y7{bottom:854.895000px;}
.y96{bottom:861.780555px;}
.y72{bottom:862.140555px;}
.yf4{bottom:868.981152px;}
.y46{bottom:870.061152px;}
.yc6{bottom:872.941151px;}
.yc7{bottom:878.520600px;}
.y71{bottom:882.840547px;}
.y119{bottom:888.240545px;}
.y13d{bottom:888.241145px;}
.y45{bottom:890.941144px;}
.ye{bottom:894.495000px;}
.yc5{bottom:894.721142px;}
.y6{bottom:902.775000px;}
.y70{bottom:903.540539px;}
.yf3{bottom:907.321137px;}
.y118{bottom:909.120536px;}
.y13c{bottom:909.121136px;}
.y44{bottom:911.641135px;}
.yc4{bottom:915.421134px;}
.y6f{bottom:924.240530px;}
.yf2{bottom:926.401129px;}
.y117{bottom:929.820528px;}
.y13b{bottom:929.821128px;}
.y43{bottom:932.341127px;}
.yc3{bottom:936.121126px;}
.yd{bottom:939.495000px;}
.y95{bottom:944.940522px;}
.yf1{bottom:945.301122px;}
.y42{bottom:952.681119px;}
.y5{bottom:953.895000px;}
.yc2{bottom:956.821117px;}
.y6e{bottom:959.700516px;}
.yf0{bottom:964.201114px;}
.y116{bottom:965.460514px;}
.y13a{bottom:965.461114px;}
.y94{bottom:965.640514px;}
.y41{bottom:973.741111px;}
.yc1{bottom:978.241109px;}
.y6d{bottom:980.580508px;}
.yef{bottom:983.281107px;}
.yc{bottom:984.525000px;}
.y115{bottom:986.340505px;}
.y139{bottom:986.341105px;}
.y4{bottom:990.285000px;}
.y40{bottom:993.541103px;}
.yc0{bottom:999.841100px;}
.y93{bottom:1001.100500px;}
.y6c{bottom:1001.280499px;}
.yee{bottom:1002.181099px;}
.y114{bottom:1007.040497px;}
.ybf{bottom:1020.541092px;}
.y138{bottom:1021.800491px;}
.y6b{bottom:1021.980491px;}
.y3f{bottom:1029.721088px;}
.yb{bottom:1029.885000px;}
.yed{bottom:1039.440484px;}
.ybe{bottom:1041.241084px;}
.y113{bottom:1042.500483px;}
.y6a{bottom:1042.680483px;}
.y3{bottom:1042.845000px;}
.y3e{bottom:1053.841078px;}
.yec{bottom:1060.320476px;}
.ybd{bottom:1062.301075px;}
.y69{bottom:1063.380475px;}
.ya{bottom:1074.885000px;}
.y137{bottom:1078.140469px;}
.y2{bottom:1081.410000px;}
.yb9{bottom:1083.000467px;}
.ybc{bottom:1083.001067px;}
.y68{bottom:1084.080466px;}
.yba{bottom:1088.580600px;}
.yeb{bottom:1098.840460px;}
.y136{bottom:1099.020460px;}
.y67{bottom:1119.540452px;}
.yea{bottom:1119.720452px;}
.y9{bottom:1119.930000px;}
.y1{bottom:1135.410000px;}
.yb8{bottom:1140.060444px;}
.y8{bottom:1140.090000px;}
.y66{bottom:1140.420444px;}
.hd{height:10.980000px;}
.he{height:34.395106px;}
.h9{height:49.679980px;}
.hb{height:51.335979px;}
.hc{height:58.953576px;}
.h5{height:59.357813px;}
.h8{height:60.063096px;}
.ha{height:64.079974px;}
.h4{height:64.428750px;}
.h7{height:70.664062px;}
.h3{height:87.108750px;}
.h2{height:94.618125px;}
.h6{height:330.945000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:6.120000px;}
.w3{width:539.490000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:7.920000px;}
.xc{left:85.859216px;}
.x7{left:127.511987px;}
.xe{left:138.232140px;}
.x11{left:139.684993px;}
.x12{left:162.724698px;}
.x2e{left:178.019929px;}
.x28{left:182.699927px;}
.x18{left:185.579926px;}
.x2{left:189.794987px;}
.x31{left:194.399922px;}
.x33{left:196.379921px;}
.x32{left:201.239920px;}
.x1e{left:204.839918px;}
.x1f{left:210.779916px;}
.x20{left:217.799913px;}
.x2f{left:220.139946px;}
.x1a{left:224.279864px;}
.xa{left:234.105000px;}
.x10{left:255.061910px;}
.x2a{left:257.399783px;}
.x19{left:259.019891px;}
.x9{left:308.309987px;}
.x13{left:341.640000px;}
.x14{left:347.759861px;}
.x3{left:352.229987px;}
.xd{left:356.759233px;}
.x1{left:393.299987px;}
.x8{left:394.379987px;}
.x21{left:406.439837px;}
.x29{left:412.199835px;}
.x5{left:446.579987px;}
.x2b{left:464.760285px;}
.x6{left:469.649987px;}
.x4{left:472.889987px;}
.x30{left:492.659456px;}
.x1b{left:498.059874px;}
.x23{left:507.599797px;}
.x24{left:516.239794px;}
.x22{left:520.739792px;}
.x35{left:524.699790px;}
.x34{left:527.219789px;}
.x1d{left:528.479753px;}
.x17{left:565.559660px;}
.x1c{left:566.999798px;}
.x2c{left:656.280000px;}
.x25{left:659.699736px;}
.x2d{left:662.399735px;}
.x26{left:664.199734px;}
.x27{left:707.039717px;}
.x15{left:714.240000px;}
.x16{left:720.359712px;}
.xf{left:797.399681px;}
@media print{
.v1{vertical-align:-61.418667pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.152000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.009440pt;}
.ls8{letter-spacing:0.084800pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:629.397333pt;}
.ls0{letter-spacing:747.638613pt;}
.ws0{word-spacing:-74.240000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws5{word-spacing:-49.727980pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.999994pt;}
.ws4{word-spacing:-15.424000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.338880pt;}
._1{width:0.898560pt;}
._2{width:1.872640pt;}
._b{width:2.949941pt;}
._3{width:4.380160pt;}
._14{width:5.278220pt;}
._7{width:6.947656pt;}
._6{width:7.917601pt;}
._12{width:8.834686pt;}
._d{width:9.848089pt;}
._5{width:10.892662pt;}
._f{width:11.856596pt;}
._13{width:12.933533pt;}
._10{width:14.076686pt;}
._11{width:14.977687pt;}
._16{width:17.291043pt;}
._c{width:18.372024pt;}
._8{width:19.499986pt;}
._4{width:21.177591pt;}
._17{width:22.138271pt;}
._e{width:23.097621pt;}
._18{width:24.242996pt;}
._15{width:26.044468pt;}
._20{width:26.954632pt;}
._22{width:28.000432pt;}
._9{width:30.004204pt;}
._a{width:31.170482pt;}
._23{width:36.836359pt;}
._24{width:38.340678pt;}
._21{width:40.753236pt;}
._1e{width:61.556027pt;}
._1b{width:87.811668pt;}
._1f{width:176.113210pt;}
._19{width:192.620282pt;}
._1d{width:244.810935pt;}
._1c{width:261.239500pt;}
._1a{width:271.706925pt;}
.fs8{font-size:42.879983pt;}
.fs3{font-size:53.760000pt;}
.fs6{font-size:58.879976pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:63.999974pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs5{font-size:74.879970pt;}
.fs0{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:2.400412pt;}
.yc8{bottom:2.400487pt;}
.y3d{bottom:3.520000pt;}
.y65{bottom:21.547458pt;}
.y3c{bottom:21.760000pt;}
.y3b{bottom:40.320000pt;}
.y3a{bottom:58.600000pt;}
.y39{bottom:77.160000pt;}
.y38{bottom:95.400000pt;}
.y92{bottom:101.067426pt;}
.ye9{bottom:102.507959pt;}
.yb7{bottom:105.867424pt;}
.y64{bottom:106.667957pt;}
.y2c{bottom:112.992000pt;}
.y37{bottom:113.960000pt;}
.y135{bottom:114.507954pt;}
.y91{bottom:119.467419pt;}
.ye8{bottom:120.907952pt;}
.yb6{bottom:124.267417pt;}
.y63{bottom:125.067950pt;}
.y36{bottom:132.200000pt;}
.y134{bottom:133.067947pt;}
.y2d{bottom:133.786667pt;}
.y112{bottom:135.147946pt;}
.y90{bottom:137.867412pt;}
.ye7{bottom:139.147944pt;}
.yb5{bottom:142.667410pt;}
.y62{bottom:143.467943pt;}
.y2b{bottom:143.706667pt;}
.y35{bottom:150.760000pt;}
.y8f{bottom:156.267404pt;}
.y2a{bottom:159.066667pt;}
.yb4{bottom:161.067402pt;}
.y61{bottom:161.867935pt;}
.y133{bottom:164.587934pt;}
.y111{bottom:166.507933pt;}
.y34{bottom:169.026667pt;}
.ye6{bottom:173.707931pt;}
.y29{bottom:174.426667pt;}
.y8e{bottom:174.667397pt;}
.yb3{bottom:179.467395pt;}
.y33{bottom:187.586667pt;}
.y28{bottom:189.826667pt;}
.ye5{bottom:192.107923pt;}
.y60{bottom:193.387923pt;}
.y132{bottom:196.267921pt;}
.yb2{bottom:197.867388pt;}
.y110{bottom:198.507921pt;}
.y27{bottom:205.186667pt;}
.y32{bottom:205.826667pt;}
.y8d{bottom:206.027384pt;}
.ye4{bottom:210.507916pt;}
.y5f{bottom:211.947915pt;}
.y131{bottom:214.827914pt;}
.yb1{bottom:216.267380pt;}
.y10f{bottom:217.067913pt;}
.y26{bottom:220.546667pt;}
.y8c{bottom:222.827378pt;}
.y31{bottom:224.386667pt;}
.ye3{bottom:228.747909pt;}
.y5e{bottom:230.347908pt;}
.yb0{bottom:234.667373pt;}
.y10e{bottom:235.467906pt;}
.y25{bottom:235.586667pt;}
.y8b{bottom:239.787371pt;}
.y30{bottom:242.626667pt;}
.y130{bottom:246.347901pt;}
.y5d{bottom:248.747901pt;}
.y24{bottom:250.946667pt;}
.yaf{bottom:252.747366pt;}
.y10d{bottom:253.867898pt;}
.y8a{bottom:256.587364pt;}
.y2f{bottom:261.186667pt;}
.ye2{bottom:263.307895pt;}
.y12f{bottom:264.907361pt;}
.y23{bottom:266.306667pt;}
.y5c{bottom:267.147893pt;}
.yae{bottom:271.147358pt;}
.y10c{bottom:272.267891pt;}
.y2e{bottom:279.466667pt;}
.y22{bottom:281.666667pt;}
.ye1{bottom:281.707887pt;}
.y5b{bottom:285.547886pt;}
.y89{bottom:286.987352pt;}
.yad{bottom:289.867351pt;}
.y10b{bottom:290.667884pt;}
.y12e{bottom:296.587348pt;}
.y21{bottom:297.026667pt;}
.ye0{bottom:300.107880pt;}
.y5a{bottom:303.947878pt;}
.yac{bottom:308.107343pt;}
.y10a{bottom:309.067876pt;}
.y20{bottom:312.413333pt;}
.y12d{bottom:315.147341pt;}
.ydf{bottom:318.507873pt;}
.y88{bottom:318.827339pt;}
.yab{bottom:326.507336pt;}
.y1f{bottom:327.773333pt;}
.y12c{bottom:333.547333pt;}
.y59{bottom:335.147866pt;}
.yde{bottom:336.907865pt;}
.y87{bottom:337.387332pt;}
.y1e{bottom:343.133333pt;}
.y109{bottom:343.307863pt;}
.ydd{bottom:355.307858pt;}
.y86{bottom:355.787324pt;}
.yaa{bottom:358.187323pt;}
.y1d{bottom:358.493333pt;}
.y108{bottom:361.867855pt;}
.y12b{bottom:365.067321pt;}
.y58{bottom:366.827853pt;}
.ydc{bottom:373.547851pt;}
.y1c{bottom:373.853333pt;}
.y85{bottom:374.187317pt;}
.ya9{bottom:376.747316pt;}
.y107{bottom:380.267848pt;}
.y12a{bottom:383.627313pt;}
.y1b{bottom:389.213333pt;}
.y84{bottom:392.587310pt;}
.ya8{bottom:395.147309pt;}
.y106{bottom:398.667841pt;}
.y57{bottom:398.987840pt;}
.y129{bottom:402.027306pt;}
.y1a{bottom:404.573333pt;}
.ydb{bottom:408.107837pt;}
.y83{bottom:410.987302pt;}
.ya7{bottom:413.547301pt;}
.y105{bottom:417.067833pt;}
.y19{bottom:419.653333pt;}
.y128{bottom:420.427298pt;}
.yda{bottom:426.507829pt;}
.y82{bottom:429.387295pt;}
.y56{bottom:430.667828pt;}
.ya6{bottom:431.947294pt;}
.y18{bottom:435.013333pt;}
.y104{bottom:435.467826pt;}
.yd9{bottom:444.907822pt;}
.y81{bottom:447.787288pt;}
.y55{bottom:449.227820pt;}
.ya5{bottom:450.347287pt;}
.y17{bottom:450.373333pt;}
.y127{bottom:451.947286pt;}
.y103{bottom:453.867818pt;}
.yd8{bottom:463.307815pt;}
.y16{bottom:465.733333pt;}
.y54{bottom:467.627813pt;}
.ya4{bottom:468.747279pt;}
.y126{bottom:470.507278pt;}
.y80{bottom:479.307275pt;}
.yd7{bottom:481.707807pt;}
.y102{bottom:485.227806pt;}
.y53{bottom:486.027806pt;}
.y7f{bottom:497.867268pt;}
.yd6{bottom:500.107800pt;}
.ya3{bottom:500.267267pt;}
.y125{bottom:502.187266pt;}
.y52{bottom:504.427798pt;}
.y15{bottom:506.053333pt;}
.y7e{bottom:516.267260pt;}
.y101{bottom:517.227793pt;}
.yd5{bottom:518.347793pt;}
.ya2{bottom:518.827259pt;}
.y124{bottom:520.747258pt;}
.y51{bottom:522.827791pt;}
.y7d{bottom:534.667253pt;}
.y100{bottom:535.787786pt;}
.ya1{bottom:537.227252pt;}
.y50{bottom:541.227784pt;}
.y14{bottom:551.840000pt;}
.y123{bottom:552.267246pt;}
.yd4{bottom:552.747779pt;}
.yff{bottom:554.187778pt;}
.ya0{bottom:555.627244pt;}
.y4f{bottom:559.627776pt;}
.y7c{bottom:566.027240pt;}
.y122{bottom:570.827238pt;}
.yd3{bottom:571.947771pt;}
.yfe{bottom:572.587771pt;}
.y9f{bottom:574.027237pt;}
.y4e{bottom:578.027769pt;}
.y7b{bottom:582.827234pt;}
.yd2{bottom:590.347764pt;}
.yfd{bottom:590.987764pt;}
.y13{bottom:594.720000pt;}
.y4d{bottom:596.427761pt;}
.y7a{bottom:599.627227pt;}
.y121{bottom:602.347226pt;}
.y9e{bottom:605.547224pt;}
.yd1{bottom:608.747757pt;}
.yfc{bottom:609.387756pt;}
.y4c{bottom:614.827754pt;}
.y79{bottom:616.587220pt;}
.y120{bottom:620.907218pt;}
.y9d{bottom:624.107217pt;}
.yd0{bottom:627.147749pt;}
.y4b{bottom:633.227747pt;}
.y78{bottom:633.387213pt;}
.y12{bottom:634.746667pt;}
.y11f{bottom:639.307211pt;}
.y9c{bottom:642.507210pt;}
.yfb{bottom:643.627743pt;}
.ycf{bottom:645.547742pt;}
.y77{bottom:650.347207pt;}
.y4a{bottom:651.627739pt;}
.y11e{bottom:657.707204pt;}
.y9b{bottom:660.907202pt;}
.yfa{bottom:662.187735pt;}
.yce{bottom:663.947734pt;}
.y76{bottom:667.147200pt;}
.y49{bottom:670.027732pt;}
.y11{bottom:674.746667pt;}
.y9a{bottom:679.307195pt;}
.yf9{bottom:680.587728pt;}
.ycd{bottom:682.987727pt;}
.y11d{bottom:689.387191pt;}
.y75{bottom:697.547188pt;}
.yf8{bottom:698.987720pt;}
.y48{bottom:701.227720pt;}
.ycc{bottom:702.027719pt;}
.y11c{bottom:707.947183pt;}
.y99{bottom:710.987182pt;}
.y10{bottom:715.066667pt;}
.y74{bottom:716.107180pt;}
.yf7{bottom:717.387713pt;}
.ycb{bottom:720.427712pt;}
.y98{bottom:729.547175pt;}
.y47{bottom:733.067707pt;}
.yf6{bottom:735.787706pt;}
.yca{bottom:738.827704pt;}
.y11b{bottom:739.467171pt;}
.y73{bottom:747.787168pt;}
.y97{bottom:747.947167pt;}
.yf5{bottom:754.187698pt;}
.yf{bottom:755.106667pt;}
.yc9{bottom:757.547697pt;}
.y13e{bottom:757.867697pt;}
.y11a{bottom:758.027163pt;}
.y7{bottom:759.906667pt;}
.y96{bottom:766.027160pt;}
.y72{bottom:766.347160pt;}
.yf4{bottom:772.427691pt;}
.y46{bottom:773.387691pt;}
.yc6{bottom:775.947690pt;}
.yc7{bottom:780.907200pt;}
.y71{bottom:784.747153pt;}
.y119{bottom:789.547151pt;}
.y13d{bottom:789.547684pt;}
.y45{bottom:791.947683pt;}
.ye{bottom:795.106667pt;}
.yc5{bottom:795.307682pt;}
.y6{bottom:802.466667pt;}
.y70{bottom:803.147145pt;}
.yf3{bottom:806.507677pt;}
.y118{bottom:808.107143pt;}
.y13c{bottom:808.107677pt;}
.y44{bottom:810.347676pt;}
.yc4{bottom:813.707675pt;}
.y6f{bottom:821.547138pt;}
.yf2{bottom:823.467671pt;}
.y117{bottom:826.507136pt;}
.y13b{bottom:826.507669pt;}
.y43{bottom:828.747669pt;}
.yc3{bottom:832.107667pt;}
.yd{bottom:835.106667pt;}
.y95{bottom:839.947131pt;}
.yf1{bottom:840.267664pt;}
.y42{bottom:846.827661pt;}
.y5{bottom:847.906667pt;}
.yc2{bottom:850.507660pt;}
.y6e{bottom:853.067125pt;}
.yf0{bottom:857.067657pt;}
.y116{bottom:858.187123pt;}
.y13a{bottom:858.187657pt;}
.y94{bottom:858.347123pt;}
.y41{bottom:865.547654pt;}
.yc1{bottom:869.547652pt;}
.y6d{bottom:871.627118pt;}
.yef{bottom:874.027650pt;}
.yc{bottom:875.133333pt;}
.y115{bottom:876.747116pt;}
.y139{bottom:876.747649pt;}
.y4{bottom:880.253333pt;}
.y40{bottom:883.147647pt;}
.yc0{bottom:888.747645pt;}
.y93{bottom:889.867111pt;}
.y6c{bottom:890.027111pt;}
.yee{bottom:890.827644pt;}
.y114{bottom:895.147109pt;}
.ybf{bottom:907.147637pt;}
.y138{bottom:908.267103pt;}
.y6b{bottom:908.427103pt;}
.y3f{bottom:915.307634pt;}
.yb{bottom:915.453333pt;}
.yed{bottom:923.947097pt;}
.ybe{bottom:925.547630pt;}
.y113{bottom:926.667096pt;}
.y6a{bottom:926.827096pt;}
.y3{bottom:926.973333pt;}
.y3e{bottom:936.747625pt;}
.yec{bottom:942.507090pt;}
.ybd{bottom:944.267622pt;}
.y69{bottom:945.227089pt;}
.ya{bottom:955.453333pt;}
.y137{bottom:958.347083pt;}
.y2{bottom:961.253333pt;}
.yb9{bottom:962.667082pt;}
.ybc{bottom:962.667615pt;}
.y68{bottom:963.627081pt;}
.yba{bottom:967.627200pt;}
.yeb{bottom:976.747076pt;}
.y136{bottom:976.907076pt;}
.y67{bottom:995.147069pt;}
.yea{bottom:995.307069pt;}
.y9{bottom:995.493333pt;}
.y1{bottom:1009.253333pt;}
.yb8{bottom:1013.387061pt;}
.y8{bottom:1013.413333pt;}
.y66{bottom:1013.707061pt;}
.hd{height:9.760000pt;}
.he{height:30.573428pt;}
.h9{height:44.159982pt;}
.hb{height:45.631982pt;}
.hc{height:52.403179pt;}
.h5{height:52.762500pt;}
.h8{height:53.389419pt;}
.ha{height:56.959977pt;}
.h4{height:57.270000pt;}
.h7{height:62.812500pt;}
.h3{height:77.430000pt;}
.h2{height:84.105000pt;}
.h6{height:294.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:5.440000pt;}
.w3{width:479.546667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:7.040000pt;}
.xc{left:76.319303pt;}
.x7{left:113.343988pt;}
.xe{left:122.873013pt;}
.x11{left:124.164438pt;}
.x12{left:144.644176pt;}
.x2e{left:158.239937pt;}
.x28{left:162.399935pt;}
.x18{left:164.959934pt;}
.x2{left:168.706655pt;}
.x31{left:172.799931pt;}
.x33{left:174.559930pt;}
.x32{left:178.879928pt;}
.x1e{left:182.079927pt;}
.x1f{left:187.359925pt;}
.x20{left:193.599923pt;}
.x2f{left:195.679952pt;}
.x1a{left:199.359879pt;}
.xa{left:208.093333pt;}
.x10{left:226.721698pt;}
.x2a{left:228.799807pt;}
.x19{left:230.239903pt;}
.x9{left:274.053322pt;}
.x13{left:303.680000pt;}
.x14{left:309.119876pt;}
.x3{left:313.093322pt;}
.xd{left:317.119319pt;}
.x1{left:349.599988pt;}
.x8{left:350.559988pt;}
.x21{left:361.279855pt;}
.x29{left:366.399853pt;}
.x5{left:396.959988pt;}
.x2b{left:413.120253pt;}
.x6{left:417.466655pt;}
.x4{left:420.346655pt;}
.x30{left:437.919516pt;}
.x1b{left:442.719888pt;}
.x23{left:451.199820pt;}
.x24{left:458.879816pt;}
.x22{left:462.879815pt;}
.x35{left:466.399813pt;}
.x34{left:468.639813pt;}
.x1d{left:469.759781pt;}
.x17{left:502.719698pt;}
.x1c{left:503.999820pt;}
.x2c{left:583.360000pt;}
.x25{left:586.399765pt;}
.x2d{left:588.799764pt;}
.x26{left:590.399764pt;}
.x27{left:628.479749pt;}
.x15{left:634.880000pt;}
.x16{left:640.319744pt;}
.xf{left:708.799716pt;}
}




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