
    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_0d3e6581a0e6fe12d6be0c98.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_72da6e940ce3f3beac3637d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c194604e67c2834526853bac.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_18a2a1b7e35f0940ee001716.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.885742;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_fafcec2a01ed4b4ee6d3a99b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691406;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_9b9f90b68b27f494d0c834d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694336;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_166f544f071020f17f54cc41.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_22e5dcbdc82a703cdf32335c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_56014dc578c275ae713b1683.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d66b1ea872020e2746f6558a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3bc03c81373d30f31307c701.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_94f112a5199a74c6aeaf77de.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_76fd457e00e2973c11c770d3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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);}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-2.880000px;}
.ls8{letter-spacing:-2.076000px;}
.ls15{letter-spacing:-1.584000px;}
.lse{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.296000px;}
.ls1b{letter-spacing:-1.152000px;}
.lsa{letter-spacing:-0.792000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.408000px;}
.ls11{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.624000px;}
.ls5{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.665280px;}
.ls1{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.840000px;}
.ls1c{letter-spacing:1.152000px;}
.lsf{letter-spacing:1.206000px;}
.lsb{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.944000px;}
.lsc{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.646000px;}
.ls12{letter-spacing:30.384000px;}
.ls9{letter-spacing:33.264000px;}
.ls21{letter-spacing:100.944000px;}
.ls1f{letter-spacing:136.944000px;}
.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;}
}
.ws7{word-spacing:-19.440000px;}
.ws13{word-spacing:-19.152000px;}
.ws3{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.wse{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.496000px;}
.ws18{word-spacing:-17.352000px;}
.ws6{word-spacing:-17.208000px;}
.ws12{word-spacing:-16.848000px;}
.ws16{word-spacing:-16.704000px;}
.ws9{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.416000px;}
.wsb{word-spacing:-14.526000px;}
.ws2{word-spacing:-14.400000px;}
.wsa{word-spacing:-13.086000px;}
.ws14{word-spacing:-12.600000px;}
.ws17{word-spacing:-12.545280px;}
.ws4{word-spacing:-12.324000px;}
.ws5{word-spacing:-11.880000px;}
.ws15{word-spacing:-11.160000px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-17.514720px;}
._e{margin-left:-15.684960px;}
._b{margin-left:-12.047520px;}
._d{margin-left:-11.044320px;}
._9{margin-left:-9.226560px;}
._c{margin-left:-7.239360px;}
._7{margin-left:-3.659520px;}
._5{margin-left:-2.282400px;}
._0{margin-left:-1.254240px;}
._1{width:1.336320px;}
._2{width:2.939520px;}
._8{width:4.580640px;}
._f{width:5.594400px;}
._4{width:415.379520px;}
._3{width:503.556000px;}
._6{width:847.236960px;}
.fc1{color:transparent;}
.fc2{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:47.520000px;}
.fs8{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs7{font-size:132.480000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:240.480000px;}
.y0{bottom:0.000000px;}
.y22{bottom:4.675500px;}
.y1d{bottom:5.025000px;}
.yd{bottom:7.905000px;}
.y154{bottom:14.385000px;}
.y185{bottom:14.400000px;}
.y16c{bottom:14.445000px;}
.y14f{bottom:14.745000px;}
.y159{bottom:14.760000px;}
.y166{bottom:14.775000px;}
.y17a{bottom:14.790000px;}
.y157{bottom:15.105000px;}
.y18b{bottom:15.109500px;}
.yf{bottom:15.120000px;}
.y1c{bottom:29.175000px;}
.y153{bottom:45.345000px;}
.y184{bottom:45.360000px;}
.y16b{bottom:45.405000px;}
.y177{bottom:45.705000px;}
.y161{bottom:45.765000px;}
.y162{bottom:46.125000px;}
.yc{bottom:50.025000px;}
.y1b{bottom:52.575000px;}
.y11{bottom:70.590000px;}
.y1a{bottom:73.815000px;}
.y152{bottom:76.305000px;}
.y183{bottom:76.320000px;}
.y176{bottom:76.665000px;}
.y186{bottom:76.680000px;}
.y190{bottom:76.695000px;}
.y178{bottom:77.025000px;}
.y191{bottom:77.055000px;}
.yb{bottom:92.145000px;}
.y19{bottom:97.935000px;}
.y21{bottom:105.880500px;}
.y151{bottom:107.670000px;}
.y1b4{bottom:113.076000px;}
.y112{bottom:115.236000px;}
.y7b{bottom:115.596000px;}
.y18{bottom:122.055000px;}
.y12f{bottom:124.236000px;}
.y1b7{bottom:126.036000px;}
.ya9{bottom:126.396000px;}
.y18c{bottom:130.752000px;}
.y98{bottom:131.472000px;}
.y1ec{bottom:132.552000px;}
.y1b3{bottom:133.632000px;}
.y111{bottom:135.792000px;}
.y1c0{bottom:136.152000px;}
.ybe{bottom:137.232000px;}
.y59{bottom:138.312000px;}
.y150{bottom:138.630000px;}
.y155{bottom:138.990000px;}
.yef{bottom:139.752000px;}
.y17{bottom:145.815000px;}
.y7a{bottom:146.592000px;}
.y18a{bottom:147.685500px;}
.y1da{bottom:151.995000px;}
.y1b2{bottom:154.515000px;}
.y12e{bottom:155.235000px;}
.y110{bottom:156.675000px;}
.ya8{bottom:157.035000px;}
.ydc{bottom:158.115000px;}
.y97{bottom:162.435000px;}
.y9{bottom:163.815000px;}
.y16{bottom:167.100000px;}
.y100{bottom:167.475000px;}
.ybd{bottom:168.195000px;}
.y58{bottom:169.635000px;}
.yee{bottom:171.075000px;}
.y20{bottom:171.795000px;}
.y1b1{bottom:175.035000px;}
.y10f{bottom:177.195000px;}
.y79{bottom:177.555000px;}
.y1eb{bottom:178.995000px;}
.y189{bottom:179.730000px;}
.y1d9{bottom:182.955000px;}
.y8{bottom:185.055000px;}
.y12d{bottom:186.195000px;}
.ya7{bottom:187.995000px;}
.ydb{bottom:189.075000px;}
.y15{bottom:191.220000px;}
.y1f{bottom:192.675000px;}
.y96{bottom:193.395000px;}
.yed{bottom:193.755000px;}
.y1b0{bottom:195.915000px;}
.y10e{bottom:198.075000px;}
.yff{bottom:198.435000px;}
.ybc{bottom:199.515000px;}
.y57{bottom:200.595000px;}
.y7{bottom:208.455000px;}
.y168{bottom:208.515000px;}
.y78{bottom:208.875000px;}
.y1e{bottom:208.890000px;}
.y1ea{bottom:209.595000px;}
.y188{bottom:211.410000px;}
.y14{bottom:215.340000px;}
.y1af{bottom:216.435000px;}
.y12c{bottom:217.155000px;}
.y10d{bottom:218.595000px;}
.ya6{bottom:218.955000px;}
.yda{bottom:220.035000px;}
.y95{bottom:224.355000px;}
.yec{bottom:224.715000px;}
.y167{bottom:225.450000px;}
.y6{bottom:229.335000px;}
.yfe{bottom:229.395000px;}
.ybb{bottom:230.475000px;}
.y56{bottom:231.555000px;}
.y12{bottom:235.890000px;}
.y1ae{bottom:237.315000px;}
.y13{bottom:239.100000px;}
.y10c{bottom:239.475000px;}
.y77{bottom:239.835000px;}
.y1e9{bottom:240.915000px;}
.y187{bottom:243.090000px;}
.y14b{bottom:245.955000px;}
.y12b{bottom:248.475000px;}
.y5{bottom:249.900000px;}
.ya5{bottom:250.275000px;}
.y94{bottom:255.675000px;}
.y165{bottom:257.490000px;}
.y1ad{bottom:257.835000px;}
.y10b{bottom:259.995000px;}
.yfd{bottom:260.355000px;}
.yba{bottom:261.465000px;}
.y55{bottom:262.545000px;}
.yd9{bottom:266.505000px;}
.y76{bottom:270.825000px;}
.y4{bottom:271.860000px;}
.y1e8{bottom:271.905000px;}
.y182{bottom:275.145000px;}
.y14a{bottom:276.585000px;}
.y1ac{bottom:278.385000px;}
.y12a{bottom:279.465000px;}
.y10a{bottom:280.905000px;}
.ya4{bottom:281.265000px;}
.y93{bottom:286.665000px;}
.yeb{bottom:287.025000px;}
.y164{bottom:289.185000px;}
.y1b8{bottom:290.985000px;}
.y1bf{bottom:291.345000px;}
.yb9{bottom:292.425000px;}
.y54{bottom:293.865000px;}
.yd8{bottom:297.105000px;}
.y3{bottom:297.780000px;}
.y1ab{bottom:299.265000px;}
.yfc{bottom:299.625000px;}
.y109{bottom:301.425000px;}
.y75{bottom:301.785000px;}
.y1e7{bottom:302.865000px;}
.y149{bottom:307.545000px;}
.y129{bottom:310.425000px;}
.yfb{bottom:311.865000px;}
.ya3{bottom:312.225000px;}
.y2{bottom:315.060000px;}
.y92{bottom:317.625000px;}
.yea{bottom:317.985000px;}
.y1aa{bottom:319.785000px;}
.y163{bottom:320.865000px;}
.y108{bottom:322.305000px;}
.y1be{bottom:322.665000px;}
.yb8{bottom:323.745000px;}
.y53{bottom:324.825000px;}
.yd7{bottom:328.425000px;}
.y74{bottom:332.745000px;}
.y1e6{bottom:333.825000px;}
.y148{bottom:338.505000px;}
.y1a9{bottom:340.665000px;}
.y128{bottom:341.385000px;}
.y107{bottom:342.825000px;}
.ya2{bottom:343.185000px;}
.y91{bottom:348.585000px;}
.ye9{bottom:348.945000px;}
.yfa{bottom:351.465000px;}
.y160{bottom:352.545000px;}
.y1d8{bottom:353.265000px;}
.y1bd{bottom:353.625000px;}
.y36{bottom:354.345000px;}
.yb7{bottom:354.705000px;}
.y52{bottom:355.785000px;}
.yd6{bottom:359.385000px;}
.y1a8{bottom:361.185000px;}
.y106{bottom:363.705000px;}
.y73{bottom:364.065000px;}
.y1e5{bottom:365.145000px;}
.y181{bottom:368.745000px;}
.y147{bottom:369.825000px;}
.y127{bottom:372.705000px;}
.ya1{bottom:374.145000px;}
.y90{bottom:379.905000px;}
.y1a7{bottom:382.065000px;}
.y105{bottom:384.225000px;}
.y1bc{bottom:384.585000px;}
.yb6{bottom:385.665000px;}
.y51{bottom:386.745000px;}
.yd5{bottom:390.345000px;}
.y1c9{bottom:391.065000px;}
.y35{bottom:392.865000px;}
.y72{bottom:395.070000px;}
.y1e4{bottom:396.150000px;}
.y146{bottom:400.470000px;}
.y1a6{bottom:402.630000px;}
.y126{bottom:403.710000px;}
.y104{bottom:405.150000px;}
.ya0{bottom:405.510000px;}
.y8f{bottom:410.910000px;}
.ye8{bottom:411.270000px;}
.y180{bottom:415.230000px;}
.y15f{bottom:415.590000px;}
.yb5{bottom:416.670000px;}
.y50{bottom:418.110000px;}
.yd4{bottom:421.350000px;}
.y1c8{bottom:422.430000px;}
.y1a5{bottom:423.510000px;}
.y103{bottom:425.670000px;}
.y71{bottom:426.030000px;}
.y1e3{bottom:427.110000px;}
.y145{bottom:431.430000px;}
.y125{bottom:434.670000px;}
.y9f{bottom:436.470000px;}
.y34{bottom:439.350000px;}
.y8e{bottom:442.230000px;}
.y1a4{bottom:444.030000px;}
.y17f{bottom:446.190000px;}
.y1d7{bottom:446.550000px;}
.y1bb{bottom:446.910000px;}
.yb4{bottom:447.990000px;}
.y4f{bottom:449.070000px;}
.yd3{bottom:452.670000px;}
.y1c7{bottom:453.390000px;}
.y70{bottom:456.990000px;}
.y1e2{bottom:458.070000px;}
.y15e{bottom:462.390000px;}
.y1a3{bottom:464.910000px;}
.y124{bottom:465.630000px;}
.y9e{bottom:467.430000px;}
.y33{bottom:469.950000px;}
.ye7{bottom:473.190000px;}
.y1d6{bottom:477.510000px;}
.y17e{bottom:477.870000px;}
.y144{bottom:478.230000px;}
.yb3{bottom:478.950000px;}
.y4e{bottom:480.030000px;}
.y8d{bottom:481.830000px;}
.yd2{bottom:483.630000px;}
.y1a2{bottom:485.430000px;}
.y6f{bottom:488.310000px;}
.y1c5{bottom:488.670000px;}
.y1e1{bottom:489.390000px;}
.y10{bottom:491.190000px;}
.y15d{bottom:493.350000px;}
.y9d{bottom:496.230000px;}
.y123{bottom:496.950000px;}
.y1ba{bottom:498.030000px;}
.yf9{bottom:498.390000px;}
.y1c6{bottom:499.110000px;}
.ye6{bottom:504.150000px;}
.y1a1{bottom:506.310000px;}
.y9c{bottom:508.470000px;}
.y143{bottom:508.830000px;}
.yb2{bottom:509.550000px;}
.y4d{bottom:510.990000px;}
.yd1{bottom:514.590000px;}
.y32{bottom:516.390000px;}
.y1b9{bottom:518.910000px;}
.y6e{bottom:519.270000px;}
.y1e0{bottom:520.350000px;}
.y8c{bottom:522.150000px;}
.y15c{bottom:524.310000px;}
.y1a0{bottom:526.830000px;}
.y122{bottom:527.940000px;}
.y9b{bottom:529.380000px;}
.yf8{bottom:529.740000px;}
.yb1{bottom:530.460000px;}
.ye5{bottom:535.500000px;}
.y142{bottom:539.820000px;}
.y4c{bottom:542.340000px;}
.yd0{bottom:545.580000px;}
.y31{bottom:547.020000px;}
.y19f{bottom:547.740000px;}
.y6d{bottom:549.900000px;}
.y102{bottom:550.260000px;}
.yb0{bottom:551.340000px;}
.y15b{bottom:555.300000px;}
.y17d{bottom:556.740000px;}
.y9a{bottom:558.540000px;}
.y121{bottom:558.900000px;}
.yf7{bottom:560.700000px;}
.y8b{bottom:562.500000px;}
.ye4{bottom:566.100000px;}
.y19e{bottom:568.260000px;}
.y1d5{bottom:570.780000px;}
.y141{bottom:571.140000px;}
.y15a{bottom:572.220000px;}
.y4b{bottom:573.300000px;}
.ycf{bottom:576.900000px;}
.y30{bottom:577.980000px;}
.y6c{bottom:580.860000px;}
.y99{bottom:581.220000px;}
.ye3{bottom:586.620000px;}
.y17c{bottom:588.420000px;}
.y19d{bottom:589.140000px;}
.y120{bottom:589.860000px;}
.yf6{bottom:591.660000px;}
.y8a{bottom:593.460000px;}
.yaf{bottom:597.780000px;}
.y1d4{bottom:601.740000px;}
.y140{bottom:602.100000px;}
.y4a{bottom:604.260000px;}
.ye2{bottom:607.500000px;}
.yce{bottom:607.860000px;}
.y2f{bottom:608.580000px;}
.y19c{bottom:609.660000px;}
.y11f{bottom:610.740000px;}
.y6b{bottom:612.540000px;}
.y17b{bottom:620.460000px;}
.yf5{bottom:622.620000px;}
.y89{bottom:624.420000px;}
.yae{bottom:628.380000px;}
.y19b{bottom:630.540000px;}
.y11e{bottom:631.260000px;}
.y1d3{bottom:632.700000px;}
.y13f{bottom:633.060000px;}
.y49{bottom:635.220000px;}
.y158{bottom:635.940000px;}
.ycd{bottom:638.820000px;}
.y2e{bottom:640.260000px;}
.ye{bottom:643.140000px;}
.y6a{bottom:643.500000px;}
.y19a{bottom:651.060000px;}
.y179{bottom:652.140000px;}
.yf4{bottom:653.940000px;}
.ye1{bottom:654.300000px;}
.y88{bottom:655.740000px;}
.yad{bottom:659.340000px;}
.y13e{bottom:664.050000px;}
.y48{bottom:666.570000px;}
.y156{bottom:667.665000px;}
.y11d{bottom:670.170000px;}
.y2d{bottom:671.250000px;}
.y199{bottom:671.970000px;}
.y69{bottom:674.490000px;}
.y175{bottom:683.865000px;}
.ye0{bottom:684.930000px;}
.ycc{bottom:685.290000px;}
.yac{bottom:690.690000px;}
.y198{bottom:692.490000px;}
.y13d{bottom:695.010000px;}
.y87{bottom:695.370000px;}
.y47{bottom:697.530000px;}
.ya{bottom:699.705000px;}
.y11c{bottom:700.770000px;}
.y68{bottom:705.450000px;}
.y197{bottom:713.730000px;}
.y1c3{bottom:715.530000px;}
.ycb{bottom:715.890000px;}
.y2c{bottom:717.330000px;}
.y1df{bottom:721.650000px;}
.y13c{bottom:725.970000px;}
.y46{bottom:728.490000px;}
.y11b{bottom:732.090000px;}
.y196{bottom:734.250000px;}
.y86{bottom:735.330000px;}
.y1c2{bottom:736.410000px;}
.y67{bottom:736.770000px;}
.yab{bottom:737.130000px;}
.yca{bottom:746.850000px;}
.y2b{bottom:748.290000px;}
.y1de{bottom:752.610000px;}
.y1d2{bottom:756.930000px;}
.y13b{bottom:757.290000px;}
.y45{bottom:759.450000px;}
.y11a{bottom:763.050000px;}
.y195{bottom:765.570000px;}
.y1c1{bottom:767.370000px;}
.y66{bottom:767.730000px;}
.y85{bottom:775.290000px;}
.y174{bottom:777.825000px;}
.yc9{bottom:778.170000px;}
.y2a{bottom:779.250000px;}
.y1dd{bottom:783.570000px;}
.y13a{bottom:788.250000px;}
.y44{bottom:790.770000px;}
.y119{bottom:794.010000px;}
.y194{bottom:796.575000px;}
.y65{bottom:798.735000px;}
.yc8{bottom:809.175000px;}
.y29{bottom:810.615000px;}
.y1dc{bottom:814.935000px;}
.y84{bottom:815.655000px;}
.y1d1{bottom:819.255000px;}
.y139{bottom:819.615000px;}
.y43{bottom:821.775000px;}
.y173{bottom:824.655000px;}
.y118{bottom:825.015000px;}
.y1{bottom:826.110000px;}
.y193{bottom:827.535000px;}
.y64{bottom:829.695000px;}
.yc7{bottom:840.135000px;}
.y1d0{bottom:850.215000px;}
.y138{bottom:850.575000px;}
.y42{bottom:852.735000px;}
.y172{bottom:855.615000px;}
.y14e{bottom:855.630000px;}
.y83{bottom:855.975000px;}
.y117{bottom:856.335000px;}
.y28{bottom:856.695000px;}
.y192{bottom:858.135000px;}
.y63{bottom:861.015000px;}
.y1db{bottom:861.375000px;}
.y1c4{bottom:869.295000px;}
.ydf{bottom:870.735000px;}
.yc6{bottom:871.095000px;}
.y18f{bottom:875.430000px;}
.y1cf{bottom:881.175000px;}
.y137{bottom:881.535000px;}
.y41{bottom:883.695000px;}
.y171{bottom:886.575000px;}
.y82{bottom:886.935000px;}
.y116{bottom:887.295000px;}
.y27{bottom:887.655000px;}
.yde{bottom:891.615000px;}
.y62{bottom:891.975000px;}
.yc5{bottom:902.415000px;}
.y136{bottom:912.495000px;}
.y40{bottom:915.015000px;}
.y81{bottom:917.895000px;}
.y61{bottom:922.935000px;}
.ydd{bottom:931.245000px;}
.yc4{bottom:933.405000px;}
.y26{bottom:933.765000px;}
.y170{bottom:934.845000px;}
.y1ce{bottom:943.485000px;}
.y135{bottom:943.845000px;}
.y3f{bottom:946.005000px;}
.y80{bottom:949.245000px;}
.y1b6{bottom:953.565000px;}
.y60{bottom:953.925000px;}
.yc3{bottom:964.365000px;}
.y16f{bottom:966.525000px;}
.y18e{bottom:969.405000px;}
.y25{bottom:972.285000px;}
.y1b5{bottom:974.445000px;}
.y134{bottom:974.805000px;}
.y3e{bottom:976.965000px;}
.y7f{bottom:980.205000px;}
.y101{bottom:984.885000px;}
.y5f{bottom:985.245000px;}
.yc2{bottom:995.325000px;}
.y115{bottom:995.685000px;}
.y24{bottom:996.045000px;}
.y16e{bottom:998.205000px;}
.y1cd{bottom:1005.405000px;}
.y133{bottom:1005.765000px;}
.y3d{bottom:1007.925000px;}
.y7e{bottom:1011.165000px;}
.y18d{bottom:1015.845000px;}
.y5e{bottom:1016.205000px;}
.y14d{bottom:1026.285000px;}
.yf3{bottom:1026.645000px;}
.y16d{bottom:1030.245000px;}
.y23{bottom:1030.965000px;}
.yc1{bottom:1034.925000px;}
.y1cc{bottom:1036.365000px;}
.y132{bottom:1036.725000px;}
.y3c{bottom:1039.245000px;}
.y7d{bottom:1042.125000px;}
.yc0{bottom:1046.805000px;}
.y5d{bottom:1047.165000px;}
.y114{bottom:1057.245000px;}
.yf2{bottom:1057.605000px;}
.y16a{bottom:1061.925000px;}
.y1cb{bottom:1067.730000px;}
.y131{bottom:1068.090000px;}
.y3b{bottom:1070.250000px;}
.y7c{bottom:1073.130000px;}
.y5c{bottom:1078.170000px;}
.ybf{bottom:1086.450000px;}
.y113{bottom:1088.250000px;}
.yf1{bottom:1088.610000px;}
.y1ca{bottom:1098.330000px;}
.y130{bottom:1099.050000px;}
.y3a{bottom:1101.210000px;}
.y5b{bottom:1109.130000px;}
.yaa{bottom:1109.490000px;}
.yf0{bottom:1119.210000px;}
.y14c{bottom:1119.570000px;}
.y169{bottom:1124.610000px;}
.y5a{bottom:1140.090000px;}
.y39{bottom:1140.450000px;}
.y38{bottom:1172.850000px;}
.y37{bottom:1193.730000px;}
.h12{height:24.151500px;}
.h10{height:26.985000px;}
.h1e{height:30.945000px;}
.h23{height:30.960000px;}
.h27{height:30.981000px;}
.h22{height:30.996000px;}
.h21{height:31.305000px;}
.h2b{height:31.306500px;}
.h24{height:31.320000px;}
.h29{height:31.350000px;}
.he{height:45.184219px;}
.h11{height:45.248906px;}
.h3{height:46.283906px;}
.h18{height:46.638281px;}
.h19{height:47.891250px;}
.hb{height:54.036000px;}
.h4{height:59.357813px;}
.h26{height:61.950000px;}
.h25{height:62.310000px;}
.h20{height:63.949219px;}
.h1d{height:64.546875px;}
.h15{height:70.628906px;}
.h6{height:70.664062px;}
.h14{height:72.562500px;}
.h16{height:73.324687px;}
.h1a{height:74.004654px;}
.h17{height:79.758281px;}
.h1c{height:79.878281px;}
.h1b{height:79.902281px;}
.h7{height:81.970312px;}
.h13{height:84.172500px;}
.hc{height:92.567812px;}
.h2a{height:92.865000px;}
.h28{height:93.225000px;}
.h2c{height:93.240000px;}
.h5{height:97.233750px;}
.h8{height:126.381000px;}
.h9{height:126.421875px;}
.hd{height:151.950000px;}
.h1f{height:155.175000px;}
.ha{height:168.030703px;}
.hf{height:255.285000px;}
.h2{height:330.525000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:323.415000px;}
.w5{width:323.730000px;}
.w2{width:654.345000px;}
.w3{width:654.375000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:8.266500px;}
.x7{left:26.662500px;}
.x8{left:42.865500px;}
.x4{left:57.625500px;}
.x1{left:119.569500px;}
.xf{left:127.476000px;}
.x15{left:145.512000px;}
.x17{left:154.515000px;}
.x3{left:158.455500px;}
.x16{left:163.515000px;}
.x11{left:180.435000px;}
.x18{left:181.515000px;}
.x1b{left:207.435000px;}
.x10{left:211.029000px;}
.xc{left:221.500500px;}
.xa{left:245.980500px;}
.xe{left:248.860500px;}
.x14{left:293.505000px;}
.xd{left:299.260500px;}
.x9{left:305.770500px;}
.xb{left:306.850500px;}
.x2{left:319.090500px;}
.x5{left:327.010500px;}
.x1a{left:444.060000px;}
.x19{left:747.645000px;}
.x12{left:756.645000px;}
.x13{left:765.645000px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-2.560000pt;}
.ls8{letter-spacing:-1.845333pt;}
.ls15{letter-spacing:-1.408000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.152000pt;}
.ls1b{letter-spacing:-1.024000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.362667pt;}
.ls11{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.554667pt;}
.ls5{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.591360pt;}
.ls1{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.746667pt;}
.ls1c{letter-spacing:1.024000pt;}
.lsf{letter-spacing:1.072000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.728000pt;}
.lsc{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.352000pt;}
.ls12{letter-spacing:27.008000pt;}
.ls9{letter-spacing:29.568000pt;}
.ls21{letter-spacing:89.728000pt;}
.ls1f{letter-spacing:121.728000pt;}
.ws7{word-spacing:-17.280000pt;}
.ws13{word-spacing:-17.024000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.552000pt;}
.ws18{word-spacing:-15.424000pt;}
.ws6{word-spacing:-15.296000pt;}
.ws12{word-spacing:-14.976000pt;}
.ws16{word-spacing:-14.848000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.592000pt;}
.wsb{word-spacing:-12.912000pt;}
.ws2{word-spacing:-12.800000pt;}
.wsa{word-spacing:-11.632000pt;}
.ws14{word-spacing:-11.200000pt;}
.ws17{word-spacing:-11.151360pt;}
.ws4{word-spacing:-10.954667pt;}
.ws5{word-spacing:-10.560000pt;}
.ws15{word-spacing:-9.920000pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-15.568640pt;}
._e{margin-left:-13.942187pt;}
._b{margin-left:-10.708907pt;}
._d{margin-left:-9.817173pt;}
._9{margin-left:-8.201387pt;}
._c{margin-left:-6.434987pt;}
._7{margin-left:-3.252907pt;}
._5{margin-left:-2.028800pt;}
._0{margin-left:-1.114880pt;}
._1{width:1.187840pt;}
._2{width:2.612907pt;}
._8{width:4.071680pt;}
._f{width:4.972800pt;}
._4{width:369.226240pt;}
._3{width:447.605333pt;}
._6{width:753.099520pt;}
.fs9{font-size:42.240000pt;}
.fs8{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs7{font-size:117.760000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:213.760000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:4.156000pt;}
.y1d{bottom:4.466667pt;}
.yd{bottom:7.026667pt;}
.y154{bottom:12.786667pt;}
.y185{bottom:12.800000pt;}
.y16c{bottom:12.840000pt;}
.y14f{bottom:13.106667pt;}
.y159{bottom:13.120000pt;}
.y166{bottom:13.133333pt;}
.y17a{bottom:13.146667pt;}
.y157{bottom:13.426667pt;}
.y18b{bottom:13.430667pt;}
.yf{bottom:13.440000pt;}
.y1c{bottom:25.933333pt;}
.y153{bottom:40.306667pt;}
.y184{bottom:40.320000pt;}
.y16b{bottom:40.360000pt;}
.y177{bottom:40.626667pt;}
.y161{bottom:40.680000pt;}
.y162{bottom:41.000000pt;}
.yc{bottom:44.466667pt;}
.y1b{bottom:46.733333pt;}
.y11{bottom:62.746667pt;}
.y1a{bottom:65.613333pt;}
.y152{bottom:67.826667pt;}
.y183{bottom:67.840000pt;}
.y176{bottom:68.146667pt;}
.y186{bottom:68.160000pt;}
.y190{bottom:68.173333pt;}
.y178{bottom:68.466667pt;}
.y191{bottom:68.493333pt;}
.yb{bottom:81.906667pt;}
.y19{bottom:87.053333pt;}
.y21{bottom:94.116000pt;}
.y151{bottom:95.706667pt;}
.y1b4{bottom:100.512000pt;}
.y112{bottom:102.432000pt;}
.y7b{bottom:102.752000pt;}
.y18{bottom:108.493333pt;}
.y12f{bottom:110.432000pt;}
.y1b7{bottom:112.032000pt;}
.ya9{bottom:112.352000pt;}
.y18c{bottom:116.224000pt;}
.y98{bottom:116.864000pt;}
.y1ec{bottom:117.824000pt;}
.y1b3{bottom:118.784000pt;}
.y111{bottom:120.704000pt;}
.y1c0{bottom:121.024000pt;}
.ybe{bottom:121.984000pt;}
.y59{bottom:122.944000pt;}
.y150{bottom:123.226667pt;}
.y155{bottom:123.546667pt;}
.yef{bottom:124.224000pt;}
.y17{bottom:129.613333pt;}
.y7a{bottom:130.304000pt;}
.y18a{bottom:131.276000pt;}
.y1da{bottom:135.106667pt;}
.y1b2{bottom:137.346667pt;}
.y12e{bottom:137.986667pt;}
.y110{bottom:139.266667pt;}
.ya8{bottom:139.586667pt;}
.ydc{bottom:140.546667pt;}
.y97{bottom:144.386667pt;}
.y9{bottom:145.613333pt;}
.y16{bottom:148.533333pt;}
.y100{bottom:148.866667pt;}
.ybd{bottom:149.506667pt;}
.y58{bottom:150.786667pt;}
.yee{bottom:152.066667pt;}
.y20{bottom:152.706667pt;}
.y1b1{bottom:155.586667pt;}
.y10f{bottom:157.506667pt;}
.y79{bottom:157.826667pt;}
.y1eb{bottom:159.106667pt;}
.y189{bottom:159.760000pt;}
.y1d9{bottom:162.626667pt;}
.y8{bottom:164.493333pt;}
.y12d{bottom:165.506667pt;}
.ya7{bottom:167.106667pt;}
.ydb{bottom:168.066667pt;}
.y15{bottom:169.973333pt;}
.y1f{bottom:171.266667pt;}
.y96{bottom:171.906667pt;}
.yed{bottom:172.226667pt;}
.y1b0{bottom:174.146667pt;}
.y10e{bottom:176.066667pt;}
.yff{bottom:176.386667pt;}
.ybc{bottom:177.346667pt;}
.y57{bottom:178.306667pt;}
.y7{bottom:185.293333pt;}
.y168{bottom:185.346667pt;}
.y78{bottom:185.666667pt;}
.y1e{bottom:185.680000pt;}
.y1ea{bottom:186.306667pt;}
.y188{bottom:187.920000pt;}
.y14{bottom:191.413333pt;}
.y1af{bottom:192.386667pt;}
.y12c{bottom:193.026667pt;}
.y10d{bottom:194.306667pt;}
.ya6{bottom:194.626667pt;}
.yda{bottom:195.586667pt;}
.y95{bottom:199.426667pt;}
.yec{bottom:199.746667pt;}
.y167{bottom:200.400000pt;}
.y6{bottom:203.853333pt;}
.yfe{bottom:203.906667pt;}
.ybb{bottom:204.866667pt;}
.y56{bottom:205.826667pt;}
.y12{bottom:209.680000pt;}
.y1ae{bottom:210.946667pt;}
.y13{bottom:212.533333pt;}
.y10c{bottom:212.866667pt;}
.y77{bottom:213.186667pt;}
.y1e9{bottom:214.146667pt;}
.y187{bottom:216.080000pt;}
.y14b{bottom:218.626667pt;}
.y12b{bottom:220.866667pt;}
.y5{bottom:222.133333pt;}
.ya5{bottom:222.466667pt;}
.y94{bottom:227.266667pt;}
.y165{bottom:228.880000pt;}
.y1ad{bottom:229.186667pt;}
.y10b{bottom:231.106667pt;}
.yfd{bottom:231.426667pt;}
.yba{bottom:232.413333pt;}
.y55{bottom:233.373333pt;}
.yd9{bottom:236.893333pt;}
.y76{bottom:240.733333pt;}
.y4{bottom:241.653333pt;}
.y1e8{bottom:241.693333pt;}
.y182{bottom:244.573333pt;}
.y14a{bottom:245.853333pt;}
.y1ac{bottom:247.453333pt;}
.y12a{bottom:248.413333pt;}
.y10a{bottom:249.693333pt;}
.ya4{bottom:250.013333pt;}
.y93{bottom:254.813333pt;}
.yeb{bottom:255.133333pt;}
.y164{bottom:257.053333pt;}
.y1b8{bottom:258.653333pt;}
.y1bf{bottom:258.973333pt;}
.yb9{bottom:259.933333pt;}
.y54{bottom:261.213333pt;}
.yd8{bottom:264.093333pt;}
.y3{bottom:264.693333pt;}
.y1ab{bottom:266.013333pt;}
.yfc{bottom:266.333333pt;}
.y109{bottom:267.933333pt;}
.y75{bottom:268.253333pt;}
.y1e7{bottom:269.213333pt;}
.y149{bottom:273.373333pt;}
.y129{bottom:275.933333pt;}
.yfb{bottom:277.213333pt;}
.ya3{bottom:277.533333pt;}
.y2{bottom:280.053333pt;}
.y92{bottom:282.333333pt;}
.yea{bottom:282.653333pt;}
.y1aa{bottom:284.253333pt;}
.y163{bottom:285.213333pt;}
.y108{bottom:286.493333pt;}
.y1be{bottom:286.813333pt;}
.yb8{bottom:287.773333pt;}
.y53{bottom:288.733333pt;}
.yd7{bottom:291.933333pt;}
.y74{bottom:295.773333pt;}
.y1e6{bottom:296.733333pt;}
.y148{bottom:300.893333pt;}
.y1a9{bottom:302.813333pt;}
.y128{bottom:303.453333pt;}
.y107{bottom:304.733333pt;}
.ya2{bottom:305.053333pt;}
.y91{bottom:309.853333pt;}
.ye9{bottom:310.173333pt;}
.yfa{bottom:312.413333pt;}
.y160{bottom:313.373333pt;}
.y1d8{bottom:314.013333pt;}
.y1bd{bottom:314.333333pt;}
.y36{bottom:314.973333pt;}
.yb7{bottom:315.293333pt;}
.y52{bottom:316.253333pt;}
.yd6{bottom:319.453333pt;}
.y1a8{bottom:321.053333pt;}
.y106{bottom:323.293333pt;}
.y73{bottom:323.613333pt;}
.y1e5{bottom:324.573333pt;}
.y181{bottom:327.773333pt;}
.y147{bottom:328.733333pt;}
.y127{bottom:331.293333pt;}
.ya1{bottom:332.573333pt;}
.y90{bottom:337.693333pt;}
.y1a7{bottom:339.613333pt;}
.y105{bottom:341.533333pt;}
.y1bc{bottom:341.853333pt;}
.yb6{bottom:342.813333pt;}
.y51{bottom:343.773333pt;}
.yd5{bottom:346.973333pt;}
.y1c9{bottom:347.613333pt;}
.y35{bottom:349.213333pt;}
.y72{bottom:351.173333pt;}
.y1e4{bottom:352.133333pt;}
.y146{bottom:355.973333pt;}
.y1a6{bottom:357.893333pt;}
.y126{bottom:358.853333pt;}
.y104{bottom:360.133333pt;}
.ya0{bottom:360.453333pt;}
.y8f{bottom:365.253333pt;}
.ye8{bottom:365.573333pt;}
.y180{bottom:369.093333pt;}
.y15f{bottom:369.413333pt;}
.yb5{bottom:370.373333pt;}
.y50{bottom:371.653333pt;}
.yd4{bottom:374.533333pt;}
.y1c8{bottom:375.493333pt;}
.y1a5{bottom:376.453333pt;}
.y103{bottom:378.373333pt;}
.y71{bottom:378.693333pt;}
.y1e3{bottom:379.653333pt;}
.y145{bottom:383.493333pt;}
.y125{bottom:386.373333pt;}
.y9f{bottom:387.973333pt;}
.y34{bottom:390.533333pt;}
.y8e{bottom:393.093333pt;}
.y1a4{bottom:394.693333pt;}
.y17f{bottom:396.613333pt;}
.y1d7{bottom:396.933333pt;}
.y1bb{bottom:397.253333pt;}
.yb4{bottom:398.213333pt;}
.y4f{bottom:399.173333pt;}
.yd3{bottom:402.373333pt;}
.y1c7{bottom:403.013333pt;}
.y70{bottom:406.213333pt;}
.y1e2{bottom:407.173333pt;}
.y15e{bottom:411.013333pt;}
.y1a3{bottom:413.253333pt;}
.y124{bottom:413.893333pt;}
.y9e{bottom:415.493333pt;}
.y33{bottom:417.733333pt;}
.ye7{bottom:420.613333pt;}
.y1d6{bottom:424.453333pt;}
.y17e{bottom:424.773333pt;}
.y144{bottom:425.093333pt;}
.yb3{bottom:425.733333pt;}
.y4e{bottom:426.693333pt;}
.y8d{bottom:428.293333pt;}
.yd2{bottom:429.893333pt;}
.y1a2{bottom:431.493333pt;}
.y6f{bottom:434.053333pt;}
.y1c5{bottom:434.373333pt;}
.y1e1{bottom:435.013333pt;}
.y10{bottom:436.613333pt;}
.y15d{bottom:438.533333pt;}
.y9d{bottom:441.093333pt;}
.y123{bottom:441.733333pt;}
.y1ba{bottom:442.693333pt;}
.yf9{bottom:443.013333pt;}
.y1c6{bottom:443.653333pt;}
.ye6{bottom:448.133333pt;}
.y1a1{bottom:450.053333pt;}
.y9c{bottom:451.973333pt;}
.y143{bottom:452.293333pt;}
.yb2{bottom:452.933333pt;}
.y4d{bottom:454.213333pt;}
.yd1{bottom:457.413333pt;}
.y32{bottom:459.013333pt;}
.y1b9{bottom:461.253333pt;}
.y6e{bottom:461.573333pt;}
.y1e0{bottom:462.533333pt;}
.y8c{bottom:464.133333pt;}
.y15c{bottom:466.053333pt;}
.y1a0{bottom:468.293333pt;}
.y122{bottom:469.280000pt;}
.y9b{bottom:470.560000pt;}
.yf8{bottom:470.880000pt;}
.yb1{bottom:471.520000pt;}
.ye5{bottom:476.000000pt;}
.y142{bottom:479.840000pt;}
.y4c{bottom:482.080000pt;}
.yd0{bottom:484.960000pt;}
.y31{bottom:486.240000pt;}
.y19f{bottom:486.880000pt;}
.y6d{bottom:488.800000pt;}
.y102{bottom:489.120000pt;}
.yb0{bottom:490.080000pt;}
.y15b{bottom:493.600000pt;}
.y17d{bottom:494.880000pt;}
.y9a{bottom:496.480000pt;}
.y121{bottom:496.800000pt;}
.yf7{bottom:498.400000pt;}
.y8b{bottom:500.000000pt;}
.ye4{bottom:503.200000pt;}
.y19e{bottom:505.120000pt;}
.y1d5{bottom:507.360000pt;}
.y141{bottom:507.680000pt;}
.y15a{bottom:508.640000pt;}
.y4b{bottom:509.600000pt;}
.ycf{bottom:512.800000pt;}
.y30{bottom:513.760000pt;}
.y6c{bottom:516.320000pt;}
.y99{bottom:516.640000pt;}
.ye3{bottom:521.440000pt;}
.y17c{bottom:523.040000pt;}
.y19d{bottom:523.680000pt;}
.y120{bottom:524.320000pt;}
.yf6{bottom:525.920000pt;}
.y8a{bottom:527.520000pt;}
.yaf{bottom:531.360000pt;}
.y1d4{bottom:534.880000pt;}
.y140{bottom:535.200000pt;}
.y4a{bottom:537.120000pt;}
.ye2{bottom:540.000000pt;}
.yce{bottom:540.320000pt;}
.y2f{bottom:540.960000pt;}
.y19c{bottom:541.920000pt;}
.y11f{bottom:542.880000pt;}
.y6b{bottom:544.480000pt;}
.y17b{bottom:551.520000pt;}
.yf5{bottom:553.440000pt;}
.y89{bottom:555.040000pt;}
.yae{bottom:558.560000pt;}
.y19b{bottom:560.480000pt;}
.y11e{bottom:561.120000pt;}
.y1d3{bottom:562.400000pt;}
.y13f{bottom:562.720000pt;}
.y49{bottom:564.640000pt;}
.y158{bottom:565.280000pt;}
.ycd{bottom:567.840000pt;}
.y2e{bottom:569.120000pt;}
.ye{bottom:571.680000pt;}
.y6a{bottom:572.000000pt;}
.y19a{bottom:578.720000pt;}
.y179{bottom:579.680000pt;}
.yf4{bottom:581.280000pt;}
.ye1{bottom:581.600000pt;}
.y88{bottom:582.880000pt;}
.yad{bottom:586.080000pt;}
.y13e{bottom:590.266667pt;}
.y48{bottom:592.506667pt;}
.y156{bottom:593.480000pt;}
.y11d{bottom:595.706667pt;}
.y2d{bottom:596.666667pt;}
.y199{bottom:597.306667pt;}
.y69{bottom:599.546667pt;}
.y175{bottom:607.880000pt;}
.ye0{bottom:608.826667pt;}
.ycc{bottom:609.146667pt;}
.yac{bottom:613.946667pt;}
.y198{bottom:615.546667pt;}
.y13d{bottom:617.786667pt;}
.y87{bottom:618.106667pt;}
.y47{bottom:620.026667pt;}
.ya{bottom:621.960000pt;}
.y11c{bottom:622.906667pt;}
.y68{bottom:627.066667pt;}
.y197{bottom:634.426667pt;}
.y1c3{bottom:636.026667pt;}
.ycb{bottom:636.346667pt;}
.y2c{bottom:637.626667pt;}
.y1df{bottom:641.466667pt;}
.y13c{bottom:645.306667pt;}
.y46{bottom:647.546667pt;}
.y11b{bottom:650.746667pt;}
.y196{bottom:652.666667pt;}
.y86{bottom:653.626667pt;}
.y1c2{bottom:654.586667pt;}
.y67{bottom:654.906667pt;}
.yab{bottom:655.226667pt;}
.yca{bottom:663.866667pt;}
.y2b{bottom:665.146667pt;}
.y1de{bottom:668.986667pt;}
.y1d2{bottom:672.826667pt;}
.y13b{bottom:673.146667pt;}
.y45{bottom:675.066667pt;}
.y11a{bottom:678.266667pt;}
.y195{bottom:680.506667pt;}
.y1c1{bottom:682.106667pt;}
.y66{bottom:682.426667pt;}
.y85{bottom:689.146667pt;}
.y174{bottom:691.400000pt;}
.yc9{bottom:691.706667pt;}
.y2a{bottom:692.666667pt;}
.y1dd{bottom:696.506667pt;}
.y13a{bottom:700.666667pt;}
.y44{bottom:702.906667pt;}
.y119{bottom:705.786667pt;}
.y194{bottom:708.066667pt;}
.y65{bottom:709.986667pt;}
.yc8{bottom:719.266667pt;}
.y29{bottom:720.546667pt;}
.y1dc{bottom:724.386667pt;}
.y84{bottom:725.026667pt;}
.y1d1{bottom:728.226667pt;}
.y139{bottom:728.546667pt;}
.y43{bottom:730.466667pt;}
.y173{bottom:733.026667pt;}
.y118{bottom:733.346667pt;}
.y1{bottom:734.320000pt;}
.y193{bottom:735.586667pt;}
.y64{bottom:737.506667pt;}
.yc7{bottom:746.786667pt;}
.y1d0{bottom:755.746667pt;}
.y138{bottom:756.066667pt;}
.y42{bottom:757.986667pt;}
.y172{bottom:760.546667pt;}
.y14e{bottom:760.560000pt;}
.y83{bottom:760.866667pt;}
.y117{bottom:761.186667pt;}
.y28{bottom:761.506667pt;}
.y192{bottom:762.786667pt;}
.y63{bottom:765.346667pt;}
.y1db{bottom:765.666667pt;}
.y1c4{bottom:772.706667pt;}
.ydf{bottom:773.986667pt;}
.yc6{bottom:774.306667pt;}
.y18f{bottom:778.160000pt;}
.y1cf{bottom:783.266667pt;}
.y137{bottom:783.586667pt;}
.y41{bottom:785.506667pt;}
.y171{bottom:788.066667pt;}
.y82{bottom:788.386667pt;}
.y116{bottom:788.706667pt;}
.y27{bottom:789.026667pt;}
.yde{bottom:792.546667pt;}
.y62{bottom:792.866667pt;}
.yc5{bottom:802.146667pt;}
.y136{bottom:811.106667pt;}
.y40{bottom:813.346667pt;}
.y81{bottom:815.906667pt;}
.y61{bottom:820.386667pt;}
.ydd{bottom:827.773333pt;}
.yc4{bottom:829.693333pt;}
.y26{bottom:830.013333pt;}
.y170{bottom:830.973333pt;}
.y1ce{bottom:838.653333pt;}
.y135{bottom:838.973333pt;}
.y3f{bottom:840.893333pt;}
.y80{bottom:843.773333pt;}
.y1b6{bottom:847.613333pt;}
.y60{bottom:847.933333pt;}
.yc3{bottom:857.213333pt;}
.y16f{bottom:859.133333pt;}
.y18e{bottom:861.693333pt;}
.y25{bottom:864.253333pt;}
.y1b5{bottom:866.173333pt;}
.y134{bottom:866.493333pt;}
.y3e{bottom:868.413333pt;}
.y7f{bottom:871.293333pt;}
.y101{bottom:875.453333pt;}
.y5f{bottom:875.773333pt;}
.yc2{bottom:884.733333pt;}
.y115{bottom:885.053333pt;}
.y24{bottom:885.373333pt;}
.y16e{bottom:887.293333pt;}
.y1cd{bottom:893.693333pt;}
.y133{bottom:894.013333pt;}
.y3d{bottom:895.933333pt;}
.y7e{bottom:898.813333pt;}
.y18d{bottom:902.973333pt;}
.y5e{bottom:903.293333pt;}
.y14d{bottom:912.253333pt;}
.yf3{bottom:912.573333pt;}
.y16d{bottom:915.773333pt;}
.y23{bottom:916.413333pt;}
.yc1{bottom:919.933333pt;}
.y1cc{bottom:921.213333pt;}
.y132{bottom:921.533333pt;}
.y3c{bottom:923.773333pt;}
.y7d{bottom:926.333333pt;}
.yc0{bottom:930.493333pt;}
.y5d{bottom:930.813333pt;}
.y114{bottom:939.773333pt;}
.yf2{bottom:940.093333pt;}
.y16a{bottom:943.933333pt;}
.y1cb{bottom:949.093333pt;}
.y131{bottom:949.413333pt;}
.y3b{bottom:951.333333pt;}
.y7c{bottom:953.893333pt;}
.y5c{bottom:958.373333pt;}
.ybf{bottom:965.733333pt;}
.y113{bottom:967.333333pt;}
.yf1{bottom:967.653333pt;}
.y1ca{bottom:976.293333pt;}
.y130{bottom:976.933333pt;}
.y3a{bottom:978.853333pt;}
.y5b{bottom:985.893333pt;}
.yaa{bottom:986.213333pt;}
.yf0{bottom:994.853333pt;}
.y14c{bottom:995.173333pt;}
.y169{bottom:999.653333pt;}
.y5a{bottom:1013.413333pt;}
.y39{bottom:1013.733333pt;}
.y38{bottom:1042.533333pt;}
.y37{bottom:1061.093333pt;}
.h12{height:21.468000pt;}
.h10{height:23.986667pt;}
.h1e{height:27.506667pt;}
.h23{height:27.520000pt;}
.h27{height:27.538667pt;}
.h22{height:27.552000pt;}
.h21{height:27.826667pt;}
.h2b{height:27.828000pt;}
.h24{height:27.840000pt;}
.h29{height:27.866667pt;}
.he{height:40.163750pt;}
.h11{height:40.221250pt;}
.h3{height:41.141250pt;}
.h18{height:41.456250pt;}
.h19{height:42.570000pt;}
.hb{height:48.032000pt;}
.h4{height:52.762500pt;}
.h26{height:55.066667pt;}
.h25{height:55.386667pt;}
.h20{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h15{height:62.781250pt;}
.h6{height:62.812500pt;}
.h14{height:64.500000pt;}
.h16{height:65.177500pt;}
.h1a{height:65.781915pt;}
.h17{height:70.896250pt;}
.h1c{height:71.002917pt;}
.h1b{height:71.024250pt;}
.h7{height:72.862500pt;}
.h13{height:74.820000pt;}
.hc{height:82.282500pt;}
.h2a{height:82.546667pt;}
.h28{height:82.866667pt;}
.h2c{height:82.880000pt;}
.h5{height:86.430000pt;}
.h8{height:112.338667pt;}
.h9{height:112.375000pt;}
.hd{height:135.066667pt;}
.h1f{height:137.933333pt;}
.ha{height:149.360625pt;}
.hf{height:226.920000pt;}
.h2{height:293.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:287.480000pt;}
.w5{width:287.760000pt;}
.w2{width:581.640000pt;}
.w3{width:581.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:7.348000pt;}
.x7{left:23.700000pt;}
.x8{left:38.102667pt;}
.x4{left:51.222667pt;}
.x1{left:106.284000pt;}
.xf{left:113.312000pt;}
.x15{left:129.344000pt;}
.x17{left:137.346667pt;}
.x3{left:140.849333pt;}
.x16{left:145.346667pt;}
.x11{left:160.386667pt;}
.x18{left:161.346667pt;}
.x1b{left:184.386667pt;}
.x10{left:187.581333pt;}
.xc{left:196.889333pt;}
.xa{left:218.649333pt;}
.xe{left:221.209333pt;}
.x14{left:260.893333pt;}
.xd{left:266.009333pt;}
.x9{left:271.796000pt;}
.xb{left:272.756000pt;}
.x2{left:283.636000pt;}
.x5{left:290.676000pt;}
.x1a{left:394.720000pt;}
.x19{left:664.573333pt;}
.x12{left:672.573333pt;}
.x13{left:680.573333pt;}
}




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