
    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_7263f14362458703c0ae7347.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_ff9fc6ba691335ed0e175584.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_b4a549ed5781af08e12e3f06.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_482e36fe48e1be6b7affe12f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ebc343af39277b979bc1fe98.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_d109871e13406bbe21797c9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_6f5266d9a34ddf60b509e19c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_9545c143ae075c3ba8857dd2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0d8e491570f10571bdb977d0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_984d1dfb1314a8bbec19b7a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972168;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_77956e1a8f05d3b745f798d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.731445;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_321e103181cf8b7e526978b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b1751019b6915729ffaf14a3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.860840;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_a6e120cabd58bf6b1667fe1a.woff2')format("woff");}.fff{font-family:fff;line-height:0.859375;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;}
.m2{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,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);}
.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:-24.456000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.v4{vertical-align:17.280000px;}
.v3{vertical-align:18.720000px;}
.v2{vertical-align:24.456000px;}
.ls12{letter-spacing:-1.368000px;}
.ls1{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.642000px;}
.ls17{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.210000px;}
.ls2{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.403200px;}
.ls5{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.486720px;}
.ls19{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.612000px;}
.ls3{letter-spacing:0.622560px;}
.ls4{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.796320px;}
.ls1a{letter-spacing:1.224000px;}
.ls1b{letter-spacing:1.344000px;}
.lse{letter-spacing:1.391040px;}
.lsd{letter-spacing:1.403040px;}
.ls15{letter-spacing:1.404000px;}
.ls14{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.340000px;}
.ls7{letter-spacing:846.300000px;}
.lsc{letter-spacing:846.456000px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.wsa{word-spacing:-19.026720px;}
.ws1{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.424000px;}
.ws0{word-spacing:-17.352000px;}
.ws6{word-spacing:-17.280000px;}
.ws8{word-spacing:-17.034960px;}
.ws10{word-spacing:-16.992000px;}
.wsc{word-spacing:-16.824960px;}
.ws7{word-spacing:-16.632000px;}
.wse{word-spacing:-15.984000px;}
.ws9{word-spacing:-13.210560px;}
.wsb{word-spacing:-11.452320px;}
.wsd{word-spacing:-10.607040px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-6.669420px;}
._6{margin-left:-5.137996px;}
._4{margin-left:-2.646240px;}
._0{margin-left:-1.238400px;}
._1{width:1.264320px;}
._3{width:2.464800px;}
._2{width:4.380960px;}
._7{width:7.050895px;}
._9{width:571.099200px;}
._5{width:608.539200px;}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs9{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:68.310788px;}
.fs5{font-size:68.672221px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.fs3{font-size:119.520000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yff{bottom:24.840000px;}
.y19f{bottom:24.870000px;}
.y1ad{bottom:25.200000px;}
.y1b8{bottom:25.914000px;}
.ydb{bottom:25.920000px;}
.ye7{bottom:25.950000px;}
.ye1{bottom:25.965000px;}
.yde{bottom:26.280000px;}
.ydf{bottom:26.640000px;}
.y12d{bottom:27.000000px;}
.y19d{bottom:27.360000px;}
.y12c{bottom:28.080000px;}
.ye2{bottom:32.445000px;}
.y12e{bottom:38.880000px;}
.yed{bottom:44.310000px;}
.y1b9{bottom:48.234000px;}
.yf6{bottom:48.240000px;}
.yf8{bottom:48.270000px;}
.y1b2{bottom:48.285000px;}
.yfb{bottom:48.600000px;}
.y1b7{bottom:49.314000px;}
.yf5{bottom:49.320000px;}
.ye6{bottom:49.350000px;}
.ye0{bottom:49.365000px;}
.yfa{bottom:49.680000px;}
.y1a9{bottom:49.725000px;}
.ya0{bottom:50.331223px;}
.ye8{bottom:55.830000px;}
.yec{bottom:55.845000px;}
.ydc{bottom:67.320000px;}
.y9f{bottom:67.679996px;}
.y12b{bottom:71.640000px;}
.y125{bottom:71.670000px;}
.y124{bottom:71.685000px;}
.y128{bottom:72.000000px;}
.y12a{bottom:72.720000px;}
.ye5{bottom:72.750000px;}
.yeb{bottom:72.765000px;}
.y127{bottom:73.080000px;}
.y6{bottom:79.200000px;}
.y123{bottom:83.565000px;}
.y9e{bottom:85.119124px;}
.yda{bottom:90.720000px;}
.ye4{bottom:96.150000px;}
.yea{bottom:96.165000px;}
.y9d{bottom:102.467897px;}
.y5{bottom:102.996000px;}
.y4{bottom:126.396000px;}
.y44{bottom:131.436000px;}
.y141{bottom:132.876000px;}
.y1b6{bottom:137.196000px;}
.ybe{bottom:138.996000px;}
.y15a{bottom:143.676000px;}
.y8f{bottom:146.556000px;}
.y83{bottom:147.276000px;}
.y3{bottom:150.150000px;}
.y11e{bottom:150.870000px;}
.y101{bottom:151.590000px;}
.yd8{bottom:156.630000px;}
.y43{bottom:156.990000px;}
.y140{bottom:158.430000px;}
.y17a{bottom:160.230000px;}
.ybd{bottom:164.550000px;}
.y100{bottom:169.230000px;}
.y8e{bottom:172.110000px;}
.y82{bottom:172.830000px;}
.y2{bottom:173.910000px;}
.y11d{bottom:176.430000px;}
.y15d{bottom:176.790000px;}
.y1a7{bottom:177.870000px;}
.yd7{bottom:182.190000px;}
.y42{bottom:182.550000px;}
.y191{bottom:182.910000px;}
.y13f{bottom:183.990000px;}
.y179{bottom:185.790000px;}
.y9c{bottom:187.585308px;}
.ybc{bottom:190.110000px;}
.y159{bottom:194.790000px;}
.y8d{bottom:197.670000px;}
.y81{bottom:198.390000px;}
.y11c{bottom:201.990000px;}
.y15c{bottom:202.350000px;}
.y9b{bottom:204.934078px;}
.yd6{bottom:207.750000px;}
.y41{bottom:208.110000px;}
.y190{bottom:208.470000px;}
.y13e{bottom:209.550000px;}
.y178{bottom:211.350000px;}
.y158{bottom:220.395000px;}
.y9a{bottom:222.282851px;}
.y20{bottom:222.915000px;}
.y8c{bottom:223.275000px;}
.y80{bottom:223.995000px;}
.y1b5{bottom:224.355000px;}
.y11b{bottom:227.595000px;}
.y15b{bottom:227.955000px;}
.yfe{bottom:232.995000px;}
.ybb{bottom:233.715000px;}
.y18f{bottom:234.075000px;}
.y13d{bottom:235.155000px;}
.y177{bottom:236.955000px;}
.yd5{bottom:240.195000px;}
.y1a6{bottom:241.635000px;}
.y62{bottom:242.715000px;}
.y157{bottom:245.955000px;}
.y1f{bottom:248.475000px;}
.y8b{bottom:248.835000px;}
.y7f{bottom:249.555000px;}
.y40{bottom:251.715000px;}
.y11a{bottom:253.155000px;}
.yba{bottom:259.275000px;}
.y13c{bottom:260.715000px;}
.ya2{bottom:261.407925px;}
.y61{bottom:268.275000px;}
.y18e{bottom:268.635000px;}
.y156{bottom:271.515000px;}
.y176{bottom:271.875000px;}
.y1e{bottom:274.035000px;}
.y8a{bottom:274.395000px;}
.y7e{bottom:275.115000px;}
.y3f{bottom:277.275000px;}
.y119{bottom:278.715000px;}
.ya1{bottom:280.112070px;}
.yb9{bottom:284.835000px;}
.y1b4{bottom:288.435000px;}
.y60{bottom:293.835000px;}
.y18d{bottom:294.195000px;}
.yfd{bottom:297.075000px;}
.y175{bottom:297.435000px;}
.y120{bottom:298.875000px;}
.y1d{bottom:299.595000px;}
.y89{bottom:299.955000px;}
.y7d{bottom:300.675000px;}
.y3e{bottom:302.835000px;}
.y118{bottom:304.275000px;}
.y1a5{bottom:305.715000px;}
.y96{bottom:305.773814px;}
.yb8{bottom:310.755000px;}
.y5f{bottom:319.395000px;}
.y18c{bottom:319.755000px;}
.y155{bottom:322.635000px;}
.y95{bottom:323.122585px;}
.y174{bottom:323.355000px;}
.y1c{bottom:325.155000px;}
.y88{bottom:325.515000px;}
.y7c{bottom:326.235000px;}
.y3d{bottom:328.395000px;}
.y117{bottom:329.835000px;}
.y94{bottom:340.471357px;}
.yd4{bottom:341.385000px;}
.y5e{bottom:344.985000px;}
.y154{bottom:348.225000px;}
.y173{bottom:349.305000px;}
.y1b{bottom:350.745000px;}
.y87{bottom:351.105000px;}
.y7b{bottom:351.825000px;}
.y3c{bottom:353.985000px;}
.yb7{bottom:354.345000px;}
.y116{bottom:355.425000px;}
.y93{bottom:357.910488px;}
.yd3{bottom:366.945000px;}
.y1a4{bottom:369.465000px;}
.y5d{bottom:370.545000px;}
.y153{bottom:373.785000px;}
.y1b3{bottom:375.945000px;}
.y1a{bottom:376.305000px;}
.y86{bottom:376.665000px;}
.y7a{bottom:377.385000px;}
.y3b{bottom:379.545000px;}
.yb6{bottom:379.905000px;}
.y115{bottom:380.985000px;}
.y91{bottom:381.780077px;}
.y172{bottom:383.865000px;}
.yfc{bottom:384.585000px;}
.yd2{bottom:392.505000px;}
.y5c{bottom:396.105000px;}
.y152{bottom:399.345000px;}
.y19{bottom:401.865000px;}
.y79{bottom:402.945000px;}
.y3a{bottom:405.105000px;}
.yb5{bottom:405.465000px;}
.y114{bottom:406.545000px;}
.y171{bottom:409.425000px;}
.yd1{bottom:418.065000px;}
.y5b{bottom:421.665000px;}
.y151{bottom:424.905000px;}
.y18{bottom:427.425000px;}
.y78{bottom:428.505000px;}
.y39{bottom:430.665000px;}
.yb4{bottom:431.025000px;}
.y113{bottom:432.105000px;}
.y1a3{bottom:433.545000px;}
.y170{bottom:434.985000px;}
.y1b1{bottom:439.665000px;}
.y197{bottom:440.025000px;}
.y99{bottom:442.583637px;}
.yd0{bottom:443.625000px;}
.y5a{bottom:447.225000px;}
.y150{bottom:450.465000px;}
.y17{bottom:452.985000px;}
.y77{bottom:454.065000px;}
.y38{bottom:456.225000px;}
.yb3{bottom:456.585000px;}
.y112{bottom:457.665000px;}
.y13b{bottom:458.385000px;}
.y98{bottom:459.939939px;}
.y90{bottom:462.005870px;}
.y18b{bottom:465.630000px;}
.ycf{bottom:469.230000px;}
.y16f{bottom:469.950000px;}
.yf9{bottom:471.750000px;}
.y59{bottom:472.830000px;}
.y14f{bottom:476.070000px;}
.y97{bottom:477.371539px;}
.y16{bottom:478.590000px;}
.y76{bottom:479.670000px;}
.y37{bottom:481.830000px;}
.yb2{bottom:482.190000px;}
.y111{bottom:483.270000px;}
.y13a{bottom:483.990000px;}
.y129{bottom:484.350000px;}
.y18a{bottom:491.190000px;}
.yce{bottom:494.790000px;}
.y16e{bottom:495.510000px;}
.y1a2{bottom:497.670000px;}
.y58{bottom:498.390000px;}
.y14e{bottom:501.630000px;}
.y15{bottom:504.150000px;}
.y75{bottom:505.230000px;}
.y36{bottom:507.390000px;}
.yb1{bottom:507.750000px;}
.y92{bottom:511.519377px;}
.y189{bottom:516.750000px;}
.y16d{bottom:521.070000px;}
.y57{bottom:523.950000px;}
.y196{bottom:525.750000px;}
.y110{bottom:526.830000px;}
.ycd{bottom:527.190000px;}
.y139{bottom:527.550000px;}
.y14{bottom:529.710000px;}
.y74{bottom:530.790000px;}
.y35{bottom:532.950000px;}
.yb0{bottom:533.310000px;}
.y56{bottom:549.510000px;}
.y188{bottom:551.310000px;}
.y10f{bottom:552.390000px;}
.y14d{bottom:552.750000px;}
.y138{bottom:553.110000px;}
.y13{bottom:555.270000px;}
.y16c{bottom:555.630000px;}
.ye9{bottom:555.990000px;}
.y73{bottom:556.350000px;}
.y34{bottom:558.510000px;}
.yaf{bottom:558.870000px;}
.yf7{bottom:559.230000px;}
.y1a1{bottom:561.390000px;}
.y55{bottom:575.070000px;}
.y187{bottom:576.870000px;}
.y10e{bottom:577.950000px;}
.y14c{bottom:578.310000px;}
.y137{bottom:578.670000px;}
.y16b{bottom:581.190000px;}
.y72{bottom:581.910000px;}
.y33{bottom:584.070000px;}
.yae{bottom:584.430000px;}
.y12{bottom:587.700000px;}
.y126{bottom:594.900000px;}
.ycc{bottom:600.300000px;}
.y54{bottom:600.660000px;}
.y186{bottom:602.460000px;}
.y10d{bottom:603.540000px;}
.y14b{bottom:603.900000px;}
.y136{bottom:604.260000px;}
.y32{bottom:609.660000px;}
.yad{bottom:610.020000px;}
.y195{bottom:611.460000px;}
.y71{bottom:614.340000px;}
.y1b0{bottom:614.700000px;}
.y16a{bottom:615.780000px;}
.y1a0{bottom:625.500000px;}
.ycb{bottom:625.860000px;}
.y53{bottom:626.220000px;}
.y185{bottom:628.020000px;}
.y10c{bottom:629.100000px;}
.y14a{bottom:629.460000px;}
.y135{bottom:629.820000px;}
.y31{bottom:635.220000px;}
.y194{bottom:637.020000px;}
.yac{bottom:640.980000px;}
.y169{bottom:641.340000px;}
.yf4{bottom:646.740000px;}
.y70{bottom:649.260000px;}
.yca{bottom:651.420000px;}
.y10b{bottom:654.660000px;}
.y149{bottom:655.020000px;}
.y134{bottom:655.380000px;}
.y52{bottom:658.620000px;}
.y11{bottom:660.780000px;}
.y184{bottom:662.580000px;}
.y168{bottom:675.900000px;}
.yc9{bottom:676.980000px;}
.y10a{bottom:680.220000px;}
.y148{bottom:680.580000px;}
.y133{bottom:680.940000px;}
.y10{bottom:686.340000px;}
.y183{bottom:688.140000px;}
.y19e{bottom:689.220000px;}
.ye3{bottom:690.300000px;}
.y1af{bottom:701.820000px;}
.yc8{bottom:702.540000px;}
.y109{bottom:705.780000px;}
.y147{bottom:706.140000px;}
.y132{bottom:706.500000px;}
.yab{bottom:708.300000px;}
.y167{bottom:710.490000px;}
.y30{bottom:711.930000px;}
.y182{bottom:713.730000px;}
.y6f{bottom:722.370000px;}
.y85{bottom:726.690000px;}
.yc7{bottom:728.130000px;}
.yf{bottom:729.930000px;}
.y108{bottom:731.370000px;}
.y51{bottom:731.730000px;}
.yf3{bottom:733.170000px;}
.yaa{bottom:733.890000px;}
.y166{bottom:736.050000px;}
.y2f{bottom:737.490000px;}
.y131{bottom:738.930000px;}
.y181{bottom:739.290000px;}
.y1ba{bottom:740.010000px;}
.y6e{bottom:747.930000px;}
.y193{bottom:748.290000px;}
.y146{bottom:749.730000px;}
.y19c{bottom:753.330000px;}
.yc6{bottom:753.690000px;}
.ye{bottom:755.490000px;}
.y107{bottom:756.930000px;}
.y50{bottom:757.290000px;}
.ya9{bottom:759.450000px;}
.y165{bottom:761.610000px;}
.y2e{bottom:763.050000px;}
.y1ae{bottom:765.930000px;}
.y6d{bottom:773.490000px;}
.y180{bottom:773.850000px;}
.y145{bottom:775.290000px;}
.yc5{bottom:779.250000px;}
.y106{bottom:782.490000px;}
.y4f{bottom:782.850000px;}
.ya8{bottom:785.010000px;}
.y2d{bottom:788.970000px;}
.y164{bottom:796.170000px;}
.yd{bottom:799.050000px;}
.y17f{bottom:799.410000px;}
.y144{bottom:800.850000px;}
.yc4{bottom:804.810000px;}
.y105{bottom:808.050000px;}
.y4e{bottom:808.410000px;}
.ya7{bottom:810.570000px;}
.y130{bottom:811.290000px;}
.y2c{bottom:814.530000px;}
.y122{bottom:816.690000px;}
.y19b{bottom:817.410000px;}
.y163{bottom:821.730000px;}
.yc{bottom:824.610000px;}
.y17e{bottom:824.970000px;}
.y143{bottom:826.410000px;}
.yc3{bottom:830.370000px;}
.y4d{bottom:834.015000px;}
.y12f{bottom:834.735000px;}
.ya6{bottom:836.175000px;}
.y2b{bottom:840.135000px;}
.y162{bottom:847.335000px;}
.yb{bottom:850.215000px;}
.y192{bottom:850.575000px;}
.y142{bottom:852.015000px;}
.y1ac{bottom:853.095000px;}
.yc2{bottom:855.975000px;}
.y4c{bottom:859.575000px;}
.y2a{bottom:865.695000px;}
.ya5{bottom:867.495000px;}
.y6c{bottom:875.775000px;}
.yf2{bottom:877.575000px;}
.yc1{bottom:881.535000px;}
.y161{bottom:881.895000px;}
.y4b{bottom:885.135000px;}
.y29{bottom:891.255000px;}
.y6b{bottom:901.335000px;}
.yf1{bottom:903.135000px;}
.yc0{bottom:907.095000px;}
.y160{bottom:907.455000px;}
.y4a{bottom:910.695000px;}
.ydd{bottom:911.055000px;}
.y28{bottom:916.815000px;}
.y1ab{bottom:917.175000px;}
.ya{bottom:918.975000px;}
.y19a{bottom:925.815000px;}
.y6a{bottom:926.895000px;}
.yf0{bottom:928.695000px;}
.ya4{bottom:932.655000px;}
.y15f{bottom:933.015000px;}
.y49{bottom:936.255000px;}
.y17d{bottom:945.255000px;}
.y27{bottom:949.215000px;}
.y199{bottom:951.375000px;}
.y69{bottom:952.455000px;}
.yef{bottom:954.255000px;}
.y48{bottom:961.845000px;}
.ybf{bottom:963.645000px;}
.y15e{bottom:965.445000px;}
.y9{bottom:969.405000px;}
.y17c{bottom:970.845000px;}
.yd9{bottom:974.805000px;}
.y68{bottom:978.045000px;}
.yee{bottom:979.845000px;}
.y198{bottom:983.805000px;}
.y47{bottom:987.405000px;}
.y17b{bottom:996.405000px;}
.y67{bottom:1003.605000px;}
.y1aa{bottom:1004.685000px;}
.ya3{bottom:1005.405000px;}
.y46{bottom:1012.965000px;}
.y121{bottom:1014.045000px;}
.y8{bottom:1019.445000px;}
.y26{bottom:1021.965000px;}
.y66{bottom:1029.165000px;}
.y84{bottom:1030.965000px;}
.y104{bottom:1038.525000px;}
.y11f{bottom:1038.885000px;}
.y25{bottom:1047.525000px;}
.y65{bottom:1054.725000px;}
.y45{bottom:1056.525000px;}
.y103{bottom:1064.085000px;}
.y1a8{bottom:1068.405000px;}
.y7{bottom:1069.485000px;}
.y24{bottom:1082.130000px;}
.y64{bottom:1087.170000px;}
.y102{bottom:1089.690000px;}
.y23{bottom:1107.690000px;}
.y63{bottom:1122.090000px;}
.y22{bottom:1133.250000px;}
.y1{bottom:1162.050000px;}
.y21{bottom:1185.090000px;}
.h19{height:34.735078px;}
.h1e{height:45.773438px;}
.h2{height:48.418594px;}
.h7{height:49.992188px;}
.he{height:50.100469px;}
.h8{height:50.132812px;}
.h15{height:50.400000px;}
.h10{height:50.423906px;}
.h18{height:50.436000px;}
.h1d{height:50.505469px;}
.h24{height:50.760000px;}
.hf{height:51.156000px;}
.ha{height:51.366511px;}
.hb{height:51.638291px;}
.h12{height:51.750000px;}
.h22{height:52.560000px;}
.h21{height:52.596000px;}
.h1c{height:52.628906px;}
.h4{height:54.457031px;}
.h5{height:54.492188px;}
.h1a{height:54.684844px;}
.h1b{height:54.864844px;}
.h25{height:58.218750px;}
.h17{height:73.800000px;}
.h11{height:73.836000px;}
.hc{height:74.008828px;}
.h16{height:74.160000px;}
.h23{height:74.196000px;}
.h6{height:90.982266px;}
.h20{height:97.200000px;}
.h14{height:97.236000px;}
.h1f{height:97.560000px;}
.h3{height:109.617188px;}
.hd{height:115.236000px;}
.h13{height:120.636000px;}
.h9{height:542.034130px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:43.920000px;}
.wb{width:43.956000px;}
.we{width:52.236000px;}
.wd{width:53.316000px;}
.wf{width:55.080000px;}
.wc{width:61.920000px;}
.w12{width:62.280000px;}
.w11{width:62.316000px;}
.w13{width:62.676000px;}
.w5{width:89.316000px;}
.w15{width:96.876000px;}
.w16{width:96.912000px;}
.w8{width:97.596000px;}
.w7{width:98.676000px;}
.w9{width:100.476000px;}
.w6{width:107.316000px;}
.w19{width:126.036000px;}
.w4{width:142.992000px;}
.w18{width:179.355000px;}
.w10{width:221.505000px;}
.w14{width:251.745000px;}
.w17{width:395.820000px;}
.w3{width:722.796977px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:5.400000px;}
.x26{left:7.200000px;}
.x1f{left:9.720000px;}
.x1c{left:11.160000px;}
.x27{left:12.240000px;}
.x1d{left:13.320000px;}
.x19{left:14.760000px;}
.x14{left:16.560000px;}
.x21{left:18.360000px;}
.x2d{left:19.830000px;}
.x13{left:22.320000px;}
.x37{left:24.480000px;}
.x18{left:26.640000px;}
.x16{left:28.440000px;}
.x39{left:30.240000px;}
.x11{left:32.400000px;}
.x44{left:33.480000px;}
.x41{left:34.560000px;}
.x40{left:36.360000px;}
.x43{left:37.440000px;}
.x45{left:39.600000px;}
.x38{left:42.165000px;}
.x34{left:48.630000px;}
.x3e{left:62.685000px;}
.x3f{left:65.205000px;}
.x42{left:66.645000px;}
.x6{left:73.363884px;}
.x9{left:75.080525px;}
.xe{left:81.036000px;}
.xb{left:83.573392px;}
.x2{left:84.995987px;}
.x3d{left:89.325000px;}
.xa{left:90.439961px;}
.x8{left:92.156605px;}
.x7{left:95.860939px;}
.x29{left:110.949000px;}
.x28{left:112.356000px;}
.x3a{left:127.511987px;}
.x10{left:225.465000px;}
.x1e{left:270.825000px;}
.x12{left:316.230000px;}
.x32{left:328.110000px;}
.x2a{left:335.670000px;}
.x20{left:379.590000px;}
.x2b{left:399.420000px;}
.x15{left:424.980000px;}
.x33{left:426.420000px;}
.xc{left:438.195656px;}
.xd{left:441.546121px;}
.x2c{left:463.140000px;}
.x22{left:479.730000px;}
.x3b{left:490.170000px;}
.x17{left:525.090000px;}
.x2e{left:526.890000px;}
.x5{left:530.992244px;}
.x23{left:578.775000px;}
.x2f{left:590.655000px;}
.x35{left:623.055000px;}
.x1a{left:624.135000px;}
.x4{left:632.447341px;}
.x30{left:654.765000px;}
.x3c{left:670.965000px;}
.x24{left:677.805000px;}
.x31{left:718.485000px;}
.x36{left:721.365000px;}
.x1b{left:723.210000px;}
.x1{left:728.609987px;}
.x25{left:779.730000px;}
.x3{left:807.809987px;}
@media print{
.v1{vertical-align:-21.738667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.v4{vertical-align:15.360000pt;}
.v3{vertical-align:16.640000pt;}
.v2{vertical-align:21.738667pt;}
.ls12{letter-spacing:-1.216000pt;}
.ls1{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.570667pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.186667pt;}
.ls2{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.358400pt;}
.ls5{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.432640pt;}
.ls19{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.544000pt;}
.ls3{letter-spacing:0.553387pt;}
.ls4{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.707840pt;}
.ls1a{letter-spacing:1.088000pt;}
.ls1b{letter-spacing:1.194667pt;}
.lse{letter-spacing:1.236480pt;}
.lsd{letter-spacing:1.247147pt;}
.ls15{letter-spacing:1.248000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls7{letter-spacing:752.266667pt;}
.lsc{letter-spacing:752.405333pt;}
.ws3{word-spacing:-58.880000pt;}
.wsa{word-spacing:-16.912640pt;}
.ws1{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.488000pt;}
.ws0{word-spacing:-15.424000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws8{word-spacing:-15.142187pt;}
.ws10{word-spacing:-15.104000pt;}
.wsc{word-spacing:-14.955520pt;}
.ws7{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.208000pt;}
.ws9{word-spacing:-11.742720pt;}
.wsb{word-spacing:-10.179840pt;}
.wsd{word-spacing:-9.428480pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-5.928373pt;}
._6{margin-left:-4.567107pt;}
._4{margin-left:-2.352213pt;}
._0{margin-left:-1.100800pt;}
._1{width:1.123840pt;}
._3{width:2.190933pt;}
._2{width:3.894187pt;}
._7{width:6.267462pt;}
._9{width:507.643733pt;}
._5{width:540.923733pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs9{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:60.720701pt;}
.fs5{font-size:61.041974pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.fs3{font-size:106.240000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:22.080000pt;}
.y19f{bottom:22.106667pt;}
.y1ad{bottom:22.400000pt;}
.y1b8{bottom:23.034667pt;}
.ydb{bottom:23.040000pt;}
.ye7{bottom:23.066667pt;}
.ye1{bottom:23.080000pt;}
.yde{bottom:23.360000pt;}
.ydf{bottom:23.680000pt;}
.y12d{bottom:24.000000pt;}
.y19d{bottom:24.320000pt;}
.y12c{bottom:24.960000pt;}
.ye2{bottom:28.840000pt;}
.y12e{bottom:34.560000pt;}
.yed{bottom:39.386667pt;}
.y1b9{bottom:42.874667pt;}
.yf6{bottom:42.880000pt;}
.yf8{bottom:42.906667pt;}
.y1b2{bottom:42.920000pt;}
.yfb{bottom:43.200000pt;}
.y1b7{bottom:43.834667pt;}
.yf5{bottom:43.840000pt;}
.ye6{bottom:43.866667pt;}
.ye0{bottom:43.880000pt;}
.yfa{bottom:44.160000pt;}
.y1a9{bottom:44.200000pt;}
.ya0{bottom:44.738865pt;}
.ye8{bottom:49.626667pt;}
.yec{bottom:49.640000pt;}
.ydc{bottom:59.840000pt;}
.y9f{bottom:60.159996pt;}
.y12b{bottom:63.680000pt;}
.y125{bottom:63.706667pt;}
.y124{bottom:63.720000pt;}
.y128{bottom:64.000000pt;}
.y12a{bottom:64.640000pt;}
.ye5{bottom:64.666667pt;}
.yeb{bottom:64.680000pt;}
.y127{bottom:64.960000pt;}
.y6{bottom:70.400000pt;}
.y123{bottom:74.280000pt;}
.y9e{bottom:75.661444pt;}
.yda{bottom:80.640000pt;}
.ye4{bottom:85.466667pt;}
.yea{bottom:85.480000pt;}
.y9d{bottom:91.082575pt;}
.y5{bottom:91.552000pt;}
.y4{bottom:112.352000pt;}
.y44{bottom:116.832000pt;}
.y141{bottom:118.112000pt;}
.y1b6{bottom:121.952000pt;}
.ybe{bottom:123.552000pt;}
.y15a{bottom:127.712000pt;}
.y8f{bottom:130.272000pt;}
.y83{bottom:130.912000pt;}
.y3{bottom:133.466667pt;}
.y11e{bottom:134.106667pt;}
.y101{bottom:134.746667pt;}
.yd8{bottom:139.226667pt;}
.y43{bottom:139.546667pt;}
.y140{bottom:140.826667pt;}
.y17a{bottom:142.426667pt;}
.ybd{bottom:146.266667pt;}
.y100{bottom:150.426667pt;}
.y8e{bottom:152.986667pt;}
.y82{bottom:153.626667pt;}
.y2{bottom:154.586667pt;}
.y11d{bottom:156.826667pt;}
.y15d{bottom:157.146667pt;}
.y1a7{bottom:158.106667pt;}
.yd7{bottom:161.946667pt;}
.y42{bottom:162.266667pt;}
.y191{bottom:162.586667pt;}
.y13f{bottom:163.546667pt;}
.y179{bottom:165.146667pt;}
.y9c{bottom:166.742496pt;}
.ybc{bottom:168.986667pt;}
.y159{bottom:173.146667pt;}
.y8d{bottom:175.706667pt;}
.y81{bottom:176.346667pt;}
.y11c{bottom:179.546667pt;}
.y15c{bottom:179.866667pt;}
.y9b{bottom:182.163625pt;}
.yd6{bottom:184.666667pt;}
.y41{bottom:184.986667pt;}
.y190{bottom:185.306667pt;}
.y13e{bottom:186.266667pt;}
.y178{bottom:187.866667pt;}
.y158{bottom:195.906667pt;}
.y9a{bottom:197.584757pt;}
.y20{bottom:198.146667pt;}
.y8c{bottom:198.466667pt;}
.y80{bottom:199.106667pt;}
.y1b5{bottom:199.426667pt;}
.y11b{bottom:202.306667pt;}
.y15b{bottom:202.626667pt;}
.yfe{bottom:207.106667pt;}
.ybb{bottom:207.746667pt;}
.y18f{bottom:208.066667pt;}
.y13d{bottom:209.026667pt;}
.y177{bottom:210.626667pt;}
.yd5{bottom:213.506667pt;}
.y1a6{bottom:214.786667pt;}
.y62{bottom:215.746667pt;}
.y157{bottom:218.626667pt;}
.y1f{bottom:220.866667pt;}
.y8b{bottom:221.186667pt;}
.y7f{bottom:221.826667pt;}
.y40{bottom:223.746667pt;}
.y11a{bottom:225.026667pt;}
.yba{bottom:230.466667pt;}
.y13c{bottom:231.746667pt;}
.ya2{bottom:232.362600pt;}
.y61{bottom:238.466667pt;}
.y18e{bottom:238.786667pt;}
.y156{bottom:241.346667pt;}
.y176{bottom:241.666667pt;}
.y1e{bottom:243.586667pt;}
.y8a{bottom:243.906667pt;}
.y7e{bottom:244.546667pt;}
.y3f{bottom:246.466667pt;}
.y119{bottom:247.746667pt;}
.ya1{bottom:248.988506pt;}
.yb9{bottom:253.186667pt;}
.y1b4{bottom:256.386667pt;}
.y60{bottom:261.186667pt;}
.y18d{bottom:261.506667pt;}
.yfd{bottom:264.066667pt;}
.y175{bottom:264.386667pt;}
.y120{bottom:265.666667pt;}
.y1d{bottom:266.306667pt;}
.y89{bottom:266.626667pt;}
.y7d{bottom:267.266667pt;}
.y3e{bottom:269.186667pt;}
.y118{bottom:270.466667pt;}
.y1a5{bottom:271.746667pt;}
.y96{bottom:271.798946pt;}
.yb8{bottom:276.226667pt;}
.y5f{bottom:283.906667pt;}
.y18c{bottom:284.226667pt;}
.y155{bottom:286.786667pt;}
.y95{bottom:287.220076pt;}
.y174{bottom:287.426667pt;}
.y1c{bottom:289.026667pt;}
.y88{bottom:289.346667pt;}
.y7c{bottom:289.986667pt;}
.y3d{bottom:291.906667pt;}
.y117{bottom:293.186667pt;}
.y94{bottom:302.641206pt;}
.yd4{bottom:303.453333pt;}
.y5e{bottom:306.653333pt;}
.y154{bottom:309.533333pt;}
.y173{bottom:310.493333pt;}
.y1b{bottom:311.773333pt;}
.y87{bottom:312.093333pt;}
.y7b{bottom:312.733333pt;}
.y3c{bottom:314.653333pt;}
.yb7{bottom:314.973333pt;}
.y116{bottom:315.933333pt;}
.y93{bottom:318.142656pt;}
.yd3{bottom:326.173333pt;}
.y1a4{bottom:328.413333pt;}
.y5d{bottom:329.373333pt;}
.y153{bottom:332.253333pt;}
.y1b3{bottom:334.173333pt;}
.y1a{bottom:334.493333pt;}
.y86{bottom:334.813333pt;}
.y7a{bottom:335.453333pt;}
.y3b{bottom:337.373333pt;}
.yb6{bottom:337.693333pt;}
.y115{bottom:338.653333pt;}
.y91{bottom:339.360068pt;}
.y172{bottom:341.213333pt;}
.yfc{bottom:341.853333pt;}
.yd2{bottom:348.893333pt;}
.y5c{bottom:352.093333pt;}
.y152{bottom:354.973333pt;}
.y19{bottom:357.213333pt;}
.y79{bottom:358.173333pt;}
.y3a{bottom:360.093333pt;}
.yb5{bottom:360.413333pt;}
.y114{bottom:361.373333pt;}
.y171{bottom:363.933333pt;}
.yd1{bottom:371.613333pt;}
.y5b{bottom:374.813333pt;}
.y151{bottom:377.693333pt;}
.y18{bottom:379.933333pt;}
.y78{bottom:380.893333pt;}
.y39{bottom:382.813333pt;}
.yb4{bottom:383.133333pt;}
.y113{bottom:384.093333pt;}
.y1a3{bottom:385.373333pt;}
.y170{bottom:386.653333pt;}
.y1b1{bottom:390.813333pt;}
.y197{bottom:391.133333pt;}
.y99{bottom:393.407677pt;}
.yd0{bottom:394.333333pt;}
.y5a{bottom:397.533333pt;}
.y150{bottom:400.413333pt;}
.y17{bottom:402.653333pt;}
.y77{bottom:403.613333pt;}
.y38{bottom:405.533333pt;}
.yb3{bottom:405.853333pt;}
.y112{bottom:406.813333pt;}
.y13b{bottom:407.453333pt;}
.y98{bottom:408.835501pt;}
.y90{bottom:410.671885pt;}
.y18b{bottom:413.893333pt;}
.ycf{bottom:417.093333pt;}
.y16f{bottom:417.733333pt;}
.yf9{bottom:419.333333pt;}
.y59{bottom:420.293333pt;}
.y14f{bottom:423.173333pt;}
.y97{bottom:424.330257pt;}
.y16{bottom:425.413333pt;}
.y76{bottom:426.373333pt;}
.y37{bottom:428.293333pt;}
.yb2{bottom:428.613333pt;}
.y111{bottom:429.573333pt;}
.y13a{bottom:430.213333pt;}
.y129{bottom:430.533333pt;}
.y18a{bottom:436.613333pt;}
.yce{bottom:439.813333pt;}
.y16e{bottom:440.453333pt;}
.y1a2{bottom:442.373333pt;}
.y58{bottom:443.013333pt;}
.y14e{bottom:445.893333pt;}
.y15{bottom:448.133333pt;}
.y75{bottom:449.093333pt;}
.y36{bottom:451.013333pt;}
.yb1{bottom:451.333333pt;}
.y92{bottom:454.683891pt;}
.y189{bottom:459.333333pt;}
.y16d{bottom:463.173333pt;}
.y57{bottom:465.733333pt;}
.y196{bottom:467.333333pt;}
.y110{bottom:468.293333pt;}
.ycd{bottom:468.613333pt;}
.y139{bottom:468.933333pt;}
.y14{bottom:470.853333pt;}
.y74{bottom:471.813333pt;}
.y35{bottom:473.733333pt;}
.yb0{bottom:474.053333pt;}
.y56{bottom:488.453333pt;}
.y188{bottom:490.053333pt;}
.y10f{bottom:491.013333pt;}
.y14d{bottom:491.333333pt;}
.y138{bottom:491.653333pt;}
.y13{bottom:493.573333pt;}
.y16c{bottom:493.893333pt;}
.ye9{bottom:494.213333pt;}
.y73{bottom:494.533333pt;}
.y34{bottom:496.453333pt;}
.yaf{bottom:496.773333pt;}
.yf7{bottom:497.093333pt;}
.y1a1{bottom:499.013333pt;}
.y55{bottom:511.173333pt;}
.y187{bottom:512.773333pt;}
.y10e{bottom:513.733333pt;}
.y14c{bottom:514.053333pt;}
.y137{bottom:514.373333pt;}
.y16b{bottom:516.613333pt;}
.y72{bottom:517.253333pt;}
.y33{bottom:519.173333pt;}
.yae{bottom:519.493333pt;}
.y12{bottom:522.400000pt;}
.y126{bottom:528.800000pt;}
.ycc{bottom:533.600000pt;}
.y54{bottom:533.920000pt;}
.y186{bottom:535.520000pt;}
.y10d{bottom:536.480000pt;}
.y14b{bottom:536.800000pt;}
.y136{bottom:537.120000pt;}
.y32{bottom:541.920000pt;}
.yad{bottom:542.240000pt;}
.y195{bottom:543.520000pt;}
.y71{bottom:546.080000pt;}
.y1b0{bottom:546.400000pt;}
.y16a{bottom:547.360000pt;}
.y1a0{bottom:556.000000pt;}
.ycb{bottom:556.320000pt;}
.y53{bottom:556.640000pt;}
.y185{bottom:558.240000pt;}
.y10c{bottom:559.200000pt;}
.y14a{bottom:559.520000pt;}
.y135{bottom:559.840000pt;}
.y31{bottom:564.640000pt;}
.y194{bottom:566.240000pt;}
.yac{bottom:569.760000pt;}
.y169{bottom:570.080000pt;}
.yf4{bottom:574.880000pt;}
.y70{bottom:577.120000pt;}
.yca{bottom:579.040000pt;}
.y10b{bottom:581.920000pt;}
.y149{bottom:582.240000pt;}
.y134{bottom:582.560000pt;}
.y52{bottom:585.440000pt;}
.y11{bottom:587.360000pt;}
.y184{bottom:588.960000pt;}
.y168{bottom:600.800000pt;}
.yc9{bottom:601.760000pt;}
.y10a{bottom:604.640000pt;}
.y148{bottom:604.960000pt;}
.y133{bottom:605.280000pt;}
.y10{bottom:610.080000pt;}
.y183{bottom:611.680000pt;}
.y19e{bottom:612.640000pt;}
.ye3{bottom:613.600000pt;}
.y1af{bottom:623.840000pt;}
.yc8{bottom:624.480000pt;}
.y109{bottom:627.360000pt;}
.y147{bottom:627.680000pt;}
.y132{bottom:628.000000pt;}
.yab{bottom:629.600000pt;}
.y167{bottom:631.546667pt;}
.y30{bottom:632.826667pt;}
.y182{bottom:634.426667pt;}
.y6f{bottom:642.106667pt;}
.y85{bottom:645.946667pt;}
.yc7{bottom:647.226667pt;}
.yf{bottom:648.826667pt;}
.y108{bottom:650.106667pt;}
.y51{bottom:650.426667pt;}
.yf3{bottom:651.706667pt;}
.yaa{bottom:652.346667pt;}
.y166{bottom:654.266667pt;}
.y2f{bottom:655.546667pt;}
.y131{bottom:656.826667pt;}
.y181{bottom:657.146667pt;}
.y1ba{bottom:657.786667pt;}
.y6e{bottom:664.826667pt;}
.y193{bottom:665.146667pt;}
.y146{bottom:666.426667pt;}
.y19c{bottom:669.626667pt;}
.yc6{bottom:669.946667pt;}
.ye{bottom:671.546667pt;}
.y107{bottom:672.826667pt;}
.y50{bottom:673.146667pt;}
.ya9{bottom:675.066667pt;}
.y165{bottom:676.986667pt;}
.y2e{bottom:678.266667pt;}
.y1ae{bottom:680.826667pt;}
.y6d{bottom:687.546667pt;}
.y180{bottom:687.866667pt;}
.y145{bottom:689.146667pt;}
.yc5{bottom:692.666667pt;}
.y106{bottom:695.546667pt;}
.y4f{bottom:695.866667pt;}
.ya8{bottom:697.786667pt;}
.y2d{bottom:701.306667pt;}
.y164{bottom:707.706667pt;}
.yd{bottom:710.266667pt;}
.y17f{bottom:710.586667pt;}
.y144{bottom:711.866667pt;}
.yc4{bottom:715.386667pt;}
.y105{bottom:718.266667pt;}
.y4e{bottom:718.586667pt;}
.ya7{bottom:720.506667pt;}
.y130{bottom:721.146667pt;}
.y2c{bottom:724.026667pt;}
.y122{bottom:725.946667pt;}
.y19b{bottom:726.586667pt;}
.y163{bottom:730.426667pt;}
.yc{bottom:732.986667pt;}
.y17e{bottom:733.306667pt;}
.y143{bottom:734.586667pt;}
.yc3{bottom:738.106667pt;}
.y4d{bottom:741.346667pt;}
.y12f{bottom:741.986667pt;}
.ya6{bottom:743.266667pt;}
.y2b{bottom:746.786667pt;}
.y162{bottom:753.186667pt;}
.yb{bottom:755.746667pt;}
.y192{bottom:756.066667pt;}
.y142{bottom:757.346667pt;}
.y1ac{bottom:758.306667pt;}
.yc2{bottom:760.866667pt;}
.y4c{bottom:764.066667pt;}
.y2a{bottom:769.506667pt;}
.ya5{bottom:771.106667pt;}
.y6c{bottom:778.466667pt;}
.yf2{bottom:780.066667pt;}
.yc1{bottom:783.586667pt;}
.y161{bottom:783.906667pt;}
.y4b{bottom:786.786667pt;}
.y29{bottom:792.226667pt;}
.y6b{bottom:801.186667pt;}
.yf1{bottom:802.786667pt;}
.yc0{bottom:806.306667pt;}
.y160{bottom:806.626667pt;}
.y4a{bottom:809.506667pt;}
.ydd{bottom:809.826667pt;}
.y28{bottom:814.946667pt;}
.y1ab{bottom:815.266667pt;}
.ya{bottom:816.866667pt;}
.y19a{bottom:822.946667pt;}
.y6a{bottom:823.906667pt;}
.yf0{bottom:825.506667pt;}
.ya4{bottom:829.026667pt;}
.y15f{bottom:829.346667pt;}
.y49{bottom:832.226667pt;}
.y17d{bottom:840.226667pt;}
.y27{bottom:843.746667pt;}
.y199{bottom:845.666667pt;}
.y69{bottom:846.626667pt;}
.yef{bottom:848.226667pt;}
.y48{bottom:854.973333pt;}
.ybf{bottom:856.573333pt;}
.y15e{bottom:858.173333pt;}
.y9{bottom:861.693333pt;}
.y17c{bottom:862.973333pt;}
.yd9{bottom:866.493333pt;}
.y68{bottom:869.373333pt;}
.yee{bottom:870.973333pt;}
.y198{bottom:874.493333pt;}
.y47{bottom:877.693333pt;}
.y17b{bottom:885.693333pt;}
.y67{bottom:892.093333pt;}
.y1aa{bottom:893.053333pt;}
.ya3{bottom:893.693333pt;}
.y46{bottom:900.413333pt;}
.y121{bottom:901.373333pt;}
.y8{bottom:906.173333pt;}
.y26{bottom:908.413333pt;}
.y66{bottom:914.813333pt;}
.y84{bottom:916.413333pt;}
.y104{bottom:923.133333pt;}
.y11f{bottom:923.453333pt;}
.y25{bottom:931.133333pt;}
.y65{bottom:937.533333pt;}
.y45{bottom:939.133333pt;}
.y103{bottom:945.853333pt;}
.y1a8{bottom:949.693333pt;}
.y7{bottom:950.653333pt;}
.y24{bottom:961.893333pt;}
.y64{bottom:966.373333pt;}
.y102{bottom:968.613333pt;}
.y23{bottom:984.613333pt;}
.y63{bottom:997.413333pt;}
.y22{bottom:1007.333333pt;}
.y1{bottom:1032.933333pt;}
.y21{bottom:1053.413333pt;}
.h19{height:30.875625pt;}
.h1e{height:40.687500pt;}
.h2{height:43.038750pt;}
.h7{height:44.437500pt;}
.he{height:44.533750pt;}
.h8{height:44.562500pt;}
.h15{height:44.800000pt;}
.h10{height:44.821250pt;}
.h18{height:44.832000pt;}
.h1d{height:44.893750pt;}
.h24{height:45.120000pt;}
.hf{height:45.472000pt;}
.ha{height:45.659121pt;}
.hb{height:45.900703pt;}
.h12{height:46.000000pt;}
.h22{height:46.720000pt;}
.h21{height:46.752000pt;}
.h1c{height:46.781250pt;}
.h4{height:48.406250pt;}
.h5{height:48.437500pt;}
.h1a{height:48.608750pt;}
.h1b{height:48.768750pt;}
.h25{height:51.750000pt;}
.h17{height:65.600000pt;}
.h11{height:65.632000pt;}
.hc{height:65.785625pt;}
.h16{height:65.920000pt;}
.h23{height:65.952000pt;}
.h6{height:80.873125pt;}
.h20{height:86.400000pt;}
.h14{height:86.432000pt;}
.h1f{height:86.720000pt;}
.h3{height:97.437500pt;}
.hd{height:102.432000pt;}
.h13{height:107.232000pt;}
.h9{height:481.808115pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:39.040000pt;}
.wb{width:39.072000pt;}
.we{width:46.432000pt;}
.wd{width:47.392000pt;}
.wf{width:48.960000pt;}
.wc{width:55.040000pt;}
.w12{width:55.360000pt;}
.w11{width:55.392000pt;}
.w13{width:55.712000pt;}
.w5{width:79.392000pt;}
.w15{width:86.112000pt;}
.w16{width:86.144000pt;}
.w8{width:86.752000pt;}
.w7{width:87.712000pt;}
.w9{width:89.312000pt;}
.w6{width:95.392000pt;}
.w19{width:112.032000pt;}
.w4{width:127.104000pt;}
.w18{width:159.426667pt;}
.w10{width:196.893333pt;}
.w14{width:223.773333pt;}
.w17{width:351.840000pt;}
.w3{width:642.486202pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:4.800000pt;}
.x26{left:6.400000pt;}
.x1f{left:8.640000pt;}
.x1c{left:9.920000pt;}
.x27{left:10.880000pt;}
.x1d{left:11.840000pt;}
.x19{left:13.120000pt;}
.x14{left:14.720000pt;}
.x21{left:16.320000pt;}
.x2d{left:17.626667pt;}
.x13{left:19.840000pt;}
.x37{left:21.760000pt;}
.x18{left:23.680000pt;}
.x16{left:25.280000pt;}
.x39{left:26.880000pt;}
.x11{left:28.800000pt;}
.x44{left:29.760000pt;}
.x41{left:30.720000pt;}
.x40{left:32.320000pt;}
.x43{left:33.280000pt;}
.x45{left:35.200000pt;}
.x38{left:37.480000pt;}
.x34{left:43.226667pt;}
.x3e{left:55.720000pt;}
.x3f{left:57.960000pt;}
.x42{left:59.240000pt;}
.x6{left:65.212341pt;}
.x9{left:66.738245pt;}
.xe{left:72.032000pt;}
.xb{left:74.287460pt;}
.x2{left:75.551988pt;}
.x3d{left:79.400000pt;}
.xa{left:80.391077pt;}
.x8{left:81.916982pt;}
.x7{left:85.209724pt;}
.x29{left:98.621333pt;}
.x28{left:99.872000pt;}
.x3a{left:113.343988pt;}
.x10{left:200.413333pt;}
.x1e{left:240.733333pt;}
.x12{left:281.093333pt;}
.x32{left:291.653333pt;}
.x2a{left:298.373333pt;}
.x20{left:337.413333pt;}
.x2b{left:355.040000pt;}
.x15{left:377.760000pt;}
.x33{left:379.040000pt;}
.xc{left:389.507250pt;}
.xd{left:392.485441pt;}
.x2c{left:411.680000pt;}
.x22{left:426.426667pt;}
.x3b{left:435.706667pt;}
.x17{left:466.746667pt;}
.x2e{left:468.346667pt;}
.x5{left:471.993106pt;}
.x23{left:514.466667pt;}
.x2f{left:525.026667pt;}
.x35{left:553.826667pt;}
.x1a{left:554.786667pt;}
.x4{left:562.175414pt;}
.x30{left:582.013333pt;}
.x3c{left:596.413333pt;}
.x24{left:602.493333pt;}
.x31{left:638.653333pt;}
.x36{left:641.213333pt;}
.x1b{left:642.853333pt;}
.x1{left:647.653322pt;}
.x25{left:693.093333pt;}
.x3{left:718.053322pt;}
}




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