
    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_3dc9b9e407543ad9276773e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_355bd23d7e545611b8d283e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0ac09d4f6cf2ef56a703e8e6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7ee4ef08b5b28c5534c08032.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_a5db5f3e28e92960d003c73e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c698df6ef9d89892ab94656e.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_34d7b68df60cf71436d53dc2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_73eac1580180636cdd8d8826.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_3ebdfebcf09959cff58d2db7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_b77de9abf2d33205c1af5b5c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.v5{vertical-align:9.360000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.v7{vertical-align:36.000000px;}
.v6{vertical-align:42.480000px;}
.vb{vertical-align:48.240000px;}
.v8{vertical-align:54.720000px;}
.v9{vertical-align:57.600000px;}
.lsf{letter-spacing:-7.620000px;}
.ls1f{letter-spacing:-0.792000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls21{letter-spacing:-0.504000px;}
.ls28{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.262200px;}
.ls27{letter-spacing:-0.223800px;}
.ls3{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.496080px;}
.ls5{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.864000px;}
.ls20{letter-spacing:1.008000px;}
.ls26{letter-spacing:1.368000px;}
.ls8{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.584000px;}
.ls18{letter-spacing:3.060000px;}
.ls19{letter-spacing:3.600000px;}
.ls29{letter-spacing:6.480000px;}
.ls17{letter-spacing:8.640000px;}
.ls12{letter-spacing:10.800000px;}
.ls11{letter-spacing:11.880000px;}
.ls0{letter-spacing:81.000000px;}
.ls1{letter-spacing:81.720000px;}
.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;}
}
.wsa{word-spacing:-53.784000px;}
.ws19{word-spacing:-19.584000px;}
.ws15{word-spacing:-19.008000px;}
.ws11{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.720000px;}
.ws17{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws1c{word-spacing:-17.568000px;}
.ws16{word-spacing:-17.496000px;}
.ws13{word-spacing:-17.424000px;}
.ws14{word-spacing:-17.208000px;}
.wsd{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.297800px;}
.ws10{word-spacing:-16.254600px;}
.ws8{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1b{word-spacing:-11.836200px;}
.wse{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.380000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-12.240000px;}
._1c{margin-left:-8.496000px;}
._1b{margin-left:-6.264000px;}
._1a{margin-left:-4.536000px;}
._12{margin-left:-2.426160px;}
._0{margin-left:-1.010880px;}
._1{width:1.010880px;}
._8{width:2.364480px;}
._2{width:3.816000px;}
._3{width:4.896000px;}
._5{width:6.552000px;}
._10{width:7.560000px;}
._f{width:8.856000px;}
._4{width:9.864000px;}
._a{width:11.304000px;}
._b{width:12.352080px;}
._c{width:13.536000px;}
._d{width:14.976000px;}
._e{width:15.984000px;}
._11{width:16.992000px;}
._9{width:19.512000px;}
._14{width:20.777760px;}
._13{width:21.789120px;}
._15{width:23.282880px;}
._16{width:24.912000px;}
._6{width:25.920000px;}
._7{width:27.432000px;}
._26{width:28.653120px;}
._24{width:30.528000px;}
._25{width:32.063280px;}
._27{width:34.056000px;}
._22{width:36.000000px;}
._1e{width:40.896000px;}
._2b{width:45.266160px;}
._2a{width:46.944000px;}
._28{width:49.968000px;}
._29{width:51.120000px;}
._2e{width:55.872000px;}
._2f{width:56.896800px;}
._19{width:62.640000px;}
._1d{width:93.576000px;}
._30{width:105.408000px;}
._31{width:106.632000px;}
._17{width:111.576000px;}
._23{width:112.860000px;}
._21{width:117.360000px;}
._20{width:149.112000px;}
._2c{width:196.488000px;}
._2d{width:197.856000px;}
._1f{width:373.836000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(27,28,27);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(35,35,35);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.684000px;}
.y14{bottom:6.120000px;}
.y6e{bottom:7.020000px;}
.y11{bottom:7.380000px;}
.yfc{bottom:7.545000px;}
.y70{bottom:7.560000px;}
.yec{bottom:7.740000px;}
.y18{bottom:8.640000px;}
.yfe{bottom:8.805000px;}
.yf0{bottom:8.820000px;}
.y174{bottom:10.260000px;}
.y171{bottom:10.440000px;}
.y75{bottom:10.620000px;}
.y16c{bottom:11.880000px;}
.yc8{bottom:21.600000px;}
.ycc{bottom:21.780000px;}
.yca{bottom:21.960000px;}
.yd5{bottom:21.990000px;}
.y168{bottom:26.100000px;}
.yc6{bottom:28.440000px;}
.y6d{bottom:30.780000px;}
.y130{bottom:31.140000px;}
.y10{bottom:31.365000px;}
.yea{bottom:31.500000px;}
.y17{bottom:32.400000px;}
.yf6{bottom:32.760000px;}
.y16{bottom:33.840000px;}
.y16b{bottom:35.640000px;}
.y34{bottom:39.706427px;}
.yc7{bottom:43.380000px;}
.y6c{bottom:54.540000px;}
.y16a{bottom:54.720000px;}
.yf{bottom:55.125000px;}
.ye9{bottom:55.260000px;}
.y3{bottom:58.320000px;}
.yc5{bottom:65.160000px;}
.y6b{bottom:78.480000px;}
.ye{bottom:78.885000px;}
.y2{bottom:79.020000px;}
.yd{bottom:102.645000px;}
.yc3{bottom:114.480000px;}
.y68{bottom:114.840000px;}
.yb7{bottom:124.020000px;}
.yc{bottom:126.045000px;}
.y92{bottom:132.660000px;}
.yc2{bottom:138.240000px;}
.y60{bottom:138.600000px;}
.yb6{bottom:147.780000px;}
.yb{bottom:148.005000px;}
.y154{bottom:150.660000px;}
.y12{bottom:151.245000px;}
.y108{bottom:151.560000px;}
.ye7{bottom:153.540000px;}
.y12e{bottom:154.620000px;}
.y91{bottom:156.420000px;}
.y6{bottom:158.805000px;}
.yc1{bottom:162.000000px;}
.y5f{bottom:162.360000px;}
.yb5{bottom:172.080000px;}
.y33{bottom:172.260000px;}
.y153{bottom:174.420000px;}
.y107{bottom:175.680000px;}
.ya{bottom:176.445000px;}
.ye6{bottom:177.300000px;}
.y12d{bottom:178.380000px;}
.y90{bottom:180.360000px;}
.yc0{bottom:185.760000px;}
.y5e{bottom:186.120000px;}
.yb4{bottom:195.870000px;}
.y32{bottom:196.050000px;}
.y166{bottom:197.310000px;}
.y152{bottom:198.210000px;}
.y106{bottom:199.650000px;}
.ye5{bottom:201.270000px;}
.y12c{bottom:202.530000px;}
.y8f{bottom:204.150000px;}
.y9{bottom:204.165000px;}
.ybf{bottom:209.730000px;}
.y5d{bottom:210.090000px;}
.y31{bottom:219.450000px;}
.yb3{bottom:219.630000px;}
.y165{bottom:221.070000px;}
.y151{bottom:222.150000px;}
.y105{bottom:223.410000px;}
.ye4{bottom:225.030000px;}
.y12b{bottom:226.290000px;}
.y8e{bottom:227.910000px;}
.y8{bottom:232.065000px;}
.ybe{bottom:233.490000px;}
.y5c{bottom:233.850000px;}
.yb2{bottom:243.390000px;}
.y30{bottom:243.750000px;}
.y164{bottom:244.830000px;}
.y150{bottom:245.910000px;}
.y104{bottom:247.170000px;}
.ye3{bottom:248.790000px;}
.y12a{bottom:250.050000px;}
.y8d{bottom:251.670000px;}
.ybd{bottom:257.250000px;}
.y5b{bottom:257.610000px;}
.y7{bottom:259.785000px;}
.y5{bottom:265.545000px;}
.yb1{bottom:266.970000px;}
.y2f{bottom:267.510000px;}
.y163{bottom:268.770000px;}
.y14f{bottom:269.670000px;}
.y103{bottom:270.930000px;}
.ye2{bottom:272.550000px;}
.y129{bottom:273.990000px;}
.y8c{bottom:275.790000px;}
.ybc{bottom:281.010000px;}
.y5a{bottom:281.370000px;}
.yb0{bottom:291.090000px;}
.y2e{bottom:291.270000px;}
.y162{bottom:292.530000px;}
.y14e{bottom:293.430000px;}
.y102{bottom:294.870000px;}
.ye1{bottom:296.490000px;}
.y128{bottom:297.750000px;}
.y8b{bottom:299.730000px;}
.ybb{bottom:304.950000px;}
.y59{bottom:305.310000px;}
.yaf{bottom:314.850000px;}
.y2d{bottom:315.030000px;}
.y161{bottom:316.290000px;}
.y14d{bottom:317.370000px;}
.y101{bottom:318.630000px;}
.ye0{bottom:320.250000px;}
.y127{bottom:321.510000px;}
.y8a{bottom:323.670000px;}
.yba{bottom:328.710000px;}
.y58{bottom:329.070000px;}
.yae{bottom:338.610000px;}
.y2c{bottom:338.970000px;}
.y160{bottom:340.050000px;}
.y14c{bottom:341.490000px;}
.y100{bottom:342.390000px;}
.ydf{bottom:344.010000px;}
.y126{bottom:345.270000px;}
.y89{bottom:347.430000px;}
.y67{bottom:352.470000px;}
.y57{bottom:352.830000px;}
.yad{bottom:362.550000px;}
.y2b{bottom:362.730000px;}
.y15f{bottom:363.990000px;}
.y14b{bottom:365.250000px;}
.yff{bottom:366.150000px;}
.yde{bottom:367.410000px;}
.y125{bottom:369.210000px;}
.y88{bottom:371.190000px;}
.y56{bottom:376.590000px;}
.yfd{bottom:383.265000px;}
.yac{bottom:386.130000px;}
.y2a{bottom:386.490000px;}
.y15e{bottom:387.750000px;}
.y14a{bottom:389.010000px;}
.y124{bottom:392.970000px;}
.y87{bottom:394.950000px;}
.yab{bottom:398.190000px;}
.y55{bottom:400.530000px;}
.ydd{bottom:406.650000px;}
.yfb{bottom:409.185000px;}
.y29{bottom:410.250000px;}
.y15d{bottom:411.510000px;}
.y149{bottom:412.770000px;}
.y123{bottom:416.730000px;}
.y86{bottom:418.890000px;}
.y54{bottom:424.290000px;}
.ydc{bottom:430.455000px;}
.yfa{bottom:433.155000px;}
.y28{bottom:434.235000px;}
.yaa{bottom:435.135000px;}
.y15c{bottom:435.315000px;}
.y148{bottom:436.755000px;}
.y122{bottom:440.535000px;}
.y85{bottom:442.695000px;}
.y53{bottom:448.095000px;}
.ydb{bottom:454.215000px;}
.yf9{bottom:457.275000px;}
.y27{bottom:457.995000px;}
.ya9{bottom:459.075000px;}
.y15b{bottom:459.255000px;}
.y147{bottom:460.515000px;}
.y121{bottom:464.475000px;}
.y84{bottom:466.095000px;}
.yda{bottom:471.495000px;}
.y52{bottom:471.855000px;}
.yf8{bottom:481.215000px;}
.y26{bottom:481.755000px;}
.ya8{bottom:482.835000px;}
.y15a{bottom:483.015000px;}
.y146{bottom:484.275000px;}
.y120{bottom:488.235000px;}
.y83{bottom:490.215000px;}
.y66{bottom:495.435000px;}
.y51{bottom:495.795000px;}
.yf7{bottom:505.155000px;}
.y25{bottom:505.515000px;}
.ya7{bottom:506.595000px;}
.y159{bottom:506.775000px;}
.y145{bottom:508.035000px;}
.yd9{bottom:508.935000px;}
.y11f{bottom:511.995000px;}
.y82{bottom:514.155000px;}
.y50{bottom:519.555000px;}
.yf5{bottom:529.275000px;}
.y24{bottom:529.455000px;}
.ya6{bottom:530.355000px;}
.y158{bottom:530.535000px;}
.y144{bottom:531.975000px;}
.y11e{bottom:535.755000px;}
.y81{bottom:537.915000px;}
.y4f{bottom:543.315000px;}
.yd8{bottom:545.835000px;}
.y23{bottom:553.215000px;}
.ya5{bottom:554.295000px;}
.y157{bottom:554.475000px;}
.y143{bottom:555.735000px;}
.y11d{bottom:559.695000px;}
.y80{bottom:561.675000px;}
.y4e{bottom:567.075000px;}
.y22{bottom:576.975000px;}
.y156{bottom:577.875000px;}
.ya4{bottom:578.055000px;}
.yf4{bottom:578.415000px;}
.y142{bottom:579.135000px;}
.yd7{bottom:582.555000px;}
.y11c{bottom:583.455000px;}
.y7f{bottom:585.435000px;}
.y4d{bottom:591.015000px;}
.y21{bottom:600.735000px;}
.y155{bottom:601.635000px;}
.ya3{bottom:601.815000px;}
.yf3{bottom:602.355000px;}
.y141{bottom:602.895000px;}
.y11b{bottom:607.215000px;}
.y7e{bottom:609.195000px;}
.y4c{bottom:614.775000px;}
.y17d{bottom:619.095000px;}
.yd6{bottom:619.455000px;}
.y20{bottom:624.675000px;}
.ya2{bottom:625.575000px;}
.yf2{bottom:626.475000px;}
.y140{bottom:627.195000px;}
.y11a{bottom:630.975000px;}
.y7d{bottom:633.135000px;}
.yb9{bottom:638.175000px;}
.y4b{bottom:638.535000px;}
.y17c{bottom:642.855000px;}
.y1f{bottom:648.435000px;}
.ya1{bottom:649.515000px;}
.yf1{bottom:650.415000px;}
.y13f{bottom:650.955000px;}
.y119{bottom:654.915000px;}
.yd4{bottom:656.175000px;}
.y7c{bottom:656.895000px;}
.y4a{bottom:662.295000px;}
.y17b{bottom:669.705000px;}
.y1e{bottom:672.225000px;}
.ya0{bottom:673.305000px;}
.yef{bottom:674.385000px;}
.y13e{bottom:674.745000px;}
.y118{bottom:678.705000px;}
.y7b{bottom:680.685000px;}
.y49{bottom:686.085000px;}
.yd3{bottom:693.105000px;}
.y13d{bottom:693.465000px;}
.y1d{bottom:695.985000px;}
.y17a{bottom:696.525000px;}
.y9f{bottom:697.065000px;}
.yee{bottom:699.585000px;}
.y117{bottom:702.465000px;}
.y7a{bottom:704.445000px;}
.y65{bottom:709.665000px;}
.y48{bottom:710.025000px;}
.y13c{bottom:719.565000px;}
.y1c{bottom:719.745000px;}
.y9e{bottom:720.825000px;}
.y179{bottom:723.345000px;}
.yed{bottom:723.525000px;}
.y116{bottom:726.225000px;}
.y79{bottom:728.385000px;}
.yd2{bottom:730.005000px;}
.y64{bottom:733.425000px;}
.y47{bottom:733.785000px;}
.y1b{bottom:743.685000px;}
.y115{bottom:744.225000px;}
.y9d{bottom:744.585000px;}
.yeb{bottom:747.645000px;}
.y178{bottom:749.985000px;}
.y78{bottom:752.145000px;}
.y63{bottom:757.185000px;}
.y46{bottom:757.545000px;}
.yd1{bottom:766.725000px;}
.y1a{bottom:767.085000px;}
.y13b{bottom:767.625000px;}
.y114{bottom:767.985000px;}
.y9c{bottom:768.525000px;}
.y77{bottom:775.545000px;}
.y177{bottom:778.245000px;}
.y45{bottom:781.305000px;}
.y19{bottom:791.565000px;}
.y113{bottom:791.745000px;}
.y9b{bottom:792.285000px;}
.ye8{bottom:796.425000px;}
.y76{bottom:799.665000px;}
.yd0{bottom:803.625000px;}
.y176{bottom:805.065000px;}
.y44{bottom:805.245000px;}
.y15{bottom:807.045000px;}
.y112{bottom:815.505000px;}
.y13a{bottom:815.685000px;}
.y9a{bottom:816.045000px;}
.y74{bottom:816.945000px;}
.y43{bottom:829.005000px;}
.y175{bottom:831.885000px;}
.y99{bottom:839.445000px;}
.y139{bottom:839.625000px;}
.ycf{bottom:840.345000px;}
.y73{bottom:843.945000px;}
.y42{bottom:852.765000px;}
.y13{bottom:855.825000px;}
.y173{bottom:858.705000px;}
.y111{bottom:863.205000px;}
.y98{bottom:863.745000px;}
.y138{bottom:864.825000px;}
.y72{bottom:867.705000px;}
.y4{bottom:875.625000px;}
.y41{bottom:876.525000px;}
.yce{bottom:877.245000px;}
.y172{bottom:885.345000px;}
.y97{bottom:887.505000px;}
.y110{bottom:888.405000px;}
.y137{bottom:888.765000px;}
.y71{bottom:891.465000px;}
.y40{bottom:900.465000px;}
.y96{bottom:911.310000px;}
.y170{bottom:912.210000px;}
.y136{bottom:912.750000px;}
.y10f{bottom:913.830000px;}
.ycd{bottom:914.010000px;}
.y6f{bottom:915.270000px;}
.y3f{bottom:924.270000px;}
.y95{bottom:934.710000px;}
.y135{bottom:936.870000px;}
.y10e{bottom:937.590000px;}
.y16f{bottom:939.030000px;}
.y6a{bottom:939.930000px;}
.y3e{bottom:948.030000px;}
.ycb{bottom:950.910000px;}
.y94{bottom:957.570000px;}
.y134{bottom:960.810000px;}
.y10d{bottom:961.350000px;}
.y16e{bottom:962.790000px;}
.y93{bottom:966.570000px;}
.y3d{bottom:971.790000px;}
.y133{bottom:984.750000px;}
.y10c{bottom:985.290000px;}
.y16d{bottom:986.550000px;}
.yc9{bottom:987.630000px;}
.y3c{bottom:995.730000px;}
.y10b{bottom:1009.050000px;}
.y132{bottom:1009.950000px;}
.y169{bottom:1011.210000px;}
.y3b{bottom:1019.490000px;}
.yc4{bottom:1025.610000px;}
.y10a{bottom:1032.810000px;}
.y131{bottom:1033.890000px;}
.y3a{bottom:1043.250000px;}
.y109{bottom:1058.190000px;}
.y12f{bottom:1058.550000px;}
.y167{bottom:1063.590000px;}
.y39{bottom:1067.010000px;}
.y69{bottom:1090.590000px;}
.y38{bottom:1090.950000px;}
.yb8{bottom:1114.350000px;}
.y37{bottom:1114.710000px;}
.y36{bottom:1138.110000px;}
.y62{bottom:1138.470000px;}
.y1{bottom:1192.680000px;}
.y61{bottom:1207.786474px;}
.hf{height:15.960000px;}
.h9{height:19.800000px;}
.h34{height:23.745000px;}
.h16{height:23.760000px;}
.h15{height:23.782500px;}
.h14{height:23.925000px;}
.h2c{height:23.940000px;}
.h31{height:23.961000px;}
.h35{height:23.962500px;}
.h2e{height:23.970000px;}
.h2f{height:24.105000px;}
.h2b{height:24.120000px;}
.h32{height:25.185000px;}
.h2d{height:25.200000px;}
.h3c{height:26.640000px;}
.h3a{height:26.820000px;}
.h3b{height:26.856000px;}
.h17{height:27.000000px;}
.h3d{height:28.260000px;}
.h10{height:33.328125px;}
.h23{height:36.705000px;}
.h26{height:36.720000px;}
.h24{height:36.742500px;}
.h20{height:36.885000px;}
.h25{height:36.900000px;}
.h27{height:36.930000px;}
.h37{height:42.840000px;}
.h33{height:47.505000px;}
.h36{height:47.865000px;}
.h2a{height:47.880000px;}
.hb{height:48.780000px;}
.h13{height:48.796875px;}
.h30{height:49.125000px;}
.h11{height:50.027344px;}
.h39{height:52.380000px;}
.ha{height:58.621992px;}
.h4{height:58.651172px;}
.hc{height:58.766484px;}
.h7{height:64.978594px;}
.h22{height:65.010937px;}
.h1e{height:66.757500px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h21{height:71.225156px;}
.h29{height:72.000000px;}
.h1f{height:72.326250px;}
.hd{height:72.562500px;}
.h18{height:78.548555px;}
.h1d{height:80.445000px;}
.he{height:80.464922px;}
.h28{height:80.584922px;}
.h1c{height:80.644922px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h12{height:95.205000px;}
.h38{height:95.220000px;}
.h19{height:106.664062px;}
.h1a{height:108.400781px;}
.h1b{height:118.904063px;}
.h3{height:279.255000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:18.000000px;}
.w5{width:32.029500px;}
.wa{width:35.089500px;}
.w2c{width:48.600000px;}
.w2f{width:51.120000px;}
.w2e{width:58.320000px;}
.w21{width:60.465000px;}
.w2d{width:60.840000px;}
.w20{width:67.341000px;}
.w1f{width:74.685000px;}
.w1e{width:74.736000px;}
.w28{width:81.000000px;}
.w11{width:82.836000px;}
.w10{width:86.220000px;}
.w1d{width:86.400000px;}
.w4{width:86.745000px;}
.w12{width:87.645000px;}
.w27{width:87.696000px;}
.w2a{width:90.360000px;}
.w17{width:93.765000px;}
.wd{width:94.485000px;}
.w13{width:94.521000px;}
.w29{width:101.376000px;}
.w19{width:101.505000px;}
.w1b{width:101.541000px;}
.w1a{width:105.825000px;}
.w15{width:109.281000px;}
.w26{width:109.440000px;}
.w2{width:111.949500px;}
.w18{width:113.601000px;}
.w16{width:117.216000px;}
.w9{width:117.979500px;}
.wb{width:121.485000px;}
.w2b{width:121.500000px;}
.w25{width:125.445000px;}
.w14{width:129.229500px;}
.w24{width:160.215000px;}
.wf{width:183.439500px;}
.w23{width:188.490000px;}
.w22{width:208.459500px;}
.wc{width:216.060000px;}
.w1c{width:227.899500px;}
.we{width:236.355000px;}
.w7{width:361.090500px;}
.w3{width:454.410000px;}
.w6{width:621.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.089500px;}
.x33{left:9.360000px;}
.x6{left:10.425000px;}
.x8{left:16.545000px;}
.x3f{left:19.080000px;}
.x47{left:21.240000px;}
.x45{left:22.500000px;}
.x24{left:24.465000px;}
.x40{left:28.080000px;}
.xf{left:29.325000px;}
.x7{left:32.745000px;}
.x44{left:36.000000px;}
.xe{left:37.425000px;}
.x43{left:40.500000px;}
.x42{left:42.660000px;}
.xc{left:46.650000px;}
.x46{left:54.180000px;}
.xa{left:56.730000px;}
.x41{left:57.780000px;}
.xd{left:64.470000px;}
.x12{left:78.660000px;}
.x4{left:103.663500px;}
.x19{left:126.946500px;}
.x9{left:128.370000px;}
.x38{left:130.896000px;}
.x1{left:135.036000px;}
.x18{left:156.270000px;}
.x1a{left:162.045000px;}
.x13{left:167.085000px;}
.x3e{left:179.490000px;}
.x14{left:189.030000px;}
.x10{left:196.230000px;}
.x34{left:198.930000px;}
.xb{left:227.190000px;}
.x39{left:240.330000px;}
.x5{left:247.005000px;}
.x27{left:256.185000px;}
.x15{left:264.741760px;}
.x1f{left:279.930000px;}
.x1b{left:283.545000px;}
.x21{left:310.395000px;}
.x3a{left:328.035000px;}
.x35{left:335.415000px;}
.x2d{left:354.855000px;}
.x20{left:356.475000px;}
.x28{left:365.475000px;}
.x17{left:386.300262px;}
.x22{left:396.615000px;}
.x3b{left:409.035000px;}
.x1e{left:419.655000px;}
.x2e{left:441.255000px;}
.x2{left:459.975000px;}
.x23{left:479.460000px;}
.x29{left:482.700000px;}
.x1c{left:499.620000px;}
.x3c{left:510.405000px;}
.x2f{left:516.000000px;}
.x36{left:523.920000px;}
.x25{left:567.120000px;}
.x2a{left:576.480000px;}
.x2c{left:588.540000px;}
.x30{left:590.700000px;}
.x1d{left:594.120000px;}
.x3d{left:600.765000px;}
.x26{left:661.620000px;}
.x31{left:665.400000px;}
.x37{left:684.150000px;}
.x2b{left:690.090000px;}
.x11{left:701.430000px;}
.x32{left:732.750000px;}
.x16{left:764.580048px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.v5{vertical-align:8.320000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.v7{vertical-align:32.000000pt;}
.v6{vertical-align:37.760000pt;}
.vb{vertical-align:42.880000pt;}
.v8{vertical-align:48.640000pt;}
.v9{vertical-align:51.200000pt;}
.lsf{letter-spacing:-6.773333pt;}
.ls1f{letter-spacing:-0.704000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.233067pt;}
.ls27{letter-spacing:-0.198933pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.440960pt;}
.ls5{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.896000pt;}
.ls26{letter-spacing:1.216000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.408000pt;}
.ls18{letter-spacing:2.720000pt;}
.ls19{letter-spacing:3.200000pt;}
.ls29{letter-spacing:5.760000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls11{letter-spacing:10.560000pt;}
.ls0{letter-spacing:72.000000pt;}
.ls1{letter-spacing:72.640000pt;}
.wsa{word-spacing:-47.808000pt;}
.ws19{word-spacing:-17.408000pt;}
.ws15{word-spacing:-16.896000pt;}
.ws11{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws17{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1c{word-spacing:-15.616000pt;}
.ws16{word-spacing:-15.552000pt;}
.ws13{word-spacing:-15.488000pt;}
.ws14{word-spacing:-15.296000pt;}
.wsd{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.486933pt;}
.ws10{word-spacing:-14.448533pt;}
.ws8{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.521067pt;}
.wse{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.226667pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-10.880000pt;}
._1c{margin-left:-7.552000pt;}
._1b{margin-left:-5.568000pt;}
._1a{margin-left:-4.032000pt;}
._12{margin-left:-2.156587pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.898560pt;}
._8{width:2.101760pt;}
._2{width:3.392000pt;}
._3{width:4.352000pt;}
._5{width:5.824000pt;}
._10{width:6.720000pt;}
._f{width:7.872000pt;}
._4{width:8.768000pt;}
._a{width:10.048000pt;}
._b{width:10.979627pt;}
._c{width:12.032000pt;}
._d{width:13.312000pt;}
._e{width:14.208000pt;}
._11{width:15.104000pt;}
._9{width:17.344000pt;}
._14{width:18.469120pt;}
._13{width:19.368107pt;}
._15{width:20.695893pt;}
._16{width:22.144000pt;}
._6{width:23.040000pt;}
._7{width:24.384000pt;}
._26{width:25.469440pt;}
._24{width:27.136000pt;}
._25{width:28.500693pt;}
._27{width:30.272000pt;}
._22{width:32.000000pt;}
._1e{width:36.352000pt;}
._2b{width:40.236587pt;}
._2a{width:41.728000pt;}
._28{width:44.416000pt;}
._29{width:45.440000pt;}
._2e{width:49.664000pt;}
._2f{width:50.574933pt;}
._19{width:55.680000pt;}
._1d{width:83.178667pt;}
._30{width:93.696000pt;}
._31{width:94.784000pt;}
._17{width:99.178667pt;}
._23{width:100.320000pt;}
._21{width:104.320000pt;}
._20{width:132.544000pt;}
._2c{width:174.656000pt;}
._2d{width:175.872000pt;}
._1f{width:332.298667pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.274667pt;}
.y14{bottom:5.440000pt;}
.y6e{bottom:6.240000pt;}
.y11{bottom:6.560000pt;}
.yfc{bottom:6.706667pt;}
.y70{bottom:6.720000pt;}
.yec{bottom:6.880000pt;}
.y18{bottom:7.680000pt;}
.yfe{bottom:7.826667pt;}
.yf0{bottom:7.840000pt;}
.y174{bottom:9.120000pt;}
.y171{bottom:9.280000pt;}
.y75{bottom:9.440000pt;}
.y16c{bottom:10.560000pt;}
.yc8{bottom:19.200000pt;}
.ycc{bottom:19.360000pt;}
.yca{bottom:19.520000pt;}
.yd5{bottom:19.546667pt;}
.y168{bottom:23.200000pt;}
.yc6{bottom:25.280000pt;}
.y6d{bottom:27.360000pt;}
.y130{bottom:27.680000pt;}
.y10{bottom:27.880000pt;}
.yea{bottom:28.000000pt;}
.y17{bottom:28.800000pt;}
.yf6{bottom:29.120000pt;}
.y16{bottom:30.080000pt;}
.y16b{bottom:31.680000pt;}
.y34{bottom:35.294602pt;}
.yc7{bottom:38.560000pt;}
.y6c{bottom:48.480000pt;}
.y16a{bottom:48.640000pt;}
.yf{bottom:49.000000pt;}
.ye9{bottom:49.120000pt;}
.y3{bottom:51.840000pt;}
.yc5{bottom:57.920000pt;}
.y6b{bottom:69.760000pt;}
.ye{bottom:70.120000pt;}
.y2{bottom:70.240000pt;}
.yd{bottom:91.240000pt;}
.yc3{bottom:101.760000pt;}
.y68{bottom:102.080000pt;}
.yb7{bottom:110.240000pt;}
.yc{bottom:112.040000pt;}
.y92{bottom:117.920000pt;}
.yc2{bottom:122.880000pt;}
.y60{bottom:123.200000pt;}
.yb6{bottom:131.360000pt;}
.yb{bottom:131.560000pt;}
.y154{bottom:133.920000pt;}
.y12{bottom:134.440000pt;}
.y108{bottom:134.720000pt;}
.ye7{bottom:136.480000pt;}
.y12e{bottom:137.440000pt;}
.y91{bottom:139.040000pt;}
.y6{bottom:141.160000pt;}
.yc1{bottom:144.000000pt;}
.y5f{bottom:144.320000pt;}
.yb5{bottom:152.960000pt;}
.y33{bottom:153.120000pt;}
.y153{bottom:155.040000pt;}
.y107{bottom:156.160000pt;}
.ya{bottom:156.840000pt;}
.ye6{bottom:157.600000pt;}
.y12d{bottom:158.560000pt;}
.y90{bottom:160.320000pt;}
.yc0{bottom:165.120000pt;}
.y5e{bottom:165.440000pt;}
.yb4{bottom:174.106667pt;}
.y32{bottom:174.266667pt;}
.y166{bottom:175.386667pt;}
.y152{bottom:176.186667pt;}
.y106{bottom:177.466667pt;}
.ye5{bottom:178.906667pt;}
.y12c{bottom:180.026667pt;}
.y8f{bottom:181.466667pt;}
.y9{bottom:181.480000pt;}
.ybf{bottom:186.426667pt;}
.y5d{bottom:186.746667pt;}
.y31{bottom:195.066667pt;}
.yb3{bottom:195.226667pt;}
.y165{bottom:196.506667pt;}
.y151{bottom:197.466667pt;}
.y105{bottom:198.586667pt;}
.ye4{bottom:200.026667pt;}
.y12b{bottom:201.146667pt;}
.y8e{bottom:202.586667pt;}
.y8{bottom:206.280000pt;}
.ybe{bottom:207.546667pt;}
.y5c{bottom:207.866667pt;}
.yb2{bottom:216.346667pt;}
.y30{bottom:216.666667pt;}
.y164{bottom:217.626667pt;}
.y150{bottom:218.586667pt;}
.y104{bottom:219.706667pt;}
.ye3{bottom:221.146667pt;}
.y12a{bottom:222.266667pt;}
.y8d{bottom:223.706667pt;}
.ybd{bottom:228.666667pt;}
.y5b{bottom:228.986667pt;}
.y7{bottom:230.920000pt;}
.y5{bottom:236.040000pt;}
.yb1{bottom:237.306667pt;}
.y2f{bottom:237.786667pt;}
.y163{bottom:238.906667pt;}
.y14f{bottom:239.706667pt;}
.y103{bottom:240.826667pt;}
.ye2{bottom:242.266667pt;}
.y129{bottom:243.546667pt;}
.y8c{bottom:245.146667pt;}
.ybc{bottom:249.786667pt;}
.y5a{bottom:250.106667pt;}
.yb0{bottom:258.746667pt;}
.y2e{bottom:258.906667pt;}
.y162{bottom:260.026667pt;}
.y14e{bottom:260.826667pt;}
.y102{bottom:262.106667pt;}
.ye1{bottom:263.546667pt;}
.y128{bottom:264.666667pt;}
.y8b{bottom:266.426667pt;}
.ybb{bottom:271.066667pt;}
.y59{bottom:271.386667pt;}
.yaf{bottom:279.866667pt;}
.y2d{bottom:280.026667pt;}
.y161{bottom:281.146667pt;}
.y14d{bottom:282.106667pt;}
.y101{bottom:283.226667pt;}
.ye0{bottom:284.666667pt;}
.y127{bottom:285.786667pt;}
.y8a{bottom:287.706667pt;}
.yba{bottom:292.186667pt;}
.y58{bottom:292.506667pt;}
.yae{bottom:300.986667pt;}
.y2c{bottom:301.306667pt;}
.y160{bottom:302.266667pt;}
.y14c{bottom:303.546667pt;}
.y100{bottom:304.346667pt;}
.ydf{bottom:305.786667pt;}
.y126{bottom:306.906667pt;}
.y89{bottom:308.826667pt;}
.y67{bottom:313.306667pt;}
.y57{bottom:313.626667pt;}
.yad{bottom:322.266667pt;}
.y2b{bottom:322.426667pt;}
.y15f{bottom:323.546667pt;}
.y14b{bottom:324.666667pt;}
.yff{bottom:325.466667pt;}
.yde{bottom:326.586667pt;}
.y125{bottom:328.186667pt;}
.y88{bottom:329.946667pt;}
.y56{bottom:334.746667pt;}
.yfd{bottom:340.680000pt;}
.yac{bottom:343.226667pt;}
.y2a{bottom:343.546667pt;}
.y15e{bottom:344.666667pt;}
.y14a{bottom:345.786667pt;}
.y124{bottom:349.306667pt;}
.y87{bottom:351.066667pt;}
.yab{bottom:353.946667pt;}
.y55{bottom:356.026667pt;}
.ydd{bottom:361.466667pt;}
.yfb{bottom:363.720000pt;}
.y29{bottom:364.666667pt;}
.y15d{bottom:365.786667pt;}
.y149{bottom:366.906667pt;}
.y123{bottom:370.426667pt;}
.y86{bottom:372.346667pt;}
.y54{bottom:377.146667pt;}
.ydc{bottom:382.626667pt;}
.yfa{bottom:385.026667pt;}
.y28{bottom:385.986667pt;}
.yaa{bottom:386.786667pt;}
.y15c{bottom:386.946667pt;}
.y148{bottom:388.226667pt;}
.y122{bottom:391.586667pt;}
.y85{bottom:393.506667pt;}
.y53{bottom:398.306667pt;}
.ydb{bottom:403.746667pt;}
.yf9{bottom:406.466667pt;}
.y27{bottom:407.106667pt;}
.ya9{bottom:408.066667pt;}
.y15b{bottom:408.226667pt;}
.y147{bottom:409.346667pt;}
.y121{bottom:412.866667pt;}
.y84{bottom:414.306667pt;}
.yda{bottom:419.106667pt;}
.y52{bottom:419.426667pt;}
.yf8{bottom:427.746667pt;}
.y26{bottom:428.226667pt;}
.ya8{bottom:429.186667pt;}
.y15a{bottom:429.346667pt;}
.y146{bottom:430.466667pt;}
.y120{bottom:433.986667pt;}
.y83{bottom:435.746667pt;}
.y66{bottom:440.386667pt;}
.y51{bottom:440.706667pt;}
.yf7{bottom:449.026667pt;}
.y25{bottom:449.346667pt;}
.ya7{bottom:450.306667pt;}
.y159{bottom:450.466667pt;}
.y145{bottom:451.586667pt;}
.yd9{bottom:452.386667pt;}
.y11f{bottom:455.106667pt;}
.y82{bottom:457.026667pt;}
.y50{bottom:461.826667pt;}
.yf5{bottom:470.466667pt;}
.y24{bottom:470.626667pt;}
.ya6{bottom:471.426667pt;}
.y158{bottom:471.586667pt;}
.y144{bottom:472.866667pt;}
.y11e{bottom:476.226667pt;}
.y81{bottom:478.146667pt;}
.y4f{bottom:482.946667pt;}
.yd8{bottom:485.186667pt;}
.y23{bottom:491.746667pt;}
.ya5{bottom:492.706667pt;}
.y157{bottom:492.866667pt;}
.y143{bottom:493.986667pt;}
.y11d{bottom:497.506667pt;}
.y80{bottom:499.266667pt;}
.y4e{bottom:504.066667pt;}
.y22{bottom:512.866667pt;}
.y156{bottom:513.666667pt;}
.ya4{bottom:513.826667pt;}
.yf4{bottom:514.146667pt;}
.y142{bottom:514.786667pt;}
.yd7{bottom:517.826667pt;}
.y11c{bottom:518.626667pt;}
.y7f{bottom:520.386667pt;}
.y4d{bottom:525.346667pt;}
.y21{bottom:533.986667pt;}
.y155{bottom:534.786667pt;}
.ya3{bottom:534.946667pt;}
.yf3{bottom:535.426667pt;}
.y141{bottom:535.906667pt;}
.y11b{bottom:539.746667pt;}
.y7e{bottom:541.506667pt;}
.y4c{bottom:546.466667pt;}
.y17d{bottom:550.306667pt;}
.yd6{bottom:550.626667pt;}
.y20{bottom:555.266667pt;}
.ya2{bottom:556.066667pt;}
.yf2{bottom:556.866667pt;}
.y140{bottom:557.506667pt;}
.y11a{bottom:560.866667pt;}
.y7d{bottom:562.786667pt;}
.yb9{bottom:567.266667pt;}
.y4b{bottom:567.586667pt;}
.y17c{bottom:571.426667pt;}
.y1f{bottom:576.386667pt;}
.ya1{bottom:577.346667pt;}
.yf1{bottom:578.146667pt;}
.y13f{bottom:578.626667pt;}
.y119{bottom:582.146667pt;}
.yd4{bottom:583.266667pt;}
.y7c{bottom:583.906667pt;}
.y4a{bottom:588.706667pt;}
.y17b{bottom:595.293333pt;}
.y1e{bottom:597.533333pt;}
.ya0{bottom:598.493333pt;}
.yef{bottom:599.453333pt;}
.y13e{bottom:599.773333pt;}
.y118{bottom:603.293333pt;}
.y7b{bottom:605.053333pt;}
.y49{bottom:609.853333pt;}
.yd3{bottom:616.093333pt;}
.y13d{bottom:616.413333pt;}
.y1d{bottom:618.653333pt;}
.y17a{bottom:619.133333pt;}
.y9f{bottom:619.613333pt;}
.yee{bottom:621.853333pt;}
.y117{bottom:624.413333pt;}
.y7a{bottom:626.173333pt;}
.y65{bottom:630.813333pt;}
.y48{bottom:631.133333pt;}
.y13c{bottom:639.613333pt;}
.y1c{bottom:639.773333pt;}
.y9e{bottom:640.733333pt;}
.y179{bottom:642.973333pt;}
.yed{bottom:643.133333pt;}
.y116{bottom:645.533333pt;}
.y79{bottom:647.453333pt;}
.yd2{bottom:648.893333pt;}
.y64{bottom:651.933333pt;}
.y47{bottom:652.253333pt;}
.y1b{bottom:661.053333pt;}
.y115{bottom:661.533333pt;}
.y9d{bottom:661.853333pt;}
.yeb{bottom:664.573333pt;}
.y178{bottom:666.653333pt;}
.y78{bottom:668.573333pt;}
.y63{bottom:673.053333pt;}
.y46{bottom:673.373333pt;}
.yd1{bottom:681.533333pt;}
.y1a{bottom:681.853333pt;}
.y13b{bottom:682.333333pt;}
.y114{bottom:682.653333pt;}
.y9c{bottom:683.133333pt;}
.y77{bottom:689.373333pt;}
.y177{bottom:691.773333pt;}
.y45{bottom:694.493333pt;}
.y19{bottom:703.613333pt;}
.y113{bottom:703.773333pt;}
.y9b{bottom:704.253333pt;}
.ye8{bottom:707.933333pt;}
.y76{bottom:710.813333pt;}
.yd0{bottom:714.333333pt;}
.y176{bottom:715.613333pt;}
.y44{bottom:715.773333pt;}
.y15{bottom:717.373333pt;}
.y112{bottom:724.893333pt;}
.y13a{bottom:725.053333pt;}
.y9a{bottom:725.373333pt;}
.y74{bottom:726.173333pt;}
.y43{bottom:736.893333pt;}
.y175{bottom:739.453333pt;}
.y99{bottom:746.173333pt;}
.y139{bottom:746.333333pt;}
.ycf{bottom:746.973333pt;}
.y73{bottom:750.173333pt;}
.y42{bottom:758.013333pt;}
.y13{bottom:760.733333pt;}
.y173{bottom:763.293333pt;}
.y111{bottom:767.293333pt;}
.y98{bottom:767.773333pt;}
.y138{bottom:768.733333pt;}
.y72{bottom:771.293333pt;}
.y4{bottom:778.333333pt;}
.y41{bottom:779.133333pt;}
.yce{bottom:779.773333pt;}
.y172{bottom:786.973333pt;}
.y97{bottom:788.893333pt;}
.y110{bottom:789.693333pt;}
.y137{bottom:790.013333pt;}
.y71{bottom:792.413333pt;}
.y40{bottom:800.413333pt;}
.y96{bottom:810.053333pt;}
.y170{bottom:810.853333pt;}
.y136{bottom:811.333333pt;}
.y10f{bottom:812.293333pt;}
.ycd{bottom:812.453333pt;}
.y6f{bottom:813.573333pt;}
.y3f{bottom:821.573333pt;}
.y95{bottom:830.853333pt;}
.y135{bottom:832.773333pt;}
.y10e{bottom:833.413333pt;}
.y16f{bottom:834.693333pt;}
.y6a{bottom:835.493333pt;}
.y3e{bottom:842.693333pt;}
.ycb{bottom:845.253333pt;}
.y94{bottom:851.173333pt;}
.y134{bottom:854.053333pt;}
.y10d{bottom:854.533333pt;}
.y16e{bottom:855.813333pt;}
.y93{bottom:859.173333pt;}
.y3d{bottom:863.813333pt;}
.y133{bottom:875.333333pt;}
.y10c{bottom:875.813333pt;}
.y16d{bottom:876.933333pt;}
.yc9{bottom:877.893333pt;}
.y3c{bottom:885.093333pt;}
.y10b{bottom:896.933333pt;}
.y132{bottom:897.733333pt;}
.y169{bottom:898.853333pt;}
.y3b{bottom:906.213333pt;}
.yc4{bottom:911.653333pt;}
.y10a{bottom:918.053333pt;}
.y131{bottom:919.013333pt;}
.y3a{bottom:927.333333pt;}
.y109{bottom:940.613333pt;}
.y12f{bottom:940.933333pt;}
.y167{bottom:945.413333pt;}
.y39{bottom:948.453333pt;}
.y69{bottom:969.413333pt;}
.y38{bottom:969.733333pt;}
.yb8{bottom:990.533333pt;}
.y37{bottom:990.853333pt;}
.y36{bottom:1011.653333pt;}
.y62{bottom:1011.973333pt;}
.y1{bottom:1060.160000pt;}
.y61{bottom:1073.587977pt;}
.hf{height:14.186667pt;}
.h9{height:17.600000pt;}
.h34{height:21.106667pt;}
.h16{height:21.120000pt;}
.h15{height:21.140000pt;}
.h14{height:21.266667pt;}
.h2c{height:21.280000pt;}
.h31{height:21.298667pt;}
.h35{height:21.300000pt;}
.h2e{height:21.306667pt;}
.h2f{height:21.426667pt;}
.h2b{height:21.440000pt;}
.h32{height:22.386667pt;}
.h2d{height:22.400000pt;}
.h3c{height:23.680000pt;}
.h3a{height:23.840000pt;}
.h3b{height:23.872000pt;}
.h17{height:24.000000pt;}
.h3d{height:25.120000pt;}
.h10{height:29.625000pt;}
.h23{height:32.626667pt;}
.h26{height:32.640000pt;}
.h24{height:32.660000pt;}
.h20{height:32.786667pt;}
.h25{height:32.800000pt;}
.h27{height:32.826667pt;}
.h37{height:38.080000pt;}
.h33{height:42.226667pt;}
.h36{height:42.546667pt;}
.h2a{height:42.560000pt;}
.hb{height:43.360000pt;}
.h13{height:43.375000pt;}
.h30{height:43.666667pt;}
.h11{height:44.468750pt;}
.h39{height:46.560000pt;}
.ha{height:52.108438pt;}
.h4{height:52.134375pt;}
.hc{height:52.236875pt;}
.h7{height:57.758750pt;}
.h22{height:57.787500pt;}
.h1e{height:59.340000pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h21{height:63.311250pt;}
.h29{height:64.000000pt;}
.h1f{height:64.290000pt;}
.hd{height:64.500000pt;}
.h18{height:69.820938pt;}
.h1d{height:71.506667pt;}
.he{height:71.524375pt;}
.h28{height:71.631042pt;}
.h1c{height:71.684375pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h12{height:84.626667pt;}
.h38{height:84.640000pt;}
.h19{height:94.812500pt;}
.h1a{height:96.356250pt;}
.h1b{height:105.692500pt;}
.h3{height:248.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:16.000000pt;}
.w5{width:28.470667pt;}
.wa{width:31.190667pt;}
.w2c{width:43.200000pt;}
.w2f{width:45.440000pt;}
.w2e{width:51.840000pt;}
.w21{width:53.746667pt;}
.w2d{width:54.080000pt;}
.w20{width:59.858667pt;}
.w1f{width:66.386667pt;}
.w1e{width:66.432000pt;}
.w28{width:72.000000pt;}
.w11{width:73.632000pt;}
.w10{width:76.640000pt;}
.w1d{width:76.800000pt;}
.w4{width:77.106667pt;}
.w12{width:77.906667pt;}
.w27{width:77.952000pt;}
.w2a{width:80.320000pt;}
.w17{width:83.346667pt;}
.wd{width:83.986667pt;}
.w13{width:84.018667pt;}
.w29{width:90.112000pt;}
.w19{width:90.226667pt;}
.w1b{width:90.258667pt;}
.w1a{width:94.066667pt;}
.w15{width:97.138667pt;}
.w26{width:97.280000pt;}
.w2{width:99.510667pt;}
.w18{width:100.978667pt;}
.w16{width:104.192000pt;}
.w9{width:104.870667pt;}
.wb{width:107.986667pt;}
.w2b{width:108.000000pt;}
.w25{width:111.506667pt;}
.w14{width:114.870667pt;}
.w24{width:142.413333pt;}
.wf{width:163.057333pt;}
.w23{width:167.546667pt;}
.w22{width:185.297333pt;}
.wc{width:192.053333pt;}
.w1c{width:202.577333pt;}
.we{width:210.093333pt;}
.w7{width:320.969333pt;}
.w3{width:403.920000pt;}
.w6{width:552.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.190667pt;}
.x33{left:8.320000pt;}
.x6{left:9.266667pt;}
.x8{left:14.706667pt;}
.x3f{left:16.960000pt;}
.x47{left:18.880000pt;}
.x45{left:20.000000pt;}
.x24{left:21.746667pt;}
.x40{left:24.960000pt;}
.xf{left:26.066667pt;}
.x7{left:29.106667pt;}
.x44{left:32.000000pt;}
.xe{left:33.266667pt;}
.x43{left:36.000000pt;}
.x42{left:37.920000pt;}
.xc{left:41.466667pt;}
.x46{left:48.160000pt;}
.xa{left:50.426667pt;}
.x41{left:51.360000pt;}
.xd{left:57.306667pt;}
.x12{left:69.920000pt;}
.x4{left:92.145333pt;}
.x19{left:112.841333pt;}
.x9{left:114.106667pt;}
.x38{left:116.352000pt;}
.x1{left:120.032000pt;}
.x18{left:138.906667pt;}
.x1a{left:144.040000pt;}
.x13{left:148.520000pt;}
.x3e{left:159.546667pt;}
.x14{left:168.026667pt;}
.x10{left:174.426667pt;}
.x34{left:176.826667pt;}
.xb{left:201.946667pt;}
.x39{left:213.626667pt;}
.x5{left:219.560000pt;}
.x27{left:227.720000pt;}
.x15{left:235.326009pt;}
.x1f{left:248.826667pt;}
.x1b{left:252.040000pt;}
.x21{left:275.906667pt;}
.x3a{left:291.586667pt;}
.x35{left:298.146667pt;}
.x2d{left:315.426667pt;}
.x20{left:316.866667pt;}
.x28{left:324.866667pt;}
.x17{left:343.378011pt;}
.x22{left:352.546667pt;}
.x3b{left:363.586667pt;}
.x1e{left:373.026667pt;}
.x2e{left:392.226667pt;}
.x2{left:408.866667pt;}
.x23{left:426.186667pt;}
.x29{left:429.066667pt;}
.x1c{left:444.106667pt;}
.x3c{left:453.693333pt;}
.x2f{left:458.666667pt;}
.x36{left:465.706667pt;}
.x25{left:504.106667pt;}
.x2a{left:512.426667pt;}
.x2c{left:523.146667pt;}
.x30{left:525.066667pt;}
.x1d{left:528.106667pt;}
.x3d{left:534.013333pt;}
.x26{left:588.106667pt;}
.x31{left:591.466667pt;}
.x37{left:608.133333pt;}
.x2b{left:613.413333pt;}
.x11{left:623.493333pt;}
.x32{left:651.333333pt;}
.x16{left:679.626709pt;}
}




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