
    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_d1daa2f3b4fccf5e23ac1c9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_756b4dbeb2f634837e8917f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_e56d7535ef8f4ff0965de2eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_fd68e1fb35bb46f16dac9c3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916504;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_95c3044e012a6b3692f56dd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_7e0d38bbd3d3a34fa8f65dce.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ff2052a467a51e1473acffbe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875488;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_a5e4a02731f9468b74a18eb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_707a5b3d0e8c192a67553de0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f6deac55f0bc4b500f4dc251.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0d9c8723d7aa99bfb55f9161.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_191e5168bb4de40b054383fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916504;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_8814e09f70d2f305c514267a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.754883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:18.000000px;}
.ls6{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.255600px;}
.ls2{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000003px;}
.lsd{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.229200px;}
.ls4{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.160000px;}
.ls0{letter-spacing:4.452000px;}
.ls11{letter-spacing:5.040000px;}
.lsb{letter-spacing:37.560000px;}
.lsc{letter-spacing:54.840000px;}
.ls17{letter-spacing:54.864000px;}
.ls16{letter-spacing:64.224000px;}
.ls5{letter-spacing:82.627200px;}
.ls7{letter-spacing:115.194720px;}
.ls18{letter-spacing:141.240000px;}
.ls12{letter-spacing:162.840000px;}
.ls13{letter-spacing:162.864000px;}
.ls3{letter-spacing:167.563200px;}
.ls15{letter-spacing:172.224000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws14{word-spacing:-59.760000px;}
.wsf{word-spacing:-43.200000px;}
.ws9{word-spacing:-39.744000px;}
.ws8{word-spacing:-39.600000px;}
.ws0{word-spacing:-36.907200px;}
.ws13{word-spacing:-36.000000px;}
.ws12{word-spacing:-23.328000px;}
.ws1{word-spacing:-22.984800px;}
.wsa{word-spacing:-18.277200px;}
.ws5{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.056000px;}
.wse{word-spacing:-15.984000px;}
.ws11{word-spacing:-15.912000px;}
.wsb{word-spacing:-15.840003px;}
.ws2{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.696000px;}
.ws3{word-spacing:-15.624000px;}
.ws6{word-spacing:-15.552000px;}
.ws10{word-spacing:-10.612800px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._10{margin-left:-11.628000px;}
._23{margin-left:-9.522720px;}
._e{margin-left:-8.496000px;}
._4{margin-left:-6.542640px;}
._7{margin-left:-4.890480px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._b{margin-left:-1.008000px;}
._c{width:1.164000px;}
._12{width:2.321520px;}
._8{width:3.959280px;}
._9{width:5.307120px;}
._a{width:6.950640px;}
._1b{width:8.163120px;}
._1a{width:9.864000px;}
._19{width:10.944000px;}
._13{width:12.600000px;}
._14{width:13.896000px;}
._18{width:16.763760px;}
._16{width:17.951040px;}
._21{width:20.520000px;}
._22{width:21.612000px;}
._1e{width:23.112000px;}
._1d{width:29.952000px;}
._1c{width:30.960000px;}
._17{width:43.784640px;}
._15{width:46.621440px;}
._f{width:48.312000px;}
._1f{width:50.760000px;}
._20{width:51.768000px;}
._3{width:69.788160px;}
._6{width:80.894640px;}
._5{width:105.017760px;}
._11{width:843.088800px;}
.fc4{color:rgb(32,33,34);}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.960000px;}
.y20{bottom:5.400000px;}
.y19d{bottom:5.760000px;}
.y18f{bottom:6.840000px;}
.y1a5{bottom:6.870000px;}
.y192{bottom:7.020000px;}
.y19c{bottom:7.200000px;}
.y5c{bottom:7.740000px;}
.y5a{bottom:7.920000px;}
.y85{bottom:7.950000px;}
.y22{bottom:25.200000px;}
.y59{bottom:29.340000px;}
.y61{bottom:29.370000px;}
.y58{bottom:50.940000px;}
.y3{bottom:57.780000px;}
.y152{bottom:113.616000px;}
.y115{bottom:120.276000px;}
.y1b9{bottom:125.316000px;}
.y73{bottom:129.276000px;}
.yb6{bottom:136.656000px;}
.y151{bottom:138.996000px;}
.y3b{bottom:139.176000px;}
.yf6{bottom:140.076000px;}
.y18c{bottom:143.316000px;}
.y114{bottom:144.576000px;}
.y1b8{bottom:144.756000px;}
.y72{bottom:151.590000px;}
.y170{bottom:154.110000px;}
.yf5{bottom:164.190000px;}
.y1b7{bottom:164.370000px;}
.y97{bottom:165.090000px;}
.yb5{bottom:168.330000px;}
.y113{bottom:168.870000px;}
.y71{bottom:173.730000px;}
.y18b{bottom:174.990000px;}
.y3a{bottom:175.530000px;}
.y133{bottom:176.430000px;}
.y1d{bottom:177.150000px;}
.y16f{bottom:178.410000px;}
.y1b6{bottom:183.810000px;}
.y150{bottom:189.390000px;}
.y112{bottom:193.170000px;}
.yb4{bottom:193.530000px;}
.y96{bottom:195.330000px;}
.yf4{bottom:195.870000px;}
.y70{bottom:196.050000px;}
.y1c{bottom:198.390000px;}
.y18a{bottom:200.730000px;}
.y16e{bottom:202.710000px;}
.y1b5{bottom:203.430000px;}
.y132{bottom:208.290000px;}
.y39{bottom:211.710000px;}
.y14f{bottom:214.770000px;}
.ycd{bottom:216.930000px;}
.y111{bottom:217.290000px;}
.y6f{bottom:218.190000px;}
.yb3{bottom:218.730000px;}
.y95{bottom:219.270000px;}
.y1b{bottom:219.450000px;}
.yf3{bottom:219.990000px;}
.y1b4{bottom:223.050000px;}
.y189{bottom:225.030000px;}
.y16d{bottom:229.890000px;}
.y94{bottom:232.590000px;}
.ye0{bottom:239.070000px;}
.y14e{bottom:239.970000px;}
.y1a{bottom:240.510000px;}
.y1b3{bottom:242.490000px;}
.y110{bottom:242.670000px;}
.yb2{bottom:244.110000px;}
.y38{bottom:248.070000px;}
.ycc{bottom:248.610000px;}
.y188{bottom:248.970000px;}
.yf2{bottom:251.670000px;}
.y93{bottom:254.910000px;}
.y19{bottom:261.570000px;}
.y6e{bottom:261.930000px;}
.y1b2{bottom:262.110000px;}
.y131{bottom:263.910000px;}
.y14d{bottom:265.350000px;}
.y16c{bottom:266.250000px;}
.y10f{bottom:267.870000px;}
.yb1{bottom:269.310000px;}
.ydf{bottom:270.750000px;}
.ycb{bottom:272.730000px;}
.yf1{bottom:275.970000px;}
.y187{bottom:277.050000px;}
.y92{bottom:277.230000px;}
.y37{bottom:279.750000px;}
.y1b1{bottom:281.550000px;}
.y18{bottom:282.810000px;}
.y6d{bottom:284.250000px;}
.y14c{bottom:289.650000px;}
.y16b{bottom:290.550000px;}
.y130{bottom:292.170000px;}
.yb0{bottom:294.510000px;}
.yde{bottom:295.050000px;}
.yca{bottom:298.110000px;}
.y91{bottom:299.370000px;}
.yf0{bottom:300.270000px;}
.y1b0{bottom:301.170000px;}
.y17{bottom:303.870000px;}
.y36{bottom:304.050000px;}
.y10e{bottom:305.130000px;}
.y6c{bottom:306.570000px;}
.y14b{bottom:313.770000px;}
.y16a{bottom:317.775000px;}
.y186{bottom:318.855000px;}
.yaf{bottom:319.935000px;}
.y1af{bottom:320.655000px;}
.y90{bottom:321.735000px;}
.yc9{bottom:322.455000px;}
.yef{bottom:324.615000px;}
.ydd{bottom:326.595000px;}
.y6b{bottom:328.755000px;}
.y10d{bottom:329.295000px;}
.y12f{bottom:332.175000px;}
.y35{bottom:335.955000px;}
.y16{bottom:340.095000px;}
.y1ae{bottom:340.275000px;}
.y14a{bottom:342.075000px;}
.y8f{bottom:343.875000px;}
.yc8{bottom:347.655000px;}
.yae{bottom:348.015000px;}
.yee{bottom:348.915000px;}
.y169{bottom:349.275000px;}
.y185{bottom:350.715000px;}
.y6a{bottom:351.075000px;}
.y12e{bottom:353.595000px;}
.y10c{bottom:360.975000px;}
.y15{bottom:364.395000px;}
.ydc{bottom:365.475000px;}
.y8e{bottom:366.195000px;}
.y34{bottom:367.635000px;}
.y1ad{bottom:368.355000px;}
.yc7{bottom:371.955000px;}
.y149{bottom:372.135000px;}
.yed{bottom:373.035000px;}
.y69{bottom:373.215000px;}
.y184{bottom:377.895000px;}
.yad{bottom:378.255000px;}
.y10b{bottom:385.275000px;}
.y12d{bottom:386.535000px;}
.y168{bottom:388.335000px;}
.y8d{bottom:388.515000px;}
.y14{bottom:388.695000px;}
.y68{bottom:395.535000px;}
.yc6{bottom:397.335000px;}
.ydb{bottom:398.595000px;}
.y33{bottom:399.495000px;}
.y148{bottom:403.995000px;}
.yac{bottom:409.935000px;}
.y1ac{bottom:410.115000px;}
.y8c{bottom:410.655000px;}
.y167{bottom:412.635000px;}
.y183{bottom:414.255000px;}
.y67{bottom:417.675000px;}
.yc5{bottom:421.455000px;}
.yec{bottom:421.635000px;}
.yda{bottom:422.895000px;}
.y1ab{bottom:423.435000px;}
.y13{bottom:424.875000px;}
.y147{bottom:428.115000px;}
.y8b{bottom:432.975000px;}
.y12c{bottom:434.955000px;}
.yab{bottom:435.135000px;}
.y32{bottom:435.675000px;}
.y166{bottom:437.835000px;}
.y182{bottom:438.555000px;}
.y66{bottom:439.995000px;}
.y1aa{bottom:443.775000px;}
.yeb{bottom:445.755000px;}
.yc4{bottom:446.655000px;}
.y8a{bottom:455.115000px;}
.y10a{bottom:457.815000px;}
.y12b{bottom:459.255000px;}
.y146{bottom:459.795000px;}
.y31{bottom:459.975000px;}
.yd9{bottom:460.155000px;}
.y12{bottom:461.235000px;}
.y65{bottom:462.315000px;}
.y181{bottom:462.855000px;}
.y165{bottom:463.215000px;}
.y1a9{bottom:464.115000px;}
.yea{bottom:464.655000px;}
.yaa{bottom:472.575000px;}
.yc3{bottom:474.915000px;}
.y89{bottom:477.435000px;}
.ye9{bottom:482.295000px;}
.y12a{bottom:483.375000px;}
.y145{bottom:484.095000px;}
.y64{bottom:484.455000px;}
.y180{bottom:486.975000px;}
.y164{bottom:487.515000px;}
.y109{bottom:493.995000px;}
.ye8{bottom:495.975000px;}
.y30{bottom:496.155000px;}
.y11{bottom:497.415000px;}
.y88{bottom:499.575000px;}
.ya9{bottom:499.755000px;}
.y1a8{bottom:504.615000px;}
.yc2{bottom:505.155000px;}
.y63{bottom:506.775000px;}
.y144{bottom:508.395000px;}
.yd8{bottom:508.575000px;}
.y163{bottom:511.635000px;}
.y17f{bottom:514.155000px;}
.y4b{bottom:516.675000px;}
.y108{bottom:519.375000px;}
.y87{bottom:521.895000px;}
.yc1{bottom:524.595000px;}
.y1a7{bottom:524.955000px;}
.y2f{bottom:528.015000px;}
.y62{bottom:528.915000px;}
.yd7{bottom:531.255000px;}
.y10{bottom:533.775000px;}
.ya8{bottom:536.115000px;}
.y129{bottom:540.255000px;}
.yc0{bottom:543.675000px;}
.y86{bottom:544.215000px;}
.y17e{bottom:544.395000px;}
.y107{bottom:544.575000px;}
.y1a6{bottom:545.295000px;}
.y162{bottom:549.075000px;}
.y60{bottom:551.235000px;}
.y4a{bottom:554.115000px;}
.y2e{bottom:559.695000px;}
.ya7{bottom:560.235000px;}
.ybf{bottom:561.315000px;}
.y128{bottom:564.555000px;}
.y1a4{bottom:565.635000px;}
.y84{bottom:566.355000px;}
.yd6{bottom:567.615000px;}
.y143{bottom:568.725000px;}
.y106{bottom:568.905000px;}
.yf{bottom:569.985000px;}
.y161{bottom:573.225000px;}
.ybe{bottom:574.845000px;}
.y17d{bottom:576.105000px;}
.ya6{bottom:585.645000px;}
.y1a3{bottom:585.825000px;}
.y49{bottom:586.005000px;}
.y83{bottom:588.705000px;}
.y127{bottom:588.885000px;}
.y2d{bottom:591.585000px;}
.yd5{bottom:591.765000px;}
.y105{bottom:594.105000px;}
.y5f{bottom:595.005000px;}
.y142{bottom:600.405000px;}
.y160{bottom:604.725000px;}
.y1a2{bottom:606.165000px;}
.ye{bottom:606.345000px;}
.y1cd{bottom:609.585000px;}
.y82{bottom:610.845000px;}
.y126{bottom:613.185000px;}
.yd4{bottom:617.145000px;}
.y5e{bottom:617.325000px;}
.y48{bottom:617.685000px;}
.y104{bottom:619.485000px;}
.ya5{bottom:622.905000px;}
.y141{bottom:624.705000px;}
.y1a1{bottom:626.505000px;}
.y2c{bottom:627.765000px;}
.y1cc{bottom:629.025000px;}
.y81{bottom:633.165000px;}
.y125{bottom:637.485000px;}
.y5d{bottom:639.465000px;}
.yd3{bottom:641.445000px;}
.yd{bottom:642.525000px;}
.y103{bottom:643.605000px;}
.y15f{bottom:643.785000px;}
.y1a0{bottom:646.665000px;}
.y1cb{bottom:648.645000px;}
.y140{bottom:649.005000px;}
.y47{bottom:649.545000px;}
.y17c{bottom:651.885000px;}
.y80{bottom:655.485000px;}
.ya4{bottom:659.085000px;}
.y124{bottom:661.605000px;}
.y5b{bottom:661.785000px;}
.y2b{bottom:664.125000px;}
.yd2{bottom:665.565000px;}
.y19f{bottom:667.005000px;}
.y1ca{bottom:668.265000px;}
.y102{bottom:668.985000px;}
.y13f{bottom:673.305000px;}
.y7f{bottom:677.625000px;}
.yc{bottom:678.885000px;}
.y15e{bottom:679.965000px;}
.y17b{bottom:681.945000px;}
.y57{bottom:683.925000px;}
.y46{bottom:685.725000px;}
.y123{bottom:685.905000px;}
.ya3{bottom:687.345000px;}
.y1c9{bottom:687.705000px;}
.yd1{bottom:689.865000px;}
.y101{bottom:693.285000px;}
.y2a{bottom:695.805000px;}
.y13e{bottom:697.425000px;}
.y7e{bottom:699.945000px;}
.y15d{bottom:705.345000px;}
.y1c8{bottom:707.325000px;}
.y19e{bottom:707.685000px;}
.y122{bottom:710.925000px;}
.y17a{bottom:713.805000px;}
.yd0{bottom:714.165000px;}
.yb{bottom:715.065000px;}
.y100{bottom:717.585000px;}
.ya2{bottom:717.765000px;}
.y13d{bottom:721.725000px;}
.y45{bottom:722.085000px;}
.y1c7{bottom:726.765000px;}
.y29{bottom:727.665000px;}
.y19b{bottom:728.205000px;}
.y15c{bottom:729.645000px;}
.y179{bottom:738.105000px;}
.ycf{bottom:739.185000px;}
.yff{bottom:741.705000px;}
.y121{bottom:742.785000px;}
.y7d{bottom:743.685000px;}
.y13c{bottom:746.025000px;}
.y1c6{bottom:746.385000px;}
.y19a{bottom:748.725000px;}
.ya{bottom:752.505000px;}
.ya1{bottom:753.945000px;}
.y15b{bottom:757.905000px;}
.y44{bottom:758.265000px;}
.y28{bottom:759.345000px;}
.y178{bottom:762.225000px;}
.y7c{bottom:765.825000px;}
.y120{bottom:767.085000px;}
.y56{bottom:768.345000px;}
.y199{bottom:769.065000px;}
.y13b{bottom:771.225000px;}
.yce{bottom:771.945000px;}
.yfe{bottom:779.145000px;}
.ya0{bottom:781.305000px;}
.y1c5{bottom:785.445000px;}
.y177{bottom:786.525000px;}
.y7b{bottom:788.145000px;}
.y198{bottom:789.405000px;}
.y27{bottom:791.205000px;}
.y11f{bottom:791.385000px;}
.y9{bottom:791.745000px;}
.y55{bottom:792.645000px;}
.y15a{bottom:794.265000px;}
.y43{bottom:794.625000px;}
.y13a{bottom:796.425000px;}
.yfd{bottom:803.085000px;}
.y1c4{bottom:805.065000px;}
.y197{bottom:809.745000px;}
.y7a{bottom:810.465000px;}
.y176{bottom:810.825000px;}
.y9f{bottom:812.625000px;}
.y11e{bottom:815.505000px;}
.y54{bottom:816.765000px;}
.y159{bottom:818.385000px;}
.y139{bottom:821.850000px;}
.y1c3{bottom:824.550000px;}
.y26{bottom:827.970000px;}
.y8{bottom:829.230000px;}
.y196{bottom:829.950000px;}
.y42{bottom:830.850000px;}
.y79{bottom:832.650000px;}
.yfc{bottom:834.990000px;}
.y175{bottom:838.230000px;}
.y11d{bottom:839.850000px;}
.y9e{bottom:841.110000px;}
.y158{bottom:843.630000px;}
.y1c2{bottom:844.170000px;}
.y138{bottom:846.150000px;}
.y53{bottom:848.490000px;}
.y195{bottom:850.290000px;}
.ye7{bottom:851.730000px;}
.yfb{bottom:859.110000px;}
.y1c1{bottom:863.610000px;}
.y11c{bottom:864.150000px;}
.y7{bottom:864.510000px;}
.y41{bottom:867.210000px;}
.y157{bottom:869.010000px;}
.y9d{bottom:869.370000px;}
.y137{bottom:870.450000px;}
.y194{bottom:870.630000px;}
.y52{bottom:872.790000px;}
.y174{bottom:874.410000px;}
.y25{bottom:876.210000px;}
.y78{bottom:876.390000px;}
.y1c0{bottom:883.230000px;}
.ye6{bottom:883.590000px;}
.yfa{bottom:884.310000px;}
.ybd{bottom:884.490000px;}
.y11b{bottom:888.450000px;}
.y193{bottom:890.790000px;}
.y24{bottom:894.030000px;}
.y156{bottom:894.210000px;}
.y136{bottom:894.570000px;}
.y51{bottom:897.090000px;}
.y77{bottom:898.710000px;}
.y1bf{bottom:902.670000px;}
.y40{bottom:903.390000px;}
.ye5{bottom:907.890000px;}
.ybc{bottom:908.610000px;}
.yf9{bottom:909.690000px;}
.y9c{bottom:910.770000px;}
.y191{bottom:911.130000px;}
.y11a{bottom:912.750000px;}
.y6{bottom:913.830000px;}
.y21{bottom:917.250000px;}
.y155{bottom:918.510000px;}
.y50{bottom:921.390000px;}
.y1be{bottom:922.290000px;}
.y135{bottom:923.010000px;}
.y190{bottom:931.470000px;}
.ye4{bottom:932.010000px;}
.ybb{bottom:933.810000px;}
.y3f{bottom:935.250000px;}
.y119{bottom:936.870000px;}
.y1bd{bottom:941.730000px;}
.y76{bottom:942.450000px;}
.y154{bottom:944.070000px;}
.y173{bottom:947.130000px;}
.y18e{bottom:951.810000px;}
.y9b{bottom:952.890000px;}
.y4f{bottom:953.970000px;}
.ye3{bottom:956.310000px;}
.yba{bottom:959.190000px;}
.y1f{bottom:960.270000px;}
.y118{bottom:961.170000px;}
.y1bc{bottom:961.350000px;}
.y5{bottom:962.970000px;}
.y75{bottom:964.590000px;}
.y3e{bottom:966.930000px;}
.y153{bottom:972.510000px;}
.y172{bottom:974.490000px;}
.y9a{bottom:977.190000px;}
.y18d{bottom:978.990000px;}
.y1bb{bottom:980.970000px;}
.yb9{bottom:983.490000px;}
.yf8{bottom:984.390000px;}
.y117{bottom:985.470000px;}
.ye2{bottom:987.810000px;}
.y4e{bottom:995.910000px;}
.y3d{bottom:998.790000px;}
.y1ba{bottom:1000.410000px;}
.y99{bottom:1001.130000px;}
.y134{bottom:1007.790000px;}
.yb8{bottom:1008.690000px;}
.y116{bottom:1009.590000px;}
.yf7{bottom:1009.770000px;}
.y171{bottom:1010.670000px;}
.y1e{bottom:1012.110000px;}
.y4{bottom:1012.290000px;}
.y4d{bottom:1020.030000px;}
.ye1{bottom:1029.210000px;}
.y98{bottom:1029.390000px;}
.y74{bottom:1029.930000px;}
.yb7{bottom:1033.890000px;}
.y3c{bottom:1034.970000px;}
.y4c{bottom:1039.470000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.h16{height:19.440000px;}
.h19{height:19.476000px;}
.h18{height:19.620000px;}
.h1a{height:19.800000px;}
.hc{height:21.420000px;}
.h10{height:21.456000px;}
.he{height:21.600000px;}
.h12{height:21.636000px;}
.h4{height:22.500000px;}
.h15{height:39.313477px;}
.h17{height:39.830273px;}
.h5{height:42.300000px;}
.h11{height:43.020000px;}
.hf{height:43.056000px;}
.h8{height:43.506914px;}
.hb{height:44.149219px;}
.hd{height:48.224531px;}
.h1{height:60.960938px;}
.ha{height:64.620000px;}
.h3{height:71.324297px;}
.h13{height:71.824219px;}
.h14{height:74.004654px;}
.h7{height:81.078047px;}
.h6{height:98.051133px;}
.h9{height:98.426190px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.w4{width:38.700000px;}
.w7{width:75.780000px;}
.w8{width:126.936000px;}
.w3{width:174.630000px;}
.w2{width:174.780000px;}
.wa{width:179.850000px;}
.w5{width:265.710000px;}
.w6{width:286.455000px;}
.w9{width:337.215000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.xc{left:9.360000px;}
.x10{left:49.140000px;}
.x23{left:71.820000px;}
.xe{left:93.234000px;}
.x2{left:108.035986px;}
.x13{left:109.295986px;}
.x8{left:124.595986px;}
.x17{left:129.275986px;}
.x21{left:132.525000px;}
.x14{left:135.035986px;}
.x9{left:140.975986px;}
.xd{left:148.176000px;}
.xa{left:162.029986px;}
.xb{left:180.029986px;}
.x16{left:189.029986px;}
.x1b{left:216.029986px;}
.x20{left:224.670000px;}
.x1d{left:243.029986px;}
.x1f{left:256.889986px;}
.x1{left:266.609986px;}
.x5{left:284.430000px;}
.x1e{left:297.074986px;}
.x3{left:322.814986px;}
.x19{left:376.454986px;}
.x15{left:406.154986px;}
.xf{left:414.615000px;}
.x6{left:459.975000px;}
.x1a{left:489.884986px;}
.x22{left:562.605000px;}
.x7{left:635.505000px;}
.x18{left:676.049986px;}
.x11{left:701.790000px;}
.x1c{left:767.309986px;}
.x12{left:778.290000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:16.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.227200pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000003pt;}
.lsd{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.203733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls0{letter-spacing:3.957333pt;}
.ls11{letter-spacing:4.480000pt;}
.lsb{letter-spacing:33.386667pt;}
.lsc{letter-spacing:48.746667pt;}
.ls17{letter-spacing:48.768000pt;}
.ls16{letter-spacing:57.088000pt;}
.ls5{letter-spacing:73.446400pt;}
.ls7{letter-spacing:102.395307pt;}
.ls18{letter-spacing:125.546667pt;}
.ls12{letter-spacing:144.746667pt;}
.ls13{letter-spacing:144.768000pt;}
.ls3{letter-spacing:148.945067pt;}
.ls15{letter-spacing:153.088000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws14{word-spacing:-53.120000pt;}
.wsf{word-spacing:-38.400000pt;}
.ws9{word-spacing:-35.328000pt;}
.ws8{word-spacing:-35.200000pt;}
.ws0{word-spacing:-32.806400pt;}
.ws13{word-spacing:-32.000000pt;}
.ws12{word-spacing:-20.736000pt;}
.ws1{word-spacing:-20.430933pt;}
.wsa{word-spacing:-16.246400pt;}
.ws5{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.272000pt;}
.wse{word-spacing:-14.208000pt;}
.ws11{word-spacing:-14.144000pt;}
.wsb{word-spacing:-14.080003pt;}
.ws2{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.888000pt;}
.ws6{word-spacing:-13.824000pt;}
.ws10{word-spacing:-9.433600pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._10{margin-left:-10.336000pt;}
._23{margin-left:-8.464640pt;}
._e{margin-left:-7.552000pt;}
._4{margin-left:-5.815680pt;}
._7{margin-left:-4.347093pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._b{margin-left:-0.896000pt;}
._c{width:1.034667pt;}
._12{width:2.063573pt;}
._8{width:3.519360pt;}
._9{width:4.717440pt;}
._a{width:6.178347pt;}
._1b{width:7.256107pt;}
._1a{width:8.768000pt;}
._19{width:9.728000pt;}
._13{width:11.200000pt;}
._14{width:12.352000pt;}
._18{width:14.901120pt;}
._16{width:15.956480pt;}
._21{width:18.240000pt;}
._22{width:19.210667pt;}
._1e{width:20.544000pt;}
._1d{width:26.624000pt;}
._1c{width:27.520000pt;}
._17{width:38.919680pt;}
._15{width:41.441280pt;}
._f{width:42.944000pt;}
._1f{width:45.120000pt;}
._20{width:46.016000pt;}
._3{width:62.033920pt;}
._6{width:71.906347pt;}
._5{width:93.349120pt;}
._11{width:749.412267pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:3.520000pt;}
.y20{bottom:4.800000pt;}
.y19d{bottom:5.120000pt;}
.y18f{bottom:6.080000pt;}
.y1a5{bottom:6.106667pt;}
.y192{bottom:6.240000pt;}
.y19c{bottom:6.400000pt;}
.y5c{bottom:6.880000pt;}
.y5a{bottom:7.040000pt;}
.y85{bottom:7.066667pt;}
.y22{bottom:22.400000pt;}
.y59{bottom:26.080000pt;}
.y61{bottom:26.106667pt;}
.y58{bottom:45.280000pt;}
.y3{bottom:51.360000pt;}
.y152{bottom:100.992000pt;}
.y115{bottom:106.912000pt;}
.y1b9{bottom:111.392000pt;}
.y73{bottom:114.912000pt;}
.yb6{bottom:121.472000pt;}
.y151{bottom:123.552000pt;}
.y3b{bottom:123.712000pt;}
.yf6{bottom:124.512000pt;}
.y18c{bottom:127.392000pt;}
.y114{bottom:128.512000pt;}
.y1b8{bottom:128.672000pt;}
.y72{bottom:134.746667pt;}
.y170{bottom:136.986667pt;}
.yf5{bottom:145.946667pt;}
.y1b7{bottom:146.106667pt;}
.y97{bottom:146.746667pt;}
.yb5{bottom:149.626667pt;}
.y113{bottom:150.106667pt;}
.y71{bottom:154.426667pt;}
.y18b{bottom:155.546667pt;}
.y3a{bottom:156.026667pt;}
.y133{bottom:156.826667pt;}
.y1d{bottom:157.466667pt;}
.y16f{bottom:158.586667pt;}
.y1b6{bottom:163.386667pt;}
.y150{bottom:168.346667pt;}
.y112{bottom:171.706667pt;}
.yb4{bottom:172.026667pt;}
.y96{bottom:173.626667pt;}
.yf4{bottom:174.106667pt;}
.y70{bottom:174.266667pt;}
.y1c{bottom:176.346667pt;}
.y18a{bottom:178.426667pt;}
.y16e{bottom:180.186667pt;}
.y1b5{bottom:180.826667pt;}
.y132{bottom:185.146667pt;}
.y39{bottom:188.186667pt;}
.y14f{bottom:190.906667pt;}
.ycd{bottom:192.826667pt;}
.y111{bottom:193.146667pt;}
.y6f{bottom:193.946667pt;}
.yb3{bottom:194.426667pt;}
.y95{bottom:194.906667pt;}
.y1b{bottom:195.066667pt;}
.yf3{bottom:195.546667pt;}
.y1b4{bottom:198.266667pt;}
.y189{bottom:200.026667pt;}
.y16d{bottom:204.346667pt;}
.y94{bottom:206.746667pt;}
.ye0{bottom:212.506667pt;}
.y14e{bottom:213.306667pt;}
.y1a{bottom:213.786667pt;}
.y1b3{bottom:215.546667pt;}
.y110{bottom:215.706667pt;}
.yb2{bottom:216.986667pt;}
.y38{bottom:220.506667pt;}
.ycc{bottom:220.986667pt;}
.y188{bottom:221.306667pt;}
.yf2{bottom:223.706667pt;}
.y93{bottom:226.586667pt;}
.y19{bottom:232.506667pt;}
.y6e{bottom:232.826667pt;}
.y1b2{bottom:232.986667pt;}
.y131{bottom:234.586667pt;}
.y14d{bottom:235.866667pt;}
.y16c{bottom:236.666667pt;}
.y10f{bottom:238.106667pt;}
.yb1{bottom:239.386667pt;}
.ydf{bottom:240.666667pt;}
.ycb{bottom:242.426667pt;}
.yf1{bottom:245.306667pt;}
.y187{bottom:246.266667pt;}
.y92{bottom:246.426667pt;}
.y37{bottom:248.666667pt;}
.y1b1{bottom:250.266667pt;}
.y18{bottom:251.386667pt;}
.y6d{bottom:252.666667pt;}
.y14c{bottom:257.466667pt;}
.y16b{bottom:258.266667pt;}
.y130{bottom:259.706667pt;}
.yb0{bottom:261.786667pt;}
.yde{bottom:262.266667pt;}
.yca{bottom:264.986667pt;}
.y91{bottom:266.106667pt;}
.yf0{bottom:266.906667pt;}
.y1b0{bottom:267.706667pt;}
.y17{bottom:270.106667pt;}
.y36{bottom:270.266667pt;}
.y10e{bottom:271.226667pt;}
.y6c{bottom:272.506667pt;}
.y14b{bottom:278.906667pt;}
.y16a{bottom:282.466667pt;}
.y186{bottom:283.426667pt;}
.yaf{bottom:284.386667pt;}
.y1af{bottom:285.026667pt;}
.y90{bottom:285.986667pt;}
.yc9{bottom:286.626667pt;}
.yef{bottom:288.546667pt;}
.ydd{bottom:290.306667pt;}
.y6b{bottom:292.226667pt;}
.y10d{bottom:292.706667pt;}
.y12f{bottom:295.266667pt;}
.y35{bottom:298.626667pt;}
.y16{bottom:302.306667pt;}
.y1ae{bottom:302.466667pt;}
.y14a{bottom:304.066667pt;}
.y8f{bottom:305.666667pt;}
.yc8{bottom:309.026667pt;}
.yae{bottom:309.346667pt;}
.yee{bottom:310.146667pt;}
.y169{bottom:310.466667pt;}
.y185{bottom:311.746667pt;}
.y6a{bottom:312.066667pt;}
.y12e{bottom:314.306667pt;}
.y10c{bottom:320.866667pt;}
.y15{bottom:323.906667pt;}
.ydc{bottom:324.866667pt;}
.y8e{bottom:325.506667pt;}
.y34{bottom:326.786667pt;}
.y1ad{bottom:327.426667pt;}
.yc7{bottom:330.626667pt;}
.y149{bottom:330.786667pt;}
.yed{bottom:331.586667pt;}
.y69{bottom:331.746667pt;}
.y184{bottom:335.906667pt;}
.yad{bottom:336.226667pt;}
.y10b{bottom:342.466667pt;}
.y12d{bottom:343.586667pt;}
.y168{bottom:345.186667pt;}
.y8d{bottom:345.346667pt;}
.y14{bottom:345.506667pt;}
.y68{bottom:351.586667pt;}
.yc6{bottom:353.186667pt;}
.ydb{bottom:354.306667pt;}
.y33{bottom:355.106667pt;}
.y148{bottom:359.106667pt;}
.yac{bottom:364.386667pt;}
.y1ac{bottom:364.546667pt;}
.y8c{bottom:365.026667pt;}
.y167{bottom:366.786667pt;}
.y183{bottom:368.226667pt;}
.y67{bottom:371.266667pt;}
.yc5{bottom:374.626667pt;}
.yec{bottom:374.786667pt;}
.yda{bottom:375.906667pt;}
.y1ab{bottom:376.386667pt;}
.y13{bottom:377.666667pt;}
.y147{bottom:380.546667pt;}
.y8b{bottom:384.866667pt;}
.y12c{bottom:386.626667pt;}
.yab{bottom:386.786667pt;}
.y32{bottom:387.266667pt;}
.y166{bottom:389.186667pt;}
.y182{bottom:389.826667pt;}
.y66{bottom:391.106667pt;}
.y1aa{bottom:394.466667pt;}
.yeb{bottom:396.226667pt;}
.yc4{bottom:397.026667pt;}
.y8a{bottom:404.546667pt;}
.y10a{bottom:406.946667pt;}
.y12b{bottom:408.226667pt;}
.y146{bottom:408.706667pt;}
.y31{bottom:408.866667pt;}
.yd9{bottom:409.026667pt;}
.y12{bottom:409.986667pt;}
.y65{bottom:410.946667pt;}
.y181{bottom:411.426667pt;}
.y165{bottom:411.746667pt;}
.y1a9{bottom:412.546667pt;}
.yea{bottom:413.026667pt;}
.yaa{bottom:420.066667pt;}
.yc3{bottom:422.146667pt;}
.y89{bottom:424.386667pt;}
.ye9{bottom:428.706667pt;}
.y12a{bottom:429.666667pt;}
.y145{bottom:430.306667pt;}
.y64{bottom:430.626667pt;}
.y180{bottom:432.866667pt;}
.y164{bottom:433.346667pt;}
.y109{bottom:439.106667pt;}
.ye8{bottom:440.866667pt;}
.y30{bottom:441.026667pt;}
.y11{bottom:442.146667pt;}
.y88{bottom:444.066667pt;}
.ya9{bottom:444.226667pt;}
.y1a8{bottom:448.546667pt;}
.yc2{bottom:449.026667pt;}
.y63{bottom:450.466667pt;}
.y144{bottom:451.906667pt;}
.yd8{bottom:452.066667pt;}
.y163{bottom:454.786667pt;}
.y17f{bottom:457.026667pt;}
.y4b{bottom:459.266667pt;}
.y108{bottom:461.666667pt;}
.y87{bottom:463.906667pt;}
.yc1{bottom:466.306667pt;}
.y1a7{bottom:466.626667pt;}
.y2f{bottom:469.346667pt;}
.y62{bottom:470.146667pt;}
.yd7{bottom:472.226667pt;}
.y10{bottom:474.466667pt;}
.ya8{bottom:476.546667pt;}
.y129{bottom:480.226667pt;}
.yc0{bottom:483.266667pt;}
.y86{bottom:483.746667pt;}
.y17e{bottom:483.906667pt;}
.y107{bottom:484.066667pt;}
.y1a6{bottom:484.706667pt;}
.y162{bottom:488.066667pt;}
.y60{bottom:489.986667pt;}
.y4a{bottom:492.546667pt;}
.y2e{bottom:497.506667pt;}
.ya7{bottom:497.986667pt;}
.ybf{bottom:498.946667pt;}
.y128{bottom:501.826667pt;}
.y1a4{bottom:502.786667pt;}
.y84{bottom:503.426667pt;}
.yd6{bottom:504.546667pt;}
.y143{bottom:505.533333pt;}
.y106{bottom:505.693333pt;}
.yf{bottom:506.653333pt;}
.y161{bottom:509.533333pt;}
.ybe{bottom:510.973333pt;}
.y17d{bottom:512.093333pt;}
.ya6{bottom:520.573333pt;}
.y1a3{bottom:520.733333pt;}
.y49{bottom:520.893333pt;}
.y83{bottom:523.293333pt;}
.y127{bottom:523.453333pt;}
.y2d{bottom:525.853333pt;}
.yd5{bottom:526.013333pt;}
.y105{bottom:528.093333pt;}
.y5f{bottom:528.893333pt;}
.y142{bottom:533.693333pt;}
.y160{bottom:537.533333pt;}
.y1a2{bottom:538.813333pt;}
.ye{bottom:538.973333pt;}
.y1cd{bottom:541.853333pt;}
.y82{bottom:542.973333pt;}
.y126{bottom:545.053333pt;}
.yd4{bottom:548.573333pt;}
.y5e{bottom:548.733333pt;}
.y48{bottom:549.053333pt;}
.y104{bottom:550.653333pt;}
.ya5{bottom:553.693333pt;}
.y141{bottom:555.293333pt;}
.y1a1{bottom:556.893333pt;}
.y2c{bottom:558.013333pt;}
.y1cc{bottom:559.133333pt;}
.y81{bottom:562.813333pt;}
.y125{bottom:566.653333pt;}
.y5d{bottom:568.413333pt;}
.yd3{bottom:570.173333pt;}
.yd{bottom:571.133333pt;}
.y103{bottom:572.093333pt;}
.y15f{bottom:572.253333pt;}
.y1a0{bottom:574.813333pt;}
.y1cb{bottom:576.573333pt;}
.y140{bottom:576.893333pt;}
.y47{bottom:577.373333pt;}
.y17c{bottom:579.453333pt;}
.y80{bottom:582.653333pt;}
.ya4{bottom:585.853333pt;}
.y124{bottom:588.093333pt;}
.y5b{bottom:588.253333pt;}
.y2b{bottom:590.333333pt;}
.yd2{bottom:591.613333pt;}
.y19f{bottom:592.893333pt;}
.y1ca{bottom:594.013333pt;}
.y102{bottom:594.653333pt;}
.y13f{bottom:598.493333pt;}
.y7f{bottom:602.333333pt;}
.yc{bottom:603.453333pt;}
.y15e{bottom:604.413333pt;}
.y17b{bottom:606.173333pt;}
.y57{bottom:607.933333pt;}
.y46{bottom:609.533333pt;}
.y123{bottom:609.693333pt;}
.ya3{bottom:610.973333pt;}
.y1c9{bottom:611.293333pt;}
.yd1{bottom:613.213333pt;}
.y101{bottom:616.253333pt;}
.y2a{bottom:618.493333pt;}
.y13e{bottom:619.933333pt;}
.y7e{bottom:622.173333pt;}
.y15d{bottom:626.973333pt;}
.y1c8{bottom:628.733333pt;}
.y19e{bottom:629.053333pt;}
.y122{bottom:631.933333pt;}
.y17a{bottom:634.493333pt;}
.yd0{bottom:634.813333pt;}
.yb{bottom:635.613333pt;}
.y100{bottom:637.853333pt;}
.ya2{bottom:638.013333pt;}
.y13d{bottom:641.533333pt;}
.y45{bottom:641.853333pt;}
.y1c7{bottom:646.013333pt;}
.y29{bottom:646.813333pt;}
.y19b{bottom:647.293333pt;}
.y15c{bottom:648.573333pt;}
.y179{bottom:656.093333pt;}
.ycf{bottom:657.053333pt;}
.yff{bottom:659.293333pt;}
.y121{bottom:660.253333pt;}
.y7d{bottom:661.053333pt;}
.y13c{bottom:663.133333pt;}
.y1c6{bottom:663.453333pt;}
.y19a{bottom:665.533333pt;}
.ya{bottom:668.893333pt;}
.ya1{bottom:670.173333pt;}
.y15b{bottom:673.693333pt;}
.y44{bottom:674.013333pt;}
.y28{bottom:674.973333pt;}
.y178{bottom:677.533333pt;}
.y7c{bottom:680.733333pt;}
.y120{bottom:681.853333pt;}
.y56{bottom:682.973333pt;}
.y199{bottom:683.613333pt;}
.y13b{bottom:685.533333pt;}
.yce{bottom:686.173333pt;}
.yfe{bottom:692.573333pt;}
.ya0{bottom:694.493333pt;}
.y1c5{bottom:698.173333pt;}
.y177{bottom:699.133333pt;}
.y7b{bottom:700.573333pt;}
.y198{bottom:701.693333pt;}
.y27{bottom:703.293333pt;}
.y11f{bottom:703.453333pt;}
.y9{bottom:703.773333pt;}
.y55{bottom:704.573333pt;}
.y15a{bottom:706.013333pt;}
.y43{bottom:706.333333pt;}
.y13a{bottom:707.933333pt;}
.yfd{bottom:713.853333pt;}
.y1c4{bottom:715.613333pt;}
.y197{bottom:719.773333pt;}
.y7a{bottom:720.413333pt;}
.y176{bottom:720.733333pt;}
.y9f{bottom:722.333333pt;}
.y11e{bottom:724.893333pt;}
.y54{bottom:726.013333pt;}
.y159{bottom:727.453333pt;}
.y139{bottom:730.533333pt;}
.y1c3{bottom:732.933333pt;}
.y26{bottom:735.973333pt;}
.y8{bottom:737.093333pt;}
.y196{bottom:737.733333pt;}
.y42{bottom:738.533333pt;}
.y79{bottom:740.133333pt;}
.yfc{bottom:742.213333pt;}
.y175{bottom:745.093333pt;}
.y11d{bottom:746.533333pt;}
.y9e{bottom:747.653333pt;}
.y158{bottom:749.893333pt;}
.y1c2{bottom:750.373333pt;}
.y138{bottom:752.133333pt;}
.y53{bottom:754.213333pt;}
.y195{bottom:755.813333pt;}
.ye7{bottom:757.093333pt;}
.yfb{bottom:763.653333pt;}
.y1c1{bottom:767.653333pt;}
.y11c{bottom:768.133333pt;}
.y7{bottom:768.453333pt;}
.y41{bottom:770.853333pt;}
.y157{bottom:772.453333pt;}
.y9d{bottom:772.773333pt;}
.y137{bottom:773.733333pt;}
.y194{bottom:773.893333pt;}
.y52{bottom:775.813333pt;}
.y174{bottom:777.253333pt;}
.y25{bottom:778.853333pt;}
.y78{bottom:779.013333pt;}
.y1c0{bottom:785.093333pt;}
.ye6{bottom:785.413333pt;}
.yfa{bottom:786.053333pt;}
.ybd{bottom:786.213333pt;}
.y11b{bottom:789.733333pt;}
.y193{bottom:791.813333pt;}
.y24{bottom:794.693333pt;}
.y156{bottom:794.853333pt;}
.y136{bottom:795.173333pt;}
.y51{bottom:797.413333pt;}
.y77{bottom:798.853333pt;}
.y1bf{bottom:802.373333pt;}
.y40{bottom:803.013333pt;}
.ye5{bottom:807.013333pt;}
.ybc{bottom:807.653333pt;}
.yf9{bottom:808.613333pt;}
.y9c{bottom:809.573333pt;}
.y191{bottom:809.893333pt;}
.y11a{bottom:811.333333pt;}
.y6{bottom:812.293333pt;}
.y21{bottom:815.333333pt;}
.y155{bottom:816.453333pt;}
.y50{bottom:819.013333pt;}
.y1be{bottom:819.813333pt;}
.y135{bottom:820.453333pt;}
.y190{bottom:827.973333pt;}
.ye4{bottom:828.453333pt;}
.ybb{bottom:830.053333pt;}
.y3f{bottom:831.333333pt;}
.y119{bottom:832.773333pt;}
.y1bd{bottom:837.093333pt;}
.y76{bottom:837.733333pt;}
.y154{bottom:839.173333pt;}
.y173{bottom:841.893333pt;}
.y18e{bottom:846.053333pt;}
.y9b{bottom:847.013333pt;}
.y4f{bottom:847.973333pt;}
.ye3{bottom:850.053333pt;}
.yba{bottom:852.613333pt;}
.y1f{bottom:853.573333pt;}
.y118{bottom:854.373333pt;}
.y1bc{bottom:854.533333pt;}
.y5{bottom:855.973333pt;}
.y75{bottom:857.413333pt;}
.y3e{bottom:859.493333pt;}
.y153{bottom:864.453333pt;}
.y172{bottom:866.213333pt;}
.y9a{bottom:868.613333pt;}
.y18d{bottom:870.213333pt;}
.y1bb{bottom:871.973333pt;}
.yb9{bottom:874.213333pt;}
.yf8{bottom:875.013333pt;}
.y117{bottom:875.973333pt;}
.ye2{bottom:878.053333pt;}
.y4e{bottom:885.253333pt;}
.y3d{bottom:887.813333pt;}
.y1ba{bottom:889.253333pt;}
.y99{bottom:889.893333pt;}
.y134{bottom:895.813333pt;}
.yb8{bottom:896.613333pt;}
.y116{bottom:897.413333pt;}
.yf7{bottom:897.573333pt;}
.y171{bottom:898.373333pt;}
.y1e{bottom:899.653333pt;}
.y4{bottom:899.813333pt;}
.y4d{bottom:906.693333pt;}
.ye1{bottom:914.853333pt;}
.y98{bottom:915.013333pt;}
.y74{bottom:915.493333pt;}
.yb7{bottom:919.013333pt;}
.y3c{bottom:919.973333pt;}
.y4c{bottom:923.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.h16{height:17.280000pt;}
.h19{height:17.312000pt;}
.h18{height:17.440000pt;}
.h1a{height:17.600000pt;}
.hc{height:19.040000pt;}
.h10{height:19.072000pt;}
.he{height:19.200000pt;}
.h12{height:19.232000pt;}
.h4{height:20.000000pt;}
.h15{height:34.945312pt;}
.h17{height:35.404688pt;}
.h5{height:37.600000pt;}
.h11{height:38.240000pt;}
.hf{height:38.272000pt;}
.h8{height:38.672812pt;}
.hb{height:39.243750pt;}
.hd{height:42.866250pt;}
.h1{height:54.187500pt;}
.ha{height:57.440000pt;}
.h3{height:63.399375pt;}
.h13{height:63.843750pt;}
.h14{height:65.781915pt;}
.h7{height:72.069375pt;}
.h6{height:87.156562pt;}
.h9{height:87.489947pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.w4{width:34.400000pt;}
.w7{width:67.360000pt;}
.w8{width:112.832000pt;}
.w3{width:155.226667pt;}
.w2{width:155.360000pt;}
.wa{width:159.866667pt;}
.w5{width:236.186667pt;}
.w6{width:254.626667pt;}
.w9{width:299.746667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.xc{left:8.320000pt;}
.x10{left:43.680000pt;}
.x23{left:63.840000pt;}
.xe{left:82.874667pt;}
.x2{left:96.031988pt;}
.x13{left:97.151988pt;}
.x8{left:110.751988pt;}
.x17{left:114.911988pt;}
.x21{left:117.800000pt;}
.x14{left:120.031988pt;}
.x9{left:125.311988pt;}
.xd{left:131.712000pt;}
.xa{left:144.026655pt;}
.xb{left:160.026655pt;}
.x16{left:168.026655pt;}
.x1b{left:192.026655pt;}
.x20{left:199.706667pt;}
.x1d{left:216.026655pt;}
.x1f{left:228.346655pt;}
.x1{left:236.986655pt;}
.x5{left:252.826667pt;}
.x1e{left:264.066655pt;}
.x3{left:286.946655pt;}
.x19{left:334.626655pt;}
.x15{left:361.026655pt;}
.xf{left:368.546667pt;}
.x6{left:408.866667pt;}
.x1a{left:435.453321pt;}
.x22{left:500.093333pt;}
.x7{left:564.893333pt;}
.x18{left:600.933321pt;}
.x11{left:623.813333pt;}
.x1c{left:682.053321pt;}
.x12{left:691.813333pt;}
}




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