
    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_83fbe6b6ceaeed8996d47441.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.871094;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_6a0e016cffb5ef180cfa4ff4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_29164a360e86bf7096caedf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_b8e5fd8788e767df68ebed37.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.860352;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_dad07fc489b72acf94a07e74.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52a25dcb53df0d6d0e15a3a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_db5be7df365c4b9c73a1d302.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8c38f6a109d6c2079241879d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v4{vertical-align:-20.880000px;}
.v1{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v6{vertical-align:15.120000px;}
.v3{vertical-align:20.880000px;}
.ls18{letter-spacing:-0.660000px;}
.ls38{letter-spacing:-0.654000px;}
.lse{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.432000px;}
.ls4e{letter-spacing:-0.326400px;}
.ls4a{letter-spacing:-0.320400px;}
.ls33{letter-spacing:-0.315600px;}
.ls30{letter-spacing:-0.303000px;}
.ls34{letter-spacing:-0.295200px;}
.ls26{letter-spacing:-0.272400px;}
.ls3b{letter-spacing:-0.268800px;}
.ls36{letter-spacing:-0.267000px;}
.ls2d{letter-spacing:-0.248400px;}
.ls19{letter-spacing:-0.240600px;}
.ls2c{letter-spacing:-0.228000px;}
.lsb{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.211800px;}
.lsa{letter-spacing:-0.210000px;}
.ls48{letter-spacing:-0.204600px;}
.lsc{letter-spacing:-0.172200px;}
.ls5b{letter-spacing:-0.169800px;}
.lsf{letter-spacing:-0.108000px;}
.ls4c{letter-spacing:-0.107400px;}
.ls39{letter-spacing:-0.069600px;}
.ls17{letter-spacing:-0.064800px;}
.ls29{letter-spacing:-0.058320px;}
.ls49{letter-spacing:-0.045360px;}
.ls2b{letter-spacing:-0.041040px;}
.ls5a{letter-spacing:-0.033120px;}
.ls2a{letter-spacing:-0.032400px;}
.ls47{letter-spacing:-0.018720px;}
.ls9{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.002160px;}
.ls35{letter-spacing:0.018720px;}
.ls52{letter-spacing:0.022320px;}
.ls28{letter-spacing:0.025200px;}
.ls0{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.038880px;}
.ls3{letter-spacing:0.060480px;}
.ls12{letter-spacing:0.060600px;}
.ls2f{letter-spacing:0.064200px;}
.ls23{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.070560px;}
.ls1e{letter-spacing:0.074880px;}
.ls31{letter-spacing:0.075000px;}
.ls8{letter-spacing:0.076800px;}
.ls1b{letter-spacing:0.077760px;}
.ls16{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.157200px;}
.ls24{letter-spacing:0.174000px;}
.ls4{letter-spacing:0.174240px;}
.ls21{letter-spacing:0.175200px;}
.ls58{letter-spacing:0.179280px;}
.lsd{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.182880px;}
.ls14{letter-spacing:0.186600px;}
.ls25{letter-spacing:0.209400px;}
.ls10{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls4f{letter-spacing:0.283800px;}
.ls5d{letter-spacing:0.288000px;}
.ls5c{letter-spacing:0.288600px;}
.ls57{letter-spacing:0.303000px;}
.ls2{letter-spacing:0.306000px;}
.ls54{letter-spacing:0.357000px;}
.ls1d{letter-spacing:0.447840px;}
.ls50{letter-spacing:0.479400px;}
.ls59{letter-spacing:0.479520px;}
.ls3c{letter-spacing:0.614880px;}
.ls4b{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.667440px;}
.ls41{letter-spacing:0.722160px;}
.ls2e{letter-spacing:0.744000px;}
.ls3a{letter-spacing:0.780000px;}
.ls37{letter-spacing:0.792000px;}
.ls20{letter-spacing:0.803520px;}
.ls1a{letter-spacing:0.972000px;}
.ls3d{letter-spacing:1.728000px;}
.ls42{letter-spacing:2.334240px;}
.ls4d{letter-spacing:4.494000px;}
.ls3f{letter-spacing:7.817760px;}
.ls3e{letter-spacing:8.208000px;}
.ls27{letter-spacing:8.820000px;}
.ls55{letter-spacing:8.928000px;}
.ls40{letter-spacing:9.534240px;}
.ls1f{letter-spacing:10.697760px;}
.ls46{letter-spacing:14.580000px;}
.ls44{letter-spacing:18.174240px;}
.ls45{letter-spacing:18.894240px;}
.ls51{letter-spacing:20.334240px;}
.ls1{letter-spacing:32.520000px;}
.ls5{letter-spacing:32.544000px;}
.ls56{letter-spacing:53.568000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.195440px;}
.ws2{word-spacing:-19.115040px;}
.ws0{word-spacing:-19.038240px;}
.ws9{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.056000px;}
.ws11{word-spacing:-14.477760px;}
.ws26{word-spacing:-14.297760px;}
.ws1b{word-spacing:-14.249760px;}
.ws2b{word-spacing:-14.165760px;}
.ws2e{word-spacing:-13.862760px;}
.wsb{word-spacing:-13.811760px;}
.ws30{word-spacing:-13.808760px;}
.wse{word-spacing:-13.757760px;}
.ws13{word-spacing:-13.715160px;}
.wsd{word-spacing:-13.692360px;}
.ws31{word-spacing:-13.685040px;}
.wsf{word-spacing:-13.646160px;}
.ws1e{word-spacing:-13.580760px;}
.ws1c{word-spacing:-13.569960px;}
.ws2c{word-spacing:-13.566360px;}
.wsc{word-spacing:-13.544640px;}
.ws15{word-spacing:-13.530960px;}
.ws4{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.473360px;}
.ws18{word-spacing:-13.464720px;}
.ws16{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.440960px;}
.ws27{word-spacing:-13.436160px;}
.ws32{word-spacing:-13.398360px;}
.ws2f{word-spacing:-13.335960px;}
.ws5{word-spacing:-13.333560px;}
.ws1a{word-spacing:-13.265160px;}
.ws19{word-spacing:-13.257360px;}
.ws28{word-spacing:-13.236960px;}
.ws1d{word-spacing:-13.202760px;}
.ws7{word-spacing:-12.096000px;}
.ws24{word-spacing:-10.920960px;}
.ws21{word-spacing:-10.902240px;}
.ws2d{word-spacing:-10.869120px;}
.ws29{word-spacing:-10.697640px;}
.ws25{word-spacing:-10.635240px;}
.ws23{word-spacing:-10.607040px;}
.ws20{word-spacing:-10.586640px;}
.ws2a{word-spacing:-10.581840px;}
.ws6{word-spacing:-8.786880px;}
.ws14{word-spacing:-8.514480px;}
.ws8{word-spacing:-8.136000px;}
.ws22{word-spacing:-6.834240px;}
.ws1f{word-spacing:-6.622440px;}
.ws12{word-spacing:0.000000px;}
._0{margin-left:-1.242000px;}
._1{width:1.548000px;}
._3{width:3.518640px;}
._2{width:4.541760px;}
._6{width:5.856480px;}
._7{width:7.412640px;}
._10{width:8.459520px;}
._8{width:9.594240px;}
._22{width:10.631760px;}
._c{width:11.653200px;}
._1e{width:13.228320px;}
._12{width:15.179040px;}
._1f{width:16.188000px;}
._a{width:17.286960px;}
._9{width:18.764640px;}
._b{width:19.840320px;}
._15{width:21.394080px;}
._4{width:22.410000px;}
._5{width:24.143040px;}
._18{width:25.382880px;}
._23{width:26.936640px;}
._f{width:28.033200px;}
._e{width:29.103120px;}
._11{width:30.379440px;}
._1c{width:31.852080px;}
._1a{width:33.562800px;}
._19{width:34.899840px;}
._14{width:36.274320px;}
._29{width:37.350000px;}
._28{width:38.396640px;}
._21{width:39.566880px;}
._13{width:41.294160px;}
._1b{width:44.521200px;}
._d{width:46.095600px;}
._20{width:47.706480px;}
._16{width:49.780080px;}
._17{width:50.898240px;}
._26{width:52.247520px;}
._27{width:53.863920px;}
._25{width:59.012640px;}
._24{width:60.178320px;}
._2a{width:74.042640px;}
._2b{width:75.853440px;}
._1d{width:175.037040px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:50.848916px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y98{bottom:113.796000px;}
.yb4{bottom:117.756000px;}
.y48{bottom:122.256000px;}
.y33{bottom:124.956000px;}
.y130{bottom:125.676000px;}
.y109{bottom:127.296000px;}
.y6e{bottom:128.376000px;}
.y97{bottom:132.156000px;}
.yb3{bottom:136.116000px;}
.y32{bottom:143.316000px;}
.y12f{bottom:144.036000px;}
.yde{bottom:144.576000px;}
.y6d{bottom:146.736000px;}
.y96{bottom:150.330000px;}
.y47{bottom:150.870000px;}
.yb2{bottom:154.470000px;}
.y108{bottom:155.190000px;}
.y31{bottom:161.670000px;}
.y12e{bottom:162.210000px;}
.ydd{bottom:162.750000px;}
.y95{bottom:168.690000px;}
.y46{bottom:169.230000px;}
.y6c{bottom:171.750000px;}
.yb1{bottom:172.650000px;}
.y107{bottom:173.370000px;}
.y30{bottom:179.850000px;}
.y12d{bottom:180.570000px;}
.ydc{bottom:181.110000px;}
.y94{bottom:187.050000px;}
.y45{bottom:187.410000px;}
.y6b{bottom:190.650000px;}
.yb0{bottom:191.010000px;}
.y106{bottom:191.730000px;}
.y12c{bottom:198.930000px;}
.ydb{bottom:199.470000px;}
.y93{bottom:205.410000px;}
.y2f{bottom:205.770000px;}
.yaf{bottom:209.370000px;}
.y105{bottom:210.090000px;}
.yda{bottom:217.830000px;}
.y92{bottom:223.590000px;}
.y44{bottom:223.950000px;}
.y2e{bottom:224.130000px;}
.y12b{bottom:224.670000px;}
.yae{bottom:227.730000px;}
.y104{bottom:228.450000px;}
.yd9{bottom:236.010000px;}
.y91{bottom:241.950000px;}
.y2d{bottom:242.310000px;}
.y12a{bottom:243.030000px;}
.yad{bottom:245.910000px;}
.y103{bottom:246.630000px;}
.y43{bottom:250.770000px;}
.yd8{bottom:254.370000px;}
.y90{bottom:260.310000px;}
.y2c{bottom:260.670000px;}
.y129{bottom:261.390000px;}
.yac{bottom:264.270000px;}
.y102{bottom:264.990000px;}
.y8f{bottom:278.670000px;}
.y2b{bottom:279.030000px;}
.y42{bottom:279.390000px;}
.y128{bottom:279.570000px;}
.yd7{bottom:281.010000px;}
.y101{bottom:283.350000px;}
.yab{bottom:290.955000px;}
.y8e{bottom:296.895000px;}
.y2a{bottom:297.435000px;}
.y41{bottom:297.795000px;}
.y100{bottom:301.755000px;}
.y127{bottom:305.535000px;}
.yd6{bottom:309.675000px;}
.y8d{bottom:315.255000px;}
.y29{bottom:315.615000px;}
.y40{bottom:315.975000px;}
.yaa{bottom:319.575000px;}
.yff{bottom:319.935000px;}
.y126{bottom:323.895000px;}
.yd5{bottom:328.035000px;}
.y8c{bottom:333.615000px;}
.y28{bottom:333.975000px;}
.y3f{bottom:334.335000px;}
.ya9{bottom:337.935000px;}
.yfe{bottom:338.295000px;}
.y125{bottom:342.075000px;}
.yd4{bottom:346.395000px;}
.y8b{bottom:351.795000px;}
.y27{bottom:352.155000px;}
.y3e{bottom:352.695000px;}
.yfd{bottom:356.655000px;}
.y124{bottom:360.435000px;}
.ya8{bottom:362.955000px;}
.yd3{bottom:364.575000px;}
.y8a{bottom:370.155000px;}
.y3d{bottom:370.875000px;}
.yfc{bottom:374.835000px;}
.ya7{bottom:377.535000px;}
.y26{bottom:378.075000px;}
.y123{bottom:378.795000px;}
.yd2{bottom:382.935000px;}
.y89{bottom:388.515000px;}
.y3c{bottom:389.235000px;}
.ya6{bottom:392.115000px;}
.yfb{bottom:393.195000px;}
.y25{bottom:396.435000px;}
.y122{bottom:396.975000px;}
.yd1{bottom:401.295000px;}
.y88{bottom:406.875000px;}
.y3b{bottom:407.595000px;}
.ya5{bottom:411.195000px;}
.yfa{bottom:411.555000px;}
.y24{bottom:414.795000px;}
.yd0{bottom:419.475000px;}
.y121{bottom:422.895000px;}
.y87{bottom:425.055000px;}
.y3a{bottom:425.955000px;}
.yf9{bottom:429.915000px;}
.y23{bottom:432.975000px;}
.y120{bottom:441.255000px;}
.y39{bottom:444.135000px;}
.ycf{bottom:445.395000px;}
.yf8{bottom:448.095000px;}
.y86{bottom:450.975000px;}
.y22{bottom:451.335000px;}
.y11f{bottom:459.435000px;}
.y38{bottom:462.495000px;}
.yce{bottom:463.755000px;}
.yf7{bottom:466.455000px;}
.y85{bottom:469.155000px;}
.y21{bottom:469.695000px;}
.y11e{bottom:477.795000px;}
.ycd{bottom:481.935000px;}
.yf6{bottom:484.815000px;}
.y84{bottom:487.515000px;}
.y20{bottom:488.055000px;}
.y37{bottom:488.235000px;}
.y11d{bottom:495.975000px;}
.ycc{bottom:500.295000px;}
.yf5{bottom:502.995000px;}
.y83{bottom:505.875000px;}
.y1f{bottom:506.235000px;}
.y36{bottom:506.595000px;}
.ycb{bottom:518.655000px;}
.yf4{bottom:521.355000px;}
.y11c{bottom:521.895000px;}
.y82{bottom:524.055000px;}
.y35{bottom:524.955000px;}
.y1e{bottom:533.055000px;}
.yca{bottom:536.835000px;}
.y11b{bottom:540.255000px;}
.yf3{bottom:540.615000px;}
.y6a{bottom:541.155000px;}
.y34{bottom:543.315000px;}
.y81{bottom:549.255000px;}
.yc9{bottom:555.195000px;}
.y11a{bottom:558.435000px;}
.y69{bottom:559.335000px;}
.y1d{bottom:561.495000px;}
.y80{bottom:563.865000px;}
.yf2{bottom:569.265000px;}
.y68{bottom:577.725000px;}
.y7f{bottom:578.445000px;}
.y1c{bottom:579.525000px;}
.yc8{bottom:581.145000px;}
.y119{bottom:584.385000px;}
.yf1{bottom:587.445000px;}
.y7e{bottom:593.205000px;}
.y1b{bottom:595.905000px;}
.y67{bottom:596.085000px;}
.yc7{bottom:599.325000px;}
.y118{bottom:602.745000px;}
.yf0{bottom:605.805000px;}
.y7d{bottom:607.785000px;}
.y66{bottom:614.445000px;}
.yc6{bottom:617.685000px;}
.y1a{bottom:620.385000px;}
.y117{bottom:620.925000px;}
.yef{bottom:624.165000px;}
.y7c{bottom:626.685000px;}
.y65{bottom:632.625000px;}
.yc5{bottom:636.045000px;}
.y19{bottom:638.745000px;}
.y116{bottom:639.285000px;}
.yee{bottom:642.525000px;}
.ya4{bottom:648.645000px;}
.y64{bottom:650.985000px;}
.yc4{bottom:654.225000px;}
.y18{bottom:656.925000px;}
.y115{bottom:657.645000px;}
.yed{bottom:660.705000px;}
.ya3{bottom:667.005000px;}
.y63{bottom:669.345000px;}
.y17{bottom:675.285000px;}
.yec{bottom:679.065000px;}
.yc3{bottom:680.145000px;}
.y114{bottom:683.385000px;}
.ya2{bottom:685.185000px;}
.y62{bottom:687.705000px;}
.y16{bottom:693.645000px;}
.yeb{bottom:697.425000px;}
.yc2{bottom:698.505000px;}
.y113{bottom:701.745000px;}
.ya1{bottom:703.545000px;}
.y61{bottom:705.885000px;}
.y15{bottom:711.825000px;}
.yea{bottom:715.605000px;}
.yc1{bottom:716.685000px;}
.y112{bottom:720.105000px;}
.y60{bottom:724.245000px;}
.ya0{bottom:728.565000px;}
.y14{bottom:730.185000px;}
.ye9{bottom:733.965000px;}
.yc0{bottom:735.045000px;}
.y111{bottom:738.285000px;}
.y5f{bottom:742.605000px;}
.y9f{bottom:743.145000px;}
.y13{bottom:748.545000px;}
.ye8{bottom:752.325000px;}
.ybf{bottom:753.405000px;}
.y110{bottom:756.645000px;}
.y9e{bottom:757.905000px;}
.y5e{bottom:760.785000px;}
.y12{bottom:766.905000px;}
.ye7{bottom:770.685000px;}
.ybe{bottom:771.585000px;}
.y9d{bottom:772.665000px;}
.y5d{bottom:779.145000px;}
.y10f{bottom:782.565000px;}
.y11{bottom:785.085000px;}
.y9c{bottom:787.785000px;}
.ye6{bottom:788.865000px;}
.ybd{bottom:797.505000px;}
.y10e{bottom:800.745000px;}
.y9b{bottom:802.365000px;}
.y10{bottom:803.445000px;}
.y5c{bottom:805.065000px;}
.ye5{bottom:807.225000px;}
.ybc{bottom:815.865000px;}
.y10d{bottom:819.105000px;}
.y9a{bottom:821.445000px;}
.yf{bottom:821.805000px;}
.y5b{bottom:823.245000px;}
.ye4{bottom:825.585000px;}
.ybb{bottom:834.045000px;}
.y10c{bottom:837.465000px;}
.ye{bottom:840.165000px;}
.y5a{bottom:841.605000px;}
.ye3{bottom:843.810000px;}
.yba{bottom:852.450000px;}
.y10b{bottom:855.690000px;}
.yd{bottom:858.390000px;}
.y59{bottom:860.010000px;}
.y7b{bottom:863.250000px;}
.ye2{bottom:869.010000px;}
.yb9{bottom:870.810000px;}
.y10a{bottom:874.050000px;}
.yc{bottom:876.750000px;}
.y58{bottom:878.190000px;}
.y7a{bottom:881.610000px;}
.ye1{bottom:883.590000px;}
.yb8{bottom:889.170000px;}
.y57{bottom:896.550000px;}
.ye0{bottom:898.170000px;}
.y79{bottom:899.970000px;}
.yb{bottom:902.130000px;}
.yb7{bottom:907.350000px;}
.y56{bottom:914.910000px;}
.ydf{bottom:917.250000px;}
.y78{bottom:918.150000px;}
.ya{bottom:918.690000px;}
.yb6{bottom:925.710000px;}
.y55{bottom:933.270000px;}
.y9{bottom:935.070000px;}
.y77{bottom:936.510000px;}
.yb5{bottom:944.070000px;}
.y54{bottom:951.450000px;}
.y8{bottom:951.990000px;}
.y76{bottom:962.250000px;}
.y53{bottom:969.810000px;}
.y75{bottom:980.610000px;}
.y52{bottom:988.170000px;}
.y7{bottom:989.070000px;}
.y74{bottom:998.970000px;}
.y51{bottom:1006.530000px;}
.y6{bottom:1011.030000px;}
.y73{bottom:1017.330000px;}
.y50{bottom:1024.710000px;}
.y5{bottom:1033.170000px;}
.y72{bottom:1035.510000px;}
.y4f{bottom:1043.070000px;}
.y71{bottom:1053.870000px;}
.y4e{bottom:1061.430000px;}
.y4{bottom:1063.230000px;}
.y70{bottom:1072.230000px;}
.y4d{bottom:1079.610000px;}
.y3{bottom:1088.790000px;}
.y6f{bottom:1090.410000px;}
.y4c{bottom:1097.970000px;}
.y4b{bottom:1116.330000px;}
.y2{bottom:1120.110000px;}
.y4a{bottom:1134.720000px;}
.y1{bottom:1144.260000px;}
.y49{bottom:1152.900000px;}
.y99{bottom:1189.440000px;}
.hc{height:33.424102px;}
.hf{height:35.306230px;}
.h2{height:37.415039px;}
.h6{height:38.759766px;}
.hd{height:41.405977px;}
.h5{height:41.551875px;}
.h7{height:42.894141px;}
.h10{height:47.545312px;}
.he{height:47.913750px;}
.ha{height:48.787031px;}
.hb{height:49.992188px;}
.h4{height:50.062500px;}
.h9{height:51.679688px;}
.h3{height:58.573125px;}
.h8{height:74.953125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:84.960000px;}
.x9{left:106.416000px;}
.x8{left:127.656000px;}
.x2{left:148.896000px;}
.x4{left:157.350000px;}
.x5{left:174.270000px;}
.x3{left:176.250000px;}
.x1{left:268.095000px;}
.x7{left:279.075000px;}
.x11{left:359.715000px;}
.x12{left:366.375000px;}
.x6{left:376.815000px;}
.xd{left:416.055000px;}
.x14{left:420.375000px;}
.x10{left:438.555000px;}
.x13{left:440.175000px;}
.xe{left:457.125000px;}
.xa{left:478.365000px;}
.xb{left:499.605000px;}
.xf{left:789.090000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v1{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v6{vertical-align:13.440000pt;}
.v3{vertical-align:18.560000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls38{letter-spacing:-0.581333pt;}
.lse{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls4e{letter-spacing:-0.290133pt;}
.ls4a{letter-spacing:-0.284800pt;}
.ls33{letter-spacing:-0.280533pt;}
.ls30{letter-spacing:-0.269333pt;}
.ls34{letter-spacing:-0.262400pt;}
.ls26{letter-spacing:-0.242133pt;}
.ls3b{letter-spacing:-0.238933pt;}
.ls36{letter-spacing:-0.237333pt;}
.ls2d{letter-spacing:-0.220800pt;}
.ls19{letter-spacing:-0.213867pt;}
.ls2c{letter-spacing:-0.202667pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.188267pt;}
.lsa{letter-spacing:-0.186667pt;}
.ls48{letter-spacing:-0.181867pt;}
.lsc{letter-spacing:-0.153067pt;}
.ls5b{letter-spacing:-0.150933pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls4c{letter-spacing:-0.095467pt;}
.ls39{letter-spacing:-0.061867pt;}
.ls17{letter-spacing:-0.057600pt;}
.ls29{letter-spacing:-0.051840pt;}
.ls49{letter-spacing:-0.040320pt;}
.ls2b{letter-spacing:-0.036480pt;}
.ls5a{letter-spacing:-0.029440pt;}
.ls2a{letter-spacing:-0.028800pt;}
.ls47{letter-spacing:-0.016640pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.001920pt;}
.ls35{letter-spacing:0.016640pt;}
.ls52{letter-spacing:0.019840pt;}
.ls28{letter-spacing:0.022400pt;}
.ls0{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.034560pt;}
.ls3{letter-spacing:0.053760pt;}
.ls12{letter-spacing:0.053867pt;}
.ls2f{letter-spacing:0.057067pt;}
.ls23{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.062720pt;}
.ls1e{letter-spacing:0.066560pt;}
.ls31{letter-spacing:0.066667pt;}
.ls8{letter-spacing:0.068267pt;}
.ls1b{letter-spacing:0.069120pt;}
.ls16{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.139733pt;}
.ls24{letter-spacing:0.154667pt;}
.ls4{letter-spacing:0.154880pt;}
.ls21{letter-spacing:0.155733pt;}
.ls58{letter-spacing:0.159360pt;}
.lsd{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.162560pt;}
.ls14{letter-spacing:0.165867pt;}
.ls25{letter-spacing:0.186133pt;}
.ls10{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls4f{letter-spacing:0.252267pt;}
.ls5d{letter-spacing:0.256000pt;}
.ls5c{letter-spacing:0.256533pt;}
.ls57{letter-spacing:0.269333pt;}
.ls2{letter-spacing:0.272000pt;}
.ls54{letter-spacing:0.317333pt;}
.ls1d{letter-spacing:0.398080pt;}
.ls50{letter-spacing:0.426133pt;}
.ls59{letter-spacing:0.426240pt;}
.ls3c{letter-spacing:0.546560pt;}
.ls4b{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.593280pt;}
.ls41{letter-spacing:0.641920pt;}
.ls2e{letter-spacing:0.661333pt;}
.ls3a{letter-spacing:0.693333pt;}
.ls37{letter-spacing:0.704000pt;}
.ls20{letter-spacing:0.714240pt;}
.ls1a{letter-spacing:0.864000pt;}
.ls3d{letter-spacing:1.536000pt;}
.ls42{letter-spacing:2.074880pt;}
.ls4d{letter-spacing:3.994667pt;}
.ls3f{letter-spacing:6.949120pt;}
.ls3e{letter-spacing:7.296000pt;}
.ls27{letter-spacing:7.840000pt;}
.ls55{letter-spacing:7.936000pt;}
.ls40{letter-spacing:8.474880pt;}
.ls1f{letter-spacing:9.509120pt;}
.ls46{letter-spacing:12.960000pt;}
.ls44{letter-spacing:16.154880pt;}
.ls45{letter-spacing:16.794880pt;}
.ls51{letter-spacing:18.074880pt;}
.ls1{letter-spacing:28.906667pt;}
.ls5{letter-spacing:28.928000pt;}
.ls56{letter-spacing:47.616000pt;}
.ws1{word-spacing:-17.062613pt;}
.ws2{word-spacing:-16.991147pt;}
.ws0{word-spacing:-16.922880pt;}
.ws9{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.272000pt;}
.ws11{word-spacing:-12.869120pt;}
.ws26{word-spacing:-12.709120pt;}
.ws1b{word-spacing:-12.666453pt;}
.ws2b{word-spacing:-12.591787pt;}
.ws2e{word-spacing:-12.322453pt;}
.wsb{word-spacing:-12.277120pt;}
.ws30{word-spacing:-12.274453pt;}
.wse{word-spacing:-12.229120pt;}
.ws13{word-spacing:-12.191253pt;}
.wsd{word-spacing:-12.170987pt;}
.ws31{word-spacing:-12.164480pt;}
.wsf{word-spacing:-12.129920pt;}
.ws1e{word-spacing:-12.071787pt;}
.ws1c{word-spacing:-12.062187pt;}
.ws2c{word-spacing:-12.058987pt;}
.wsc{word-spacing:-12.039680pt;}
.ws15{word-spacing:-12.027520pt;}
.ws4{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.976320pt;}
.ws18{word-spacing:-11.968640pt;}
.ws16{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.947520pt;}
.ws27{word-spacing:-11.943253pt;}
.ws32{word-spacing:-11.909653pt;}
.ws2f{word-spacing:-11.854187pt;}
.ws5{word-spacing:-11.852053pt;}
.ws1a{word-spacing:-11.791253pt;}
.ws19{word-spacing:-11.784320pt;}
.ws28{word-spacing:-11.766187pt;}
.ws1d{word-spacing:-11.735787pt;}
.ws7{word-spacing:-10.752000pt;}
.ws24{word-spacing:-9.707520pt;}
.ws21{word-spacing:-9.690880pt;}
.ws2d{word-spacing:-9.661440pt;}
.ws29{word-spacing:-9.509013pt;}
.ws25{word-spacing:-9.453547pt;}
.ws23{word-spacing:-9.428480pt;}
.ws20{word-spacing:-9.410347pt;}
.ws2a{word-spacing:-9.406080pt;}
.ws6{word-spacing:-7.810560pt;}
.ws14{word-spacing:-7.568427pt;}
.ws8{word-spacing:-7.232000pt;}
.ws22{word-spacing:-6.074880pt;}
.ws1f{word-spacing:-5.886613pt;}
.ws12{word-spacing:0.000000pt;}
._0{margin-left:-1.104000pt;}
._1{width:1.376000pt;}
._3{width:3.127680pt;}
._2{width:4.037120pt;}
._6{width:5.205760pt;}
._7{width:6.589013pt;}
._10{width:7.519573pt;}
._8{width:8.528213pt;}
._22{width:9.450453pt;}
._c{width:10.358400pt;}
._1e{width:11.758507pt;}
._12{width:13.492480pt;}
._1f{width:14.389333pt;}
._a{width:15.366187pt;}
._9{width:16.679680pt;}
._b{width:17.635840pt;}
._15{width:19.016960pt;}
._4{width:19.920000pt;}
._5{width:21.460480pt;}
._18{width:22.562560pt;}
._23{width:23.943680pt;}
._f{width:24.918400pt;}
._e{width:25.869440pt;}
._11{width:27.003947pt;}
._1c{width:28.312960pt;}
._1a{width:29.833600pt;}
._19{width:31.022080pt;}
._14{width:32.243840pt;}
._29{width:33.200000pt;}
._28{width:34.130347pt;}
._21{width:35.170560pt;}
._13{width:36.705920pt;}
._1b{width:39.574400pt;}
._d{width:40.973867pt;}
._20{width:42.405760pt;}
._16{width:44.248960pt;}
._17{width:45.242880pt;}
._26{width:46.442240pt;}
._27{width:47.879040pt;}
._25{width:52.455680pt;}
._24{width:53.491840pt;}
._2a{width:65.815680pt;}
._2b{width:67.425280pt;}
._1d{width:155.588480pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:45.199037pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:101.152000pt;}
.yb4{bottom:104.672000pt;}
.y48{bottom:108.672000pt;}
.y33{bottom:111.072000pt;}
.y130{bottom:111.712000pt;}
.y109{bottom:113.152000pt;}
.y6e{bottom:114.112000pt;}
.y97{bottom:117.472000pt;}
.yb3{bottom:120.992000pt;}
.y32{bottom:127.392000pt;}
.y12f{bottom:128.032000pt;}
.yde{bottom:128.512000pt;}
.y6d{bottom:130.432000pt;}
.y96{bottom:133.626667pt;}
.y47{bottom:134.106667pt;}
.yb2{bottom:137.306667pt;}
.y108{bottom:137.946667pt;}
.y31{bottom:143.706667pt;}
.y12e{bottom:144.186667pt;}
.ydd{bottom:144.666667pt;}
.y95{bottom:149.946667pt;}
.y46{bottom:150.426667pt;}
.y6c{bottom:152.666667pt;}
.yb1{bottom:153.466667pt;}
.y107{bottom:154.106667pt;}
.y30{bottom:159.866667pt;}
.y12d{bottom:160.506667pt;}
.ydc{bottom:160.986667pt;}
.y94{bottom:166.266667pt;}
.y45{bottom:166.586667pt;}
.y6b{bottom:169.466667pt;}
.yb0{bottom:169.786667pt;}
.y106{bottom:170.426667pt;}
.y12c{bottom:176.826667pt;}
.ydb{bottom:177.306667pt;}
.y93{bottom:182.586667pt;}
.y2f{bottom:182.906667pt;}
.yaf{bottom:186.106667pt;}
.y105{bottom:186.746667pt;}
.yda{bottom:193.626667pt;}
.y92{bottom:198.746667pt;}
.y44{bottom:199.066667pt;}
.y2e{bottom:199.226667pt;}
.y12b{bottom:199.706667pt;}
.yae{bottom:202.426667pt;}
.y104{bottom:203.066667pt;}
.yd9{bottom:209.786667pt;}
.y91{bottom:215.066667pt;}
.y2d{bottom:215.386667pt;}
.y12a{bottom:216.026667pt;}
.yad{bottom:218.586667pt;}
.y103{bottom:219.226667pt;}
.y43{bottom:222.906667pt;}
.yd8{bottom:226.106667pt;}
.y90{bottom:231.386667pt;}
.y2c{bottom:231.706667pt;}
.y129{bottom:232.346667pt;}
.yac{bottom:234.906667pt;}
.y102{bottom:235.546667pt;}
.y8f{bottom:247.706667pt;}
.y2b{bottom:248.026667pt;}
.y42{bottom:248.346667pt;}
.y128{bottom:248.506667pt;}
.yd7{bottom:249.786667pt;}
.y101{bottom:251.866667pt;}
.yab{bottom:258.626667pt;}
.y8e{bottom:263.906667pt;}
.y2a{bottom:264.386667pt;}
.y41{bottom:264.706667pt;}
.y100{bottom:268.226667pt;}
.y127{bottom:271.586667pt;}
.yd6{bottom:275.266667pt;}
.y8d{bottom:280.226667pt;}
.y29{bottom:280.546667pt;}
.y40{bottom:280.866667pt;}
.yaa{bottom:284.066667pt;}
.yff{bottom:284.386667pt;}
.y126{bottom:287.906667pt;}
.yd5{bottom:291.586667pt;}
.y8c{bottom:296.546667pt;}
.y28{bottom:296.866667pt;}
.y3f{bottom:297.186667pt;}
.ya9{bottom:300.386667pt;}
.yfe{bottom:300.706667pt;}
.y125{bottom:304.066667pt;}
.yd4{bottom:307.906667pt;}
.y8b{bottom:312.706667pt;}
.y27{bottom:313.026667pt;}
.y3e{bottom:313.506667pt;}
.yfd{bottom:317.026667pt;}
.y124{bottom:320.386667pt;}
.ya8{bottom:322.626667pt;}
.yd3{bottom:324.066667pt;}
.y8a{bottom:329.026667pt;}
.y3d{bottom:329.666667pt;}
.yfc{bottom:333.186667pt;}
.ya7{bottom:335.586667pt;}
.y26{bottom:336.066667pt;}
.y123{bottom:336.706667pt;}
.yd2{bottom:340.386667pt;}
.y89{bottom:345.346667pt;}
.y3c{bottom:345.986667pt;}
.ya6{bottom:348.546667pt;}
.yfb{bottom:349.506667pt;}
.y25{bottom:352.386667pt;}
.y122{bottom:352.866667pt;}
.yd1{bottom:356.706667pt;}
.y88{bottom:361.666667pt;}
.y3b{bottom:362.306667pt;}
.ya5{bottom:365.506667pt;}
.yfa{bottom:365.826667pt;}
.y24{bottom:368.706667pt;}
.yd0{bottom:372.866667pt;}
.y121{bottom:375.906667pt;}
.y87{bottom:377.826667pt;}
.y3a{bottom:378.626667pt;}
.yf9{bottom:382.146667pt;}
.y23{bottom:384.866667pt;}
.y120{bottom:392.226667pt;}
.y39{bottom:394.786667pt;}
.ycf{bottom:395.906667pt;}
.yf8{bottom:398.306667pt;}
.y86{bottom:400.866667pt;}
.y22{bottom:401.186667pt;}
.y11f{bottom:408.386667pt;}
.y38{bottom:411.106667pt;}
.yce{bottom:412.226667pt;}
.yf7{bottom:414.626667pt;}
.y85{bottom:417.026667pt;}
.y21{bottom:417.506667pt;}
.y11e{bottom:424.706667pt;}
.ycd{bottom:428.386667pt;}
.yf6{bottom:430.946667pt;}
.y84{bottom:433.346667pt;}
.y20{bottom:433.826667pt;}
.y37{bottom:433.986667pt;}
.y11d{bottom:440.866667pt;}
.ycc{bottom:444.706667pt;}
.yf5{bottom:447.106667pt;}
.y83{bottom:449.666667pt;}
.y1f{bottom:449.986667pt;}
.y36{bottom:450.306667pt;}
.ycb{bottom:461.026667pt;}
.yf4{bottom:463.426667pt;}
.y11c{bottom:463.906667pt;}
.y82{bottom:465.826667pt;}
.y35{bottom:466.626667pt;}
.y1e{bottom:473.826667pt;}
.yca{bottom:477.186667pt;}
.y11b{bottom:480.226667pt;}
.yf3{bottom:480.546667pt;}
.y6a{bottom:481.026667pt;}
.y34{bottom:482.946667pt;}
.y81{bottom:488.226667pt;}
.yc9{bottom:493.506667pt;}
.y11a{bottom:496.386667pt;}
.y69{bottom:497.186667pt;}
.y1d{bottom:499.106667pt;}
.y80{bottom:501.213333pt;}
.yf2{bottom:506.013333pt;}
.y68{bottom:513.533333pt;}
.y7f{bottom:514.173333pt;}
.y1c{bottom:515.133333pt;}
.yc8{bottom:516.573333pt;}
.y119{bottom:519.453333pt;}
.yf1{bottom:522.173333pt;}
.y7e{bottom:527.293333pt;}
.y1b{bottom:529.693333pt;}
.y67{bottom:529.853333pt;}
.yc7{bottom:532.733333pt;}
.y118{bottom:535.773333pt;}
.yf0{bottom:538.493333pt;}
.y7d{bottom:540.253333pt;}
.y66{bottom:546.173333pt;}
.yc6{bottom:549.053333pt;}
.y1a{bottom:551.453333pt;}
.y117{bottom:551.933333pt;}
.yef{bottom:554.813333pt;}
.y7c{bottom:557.053333pt;}
.y65{bottom:562.333333pt;}
.yc5{bottom:565.373333pt;}
.y19{bottom:567.773333pt;}
.y116{bottom:568.253333pt;}
.yee{bottom:571.133333pt;}
.ya4{bottom:576.573333pt;}
.y64{bottom:578.653333pt;}
.yc4{bottom:581.533333pt;}
.y18{bottom:583.933333pt;}
.y115{bottom:584.573333pt;}
.yed{bottom:587.293333pt;}
.ya3{bottom:592.893333pt;}
.y63{bottom:594.973333pt;}
.y17{bottom:600.253333pt;}
.yec{bottom:603.613333pt;}
.yc3{bottom:604.573333pt;}
.y114{bottom:607.453333pt;}
.ya2{bottom:609.053333pt;}
.y62{bottom:611.293333pt;}
.y16{bottom:616.573333pt;}
.yeb{bottom:619.933333pt;}
.yc2{bottom:620.893333pt;}
.y113{bottom:623.773333pt;}
.ya1{bottom:625.373333pt;}
.y61{bottom:627.453333pt;}
.y15{bottom:632.733333pt;}
.yea{bottom:636.093333pt;}
.yc1{bottom:637.053333pt;}
.y112{bottom:640.093333pt;}
.y60{bottom:643.773333pt;}
.ya0{bottom:647.613333pt;}
.y14{bottom:649.053333pt;}
.ye9{bottom:652.413333pt;}
.yc0{bottom:653.373333pt;}
.y111{bottom:656.253333pt;}
.y5f{bottom:660.093333pt;}
.y9f{bottom:660.573333pt;}
.y13{bottom:665.373333pt;}
.ye8{bottom:668.733333pt;}
.ybf{bottom:669.693333pt;}
.y110{bottom:672.573333pt;}
.y9e{bottom:673.693333pt;}
.y5e{bottom:676.253333pt;}
.y12{bottom:681.693333pt;}
.ye7{bottom:685.053333pt;}
.ybe{bottom:685.853333pt;}
.y9d{bottom:686.813333pt;}
.y5d{bottom:692.573333pt;}
.y10f{bottom:695.613333pt;}
.y11{bottom:697.853333pt;}
.y9c{bottom:700.253333pt;}
.ye6{bottom:701.213333pt;}
.ybd{bottom:708.893333pt;}
.y10e{bottom:711.773333pt;}
.y9b{bottom:713.213333pt;}
.y10{bottom:714.173333pt;}
.y5c{bottom:715.613333pt;}
.ye5{bottom:717.533333pt;}
.ybc{bottom:725.213333pt;}
.y10d{bottom:728.093333pt;}
.y9a{bottom:730.173333pt;}
.yf{bottom:730.493333pt;}
.y5b{bottom:731.773333pt;}
.ye4{bottom:733.853333pt;}
.ybb{bottom:741.373333pt;}
.y10c{bottom:744.413333pt;}
.ye{bottom:746.813333pt;}
.y5a{bottom:748.093333pt;}
.ye3{bottom:750.053333pt;}
.yba{bottom:757.733333pt;}
.y10b{bottom:760.613333pt;}
.yd{bottom:763.013333pt;}
.y59{bottom:764.453333pt;}
.y7b{bottom:767.333333pt;}
.ye2{bottom:772.453333pt;}
.yb9{bottom:774.053333pt;}
.y10a{bottom:776.933333pt;}
.yc{bottom:779.333333pt;}
.y58{bottom:780.613333pt;}
.y7a{bottom:783.653333pt;}
.ye1{bottom:785.413333pt;}
.yb8{bottom:790.373333pt;}
.y57{bottom:796.933333pt;}
.ye0{bottom:798.373333pt;}
.y79{bottom:799.973333pt;}
.yb{bottom:801.893333pt;}
.yb7{bottom:806.533333pt;}
.y56{bottom:813.253333pt;}
.ydf{bottom:815.333333pt;}
.y78{bottom:816.133333pt;}
.ya{bottom:816.613333pt;}
.yb6{bottom:822.853333pt;}
.y55{bottom:829.573333pt;}
.y9{bottom:831.173333pt;}
.y77{bottom:832.453333pt;}
.yb5{bottom:839.173333pt;}
.y54{bottom:845.733333pt;}
.y8{bottom:846.213333pt;}
.y76{bottom:855.333333pt;}
.y53{bottom:862.053333pt;}
.y75{bottom:871.653333pt;}
.y52{bottom:878.373333pt;}
.y7{bottom:879.173333pt;}
.y74{bottom:887.973333pt;}
.y51{bottom:894.693333pt;}
.y6{bottom:898.693333pt;}
.y73{bottom:904.293333pt;}
.y50{bottom:910.853333pt;}
.y5{bottom:918.373333pt;}
.y72{bottom:920.453333pt;}
.y4f{bottom:927.173333pt;}
.y71{bottom:936.773333pt;}
.y4e{bottom:943.493333pt;}
.y4{bottom:945.093333pt;}
.y70{bottom:953.093333pt;}
.y4d{bottom:959.653333pt;}
.y3{bottom:967.813333pt;}
.y6f{bottom:969.253333pt;}
.y4c{bottom:975.973333pt;}
.y4b{bottom:992.293333pt;}
.y2{bottom:995.653333pt;}
.y4a{bottom:1008.640000pt;}
.y1{bottom:1017.120000pt;}
.y49{bottom:1024.800000pt;}
.y99{bottom:1057.280000pt;}
.hc{height:29.710312pt;}
.hf{height:31.383316pt;}
.h2{height:33.257812pt;}
.h6{height:34.453125pt;}
.hd{height:36.805312pt;}
.h5{height:36.935000pt;}
.h7{height:38.128125pt;}
.h10{height:42.262500pt;}
.he{height:42.590000pt;}
.ha{height:43.366250pt;}
.hb{height:44.437500pt;}
.h4{height:44.500000pt;}
.h9{height:45.937500pt;}
.h3{height:52.065000pt;}
.h8{height:66.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:75.520000pt;}
.x9{left:94.592000pt;}
.x8{left:113.472000pt;}
.x2{left:132.352000pt;}
.x4{left:139.866667pt;}
.x5{left:154.906667pt;}
.x3{left:156.666667pt;}
.x1{left:238.306667pt;}
.x7{left:248.066667pt;}
.x11{left:319.746667pt;}
.x12{left:325.666667pt;}
.x6{left:334.946667pt;}
.xd{left:369.826667pt;}
.x14{left:373.666667pt;}
.x10{left:389.826667pt;}
.x13{left:391.266667pt;}
.xe{left:406.333333pt;}
.xa{left:425.213333pt;}
.xb{left:444.093333pt;}
.xf{left:701.413333pt;}
}




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