
    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_f22b128d1146cadc836c39cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_d43ff016e9eb77e92e44f65e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_179776485c6e154b2748bcf8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_00ecb67c9b903ef09b8d3e1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_77d00e71e93d205ab535525c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104492;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_5ac4ad0218de539e13abd0dd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_4e425bda7fb97a003b5a62b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_6e5e15dd6405dff63a1b253e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_e07e46c4e669173671e4aa06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_c33e8e3daddf17a683230baa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961914;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_a6b13c2f5511f6808ec972d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961914;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_7a8797c2dcd9931fcf3106e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.767578;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls17{letter-spacing:-5.304000px;}
.ls18{letter-spacing:-4.584000px;}
.ls11{letter-spacing:-3.864000px;}
.ls1d{letter-spacing:-1.332000px;}
.ls19{letter-spacing:-0.984000px;}
.ls20{letter-spacing:-0.870000px;}
.ls15{letter-spacing:-0.828000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.567600px;}
.ls22{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.262200px;}
.ls9{letter-spacing:-0.224400px;}
.ls2{letter-spacing:-0.178800px;}
.lse{letter-spacing:-0.152400px;}
.ls3{letter-spacing:-0.109200px;}
.lsa{letter-spacing:-0.092400px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.018720px;}
.ls10{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.233280px;}
.ls13{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.953280px;}
.ls5{letter-spacing:1.673280px;}
.ls6{letter-spacing:3.113280px;}
.ls8{letter-spacing:3.833280px;}
.ls21{letter-spacing:31.241280px;}
.ls1e{letter-spacing:33.401280px;}
.lsf{letter-spacing:34.841280px;}
.ls1f{letter-spacing:37.001280px;}
.ls24{letter-spacing:69.401280px;}
.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;}
}
.ws18{word-spacing:-66.240000px;}
.ws0{word-spacing:-36.629280px;}
.ws8{word-spacing:-33.533520px;}
.ws9{word-spacing:-33.426720px;}
.ws17{word-spacing:-26.640000px;}
.wse{word-spacing:-20.304000px;}
.ws14{word-spacing:-20.016000px;}
.wsd{word-spacing:-18.720120px;}
.wsc{word-spacing:-18.676920px;}
.ws4{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.wsb{word-spacing:-18.262320px;}
.ws16{word-spacing:-18.152520px;}
.wsa{word-spacing:-18.109320px;}
.ws1d{word-spacing:-17.956920px;}
.ws19{word-spacing:-17.847120px;}
.ws12{word-spacing:-17.694720px;}
.ws11{word-spacing:-17.586720px;}
.ws15{word-spacing:-17.544720px;}
.ws13{word-spacing:-17.082720px;}
.ws1a{word-spacing:-15.052032px;}
.ws1b{word-spacing:-15.012000px;}
.ws10{word-spacing:-13.830720px;}
.ws6{word-spacing:-13.446720px;}
.ws7{word-spacing:-13.354320px;}
.ws5{word-spacing:-13.222320px;}
.wsf{word-spacing:-13.110720px;}
.ws1{word-spacing:-11.609280px;}
.ws3{word-spacing:0.000000px;}
.ws1c{word-spacing:76.908000px;}
._b{margin-left:-25.944480px;}
._8{margin-left:-13.102080px;}
._a{margin-left:-9.893760px;}
._9{margin-left:-8.811840px;}
._7{margin-left:-7.674240px;}
._6{margin-left:-6.360000px;}
._15{margin-left:-5.310720px;}
._d{margin-left:-4.286640px;}
._0{margin-left:-3.168000px;}
._4{margin-left:-1.920960px;}
._5{width:1.799520px;}
._e{width:3.065520px;}
._1{width:4.084560px;}
._2{width:5.533920px;}
._3{width:7.742640px;}
._f{width:103.614000px;}
._10{width:109.734000px;}
._11{width:118.398000px;}
._13{width:127.602000px;}
._12{width:142.770000px;}
._14{width:158.382000px;}
._c{width:369.641280px;}
.fc8{color:rgb(0,97,0);}
.fc7{color:rgb(156,0,6);}
.fc6{color:rgb(238,0,0);}
.fc5{color:rgb(150,96,125);}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(116,116,116);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fsa{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:95.760000px;}
.fs6{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y116{bottom:3.420000px;}
.y11c{bottom:3.600000px;}
.y117{bottom:12.960000px;}
.y11d{bottom:13.140000px;}
.y157{bottom:16.590000px;}
.ya7{bottom:17.280000px;}
.ya2{bottom:17.460000px;}
.ya9{bottom:39.780000px;}
.y155{bottom:45.435000px;}
.y14d{bottom:61.530000px;}
.y14e{bottom:103.755000px;}
.y92{bottom:111.096000px;}
.y10d{bottom:117.396000px;}
.y14b{bottom:120.816000px;}
.y178{bottom:121.536000px;}
.y68{bottom:124.776000px;}
.y130{bottom:126.216000px;}
.y91{bottom:128.376000px;}
.y90{bottom:132.876000px;}
.y1d{bottom:136.116000px;}
.y10c{bottom:137.736000px;}
.y14a{bottom:141.156000px;}
.y67{bottom:145.116000px;}
.y14f{bottom:146.010000px;}
.y12f{bottom:146.916000px;}
.y8f{bottom:147.096000px;}
.y156{bottom:151.200000px;}
.yb7{bottom:151.770000px;}
.y177{bottom:153.930000px;}
.y19c{bottom:162.030000px;}
.y10b{bottom:164.550000px;}
.y1c{bottom:164.730000px;}
.y66{bottom:165.630000px;}
.y12e{bottom:167.610000px;}
.y53{bottom:168.870000px;}
.yd0{bottom:170.130000px;}
.yb6{bottom:172.110000px;}
.y149{bottom:173.910000px;}
.y19b{bottom:182.190000px;}
.y10a{bottom:184.710000px;}
.y65{bottom:186.150000px;}
.y176{bottom:186.510000px;}
.y150{bottom:188.250000px;}
.y12d{bottom:188.310000px;}
.ycf{bottom:190.470000px;}
.yb5{bottom:192.630000px;}
.y1b{bottom:193.530000px;}
.y148{bottom:194.070000px;}
.y52{bottom:201.270000px;}
.y109{bottom:205.230000px;}
.y8e{bottom:205.770000px;}
.y64{bottom:206.670000px;}
.y12c{bottom:209.010000px;}
.yce{bottom:210.810000px;}
.yb4{bottom:213.150000px;}
.y147{bottom:214.590000px;}
.y19a{bottom:214.950000px;}
.y175{bottom:218.910000px;}
.y1a{bottom:222.330000px;}
.y108{bottom:225.750000px;}
.y8d{bottom:226.110000px;}
.y63{bottom:227.190000px;}
.y12b{bottom:229.710000px;}
.y151{bottom:230.475000px;}
.ycd{bottom:231.330000px;}
.yb3{bottom:233.490000px;}
.y51{bottom:233.850000px;}
.y146{bottom:235.110000px;}
.y107{bottom:246.270000px;}
.y8c{bottom:246.630000px;}
.y12a{bottom:250.410000px;}
.y19{bottom:250.950000px;}
.y174{bottom:251.490000px;}
.ycc{bottom:251.850000px;}
.y145{bottom:255.630000px;}
.y62{bottom:255.810000px;}
.y50{bottom:266.250000px;}
.y106{bottom:266.610000px;}
.y8b{bottom:266.970000px;}
.y18{bottom:268.050000px;}
.y173{bottom:271.650000px;}
.ycb{bottom:272.370000px;}
.y152{bottom:272.700000px;}
.y144{bottom:275.970000px;}
.y129{bottom:283.350000px;}
.yb2{bottom:286.590000px;}
.y8a{bottom:287.490000px;}
.y199{bottom:288.390000px;}
.yca{bottom:292.710000px;}
.y105{bottom:293.250000px;}
.y61{bottom:295.590000px;}
.y17{bottom:296.490000px;}
.y4f{bottom:298.830000px;}
.y128{bottom:303.510000px;}
.y172{bottom:304.410000px;}
.y89{bottom:308.010000px;}
.y198{bottom:308.550000px;}
.yc9{bottom:313.230000px;}
.y16{bottom:313.410000px;}
.yb1{bottom:313.590000px;}
.y153{bottom:314.925000px;}
.y143{bottom:317.010000px;}
.y60{bottom:327.990000px;}
.y88{bottom:328.530000px;}
.y197{bottom:329.070000px;}
.y4e{bottom:331.230000px;}
.yc8{bottom:333.750000px;}
.y104{bottom:334.110000px;}
.y127{bottom:336.270000px;}
.y171{bottom:336.855000px;}
.y142{bottom:337.575000px;}
.y15{bottom:342.615000px;}
.yb0{bottom:347.475000px;}
.y5f{bottom:348.375000px;}
.y87{bottom:348.915000px;}
.y196{bottom:349.635000px;}
.yc7{bottom:354.315000px;}
.y103{bottom:354.675000px;}
.y126{bottom:356.475000px;}
.y154{bottom:357.195000px;}
.y141{bottom:358.095000px;}
.y4d{bottom:363.675000px;}
.y14{bottom:373.755000px;}
.y102{bottom:375.015000px;}
.y125{bottom:376.995000px;}
.y5e{bottom:377.355000px;}
.y170{bottom:377.715000px;}
.y140{bottom:378.435000px;}
.yaf{bottom:380.055000px;}
.y86{bottom:381.675000px;}
.y195{bottom:382.215000px;}
.yc6{bottom:386.895000px;}
.y101{bottom:395.535000px;}
.y4c{bottom:396.255000px;}
.y124{bottom:397.515000px;}
.y16f{bottom:398.055000px;}
.y13f{bottom:398.955000px;}
.yae{bottom:400.395000px;}
.y194{bottom:402.555000px;}
.y13{bottom:406.155000px;}
.y85{bottom:414.075000px;}
.yc5{bottom:415.515000px;}
.y100{bottom:416.055000px;}
.y123{bottom:418.035000px;}
.y16e{bottom:418.575000px;}
.y13e{bottom:419.475000px;}
.yad{bottom:420.735000px;}
.y4b{bottom:428.655000px;}
.y193{bottom:435.315000px;}
.yff{bottom:436.575000px;}
.y122{bottom:438.375000px;}
.y12{bottom:438.735000px;}
.y16d{bottom:439.095000px;}
.y13d{bottom:439.995000px;}
.yac{bottom:441.255000px;}
.y84{bottom:446.655000px;}
.yc4{bottom:455.115000px;}
.y192{bottom:455.475000px;}
.yfe{bottom:456.915000px;}
.y16c{bottom:459.615000px;}
.y13c{bottom:460.335000px;}
.y4a{bottom:461.235000px;}
.y11{bottom:471.135000px;}
.yab{bottom:474.015000px;}
.yc3{bottom:475.455000px;}
.y83{bottom:479.055000px;}
.y16b{bottom:480.135000px;}
.y13b{bottom:480.855000px;}
.y191{bottom:488.235000px;}
.yfd{bottom:489.675000px;}
.yaa{bottom:490.935000px;}
.y49{bottom:493.635000px;}
.yc2{bottom:495.975000px;}
.y121{bottom:499.755000px;}
.y16a{bottom:500.475000px;}
.y10{bottom:503.715000px;}
.y190{bottom:508.395000px;}
.ye5{bottom:509.475000px;}
.y13a{bottom:509.655000px;}
.yfc{bottom:510.015000px;}
.y82{bottom:511.455000px;}
.yc1{bottom:516.495000px;}
.y169{bottom:520.995000px;}
.y48{bottom:526.215000px;}
.y120{bottom:529.455000px;}
.ye4{bottom:529.815000px;}
.yf{bottom:536.115000px;}
.yc0{bottom:536.835000px;}
.yfb{bottom:537.015000px;}
.y18f{bottom:541.155000px;}
.y168{bottom:541.515000px;}
.y81{bottom:544.035000px;}
.ya8{bottom:547.635000px;}
.y139{bottom:549.795000px;}
.ye3{bottom:550.335000px;}
.ybf{bottom:557.355000px;}
.y47{bottom:558.615000px;}
.y18e{bottom:561.495000px;}
.y167{bottom:562.035000px;}
.ye{bottom:568.515000px;}
.ye2{bottom:570.675000px;}
.yfa{bottom:570.855000px;}
.y11f{bottom:573.375000px;}
.y80{bottom:576.435000px;}
.y18d{bottom:581.835000px;}
.y138{bottom:583.635000px;}
.ybe{bottom:584.355000px;}
.y46{bottom:591.015000px;}
.ye1{bottom:591.195000px;}
.y166{bottom:594.615000px;}
.yd{bottom:601.095000px;}
.yf9{bottom:603.435000px;}
.y137{bottom:604.005000px;}
.ya6{bottom:604.365000px;}
.y7f{bottom:609.045000px;}
.ye0{bottom:611.745000px;}
.y30{bottom:612.105000px;}
.y18c{bottom:614.625000px;}
.y165{bottom:614.985000px;}
.ybd{bottom:618.765000px;}
.y45{bottom:623.625000px;}
.yf8{bottom:623.805000px;}
.y136{bottom:624.525000px;}
.ydf{bottom:632.265000px;}
.y11e{bottom:633.345000px;}
.y18b{bottom:634.965000px;}
.y164{bottom:635.325000px;}
.ya5{bottom:638.565000px;}
.yc{bottom:639.465000px;}
.y2f{bottom:641.445000px;}
.y11b{bottom:648.825000px;}
.yde{bottom:652.605000px;}
.ybc{bottom:652.785000px;}
.y135{bottom:653.145000px;}
.y18a{bottom:655.305000px;}
.y163{bottom:655.845000px;}
.y44{bottom:656.025000px;}
.yf7{bottom:656.385000px;}
.y7e{bottom:661.785000px;}
.yb{bottom:666.105000px;}
.y2e{bottom:670.605000px;}
.ya4{bottom:672.945000px;}
.ydd{bottom:673.125000px;}
.y43{bottom:676.365000px;}
.yf6{bottom:676.725000px;}
.y11a{bottom:677.445000px;}
.y7d{bottom:682.305000px;}
.y189{bottom:688.065000px;}
.ya{bottom:692.205000px;}
.y134{bottom:693.285000px;}
.y42{bottom:696.885000px;}
.yf5{bottom:697.245000px;}
.y2d{bottom:699.765000px;}
.ybb{bottom:702.105000px;}
.y7c{bottom:702.645000px;}
.y119{bottom:705.885000px;}
.ya3{bottom:707.325000px;}
.y188{bottom:708.225000px;}
.y162{bottom:708.945000px;}
.y41{bottom:717.225000px;}
.yf4{bottom:717.585000px;}
.ydc{bottom:720.105000px;}
.y9{bottom:724.965000px;}
.y133{bottom:727.125000px;}
.y2c{bottom:729.105000px;}
.y161{bottom:729.285000px;}
.y118{bottom:734.325000px;}
.y7b{bottom:735.405000px;}
.y40{bottom:737.745000px;}
.yf3{bottom:738.105000px;}
.ydb{bottom:740.625000px;}
.y187{bottom:740.985000px;}
.ya1{bottom:743.145000px;}
.y132{bottom:747.465000px;}
.y160{bottom:749.805000px;}
.y8{bottom:751.425000px;}
.y7a{bottom:755.745000px;}
.y2b{bottom:758.265000px;}
.yf2{bottom:758.625000px;}
.yda{bottom:761.145000px;}
.y186{bottom:761.325000px;}
.y115{bottom:762.765000px;}
.y15f{bottom:770.325000px;}
.y79{bottom:776.085000px;}
.y131{bottom:776.805000px;}
.y14c{bottom:776.880000px;}
.y3f{bottom:778.785000px;}
.yf1{bottom:779.145000px;}
.y185{bottom:781.665000px;}
.y2a{bottom:787.605000px;}
.yd9{bottom:787.785000px;}
.y7{bottom:788.865000px;}
.y15e{bottom:790.665000px;}
.ya0{bottom:795.885000px;}
.y78{bottom:796.605000px;}
.y3e{bottom:799.125000px;}
.yf0{bottom:799.485000px;}
.y184{bottom:802.185000px;}
.yd8{bottom:807.945000px;}
.y114{bottom:808.125000px;}
.y15d{bottom:811.185000px;}
.y9f{bottom:816.225000px;}
.y29{bottom:816.765000px;}
.y3d{bottom:819.645000px;}
.yef{bottom:820.005000px;}
.yd7{bottom:828.465000px;}
.y76{bottom:829.365000px;}
.y15c{bottom:831.705000px;}
.y183{bottom:834.945000px;}
.y77{bottom:835.305000px;}
.y9e{bottom:836.745000px;}
.yee{bottom:840.525000px;}
.y6{bottom:841.965000px;}
.y28{bottom:845.925000px;}
.y75{bottom:849.525000px;}
.y15b{bottom:852.225000px;}
.y3c{bottom:852.405000px;}
.yd6{bottom:855.105000px;}
.yed{bottom:861.045000px;}
.y9d{bottom:869.325000px;}
.y74{bottom:870.045000px;}
.y3b{bottom:872.610000px;}
.y27{bottom:875.310000px;}
.yd5{bottom:875.490000px;}
.yec{bottom:881.430000px;}
.y113{bottom:881.610000px;}
.y5{bottom:882.870000px;}
.y182{bottom:887.910000px;}
.y73{bottom:890.610000px;}
.y3a{bottom:893.130000px;}
.yd4{bottom:896.010000px;}
.y5d{bottom:896.370000px;}
.y9c{bottom:901.950000px;}
.y26{bottom:904.470000px;}
.y181{bottom:908.070000px;}
.y39{bottom:913.650000px;}
.yd3{bottom:916.350000px;}
.y72{bottom:917.610000px;}
.y9b{bottom:922.290000px;}
.yeb{bottom:922.470000px;}
.y4{bottom:923.910000px;}
.y180{bottom:928.590000px;}
.y5c{bottom:928.770000px;}
.y25{bottom:933.810000px;}
.y38{bottom:934.170000px;}
.yd2{bottom:936.870000px;}
.y9a{bottom:942.630000px;}
.yea{bottom:942.990000px;}
.y15a{bottom:944.430000px;}
.y5b{bottom:949.110000px;}
.y71{bottom:951.630000px;}
.y37{bottom:954.510000px;}
.yd1{bottom:957.390000px;}
.y17f{bottom:961.350000px;}
.y24{bottom:962.970000px;}
.y99{bottom:963.150000px;}
.ye9{bottom:963.330000px;}
.y112{bottom:969.450000px;}
.y5a{bottom:969.630000px;}
.y36{bottom:975.030000px;}
.y3{bottom:976.830000px;}
.y17e{bottom:981.510000px;}
.y98{bottom:983.670000px;}
.ye8{bottom:983.850000px;}
.y70{bottom:984.030000px;}
.y111{bottom:989.790000px;}
.y59{bottom:989.970000px;}
.y23{bottom:992.310000px;}
.y17d{bottom:1002.030000px;}
.y6f{bottom:1004.370000px;}
.y159{bottom:1004.550000px;}
.y35{bottom:1007.790000px;}
.y110{bottom:1010.310000px;}
.y97{bottom:1016.250000px;}
.y22{bottom:1021.470000px;}
.y58{bottom:1022.730000px;}
.y6e{bottom:1024.890000px;}
.y34{bottom:1027.950000px;}
.y10f{bottom:1030.830000px;}
.y17c{bottom:1034.790000px;}
.y2{bottom:1036.230000px;}
.y96{bottom:1036.590000px;}
.y57{bottom:1043.070000px;}
.y6d{bottom:1045.230000px;}
.yba{bottom:1045.410000px;}
.y33{bottom:1048.470000px;}
.y21{bottom:1050.630000px;}
.y10e{bottom:1051.350000px;}
.y17b{bottom:1054.950000px;}
.y56{bottom:1063.410000px;}
.y95{bottom:1063.590000px;}
.y6c{bottom:1065.750000px;}
.y17a{bottom:1075.470000px;}
.yb9{bottom:1077.990000px;}
.y20{bottom:1079.970000px;}
.y32{bottom:1081.230000px;}
.ye7{bottom:1086.270000px;}
.y179{bottom:1095.990000px;}
.y55{bottom:1096.170000px;}
.yb8{bottom:1098.150000px;}
.y6b{bottom:1098.330000px;}
.y94{bottom:1099.770000px;}
.y1{bottom:1104.270000px;}
.ye6{bottom:1106.790000px;}
.y1f{bottom:1109.490000px;}
.y31{bottom:1111.830000px;}
.y6a{bottom:1118.670000px;}
.y158{bottom:1118.850000px;}
.y1e{bottom:1126.590000px;}
.y54{bottom:1126.770000px;}
.y69{bottom:1139.220000px;}
.y93{bottom:1139.400000px;}
.hd{height:20.592773px;}
.h1a{height:28.440000px;}
.h1b{height:28.620000px;}
.h5{height:31.401562px;}
.h16{height:34.200000px;}
.h15{height:34.380000px;}
.h14{height:34.855313px;}
.h6{height:37.437188px;}
.hb{height:48.410156px;}
.h1d{height:48.539250px;}
.h13{height:49.777031px;}
.h8{height:49.809375px;}
.ha{height:53.573906px;}
.h18{height:54.140625px;}
.h4{height:55.161563px;}
.h19{height:56.700000px;}
.h17{height:56.736000px;}
.hf{height:57.410156px;}
.h7{height:59.221406px;}
.h9{height:59.383125px;}
.he{height:62.402344px;}
.h12{height:64.546875px;}
.h11{height:85.847344px;}
.hc{height:101.628633px;}
.h10{height:107.793281px;}
.h3{height:118.120781px;}
.h2{height:162.421875px;}
.h1c{height:378.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:124.380000px;}
.w4{width:186.330000px;}
.w5{width:209.010000px;}
.w8{width:239.115000px;}
.w6{width:281.730000px;}
.w9{width:648.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.100000px;}
.x2a{left:32.832000px;}
.x28{left:40.536000px;}
.x27{left:48.030000px;}
.x26{left:55.545000px;}
.x29{left:79.560000px;}
.x10{left:108.035987px;}
.xc{left:113.075987px;}
.xe{left:115.595987px;}
.x7{left:120.995987px;}
.x11{left:124.595987px;}
.x21{left:126.215987px;}
.x1e{left:128.915987px;}
.x2b{left:130.425000px;}
.x3{left:134.855987px;}
.x4{left:138.635987px;}
.x12{left:140.975987px;}
.x18{left:162.029987px;}
.x16{left:175.889973px;}
.xb{left:179.849987px;}
.x17{left:181.649987px;}
.x20{left:188.309987px;}
.x15{left:198.389987px;}
.x13{left:211.169987px;}
.x9{left:222.869987px;}
.x23{left:232.410000px;}
.x25{left:238.169987px;}
.x6{left:255.449987px;}
.x1b{left:294.375000px;}
.xf{left:312.554987px;}
.x19{left:324.074987px;}
.xd{left:327.854987px;}
.x5{left:345.854987px;}
.x22{left:380.414987px;}
.x8{left:385.994987px;}
.xa{left:387.794987px;}
.x1f{left:416.774987px;}
.x2{left:446.474987px;}
.x1{left:488.444987px;}
.x1c{left:503.385000px;}
.x24{left:756.149987px;}
.x1d{left:784.229987px;}
.x14{left:785.309987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-4.714667pt;}
.ls18{letter-spacing:-4.074667pt;}
.ls11{letter-spacing:-3.434667pt;}
.ls1d{letter-spacing:-1.184000pt;}
.ls19{letter-spacing:-0.874667pt;}
.ls20{letter-spacing:-0.773333pt;}
.ls15{letter-spacing:-0.736000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.504533pt;}
.ls22{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.233067pt;}
.ls9{letter-spacing:-0.199467pt;}
.ls2{letter-spacing:-0.158933pt;}
.lse{letter-spacing:-0.135467pt;}
.ls3{letter-spacing:-0.097067pt;}
.lsa{letter-spacing:-0.082133pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.016640pt;}
.ls10{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.207360pt;}
.ls13{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.847360pt;}
.ls5{letter-spacing:1.487360pt;}
.ls6{letter-spacing:2.767360pt;}
.ls8{letter-spacing:3.407360pt;}
.ls21{letter-spacing:27.770027pt;}
.ls1e{letter-spacing:29.690027pt;}
.lsf{letter-spacing:30.970027pt;}
.ls1f{letter-spacing:32.890027pt;}
.ls24{letter-spacing:61.690027pt;}
.ws18{word-spacing:-58.880000pt;}
.ws0{word-spacing:-32.559360pt;}
.ws8{word-spacing:-29.807573pt;}
.ws9{word-spacing:-29.712640pt;}
.ws17{word-spacing:-23.680000pt;}
.wse{word-spacing:-18.048000pt;}
.ws14{word-spacing:-17.792000pt;}
.wsd{word-spacing:-16.640107pt;}
.wsc{word-spacing:-16.601707pt;}
.ws4{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.wsb{word-spacing:-16.233173pt;}
.ws16{word-spacing:-16.135573pt;}
.wsa{word-spacing:-16.097173pt;}
.ws1d{word-spacing:-15.961707pt;}
.ws19{word-spacing:-15.864107pt;}
.ws12{word-spacing:-15.728640pt;}
.ws11{word-spacing:-15.632640pt;}
.ws15{word-spacing:-15.595307pt;}
.ws13{word-spacing:-15.184640pt;}
.ws1a{word-spacing:-13.379584pt;}
.ws1b{word-spacing:-13.344000pt;}
.ws10{word-spacing:-12.293973pt;}
.ws6{word-spacing:-11.952640pt;}
.ws7{word-spacing:-11.870507pt;}
.ws5{word-spacing:-11.753173pt;}
.wsf{word-spacing:-11.653973pt;}
.ws1{word-spacing:-10.319360pt;}
.ws3{word-spacing:0.000000pt;}
.ws1c{word-spacing:68.362667pt;}
._b{margin-left:-23.061760pt;}
._8{margin-left:-11.646293pt;}
._a{margin-left:-8.794453pt;}
._9{margin-left:-7.832747pt;}
._7{margin-left:-6.821547pt;}
._6{margin-left:-5.653333pt;}
._15{margin-left:-4.720640pt;}
._d{margin-left:-3.810347pt;}
._0{margin-left:-2.816000pt;}
._4{margin-left:-1.707520pt;}
._5{width:1.599573pt;}
._e{width:2.724907pt;}
._1{width:3.630720pt;}
._2{width:4.919040pt;}
._3{width:6.882347pt;}
._f{width:92.101333pt;}
._10{width:97.541333pt;}
._11{width:105.242667pt;}
._13{width:113.424000pt;}
._12{width:126.906667pt;}
._14{width:140.784000pt;}
._c{width:328.570027pt;}
.fs7{font-size:21.120000pt;}
.fsa{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:85.120000pt;}
.fs6{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:3.040000pt;}
.y11c{bottom:3.200000pt;}
.y117{bottom:11.520000pt;}
.y11d{bottom:11.680000pt;}
.y157{bottom:14.746667pt;}
.ya7{bottom:15.360000pt;}
.ya2{bottom:15.520000pt;}
.ya9{bottom:35.360000pt;}
.y155{bottom:40.386667pt;}
.y14d{bottom:54.693333pt;}
.y14e{bottom:92.226667pt;}
.y92{bottom:98.752000pt;}
.y10d{bottom:104.352000pt;}
.y14b{bottom:107.392000pt;}
.y178{bottom:108.032000pt;}
.y68{bottom:110.912000pt;}
.y130{bottom:112.192000pt;}
.y91{bottom:114.112000pt;}
.y90{bottom:118.112000pt;}
.y1d{bottom:120.992000pt;}
.y10c{bottom:122.432000pt;}
.y14a{bottom:125.472000pt;}
.y67{bottom:128.992000pt;}
.y14f{bottom:129.786667pt;}
.y12f{bottom:130.592000pt;}
.y8f{bottom:130.752000pt;}
.y156{bottom:134.400000pt;}
.yb7{bottom:134.906667pt;}
.y177{bottom:136.826667pt;}
.y19c{bottom:144.026667pt;}
.y10b{bottom:146.266667pt;}
.y1c{bottom:146.426667pt;}
.y66{bottom:147.226667pt;}
.y12e{bottom:148.986667pt;}
.y53{bottom:150.106667pt;}
.yd0{bottom:151.226667pt;}
.yb6{bottom:152.986667pt;}
.y149{bottom:154.586667pt;}
.y19b{bottom:161.946667pt;}
.y10a{bottom:164.186667pt;}
.y65{bottom:165.466667pt;}
.y176{bottom:165.786667pt;}
.y150{bottom:167.333333pt;}
.y12d{bottom:167.386667pt;}
.ycf{bottom:169.306667pt;}
.yb5{bottom:171.226667pt;}
.y1b{bottom:172.026667pt;}
.y148{bottom:172.506667pt;}
.y52{bottom:178.906667pt;}
.y109{bottom:182.426667pt;}
.y8e{bottom:182.906667pt;}
.y64{bottom:183.706667pt;}
.y12c{bottom:185.786667pt;}
.yce{bottom:187.386667pt;}
.yb4{bottom:189.466667pt;}
.y147{bottom:190.746667pt;}
.y19a{bottom:191.066667pt;}
.y175{bottom:194.586667pt;}
.y1a{bottom:197.626667pt;}
.y108{bottom:200.666667pt;}
.y8d{bottom:200.986667pt;}
.y63{bottom:201.946667pt;}
.y12b{bottom:204.186667pt;}
.y151{bottom:204.866667pt;}
.ycd{bottom:205.626667pt;}
.yb3{bottom:207.546667pt;}
.y51{bottom:207.866667pt;}
.y146{bottom:208.986667pt;}
.y107{bottom:218.906667pt;}
.y8c{bottom:219.226667pt;}
.y12a{bottom:222.586667pt;}
.y19{bottom:223.066667pt;}
.y174{bottom:223.546667pt;}
.ycc{bottom:223.866667pt;}
.y145{bottom:227.226667pt;}
.y62{bottom:227.386667pt;}
.y50{bottom:236.666667pt;}
.y106{bottom:236.986667pt;}
.y8b{bottom:237.306667pt;}
.y18{bottom:238.266667pt;}
.y173{bottom:241.466667pt;}
.ycb{bottom:242.106667pt;}
.y152{bottom:242.400000pt;}
.y144{bottom:245.306667pt;}
.y129{bottom:251.866667pt;}
.yb2{bottom:254.746667pt;}
.y8a{bottom:255.546667pt;}
.y199{bottom:256.346667pt;}
.yca{bottom:260.186667pt;}
.y105{bottom:260.666667pt;}
.y61{bottom:262.746667pt;}
.y17{bottom:263.546667pt;}
.y4f{bottom:265.626667pt;}
.y128{bottom:269.786667pt;}
.y172{bottom:270.586667pt;}
.y89{bottom:273.786667pt;}
.y198{bottom:274.266667pt;}
.yc9{bottom:278.426667pt;}
.y16{bottom:278.586667pt;}
.yb1{bottom:278.746667pt;}
.y153{bottom:279.933333pt;}
.y143{bottom:281.786667pt;}
.y60{bottom:291.546667pt;}
.y88{bottom:292.026667pt;}
.y197{bottom:292.506667pt;}
.y4e{bottom:294.426667pt;}
.yc8{bottom:296.666667pt;}
.y104{bottom:296.986667pt;}
.y127{bottom:298.906667pt;}
.y171{bottom:299.426667pt;}
.y142{bottom:300.066667pt;}
.y15{bottom:304.546667pt;}
.yb0{bottom:308.866667pt;}
.y5f{bottom:309.666667pt;}
.y87{bottom:310.146667pt;}
.y196{bottom:310.786667pt;}
.yc7{bottom:314.946667pt;}
.y103{bottom:315.266667pt;}
.y126{bottom:316.866667pt;}
.y154{bottom:317.506667pt;}
.y141{bottom:318.306667pt;}
.y4d{bottom:323.266667pt;}
.y14{bottom:332.226667pt;}
.y102{bottom:333.346667pt;}
.y125{bottom:335.106667pt;}
.y5e{bottom:335.426667pt;}
.y170{bottom:335.746667pt;}
.y140{bottom:336.386667pt;}
.yaf{bottom:337.826667pt;}
.y86{bottom:339.266667pt;}
.y195{bottom:339.746667pt;}
.yc6{bottom:343.906667pt;}
.y101{bottom:351.586667pt;}
.y4c{bottom:352.226667pt;}
.y124{bottom:353.346667pt;}
.y16f{bottom:353.826667pt;}
.y13f{bottom:354.626667pt;}
.yae{bottom:355.906667pt;}
.y194{bottom:357.826667pt;}
.y13{bottom:361.026667pt;}
.y85{bottom:368.066667pt;}
.yc5{bottom:369.346667pt;}
.y100{bottom:369.826667pt;}
.y123{bottom:371.586667pt;}
.y16e{bottom:372.066667pt;}
.y13e{bottom:372.866667pt;}
.yad{bottom:373.986667pt;}
.y4b{bottom:381.026667pt;}
.y193{bottom:386.946667pt;}
.yff{bottom:388.066667pt;}
.y122{bottom:389.666667pt;}
.y12{bottom:389.986667pt;}
.y16d{bottom:390.306667pt;}
.y13d{bottom:391.106667pt;}
.yac{bottom:392.226667pt;}
.y84{bottom:397.026667pt;}
.yc4{bottom:404.546667pt;}
.y192{bottom:404.866667pt;}
.yfe{bottom:406.146667pt;}
.y16c{bottom:408.546667pt;}
.y13c{bottom:409.186667pt;}
.y4a{bottom:409.986667pt;}
.y11{bottom:418.786667pt;}
.yab{bottom:421.346667pt;}
.yc3{bottom:422.626667pt;}
.y83{bottom:425.826667pt;}
.y16b{bottom:426.786667pt;}
.y13b{bottom:427.426667pt;}
.y191{bottom:433.986667pt;}
.yfd{bottom:435.266667pt;}
.yaa{bottom:436.386667pt;}
.y49{bottom:438.786667pt;}
.yc2{bottom:440.866667pt;}
.y121{bottom:444.226667pt;}
.y16a{bottom:444.866667pt;}
.y10{bottom:447.746667pt;}
.y190{bottom:451.906667pt;}
.ye5{bottom:452.866667pt;}
.y13a{bottom:453.026667pt;}
.yfc{bottom:453.346667pt;}
.y82{bottom:454.626667pt;}
.yc1{bottom:459.106667pt;}
.y169{bottom:463.106667pt;}
.y48{bottom:467.746667pt;}
.y120{bottom:470.626667pt;}
.ye4{bottom:470.946667pt;}
.yf{bottom:476.546667pt;}
.yc0{bottom:477.186667pt;}
.yfb{bottom:477.346667pt;}
.y18f{bottom:481.026667pt;}
.y168{bottom:481.346667pt;}
.y81{bottom:483.586667pt;}
.ya8{bottom:486.786667pt;}
.y139{bottom:488.706667pt;}
.ye3{bottom:489.186667pt;}
.ybf{bottom:495.426667pt;}
.y47{bottom:496.546667pt;}
.y18e{bottom:499.106667pt;}
.y167{bottom:499.586667pt;}
.ye{bottom:505.346667pt;}
.ye2{bottom:507.266667pt;}
.yfa{bottom:507.426667pt;}
.y11f{bottom:509.666667pt;}
.y80{bottom:512.386667pt;}
.y18d{bottom:517.186667pt;}
.y138{bottom:518.786667pt;}
.ybe{bottom:519.426667pt;}
.y46{bottom:525.346667pt;}
.ye1{bottom:525.506667pt;}
.y166{bottom:528.546667pt;}
.yd{bottom:534.306667pt;}
.yf9{bottom:536.386667pt;}
.y137{bottom:536.893333pt;}
.ya6{bottom:537.213333pt;}
.y7f{bottom:541.373333pt;}
.ye0{bottom:543.773333pt;}
.y30{bottom:544.093333pt;}
.y18c{bottom:546.333333pt;}
.y165{bottom:546.653333pt;}
.ybd{bottom:550.013333pt;}
.y45{bottom:554.333333pt;}
.yf8{bottom:554.493333pt;}
.y136{bottom:555.133333pt;}
.ydf{bottom:562.013333pt;}
.y11e{bottom:562.973333pt;}
.y18b{bottom:564.413333pt;}
.y164{bottom:564.733333pt;}
.ya5{bottom:567.613333pt;}
.yc{bottom:568.413333pt;}
.y2f{bottom:570.173333pt;}
.y11b{bottom:576.733333pt;}
.yde{bottom:580.093333pt;}
.ybc{bottom:580.253333pt;}
.y135{bottom:580.573333pt;}
.y18a{bottom:582.493333pt;}
.y163{bottom:582.973333pt;}
.y44{bottom:583.133333pt;}
.yf7{bottom:583.453333pt;}
.y7e{bottom:588.253333pt;}
.yb{bottom:592.093333pt;}
.y2e{bottom:596.093333pt;}
.ya4{bottom:598.173333pt;}
.ydd{bottom:598.333333pt;}
.y43{bottom:601.213333pt;}
.yf6{bottom:601.533333pt;}
.y11a{bottom:602.173333pt;}
.y7d{bottom:606.493333pt;}
.y189{bottom:611.613333pt;}
.ya{bottom:615.293333pt;}
.y134{bottom:616.253333pt;}
.y42{bottom:619.453333pt;}
.yf5{bottom:619.773333pt;}
.y2d{bottom:622.013333pt;}
.ybb{bottom:624.093333pt;}
.y7c{bottom:624.573333pt;}
.y119{bottom:627.453333pt;}
.ya3{bottom:628.733333pt;}
.y188{bottom:629.533333pt;}
.y162{bottom:630.173333pt;}
.y41{bottom:637.533333pt;}
.yf4{bottom:637.853333pt;}
.ydc{bottom:640.093333pt;}
.y9{bottom:644.413333pt;}
.y133{bottom:646.333333pt;}
.y2c{bottom:648.093333pt;}
.y161{bottom:648.253333pt;}
.y118{bottom:652.733333pt;}
.y7b{bottom:653.693333pt;}
.y40{bottom:655.773333pt;}
.yf3{bottom:656.093333pt;}
.ydb{bottom:658.333333pt;}
.y187{bottom:658.653333pt;}
.ya1{bottom:660.573333pt;}
.y132{bottom:664.413333pt;}
.y160{bottom:666.493333pt;}
.y8{bottom:667.933333pt;}
.y7a{bottom:671.773333pt;}
.y2b{bottom:674.013333pt;}
.yf2{bottom:674.333333pt;}
.yda{bottom:676.573333pt;}
.y186{bottom:676.733333pt;}
.y115{bottom:678.013333pt;}
.y15f{bottom:684.733333pt;}
.y79{bottom:689.853333pt;}
.y131{bottom:690.493333pt;}
.y14c{bottom:690.560000pt;}
.y3f{bottom:692.253333pt;}
.yf1{bottom:692.573333pt;}
.y185{bottom:694.813333pt;}
.y2a{bottom:700.093333pt;}
.yd9{bottom:700.253333pt;}
.y7{bottom:701.213333pt;}
.y15e{bottom:702.813333pt;}
.ya0{bottom:707.453333pt;}
.y78{bottom:708.093333pt;}
.y3e{bottom:710.333333pt;}
.yf0{bottom:710.653333pt;}
.y184{bottom:713.053333pt;}
.yd8{bottom:718.173333pt;}
.y114{bottom:718.333333pt;}
.y15d{bottom:721.053333pt;}
.y9f{bottom:725.533333pt;}
.y29{bottom:726.013333pt;}
.y3d{bottom:728.573333pt;}
.yef{bottom:728.893333pt;}
.yd7{bottom:736.413333pt;}
.y76{bottom:737.213333pt;}
.y15c{bottom:739.293333pt;}
.y183{bottom:742.173333pt;}
.y77{bottom:742.493333pt;}
.y9e{bottom:743.773333pt;}
.yee{bottom:747.133333pt;}
.y6{bottom:748.413333pt;}
.y28{bottom:751.933333pt;}
.y75{bottom:755.133333pt;}
.y15b{bottom:757.533333pt;}
.y3c{bottom:757.693333pt;}
.yd6{bottom:760.093333pt;}
.yed{bottom:765.373333pt;}
.y9d{bottom:772.733333pt;}
.y74{bottom:773.373333pt;}
.y3b{bottom:775.653333pt;}
.y27{bottom:778.053333pt;}
.yd5{bottom:778.213333pt;}
.yec{bottom:783.493333pt;}
.y113{bottom:783.653333pt;}
.y5{bottom:784.773333pt;}
.y182{bottom:789.253333pt;}
.y73{bottom:791.653333pt;}
.y3a{bottom:793.893333pt;}
.yd4{bottom:796.453333pt;}
.y5d{bottom:796.773333pt;}
.y9c{bottom:801.733333pt;}
.y26{bottom:803.973333pt;}
.y181{bottom:807.173333pt;}
.y39{bottom:812.133333pt;}
.yd3{bottom:814.533333pt;}
.y72{bottom:815.653333pt;}
.y9b{bottom:819.813333pt;}
.yeb{bottom:819.973333pt;}
.y4{bottom:821.253333pt;}
.y180{bottom:825.413333pt;}
.y5c{bottom:825.573333pt;}
.y25{bottom:830.053333pt;}
.y38{bottom:830.373333pt;}
.yd2{bottom:832.773333pt;}
.y9a{bottom:837.893333pt;}
.yea{bottom:838.213333pt;}
.y15a{bottom:839.493333pt;}
.y5b{bottom:843.653333pt;}
.y71{bottom:845.893333pt;}
.y37{bottom:848.453333pt;}
.yd1{bottom:851.013333pt;}
.y17f{bottom:854.533333pt;}
.y24{bottom:855.973333pt;}
.y99{bottom:856.133333pt;}
.ye9{bottom:856.293333pt;}
.y112{bottom:861.733333pt;}
.y5a{bottom:861.893333pt;}
.y36{bottom:866.693333pt;}
.y3{bottom:868.293333pt;}
.y17e{bottom:872.453333pt;}
.y98{bottom:874.373333pt;}
.ye8{bottom:874.533333pt;}
.y70{bottom:874.693333pt;}
.y111{bottom:879.813333pt;}
.y59{bottom:879.973333pt;}
.y23{bottom:882.053333pt;}
.y17d{bottom:890.693333pt;}
.y6f{bottom:892.773333pt;}
.y159{bottom:892.933333pt;}
.y35{bottom:895.813333pt;}
.y110{bottom:898.053333pt;}
.y97{bottom:903.333333pt;}
.y22{bottom:907.973333pt;}
.y58{bottom:909.093333pt;}
.y6e{bottom:911.013333pt;}
.y34{bottom:913.733333pt;}
.y10f{bottom:916.293333pt;}
.y17c{bottom:919.813333pt;}
.y2{bottom:921.093333pt;}
.y96{bottom:921.413333pt;}
.y57{bottom:927.173333pt;}
.y6d{bottom:929.093333pt;}
.yba{bottom:929.253333pt;}
.y33{bottom:931.973333pt;}
.y21{bottom:933.893333pt;}
.y10e{bottom:934.533333pt;}
.y17b{bottom:937.733333pt;}
.y56{bottom:945.253333pt;}
.y95{bottom:945.413333pt;}
.y6c{bottom:947.333333pt;}
.y17a{bottom:955.973333pt;}
.yb9{bottom:958.213333pt;}
.y20{bottom:959.973333pt;}
.y32{bottom:961.093333pt;}
.ye7{bottom:965.573333pt;}
.y179{bottom:974.213333pt;}
.y55{bottom:974.373333pt;}
.yb8{bottom:976.133333pt;}
.y6b{bottom:976.293333pt;}
.y94{bottom:977.573333pt;}
.y1{bottom:981.573333pt;}
.ye6{bottom:983.813333pt;}
.y1f{bottom:986.213333pt;}
.y31{bottom:988.293333pt;}
.y6a{bottom:994.373333pt;}
.y158{bottom:994.533333pt;}
.y1e{bottom:1001.413333pt;}
.y54{bottom:1001.573333pt;}
.y69{bottom:1012.640000pt;}
.y93{bottom:1012.800000pt;}
.hd{height:18.304688pt;}
.h1a{height:25.280000pt;}
.h1b{height:25.440000pt;}
.h5{height:27.912500pt;}
.h16{height:30.400000pt;}
.h15{height:30.560000pt;}
.h14{height:30.982500pt;}
.h6{height:33.277500pt;}
.hb{height:43.031250pt;}
.h1d{height:43.146000pt;}
.h13{height:44.246250pt;}
.h8{height:44.275000pt;}
.ha{height:47.621250pt;}
.h18{height:48.125000pt;}
.h4{height:49.032500pt;}
.h19{height:50.400000pt;}
.h17{height:50.432000pt;}
.hf{height:51.031250pt;}
.h7{height:52.641250pt;}
.h9{height:52.785000pt;}
.he{height:55.468750pt;}
.h12{height:57.375000pt;}
.h11{height:76.308750pt;}
.hc{height:90.336562pt;}
.h10{height:95.816250pt;}
.h3{height:104.996250pt;}
.h2{height:144.375000pt;}
.h1c{height:336.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:110.560000pt;}
.w4{width:165.626667pt;}
.w5{width:185.786667pt;}
.w8{width:212.546667pt;}
.w6{width:250.426667pt;}
.w9{width:576.000000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.200000pt;}
.x2a{left:29.184000pt;}
.x28{left:36.032000pt;}
.x27{left:42.693333pt;}
.x26{left:49.373333pt;}
.x29{left:70.720000pt;}
.x10{left:96.031988pt;}
.xc{left:100.511988pt;}
.xe{left:102.751988pt;}
.x7{left:107.551988pt;}
.x11{left:110.751988pt;}
.x21{left:112.191988pt;}
.x1e{left:114.591988pt;}
.x2b{left:115.933333pt;}
.x3{left:119.871988pt;}
.x4{left:123.231988pt;}
.x12{left:125.311988pt;}
.x18{left:144.026655pt;}
.x16{left:156.346643pt;}
.xb{left:159.866655pt;}
.x17{left:161.466655pt;}
.x20{left:167.386655pt;}
.x15{left:176.346655pt;}
.x13{left:187.706655pt;}
.x9{left:198.106655pt;}
.x23{left:206.586667pt;}
.x25{left:211.706655pt;}
.x6{left:227.066655pt;}
.x1b{left:261.666667pt;}
.xf{left:277.826655pt;}
.x19{left:288.066655pt;}
.xd{left:291.426655pt;}
.x5{left:307.426655pt;}
.x22{left:338.146655pt;}
.x8{left:343.106655pt;}
.xa{left:344.706655pt;}
.x1f{left:370.466655pt;}
.x2{left:396.866655pt;}
.x1{left:434.173322pt;}
.x1c{left:447.453333pt;}
.x24{left:672.133322pt;}
.x1d{left:697.093322pt;}
.x14{left:698.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; }
  