
    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_00af818dfccbfaf8dfd53f2e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e3bdb3dbaad1caab289a4b92.woff')format("woff");}.ff2{font-family:ff2;line-height:1.372559;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_85f4c9e650c32e12779d8785.woff')format("woff");}.ff3{font-family:ff3;line-height:1.372559;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_b7fb63369aa3be921a0cb1cc.woff')format("woff");}.ff4{font-family:ff4;line-height:0.683594;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_e5a33f591750f7f2f181645a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_915d82a542aadebab9fc0eef.woff')format("woff");}.ff6{font-family:ff6;line-height:1.359375;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_b413080c725b5fa5c675eb67.woff')format("woff");}.ff7{font-family:ff7;line-height:1.359375;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_7f83d58e0128e84866285991.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ea7b1446416756cca1fd104c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_defca4745d71b77212ec84c0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_25f3f4bfdfbfaf79c3f65eba.woff')format("woff");}.ffb{font-family:ffb;line-height:1.306152;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_edacafec8ef87cd4be765c98.woff')format("woff");}.ffc{font-family:ffc;line-height:1.306152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls43{letter-spacing:-1.008000px;}
.ls54{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.606000px;}
.ls17{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.215994px;}
.ls5{letter-spacing:-0.207600px;}
.ls31{letter-spacing:-0.144000px;}
.ls5a{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.008640px;}
.ls42{letter-spacing:-0.000003px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000001px;}
.ls9{letter-spacing:0.023040px;}
.ls37{letter-spacing:0.063600px;}
.ls28{letter-spacing:0.072000px;}
.ls44{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls21{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.305280px;}
.lsa{letter-spacing:0.325200px;}
.ls34{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.379200px;}
.ls59{letter-spacing:0.432000px;}
.ls3c{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.504000px;}
.ls4d{letter-spacing:0.648000px;}
.ls35{letter-spacing:0.720000px;}
.ls4e{letter-spacing:0.768000px;}
.lsf{letter-spacing:0.786000px;}
.ls47{letter-spacing:0.792000px;}
.ls8{letter-spacing:0.826560px;}
.ls50{letter-spacing:0.864000px;}
.ls3b{letter-spacing:0.936000px;}
.ls32{letter-spacing:1.008000px;}
.ls6{letter-spacing:1.025280px;}
.ls1e{letter-spacing:1.368000px;}
.ls3d{letter-spacing:1.656000px;}
.ls1d{letter-spacing:2.088000px;}
.ls52{letter-spacing:2.376000px;}
.ls2b{letter-spacing:2.808000px;}
.ls3e{letter-spacing:3.096000px;}
.ls27{letter-spacing:3.528000px;}
.lsc{letter-spacing:4.248000px;}
.ls55{letter-spacing:5.256000px;}
.lsd{letter-spacing:5.688000px;}
.ls38{letter-spacing:5.868000px;}
.ls56{letter-spacing:5.976000px;}
.ls45{letter-spacing:6.408000px;}
.ls4a{letter-spacing:6.706560px;}
.ls49{letter-spacing:7.848000px;}
.ls39{letter-spacing:8.856000px;}
.ls58{letter-spacing:9.576000px;}
.ls3a{letter-spacing:10.008000px;}
.ls1{letter-spacing:10.186560px;}
.ls2f{letter-spacing:10.728000px;}
.ls23{letter-spacing:11.086560px;}
.ls1c{letter-spacing:11.448000px;}
.ls1a{letter-spacing:12.168000px;}
.lsb{letter-spacing:12.960000px;}
.ls2e{letter-spacing:13.608000px;}
.ls24{letter-spacing:13.786560px;}
.ls19{letter-spacing:15.048000px;}
.ls4f{letter-spacing:15.984000px;}
.ls29{letter-spacing:16.758720px;}
.ls15{letter-spacing:17.208000px;}
.ls20{letter-spacing:19.368000px;}
.ls0{letter-spacing:19.546560px;}
.ls57{letter-spacing:19.656000px;}
.ls1f{letter-spacing:20.088000px;}
.ls46{letter-spacing:21.528000px;}
.ls1b{letter-spacing:22.248000px;}
.ls30{letter-spacing:22.968000px;}
.ls48{letter-spacing:23.688000px;}
.ls3f{letter-spacing:24.408000px;}
.ls2c{letter-spacing:25.200000px;}
.ls41{letter-spacing:25.848000px;}
.ls26{letter-spacing:27.336000px;}
.ls40{letter-spacing:28.008000px;}
.ls2d{letter-spacing:30.888000px;}
.ls51{letter-spacing:32.076000px;}
.ls25{letter-spacing:35.208000px;}
.ls14{letter-spacing:43.248000px;}
.ls33{letter-spacing:54.648000px;}
.ls4c{letter-spacing:58.464000px;}
.ls16{letter-spacing:67.608000px;}
.ls4b{letter-spacing:101.664000px;}
.ls53{letter-spacing:191.016000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-23.671440px;}
.ws19{word-spacing:-20.880000px;}
.ws18{word-spacing:-20.664000px;}
.wsc{word-spacing:-20.448000px;}
.ws16{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.232001px;}
.ws9{word-spacing:-20.232000px;}
.ws13{word-spacing:-20.231997px;}
.ws17{word-spacing:-20.160000px;}
.wsd{word-spacing:-20.088000px;}
.wsf{word-spacing:-20.016000px;}
.ws15{word-spacing:-19.944000px;}
.ws7{word-spacing:-18.938640px;}
.ws8{word-spacing:-18.794640px;}
.ws5{word-spacing:-18.636480px;}
.ws1{word-spacing:-18.613440px;}
.ws4{word-spacing:-18.604800px;}
.ws6{word-spacing:-18.007440px;}
.ws10{word-spacing:-17.999512px;}
.ws14{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.171760px;}
.ws11{word-spacing:-16.792560px;}
.ws12{word-spacing:-14.760720px;}
.wse{word-spacing:-11.734560px;}
.ws3{word-spacing:0.000000px;}
._f{margin-left:-5.136000px;}
._11{margin-left:-3.684000px;}
._e{margin-left:-2.664000px;}
._1{margin-left:-1.010880px;}
._0{width:1.195200px;}
._3{width:2.848320px;}
._7{width:4.173120px;}
._b{width:5.515200px;}
._d{width:7.405920px;}
._c{width:9.092640px;}
._a{width:10.111680px;}
._2{width:11.989440px;}
._5{width:13.656960px;}
._6{width:14.683680px;}
._13{width:16.430880px;}
._18{width:17.490240px;}
._10{width:18.696000px;}
._8{width:19.900800px;}
._9{width:20.998560px;}
._19{width:22.032000px;}
._1a{width:23.238240px;}
._4{width:24.243840px;}
._22{width:25.248960px;}
._1c{width:26.496000px;}
._1d{width:27.748800px;}
._28{width:28.754400px;}
._23{width:30.816000px;}
._14{width:32.328000px;}
._15{width:33.384000px;}
._1b{width:34.992000px;}
._20{width:36.432000px;}
._21{width:37.900800px;}
._29{width:41.652000px;}
._12{width:42.912000px;}
._2c{width:50.052000px;}
._2b{width:51.840000px;}
._24{width:54.504000px;}
._25{width:56.796000px;}
._1e{width:58.752000px;}
._1f{width:59.752800px;}
._17{width:67.188000px;}
._16{width:68.266080px;}
._27{width:86.736000px;}
._2a{width:137.232000px;}
._31{width:143.728800px;}
._30{width:145.200000px;}
._32{width:146.772000px;}
._2e{width:189.862560px;}
._2d{width:191.136000px;}
._26{width:729.076225px;}
._33{width:841.411200px;}
._2f{width:2222.136000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,32,96);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs9{font-size:66.238203px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:71.998047px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:4.319903px;}
.ya2{bottom:4.319915px;}
.y7a{bottom:4.499880px;}
.y7c{bottom:4.499884px;}
.y7e{bottom:4.499911px;}
.y9e{bottom:9.539743px;}
.ya0{bottom:9.539747px;}
.y8d{bottom:9.719738px;}
.y8f{bottom:9.719742px;}
.y86{bottom:19.979460px;}
.y88{bottom:19.979464px;}
.y80{bottom:20.159455px;}
.y82{bottom:20.159459px;}
.y8a{bottom:35.459071px;}
.y84{bottom:35.639066px;}
.ya9{bottom:40.138832px;}
.y5{bottom:46.656000px;}
.y4{bottom:70.416000px;}
.y3{bottom:93.636000px;}
.y2{bottom:114.516000px;}
.y1{bottom:134.316000px;}
.y28{bottom:152.310000px;}
.ye5{bottom:162.930000px;}
.yc4{bottom:163.290000px;}
.y27{bottom:173.910000px;}
.y4d{bottom:176.970000px;}
.y26{bottom:178.410000px;}
.y6c{bottom:178.770000px;}
.yb0{bottom:180.210000px;}
.y73{bottom:183.810000px;}
.ye4{bottom:193.890000px;}
.yc3{bottom:194.250000px;}
.y25{bottom:194.970000px;}
.y4c{bottom:207.930000px;}
.y6b{bottom:209.730000px;}
.yaf{bottom:211.170000px;}
.y72{bottom:214.770000px;}
.ye3{bottom:224.850000px;}
.yc2{bottom:225.210000px;}
.y4b{bottom:238.890000px;}
.y6a{bottom:240.690000px;}
.yae{bottom:242.130000px;}
.y24{bottom:242.850000px;}
.y71{bottom:245.910000px;}
.ye2{bottom:255.990000px;}
.yc1{bottom:256.170000px;}
.y4a{bottom:269.850000px;}
.y23{bottom:271.290000px;}
.y69{bottom:271.650000px;}
.yad{bottom:273.090000px;}
.y70{bottom:276.870000px;}
.ye1{bottom:286.995000px;}
.yc0{bottom:287.175000px;}
.y22{bottom:299.775000px;}
.y49{bottom:301.035000px;}
.yac{bottom:302.475000px;}
.y68{bottom:302.655000px;}
.y6f{bottom:307.875000px;}
.ye0{bottom:317.955000px;}
.ybf{bottom:318.135000px;}
.y21{bottom:328.215000px;}
.y48{bottom:331.995000px;}
.y67{bottom:333.615000px;}
.y6e{bottom:338.835000px;}
.ydf{bottom:348.915000px;}
.ybe{bottom:349.095000px;}
.yab{bottom:354.135000px;}
.y20{bottom:356.655000px;}
.y47{bottom:362.955000px;}
.y66{bottom:364.575000px;}
.y6d{bottom:367.995000px;}
.yaa{bottom:376.815000px;}
.y74{bottom:378.183075px;}
.yde{bottom:379.875000px;}
.ybd{bottom:380.235000px;}
.y1f{bottom:384.915000px;}
.y46{bottom:393.915000px;}
.y65{bottom:395.715000px;}
.ydd{bottom:410.835000px;}
.ybc{bottom:411.195000px;}
.y1e{bottom:413.355000px;}
.y45{bottom:424.875000px;}
.y64{bottom:426.675000px;}
.yc6{bottom:429.015000px;}
.ya8{bottom:437.437348px;}
.ya7{bottom:437.437381px;}
.ya6{bottom:437.437387px;}
.y1d{bottom:441.795000px;}
.ydc{bottom:441.975000px;}
.ybb{bottom:442.155000px;}
.y44{bottom:455.835000px;}
.y63{bottom:457.635000px;}
.yc5{bottom:461.955000px;}
.y1c{bottom:470.235000px;}
.ydb{bottom:472.935000px;}
.ya5{bottom:473.076382px;}
.ya4{bottom:473.076414px;}
.ya3{bottom:473.076420px;}
.yba{bottom:473.115000px;}
.y78{bottom:485.368756px;}
.y43{bottom:486.795000px;}
.y62{bottom:488.595000px;}
.y1b{bottom:498.675000px;}
.yda{bottom:503.895000px;}
.yb9{bottom:504.075000px;}
.y77{bottom:506.068194px;}
.ya1{bottom:508.715415px;}
.y9f{bottom:508.715448px;}
.y9d{bottom:508.715454px;}
.y42{bottom:517.935000px;}
.y61{bottom:519.555000px;}
.y76{bottom:526.767633px;}
.y1a{bottom:526.935000px;}
.yd9{bottom:534.855000px;}
.yb8{bottom:535.035000px;}
.y9c{bottom:544.180453px;}
.y9b{bottom:544.180486px;}
.y9a{bottom:544.180492px;}
.y75{bottom:547.467072px;}
.y41{bottom:548.895000px;}
.y60{bottom:550.515000px;}
.y19{bottom:555.375000px;}
.yd8{bottom:565.845000px;}
.yb7{bottom:566.025000px;}
.y99{bottom:579.819486px;}
.y98{bottom:579.819519px;}
.y97{bottom:579.819525px;}
.y40{bottom:579.885000px;}
.y5f{bottom:581.685000px;}
.y18{bottom:583.845000px;}
.yd7{bottom:596.805000px;}
.yb6{bottom:597.165000px;}
.y3f{bottom:610.845000px;}
.y17{bottom:612.285000px;}
.y5e{bottom:612.645000px;}
.y96{bottom:615.458520px;}
.y95{bottom:615.458553px;}
.y94{bottom:615.458558px;}
.yd6{bottom:627.765000px;}
.yb5{bottom:628.125000px;}
.y3e{bottom:635.865000px;}
.y16{bottom:640.725000px;}
.y5d{bottom:643.605000px;}
.y93{bottom:651.127552px;}
.y92{bottom:651.127585px;}
.y91{bottom:651.127591px;}
.y3d{bottom:657.465000px;}
.yd5{bottom:658.905000px;}
.yb4{bottom:659.085000px;}
.y15{bottom:668.985000px;}
.y5c{bottom:674.565000px;}
.y3c{bottom:683.925000px;}
.y90{bottom:686.766586px;}
.y8e{bottom:686.766618px;}
.y8c{bottom:686.766624px;}
.yb3{bottom:688.245000px;}
.yd4{bottom:689.865000px;}
.y14{bottom:697.425000px;}
.y5b{bottom:705.525000px;}
.y3b{bottom:712.365000px;}
.yb2{bottom:714.165000px;}
.yd3{bottom:720.825000px;}
.y89{bottom:722.405619px;}
.y87{bottom:722.405652px;}
.y85{bottom:722.405658px;}
.y13{bottom:725.865000px;}
.y5a{bottom:736.485000px;}
.yb1{bottom:739.905000px;}
.y3a{bottom:740.805000px;}
.yd2{bottom:751.785000px;}
.y12{bottom:754.305000px;}
.y59{bottom:767.445000px;}
.y39{bottom:769.065000px;}
.y83{bottom:778.564096px;}
.y81{bottom:778.564129px;}
.y7f{bottom:778.564135px;}
.yd1{bottom:782.745000px;}
.y11{bottom:785.085000px;}
.y38{bottom:797.505000px;}
.y58{bottom:798.585000px;}
.yd0{bottom:813.705000px;}
.y10{bottom:819.825000px;}
.y37{bottom:825.945000px;}
.y57{bottom:829.545000px;}
.y7d{bottom:834.902568px;}
.y7b{bottom:834.902601px;}
.y79{bottom:834.902606px;}
.ycf{bottom:844.665000px;}
.yf{bottom:852.270000px;}
.y36{bottom:854.430000px;}
.y56{bottom:860.550000px;}
.yce{bottom:875.850000px;}
.y35{bottom:882.870000px;}
.yd{bottom:888.450000px;}
.y55{bottom:891.510000px;}
.ye{bottom:896.730000px;}
.ycd{bottom:906.810000px;}
.y34{bottom:911.130000px;}
.y54{bottom:922.470000px;}
.yc{bottom:924.450000px;}
.ycc{bottom:937.770000px;}
.y33{bottom:939.570000px;}
.y53{bottom:953.430000px;}
.yb{bottom:959.370000px;}
.y32{bottom:968.010000px;}
.ycb{bottom:968.730000px;}
.y52{bottom:984.390000px;}
.ya{bottom:990.330000px;}
.y31{bottom:996.450000px;}
.yca{bottom:999.150000px;}
.y51{bottom:1015.530000px;}
.y9{bottom:1021.290000px;}
.y30{bottom:1024.890000px;}
.yc9{bottom:1030.110000px;}
.y50{bottom:1046.490000px;}
.y8{bottom:1052.250000px;}
.y2f{bottom:1053.150000px;}
.yc8{bottom:1066.290000px;}
.y4f{bottom:1077.450000px;}
.y2e{bottom:1081.590000px;}
.y7{bottom:1083.210000px;}
.yc7{bottom:1102.470000px;}
.y4e{bottom:1108.410000px;}
.y2d{bottom:1110.030000px;}
.y6{bottom:1114.170000px;}
.y2c{bottom:1135.980000px;}
.y2b{bottom:1157.580000px;}
.y2a{bottom:1179.540000px;}
.y29{bottom:1202.760000px;}
.he{height:20.735439px;}
.hf{height:20.735443px;}
.h10{height:20.735470px;}
.h1e{height:30.959162px;}
.h1f{height:30.959166px;}
.h20{height:30.959193px;}
.h18{height:31.139157px;}
.h19{height:31.139161px;}
.h1a{height:31.139188px;}
.h1b{height:31.175156px;}
.h1c{height:31.175160px;}
.h1d{height:31.175187px;}
.h9{height:40.550625px;}
.h7{height:47.325937px;}
.h4{height:47.988281px;}
.h15{height:51.658601px;}
.h16{height:51.658605px;}
.h17{height:51.658632px;}
.h11{height:51.838596px;}
.h12{height:51.838600px;}
.h13{height:51.838627px;}
.hb{height:55.324688px;}
.h25{height:56.146289px;}
.h3{height:61.323750px;}
.ha{height:61.423863px;}
.h2{height:62.327813px;}
.h14{height:63.033447px;}
.h22{height:63.492188px;}
.h21{height:65.882432px;}
.h5{height:66.656250px;}
.h8{height:69.086250px;}
.hd{height:70.662146px;}
.h24{height:74.004654px;}
.h23{height:75.093750px;}
.h6{height:77.987812px;}
.h26{height:86.585445px;}
.hc{height:563.666633px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:25.739377px;}
.w8{width:25.739378px;}
.w6{width:86.253909px;}
.w9{width:86.253910px;}
.w7{width:497.717930px;}
.wa{width:497.717931px;}
.w4{width:620.879963px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:1.079974px;}
.xe{left:4.499891px;}
.x1{left:127.655987px;}
.x17{left:153.569987px;}
.x5{left:170.129987px;}
.x8{left:175.529987px;}
.x6{left:180.749987px;}
.xd{left:183.164980px;}
.xf{left:186.584900px;}
.xc{left:189.569987px;}
.x1b{left:191.369987px;}
.x13{left:194.609987px;}
.x1c{left:202.169987px;}
.x9{left:215.309987px;}
.x19{left:244.649987px;}
.x1a{left:255.269987px;}
.x11{left:303.078075px;}
.x7{left:343.694987px;}
.x14{left:412.634987px;}
.x18{left:423.074987px;}
.x3{left:467.174973px;}
.x2{left:472.244987px;}
.x4{left:473.684987px;}
.x15{left:499.244987px;}
.x21{left:523.544987px;}
.xb{left:591.584987px;}
.x20{left:597.344987px;}
.x25{left:607.424987px;}
.x16{left:610.844987px;}
.xa{left:619.124987px;}
.x22{left:623.624987px;}
.x24{left:665.069987px;}
.x1e{left:675.869987px;}
.x26{left:680.009987px;}
.x1d{left:686.849987px;}
.x23{left:707.549987px;}
.x12{left:805.289987px;}
.x1f{left:816.989987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls43{letter-spacing:-0.896000pt;}
.ls54{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.538667pt;}
.ls17{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.191995pt;}
.ls5{letter-spacing:-0.184533pt;}
.ls31{letter-spacing:-0.128000pt;}
.ls5a{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls42{letter-spacing:-0.000003pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000001pt;}
.ls9{letter-spacing:0.020480pt;}
.ls37{letter-spacing:0.056533pt;}
.ls28{letter-spacing:0.064000pt;}
.ls44{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls21{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.271360pt;}
.lsa{letter-spacing:0.289067pt;}
.ls34{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.337067pt;}
.ls59{letter-spacing:0.384000pt;}
.ls3c{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.448000pt;}
.ls4d{letter-spacing:0.576000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls4e{letter-spacing:0.682667pt;}
.lsf{letter-spacing:0.698667pt;}
.ls47{letter-spacing:0.704000pt;}
.ls8{letter-spacing:0.734720pt;}
.ls50{letter-spacing:0.768000pt;}
.ls3b{letter-spacing:0.832000pt;}
.ls32{letter-spacing:0.896000pt;}
.ls6{letter-spacing:0.911360pt;}
.ls1e{letter-spacing:1.216000pt;}
.ls3d{letter-spacing:1.472000pt;}
.ls1d{letter-spacing:1.856000pt;}
.ls52{letter-spacing:2.112000pt;}
.ls2b{letter-spacing:2.496000pt;}
.ls3e{letter-spacing:2.752000pt;}
.ls27{letter-spacing:3.136000pt;}
.lsc{letter-spacing:3.776000pt;}
.ls55{letter-spacing:4.672000pt;}
.lsd{letter-spacing:5.056000pt;}
.ls38{letter-spacing:5.216000pt;}
.ls56{letter-spacing:5.312000pt;}
.ls45{letter-spacing:5.696000pt;}
.ls4a{letter-spacing:5.961387pt;}
.ls49{letter-spacing:6.976000pt;}
.ls39{letter-spacing:7.872000pt;}
.ls58{letter-spacing:8.512000pt;}
.ls3a{letter-spacing:8.896000pt;}
.ls1{letter-spacing:9.054720pt;}
.ls2f{letter-spacing:9.536000pt;}
.ls23{letter-spacing:9.854720pt;}
.ls1c{letter-spacing:10.176000pt;}
.ls1a{letter-spacing:10.816000pt;}
.lsb{letter-spacing:11.520000pt;}
.ls2e{letter-spacing:12.096000pt;}
.ls24{letter-spacing:12.254720pt;}
.ls19{letter-spacing:13.376000pt;}
.ls4f{letter-spacing:14.208000pt;}
.ls29{letter-spacing:14.896640pt;}
.ls15{letter-spacing:15.296000pt;}
.ls20{letter-spacing:17.216000pt;}
.ls0{letter-spacing:17.374720pt;}
.ls57{letter-spacing:17.472000pt;}
.ls1f{letter-spacing:17.856000pt;}
.ls46{letter-spacing:19.136000pt;}
.ls1b{letter-spacing:19.776000pt;}
.ls30{letter-spacing:20.416000pt;}
.ls48{letter-spacing:21.056000pt;}
.ls3f{letter-spacing:21.696000pt;}
.ls2c{letter-spacing:22.400000pt;}
.ls41{letter-spacing:22.976000pt;}
.ls26{letter-spacing:24.298667pt;}
.ls40{letter-spacing:24.896000pt;}
.ls2d{letter-spacing:27.456000pt;}
.ls51{letter-spacing:28.512000pt;}
.ls25{letter-spacing:31.296000pt;}
.ls14{letter-spacing:38.442667pt;}
.ls33{letter-spacing:48.576000pt;}
.ls4c{letter-spacing:51.968000pt;}
.ls16{letter-spacing:60.096000pt;}
.ls4b{letter-spacing:90.368000pt;}
.ls53{letter-spacing:169.792000pt;}
.ws0{word-spacing:-21.041280pt;}
.ws19{word-spacing:-18.560000pt;}
.ws18{word-spacing:-18.368000pt;}
.wsc{word-spacing:-18.176000pt;}
.ws16{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.984001pt;}
.ws9{word-spacing:-17.984000pt;}
.ws13{word-spacing:-17.983997pt;}
.ws17{word-spacing:-17.920000pt;}
.wsd{word-spacing:-17.856000pt;}
.wsf{word-spacing:-17.792000pt;}
.ws15{word-spacing:-17.728000pt;}
.ws7{word-spacing:-16.834347pt;}
.ws8{word-spacing:-16.706347pt;}
.ws5{word-spacing:-16.565760pt;}
.ws1{word-spacing:-16.545280pt;}
.ws4{word-spacing:-16.537600pt;}
.ws6{word-spacing:-16.006613pt;}
.ws10{word-spacing:-15.999566pt;}
.ws14{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.263787pt;}
.ws11{word-spacing:-14.926720pt;}
.ws12{word-spacing:-13.120640pt;}
.wse{word-spacing:-10.430720pt;}
.ws3{word-spacing:0.000000pt;}
._f{margin-left:-4.565333pt;}
._11{margin-left:-3.274667pt;}
._e{margin-left:-2.368000pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.062400pt;}
._3{width:2.531840pt;}
._7{width:3.709440pt;}
._b{width:4.902400pt;}
._d{width:6.583040pt;}
._c{width:8.082347pt;}
._a{width:8.988160pt;}
._2{width:10.657280pt;}
._5{width:12.139520pt;}
._6{width:13.052160pt;}
._13{width:14.605227pt;}
._18{width:15.546880pt;}
._10{width:16.618667pt;}
._8{width:17.689600pt;}
._9{width:18.665387pt;}
._19{width:19.584000pt;}
._1a{width:20.656213pt;}
._4{width:21.550080pt;}
._22{width:22.443520pt;}
._1c{width:23.552000pt;}
._1d{width:24.665600pt;}
._28{width:25.559467pt;}
._23{width:27.392000pt;}
._14{width:28.736000pt;}
._15{width:29.674667pt;}
._1b{width:31.104000pt;}
._20{width:32.384000pt;}
._21{width:33.689600pt;}
._29{width:37.024000pt;}
._12{width:38.144000pt;}
._2c{width:44.490667pt;}
._2b{width:46.080000pt;}
._24{width:48.448000pt;}
._25{width:50.485333pt;}
._1e{width:52.224000pt;}
._1f{width:53.113600pt;}
._17{width:59.722667pt;}
._16{width:60.680960pt;}
._27{width:77.098667pt;}
._2a{width:121.984000pt;}
._31{width:127.758933pt;}
._30{width:129.066667pt;}
._32{width:130.464000pt;}
._2e{width:168.766720pt;}
._2d{width:169.898667pt;}
._26{width:648.067756pt;}
._33{width:747.921067pt;}
._2f{width:1975.232000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs9{font-size:58.878403pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:63.998264pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:3.839914pt;}
.ya2{bottom:3.839925pt;}
.y7a{bottom:3.999893pt;}
.y7c{bottom:3.999896pt;}
.y7e{bottom:3.999920pt;}
.y9e{bottom:8.479771pt;}
.ya0{bottom:8.479775pt;}
.y8d{bottom:8.639767pt;}
.y8f{bottom:8.639771pt;}
.y86{bottom:17.759520pt;}
.y88{bottom:17.759523pt;}
.y80{bottom:17.919515pt;}
.y82{bottom:17.919519pt;}
.y8a{bottom:31.519174pt;}
.y84{bottom:31.679170pt;}
.ya9{bottom:35.678962pt;}
.y5{bottom:41.472000pt;}
.y4{bottom:62.592000pt;}
.y3{bottom:83.232000pt;}
.y2{bottom:101.792000pt;}
.y1{bottom:119.392000pt;}
.y28{bottom:135.386667pt;}
.ye5{bottom:144.826667pt;}
.yc4{bottom:145.146667pt;}
.y27{bottom:154.586667pt;}
.y4d{bottom:157.306667pt;}
.y26{bottom:158.586667pt;}
.y6c{bottom:158.906667pt;}
.yb0{bottom:160.186667pt;}
.y73{bottom:163.386667pt;}
.ye4{bottom:172.346667pt;}
.yc3{bottom:172.666667pt;}
.y25{bottom:173.306667pt;}
.y4c{bottom:184.826667pt;}
.y6b{bottom:186.426667pt;}
.yaf{bottom:187.706667pt;}
.y72{bottom:190.906667pt;}
.ye3{bottom:199.866667pt;}
.yc2{bottom:200.186667pt;}
.y4b{bottom:212.346667pt;}
.y6a{bottom:213.946667pt;}
.yae{bottom:215.226667pt;}
.y24{bottom:215.866667pt;}
.y71{bottom:218.586667pt;}
.ye2{bottom:227.546667pt;}
.yc1{bottom:227.706667pt;}
.y4a{bottom:239.866667pt;}
.y23{bottom:241.146667pt;}
.y69{bottom:241.466667pt;}
.yad{bottom:242.746667pt;}
.y70{bottom:246.106667pt;}
.ye1{bottom:255.106667pt;}
.yc0{bottom:255.266667pt;}
.y22{bottom:266.466667pt;}
.y49{bottom:267.586667pt;}
.yac{bottom:268.866667pt;}
.y68{bottom:269.026667pt;}
.y6f{bottom:273.666667pt;}
.ye0{bottom:282.626667pt;}
.ybf{bottom:282.786667pt;}
.y21{bottom:291.746667pt;}
.y48{bottom:295.106667pt;}
.y67{bottom:296.546667pt;}
.y6e{bottom:301.186667pt;}
.ydf{bottom:310.146667pt;}
.ybe{bottom:310.306667pt;}
.yab{bottom:314.786667pt;}
.y20{bottom:317.026667pt;}
.y47{bottom:322.626667pt;}
.y66{bottom:324.066667pt;}
.y6d{bottom:327.106667pt;}
.yaa{bottom:334.946667pt;}
.y74{bottom:336.162733pt;}
.yde{bottom:337.666667pt;}
.ybd{bottom:337.986667pt;}
.y1f{bottom:342.146667pt;}
.y46{bottom:350.146667pt;}
.y65{bottom:351.746667pt;}
.ydd{bottom:365.186667pt;}
.ybc{bottom:365.506667pt;}
.y1e{bottom:367.426667pt;}
.y45{bottom:377.666667pt;}
.y64{bottom:379.266667pt;}
.yc6{bottom:381.346667pt;}
.ya8{bottom:388.833198pt;}
.ya7{bottom:388.833228pt;}
.ya6{bottom:388.833233pt;}
.y1d{bottom:392.706667pt;}
.ydc{bottom:392.866667pt;}
.ybb{bottom:393.026667pt;}
.y44{bottom:405.186667pt;}
.y63{bottom:406.786667pt;}
.yc5{bottom:410.626667pt;}
.y1c{bottom:417.986667pt;}
.ydb{bottom:420.386667pt;}
.ya5{bottom:420.512339pt;}
.ya4{bottom:420.512368pt;}
.ya3{bottom:420.512373pt;}
.yba{bottom:420.546667pt;}
.y78{bottom:431.438894pt;}
.y43{bottom:432.706667pt;}
.y62{bottom:434.306667pt;}
.y1b{bottom:443.266667pt;}
.yda{bottom:447.906667pt;}
.yb9{bottom:448.066667pt;}
.y77{bottom:449.838395pt;}
.ya1{bottom:452.191480pt;}
.y9f{bottom:452.191509pt;}
.y9d{bottom:452.191514pt;}
.y42{bottom:460.386667pt;}
.y61{bottom:461.826667pt;}
.y76{bottom:468.237896pt;}
.y1a{bottom:468.386667pt;}
.yd9{bottom:475.426667pt;}
.yb8{bottom:475.586667pt;}
.y9c{bottom:483.715958pt;}
.y9b{bottom:483.715987pt;}
.y9a{bottom:483.715993pt;}
.y75{bottom:486.637397pt;}
.y41{bottom:487.906667pt;}
.y60{bottom:489.346667pt;}
.y19{bottom:493.666667pt;}
.yd8{bottom:502.973333pt;}
.yb7{bottom:503.133333pt;}
.y99{bottom:515.395099pt;}
.y98{bottom:515.395128pt;}
.y97{bottom:515.395133pt;}
.y40{bottom:515.453333pt;}
.y5f{bottom:517.053333pt;}
.y18{bottom:518.973333pt;}
.yd7{bottom:530.493333pt;}
.yb6{bottom:530.813333pt;}
.y3f{bottom:542.973333pt;}
.y17{bottom:544.253333pt;}
.y5e{bottom:544.573333pt;}
.y96{bottom:547.074240pt;}
.y95{bottom:547.074269pt;}
.y94{bottom:547.074274pt;}
.yd6{bottom:558.013333pt;}
.yb5{bottom:558.333333pt;}
.y3e{bottom:565.213333pt;}
.y16{bottom:569.533333pt;}
.y5d{bottom:572.093333pt;}
.y93{bottom:578.780047pt;}
.y92{bottom:578.780076pt;}
.y91{bottom:578.780081pt;}
.y3d{bottom:584.413333pt;}
.yd5{bottom:585.693333pt;}
.yb4{bottom:585.853333pt;}
.y15{bottom:594.653333pt;}
.y5c{bottom:599.613333pt;}
.y3c{bottom:607.933333pt;}
.y90{bottom:610.459187pt;}
.y8e{bottom:610.459216pt;}
.y8c{bottom:610.459222pt;}
.yb3{bottom:611.773333pt;}
.yd4{bottom:613.213333pt;}
.y14{bottom:619.933333pt;}
.y5b{bottom:627.133333pt;}
.y3b{bottom:633.213333pt;}
.yb2{bottom:634.813333pt;}
.yd3{bottom:640.733333pt;}
.y89{bottom:642.138328pt;}
.y87{bottom:642.138357pt;}
.y85{bottom:642.138362pt;}
.y13{bottom:645.213333pt;}
.y5a{bottom:654.653333pt;}
.yb1{bottom:657.693333pt;}
.y3a{bottom:658.493333pt;}
.yd2{bottom:668.253333pt;}
.y12{bottom:670.493333pt;}
.y59{bottom:682.173333pt;}
.y39{bottom:683.613333pt;}
.y83{bottom:692.056974pt;}
.y81{bottom:692.057003pt;}
.y7f{bottom:692.057008pt;}
.yd1{bottom:695.773333pt;}
.y11{bottom:697.853333pt;}
.y38{bottom:708.893333pt;}
.y58{bottom:709.853333pt;}
.yd0{bottom:723.293333pt;}
.y10{bottom:728.733333pt;}
.y37{bottom:734.173333pt;}
.y57{bottom:737.373333pt;}
.y7d{bottom:742.135616pt;}
.y7b{bottom:742.135645pt;}
.y79{bottom:742.135650pt;}
.ycf{bottom:750.813333pt;}
.yf{bottom:757.573333pt;}
.y36{bottom:759.493333pt;}
.y56{bottom:764.933333pt;}
.yce{bottom:778.533333pt;}
.y35{bottom:784.773333pt;}
.yd{bottom:789.733333pt;}
.y55{bottom:792.453333pt;}
.ye{bottom:797.093333pt;}
.ycd{bottom:806.053333pt;}
.y34{bottom:809.893333pt;}
.y54{bottom:819.973333pt;}
.yc{bottom:821.733333pt;}
.ycc{bottom:833.573333pt;}
.y33{bottom:835.173333pt;}
.y53{bottom:847.493333pt;}
.yb{bottom:852.773333pt;}
.y32{bottom:860.453333pt;}
.ycb{bottom:861.093333pt;}
.y52{bottom:875.013333pt;}
.ya{bottom:880.293333pt;}
.y31{bottom:885.733333pt;}
.yca{bottom:888.133333pt;}
.y51{bottom:902.693333pt;}
.y9{bottom:907.813333pt;}
.y30{bottom:911.013333pt;}
.yc9{bottom:915.653333pt;}
.y50{bottom:930.213333pt;}
.y8{bottom:935.333333pt;}
.y2f{bottom:936.133333pt;}
.yc8{bottom:947.813333pt;}
.y4f{bottom:957.733333pt;}
.y2e{bottom:961.413333pt;}
.y7{bottom:962.853333pt;}
.yc7{bottom:979.973333pt;}
.y4e{bottom:985.253333pt;}
.y2d{bottom:986.693333pt;}
.y6{bottom:990.373333pt;}
.y2c{bottom:1009.760000pt;}
.y2b{bottom:1028.960000pt;}
.y2a{bottom:1048.480000pt;}
.y29{bottom:1069.120000pt;}
.he{height:18.431502pt;}
.hf{height:18.431505pt;}
.h10{height:18.431529pt;}
.h1e{height:27.519255pt;}
.h1f{height:27.519259pt;}
.h20{height:27.519283pt;}
.h18{height:27.679251pt;}
.h19{height:27.679254pt;}
.h1a{height:27.679278pt;}
.h1b{height:27.711250pt;}
.h1c{height:27.711253pt;}
.h1d{height:27.711277pt;}
.h9{height:36.045000pt;}
.h7{height:42.067500pt;}
.h4{height:42.656250pt;}
.h15{height:45.918756pt;}
.h16{height:45.918760pt;}
.h17{height:45.918784pt;}
.h11{height:46.078752pt;}
.h12{height:46.078755pt;}
.h13{height:46.078779pt;}
.hb{height:49.177500pt;}
.h25{height:49.907812pt;}
.h3{height:54.510000pt;}
.ha{height:54.598989pt;}
.h2{height:55.402500pt;}
.h14{height:56.029730pt;}
.h22{height:56.437500pt;}
.h21{height:58.562162pt;}
.h5{height:59.250000pt;}
.h8{height:61.410000pt;}
.hd{height:62.810796pt;}
.h24{height:65.781915pt;}
.h23{height:66.750000pt;}
.h6{height:69.322500pt;}
.h26{height:76.964840pt;}
.hc{height:501.037007pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:22.879446pt;}
.w8{width:22.879447pt;}
.w6{width:76.670141pt;}
.w9{width:76.670142pt;}
.w7{width:442.415938pt;}
.wa{width:442.415939pt;}
.w4{width:551.893300pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:0.959977pt;}
.xe{left:3.999904pt;}
.x1{left:113.471988pt;}
.x17{left:136.506655pt;}
.x5{left:151.226655pt;}
.x8{left:156.026655pt;}
.x6{left:160.666655pt;}
.xd{left:162.813315pt;}
.xf{left:165.853244pt;}
.xc{left:168.506655pt;}
.x1b{left:170.106655pt;}
.x13{left:172.986655pt;}
.x1c{left:179.706655pt;}
.x9{left:191.386655pt;}
.x19{left:217.466655pt;}
.x1a{left:226.906655pt;}
.x11{left:269.402733pt;}
.x7{left:305.506655pt;}
.x14{left:366.786655pt;}
.x18{left:376.066655pt;}
.x3{left:415.266643pt;}
.x2{left:419.773322pt;}
.x4{left:421.053322pt;}
.x15{left:443.773322pt;}
.x21{left:465.373322pt;}
.xb{left:525.853322pt;}
.x20{left:530.973322pt;}
.x25{left:539.933322pt;}
.x16{left:542.973322pt;}
.xa{left:550.333322pt;}
.x22{left:554.333322pt;}
.x24{left:591.173322pt;}
.x1e{left:600.773322pt;}
.x26{left:604.453322pt;}
.x1d{left:610.533322pt;}
.x23{left:628.933322pt;}
.x12{left:715.813322pt;}
.x1f{left:726.213322pt;}
}




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