
    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_6fe8cd4f6e11b7292707b619.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f8e4ad2a376e8947ca06fc5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_170d98f81b8f886f7116c14e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913086;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_f659d50ae54a8e1092e4f412.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_93d2b52e6d6c28563a03b65f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_7b53e39e831522de0bf89a7d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5317f3ffdc4852702481f8a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1750df301e6cc9338f5c5eb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_30e6cb142e53d4bb50648378.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.198600px;}
.ls2{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.043200px;}
.ls9{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.360000px;}
.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;}
}
.ws0{word-spacing:-36.000000px;}
.wsb{word-spacing:-33.704640px;}
.wsc{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.wsd{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.998720px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-7.920000px;}
._0{margin-left:-3.600000px;}
._3{margin-left:-2.160000px;}
._7{margin-left:-1.134720px;}
._2{width:1.056000px;}
._8{width:2.817360px;}
._c{width:3.914880px;}
._b{width:5.039520px;}
._9{width:6.155280px;}
._e{width:7.828560px;}
._d{width:9.222720px;}
._5{width:10.438080px;}
._4{width:11.553600px;}
._1b{width:12.808080px;}
._1a{width:13.924080px;}
._6{width:16.095120px;}
._14{width:17.709360px;}
._10{width:19.202640px;}
._11{width:20.478000px;}
._f{width:21.812400px;}
._34{width:22.947840px;}
._1e{width:24.202800px;}
._20{width:25.357920px;}
._1c{width:26.732400px;}
._2a{width:28.166640px;}
._19{width:29.541840px;}
._15{width:30.855840px;}
._37{width:32.031360px;}
._22{width:33.166800px;}
._21{width:34.182720px;}
._12{width:35.915760px;}
._13{width:36.931680px;}
._1f{width:38.425680px;}
._2b{width:39.501360px;}
._17{width:41.117040px;}
._16{width:42.788160px;}
._25{width:43.923600px;}
._24{width:45.238320px;}
._28{width:47.150640px;}
._2e{width:49.245360px;}
._2d{width:50.764560px;}
._2f{width:52.170480px;}
._32{width:53.963280px;}
._38{width:55.118400px;}
._35{width:56.552640px;}
._23{width:58.464960px;}
._2c{width:60.536880px;}
._18{width:61.692000px;}
._29{width:63.943200px;}
._31{width:65.921040px;}
._33{width:68.026560px;}
._a{width:72.010800px;}
._30{width:74.062320px;}
._36{width:82.129920px;}
._39{width:87.627840px;}
._1d{width:94.533840px;}
._3a{width:112.488000px;}
._26{width:137.407920px;}
._27{width:145.479840px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y15e{bottom:111.816000px;}
.y100{bottom:115.776000px;}
.ydb{bottom:115.956000px;}
.y138{bottom:116.136000px;}
.y64{bottom:117.936000px;}
.y22{bottom:121.176000px;}
.y19d{bottom:124.236000px;}
.y15d{bottom:125.496000px;}
.y14c{bottom:126.036000px;}
.y1bb{bottom:126.756000px;}
.y1ee{bottom:132.516000px;}
.yda{bottom:133.056000px;}
.yb7{bottom:133.596000px;}
.y98{bottom:134.316000px;}
.y63{bottom:135.036000px;}
.y21{bottom:138.456000px;}
.y173{bottom:138.816000px;}
.y15c{bottom:139.356000px;}
.y3e{bottom:140.436000px;}
.y19c{bottom:141.516000px;}
.y14b{bottom:143.136000px;}
.y1ed{bottom:143.496000px;}
.y1ba{bottom:144.036000px;}
.y137{bottom:144.756000px;}
.yff{bottom:150.150000px;}
.yd9{bottom:150.330000px;}
.yb6{bottom:150.870000px;}
.y62{bottom:152.310000px;}
.y15b{bottom:153.030000px;}
.y1ec{bottom:154.470000px;}
.y20{bottom:155.730000px;}
.y172{bottom:156.090000px;}
.y3d{bottom:157.710000px;}
.y136{bottom:158.610000px;}
.y19b{bottom:158.790000px;}
.y14a{bottom:160.410000px;}
.y1b9{bottom:161.310000px;}
.y97{bottom:163.650000px;}
.y15a{bottom:166.890000px;}
.yfe{bottom:167.430000px;}
.yb5{bottom:168.150000px;}
.y61{bottom:169.590000px;}
.y135{bottom:172.290000px;}
.y1f{bottom:173.010000px;}
.y171{bottom:173.370000px;}
.y3c{bottom:174.990000px;}
.y19a{bottom:175.890000px;}
.y1eb{bottom:177.510000px;}
.y1b8{bottom:178.590000px;}
.yd8{bottom:178.950000px;}
.y159{bottom:180.570000px;}
.y96{bottom:180.930000px;}
.yfd{bottom:184.710000px;}
.yb4{bottom:185.430000px;}
.y134{bottom:186.150000px;}
.y60{bottom:186.870000px;}
.y1ea{bottom:188.670000px;}
.y149{bottom:189.030000px;}
.y1e{bottom:190.110000px;}
.y170{bottom:190.470000px;}
.y3b{bottom:192.270000px;}
.yd7{bottom:192.810000px;}
.y199{bottom:193.170000px;}
.y158{bottom:194.430000px;}
.y1b7{bottom:195.870000px;}
.y95{bottom:198.210000px;}
.y1e9{bottom:199.650000px;}
.y133{bottom:199.830000px;}
.yfc{bottom:201.990000px;}
.yb3{bottom:202.710000px;}
.y148{bottom:202.890000px;}
.y5f{bottom:204.150000px;}
.y1d{bottom:207.390000px;}
.y16f{bottom:207.750000px;}
.y3a{bottom:209.550000px;}
.y198{bottom:210.450000px;}
.y1b6{bottom:212.970000px;}
.y94{bottom:215.490000px;}
.yd6{bottom:215.850000px;}
.y147{bottom:216.570000px;}
.y157{bottom:217.470000px;}
.yfb{bottom:219.270000px;}
.yb2{bottom:219.990000px;}
.y5e{bottom:221.250000px;}
.y1e8{bottom:222.690000px;}
.y132{bottom:223.050000px;}
.y1c{bottom:224.670000px;}
.y16e{bottom:225.030000px;}
.y39{bottom:226.830000px;}
.y197{bottom:227.730000px;}
.y1b5{bottom:230.250000px;}
.y146{bottom:230.430000px;}
.y93{bottom:232.590000px;}
.y1e7{bottom:233.670000px;}
.yfa{bottom:236.550000px;}
.yb1{bottom:237.090000px;}
.y5d{bottom:238.530000px;}
.y16d{bottom:242.310000px;}
.y38{bottom:243.930000px;}
.y145{bottom:244.110000px;}
.y1e6{bottom:244.830000px;}
.y196{bottom:245.010000px;}
.y1b4{bottom:247.530000px;}
.y92{bottom:249.870000px;}
.y1b{bottom:253.290000px;}
.yb0{bottom:254.370000px;}
.y5c{bottom:255.810000px;}
.y11d{bottom:259.590000px;}
.y37{bottom:261.210000px;}
.y195{bottom:262.290000px;}
.y1b3{bottom:264.810000px;}
.yf9{bottom:265.710000px;}
.y1a{bottom:267.150000px;}
.y1e5{bottom:267.870000px;}
.yaf{bottom:271.650000px;}
.y16c{bottom:276.870000px;}
.y36{bottom:278.490000px;}
.y1e4{bottom:278.850000px;}
.y1b2{bottom:282.090000px;}
.yf8{bottom:282.990000px;}
.y5b{bottom:284.970000px;}
.y11c{bottom:288.750000px;}
.yae{bottom:288.930000px;}
.y1e3{bottom:289.830000px;}
.y19{bottom:290.190000px;}
.y194{bottom:291.450000px;}
.y16b{bottom:293.970000px;}
.y35{bottom:295.770000px;}
.y91{bottom:297.570000px;}
.y1b1{bottom:299.370000px;}
.yf7{bottom:300.270000px;}
.y5a{bottom:302.250000px;}
.y11b{bottom:306.030000px;}
.yad{bottom:306.210000px;}
.y193{bottom:308.730000px;}
.y16a{bottom:311.250000px;}
.y1e2{bottom:312.870000px;}
.y34{bottom:313.050000px;}
.y1b0{bottom:316.470000px;}
.yf6{bottom:317.550000px;}
.y59{bottom:319.530000px;}
.yac{bottom:323.310000px;}
.y1e1{bottom:324.030000px;}
.y192{bottom:326.010000px;}
.y90{bottom:328.530000px;}
.y33{bottom:330.150000px;}
.y1af{bottom:333.750000px;}
.yf5{bottom:334.650000px;}
.y1e0{bottom:335.010000px;}
.y58{bottom:336.855000px;}
.yab{bottom:340.635000px;}
.y191{bottom:343.335000px;}
.y8f{bottom:345.855000px;}
.y32{bottom:347.475000px;}
.y1ae{bottom:351.075000px;}
.yf4{bottom:351.975000px;}
.y57{bottom:354.135000px;}
.y11a{bottom:357.915000px;}
.y1df{bottom:358.095000px;}
.y190{bottom:360.435000px;}
.y8e{bottom:363.135000px;}
.y31{bottom:364.755000px;}
.y1ad{bottom:368.355000px;}
.y1de{bottom:369.075000px;}
.yaa{bottom:369.255000px;}
.y56{bottom:371.415000px;}
.y119{bottom:375.015000px;}
.y18f{bottom:377.715000px;}
.y1dd{bottom:380.235000px;}
.y8d{bottom:380.415000px;}
.y30{bottom:382.035000px;}
.ya9{bottom:383.115000px;}
.y1ac{bottom:385.635000px;}
.yf3{bottom:386.535000px;}
.y55{bottom:388.695000px;}
.y155{bottom:390.315000px;}
.y118{bottom:392.295000px;}
.y18e{bottom:394.995000px;}
.y8c{bottom:397.515000px;}
.y1ab{bottom:402.915000px;}
.y1dc{bottom:403.275000px;}
.yf2{bottom:403.815000px;}
.y54{bottom:405.795000px;}
.ya8{bottom:406.155000px;}
.y117{bottom:409.575000px;}
.y2f{bottom:411.195000px;}
.y18d{bottom:412.275000px;}
.y1db{bottom:414.255000px;}
.y8b{bottom:414.795000px;}
.y1aa{bottom:420.015000px;}
.yf1{bottom:421.095000px;}
.y53{bottom:423.075000px;}
.y1da{bottom:425.235000px;}
.y116{bottom:426.855000px;}
.y2e{bottom:428.475000px;}
.y18c{bottom:429.555000px;}
.y8a{bottom:432.075000px;}
.y1a9{bottom:437.295000px;}
.yf0{bottom:438.195000px;}
.y52{bottom:440.355000px;}
.y115{bottom:444.135000px;}
.y2d{bottom:445.755000px;}
.y18b{bottom:446.655000px;}
.y1d9{bottom:448.275000px;}
.y89{bottom:449.355000px;}
.y1a8{bottom:454.575000px;}
.yef{bottom:455.475000px;}
.y51{bottom:457.635000px;}
.y1d8{bottom:459.435000px;}
.y114{bottom:461.235000px;}
.y2c{bottom:463.035000px;}
.y18a{bottom:463.935000px;}
.yd5{bottom:465.735000px;}
.y88{bottom:466.635000px;}
.y1d7{bottom:470.415000px;}
.yee{bottom:472.755000px;}
.y50{bottom:474.915000px;}
.y113{bottom:478.515000px;}
.y2b{bottom:480.315000px;}
.y189{bottom:481.215000px;}
.yd4{bottom:483.015000px;}
.y87{bottom:483.735000px;}
.yed{bottom:490.035000px;}
.y4f{bottom:492.195000px;}
.y1d6{bottom:493.455000px;}
.y112{bottom:495.795000px;}
.y2a{bottom:497.595000px;}
.y188{bottom:498.495000px;}
.yd3{bottom:500.295000px;}
.y86{bottom:501.015000px;}
.y131{bottom:501.915000px;}
.y1d5{bottom:504.435000px;}
.yec{bottom:507.315000px;}
.y4e{bottom:509.295000px;}
.y111{bottom:513.075000px;}
.y144{bottom:514.335000px;}
.y29{bottom:514.695000px;}
.y1d4{bottom:515.415000px;}
.y187{bottom:515.775000px;}
.yd2{bottom:517.575000px;}
.y1a7{bottom:518.295000px;}
.y130{bottom:519.195000px;}
.yeb{bottom:524.415000px;}
.y85{bottom:530.355000px;}
.y143{bottom:531.615000px;}
.y28{bottom:531.975000px;}
.y186{bottom:533.055000px;}
.yd1{bottom:534.675000px;}
.y1a6{bottom:535.575000px;}
.y12f{bottom:536.475000px;}
.y1d3{bottom:538.455000px;}
.y4d{bottom:538.635000px;}
.yea{bottom:541.695000px;}
.y169{bottom:542.235000px;}
.y18{bottom:544.035000px;}
.y84{bottom:547.635000px;}
.y142{bottom:548.715000px;}
.y27{bottom:549.255000px;}
.y1d2{bottom:549.615000px;}
.y185{bottom:550.155000px;}
.yd0{bottom:551.955000px;}
.y1a5{bottom:552.855000px;}
.y12e{bottom:553.755000px;}
.y4c{bottom:555.915000px;}
.ye9{bottom:558.975000px;}
.y168{bottom:559.515000px;}
.y1d1{bottom:560.595000px;}
.y17{bottom:561.315000px;}
.y83{bottom:564.735000px;}
.y141{bottom:565.995000px;}
.y26{bottom:566.535000px;}
.y184{bottom:567.435000px;}
.ycf{bottom:569.235000px;}
.y1a4{bottom:570.135000px;}
.y12d{bottom:571.035000px;}
.y4b{bottom:573.015000px;}
.ye8{bottom:576.255000px;}
.y167{bottom:576.795000px;}
.y16{bottom:578.595000px;}
.y82{bottom:582.015000px;}
.y140{bottom:583.095000px;}
.y1d0{bottom:583.635000px;}
.y25{bottom:583.815000px;}
.y183{bottom:584.715000px;}
.yce{bottom:586.515000px;}
.y1a3{bottom:587.235000px;}
.y12c{bottom:588.315000px;}
.y4a{bottom:590.295000px;}
.ye7{bottom:593.535000px;}
.y166{bottom:594.075000px;}
.y1cf{bottom:594.615000px;}
.y15{bottom:595.695000px;}
.y81{bottom:599.295000px;}
.y24{bottom:601.095000px;}
.y182{bottom:601.995000px;}
.ycd{bottom:603.825000px;}
.y1a2{bottom:604.545000px;}
.y12b{bottom:605.445000px;}
.y1ce{bottom:605.805000px;}
.y49{bottom:607.605000px;}
.y13f{bottom:609.225000px;}
.y165{bottom:611.385000px;}
.y14{bottom:613.005000px;}
.y80{bottom:616.605000px;}
.ya7{bottom:617.145000px;}
.y23{bottom:618.225000px;}
.y181{bottom:619.305000px;}
.ycc{bottom:620.925000px;}
.ye6{bottom:622.725000px;}
.y48{bottom:624.885000px;}
.y110{bottom:628.485000px;}
.y164{bottom:628.665000px;}
.y1cd{bottom:628.845000px;}
.y13{bottom:630.285000px;}
.y7f{bottom:633.885000px;}
.ya6{bottom:634.425000px;}
.y180{bottom:636.585000px;}
.ycb{bottom:638.205000px;}
.y1cc{bottom:639.825000px;}
.ye5{bottom:640.005000px;}
.y47{bottom:642.165000px;}
.y10f{bottom:645.765000px;}
.y12{bottom:647.565000px;}
.y1cb{bottom:650.805000px;}
.y7e{bottom:651.165000px;}
.ya5{bottom:651.705000px;}
.y17f{bottom:653.685000px;}
.yca{bottom:655.485000px;}
.y12a{bottom:657.285000px;}
.y46{bottom:659.445000px;}
.y10e{bottom:663.045000px;}
.y11{bottom:664.845000px;}
.y7d{bottom:668.265000px;}
.ye4{bottom:668.625000px;}
.ya4{bottom:668.985000px;}
.y17e{bottom:670.965000px;}
.yc9{bottom:672.765000px;}
.y1ca{bottom:673.845000px;}
.y129{bottom:674.565000px;}
.y45{bottom:676.545000px;}
.y10d{bottom:680.325000px;}
.y10{bottom:681.945000px;}
.ye3{bottom:682.485000px;}
.y1c9{bottom:685.005000px;}
.y7c{bottom:685.545000px;}
.ya3{bottom:686.265000px;}
.y17d{bottom:688.245000px;}
.yc8{bottom:690.045000px;}
.y156{bottom:691.305000px;}
.y128{bottom:691.845000px;}
.y1c8{bottom:695.985000px;}
.y10c{bottom:697.605000px;}
.yf{bottom:699.225000px;}
.y7b{bottom:702.825000px;}
.ya2{bottom:703.545000px;}
.y44{bottom:705.165000px;}
.ye2{bottom:705.525000px;}
.yc7{bottom:707.325000px;}
.y127{bottom:708.945000px;}
.y10b{bottom:714.885000px;}
.ye{bottom:717.225000px;}
.y43{bottom:719.025000px;}
.y7a{bottom:720.105000px;}
.ya1{bottom:720.825000px;}
.y17c{bottom:722.805000px;}
.yc6{bottom:724.425000px;}
.y126{bottom:726.225000px;}
.y163{bottom:726.765000px;}
.y1c7{bottom:730.005000px;}
.y10a{bottom:732.165000px;}
.y42{bottom:732.705000px;}
.yd{bottom:737.205000px;}
.y79{bottom:737.385000px;}
.ya0{bottom:737.925000px;}
.y17b{bottom:739.905000px;}
.yc5{bottom:741.705000px;}
.y125{bottom:743.505000px;}
.y162{bottom:744.045000px;}
.y41{bottom:746.565000px;}
.y109{bottom:749.265000px;}
.y1c6{bottom:753.045000px;}
.yc{bottom:754.485000px;}
.y78{bottom:754.665000px;}
.y9f{bottom:755.205000px;}
.y17a{bottom:757.185000px;}
.yc4{bottom:758.985000px;}
.y40{bottom:760.245000px;}
.y124{bottom:760.785000px;}
.y161{bottom:761.325000px;}
.y1c5{bottom:764.205000px;}
.y108{bottom:766.545000px;}
.yb{bottom:771.765000px;}
.y9e{bottom:772.485000px;}
.y179{bottom:774.465000px;}
.y1c4{bottom:775.185000px;}
.yc3{bottom:776.265000px;}
.y123{bottom:778.065000px;}
.y160{bottom:778.605000px;}
.y3f{bottom:783.465000px;}
.y107{bottom:783.825000px;}
.ya{bottom:789.045000px;}
.y9d{bottom:789.765000px;}
.y178{bottom:791.745000px;}
.yc2{bottom:793.545000px;}
.y122{bottom:795.345000px;}
.y15f{bottom:795.885000px;}
.y1c3{bottom:798.225000px;}
.y106{bottom:801.105000px;}
.y9{bottom:806.145000px;}
.y1a1{bottom:806.325000px;}
.y177{bottom:809.025000px;}
.y1c2{bottom:809.205000px;}
.yc1{bottom:810.825000px;}
.y121{bottom:812.445000px;}
.y154{bottom:812.985000px;}
.y77{bottom:818.205000px;}
.y9c{bottom:818.385000px;}
.y1c1{bottom:820.365000px;}
.y8{bottom:823.425000px;}
.y1a0{bottom:823.605000px;}
.y176{bottom:826.305000px;}
.yc0{bottom:827.925000px;}
.y153{bottom:830.265000px;}
.y9b{bottom:832.065000px;}
.y76{bottom:835.485000px;}
.y7{bottom:840.885000px;}
.y120{bottom:841.065000px;}
.y1c0{bottom:843.405000px;}
.ybf{bottom:845.205000px;}
.y9a{bottom:845.925000px;}
.y152{bottom:847.545000px;}
.y75{bottom:852.765000px;}
.y1bf{bottom:854.385000px;}
.y11f{bottom:854.925000px;}
.y13e{bottom:856.005000px;}
.y19f{bottom:857.985000px;}
.ybe{bottom:862.485000px;}
.y151{bottom:864.825000px;}
.y1be{bottom:865.365000px;}
.y175{bottom:868.605000px;}
.y99{bottom:868.965000px;}
.y13d{bottom:869.865000px;}
.y74{bottom:870.045000px;}
.y19e{bottom:875.310000px;}
.y11e{bottom:878.010000px;}
.ybd{bottom:879.810000px;}
.y150{bottom:882.150000px;}
.y13c{bottom:883.590000px;}
.y73{bottom:887.370000px;}
.y1bd{bottom:890.970000px;}
.y174{bottom:891.870000px;}
.ybc{bottom:897.090000px;}
.y13b{bottom:897.450000px;}
.y14f{bottom:899.430000px;}
.y72{bottom:904.650000px;}
.y6{bottom:907.350000px;}
.y13a{bottom:911.130000px;}
.y14e{bottom:916.530000px;}
.y1bc{bottom:921.750000px;}
.y71{bottom:921.930000px;}
.ybb{bottom:925.710000px;}
.y14d{bottom:933.810000px;}
.y139{bottom:934.350000px;}
.y70{bottom:939.030000px;}
.yba{bottom:939.390000px;}
.y105{bottom:951.090000px;}
.yb9{bottom:953.250000px;}
.y5{bottom:955.590000px;}
.y6f{bottom:956.310000px;}
.ye1{bottom:961.530000px;}
.y104{bottom:968.370000px;}
.y6e{bottom:973.590000px;}
.yb8{bottom:976.290000px;}
.y103{bottom:985.650000px;}
.y6d{bottom:990.870000px;}
.y4{bottom:996.990000px;}
.y102{bottom:1002.930000px;}
.y6c{bottom:1008.150000px;}
.y101{bottom:1020.030000px;}
.ye0{bottom:1025.430000px;}
.y6b{bottom:1037.310000px;}
.y3{bottom:1038.390000px;}
.ydf{bottom:1042.530000px;}
.y6a{bottom:1054.590000px;}
.yde{bottom:1059.810000px;}
.y69{bottom:1071.870000px;}
.ydd{bottom:1077.090000px;}
.y2{bottom:1079.790000px;}
.y68{bottom:1089.150000px;}
.ydc{bottom:1106.250000px;}
.y67{bottom:1106.430000px;}
.y1{bottom:1121.190000px;}
.y66{bottom:1123.530000px;}
.y65{bottom:1140.840000px;}
.h8{height:35.143594px;}
.ha{height:43.536094px;}
.hb{height:47.344922px;}
.h5{height:58.621992px;}
.h7{height:58.651172px;}
.h4{height:60.300703px;}
.h9{height:67.824844px;}
.h6{height:70.664062px;}
.h2{height:101.601562px;}
.h3{height:149.906250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.035987px;}
.x2{left:121.895987px;}
.x3{left:139.895987px;}
.x1{left:156.989987px;}
.x4{left:200.189987px;}
.x5{left:356.834987px;}
.x6{left:361.154987px;}
.xa{left:420.734987px;}
.xc{left:423.074987px;}
.xb{left:425.774987px;}
.x8{left:427.574987px;}
.x9{left:479.444987px;}
.x11{left:783.149987px;}
.xf{left:790.169987px;}
.x10{left:792.149987px;}
.xd{left:794.849987px;}
.xe{left:797.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.176533pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.038400pt;}
.ls9{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.320000pt;}
.ws0{word-spacing:-32.000000pt;}
.wsb{word-spacing:-29.959680pt;}
.wsc{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.wsd{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.776640pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-7.040000pt;}
._0{margin-left:-3.200000pt;}
._3{margin-left:-1.920000pt;}
._7{margin-left:-1.008640pt;}
._2{width:0.938667pt;}
._8{width:2.504320pt;}
._c{width:3.479893pt;}
._b{width:4.479573pt;}
._9{width:5.471360pt;}
._e{width:6.958720pt;}
._d{width:8.197973pt;}
._5{width:9.278293pt;}
._4{width:10.269867pt;}
._1b{width:11.384960pt;}
._1a{width:12.376960pt;}
._6{width:14.306773pt;}
._14{width:15.741653pt;}
._10{width:17.069013pt;}
._11{width:18.202667pt;}
._f{width:19.388800pt;}
._34{width:20.398080pt;}
._1e{width:21.513600pt;}
._20{width:22.540373pt;}
._1c{width:23.762133pt;}
._2a{width:25.037013pt;}
._19{width:26.259413pt;}
._15{width:27.427413pt;}
._37{width:28.472320pt;}
._22{width:29.481600pt;}
._21{width:30.384640pt;}
._12{width:31.925120pt;}
._13{width:32.828160pt;}
._1f{width:34.156160pt;}
._2b{width:35.112320pt;}
._17{width:36.548480pt;}
._16{width:38.033920pt;}
._25{width:39.043200pt;}
._24{width:40.211840pt;}
._28{width:41.911680pt;}
._2e{width:43.773653pt;}
._2d{width:45.124053pt;}
._2f{width:46.373760pt;}
._32{width:47.967360pt;}
._38{width:48.994133pt;}
._35{width:50.269013pt;}
._23{width:51.968853pt;}
._2c{width:53.810560pt;}
._18{width:54.837333pt;}
._29{width:56.838400pt;}
._31{width:58.596480pt;}
._33{width:60.468053pt;}
._a{width:64.009600pt;}
._30{width:65.833173pt;}
._36{width:73.004373pt;}
._39{width:77.891413pt;}
._1d{width:84.030080pt;}
._3a{width:99.989333pt;}
._26{width:122.140373pt;}
._27{width:129.315413pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y15e{bottom:99.392000pt;}
.y100{bottom:102.912000pt;}
.ydb{bottom:103.072000pt;}
.y138{bottom:103.232000pt;}
.y64{bottom:104.832000pt;}
.y22{bottom:107.712000pt;}
.y19d{bottom:110.432000pt;}
.y15d{bottom:111.552000pt;}
.y14c{bottom:112.032000pt;}
.y1bb{bottom:112.672000pt;}
.y1ee{bottom:117.792000pt;}
.yda{bottom:118.272000pt;}
.yb7{bottom:118.752000pt;}
.y98{bottom:119.392000pt;}
.y63{bottom:120.032000pt;}
.y21{bottom:123.072000pt;}
.y173{bottom:123.392000pt;}
.y15c{bottom:123.872000pt;}
.y3e{bottom:124.832000pt;}
.y19c{bottom:125.792000pt;}
.y14b{bottom:127.232000pt;}
.y1ed{bottom:127.552000pt;}
.y1ba{bottom:128.032000pt;}
.y137{bottom:128.672000pt;}
.yff{bottom:133.466667pt;}
.yd9{bottom:133.626667pt;}
.yb6{bottom:134.106667pt;}
.y62{bottom:135.386667pt;}
.y15b{bottom:136.026667pt;}
.y1ec{bottom:137.306667pt;}
.y20{bottom:138.426667pt;}
.y172{bottom:138.746667pt;}
.y3d{bottom:140.186667pt;}
.y136{bottom:140.986667pt;}
.y19b{bottom:141.146667pt;}
.y14a{bottom:142.586667pt;}
.y1b9{bottom:143.386667pt;}
.y97{bottom:145.466667pt;}
.y15a{bottom:148.346667pt;}
.yfe{bottom:148.826667pt;}
.yb5{bottom:149.466667pt;}
.y61{bottom:150.746667pt;}
.y135{bottom:153.146667pt;}
.y1f{bottom:153.786667pt;}
.y171{bottom:154.106667pt;}
.y3c{bottom:155.546667pt;}
.y19a{bottom:156.346667pt;}
.y1eb{bottom:157.786667pt;}
.y1b8{bottom:158.746667pt;}
.yd8{bottom:159.066667pt;}
.y159{bottom:160.506667pt;}
.y96{bottom:160.826667pt;}
.yfd{bottom:164.186667pt;}
.yb4{bottom:164.826667pt;}
.y134{bottom:165.466667pt;}
.y60{bottom:166.106667pt;}
.y1ea{bottom:167.706667pt;}
.y149{bottom:168.026667pt;}
.y1e{bottom:168.986667pt;}
.y170{bottom:169.306667pt;}
.y3b{bottom:170.906667pt;}
.yd7{bottom:171.386667pt;}
.y199{bottom:171.706667pt;}
.y158{bottom:172.826667pt;}
.y1b7{bottom:174.106667pt;}
.y95{bottom:176.186667pt;}
.y1e9{bottom:177.466667pt;}
.y133{bottom:177.626667pt;}
.yfc{bottom:179.546667pt;}
.yb3{bottom:180.186667pt;}
.y148{bottom:180.346667pt;}
.y5f{bottom:181.466667pt;}
.y1d{bottom:184.346667pt;}
.y16f{bottom:184.666667pt;}
.y3a{bottom:186.266667pt;}
.y198{bottom:187.066667pt;}
.y1b6{bottom:189.306667pt;}
.y94{bottom:191.546667pt;}
.yd6{bottom:191.866667pt;}
.y147{bottom:192.506667pt;}
.y157{bottom:193.306667pt;}
.yfb{bottom:194.906667pt;}
.yb2{bottom:195.546667pt;}
.y5e{bottom:196.666667pt;}
.y1e8{bottom:197.946667pt;}
.y132{bottom:198.266667pt;}
.y1c{bottom:199.706667pt;}
.y16e{bottom:200.026667pt;}
.y39{bottom:201.626667pt;}
.y197{bottom:202.426667pt;}
.y1b5{bottom:204.666667pt;}
.y146{bottom:204.826667pt;}
.y93{bottom:206.746667pt;}
.y1e7{bottom:207.706667pt;}
.yfa{bottom:210.266667pt;}
.yb1{bottom:210.746667pt;}
.y5d{bottom:212.026667pt;}
.y16d{bottom:215.386667pt;}
.y38{bottom:216.826667pt;}
.y145{bottom:216.986667pt;}
.y1e6{bottom:217.626667pt;}
.y196{bottom:217.786667pt;}
.y1b4{bottom:220.026667pt;}
.y92{bottom:222.106667pt;}
.y1b{bottom:225.146667pt;}
.yb0{bottom:226.106667pt;}
.y5c{bottom:227.386667pt;}
.y11d{bottom:230.746667pt;}
.y37{bottom:232.186667pt;}
.y195{bottom:233.146667pt;}
.y1b3{bottom:235.386667pt;}
.yf9{bottom:236.186667pt;}
.y1a{bottom:237.466667pt;}
.y1e5{bottom:238.106667pt;}
.yaf{bottom:241.466667pt;}
.y16c{bottom:246.106667pt;}
.y36{bottom:247.546667pt;}
.y1e4{bottom:247.866667pt;}
.y1b2{bottom:250.746667pt;}
.yf8{bottom:251.546667pt;}
.y5b{bottom:253.306667pt;}
.y11c{bottom:256.666667pt;}
.yae{bottom:256.826667pt;}
.y1e3{bottom:257.626667pt;}
.y19{bottom:257.946667pt;}
.y194{bottom:259.066667pt;}
.y16b{bottom:261.306667pt;}
.y35{bottom:262.906667pt;}
.y91{bottom:264.506667pt;}
.y1b1{bottom:266.106667pt;}
.yf7{bottom:266.906667pt;}
.y5a{bottom:268.666667pt;}
.y11b{bottom:272.026667pt;}
.yad{bottom:272.186667pt;}
.y193{bottom:274.426667pt;}
.y16a{bottom:276.666667pt;}
.y1e2{bottom:278.106667pt;}
.y34{bottom:278.266667pt;}
.y1b0{bottom:281.306667pt;}
.yf6{bottom:282.266667pt;}
.y59{bottom:284.026667pt;}
.yac{bottom:287.386667pt;}
.y1e1{bottom:288.026667pt;}
.y192{bottom:289.786667pt;}
.y90{bottom:292.026667pt;}
.y33{bottom:293.466667pt;}
.y1af{bottom:296.666667pt;}
.yf5{bottom:297.466667pt;}
.y1e0{bottom:297.786667pt;}
.y58{bottom:299.426667pt;}
.yab{bottom:302.786667pt;}
.y191{bottom:305.186667pt;}
.y8f{bottom:307.426667pt;}
.y32{bottom:308.866667pt;}
.y1ae{bottom:312.066667pt;}
.yf4{bottom:312.866667pt;}
.y57{bottom:314.786667pt;}
.y11a{bottom:318.146667pt;}
.y1df{bottom:318.306667pt;}
.y190{bottom:320.386667pt;}
.y8e{bottom:322.786667pt;}
.y31{bottom:324.226667pt;}
.y1ad{bottom:327.426667pt;}
.y1de{bottom:328.066667pt;}
.yaa{bottom:328.226667pt;}
.y56{bottom:330.146667pt;}
.y119{bottom:333.346667pt;}
.y18f{bottom:335.746667pt;}
.y1dd{bottom:337.986667pt;}
.y8d{bottom:338.146667pt;}
.y30{bottom:339.586667pt;}
.ya9{bottom:340.546667pt;}
.y1ac{bottom:342.786667pt;}
.yf3{bottom:343.586667pt;}
.y55{bottom:345.506667pt;}
.y155{bottom:346.946667pt;}
.y118{bottom:348.706667pt;}
.y18e{bottom:351.106667pt;}
.y8c{bottom:353.346667pt;}
.y1ab{bottom:358.146667pt;}
.y1dc{bottom:358.466667pt;}
.yf2{bottom:358.946667pt;}
.y54{bottom:360.706667pt;}
.ya8{bottom:361.026667pt;}
.y117{bottom:364.066667pt;}
.y2f{bottom:365.506667pt;}
.y18d{bottom:366.466667pt;}
.y1db{bottom:368.226667pt;}
.y8b{bottom:368.706667pt;}
.y1aa{bottom:373.346667pt;}
.yf1{bottom:374.306667pt;}
.y53{bottom:376.066667pt;}
.y1da{bottom:377.986667pt;}
.y116{bottom:379.426667pt;}
.y2e{bottom:380.866667pt;}
.y18c{bottom:381.826667pt;}
.y8a{bottom:384.066667pt;}
.y1a9{bottom:388.706667pt;}
.yf0{bottom:389.506667pt;}
.y52{bottom:391.426667pt;}
.y115{bottom:394.786667pt;}
.y2d{bottom:396.226667pt;}
.y18b{bottom:397.026667pt;}
.y1d9{bottom:398.466667pt;}
.y89{bottom:399.426667pt;}
.y1a8{bottom:404.066667pt;}
.yef{bottom:404.866667pt;}
.y51{bottom:406.786667pt;}
.y1d8{bottom:408.386667pt;}
.y114{bottom:409.986667pt;}
.y2c{bottom:411.586667pt;}
.y18a{bottom:412.386667pt;}
.yd5{bottom:413.986667pt;}
.y88{bottom:414.786667pt;}
.y1d7{bottom:418.146667pt;}
.yee{bottom:420.226667pt;}
.y50{bottom:422.146667pt;}
.y113{bottom:425.346667pt;}
.y2b{bottom:426.946667pt;}
.y189{bottom:427.746667pt;}
.yd4{bottom:429.346667pt;}
.y87{bottom:429.986667pt;}
.yed{bottom:435.586667pt;}
.y4f{bottom:437.506667pt;}
.y1d6{bottom:438.626667pt;}
.y112{bottom:440.706667pt;}
.y2a{bottom:442.306667pt;}
.y188{bottom:443.106667pt;}
.yd3{bottom:444.706667pt;}
.y86{bottom:445.346667pt;}
.y131{bottom:446.146667pt;}
.y1d5{bottom:448.386667pt;}
.yec{bottom:450.946667pt;}
.y4e{bottom:452.706667pt;}
.y111{bottom:456.066667pt;}
.y144{bottom:457.186667pt;}
.y29{bottom:457.506667pt;}
.y1d4{bottom:458.146667pt;}
.y187{bottom:458.466667pt;}
.yd2{bottom:460.066667pt;}
.y1a7{bottom:460.706667pt;}
.y130{bottom:461.506667pt;}
.yeb{bottom:466.146667pt;}
.y85{bottom:471.426667pt;}
.y143{bottom:472.546667pt;}
.y28{bottom:472.866667pt;}
.y186{bottom:473.826667pt;}
.yd1{bottom:475.266667pt;}
.y1a6{bottom:476.066667pt;}
.y12f{bottom:476.866667pt;}
.y1d3{bottom:478.626667pt;}
.y4d{bottom:478.786667pt;}
.yea{bottom:481.506667pt;}
.y169{bottom:481.986667pt;}
.y18{bottom:483.586667pt;}
.y84{bottom:486.786667pt;}
.y142{bottom:487.746667pt;}
.y27{bottom:488.226667pt;}
.y1d2{bottom:488.546667pt;}
.y185{bottom:489.026667pt;}
.yd0{bottom:490.626667pt;}
.y1a5{bottom:491.426667pt;}
.y12e{bottom:492.226667pt;}
.y4c{bottom:494.146667pt;}
.ye9{bottom:496.866667pt;}
.y168{bottom:497.346667pt;}
.y1d1{bottom:498.306667pt;}
.y17{bottom:498.946667pt;}
.y83{bottom:501.986667pt;}
.y141{bottom:503.106667pt;}
.y26{bottom:503.586667pt;}
.y184{bottom:504.386667pt;}
.ycf{bottom:505.986667pt;}
.y1a4{bottom:506.786667pt;}
.y12d{bottom:507.586667pt;}
.y4b{bottom:509.346667pt;}
.ye8{bottom:512.226667pt;}
.y167{bottom:512.706667pt;}
.y16{bottom:514.306667pt;}
.y82{bottom:517.346667pt;}
.y140{bottom:518.306667pt;}
.y1d0{bottom:518.786667pt;}
.y25{bottom:518.946667pt;}
.y183{bottom:519.746667pt;}
.yce{bottom:521.346667pt;}
.y1a3{bottom:521.986667pt;}
.y12c{bottom:522.946667pt;}
.y4a{bottom:524.706667pt;}
.ye7{bottom:527.586667pt;}
.y166{bottom:528.066667pt;}
.y1cf{bottom:528.546667pt;}
.y15{bottom:529.506667pt;}
.y81{bottom:532.706667pt;}
.y24{bottom:534.306667pt;}
.y182{bottom:535.106667pt;}
.ycd{bottom:536.733333pt;}
.y1a2{bottom:537.373333pt;}
.y12b{bottom:538.173333pt;}
.y1ce{bottom:538.493333pt;}
.y49{bottom:540.093333pt;}
.y13f{bottom:541.533333pt;}
.y165{bottom:543.453333pt;}
.y14{bottom:544.893333pt;}
.y80{bottom:548.093333pt;}
.ya7{bottom:548.573333pt;}
.y23{bottom:549.533333pt;}
.y181{bottom:550.493333pt;}
.ycc{bottom:551.933333pt;}
.ye6{bottom:553.533333pt;}
.y48{bottom:555.453333pt;}
.y110{bottom:558.653333pt;}
.y164{bottom:558.813333pt;}
.y1cd{bottom:558.973333pt;}
.y13{bottom:560.253333pt;}
.y7f{bottom:563.453333pt;}
.ya6{bottom:563.933333pt;}
.y180{bottom:565.853333pt;}
.ycb{bottom:567.293333pt;}
.y1cc{bottom:568.733333pt;}
.ye5{bottom:568.893333pt;}
.y47{bottom:570.813333pt;}
.y10f{bottom:574.013333pt;}
.y12{bottom:575.613333pt;}
.y1cb{bottom:578.493333pt;}
.y7e{bottom:578.813333pt;}
.ya5{bottom:579.293333pt;}
.y17f{bottom:581.053333pt;}
.yca{bottom:582.653333pt;}
.y12a{bottom:584.253333pt;}
.y46{bottom:586.173333pt;}
.y10e{bottom:589.373333pt;}
.y11{bottom:590.973333pt;}
.y7d{bottom:594.013333pt;}
.ye4{bottom:594.333333pt;}
.ya4{bottom:594.653333pt;}
.y17e{bottom:596.413333pt;}
.yc9{bottom:598.013333pt;}
.y1ca{bottom:598.973333pt;}
.y129{bottom:599.613333pt;}
.y45{bottom:601.373333pt;}
.y10d{bottom:604.733333pt;}
.y10{bottom:606.173333pt;}
.ye3{bottom:606.653333pt;}
.y1c9{bottom:608.893333pt;}
.y7c{bottom:609.373333pt;}
.ya3{bottom:610.013333pt;}
.y17d{bottom:611.773333pt;}
.yc8{bottom:613.373333pt;}
.y156{bottom:614.493333pt;}
.y128{bottom:614.973333pt;}
.y1c8{bottom:618.653333pt;}
.y10c{bottom:620.093333pt;}
.yf{bottom:621.533333pt;}
.y7b{bottom:624.733333pt;}
.ya2{bottom:625.373333pt;}
.y44{bottom:626.813333pt;}
.ye2{bottom:627.133333pt;}
.yc7{bottom:628.733333pt;}
.y127{bottom:630.173333pt;}
.y10b{bottom:635.453333pt;}
.ye{bottom:637.533333pt;}
.y43{bottom:639.133333pt;}
.y7a{bottom:640.093333pt;}
.ya1{bottom:640.733333pt;}
.y17c{bottom:642.493333pt;}
.yc6{bottom:643.933333pt;}
.y126{bottom:645.533333pt;}
.y163{bottom:646.013333pt;}
.y1c7{bottom:648.893333pt;}
.y10a{bottom:650.813333pt;}
.y42{bottom:651.293333pt;}
.yd{bottom:655.293333pt;}
.y79{bottom:655.453333pt;}
.ya0{bottom:655.933333pt;}
.y17b{bottom:657.693333pt;}
.yc5{bottom:659.293333pt;}
.y125{bottom:660.893333pt;}
.y162{bottom:661.373333pt;}
.y41{bottom:663.613333pt;}
.y109{bottom:666.013333pt;}
.y1c6{bottom:669.373333pt;}
.yc{bottom:670.653333pt;}
.y78{bottom:670.813333pt;}
.y9f{bottom:671.293333pt;}
.y17a{bottom:673.053333pt;}
.yc4{bottom:674.653333pt;}
.y40{bottom:675.773333pt;}
.y124{bottom:676.253333pt;}
.y161{bottom:676.733333pt;}
.y1c5{bottom:679.293333pt;}
.y108{bottom:681.373333pt;}
.yb{bottom:686.013333pt;}
.y9e{bottom:686.653333pt;}
.y179{bottom:688.413333pt;}
.y1c4{bottom:689.053333pt;}
.yc3{bottom:690.013333pt;}
.y123{bottom:691.613333pt;}
.y160{bottom:692.093333pt;}
.y3f{bottom:696.413333pt;}
.y107{bottom:696.733333pt;}
.ya{bottom:701.373333pt;}
.y9d{bottom:702.013333pt;}
.y178{bottom:703.773333pt;}
.yc2{bottom:705.373333pt;}
.y122{bottom:706.973333pt;}
.y15f{bottom:707.453333pt;}
.y1c3{bottom:709.533333pt;}
.y106{bottom:712.093333pt;}
.y9{bottom:716.573333pt;}
.y1a1{bottom:716.733333pt;}
.y177{bottom:719.133333pt;}
.y1c2{bottom:719.293333pt;}
.yc1{bottom:720.733333pt;}
.y121{bottom:722.173333pt;}
.y154{bottom:722.653333pt;}
.y77{bottom:727.293333pt;}
.y9c{bottom:727.453333pt;}
.y1c1{bottom:729.213333pt;}
.y8{bottom:731.933333pt;}
.y1a0{bottom:732.093333pt;}
.y176{bottom:734.493333pt;}
.yc0{bottom:735.933333pt;}
.y153{bottom:738.013333pt;}
.y9b{bottom:739.613333pt;}
.y76{bottom:742.653333pt;}
.y7{bottom:747.453333pt;}
.y120{bottom:747.613333pt;}
.y1c0{bottom:749.693333pt;}
.ybf{bottom:751.293333pt;}
.y9a{bottom:751.933333pt;}
.y152{bottom:753.373333pt;}
.y75{bottom:758.013333pt;}
.y1bf{bottom:759.453333pt;}
.y11f{bottom:759.933333pt;}
.y13e{bottom:760.893333pt;}
.y19f{bottom:762.653333pt;}
.ybe{bottom:766.653333pt;}
.y151{bottom:768.733333pt;}
.y1be{bottom:769.213333pt;}
.y175{bottom:772.093333pt;}
.y99{bottom:772.413333pt;}
.y13d{bottom:773.213333pt;}
.y74{bottom:773.373333pt;}
.y19e{bottom:778.053333pt;}
.y11e{bottom:780.453333pt;}
.ybd{bottom:782.053333pt;}
.y150{bottom:784.133333pt;}
.y13c{bottom:785.413333pt;}
.y73{bottom:788.773333pt;}
.y1bd{bottom:791.973333pt;}
.y174{bottom:792.773333pt;}
.ybc{bottom:797.413333pt;}
.y13b{bottom:797.733333pt;}
.y14f{bottom:799.493333pt;}
.y72{bottom:804.133333pt;}
.y6{bottom:806.533333pt;}
.y13a{bottom:809.893333pt;}
.y14e{bottom:814.693333pt;}
.y1bc{bottom:819.333333pt;}
.y71{bottom:819.493333pt;}
.ybb{bottom:822.853333pt;}
.y14d{bottom:830.053333pt;}
.y139{bottom:830.533333pt;}
.y70{bottom:834.693333pt;}
.yba{bottom:835.013333pt;}
.y105{bottom:845.413333pt;}
.yb9{bottom:847.333333pt;}
.y5{bottom:849.413333pt;}
.y6f{bottom:850.053333pt;}
.ye1{bottom:854.693333pt;}
.y104{bottom:860.773333pt;}
.y6e{bottom:865.413333pt;}
.yb8{bottom:867.813333pt;}
.y103{bottom:876.133333pt;}
.y6d{bottom:880.773333pt;}
.y4{bottom:886.213333pt;}
.y102{bottom:891.493333pt;}
.y6c{bottom:896.133333pt;}
.y101{bottom:906.693333pt;}
.ye0{bottom:911.493333pt;}
.y6b{bottom:922.053333pt;}
.y3{bottom:923.013333pt;}
.ydf{bottom:926.693333pt;}
.y6a{bottom:937.413333pt;}
.yde{bottom:942.053333pt;}
.y69{bottom:952.773333pt;}
.ydd{bottom:957.413333pt;}
.y2{bottom:959.813333pt;}
.y68{bottom:968.133333pt;}
.ydc{bottom:983.333333pt;}
.y67{bottom:983.493333pt;}
.y1{bottom:996.613333pt;}
.y66{bottom:998.693333pt;}
.y65{bottom:1014.080000pt;}
.h8{height:31.238750pt;}
.ha{height:38.698750pt;}
.hb{height:42.084375pt;}
.h5{height:52.108438pt;}
.h7{height:52.134375pt;}
.h4{height:53.600625pt;}
.h9{height:60.288750pt;}
.h6{height:62.812500pt;}
.h2{height:90.312500pt;}
.h3{height:133.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.031988pt;}
.x2{left:108.351988pt;}
.x3{left:124.351988pt;}
.x1{left:139.546655pt;}
.x4{left:177.946655pt;}
.x5{left:317.186655pt;}
.x6{left:321.026655pt;}
.xa{left:373.986655pt;}
.xc{left:376.066655pt;}
.xb{left:378.466655pt;}
.x8{left:380.066655pt;}
.x9{left:426.173322pt;}
.x11{left:696.133322pt;}
.xf{left:702.373322pt;}
.x10{left:704.133322pt;}
.xd{left:706.533322pt;}
.xe{left:708.933322pt;}
}




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