
    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_ad763168af24f3b581570f76.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_abbfa52d3e1076a7a21651e3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_921974a71f8974d516ec092d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f373d3e8912894daae27bbe5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_6b3e0336e803e7dfeebe5fce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_375a1347de05dd008a86e2ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999023;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_6d5862abae7246a9540d19a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_1c0decf82fba51b3b8602811.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_18b48efc96a783f608281d7c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064453;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_3217400f2a9ff4d0f2754531.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_818276a6cdc4716408fc4b03.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_734e3a862c69fb1c845003aa.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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.120000px;}
.v3{vertical-align:-66.240000px;}
.v4{vertical-align:-64.800000px;}
.v2{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.243600px;}
.lsa{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.476400px;}
.ls1e{letter-spacing:0.525000px;}
.ls2a{letter-spacing:0.666000px;}
.ls21{letter-spacing:0.666720px;}
.ls9{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.828000px;}
.ls26{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.440000px;}
.lse{letter-spacing:2.880000px;}
.ls22{letter-spacing:3.546720px;}
.ls8{letter-spacing:4.320000px;}
.ls6{letter-spacing:7.200000px;}
.lsf{letter-spacing:8.640000px;}
.lsd{letter-spacing:9.360000px;}
.ls1c{letter-spacing:13.626720px;}
.ls14{letter-spacing:13.680000px;}
.ls23{letter-spacing:15.066720px;}
.ls17{letter-spacing:15.120000px;}
.lsc{letter-spacing:15.840000px;}
.ls1d{letter-spacing:17.460000px;}
.ls13{letter-spacing:18.720000px;}
.ls10{letter-spacing:19.440000px;}
.ls7{letter-spacing:26.640000px;}
.ls5{letter-spacing:28.800000px;}
.ls19{letter-spacing:41.040000px;}
.ls1a{letter-spacing:43.122720px;}
.ls12{letter-spacing:45.665280px;}
.ls1b{letter-spacing:46.002720px;}
.ls3{letter-spacing:158.004000px;}
.ls29{letter-spacing:159.624000px;}
.ls24{letter-spacing:161.064000px;}
.ls0{letter-spacing:669.960000px;}
.ls28{letter-spacing:685.200000px;}
.ls25{letter-spacing:2180.940000px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws2{word-spacing:-18.849600px;}
.ws1{word-spacing:-18.532800px;}
.ws4{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.840000px;}
.wse{word-spacing:-15.768000px;}
.ws9{word-spacing:-15.416400px;}
.ws0{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.696400px;}
.wsc{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._1e{margin-left:-3.503040px;}
._c{margin-left:-2.378880px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._4{width:4.154640px;}
._8{width:5.736960px;}
._9{width:7.194720px;}
._a{width:8.212560px;}
._b{width:9.262800px;}
._1c{width:10.822080px;}
._5{width:12.131280px;}
._12{width:13.448160px;}
._16{width:15.223680px;}
._3b{width:16.785120px;}
._1a{width:17.942400px;}
._18{width:19.512000px;}
._17{width:20.977920px;}
._19{width:22.049280px;}
._1b{width:23.483520px;}
._13{width:24.540480px;}
._14{width:25.545600px;}
._15{width:26.713920px;}
._e{width:28.071360px;}
._d{width:29.073600px;}
._f{width:30.442080px;}
._10{width:32.230080px;}
._11{width:33.284160px;}
._26{width:34.699920px;}
._6{width:36.347760px;}
._1f{width:38.017920px;}
._36{width:40.397760px;}
._37{width:41.592960px;}
._31{width:43.326000px;}
._1d{width:44.449920px;}
._7{width:45.895680px;}
._27{width:49.481280px;}
._21{width:51.762720px;}
._20{width:52.925760px;}
._2f{width:54.220320px;}
._24{width:57.656880px;}
._23{width:59.068080px;}
._22{width:64.219200px;}
._2a{width:67.528800px;}
._2d{width:89.580240px;}
._25{width:90.621360px;}
._32{width:99.858960px;}
._30{width:121.193280px;}
._38{width:124.393680px;}
._33{width:126.272880px;}
._2c{width:133.384320px;}
._2b{width:147.069360px;}
._3c{width:153.280560px;}
._34{width:155.256480px;}
._2e{width:163.324080px;}
._3a{width:177.248160px;}
._35{width:182.626560px;}
._39{width:196.431120px;}
._28{width:227.506320px;}
._29{width:283.561200px;}
._3{width:286.479840px;}
.fc1{color:transparent;}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.y95{bottom:3.780000px;}
.y9b{bottom:3.810000px;}
.y8d{bottom:20.700000px;}
.ya0{bottom:20.880000px;}
.y94{bottom:21.054000px;}
.y98{bottom:21.060000px;}
.y9a{bottom:21.090000px;}
.y9e{bottom:38.160000px;}
.y93{bottom:38.334000px;}
.y97{bottom:38.340000px;}
.y92{bottom:55.434000px;}
.y9d{bottom:55.440000px;}
.y3e{bottom:56.700000px;}
.y91{bottom:72.714000px;}
.y107{bottom:88.236000px;}
.y96{bottom:89.856000px;}
.y90{bottom:89.994000px;}
.yce{bottom:91.836000px;}
.y3d{bottom:92.556000px;}
.y106{bottom:103.716000px;}
.y3c{bottom:108.036000px;}
.ycd{bottom:109.116000px;}
.y105{bottom:119.016000px;}
.y76{bottom:121.716000px;}
.y3b{bottom:123.516000px;}
.ycc{bottom:126.396000px;}
.y104{bottom:133.776000px;}
.y3a{bottom:139.716000px;}
.y75{bottom:140.796000px;}
.y8f{bottom:142.416000px;}
.ycb{bottom:143.676000px;}
.y103{bottom:151.230000px;}
.y39{bottom:158.790000px;}
.y74{bottom:159.690000px;}
.yca{bottom:160.770000px;}
.y102{bottom:164.550000px;}
.y38{bottom:177.690000px;}
.yc9{bottom:178.050000px;}
.y73{bottom:178.590000px;}
.y101{bottom:181.830000px;}
.yc8{bottom:195.330000px;}
.y37{bottom:196.770000px;}
.y72{bottom:197.670000px;}
.y100{bottom:199.110000px;}
.yc7{bottom:212.610000px;}
.y36{bottom:215.670000px;}
.yff{bottom:216.390000px;}
.y71{bottom:216.570000px;}
.yc6{bottom:229.890000px;}
.yfe{bottom:233.670000px;}
.y35{bottom:234.570000px;}
.y70{bottom:235.650000px;}
.y8c{bottom:246.630000px;}
.yc5{bottom:247.170000px;}
.yfd{bottom:250.770000px;}
.y34{bottom:253.650000px;}
.y6f{bottom:254.550000px;}
.yc4{bottom:264.270000px;}
.yfc{bottom:268.050000px;}
.y33{bottom:272.550000px;}
.y6e{bottom:273.630000px;}
.yc3{bottom:281.550000px;}
.y8b{bottom:285.330000px;}
.y32{bottom:291.630000px;}
.y6d{bottom:292.530000px;}
.yc2{bottom:298.830000px;}
.y8a{bottom:303.150000px;}
.y31{bottom:310.530000px;}
.y6c{bottom:311.430000px;}
.yc1{bottom:316.110000px;}
.yfb{bottom:318.630000px;}
.y89{bottom:322.230000px;}
.y30{bottom:329.655000px;}
.y6b{bottom:330.555000px;}
.yfa{bottom:331.995000px;}
.yc0{bottom:333.435000px;}
.y88{bottom:341.175000px;}
.y2f{bottom:348.555000px;}
.yf9{bottom:349.275000px;}
.y6a{bottom:349.455000px;}
.ybf{bottom:350.535000px;}
.y87{bottom:360.075000px;}
.yf8{bottom:366.375000px;}
.y2e{bottom:367.455000px;}
.ybe{bottom:367.815000px;}
.y69{bottom:368.535000px;}
.y86{bottom:379.155000px;}
.yf7{bottom:383.655000px;}
.ybd{bottom:385.095000px;}
.y2d{bottom:386.535000px;}
.y68{bottom:387.435000px;}
.y85{bottom:398.055000px;}
.ybc{bottom:402.375000px;}
.y2c{bottom:405.435000px;}
.y67{bottom:406.335000px;}
.yf6{bottom:416.955000px;}
.y84{bottom:417.135000px;}
.ybb{bottom:419.295000px;}
.y2b{bottom:424.515000px;}
.y66{bottom:425.415000px;}
.yf5{bottom:429.915000px;}
.y83{bottom:436.035000px;}
.y2a{bottom:443.415000px;}
.y65{bottom:444.315000px;}
.yf4{bottom:447.195000px;}
.yba{bottom:450.975000px;}
.y82{bottom:455.115000px;}
.y29{bottom:462.315000px;}
.y64{bottom:463.395000px;}
.yf3{bottom:464.475000px;}
.yb9{bottom:469.875000px;}
.y81{bottom:474.015000px;}
.yf2{bottom:480.855000px;}
.y28{bottom:481.395000px;}
.y63{bottom:482.295000px;}
.yb8{bottom:488.955000px;}
.y80{bottom:492.915000px;}
.yf1{bottom:493.995000px;}
.y27{bottom:500.295000px;}
.y62{bottom:501.195000px;}
.yb7{bottom:507.855000px;}
.yf0{bottom:511.275000px;}
.y7f{bottom:511.995000px;}
.y26{bottom:519.375000px;}
.y61{bottom:520.275000px;}
.yb6{bottom:526.755000px;}
.y7e{bottom:530.895000px;}
.y25{bottom:538.275000px;}
.y60{bottom:539.175000px;}
.yef{bottom:544.575000px;}
.yb5{bottom:545.835000px;}
.y7d{bottom:549.975000px;}
.y24{bottom:557.175000px;}
.yee{bottom:557.895000px;}
.y5f{bottom:558.255000px;}
.yb4{bottom:564.735000px;}
.y7c{bottom:570.135000px;}
.yed{bottom:575.175000px;}
.y23{bottom:576.255000px;}
.y5e{bottom:577.155000px;}
.yb3{bottom:583.815000px;}
.y7b{bottom:590.295000px;}
.yec{bottom:592.455000px;}
.y22{bottom:595.185000px;}
.y5d{bottom:596.085000px;}
.yb2{bottom:602.745000px;}
.yeb{bottom:609.765000px;}
.y7a{bottom:610.485000px;}
.y21{bottom:614.265000px;}
.y5c{bottom:615.165000px;}
.yb1{bottom:621.825000px;}
.yea{bottom:626.865000px;}
.y79{bottom:630.645000px;}
.y20{bottom:633.165000px;}
.y5b{bottom:634.065000px;}
.yb0{bottom:640.725000px;}
.ye9{bottom:644.145000px;}
.y78{bottom:650.805000px;}
.y1f{bottom:652.065000px;}
.y5a{bottom:653.145000px;}
.yaf{bottom:659.625000px;}
.ye8{bottom:661.425000px;}
.y77{bottom:670.965000px;}
.y1e{bottom:671.145000px;}
.y59{bottom:672.045000px;}
.yae{bottom:678.705000px;}
.y1d{bottom:690.045000px;}
.y58{bottom:690.945000px;}
.ye7{bottom:695.985000px;}
.yad{bottom:697.605000px;}
.y1c{bottom:709.125000px;}
.y57{bottom:710.025000px;}
.ye6{bottom:712.365000px;}
.yac{bottom:716.685000px;}
.ye5{bottom:726.945000px;}
.y1b{bottom:728.025000px;}
.y56{bottom:728.925000px;}
.yab{bottom:735.585000px;}
.ye4{bottom:744.225000px;}
.y1a{bottom:746.025000px;}
.y55{bottom:748.005000px;}
.yaa{bottom:754.485000px;}
.y19{bottom:760.605000px;}
.y54{bottom:766.905000px;}
.ya9{bottom:773.565000px;}
.y18{bottom:777.705000px;}
.y53{bottom:785.985000px;}
.ya8{bottom:792.465000px;}
.y17{bottom:794.985000px;}
.y52{bottom:804.885000px;}
.ye3{bottom:808.305000px;}
.ya7{bottom:811.545000px;}
.y16{bottom:812.265000px;}
.ye2{bottom:820.185000px;}
.y51{bottom:823.785000px;}
.y15{bottom:829.545000px;}
.ya6{bottom:830.445000px;}
.ye1{bottom:837.285000px;}
.y50{bottom:842.865000px;}
.y14{bottom:846.825000px;}
.ya5{bottom:849.345000px;}
.ye0{bottom:854.565000px;}
.y4f{bottom:861.765000px;}
.y13{bottom:863.970000px;}
.ya4{bottom:868.470000px;}
.ydf{bottom:871.890000px;}
.y4e{bottom:880.890000px;}
.y12{bottom:881.250000px;}
.ya3{bottom:887.370000px;}
.yde{bottom:889.170000px;}
.y11{bottom:898.530000px;}
.y4d{bottom:899.790000px;}
.ya2{bottom:905.370000px;}
.ydd{bottom:906.450000px;}
.ya1{bottom:916.890000px;}
.y4c{bottom:918.690000px;}
.ydc{bottom:923.730000px;}
.y10{bottom:932.370000px;}
.y4b{bottom:937.770000px;}
.ydb{bottom:940.830000px;}
.yf{bottom:946.770000px;}
.y4a{bottom:956.670000px;}
.yda{bottom:958.110000px;}
.ye{bottom:964.050000px;}
.yd9{bottom:975.390000px;}
.y49{bottom:975.750000px;}
.yd{bottom:981.330000px;}
.y9f{bottom:986.730000px;}
.yd8{bottom:992.670000px;}
.y48{bottom:994.650000px;}
.yc{bottom:998.610000px;}
.yd7{bottom:1009.950000px;}
.y47{bottom:1013.550000px;}
.yb{bottom:1015.890000px;}
.yd6{bottom:1027.050000px;}
.y46{bottom:1032.630000px;}
.yd5{bottom:1044.330000px;}
.y45{bottom:1051.530000px;}
.y9c{bottom:1056.390000px;}
.yd4{bottom:1061.610000px;}
.ya{bottom:1063.770000px;}
.y44{bottom:1070.610000px;}
.yd3{bottom:1078.890000px;}
.y9{bottom:1081.410000px;}
.y43{bottom:1089.510000px;}
.yd2{bottom:1096.170000px;}
.y8{bottom:1098.690000px;}
.y42{bottom:1108.410000px;}
.yd1{bottom:1113.450000px;}
.y7{bottom:1116.870000px;}
.y99{bottom:1126.050000px;}
.y41{bottom:1127.490000px;}
.yd0{bottom:1130.580000px;}
.y6{bottom:1141.560000px;}
.y40{bottom:1146.420000px;}
.ycf{bottom:1147.500000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y3f{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.h10{height:34.560000px;}
.h14{height:34.596000px;}
.h16{height:35.332031px;}
.h19{height:40.964766px;}
.h18{height:40.985156px;}
.h8{height:47.344922px;}
.h17{height:48.616875px;}
.h4{height:49.583118px;}
.h11{height:51.677227px;}
.h13{height:51.840000px;}
.h1b{height:52.971680px;}
.hd{height:52.998047px;}
.h9{height:53.252930px;}
.h2{height:58.651172px;}
.hc{height:59.027344px;}
.h7{height:60.226875px;}
.h1a{height:61.189805px;}
.h3{height:61.423863px;}
.hf{height:64.978594px;}
.hb{height:65.010937px;}
.ha{height:66.757500px;}
.he{height:68.084282px;}
.h15{height:68.940000px;}
.h6{height:73.751133px;}
.h12{height:103.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:14.940000px;}
.w4{width:16.920000px;}
.w9{width:95.580000px;}
.w5{width:95.616000px;}
.w8{width:178.590000px;}
.w7{width:212.970000px;}
.w6{width:232.230000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x13{left:20.160000px;}
.x12{left:24.480000px;}
.x17{left:29.520000px;}
.x18{left:37.260000px;}
.x1a{left:53.820000px;}
.x11{left:56.160000px;}
.x4{left:63.900000px;}
.x28{left:83.519987px;}
.x15{left:90.900000px;}
.x1e{left:98.676000px;}
.xc{left:106.415987px;}
.x21{left:133.235987px;}
.xe{left:148.895987px;}
.x14{left:152.490000px;}
.x7{left:183.089987px;}
.x1c{left:194.970000px;}
.x5{left:200.909987px;}
.x10{left:249.329987px;}
.x1{left:262.109987px;}
.x2a{left:275.609987px;}
.x6{left:293.474987px;}
.x29{left:297.974987px;}
.x24{left:313.634987px;}
.x20{left:344.054987px;}
.x16{left:385.455000px;}
.x22{left:390.314987px;}
.x8{left:405.434987px;}
.x1d{left:427.935000px;}
.x2{left:441.254987px;}
.x23{left:446.474987px;}
.x25{left:520.484987px;}
.x2b{left:548.024987px;}
.x9{left:551.264987px;}
.x2c{left:574.124987px;}
.x27{left:579.164987px;}
.x19{left:599.145000px;}
.x26{left:604.904987px;}
.xb{left:639.104987px;}
.x1f{left:641.625000px;}
.xf{left:712.949987px;}
.xa{left:767.489987px;}
.x3{left:786.749987px;}
.xd{left:819.150000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-58.880000pt;}
.v4{vertical-align:-57.600000pt;}
.v2{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.216533pt;}
.lsa{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.423467pt;}
.ls1e{letter-spacing:0.466667pt;}
.ls2a{letter-spacing:0.592000pt;}
.ls21{letter-spacing:0.592640pt;}
.ls9{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.736000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.280000pt;}
.lse{letter-spacing:2.560000pt;}
.ls22{letter-spacing:3.152640pt;}
.ls8{letter-spacing:3.840000pt;}
.ls6{letter-spacing:6.400000pt;}
.lsf{letter-spacing:7.680000pt;}
.lsd{letter-spacing:8.320000pt;}
.ls1c{letter-spacing:12.112640pt;}
.ls14{letter-spacing:12.160000pt;}
.ls23{letter-spacing:13.392640pt;}
.ls17{letter-spacing:13.440000pt;}
.lsc{letter-spacing:14.080000pt;}
.ls1d{letter-spacing:15.520000pt;}
.ls13{letter-spacing:16.640000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls7{letter-spacing:23.680000pt;}
.ls5{letter-spacing:25.600000pt;}
.ls19{letter-spacing:36.480000pt;}
.ls1a{letter-spacing:38.331307pt;}
.ls12{letter-spacing:40.591360pt;}
.ls1b{letter-spacing:40.891307pt;}
.ls3{letter-spacing:140.448000pt;}
.ls29{letter-spacing:141.888000pt;}
.ls24{letter-spacing:143.168000pt;}
.ls0{letter-spacing:595.520000pt;}
.ls28{letter-spacing:609.066667pt;}
.ls25{letter-spacing:1938.613333pt;}
.ws8{word-spacing:-58.880000pt;}
.ws2{word-spacing:-16.755200pt;}
.ws1{word-spacing:-16.473600pt;}
.ws4{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.080000pt;}
.wse{word-spacing:-14.016000pt;}
.ws9{word-spacing:-13.703467pt;}
.ws0{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.063467pt;}
.wsc{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._1e{margin-left:-3.113813pt;}
._c{margin-left:-2.114560pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._4{width:3.693013pt;}
._8{width:5.099520pt;}
._9{width:6.395307pt;}
._a{width:7.300053pt;}
._b{width:8.233600pt;}
._1c{width:9.619627pt;}
._5{width:10.783360pt;}
._12{width:11.953920pt;}
._16{width:13.532160pt;}
._3b{width:14.920107pt;}
._1a{width:15.948800pt;}
._18{width:17.344000pt;}
._17{width:18.647040pt;}
._19{width:19.599360pt;}
._1b{width:20.874240pt;}
._13{width:21.813760pt;}
._14{width:22.707200pt;}
._15{width:23.745707pt;}
._e{width:24.952320pt;}
._d{width:25.843200pt;}
._f{width:27.059627pt;}
._10{width:28.648960pt;}
._11{width:29.585920pt;}
._26{width:30.844373pt;}
._6{width:32.309120pt;}
._1f{width:33.793707pt;}
._36{width:35.909120pt;}
._37{width:36.971520pt;}
._31{width:38.512000pt;}
._1d{width:39.511040pt;}
._7{width:40.796160pt;}
._27{width:43.983360pt;}
._21{width:46.011307pt;}
._20{width:47.045120pt;}
._2f{width:48.195840pt;}
._24{width:51.250560pt;}
._23{width:52.504960pt;}
._22{width:57.083733pt;}
._2a{width:60.025600pt;}
._2d{width:79.626880pt;}
._25{width:80.552320pt;}
._32{width:88.763520pt;}
._30{width:107.727360pt;}
._38{width:110.572160pt;}
._33{width:112.242560pt;}
._2c{width:118.563840pt;}
._2b{width:130.728320pt;}
._3c{width:136.249387pt;}
._34{width:138.005760pt;}
._2e{width:145.176960pt;}
._3a{width:157.553920pt;}
._35{width:162.334720pt;}
._39{width:174.605440pt;}
._28{width:202.227840pt;}
._29{width:252.054400pt;}
._3{width:254.648747pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.y95{bottom:3.360000pt;}
.y9b{bottom:3.386667pt;}
.y8d{bottom:18.400000pt;}
.ya0{bottom:18.560000pt;}
.y94{bottom:18.714667pt;}
.y98{bottom:18.720000pt;}
.y9a{bottom:18.746667pt;}
.y9e{bottom:33.920000pt;}
.y93{bottom:34.074667pt;}
.y97{bottom:34.080000pt;}
.y92{bottom:49.274667pt;}
.y9d{bottom:49.280000pt;}
.y3e{bottom:50.400000pt;}
.y91{bottom:64.634667pt;}
.y107{bottom:78.432000pt;}
.y96{bottom:79.872000pt;}
.y90{bottom:79.994667pt;}
.yce{bottom:81.632000pt;}
.y3d{bottom:82.272000pt;}
.y106{bottom:92.192000pt;}
.y3c{bottom:96.032000pt;}
.ycd{bottom:96.992000pt;}
.y105{bottom:105.792000pt;}
.y76{bottom:108.192000pt;}
.y3b{bottom:109.792000pt;}
.ycc{bottom:112.352000pt;}
.y104{bottom:118.912000pt;}
.y3a{bottom:124.192000pt;}
.y75{bottom:125.152000pt;}
.y8f{bottom:126.592000pt;}
.ycb{bottom:127.712000pt;}
.y103{bottom:134.426667pt;}
.y39{bottom:141.146667pt;}
.y74{bottom:141.946667pt;}
.yca{bottom:142.906667pt;}
.y102{bottom:146.266667pt;}
.y38{bottom:157.946667pt;}
.yc9{bottom:158.266667pt;}
.y73{bottom:158.746667pt;}
.y101{bottom:161.626667pt;}
.yc8{bottom:173.626667pt;}
.y37{bottom:174.906667pt;}
.y72{bottom:175.706667pt;}
.y100{bottom:176.986667pt;}
.yc7{bottom:188.986667pt;}
.y36{bottom:191.706667pt;}
.yff{bottom:192.346667pt;}
.y71{bottom:192.506667pt;}
.yc6{bottom:204.346667pt;}
.yfe{bottom:207.706667pt;}
.y35{bottom:208.506667pt;}
.y70{bottom:209.466667pt;}
.y8c{bottom:219.226667pt;}
.yc5{bottom:219.706667pt;}
.yfd{bottom:222.906667pt;}
.y34{bottom:225.466667pt;}
.y6f{bottom:226.266667pt;}
.yc4{bottom:234.906667pt;}
.yfc{bottom:238.266667pt;}
.y33{bottom:242.266667pt;}
.y6e{bottom:243.226667pt;}
.yc3{bottom:250.266667pt;}
.y8b{bottom:253.626667pt;}
.y32{bottom:259.226667pt;}
.y6d{bottom:260.026667pt;}
.yc2{bottom:265.626667pt;}
.y8a{bottom:269.466667pt;}
.y31{bottom:276.026667pt;}
.y6c{bottom:276.826667pt;}
.yc1{bottom:280.986667pt;}
.yfb{bottom:283.226667pt;}
.y89{bottom:286.426667pt;}
.y30{bottom:293.026667pt;}
.y6b{bottom:293.826667pt;}
.yfa{bottom:295.106667pt;}
.yc0{bottom:296.386667pt;}
.y88{bottom:303.266667pt;}
.y2f{bottom:309.826667pt;}
.yf9{bottom:310.466667pt;}
.y6a{bottom:310.626667pt;}
.ybf{bottom:311.586667pt;}
.y87{bottom:320.066667pt;}
.yf8{bottom:325.666667pt;}
.y2e{bottom:326.626667pt;}
.ybe{bottom:326.946667pt;}
.y69{bottom:327.586667pt;}
.y86{bottom:337.026667pt;}
.yf7{bottom:341.026667pt;}
.ybd{bottom:342.306667pt;}
.y2d{bottom:343.586667pt;}
.y68{bottom:344.386667pt;}
.y85{bottom:353.826667pt;}
.ybc{bottom:357.666667pt;}
.y2c{bottom:360.386667pt;}
.y67{bottom:361.186667pt;}
.yf6{bottom:370.626667pt;}
.y84{bottom:370.786667pt;}
.ybb{bottom:372.706667pt;}
.y2b{bottom:377.346667pt;}
.y66{bottom:378.146667pt;}
.yf5{bottom:382.146667pt;}
.y83{bottom:387.586667pt;}
.y2a{bottom:394.146667pt;}
.y65{bottom:394.946667pt;}
.yf4{bottom:397.506667pt;}
.yba{bottom:400.866667pt;}
.y82{bottom:404.546667pt;}
.y29{bottom:410.946667pt;}
.y64{bottom:411.906667pt;}
.yf3{bottom:412.866667pt;}
.yb9{bottom:417.666667pt;}
.y81{bottom:421.346667pt;}
.yf2{bottom:427.426667pt;}
.y28{bottom:427.906667pt;}
.y63{bottom:428.706667pt;}
.yb8{bottom:434.626667pt;}
.y80{bottom:438.146667pt;}
.yf1{bottom:439.106667pt;}
.y27{bottom:444.706667pt;}
.y62{bottom:445.506667pt;}
.yb7{bottom:451.426667pt;}
.yf0{bottom:454.466667pt;}
.y7f{bottom:455.106667pt;}
.y26{bottom:461.666667pt;}
.y61{bottom:462.466667pt;}
.yb6{bottom:468.226667pt;}
.y7e{bottom:471.906667pt;}
.y25{bottom:478.466667pt;}
.y60{bottom:479.266667pt;}
.yef{bottom:484.066667pt;}
.yb5{bottom:485.186667pt;}
.y7d{bottom:488.866667pt;}
.y24{bottom:495.266667pt;}
.yee{bottom:495.906667pt;}
.y5f{bottom:496.226667pt;}
.yb4{bottom:501.986667pt;}
.y7c{bottom:506.786667pt;}
.yed{bottom:511.266667pt;}
.y23{bottom:512.226667pt;}
.y5e{bottom:513.026667pt;}
.yb3{bottom:518.946667pt;}
.y7b{bottom:524.706667pt;}
.yec{bottom:526.626667pt;}
.y22{bottom:529.053333pt;}
.y5d{bottom:529.853333pt;}
.yb2{bottom:535.773333pt;}
.yeb{bottom:542.013333pt;}
.y7a{bottom:542.653333pt;}
.y21{bottom:546.013333pt;}
.y5c{bottom:546.813333pt;}
.yb1{bottom:552.733333pt;}
.yea{bottom:557.213333pt;}
.y79{bottom:560.573333pt;}
.y20{bottom:562.813333pt;}
.y5b{bottom:563.613333pt;}
.yb0{bottom:569.533333pt;}
.ye9{bottom:572.573333pt;}
.y78{bottom:578.493333pt;}
.y1f{bottom:579.613333pt;}
.y5a{bottom:580.573333pt;}
.yaf{bottom:586.333333pt;}
.ye8{bottom:587.933333pt;}
.y77{bottom:596.413333pt;}
.y1e{bottom:596.573333pt;}
.y59{bottom:597.373333pt;}
.yae{bottom:603.293333pt;}
.y1d{bottom:613.373333pt;}
.y58{bottom:614.173333pt;}
.ye7{bottom:618.653333pt;}
.yad{bottom:620.093333pt;}
.y1c{bottom:630.333333pt;}
.y57{bottom:631.133333pt;}
.ye6{bottom:633.213333pt;}
.yac{bottom:637.053333pt;}
.ye5{bottom:646.173333pt;}
.y1b{bottom:647.133333pt;}
.y56{bottom:647.933333pt;}
.yab{bottom:653.853333pt;}
.ye4{bottom:661.533333pt;}
.y1a{bottom:663.133333pt;}
.y55{bottom:664.893333pt;}
.yaa{bottom:670.653333pt;}
.y19{bottom:676.093333pt;}
.y54{bottom:681.693333pt;}
.ya9{bottom:687.613333pt;}
.y18{bottom:691.293333pt;}
.y53{bottom:698.653333pt;}
.ya8{bottom:704.413333pt;}
.y17{bottom:706.653333pt;}
.y52{bottom:715.453333pt;}
.ye3{bottom:718.493333pt;}
.ya7{bottom:721.373333pt;}
.y16{bottom:722.013333pt;}
.ye2{bottom:729.053333pt;}
.y51{bottom:732.253333pt;}
.y15{bottom:737.373333pt;}
.ya6{bottom:738.173333pt;}
.ye1{bottom:744.253333pt;}
.y50{bottom:749.213333pt;}
.y14{bottom:752.733333pt;}
.ya5{bottom:754.973333pt;}
.ye0{bottom:759.613333pt;}
.y4f{bottom:766.013333pt;}
.y13{bottom:767.973333pt;}
.ya4{bottom:771.973333pt;}
.ydf{bottom:775.013333pt;}
.y4e{bottom:783.013333pt;}
.y12{bottom:783.333333pt;}
.ya3{bottom:788.773333pt;}
.yde{bottom:790.373333pt;}
.y11{bottom:798.693333pt;}
.y4d{bottom:799.813333pt;}
.ya2{bottom:804.773333pt;}
.ydd{bottom:805.733333pt;}
.ya1{bottom:815.013333pt;}
.y4c{bottom:816.613333pt;}
.ydc{bottom:821.093333pt;}
.y10{bottom:828.773333pt;}
.y4b{bottom:833.573333pt;}
.ydb{bottom:836.293333pt;}
.yf{bottom:841.573333pt;}
.y4a{bottom:850.373333pt;}
.yda{bottom:851.653333pt;}
.ye{bottom:856.933333pt;}
.yd9{bottom:867.013333pt;}
.y49{bottom:867.333333pt;}
.yd{bottom:872.293333pt;}
.y9f{bottom:877.093333pt;}
.yd8{bottom:882.373333pt;}
.y48{bottom:884.133333pt;}
.yc{bottom:887.653333pt;}
.yd7{bottom:897.733333pt;}
.y47{bottom:900.933333pt;}
.yb{bottom:903.013333pt;}
.yd6{bottom:912.933333pt;}
.y46{bottom:917.893333pt;}
.yd5{bottom:928.293333pt;}
.y45{bottom:934.693333pt;}
.y9c{bottom:939.013333pt;}
.yd4{bottom:943.653333pt;}
.ya{bottom:945.573333pt;}
.y44{bottom:951.653333pt;}
.yd3{bottom:959.013333pt;}
.y9{bottom:961.253333pt;}
.y43{bottom:968.453333pt;}
.yd2{bottom:974.373333pt;}
.y8{bottom:976.613333pt;}
.y42{bottom:985.253333pt;}
.yd1{bottom:989.733333pt;}
.y7{bottom:992.773333pt;}
.y99{bottom:1000.933333pt;}
.y41{bottom:1002.213333pt;}
.yd0{bottom:1004.960000pt;}
.y6{bottom:1014.720000pt;}
.y40{bottom:1019.040000pt;}
.ycf{bottom:1020.000000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y3f{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.h10{height:30.720000pt;}
.h14{height:30.752000pt;}
.h16{height:31.406250pt;}
.h19{height:36.413125pt;}
.h18{height:36.431250pt;}
.h8{height:42.084375pt;}
.h17{height:43.215000pt;}
.h4{height:44.073883pt;}
.h11{height:45.935313pt;}
.h13{height:46.080000pt;}
.h1b{height:47.085938pt;}
.hd{height:47.109375pt;}
.h9{height:47.335938pt;}
.h2{height:52.134375pt;}
.hc{height:52.468750pt;}
.h7{height:53.535000pt;}
.h1a{height:54.390938pt;}
.h3{height:54.598989pt;}
.hf{height:57.758750pt;}
.hb{height:57.787500pt;}
.ha{height:59.340000pt;}
.he{height:60.519362pt;}
.h15{height:61.280000pt;}
.h6{height:65.556562pt;}
.h12{height:92.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:13.280000pt;}
.w4{width:15.040000pt;}
.w9{width:84.960000pt;}
.w5{width:84.992000pt;}
.w8{width:158.746667pt;}
.w7{width:189.306667pt;}
.w6{width:206.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x13{left:17.920000pt;}
.x12{left:21.760000pt;}
.x17{left:26.240000pt;}
.x18{left:33.120000pt;}
.x1a{left:47.840000pt;}
.x11{left:49.920000pt;}
.x4{left:56.800000pt;}
.x28{left:74.239988pt;}
.x15{left:80.800000pt;}
.x1e{left:87.712000pt;}
.xc{left:94.591988pt;}
.x21{left:118.431988pt;}
.xe{left:132.351988pt;}
.x14{left:135.546667pt;}
.x7{left:162.746655pt;}
.x1c{left:173.306667pt;}
.x5{left:178.586655pt;}
.x10{left:221.626655pt;}
.x1{left:232.986655pt;}
.x2a{left:244.986655pt;}
.x6{left:260.866655pt;}
.x29{left:264.866655pt;}
.x24{left:278.786655pt;}
.x20{left:305.826655pt;}
.x16{left:342.626667pt;}
.x22{left:346.946655pt;}
.x8{left:360.386655pt;}
.x1d{left:380.386667pt;}
.x2{left:392.226655pt;}
.x23{left:396.866655pt;}
.x25{left:462.653322pt;}
.x2b{left:487.133322pt;}
.x9{left:490.013322pt;}
.x2c{left:510.333322pt;}
.x27{left:514.813322pt;}
.x19{left:532.573333pt;}
.x26{left:537.693322pt;}
.xb{left:568.093322pt;}
.x1f{left:570.333333pt;}
.xf{left:633.733322pt;}
.xa{left:682.213322pt;}
.x3{left:699.333322pt;}
.xd{left:728.133333pt;}
}




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