
    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_45e2833631feaebd9cb4a13f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_33eb2f3246ad7d4cf2386b48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_f16e00911482da764e085afb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_19492e4d1fb7cb16c1bf9cf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_4f9fbd46bd6a9af122a06433.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_991ec0eec6a35a1e755d8a20.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_dbd87040b625a49886dce5ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_fd31281caa7d5d5d10b51aa5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_3c5a11b8bd48511be434ff0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.067383;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-74.880000px;}
.v4{vertical-align:-4.320000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v3{vertical-align:4.320000px;}
.v1{vertical-align:27.360000px;}
.ls16{letter-spacing:-2.268000px;}
.ls1f{letter-spacing:-1.896000px;}
.ls5{letter-spacing:-1.734000px;}
.ls12{letter-spacing:-1.590000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.624000px;}
.lsd{letter-spacing:-0.612000px;}
.ls1e{letter-spacing:-0.564600px;}
.ls22{letter-spacing:-0.555600px;}
.ls15{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.118080px;}
.ls1d{letter-spacing:0.138000px;}
.ls23{letter-spacing:0.161280px;}
.ls9{letter-spacing:0.178560px;}
.ls19{letter-spacing:0.190560px;}
.ls1{letter-spacing:0.215040px;}
.lsc{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.305280px;}
.ls6{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.339840px;}
.ls10{letter-spacing:0.357120px;}
.ls17{letter-spacing:0.452160px;}
.ls27{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.642720px;}
.ls20{letter-spacing:0.696000px;}
.ls1b{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.809280px;}
.lse{letter-spacing:0.828000px;}
.ls7{letter-spacing:1.440000px;}
.ls13{letter-spacing:1.746000px;}
.lsa{letter-spacing:1.797120px;}
.ls1a{letter-spacing:1.809120px;}
.lsb{letter-spacing:7.344000px;}
.ls28{letter-spacing:7.505280px;}
.ls11{letter-spacing:10.546560px;}
.ls26{letter-spacing:19.198560px;}
.ls8{letter-spacing:21.433440px;}
.ls25{letter-spacing:47.998560px;}
.lsf{letter-spacing:68.544000px;}
.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:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws3{word-spacing:-20.880000px;}
.wsa{word-spacing:-18.306000px;}
.ws6{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.388000px;}
.ws5{word-spacing:-16.865400px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.948000px;}
.ws2{word-spacing:-15.840000px;}
.ws18{word-spacing:-15.586800px;}
.ws12{word-spacing:-15.268800px;}
.ws17{word-spacing:-15.140160px;}
.wsb{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.878200px;}
.wsf{word-spacing:-14.710800px;}
.ws11{word-spacing:-14.572800px;}
.ws16{word-spacing:-14.400000px;}
.ws10{word-spacing:-14.008200px;}
.ws13{word-spacing:-13.948800px;}
.wse{word-spacing:-13.924800px;}
.ws15{word-spacing:-13.305600px;}
.ws14{word-spacing:-12.750000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-3.205440px;}
._0{margin-left:-1.995840px;}
._1{width:1.149120px;}
._3{width:2.186880px;}
._9{width:4.061280px;}
._5{width:5.108640px;}
._4{width:6.350400px;}
._8{width:7.499520px;}
._7{width:9.313920px;}
._b{width:11.188800px;}
._a{width:12.398400px;}
._11{width:14.031360px;}
._14{width:15.329760px;}
._6{width:16.692480px;}
._10{width:18.688320px;}
._f{width:20.260800px;}
._e{width:21.620640px;}
._d{width:23.376480px;}
._c{width:24.615360px;}
._17{width:26.000640px;}
._12{width:28.005120px;}
._13{width:29.516160px;}
._15{width:32.163840px;}
._16{width:33.226560px;}
._19{width:34.260480px;}
._18{width:35.654400px;}
._1a{width:37.039680px;}
._1b{width:39.346080px;}
._1d{width:40.507200px;}
._1c{width:41.876160px;}
._1e{width:60.992640px;}
._23{width:89.328960px;}
._24{width:90.452640px;}
._22{width:116.968320px;}
._21{width:118.120320px;}
._27{width:146.879520px;}
._26{width:148.055040px;}
._25{width:149.714400px;}
._20{width:191.476800px;}
._1f{width:193.176000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:50.400000px;}
.fs9{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.600000px;}
.y36{bottom:21.960000px;}
.y3{bottom:111.276000px;}
.y109{bottom:140.076000px;}
.y135{bottom:142.236000px;}
.yae{bottom:144.396000px;}
.ye0{bottom:147.636000px;}
.y34{bottom:148.356000px;}
.y6a{bottom:149.436000px;}
.ybf{bottom:154.470000px;}
.y108{bottom:159.150000px;}
.y134{bottom:159.510000px;}
.yad{bottom:163.110000px;}
.ydf{bottom:166.710000px;}
.y33{bottom:167.070000px;}
.y69{bottom:168.510000px;}
.y84{bottom:171.750000px;}
.ybe{bottom:173.550000px;}
.y133{bottom:176.790000px;}
.y107{bottom:177.870000px;}
.yac{bottom:182.190000px;}
.yde{bottom:185.790000px;}
.y32{bottom:186.150000px;}
.y68{bottom:187.590000px;}
.y83{bottom:190.830000px;}
.ybd{bottom:192.630000px;}
.y132{bottom:194.115000px;}
.y106{bottom:196.995000px;}
.yab{bottom:201.315000px;}
.ydd{bottom:204.555000px;}
.y31{bottom:205.275000px;}
.y67{bottom:206.355000px;}
.y82{bottom:209.955000px;}
.y131{bottom:211.395000px;}
.ybc{bottom:211.755000px;}
.y105{bottom:216.795000px;}
.yaa{bottom:220.395000px;}
.ydc{bottom:223.275000px;}
.y30{bottom:224.355000px;}
.y66{bottom:225.435000px;}
.y130{bottom:228.675000px;}
.y81{bottom:229.035000px;}
.ybb{bottom:230.475000px;}
.ya9{bottom:239.115000px;}
.y104{bottom:240.195000px;}
.ydb{bottom:242.715000px;}
.y2f{bottom:243.075000px;}
.y12f{bottom:245.595000px;}
.y65{bottom:245.955000px;}
.y80{bottom:247.755000px;}
.yba{bottom:249.555000px;}
.ya8{bottom:258.195000px;}
.y103{bottom:258.915000px;}
.yda{bottom:261.795000px;}
.y2e{bottom:262.155000px;}
.y12e{bottom:262.875000px;}
.y64{bottom:265.035000px;}
.y7f{bottom:266.835000px;}
.yb9{bottom:268.635000px;}
.y102{bottom:276.195000px;}
.ya7{bottom:277.275000px;}
.y12d{bottom:280.155000px;}
.yd9{bottom:280.515000px;}
.y2d{bottom:281.235000px;}
.y63{bottom:284.115000px;}
.y7e{bottom:287.355000px;}
.y101{bottom:294.195000px;}
.ya6{bottom:295.995000px;}
.y12c{bottom:297.435000px;}
.yd8{bottom:299.595000px;}
.y2c{bottom:299.955000px;}
.y62{bottom:303.195000px;}
.y7d{bottom:306.435000px;}
.y100{bottom:313.275000px;}
.y12b{bottom:314.715000px;}
.ya5{bottom:315.075000px;}
.yd7{bottom:318.675000px;}
.y2b{bottom:319.035000px;}
.y61{bottom:322.665000px;}
.yb8{bottom:325.185000px;}
.y7c{bottom:325.545000px;}
.y12a{bottom:332.025000px;}
.yff{bottom:332.385000px;}
.ya4{bottom:334.185000px;}
.yd6{bottom:337.065000px;}
.y2a{bottom:338.145000px;}
.y7b{bottom:344.625000px;}
.y60{bottom:346.065000px;}
.y129{bottom:349.305000px;}
.yfe{bottom:351.105000px;}
.ya3{bottom:352.905000px;}
.yd5{bottom:356.505000px;}
.y29{bottom:356.865000px;}
.y7a{bottom:363.345000px;}
.y5f{bottom:365.145000px;}
.y128{bottom:366.585000px;}
.yfd{bottom:370.905000px;}
.ya2{bottom:371.985000px;}
.yd4{bottom:375.585000px;}
.y28{bottom:375.945000px;}
.y79{bottom:382.425000px;}
.y127{bottom:383.865000px;}
.y5e{bottom:384.225000px;}
.ya1{bottom:390.705000px;}
.yd3{bottom:394.305000px;}
.y27{bottom:395.025000px;}
.y126{bottom:401.145000px;}
.y78{bottom:401.505000px;}
.y5d{bottom:402.945000px;}
.ya0{bottom:410.145000px;}
.yd2{bottom:413.385000px;}
.y26{bottom:414.105000px;}
.yfc{bottom:418.425000px;}
.y77{bottom:420.225000px;}
.y5c{bottom:422.025000px;}
.y9f{bottom:428.865000px;}
.yd1{bottom:432.465000px;}
.y25{bottom:432.825000px;}
.y125{bottom:435.345000px;}
.yfb{bottom:437.145000px;}
.y76{bottom:439.305000px;}
.y5b{bottom:441.105000px;}
.y9e{bottom:447.990000px;}
.yd0{bottom:451.590000px;}
.y24{bottom:451.950000px;}
.y124{bottom:452.670000px;}
.yfa{bottom:456.990000px;}
.y75{bottom:458.430000px;}
.y5a{bottom:460.230000px;}
.y9d{bottom:467.070000px;}
.y123{bottom:469.950000px;}
.y23{bottom:471.030000px;}
.ycf{bottom:472.110000px;}
.yf9{bottom:476.070000px;}
.yb7{bottom:476.790000px;}
.y74{bottom:477.150000px;}
.y59{bottom:478.950000px;}
.y9c{bottom:485.790000px;}
.y122{bottom:487.230000px;}
.y22{bottom:489.750000px;}
.yce{bottom:491.190000px;}
.yf8{bottom:495.510000px;}
.y73{bottom:496.230000px;}
.y58{bottom:498.030000px;}
.y121{bottom:504.510000px;}
.y9b{bottom:504.870000px;}
.y21{bottom:508.830000px;}
.ycd{bottom:509.910000px;}
.yf7{bottom:514.590000px;}
.y72{bottom:515.310000px;}
.y57{bottom:517.110000px;}
.y120{bottom:521.790000px;}
.y9a{bottom:523.950000px;}
.y20{bottom:527.910000px;}
.ycc{bottom:528.990000px;}
.yf6{bottom:533.670000px;}
.y71{bottom:534.390000px;}
.y56{bottom:535.830000px;}
.y11f{bottom:539.070000px;}
.y99{bottom:543.030000px;}
.y1f{bottom:546.990000px;}
.ycb{bottom:548.070000px;}
.yf5{bottom:552.390000px;}
.y70{bottom:553.110000px;}
.y55{bottom:554.910000px;}
.y11e{bottom:556.350000px;}
.y98{bottom:561.750000px;}
.y1e{bottom:566.430000px;}
.yca{bottom:567.150000px;}
.yf4{bottom:571.470000px;}
.y6f{bottom:572.190000px;}
.y11d{bottom:573.660000px;}
.y54{bottom:574.020000px;}
.y97{bottom:580.500000px;}
.yc9{bottom:585.900000px;}
.y1d{bottom:589.860000px;}
.yf3{bottom:590.580000px;}
.y11c{bottom:590.940000px;}
.y6e{bottom:591.300000px;}
.y53{bottom:592.740000px;}
.y96{bottom:599.940000px;}
.yc8{bottom:605.340000px;}
.y11b{bottom:608.220000px;}
.y1c{bottom:608.580000px;}
.yf2{bottom:609.300000px;}
.y6d{bottom:610.020000px;}
.y52{bottom:611.820000px;}
.y95{bottom:618.660000px;}
.y11a{bottom:625.500000px;}
.y1b{bottom:625.860000px;}
.yf1{bottom:628.380000px;}
.y6c{bottom:629.100000px;}
.y51{bottom:630.900000px;}
.y94{bottom:637.740000px;}
.y119{bottom:642.420000px;}
.yc7{bottom:644.580000px;}
.y1a{bottom:645.660000px;}
.yf0{bottom:647.100000px;}
.y6b{bottom:648.180000px;}
.y50{bottom:649.980000px;}
.y93{bottom:656.820000px;}
.y118{bottom:659.700000px;}
.yc6{bottom:663.660000px;}
.yef{bottom:666.180000px;}
.yb6{bottom:666.540000px;}
.y19{bottom:667.620000px;}
.y4f{bottom:668.700000px;}
.y92{bottom:675.540000px;}
.y117{bottom:676.980000px;}
.yc5{bottom:682.740000px;}
.yee{bottom:685.260000px;}
.yb5{bottom:685.980000px;}
.y18{bottom:686.340000px;}
.y4e{bottom:687.780000px;}
.y116{bottom:694.260000px;}
.y91{bottom:694.620000px;}
.yc4{bottom:701.490000px;}
.y17{bottom:703.650000px;}
.yed{bottom:704.370000px;}
.yb4{bottom:705.090000px;}
.y4d{bottom:706.890000px;}
.y115{bottom:711.570000px;}
.y90{bottom:713.370000px;}
.y16{bottom:720.570000px;}
.yec{bottom:723.450000px;}
.yb3{bottom:724.170000px;}
.y4c{bottom:725.610000px;}
.y114{bottom:728.850000px;}
.y8f{bottom:732.810000px;}
.y15{bottom:737.850000px;}
.yc3{bottom:739.650000px;}
.yeb{bottom:741.810000px;}
.yb2{bottom:742.890000px;}
.y4b{bottom:744.690000px;}
.y113{bottom:746.130000px;}
.y8e{bottom:751.530000px;}
.y14{bottom:755.130000px;}
.yc2{bottom:758.370000px;}
.yea{bottom:761.250000px;}
.yb1{bottom:762.330000px;}
.y112{bottom:763.410000px;}
.y4a{bottom:763.770000px;}
.y8d{bottom:770.610000px;}
.y13{bottom:772.410000px;}
.yc1{bottom:778.170000px;}
.ye9{bottom:780.330000px;}
.y111{bottom:780.690000px;}
.y49{bottom:782.850000px;}
.y12{bottom:789.690000px;}
.y110{bottom:797.970000px;}
.ye8{bottom:799.050000px;}
.y48{bottom:801.570000px;}
.y11{bottom:806.970000px;}
.y8c{bottom:808.770000px;}
.y10f{bottom:815.250000px;}
.ye7{bottom:818.130000px;}
.y47{bottom:820.650000px;}
.y10{bottom:824.250000px;}
.y8b{bottom:829.335000px;}
.y10e{bottom:834.735000px;}
.ye6{bottom:837.255000px;}
.y46{bottom:839.775000px;}
.yf{bottom:841.575000px;}
.y8a{bottom:848.415000px;}
.y10d{bottom:854.895000px;}
.ye5{bottom:855.975000px;}
.y45{bottom:858.495000px;}
.ye{bottom:858.855000px;}
.y89{bottom:867.135000px;}
.y10c{bottom:873.975000px;}
.ye4{bottom:875.055000px;}
.yd{bottom:876.495000px;}
.y44{bottom:877.575000px;}
.y88{bottom:886.215000px;}
.y10b{bottom:893.055000px;}
.ye3{bottom:894.135000px;}
.yc{bottom:895.935000px;}
.y43{bottom:896.655000px;}
.y87{bottom:905.295000px;}
.y10a{bottom:912.495000px;}
.ye2{bottom:914.655000px;}
.y42{bottom:915.375000px;}
.yb{bottom:917.535000px;}
.y86{bottom:924.735000px;}
.ye1{bottom:933.735000px;}
.y41{bottom:934.455000px;}
.ya{bottom:937.335000px;}
.y85{bottom:949.215000px;}
.yc0{bottom:953.205000px;}
.y40{bottom:953.565000px;}
.y9{bottom:957.885000px;}
.yb0{bottom:972.285000px;}
.y3f{bottom:972.645000px;}
.y8{bottom:979.125000px;}
.y3e{bottom:991.365000px;}
.y7{bottom:1001.445000px;}
.y3d{bottom:1010.445000px;}
.y6{bottom:1027.005000px;}
.y3c{bottom:1029.525000px;}
.y13a{bottom:1036.365000px;}
.y3b{bottom:1048.245000px;}
.y139{bottom:1053.645000px;}
.y5{bottom:1060.845000px;}
.y3a{bottom:1067.325000px;}
.y138{bottom:1070.925000px;}
.y39{bottom:1086.450000px;}
.y137{bottom:1089.330000px;}
.y4{bottom:1094.370000px;}
.yaf{bottom:1104.810000px;}
.y38{bottom:1105.170000px;}
.y136{bottom:1106.610000px;}
.y2{bottom:1123.890000px;}
.y1{bottom:1141.170000px;}
.y35{bottom:1204.200000px;}
.hd{height:36.000000px;}
.h14{height:54.087187px;}
.h12{height:56.084062px;}
.hc{height:57.992344px;}
.ha{height:59.328281px;}
.h2{height:59.357813px;}
.h13{height:60.404063px;}
.he{height:62.163910px;}
.h9{height:65.010937px;}
.h7{height:66.757500px;}
.h17{height:68.084282px;}
.h11{height:68.956875px;}
.h6{height:70.664062px;}
.h16{height:72.562500px;}
.hf{height:74.953125px;}
.h8{height:76.279219px;}
.h4{height:76.317188px;}
.h5{height:76.824844px;}
.h15{height:78.367500px;}
.h3{height:80.944453px;}
.h10{height:84.172500px;}
.hb{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:29.879973px;}
.x3{left:123.155987px;}
.xd{left:132.551987px;}
.xb{left:144.431987px;}
.xc{left:150.194987px;}
.x10{left:157.034987px;}
.x5{left:158.474987px;}
.x1{left:194.114987px;}
.x6{left:208.154987px;}
.xf{left:236.264987px;}
.xe{left:240.584987px;}
.x7{left:263.264987px;}
.x8{left:307.544987px;}
.x2{left:343.589987px;}
.x4{left:446.579987px;}
.x9{left:762.449987px;}
@media print{
.v2{vertical-align:-66.560000pt;}
.v4{vertical-align:-3.840000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v3{vertical-align:3.840000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-2.016000pt;}
.ls1f{letter-spacing:-1.685333pt;}
.ls5{letter-spacing:-1.541333pt;}
.ls12{letter-spacing:-1.413333pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.554667pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls1e{letter-spacing:-0.501867pt;}
.ls22{letter-spacing:-0.493867pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.104960pt;}
.ls1d{letter-spacing:0.122667pt;}
.ls23{letter-spacing:0.143360pt;}
.ls9{letter-spacing:0.158720pt;}
.ls19{letter-spacing:0.169387pt;}
.ls1{letter-spacing:0.191147pt;}
.lsc{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.271360pt;}
.ls6{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.302080pt;}
.ls10{letter-spacing:0.317440pt;}
.ls17{letter-spacing:0.401920pt;}
.ls27{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.571307pt;}
.ls20{letter-spacing:0.618667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.719360pt;}
.lse{letter-spacing:0.736000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.552000pt;}
.lsa{letter-spacing:1.597440pt;}
.ls1a{letter-spacing:1.608107pt;}
.lsb{letter-spacing:6.528000pt;}
.ls28{letter-spacing:6.671360pt;}
.ls11{letter-spacing:9.374720pt;}
.ls26{letter-spacing:17.065387pt;}
.ls8{letter-spacing:19.051947pt;}
.ls25{letter-spacing:42.665387pt;}
.lsf{letter-spacing:60.928000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws3{word-spacing:-18.560000pt;}
.wsa{word-spacing:-16.272000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.456000pt;}
.ws5{word-spacing:-14.991467pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.176000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws18{word-spacing:-13.854933pt;}
.ws12{word-spacing:-13.572267pt;}
.ws17{word-spacing:-13.457920pt;}
.wsb{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.225067pt;}
.wsf{word-spacing:-13.076267pt;}
.ws11{word-spacing:-12.953600pt;}
.ws16{word-spacing:-12.800000pt;}
.ws10{word-spacing:-12.451733pt;}
.ws13{word-spacing:-12.398933pt;}
.wse{word-spacing:-12.377600pt;}
.ws15{word-spacing:-11.827200pt;}
.ws14{word-spacing:-11.333333pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-2.849280pt;}
._0{margin-left:-1.774080pt;}
._1{width:1.021440pt;}
._3{width:1.943893pt;}
._9{width:3.610027pt;}
._5{width:4.541013pt;}
._4{width:5.644800pt;}
._8{width:6.666240pt;}
._7{width:8.279040pt;}
._b{width:9.945600pt;}
._a{width:11.020800pt;}
._11{width:12.472320pt;}
._14{width:13.626453pt;}
._6{width:14.837760pt;}
._10{width:16.611840pt;}
._f{width:18.009600pt;}
._e{width:19.218347pt;}
._d{width:20.779093pt;}
._c{width:21.880320pt;}
._17{width:23.111680pt;}
._12{width:24.893440pt;}
._13{width:26.236587pt;}
._15{width:28.590080pt;}
._16{width:29.534720pt;}
._19{width:30.453760pt;}
._18{width:31.692800pt;}
._1a{width:32.924160pt;}
._1b{width:34.974293pt;}
._1d{width:36.006400pt;}
._1c{width:37.223253pt;}
._1e{width:54.215680pt;}
._23{width:79.403520pt;}
._24{width:80.402347pt;}
._22{width:103.971840pt;}
._21{width:104.995840pt;}
._27{width:130.559573pt;}
._26{width:131.604480pt;}
._25{width:133.079467pt;}
._20{width:170.201600pt;}
._1f{width:171.712000pt;}
.fs4{font-size:44.800000pt;}
.fs9{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:3.200000pt;}
.y36{bottom:19.520000pt;}
.y3{bottom:98.912000pt;}
.y109{bottom:124.512000pt;}
.y135{bottom:126.432000pt;}
.yae{bottom:128.352000pt;}
.ye0{bottom:131.232000pt;}
.y34{bottom:131.872000pt;}
.y6a{bottom:132.832000pt;}
.ybf{bottom:137.306667pt;}
.y108{bottom:141.466667pt;}
.y134{bottom:141.786667pt;}
.yad{bottom:144.986667pt;}
.ydf{bottom:148.186667pt;}
.y33{bottom:148.506667pt;}
.y69{bottom:149.786667pt;}
.y84{bottom:152.666667pt;}
.ybe{bottom:154.266667pt;}
.y133{bottom:157.146667pt;}
.y107{bottom:158.106667pt;}
.yac{bottom:161.946667pt;}
.yde{bottom:165.146667pt;}
.y32{bottom:165.466667pt;}
.y68{bottom:166.746667pt;}
.y83{bottom:169.626667pt;}
.ybd{bottom:171.226667pt;}
.y132{bottom:172.546667pt;}
.y106{bottom:175.106667pt;}
.yab{bottom:178.946667pt;}
.ydd{bottom:181.826667pt;}
.y31{bottom:182.466667pt;}
.y67{bottom:183.426667pt;}
.y82{bottom:186.626667pt;}
.y131{bottom:187.906667pt;}
.ybc{bottom:188.226667pt;}
.y105{bottom:192.706667pt;}
.yaa{bottom:195.906667pt;}
.ydc{bottom:198.466667pt;}
.y30{bottom:199.426667pt;}
.y66{bottom:200.386667pt;}
.y130{bottom:203.266667pt;}
.y81{bottom:203.586667pt;}
.ybb{bottom:204.866667pt;}
.ya9{bottom:212.546667pt;}
.y104{bottom:213.506667pt;}
.ydb{bottom:215.746667pt;}
.y2f{bottom:216.066667pt;}
.y12f{bottom:218.306667pt;}
.y65{bottom:218.626667pt;}
.y80{bottom:220.226667pt;}
.yba{bottom:221.826667pt;}
.ya8{bottom:229.506667pt;}
.y103{bottom:230.146667pt;}
.yda{bottom:232.706667pt;}
.y2e{bottom:233.026667pt;}
.y12e{bottom:233.666667pt;}
.y64{bottom:235.586667pt;}
.y7f{bottom:237.186667pt;}
.yb9{bottom:238.786667pt;}
.y102{bottom:245.506667pt;}
.ya7{bottom:246.466667pt;}
.y12d{bottom:249.026667pt;}
.yd9{bottom:249.346667pt;}
.y2d{bottom:249.986667pt;}
.y63{bottom:252.546667pt;}
.y7e{bottom:255.426667pt;}
.y101{bottom:261.506667pt;}
.ya6{bottom:263.106667pt;}
.y12c{bottom:264.386667pt;}
.yd8{bottom:266.306667pt;}
.y2c{bottom:266.626667pt;}
.y62{bottom:269.506667pt;}
.y7d{bottom:272.386667pt;}
.y100{bottom:278.466667pt;}
.y12b{bottom:279.746667pt;}
.ya5{bottom:280.066667pt;}
.yd7{bottom:283.266667pt;}
.y2b{bottom:283.586667pt;}
.y61{bottom:286.813333pt;}
.yb8{bottom:289.053333pt;}
.y7c{bottom:289.373333pt;}
.y12a{bottom:295.133333pt;}
.yff{bottom:295.453333pt;}
.ya4{bottom:297.053333pt;}
.yd6{bottom:299.613333pt;}
.y2a{bottom:300.573333pt;}
.y7b{bottom:306.333333pt;}
.y60{bottom:307.613333pt;}
.y129{bottom:310.493333pt;}
.yfe{bottom:312.093333pt;}
.ya3{bottom:313.693333pt;}
.yd5{bottom:316.893333pt;}
.y29{bottom:317.213333pt;}
.y7a{bottom:322.973333pt;}
.y5f{bottom:324.573333pt;}
.y128{bottom:325.853333pt;}
.yfd{bottom:329.693333pt;}
.ya2{bottom:330.653333pt;}
.yd4{bottom:333.853333pt;}
.y28{bottom:334.173333pt;}
.y79{bottom:339.933333pt;}
.y127{bottom:341.213333pt;}
.y5e{bottom:341.533333pt;}
.ya1{bottom:347.293333pt;}
.yd3{bottom:350.493333pt;}
.y27{bottom:351.133333pt;}
.y126{bottom:356.573333pt;}
.y78{bottom:356.893333pt;}
.y5d{bottom:358.173333pt;}
.ya0{bottom:364.573333pt;}
.yd2{bottom:367.453333pt;}
.y26{bottom:368.093333pt;}
.yfc{bottom:371.933333pt;}
.y77{bottom:373.533333pt;}
.y5c{bottom:375.133333pt;}
.y9f{bottom:381.213333pt;}
.yd1{bottom:384.413333pt;}
.y25{bottom:384.733333pt;}
.y125{bottom:386.973333pt;}
.yfb{bottom:388.573333pt;}
.y76{bottom:390.493333pt;}
.y5b{bottom:392.093333pt;}
.y9e{bottom:398.213333pt;}
.yd0{bottom:401.413333pt;}
.y24{bottom:401.733333pt;}
.y124{bottom:402.373333pt;}
.yfa{bottom:406.213333pt;}
.y75{bottom:407.493333pt;}
.y5a{bottom:409.093333pt;}
.y9d{bottom:415.173333pt;}
.y123{bottom:417.733333pt;}
.y23{bottom:418.693333pt;}
.ycf{bottom:419.653333pt;}
.yf9{bottom:423.173333pt;}
.yb7{bottom:423.813333pt;}
.y74{bottom:424.133333pt;}
.y59{bottom:425.733333pt;}
.y9c{bottom:431.813333pt;}
.y122{bottom:433.093333pt;}
.y22{bottom:435.333333pt;}
.yce{bottom:436.613333pt;}
.yf8{bottom:440.453333pt;}
.y73{bottom:441.093333pt;}
.y58{bottom:442.693333pt;}
.y121{bottom:448.453333pt;}
.y9b{bottom:448.773333pt;}
.y21{bottom:452.293333pt;}
.ycd{bottom:453.253333pt;}
.yf7{bottom:457.413333pt;}
.y72{bottom:458.053333pt;}
.y57{bottom:459.653333pt;}
.y120{bottom:463.813333pt;}
.y9a{bottom:465.733333pt;}
.y20{bottom:469.253333pt;}
.ycc{bottom:470.213333pt;}
.yf6{bottom:474.373333pt;}
.y71{bottom:475.013333pt;}
.y56{bottom:476.293333pt;}
.y11f{bottom:479.173333pt;}
.y99{bottom:482.693333pt;}
.y1f{bottom:486.213333pt;}
.ycb{bottom:487.173333pt;}
.yf5{bottom:491.013333pt;}
.y70{bottom:491.653333pt;}
.y55{bottom:493.253333pt;}
.y11e{bottom:494.533333pt;}
.y98{bottom:499.333333pt;}
.y1e{bottom:503.493333pt;}
.yca{bottom:504.133333pt;}
.yf4{bottom:507.973333pt;}
.y6f{bottom:508.613333pt;}
.y11d{bottom:509.920000pt;}
.y54{bottom:510.240000pt;}
.y97{bottom:516.000000pt;}
.yc9{bottom:520.800000pt;}
.y1d{bottom:524.320000pt;}
.yf3{bottom:524.960000pt;}
.y11c{bottom:525.280000pt;}
.y6e{bottom:525.600000pt;}
.y53{bottom:526.880000pt;}
.y96{bottom:533.280000pt;}
.yc8{bottom:538.080000pt;}
.y11b{bottom:540.640000pt;}
.y1c{bottom:540.960000pt;}
.yf2{bottom:541.600000pt;}
.y6d{bottom:542.240000pt;}
.y52{bottom:543.840000pt;}
.y95{bottom:549.920000pt;}
.y11a{bottom:556.000000pt;}
.y1b{bottom:556.320000pt;}
.yf1{bottom:558.560000pt;}
.y6c{bottom:559.200000pt;}
.y51{bottom:560.800000pt;}
.y94{bottom:566.880000pt;}
.y119{bottom:571.040000pt;}
.yc7{bottom:572.960000pt;}
.y1a{bottom:573.920000pt;}
.yf0{bottom:575.200000pt;}
.y6b{bottom:576.160000pt;}
.y50{bottom:577.760000pt;}
.y93{bottom:583.840000pt;}
.y118{bottom:586.400000pt;}
.yc6{bottom:589.920000pt;}
.yef{bottom:592.160000pt;}
.yb6{bottom:592.480000pt;}
.y19{bottom:593.440000pt;}
.y4f{bottom:594.400000pt;}
.y92{bottom:600.480000pt;}
.y117{bottom:601.760000pt;}
.yc5{bottom:606.880000pt;}
.yee{bottom:609.120000pt;}
.yb5{bottom:609.760000pt;}
.y18{bottom:610.080000pt;}
.y4e{bottom:611.360000pt;}
.y116{bottom:617.120000pt;}
.y91{bottom:617.440000pt;}
.yc4{bottom:623.546667pt;}
.y17{bottom:625.466667pt;}
.yed{bottom:626.106667pt;}
.yb4{bottom:626.746667pt;}
.y4d{bottom:628.346667pt;}
.y115{bottom:632.506667pt;}
.y90{bottom:634.106667pt;}
.y16{bottom:640.506667pt;}
.yec{bottom:643.066667pt;}
.yb3{bottom:643.706667pt;}
.y4c{bottom:644.986667pt;}
.y114{bottom:647.866667pt;}
.y8f{bottom:651.386667pt;}
.y15{bottom:655.866667pt;}
.yc3{bottom:657.466667pt;}
.yeb{bottom:659.386667pt;}
.yb2{bottom:660.346667pt;}
.y4b{bottom:661.946667pt;}
.y113{bottom:663.226667pt;}
.y8e{bottom:668.026667pt;}
.y14{bottom:671.226667pt;}
.yc2{bottom:674.106667pt;}
.yea{bottom:676.666667pt;}
.yb1{bottom:677.626667pt;}
.y112{bottom:678.586667pt;}
.y4a{bottom:678.906667pt;}
.y8d{bottom:684.986667pt;}
.y13{bottom:686.586667pt;}
.yc1{bottom:691.706667pt;}
.ye9{bottom:693.626667pt;}
.y111{bottom:693.946667pt;}
.y49{bottom:695.866667pt;}
.y12{bottom:701.946667pt;}
.y110{bottom:709.306667pt;}
.ye8{bottom:710.266667pt;}
.y48{bottom:712.506667pt;}
.y11{bottom:717.306667pt;}
.y8c{bottom:718.906667pt;}
.y10f{bottom:724.666667pt;}
.ye7{bottom:727.226667pt;}
.y47{bottom:729.466667pt;}
.y10{bottom:732.666667pt;}
.y8b{bottom:737.186667pt;}
.y10e{bottom:741.986667pt;}
.ye6{bottom:744.226667pt;}
.y46{bottom:746.466667pt;}
.yf{bottom:748.066667pt;}
.y8a{bottom:754.146667pt;}
.y10d{bottom:759.906667pt;}
.ye5{bottom:760.866667pt;}
.y45{bottom:763.106667pt;}
.ye{bottom:763.426667pt;}
.y89{bottom:770.786667pt;}
.y10c{bottom:776.866667pt;}
.ye4{bottom:777.826667pt;}
.yd{bottom:779.106667pt;}
.y44{bottom:780.066667pt;}
.y88{bottom:787.746667pt;}
.y10b{bottom:793.826667pt;}
.ye3{bottom:794.786667pt;}
.yc{bottom:796.386667pt;}
.y43{bottom:797.026667pt;}
.y87{bottom:804.706667pt;}
.y10a{bottom:811.106667pt;}
.ye2{bottom:813.026667pt;}
.y42{bottom:813.666667pt;}
.yb{bottom:815.586667pt;}
.y86{bottom:821.986667pt;}
.ye1{bottom:829.986667pt;}
.y41{bottom:830.626667pt;}
.ya{bottom:833.186667pt;}
.y85{bottom:843.746667pt;}
.yc0{bottom:847.293333pt;}
.y40{bottom:847.613333pt;}
.y9{bottom:851.453333pt;}
.yb0{bottom:864.253333pt;}
.y3f{bottom:864.573333pt;}
.y8{bottom:870.333333pt;}
.y3e{bottom:881.213333pt;}
.y7{bottom:890.173333pt;}
.y3d{bottom:898.173333pt;}
.y6{bottom:912.893333pt;}
.y3c{bottom:915.133333pt;}
.y13a{bottom:921.213333pt;}
.y3b{bottom:931.773333pt;}
.y139{bottom:936.573333pt;}
.y5{bottom:942.973333pt;}
.y3a{bottom:948.733333pt;}
.y138{bottom:951.933333pt;}
.y39{bottom:965.733333pt;}
.y137{bottom:968.293333pt;}
.y4{bottom:972.773333pt;}
.yaf{bottom:982.053333pt;}
.y38{bottom:982.373333pt;}
.y136{bottom:983.653333pt;}
.y2{bottom:999.013333pt;}
.y1{bottom:1014.373333pt;}
.y35{bottom:1070.400000pt;}
.hd{height:32.000000pt;}
.h14{height:48.077500pt;}
.h12{height:49.852500pt;}
.hc{height:51.548750pt;}
.ha{height:52.736250pt;}
.h2{height:52.762500pt;}
.h13{height:53.692500pt;}
.he{height:55.256809pt;}
.h9{height:57.787500pt;}
.h7{height:59.340000pt;}
.h17{height:60.519362pt;}
.h11{height:61.295000pt;}
.h6{height:62.812500pt;}
.h16{height:64.500000pt;}
.hf{height:66.625000pt;}
.h8{height:67.803750pt;}
.h4{height:67.837500pt;}
.h5{height:68.288750pt;}
.h15{height:69.660000pt;}
.h3{height:71.950625pt;}
.h10{height:74.820000pt;}
.hb{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:26.559976pt;}
.x3{left:109.471988pt;}
.xd{left:117.823988pt;}
.xb{left:128.383988pt;}
.xc{left:133.506655pt;}
.x10{left:139.586655pt;}
.x5{left:140.866655pt;}
.x1{left:172.546655pt;}
.x6{left:185.026655pt;}
.xf{left:210.013322pt;}
.xe{left:213.853322pt;}
.x7{left:234.013322pt;}
.x8{left:273.373322pt;}
.x2{left:305.413322pt;}
.x4{left:396.959988pt;}
.x9{left:677.733322pt;}
}




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