
    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_8033ea47fde26b829955a528.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_6fb3dffefb44f76904b2feb3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_ba11171c467c027d958c7b1a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_644dcd6d04346bf8a24f867d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_d3b189c90b79fa663ee3a64c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.972656;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_4deb28979b9ddb31cce1c33b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_478ba91fd35815a8b773092f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.989258;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_5c832c0b460217e8f26bd1f3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_596542fd32e89543956bdafe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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_1fc3a33da43bd8dbd43902b3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172363;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_41979301557ec26541f39492.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.989258;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v11{vertical-align:-76.320000px;}
.v3{vertical-align:-69.840000px;}
.vc{vertical-align:-40.320000px;}
.ve{vertical-align:-26.640000px;}
.vb{vertical-align:-25.200000px;}
.v9{vertical-align:-16.560000px;}
.v1{vertical-align:-13.680000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.v2{vertical-align:13.680000px;}
.v6{vertical-align:18.000000px;}
.v12{vertical-align:23.760000px;}
.v7{vertical-align:36.000000px;}
.vd{vertical-align:42.480000px;}
.vf{vertical-align:43.920000px;}
.v10{vertical-align:51.120000px;}
.v4{vertical-align:52.560000px;}
.v8{vertical-align:84.960000px;}
.ls6{letter-spacing:-2.988000px;}
.ls46{letter-spacing:-1.026000px;}
.ls3b{letter-spacing:-0.828000px;}
.ls45{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.308400px;}
.ls1e{letter-spacing:-0.295800px;}
.ls1d{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.091200px;}
.ls1f{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.170640px;}
.ls2f{letter-spacing:0.239040px;}
.ls49{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.262080px;}
.ls3e{letter-spacing:0.262200px;}
.ls3a{letter-spacing:0.290400px;}
.ls1c{letter-spacing:0.305280px;}
.ls47{letter-spacing:0.305400px;}
.ls24{letter-spacing:0.419040px;}
.ls7{letter-spacing:0.442080px;}
.ls4a{letter-spacing:0.612000px;}
.ls4b{letter-spacing:0.666000px;}
.ls14{letter-spacing:0.869040px;}
.ls36{letter-spacing:1.589040px;}
.ls30{letter-spacing:1.730160px;}
.ls2a{letter-spacing:2.041920px;}
.ls2c{letter-spacing:2.309040px;}
.ls1a{letter-spacing:2.450160px;}
.lsc{letter-spacing:3.029040px;}
.ls18{letter-spacing:3.209040px;}
.ls3f{letter-spacing:3.905280px;}
.ls2b{letter-spacing:3.947760px;}
.ls28{letter-spacing:3.972240px;}
.ls1b{letter-spacing:4.226400px;}
.ls29{letter-spacing:4.667760px;}
.lsd{letter-spacing:6.065280px;}
.ls3{letter-spacing:7.866720px;}
.lsa{letter-spacing:13.985280px;}
.ls35{letter-spacing:14.598720px;}
.ls40{letter-spacing:15.425280px;}
.ls12{letter-spacing:16.325280px;}
.lse{letter-spacing:16.709040px;}
.lsf{letter-spacing:16.889040px;}
.lsb{letter-spacing:17.429040px;}
.ls19{letter-spacing:17.570160px;}
.ls2d{letter-spacing:18.198720px;}
.ls10{letter-spacing:18.305280px;}
.ls27{letter-spacing:20.309040px;}
.ls22{letter-spacing:21.252240px;}
.ls2e{letter-spacing:21.304080px;}
.ls26{letter-spacing:21.749040px;}
.ls21{letter-spacing:21.890160px;}
.ls23{letter-spacing:21.972240px;}
.ls17{letter-spacing:22.024080px;}
.ls25{letter-spacing:22.946400px;}
.ls38{letter-spacing:24.065280px;}
.ls37{letter-spacing:24.785280px;}
.ls9{letter-spacing:25.505280px;}
.ls42{letter-spacing:26.225280px;}
.ls13{letter-spacing:34.865280px;}
.ls44{letter-spacing:35.946720px;}
.ls34{letter-spacing:36.204480px;}
.ls8{letter-spacing:39.185280px;}
.ls16{letter-spacing:41.220480px;}
.ls32{letter-spacing:41.244480px;}
.ls2{letter-spacing:46.385280px;}
.ls43{letter-spacing:47.825280px;}
.ls41{letter-spacing:64.385280px;}
.ls3c{letter-spacing:73.025280px;}
.ls15{letter-spacing:73.145280px;}
.ls33{letter-spacing:116.225280px;}
.ls39{letter-spacing:185.465280px;}
.ls11{letter-spacing:203.321280px;}
.ls3d{letter-spacing:649.181280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-20.016000px;}
.ws16{word-spacing:-18.676920px;}
.ws6{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws17{word-spacing:-18.054720px;}
.ws1b{word-spacing:-17.225280px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.983280px;}
.ws13{word-spacing:-14.595840px;}
.ws8{word-spacing:-14.572800px;}
.ws4{word-spacing:-13.625280px;}
.ws1a{word-spacing:-13.410720px;}
.ws18{word-spacing:-11.609280px;}
.ws10{word-spacing:-10.612800px;}
.wse{word-spacing:-0.112320px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.607680px;}
.ws19{word-spacing:5.244480px;}
.ws7{word-spacing:5.333760px;}
.ws9{word-spacing:6.053760px;}
.ws11{word-spacing:10.110240px;}
.ws14{word-spacing:10.290240px;}
.wsb{word-spacing:11.844840px;}
.ws15{word-spacing:12.588840px;}
.wsf{word-spacing:58.656240px;}
.ws12{word-spacing:69.456240px;}
.wsc{word-spacing:198.618000px;}
._24{margin-left:-27.734400px;}
._2a{margin-left:-13.268880px;}
._2b{margin-left:-6.617040px;}
._19{margin-left:-4.992000px;}
._18{margin-left:-3.817920px;}
._17{margin-left:-2.808720px;}
._b{margin-left:-1.589760px;}
._1{width:1.077840px;}
._9{width:2.220000px;}
._5{width:3.307200px;}
._10{width:4.315200px;}
._1a{width:5.546160px;}
._15{width:6.756480px;}
._0{width:8.356080px;}
._1d{width:9.412080px;}
._4{width:10.458000px;}
._2{width:11.892240px;}
._3{width:13.324320px;}
._c{width:15.102720px;}
._25{width:16.692480px;}
._7{width:18.523440px;}
._8{width:19.782720px;}
._11{width:20.865600px;}
._a{width:22.720320px;}
._d{width:24.045120px;}
._21{width:26.032320px;}
._2d{width:27.471600px;}
._1e{width:28.615680px;}
._26{width:30.006720px;}
._27{width:31.530240px;}
._23{width:33.981120px;}
._22{width:35.504640px;}
._1f{width:38.617920px;}
._20{width:39.799200px;}
._f{width:42.393600px;}
._e{width:43.453440px;}
._16{width:44.579520px;}
._14{width:46.301760px;}
._2f{width:48.067680px;}
._30{width:50.276160px;}
._6{width:57.011040px;}
._2e{width:64.451520px;}
._12{width:67.299840px;}
._13{width:68.823360px;}
._28{width:72.984960px;}
._1b{width:80.945280px;}
._1c{width:82.071360px;}
._2c{width:116.620320px;}
._31{width:154.596960px;}
._29{width:193.985280px;}
._32{width:846.156000px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs4{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.420000px;}
.yb8{bottom:4.140000px;}
.y8c{bottom:4.680000px;}
.y8e{bottom:4.860000px;}
.yae{bottom:5.220000px;}
.yad{bottom:5.400000px;}
.y8a{bottom:5.580000px;}
.y89{bottom:6.660000px;}
.y93{bottom:7.200000px;}
.y54{bottom:11.700000px;}
.y52{bottom:13.320000px;}
.y2{bottom:22.500000px;}
.y72{bottom:22.710000px;}
.y1{bottom:41.040000px;}
.y70{bottom:45.105000px;}
.y65{bottom:62.670000px;}
.y66{bottom:83.190000px;}
.y71{bottom:89.925000px;}
.y67{bottom:103.710000px;}
.y2a{bottom:109.476000px;}
.y4f{bottom:120.096000px;}
.ye0{bottom:122.256000px;}
.y68{bottom:124.230000px;}
.y9e{bottom:125.676000px;}
.y63{bottom:126.216000px;}
.y29{bottom:126.576000px;}
.ybc{bottom:136.656000px;}
.y4e{bottom:139.176000px;}
.ydf{bottom:139.536000px;}
.y28{bottom:143.856000px;}
.y69{bottom:144.750000px;}
.y9d{bottom:144.756000px;}
.y62{bottom:145.116000px;}
.y27{bottom:148.356000px;}
.yde{bottom:156.630000px;}
.ybb{bottom:157.170000px;}
.y4d{bottom:158.070000px;}
.y26{bottom:161.850000px;}
.y9c{bottom:163.830000px;}
.y6a{bottom:165.270000px;}
.y61{bottom:166.350000px;}
.y60{bottom:175.530000px;}
.yba{bottom:176.250000px;}
.y4c{bottom:177.150000px;}
.y9b{bottom:183.090000px;}
.ydd{bottom:183.270000px;}
.y6b{bottom:185.790000px;}
.yb9{bottom:195.330000px;}
.y4b{bottom:196.050000px;}
.y25{bottom:200.910000px;}
.ydc{bottom:202.170000px;}
.y9a{bottom:202.350000px;}
.y5f{bottom:206.130000px;}
.y6c{bottom:206.310000px;}
.yb7{bottom:211.530000px;}
.y4a{bottom:214.950000px;}
.y24{bottom:219.990000px;}
.ydb{bottom:221.070000px;}
.y99{bottom:221.790000px;}
.y5e{bottom:226.470000px;}
.y6d{bottom:226.830000px;}
.yb6{bottom:232.095000px;}
.y49{bottom:234.075000px;}
.y23{bottom:238.935000px;}
.yda{bottom:240.195000px;}
.y98{bottom:241.095000px;}
.y5d{bottom:247.035000px;}
.y6e{bottom:247.350000px;}
.y97{bottom:250.275000px;}
.y48{bottom:252.975000px;}
.yb5{bottom:253.695000px;}
.y22{bottom:258.015000px;}
.yd9{bottom:259.095000px;}
.y6f{bottom:267.840000px;}
.y5c{bottom:267.915000px;}
.y47{bottom:272.235000px;}
.yb4{bottom:275.295000px;}
.y21{bottom:276.915000px;}
.yd8{bottom:278.175000px;}
.y96{bottom:280.875000px;}
.y5b{bottom:288.795000px;}
.y95{bottom:290.235000px;}
.y46{bottom:291.495000px;}
.y20{bottom:295.815000px;}
.y73{bottom:296.070000px;}
.yd7{bottom:297.075000px;}
.yb3{bottom:298.155000px;}
.y5a{bottom:307.875000px;}
.y45{bottom:310.935000px;}
.y1f{bottom:314.895000px;}
.yd6{bottom:316.155000px;}
.yb2{bottom:319.935000px;}
.y94{bottom:320.835000px;}
.y59{bottom:326.955000px;}
.y44{bottom:330.195000px;}
.y1e{bottom:333.795000px;}
.yd5{bottom:335.055000px;}
.y92{bottom:337.035000px;}
.yb1{bottom:341.535000px;}
.y58{bottom:345.855000px;}
.y43{bottom:349.635000px;}
.y1d{bottom:352.875000px;}
.yd4{bottom:353.955000px;}
.y91{bottom:360.615000px;}
.yb0{bottom:363.315000px;}
.y57{bottom:364.935000px;}
.y42{bottom:368.715000px;}
.y1c{bottom:371.775000px;}
.yd3{bottom:373.035000px;}
.y56{bottom:380.415000px;}
.y64{bottom:381.600000px;}
.y90{bottom:381.855000px;}
.yaf{bottom:384.915000px;}
.y41{bottom:387.615000px;}
.y1b{bottom:390.675000px;}
.yd2{bottom:391.935000px;}
.y8f{bottom:403.095000px;}
.y40{bottom:406.695000px;}
.y1a{bottom:409.755000px;}
.yd1{bottom:411.015000px;}
.y8d{bottom:424.365000px;}
.y3f{bottom:425.625000px;}
.yac{bottom:428.325000px;}
.y19{bottom:428.505000px;}
.yd0{bottom:429.945000px;}
.y3e{bottom:444.705000px;}
.y8b{bottom:445.605000px;}
.y18{bottom:445.785000px;}
.ycf{bottom:448.845000px;}
.yab{bottom:453.525000px;}
.y3d{bottom:463.605000px;}
.y88{bottom:466.845000px;}
.yce{bottom:467.925000px;}
.y17{bottom:471.885000px;}
.y3c{bottom:482.505000px;}
.ycd{bottom:486.825000px;}
.y16{bottom:489.165000px;}
.yaa{bottom:491.505000px;}
.y87{bottom:493.305000px;}
.y3b{bottom:501.585000px;}
.ycc{bottom:505.905000px;}
.y15{bottom:506.445000px;}
.ya9{bottom:511.665000px;}
.y86{bottom:512.385000px;}
.y3a{bottom:520.485000px;}
.y14{bottom:523.725000px;}
.ycb{bottom:524.805000px;}
.yf0{bottom:526.245000px;}
.y85{bottom:531.285000px;}
.ya8{bottom:532.185000px;}
.y39{bottom:539.565000px;}
.y13{bottom:541.005000px;}
.yca{bottom:543.705000px;}
.yef{bottom:546.405000px;}
.y84{bottom:550.365000px;}
.ya7{bottom:552.705000px;}
.y12{bottom:558.285000px;}
.y38{bottom:558.465000px;}
.yc9{bottom:562.785000px;}
.yee{bottom:565.125000px;}
.y83{bottom:565.665000px;}
.ya6{bottom:573.225000px;}
.y11{bottom:575.385000px;}
.y37{bottom:577.365000px;}
.yc8{bottom:581.685000px;}
.yed{bottom:582.405000px;}
.y81{bottom:586.905000px;}
.y10{bottom:592.665000px;}
.ya5{bottom:593.565000px;}
.y36{bottom:596.445000px;}
.yec{bottom:599.685000px;}
.yc7{bottom:600.945000px;}
.yf{bottom:609.990000px;}
.y82{bottom:611.610000px;}
.ya4{bottom:614.130000px;}
.y35{bottom:615.390000px;}
.yeb{bottom:616.830000px;}
.y80{bottom:619.710000px;}
.yc6{bottom:620.070000px;}
.ye{bottom:627.810000px;}
.ya3{bottom:633.210000px;}
.yea{bottom:634.110000px;}
.y34{bottom:634.470000px;}
.yc5{bottom:640.410000px;}
.y7c{bottom:640.950000px;}
.y7e{bottom:647.070000px;}
.y7d{bottom:647.250000px;}
.yd{bottom:647.970000px;}
.ye9{bottom:651.390000px;}
.ya2{bottom:652.470000px;}
.y33{bottom:653.370000px;}
.yc4{bottom:660.930000px;}
.y7f{bottom:665.610000px;}
.yc{bottom:665.790000px;}
.ye8{bottom:668.670000px;}
.ya1{bottom:671.730000px;}
.y32{bottom:672.270000px;}
.y7b{bottom:677.490000px;}
.yc3{bottom:681.270000px;}
.ye7{bottom:685.950000px;}
.yb{bottom:686.490000px;}
.ya0{bottom:690.990000px;}
.y31{bottom:691.350000px;}
.y7a{bottom:692.790000px;}
.yc2{bottom:701.790000px;}
.ye6{bottom:703.230000px;}
.ya{bottom:706.650000px;}
.y9f{bottom:710.070000px;}
.y30{bottom:710.250000px;}
.y78{bottom:714.030000px;}
.ye5{bottom:720.330000px;}
.yc1{bottom:722.310000px;}
.y9{bottom:724.470000px;}
.y2f{bottom:729.330000px;}
.y55{bottom:729.690000px;}
.ye4{bottom:737.610000px;}
.y79{bottom:738.690000px;}
.yc0{bottom:743.190000px;}
.y8{bottom:744.630000px;}
.y53{bottom:745.890000px;}
.y2e{bottom:748.230000px;}
.y77{bottom:750.930000px;}
.ye3{bottom:754.890000px;}
.y6{bottom:762.270000px;}
.ybf{bottom:763.710000px;}
.y76{bottom:766.410000px;}
.y2d{bottom:767.310000px;}
.y7{bottom:768.210000px;}
.ye2{bottom:772.170000px;}
.y51{bottom:773.790000px;}
.y5{bottom:782.970000px;}
.ybe{bottom:784.590000px;}
.y2c{bottom:786.210000px;}
.y74{bottom:787.650000px;}
.ye1{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.ybd{bottom:804.960000px;}
.y2b{bottom:805.140000px;}
.y50{bottom:806.760000px;}
.y75{bottom:812.340000px;}
.h28{height:19.620000px;}
.h1d{height:20.340000px;}
.h1e{height:20.520000px;}
.h1f{height:20.556000px;}
.h24{height:20.880000px;}
.h25{height:20.916000px;}
.h26{height:21.060000px;}
.h27{height:22.140000px;}
.h1b{height:22.320000px;}
.h20{height:22.860000px;}
.h10{height:27.180000px;}
.hf{height:28.836000px;}
.hc{height:34.874297px;}
.h5{height:43.905937px;}
.h9{height:44.090508px;}
.h8{height:45.549492px;}
.h3{height:46.251562px;}
.hb{height:50.273438px;}
.h2{height:53.603086px;}
.h14{height:53.709961px;}
.h15{height:53.853187px;}
.h6{height:54.390938px;}
.ha{height:59.415469px;}
.h16{height:59.439023px;}
.hd{height:60.288750px;}
.h29{height:61.217578px;}
.h18{height:61.760391px;}
.h1a{height:63.920391px;}
.h7{height:64.582031px;}
.h4{height:65.531250px;}
.h17{height:83.787539px;}
.he{height:84.805312px;}
.h1c{height:88.400391px;}
.h22{height:96.855469px;}
.h12{height:97.728750px;}
.h23{height:128.725312px;}
.h21{height:136.645312px;}
.h11{height:137.365313px;}
.h19{height:169.765313px;}
.h13{height:327.420000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w6{width:73.980000px;}
.w5{width:74.016000px;}
.w4{width:75.780000px;}
.wa{width:78.660000px;}
.wb{width:78.876000px;}
.w7{width:82.440000px;}
.w8{width:82.476000px;}
.wd{width:87.840000px;}
.wc{width:87.876000px;}
.we{width:88.056000px;}
.w11{width:127.656000px;}
.w10{width:133.236000px;}
.wf{width:161.670000px;}
.w9{width:444.780000px;}
.w1{width:629.250000px;}
.w3{width:629.279981px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x3a{left:7.740000px;}
.x37{left:11.340000px;}
.x39{left:12.420000px;}
.x38{left:15.840000px;}
.x36{left:19.080000px;}
.x33{left:30.105000px;}
.x11{left:32.400000px;}
.x31{left:35.280000px;}
.x16{left:36.540000px;}
.x1d{left:41.724000px;}
.x42{left:45.360000px;}
.x1c{left:48.564000px;}
.x40{left:50.040000px;}
.x41{left:52.740000px;}
.x3f{left:57.240000px;}
.x34{left:61.734000px;}
.x1e{left:64.515000px;}
.x35{left:66.240000px;}
.x43{left:71.634000px;}
.x3e{left:76.314000px;}
.x2{left:80.855991px;}
.xe{left:86.255991px;}
.x1b{left:91.800000px;}
.x20{left:102.600000px;}
.x45{left:106.415991px;}
.x19{left:107.855991px;}
.x4{left:121.895991px;}
.xa{left:123.695991px;}
.x1f{left:130.500000px;}
.xf{left:134.855991px;}
.x1a{left:140.255991px;}
.x3{left:146.375991px;}
.x12{left:158.070000px;}
.x2b{left:167.249991px;}
.x2f{left:182.010000px;}
.x25{left:197.849991px;}
.x21{left:205.094991px;}
.xb{left:228.674991px;}
.x13{left:232.815000px;}
.x3b{left:245.594991px;}
.x26{left:252.614991px;}
.x44{left:254.414991px;}
.xc{left:256.214991px;}
.x9{left:260.534991px;}
.x5{left:261.974991px;}
.x3c{left:265.215000px;}
.x27{left:290.774991px;}
.xd{left:296.894991px;}
.x1{left:302.294991px;}
.x10{left:303.914991px;}
.x14{left:307.515000px;}
.x8{left:314.714991px;}
.x2e{left:341.744991px;}
.x30{left:350.205000px;}
.x6{left:360.824981px;}
.x7{left:367.484991px;}
.x15{left:382.245000px;}
.x23{left:386.564991px;}
.x29{left:390.344991px;}
.x22{left:392.864991px;}
.x28{left:396.644991px;}
.x3d{left:399.165000px;}
.x2d{left:407.804991px;}
.x2c{left:414.104991px;}
.x24{left:424.364991px;}
.x2a{left:431.564991px;}
.x32{left:438.765000px;}
.x17{left:465.405000px;}
.x18{left:537.629991px;}
@media print{
.v11{vertical-align:-67.840000pt;}
.v3{vertical-align:-62.080000pt;}
.vc{vertical-align:-35.840000pt;}
.ve{vertical-align:-23.680000pt;}
.vb{vertical-align:-22.400000pt;}
.v9{vertical-align:-14.720000pt;}
.v1{vertical-align:-12.160000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.v2{vertical-align:12.160000pt;}
.v6{vertical-align:16.000000pt;}
.v12{vertical-align:21.120000pt;}
.v7{vertical-align:32.000000pt;}
.vd{vertical-align:37.760000pt;}
.vf{vertical-align:39.040000pt;}
.v10{vertical-align:45.440000pt;}
.v4{vertical-align:46.720000pt;}
.v8{vertical-align:75.520000pt;}
.ls6{letter-spacing:-2.656000pt;}
.ls46{letter-spacing:-0.912000pt;}
.ls3b{letter-spacing:-0.736000pt;}
.ls45{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.274133pt;}
.ls1e{letter-spacing:-0.262933pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.081067pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.151680pt;}
.ls2f{letter-spacing:0.212480pt;}
.ls49{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.232960pt;}
.ls3e{letter-spacing:0.233067pt;}
.ls3a{letter-spacing:0.258133pt;}
.ls1c{letter-spacing:0.271360pt;}
.ls47{letter-spacing:0.271467pt;}
.ls24{letter-spacing:0.372480pt;}
.ls7{letter-spacing:0.392960pt;}
.ls4a{letter-spacing:0.544000pt;}
.ls4b{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.772480pt;}
.ls36{letter-spacing:1.412480pt;}
.ls30{letter-spacing:1.537920pt;}
.ls2a{letter-spacing:1.815040pt;}
.ls2c{letter-spacing:2.052480pt;}
.ls1a{letter-spacing:2.177920pt;}
.lsc{letter-spacing:2.692480pt;}
.ls18{letter-spacing:2.852480pt;}
.ls3f{letter-spacing:3.471360pt;}
.ls2b{letter-spacing:3.509120pt;}
.ls28{letter-spacing:3.530880pt;}
.ls1b{letter-spacing:3.756800pt;}
.ls29{letter-spacing:4.149120pt;}
.lsd{letter-spacing:5.391360pt;}
.ls3{letter-spacing:6.992640pt;}
.lsa{letter-spacing:12.431360pt;}
.ls35{letter-spacing:12.976640pt;}
.ls40{letter-spacing:13.711360pt;}
.ls12{letter-spacing:14.511360pt;}
.lse{letter-spacing:14.852480pt;}
.lsf{letter-spacing:15.012480pt;}
.lsb{letter-spacing:15.492480pt;}
.ls19{letter-spacing:15.617920pt;}
.ls2d{letter-spacing:16.176640pt;}
.ls10{letter-spacing:16.271360pt;}
.ls27{letter-spacing:18.052480pt;}
.ls22{letter-spacing:18.890880pt;}
.ls2e{letter-spacing:18.936960pt;}
.ls26{letter-spacing:19.332480pt;}
.ls21{letter-spacing:19.457920pt;}
.ls23{letter-spacing:19.530880pt;}
.ls17{letter-spacing:19.576960pt;}
.ls25{letter-spacing:20.396800pt;}
.ls38{letter-spacing:21.391360pt;}
.ls37{letter-spacing:22.031360pt;}
.ls9{letter-spacing:22.671360pt;}
.ls42{letter-spacing:23.311360pt;}
.ls13{letter-spacing:30.991360pt;}
.ls44{letter-spacing:31.952640pt;}
.ls34{letter-spacing:32.181760pt;}
.ls8{letter-spacing:34.831360pt;}
.ls16{letter-spacing:36.640427pt;}
.ls32{letter-spacing:36.661760pt;}
.ls2{letter-spacing:41.231360pt;}
.ls43{letter-spacing:42.511360pt;}
.ls41{letter-spacing:57.231360pt;}
.ls3c{letter-spacing:64.911360pt;}
.ls15{letter-spacing:65.018027pt;}
.ls33{letter-spacing:103.311360pt;}
.ls39{letter-spacing:164.858027pt;}
.ls11{letter-spacing:180.730027pt;}
.ls3d{letter-spacing:577.050027pt;}
.ws1{word-spacing:-17.792000pt;}
.ws16{word-spacing:-16.601707pt;}
.ws6{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws17{word-spacing:-16.048640pt;}
.ws1b{word-spacing:-15.311360pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.207360pt;}
.ws13{word-spacing:-12.974080pt;}
.ws8{word-spacing:-12.953600pt;}
.ws4{word-spacing:-12.111360pt;}
.ws1a{word-spacing:-11.920640pt;}
.ws18{word-spacing:-10.319360pt;}
.ws10{word-spacing:-9.433600pt;}
.wse{word-spacing:-0.099840pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.540160pt;}
.ws19{word-spacing:4.661760pt;}
.ws7{word-spacing:4.741120pt;}
.ws9{word-spacing:5.381120pt;}
.ws11{word-spacing:8.986880pt;}
.ws14{word-spacing:9.146880pt;}
.wsb{word-spacing:10.528747pt;}
.ws15{word-spacing:11.190080pt;}
.wsf{word-spacing:52.138880pt;}
.ws12{word-spacing:61.738880pt;}
.wsc{word-spacing:176.549333pt;}
._24{margin-left:-24.652800pt;}
._2a{margin-left:-11.794560pt;}
._2b{margin-left:-5.881813pt;}
._19{margin-left:-4.437333pt;}
._18{margin-left:-3.393707pt;}
._17{margin-left:-2.496640pt;}
._b{margin-left:-1.413120pt;}
._1{width:0.958080pt;}
._9{width:1.973333pt;}
._5{width:2.939733pt;}
._10{width:3.835733pt;}
._1a{width:4.929920pt;}
._15{width:6.005760pt;}
._0{width:7.427627pt;}
._1d{width:8.366293pt;}
._4{width:9.296000pt;}
._2{width:10.570880pt;}
._3{width:11.843840pt;}
._c{width:13.424640pt;}
._25{width:14.837760pt;}
._7{width:16.465280pt;}
._8{width:17.584640pt;}
._11{width:18.547200pt;}
._a{width:20.195840pt;}
._d{width:21.373440pt;}
._21{width:23.139840pt;}
._2d{width:24.419200pt;}
._1e{width:25.436160pt;}
._26{width:26.672640pt;}
._27{width:28.026880pt;}
._23{width:30.205440pt;}
._22{width:31.559680pt;}
._1f{width:34.327040pt;}
._20{width:35.377067pt;}
._f{width:37.683200pt;}
._e{width:38.625280pt;}
._16{width:39.626240pt;}
._14{width:41.157120pt;}
._2f{width:42.726827pt;}
._30{width:44.689920pt;}
._6{width:50.676480pt;}
._2e{width:57.290240pt;}
._12{width:59.822080pt;}
._13{width:61.176320pt;}
._28{width:64.875520pt;}
._1b{width:71.951360pt;}
._1c{width:72.952320pt;}
._2c{width:103.662507pt;}
._31{width:137.419520pt;}
._29{width:172.431360pt;}
._32{width:752.138667pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs4{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.040000pt;}
.yb8{bottom:3.680000pt;}
.y8c{bottom:4.160000pt;}
.y8e{bottom:4.320000pt;}
.yae{bottom:4.640000pt;}
.yad{bottom:4.800000pt;}
.y8a{bottom:4.960000pt;}
.y89{bottom:5.920000pt;}
.y93{bottom:6.400000pt;}
.y54{bottom:10.400000pt;}
.y52{bottom:11.840000pt;}
.y2{bottom:20.000000pt;}
.y72{bottom:20.186667pt;}
.y1{bottom:36.480000pt;}
.y70{bottom:40.093333pt;}
.y65{bottom:55.706667pt;}
.y66{bottom:73.946667pt;}
.y71{bottom:79.933333pt;}
.y67{bottom:92.186667pt;}
.y2a{bottom:97.312000pt;}
.y4f{bottom:106.752000pt;}
.ye0{bottom:108.672000pt;}
.y68{bottom:110.426667pt;}
.y9e{bottom:111.712000pt;}
.y63{bottom:112.192000pt;}
.y29{bottom:112.512000pt;}
.ybc{bottom:121.472000pt;}
.y4e{bottom:123.712000pt;}
.ydf{bottom:124.032000pt;}
.y28{bottom:127.872000pt;}
.y69{bottom:128.666667pt;}
.y9d{bottom:128.672000pt;}
.y62{bottom:128.992000pt;}
.y27{bottom:131.872000pt;}
.yde{bottom:139.226667pt;}
.ybb{bottom:139.706667pt;}
.y4d{bottom:140.506667pt;}
.y26{bottom:143.866667pt;}
.y9c{bottom:145.626667pt;}
.y6a{bottom:146.906667pt;}
.y61{bottom:147.866667pt;}
.y60{bottom:156.026667pt;}
.yba{bottom:156.666667pt;}
.y4c{bottom:157.466667pt;}
.y9b{bottom:162.746667pt;}
.ydd{bottom:162.906667pt;}
.y6b{bottom:165.146667pt;}
.yb9{bottom:173.626667pt;}
.y4b{bottom:174.266667pt;}
.y25{bottom:178.586667pt;}
.ydc{bottom:179.706667pt;}
.y9a{bottom:179.866667pt;}
.y5f{bottom:183.226667pt;}
.y6c{bottom:183.386667pt;}
.yb7{bottom:188.026667pt;}
.y4a{bottom:191.066667pt;}
.y24{bottom:195.546667pt;}
.ydb{bottom:196.506667pt;}
.y99{bottom:197.146667pt;}
.y5e{bottom:201.306667pt;}
.y6d{bottom:201.626667pt;}
.yb6{bottom:206.306667pt;}
.y49{bottom:208.066667pt;}
.y23{bottom:212.386667pt;}
.yda{bottom:213.506667pt;}
.y98{bottom:214.306667pt;}
.y5d{bottom:219.586667pt;}
.y6e{bottom:219.866667pt;}
.y97{bottom:222.466667pt;}
.y48{bottom:224.866667pt;}
.yb5{bottom:225.506667pt;}
.y22{bottom:229.346667pt;}
.yd9{bottom:230.306667pt;}
.y6f{bottom:238.080000pt;}
.y5c{bottom:238.146667pt;}
.y47{bottom:241.986667pt;}
.yb4{bottom:244.706667pt;}
.y21{bottom:246.146667pt;}
.yd8{bottom:247.266667pt;}
.y96{bottom:249.666667pt;}
.y5b{bottom:256.706667pt;}
.y95{bottom:257.986667pt;}
.y46{bottom:259.106667pt;}
.y20{bottom:262.946667pt;}
.y73{bottom:263.173333pt;}
.yd7{bottom:264.066667pt;}
.yb3{bottom:265.026667pt;}
.y5a{bottom:273.666667pt;}
.y45{bottom:276.386667pt;}
.y1f{bottom:279.906667pt;}
.yd6{bottom:281.026667pt;}
.yb2{bottom:284.386667pt;}
.y94{bottom:285.186667pt;}
.y59{bottom:290.626667pt;}
.y44{bottom:293.506667pt;}
.y1e{bottom:296.706667pt;}
.yd5{bottom:297.826667pt;}
.y92{bottom:299.586667pt;}
.yb1{bottom:303.586667pt;}
.y58{bottom:307.426667pt;}
.y43{bottom:310.786667pt;}
.y1d{bottom:313.666667pt;}
.yd4{bottom:314.626667pt;}
.y91{bottom:320.546667pt;}
.yb0{bottom:322.946667pt;}
.y57{bottom:324.386667pt;}
.y42{bottom:327.746667pt;}
.y1c{bottom:330.466667pt;}
.yd3{bottom:331.586667pt;}
.y56{bottom:338.146667pt;}
.y64{bottom:339.200000pt;}
.y90{bottom:339.426667pt;}
.yaf{bottom:342.146667pt;}
.y41{bottom:344.546667pt;}
.y1b{bottom:347.266667pt;}
.yd2{bottom:348.386667pt;}
.y8f{bottom:358.306667pt;}
.y40{bottom:361.506667pt;}
.y1a{bottom:364.226667pt;}
.yd1{bottom:365.346667pt;}
.y8d{bottom:377.213333pt;}
.y3f{bottom:378.333333pt;}
.yac{bottom:380.733333pt;}
.y19{bottom:380.893333pt;}
.yd0{bottom:382.173333pt;}
.y3e{bottom:395.293333pt;}
.y8b{bottom:396.093333pt;}
.y18{bottom:396.253333pt;}
.ycf{bottom:398.973333pt;}
.yab{bottom:403.133333pt;}
.y3d{bottom:412.093333pt;}
.y88{bottom:414.973333pt;}
.yce{bottom:415.933333pt;}
.y17{bottom:419.453333pt;}
.y3c{bottom:428.893333pt;}
.ycd{bottom:432.733333pt;}
.y16{bottom:434.813333pt;}
.yaa{bottom:436.893333pt;}
.y87{bottom:438.493333pt;}
.y3b{bottom:445.853333pt;}
.ycc{bottom:449.693333pt;}
.y15{bottom:450.173333pt;}
.ya9{bottom:454.813333pt;}
.y86{bottom:455.453333pt;}
.y3a{bottom:462.653333pt;}
.y14{bottom:465.533333pt;}
.ycb{bottom:466.493333pt;}
.yf0{bottom:467.773333pt;}
.y85{bottom:472.253333pt;}
.ya8{bottom:473.053333pt;}
.y39{bottom:479.613333pt;}
.y13{bottom:480.893333pt;}
.yca{bottom:483.293333pt;}
.yef{bottom:485.693333pt;}
.y84{bottom:489.213333pt;}
.ya7{bottom:491.293333pt;}
.y12{bottom:496.253333pt;}
.y38{bottom:496.413333pt;}
.yc9{bottom:500.253333pt;}
.yee{bottom:502.333333pt;}
.y83{bottom:502.813333pt;}
.ya6{bottom:509.533333pt;}
.y11{bottom:511.453333pt;}
.y37{bottom:513.213333pt;}
.yc8{bottom:517.053333pt;}
.yed{bottom:517.693333pt;}
.y81{bottom:521.693333pt;}
.y10{bottom:526.813333pt;}
.ya5{bottom:527.613333pt;}
.y36{bottom:530.173333pt;}
.yec{bottom:533.053333pt;}
.yc7{bottom:534.173333pt;}
.yf{bottom:542.213333pt;}
.y82{bottom:543.653333pt;}
.ya4{bottom:545.893333pt;}
.y35{bottom:547.013333pt;}
.yeb{bottom:548.293333pt;}
.y80{bottom:550.853333pt;}
.yc6{bottom:551.173333pt;}
.ye{bottom:558.053333pt;}
.ya3{bottom:562.853333pt;}
.yea{bottom:563.653333pt;}
.y34{bottom:563.973333pt;}
.yc5{bottom:569.253333pt;}
.y7c{bottom:569.733333pt;}
.y7e{bottom:575.173333pt;}
.y7d{bottom:575.333333pt;}
.yd{bottom:575.973333pt;}
.ye9{bottom:579.013333pt;}
.ya2{bottom:579.973333pt;}
.y33{bottom:580.773333pt;}
.yc4{bottom:587.493333pt;}
.y7f{bottom:591.653333pt;}
.yc{bottom:591.813333pt;}
.ye8{bottom:594.373333pt;}
.ya1{bottom:597.093333pt;}
.y32{bottom:597.573333pt;}
.y7b{bottom:602.213333pt;}
.yc3{bottom:605.573333pt;}
.ye7{bottom:609.733333pt;}
.yb{bottom:610.213333pt;}
.ya0{bottom:614.213333pt;}
.y31{bottom:614.533333pt;}
.y7a{bottom:615.813333pt;}
.yc2{bottom:623.813333pt;}
.ye6{bottom:625.093333pt;}
.ya{bottom:628.133333pt;}
.y9f{bottom:631.173333pt;}
.y30{bottom:631.333333pt;}
.y78{bottom:634.693333pt;}
.ye5{bottom:640.293333pt;}
.yc1{bottom:642.053333pt;}
.y9{bottom:643.973333pt;}
.y2f{bottom:648.293333pt;}
.y55{bottom:648.613333pt;}
.ye4{bottom:655.653333pt;}
.y79{bottom:656.613333pt;}
.yc0{bottom:660.613333pt;}
.y8{bottom:661.893333pt;}
.y53{bottom:663.013333pt;}
.y2e{bottom:665.093333pt;}
.y77{bottom:667.493333pt;}
.ye3{bottom:671.013333pt;}
.y6{bottom:677.573333pt;}
.ybf{bottom:678.853333pt;}
.y76{bottom:681.253333pt;}
.y2d{bottom:682.053333pt;}
.y7{bottom:682.853333pt;}
.ye2{bottom:686.373333pt;}
.y51{bottom:687.813333pt;}
.y5{bottom:695.973333pt;}
.ybe{bottom:697.413333pt;}
.y2c{bottom:698.853333pt;}
.y74{bottom:700.133333pt;}
.ye1{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.ybd{bottom:715.520000pt;}
.y2b{bottom:715.680000pt;}
.y50{bottom:717.120000pt;}
.y75{bottom:722.080000pt;}
.h28{height:17.440000pt;}
.h1d{height:18.080000pt;}
.h1e{height:18.240000pt;}
.h1f{height:18.272000pt;}
.h24{height:18.560000pt;}
.h25{height:18.592000pt;}
.h26{height:18.720000pt;}
.h27{height:19.680000pt;}
.h1b{height:19.840000pt;}
.h20{height:20.320000pt;}
.h10{height:24.160000pt;}
.hf{height:25.632000pt;}
.hc{height:30.999375pt;}
.h5{height:39.027500pt;}
.h9{height:39.191562pt;}
.h8{height:40.488438pt;}
.h3{height:41.112500pt;}
.hb{height:44.687500pt;}
.h2{height:47.647188pt;}
.h14{height:47.742188pt;}
.h15{height:47.869500pt;}
.h6{height:48.347500pt;}
.ha{height:52.813750pt;}
.h16{height:52.834688pt;}
.hd{height:53.590000pt;}
.h29{height:54.415625pt;}
.h18{height:54.898125pt;}
.h1a{height:56.818125pt;}
.h7{height:57.406250pt;}
.h4{height:58.250000pt;}
.h17{height:74.477812pt;}
.he{height:75.382500pt;}
.h1c{height:78.578125pt;}
.h22{height:86.093750pt;}
.h12{height:86.870000pt;}
.h23{height:114.422500pt;}
.h21{height:121.462500pt;}
.h11{height:122.102500pt;}
.h19{height:150.902500pt;}
.h13{height:291.040000pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w6{width:65.760000pt;}
.w5{width:65.792000pt;}
.w4{width:67.360000pt;}
.wa{width:69.920000pt;}
.wb{width:70.112000pt;}
.w7{width:73.280000pt;}
.w8{width:73.312000pt;}
.wd{width:78.080000pt;}
.wc{width:78.112000pt;}
.we{width:78.272000pt;}
.w11{width:113.472000pt;}
.w10{width:118.432000pt;}
.wf{width:143.706667pt;}
.w9{width:395.360000pt;}
.w1{width:559.333333pt;}
.w3{width:559.359983pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x3a{left:6.880000pt;}
.x37{left:10.080000pt;}
.x39{left:11.040000pt;}
.x38{left:14.080000pt;}
.x36{left:16.960000pt;}
.x33{left:26.760000pt;}
.x11{left:28.800000pt;}
.x31{left:31.360000pt;}
.x16{left:32.480000pt;}
.x1d{left:37.088000pt;}
.x42{left:40.320000pt;}
.x1c{left:43.168000pt;}
.x40{left:44.480000pt;}
.x41{left:46.880000pt;}
.x3f{left:50.880000pt;}
.x34{left:54.874667pt;}
.x1e{left:57.346667pt;}
.x35{left:58.880000pt;}
.x43{left:63.674667pt;}
.x3e{left:67.834667pt;}
.x2{left:71.871992pt;}
.xe{left:76.671992pt;}
.x1b{left:81.600000pt;}
.x20{left:91.200000pt;}
.x45{left:94.591992pt;}
.x19{left:95.871992pt;}
.x4{left:108.351992pt;}
.xa{left:109.951992pt;}
.x1f{left:116.000000pt;}
.xf{left:119.871992pt;}
.x1a{left:124.671992pt;}
.x3{left:130.111992pt;}
.x12{left:140.506667pt;}
.x2b{left:148.666658pt;}
.x2f{left:161.786667pt;}
.x25{left:175.866658pt;}
.x21{left:182.306658pt;}
.xb{left:203.266658pt;}
.x13{left:206.946667pt;}
.x3b{left:218.306658pt;}
.x26{left:224.546658pt;}
.x44{left:226.146658pt;}
.xc{left:227.746658pt;}
.x9{left:231.586658pt;}
.x5{left:232.866658pt;}
.x3c{left:235.746667pt;}
.x27{left:258.466658pt;}
.xd{left:263.906658pt;}
.x1{left:268.706658pt;}
.x10{left:270.146658pt;}
.x14{left:273.346667pt;}
.x8{left:279.746658pt;}
.x2e{left:303.773325pt;}
.x30{left:311.293333pt;}
.x6{left:320.733317pt;}
.x7{left:326.653325pt;}
.x15{left:339.773333pt;}
.x23{left:343.613325pt;}
.x29{left:346.973325pt;}
.x22{left:349.213325pt;}
.x28{left:352.573325pt;}
.x3d{left:354.813333pt;}
.x2d{left:362.493325pt;}
.x2c{left:368.093325pt;}
.x24{left:377.213325pt;}
.x2a{left:383.613325pt;}
.x32{left:390.013333pt;}
.x17{left:413.693333pt;}
.x18{left:477.893325pt;}
}




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