
    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_9758510c59bae3a8722825a5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_1390a1c36a3cf4981b8ae3c1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7c8ec44cc74684e06c3e9c35.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_399c0c068b1f8b32b7dfe806.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_59c517336c79b347652981a6.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a0aff42366cd48e5a821059e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:24.120000px;}
.lsa{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.139800px;}
.lse{letter-spacing:0.153600px;}
.lsb{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.206400px;}
.ls10{letter-spacing:1.890000px;}
.ls12{letter-spacing:16.406640px;}
.lsc{letter-spacing:31.410000px;}
.ls9{letter-spacing:32.850000px;}
.ls2{letter-spacing:36.926640px;}
.ls1{letter-spacing:41.148000px;}
.ls11{letter-spacing:46.286640px;}
.lsd{letter-spacing:55.286640px;}
.ls7{letter-spacing:63.566640px;}
.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;}
}
.ws3{word-spacing:-60.120000px;}
.ws6{word-spacing:-15.210000px;}
.ws8{word-spacing:-15.183600px;}
.ws7{word-spacing:-15.169800px;}
.ws0{word-spacing:-15.030000px;}
.ws5{word-spacing:-14.850000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws9{word-spacing:-0.060120px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._3{width:1.375680px;}
._b{width:2.666520px;}
._c{width:4.328640px;}
._11{width:5.771520px;}
._14{width:7.515000px;}
._5{width:9.078120px;}
._9{width:10.941840px;}
._f{width:12.745440px;}
._10{width:13.914360px;}
._e{width:16.172280px;}
._d{width:17.254440px;}
._15{width:18.276480px;}
._a{width:19.659240px;}
._12{width:21.218760px;}
._19{width:23.206320px;}
._21{width:24.408720px;}
._16{width:26.272440px;}
._17{width:27.534960px;}
._18{width:28.917720px;}
._1d{width:29.999880px;}
._1b{width:31.142160px;}
._6{width:32.224320px;}
._7{width:33.246360px;}
._8{width:34.268400px;}
._26{width:36.011880px;}
._30{width:38.116080px;}
._1e{width:39.198240px;}
._1a{width:40.581000px;}
._23{width:42.384600px;}
._1c{width:44.368560px;}
._29{width:46.435320px;}
._22{width:47.475000px;}
._2f{width:48.637080px;}
._2c{width:49.899600px;}
._2b{width:50.981760px;}
._20{width:53.266320px;}
._2d{width:54.949680px;}
._2e{width:56.572920px;}
._24{width:57.775320px;}
._2a{width:59.366400px;}
._25{width:60.841440px;}
._28{width:62.344440px;}
._27{width:63.907560px;}
._31{width:65.109960px;}
._1f{width:68.416560px;}
._34{width:72.925560px;}
._32{width:75.931560px;}
._13{width:125.334000px;}
._2{width:130.455480px;}
._35{width:138.095640px;}
._33{width:202.544280px;}
._1{width:341.548680px;}
._36{width:350.980560px;}
._4{width:982.989240px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.700000px;}
.y14{bottom:3.240000px;}
.y38{bottom:6.030000px;}
.y4{bottom:8.460000px;}
.y3e{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.470000px;}
.y36{bottom:19.350000px;}
.y2d{bottom:20.430000px;}
.y1d8{bottom:20.520000px;}
.y3d{bottom:25.110000px;}
.y7{bottom:35.550000px;}
.y35{bottom:35.760000px;}
.y2c{bottom:37.710000px;}
.y3c{bottom:40.590000px;}
.y34{bottom:51.330000px;}
.y2b{bottom:54.990000px;}
.y3b{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.y33{bottom:66.810000px;}
.y40{bottom:67.230000px;}
.y3a{bottom:71.640000px;}
.y2a{bottom:72.180000px;}
.y1d7{bottom:72.270000px;}
.y32{bottom:82.380000px;}
.y29{bottom:89.460000px;}
.y31{bottom:97.860000px;}
.y28{bottom:106.740000px;}
.yd1{bottom:113.220000px;}
.y30{bottom:113.430000px;}
.y1b3{bottom:115.380000px;}
.y101{bottom:116.460000px;}
.y1c8{bottom:118.620000px;}
.y7e{bottom:119.700000px;}
.y48{bottom:120.690000px;}
.y12b{bottom:120.780000px;}
.y27{bottom:123.930000px;}
.y179{bottom:125.100000px;}
.y159{bottom:127.260000px;}
.y2f{bottom:128.910000px;}
.yd0{bottom:130.500000px;}
.y1b2{bottom:132.660000px;}
.y100{bottom:133.740000px;}
.y1c7{bottom:135.810000px;}
.y7d{bottom:136.890000px;}
.y191{bottom:136.980000px;}
.y47{bottom:137.970000px;}
.y12a{bottom:138.060000px;}
.y26{bottom:141.210000px;}
.y178{bottom:142.290000px;}
.y158{bottom:144.450000px;}
.ycf{bottom:147.690000px;}
.y1b1{bottom:149.850000px;}
.yff{bottom:150.930000px;}
.y1c6{bottom:153.090000px;}
.y7c{bottom:154.170000px;}
.y46{bottom:155.250000px;}
.y25{bottom:158.490000px;}
.y177{bottom:159.600000px;}
.y157{bottom:161.760000px;}
.yce{bottom:165.000000px;}
.y1b0{bottom:167.160000px;}
.yfe{bottom:168.240000px;}
.y1c5{bottom:170.400000px;}
.y3f{bottom:170.460000px;}
.y7b{bottom:171.480000px;}
.y45{bottom:172.470000px;}
.y190{bottom:172.560000px;}
.y129{bottom:173.640000px;}
.y24{bottom:175.680000px;}
.y176{bottom:176.880000px;}
.y156{bottom:179.040000px;}
.ycd{bottom:183.360000px;}
.y1af{bottom:185.430000px;}
.yfd{bottom:186.600000px;}
.y1c4{bottom:187.590000px;}
.y7a{bottom:188.670000px;}
.y44{bottom:189.750000px;}
.y18f{bottom:189.840000px;}
.y128{bottom:190.830000px;}
.y23{bottom:192.960000px;}
.y175{bottom:194.070000px;}
.y155{bottom:197.310000px;}
.ycc{bottom:200.550000px;}
.y1ae{bottom:202.710000px;}
.yfc{bottom:203.790000px;}
.y1c3{bottom:204.870000px;}
.y79{bottom:205.950000px;}
.y43{bottom:207.030000px;}
.y127{bottom:208.110000px;}
.y22{bottom:210.240000px;}
.y174{bottom:212.430000px;}
.y154{bottom:215.670000px;}
.ycb{bottom:218.910000px;}
.y1ad{bottom:219.990000px;}
.yfb{bottom:222.150000px;}
.y78{bottom:223.230000px;}
.y42{bottom:224.220000px;}
.y18e{bottom:225.390000px;}
.y126{bottom:226.470000px;}
.y21{bottom:227.430000px;}
.y173{bottom:229.710000px;}
.y153{bottom:232.950000px;}
.yca{bottom:236.100000px;}
.y1ac{bottom:237.180000px;}
.y1d4{bottom:238.980000px;}
.y1c2{bottom:239.340000px;}
.yfa{bottom:239.430000px;}
.y77{bottom:240.420000px;}
.y41{bottom:241.140000px;}
.y18d{bottom:242.580000px;}
.y125{bottom:243.660000px;}
.y20{bottom:244.710000px;}
.y172{bottom:246.900000px;}
.y152{bottom:250.140000px;}
.yc9{bottom:254.460000px;}
.y15{bottom:254.550000px;}
.y1d3{bottom:256.260000px;}
.y1c1{bottom:256.620000px;}
.y9b{bottom:257.700000px;}
.y76{bottom:258.780000px;}
.y18c{bottom:259.860000px;}
.y1f{bottom:261.990000px;}
.y124{bottom:262.020000px;}
.y171{bottom:264.180000px;}
.y151{bottom:267.420000px;}
.yc8{bottom:271.740000px;}
.y1d2{bottom:273.450000px;}
.y1c0{bottom:273.900000px;}
.y75{bottom:276.060000px;}
.y18b{bottom:278.220000px;}
.y1e{bottom:279.180000px;}
.y123{bottom:279.300000px;}
.y170{bottom:281.460000px;}
.y150{bottom:285.690000px;}
.y1ab{bottom:288.930000px;}
.yc7{bottom:290.010000px;}
.y1d1{bottom:290.730000px;}
.y1bf{bottom:291.090000px;}
.y9a{bottom:293.250000px;}
.y74{bottom:294.330000px;}
.y18a{bottom:295.410000px;}
.y1d{bottom:296.460000px;}
.y122{bottom:297.570000px;}
.y16f{bottom:298.650000px;}
.y14f{bottom:304.050000px;}
.y1aa{bottom:306.210000px;}
.yc6{bottom:307.290000px;}
.y1d0{bottom:308.010000px;}
.y1be{bottom:308.370000px;}
.y99{bottom:310.530000px;}
.y73{bottom:311.610000px;}
.y189{bottom:312.690000px;}
.y1c{bottom:313.740000px;}
.y121{bottom:315.930000px;}
.y14e{bottom:321.330000px;}
.yc5{bottom:324.570000px;}
.y1cf{bottom:325.200000px;}
.y1bd{bottom:325.650000px;}
.y98{bottom:327.720000px;}
.yf9{bottom:327.810000px;}
.y72{bottom:329.880000px;}
.y188{bottom:329.970000px;}
.y1b{bottom:330.960000px;}
.y120{bottom:333.210000px;}
.y14d{bottom:338.520000px;}
.yc4{bottom:341.760000px;}
.y1ce{bottom:342.480000px;}
.y1bc{bottom:342.840000px;}
.y97{bottom:345.000000px;}
.yf8{bottom:346.080000px;}
.y71{bottom:347.160000px;}
.y1a{bottom:348.240000px;}
.y11f{bottom:350.400000px;}
.y14c{bottom:355.800000px;}
.yc3{bottom:359.040000px;}
.y1cd{bottom:359.760000px;}
.y1bb{bottom:360.120000px;}
.y96{bottom:362.280000px;}
.yf7{bottom:364.440000px;}
.y19{bottom:365.430000px;}
.y70{bottom:365.520000px;}
.y11e{bottom:367.680000px;}
.y16e{bottom:368.760000px;}
.y14b{bottom:373.080000px;}
.yc2{bottom:376.320000px;}
.y1cc{bottom:376.950000px;}
.y1ba{bottom:377.400000px;}
.y95{bottom:379.470000px;}
.y18{bottom:382.710000px;}
.yf6{bottom:382.800000px;}
.y11d{bottom:384.960000px;}
.y16d{bottom:385.950000px;}
.y14a{bottom:390.270000px;}
.y1a9{bottom:393.510000px;}
.y1cb{bottom:394.230000px;}
.yc1{bottom:394.590000px;}
.y94{bottom:397.830000px;}
.y17{bottom:399.990000px;}
.yf5{bottom:401.070000px;}
.y11c{bottom:403.230000px;}
.y16c{bottom:404.310000px;}
.y149{bottom:407.550000px;}
.y1a8{bottom:410.790000px;}
.y1ca{bottom:411.420000px;}
.yc0{bottom:411.870000px;}
.y93{bottom:415.110000px;}
.y16{bottom:417.180000px;}
.y6f{bottom:417.270000px;}
.yf4{bottom:418.350000px;}
.y11b{bottom:420.510000px;}
.y16b{bottom:421.590000px;}
.y148{bottom:424.830000px;}
.y1a7{bottom:428.070000px;}
.y1c9{bottom:428.700000px;}
.ybf{bottom:429.060000px;}
.y92{bottom:432.300000px;}
.y6e{bottom:434.460000px;}
.yf3{bottom:435.540000px;}
.y39{bottom:438.420000px;}
.y11a{bottom:438.780000px;}
.y16a{bottom:439.860000px;}
.y147{bottom:442.020000px;}
.y1d6{bottom:443.460000px;}
.y1a6{bottom:445.260000px;}
.y1b9{bottom:446.340000px;}
.ybe{bottom:447.420000px;}
.y91{bottom:449.580000px;}
.y6d{bottom:451.740000px;}
.yf2{bottom:452.820000px;}
.y119{bottom:457.140000px;}
.y146{bottom:459.300000px;}
.y1a5{bottom:462.540000px;}
.y1b8{bottom:463.620000px;}
.ybd{bottom:464.700000px;}
.y90{bottom:466.860000px;}
.y6c{bottom:469.020000px;}
.yf1{bottom:471.180000px;}
.y118{bottom:474.420000px;}
.y169{bottom:475.500000px;}
.y145{bottom:476.580000px;}
.y1a4{bottom:480.810000px;}
.ybc{bottom:481.890000px;}
.y8f{bottom:484.050000px;}
.y6b{bottom:486.210000px;}
.yf0{bottom:488.370000px;}
.y117{bottom:492.690000px;}
.y144{bottom:493.770000px;}
.y1a3{bottom:498.090000px;}
.ybb{bottom:499.170000px;}
.y8e{bottom:501.330000px;}
.y6a{bottom:503.490000px;}
.yef{bottom:505.650000px;}
.y116{bottom:509.970000px;}
.y143{bottom:511.050000px;}
.y1a2{bottom:515.370000px;}
.yba{bottom:516.450000px;}
.y8d{bottom:518.610000px;}
.y69{bottom:520.770000px;}
.y37{bottom:523.470000px;}
.yee{bottom:524.010000px;}
.y115{bottom:527.250000px;}
.y142{bottom:529.320000px;}
.y1a1{bottom:532.560000px;}
.yb9{bottom:533.640000px;}
.y8c{bottom:535.800000px;}
.y68{bottom:537.960000px;}
.yed{bottom:541.200000px;}
.y2e{bottom:544.260000px;}
.y114{bottom:544.440000px;}
.y141{bottom:546.600000px;}
.y1d5{bottom:547.680000px;}
.y1a0{bottom:549.840000px;}
.yb8{bottom:550.920000px;}
.y8b{bottom:554.160000px;}
.y67{bottom:555.240000px;}
.yec{bottom:558.480000px;}
.y187{bottom:559.560000px;}
.y113{bottom:561.720000px;}
.y168{bottom:562.800000px;}
.y140{bottom:563.880000px;}
.y19f{bottom:567.120000px;}
.yb7{bottom:568.200000px;}
.y8a{bottom:571.440000px;}
.y66{bottom:572.430000px;}
.yeb{bottom:575.790000px;}
.y186{bottom:576.870000px;}
.y112{bottom:580.020000px;}
.y13f{bottom:581.100000px;}
.y19e{bottom:584.340000px;}
.yb6{bottom:585.420000px;}
.y89{bottom:588.660000px;}
.y65{bottom:589.740000px;}
.yea{bottom:592.980000px;}
.y185{bottom:594.060000px;}
.y111{bottom:597.300000px;}
.y13e{bottom:598.380000px;}
.y19d{bottom:601.620000px;}
.yb5{bottom:602.700000px;}
.y88{bottom:605.940000px;}
.y64{bottom:607.020000px;}
.ye9{bottom:611.340000px;}
.y110{bottom:615.660000px;}
.y19c{bottom:618.900000px;}
.yb4{bottom:619.980000px;}
.y87{bottom:623.130000px;}
.y63{bottom:624.210000px;}
.ye8{bottom:628.620000px;}
.y10f{bottom:632.850000px;}
.y13d{bottom:633.930000px;}
.y1b7{bottom:636.090000px;}
.yb3{bottom:637.170000px;}
.y86{bottom:640.410000px;}
.y62{bottom:641.490000px;}
.ye7{bottom:646.890000px;}
.y167{bottom:650.130000px;}
.y10e{bottom:651.210000px;}
.y1b6{bottom:653.370000px;}
.yb2{bottom:654.450000px;}
.y85{bottom:657.690000px;}
.y61{bottom:658.770000px;}
.ye6{bottom:664.170000px;}
.y166{bottom:667.410000px;}
.y13c{bottom:668.490000px;}
.y10d{bottom:669.570000px;}
.y1b5{bottom:670.650000px;}
.yb1{bottom:671.730000px;}
.y84{bottom:674.880000px;}
.y60{bottom:675.960000px;}
.ye5{bottom:681.360000px;}
.y184{bottom:682.440000px;}
.y165{bottom:684.600000px;}
.y13b{bottom:685.680000px;}
.y13{bottom:686.490000px;}
.y10c{bottom:686.760000px;}
.y1b4{bottom:687.840000px;}
.y19b{bottom:688.920000px;}
.yb0{bottom:690.000000px;}
.y83{bottom:692.160000px;}
.y5f{bottom:693.240000px;}
.ye4{bottom:699.720000px;}
.y164{bottom:702.960000px;}
.y10b{bottom:704.040000px;}
.y19a{bottom:706.200000px;}
.yaf{bottom:707.280000px;}
.y82{bottom:709.440000px;}
.y5e{bottom:710.520000px;}
.ye3{bottom:717.000000px;}
.y183{bottom:718.080000px;}
.y163{bottom:720.240000px;}
.y12{bottom:721.140000px;}
.y10a{bottom:721.320000px;}
.y199{bottom:723.390000px;}
.yae{bottom:724.470000px;}
.y81{bottom:726.630000px;}
.y5d{bottom:727.710000px;}
.ye2{bottom:735.270000px;}
.y13a{bottom:738.510000px;}
.y109{bottom:739.590000px;}
.y198{bottom:740.670000px;}
.y11{bottom:741.030000px;}
.yad{bottom:741.750000px;}
.y80{bottom:743.910000px;}
.y5c{bottom:744.990000px;}
.ye1{bottom:752.550000px;}
.y139{bottom:755.790000px;}
.y108{bottom:756.870000px;}
.y197{bottom:757.950000px;}
.yac{bottom:759.030000px;}
.y7f{bottom:761.190000px;}
.y5b{bottom:762.270000px;}
.y10{bottom:769.470000px;}
.ye0{bottom:769.830000px;}
.y182{bottom:770.910000px;}
.y138{bottom:773.070000px;}
.y107{bottom:775.140000px;}
.yab{bottom:776.220000px;}
.y5a{bottom:779.460000px;}
.yf{bottom:787.020000px;}
.y181{bottom:788.100000px;}
.y137{bottom:790.260000px;}
.y162{bottom:791.340000px;}
.y106{bottom:792.420000px;}
.yaa{bottom:793.500000px;}
.y59{bottom:796.740000px;}
.ydf{bottom:805.380000px;}
.y180{bottom:806.460000px;}
.y136{bottom:807.540000px;}
.ye{bottom:808.260000px;}
.y161{bottom:808.620000px;}
.y105{bottom:810.780000px;}
.ya9{bottom:811.860000px;}
.y58{bottom:814.020000px;}
.yde{bottom:822.660000px;}
.y17f{bottom:823.740000px;}
.y135{bottom:824.730000px;}
.y160{bottom:826.890000px;}
.y104{bottom:827.970000px;}
.ya8{bottom:829.050000px;}
.y57{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.ydd{bottom:840.930000px;}
.y134{bottom:843.090000px;}
.y15f{bottom:844.170000px;}
.y196{bottom:845.250000px;}
.ya7{bottom:846.330000px;}
.y56{bottom:848.490000px;}
.y17e{bottom:858.210000px;}
.ydc{bottom:859.290000px;}
.y133{bottom:860.370000px;}
.y15e{bottom:861.450000px;}
.y195{bottom:862.530000px;}
.ya6{bottom:863.610000px;}
.y55{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y17d{bottom:875.400000px;}
.ydb{bottom:876.480000px;}
.y132{bottom:878.640000px;}
.y194{bottom:879.720000px;}
.ya5{bottom:880.800000px;}
.y54{bottom:882.960000px;}
.y17c{bottom:893.760000px;}
.yda{bottom:894.840000px;}
.y131{bottom:895.920000px;}
.y193{bottom:897.000000px;}
.ya4{bottom:898.080000px;}
.y53{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.yd9{bottom:912.120000px;}
.y15d{bottom:913.200000px;}
.y130{bottom:914.280000px;}
.y103{bottom:915.360000px;}
.ya3{bottom:916.440000px;}
.y52{bottom:917.430000px;}
.yd8{bottom:929.310000px;}
.ya{bottom:930.210000px;}
.y17b{bottom:930.390000px;}
.y15c{bottom:931.470000px;}
.y102{bottom:932.550000px;}
.ya2{bottom:933.630000px;}
.y51{bottom:934.710000px;}
.y8{bottom:945.600000px;}
.yd7{bottom:947.670000px;}
.y15b{bottom:948.750000px;}
.y12f{bottom:949.830000px;}
.ya1{bottom:950.910000px;}
.y50{bottom:951.990000px;}
.yd6{bottom:964.950000px;}
.y15a{bottom:966.030000px;}
.y12e{bottom:967.110000px;}
.ya0{bottom:968.100000px;}
.y4f{bottom:969.180000px;}
.yd5{bottom:983.220000px;}
.y12d{bottom:984.300000px;}
.y9f{bottom:985.380000px;}
.y4e{bottom:986.460000px;}
.yd4{bottom:1000.530000px;}
.y12c{bottom:1001.610000px;}
.y9e{bottom:1002.690000px;}
.y4d{bottom:1003.770000px;}
.yd3{bottom:1018.800000px;}
.y9d{bottom:1019.880000px;}
.y4c{bottom:1020.960000px;}
.y192{bottom:1036.080000px;}
.y9c{bottom:1037.160000px;}
.y4b{bottom:1038.240000px;}
.yd2{bottom:1054.440000px;}
.y4a{bottom:1055.520000px;}
.y17a{bottom:1071.630000px;}
.y49{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h19{height:13.860000px;}
.hd{height:17.280000px;}
.h13{height:19.980000px;}
.h3{height:27.630000px;}
.h1a{height:33.782520px;}
.h5{height:34.624160px;}
.h17{height:38.100586px;}
.h15{height:39.049805px;}
.h6{height:39.082324px;}
.h11{height:39.999023px;}
.he{height:42.418652px;}
.h4{height:43.475449px;}
.h18{height:43.769004px;}
.h12{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:47.640762px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.hb{height:53.838457px;}
.ha{height:76.201172px;}
.hc{height:78.099609px;}
.h14{height:84.240000px;}
.h1b{height:103.500000px;}
.h10{height:141.510000px;}
.h7{height:153.930000px;}
.h16{height:183.060000px;}
.hf{height:431.220000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.w6{width:220.350000px;}
.w7{width:360.840000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x3{left:8.640000px;}
.x10{left:20.160000px;}
.x14{left:27.630000px;}
.x12{left:34.110000px;}
.x13{left:36.090000px;}
.x6{left:45.540000px;}
.x2{left:53.999986px;}
.x16{left:59.669986px;}
.x1{left:60.749986px;}
.x15{left:65.429986px;}
.x1c{left:84.420000px;}
.x18{left:88.199986px;}
.x1d{left:95.880000px;}
.x4{left:100.890000px;}
.x5{left:107.999986px;}
.x9{left:114.929986px;}
.xd{left:174.089986px;}
.xa{left:300.629986px;}
.xc{left:404.939986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.xe{left:465.239986px;}
.x17{left:478.229986px;}
.x19{left:479.759986px;}
.x1a{left:506.759986px;}
.x1b{left:526.559986px;}
.xf{left:642.210000px;}
.x7{left:812.430000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.440000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.124267pt;}
.lse{letter-spacing:0.136533pt;}
.lsb{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls10{letter-spacing:1.680000pt;}
.ls12{letter-spacing:14.583680pt;}
.lsc{letter-spacing:27.920000pt;}
.ls9{letter-spacing:29.200000pt;}
.ls2{letter-spacing:32.823680pt;}
.ls1{letter-spacing:36.576000pt;}
.ls11{letter-spacing:41.143680pt;}
.lsd{letter-spacing:49.143680pt;}
.ls7{letter-spacing:56.503680pt;}
.ws3{word-spacing:-53.440000pt;}
.ws6{word-spacing:-13.520000pt;}
.ws8{word-spacing:-13.496533pt;}
.ws7{word-spacing:-13.484267pt;}
.ws0{word-spacing:-13.360000pt;}
.ws5{word-spacing:-13.200000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws9{word-spacing:-0.053440pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._3{width:1.222827pt;}
._b{width:2.370240pt;}
._c{width:3.847680pt;}
._11{width:5.130240pt;}
._14{width:6.680000pt;}
._5{width:8.069440pt;}
._9{width:9.726080pt;}
._f{width:11.329280pt;}
._10{width:12.368320pt;}
._e{width:14.375360pt;}
._d{width:15.337280pt;}
._15{width:16.245760pt;}
._a{width:17.474880pt;}
._12{width:18.861120pt;}
._19{width:20.627840pt;}
._21{width:21.696640pt;}
._16{width:23.353280pt;}
._17{width:24.475520pt;}
._18{width:25.704640pt;}
._1d{width:26.666560pt;}
._1b{width:27.681920pt;}
._6{width:28.643840pt;}
._7{width:29.552320pt;}
._8{width:30.460800pt;}
._26{width:32.010560pt;}
._30{width:33.880960pt;}
._1e{width:34.842880pt;}
._1a{width:36.072000pt;}
._23{width:37.675200pt;}
._1c{width:39.438720pt;}
._29{width:41.275840pt;}
._22{width:42.200000pt;}
._2f{width:43.232960pt;}
._2c{width:44.355200pt;}
._2b{width:45.317120pt;}
._20{width:47.347840pt;}
._2d{width:48.844160pt;}
._2e{width:50.287040pt;}
._24{width:51.355840pt;}
._2a{width:52.770133pt;}
._25{width:54.081280pt;}
._28{width:55.417280pt;}
._27{width:56.806720pt;}
._31{width:57.875520pt;}
._1f{width:60.814720pt;}
._34{width:64.822720pt;}
._32{width:67.494720pt;}
._13{width:111.408000pt;}
._2{width:115.960427pt;}
._35{width:122.751680pt;}
._33{width:180.039360pt;}
._1{width:303.598827pt;}
._36{width:311.982720pt;}
._4{width:873.768213pt;}
.fs3{font-size:26.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.400000pt;}
.y14{bottom:2.880000pt;}
.y38{bottom:5.360000pt;}
.y4{bottom:7.520000pt;}
.y3e{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.640000pt;}
.y36{bottom:17.200000pt;}
.y2d{bottom:18.160000pt;}
.y1d8{bottom:18.240000pt;}
.y3d{bottom:22.320000pt;}
.y7{bottom:31.600000pt;}
.y35{bottom:31.786667pt;}
.y2c{bottom:33.520000pt;}
.y3c{bottom:36.080000pt;}
.y34{bottom:45.626667pt;}
.y2b{bottom:48.880000pt;}
.y3b{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.y33{bottom:59.386667pt;}
.y40{bottom:59.760000pt;}
.y3a{bottom:63.680000pt;}
.y2a{bottom:64.160000pt;}
.y1d7{bottom:64.240000pt;}
.y32{bottom:73.226667pt;}
.y29{bottom:79.520000pt;}
.y31{bottom:86.986667pt;}
.y28{bottom:94.880000pt;}
.yd1{bottom:100.640000pt;}
.y30{bottom:100.826667pt;}
.y1b3{bottom:102.560000pt;}
.y101{bottom:103.520000pt;}
.y1c8{bottom:105.440000pt;}
.y7e{bottom:106.400000pt;}
.y48{bottom:107.280000pt;}
.y12b{bottom:107.360000pt;}
.y27{bottom:110.160000pt;}
.y179{bottom:111.200000pt;}
.y159{bottom:113.120000pt;}
.y2f{bottom:114.586667pt;}
.yd0{bottom:116.000000pt;}
.y1b2{bottom:117.920000pt;}
.y100{bottom:118.880000pt;}
.y1c7{bottom:120.720000pt;}
.y7d{bottom:121.680000pt;}
.y191{bottom:121.760000pt;}
.y47{bottom:122.640000pt;}
.y12a{bottom:122.720000pt;}
.y26{bottom:125.520000pt;}
.y178{bottom:126.480000pt;}
.y158{bottom:128.400000pt;}
.ycf{bottom:131.280000pt;}
.y1b1{bottom:133.200000pt;}
.yff{bottom:134.160000pt;}
.y1c6{bottom:136.080000pt;}
.y7c{bottom:137.040000pt;}
.y46{bottom:138.000000pt;}
.y25{bottom:140.880000pt;}
.y177{bottom:141.866667pt;}
.y157{bottom:143.786667pt;}
.yce{bottom:146.666667pt;}
.y1b0{bottom:148.586667pt;}
.yfe{bottom:149.546667pt;}
.y1c5{bottom:151.466667pt;}
.y3f{bottom:151.520000pt;}
.y7b{bottom:152.426667pt;}
.y45{bottom:153.306667pt;}
.y190{bottom:153.386667pt;}
.y129{bottom:154.346667pt;}
.y24{bottom:156.160000pt;}
.y176{bottom:157.226667pt;}
.y156{bottom:159.146667pt;}
.ycd{bottom:162.986667pt;}
.y1af{bottom:164.826667pt;}
.yfd{bottom:165.866667pt;}
.y1c4{bottom:166.746667pt;}
.y7a{bottom:167.706667pt;}
.y44{bottom:168.666667pt;}
.y18f{bottom:168.746667pt;}
.y128{bottom:169.626667pt;}
.y23{bottom:171.520000pt;}
.y175{bottom:172.506667pt;}
.y155{bottom:175.386667pt;}
.ycc{bottom:178.266667pt;}
.y1ae{bottom:180.186667pt;}
.yfc{bottom:181.146667pt;}
.y1c3{bottom:182.106667pt;}
.y79{bottom:183.066667pt;}
.y43{bottom:184.026667pt;}
.y127{bottom:184.986667pt;}
.y22{bottom:186.880000pt;}
.y174{bottom:188.826667pt;}
.y154{bottom:191.706667pt;}
.ycb{bottom:194.586667pt;}
.y1ad{bottom:195.546667pt;}
.yfb{bottom:197.466667pt;}
.y78{bottom:198.426667pt;}
.y42{bottom:199.306667pt;}
.y18e{bottom:200.346667pt;}
.y126{bottom:201.306667pt;}
.y21{bottom:202.160000pt;}
.y173{bottom:204.186667pt;}
.y153{bottom:207.066667pt;}
.yca{bottom:209.866667pt;}
.y1ac{bottom:210.826667pt;}
.y1d4{bottom:212.426667pt;}
.y1c2{bottom:212.746667pt;}
.yfa{bottom:212.826667pt;}
.y77{bottom:213.706667pt;}
.y41{bottom:214.346667pt;}
.y18d{bottom:215.626667pt;}
.y125{bottom:216.586667pt;}
.y20{bottom:217.520000pt;}
.y172{bottom:219.466667pt;}
.y152{bottom:222.346667pt;}
.yc9{bottom:226.186667pt;}
.y15{bottom:226.266667pt;}
.y1d3{bottom:227.786667pt;}
.y1c1{bottom:228.106667pt;}
.y9b{bottom:229.066667pt;}
.y76{bottom:230.026667pt;}
.y18c{bottom:230.986667pt;}
.y1f{bottom:232.880000pt;}
.y124{bottom:232.906667pt;}
.y171{bottom:234.826667pt;}
.y151{bottom:237.706667pt;}
.yc8{bottom:241.546667pt;}
.y1d2{bottom:243.066667pt;}
.y1c0{bottom:243.466667pt;}
.y75{bottom:245.386667pt;}
.y18b{bottom:247.306667pt;}
.y1e{bottom:248.160000pt;}
.y123{bottom:248.266667pt;}
.y170{bottom:250.186667pt;}
.y150{bottom:253.946667pt;}
.y1ab{bottom:256.826667pt;}
.yc7{bottom:257.786667pt;}
.y1d1{bottom:258.426667pt;}
.y1bf{bottom:258.746667pt;}
.y9a{bottom:260.666667pt;}
.y74{bottom:261.626667pt;}
.y18a{bottom:262.586667pt;}
.y1d{bottom:263.520000pt;}
.y122{bottom:264.506667pt;}
.y16f{bottom:265.466667pt;}
.y14f{bottom:270.266667pt;}
.y1aa{bottom:272.186667pt;}
.yc6{bottom:273.146667pt;}
.y1d0{bottom:273.786667pt;}
.y1be{bottom:274.106667pt;}
.y99{bottom:276.026667pt;}
.y73{bottom:276.986667pt;}
.y189{bottom:277.946667pt;}
.y1c{bottom:278.880000pt;}
.y121{bottom:280.826667pt;}
.y14e{bottom:285.626667pt;}
.yc5{bottom:288.506667pt;}
.y1cf{bottom:289.066667pt;}
.y1bd{bottom:289.466667pt;}
.y98{bottom:291.306667pt;}
.yf9{bottom:291.386667pt;}
.y72{bottom:293.226667pt;}
.y188{bottom:293.306667pt;}
.y1b{bottom:294.186667pt;}
.y120{bottom:296.186667pt;}
.y14d{bottom:300.906667pt;}
.yc4{bottom:303.786667pt;}
.y1ce{bottom:304.426667pt;}
.y1bc{bottom:304.746667pt;}
.y97{bottom:306.666667pt;}
.yf8{bottom:307.626667pt;}
.y71{bottom:308.586667pt;}
.y1a{bottom:309.546667pt;}
.y11f{bottom:311.466667pt;}
.y14c{bottom:316.266667pt;}
.yc3{bottom:319.146667pt;}
.y1cd{bottom:319.786667pt;}
.y1bb{bottom:320.106667pt;}
.y96{bottom:322.026667pt;}
.yf7{bottom:323.946667pt;}
.y19{bottom:324.826667pt;}
.y70{bottom:324.906667pt;}
.y11e{bottom:326.826667pt;}
.y16e{bottom:327.786667pt;}
.y14b{bottom:331.626667pt;}
.yc2{bottom:334.506667pt;}
.y1cc{bottom:335.066667pt;}
.y1ba{bottom:335.466667pt;}
.y95{bottom:337.306667pt;}
.y18{bottom:340.186667pt;}
.yf6{bottom:340.266667pt;}
.y11d{bottom:342.186667pt;}
.y16d{bottom:343.066667pt;}
.y14a{bottom:346.906667pt;}
.y1a9{bottom:349.786667pt;}
.y1cb{bottom:350.426667pt;}
.yc1{bottom:350.746667pt;}
.y94{bottom:353.626667pt;}
.y17{bottom:355.546667pt;}
.yf5{bottom:356.506667pt;}
.y11c{bottom:358.426667pt;}
.y16c{bottom:359.386667pt;}
.y149{bottom:362.266667pt;}
.y1a8{bottom:365.146667pt;}
.y1ca{bottom:365.706667pt;}
.yc0{bottom:366.106667pt;}
.y93{bottom:368.986667pt;}
.y16{bottom:370.826667pt;}
.y6f{bottom:370.906667pt;}
.yf4{bottom:371.866667pt;}
.y11b{bottom:373.786667pt;}
.y16b{bottom:374.746667pt;}
.y148{bottom:377.626667pt;}
.y1a7{bottom:380.506667pt;}
.y1c9{bottom:381.066667pt;}
.ybf{bottom:381.386667pt;}
.y92{bottom:384.266667pt;}
.y6e{bottom:386.186667pt;}
.yf3{bottom:387.146667pt;}
.y39{bottom:389.706667pt;}
.y11a{bottom:390.026667pt;}
.y16a{bottom:390.986667pt;}
.y147{bottom:392.906667pt;}
.y1d6{bottom:394.186667pt;}
.y1a6{bottom:395.786667pt;}
.y1b9{bottom:396.746667pt;}
.ybe{bottom:397.706667pt;}
.y91{bottom:399.626667pt;}
.y6d{bottom:401.546667pt;}
.yf2{bottom:402.506667pt;}
.y119{bottom:406.346667pt;}
.y146{bottom:408.266667pt;}
.y1a5{bottom:411.146667pt;}
.y1b8{bottom:412.106667pt;}
.ybd{bottom:413.066667pt;}
.y90{bottom:414.986667pt;}
.y6c{bottom:416.906667pt;}
.yf1{bottom:418.826667pt;}
.y118{bottom:421.706667pt;}
.y169{bottom:422.666667pt;}
.y145{bottom:423.626667pt;}
.y1a4{bottom:427.386667pt;}
.ybc{bottom:428.346667pt;}
.y8f{bottom:430.266667pt;}
.y6b{bottom:432.186667pt;}
.yf0{bottom:434.106667pt;}
.y117{bottom:437.946667pt;}
.y144{bottom:438.906667pt;}
.y1a3{bottom:442.746667pt;}
.ybb{bottom:443.706667pt;}
.y8e{bottom:445.626667pt;}
.y6a{bottom:447.546667pt;}
.yef{bottom:449.466667pt;}
.y116{bottom:453.306667pt;}
.y143{bottom:454.266667pt;}
.y1a2{bottom:458.106667pt;}
.yba{bottom:459.066667pt;}
.y8d{bottom:460.986667pt;}
.y69{bottom:462.906667pt;}
.y37{bottom:465.306667pt;}
.yee{bottom:465.786667pt;}
.y115{bottom:468.666667pt;}
.y142{bottom:470.506667pt;}
.y1a1{bottom:473.386667pt;}
.yb9{bottom:474.346667pt;}
.y8c{bottom:476.266667pt;}
.y68{bottom:478.186667pt;}
.yed{bottom:481.066667pt;}
.y2e{bottom:483.786667pt;}
.y114{bottom:483.946667pt;}
.y141{bottom:485.866667pt;}
.y1d5{bottom:486.826667pt;}
.y1a0{bottom:488.746667pt;}
.yb8{bottom:489.706667pt;}
.y8b{bottom:492.586667pt;}
.y67{bottom:493.546667pt;}
.yec{bottom:496.426667pt;}
.y187{bottom:497.386667pt;}
.y113{bottom:499.306667pt;}
.y168{bottom:500.266667pt;}
.y140{bottom:501.226667pt;}
.y19f{bottom:504.106667pt;}
.yb7{bottom:505.066667pt;}
.y8a{bottom:507.946667pt;}
.y66{bottom:508.826667pt;}
.yeb{bottom:511.813333pt;}
.y186{bottom:512.773333pt;}
.y112{bottom:515.573333pt;}
.y13f{bottom:516.533333pt;}
.y19e{bottom:519.413333pt;}
.yb6{bottom:520.373333pt;}
.y89{bottom:523.253333pt;}
.y65{bottom:524.213333pt;}
.yea{bottom:527.093333pt;}
.y185{bottom:528.053333pt;}
.y111{bottom:530.933333pt;}
.y13e{bottom:531.893333pt;}
.y19d{bottom:534.773333pt;}
.yb5{bottom:535.733333pt;}
.y88{bottom:538.613333pt;}
.y64{bottom:539.573333pt;}
.ye9{bottom:543.413333pt;}
.y110{bottom:547.253333pt;}
.y19c{bottom:550.133333pt;}
.yb4{bottom:551.093333pt;}
.y87{bottom:553.893333pt;}
.y63{bottom:554.853333pt;}
.ye8{bottom:558.773333pt;}
.y10f{bottom:562.533333pt;}
.y13d{bottom:563.493333pt;}
.y1b7{bottom:565.413333pt;}
.yb3{bottom:566.373333pt;}
.y86{bottom:569.253333pt;}
.y62{bottom:570.213333pt;}
.ye7{bottom:575.013333pt;}
.y167{bottom:577.893333pt;}
.y10e{bottom:578.853333pt;}
.y1b6{bottom:580.773333pt;}
.yb2{bottom:581.733333pt;}
.y85{bottom:584.613333pt;}
.y61{bottom:585.573333pt;}
.ye6{bottom:590.373333pt;}
.y166{bottom:593.253333pt;}
.y13c{bottom:594.213333pt;}
.y10d{bottom:595.173333pt;}
.y1b5{bottom:596.133333pt;}
.yb1{bottom:597.093333pt;}
.y84{bottom:599.893333pt;}
.y60{bottom:600.853333pt;}
.ye5{bottom:605.653333pt;}
.y184{bottom:606.613333pt;}
.y165{bottom:608.533333pt;}
.y13b{bottom:609.493333pt;}
.y13{bottom:610.213333pt;}
.y10c{bottom:610.453333pt;}
.y1b4{bottom:611.413333pt;}
.y19b{bottom:612.373333pt;}
.yb0{bottom:613.333333pt;}
.y83{bottom:615.253333pt;}
.y5f{bottom:616.213333pt;}
.ye4{bottom:621.973333pt;}
.y164{bottom:624.853333pt;}
.y10b{bottom:625.813333pt;}
.y19a{bottom:627.733333pt;}
.yaf{bottom:628.693333pt;}
.y82{bottom:630.613333pt;}
.y5e{bottom:631.573333pt;}
.ye3{bottom:637.333333pt;}
.y183{bottom:638.293333pt;}
.y163{bottom:640.213333pt;}
.y12{bottom:641.013333pt;}
.y10a{bottom:641.173333pt;}
.y199{bottom:643.013333pt;}
.yae{bottom:643.973333pt;}
.y81{bottom:645.893333pt;}
.y5d{bottom:646.853333pt;}
.ye2{bottom:653.573333pt;}
.y13a{bottom:656.453333pt;}
.y109{bottom:657.413333pt;}
.y198{bottom:658.373333pt;}
.y11{bottom:658.693333pt;}
.yad{bottom:659.333333pt;}
.y80{bottom:661.253333pt;}
.y5c{bottom:662.213333pt;}
.ye1{bottom:668.933333pt;}
.y139{bottom:671.813333pt;}
.y108{bottom:672.773333pt;}
.y197{bottom:673.733333pt;}
.yac{bottom:674.693333pt;}
.y7f{bottom:676.613333pt;}
.y5b{bottom:677.573333pt;}
.y10{bottom:683.973333pt;}
.ye0{bottom:684.293333pt;}
.y182{bottom:685.253333pt;}
.y138{bottom:687.173333pt;}
.y107{bottom:689.013333pt;}
.yab{bottom:689.973333pt;}
.y5a{bottom:692.853333pt;}
.yf{bottom:699.573333pt;}
.y181{bottom:700.533333pt;}
.y137{bottom:702.453333pt;}
.y162{bottom:703.413333pt;}
.y106{bottom:704.373333pt;}
.yaa{bottom:705.333333pt;}
.y59{bottom:708.213333pt;}
.ydf{bottom:715.893333pt;}
.y180{bottom:716.853333pt;}
.y136{bottom:717.813333pt;}
.ye{bottom:718.453333pt;}
.y161{bottom:718.773333pt;}
.y105{bottom:720.693333pt;}
.ya9{bottom:721.653333pt;}
.y58{bottom:723.573333pt;}
.yde{bottom:731.253333pt;}
.y17f{bottom:732.213333pt;}
.y135{bottom:733.093333pt;}
.y160{bottom:735.013333pt;}
.y104{bottom:735.973333pt;}
.ya8{bottom:736.933333pt;}
.y57{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.ydd{bottom:747.493333pt;}
.y134{bottom:749.413333pt;}
.y15f{bottom:750.373333pt;}
.y196{bottom:751.333333pt;}
.ya7{bottom:752.293333pt;}
.y56{bottom:754.213333pt;}
.y17e{bottom:762.853333pt;}
.ydc{bottom:763.813333pt;}
.y133{bottom:764.773333pt;}
.y15e{bottom:765.733333pt;}
.y195{bottom:766.693333pt;}
.ya6{bottom:767.653333pt;}
.y55{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y17d{bottom:778.133333pt;}
.ydb{bottom:779.093333pt;}
.y132{bottom:781.013333pt;}
.y194{bottom:781.973333pt;}
.ya5{bottom:782.933333pt;}
.y54{bottom:784.853333pt;}
.y17c{bottom:794.453333pt;}
.yda{bottom:795.413333pt;}
.y131{bottom:796.373333pt;}
.y193{bottom:797.333333pt;}
.ya4{bottom:798.293333pt;}
.y53{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.yd9{bottom:810.773333pt;}
.y15d{bottom:811.733333pt;}
.y130{bottom:812.693333pt;}
.y103{bottom:813.653333pt;}
.ya3{bottom:814.613333pt;}
.y52{bottom:815.493333pt;}
.yd8{bottom:826.053333pt;}
.ya{bottom:826.853333pt;}
.y17b{bottom:827.013333pt;}
.y15c{bottom:827.973333pt;}
.y102{bottom:828.933333pt;}
.ya2{bottom:829.893333pt;}
.y51{bottom:830.853333pt;}
.y8{bottom:840.533333pt;}
.yd7{bottom:842.373333pt;}
.y15b{bottom:843.333333pt;}
.y12f{bottom:844.293333pt;}
.ya1{bottom:845.253333pt;}
.y50{bottom:846.213333pt;}
.yd6{bottom:857.733333pt;}
.y15a{bottom:858.693333pt;}
.y12e{bottom:859.653333pt;}
.ya0{bottom:860.533333pt;}
.y4f{bottom:861.493333pt;}
.yd5{bottom:873.973333pt;}
.y12d{bottom:874.933333pt;}
.y9f{bottom:875.893333pt;}
.y4e{bottom:876.853333pt;}
.yd4{bottom:889.360000pt;}
.y12c{bottom:890.320000pt;}
.y9e{bottom:891.280000pt;}
.y4d{bottom:892.240000pt;}
.yd3{bottom:905.600000pt;}
.y9d{bottom:906.560000pt;}
.y4c{bottom:907.520000pt;}
.y192{bottom:920.960000pt;}
.y9c{bottom:921.920000pt;}
.y4b{bottom:922.880000pt;}
.yd2{bottom:937.280000pt;}
.y4a{bottom:938.240000pt;}
.y17a{bottom:952.560000pt;}
.y49{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h19{height:12.320000pt;}
.hd{height:15.360000pt;}
.h13{height:17.760000pt;}
.h3{height:24.560000pt;}
.h1a{height:30.028906pt;}
.h5{height:30.777031pt;}
.h17{height:33.867188pt;}
.h15{height:34.710938pt;}
.h6{height:34.739844pt;}
.h11{height:35.554688pt;}
.he{height:37.705469pt;}
.h4{height:38.644844pt;}
.h18{height:38.905781pt;}
.h12{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:42.347344pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.hb{height:47.856406pt;}
.ha{height:67.734375pt;}
.hc{height:69.421875pt;}
.h14{height:74.880000pt;}
.h1b{height:92.000000pt;}
.h10{height:125.786667pt;}
.h7{height:136.826667pt;}
.h16{height:162.720000pt;}
.hf{height:383.306667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.w6{width:195.866667pt;}
.w7{width:320.746667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x3{left:7.680000pt;}
.x10{left:17.920000pt;}
.x14{left:24.560000pt;}
.x12{left:30.320000pt;}
.x13{left:32.080000pt;}
.x6{left:40.480000pt;}
.x2{left:47.999988pt;}
.x16{left:53.039988pt;}
.x1{left:53.999988pt;}
.x15{left:58.159988pt;}
.x1c{left:75.040000pt;}
.x18{left:78.399988pt;}
.x1d{left:85.226667pt;}
.x4{left:89.680000pt;}
.x5{left:95.999988pt;}
.x9{left:102.159988pt;}
.xd{left:154.746655pt;}
.xa{left:267.226655pt;}
.xc{left:359.946655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.xe{left:413.546655pt;}
.x17{left:425.093321pt;}
.x19{left:426.453321pt;}
.x1a{left:450.453321pt;}
.x1b{left:468.053321pt;}
.xf{left:570.853333pt;}
.x7{left:722.160000pt;}
}




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