
    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_5b97059bf2184881511d9aea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5089d82b770040b0c54f84e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139160;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_cf8b48ace989b01a7f53d65e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c97391e456d4fade280966cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.168945;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_8dc93e848ce6772c29d140ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.158691;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_5c60d6c749e358221996892d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_a92eb99496700e01a9bf3989.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_38628fe434a0d70d173107ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.139160;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_4cdb4c54ace35da31c144cf6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158691;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_d60bec85dee6395d40d19715.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.144043;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_23cfd8a49a0ce8c250d55074.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_436f072929c20bab09ac2892.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-115.200000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.600000px;}
.ls1e{letter-spacing:-4.224000px;}
.lsc{letter-spacing:-1.224000px;}
.ls25{letter-spacing:-0.840000px;}
.ls23{letter-spacing:-0.696000px;}
.ls19{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.528000px;}
.ls22{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls10{letter-spacing:-0.408000px;}
.ls14{letter-spacing:-0.350400px;}
.ls4{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.276000px;}
.ls28{letter-spacing:-0.264000px;}
.ls13{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.222000px;}
.ls11{letter-spacing:-0.192000px;}
.ls15{letter-spacing:-0.060000px;}
.lsb{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.080400px;}
.ls18{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.168000px;}
.ls8{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.408000px;}
.ls1{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.534000px;}
.ls21{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.624000px;}
.ls1b{letter-spacing:1.128000px;}
.ls20{letter-spacing:1.176000px;}
.ls1d{letter-spacing:30.504000px;}
.lsd{letter-spacing:75.813600px;}
.lse{letter-spacing:75.873600px;}
.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;}
}
.ws4{word-spacing:-66.000000px;}
.ws8{word-spacing:-28.896000px;}
.wsb{word-spacing:-25.284000px;}
.ws16{word-spacing:-22.032000px;}
.ws19{word-spacing:-21.912000px;}
.ws17{word-spacing:-21.840000px;}
.wsf{word-spacing:-21.816000px;}
.wsa{word-spacing:-21.672000px;}
.wsc{word-spacing:-21.648000px;}
.ws12{word-spacing:-21.480000px;}
.ws18{word-spacing:-21.408000px;}
.ws9{word-spacing:-21.264000px;}
.ws13{word-spacing:-21.168000px;}
.wse{word-spacing:-21.144000px;}
.ws14{word-spacing:-21.072000px;}
.ws10{word-spacing:-21.024000px;}
.ws15{word-spacing:-20.832000px;}
.ws7{word-spacing:-20.448000px;}
.ws6{word-spacing:-20.082000px;}
.ws3{word-spacing:-19.866000px;}
.ws2{word-spacing:-19.590000px;}
.ws5{word-spacing:-18.060000px;}
.wsd{word-spacing:-17.820000px;}
.ws0{word-spacing:-16.920000px;}
.ws11{word-spacing:-11.616000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-11.982000px;}
._c{margin-left:-5.904000px;}
._4{margin-left:-4.890000px;}
._3{margin-left:-2.826000px;}
._0{margin-left:-1.080000px;}
._1{width:1.620000px;}
._14{width:2.634000px;}
._7{width:3.846000px;}
._6{width:4.884000px;}
._9{width:6.426000px;}
._8{width:7.500000px;}
._a{width:8.502000px;}
._1a{width:10.188000px;}
._1b{width:11.574000px;}
._24{width:12.576000px;}
._1c{width:13.902000px;}
._16{width:15.102000px;}
._15{width:16.128000px;}
._21{width:17.640000px;}
._5{width:18.858000px;}
._25{width:20.130000px;}
._2a{width:22.932000px;}
._29{width:24.678000px;}
._1d{width:25.686000px;}
._10{width:26.946000px;}
._f{width:28.152000px;}
._11{width:29.196000px;}
._28{width:30.384000px;}
._e{width:31.680000px;}
._d{width:32.688000px;}
._2b{width:34.626000px;}
._19{width:36.264000px;}
._17{width:37.512000px;}
._18{width:39.090000px;}
._22{width:40.122000px;}
._30{width:41.472000px;}
._2f{width:42.816000px;}
._31{width:44.010000px;}
._2c{width:45.900000px;}
._1f{width:47.412000px;}
._20{width:49.140000px;}
._23{width:50.934000px;}
._2d{width:52.920000px;}
._2e{width:56.346000px;}
._32{width:58.974000px;}
._38{width:60.168000px;}
._27{width:61.662000px;}
._26{width:62.784000px;}
._36{width:65.610000px;}
._35{width:67.710000px;}
._1e{width:69.846000px;}
._33{width:71.424000px;}
._34{width:72.606000px;}
._12{width:77.760000px;}
._13{width:78.840000px;}
._37{width:123.480000px;}
._39{width:190.878000px;}
._b{width:641.814000px;}
.fc4{color:rgb(46,116,181);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(102,102,102);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:39.600000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:63.600000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:2.115000px;}
.y44{bottom:3.300000px;}
.y26{bottom:3.585000px;}
.y28{bottom:3.600000px;}
.y33{bottom:3.615000px;}
.y15{bottom:3.900000px;}
.ya6{bottom:3.915000px;}
.y2e{bottom:7.800000px;}
.y17{bottom:18.000000px;}
.ya1{bottom:18.015000px;}
.yfc{bottom:18.030000px;}
.yc0{bottom:18.045000px;}
.y43{bottom:21.300000px;}
.ydd{bottom:21.345000px;}
.yd6{bottom:21.592500px;}
.y10c{bottom:21.885000px;}
.yc2{bottom:21.915000px;}
.y25{bottom:22.785000px;}
.y31{bottom:22.800000px;}
.y2b{bottom:22.845000px;}
.ye1{bottom:24.592500px;}
.yaa{bottom:24.900000px;}
.ya5{bottom:24.915000px;}
.y111{bottom:24.945000px;}
.y2d{bottom:26.100000px;}
.yd9{bottom:33.015000px;}
.y16{bottom:35.100000px;}
.ydc{bottom:40.830000px;}
.yd5{bottom:41.092500px;}
.y35{bottom:41.700000px;}
.y24{bottom:42.000000px;}
.y3a{bottom:42.030000px;}
.y2a{bottom:42.045000px;}
.y10b{bottom:42.885000px;}
.y106{bottom:42.915000px;}
.yfe{bottom:45.600000px;}
.ya4{bottom:45.900000px;}
.yda{bottom:56.100000px;}
.y23{bottom:60.900000px;}
.y30{bottom:61.200000px;}
.y39{bottom:61.245000px;}
.y14{bottom:63.000000px;}
.y10a{bottom:63.885000px;}
.y105{bottom:63.915000px;}
.ya3{bottom:66.600000px;}
.y13{bottom:67.200000px;}
.yd3{bottom:78.345000px;}
.y38{bottom:80.430000px;}
.y123{bottom:110.100000px;}
.y94{bottom:111.300000px;}
.yd7{bottom:119.437500px;}
.y10e{bottom:123.637500px;}
.ye0{bottom:127.837500px;}
.y10{bottom:129.637500px;}
.y122{bottom:131.137500px;}
.ya7{bottom:131.737500px;}
.y93{bottom:132.337500px;}
.y6d{bottom:134.737500px;}
.yd4{bottom:137.137500px;}
.y48{bottom:138.037500px;}
.y13b{bottom:143.737500px;}
.y10d{bottom:144.337500px;}
.y102{bottom:147.937500px;}
.yc4{bottom:149.137500px;}
.ya2{bottom:152.130000px;}
.y6c{bottom:152.145000px;}
.y92{bottom:153.045000px;}
.yf{bottom:153.930000px;}
.ybb{bottom:156.045000px;}
.y47{bottom:159.045000px;}
.y109{bottom:161.745000px;}
.y6b{bottom:164.130000px;}
.y101{bottom:165.630000px;}
.ydf{bottom:169.530000px;}
.y121{bottom:170.130000px;}
.y91{bottom:174.045000px;}
.y17a{bottom:174.930000px;}
.ye{bottom:178.530000px;}
.y46{bottom:179.745000px;}
.y13a{bottom:182.745000px;}
.y104{bottom:184.530000px;}
.y6a{bottom:186.930000px;}
.yc3{bottom:188.130000px;}
.y120{bottom:191.130000px;}
.y179{bottom:194.130000px;}
.y90{bottom:195.030000px;}
.yd2{bottom:195.330000px;}
.yba{bottom:197.745000px;}
.yd{bottom:198.330000px;}
.y45{bottom:198.945000px;}
.y69{bottom:199.545000px;}
.yc1{bottom:205.830000px;}
.y100{bottom:207.330000px;}
.yfa{bottom:210.630000px;}
.y11f{bottom:211.830000px;}
.y178{bottom:213.345000px;}
.y41{bottom:214.530000px;}
.y8f{bottom:215.730000px;}
.yb9{bottom:218.730000px;}
.y68{bottom:220.545000px;}
.y139{bottom:221.445000px;}
.y17b{bottom:228.630000px;}
.y177{bottom:232.230000px;}
.y11e{bottom:232.830000px;}
.ya0{bottom:235.830000px;}
.y8e{bottom:236.745000px;}
.yb8{bottom:239.730000px;}
.y67{bottom:241.245000px;}
.y108{bottom:242.445000px;}
.ybf{bottom:244.830000px;}
.yf9{bottom:249.330000px;}
.y176{bottom:251.445000px;}
.y11d{bottom:253.845000px;}
.y40{bottom:254.445000px;}
.y8d{bottom:257.745000px;}
.yb7{bottom:260.475000px;}
.y66{bottom:262.275000px;}
.y138{bottom:263.475000px;}
.y103{bottom:265.275000px;}
.yf8{bottom:270.375000px;}
.y175{bottom:270.975000px;}
.y11c{bottom:274.575000px;}
.y3f{bottom:274.875000px;}
.y8c{bottom:278.475000px;}
.yf0{bottom:279.375000px;}
.yb6{bottom:281.475000px;}
.y65{bottom:283.275000px;}
.y137{bottom:284.475000px;}
.yf7{bottom:291.375000px;}
.y174{bottom:291.975000px;}
.y3e{bottom:294.075000px;}
.yb5{bottom:302.475000px;}
.y64{bottom:303.975000px;}
.y173{bottom:312.675000px;}
.y3d{bottom:313.275000px;}
.y11b{bottom:313.575000px;}
.y8b{bottom:317.475000px;}
.yef{bottom:318.375000px;}
.yb4{bottom:323.175000px;}
.y63{bottom:324.975000px;}
.yf6{bottom:330.075000px;}
.y3c{bottom:332.475000px;}
.y172{bottom:333.675000px;}
.y11a{bottom:334.575000px;}
.yee{bottom:336.075000px;}
.y8a{bottom:338.475000px;}
.yb3{bottom:344.175000px;}
.y62{bottom:345.975000px;}
.y3b{bottom:348.075000px;}
.yf5{bottom:351.075000px;}
.y171{bottom:354.675000px;}
.y119{bottom:355.275000px;}
.y89{bottom:359.175000px;}
.y136{bottom:365.175000px;}
.y37{bottom:366.975000px;}
.y150{bottom:370.275000px;}
.yf4{bottom:372.075000px;}
.y170{bottom:375.375000px;}
.yed{bottom:377.775000px;}
.y88{bottom:380.175000px;}
.yb2{bottom:382.875000px;}
.y61{bottom:384.675000px;}
.y135{bottom:385.875000px;}
.y14f{bottom:391.275000px;}
.yf3{bottom:392.775000px;}
.y118{bottom:394.275000px;}
.y16f{bottom:396.375000px;}
.y87{bottom:401.175000px;}
.yb1{bottom:403.920000px;}
.y60{bottom:405.705000px;}
.yf2{bottom:410.505000px;}
.y14e{bottom:412.005000px;}
.y117{bottom:415.320000px;}
.y16e{bottom:417.420000px;}
.y86{bottom:421.905000px;}
.yb0{bottom:424.905000px;}
.y14d{bottom:433.020000px;}
.y116{bottom:436.005000px;}
.y16d{bottom:438.120000px;}
.y85{bottom:442.920000px;}
.y5f{bottom:444.405000px;}
.yaf{bottom:445.905000px;}
.yf1{bottom:452.505000px;}
.y115{bottom:457.020000px;}
.y16c{bottom:459.120000px;}
.y36{bottom:463.005000px;}
.y84{bottom:463.905000px;}
.y5e{bottom:465.405000px;}
.yae{bottom:466.620000px;}
.y14c{bottom:471.705000px;}
.y114{bottom:478.005000px;}
.y16b{bottom:480.120000px;}
.y34{bottom:482.220000px;}
.y83{bottom:484.320000px;}
.yad{bottom:487.620000px;}
.y14b{bottom:492.720000px;}
.y113{bottom:498.705000px;}
.y16a{bottom:500.820000px;}
.y5d{bottom:504.405000px;}
.y134{bottom:505.620000px;}
.yac{bottom:508.605000px;}
.y14a{bottom:513.705000px;}
.y112{bottom:519.720000px;}
.y169{bottom:521.820000px;}
.y5c{bottom:525.405000px;}
.y133{bottom:526.620000px;}
.y82{bottom:528.120000px;}
.y149{bottom:534.720000px;}
.y110{bottom:537.405000px;}
.y32{bottom:539.505000px;}
.y168{bottom:542.820000px;}
.y132{bottom:547.350000px;}
.yab{bottom:548.250000px;}
.y81{bottom:549.150000px;}
.y2f{bottom:558.750000px;}
.y167{bottom:563.550000px;}
.y5b{bottom:563.850000px;}
.ya9{bottom:568.650000px;}
.y80{bottom:570.150000px;}
.y148{bottom:573.450000px;}
.y10f{bottom:579.150000px;}
.y5a{bottom:583.950000px;}
.y166{bottom:584.550000px;}
.y131{bottom:586.350000px;}
.y7f{bottom:590.850000px;}
.y147{bottom:594.450000px;}
.yff{bottom:597.450000px;}
.y165{bottom:605.550000px;}
.y130{bottom:607.350000px;}
.ya8{bottom:610.650000px;}
.yfd{bottom:615.150000px;}
.y59{bottom:625.650000px;}
.y164{bottom:626.250000px;}
.y12f{bottom:628.050000px;}
.y7e{bottom:629.850000px;}
.y146{bottom:633.150000px;}
.y2c{bottom:635.550000px;}
.y163{bottom:647.250000px;}
.yde{bottom:650.550000px;}
.y7d{bottom:650.850000px;}
.yd1{bottom:653.550000px;}
.y145{bottom:654.150000px;}
.y58{bottom:664.650000px;}
.yc{bottom:665.250000px;}
.y12e{bottom:667.050000px;}
.y162{bottom:668.250000px;}
.ydb{bottom:668.550000px;}
.y7c{bottom:671.550000px;}
.yd0{bottom:674.550000px;}
.y144{bottom:675.150000px;}
.y29{bottom:676.950000px;}
.yfb{bottom:677.850000px;}
.y12d{bottom:688.050000px;}
.y161{bottom:688.980000px;}
.y7b{bottom:692.580000px;}
.ycf{bottom:695.595000px;}
.y143{bottom:696.195000px;}
.y57{bottom:703.395000px;}
.y12c{bottom:708.780000px;}
.y160{bottom:709.995000px;}
.yb{bottom:711.195000px;}
.yce{bottom:716.295000px;}
.yec{bottom:723.195000px;}
.y56{bottom:724.380000px;}
.yd8{bottom:726.480000px;}
.y15f{bottom:730.980000px;}
.y7a{bottom:731.280000px;}
.y27{bottom:734.595000px;}
.y142{bottom:734.880000px;}
.yeb{bottom:743.895000px;}
.y12b{bottom:747.780000px;}
.y15e{bottom:751.995000px;}
.y79{bottom:752.280000px;}
.y22{bottom:753.795000px;}
.ycd{bottom:755.295000px;}
.y141{bottom:755.880000px;}
.ya{bottom:757.095000px;}
.y55{bottom:762.195000px;}
.yea{bottom:764.880000px;}
.y12a{bottom:768.795000px;}
.y15d{bottom:772.695000px;}
.y78{bottom:773.295000px;}
.ycc{bottom:776.295000px;}
.y140{bottom:776.880000px;}
.y54{bottom:783.195000px;}
.y9{bottom:784.995000px;}
.ye9{bottom:785.880000px;}
.y129{bottom:789.195000px;}
.y9f{bottom:791.880000px;}
.y15c{bottom:793.695000px;}
.y77{bottom:794.295000px;}
.y53{bottom:803.880000px;}
.y128{bottom:809.295000px;}
.y8{bottom:811.380000px;}
.y9e{bottom:812.880000px;}
.y15b{bottom:814.695000px;}
.y76{bottom:814.995000px;}
.y13f{bottom:815.580000px;}
.y52{bottom:823.995000px;}
.ye8{bottom:825.195000px;}
.y127{bottom:833.025000px;}
.y7{bottom:833.325000px;}
.y9d{bottom:833.625000px;}
.y15a{bottom:835.425000px;}
.ycb{bottom:836.025000px;}
.y21{bottom:836.325000px;}
.y13e{bottom:836.625000px;}
.ye7{bottom:846.825000px;}
.y51{bottom:847.725000px;}
.y75{bottom:854.025000px;}
.y9c{bottom:854.625000px;}
.y159{bottom:856.425000px;}
.yca{bottom:857.025000px;}
.y13d{bottom:857.625000px;}
.y6{bottom:863.925000px;}
.y20{bottom:865.425000px;}
.ye6{bottom:868.125000px;}
.y50{bottom:868.425000px;}
.y126{bottom:872.025000px;}
.y74{bottom:875.025000px;}
.y9b{bottom:875.625000px;}
.y158{bottom:877.425000px;}
.y4f{bottom:889.425000px;}
.ye5{bottom:889.725000px;}
.y125{bottom:893.025000px;}
.y73{bottom:895.725000px;}
.y9a{bottom:896.325000px;}
.y157{bottom:898.125000px;}
.y5{bottom:909.825000px;}
.ye4{bottom:911.325000px;}
.y4e{bottom:911.925000px;}
.y124{bottom:913.725000px;}
.ybe{bottom:914.325000px;}
.y1f{bottom:915.825000px;}
.yc9{bottom:916.725000px;}
.y99{bottom:917.325000px;}
.y156{bottom:919.125000px;}
.ye3{bottom:932.925000px;}
.y72{bottom:934.725000px;}
.y1e{bottom:935.025000px;}
.ybd{bottom:935.325000px;}
.y13c{bottom:938.325000px;}
.y4d{bottom:939.825000px;}
.y155{bottom:940.125000px;}
.y1d{bottom:954.225000px;}
.yc8{bottom:955.425000px;}
.y71{bottom:955.725000px;}
.y98{bottom:956.025000px;}
.ybc{bottom:956.325000px;}
.y4{bottom:958.725000px;}
.y154{bottom:960.825000px;}
.y1c{bottom:975.870000px;}
.y70{bottom:976.455000px;}
.y97{bottom:977.070000px;}
.y153{bottom:981.870000px;}
.y4c{bottom:985.755000px;}
.yc7{bottom:997.455000px;}
.y96{bottom:998.070000px;}
.y152{bottom:1002.870000px;}
.y1b{bottom:1004.670000px;}
.y3{bottom:1006.455000px;}
.y4b{bottom:1013.370000px;}
.y6f{bottom:1015.455000px;}
.yc6{bottom:1018.455000px;}
.ye2{bottom:1018.755000px;}
.y95{bottom:1019.070000px;}
.y151{bottom:1023.255000px;}
.y1a{bottom:1023.870000px;}
.y6e{bottom:1037.070000px;}
.y4a{bottom:1039.755000px;}
.y19{bottom:1043.070000px;}
.y2{bottom:1046.955000px;}
.yc5{bottom:1058.070000px;}
.y49{bottom:1060.755000px;}
.y107{bottom:1061.070000px;}
.y18{bottom:1062.255000px;}
.y1{bottom:1067.070000px;}
.y12{bottom:1081.755000px;}
.y11{bottom:1112.070000px;}
.h1c{height:18.900000px;}
.h14{height:19.185000px;}
.h1a{height:19.200000px;}
.h18{height:19.237500px;}
.hc{height:21.000000px;}
.h1e{height:36.000000px;}
.h24{height:37.086328px;}
.h2a{height:39.000000px;}
.h16{height:41.400000px;}
.h30{height:41.700000px;}
.h3b{height:41.737500px;}
.h28{height:42.000000px;}
.he{height:48.900000px;}
.h1f{height:56.191406px;}
.h19{height:57.300000px;}
.h15{height:57.637500px;}
.h2e{height:57.937500px;}
.h2c{height:58.200000px;}
.h13{height:60.521484px;}
.h10{height:61.810547px;}
.h1{height:62.578125px;}
.h34{height:62.700000px;}
.hd{height:63.210938px;}
.hf{height:63.615234px;}
.h23{height:66.023438px;}
.h1d{height:67.429688px;}
.h22{height:69.398438px;}
.h6{height:74.004654px;}
.h2{height:75.093750px;}
.h12{height:76.485000px;}
.h17{height:76.800000px;}
.ha{height:77.027344px;}
.h21{height:78.667969px;}
.h39{height:80.700000px;}
.h37{height:80.737500px;}
.hb{height:83.531250px;}
.h26{height:83.700000px;}
.h8{height:88.031250px;}
.h9{height:89.906250px;}
.h7{height:92.531250px;}
.h20{height:93.162891px;}
.h1b{height:96.037500px;}
.h5{height:100.125000px;}
.h11{height:101.144531px;}
.h4{height:154.054688px;}
.h3{height:162.703125px;}
.h31{height:340.620000px;}
.h2d{height:350.475000px;}
.h35{height:385.320000px;}
.h33{height:399.105000px;}
.h27{height:445.605000px;}
.h2b{height:453.720000px;}
.h2f{height:458.520000px;}
.h3a{height:497.805000px;}
.h25{height:551.550000px;}
.h32{height:624.450000px;}
.h29{height:646.995000px;}
.h36{height:811.695000px;}
.h38{height:813.825000px;}
.h0{height:1188.000000px;}
.w7{width:24.600000px;}
.w3{width:87.037500px;}
.w9{width:203.475000px;}
.w11{width:216.345000px;}
.wf{width:216.375000px;}
.w10{width:216.975000px;}
.w8{width:242.475000px;}
.w6{width:257.175000px;}
.w5{width:261.975000px;}
.w4{width:262.275000px;}
.w2{width:284.775000px;}
.wc{width:324.705000px;}
.wd{width:324.975000px;}
.wa{width:453.120000px;}
.we{width:649.695000px;}
.wb{width:655.380000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x38{left:9.300000px;}
.x25{left:12.300000px;}
.x37{left:15.900000px;}
.x1f{left:17.100000px;}
.x52{left:23.100000px;}
.x21{left:27.000000px;}
.x27{left:31.200000px;}
.x16{left:33.000000px;}
.x2a{left:34.800000px;}
.x22{left:36.000000px;}
.x18{left:39.300000px;}
.x1b{left:43.800000px;}
.x1a{left:47.400000px;}
.x3b{left:50.092500px;}
.x14{left:56.100000px;}
.x53{left:59.107500px;}
.x26{left:61.500000px;}
.x12{left:63.900000px;}
.x2c{left:69.900000px;}
.x23{left:72.600000px;}
.x17{left:73.800000px;}
.x13{left:77.100000px;}
.x50{left:78.337500px;}
.x28{left:80.745000px;}
.x20{left:85.230000px;}
.x1c{left:90.300000px;}
.x15{left:94.200000px;}
.x2b{left:96.030000px;}
.x29{left:103.800000px;}
.x19{left:105.630000px;}
.x3c{left:116.737500px;}
.xc{left:119.437500px;}
.x24{left:120.945000px;}
.x4a{left:127.237486px;}
.x5{left:128.437486px;}
.x7{left:129.937486px;}
.x6{left:132.037486px;}
.x30{left:140.437486px;}
.xb{left:150.929986px;}
.x4b{left:153.344986px;}
.x4e{left:156.037500px;}
.x2d{left:180.674986px;}
.x11{left:185.475000px;}
.x2e{left:195.382500px;}
.x46{left:200.730000px;}
.x43{left:207.667500px;}
.x3{left:211.574986px;}
.x9{left:241.874986px;}
.x56{left:248.774986px;}
.x3f{left:258.374986px;}
.x49{left:262.882500px;}
.x4{left:271.874986px;}
.x57{left:280.574986px;}
.x42{left:289.282500px;}
.x47{left:297.082500px;}
.x55{left:299.774986px;}
.x39{left:305.212500px;}
.x40{left:316.012500px;}
.x2f{left:322.920000px;}
.x44{left:336.420000px;}
.x35{left:338.819986px;}
.xa{left:340.319986px;}
.x59{left:344.504986px;}
.x58{left:349.319986px;}
.x54{left:355.619986px;}
.x5a{left:365.219986px;}
.x34{left:373.319986px;}
.x10{left:381.704986px;}
.x3e{left:384.119986px;}
.x33{left:397.004986px;}
.x32{left:401.819986px;}
.x31{left:403.004986px;}
.xe{left:404.220000px;}
.x1d{left:442.650000px;}
.x41{left:444.750000px;}
.x2{left:447.449986px;}
.x1e{left:467.250000px;}
.xf{left:491.250000px;}
.x45{left:553.395000px;}
.x4d{left:602.887500px;}
.x4c{left:621.787500px;}
.x4f{left:622.987500px;}
.x51{left:624.487500px;}
.x48{left:626.587500px;}
.x36{left:646.387500px;}
.x3d{left:647.587500px;}
.x3a{left:649.987500px;}
.x1{left:656.594986px;}
.x8{left:760.724986px;}
.x5b{left:767.024986px;}
@media print{
.v1{vertical-align:-102.400000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.866667pt;}
.ls1e{letter-spacing:-3.754667pt;}
.lsc{letter-spacing:-1.088000pt;}
.ls25{letter-spacing:-0.746667pt;}
.ls23{letter-spacing:-0.618667pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.469333pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls10{letter-spacing:-0.362667pt;}
.ls14{letter-spacing:-0.311467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.245333pt;}
.ls28{letter-spacing:-0.234667pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.197333pt;}
.ls11{letter-spacing:-0.170667pt;}
.ls15{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.071467pt;}
.ls18{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.149333pt;}
.ls8{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.362667pt;}
.ls1{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.474667pt;}
.ls21{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.554667pt;}
.ls1b{letter-spacing:1.002667pt;}
.ls20{letter-spacing:1.045333pt;}
.ls1d{letter-spacing:27.114667pt;}
.lsd{letter-spacing:67.389867pt;}
.lse{letter-spacing:67.443200pt;}
.ws4{word-spacing:-58.666667pt;}
.ws8{word-spacing:-25.685333pt;}
.wsb{word-spacing:-22.474667pt;}
.ws16{word-spacing:-19.584000pt;}
.ws19{word-spacing:-19.477333pt;}
.ws17{word-spacing:-19.413333pt;}
.wsf{word-spacing:-19.392000pt;}
.wsa{word-spacing:-19.264000pt;}
.wsc{word-spacing:-19.242667pt;}
.ws12{word-spacing:-19.093333pt;}
.ws18{word-spacing:-19.029333pt;}
.ws9{word-spacing:-18.901333pt;}
.ws13{word-spacing:-18.816000pt;}
.wse{word-spacing:-18.794667pt;}
.ws14{word-spacing:-18.730667pt;}
.ws10{word-spacing:-18.688000pt;}
.ws15{word-spacing:-18.517333pt;}
.ws7{word-spacing:-18.176000pt;}
.ws6{word-spacing:-17.850667pt;}
.ws3{word-spacing:-17.658667pt;}
.ws2{word-spacing:-17.413333pt;}
.ws5{word-spacing:-16.053333pt;}
.wsd{word-spacing:-15.840000pt;}
.ws0{word-spacing:-15.040000pt;}
.ws11{word-spacing:-10.325333pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-10.650667pt;}
._c{margin-left:-5.248000pt;}
._4{margin-left:-4.346667pt;}
._3{margin-left:-2.512000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.440000pt;}
._14{width:2.341333pt;}
._7{width:3.418667pt;}
._6{width:4.341333pt;}
._9{width:5.712000pt;}
._8{width:6.666667pt;}
._a{width:7.557333pt;}
._1a{width:9.056000pt;}
._1b{width:10.288000pt;}
._24{width:11.178667pt;}
._1c{width:12.357333pt;}
._16{width:13.424000pt;}
._15{width:14.336000pt;}
._21{width:15.680000pt;}
._5{width:16.762667pt;}
._25{width:17.893333pt;}
._2a{width:20.384000pt;}
._29{width:21.936000pt;}
._1d{width:22.832000pt;}
._10{width:23.952000pt;}
._f{width:25.024000pt;}
._11{width:25.952000pt;}
._28{width:27.008000pt;}
._e{width:28.160000pt;}
._d{width:29.056000pt;}
._2b{width:30.778667pt;}
._19{width:32.234667pt;}
._17{width:33.344000pt;}
._18{width:34.746667pt;}
._22{width:35.664000pt;}
._30{width:36.864000pt;}
._2f{width:38.058667pt;}
._31{width:39.120000pt;}
._2c{width:40.800000pt;}
._1f{width:42.144000pt;}
._20{width:43.680000pt;}
._23{width:45.274667pt;}
._2d{width:47.040000pt;}
._2e{width:50.085333pt;}
._32{width:52.421333pt;}
._38{width:53.482667pt;}
._27{width:54.810667pt;}
._26{width:55.808000pt;}
._36{width:58.320000pt;}
._35{width:60.186667pt;}
._1e{width:62.085333pt;}
._33{width:63.488000pt;}
._34{width:64.538667pt;}
._12{width:69.120000pt;}
._13{width:70.080000pt;}
._37{width:109.760000pt;}
._39{width:169.669333pt;}
._b{width:570.501333pt;}
.fs9{font-size:35.200000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:56.533333pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:1.880000pt;}
.y44{bottom:2.933333pt;}
.y26{bottom:3.186667pt;}
.y28{bottom:3.200000pt;}
.y33{bottom:3.213333pt;}
.y15{bottom:3.466667pt;}
.ya6{bottom:3.480000pt;}
.y2e{bottom:6.933333pt;}
.y17{bottom:16.000000pt;}
.ya1{bottom:16.013333pt;}
.yfc{bottom:16.026667pt;}
.yc0{bottom:16.040000pt;}
.y43{bottom:18.933333pt;}
.ydd{bottom:18.973333pt;}
.yd6{bottom:19.193333pt;}
.y10c{bottom:19.453333pt;}
.yc2{bottom:19.480000pt;}
.y25{bottom:20.253333pt;}
.y31{bottom:20.266667pt;}
.y2b{bottom:20.306667pt;}
.ye1{bottom:21.860000pt;}
.yaa{bottom:22.133333pt;}
.ya5{bottom:22.146667pt;}
.y111{bottom:22.173333pt;}
.y2d{bottom:23.200000pt;}
.yd9{bottom:29.346667pt;}
.y16{bottom:31.200000pt;}
.ydc{bottom:36.293333pt;}
.yd5{bottom:36.526667pt;}
.y35{bottom:37.066667pt;}
.y24{bottom:37.333333pt;}
.y3a{bottom:37.360000pt;}
.y2a{bottom:37.373333pt;}
.y10b{bottom:38.120000pt;}
.y106{bottom:38.146667pt;}
.yfe{bottom:40.533333pt;}
.ya4{bottom:40.800000pt;}
.yda{bottom:49.866667pt;}
.y23{bottom:54.133333pt;}
.y30{bottom:54.400000pt;}
.y39{bottom:54.440000pt;}
.y14{bottom:56.000000pt;}
.y10a{bottom:56.786667pt;}
.y105{bottom:56.813333pt;}
.ya3{bottom:59.200000pt;}
.y13{bottom:59.733333pt;}
.yd3{bottom:69.640000pt;}
.y38{bottom:71.493333pt;}
.y123{bottom:97.866667pt;}
.y94{bottom:98.933333pt;}
.yd7{bottom:106.166667pt;}
.y10e{bottom:109.900000pt;}
.ye0{bottom:113.633333pt;}
.y10{bottom:115.233333pt;}
.y122{bottom:116.566667pt;}
.ya7{bottom:117.100000pt;}
.y93{bottom:117.633333pt;}
.y6d{bottom:119.766667pt;}
.yd4{bottom:121.900000pt;}
.y48{bottom:122.700000pt;}
.y13b{bottom:127.766667pt;}
.y10d{bottom:128.300000pt;}
.y102{bottom:131.500000pt;}
.yc4{bottom:132.566667pt;}
.ya2{bottom:135.226667pt;}
.y6c{bottom:135.240000pt;}
.y92{bottom:136.040000pt;}
.yf{bottom:136.826667pt;}
.ybb{bottom:138.706667pt;}
.y47{bottom:141.373333pt;}
.y109{bottom:143.773333pt;}
.y6b{bottom:145.893333pt;}
.y101{bottom:147.226667pt;}
.ydf{bottom:150.693333pt;}
.y121{bottom:151.226667pt;}
.y91{bottom:154.706667pt;}
.y17a{bottom:155.493333pt;}
.ye{bottom:158.693333pt;}
.y46{bottom:159.773333pt;}
.y13a{bottom:162.440000pt;}
.y104{bottom:164.026667pt;}
.y6a{bottom:166.160000pt;}
.yc3{bottom:167.226667pt;}
.y120{bottom:169.893333pt;}
.y179{bottom:172.560000pt;}
.y90{bottom:173.360000pt;}
.yd2{bottom:173.626667pt;}
.yba{bottom:175.773333pt;}
.yd{bottom:176.293333pt;}
.y45{bottom:176.840000pt;}
.y69{bottom:177.373333pt;}
.yc1{bottom:182.960000pt;}
.y100{bottom:184.293333pt;}
.yfa{bottom:187.226667pt;}
.y11f{bottom:188.293333pt;}
.y178{bottom:189.640000pt;}
.y41{bottom:190.693333pt;}
.y8f{bottom:191.760000pt;}
.yb9{bottom:194.426667pt;}
.y68{bottom:196.040000pt;}
.y139{bottom:196.840000pt;}
.y17b{bottom:203.226667pt;}
.y177{bottom:206.426667pt;}
.y11e{bottom:206.960000pt;}
.ya0{bottom:209.626667pt;}
.y8e{bottom:210.440000pt;}
.yb8{bottom:213.093333pt;}
.y67{bottom:214.440000pt;}
.y108{bottom:215.506667pt;}
.ybf{bottom:217.626667pt;}
.yf9{bottom:221.626667pt;}
.y176{bottom:223.506667pt;}
.y11d{bottom:225.640000pt;}
.y40{bottom:226.173333pt;}
.y8d{bottom:229.106667pt;}
.yb7{bottom:231.533333pt;}
.y66{bottom:233.133333pt;}
.y138{bottom:234.200000pt;}
.y103{bottom:235.800000pt;}
.yf8{bottom:240.333333pt;}
.y175{bottom:240.866667pt;}
.y11c{bottom:244.066667pt;}
.y3f{bottom:244.333333pt;}
.y8c{bottom:247.533333pt;}
.yf0{bottom:248.333333pt;}
.yb6{bottom:250.200000pt;}
.y65{bottom:251.800000pt;}
.y137{bottom:252.866667pt;}
.yf7{bottom:259.000000pt;}
.y174{bottom:259.533333pt;}
.y3e{bottom:261.400000pt;}
.yb5{bottom:268.866667pt;}
.y64{bottom:270.200000pt;}
.y173{bottom:277.933333pt;}
.y3d{bottom:278.466667pt;}
.y11b{bottom:278.733333pt;}
.y8b{bottom:282.200000pt;}
.yef{bottom:283.000000pt;}
.yb4{bottom:287.266667pt;}
.y63{bottom:288.866667pt;}
.yf6{bottom:293.400000pt;}
.y3c{bottom:295.533333pt;}
.y172{bottom:296.600000pt;}
.y11a{bottom:297.400000pt;}
.yee{bottom:298.733333pt;}
.y8a{bottom:300.866667pt;}
.yb3{bottom:305.933333pt;}
.y62{bottom:307.533333pt;}
.y3b{bottom:309.400000pt;}
.yf5{bottom:312.066667pt;}
.y171{bottom:315.266667pt;}
.y119{bottom:315.800000pt;}
.y89{bottom:319.266667pt;}
.y136{bottom:324.600000pt;}
.y37{bottom:326.200000pt;}
.y150{bottom:329.133333pt;}
.yf4{bottom:330.733333pt;}
.y170{bottom:333.666667pt;}
.yed{bottom:335.800000pt;}
.y88{bottom:337.933333pt;}
.yb2{bottom:340.333333pt;}
.y61{bottom:341.933333pt;}
.y135{bottom:343.000000pt;}
.y14f{bottom:347.800000pt;}
.yf3{bottom:349.133333pt;}
.y118{bottom:350.466667pt;}
.y16f{bottom:352.333333pt;}
.y87{bottom:356.600000pt;}
.yb1{bottom:359.040000pt;}
.y60{bottom:360.626667pt;}
.yf2{bottom:364.893333pt;}
.y14e{bottom:366.226667pt;}
.y117{bottom:369.173333pt;}
.y16e{bottom:371.040000pt;}
.y86{bottom:375.026667pt;}
.yb0{bottom:377.693333pt;}
.y14d{bottom:384.906667pt;}
.y116{bottom:387.560000pt;}
.y16d{bottom:389.440000pt;}
.y85{bottom:393.706667pt;}
.y5f{bottom:395.026667pt;}
.yaf{bottom:396.360000pt;}
.yf1{bottom:402.226667pt;}
.y115{bottom:406.240000pt;}
.y16c{bottom:408.106667pt;}
.y36{bottom:411.560000pt;}
.y84{bottom:412.360000pt;}
.y5e{bottom:413.693333pt;}
.yae{bottom:414.773333pt;}
.y14c{bottom:419.293333pt;}
.y114{bottom:424.893333pt;}
.y16b{bottom:426.773333pt;}
.y34{bottom:428.640000pt;}
.y83{bottom:430.506667pt;}
.yad{bottom:433.440000pt;}
.y14b{bottom:437.973333pt;}
.y113{bottom:443.293333pt;}
.y16a{bottom:445.173333pt;}
.y5d{bottom:448.360000pt;}
.y134{bottom:449.440000pt;}
.yac{bottom:452.093333pt;}
.y14a{bottom:456.626667pt;}
.y112{bottom:461.973333pt;}
.y169{bottom:463.840000pt;}
.y5c{bottom:467.026667pt;}
.y133{bottom:468.106667pt;}
.y82{bottom:469.440000pt;}
.y149{bottom:475.306667pt;}
.y110{bottom:477.693333pt;}
.y32{bottom:479.560000pt;}
.y168{bottom:482.506667pt;}
.y132{bottom:486.533333pt;}
.yab{bottom:487.333333pt;}
.y81{bottom:488.133333pt;}
.y2f{bottom:496.666667pt;}
.y167{bottom:500.933333pt;}
.y5b{bottom:501.200000pt;}
.ya9{bottom:505.466667pt;}
.y80{bottom:506.800000pt;}
.y148{bottom:509.733333pt;}
.y10f{bottom:514.800000pt;}
.y5a{bottom:519.066667pt;}
.y166{bottom:519.600000pt;}
.y131{bottom:521.200000pt;}
.y7f{bottom:525.200000pt;}
.y147{bottom:528.400000pt;}
.yff{bottom:531.066667pt;}
.y165{bottom:538.266667pt;}
.y130{bottom:539.866667pt;}
.ya8{bottom:542.800000pt;}
.yfd{bottom:546.800000pt;}
.y59{bottom:556.133333pt;}
.y164{bottom:556.666667pt;}
.y12f{bottom:558.266667pt;}
.y7e{bottom:559.866667pt;}
.y146{bottom:562.800000pt;}
.y2c{bottom:564.933333pt;}
.y163{bottom:575.333333pt;}
.yde{bottom:578.266667pt;}
.y7d{bottom:578.533333pt;}
.yd1{bottom:580.933333pt;}
.y145{bottom:581.466667pt;}
.y58{bottom:590.800000pt;}
.yc{bottom:591.333333pt;}
.y12e{bottom:592.933333pt;}
.y162{bottom:594.000000pt;}
.ydb{bottom:594.266667pt;}
.y7c{bottom:596.933333pt;}
.yd0{bottom:599.600000pt;}
.y144{bottom:600.133333pt;}
.y29{bottom:601.733333pt;}
.yfb{bottom:602.533333pt;}
.y12d{bottom:611.600000pt;}
.y161{bottom:612.426667pt;}
.y7b{bottom:615.626667pt;}
.ycf{bottom:618.306667pt;}
.y143{bottom:618.840000pt;}
.y57{bottom:625.240000pt;}
.y12c{bottom:630.026667pt;}
.y160{bottom:631.106667pt;}
.yb{bottom:632.173333pt;}
.yce{bottom:636.706667pt;}
.yec{bottom:642.840000pt;}
.y56{bottom:643.893333pt;}
.yd8{bottom:645.760000pt;}
.y15f{bottom:649.760000pt;}
.y7a{bottom:650.026667pt;}
.y27{bottom:652.973333pt;}
.y142{bottom:653.226667pt;}
.yeb{bottom:661.240000pt;}
.y12b{bottom:664.693333pt;}
.y15e{bottom:668.440000pt;}
.y79{bottom:668.693333pt;}
.y22{bottom:670.040000pt;}
.ycd{bottom:671.373333pt;}
.y141{bottom:671.893333pt;}
.ya{bottom:672.973333pt;}
.y55{bottom:677.506667pt;}
.yea{bottom:679.893333pt;}
.y12a{bottom:683.373333pt;}
.y15d{bottom:686.840000pt;}
.y78{bottom:687.373333pt;}
.ycc{bottom:690.040000pt;}
.y140{bottom:690.560000pt;}
.y54{bottom:696.173333pt;}
.y9{bottom:697.773333pt;}
.ye9{bottom:698.560000pt;}
.y129{bottom:701.506667pt;}
.y9f{bottom:703.893333pt;}
.y15c{bottom:705.506667pt;}
.y77{bottom:706.040000pt;}
.y53{bottom:714.560000pt;}
.y128{bottom:719.373333pt;}
.y8{bottom:721.226667pt;}
.y9e{bottom:722.560000pt;}
.y15b{bottom:724.173333pt;}
.y76{bottom:724.440000pt;}
.y13f{bottom:724.960000pt;}
.y52{bottom:732.440000pt;}
.ye8{bottom:733.506667pt;}
.y127{bottom:740.466667pt;}
.y7{bottom:740.733333pt;}
.y9d{bottom:741.000000pt;}
.y15a{bottom:742.600000pt;}
.ycb{bottom:743.133333pt;}
.y21{bottom:743.400000pt;}
.y13e{bottom:743.666667pt;}
.ye7{bottom:752.733333pt;}
.y51{bottom:753.533333pt;}
.y75{bottom:759.133333pt;}
.y9c{bottom:759.666667pt;}
.y159{bottom:761.266667pt;}
.yca{bottom:761.800000pt;}
.y13d{bottom:762.333333pt;}
.y6{bottom:767.933333pt;}
.y20{bottom:769.266667pt;}
.ye6{bottom:771.666667pt;}
.y50{bottom:771.933333pt;}
.y126{bottom:775.133333pt;}
.y74{bottom:777.800000pt;}
.y9b{bottom:778.333333pt;}
.y158{bottom:779.933333pt;}
.y4f{bottom:790.600000pt;}
.ye5{bottom:790.866667pt;}
.y125{bottom:793.800000pt;}
.y73{bottom:796.200000pt;}
.y9a{bottom:796.733333pt;}
.y157{bottom:798.333333pt;}
.y5{bottom:808.733333pt;}
.ye4{bottom:810.066667pt;}
.y4e{bottom:810.600000pt;}
.y124{bottom:812.200000pt;}
.ybe{bottom:812.733333pt;}
.y1f{bottom:814.066667pt;}
.yc9{bottom:814.866667pt;}
.y99{bottom:815.400000pt;}
.y156{bottom:817.000000pt;}
.ye3{bottom:829.266667pt;}
.y72{bottom:830.866667pt;}
.y1e{bottom:831.133333pt;}
.ybd{bottom:831.400000pt;}
.y13c{bottom:834.066667pt;}
.y4d{bottom:835.400000pt;}
.y155{bottom:835.666667pt;}
.y1d{bottom:848.200000pt;}
.yc8{bottom:849.266667pt;}
.y71{bottom:849.533333pt;}
.y98{bottom:849.800000pt;}
.ybc{bottom:850.066667pt;}
.y4{bottom:852.200000pt;}
.y154{bottom:854.066667pt;}
.y1c{bottom:867.440000pt;}
.y70{bottom:867.960000pt;}
.y97{bottom:868.506667pt;}
.y153{bottom:872.773333pt;}
.y4c{bottom:876.226667pt;}
.yc7{bottom:886.626667pt;}
.y96{bottom:887.173333pt;}
.y152{bottom:891.440000pt;}
.y1b{bottom:893.040000pt;}
.y3{bottom:894.626667pt;}
.y4b{bottom:900.773333pt;}
.y6f{bottom:902.626667pt;}
.yc6{bottom:905.293333pt;}
.ye2{bottom:905.560000pt;}
.y95{bottom:905.840000pt;}
.y151{bottom:909.560000pt;}
.y1a{bottom:910.106667pt;}
.y6e{bottom:921.840000pt;}
.y4a{bottom:924.226667pt;}
.y19{bottom:927.173333pt;}
.y2{bottom:930.626667pt;}
.yc5{bottom:940.506667pt;}
.y49{bottom:942.893333pt;}
.y107{bottom:943.173333pt;}
.y18{bottom:944.226667pt;}
.y1{bottom:948.506667pt;}
.y12{bottom:961.560000pt;}
.y11{bottom:988.506667pt;}
.h1c{height:16.800000pt;}
.h14{height:17.053333pt;}
.h1a{height:17.066667pt;}
.h18{height:17.100000pt;}
.hc{height:18.666667pt;}
.h1e{height:32.000000pt;}
.h24{height:32.965625pt;}
.h2a{height:34.666667pt;}
.h16{height:36.800000pt;}
.h30{height:37.066667pt;}
.h3b{height:37.100000pt;}
.h28{height:37.333333pt;}
.he{height:43.466667pt;}
.h1f{height:49.947917pt;}
.h19{height:50.933333pt;}
.h15{height:51.233333pt;}
.h2e{height:51.500000pt;}
.h2c{height:51.733333pt;}
.h13{height:53.796875pt;}
.h10{height:54.942708pt;}
.h1{height:55.625000pt;}
.h34{height:55.733333pt;}
.hd{height:56.187500pt;}
.hf{height:56.546875pt;}
.h23{height:58.687500pt;}
.h1d{height:59.937500pt;}
.h22{height:61.687500pt;}
.h6{height:65.781915pt;}
.h2{height:66.750000pt;}
.h12{height:67.986667pt;}
.h17{height:68.266667pt;}
.ha{height:68.468750pt;}
.h21{height:69.927083pt;}
.h39{height:71.733333pt;}
.h37{height:71.766667pt;}
.hb{height:74.250000pt;}
.h26{height:74.400000pt;}
.h8{height:78.250000pt;}
.h9{height:79.916667pt;}
.h7{height:82.250000pt;}
.h20{height:82.811458pt;}
.h1b{height:85.366667pt;}
.h5{height:89.000000pt;}
.h11{height:89.906250pt;}
.h4{height:136.937500pt;}
.h3{height:144.625000pt;}
.h31{height:302.773333pt;}
.h2d{height:311.533333pt;}
.h35{height:342.506667pt;}
.h33{height:354.760000pt;}
.h27{height:396.093333pt;}
.h2b{height:403.306667pt;}
.h2f{height:407.573333pt;}
.h3a{height:442.493333pt;}
.h25{height:490.266667pt;}
.h32{height:555.066667pt;}
.h29{height:575.106667pt;}
.h36{height:721.506667pt;}
.h38{height:723.400000pt;}
.h0{height:1056.000000pt;}
.w7{width:21.866667pt;}
.w3{width:77.366667pt;}
.w9{width:180.866667pt;}
.w11{width:192.306667pt;}
.wf{width:192.333333pt;}
.w10{width:192.866667pt;}
.w8{width:215.533333pt;}
.w6{width:228.600000pt;}
.w5{width:232.866667pt;}
.w4{width:233.133333pt;}
.w2{width:253.133333pt;}
.wc{width:288.626667pt;}
.wd{width:288.866667pt;}
.wa{width:402.773333pt;}
.we{width:577.506667pt;}
.wb{width:582.560000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x38{left:8.266667pt;}
.x25{left:10.933333pt;}
.x37{left:14.133333pt;}
.x1f{left:15.200000pt;}
.x52{left:20.533333pt;}
.x21{left:24.000000pt;}
.x27{left:27.733333pt;}
.x16{left:29.333333pt;}
.x2a{left:30.933333pt;}
.x22{left:32.000000pt;}
.x18{left:34.933333pt;}
.x1b{left:38.933333pt;}
.x1a{left:42.133333pt;}
.x3b{left:44.526667pt;}
.x14{left:49.866667pt;}
.x53{left:52.540000pt;}
.x26{left:54.666667pt;}
.x12{left:56.800000pt;}
.x2c{left:62.133333pt;}
.x23{left:64.533333pt;}
.x17{left:65.600000pt;}
.x13{left:68.533333pt;}
.x50{left:69.633333pt;}
.x28{left:71.773333pt;}
.x20{left:75.760000pt;}
.x1c{left:80.266667pt;}
.x15{left:83.733333pt;}
.x2b{left:85.360000pt;}
.x29{left:92.266667pt;}
.x19{left:93.893333pt;}
.x3c{left:103.766667pt;}
.xc{left:106.166667pt;}
.x24{left:107.506667pt;}
.x4a{left:113.099988pt;}
.x5{left:114.166655pt;}
.x7{left:115.499988pt;}
.x6{left:117.366655pt;}
.x30{left:124.833321pt;}
.xb{left:134.159988pt;}
.x4b{left:136.306655pt;}
.x4e{left:138.700000pt;}
.x2d{left:160.599988pt;}
.x11{left:164.866667pt;}
.x2e{left:173.673333pt;}
.x46{left:178.426667pt;}
.x43{left:184.593333pt;}
.x3{left:188.066655pt;}
.x9{left:214.999988pt;}
.x56{left:221.133321pt;}
.x3f{left:229.666655pt;}
.x49{left:233.673333pt;}
.x4{left:241.666655pt;}
.x57{left:249.399988pt;}
.x42{left:257.140000pt;}
.x47{left:264.073333pt;}
.x55{left:266.466655pt;}
.x39{left:271.300000pt;}
.x40{left:280.900000pt;}
.x2f{left:287.040000pt;}
.x44{left:299.040000pt;}
.x35{left:301.173321pt;}
.xa{left:302.506655pt;}
.x59{left:306.226655pt;}
.x58{left:310.506655pt;}
.x54{left:316.106655pt;}
.x5a{left:324.639988pt;}
.x34{left:331.839988pt;}
.x10{left:339.293321pt;}
.x3e{left:341.439988pt;}
.x33{left:352.893321pt;}
.x32{left:357.173321pt;}
.x31{left:358.226655pt;}
.xe{left:359.306667pt;}
.x1d{left:393.466667pt;}
.x41{left:395.333333pt;}
.x2{left:397.733321pt;}
.x1e{left:415.333333pt;}
.xf{left:436.666667pt;}
.x45{left:491.906667pt;}
.x4d{left:535.900000pt;}
.x4c{left:552.700000pt;}
.x4f{left:553.766667pt;}
.x51{left:555.100000pt;}
.x48{left:556.966667pt;}
.x36{left:574.566667pt;}
.x3d{left:575.633333pt;}
.x3a{left:577.766667pt;}
.x1{left:583.639988pt;}
.x8{left:676.199988pt;}
.x5b{left:681.799988pt;}
}




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