
    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_dbd1652cc6007b38d9b40a33.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ead0272d79f6d207c1a5b115.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_ad8de08915371d14b410cf7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_9df27a5239db4e0c6394ce46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_699f3019f508dde769c0775f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244185,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244317,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls22{letter-spacing:-0.750000px;}
.ls12{letter-spacing:-0.696000px;}
.lsa{letter-spacing:-0.570000px;}
.ls4{letter-spacing:-0.463800px;}
.ls15{letter-spacing:-0.414000px;}
.ls6{letter-spacing:-0.310800px;}
.ls18{letter-spacing:-0.301200px;}
.ls17{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.172200px;}
.ls3{letter-spacing:-0.164400px;}
.lsb{letter-spacing:-0.107400px;}
.lsc{letter-spacing:-0.091800px;}
.ls28{letter-spacing:-0.075600px;}
.ls1d{letter-spacing:-0.067200px;}
.ls1c{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.ls2b{letter-spacing:0.043920px;}
.ls27{letter-spacing:0.045540px;}
.ls16{letter-spacing:0.060600px;}
.ls2a{letter-spacing:0.093600px;}
.ls0{letter-spacing:0.150000px;}
.ls1b{letter-spacing:0.174000px;}
.lse{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.175200px;}
.lsd{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.186600px;}
.ls10{letter-spacing:0.192240px;}
.ls1e{letter-spacing:0.209520px;}
.ls9{letter-spacing:0.252600px;}
.ls5{letter-spacing:0.256200px;}
.ls19{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.393600px;}
.ls1a{letter-spacing:0.433440px;}
.ls11{letter-spacing:0.447840px;}
.ls1f{letter-spacing:0.627840px;}
.ls14{letter-spacing:0.780000px;}
.ls20{letter-spacing:0.894240px;}
.lsf{letter-spacing:0.912240px;}
.ls24{letter-spacing:0.930000px;}
.ls29{letter-spacing:12.186720px;}
.ls26{letter-spacing:42.570720px;}
.ls23{letter-spacing:295.518240px;}
.ls25{letter-spacing:319.278240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-19.077120px;}
.ws2{word-spacing:-16.272000px;}
.ws4{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.805840px;}
.ws6{word-spacing:-14.659440px;}
.ws3{word-spacing:-14.506440px;}
.ws13{word-spacing:-13.862760px;}
.ws11{word-spacing:-13.811760px;}
.ws9{word-spacing:-13.692360px;}
.ws12{word-spacing:-13.599360px;}
.wsa{word-spacing:-13.505760px;}
.wse{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.438560px;}
.wsc{word-spacing:-13.398360px;}
.wsd{word-spacing:-13.204560px;}
.ws10{word-spacing:-12.755760px;}
.ws7{word-spacing:-9.437760px;}
.ws8{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._22{margin-left:-532.558560px;}
._24{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._16{margin-left:-292.890240px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._1c{margin-left:-248.137200px;}
._d{margin-left:-240.510240px;}
._1b{margin-left:-220.314240px;}
._26{margin-left:-217.808640px;}
._11{margin-left:-202.146240px;}
._1d{margin-left:-199.946880px;}
._25{margin-left:-188.893440px;}
._2b{margin-left:-172.182240px;}
._10{margin-left:-171.054720px;}
._f{margin-left:-165.490560px;}
._28{margin-left:-154.885440px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._2a{margin-left:-142.858800px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-121.106160px;}
._12{margin-left:-117.857760px;}
._15{margin-left:-115.522560px;}
._29{margin-left:-110.054880px;}
._21{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._27{margin-left:-87.567360px;}
._20{margin-left:-86.399760px;}
._1f{margin-left:-83.520000px;}
._17{margin-left:-81.979200px;}
._19{margin-left:-66.703680px;}
._14{margin-left:-61.344000px;}
._18{margin-left:-49.735920px;}
._1a{margin-left:-48.703680px;}
._1e{margin-left:-30.741360px;}
._3d{margin-left:-7.470000px;}
._36{margin-left:-5.564160px;}
._2c{margin-left:-3.883440px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._23{width:1.082160px;}
._30{width:2.125440px;}
._31{width:3.971520px;}
._33{width:4.981680px;}
._2e{width:6.008400px;}
._2d{width:7.423200px;}
._32{width:9.435600px;}
._35{width:10.897920px;}
._34{width:12.489840px;}
._37{width:14.700960px;}
._3b{width:15.955920px;}
._3f{width:17.186400px;}
._3c{width:18.270720px;}
._3e{width:19.298160px;}
._38{width:20.453040px;}
._39{width:21.752640px;}
._3a{width:24.736320px;}
._2f{width:25.935840px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:6.660000px;}
.ybd{bottom:27.720000px;}
.yc0{bottom:27.765000px;}
.y9e{bottom:28.440000px;}
.y6{bottom:59.040000px;}
.y111{bottom:87.120000px;}
.y31{bottom:90.900000px;}
.y7d{bottom:93.060000px;}
.y65{bottom:96.120000px;}
.ya5{bottom:103.680000px;}
.y113{bottom:103.860000px;}
.yf7{bottom:104.400000px;}
.y110{bottom:108.180000px;}
.y30{bottom:111.960000px;}
.y7c{bottom:114.120000px;}
.y64{bottom:117.180000px;}
.yc7{bottom:121.680000px;}
.ya4{bottom:124.740000px;}
.yf6{bottom:125.460000px;}
.y10f{bottom:129.240000px;}
.y2f{bottom:133.020000px;}
.y7b{bottom:135.180000px;}
.y63{bottom:138.240000px;}
.ya3{bottom:139.860000px;}
.yf5{bottom:146.520000px;}
.y2e{bottom:154.110000px;}
.y7a{bottom:156.270000px;}
.y62{bottom:159.330000px;}
.ya2{bottom:161.670000px;}
.yc6{bottom:163.830000px;}
.yf4{bottom:167.610000px;}
.y2d{bottom:175.170000px;}
.y79{bottom:177.330000px;}
.y10e{bottom:180.390000px;}
.ya1{bottom:183.450000px;}
.yf3{bottom:188.670000px;}
.y61{bottom:189.390000px;}
.y2c{bottom:196.230000px;}
.y78{bottom:198.390000px;}
.y10d{bottom:201.450000px;}
.y9d{bottom:205.410000px;}
.yc5{bottom:205.950000px;}
.yf2{bottom:209.730000px;}
.y60{bottom:210.450000px;}
.y2b{bottom:217.290000px;}
.y77{bottom:219.450000px;}
.y10c{bottom:222.510000px;}
.y9f{bottom:227.190000px;}
.yf1{bottom:230.790000px;}
.y5f{bottom:231.510000px;}
.y2a{bottom:238.350000px;}
.y76{bottom:240.510000px;}
.y10b{bottom:243.570000px;}
.yc4{bottom:248.070000px;}
.yf0{bottom:251.850000px;}
.y5e{bottom:252.570000px;}
.y9c{bottom:255.630000px;}
.y29{bottom:259.410000px;}
.y75{bottom:261.570000px;}
.y10a{bottom:264.630000px;}
.yc3{bottom:270.030000px;}
.yef{bottom:272.910000px;}
.y5d{bottom:273.630000px;}
.y9b{bottom:276.690000px;}
.y28{bottom:280.470000px;}
.y74{bottom:282.630000px;}
.y109{bottom:285.690000px;}
.yc2{bottom:291.810000px;}
.yee{bottom:293.970000px;}
.y5c{bottom:294.690000px;}
.y9a{bottom:297.750000px;}
.y27{bottom:301.530000px;}
.y73{bottom:303.690000px;}
.y108{bottom:306.750000px;}
.yed{bottom:315.030000px;}
.y5b{bottom:315.750000px;}
.y99{bottom:318.810000px;}
.y26{bottom:322.590000px;}
.y72{bottom:324.750000px;}
.y107{bottom:327.810000px;}
.yc1{bottom:333.930000px;}
.yec{bottom:336.090000px;}
.y5a{bottom:336.810000px;}
.y98{bottom:339.870000px;}
.y25{bottom:343.650000px;}
.y71{bottom:345.810000px;}
.y106{bottom:348.870000px;}
.yeb{bottom:357.150000px;}
.y59{bottom:357.870000px;}
.y97{bottom:360.930000px;}
.y24{bottom:364.710000px;}
.y70{bottom:366.870000px;}
.y105{bottom:369.930000px;}
.ybf{bottom:376.050000px;}
.y58{bottom:378.930000px;}
.y96{bottom:381.990000px;}
.y23{bottom:385.770000px;}
.yea{bottom:387.210000px;}
.y6f{bottom:387.930000px;}
.y104{bottom:390.990000px;}
.y57{bottom:399.990000px;}
.y95{bottom:403.095000px;}
.y22{bottom:406.875000px;}
.ye9{bottom:408.315000px;}
.y6e{bottom:409.035000px;}
.y103{bottom:412.095000px;}
.ybe{bottom:418.215000px;}
.y56{bottom:421.095000px;}
.y94{bottom:424.155000px;}
.y21{bottom:427.935000px;}
.ye8{bottom:429.375000px;}
.y6d{bottom:430.095000px;}
.y102{bottom:433.155000px;}
.y55{bottom:442.155000px;}
.y93{bottom:445.215000px;}
.y20{bottom:448.995000px;}
.ye7{bottom:450.435000px;}
.y6c{bottom:451.155000px;}
.y101{bottom:454.215000px;}
.ybc{bottom:460.335000px;}
.y54{bottom:463.215000px;}
.y92{bottom:466.275000px;}
.y1f{bottom:470.055000px;}
.ye6{bottom:471.495000px;}
.y6b{bottom:472.215000px;}
.y100{bottom:475.275000px;}
.y53{bottom:484.275000px;}
.y1e{bottom:491.115000px;}
.ye5{bottom:492.555000px;}
.y6a{bottom:493.275000px;}
.y91{bottom:496.335000px;}
.ybb{bottom:502.455000px;}
.y52{bottom:505.335000px;}
.y1d{bottom:512.175000px;}
.ye4{bottom:513.615000px;}
.y69{bottom:514.335000px;}
.y90{bottom:517.395000px;}
.yba{bottom:524.235000px;}
.y51{bottom:526.395000px;}
.ye3{bottom:534.675000px;}
.y68{bottom:535.395000px;}
.y1c{bottom:535.575000px;}
.y8f{bottom:538.455000px;}
.yb9{bottom:546.015000px;}
.y50{bottom:547.455000px;}
.ye2{bottom:555.555000px;}
.y67{bottom:556.455000px;}
.y8e{bottom:559.515000px;}
.y1b{bottom:565.455000px;}
.y4f{bottom:568.515000px;}
.yb8{bottom:574.455000px;}
.ye1{bottom:576.615000px;}
.y66{bottom:577.515000px;}
.y8d{bottom:580.575000px;}
.y1a{bottom:586.515000px;}
.y112{bottom:589.575000px;}
.yb7{bottom:595.515000px;}
.ye0{bottom:597.675000px;}
.y4e{bottom:598.575000px;}
.y8c{bottom:601.635000px;}
.y19{bottom:607.575000px;}
.yff{bottom:610.635000px;}
.yb6{bottom:616.575000px;}
.ydf{bottom:618.735000px;}
.y4d{bottom:619.635000px;}
.y8b{bottom:622.695000px;}
.y18{bottom:628.635000px;}
.yfe{bottom:631.695000px;}
.yb5{bottom:637.635000px;}
.yde{bottom:639.795000px;}
.y4c{bottom:640.695000px;}
.y8a{bottom:643.755000px;}
.y17{bottom:649.725000px;}
.yfd{bottom:652.785000px;}
.yb4{bottom:658.725000px;}
.ydd{bottom:660.885000px;}
.y4b{bottom:661.785000px;}
.y16{bottom:670.785000px;}
.y89{bottom:673.845000px;}
.yb3{bottom:679.785000px;}
.ydc{bottom:681.945000px;}
.y4a{bottom:682.845000px;}
.y15{bottom:691.845000px;}
.y88{bottom:694.905000px;}
.yb2{bottom:700.845000px;}
.ydb{bottom:703.005000px;}
.y49{bottom:703.905000px;}
.y14{bottom:712.905000px;}
.y87{bottom:715.965000px;}
.yb1{bottom:721.905000px;}
.yda{bottom:724.065000px;}
.y48{bottom:724.965000px;}
.y13{bottom:733.965000px;}
.y86{bottom:737.025000px;}
.yb0{bottom:742.965000px;}
.yd9{bottom:745.125000px;}
.y47{bottom:746.025000px;}
.y12{bottom:755.025000px;}
.y85{bottom:757.905000px;}
.yaf{bottom:764.025000px;}
.yd8{bottom:766.185000px;}
.y46{bottom:766.905000px;}
.y11{bottom:776.085000px;}
.y84{bottom:778.965000px;}
.yae{bottom:785.085000px;}
.yd7{bottom:787.245000px;}
.y45{bottom:787.965000px;}
.y10{bottom:797.145000px;}
.y83{bottom:800.025000px;}
.yad{bottom:806.145000px;}
.yd6{bottom:808.305000px;}
.y44{bottom:809.025000px;}
.yf{bottom:818.205000px;}
.y82{bottom:821.085000px;}
.yac{bottom:827.205000px;}
.yd5{bottom:829.365000px;}
.y43{bottom:830.085000px;}
.ye{bottom:839.265000px;}
.y81{bottom:842.145000px;}
.yab{bottom:848.265000px;}
.yd4{bottom:850.425000px;}
.y42{bottom:851.145000px;}
.yd{bottom:860.505000px;}
.y80{bottom:863.205000px;}
.yaa{bottom:869.325000px;}
.yd3{bottom:871.485000px;}
.y41{bottom:872.205000px;}
.yc{bottom:883.725000px;}
.y7f{bottom:884.265000px;}
.ya9{bottom:890.385000px;}
.yd2{bottom:892.545000px;}
.y40{bottom:893.265000px;}
.y7e{bottom:905.370000px;}
.ya8{bottom:905.550000px;}
.yb{bottom:910.050000px;}
.yd1{bottom:913.650000px;}
.y3f{bottom:914.370000px;}
.yfc{bottom:926.430000px;}
.ya{bottom:926.610000px;}
.ya7{bottom:927.330000px;}
.yd0{bottom:934.710000px;}
.y3e{bottom:935.430000px;}
.yfb{bottom:947.490000px;}
.y9{bottom:948.930000px;}
.ya6{bottom:949.110000px;}
.ycf{bottom:955.770000px;}
.y3d{bottom:956.490000px;}
.yfa{bottom:968.550000px;}
.y8{bottom:974.130000px;}
.yce{bottom:976.830000px;}
.y3c{bottom:977.550000px;}
.yf9{bottom:989.610000px;}
.ycd{bottom:997.890000px;}
.y3b{bottom:998.610000px;}
.y7{bottom:1007.970000px;}
.yf8{bottom:1010.670000px;}
.ycc{bottom:1018.950000px;}
.y3a{bottom:1019.670000px;}
.ycb{bottom:1040.010000px;}
.y39{bottom:1040.730000px;}
.y5{bottom:1047.930000px;}
.yca{bottom:1061.070000px;}
.y38{bottom:1061.790000px;}
.yc9{bottom:1076.190000px;}
.y4{bottom:1080.150000px;}
.y37{bottom:1082.850000px;}
.y36{bottom:1103.910000px;}
.y3{bottom:1112.370000px;}
.yc8{bottom:1118.310000px;}
.y35{bottom:1124.970000px;}
.y2{bottom:1145.130000px;}
.y34{bottom:1146.030000px;}
.y33{bottom:1173.960000px;}
.y1{bottom:1180.620000px;}
.y32{bottom:1194.120000px;}
.hd{height:21.060000px;}
.he{height:21.096000px;}
.h8{height:38.671172px;}
.hf{height:42.120000px;}
.h10{height:42.156000px;}
.hc{height:42.840000px;}
.ha{height:43.506914px;}
.h9{height:59.439023px;}
.hb{height:59.551172px;}
.h6{height:61.189805px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:67.536000px;}
.w17{width:70.560000px;}
.w14{width:84.960000px;}
.wf{width:85.140000px;}
.wd{width:87.660000px;}
.we{width:93.096000px;}
.w10{width:95.616000px;}
.w11{width:95.760000px;}
.w15{width:95.796000px;}
.w9{width:105.120000px;}
.w3{width:105.300000px;}
.w7{width:122.616000px;}
.w8{width:126.936000px;}
.w6{width:131.076000px;}
.w12{width:138.096000px;}
.wa{width:169.050000px;}
.wc{width:211.530000px;}
.wb{width:211.890000px;}
.w5{width:232.770000px;}
.w4{width:254.415000px;}
.w13{width:595.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.734000px;}
.x6{left:53.999987px;}
.x8{left:61.739987px;}
.xa{left:65.699987px;}
.xd{left:68.759987px;}
.x9{left:70.919987px;}
.xe{left:75.419987px;}
.xc{left:79.379987px;}
.x1e{left:80.999987px;}
.x1f{left:96.515987px;}
.xb{left:100.115987px;}
.x7{left:108.035987px;}
.x1d{left:128.555987px;}
.xf{left:149.616000px;}
.x5{left:172.649987px;}
.x1b{left:233.850000px;}
.x17{left:236.550000px;}
.x11{left:255.630000px;}
.x3{left:286.274987px;}
.x15{left:319.395000px;}
.x18{left:329.655000px;}
.x2{left:350.894987px;}
.x13{left:387.435000px;}
.x19{left:414.795000px;}
.x4{left:418.214987px;}
.x1{left:478.544987px;}
.x12{left:510.765000px;}
.x16{left:532.005000px;}
.x1a{left:606.165000px;}
.x14{left:638.430000px;}
.x1c{left:673.710000px;}
.x20{left:839.339987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls22{letter-spacing:-0.666667pt;}
.ls12{letter-spacing:-0.618667pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls15{letter-spacing:-0.368000pt;}
.ls6{letter-spacing:-0.276267pt;}
.ls18{letter-spacing:-0.267733pt;}
.ls17{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.153067pt;}
.ls3{letter-spacing:-0.146133pt;}
.lsb{letter-spacing:-0.095467pt;}
.lsc{letter-spacing:-0.081600pt;}
.ls28{letter-spacing:-0.067200pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls1c{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.ls2b{letter-spacing:0.039040pt;}
.ls27{letter-spacing:0.040480pt;}
.ls16{letter-spacing:0.053867pt;}
.ls2a{letter-spacing:0.083200pt;}
.ls0{letter-spacing:0.133333pt;}
.ls1b{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.155733pt;}
.lsd{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.165867pt;}
.ls10{letter-spacing:0.170880pt;}
.ls1e{letter-spacing:0.186240pt;}
.ls9{letter-spacing:0.224533pt;}
.ls5{letter-spacing:0.227733pt;}
.ls19{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.349867pt;}
.ls1a{letter-spacing:0.385280pt;}
.ls11{letter-spacing:0.398080pt;}
.ls1f{letter-spacing:0.558080pt;}
.ls14{letter-spacing:0.693333pt;}
.ls20{letter-spacing:0.794880pt;}
.lsf{letter-spacing:0.810880pt;}
.ls24{letter-spacing:0.826667pt;}
.ls29{letter-spacing:10.832640pt;}
.ls26{letter-spacing:37.840640pt;}
.ls23{letter-spacing:262.682880pt;}
.ls25{letter-spacing:283.802880pt;}
.ws0{word-spacing:-16.957440pt;}
.ws2{word-spacing:-14.464000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.160747pt;}
.ws6{word-spacing:-13.030613pt;}
.ws3{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.322453pt;}
.ws11{word-spacing:-12.277120pt;}
.ws9{word-spacing:-12.170987pt;}
.ws12{word-spacing:-12.088320pt;}
.wsa{word-spacing:-12.005120pt;}
.wse{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.945387pt;}
.wsc{word-spacing:-11.909653pt;}
.wsd{word-spacing:-11.737387pt;}
.ws10{word-spacing:-11.338453pt;}
.ws7{word-spacing:-8.389120pt;}
.ws8{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._22{margin-left:-473.385387pt;}
._24{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._16{margin-left:-260.346880pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._1c{margin-left:-220.566400pt;}
._d{margin-left:-213.786880pt;}
._1b{margin-left:-195.834880pt;}
._26{margin-left:-193.607680pt;}
._11{margin-left:-179.685547pt;}
._1d{margin-left:-177.730560pt;}
._25{margin-left:-167.905280pt;}
._2b{margin-left:-153.050880pt;}
._10{margin-left:-152.048640pt;}
._f{margin-left:-147.102720pt;}
._28{margin-left:-137.675947pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._2a{margin-left:-126.985600pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-107.649920pt;}
._12{margin-left:-104.762453pt;}
._15{margin-left:-102.686720pt;}
._29{margin-left:-97.826560pt;}
._21{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._27{margin-left:-77.837653pt;}
._20{margin-left:-76.799787pt;}
._1f{margin-left:-74.240000pt;}
._17{margin-left:-72.870400pt;}
._19{margin-left:-59.292160pt;}
._14{margin-left:-54.528000pt;}
._18{margin-left:-44.209707pt;}
._1a{margin-left:-43.292160pt;}
._1e{margin-left:-27.325653pt;}
._3d{margin-left:-6.640000pt;}
._36{margin-left:-4.945920pt;}
._2c{margin-left:-3.451947pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._23{width:0.961920pt;}
._30{width:1.889280pt;}
._31{width:3.530240pt;}
._33{width:4.428160pt;}
._2e{width:5.340800pt;}
._2d{width:6.598400pt;}
._32{width:8.387200pt;}
._35{width:9.687040pt;}
._34{width:11.102080pt;}
._37{width:13.067520pt;}
._3b{width:14.183040pt;}
._3f{width:15.276800pt;}
._3c{width:16.240640pt;}
._3e{width:17.153920pt;}
._38{width:18.180480pt;}
._39{width:19.335680pt;}
._3a{width:21.987840pt;}
._2f{width:23.054080pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:5.920000pt;}
.ybd{bottom:24.640000pt;}
.yc0{bottom:24.680000pt;}
.y9e{bottom:25.280000pt;}
.y6{bottom:52.480000pt;}
.y111{bottom:77.440000pt;}
.y31{bottom:80.800000pt;}
.y7d{bottom:82.720000pt;}
.y65{bottom:85.440000pt;}
.ya5{bottom:92.160000pt;}
.y113{bottom:92.320000pt;}
.yf7{bottom:92.800000pt;}
.y110{bottom:96.160000pt;}
.y30{bottom:99.520000pt;}
.y7c{bottom:101.440000pt;}
.y64{bottom:104.160000pt;}
.yc7{bottom:108.160000pt;}
.ya4{bottom:110.880000pt;}
.yf6{bottom:111.520000pt;}
.y10f{bottom:114.880000pt;}
.y2f{bottom:118.240000pt;}
.y7b{bottom:120.160000pt;}
.y63{bottom:122.880000pt;}
.ya3{bottom:124.320000pt;}
.yf5{bottom:130.240000pt;}
.y2e{bottom:136.986667pt;}
.y7a{bottom:138.906667pt;}
.y62{bottom:141.626667pt;}
.ya2{bottom:143.706667pt;}
.yc6{bottom:145.626667pt;}
.yf4{bottom:148.986667pt;}
.y2d{bottom:155.706667pt;}
.y79{bottom:157.626667pt;}
.y10e{bottom:160.346667pt;}
.ya1{bottom:163.066667pt;}
.yf3{bottom:167.706667pt;}
.y61{bottom:168.346667pt;}
.y2c{bottom:174.426667pt;}
.y78{bottom:176.346667pt;}
.y10d{bottom:179.066667pt;}
.y9d{bottom:182.586667pt;}
.yc5{bottom:183.066667pt;}
.yf2{bottom:186.426667pt;}
.y60{bottom:187.066667pt;}
.y2b{bottom:193.146667pt;}
.y77{bottom:195.066667pt;}
.y10c{bottom:197.786667pt;}
.y9f{bottom:201.946667pt;}
.yf1{bottom:205.146667pt;}
.y5f{bottom:205.786667pt;}
.y2a{bottom:211.866667pt;}
.y76{bottom:213.786667pt;}
.y10b{bottom:216.506667pt;}
.yc4{bottom:220.506667pt;}
.yf0{bottom:223.866667pt;}
.y5e{bottom:224.506667pt;}
.y9c{bottom:227.226667pt;}
.y29{bottom:230.586667pt;}
.y75{bottom:232.506667pt;}
.y10a{bottom:235.226667pt;}
.yc3{bottom:240.026667pt;}
.yef{bottom:242.586667pt;}
.y5d{bottom:243.226667pt;}
.y9b{bottom:245.946667pt;}
.y28{bottom:249.306667pt;}
.y74{bottom:251.226667pt;}
.y109{bottom:253.946667pt;}
.yc2{bottom:259.386667pt;}
.yee{bottom:261.306667pt;}
.y5c{bottom:261.946667pt;}
.y9a{bottom:264.666667pt;}
.y27{bottom:268.026667pt;}
.y73{bottom:269.946667pt;}
.y108{bottom:272.666667pt;}
.yed{bottom:280.026667pt;}
.y5b{bottom:280.666667pt;}
.y99{bottom:283.386667pt;}
.y26{bottom:286.746667pt;}
.y72{bottom:288.666667pt;}
.y107{bottom:291.386667pt;}
.yc1{bottom:296.826667pt;}
.yec{bottom:298.746667pt;}
.y5a{bottom:299.386667pt;}
.y98{bottom:302.106667pt;}
.y25{bottom:305.466667pt;}
.y71{bottom:307.386667pt;}
.y106{bottom:310.106667pt;}
.yeb{bottom:317.466667pt;}
.y59{bottom:318.106667pt;}
.y97{bottom:320.826667pt;}
.y24{bottom:324.186667pt;}
.y70{bottom:326.106667pt;}
.y105{bottom:328.826667pt;}
.ybf{bottom:334.266667pt;}
.y58{bottom:336.826667pt;}
.y96{bottom:339.546667pt;}
.y23{bottom:342.906667pt;}
.yea{bottom:344.186667pt;}
.y6f{bottom:344.826667pt;}
.y104{bottom:347.546667pt;}
.y57{bottom:355.546667pt;}
.y95{bottom:358.306667pt;}
.y22{bottom:361.666667pt;}
.ye9{bottom:362.946667pt;}
.y6e{bottom:363.586667pt;}
.y103{bottom:366.306667pt;}
.ybe{bottom:371.746667pt;}
.y56{bottom:374.306667pt;}
.y94{bottom:377.026667pt;}
.y21{bottom:380.386667pt;}
.ye8{bottom:381.666667pt;}
.y6d{bottom:382.306667pt;}
.y102{bottom:385.026667pt;}
.y55{bottom:393.026667pt;}
.y93{bottom:395.746667pt;}
.y20{bottom:399.106667pt;}
.ye7{bottom:400.386667pt;}
.y6c{bottom:401.026667pt;}
.y101{bottom:403.746667pt;}
.ybc{bottom:409.186667pt;}
.y54{bottom:411.746667pt;}
.y92{bottom:414.466667pt;}
.y1f{bottom:417.826667pt;}
.ye6{bottom:419.106667pt;}
.y6b{bottom:419.746667pt;}
.y100{bottom:422.466667pt;}
.y53{bottom:430.466667pt;}
.y1e{bottom:436.546667pt;}
.ye5{bottom:437.826667pt;}
.y6a{bottom:438.466667pt;}
.y91{bottom:441.186667pt;}
.ybb{bottom:446.626667pt;}
.y52{bottom:449.186667pt;}
.y1d{bottom:455.266667pt;}
.ye4{bottom:456.546667pt;}
.y69{bottom:457.186667pt;}
.y90{bottom:459.906667pt;}
.yba{bottom:465.986667pt;}
.y51{bottom:467.906667pt;}
.ye3{bottom:475.266667pt;}
.y68{bottom:475.906667pt;}
.y1c{bottom:476.066667pt;}
.y8f{bottom:478.626667pt;}
.yb9{bottom:485.346667pt;}
.y50{bottom:486.626667pt;}
.ye2{bottom:493.826667pt;}
.y67{bottom:494.626667pt;}
.y8e{bottom:497.346667pt;}
.y1b{bottom:502.626667pt;}
.y4f{bottom:505.346667pt;}
.yb8{bottom:510.626667pt;}
.ye1{bottom:512.546667pt;}
.y66{bottom:513.346667pt;}
.y8d{bottom:516.066667pt;}
.y1a{bottom:521.346667pt;}
.y112{bottom:524.066667pt;}
.yb7{bottom:529.346667pt;}
.ye0{bottom:531.266667pt;}
.y4e{bottom:532.066667pt;}
.y8c{bottom:534.786667pt;}
.y19{bottom:540.066667pt;}
.yff{bottom:542.786667pt;}
.yb6{bottom:548.066667pt;}
.ydf{bottom:549.986667pt;}
.y4d{bottom:550.786667pt;}
.y8b{bottom:553.506667pt;}
.y18{bottom:558.786667pt;}
.yfe{bottom:561.506667pt;}
.yb5{bottom:566.786667pt;}
.yde{bottom:568.706667pt;}
.y4c{bottom:569.506667pt;}
.y8a{bottom:572.226667pt;}
.y17{bottom:577.533333pt;}
.yfd{bottom:580.253333pt;}
.yb4{bottom:585.533333pt;}
.ydd{bottom:587.453333pt;}
.y4b{bottom:588.253333pt;}
.y16{bottom:596.253333pt;}
.y89{bottom:598.973333pt;}
.yb3{bottom:604.253333pt;}
.ydc{bottom:606.173333pt;}
.y4a{bottom:606.973333pt;}
.y15{bottom:614.973333pt;}
.y88{bottom:617.693333pt;}
.yb2{bottom:622.973333pt;}
.ydb{bottom:624.893333pt;}
.y49{bottom:625.693333pt;}
.y14{bottom:633.693333pt;}
.y87{bottom:636.413333pt;}
.yb1{bottom:641.693333pt;}
.yda{bottom:643.613333pt;}
.y48{bottom:644.413333pt;}
.y13{bottom:652.413333pt;}
.y86{bottom:655.133333pt;}
.yb0{bottom:660.413333pt;}
.yd9{bottom:662.333333pt;}
.y47{bottom:663.133333pt;}
.y12{bottom:671.133333pt;}
.y85{bottom:673.693333pt;}
.yaf{bottom:679.133333pt;}
.yd8{bottom:681.053333pt;}
.y46{bottom:681.693333pt;}
.y11{bottom:689.853333pt;}
.y84{bottom:692.413333pt;}
.yae{bottom:697.853333pt;}
.yd7{bottom:699.773333pt;}
.y45{bottom:700.413333pt;}
.y10{bottom:708.573333pt;}
.y83{bottom:711.133333pt;}
.yad{bottom:716.573333pt;}
.yd6{bottom:718.493333pt;}
.y44{bottom:719.133333pt;}
.yf{bottom:727.293333pt;}
.y82{bottom:729.853333pt;}
.yac{bottom:735.293333pt;}
.yd5{bottom:737.213333pt;}
.y43{bottom:737.853333pt;}
.ye{bottom:746.013333pt;}
.y81{bottom:748.573333pt;}
.yab{bottom:754.013333pt;}
.yd4{bottom:755.933333pt;}
.y42{bottom:756.573333pt;}
.yd{bottom:764.893333pt;}
.y80{bottom:767.293333pt;}
.yaa{bottom:772.733333pt;}
.yd3{bottom:774.653333pt;}
.y41{bottom:775.293333pt;}
.yc{bottom:785.533333pt;}
.y7f{bottom:786.013333pt;}
.ya9{bottom:791.453333pt;}
.yd2{bottom:793.373333pt;}
.y40{bottom:794.013333pt;}
.y7e{bottom:804.773333pt;}
.ya8{bottom:804.933333pt;}
.yb{bottom:808.933333pt;}
.yd1{bottom:812.133333pt;}
.y3f{bottom:812.773333pt;}
.yfc{bottom:823.493333pt;}
.ya{bottom:823.653333pt;}
.ya7{bottom:824.293333pt;}
.yd0{bottom:830.853333pt;}
.y3e{bottom:831.493333pt;}
.yfb{bottom:842.213333pt;}
.y9{bottom:843.493333pt;}
.ya6{bottom:843.653333pt;}
.ycf{bottom:849.573333pt;}
.y3d{bottom:850.213333pt;}
.yfa{bottom:860.933333pt;}
.y8{bottom:865.893333pt;}
.yce{bottom:868.293333pt;}
.y3c{bottom:868.933333pt;}
.yf9{bottom:879.653333pt;}
.ycd{bottom:887.013333pt;}
.y3b{bottom:887.653333pt;}
.y7{bottom:895.973333pt;}
.yf8{bottom:898.373333pt;}
.ycc{bottom:905.733333pt;}
.y3a{bottom:906.373333pt;}
.ycb{bottom:924.453333pt;}
.y39{bottom:925.093333pt;}
.y5{bottom:931.493333pt;}
.yca{bottom:943.173333pt;}
.y38{bottom:943.813333pt;}
.yc9{bottom:956.613333pt;}
.y4{bottom:960.133333pt;}
.y37{bottom:962.533333pt;}
.y36{bottom:981.253333pt;}
.y3{bottom:988.773333pt;}
.yc8{bottom:994.053333pt;}
.y35{bottom:999.973333pt;}
.y2{bottom:1017.893333pt;}
.y34{bottom:1018.693333pt;}
.y33{bottom:1043.520000pt;}
.y1{bottom:1049.440000pt;}
.y32{bottom:1061.440000pt;}
.hd{height:18.720000pt;}
.he{height:18.752000pt;}
.h8{height:34.374375pt;}
.hf{height:37.440000pt;}
.h10{height:37.472000pt;}
.hc{height:38.080000pt;}
.ha{height:38.672812pt;}
.h9{height:52.834688pt;}
.hb{height:52.934375pt;}
.h6{height:54.390938pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:60.032000pt;}
.w17{width:62.720000pt;}
.w14{width:75.520000pt;}
.wf{width:75.680000pt;}
.wd{width:77.920000pt;}
.we{width:82.752000pt;}
.w10{width:84.992000pt;}
.w11{width:85.120000pt;}
.w15{width:85.152000pt;}
.w9{width:93.440000pt;}
.w3{width:93.600000pt;}
.w7{width:108.992000pt;}
.w8{width:112.832000pt;}
.w6{width:116.512000pt;}
.w12{width:122.752000pt;}
.wa{width:150.266667pt;}
.wc{width:188.026667pt;}
.wb{width:188.346667pt;}
.w5{width:206.906667pt;}
.w4{width:226.146667pt;}
.w13{width:529.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.874667pt;}
.x6{left:47.999988pt;}
.x8{left:54.879988pt;}
.xa{left:58.399988pt;}
.xd{left:61.119988pt;}
.x9{left:63.039988pt;}
.xe{left:67.039988pt;}
.xc{left:70.559988pt;}
.x1e{left:71.999988pt;}
.x1f{left:85.791988pt;}
.xb{left:88.991988pt;}
.x7{left:96.031988pt;}
.x1d{left:114.271988pt;}
.xf{left:132.992000pt;}
.x5{left:153.466655pt;}
.x1b{left:207.866667pt;}
.x17{left:210.266667pt;}
.x11{left:227.226667pt;}
.x3{left:254.466655pt;}
.x15{left:283.906667pt;}
.x18{left:293.026667pt;}
.x2{left:311.906655pt;}
.x13{left:344.386667pt;}
.x19{left:368.706667pt;}
.x4{left:371.746655pt;}
.x1{left:425.373322pt;}
.x12{left:454.013333pt;}
.x16{left:472.893333pt;}
.x1a{left:538.813333pt;}
.x14{left:567.493333pt;}
.x1c{left:598.853333pt;}
.x20{left:746.079988pt;}
}




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