
    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_0dc0a15fb84e41138959669f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8a40a9667aaf056c77eb2b56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5658a36649637431082e3a4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_5387998db24b5863c0071dbb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1595001437ffa9b4a7069a11.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4d7d7a1023081afa551b5233.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_1c73deff892ce3b44de1dd0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_ca82cc9b9961d3532e405f60.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_9b4ef78decd5060199fcc8b0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_815f5a8a908f59c37ea73252.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_79bfe45b15fb0d3b69096ccc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_ebbecf4746d318152d646d2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.768555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_754635dc893fcd6668681730.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002930;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:ffe;src:url('chunks/assets/font_9cfd1402efdbe4066f2c2ec6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.002930;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;}
.m3{transform:matrix(0.000000,-0.249925,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249925,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249925,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);}
.m2{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,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);}
.v1{vertical-align:-85.440000px;}
.v4{vertical-align:-84.000000px;}
.v2{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.000000px;}
.v6{vertical-align:43.500000px;}
.v5{vertical-align:49.500000px;}
.ls24{letter-spacing:-1.500000px;}
.ls22{letter-spacing:-1.014000px;}
.ls27{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.564000px;}
.ls1e{letter-spacing:-0.525000px;}
.lse{letter-spacing:-0.516000px;}
.ls8{letter-spacing:-0.492000px;}
.lsf{letter-spacing:-0.468000px;}
.lsa{letter-spacing:-0.327000px;}
.ls19{letter-spacing:-0.300000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.021000px;}
.ls0{letter-spacing:0.024000px;}
.ls1c{letter-spacing:0.060000px;}
.ls2d{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.150000px;}
.ls25{letter-spacing:0.174000px;}
.ls26{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.468000px;}
.ls1f{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.492000px;}
.ls23{letter-spacing:0.507000px;}
.ls7{letter-spacing:0.516000px;}
.ls16{letter-spacing:0.528000px;}
.ls29{letter-spacing:0.624000px;}
.ls14{letter-spacing:0.642000px;}
.ls6{letter-spacing:0.690000px;}
.ls5{letter-spacing:0.750000px;}
.ls10{letter-spacing:0.984000px;}
.lsb{letter-spacing:1.032000px;}
.ls12{letter-spacing:1.500000px;}
.ls11{letter-spacing:1.524000px;}
.ls17{letter-spacing:3.000000px;}
.ls13{letter-spacing:9.000000px;}
.lsc{letter-spacing:21.648000px;}
.ls1b{letter-spacing:41.484000px;}
.ls2c{letter-spacing:83.484000px;}
.ls18{letter-spacing:195.150000px;}
.ls3{letter-spacing:846.450000px;}
.ls2b{letter-spacing:850.740000px;}
.ls1{letter-spacing:2130.930000px;}
.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;}
}
.ws6{word-spacing:-21.000000px;}
.ws9{word-spacing:-19.500000px;}
.wsc{word-spacing:-19.032000px;}
.ws3{word-spacing:-18.516000px;}
.ws7{word-spacing:-18.492000px;}
.ws5{word-spacing:-18.468000px;}
.ws2{word-spacing:-18.432000px;}
.ws8{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.976000px;}
.ws11{word-spacing:-17.892000px;}
.ws19{word-spacing:-17.628000px;}
.wsb{word-spacing:-17.532000px;}
.ws4{word-spacing:-17.508000px;}
.wsa{word-spacing:-17.484000px;}
.ws13{word-spacing:-16.257000px;}
.ws18{word-spacing:-15.771000px;}
.ws16{word-spacing:-15.750000px;}
.ws12{word-spacing:-15.225000px;}
.ws15{word-spacing:-15.180000px;}
.ws14{word-spacing:-14.250000px;}
.ws17{word-spacing:-13.956000px;}
.wsf{word-spacing:-13.163963px;}
.wsd{word-spacing:-12.000000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:142.231590px;}
._b{margin-left:-15.918000px;}
._7{margin-left:-13.692000px;}
._8{margin-left:-11.226000px;}
._a{margin-left:-9.456000px;}
._5{margin-left:-7.086000px;}
._9{margin-left:-5.604000px;}
._6{margin-left:-4.278000px;}
._4{margin-left:-3.138000px;}
._3{margin-left:-2.094000px;}
._0{margin-left:-1.056000px;}
._1{width:1.440000px;}
._c{width:2.784000px;}
._12{width:3.834000px;}
._e{width:4.944000px;}
._11{width:6.744000px;}
._10{width:8.358000px;}
._13{width:9.528000px;}
._16{width:10.926000px;}
._17{width:11.970000px;}
._14{width:13.374000px;}
._15{width:14.400000px;}
._22{width:15.690000px;}
._d{width:16.698000px;}
._1d{width:19.062000px;}
._f{width:20.142000px;}
._26{width:21.930000px;}
._1a{width:23.304000px;}
._1b{width:24.756000px;}
._2a{width:26.484000px;}
._2e{width:27.840000px;}
._33{width:28.950000px;}
._1c{width:30.000000px;}
._18{width:31.968000px;}
._19{width:33.318000px;}
._2d{width:34.464000px;}
._29{width:35.538000px;}
._28{width:36.888000px;}
._27{width:37.926000px;}
._25{width:39.708000px;}
._23{width:41.400000px;}
._24{width:43.098000px;}
._20{width:44.502000px;}
._21{width:46.146000px;}
._1f{width:49.008000px;}
._1e{width:50.454000px;}
._31{width:51.624000px;}
._32{width:52.740000px;}
._3a{width:55.086000px;}
._2c{width:57.480000px;}
._2b{width:58.488000px;}
._39{width:60.240000px;}
._3b{width:84.000000px;}
._3c{width:86.370000px;}
._38{width:102.006000px;}
._30{width:141.762000px;}
._2f{width:143.268000px;}
._35{width:161.473942px;}
._34{width:166.374342px;}
._36{width:167.991814px;}
._37{width:644.016908px;}
._2{width:846.450000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(47,84,150);}
.fc1{color:transparent;}
.fc5{color:rgb(58,58,58);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000000px;}
.fs9{font-size:52.655850px;}
.fsa{font-size:52.671666px;}
.fsc{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:75.291536px;}
.fsd{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:1.345030px;}
.y3{bottom:3.750000px;}
.ye4{bottom:20.655000px;}
.ye0{bottom:22.500000px;}
.ydd{bottom:22.875000px;}
.y2{bottom:52.875000px;}
.y1{bottom:56.625000px;}
.ya4{bottom:60.642201px;}
.ya6{bottom:60.852244px;}
.ybc{bottom:110.662500px;}
.y14d{bottom:114.787500px;}
.yae{bottom:118.537500px;}
.y3d{bottom:121.912500px;}
.y67{bottom:122.662500px;}
.y14c{bottom:124.537500px;}
.y113{bottom:127.162500px;}
.ybb{bottom:128.662500px;}
.y102{bottom:130.162500px;}
.y77{bottom:145.912500px;}
.yba{bottom:147.037500px;}
.y101{bottom:148.162500px;}
.y3c{bottom:153.045000px;}
.y14b{bottom:155.655000px;}
.y8e{bottom:157.170000px;}
.yca{bottom:158.655000px;}
.ya5{bottom:161.158700px;}
.y60{bottom:164.295000px;}
.y91{bottom:166.545000px;}
.y112{bottom:168.405000px;}
.ya1{bottom:168.646787px;}
.yef{bottom:168.780000px;}
.ydb{bottom:172.920000px;}
.y12c{bottom:177.045000px;}
.y9d{bottom:181.905000px;}
.y100{bottom:183.420000px;}
.y3b{bottom:184.170000px;}
.y14a{bottom:186.825000px;}
.y76{bottom:187.200000px;}
.y20{bottom:195.450000px;}
.y8d{bottom:198.825000px;}
.yc9{bottom:199.950000px;}
.y5f{bottom:205.575000px;}
.y90{bottom:208.200000px;}
.y111{bottom:209.700000px;}
.yee{bottom:210.075000px;}
.yda{bottom:214.575000px;}
.y3a{bottom:215.325000px;}
.y11a{bottom:216.825000px;}
.y149{bottom:217.575000px;}
.y117{bottom:222.450000px;}
.y9c{bottom:223.200000px;}
.y75{bottom:228.825000px;}
.yb7{bottom:231.075000px;}
.y1f{bottom:232.200000px;}
.y12b{bottom:238.950000px;}
.y8c{bottom:240.075000px;}
.yc8{bottom:241.200000px;}
.y116{bottom:243.450000px;}
.yed{bottom:245.700000px;}
.y5e{bottom:247.200000px;}
.y148{bottom:248.700000px;}
.ya2{bottom:248.726932px;}
.y8f{bottom:249.450000px;}
.yff{bottom:251.325000px;}
.y119{bottom:254.325000px;}
.y39{bottom:255.450000px;}
.yd9{bottom:255.825000px;}
.yec{bottom:263.700000px;}
.y115{bottom:264.075000px;}
.y9b{bottom:264.825000px;}
.y74{bottom:270.075000px;}
.y1e{bottom:270.825000px;}
.yb6{bottom:272.700000px;}
.yf8{bottom:273.825000px;}
.y147{bottom:279.825000px;}
.y8b{bottom:281.700000px;}
.yc7{bottom:282.825000px;}
.yfe{bottom:285.825000px;}
.y5d{bottom:288.450000px;}
.y110{bottom:292.575000px;}
.y38{bottom:295.200000px;}
.yd8{bottom:297.450000px;}
.yeb{bottom:298.950000px;}
.y114{bottom:299.700000px;}
.y12a{bottom:301.200000px;}
.y9a{bottom:306.075000px;}
.y1d{bottom:307.950000px;}
.y146{bottom:310.950000px;}
.y73{bottom:311.700000px;}
.yb5{bottom:313.980000px;}
.yf7{bottom:315.120000px;}
.yfd{bottom:319.620000px;}
.y8a{bottom:322.995000px;}
.yc6{bottom:324.105000px;}
.y1c{bottom:327.480000px;}
.y5c{bottom:329.745000px;}
.y129{bottom:332.370000px;}
.y10f{bottom:334.230000px;}
.y37{bottom:335.370000px;}
.yd7{bottom:338.745000px;}
.yfc{bottom:340.245000px;}
.y145{bottom:342.120000px;}
.y9f{bottom:347.192919px;}
.y99{bottom:347.370000px;}
.y72{bottom:352.995000px;}
.yb4{bottom:355.230000px;}
.yf6{bottom:356.745000px;}
.yfb{bottom:361.230000px;}
.y128{bottom:363.495000px;}
.y89{bottom:364.245000px;}
.yc5{bottom:365.745000px;}
.y1b{bottom:368.730000px;}
.y5b{bottom:371.355000px;}
.y144{bottom:372.870000px;}
.y118{bottom:373.245000px;}
.y36{bottom:375.480000px;}
.yd6{bottom:379.995000px;}
.y98{bottom:388.980000px;}
.y1a{bottom:390.120000px;}
.y71{bottom:394.245000px;}
.yb3{bottom:396.870000px;}
.yf5{bottom:397.995000px;}
.y143{bottom:403.995000px;}
.y88{bottom:405.870000px;}
.y35{bottom:406.620000px;}
.yc4{bottom:406.995000px;}
.y19{bottom:411.120000px;}
.y5a{bottom:412.620000px;}
.y10e{bottom:416.745000px;}
.yd5{bottom:421.620000px;}
.y127{bottom:425.370000px;}
.y97{bottom:430.245000px;}
.yb2{bottom:432.120000px;}
.y18{bottom:432.495000px;}
.y142{bottom:435.120000px;}
.yf4{bottom:435.495000px;}
.y70{bottom:435.870000px;}
.y34{bottom:437.745000px;}
.ya0{bottom:442.258657px;}
.y87{bottom:447.150000px;}
.yc3{bottom:448.275000px;}
.yb1{bottom:450.150000px;}
.y17{bottom:453.525000px;}
.y59{bottom:454.275000px;}
.yad{bottom:455.400000px;}
.yf3{bottom:456.525000px;}
.y10d{bottom:458.400000px;}
.yd4{bottom:462.900000px;}
.y141{bottom:466.275000px;}
.y96{bottom:468.150000px;}
.y33{bottom:468.525000px;}
.y16{bottom:473.400000px;}
.y58{bottom:474.900000px;}
.y6f{bottom:477.150000px;}
.yf2{bottom:477.525000px;}
.y126{bottom:487.650000px;}
.y86{bottom:488.775000px;}
.yc2{bottom:489.900000px;}
.yac{bottom:494.775000px;}
.y57{bottom:495.525000px;}
.y140{bottom:497.400000px;}
.yf1{bottom:498.150000px;}
.y32{bottom:499.650000px;}
.yb0{bottom:503.775000px;}
.yd3{bottom:504.525000px;}
.y165{bottom:507.900000px;}
.y15{bottom:509.025000px;}
.y95{bottom:509.775000px;}
.yb9{bottom:510.525000px;}
.y6e{bottom:518.775000px;}
.y13f{bottom:528.150000px;}
.y14{bottom:530.025000px;}
.y94{bottom:530.400000px;}
.yc1{bottom:531.150000px;}
.yf0{bottom:533.775000px;}
.y164{bottom:535.275000px;}
.yab{bottom:536.025000px;}
.y56{bottom:536.775000px;}
.y31{bottom:539.775000px;}
.y10c{bottom:541.275000px;}
.yd2{bottom:545.775000px;}
.yb8{bottom:548.025000px;}
.y125{bottom:549.525000px;}
.y13{bottom:550.275000px;}
.y93{bottom:551.400000px;}
.y13e{bottom:559.275000px;}
.y6d{bottom:560.025000px;}
.y163{bottom:562.650000px;}
.y30{bottom:570.945000px;}
.y85{bottom:571.320000px;}
.yc0{bottom:572.820000px;}
.yaa{bottom:577.320000px;}
.y55{bottom:578.445000px;}
.y124{bottom:580.695000px;}
.y10b{bottom:582.570000px;}
.y12{bottom:585.570000px;}
.y92{bottom:587.070000px;}
.y162{bottom:590.070000px;}
.y13d{bottom:590.445000px;}
.y6c{bottom:601.320000px;}
.y9e{bottom:606.690000px;}
.y2f{bottom:611.070000px;}
.y123{bottom:611.820000px;}
.y84{bottom:612.945000px;}
.ybf{bottom:614.070000px;}
.y161{bottom:617.445000px;}
.ya9{bottom:618.945000px;}
.y54{bottom:619.695000px;}
.y11{bottom:620.445000px;}
.y13c{bottom:621.570000px;}
.y10a{bottom:623.820000px;}
.yd1{bottom:628.695000px;}
.y2e{bottom:641.820000px;}
.y6b{bottom:642.945000px;}
.y160{bottom:644.820000px;}
.ybe{bottom:651.570000px;}
.y13b{bottom:652.695000px;}
.y83{bottom:654.195000px;}
.y10{bottom:655.695000px;}
.y53{bottom:661.320000px;}
.y109{bottom:665.445000px;}
.yd0{bottom:669.945000px;}
.ya8{bottom:672.195000px;}
.ybd{bottom:672.570000px;}
.y2d{bottom:672.945000px;}
.y122{bottom:674.070000px;}
.yf{bottom:677.070000px;}
.y13a{bottom:683.445000px;}
.y6a{bottom:684.195000px;}
.ya7{bottom:690.570000px;}
.y82{bottom:695.475000px;}
.y15f{bottom:699.600000px;}
.y52{bottom:702.600000px;}
.y2c{bottom:704.100000px;}
.y121{bottom:704.850000px;}
.y108{bottom:706.725000px;}
.yea{bottom:707.850000px;}
.ye{bottom:708.225000px;}
.ycf{bottom:711.600000px;}
.y139{bottom:714.600000px;}
.y69{bottom:725.475000px;}
.y15e{bottom:726.975000px;}
.y2b{bottom:735.225000px;}
.y120{bottom:735.975000px;}
.y81{bottom:737.100000px;}
.y51{bottom:743.850000px;}
.y138{bottom:745.725000px;}
.y107{bottom:748.350000px;}
.yce{bottom:749.100000px;}
.y15d{bottom:754.350000px;}
.yfa{bottom:757.725000px;}
.yd{bottom:767.100000px;}
.ycd{bottom:770.100000px;}
.y2a{bottom:774.975000px;}
.y137{bottom:776.850000px;}
.y80{bottom:778.350000px;}
.y15c{bottom:781.725000px;}
.y50{bottom:785.475000px;}
.yc{bottom:786.225000px;}
.y106{bottom:789.600000px;}
.ye9{bottom:790.350000px;}
.ycc{bottom:790.725000px;}
.yf9{bottom:792.600000px;}
.y47{bottom:792.975000px;}
.y11f{bottom:798.225000px;}
.yb{bottom:807.225000px;}
.y136{bottom:807.600000px;}
.y68{bottom:808.350000px;}
.y15b{bottom:809.100000px;}
.y29{bottom:815.100000px;}
.y7f{bottom:819.975000px;}
.ycb{bottom:823.380000px;}
.y46{bottom:824.130000px;}
.y4f{bottom:826.755000px;}
.y11e{bottom:829.020000px;}
.y105{bottom:830.880000px;}
.ye8{bottom:832.020000px;}
.y15a{bottom:836.505000px;}
.y135{bottom:838.770000px;}
.y28{bottom:846.270000px;}
.y66{bottom:850.005000px;}
.y104{bottom:851.880000px;}
.ya{bottom:858.255000px;}
.y11d{bottom:860.130000px;}
.y7e{bottom:861.255000px;}
.y159{bottom:863.880000px;}
.y45{bottom:864.255000px;}
.ye7{bottom:867.255000px;}
.y4e{bottom:868.005000px;}
.y134{bottom:869.895000px;}
.y27{bottom:877.380000px;}
.y9{bottom:880.380000px;}
.ye6{bottom:885.255000px;}
.y158{bottom:888.255000px;}
.y65{bottom:891.255000px;}
.y103{bottom:891.630000px;}
.y133{bottom:901.005000px;}
.y7d{bottom:902.505000px;}
.y44{bottom:904.380000px;}
.y26{bottom:908.505000px;}
.y4d{bottom:909.630000px;}
.y157{bottom:911.880000px;}
.ye5{bottom:918.630000px;}
.y11c{bottom:922.380000px;}
.y132{bottom:932.130000px;}
.y64{bottom:932.505000px;}
.ye3{bottom:934.020000px;}
.y156{bottom:935.880000px;}
.y8{bottom:936.630000px;}
.y25{bottom:939.255000px;}
.y7c{bottom:944.130000px;}
.y43{bottom:944.505000px;}
.y4c{bottom:950.925000px;}
.y11b{bottom:953.550000px;}
.y155{bottom:959.550000px;}
.y131{bottom:962.925000px;}
.ye2{bottom:969.300000px;}
.y63{bottom:974.175000px;}
.y24{bottom:979.425000px;}
.y154{bottom:983.550000px;}
.y42{bottom:984.300000px;}
.y7b{bottom:985.425000px;}
.y7{bottom:986.175000px;}
.y4b{bottom:992.550000px;}
.y130{bottom:994.050000px;}
.ye1{bottom:1006.800000px;}
.y153{bottom:1007.175000px;}
.y41{bottom:1015.425000px;}
.y23{bottom:1019.550000px;}
.y12f{bottom:1025.175000px;}
.y7a{bottom:1027.050000px;}
.y152{bottom:1031.175000px;}
.y4a{bottom:1033.800000px;}
.y6{bottom:1037.550000px;}
.ydf{bottom:1044.300000px;}
.y40{bottom:1046.550000px;}
.y151{bottom:1054.800000px;}
.y12e{bottom:1056.300000px;}
.y62{bottom:1057.050000px;}
.y22{bottom:1059.675000px;}
.y49{bottom:1075.050000px;}
.y3f{bottom:1077.705000px;}
.y150{bottom:1078.830000px;}
.yde{bottom:1081.455000px;}
.y12d{bottom:1087.455000px;}
.y5{bottom:1088.580000px;}
.y79{bottom:1088.955000px;}
.y61{bottom:1098.330000px;}
.y21{bottom:1099.830000px;}
.y14f{bottom:1102.455000px;}
.y3e{bottom:1108.830000px;}
.ydc{bottom:1118.955000px;}
.y78{bottom:1136.580000px;}
.y48{bottom:1136.955000px;}
.y14e{bottom:1137.705000px;}
.y4{bottom:1139.580000px;}
.yaf{bottom:1141.830000px;}
.h2{height:20.662500px;}
.h1b{height:34.522500px;}
.h1a{height:36.412500px;}
.h17{height:36.750000px;}
.h10{height:51.678837px;}
.h11{height:51.694359px;}
.h12{height:51.973215px;}
.h1c{height:52.971680px;}
.h18{height:58.886719px;}
.h1f{height:59.299805px;}
.h19{height:60.468750px;}
.he{height:61.800293px;}
.h16{height:61.831055px;}
.h9{height:63.949219px;}
.h20{height:64.327148px;}
.hb{height:64.546875px;}
.h8{height:64.743164px;}
.h3{height:64.775391px;}
.h14{height:70.628906px;}
.h1{height:70.664062px;}
.h5{height:72.562500px;}
.h13{height:73.894525px;}
.h15{height:74.004654px;}
.hd{height:74.953125px;}
.ha{height:84.656250px;}
.hc{height:87.445312px;}
.h6{height:95.923828px;}
.h4{height:96.750000px;}
.h1d{height:105.123047px;}
.h1e{height:108.275391px;}
.h7{height:108.843750px;}
.hf{height:508.549418px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w3{width:18.000000px;}
.w9{width:27.000000px;}
.w5{width:73.500000px;}
.w6{width:73.537500px;}
.w7{width:84.412500px;}
.w8{width:126.787500px;}
.w4{width:387.368142px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x34{left:7.875000px;}
.x37{left:9.000000px;}
.x3b{left:13.500000px;}
.x1e{left:16.138594px;}
.x21{left:18.757868px;}
.x3c{left:21.750000px;}
.x3d{left:23.625000px;}
.x3f{left:26.625000px;}
.x3e{left:34.875000px;}
.x3a{left:39.420000px;}
.x1d{left:79.944012px;}
.xa{left:126.412487px;}
.x1{left:127.537487px;}
.x26{left:129.412487px;}
.x1a{left:131.287487px;}
.x18{left:132.449987px;}
.x2c{left:134.324987px;}
.x25{left:135.449987px;}
.x14{left:138.074987px;}
.x4b{left:139.574987px;}
.x17{left:140.699987px;}
.x22{left:142.862846px;}
.x32{left:144.449987px;}
.xf{left:145.574987px;}
.x44{left:149.324987px;}
.x19{left:151.949987px;}
.x1f{left:152.991283px;}
.x11{left:154.574987px;}
.x23{left:159.449987px;}
.x10{left:163.574987px;}
.x8{left:164.699987px;}
.x4f{left:169.949987px;}
.x2f{left:175.199987px;}
.x13{left:180.824987px;}
.x4{left:182.324987px;}
.x30{left:195.449987px;}
.x41{left:196.949987px;}
.x43{left:198.074987px;}
.x6{left:201.074987px;}
.x15{left:208.574987px;}
.x20{left:210.756374px;}
.x3{left:223.994987px;}
.x45{left:234.869987px;}
.x4a{left:238.994987px;}
.x1c{left:252.570000px;}
.x27{left:256.619987px;}
.x4c{left:289.619987px;}
.x4e{left:292.244987px;}
.x35{left:297.870000px;}
.xd{left:310.619987px;}
.x2d{left:313.274987px;}
.x7{left:319.649987px;}
.x9{left:320.774987px;}
.xc{left:325.649987px;}
.x48{left:335.399987px;}
.x50{left:365.399987px;}
.x33{left:370.274987px;}
.x36{left:372.150000px;}
.x2a{left:390.149987px;}
.xe{left:393.899987px;}
.x1b{left:428.444987px;}
.x51{left:432.945000px;}
.x12{left:437.445000px;}
.x2{left:441.945000px;}
.x5{left:444.194987px;}
.x40{left:446.444987px;}
.x38{left:457.320000px;}
.x39{left:542.475000px;}
.x2b{left:607.019987px;}
.xb{left:608.129987px;}
.x28{left:616.754987px;}
.x47{left:631.004987px;}
.x46{left:633.254987px;}
.x16{left:640.004987px;}
.x52{left:643.004987px;}
.x49{left:649.754987px;}
.x24{left:662.129987px;}
.x42{left:673.799987px;}
.x2e{left:689.549987px;}
.x31{left:722.549987px;}
.x29{left:765.329987px;}
.x4d{left:789.329987px;}
@media print{
.v1{vertical-align:-75.946667pt;}
.v4{vertical-align:-74.666667pt;}
.v2{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.666667pt;}
.v6{vertical-align:38.666667pt;}
.v5{vertical-align:44.000000pt;}
.ls24{letter-spacing:-1.333333pt;}
.ls22{letter-spacing:-0.901333pt;}
.ls27{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.501333pt;}
.ls1e{letter-spacing:-0.466667pt;}
.lse{letter-spacing:-0.458667pt;}
.ls8{letter-spacing:-0.437333pt;}
.lsf{letter-spacing:-0.416000pt;}
.lsa{letter-spacing:-0.290667pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.018667pt;}
.ls0{letter-spacing:0.021333pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.133333pt;}
.ls25{letter-spacing:0.154667pt;}
.ls26{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.416000pt;}
.ls1f{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.437333pt;}
.ls23{letter-spacing:0.450667pt;}
.ls7{letter-spacing:0.458667pt;}
.ls16{letter-spacing:0.469333pt;}
.ls29{letter-spacing:0.554667pt;}
.ls14{letter-spacing:0.570667pt;}
.ls6{letter-spacing:0.613333pt;}
.ls5{letter-spacing:0.666667pt;}
.ls10{letter-spacing:0.874667pt;}
.lsb{letter-spacing:0.917333pt;}
.ls12{letter-spacing:1.333333pt;}
.ls11{letter-spacing:1.354667pt;}
.ls17{letter-spacing:2.666667pt;}
.ls13{letter-spacing:8.000000pt;}
.lsc{letter-spacing:19.242667pt;}
.ls1b{letter-spacing:36.874667pt;}
.ls2c{letter-spacing:74.208000pt;}
.ls18{letter-spacing:173.466667pt;}
.ls3{letter-spacing:752.400000pt;}
.ls2b{letter-spacing:756.213333pt;}
.ls1{letter-spacing:1894.160000pt;}
.ws6{word-spacing:-18.666667pt;}
.ws9{word-spacing:-17.333333pt;}
.wsc{word-spacing:-16.917333pt;}
.ws3{word-spacing:-16.458667pt;}
.ws7{word-spacing:-16.437333pt;}
.ws5{word-spacing:-16.416000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws8{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.978667pt;}
.ws11{word-spacing:-15.904000pt;}
.ws19{word-spacing:-15.669333pt;}
.wsb{word-spacing:-15.584000pt;}
.ws4{word-spacing:-15.562667pt;}
.wsa{word-spacing:-15.541333pt;}
.ws13{word-spacing:-14.450667pt;}
.ws18{word-spacing:-14.018667pt;}
.ws16{word-spacing:-14.000000pt;}
.ws12{word-spacing:-13.533333pt;}
.ws15{word-spacing:-13.493333pt;}
.ws14{word-spacing:-12.666667pt;}
.ws17{word-spacing:-12.405333pt;}
.wsf{word-spacing:-11.701300pt;}
.wsd{word-spacing:-10.666667pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:126.428080pt;}
._b{margin-left:-14.149333pt;}
._7{margin-left:-12.170667pt;}
._8{margin-left:-9.978667pt;}
._a{margin-left:-8.405333pt;}
._5{margin-left:-6.298667pt;}
._9{margin-left:-4.981333pt;}
._6{margin-left:-3.802667pt;}
._4{margin-left:-2.789333pt;}
._3{margin-left:-1.861333pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.280000pt;}
._c{width:2.474667pt;}
._12{width:3.408000pt;}
._e{width:4.394667pt;}
._11{width:5.994667pt;}
._10{width:7.429333pt;}
._13{width:8.469333pt;}
._16{width:9.712000pt;}
._17{width:10.640000pt;}
._14{width:11.888000pt;}
._15{width:12.800000pt;}
._22{width:13.946667pt;}
._d{width:14.842667pt;}
._1d{width:16.944000pt;}
._f{width:17.904000pt;}
._26{width:19.493333pt;}
._1a{width:20.714667pt;}
._1b{width:22.005333pt;}
._2a{width:23.541333pt;}
._2e{width:24.746667pt;}
._33{width:25.733333pt;}
._1c{width:26.666667pt;}
._18{width:28.416000pt;}
._19{width:29.616000pt;}
._2d{width:30.634667pt;}
._29{width:31.589333pt;}
._28{width:32.789333pt;}
._27{width:33.712000pt;}
._25{width:35.296000pt;}
._23{width:36.800000pt;}
._24{width:38.309333pt;}
._20{width:39.557333pt;}
._21{width:41.018667pt;}
._1f{width:43.562667pt;}
._1e{width:44.848000pt;}
._31{width:45.888000pt;}
._32{width:46.880000pt;}
._3a{width:48.965333pt;}
._2c{width:51.093333pt;}
._2b{width:51.989333pt;}
._39{width:53.546667pt;}
._3b{width:74.666667pt;}
._3c{width:76.773333pt;}
._38{width:90.672000pt;}
._30{width:126.010667pt;}
._2f{width:127.349333pt;}
._35{width:143.532393pt;}
._34{width:147.888304pt;}
._36{width:149.326057pt;}
._37{width:572.459473pt;}
._2{width:752.400000pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:46.805200pt;}
.fsa{font-size:46.819258pt;}
.fsc{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.925810pt;}
.fsd{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:1.195582pt;}
.y3{bottom:3.333333pt;}
.ye4{bottom:18.360000pt;}
.ye0{bottom:20.000000pt;}
.ydd{bottom:20.333333pt;}
.y2{bottom:47.000000pt;}
.y1{bottom:50.333333pt;}
.ya4{bottom:53.904179pt;}
.ya6{bottom:54.090884pt;}
.ybc{bottom:98.366667pt;}
.y14d{bottom:102.033333pt;}
.yae{bottom:105.366667pt;}
.y3d{bottom:108.366667pt;}
.y67{bottom:109.033333pt;}
.y14c{bottom:110.700000pt;}
.y113{bottom:113.033333pt;}
.ybb{bottom:114.366667pt;}
.y102{bottom:115.700000pt;}
.y77{bottom:129.700000pt;}
.yba{bottom:130.700000pt;}
.y101{bottom:131.700000pt;}
.y3c{bottom:136.040000pt;}
.y14b{bottom:138.360000pt;}
.y8e{bottom:139.706667pt;}
.yca{bottom:141.026667pt;}
.ya5{bottom:143.252178pt;}
.y60{bottom:146.040000pt;}
.y91{bottom:148.040000pt;}
.y112{bottom:149.693333pt;}
.ya1{bottom:149.908255pt;}
.yef{bottom:150.026667pt;}
.ydb{bottom:153.706667pt;}
.y12c{bottom:157.373333pt;}
.y9d{bottom:161.693333pt;}
.y100{bottom:163.040000pt;}
.y3b{bottom:163.706667pt;}
.y14a{bottom:166.066667pt;}
.y76{bottom:166.400000pt;}
.y20{bottom:173.733333pt;}
.y8d{bottom:176.733333pt;}
.yc9{bottom:177.733333pt;}
.y5f{bottom:182.733333pt;}
.y90{bottom:185.066667pt;}
.y111{bottom:186.400000pt;}
.yee{bottom:186.733333pt;}
.yda{bottom:190.733333pt;}
.y3a{bottom:191.400000pt;}
.y11a{bottom:192.733333pt;}
.y149{bottom:193.400000pt;}
.y117{bottom:197.733333pt;}
.y9c{bottom:198.400000pt;}
.y75{bottom:203.400000pt;}
.yb7{bottom:205.400000pt;}
.y1f{bottom:206.400000pt;}
.y12b{bottom:212.400000pt;}
.y8c{bottom:213.400000pt;}
.yc8{bottom:214.400000pt;}
.y116{bottom:216.400000pt;}
.yed{bottom:218.400000pt;}
.y5e{bottom:219.733333pt;}
.y148{bottom:221.066667pt;}
.ya2{bottom:221.090606pt;}
.y8f{bottom:221.733333pt;}
.yff{bottom:223.400000pt;}
.y119{bottom:226.066667pt;}
.y39{bottom:227.066667pt;}
.yd9{bottom:227.400000pt;}
.yec{bottom:234.400000pt;}
.y115{bottom:234.733333pt;}
.y9b{bottom:235.400000pt;}
.y74{bottom:240.066667pt;}
.y1e{bottom:240.733333pt;}
.yb6{bottom:242.400000pt;}
.yf8{bottom:243.400000pt;}
.y147{bottom:248.733333pt;}
.y8b{bottom:250.400000pt;}
.yc7{bottom:251.400000pt;}
.yfe{bottom:254.066667pt;}
.y5d{bottom:256.400000pt;}
.y110{bottom:260.066667pt;}
.y38{bottom:262.400000pt;}
.yd8{bottom:264.400000pt;}
.yeb{bottom:265.733333pt;}
.y114{bottom:266.400000pt;}
.y12a{bottom:267.733333pt;}
.y9a{bottom:272.066667pt;}
.y1d{bottom:273.733333pt;}
.y146{bottom:276.400000pt;}
.y73{bottom:277.066667pt;}
.yb5{bottom:279.093333pt;}
.yf7{bottom:280.106667pt;}
.yfd{bottom:284.106667pt;}
.y8a{bottom:287.106667pt;}
.yc6{bottom:288.093333pt;}
.y1c{bottom:291.093333pt;}
.y5c{bottom:293.106667pt;}
.y129{bottom:295.440000pt;}
.y10f{bottom:297.093333pt;}
.y37{bottom:298.106667pt;}
.yd7{bottom:301.106667pt;}
.yfc{bottom:302.440000pt;}
.y145{bottom:304.106667pt;}
.y9f{bottom:308.615928pt;}
.y99{bottom:308.773333pt;}
.y72{bottom:313.773333pt;}
.yb4{bottom:315.760000pt;}
.yf6{bottom:317.106667pt;}
.yfb{bottom:321.093333pt;}
.y128{bottom:323.106667pt;}
.y89{bottom:323.773333pt;}
.yc5{bottom:325.106667pt;}
.y1b{bottom:327.760000pt;}
.y5b{bottom:330.093333pt;}
.y144{bottom:331.440000pt;}
.y118{bottom:331.773333pt;}
.y36{bottom:333.760000pt;}
.yd6{bottom:337.773333pt;}
.y98{bottom:345.760000pt;}
.y1a{bottom:346.773333pt;}
.y71{bottom:350.440000pt;}
.yb3{bottom:352.773333pt;}
.yf5{bottom:353.773333pt;}
.y143{bottom:359.106667pt;}
.y88{bottom:360.773333pt;}
.y35{bottom:361.440000pt;}
.yc4{bottom:361.773333pt;}
.y19{bottom:365.440000pt;}
.y5a{bottom:366.773333pt;}
.y10e{bottom:370.440000pt;}
.yd5{bottom:374.773333pt;}
.y127{bottom:378.106667pt;}
.y97{bottom:382.440000pt;}
.yb2{bottom:384.106667pt;}
.y18{bottom:384.440000pt;}
.y142{bottom:386.773333pt;}
.yf4{bottom:387.106667pt;}
.y70{bottom:387.440000pt;}
.y34{bottom:389.106667pt;}
.ya0{bottom:393.118806pt;}
.y87{bottom:397.466667pt;}
.yc3{bottom:398.466667pt;}
.yb1{bottom:400.133333pt;}
.y17{bottom:403.133333pt;}
.y59{bottom:403.800000pt;}
.yad{bottom:404.800000pt;}
.yf3{bottom:405.800000pt;}
.y10d{bottom:407.466667pt;}
.yd4{bottom:411.466667pt;}
.y141{bottom:414.466667pt;}
.y96{bottom:416.133333pt;}
.y33{bottom:416.466667pt;}
.y16{bottom:420.800000pt;}
.y58{bottom:422.133333pt;}
.y6f{bottom:424.133333pt;}
.yf2{bottom:424.466667pt;}
.y126{bottom:433.466667pt;}
.y86{bottom:434.466667pt;}
.yc2{bottom:435.466667pt;}
.yac{bottom:439.800000pt;}
.y57{bottom:440.466667pt;}
.y140{bottom:442.133333pt;}
.yf1{bottom:442.800000pt;}
.y32{bottom:444.133333pt;}
.yb0{bottom:447.800000pt;}
.yd3{bottom:448.466667pt;}
.y165{bottom:451.466667pt;}
.y15{bottom:452.466667pt;}
.y95{bottom:453.133333pt;}
.yb9{bottom:453.800000pt;}
.y6e{bottom:461.133333pt;}
.y13f{bottom:469.466667pt;}
.y14{bottom:471.133333pt;}
.y94{bottom:471.466667pt;}
.yc1{bottom:472.133333pt;}
.yf0{bottom:474.466667pt;}
.y164{bottom:475.800000pt;}
.yab{bottom:476.466667pt;}
.y56{bottom:477.133333pt;}
.y31{bottom:479.800000pt;}
.y10c{bottom:481.133333pt;}
.yd2{bottom:485.133333pt;}
.yb8{bottom:487.133333pt;}
.y125{bottom:488.466667pt;}
.y13{bottom:489.133333pt;}
.y93{bottom:490.133333pt;}
.y13e{bottom:497.133333pt;}
.y6d{bottom:497.800000pt;}
.y163{bottom:500.133333pt;}
.y30{bottom:507.506667pt;}
.y85{bottom:507.840000pt;}
.yc0{bottom:509.173333pt;}
.yaa{bottom:513.173333pt;}
.y55{bottom:514.173333pt;}
.y124{bottom:516.173333pt;}
.y10b{bottom:517.840000pt;}
.y12{bottom:520.506667pt;}
.y92{bottom:521.840000pt;}
.y162{bottom:524.506667pt;}
.y13d{bottom:524.840000pt;}
.y6c{bottom:534.506667pt;}
.y9e{bottom:539.280000pt;}
.y2f{bottom:543.173333pt;}
.y123{bottom:543.840000pt;}
.y84{bottom:544.840000pt;}
.ybf{bottom:545.840000pt;}
.y161{bottom:548.840000pt;}
.ya9{bottom:550.173333pt;}
.y54{bottom:550.840000pt;}
.y11{bottom:551.506667pt;}
.y13c{bottom:552.506667pt;}
.y10a{bottom:554.506667pt;}
.yd1{bottom:558.840000pt;}
.y2e{bottom:570.506667pt;}
.y6b{bottom:571.506667pt;}
.y160{bottom:573.173333pt;}
.ybe{bottom:579.173333pt;}
.y13b{bottom:580.173333pt;}
.y83{bottom:581.506667pt;}
.y10{bottom:582.840000pt;}
.y53{bottom:587.840000pt;}
.y109{bottom:591.506667pt;}
.yd0{bottom:595.506667pt;}
.ya8{bottom:597.506667pt;}
.ybd{bottom:597.840000pt;}
.y2d{bottom:598.173333pt;}
.y122{bottom:599.173333pt;}
.yf{bottom:601.840000pt;}
.y13a{bottom:607.506667pt;}
.y6a{bottom:608.173333pt;}
.ya7{bottom:613.840000pt;}
.y82{bottom:618.200000pt;}
.y15f{bottom:621.866667pt;}
.y52{bottom:624.533333pt;}
.y2c{bottom:625.866667pt;}
.y121{bottom:626.533333pt;}
.y108{bottom:628.200000pt;}
.yea{bottom:629.200000pt;}
.ye{bottom:629.533333pt;}
.ycf{bottom:632.533333pt;}
.y139{bottom:635.200000pt;}
.y69{bottom:644.866667pt;}
.y15e{bottom:646.200000pt;}
.y2b{bottom:653.533333pt;}
.y120{bottom:654.200000pt;}
.y81{bottom:655.200000pt;}
.y51{bottom:661.200000pt;}
.y138{bottom:662.866667pt;}
.y107{bottom:665.200000pt;}
.yce{bottom:665.866667pt;}
.y15d{bottom:670.533333pt;}
.yfa{bottom:673.533333pt;}
.yd{bottom:681.866667pt;}
.ycd{bottom:684.533333pt;}
.y2a{bottom:688.866667pt;}
.y137{bottom:690.533333pt;}
.y80{bottom:691.866667pt;}
.y15c{bottom:694.866667pt;}
.y50{bottom:698.200000pt;}
.yc{bottom:698.866667pt;}
.y106{bottom:701.866667pt;}
.ye9{bottom:702.533333pt;}
.ycc{bottom:702.866667pt;}
.yf9{bottom:704.533333pt;}
.y47{bottom:704.866667pt;}
.y11f{bottom:709.533333pt;}
.yb{bottom:717.533333pt;}
.y136{bottom:717.866667pt;}
.y68{bottom:718.533333pt;}
.y15b{bottom:719.200000pt;}
.y29{bottom:724.533333pt;}
.y7f{bottom:728.866667pt;}
.ycb{bottom:731.893333pt;}
.y46{bottom:732.560000pt;}
.y4f{bottom:734.893333pt;}
.y11e{bottom:736.906667pt;}
.y105{bottom:738.560000pt;}
.ye8{bottom:739.573333pt;}
.y15a{bottom:743.560000pt;}
.y135{bottom:745.573333pt;}
.y28{bottom:752.240000pt;}
.y66{bottom:755.560000pt;}
.y104{bottom:757.226667pt;}
.ya{bottom:762.893333pt;}
.y11d{bottom:764.560000pt;}
.y7e{bottom:765.560000pt;}
.y159{bottom:767.893333pt;}
.y45{bottom:768.226667pt;}
.ye7{bottom:770.893333pt;}
.y4e{bottom:771.560000pt;}
.y134{bottom:773.240000pt;}
.y27{bottom:779.893333pt;}
.y9{bottom:782.560000pt;}
.ye6{bottom:786.893333pt;}
.y158{bottom:789.560000pt;}
.y65{bottom:792.226667pt;}
.y103{bottom:792.560000pt;}
.y133{bottom:800.893333pt;}
.y7d{bottom:802.226667pt;}
.y44{bottom:803.893333pt;}
.y26{bottom:807.560000pt;}
.y4d{bottom:808.560000pt;}
.y157{bottom:810.560000pt;}
.ye5{bottom:816.560000pt;}
.y11c{bottom:819.893333pt;}
.y132{bottom:828.560000pt;}
.y64{bottom:828.893333pt;}
.ye3{bottom:830.240000pt;}
.y156{bottom:831.893333pt;}
.y8{bottom:832.560000pt;}
.y25{bottom:834.893333pt;}
.y7c{bottom:839.226667pt;}
.y43{bottom:839.560000pt;}
.y4c{bottom:845.266667pt;}
.y11b{bottom:847.600000pt;}
.y155{bottom:852.933333pt;}
.y131{bottom:855.933333pt;}
.ye2{bottom:861.600000pt;}
.y63{bottom:865.933333pt;}
.y24{bottom:870.600000pt;}
.y154{bottom:874.266667pt;}
.y42{bottom:874.933333pt;}
.y7b{bottom:875.933333pt;}
.y7{bottom:876.600000pt;}
.y4b{bottom:882.266667pt;}
.y130{bottom:883.600000pt;}
.ye1{bottom:894.933333pt;}
.y153{bottom:895.266667pt;}
.y41{bottom:902.600000pt;}
.y23{bottom:906.266667pt;}
.y12f{bottom:911.266667pt;}
.y7a{bottom:912.933333pt;}
.y152{bottom:916.600000pt;}
.y4a{bottom:918.933333pt;}
.y6{bottom:922.266667pt;}
.ydf{bottom:928.266667pt;}
.y40{bottom:930.266667pt;}
.y151{bottom:937.600000pt;}
.y12e{bottom:938.933333pt;}
.y62{bottom:939.600000pt;}
.y22{bottom:941.933333pt;}
.y49{bottom:955.600000pt;}
.y3f{bottom:957.960000pt;}
.y150{bottom:958.960000pt;}
.yde{bottom:961.293333pt;}
.y12d{bottom:966.626667pt;}
.y5{bottom:967.626667pt;}
.y79{bottom:967.960000pt;}
.y61{bottom:976.293333pt;}
.y21{bottom:977.626667pt;}
.y14f{bottom:979.960000pt;}
.y3e{bottom:985.626667pt;}
.ydc{bottom:994.626667pt;}
.y78{bottom:1010.293333pt;}
.y48{bottom:1010.626667pt;}
.y14e{bottom:1011.293333pt;}
.y4{bottom:1012.960000pt;}
.yaf{bottom:1014.960000pt;}
.h2{height:18.366667pt;}
.h1b{height:30.686667pt;}
.h1a{height:32.366667pt;}
.h17{height:32.666667pt;}
.h10{height:45.936744pt;}
.h11{height:45.950542pt;}
.h12{height:46.198413pt;}
.h1c{height:47.085938pt;}
.h18{height:52.343750pt;}
.h1f{height:52.710938pt;}
.h19{height:53.750000pt;}
.he{height:54.933594pt;}
.h16{height:54.960938pt;}
.h9{height:56.843750pt;}
.h20{height:57.179688pt;}
.hb{height:57.375000pt;}
.h8{height:57.549479pt;}
.h3{height:57.578125pt;}
.h14{height:62.781250pt;}
.h1{height:62.812500pt;}
.h5{height:64.500000pt;}
.h13{height:65.684023pt;}
.h15{height:65.781915pt;}
.hd{height:66.625000pt;}
.ha{height:75.250000pt;}
.hc{height:77.729167pt;}
.h6{height:85.265625pt;}
.h4{height:86.000000pt;}
.h1d{height:93.442708pt;}
.h1e{height:96.244792pt;}
.h7{height:96.750000pt;}
.hf{height:452.043927pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w3{width:16.000000pt;}
.w9{width:24.000000pt;}
.w5{width:65.333333pt;}
.w6{width:65.366667pt;}
.w7{width:75.033333pt;}
.w8{width:112.700000pt;}
.w4{width:344.327237pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x34{left:7.000000pt;}
.x37{left:8.000000pt;}
.x3b{left:12.000000pt;}
.x1e{left:14.345417pt;}
.x21{left:16.673660pt;}
.x3c{left:19.333333pt;}
.x3d{left:21.000000pt;}
.x3f{left:23.666667pt;}
.x3e{left:31.000000pt;}
.x3a{left:35.040000pt;}
.x1d{left:71.061344pt;}
.xa{left:112.366655pt;}
.x1{left:113.366655pt;}
.x26{left:115.033322pt;}
.x1a{left:116.699988pt;}
.x18{left:117.733322pt;}
.x2c{left:119.399988pt;}
.x25{left:120.399988pt;}
.x14{left:122.733322pt;}
.x4b{left:124.066655pt;}
.x17{left:125.066655pt;}
.x22{left:126.989196pt;}
.x32{left:128.399988pt;}
.xf{left:129.399988pt;}
.x44{left:132.733322pt;}
.x19{left:135.066655pt;}
.x1f{left:135.992252pt;}
.x11{left:137.399988pt;}
.x23{left:141.733322pt;}
.x10{left:145.399988pt;}
.x8{left:146.399988pt;}
.x4f{left:151.066655pt;}
.x2f{left:155.733322pt;}
.x13{left:160.733322pt;}
.x4{left:162.066655pt;}
.x30{left:173.733322pt;}
.x41{left:175.066655pt;}
.x43{left:176.066655pt;}
.x6{left:178.733322pt;}
.x15{left:185.399988pt;}
.x20{left:187.338999pt;}
.x3{left:199.106655pt;}
.x45{left:208.773322pt;}
.x4a{left:212.439988pt;}
.x1c{left:224.506667pt;}
.x27{left:228.106655pt;}
.x4c{left:257.439988pt;}
.x4e{left:259.773322pt;}
.x35{left:264.773333pt;}
.xd{left:276.106655pt;}
.x2d{left:278.466655pt;}
.x7{left:284.133322pt;}
.x9{left:285.133322pt;}
.xc{left:289.466655pt;}
.x48{left:298.133322pt;}
.x50{left:324.799988pt;}
.x33{left:329.133322pt;}
.x36{left:330.800000pt;}
.x2a{left:346.799988pt;}
.xe{left:350.133322pt;}
.x1b{left:380.839988pt;}
.x51{left:384.840000pt;}
.x12{left:388.840000pt;}
.x2{left:392.840000pt;}
.x5{left:394.839988pt;}
.x40{left:396.839988pt;}
.x38{left:406.506667pt;}
.x39{left:482.200000pt;}
.x2b{left:539.573322pt;}
.xb{left:540.559988pt;}
.x28{left:548.226655pt;}
.x47{left:560.893322pt;}
.x46{left:562.893322pt;}
.x16{left:568.893322pt;}
.x52{left:571.559988pt;}
.x49{left:577.559988pt;}
.x24{left:588.559988pt;}
.x42{left:598.933322pt;}
.x2e{left:612.933322pt;}
.x31{left:642.266655pt;}
.x29{left:680.293322pt;}
.x4d{left:701.626655pt;}
}




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