
    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_8859a9d5e748704d6476c2c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.215332;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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_7e796edbab2d255fe678415d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_c8f81163963c04ed79ade36b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.215332;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_3f164c36f98e2233d1171c5b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_cbcfe049955e3706e1f99837.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_98be31b453d085d986cf8197.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.014160;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_0e327b054efa92a2d9d77398.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.014160;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_fe40e2089a2e6b1f69a87bd3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.695312;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_791c981ab0505d21b4140554.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909180;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:-20.880000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.810000px;}
.ls3c{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.513600px;}
.ls2b{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.362400px;}
.lsd{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.332400px;}
.ls1a{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.253200px;}
.ls1e{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.072000px;}
.ls45{letter-spacing:-0.067800px;}
.ls47{letter-spacing:-0.007920px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.019440px;}
.ls1b{letter-spacing:0.045360px;}
.ls38{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.084000px;}
.ls6{letter-spacing:0.110160px;}
.ls3a{letter-spacing:0.113760px;}
.ls31{letter-spacing:0.120000px;}
.ls35{letter-spacing:0.144000px;}
.ls39{letter-spacing:0.156000px;}
.lsc{letter-spacing:0.175200px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.182640px;}
.ls49{letter-spacing:0.192000px;}
.ls30{letter-spacing:0.206400px;}
.ls25{letter-spacing:0.206640px;}
.ls19{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.243600px;}
.ls0{letter-spacing:0.247680px;}
.ls41{letter-spacing:0.264000px;}
.ls40{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.298800px;}
.ls4a{letter-spacing:0.302400px;}
.ls20{letter-spacing:0.303000px;}
.ls26{letter-spacing:0.306000px;}
.ls28{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.306720px;}
.ls13{letter-spacing:0.347040px;}
.ls2f{letter-spacing:0.357600px;}
.ls15{letter-spacing:0.357840px;}
.ls3{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.527040px;}
.ls43{letter-spacing:0.720000px;}
.ls33{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.800000px;}
.ls37{letter-spacing:3.780000px;}
.ls29{letter-spacing:4.320000px;}
.ls3d{letter-spacing:4.500000px;}
.ls32{letter-spacing:5.220000px;}
.ls8{letter-spacing:5.940000px;}
.ls23{letter-spacing:6.120000px;}
.ls3f{letter-spacing:7.380000px;}
.ls2d{letter-spacing:8.280000px;}
.ls18{letter-spacing:8.640000px;}
.ls34{letter-spacing:8.820000px;}
.ls17{letter-spacing:10.440000px;}
.ls16{letter-spacing:10.980000px;}
.ls1{letter-spacing:14.400000px;}
.ls14{letter-spacing:14.580000px;}
.ls11{letter-spacing:14.760000px;}
.ls10{letter-spacing:15.120000px;}
.ls42{letter-spacing:22.500000px;}
.ls36{letter-spacing:23.220000px;}
.ls3b{letter-spacing:35.460000px;}
.ls3e{letter-spacing:38.880000px;}
.ls48{letter-spacing:40.320000px;}
.ls2c{letter-spacing:1934.580000px;}
.lse{letter-spacing:1970.580000px;}
.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;}
}
.ws5{word-spacing:-21.060000px;}
.ws17{word-spacing:-18.360000px;}
.ws14{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.ws12{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.024000px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.686800px;}
.wsa{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.220000px;}
.ws15{word-spacing:-14.152200px;}
.ws18{word-spacing:-13.887600px;}
.wsf{word-spacing:-12.363000px;}
.ws0{word-spacing:-12.303600px;}
.wsc{word-spacing:-12.105360px;}
.ws1{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.697600px;}
.ws19{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._37{margin-left:-6.995040px;}
._14{margin-left:-5.256000px;}
._13{margin-left:-3.960000px;}
._11{margin-left:-2.376000px;}
._1{margin-left:-1.192320px;}
._2{width:1.020000px;}
._b{width:2.064000px;}
._5{width:3.432000px;}
._9{width:5.328000px;}
._a{width:6.857280px;}
._7{width:8.032320px;}
._6{width:9.360000px;}
._12{width:10.399680px;}
._8{width:11.448000px;}
._10{width:12.816000px;}
._3{width:13.872000px;}
._4{width:14.952000px;}
._16{width:16.272000px;}
._1b{width:17.518320px;}
._19{width:19.080000px;}
._1a{width:20.088000px;}
._1c{width:21.496320px;}
._f{width:22.680000px;}
._2d{width:23.880000px;}
._2f{width:25.044000px;}
._21{width:26.208000px;}
._15{width:27.792000px;}
._1e{width:29.520000px;}
._1d{width:31.032000px;}
._2a{width:32.656320px;}
._29{width:34.272000px;}
._2b{width:35.856000px;}
._2c{width:37.356000px;}
._35{width:38.836320px;}
._24{width:40.104000px;}
._2e{width:41.112000px;}
._22{width:42.624000px;}
._23{width:44.064000px;}
._18{width:45.432000px;}
._d{width:47.520000px;}
._26{width:49.464000px;}
._25{width:50.616000px;}
._27{width:51.696000px;}
._28{width:52.804320px;}
._30{width:54.936000px;}
._38{width:56.244000px;}
._34{width:58.392000px;}
._20{width:63.144000px;}
._1f{width:64.512000px;}
._36{width:76.872000px;}
._32{width:79.488000px;}
._33{width:81.012000px;}
._e{width:198.000000px;}
._17{width:204.636000px;}
._0{width:213.840000px;}
._31{width:1019.100000px;}
._c{width:1055.100000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:3.600000px;}
.ye{bottom:4.860000px;}
.y16{bottom:5.400000px;}
.yf{bottom:17.460000px;}
.yd{bottom:27.180000px;}
.yb{bottom:27.720000px;}
.y18{bottom:29.700000px;}
.y15{bottom:29.745000px;}
.ya{bottom:41.940000px;}
.y59{bottom:58.500000px;}
.y8{bottom:59.220000px;}
.y58{bottom:79.596000px;}
.y7{bottom:83.736000px;}
.y6{bottom:108.036000px;}
.y5{bottom:125.136000px;}
.y31{bottom:153.390000px;}
.ycb{bottom:154.470000px;}
.y55{bottom:157.170000px;}
.yd3{bottom:160.230000px;}
.yf6{bottom:163.470000px;}
.ye6{bottom:171.210000px;}
.ycf{bottom:172.290000px;}
.y54{bottom:173.550000px;}
.y78{bottom:177.330000px;}
.y91{bottom:178.050000px;}
.y30{bottom:178.770000px;}
.yf5{bottom:185.610000px;}
.y53{bottom:193.890000px;}
.y2f{bottom:194.610000px;}
.ye5{bottom:195.510000px;}
.yce{bottom:196.590000px;}
.yb0{bottom:197.490000px;}
.y81{bottom:197.670000px;}
.yca{bottom:203.070000px;}
.y77{bottom:214.050000px;}
.y80{bottom:214.950000px;}
.yf4{bottom:215.130000px;}
.y90{bottom:216.390000px;}
.y52{bottom:217.830000px;}
.ye4{bottom:219.810000px;}
.ycd{bottom:220.890000px;}
.yaf{bottom:221.790000px;}
.yc9{bottom:227.370000px;}
.yd2{bottom:233.130000px;}
.y51{bottom:234.390000px;}
.y89{bottom:235.110000px;}
.y83{bottom:238.170000px;}
.ye3{bottom:244.110000px;}
.ycc{bottom:245.190000px;}
.yae{bottom:246.090000px;}
.y50{bottom:254.550000px;}
.y86{bottom:255.450000px;}
.y2e{bottom:257.250000px;}
.y76{bottom:258.330000px;}
.ye2{bottom:268.410000px;}
.yc8{bottom:269.490000px;}
.yad{bottom:270.390000px;}
.y75{bottom:274.710000px;}
.y8e{bottom:275.610000px;}
.y4f{bottom:278.490000px;}
.y2d{bottom:281.550000px;}
.ye1{bottom:292.710000px;}
.y7f{bottom:293.790000px;}
.yac{bottom:294.510000px;}
.y4e{bottom:295.050000px;}
.y4d{bottom:298.830000px;}
.y2c{bottom:305.850000px;}
.y74{bottom:315.210000px;}
.y4c{bottom:316.110000px;}
.ye0{bottom:317.010000px;}
.yef{bottom:317.190000px;}
.yc7{bottom:318.090000px;}
.yab{bottom:318.810000px;}
.y2b{bottom:330.195000px;}
.y92{bottom:335.415000px;}
.y73{bottom:335.595000px;}
.ydf{bottom:341.355000px;}
.yee{bottom:341.535000px;}
.yc6{bottom:342.435000px;}
.yaa{bottom:343.155000px;}
.y2a{bottom:354.315000px;}
.y72{bottom:355.755000px;}
.y4b{bottom:360.615000px;}
.yde{bottom:365.475000px;}
.yed{bottom:365.835000px;}
.y7e{bottom:366.735000px;}
.ya9{bottom:367.455000px;}
.y8d{bottom:371.955000px;}
.y29{bottom:378.615000px;}
.yd1{bottom:378.795000px;}
.y71{bottom:379.875000px;}
.yec{bottom:389.595000px;}
.ydd{bottom:389.775000px;}
.yc5{bottom:391.035000px;}
.ya8{bottom:391.755000px;}
.y49{bottom:396.975000px;}
.y70{bottom:400.035000px;}
.y4a{bottom:402.195000px;}
.y28{bottom:402.915000px;}
.y7d{bottom:403.095000px;}
.y88{bottom:408.315000px;}
.yeb{bottom:411.915000px;}
.ydc{bottom:414.075000px;}
.yc4{bottom:415.155000px;}
.ya7{bottom:416.055000px;}
.y6f{bottom:417.315000px;}
.y27{bottom:427.215000px;}
.y48{bottom:433.515000px;}
.yea{bottom:434.055000px;}
.ydb{bottom:438.375000px;}
.y7b{bottom:439.455000px;}
.ya6{bottom:440.355000px;}
.y7c{bottom:444.675000px;}
.y26{bottom:451.515000px;}
.yd0{bottom:451.695000px;}
.ye9{bottom:456.375000px;}
.yda{bottom:462.675000px;}
.yc3{bottom:463.755000px;}
.ya5{bottom:464.655000px;}
.y47{bottom:469.875000px;}
.y25{bottom:475.815000px;}
.y7a{bottom:475.995000px;}
.ye8{bottom:478.335000px;}
.yd9{bottom:486.975000px;}
.yc2{bottom:488.055000px;}
.ya4{bottom:488.955000px;}
.ye7{bottom:493.995000px;}
.y24{bottom:500.115000px;}
.yfc{bottom:503.715000px;}
.y46{bottom:506.235000px;}
.yd8{bottom:511.275000px;}
.y6d{bottom:512.355000px;}
.ya3{bottom:513.255000px;}
.y6e{bottom:517.575000px;}
.y23{bottom:524.415000px;}
.yfb{bottom:528.015000px;}
.yd7{bottom:535.035000px;}
.yc1{bottom:536.655000px;}
.ya2{bottom:537.555000px;}
.y45{bottom:542.775000px;}
.y22{bottom:548.715000px;}
.yfa{bottom:551.775000px;}
.y85{bottom:553.935000px;}
.yd6{bottom:557.355000px;}
.yc0{bottom:560.955000px;}
.ya1{bottom:561.675000px;}
.y21{bottom:573.015000px;}
.yf9{bottom:574.095000px;}
.y43{bottom:579.135000px;}
.yd5{bottom:579.315000px;}
.y44{bottom:584.355000px;}
.y6b{bottom:585.255000px;}
.ya0{bottom:585.975000px;}
.y6c{bottom:590.475000px;}
.yd4{bottom:594.975000px;}
.yf8{bottom:596.445000px;}
.y20{bottom:597.345000px;}
.ybf{bottom:609.585000px;}
.y9f{bottom:610.305000px;}
.yf7{bottom:613.725000px;}
.y42{bottom:615.525000px;}
.y1f{bottom:621.465000px;}
.y6a{bottom:621.645000px;}
.ybe{bottom:633.885000px;}
.y9e{bottom:634.605000px;}
.yf3{bottom:641.445000px;}
.y1e{bottom:645.765000px;}
.y41{bottom:652.065000px;}
.y69{bottom:658.005000px;}
.ybd{bottom:658.185000px;}
.y8a{bottom:663.225000px;}
.y9d{bottom:664.125000px;}
.yf2{bottom:665.205000px;}
.y1d{bottom:670.065000px;}
.ybc{bottom:682.305000px;}
.yf1{bottom:688.065000px;}
.y40{bottom:688.425000px;}
.y1c{bottom:694.365000px;}
.y68{bottom:694.545000px;}
.ybb{bottom:706.605000px;}
.yf0{bottom:706.785000px;}
.y9c{bottom:712.725000px;}
.y1b{bottom:718.665000px;}
.y3f{bottom:724.965000px;}
.y67{bottom:730.905000px;}
.y84{bottom:736.125000px;}
.y9b{bottom:737.025000px;}
.y1a{bottom:742.965000px;}
.yba{bottom:755.205000px;}
.y3e{bottom:761.325000px;}
.y19{bottom:763.665000px;}
.y65{bottom:767.445000px;}
.y66{bottom:772.665000px;}
.yb9{bottom:779.505000px;}
.y9a{bottom:785.625000px;}
.y17{bottom:787.965000px;}
.y3c{bottom:797.685000px;}
.y3d{bottom:802.905000px;}
.y64{bottom:803.805000px;}
.y8c{bottom:809.025000px;}
.y99{bottom:809.925000px;}
.yb8{bottom:828.105000px;}
.y3b{bottom:834.225000px;}
.y14{bottom:836.565000px;}
.y63{bottom:840.165000px;}
.yb7{bottom:852.405000px;}
.y98{bottom:858.525000px;}
.y3a{bottom:870.630000px;}
.y62{bottom:876.750000px;}
.y82{bottom:881.970000px;}
.y97{bottom:882.870000px;}
.y13{bottom:898.710000px;}
.yb6{bottom:901.050000px;}
.y39{bottom:906.990000px;}
.y61{bottom:913.110000px;}
.y8f{bottom:918.330000px;}
.yb5{bottom:925.350000px;}
.y96{bottom:931.290000px;}
.y12{bottom:940.470000px;}
.y38{bottom:943.530000px;}
.y60{bottom:949.470000px;}
.yb4{bottom:949.650000px;}
.y79{bottom:954.690000px;}
.y95{bottom:955.590000px;}
.yb3{bottom:973.770000px;}
.y4{bottom:974.310000px;}
.y36{bottom:979.890000px;}
.y37{bottom:985.110000px;}
.y5e{bottom:986.010000px;}
.y5f{bottom:991.230000px;}
.y3{bottom:998.070000px;}
.y94{bottom:1004.190000px;}
.y35{bottom:1016.250000px;}
.y2{bottom:1020.390000px;}
.y5d{bottom:1022.370000px;}
.y8b{bottom:1027.590000px;}
.y93{bottom:1028.490000px;}
.y1{bottom:1042.710000px;}
.yb2{bottom:1046.670000px;}
.y34{bottom:1052.790000px;}
.y5c{bottom:1058.910000px;}
.y9{bottom:1059.990000px;}
.y87{bottom:1064.130000px;}
.yb1{bottom:1070.970000px;}
.y33{bottom:1092.210000px;}
.y5a{bottom:1095.270000px;}
.y5b{bottom:1100.490000px;}
.y10{bottom:1138.500000px;}
.yc{bottom:1154.700000px;}
.y57{bottom:1168.020000px;}
.y56{bottom:1193.220000px;}
.y32{bottom:1193.400000px;}
.ha{height:16.200000px;}
.h10{height:24.300000px;}
.h14{height:30.483984px;}
.h15{height:33.626953px;}
.h11{height:34.940742px;}
.h13{height:39.007266px;}
.h4{height:40.472227px;}
.h16{height:40.700742px;}
.h5{height:41.493516px;}
.h8{height:44.460000px;}
.h9{height:45.060117px;}
.he{height:48.600000px;}
.hd{height:48.636000px;}
.hf{height:52.769531px;}
.h7{height:55.820742px;}
.h2{height:61.873594px;}
.h3{height:67.253906px;}
.h17{height:73.649531px;}
.hb{height:78.516000px;}
.h12{height:78.687070px;}
.hc{height:78.837891px;}
.h6{height:139.176000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:95.436000px;}
.w3{width:138.276000px;}
.w4{width:361.650000px;}
.w6{width:439.305000px;}
.w7{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.194000px;}
.x9{left:30.960000px;}
.xb{left:47.745000px;}
.xc{left:59.040000px;}
.xd{left:102.060000px;}
.x12{left:106.605000px;}
.x5{left:119.694000px;}
.x5a{left:127.655987px;}
.x5b{left:138.275987px;}
.x5c{left:146.555987px;}
.x3{left:148.895987px;}
.x8{left:150.660000px;}
.x11{left:152.505000px;}
.x5d{left:155.549987px;}
.x2b{left:157.889987px;}
.xe{left:159.689987px;}
.x30{left:160.949973px;}
.x1{left:170.129987px;}
.x31{left:171.389987px;}
.x69{left:179.309987px;}
.x6b{left:185.069987px;}
.x45{left:194.069973px;}
.x46{left:204.509987px;}
.x20{left:206.309973px;}
.x68{left:208.109987px;}
.x64{left:210.089987px;}
.x21{left:211.529987px;}
.x4f{left:216.209973px;}
.x2e{left:221.969987px;}
.x10{left:227.010000px;}
.x49{left:230.069973px;}
.x1b{left:231.509973px;}
.x65{left:233.129987px;}
.x1c{left:236.729987px;}
.x1d{left:238.889987px;}
.x4a{left:240.509987px;}
.x3e{left:248.969987px;}
.x60{left:277.049987px;}
.x28{left:278.489973px;}
.x4b{left:283.169973px;}
.x2f{left:285.374973px;}
.x7{left:287.175000px;}
.x29{left:288.974987px;}
.xf{left:291.314987px;}
.x4c{left:293.654987px;}
.x26{left:295.994973px;}
.x3a{left:297.974973px;}
.x2a{left:299.954987px;}
.x27{left:301.214987px;}
.x6c{left:302.654987px;}
.x54{left:304.814987px;}
.x3b{left:308.414987px;}
.x14{left:311.834987px;}
.x63{left:335.234987px;}
.x6a{left:359.714987px;}
.x66{left:360.794987px;}
.x43{left:380.774973px;}
.x13{left:386.174987px;}
.x1e{left:387.974973px;}
.x44{left:391.214987px;}
.x1f{left:393.194987px;}
.x61{left:395.354987px;}
.x34{left:402.734987px;}
.x19{left:424.694973px;}
.x1a{left:429.914987px;}
.x3f{left:437.834973px;}
.x57{left:445.214973px;}
.x4{left:446.474987px;}
.x40{left:448.274987px;}
.x35{left:449.894973px;}
.x24{left:455.114973px;}
.x2{left:457.094987px;}
.x25{left:460.334987px;}
.x5f{left:475.484987px;}
.x55{left:482.864973px;}
.x58{left:488.984973px;}
.x15{left:491.864973px;}
.x56{left:493.304987px;}
.x16{left:497.084987px;}
.x59{left:499.424987px;}
.x38{left:507.164973px;}
.x39{left:517.604987px;}
.x17{left:520.844973px;}
.x18{left:526.064987px;}
.x41{left:560.804973px;}
.x42{left:571.244987px;}
.x50{left:588.164973px;}
.x32{left:591.404973px;}
.x36{left:594.644973px;}
.x51{left:598.604987px;}
.x33{left:601.844987px;}
.x2c{left:603.824973px;}
.x37{left:605.084987px;}
.x2d{left:614.264987px;}
.x52{left:629.024973px;}
.x53{left:639.464987px;}
.xa{left:648.825000px;}
.x22{left:653.504973px;}
.x23{left:658.724987px;}
.x4d{left:700.529973px;}
.x4e{left:710.969987px;}
.x47{left:723.569973px;}
.x3c{left:729.329973px;}
.x48{left:734.009987px;}
.x62{left:737.429987px;}
.x3d{left:739.769987px;}
.x67{left:761.909987px;}
.x5e{left:766.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls3c{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.456533pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.322133pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.295467pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.225067pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.064000pt;}
.ls45{letter-spacing:-0.060267pt;}
.ls47{letter-spacing:-0.007040pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.017280pt;}
.ls1b{letter-spacing:0.040320pt;}
.ls38{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.074667pt;}
.ls6{letter-spacing:0.097920pt;}
.ls3a{letter-spacing:0.101120pt;}
.ls31{letter-spacing:0.106667pt;}
.ls35{letter-spacing:0.128000pt;}
.ls39{letter-spacing:0.138667pt;}
.lsc{letter-spacing:0.155733pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.162347pt;}
.ls49{letter-spacing:0.170667pt;}
.ls30{letter-spacing:0.183467pt;}
.ls25{letter-spacing:0.183680pt;}
.ls19{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.216533pt;}
.ls0{letter-spacing:0.220160pt;}
.ls41{letter-spacing:0.234667pt;}
.ls40{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.265600pt;}
.ls4a{letter-spacing:0.268800pt;}
.ls20{letter-spacing:0.269333pt;}
.ls26{letter-spacing:0.272000pt;}
.ls28{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.272640pt;}
.ls13{letter-spacing:0.308480pt;}
.ls2f{letter-spacing:0.317867pt;}
.ls15{letter-spacing:0.318080pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.468480pt;}
.ls43{letter-spacing:0.640000pt;}
.ls33{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.600000pt;}
.ls37{letter-spacing:3.360000pt;}
.ls29{letter-spacing:3.840000pt;}
.ls3d{letter-spacing:4.000000pt;}
.ls32{letter-spacing:4.640000pt;}
.ls8{letter-spacing:5.280000pt;}
.ls23{letter-spacing:5.440000pt;}
.ls3f{letter-spacing:6.560000pt;}
.ls2d{letter-spacing:7.360000pt;}
.ls18{letter-spacing:7.680000pt;}
.ls34{letter-spacing:7.840000pt;}
.ls17{letter-spacing:9.280000pt;}
.ls16{letter-spacing:9.760000pt;}
.ls1{letter-spacing:12.800000pt;}
.ls14{letter-spacing:12.960000pt;}
.ls11{letter-spacing:13.120000pt;}
.ls10{letter-spacing:13.440000pt;}
.ls42{letter-spacing:20.000000pt;}
.ls36{letter-spacing:20.640000pt;}
.ls3b{letter-spacing:31.520000pt;}
.ls3e{letter-spacing:34.560000pt;}
.ls48{letter-spacing:35.840000pt;}
.ls2c{letter-spacing:1719.626667pt;}
.lse{letter-spacing:1751.626667pt;}
.ws5{word-spacing:-18.720000pt;}
.ws17{word-spacing:-16.320000pt;}
.ws14{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.ws12{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.354667pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.054933pt;}
.wsa{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.640000pt;}
.ws15{word-spacing:-12.579733pt;}
.ws18{word-spacing:-12.344533pt;}
.wsf{word-spacing:-10.989333pt;}
.ws0{word-spacing:-10.936533pt;}
.wsc{word-spacing:-10.760320pt;}
.ws1{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.397867pt;}
.ws19{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._37{margin-left:-6.217813pt;}
._14{margin-left:-4.672000pt;}
._13{margin-left:-3.520000pt;}
._11{margin-left:-2.112000pt;}
._1{margin-left:-1.059840pt;}
._2{width:0.906667pt;}
._b{width:1.834667pt;}
._5{width:3.050667pt;}
._9{width:4.736000pt;}
._a{width:6.095360pt;}
._7{width:7.139840pt;}
._6{width:8.320000pt;}
._12{width:9.244160pt;}
._8{width:10.176000pt;}
._10{width:11.392000pt;}
._3{width:12.330667pt;}
._4{width:13.290667pt;}
._16{width:14.464000pt;}
._1b{width:15.571840pt;}
._19{width:16.960000pt;}
._1a{width:17.856000pt;}
._1c{width:19.107840pt;}
._f{width:20.160000pt;}
._2d{width:21.226667pt;}
._2f{width:22.261333pt;}
._21{width:23.296000pt;}
._15{width:24.704000pt;}
._1e{width:26.240000pt;}
._1d{width:27.584000pt;}
._2a{width:29.027840pt;}
._29{width:30.464000pt;}
._2b{width:31.872000pt;}
._2c{width:33.205333pt;}
._35{width:34.521173pt;}
._24{width:35.648000pt;}
._2e{width:36.544000pt;}
._22{width:37.888000pt;}
._23{width:39.168000pt;}
._18{width:40.384000pt;}
._d{width:42.240000pt;}
._26{width:43.968000pt;}
._25{width:44.992000pt;}
._27{width:45.952000pt;}
._28{width:46.937173pt;}
._30{width:48.832000pt;}
._38{width:49.994667pt;}
._34{width:51.904000pt;}
._20{width:56.128000pt;}
._1f{width:57.344000pt;}
._36{width:68.330667pt;}
._32{width:70.656000pt;}
._33{width:72.010667pt;}
._e{width:176.000000pt;}
._17{width:181.898667pt;}
._0{width:190.080000pt;}
._31{width:905.866667pt;}
._c{width:937.866667pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.200000pt;}
.ye{bottom:4.320000pt;}
.y16{bottom:4.800000pt;}
.yf{bottom:15.520000pt;}
.yd{bottom:24.160000pt;}
.yb{bottom:24.640000pt;}
.y18{bottom:26.400000pt;}
.y15{bottom:26.440000pt;}
.ya{bottom:37.280000pt;}
.y59{bottom:52.000000pt;}
.y8{bottom:52.640000pt;}
.y58{bottom:70.752000pt;}
.y7{bottom:74.432000pt;}
.y6{bottom:96.032000pt;}
.y5{bottom:111.232000pt;}
.y31{bottom:136.346667pt;}
.ycb{bottom:137.306667pt;}
.y55{bottom:139.706667pt;}
.yd3{bottom:142.426667pt;}
.yf6{bottom:145.306667pt;}
.ye6{bottom:152.186667pt;}
.ycf{bottom:153.146667pt;}
.y54{bottom:154.266667pt;}
.y78{bottom:157.626667pt;}
.y91{bottom:158.266667pt;}
.y30{bottom:158.906667pt;}
.yf5{bottom:164.986667pt;}
.y53{bottom:172.346667pt;}
.y2f{bottom:172.986667pt;}
.ye5{bottom:173.786667pt;}
.yce{bottom:174.746667pt;}
.yb0{bottom:175.546667pt;}
.y81{bottom:175.706667pt;}
.yca{bottom:180.506667pt;}
.y77{bottom:190.266667pt;}
.y80{bottom:191.066667pt;}
.yf4{bottom:191.226667pt;}
.y90{bottom:192.346667pt;}
.y52{bottom:193.626667pt;}
.ye4{bottom:195.386667pt;}
.ycd{bottom:196.346667pt;}
.yaf{bottom:197.146667pt;}
.yc9{bottom:202.106667pt;}
.yd2{bottom:207.226667pt;}
.y51{bottom:208.346667pt;}
.y89{bottom:208.986667pt;}
.y83{bottom:211.706667pt;}
.ye3{bottom:216.986667pt;}
.ycc{bottom:217.946667pt;}
.yae{bottom:218.746667pt;}
.y50{bottom:226.266667pt;}
.y86{bottom:227.066667pt;}
.y2e{bottom:228.666667pt;}
.y76{bottom:229.626667pt;}
.ye2{bottom:238.586667pt;}
.yc8{bottom:239.546667pt;}
.yad{bottom:240.346667pt;}
.y75{bottom:244.186667pt;}
.y8e{bottom:244.986667pt;}
.y4f{bottom:247.546667pt;}
.y2d{bottom:250.266667pt;}
.ye1{bottom:260.186667pt;}
.y7f{bottom:261.146667pt;}
.yac{bottom:261.786667pt;}
.y4e{bottom:262.266667pt;}
.y4d{bottom:265.626667pt;}
.y2c{bottom:271.866667pt;}
.y74{bottom:280.186667pt;}
.y4c{bottom:280.986667pt;}
.ye0{bottom:281.786667pt;}
.yef{bottom:281.946667pt;}
.yc7{bottom:282.746667pt;}
.yab{bottom:283.386667pt;}
.y2b{bottom:293.506667pt;}
.y92{bottom:298.146667pt;}
.y73{bottom:298.306667pt;}
.ydf{bottom:303.426667pt;}
.yee{bottom:303.586667pt;}
.yc6{bottom:304.386667pt;}
.yaa{bottom:305.026667pt;}
.y2a{bottom:314.946667pt;}
.y72{bottom:316.226667pt;}
.y4b{bottom:320.546667pt;}
.yde{bottom:324.866667pt;}
.yed{bottom:325.186667pt;}
.y7e{bottom:325.986667pt;}
.ya9{bottom:326.626667pt;}
.y8d{bottom:330.626667pt;}
.y29{bottom:336.546667pt;}
.yd1{bottom:336.706667pt;}
.y71{bottom:337.666667pt;}
.yec{bottom:346.306667pt;}
.ydd{bottom:346.466667pt;}
.yc5{bottom:347.586667pt;}
.ya8{bottom:348.226667pt;}
.y49{bottom:352.866667pt;}
.y70{bottom:355.586667pt;}
.y4a{bottom:357.506667pt;}
.y28{bottom:358.146667pt;}
.y7d{bottom:358.306667pt;}
.y88{bottom:362.946667pt;}
.yeb{bottom:366.146667pt;}
.ydc{bottom:368.066667pt;}
.yc4{bottom:369.026667pt;}
.ya7{bottom:369.826667pt;}
.y6f{bottom:370.946667pt;}
.y27{bottom:379.746667pt;}
.y48{bottom:385.346667pt;}
.yea{bottom:385.826667pt;}
.ydb{bottom:389.666667pt;}
.y7b{bottom:390.626667pt;}
.ya6{bottom:391.426667pt;}
.y7c{bottom:395.266667pt;}
.y26{bottom:401.346667pt;}
.yd0{bottom:401.506667pt;}
.ye9{bottom:405.666667pt;}
.yda{bottom:411.266667pt;}
.yc3{bottom:412.226667pt;}
.ya5{bottom:413.026667pt;}
.y47{bottom:417.666667pt;}
.y25{bottom:422.946667pt;}
.y7a{bottom:423.106667pt;}
.ye8{bottom:425.186667pt;}
.yd9{bottom:432.866667pt;}
.yc2{bottom:433.826667pt;}
.ya4{bottom:434.626667pt;}
.ye7{bottom:439.106667pt;}
.y24{bottom:444.546667pt;}
.yfc{bottom:447.746667pt;}
.y46{bottom:449.986667pt;}
.yd8{bottom:454.466667pt;}
.y6d{bottom:455.426667pt;}
.ya3{bottom:456.226667pt;}
.y6e{bottom:460.066667pt;}
.y23{bottom:466.146667pt;}
.yfb{bottom:469.346667pt;}
.yd7{bottom:475.586667pt;}
.yc1{bottom:477.026667pt;}
.ya2{bottom:477.826667pt;}
.y45{bottom:482.466667pt;}
.y22{bottom:487.746667pt;}
.yfa{bottom:490.466667pt;}
.y85{bottom:492.386667pt;}
.yd6{bottom:495.426667pt;}
.yc0{bottom:498.626667pt;}
.ya1{bottom:499.266667pt;}
.y21{bottom:509.346667pt;}
.yf9{bottom:510.306667pt;}
.y43{bottom:514.786667pt;}
.yd5{bottom:514.946667pt;}
.y44{bottom:519.426667pt;}
.y6b{bottom:520.226667pt;}
.ya0{bottom:520.866667pt;}
.y6c{bottom:524.866667pt;}
.yd4{bottom:528.866667pt;}
.yf8{bottom:530.173333pt;}
.y20{bottom:530.973333pt;}
.ybf{bottom:541.853333pt;}
.y9f{bottom:542.493333pt;}
.yf7{bottom:545.533333pt;}
.y42{bottom:547.133333pt;}
.y1f{bottom:552.413333pt;}
.y6a{bottom:552.573333pt;}
.ybe{bottom:563.453333pt;}
.y9e{bottom:564.093333pt;}
.yf3{bottom:570.173333pt;}
.y1e{bottom:574.013333pt;}
.y41{bottom:579.613333pt;}
.y69{bottom:584.893333pt;}
.ybd{bottom:585.053333pt;}
.y8a{bottom:589.533333pt;}
.y9d{bottom:590.333333pt;}
.yf2{bottom:591.293333pt;}
.y1d{bottom:595.613333pt;}
.ybc{bottom:606.493333pt;}
.yf1{bottom:611.613333pt;}
.y40{bottom:611.933333pt;}
.y1c{bottom:617.213333pt;}
.y68{bottom:617.373333pt;}
.ybb{bottom:628.093333pt;}
.yf0{bottom:628.253333pt;}
.y9c{bottom:633.533333pt;}
.y1b{bottom:638.813333pt;}
.y3f{bottom:644.413333pt;}
.y67{bottom:649.693333pt;}
.y84{bottom:654.333333pt;}
.y9b{bottom:655.133333pt;}
.y1a{bottom:660.413333pt;}
.yba{bottom:671.293333pt;}
.y3e{bottom:676.733333pt;}
.y19{bottom:678.813333pt;}
.y65{bottom:682.173333pt;}
.y66{bottom:686.813333pt;}
.yb9{bottom:692.893333pt;}
.y9a{bottom:698.333333pt;}
.y17{bottom:700.413333pt;}
.y3c{bottom:709.053333pt;}
.y3d{bottom:713.693333pt;}
.y64{bottom:714.493333pt;}
.y8c{bottom:719.133333pt;}
.y99{bottom:719.933333pt;}
.yb8{bottom:736.093333pt;}
.y3b{bottom:741.533333pt;}
.y14{bottom:743.613333pt;}
.y63{bottom:746.813333pt;}
.yb7{bottom:757.693333pt;}
.y98{bottom:763.133333pt;}
.y3a{bottom:773.893333pt;}
.y62{bottom:779.333333pt;}
.y82{bottom:783.973333pt;}
.y97{bottom:784.773333pt;}
.y13{bottom:798.853333pt;}
.yb6{bottom:800.933333pt;}
.y39{bottom:806.213333pt;}
.y61{bottom:811.653333pt;}
.y8f{bottom:816.293333pt;}
.yb5{bottom:822.533333pt;}
.y96{bottom:827.813333pt;}
.y12{bottom:835.973333pt;}
.y38{bottom:838.693333pt;}
.y60{bottom:843.973333pt;}
.yb4{bottom:844.133333pt;}
.y79{bottom:848.613333pt;}
.y95{bottom:849.413333pt;}
.yb3{bottom:865.573333pt;}
.y4{bottom:866.053333pt;}
.y36{bottom:871.013333pt;}
.y37{bottom:875.653333pt;}
.y5e{bottom:876.453333pt;}
.y5f{bottom:881.093333pt;}
.y3{bottom:887.173333pt;}
.y94{bottom:892.613333pt;}
.y35{bottom:903.333333pt;}
.y2{bottom:907.013333pt;}
.y5d{bottom:908.773333pt;}
.y8b{bottom:913.413333pt;}
.y93{bottom:914.213333pt;}
.y1{bottom:926.853333pt;}
.yb2{bottom:930.373333pt;}
.y34{bottom:935.813333pt;}
.y5c{bottom:941.253333pt;}
.y9{bottom:942.213333pt;}
.y87{bottom:945.893333pt;}
.yb1{bottom:951.973333pt;}
.y33{bottom:970.853333pt;}
.y5a{bottom:973.573333pt;}
.y5b{bottom:978.213333pt;}
.y10{bottom:1012.000000pt;}
.yc{bottom:1026.400000pt;}
.y57{bottom:1038.240000pt;}
.y56{bottom:1060.640000pt;}
.y32{bottom:1060.800000pt;}
.ha{height:14.400000pt;}
.h10{height:21.600000pt;}
.h14{height:27.096875pt;}
.h15{height:29.890625pt;}
.h11{height:31.058438pt;}
.h13{height:34.673125pt;}
.h4{height:35.975313pt;}
.h16{height:36.178437pt;}
.h5{height:36.883125pt;}
.h8{height:39.520000pt;}
.h9{height:40.053437pt;}
.he{height:43.200000pt;}
.hd{height:43.232000pt;}
.hf{height:46.906250pt;}
.h7{height:49.618437pt;}
.h2{height:54.998750pt;}
.h3{height:59.781250pt;}
.h17{height:65.466250pt;}
.hb{height:69.792000pt;}
.h12{height:69.944063pt;}
.hc{height:70.078125pt;}
.h6{height:123.712000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:84.832000pt;}
.w3{width:122.912000pt;}
.w4{width:321.466667pt;}
.w6{width:390.493333pt;}
.w7{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.394667pt;}
.x9{left:27.520000pt;}
.xb{left:42.440000pt;}
.xc{left:52.480000pt;}
.xd{left:90.720000pt;}
.x12{left:94.760000pt;}
.x5{left:106.394667pt;}
.x5a{left:113.471988pt;}
.x5b{left:122.911988pt;}
.x5c{left:130.271988pt;}
.x3{left:132.351988pt;}
.x8{left:133.920000pt;}
.x11{left:135.560000pt;}
.x5d{left:138.266655pt;}
.x2b{left:140.346655pt;}
.xe{left:141.946655pt;}
.x30{left:143.066643pt;}
.x1{left:151.226655pt;}
.x31{left:152.346655pt;}
.x69{left:159.386655pt;}
.x6b{left:164.506655pt;}
.x45{left:172.506643pt;}
.x46{left:181.786655pt;}
.x20{left:183.386643pt;}
.x68{left:184.986655pt;}
.x64{left:186.746655pt;}
.x21{left:188.026655pt;}
.x4f{left:192.186643pt;}
.x2e{left:197.306655pt;}
.x10{left:201.786667pt;}
.x49{left:204.506643pt;}
.x1b{left:205.786643pt;}
.x65{left:207.226655pt;}
.x1c{left:210.426655pt;}
.x1d{left:212.346655pt;}
.x4a{left:213.786655pt;}
.x3e{left:221.306655pt;}
.x60{left:246.266655pt;}
.x28{left:247.546643pt;}
.x4b{left:251.706643pt;}
.x2f{left:253.666643pt;}
.x7{left:255.266667pt;}
.x29{left:256.866655pt;}
.xf{left:258.946655pt;}
.x4c{left:261.026655pt;}
.x26{left:263.106643pt;}
.x3a{left:264.866643pt;}
.x2a{left:266.626655pt;}
.x27{left:267.746655pt;}
.x6c{left:269.026655pt;}
.x54{left:270.946655pt;}
.x3b{left:274.146655pt;}
.x14{left:277.186655pt;}
.x63{left:297.986655pt;}
.x6a{left:319.746655pt;}
.x66{left:320.706655pt;}
.x43{left:338.466643pt;}
.x13{left:343.266655pt;}
.x1e{left:344.866643pt;}
.x44{left:347.746655pt;}
.x1f{left:349.506655pt;}
.x61{left:351.426655pt;}
.x34{left:357.986655pt;}
.x19{left:377.506643pt;}
.x1a{left:382.146655pt;}
.x3f{left:389.186643pt;}
.x57{left:395.746643pt;}
.x4{left:396.866655pt;}
.x40{left:398.466655pt;}
.x35{left:399.906643pt;}
.x24{left:404.546643pt;}
.x2{left:406.306655pt;}
.x25{left:409.186655pt;}
.x5f{left:422.653322pt;}
.x55{left:429.213310pt;}
.x58{left:434.653310pt;}
.x15{left:437.213310pt;}
.x56{left:438.493322pt;}
.x16{left:441.853322pt;}
.x59{left:443.933322pt;}
.x38{left:450.813310pt;}
.x39{left:460.093322pt;}
.x17{left:462.973310pt;}
.x18{left:467.613322pt;}
.x41{left:498.493310pt;}
.x42{left:507.773322pt;}
.x50{left:522.813310pt;}
.x32{left:525.693310pt;}
.x36{left:528.573310pt;}
.x51{left:532.093322pt;}
.x33{left:534.973322pt;}
.x2c{left:536.733310pt;}
.x37{left:537.853322pt;}
.x2d{left:546.013322pt;}
.x52{left:559.133310pt;}
.x53{left:568.413322pt;}
.xa{left:576.733333pt;}
.x22{left:580.893310pt;}
.x23{left:585.533322pt;}
.x4d{left:622.693310pt;}
.x4e{left:631.973322pt;}
.x47{left:643.173310pt;}
.x3c{left:648.293310pt;}
.x48{left:652.453322pt;}
.x62{left:655.493322pt;}
.x3d{left:657.573322pt;}
.x67{left:677.253322pt;}
.x5e{left:681.253322pt;}
}




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