
    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_0245c6992357401f8c30c33c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_156cc3bde818d205f0fb425b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_b869067305157aee3f53866a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_ae16f7237b8ea30ab51d893e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_39ca11aa1021dac8234a89ab.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_81684905ce6a1fca22aef184.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0e0fbcf2b7903d5d9d6032fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_04f4aca591a264e2e5c0120a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_10fe8792aec99fe931429b46.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_46fb578110065affc7508620.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b236044f1a812c05eb983e6c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_597fd3eca18c8ebf44b902b5.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-2.898000px;}
.ls19{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls17{letter-spacing:1.440000px;}
.ls12{letter-spacing:7.920000px;}
.lsd{letter-spacing:14.400000px;}
.ls14{letter-spacing:30.240000px;}
.lsc{letter-spacing:33.984000px;}
.lse{letter-spacing:38.160000px;}
.ls11{letter-spacing:51.240000px;}
.lsa{letter-spacing:52.560000px;}
.lsf{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-55.296000px;}
.ws3{word-spacing:-27.000000px;}
.ws6{word-spacing:-21.042000px;}
.wsa{word-spacing:-18.576000px;}
.wse{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.819680px;}
.ws2{word-spacing:-16.613280px;}
.ws5{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws9{word-spacing:0.000000px;}
._58{margin-left:-9.293760px;}
._5{margin-left:-7.995600px;}
._27{margin-left:-6.995520px;}
._36{margin-left:-5.981760px;}
._16{margin-left:-4.979520px;}
._3{margin-left:-3.672000px;}
._4{margin-left:-2.082240px;}
._2{margin-left:-1.080000px;}
._0{width:1.152000px;}
._c{width:2.808000px;}
._20{width:4.176000px;}
._7{width:5.760000px;}
._8{width:7.128000px;}
._1e{width:9.108000px;}
._1d{width:10.224000px;}
._e{width:11.592000px;}
._d{width:12.744000px;}
._19{width:13.907520px;}
._1a{width:14.984640px;}
._18{width:16.992000px;}
._1{width:18.000000px;}
._9{width:19.260000px;}
._17{width:20.772000px;}
._31{width:21.846240px;}
._24{width:22.896000px;}
._13{width:24.264000px;}
._21{width:25.416000px;}
._12{width:26.712000px;}
._11{width:27.864000px;}
._28{width:29.442240px;}
._1f{width:31.320000px;}
._a{width:32.400000px;}
._b{width:33.984000px;}
._1b{width:35.064000px;}
._1c{width:36.073440px;}
._15{width:37.288800px;}
._14{width:38.379600px;}
._2c{width:39.672000px;}
._22{width:40.680000px;}
._23{width:41.760000px;}
._37{width:42.912000px;}
._35{width:44.408160px;}
._26{width:45.701280px;}
._29{width:46.872000px;}
._2a{width:47.880000px;}
._2b{width:49.526640px;}
._25{width:50.913360px;}
._10{width:52.122240px;}
._54{width:53.136000px;}
._f{width:54.216000px;}
._2d{width:55.224000px;}
._3d{width:56.952000px;}
._3e{width:58.062240px;}
._40{width:59.328000px;}
._41{width:61.560000px;}
._42{width:62.640000px;}
._46{width:65.160000px;}
._33{width:67.608000px;}
._34{width:68.688000px;}
._3a{width:71.814240px;}
._39{width:73.368000px;}
._2e{width:74.808000px;}
._3c{width:76.032000px;}
._3b{width:77.868480px;}
._32{width:79.920000px;}
._47{width:83.124000px;}
._4c{width:88.128000px;}
._30{width:90.678240px;}
._2f{width:97.992000px;}
._4d{width:100.512000px;}
._49{width:118.872000px;}
._38{width:122.400000px;}
._48{width:124.848000px;}
._52{width:127.080000px;}
._53{width:128.604000px;}
._5b{width:170.820000px;}
._6{width:198.000000px;}
._51{width:218.232000px;}
._3f{width:229.536000px;}
._4e{width:238.824000px;}
._4f{width:239.940000px;}
._59{width:249.480000px;}
._5a{width:255.708000px;}
._44{width:268.200000px;}
._5c{width:398.592000px;}
._57{width:419.868000px;}
._4b{width:421.308000px;}
._55{width:445.860000px;}
._56{width:448.740000px;}
._45{width:500.430240px;}
._4a{width:502.020000px;}
._50{width:505.692000px;}
._43{width:1251.792000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(238,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(191,143,0);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs7{font-size:50.848916px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.075000px;}
.y14e{bottom:4.125000px;}
.y10b{bottom:4.131000px;}
.yf9{bottom:4.140000px;}
.y102{bottom:4.485000px;}
.y10c{bottom:4.491000px;}
.y10e{bottom:4.500000px;}
.y5{bottom:23.400000px;}
.y106{bottom:24.825000px;}
.yf8{bottom:24.840000px;}
.y153{bottom:24.870000px;}
.y109{bottom:25.185000px;}
.y112{bottom:25.200000px;}
.y101{bottom:25.230000px;}
.yb{bottom:36.555000px;}
.y105{bottom:45.525000px;}
.yf7{bottom:45.540000px;}
.yfd{bottom:45.570000px;}
.y108{bottom:45.885000px;}
.y111{bottom:45.900000px;}
.y100{bottom:45.930000px;}
.y3{bottom:58.716000px;}
.y104{bottom:66.225000px;}
.yf6{bottom:66.240000px;}
.yfc{bottom:66.270000px;}
.y107{bottom:66.585000px;}
.y110{bottom:66.600000px;}
.yff{bottom:66.630000px;}
.ya{bottom:70.575000px;}
.y2{bottom:79.416000px;}
.y150{bottom:86.925000px;}
.yfb{bottom:86.970000px;}
.y151{bottom:87.285000px;}
.y9{bottom:87.315000px;}
.yfe{bottom:87.330000px;}
.y1{bottom:97.956000px;}
.y7{bottom:106.020000px;}
.y14d{bottom:107.670000px;}
.y5d{bottom:122.256000px;}
.y32{bottom:124.056000px;}
.y178{bottom:127.656000px;}
.y10a{bottom:128.385000px;}
.y148{bottom:129.456000px;}
.yba{bottom:129.996000px;}
.y9b{bottom:132.696000px;}
.y15a{bottom:135.576000px;}
.yf2{bottom:135.756000px;}
.yd3{bottom:136.656000px;}
.y6{bottom:136.980000px;}
.y195{bottom:140.256000px;}
.y5c{bottom:142.956000px;}
.y31{bottom:144.756000px;}
.y16e{bottom:145.656000px;}
.y177{bottom:148.356000px;}
.y147{bottom:150.150000px;}
.yb9{bottom:150.690000px;}
.y19d{bottom:153.750000px;}
.y160{bottom:155.910000px;}
.y159{bottom:156.270000px;}
.yf1{bottom:156.450000px;}
.yd2{bottom:157.350000px;}
.y194{bottom:160.950000px;}
.y5b{bottom:163.650000px;}
.y30{bottom:165.450000px;}
.y16d{bottom:166.350000px;}
.y176{bottom:169.050000px;}
.y146{bottom:170.850000px;}
.yb8{bottom:171.390000px;}
.y9a{bottom:171.750000px;}
.y19c{bottom:174.450000px;}
.y15f{bottom:176.430000px;}
.yf0{bottom:177.150000px;}
.yd1{bottom:178.050000px;}
.y193{bottom:181.650000px;}
.y5a{bottom:184.350000px;}
.y2f{bottom:186.150000px;}
.y16c{bottom:187.050000px;}
.y103{bottom:188.505000px;}
.y175{bottom:189.750000px;}
.y145{bottom:191.550000px;}
.y99{bottom:192.450000px;}
.y12f{bottom:192.630000px;}
.y158{bottom:194.970000px;}
.y19b{bottom:195.150000px;}
.y15e{bottom:197.130000px;}
.y1a7{bottom:197.850000px;}
.y7b{bottom:202.350000px;}
.y59{bottom:205.050000px;}
.y2e{bottom:206.850000px;}
.y16b{bottom:207.750000px;}
.yb7{bottom:210.090000px;}
.y174{bottom:210.450000px;}
.y144{bottom:212.250000px;}
.y98{bottom:213.150000px;}
.yef{bottom:215.850000px;}
.yd0{bottom:216.750000px;}
.y1a6{bottom:218.550000px;}
.y7a{bottom:223.050000px;}
.y58{bottom:225.750000px;}
.y2d{bottom:227.550000px;}
.y16a{bottom:228.450000px;}
.y15d{bottom:231.510000px;}
.y12e{bottom:231.690000px;}
.y157{bottom:233.670000px;}
.y97{bottom:233.850000px;}
.yee{bottom:236.550000px;}
.y1a5{bottom:239.250000px;}
.y79{bottom:243.750000px;}
.y57{bottom:246.450000px;}
.y2c{bottom:248.250000px;}
.yb6{bottom:249.150000px;}
.y143{bottom:250.950000px;}
.y12d{bottom:252.390000px;}
.y96{bottom:254.550000px;}
.ycf{bottom:255.090000px;}
.yed{bottom:257.250000px;}
.y78{bottom:264.450000px;}
.y56{bottom:267.150000px;}
.y2b{bottom:268.950000px;}
.y156{bottom:268.965000px;}
.yb5{bottom:269.850000px;}
.y142{bottom:271.650000px;}
.y12c{bottom:273.090000px;}
.y95{bottom:275.250000px;}
.yce{bottom:275.790000px;}
.yec{bottom:277.950000px;}
.y192{bottom:282.450000px;}
.y77{bottom:285.150000px;}
.y55{bottom:287.850000px;}
.y2a{bottom:289.650000px;}
.yfa{bottom:290.025000px;}
.yb4{bottom:290.550000px;}
.y141{bottom:292.350000px;}
.y12b{bottom:293.790000px;}
.y94{bottom:295.950000px;}
.ycd{bottom:296.850000px;}
.yeb{bottom:298.650000px;}
.y191{bottom:303.150000px;}
.y76{bottom:305.850000px;}
.y54{bottom:308.550000px;}
.y29{bottom:310.395000px;}
.yb3{bottom:311.295000px;}
.y140{bottom:313.095000px;}
.y12a{bottom:314.535000px;}
.y93{bottom:316.695000px;}
.yea{bottom:319.395000px;}
.y190{bottom:323.895000px;}
.y75{bottom:326.595000px;}
.y53{bottom:329.295000px;}
.y28{bottom:331.095000px;}
.yb2{bottom:331.995000px;}
.y13f{bottom:333.795000px;}
.ycc{bottom:335.235000px;}
.y92{bottom:337.395000px;}
.ye9{bottom:340.095000px;}
.y18f{bottom:344.595000px;}
.y74{bottom:347.295000px;}
.y17d{bottom:349.995000px;}
.y27{bottom:351.795000px;}
.yb1{bottom:352.695000px;}
.y13e{bottom:354.495000px;}
.y19a{bottom:355.395000px;}
.y129{bottom:355.935000px;}
.y91{bottom:358.095000px;}
.ye8{bottom:360.795000px;}
.y18e{bottom:365.295000px;}
.y52{bottom:367.995000px;}
.y155{bottom:370.515000px;}
.y17c{bottom:370.695000px;}
.y26{bottom:372.495000px;}
.y173{bottom:373.395000px;}
.ycb{bottom:374.295000px;}
.y13d{bottom:375.195000px;}
.y199{bottom:376.095000px;}
.y128{bottom:376.635000px;}
.y90{bottom:378.795000px;}
.ye7{bottom:381.495000px;}
.y18d{bottom:385.995000px;}
.y51{bottom:388.695000px;}
.yb0{bottom:391.395000px;}
.y25{bottom:393.195000px;}
.y172{bottom:394.095000px;}
.yca{bottom:394.995000px;}
.y198{bottom:396.795000px;}
.y1a4{bottom:399.495000px;}
.ye6{bottom:402.195000px;}
.y18c{bottom:406.695000px;}
.y50{bottom:409.395000px;}
.yaf{bottom:412.095000px;}
.yf5{bottom:412.275000px;}
.y24{bottom:413.895000px;}
.y171{bottom:414.795000px;}
.y127{bottom:415.335000px;}
.yc9{bottom:415.695000px;}
.y8f{bottom:417.135000px;}
.y197{bottom:417.495000px;}
.y1a3{bottom:420.195000px;}
.ye5{bottom:422.895000px;}
.y18b{bottom:427.395000px;}
.y4f{bottom:430.095000px;}
.yae{bottom:432.795000px;}
.y23{bottom:434.595000px;}
.y170{bottom:435.495000px;}
.y126{bottom:436.035000px;}
.yc8{bottom:436.395000px;}
.y1a9{bottom:438.195000px;}
.y1a2{bottom:440.895000px;}
.y18a{bottom:448.095000px;}
.y4e{bottom:450.795000px;}
.y17a{bottom:453.135000px;}
.yad{bottom:453.495000px;}
.y22{bottom:455.295000px;}
.y8e{bottom:456.195000px;}
.y125{bottom:456.735000px;}
.y1a8{bottom:458.895000px;}
.ye4{bottom:461.235000px;}
.y73{bottom:468.795000px;}
.y4d{bottom:471.495000px;}
.y154{bottom:472.215000px;}
.y132{bottom:473.835000px;}
.yac{bottom:474.195000px;}
.yc7{bottom:475.095000px;}
.y21{bottom:475.995000px;}
.y8d{bottom:476.895000px;}
.y124{bottom:477.435000px;}
.y1a1{bottom:479.595000px;}
.ye3{bottom:481.935000px;}
.y72{bottom:489.495000px;}
.y4c{bottom:492.195000px;}
.yab{bottom:494.895000px;}
.yc6{bottom:495.795000px;}
.y20{bottom:496.515000px;}
.y13c{bottom:496.695000px;}
.y8c{bottom:497.595000px;}
.y123{bottom:498.135000px;}
.y1a0{bottom:500.295000px;}
.ye2{bottom:502.635000px;}
.y71{bottom:510.195000px;}
.y16f{bottom:512.535000px;}
.y4b{bottom:512.895000px;}
.yaa{bottom:515.595000px;}
.y1f{bottom:517.215000px;}
.y13b{bottom:517.395000px;}
.y8b{bottom:518.295000px;}
.y122{bottom:518.835000px;}
.y19f{bottom:520.995000px;}
.y70{bottom:530.895000px;}
.y4a{bottom:533.595000px;}
.yc5{bottom:534.495000px;}
.y169{bottom:536.295000px;}
.y1e{bottom:537.915000px;}
.y13a{bottom:538.095000px;}
.y8a{bottom:538.995000px;}
.y121{bottom:539.535000px;}
.ye1{bottom:541.695000px;}
.y6f{bottom:551.595000px;}
.y152{bottom:553.035000px;}
.y49{bottom:554.295000px;}
.y168{bottom:556.995000px;}
.y1d{bottom:558.615000px;}
.y139{bottom:558.795000px;}
.y89{bottom:559.695000px;}
.y120{bottom:560.235000px;}
.ye0{bottom:562.425000px;}
.y189{bottom:569.625000px;}
.y6e{bottom:572.325000px;}
.yc4{bottom:573.225000px;}
.y15c{bottom:574.665000px;}
.y48{bottom:575.025000px;}
.yf4{bottom:577.365000px;}
.y167{bottom:577.725000px;}
.y1c{bottom:579.345000px;}
.y88{bottom:580.425000px;}
.ydf{bottom:583.125000px;}
.y188{bottom:590.325000px;}
.y6d{bottom:593.025000px;}
.y15b{bottom:595.365000px;}
.y47{bottom:595.725000px;}
.y138{bottom:597.165000px;}
.y1aa{bottom:598.065000px;}
.y166{bottom:598.425000px;}
.y11f{bottom:598.965000px;}
.y1b{bottom:600.045000px;}
.y87{bottom:601.125000px;}
.yde{bottom:603.825000px;}
.y187{bottom:611.025000px;}
.yc3{bottom:611.925000px;}
.y6c{bottom:613.725000px;}
.yf3{bottom:616.065000px;}
.y46{bottom:616.425000px;}
.y165{bottom:619.125000px;}
.y11e{bottom:619.665000px;}
.y1a{bottom:620.745000px;}
.y86{bottom:621.825000px;}
.ydd{bottom:624.525000px;}
.y186{bottom:631.725000px;}
.y6b{bottom:634.425000px;}
.y137{bottom:635.865000px;}
.y45{bottom:637.125000px;}
.y164{bottom:639.825000px;}
.y11d{bottom:640.365000px;}
.y19{bottom:641.445000px;}
.y19e{bottom:642.525000px;}
.ydc{bottom:645.225000px;}
.yc2{bottom:650.625000px;}
.y185{bottom:652.425000px;}
.y14f{bottom:654.600000px;}
.y6a{bottom:655.125000px;}
.ya9{bottom:657.825000px;}
.y85{bottom:660.525000px;}
.y11c{bottom:661.065000px;}
.y18{bottom:662.145000px;}
.ydb{bottom:665.925000px;}
.y184{bottom:673.125000px;}
.y136{bottom:674.565000px;}
.y44{bottom:675.825000px;}
.y163{bottom:678.165000px;}
.ya8{bottom:678.525000px;}
.y84{bottom:681.225000px;}
.y11b{bottom:681.765000px;}
.y17{bottom:682.845000px;}
.yc1{bottom:689.325000px;}
.y183{bottom:693.825000px;}
.y43{bottom:696.525000px;}
.y162{bottom:698.865000px;}
.ya7{bottom:699.225000px;}
.y83{bottom:701.925000px;}
.y11a{bottom:702.465000px;}
.y16{bottom:703.545000px;}
.yda{bottom:704.265000px;}
.y135{bottom:713.625000px;}
.y182{bottom:714.525000px;}
.y42{bottom:717.225000px;}
.ya6{bottom:719.925000px;}
.y82{bottom:722.625000px;}
.y119{bottom:723.165000px;}
.y15{bottom:724.245000px;}
.yc0{bottom:728.025000px;}
.y181{bottom:735.225000px;}
.y41{bottom:737.925000px;}
.ya5{bottom:740.625000px;}
.yd9{bottom:743.325000px;}
.y118{bottom:743.865000px;}
.y14{bottom:744.945000px;}
.y134{bottom:752.325000px;}
.y180{bottom:755.925000px;}
.y17b{bottom:758.265000px;}
.y40{bottom:758.625000px;}
.y81{bottom:761.325000px;}
.yd8{bottom:764.025000px;}
.y117{bottom:764.565000px;}
.ybf{bottom:766.365000px;}
.y69{bottom:776.625000px;}
.y14c{bottom:776.820000px;}
.ya4{bottom:778.965000px;}
.y3f{bottom:779.325000px;}
.y80{bottom:782.025000px;}
.y13{bottom:783.645000px;}
.yd7{bottom:784.725000px;}
.y133{bottom:786.525000px;}
.y12{bottom:788.145000px;}
.y68{bottom:797.325000px;}
.ya3{bottom:799.665000px;}
.y3e{bottom:800.025000px;}
.y7f{bottom:802.725000px;}
.y116{bottom:802.905000px;}
.y11{bottom:804.885000px;}
.ybe{bottom:805.425000px;}
.y67{bottom:818.070000px;}
.ya2{bottom:820.410000px;}
.y3d{bottom:820.770000px;}
.y7e{bottom:823.470000px;}
.y115{bottom:823.650000px;}
.ybd{bottom:826.170000px;}
.y10{bottom:832.470000px;}
.y66{bottom:838.770000px;}
.y3c{bottom:841.470000px;}
.yf{bottom:845.790000px;}
.y17f{bottom:856.770000px;}
.ya1{bottom:859.110000px;}
.y65{bottom:859.470000px;}
.y3b{bottom:862.170000px;}
.y114{bottom:862.350000px;}
.ybc{bottom:864.870000px;}
.ye{bottom:868.110000px;}
.y17e{bottom:877.470000px;}
.y196{bottom:879.810000px;}
.y64{bottom:880.170000px;}
.y3a{bottom:882.870000px;}
.yd6{bottom:885.570000px;}
.yd{bottom:895.650000px;}
.ya0{bottom:898.170000px;}
.y63{bottom:900.870000px;}
.y113{bottom:901.050000px;}
.ybb{bottom:903.210000px;}
.y39{bottom:903.570000px;}
.yd5{bottom:906.270000px;}
.y8{bottom:917.955000px;}
.y4{bottom:917.970000px;}
.y9f{bottom:918.870000px;}
.y179{bottom:921.210000px;}
.y62{bottom:921.570000px;}
.y38{bottom:924.270000px;}
.y10f{bottom:936.330000px;}
.y9e{bottom:939.570000px;}
.y61{bottom:942.270000px;}
.yd4{bottom:944.610000px;}
.y14b{bottom:944.970000px;}
.y9d{bottom:960.270000px;}
.y37{bottom:962.610000px;}
.y60{bottom:962.970000px;}
.y14a{bottom:965.310000px;}
.y161{bottom:965.670000px;}
.y9c{bottom:980.970000px;}
.y5f{bottom:983.670000px;}
.y36{bottom:1001.670000px;}
.y149{bottom:1004.010000px;}
.y5e{bottom:1004.370000px;}
.y131{bottom:1022.010000px;}
.y35{bottom:1022.370000px;}
.y7d{bottom:1025.070000px;}
.y10d{bottom:1037.850000px;}
.y130{bottom:1042.710000px;}
.y34{bottom:1043.070000px;}
.y7c{bottom:1063.440000px;}
.y33{bottom:1063.800000px;}
.h1c{height:41.430000px;}
.h7{height:42.164648px;}
.h10{height:42.854116px;}
.hf{height:47.321367px;}
.h13{height:50.273438px;}
.h17{height:50.800781px;}
.h12{height:52.628906px;}
.h9{height:52.998047px;}
.h11{height:54.246094px;}
.ha{height:56.214844px;}
.h1b{height:59.391000px;}
.h18{height:61.423863px;}
.he{height:63.961367px;}
.hb{height:67.565039px;}
.h8{height:70.628906px;}
.h14{height:70.664062px;}
.hd{height:71.081367px;}
.h2{height:71.613281px;}
.h1{height:73.722656px;}
.h16{height:74.004654px;}
.h15{height:74.953125px;}
.h4{height:76.201172px;}
.h20{height:80.085000px;}
.hc{height:99.687656px;}
.h19{height:100.785000px;}
.h21{height:100.800000px;}
.h22{height:100.821000px;}
.h1f{height:100.836000px;}
.h5{height:105.996094px;}
.h1e{height:121.485000px;}
.h1a{height:121.521000px;}
.h1d{height:142.221000px;}
.h3{height:162.030000px;}
.h6{height:162.045000px;}
.h0{height:1188.000000px;}
.w15{width:65.196000px;}
.w10{width:66.096000px;}
.wb{width:84.636000px;}
.w6{width:85.356000px;}
.w9{width:88.041000px;}
.w4{width:88.401000px;}
.w17{width:89.301000px;}
.w12{width:89.661000px;}
.w13{width:93.801000px;}
.we{width:94.161000px;}
.wc{width:95.745000px;}
.w7{width:96.465000px;}
.w16{width:101.865000px;}
.w11{width:102.585000px;}
.wd{width:104.061000px;}
.w8{width:104.601000px;}
.wa{width:109.080000px;}
.w5{width:109.800000px;}
.w14{width:131.400000px;}
.wf{width:132.120000px;}
.w1{width:138.621000px;}
.w2{width:347.460000px;}
.w3{width:347.475000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.085000px;}
.x4{left:27.000000px;}
.x6{left:62.820000px;}
.x8{left:106.200000px;}
.x7{left:112.680000px;}
.x5{left:146.010000px;}
.x9{left:173.730000px;}
.x1{left:216.030000px;}
.xa{left:218.370000px;}
.xe{left:221.790000px;}
.x1b{left:222.870000px;}
.xf{left:243.030000px;}
.x10{left:270.030000px;}
.x1c{left:276.870000px;}
.x11{left:305.175000px;}
.x16{left:310.935000px;}
.xb{left:324.615000px;}
.x3{left:354.675000px;}
.xc{left:369.615000px;}
.xd{left:378.075000px;}
.x12{left:414.975000px;}
.x17{left:443.055000px;}
.x13{left:500.340000px;}
.x18{left:509.160000px;}
.x14{left:596.820000px;}
.x19{left:611.760000px;}
.x1a{left:684.150000px;}
.x15{left:697.650000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.576000pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls17{letter-spacing:1.280000pt;}
.ls12{letter-spacing:7.040000pt;}
.lsd{letter-spacing:12.800000pt;}
.ls14{letter-spacing:26.880000pt;}
.lsc{letter-spacing:30.208000pt;}
.lse{letter-spacing:33.920000pt;}
.ls11{letter-spacing:45.546667pt;}
.lsa{letter-spacing:46.720000pt;}
.lsf{letter-spacing:56.912640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws3{word-spacing:-24.000000pt;}
.ws6{word-spacing:-18.704000pt;}
.wsa{word-spacing:-16.512000pt;}
.wse{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.950827pt;}
.ws2{word-spacing:-14.767360pt;}
.ws5{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws9{word-spacing:0.000000pt;}
._58{margin-left:-8.261120pt;}
._5{margin-left:-7.107200pt;}
._27{margin-left:-6.218240pt;}
._36{margin-left:-5.317120pt;}
._16{margin-left:-4.426240pt;}
._3{margin-left:-3.264000pt;}
._4{margin-left:-1.850880pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.024000pt;}
._c{width:2.496000pt;}
._20{width:3.712000pt;}
._7{width:5.120000pt;}
._8{width:6.336000pt;}
._1e{width:8.096000pt;}
._1d{width:9.088000pt;}
._e{width:10.304000pt;}
._d{width:11.328000pt;}
._19{width:12.362240pt;}
._1a{width:13.319680pt;}
._18{width:15.104000pt;}
._1{width:16.000000pt;}
._9{width:17.120000pt;}
._17{width:18.464000pt;}
._31{width:19.418880pt;}
._24{width:20.352000pt;}
._13{width:21.568000pt;}
._21{width:22.592000pt;}
._12{width:23.744000pt;}
._11{width:24.768000pt;}
._28{width:26.170880pt;}
._1f{width:27.840000pt;}
._a{width:28.800000pt;}
._b{width:30.208000pt;}
._1b{width:31.168000pt;}
._1c{width:32.065280pt;}
._15{width:33.145600pt;}
._14{width:34.115200pt;}
._2c{width:35.264000pt;}
._22{width:36.160000pt;}
._23{width:37.120000pt;}
._37{width:38.144000pt;}
._35{width:39.473920pt;}
._26{width:40.623360pt;}
._29{width:41.664000pt;}
._2a{width:42.560000pt;}
._2b{width:44.023680pt;}
._25{width:45.256320pt;}
._10{width:46.330880pt;}
._54{width:47.232000pt;}
._f{width:48.192000pt;}
._2d{width:49.088000pt;}
._3d{width:50.624000pt;}
._3e{width:51.610880pt;}
._40{width:52.736000pt;}
._41{width:54.720000pt;}
._42{width:55.680000pt;}
._46{width:57.920000pt;}
._33{width:60.096000pt;}
._34{width:61.056000pt;}
._3a{width:63.834880pt;}
._39{width:65.216000pt;}
._2e{width:66.496000pt;}
._3c{width:67.584000pt;}
._3b{width:69.216427pt;}
._32{width:71.040000pt;}
._47{width:73.888000pt;}
._4c{width:78.336000pt;}
._30{width:80.602880pt;}
._2f{width:87.104000pt;}
._4d{width:89.344000pt;}
._49{width:105.664000pt;}
._38{width:108.800000pt;}
._48{width:110.976000pt;}
._52{width:112.960000pt;}
._53{width:114.314667pt;}
._5b{width:151.840000pt;}
._6{width:176.000000pt;}
._51{width:193.984000pt;}
._3f{width:204.032000pt;}
._4e{width:212.288000pt;}
._4f{width:213.280000pt;}
._59{width:221.760000pt;}
._5a{width:227.296000pt;}
._44{width:238.400000pt;}
._5c{width:354.304000pt;}
._57{width:373.216000pt;}
._4b{width:374.496000pt;}
._55{width:396.320000pt;}
._56{width:398.880000pt;}
._45{width:444.826880pt;}
._4a{width:446.240000pt;}
._50{width:449.504000pt;}
._43{width:1112.704000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:45.199037pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.733333pt;}
.y14e{bottom:3.666667pt;}
.y10b{bottom:3.672000pt;}
.yf9{bottom:3.680000pt;}
.y102{bottom:3.986667pt;}
.y10c{bottom:3.992000pt;}
.y10e{bottom:4.000000pt;}
.y5{bottom:20.800000pt;}
.y106{bottom:22.066667pt;}
.yf8{bottom:22.080000pt;}
.y153{bottom:22.106667pt;}
.y109{bottom:22.386667pt;}
.y112{bottom:22.400000pt;}
.y101{bottom:22.426667pt;}
.yb{bottom:32.493333pt;}
.y105{bottom:40.466667pt;}
.yf7{bottom:40.480000pt;}
.yfd{bottom:40.506667pt;}
.y108{bottom:40.786667pt;}
.y111{bottom:40.800000pt;}
.y100{bottom:40.826667pt;}
.y3{bottom:52.192000pt;}
.y104{bottom:58.866667pt;}
.yf6{bottom:58.880000pt;}
.yfc{bottom:58.906667pt;}
.y107{bottom:59.186667pt;}
.y110{bottom:59.200000pt;}
.yff{bottom:59.226667pt;}
.ya{bottom:62.733333pt;}
.y2{bottom:70.592000pt;}
.y150{bottom:77.266667pt;}
.yfb{bottom:77.306667pt;}
.y151{bottom:77.586667pt;}
.y9{bottom:77.613333pt;}
.yfe{bottom:77.626667pt;}
.y1{bottom:87.072000pt;}
.y7{bottom:94.240000pt;}
.y14d{bottom:95.706667pt;}
.y5d{bottom:108.672000pt;}
.y32{bottom:110.272000pt;}
.y178{bottom:113.472000pt;}
.y10a{bottom:114.120000pt;}
.y148{bottom:115.072000pt;}
.yba{bottom:115.552000pt;}
.y9b{bottom:117.952000pt;}
.y15a{bottom:120.512000pt;}
.yf2{bottom:120.672000pt;}
.yd3{bottom:121.472000pt;}
.y6{bottom:121.760000pt;}
.y195{bottom:124.672000pt;}
.y5c{bottom:127.072000pt;}
.y31{bottom:128.672000pt;}
.y16e{bottom:129.472000pt;}
.y177{bottom:131.872000pt;}
.y147{bottom:133.466667pt;}
.yb9{bottom:133.946667pt;}
.y19d{bottom:136.666667pt;}
.y160{bottom:138.586667pt;}
.y159{bottom:138.906667pt;}
.yf1{bottom:139.066667pt;}
.yd2{bottom:139.866667pt;}
.y194{bottom:143.066667pt;}
.y5b{bottom:145.466667pt;}
.y30{bottom:147.066667pt;}
.y16d{bottom:147.866667pt;}
.y176{bottom:150.266667pt;}
.y146{bottom:151.866667pt;}
.yb8{bottom:152.346667pt;}
.y9a{bottom:152.666667pt;}
.y19c{bottom:155.066667pt;}
.y15f{bottom:156.826667pt;}
.yf0{bottom:157.466667pt;}
.yd1{bottom:158.266667pt;}
.y193{bottom:161.466667pt;}
.y5a{bottom:163.866667pt;}
.y2f{bottom:165.466667pt;}
.y16c{bottom:166.266667pt;}
.y103{bottom:167.560000pt;}
.y175{bottom:168.666667pt;}
.y145{bottom:170.266667pt;}
.y99{bottom:171.066667pt;}
.y12f{bottom:171.226667pt;}
.y158{bottom:173.306667pt;}
.y19b{bottom:173.466667pt;}
.y15e{bottom:175.226667pt;}
.y1a7{bottom:175.866667pt;}
.y7b{bottom:179.866667pt;}
.y59{bottom:182.266667pt;}
.y2e{bottom:183.866667pt;}
.y16b{bottom:184.666667pt;}
.yb7{bottom:186.746667pt;}
.y174{bottom:187.066667pt;}
.y144{bottom:188.666667pt;}
.y98{bottom:189.466667pt;}
.yef{bottom:191.866667pt;}
.yd0{bottom:192.666667pt;}
.y1a6{bottom:194.266667pt;}
.y7a{bottom:198.266667pt;}
.y58{bottom:200.666667pt;}
.y2d{bottom:202.266667pt;}
.y16a{bottom:203.066667pt;}
.y15d{bottom:205.786667pt;}
.y12e{bottom:205.946667pt;}
.y157{bottom:207.706667pt;}
.y97{bottom:207.866667pt;}
.yee{bottom:210.266667pt;}
.y1a5{bottom:212.666667pt;}
.y79{bottom:216.666667pt;}
.y57{bottom:219.066667pt;}
.y2c{bottom:220.666667pt;}
.yb6{bottom:221.466667pt;}
.y143{bottom:223.066667pt;}
.y12d{bottom:224.346667pt;}
.y96{bottom:226.266667pt;}
.ycf{bottom:226.746667pt;}
.yed{bottom:228.666667pt;}
.y78{bottom:235.066667pt;}
.y56{bottom:237.466667pt;}
.y2b{bottom:239.066667pt;}
.y156{bottom:239.080000pt;}
.yb5{bottom:239.866667pt;}
.y142{bottom:241.466667pt;}
.y12c{bottom:242.746667pt;}
.y95{bottom:244.666667pt;}
.yce{bottom:245.146667pt;}
.yec{bottom:247.066667pt;}
.y192{bottom:251.066667pt;}
.y77{bottom:253.466667pt;}
.y55{bottom:255.866667pt;}
.y2a{bottom:257.466667pt;}
.yfa{bottom:257.800000pt;}
.yb4{bottom:258.266667pt;}
.y141{bottom:259.866667pt;}
.y12b{bottom:261.146667pt;}
.y94{bottom:263.066667pt;}
.ycd{bottom:263.866667pt;}
.yeb{bottom:265.466667pt;}
.y191{bottom:269.466667pt;}
.y76{bottom:271.866667pt;}
.y54{bottom:274.266667pt;}
.y29{bottom:275.906667pt;}
.yb3{bottom:276.706667pt;}
.y140{bottom:278.306667pt;}
.y12a{bottom:279.586667pt;}
.y93{bottom:281.506667pt;}
.yea{bottom:283.906667pt;}
.y190{bottom:287.906667pt;}
.y75{bottom:290.306667pt;}
.y53{bottom:292.706667pt;}
.y28{bottom:294.306667pt;}
.yb2{bottom:295.106667pt;}
.y13f{bottom:296.706667pt;}
.ycc{bottom:297.986667pt;}
.y92{bottom:299.906667pt;}
.ye9{bottom:302.306667pt;}
.y18f{bottom:306.306667pt;}
.y74{bottom:308.706667pt;}
.y17d{bottom:311.106667pt;}
.y27{bottom:312.706667pt;}
.yb1{bottom:313.506667pt;}
.y13e{bottom:315.106667pt;}
.y19a{bottom:315.906667pt;}
.y129{bottom:316.386667pt;}
.y91{bottom:318.306667pt;}
.ye8{bottom:320.706667pt;}
.y18e{bottom:324.706667pt;}
.y52{bottom:327.106667pt;}
.y155{bottom:329.346667pt;}
.y17c{bottom:329.506667pt;}
.y26{bottom:331.106667pt;}
.y173{bottom:331.906667pt;}
.ycb{bottom:332.706667pt;}
.y13d{bottom:333.506667pt;}
.y199{bottom:334.306667pt;}
.y128{bottom:334.786667pt;}
.y90{bottom:336.706667pt;}
.ye7{bottom:339.106667pt;}
.y18d{bottom:343.106667pt;}
.y51{bottom:345.506667pt;}
.yb0{bottom:347.906667pt;}
.y25{bottom:349.506667pt;}
.y172{bottom:350.306667pt;}
.yca{bottom:351.106667pt;}
.y198{bottom:352.706667pt;}
.y1a4{bottom:355.106667pt;}
.ye6{bottom:357.506667pt;}
.y18c{bottom:361.506667pt;}
.y50{bottom:363.906667pt;}
.yaf{bottom:366.306667pt;}
.yf5{bottom:366.466667pt;}
.y24{bottom:367.906667pt;}
.y171{bottom:368.706667pt;}
.y127{bottom:369.186667pt;}
.yc9{bottom:369.506667pt;}
.y8f{bottom:370.786667pt;}
.y197{bottom:371.106667pt;}
.y1a3{bottom:373.506667pt;}
.ye5{bottom:375.906667pt;}
.y18b{bottom:379.906667pt;}
.y4f{bottom:382.306667pt;}
.yae{bottom:384.706667pt;}
.y23{bottom:386.306667pt;}
.y170{bottom:387.106667pt;}
.y126{bottom:387.586667pt;}
.yc8{bottom:387.906667pt;}
.y1a9{bottom:389.506667pt;}
.y1a2{bottom:391.906667pt;}
.y18a{bottom:398.306667pt;}
.y4e{bottom:400.706667pt;}
.y17a{bottom:402.786667pt;}
.yad{bottom:403.106667pt;}
.y22{bottom:404.706667pt;}
.y8e{bottom:405.506667pt;}
.y125{bottom:405.986667pt;}
.y1a8{bottom:407.906667pt;}
.ye4{bottom:409.986667pt;}
.y73{bottom:416.706667pt;}
.y4d{bottom:419.106667pt;}
.y154{bottom:419.746667pt;}
.y132{bottom:421.186667pt;}
.yac{bottom:421.506667pt;}
.yc7{bottom:422.306667pt;}
.y21{bottom:423.106667pt;}
.y8d{bottom:423.906667pt;}
.y124{bottom:424.386667pt;}
.y1a1{bottom:426.306667pt;}
.ye3{bottom:428.386667pt;}
.y72{bottom:435.106667pt;}
.y4c{bottom:437.506667pt;}
.yab{bottom:439.906667pt;}
.yc6{bottom:440.706667pt;}
.y20{bottom:441.346667pt;}
.y13c{bottom:441.506667pt;}
.y8c{bottom:442.306667pt;}
.y123{bottom:442.786667pt;}
.y1a0{bottom:444.706667pt;}
.ye2{bottom:446.786667pt;}
.y71{bottom:453.506667pt;}
.y16f{bottom:455.586667pt;}
.y4b{bottom:455.906667pt;}
.yaa{bottom:458.306667pt;}
.y1f{bottom:459.746667pt;}
.y13b{bottom:459.906667pt;}
.y8b{bottom:460.706667pt;}
.y122{bottom:461.186667pt;}
.y19f{bottom:463.106667pt;}
.y70{bottom:471.906667pt;}
.y4a{bottom:474.306667pt;}
.yc5{bottom:475.106667pt;}
.y169{bottom:476.706667pt;}
.y1e{bottom:478.146667pt;}
.y13a{bottom:478.306667pt;}
.y8a{bottom:479.106667pt;}
.y121{bottom:479.586667pt;}
.ye1{bottom:481.506667pt;}
.y6f{bottom:490.306667pt;}
.y152{bottom:491.586667pt;}
.y49{bottom:492.706667pt;}
.y168{bottom:495.106667pt;}
.y1d{bottom:496.546667pt;}
.y139{bottom:496.706667pt;}
.y89{bottom:497.506667pt;}
.y120{bottom:497.986667pt;}
.ye0{bottom:499.933333pt;}
.y189{bottom:506.333333pt;}
.y6e{bottom:508.733333pt;}
.yc4{bottom:509.533333pt;}
.y15c{bottom:510.813333pt;}
.y48{bottom:511.133333pt;}
.yf4{bottom:513.213333pt;}
.y167{bottom:513.533333pt;}
.y1c{bottom:514.973333pt;}
.y88{bottom:515.933333pt;}
.ydf{bottom:518.333333pt;}
.y188{bottom:524.733333pt;}
.y6d{bottom:527.133333pt;}
.y15b{bottom:529.213333pt;}
.y47{bottom:529.533333pt;}
.y138{bottom:530.813333pt;}
.y1aa{bottom:531.613333pt;}
.y166{bottom:531.933333pt;}
.y11f{bottom:532.413333pt;}
.y1b{bottom:533.373333pt;}
.y87{bottom:534.333333pt;}
.yde{bottom:536.733333pt;}
.y187{bottom:543.133333pt;}
.yc3{bottom:543.933333pt;}
.y6c{bottom:545.533333pt;}
.yf3{bottom:547.613333pt;}
.y46{bottom:547.933333pt;}
.y165{bottom:550.333333pt;}
.y11e{bottom:550.813333pt;}
.y1a{bottom:551.773333pt;}
.y86{bottom:552.733333pt;}
.ydd{bottom:555.133333pt;}
.y186{bottom:561.533333pt;}
.y6b{bottom:563.933333pt;}
.y137{bottom:565.213333pt;}
.y45{bottom:566.333333pt;}
.y164{bottom:568.733333pt;}
.y11d{bottom:569.213333pt;}
.y19{bottom:570.173333pt;}
.y19e{bottom:571.133333pt;}
.ydc{bottom:573.533333pt;}
.yc2{bottom:578.333333pt;}
.y185{bottom:579.933333pt;}
.y14f{bottom:581.866667pt;}
.y6a{bottom:582.333333pt;}
.ya9{bottom:584.733333pt;}
.y85{bottom:587.133333pt;}
.y11c{bottom:587.613333pt;}
.y18{bottom:588.573333pt;}
.ydb{bottom:591.933333pt;}
.y184{bottom:598.333333pt;}
.y136{bottom:599.613333pt;}
.y44{bottom:600.733333pt;}
.y163{bottom:602.813333pt;}
.ya8{bottom:603.133333pt;}
.y84{bottom:605.533333pt;}
.y11b{bottom:606.013333pt;}
.y17{bottom:606.973333pt;}
.yc1{bottom:612.733333pt;}
.y183{bottom:616.733333pt;}
.y43{bottom:619.133333pt;}
.y162{bottom:621.213333pt;}
.ya7{bottom:621.533333pt;}
.y83{bottom:623.933333pt;}
.y11a{bottom:624.413333pt;}
.y16{bottom:625.373333pt;}
.yda{bottom:626.013333pt;}
.y135{bottom:634.333333pt;}
.y182{bottom:635.133333pt;}
.y42{bottom:637.533333pt;}
.ya6{bottom:639.933333pt;}
.y82{bottom:642.333333pt;}
.y119{bottom:642.813333pt;}
.y15{bottom:643.773333pt;}
.yc0{bottom:647.133333pt;}
.y181{bottom:653.533333pt;}
.y41{bottom:655.933333pt;}
.ya5{bottom:658.333333pt;}
.yd9{bottom:660.733333pt;}
.y118{bottom:661.213333pt;}
.y14{bottom:662.173333pt;}
.y134{bottom:668.733333pt;}
.y180{bottom:671.933333pt;}
.y17b{bottom:674.013333pt;}
.y40{bottom:674.333333pt;}
.y81{bottom:676.733333pt;}
.yd8{bottom:679.133333pt;}
.y117{bottom:679.613333pt;}
.ybf{bottom:681.213333pt;}
.y69{bottom:690.333333pt;}
.y14c{bottom:690.506667pt;}
.ya4{bottom:692.413333pt;}
.y3f{bottom:692.733333pt;}
.y80{bottom:695.133333pt;}
.y13{bottom:696.573333pt;}
.yd7{bottom:697.533333pt;}
.y133{bottom:699.133333pt;}
.y12{bottom:700.573333pt;}
.y68{bottom:708.733333pt;}
.ya3{bottom:710.813333pt;}
.y3e{bottom:711.133333pt;}
.y7f{bottom:713.533333pt;}
.y116{bottom:713.693333pt;}
.y11{bottom:715.453333pt;}
.ybe{bottom:715.933333pt;}
.y67{bottom:727.173333pt;}
.ya2{bottom:729.253333pt;}
.y3d{bottom:729.573333pt;}
.y7e{bottom:731.973333pt;}
.y115{bottom:732.133333pt;}
.ybd{bottom:734.373333pt;}
.y10{bottom:739.973333pt;}
.y66{bottom:745.573333pt;}
.y3c{bottom:747.973333pt;}
.yf{bottom:751.813333pt;}
.y17f{bottom:761.573333pt;}
.ya1{bottom:763.653333pt;}
.y65{bottom:763.973333pt;}
.y3b{bottom:766.373333pt;}
.y114{bottom:766.533333pt;}
.ybc{bottom:768.773333pt;}
.ye{bottom:771.653333pt;}
.y17e{bottom:779.973333pt;}
.y196{bottom:782.053333pt;}
.y64{bottom:782.373333pt;}
.y3a{bottom:784.773333pt;}
.yd6{bottom:787.173333pt;}
.yd{bottom:796.133333pt;}
.ya0{bottom:798.373333pt;}
.y63{bottom:800.773333pt;}
.y113{bottom:800.933333pt;}
.ybb{bottom:802.853333pt;}
.y39{bottom:803.173333pt;}
.yd5{bottom:805.573333pt;}
.y8{bottom:815.960000pt;}
.y4{bottom:815.973333pt;}
.y9f{bottom:816.773333pt;}
.y179{bottom:818.853333pt;}
.y62{bottom:819.173333pt;}
.y38{bottom:821.573333pt;}
.y10f{bottom:832.293333pt;}
.y9e{bottom:835.173333pt;}
.y61{bottom:837.573333pt;}
.yd4{bottom:839.653333pt;}
.y14b{bottom:839.973333pt;}
.y9d{bottom:853.573333pt;}
.y37{bottom:855.653333pt;}
.y60{bottom:855.973333pt;}
.y14a{bottom:858.053333pt;}
.y161{bottom:858.373333pt;}
.y9c{bottom:871.973333pt;}
.y5f{bottom:874.373333pt;}
.y36{bottom:890.373333pt;}
.y149{bottom:892.453333pt;}
.y5e{bottom:892.773333pt;}
.y131{bottom:908.453333pt;}
.y35{bottom:908.773333pt;}
.y7d{bottom:911.173333pt;}
.y10d{bottom:922.533333pt;}
.y130{bottom:926.853333pt;}
.y34{bottom:927.173333pt;}
.y7c{bottom:945.280000pt;}
.y33{bottom:945.600000pt;}
.h1c{height:36.826667pt;}
.h7{height:37.479688pt;}
.h10{height:38.092548pt;}
.hf{height:42.063437pt;}
.h13{height:44.687500pt;}
.h17{height:45.156250pt;}
.h12{height:46.781250pt;}
.h9{height:47.109375pt;}
.h11{height:48.218750pt;}
.ha{height:49.968750pt;}
.h1b{height:52.792000pt;}
.h18{height:54.598989pt;}
.he{height:56.854549pt;}
.hb{height:60.057813pt;}
.h8{height:62.781250pt;}
.h14{height:62.812500pt;}
.hd{height:63.183438pt;}
.h2{height:63.656250pt;}
.h1{height:65.531250pt;}
.h16{height:65.781915pt;}
.h15{height:66.625000pt;}
.h4{height:67.734375pt;}
.h20{height:71.186667pt;}
.hc{height:88.611250pt;}
.h19{height:89.586667pt;}
.h21{height:89.600000pt;}
.h22{height:89.618667pt;}
.h1f{height:89.632000pt;}
.h5{height:94.218750pt;}
.h1e{height:107.986667pt;}
.h1a{height:108.018667pt;}
.h1d{height:126.418667pt;}
.h3{height:144.026667pt;}
.h6{height:144.040000pt;}
.h0{height:1056.000000pt;}
.w15{width:57.952000pt;}
.w10{width:58.752000pt;}
.wb{width:75.232000pt;}
.w6{width:75.872000pt;}
.w9{width:78.258667pt;}
.w4{width:78.578667pt;}
.w17{width:79.378667pt;}
.w12{width:79.698667pt;}
.w13{width:83.378667pt;}
.we{width:83.698667pt;}
.wc{width:85.106667pt;}
.w7{width:85.746667pt;}
.w16{width:90.546667pt;}
.w11{width:91.186667pt;}
.wd{width:92.498667pt;}
.w8{width:92.978667pt;}
.wa{width:96.960000pt;}
.w5{width:97.600000pt;}
.w14{width:116.800000pt;}
.wf{width:117.440000pt;}
.w1{width:123.218667pt;}
.w2{width:308.853333pt;}
.w3{width:308.866667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.186667pt;}
.x4{left:24.000000pt;}
.x6{left:55.840000pt;}
.x8{left:94.400000pt;}
.x7{left:100.160000pt;}
.x5{left:129.786667pt;}
.x9{left:154.426667pt;}
.x1{left:192.026667pt;}
.xa{left:194.106667pt;}
.xe{left:197.146667pt;}
.x1b{left:198.106667pt;}
.xf{left:216.026667pt;}
.x10{left:240.026667pt;}
.x1c{left:246.106667pt;}
.x11{left:271.266667pt;}
.x16{left:276.386667pt;}
.xb{left:288.546667pt;}
.x3{left:315.266667pt;}
.xc{left:328.546667pt;}
.xd{left:336.066667pt;}
.x12{left:368.866667pt;}
.x17{left:393.826667pt;}
.x13{left:444.746667pt;}
.x18{left:452.586667pt;}
.x14{left:530.506667pt;}
.x19{left:543.786667pt;}
.x1a{left:608.133333pt;}
.x15{left:620.133333pt;}
}




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