
    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_af7e1619b90a189f2fbd51a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_b554a295dae9acb4870acc48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6b9cd163577fdb9c96c3f5a5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_68c546fe6a88eeefac889ff3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ec3d7873b0f00b33f8184c0e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;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_5ad1cc854de88a1348bab669.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860352;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_e309e7907278aa7f83abf331.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab4e3835183d46b67187318a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_f581d4a9578850c31347eaaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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);}
.v2{vertical-align:-21.600017px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600017px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.447840px;}
.ls0{letter-spacing:0.466560px;}
.ls1{letter-spacing:0.466787px;}
.ls6{letter-spacing:0.720001px;}
.ls3{letter-spacing:0.731521px;}
.ls7{letter-spacing:1.906562px;}
.ls5{letter-spacing:11.997850px;}
.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;}
}
.ws1{word-spacing:-16.813453px;}
.ws0{word-spacing:-10.808649px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-5.412402px;}
._2{margin-left:-4.405594px;}
._4{margin-left:-3.308326px;}
._0{margin-left:-1.944929px;}
._1{width:1.874446px;}
._7{width:3.094241px;}
._8{width:4.177367px;}
._11{width:5.250885px;}
._15{width:6.522348px;}
._e{width:7.522759px;}
._d{width:8.527687px;}
._6{width:10.244888px;}
._5{width:11.250905px;}
._10{width:12.500517px;}
._f{width:13.808953px;}
._12{width:15.343950px;}
._13{width:18.484671px;}
._a{width:19.595541px;}
._9{width:21.056630px;}
._b{width:22.467440px;}
._c{width:23.959582px;}
._14{width:25.684987px;}
._1d{width:27.215594px;}
._1f{width:28.626774px;}
._1e{width:29.674479px;}
._1b{width:31.564615px;}
._1a{width:32.943821px;}
._22{width:34.496506px;}
._21{width:35.883893px;}
._20{width:37.325992px;}
._24{width:45.871873px;}
._23{width:46.973964px;}
._16{width:59.824333px;}
._18{width:69.985419px;}
._17{width:71.809320px;}
._19{width:97.815826px;}
._1c{width:847.652070px;}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:38.880031px;}
.fs1{font-size:60.480048px;}
.fs0{font-size:66.240053px;}
.y0{bottom:0.000000px;}
.ybe{bottom:3.240383px;}
.yc5{bottom:3.598510px;}
.y102{bottom:3.598933px;}
.y114{bottom:3.599352px;}
.y111{bottom:3.599380px;}
.yd0{bottom:3.599542px;}
.ycd{bottom:3.599750px;}
.yd5{bottom:3.600820px;}
.y98{bottom:3.600823px;}
.y8d{bottom:3.601229px;}
.y10a{bottom:3.601254px;}
.y139{bottom:3.601260px;}
.y136{bottom:3.601288px;}
.yc8{bottom:3.629801px;}
.y105{bottom:3.631305px;}
.y86{bottom:3.961746px;}
.y95{bottom:9.719356px;}
.y8f{bottom:9.719415px;}
.ya8{bottom:9.720391px;}
.y9e{bottom:9.721670px;}
.ya0{bottom:9.750450px;}
.y93{bottom:10.079376px;}
.y91{bottom:10.079395px;}
.ya4{bottom:10.080411px;}
.ya2{bottom:10.080431px;}
.y9c{bottom:10.081689px;}
.y9a{bottom:10.081709px;}
.ya6{bottom:10.170411px;}
.yc2{bottom:13.678546px;}
.y131{bottom:13.678947px;}
.y12f{bottom:13.678970px;}
.yc0{bottom:13.723569px;}
.y13d{bottom:13.724423px;}
.y133{bottom:14.038924px;}
.yff{bottom:14.038970px;}
.y13f{bottom:14.039400px;}
.y10e{bottom:14.039417px;}
.yca{bottom:14.039787px;}
.yd2{bottom:14.039948px;}
.y10c{bottom:14.041240px;}
.y13b{bottom:14.041245px;}
.y107{bottom:14.041290px;}
.y11a{bottom:14.041687px;}
.y118{bottom:14.041710px;}
.ybb{bottom:14.400420px;}
.yfd{bottom:14.443993px;}
.y89{bottom:16.561268px;}
.y110{bottom:20.519394px;}
.ybd{bottom:20.520397px;}
.y97{bottom:20.551737px;}
.yc4{bottom:20.878523px;}
.y101{bottom:20.878947px;}
.y113{bottom:20.879366px;}
.ycf{bottom:20.879556px;}
.ycc{bottom:20.879764px;}
.yd4{bottom:20.880834px;}
.y8c{bottom:20.881243px;}
.y109{bottom:20.881268px;}
.y138{bottom:20.881274px;}
.y135{bottom:20.881302px;}
.yc7{bottom:20.909815px;}
.y83{bottom:20.911310px;}
.y104{bottom:20.911319px;}
.y116{bottom:20.911738px;}
.y85{bottom:21.105710px;}
.y88{bottom:33.841282px;}
.y2{bottom:75.576157px;}
.y32{bottom:95.375798px;}
.y4a{bottom:95.376173px;}
.y15d{bottom:100.415877px;}
.yb7{bottom:102.576329px;}
.y80{bottom:110.495885px;}
.y15c{bottom:117.335891px;}
.y31{bottom:118.055816px;}
.y49{bottom:118.056191px;}
.yb6{bottom:119.856343px;}
.y1{bottom:120.960000px;}
.y7f{bottom:127.810999px;}
.y48{bottom:129.251450px;}
.y30{bottom:130.690986px;}
.y15b{bottom:134.651004px;}
.yb5{bottom:137.171457px;}
.y7e{bottom:145.091013px;}
.y12d{bottom:148.331915px;}
.y15a{bottom:151.935218px;}
.y2f{bottom:153.735220px;}
.yb4{bottom:154.455670px;}
.y61{bottom:154.814771px;}
.y7d{bottom:162.015226px;}
.y12c{bottom:165.616129px;}
.y2e{bottom:165.975680px;}
.y159{bottom:169.215232px;}
.yb3{bottom:171.375684px;}
.y60{bottom:172.094784px;}
.y7c{bottom:179.295240px;}
.y47{bottom:180.735691px;}
.y12b{bottom:182.896143px;}
.y158{bottom:186.495246px;}
.y5f{bottom:189.014798px;}
.yb2{bottom:189.015698px;}
.y7b{bottom:196.575254px;}
.y2d{bottom:197.295705px;}
.y12a{bottom:200.176157px;}
.y157{bottom:203.775260px;}
.y5e{bottom:206.294812px;}
.yb1{bottom:206.295712px;}
.y7a{bottom:213.855268px;}
.y2c{bottom:214.575718px;}
.y129{bottom:217.456171px;}
.yd1{bottom:220.656240px;}
.y156{bottom:221.055274px;}
.yb0{bottom:223.215725px;}
.y5d{bottom:223.574826px;}
.y79{bottom:231.164832px;}
.y2b{bottom:231.885282px;}
.y128{bottom:234.765735px;}
.y155{bottom:238.364837px;}
.yaf{bottom:240.525289px;}
.y5c{bottom:240.884389px;}
.yfb{bottom:247.725295px;}
.y78{bottom:248.444846px;}
.yce{bottom:249.131160px;}
.y46{bottom:249.165296px;}
.y2a{bottom:249.525296px;}
.y127{bottom:252.045748px;}
.y154{bottom:255.644851px;}
.yae{bottom:257.805303px;}
.y5b{bottom:258.164403px;}
.yfa{bottom:265.005309px;}
.y77{bottom:265.724859px;}
.y29{bottom:266.445310px;}
.y126{bottom:269.325762px;}
.y153{bottom:272.924865px;}
.yad{bottom:275.085317px;}
.y5a{bottom:275.444417px;}
.yf9{bottom:282.285323px;}
.y76{bottom:283.004873px;}
.y28{bottom:283.725324px;}
.ycb{bottom:284.415480px;}
.y125{bottom:286.605776px;}
.y152{bottom:289.844879px;}
.yac{bottom:292.365331px;}
.y59{bottom:292.724431px;}
.yf8{bottom:299.565336px;}
.y75{bottom:300.284887px;}
.y27{bottom:301.005338px;}
.y124{bottom:303.885790px;}
.y151{bottom:307.124892px;}
.yab{bottom:309.645344px;}
.y58{bottom:310.004445px;}
.yf7{bottom:316.845350px;}
.y74{bottom:317.564901px;}
.y26{bottom:318.285351px;}
.yc9{bottom:319.695480px;}
.y123{bottom:320.805803px;}
.y57{bottom:323.684456px;}
.y150{bottom:324.404906px;}
.yaa{bottom:326.925358px;}
.yf6{bottom:334.125364px;}
.y73{bottom:335.249915px;}
.y25{bottom:335.610365px;}
.y122{bottom:338.130817px;}
.y14f{bottom:341.729920px;}
.ya9{bottom:344.250372px;}
.yc6{bottom:348.135480px;}
.yf5{bottom:351.090378px;}
.y72{bottom:352.169929px;}
.y24{bottom:352.890379px;}
.y121{bottom:355.410831px;}
.y14e{bottom:359.009934px;}
.yf4{bottom:368.370391px;}
.y71{bottom:369.449942px;}
.y23{bottom:370.170393px;}
.y120{bottom:372.690845px;}
.y14d{bottom:376.289948px;}
.yc3{bottom:383.446800px;}
.yf3{bottom:385.650405px;}
.y70{bottom:386.369956px;}
.y22{bottom:387.090406px;}
.y11f{bottom:390.330859px;}
.y14c{bottom:393.569962px;}
.yf2{bottom:402.930419px;}
.y6f{bottom:403.649970px;}
.y21{bottom:404.370420px;}
.y11e{bottom:407.610873px;}
.y14b{bottom:410.849975px;}
.yc1{bottom:418.726800px;}
.yf1{bottom:420.210433px;}
.y6e{bottom:420.929984px;}
.y20{bottom:421.650434px;}
.y11d{bottom:424.890887px;}
.y14a{bottom:428.129989px;}
.yf0{bottom:437.490447px;}
.y6d{bottom:438.209997px;}
.y1f{bottom:438.930448px;}
.y11c{bottom:442.200451px;}
.y149{bottom:445.439553px;}
.ybf{bottom:447.166800px;}
.yef{bottom:454.800011px;}
.y6c{bottom:455.519561px;}
.y1e{bottom:456.240012px;}
.y11b{bottom:459.120464px;}
.y148{bottom:462.719567px;}
.yee{bottom:472.080024px;}
.y6b{bottom:472.799575px;}
.y1d{bottom:473.520026px;}
.ybc{bottom:475.650000px;}
.ya7{bottom:479.610000px;}
.y147{bottom:479.639580px;}
.yed{bottom:489.360038px;}
.y6a{bottom:490.079589px;}
.y1c{bottom:490.800039px;}
.y146{bottom:496.919594px;}
.y56{bottom:498.359595px;}
.ya5{bottom:503.640000px;}
.ya3{bottom:503.730000px;}
.yec{bottom:506.640052px;}
.y69{bottom:507.359603px;}
.y45{bottom:508.080053px;}
.y1b{bottom:508.440054px;}
.yba{bottom:510.570000px;}
.y145{bottom:514.199608px;}
.y55{bottom:515.639609px;}
.yeb{bottom:523.920066px;}
.y68{bottom:524.639616px;}
.y44{bottom:525.360067px;}
.y1a{bottom:525.720067px;}
.ya1{bottom:528.210000px;}
.y144{bottom:531.479622px;}
.y54{bottom:532.919623px;}
.yea{bottom:541.200080px;}
.y67{bottom:541.919630px;}
.y19{bottom:542.640081px;}
.y15e{bottom:543.000081px;}
.y143{bottom:548.790536px;}
.y53{bottom:549.870537px;}
.y9f{bottom:552.690000px;}
.ye9{bottom:558.150993px;}
.y66{bottom:558.870544px;}
.y43{bottom:559.950995px;}
.y18{bottom:560.310995px;}
.y142{bottom:566.430550px;}
.y52{bottom:567.150550px;}
.ye8{bottom:575.431007px;}
.y65{bottom:576.510558px;}
.y42{bottom:576.871008px;}
.y9d{bottom:577.198800px;}
.y17{bottom:577.231009px;}
.y141{bottom:583.710564px;}
.y51{bottom:584.430564px;}
.ye7{bottom:592.711021px;}
.y64{bottom:593.430572px;}
.y41{bottom:594.151022px;}
.y119{bottom:594.478800px;}
.y16{bottom:594.511022px;}
.y140{bottom:600.630577px;}
.y9b{bottom:601.318800px;}
.y50{bottom:601.710578px;}
.ye6{bottom:609.991035px;}
.y63{bottom:610.710585px;}
.y15{bottom:611.431036px;}
.y4f{bottom:618.990592px;}
.y117{bottom:622.918800px;}
.y62{bottom:624.750597px;}
.y99{bottom:625.798800px;}
.ye5{bottom:627.271049px;}
.yb9{bottom:628.711050px;}
.y14{bottom:629.071050px;}
.y4e{bottom:636.270606px;}
.ye4{bottom:644.551062px;}
.y40{bottom:645.991064px;}
.y13{bottom:646.351064px;}
.y96{bottom:650.278800px;}
.y115{bottom:651.358800px;}
.y4d{bottom:653.595620px;}
.ye3{bottom:661.876076px;}
.yb8{bottom:663.316077px;}
.y12{bottom:663.676078px;}
.y4c{bottom:670.875633px;}
.ye2{bottom:679.156090px;}
.y3f{bottom:680.596091px;}
.y11{bottom:680.956092px;}
.y4b{bottom:684.555644px;}
.y94{bottom:685.591200px;}
.y112{bottom:686.671200px;}
.ye1{bottom:696.436104px;}
.y3e{bottom:697.876105px;}
.y10{bottom:698.236105px;}
.y92{bottom:709.711200px;}
.y8a{bottom:713.715668px;}
.ye0{bottom:713.716118px;}
.y3d{bottom:715.156119px;}
.yf{bottom:715.516119px;}
.y10f{bottom:721.951200px;}
.ydf{bottom:730.996132px;}
.y3c{bottom:732.436133px;}
.ye{bottom:732.796133px;}
.y90{bottom:734.191200px;}
.y13e{bottom:735.991200px;}
.yde{bottom:747.916145px;}
.y3b{bottom:749.716147px;}
.yd{bottom:750.076147px;}
.y10d{bottom:756.871200px;}
.y8e{bottom:758.671200px;}
.y13c{bottom:764.431200px;}
.ydd{bottom:765.225709px;}
.y3a{bottom:767.025710px;}
.yc{bottom:767.385711px;}
.ydc{bottom:782.505723px;}
.y8b{bottom:782.834400px;}
.y39{bottom:783.945724px;}
.yb{bottom:784.305724px;}
.y10b{bottom:785.354400px;}
.y13a{bottom:792.554400px;}
.ydb{bottom:799.785737px;}
.y38{bottom:801.225738px;}
.ya{bottom:801.585738px;}
.y108{bottom:813.794400px;}
.yda{bottom:817.425751px;}
.y87{bottom:818.114400px;}
.y81{bottom:818.505752px;}
.y9{bottom:818.865752px;}
.y137{bottom:820.994400px;}
.yd9{bottom:834.705765px;}
.y8{bottom:835.785765px;}
.y37{bottom:836.145766px;}
.y106{bottom:849.074400px;}
.yd8{bottom:851.985778px;}
.y36{bottom:853.065779px;}
.y7{bottom:853.425780px;}
.y134{bottom:856.274400px;}
.y84{bottom:866.160000px;}
.y82{bottom:866.354400px;}
.yd7{bottom:868.950792px;}
.y35{bottom:870.390793px;}
.y6{bottom:870.750793px;}
.y103{bottom:877.514400px;}
.yd6{bottom:886.230806px;}
.y34{bottom:887.670807px;}
.y5{bottom:888.030807px;}
.y132{bottom:891.586800px;}
.y4{bottom:904.950821px;}
.y100{bottom:912.826800px;}
.y130{bottom:920.026800px;}
.y33{bottom:922.230835px;}
.y3{bottom:922.590835px;}
.yfe{bottom:948.106800px;}
.y12e{bottom:948.466800px;}
.yfc{bottom:976.546800px;}
.yd3{bottom:1021.590000px;}
.hf{height:23.400000px;}
.hd{height:23.435172px;}
.h11{height:23.436576px;}
.he{height:23.760000px;}
.h12{height:24.120000px;}
.h7{height:25.913693px;}
.h9{height:26.995803px;}
.h16{height:27.360000px;}
.h1b{height:27.395172px;}
.h15{height:27.396576px;}
.h13{height:27.720000px;}
.h18{height:27.755172px;}
.h19{height:27.756576px;}
.h14{height:34.200000px;}
.ha{height:34.235172px;}
.h10{height:34.236576px;}
.hb{height:34.560000px;}
.h17{height:34.595172px;}
.h1a{height:34.596576px;}
.h8{height:41.993471px;}
.h3{height:44.031129px;}
.h4{height:44.060660px;}
.h2{height:44.149254px;}
.hc{height:47.520000px;}
.h5{height:49.905743px;}
.h6{height:49.924727px;}
.h1{height:1020.960000px;}
.h0{height:1263.000000px;}
.w8{width:63.035280px;}
.wa{width:73.835280px;}
.w5{width:77.435280px;}
.w4{width:77.796720px;}
.wc{width:83.555280px;}
.w7{width:90.036720px;}
.w3{width:90.360000px;}
.w6{width:91.475280px;}
.w2{width:212.144040px;}
.w9{width:493.052400px;}
.wb{width:498.855600px;}
.wd{width:508.935600px;}
.w1{width:723.240000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x16{left:7.561411px;}
.x11{left:10.080387px;}
.x23{left:11.151923px;}
.x2a{left:16.911921px;}
.x13{left:18.719557px;}
.x14{left:21.239559px;}
.x2c{left:26.279429px;}
.xf{left:27.330328px;}
.x30{left:30.959425px;}
.x19{left:41.071912px;}
.xd{left:42.875451px;}
.x1a{left:49.004581px;}
.x18{left:53.309149px;}
.x1d{left:54.389948px;}
.x1c{left:61.589156px;}
.x1b{left:62.669955px;}
.x1e{left:75.269965px;}
.x1{left:84.600000px;}
.x1f{left:89.136139px;}
.x2d{left:93.096142px;}
.xa{left:103.536151px;}
.x9{left:108.577655px;}
.x4{left:138.491098px;}
.x20{left:139.572179px;}
.x2e{left:149.976720px;}
.x27{left:151.455189px;}
.x6{left:153.615191px;}
.x29{left:159.696720px;}
.x5{left:162.615198px;}
.x22{left:167.976720px;}
.xc{left:170.496720px;}
.x2f{left:191.268700px;}
.x25{left:218.268720px;}
.x2b{left:220.788724px;}
.x24{left:231.731640px;}
.x17{left:234.645255px;}
.xb{left:246.885265px;}
.x21{left:271.051785px;}
.x28{left:322.891826px;}
.x26{left:325.410328px;}
.x2{left:349.200347px;}
.x3{left:361.800357px;}
.x7{left:375.841868px;}
.xe{left:383.040000px;}
.x10{left:474.120000px;}
.x12{left:552.632400px;}
.x15{left:630.795600px;}
.x8{left:638.747079px;}
@media print{
.v2{vertical-align:-19.200015pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200015pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.398080pt;}
.ls0{letter-spacing:0.414720pt;}
.ls1{letter-spacing:0.414922pt;}
.ls6{letter-spacing:0.640001pt;}
.ls3{letter-spacing:0.650241pt;}
.ls7{letter-spacing:1.694721pt;}
.ls5{letter-spacing:10.664755pt;}
.ws1{word-spacing:-14.945292pt;}
.ws0{word-spacing:-9.607688pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-4.811024pt;}
._2{margin-left:-3.916084pt;}
._4{margin-left:-2.940734pt;}
._0{margin-left:-1.728826pt;}
._1{width:1.666174pt;}
._7{width:2.750436pt;}
._8{width:3.713215pt;}
._11{width:4.667453pt;}
._15{width:5.797643pt;}
._e{width:6.686897pt;}
._d{width:7.580166pt;}
._6{width:9.106567pt;}
._5{width:10.000804pt;}
._10{width:11.111571pt;}
._f{width:12.274625pt;}
._12{width:13.639066pt;}
._13{width:16.430819pt;}
._a{width:17.418258pt;}
._9{width:18.717004pt;}
._b{width:19.971058pt;}
._c{width:21.297406pt;}
._14{width:22.831100pt;}
._1d{width:24.191639pt;}
._1f{width:25.446021pt;}
._1e{width:26.377315pt;}
._1b{width:28.057435pt;}
._1a{width:29.283397pt;}
._22{width:30.663561pt;}
._21{width:31.896794pt;}
._20{width:33.178660pt;}
._24{width:40.774998pt;}
._23{width:41.754634pt;}
._16{width:53.177185pt;}
._18{width:62.209262pt;}
._17{width:63.830507pt;}
._19{width:86.947401pt;}
._1c{width:753.468507pt;}
.fs2{font-size:34.560028pt;}
.fs1{font-size:53.760043pt;}
.fs0{font-size:58.880047pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:2.880341pt;}
.yc5{bottom:3.198675pt;}
.y102{bottom:3.199052pt;}
.y114{bottom:3.199424pt;}
.y111{bottom:3.199449pt;}
.yd0{bottom:3.199593pt;}
.ycd{bottom:3.199778pt;}
.yd5{bottom:3.200729pt;}
.y98{bottom:3.200732pt;}
.y8d{bottom:3.201093pt;}
.y10a{bottom:3.201115pt;}
.y139{bottom:3.201120pt;}
.y136{bottom:3.201145pt;}
.yc8{bottom:3.226490pt;}
.y105{bottom:3.227827pt;}
.y86{bottom:3.521552pt;}
.y95{bottom:8.639428pt;}
.y8f{bottom:8.639480pt;}
.ya8{bottom:8.640348pt;}
.y9e{bottom:8.641484pt;}
.ya0{bottom:8.667067pt;}
.y93{bottom:8.959445pt;}
.y91{bottom:8.959463pt;}
.ya4{bottom:8.960365pt;}
.ya2{bottom:8.960383pt;}
.y9c{bottom:8.961501pt;}
.y9a{bottom:8.961519pt;}
.ya6{bottom:9.040365pt;}
.yc2{bottom:12.158707pt;}
.y131{bottom:12.159064pt;}
.y12f{bottom:12.159084pt;}
.yc0{bottom:12.198728pt;}
.y13d{bottom:12.199487pt;}
.y133{bottom:12.479044pt;}
.yff{bottom:12.479084pt;}
.y13f{bottom:12.479467pt;}
.y10e{bottom:12.479482pt;}
.yca{bottom:12.479811pt;}
.yd2{bottom:12.479954pt;}
.y10c{bottom:12.481102pt;}
.y13b{bottom:12.481107pt;}
.y107{bottom:12.481147pt;}
.y11a{bottom:12.481499pt;}
.y118{bottom:12.481520pt;}
.ybb{bottom:12.800373pt;}
.yfd{bottom:12.839105pt;}
.y89{bottom:14.721127pt;}
.y110{bottom:18.239461pt;}
.ybd{bottom:18.240353pt;}
.y97{bottom:18.268210pt;}
.yc4{bottom:18.558688pt;}
.y101{bottom:18.559064pt;}
.y113{bottom:18.559436pt;}
.ycf{bottom:18.559605pt;}
.ycc{bottom:18.559790pt;}
.yd4{bottom:18.560741pt;}
.y8c{bottom:18.561105pt;}
.y109{bottom:18.561127pt;}
.y138{bottom:18.561132pt;}
.y135{bottom:18.561157pt;}
.yc7{bottom:18.586502pt;}
.y83{bottom:18.587831pt;}
.y104{bottom:18.587839pt;}
.y116{bottom:18.588211pt;}
.y85{bottom:18.760631pt;}
.y88{bottom:30.081139pt;}
.y2{bottom:67.178806pt;}
.y32{bottom:84.778487pt;}
.y4a{bottom:84.778821pt;}
.y15d{bottom:89.258557pt;}
.yb7{bottom:91.178959pt;}
.y80{bottom:98.218565pt;}
.y15c{bottom:104.298569pt;}
.y31{bottom:104.938503pt;}
.y49{bottom:104.938837pt;}
.yb6{bottom:106.538971pt;}
.y1{bottom:107.520000pt;}
.y7f{bottom:113.609777pt;}
.y48{bottom:114.890178pt;}
.y30{bottom:116.169766pt;}
.y15b{bottom:119.689782pt;}
.yb5{bottom:121.930184pt;}
.y7e{bottom:128.969789pt;}
.y12d{bottom:131.850591pt;}
.y15a{bottom:135.053527pt;}
.y2f{bottom:136.653529pt;}
.yb4{bottom:137.293929pt;}
.y61{bottom:137.613129pt;}
.y7d{bottom:144.013535pt;}
.y12c{bottom:147.214337pt;}
.y2e{bottom:147.533937pt;}
.y159{bottom:150.413540pt;}
.yb3{bottom:152.333941pt;}
.y60{bottom:152.973142pt;}
.y7c{bottom:159.373547pt;}
.y47{bottom:160.653948pt;}
.y12b{bottom:162.574349pt;}
.y158{bottom:165.773552pt;}
.y5f{bottom:168.013154pt;}
.yb2{bottom:168.013954pt;}
.y7b{bottom:174.733559pt;}
.y2d{bottom:175.373960pt;}
.y12a{bottom:177.934362pt;}
.y157{bottom:181.133564pt;}
.y5e{bottom:183.373166pt;}
.yb1{bottom:183.373966pt;}
.y7a{bottom:190.093571pt;}
.y2c{bottom:190.733972pt;}
.y129{bottom:193.294374pt;}
.yd1{bottom:196.138880pt;}
.y156{bottom:196.493577pt;}
.yb0{bottom:198.413978pt;}
.y5d{bottom:198.733178pt;}
.y79{bottom:205.479850pt;}
.y2b{bottom:206.120251pt;}
.y128{bottom:208.680653pt;}
.y155{bottom:211.879856pt;}
.yaf{bottom:213.800257pt;}
.y5c{bottom:214.119457pt;}
.yfb{bottom:220.200262pt;}
.y78{bottom:220.839863pt;}
.yce{bottom:221.449920pt;}
.y46{bottom:221.480263pt;}
.y2a{bottom:221.800263pt;}
.y127{bottom:224.040665pt;}
.y154{bottom:227.239868pt;}
.yae{bottom:229.160269pt;}
.y5b{bottom:229.479470pt;}
.yfa{bottom:235.560274pt;}
.y77{bottom:236.199875pt;}
.y29{bottom:236.840275pt;}
.y126{bottom:239.400678pt;}
.y153{bottom:242.599880pt;}
.yad{bottom:244.520282pt;}
.y5a{bottom:244.839482pt;}
.yf9{bottom:250.920287pt;}
.y76{bottom:251.559887pt;}
.y28{bottom:252.200288pt;}
.ycb{bottom:252.813760pt;}
.y125{bottom:254.760690pt;}
.y152{bottom:257.639892pt;}
.yac{bottom:259.880294pt;}
.y59{bottom:260.199494pt;}
.yf8{bottom:266.280299pt;}
.y75{bottom:266.919900pt;}
.y27{bottom:267.560300pt;}
.y124{bottom:270.120702pt;}
.y151{bottom:272.999904pt;}
.yab{bottom:275.240306pt;}
.y58{bottom:275.559506pt;}
.yf7{bottom:281.640311pt;}
.y74{bottom:282.279912pt;}
.y26{bottom:282.920312pt;}
.yc9{bottom:284.173760pt;}
.y123{bottom:285.160714pt;}
.y57{bottom:287.719516pt;}
.y150{bottom:288.359917pt;}
.yaa{bottom:290.600318pt;}
.yf6{bottom:297.000324pt;}
.y73{bottom:297.999924pt;}
.y25{bottom:298.320325pt;}
.y122{bottom:300.560726pt;}
.y14f{bottom:303.759929pt;}
.ya9{bottom:306.000331pt;}
.yc6{bottom:309.453760pt;}
.yf5{bottom:312.080336pt;}
.y72{bottom:313.039936pt;}
.y24{bottom:313.680337pt;}
.y121{bottom:315.920739pt;}
.y14e{bottom:319.119941pt;}
.yf4{bottom:327.440348pt;}
.y71{bottom:328.399949pt;}
.y23{bottom:329.040349pt;}
.y120{bottom:331.280751pt;}
.y14d{bottom:334.479954pt;}
.yc3{bottom:340.841600pt;}
.yf3{bottom:342.800360pt;}
.y70{bottom:343.439961pt;}
.y22{bottom:344.080361pt;}
.y11f{bottom:346.960764pt;}
.y14c{bottom:349.839966pt;}
.yf2{bottom:358.160373pt;}
.y6f{bottom:358.799973pt;}
.y21{bottom:359.440374pt;}
.y11e{bottom:362.320776pt;}
.y14b{bottom:365.199978pt;}
.yc1{bottom:372.201600pt;}
.yf1{bottom:373.520385pt;}
.y6e{bottom:374.159985pt;}
.y20{bottom:374.800386pt;}
.y11d{bottom:377.680788pt;}
.y14a{bottom:380.559990pt;}
.yf0{bottom:388.880397pt;}
.y6d{bottom:389.519998pt;}
.y1f{bottom:390.160398pt;}
.y11c{bottom:393.067067pt;}
.y149{bottom:395.946269pt;}
.ybf{bottom:397.481600pt;}
.yef{bottom:404.266676pt;}
.y6c{bottom:404.906277pt;}
.y1e{bottom:405.546677pt;}
.y11b{bottom:408.107079pt;}
.y148{bottom:411.306282pt;}
.yee{bottom:419.626688pt;}
.y6b{bottom:420.266289pt;}
.y1d{bottom:420.906689pt;}
.ybc{bottom:422.800000pt;}
.ya7{bottom:426.320000pt;}
.y147{bottom:426.346294pt;}
.yed{bottom:434.986701pt;}
.y6a{bottom:435.626301pt;}
.y1c{bottom:436.266702pt;}
.y146{bottom:441.706306pt;}
.y56{bottom:442.986307pt;}
.ya5{bottom:447.680000pt;}
.ya3{bottom:447.760000pt;}
.yec{bottom:450.346713pt;}
.y69{bottom:450.986313pt;}
.y45{bottom:451.626714pt;}
.y1b{bottom:451.946714pt;}
.yba{bottom:453.840000pt;}
.y145{bottom:457.066318pt;}
.y55{bottom:458.346319pt;}
.yeb{bottom:465.706725pt;}
.y68{bottom:466.346326pt;}
.y44{bottom:466.986726pt;}
.y1a{bottom:467.306727pt;}
.ya1{bottom:469.520000pt;}
.y144{bottom:472.426331pt;}
.y54{bottom:473.706332pt;}
.yea{bottom:481.066738pt;}
.y67{bottom:481.706338pt;}
.y19{bottom:482.346739pt;}
.y15e{bottom:482.666739pt;}
.y143{bottom:487.813810pt;}
.y53{bottom:488.773810pt;}
.y9f{bottom:491.280000pt;}
.ye9{bottom:496.134216pt;}
.y66{bottom:496.773817pt;}
.y43{bottom:497.734218pt;}
.y18{bottom:498.054218pt;}
.y142{bottom:503.493822pt;}
.y52{bottom:504.133823pt;}
.ye8{bottom:511.494229pt;}
.y65{bottom:512.453829pt;}
.y42{bottom:512.774230pt;}
.y9d{bottom:513.065600pt;}
.y17{bottom:513.094230pt;}
.y141{bottom:518.853834pt;}
.y51{bottom:519.493835pt;}
.ye7{bottom:526.854241pt;}
.y64{bottom:527.493841pt;}
.y41{bottom:528.134242pt;}
.y119{bottom:528.425600pt;}
.y16{bottom:528.454242pt;}
.y140{bottom:533.893846pt;}
.y9b{bottom:534.505600pt;}
.y50{bottom:534.853847pt;}
.ye6{bottom:542.214253pt;}
.y63{bottom:542.853854pt;}
.y15{bottom:543.494254pt;}
.y4f{bottom:550.213860pt;}
.y117{bottom:553.705600pt;}
.y62{bottom:555.333864pt;}
.y99{bottom:556.265600pt;}
.ye5{bottom:557.574265pt;}
.yb9{bottom:558.854266pt;}
.y14{bottom:559.174267pt;}
.y4e{bottom:565.573872pt;}
.ye4{bottom:572.934278pt;}
.y40{bottom:574.214279pt;}
.y13{bottom:574.534279pt;}
.y96{bottom:578.025600pt;}
.y115{bottom:578.985600pt;}
.y4d{bottom:580.973884pt;}
.ye3{bottom:588.334290pt;}
.yb8{bottom:589.614291pt;}
.y12{bottom:589.934291pt;}
.y4c{bottom:596.333896pt;}
.ye2{bottom:603.694302pt;}
.y3f{bottom:604.974303pt;}
.y11{bottom:605.294304pt;}
.y4b{bottom:608.493906pt;}
.y94{bottom:609.414400pt;}
.y112{bottom:610.374400pt;}
.ye1{bottom:619.054315pt;}
.y3e{bottom:620.334316pt;}
.y10{bottom:620.654316pt;}
.y92{bottom:630.854400pt;}
.y8a{bottom:634.413927pt;}
.ye0{bottom:634.414327pt;}
.y3d{bottom:635.694328pt;}
.yf{bottom:636.014328pt;}
.y10f{bottom:641.734400pt;}
.ydf{bottom:649.774339pt;}
.y3c{bottom:651.054340pt;}
.ye{bottom:651.374340pt;}
.y90{bottom:652.614400pt;}
.y13e{bottom:654.214400pt;}
.yde{bottom:664.814351pt;}
.y3b{bottom:666.414352pt;}
.yd{bottom:666.734353pt;}
.y10d{bottom:672.774400pt;}
.y8e{bottom:674.374400pt;}
.y13c{bottom:679.494400pt;}
.ydd{bottom:680.200630pt;}
.y3a{bottom:681.800631pt;}
.yc{bottom:682.120632pt;}
.ydc{bottom:695.560642pt;}
.y8b{bottom:695.852800pt;}
.y39{bottom:696.840643pt;}
.yb{bottom:697.160644pt;}
.y10b{bottom:698.092800pt;}
.y13a{bottom:704.492800pt;}
.ydb{bottom:710.920655pt;}
.y38{bottom:712.200656pt;}
.ya{bottom:712.520656pt;}
.y108{bottom:723.372800pt;}
.yda{bottom:726.600667pt;}
.y87{bottom:727.212800pt;}
.y81{bottom:727.560668pt;}
.y9{bottom:727.880668pt;}
.y137{bottom:729.772800pt;}
.yd9{bottom:741.960680pt;}
.y8{bottom:742.920680pt;}
.y37{bottom:743.240681pt;}
.y106{bottom:754.732800pt;}
.yd8{bottom:757.320692pt;}
.y36{bottom:758.280693pt;}
.y7{bottom:758.600693pt;}
.y134{bottom:761.132800pt;}
.y84{bottom:769.920000pt;}
.y82{bottom:770.092800pt;}
.yd7{bottom:772.400704pt;}
.y35{bottom:773.680705pt;}
.y6{bottom:774.000705pt;}
.y103{bottom:780.012800pt;}
.yd6{bottom:787.760716pt;}
.y34{bottom:789.040717pt;}
.y5{bottom:789.360718pt;}
.y132{bottom:792.521600pt;}
.y4{bottom:804.400730pt;}
.y100{bottom:811.401600pt;}
.y130{bottom:817.801600pt;}
.y33{bottom:819.760742pt;}
.y3{bottom:820.080742pt;}
.yfe{bottom:842.761600pt;}
.y12e{bottom:843.081600pt;}
.yfc{bottom:868.041600pt;}
.yd3{bottom:908.080000pt;}
.hf{height:20.800000pt;}
.hd{height:20.831264pt;}
.h11{height:20.832512pt;}
.he{height:21.120000pt;}
.h12{height:21.440000pt;}
.h7{height:23.034393pt;}
.h9{height:23.996269pt;}
.h16{height:24.320000pt;}
.h1b{height:24.351264pt;}
.h15{height:24.352512pt;}
.h13{height:24.640000pt;}
.h18{height:24.671264pt;}
.h19{height:24.672512pt;}
.h14{height:30.400000pt;}
.ha{height:30.431264pt;}
.h10{height:30.432512pt;}
.hb{height:30.720000pt;}
.h17{height:30.751264pt;}
.h1a{height:30.752512pt;}
.h8{height:37.327530pt;}
.h3{height:39.138781pt;}
.h4{height:39.165031pt;}
.h2{height:39.243781pt;}
.hc{height:42.240000pt;}
.h5{height:44.360660pt;}
.h6{height:44.377536pt;}
.h1{height:907.520000pt;}
.h0{height:1122.666667pt;}
.w8{width:56.031360pt;}
.wa{width:65.631360pt;}
.w5{width:68.831360pt;}
.w4{width:69.152640pt;}
.wc{width:74.271360pt;}
.w7{width:80.032640pt;}
.w3{width:80.320000pt;}
.w6{width:81.311360pt;}
.w2{width:188.572480pt;}
.w9{width:438.268800pt;}
.wb{width:443.427200pt;}
.wd{width:452.387200pt;}
.w1{width:642.880000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x16{left:6.721254pt;}
.x11{left:8.960344pt;}
.x23{left:9.912821pt;}
.x2a{left:15.032819pt;}
.x13{left:16.639606pt;}
.x14{left:18.879608pt;}
.x2c{left:23.359492pt;}
.xf{left:24.293625pt;}
.x30{left:27.519489pt;}
.x19{left:36.508366pt;}
.xd{left:38.111512pt;}
.x1a{left:43.559628pt;}
.x18{left:47.385911pt;}
.x1d{left:48.346621pt;}
.x1c{left:54.745916pt;}
.x1b{left:55.706626pt;}
.x1e{left:66.906635pt;}
.x1{left:75.200000pt;}
.x1f{left:79.232124pt;}
.x2d{left:82.752126pt;}
.xa{left:92.032134pt;}
.x9{left:96.513471pt;}
.x4{left:123.103199pt;}
.x20{left:124.064159pt;}
.x2e{left:133.312640pt;}
.x27{left:134.626835pt;}
.x6{left:136.546836pt;}
.x29{left:141.952640pt;}
.x5{left:144.546842pt;}
.x22{left:149.312640pt;}
.xc{left:151.552640pt;}
.x2f{left:170.016623pt;}
.x25{left:194.016640pt;}
.x2b{left:196.256644pt;}
.x24{left:205.983680pt;}
.x17{left:208.573560pt;}
.xb{left:219.453569pt;}
.x21{left:240.934920pt;}
.x28{left:287.014956pt;}
.x26{left:289.253625pt;}
.x2{left:310.400308pt;}
.x3{left:321.600317pt;}
.x7{left:334.081661pt;}
.xe{left:340.480000pt;}
.x10{left:421.440000pt;}
.x12{left:491.228800pt;}
.x15{left:560.707200pt;}
.x8{left:567.775181pt;}
}




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