
    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_330db35ceb9b8c76442af703.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a442768a6afeb0254c448ba6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d31c0050bed023433ac0de3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8131201a29ad4f19fcb4e656.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_e28eb223cc9b5232d90ffcba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747070;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_88daf2840ac3d3b7a615b6ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.756836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-90.000000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.188000px;}
.ls10{letter-spacing:-0.516000px;}
.lsf{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.348000px;}
.ls18{letter-spacing:-0.156000px;}
.lsa{letter-spacing:-0.024000px;}
.lsb{letter-spacing:-0.018000px;}
.lsc{letter-spacing:-0.012000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.ls5{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.024000px;}
.ls12{letter-spacing:0.078000px;}
.ls11{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.156000px;}
.ls1a{letter-spacing:0.168000px;}
.ls15{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.312000px;}
.lse{letter-spacing:0.468000px;}
.ls14{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.516000px;}
.ls16{letter-spacing:0.780000px;}
.ls7{letter-spacing:1.488000px;}
.ls1d{letter-spacing:2.988000px;}
.ls19{letter-spacing:5.988000px;}
.ls17{letter-spacing:10.320000px;}
.ls4{letter-spacing:55.320000px;}
.ls13{letter-spacing:68.820000px;}
.ls1c{letter-spacing:79.608000px;}
.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;}
}
.wsb{word-spacing:-20.016000px;}
.ws10{word-spacing:-18.348000px;}
.wsd{word-spacing:-17.160000px;}
.wsa{word-spacing:-16.320000px;}
.ws6{word-spacing:-15.030000px;}
.ws3{word-spacing:-15.024000px;}
.ws5{word-spacing:-15.018000px;}
.ws8{word-spacing:-15.012000px;}
.ws7{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.994000px;}
.ws4{word-spacing:-14.988000px;}
.ws1{word-spacing:-13.656000px;}
.ws0{word-spacing:-13.344000px;}
.wsf{word-spacing:-13.188000px;}
.ws2{word-spacing:-12.156000px;}
.wse{word-spacing:-0.840000px;}
.ws9{word-spacing:0.000000px;}
._17{margin-left:-5.172000px;}
._8{margin-left:-3.936000px;}
._5{margin-left:-2.916000px;}
._1{margin-left:-1.518000px;}
._0{width:1.104000px;}
._2{width:2.106000px;}
._3{width:3.270000px;}
._a{width:4.914000px;}
._9{width:5.940000px;}
._4{width:7.398000px;}
._7{width:8.694000px;}
._6{width:10.584000px;}
._b{width:12.264000px;}
._d{width:13.500000px;}
._16{width:14.586000px;}
._e{width:15.588000px;}
._14{width:16.902000px;}
._19{width:18.510000px;}
._18{width:19.578000px;}
._f{width:21.690000px;}
._10{width:23.670000px;}
._21{width:26.892000px;}
._1d{width:28.896000px;}
._12{width:30.450000px;}
._11{width:31.458000px;}
._1a{width:35.694000px;}
._1b{width:36.720000px;}
._15{width:47.340000px;}
._1c{width:50.868000px;}
._1f{width:78.474000px;}
._1e{width:79.488000px;}
._20{width:89.964000px;}
._22{width:138.078000px;}
._c{width:651.576000px;}
._13{width:971.220000px;}
.fcb{color:rgb(35,151,210);}
.fc8{color:rgb(17,85,204);}
.fc9{color:rgb(52,51,50);}
.fc6{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(21,73,121);}
.fc2{color:rgb(128,0,0);}
.fc1{color:rgb(0,0,255);}
.fca{color:rgb(0,176,80);}
.fc7{color:rgb(255,255,255);}
.fc5{color:rgb(1,2,5);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:6.000000px;}
.fs6{font-size:30.000000px;}
.fs2{font-size:33.000000px;}
.fs9{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y107{bottom:2.610000px;}
.yf{bottom:2.625000px;}
.y121{bottom:2.670000px;}
.y9b{bottom:3.000000px;}
.yb4{bottom:4.875000px;}
.ybc{bottom:5.235000px;}
.ybb{bottom:5.250000px;}
.yb9{bottom:5.280000px;}
.y99{bottom:5.625000px;}
.yb3{bottom:6.000000px;}
.yac{bottom:7.125000px;}
.y8f{bottom:7.485000px;}
.y20{bottom:7.500000px;}
.y13d{bottom:7.515000px;}
.y1c{bottom:7.875000px;}
.y132{bottom:7.890000px;}
.y1d{bottom:8.250000px;}
.y23{bottom:8.625000px;}
.y11e{bottom:9.360000px;}
.y103{bottom:9.375000px;}
.y108{bottom:9.735000px;}
.yb2{bottom:9.750000px;}
.y10b{bottom:9.765000px;}
.y122{bottom:9.795000px;}
.y8d{bottom:12.000000px;}
.y12d{bottom:13.110000px;}
.y135{bottom:13.125000px;}
.y9d{bottom:15.000000px;}
.y87{bottom:15.375000px;}
.ye{bottom:16.125000px;}
.y106{bottom:16.485000px;}
.y1e{bottom:16.500000px;}
.y11a{bottom:16.530000px;}
.y120{bottom:16.545000px;}
.y24{bottom:16.875000px;}
.y12e{bottom:17.610000px;}
.y13b{bottom:20.250000px;}
.y98{bottom:21.375000px;}
.yb0{bottom:22.875000px;}
.y8e{bottom:22.905000px;}
.y102{bottom:23.250000px;}
.y9c{bottom:23.280000px;}
.y117{bottom:23.625000px;}
.y13{bottom:25.875000px;}
.y151{bottom:25.920000px;}
.y13f{bottom:26.250000px;}
.y134{bottom:27.000000px;}
.y8c{bottom:27.750000px;}
.y133{bottom:28.125000px;}
.yb6{bottom:29.235000px;}
.yd{bottom:30.000000px;}
.y104{bottom:30.375000px;}
.y10e{bottom:30.405000px;}
.y159{bottom:32.625000px;}
.y8a{bottom:32.655000px;}
.y13e{bottom:33.375000px;}
.y95{bottom:36.750000px;}
.yae{bottom:37.125000px;}
.y153{bottom:38.250000px;}
.y141{bottom:39.750000px;}
.y150{bottom:39.795000px;}
.y12{bottom:41.250000px;}
.y93{bottom:42.405000px;}
.yc{bottom:43.875000px;}
.y14b{bottom:44.250000px;}
.yb5{bottom:45.000000px;}
.y157{bottom:45.750000px;}
.y89{bottom:48.405000px;}
.y130{bottom:50.625000px;}
.y152{bottom:52.125000px;}
.y97{bottom:52.500000px;}
.y11{bottom:54.000000px;}
.y13a{bottom:56.655000px;}
.yb{bottom:57.750000px;}
.y4b{bottom:57.787500px;}
.y92{bottom:57.795000px;}
.y145{bottom:63.375000px;}
.y96{bottom:67.875000px;}
.y139{bottom:70.530000px;}
.ya{bottom:71.625000px;}
.y83{bottom:71.662500px;}
.y91{bottom:73.530000px;}
.y144{bottom:77.280000px;}
.y138{bottom:84.405000px;}
.y9{bottom:84.750000px;}
.y149{bottom:87.000000px;}
.y10{bottom:88.500000px;}
.y2{bottom:88.537500px;}
.y148{bottom:111.405000px;}
.y49{bottom:113.662500px;}
.yfd{bottom:120.787500px;}
.y82{bottom:126.037500px;}
.y48{bottom:129.412500px;}
.yc8{bottom:131.662500px;}
.y1c9{bottom:132.787500px;}
.y199{bottom:136.162500px;}
.y166{bottom:136.537500px;}
.yfc{bottom:138.037500px;}
.y12b{bottom:140.287500px;}
.y81{bottom:143.287500px;}
.y47{bottom:144.787500px;}
.y18b{bottom:146.662500px;}
.y1c8{bottom:148.162500px;}
.yc7{bottom:148.912500px;}
.y198{bottom:151.905000px;}
.y165{bottom:153.795000px;}
.yfb{bottom:155.280000px;}
.y12a{bottom:157.545000px;}
.y46{bottom:160.170000px;}
.y80{bottom:160.545000px;}
.y18a{bottom:163.920000px;}
.yc6{bottom:166.170000px;}
.y197{bottom:167.295000px;}
.y164{bottom:171.045000px;}
.yfa{bottom:172.530000px;}
.y129{bottom:174.825000px;}
.y45{bottom:176.325000px;}
.y7f{bottom:177.825000px;}
.y1c7{bottom:179.325000px;}
.y189{bottom:181.200000px;}
.y196{bottom:182.700000px;}
.yc5{bottom:183.450000px;}
.y163{bottom:188.325000px;}
.yf9{bottom:189.825000px;}
.y128{bottom:192.075000px;}
.y44{bottom:194.700000px;}
.y7e{bottom:195.075000px;}
.y188{bottom:198.450000px;}
.yc4{bottom:201.075000px;}
.y162{bottom:205.575000px;}
.yf8{bottom:207.075000px;}
.y43{bottom:207.825000px;}
.y127{bottom:209.325000px;}
.y1c6{bottom:210.450000px;}
.y7d{bottom:212.325000px;}
.y195{bottom:213.825000px;}
.y187{bottom:215.700000px;}
.yc3{bottom:219.450000px;}
.y161{bottom:222.825000px;}
.y42{bottom:223.200000px;}
.yf7{bottom:224.325000px;}
.y1c5{bottom:225.825000px;}
.y126{bottom:226.575000px;}
.y7c{bottom:229.575000px;}
.y186{bottom:232.950000px;}
.yc2{bottom:236.700000px;}
.y41{bottom:238.950000px;}
.y160{bottom:240.075000px;}
.yf6{bottom:241.575000px;}
.y125{bottom:243.450000px;}
.y194{bottom:244.950000px;}
.y7b{bottom:246.825000px;}
.y185{bottom:250.200000px;}
.yc1{bottom:253.950000px;}
.y40{bottom:254.325000px;}
.y1c4{bottom:256.950000px;}
.y15f{bottom:257.325000px;}
.yf5{bottom:258.825000px;}
.y124{bottom:259.200000px;}
.y193{bottom:260.325000px;}
.y7a{bottom:264.075000px;}
.y184{bottom:267.450000px;}
.y3f{bottom:269.700000px;}
.yc0{bottom:271.200000px;}
.y1c3{bottom:272.700000px;}
.y123{bottom:273.450000px;}
.y15e{bottom:275.325000px;}
.yf4{bottom:276.075000px;}
.y79{bottom:281.325000px;}
.y183{bottom:284.700000px;}
.y3e{bottom:285.450000px;}
.y1c2{bottom:288.075000px;}
.ybf{bottom:289.200000px;}
.y192{bottom:291.450000px;}
.y15d{bottom:294.825000px;}
.y78{bottom:298.575000px;}
.y3d{bottom:300.825000px;}
.y182{bottom:301.950000px;}
.y11f{bottom:302.325000px;}
.y1c1{bottom:303.495000px;}
.y191{bottom:307.230000px;}
.ybe{bottom:310.245000px;}
.yf3{bottom:310.605000px;}
.y77{bottom:315.870000px;}
.y3c{bottom:316.620000px;}
.y181{bottom:319.245000px;}
.y190{bottom:322.620000px;}
.y15c{bottom:325.995000px;}
.yf2{bottom:327.855000px;}
.ybd{bottom:330.120000px;}
.y11d{bottom:331.620000px;}
.y3b{bottom:331.995000px;}
.y76{bottom:333.120000px;}
.y1c0{bottom:334.605000px;}
.y180{bottom:336.495000px;}
.y18f{bottom:337.980000px;}
.y147{bottom:340.245000px;}
.yf1{bottom:345.105000px;}
.y3a{bottom:347.370000px;}
.y75{bottom:350.370000px;}
.y17f{bottom:353.745000px;}
.y11c{bottom:360.495000px;}
.yf0{bottom:362.370000px;}
.y39{bottom:363.120000px;}
.y15b{bottom:365.370000px;}
.y1bf{bottom:365.745000px;}
.y74{bottom:367.620000px;}
.y18e{bottom:369.120000px;}
.y17e{bottom:370.995000px;}
.y38{bottom:378.480000px;}
.yef{bottom:379.620000px;}
.y1be{bottom:381.120000px;}
.y73{bottom:384.855000px;}
.y18d{bottom:385.230000px;}
.yba{bottom:385.245000px;}
.y17d{bottom:388.230000px;}
.y11b{bottom:389.745000px;}
.y158{bottom:390.495000px;}
.y37{bottom:394.620000px;}
.yee{bottom:396.870000px;}
.y72{bottom:402.120000px;}
.y18c{bottom:403.620000px;}
.y17c{bottom:405.495000px;}
.yb7{bottom:406.995000px;}
.y36{bottom:411.870000px;}
.y1bd{bottom:412.245000px;}
.yed{bottom:414.120000px;}
.y15a{bottom:415.620000px;}
.y119{bottom:418.620000px;}
.y35{bottom:419.370000px;}
.y17b{bottom:422.745000px;}
.y34{bottom:423.495000px;}
.yb8{bottom:427.620000px;}
.y1bc{bottom:427.995000px;}
.yec{bottom:431.400000px;}
.y71{bottom:436.650000px;}
.y33{bottom:438.900000px;}
.y17a{bottom:440.025000px;}
.y156{bottom:440.775000px;}
.y1bb{bottom:443.400000px;}
.y118{bottom:447.900000px;}
.yeb{bottom:448.650000px;}
.yad{bottom:449.025000px;}
.y70{bottom:453.900000px;}
.y32{bottom:454.650000px;}
.y179{bottom:457.275000px;}
.y1ba{bottom:458.775000px;}
.yea{bottom:465.900000px;}
.y31{bottom:470.025000px;}
.y6f{bottom:471.150000px;}
.y178{bottom:474.525000px;}
.ye9{bottom:483.150000px;}
.y30{bottom:485.400000px;}
.y6e{bottom:488.400000px;}
.y1b9{bottom:489.900000px;}
.y116{bottom:490.650000px;}
.y155{bottom:491.025000px;}
.y177{bottom:491.775000px;}
.yaf{bottom:492.900000px;}
.ye8{bottom:500.400000px;}
.y2f{bottom:501.150000px;}
.y6d{bottom:505.650000px;}
.y176{bottom:509.025000px;}
.y154{bottom:516.150000px;}
.y2e{bottom:516.525000px;}
.ye7{bottom:517.650000px;}
.y1b8{bottom:521.025000px;}
.y6c{bottom:522.900000px;}
.yb1{bottom:523.650000px;}
.y175{bottom:526.275000px;}
.y2d{bottom:532.275000px;}
.y115{bottom:533.775000px;}
.ye6{bottom:534.900000px;}
.y1b7{bottom:536.400000px;}
.y6b{bottom:540.150000px;}
.y14f{bottom:541.275000px;}
.y174{bottom:543.525000px;}
.y2c{bottom:547.650000px;}
.yab{bottom:549.900000px;}
.ye5{bottom:552.150000px;}
.y6a{bottom:557.400000px;}
.y173{bottom:560.820000px;}
.y114{bottom:562.695000px;}
.y2b{bottom:563.070000px;}
.y14a{bottom:566.445000px;}
.y1b6{bottom:567.570000px;}
.ye4{bottom:569.820000px;}
.y69{bottom:574.695000px;}
.yaa{bottom:576.570000px;}
.y172{bottom:578.070000px;}
.y2a{bottom:578.820000px;}
.y1b5{bottom:583.320000px;}
.ye3{bottom:588.570000px;}
.y14e{bottom:591.570000px;}
.y68{bottom:591.945000px;}
.ya9{bottom:593.820000px;}
.y29{bottom:594.195000px;}
.y171{bottom:595.320000px;}
.y1b4{bottom:598.695000px;}
.ye2{bottom:605.820000px;}
.y67{bottom:609.195000px;}
.y28{bottom:609.945000px;}
.ya8{bottom:611.070000px;}
.y170{bottom:612.570000px;}
.y1b3{bottom:614.070000px;}
.y143{bottom:616.695000px;}
.ye1{bottom:623.070000px;}
.y27{bottom:625.320000px;}
.y66{bottom:626.445000px;}
.ya7{bottom:628.320000px;}
.y16f{bottom:629.820000px;}
.y113{bottom:634.695000px;}
.ye0{bottom:640.320000px;}
.y26{bottom:641.445000px;}
.y14d{bottom:641.820000px;}
.y65{bottom:643.695000px;}
.y1b2{bottom:645.195000px;}
.ya6{bottom:645.570000px;}
.y16e{bottom:647.070000px;}
.ydf{bottom:657.570000px;}
.y25{bottom:659.820000px;}
.y1b1{bottom:660.570000px;}
.y64{bottom:660.945000px;}
.ya5{bottom:662.820000px;}
.y112{bottom:663.945000px;}
.y16d{bottom:664.320000px;}
.y14c{bottom:666.945000px;}
.y22{bottom:670.695000px;}
.yde{bottom:674.820000px;}
.y1b0{bottom:676.320000px;}
.y63{bottom:678.195000px;}
.ya4{bottom:680.070000px;}
.y16c{bottom:681.570000px;}
.ydd{bottom:691.725000px;}
.y12f{bottom:692.100000px;}
.y111{bottom:693.225000px;}
.y62{bottom:695.475000px;}
.ya3{bottom:697.350000px;}
.y16b{bottom:698.850000px;}
.y21{bottom:704.475000px;}
.ydc{bottom:706.350000px;}
.y1af{bottom:707.475000px;}
.y61{bottom:712.725000px;}
.ya2{bottom:714.600000px;}
.y16a{bottom:716.100000px;}
.y146{bottom:717.225000px;}
.y110{bottom:722.100000px;}
.y1ae{bottom:722.850000px;}
.ydb{bottom:724.725000px;}
.y60{bottom:729.975000px;}
.ya1{bottom:731.850000px;}
.y169{bottom:733.350000px;}
.y1f{bottom:738.225000px;}
.y140{bottom:742.350000px;}
.yda{bottom:742.725000px;}
.y5f{bottom:747.225000px;}
.ya0{bottom:749.475000px;}
.y168{bottom:750.600000px;}
.y1ca{bottom:752.475000px;}
.y1ad{bottom:753.975000px;}
.yd9{bottom:763.725000px;}
.y5e{bottom:764.475000px;}
.y10f{bottom:765.225000px;}
.y137{bottom:767.475000px;}
.y9f{bottom:767.850000px;}
.y1ac{bottom:769.350000px;}
.y1b{bottom:771.600000px;}
.y5d{bottom:781.725000px;}
.y9e{bottom:783.600000px;}
.yd8{bottom:783.975000px;}
.y167{bottom:785.100000px;}
.y142{bottom:792.600000px;}
.y10d{bottom:794.100000px;}
.y90{bottom:797.850000px;}
.y5c{bottom:798.975000px;}
.y1ab{bottom:800.475000px;}
.yd7{bottom:802.350000px;}
.y1a{bottom:814.350000px;}
.y1aa{bottom:815.850000px;}
.y5b{bottom:816.225000px;}
.y19{bottom:817.380000px;}
.y131{bottom:817.755000px;}
.yd6{bottom:819.630000px;}
.y18{bottom:828.645000px;}
.y1a9{bottom:831.630000px;}
.y5a{bottom:833.505000px;}
.yd5{bottom:836.880000px;}
.y10c{bottom:837.255000px;}
.y94{bottom:840.255000px;}
.y13c{bottom:842.880000px;}
.y1a8{bottom:847.005000px;}
.y17{bottom:849.255000px;}
.y59{bottom:850.755000px;}
.yd4{bottom:854.130000px;}
.y1a7{bottom:862.755000px;}
.y10a{bottom:866.130000px;}
.y58{bottom:868.005000px;}
.y16{bottom:869.145000px;}
.yd3{bottom:871.380000px;}
.y9a{bottom:875.130000px;}
.y1a6{bottom:878.130000px;}
.y57{bottom:885.255000px;}
.y15{bottom:887.880000px;}
.yd2{bottom:888.630000px;}
.y136{bottom:893.130000px;}
.y1a5{bottom:893.505000px;}
.y109{bottom:895.380000px;}
.y56{bottom:902.505000px;}
.yd1{bottom:905.880000px;}
.y1a4{bottom:909.255000px;}
.y12c{bottom:918.270000px;}
.y55{bottom:919.755000px;}
.yd0{bottom:923.130000px;}
.y105{bottom:924.270000px;}
.y1a3{bottom:924.630000px;}
.y88{bottom:925.395000px;}
.y14{bottom:934.755000px;}
.y54{bottom:937.005000px;}
.ycf{bottom:940.380000px;}
.y8{bottom:949.050000px;}
.y101{bottom:953.550000px;}
.y53{bottom:954.300000px;}
.y1a2{bottom:955.800000px;}
.yce{bottom:957.675000px;}
.y8b{bottom:967.050000px;}
.y1a1{bottom:971.175000px;}
.y52{bottom:971.550000px;}
.ycd{bottom:974.925000px;}
.y1a0{bottom:986.925000px;}
.y51{bottom:988.800000px;}
.ycc{bottom:992.175000px;}
.y100{bottom:996.300000px;}
.y19f{bottom:1002.300000px;}
.y50{bottom:1006.050000px;}
.ycb{bottom:1009.425000px;}
.y86{bottom:1017.675000px;}
.y19e{bottom:1018.050000px;}
.y4f{bottom:1023.300000px;}
.yff{bottom:1025.550000px;}
.yca{bottom:1026.675000px;}
.y19d{bottom:1033.425000px;}
.y4e{bottom:1040.550000px;}
.yc9{bottom:1043.925000px;}
.y19c{bottom:1048.800000px;}
.y7{bottom:1053.300000px;}
.y4d{bottom:1057.800000px;}
.y85{bottom:1061.175000px;}
.y19b{bottom:1064.550000px;}
.y6{bottom:1070.550000px;}
.y4c{bottom:1075.830000px;}
.y84{bottom:1078.455000px;}
.yfe{bottom:1078.830000px;}
.y19a{bottom:1079.955000px;}
.y5{bottom:1087.830000px;}
.y4{bottom:1105.080000px;}
.y3{bottom:1122.330000px;}
.y1{bottom:1160.955000px;}
.y4a{bottom:1180.830000px;}
.h9{height:6.257812px;}
.h25{height:13.875000px;}
.h22{height:19.125000px;}
.h1e{height:19.500000px;}
.h21{height:19.912500px;}
.h23{height:20.250000px;}
.h24{height:20.625000px;}
.h1d{height:21.375000px;}
.h15{height:23.625000px;}
.h18{height:23.662500px;}
.h1b{height:24.750000px;}
.h29{height:27.375000px;}
.h2d{height:27.412500px;}
.h26{height:27.750000px;}
.h28{height:27.772500px;}
.h2c{height:27.787500px;}
.ha{height:29.250000px;}
.hc{height:29.662500px;}
.h8{height:31.289062px;}
.h16{height:33.375000px;}
.h4{height:34.417969px;}
.h2e{height:34.897500px;}
.h12{height:40.147500px;}
.hf{height:40.500000px;}
.h20{height:40.537500px;}
.h17{height:40.912500px;}
.h27{height:41.250000px;}
.h2b{height:41.625000px;}
.h2a{height:41.662500px;}
.h1c{height:42.375000px;}
.hd{height:46.933594px;}
.h31{height:48.750000px;}
.h11{height:49.500000px;}
.h5{height:50.062500px;}
.he{height:53.818359px;}
.h1a{height:55.500000px;}
.h6{height:56.320312px;}
.h2{height:62.578125px;}
.hb{height:68.835938px;}
.h34{height:73.875000px;}
.h38{height:73.912500px;}
.h1{height:75.093750px;}
.h14{height:83.625000px;}
.h1f{height:84.412500px;}
.h7{height:87.609375px;}
.h10{height:91.147500px;}
.h30{height:99.000000px;}
.h39{height:99.037500px;}
.h19{height:99.375000px;}
.h3{height:101.250000px;}
.h33{height:124.125000px;}
.h37{height:124.162500px;}
.h13{height:126.037500px;}
.h32{height:149.287500px;}
.h2f{height:224.655000px;}
.h36{height:224.700000px;}
.h35{height:350.355000px;}
.h0{height:1263.000000px;}
.wb{width:17.625000px;}
.w1c{width:27.412500px;}
.w16{width:28.162500px;}
.w5{width:31.500000px;}
.w6{width:31.912500px;}
.w11{width:44.625000px;}
.w12{width:44.662500px;}
.w13{width:45.000000px;}
.w19{width:57.787500px;}
.w1a{width:58.125000px;}
.w18{width:58.500000px;}
.w1b{width:79.912500px;}
.wf{width:94.537500px;}
.w8{width:97.162500px;}
.wc{width:106.162500px;}
.w9{width:116.287500px;}
.w17{width:157.950000px;}
.w14{width:198.825000px;}
.wd{width:202.200000px;}
.w15{width:273.495000px;}
.we{width:320.025000px;}
.w3{width:361.275000px;}
.w4{width:361.650000px;}
.w10{width:401.805000px;}
.wa{width:491.850000px;}
.w7{width:500.445000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:4.500000px;}
.x33{left:6.000000px;}
.xe{left:7.875000px;}
.x34{left:9.375000px;}
.x12{left:10.875000px;}
.x25{left:12.375000px;}
.x2b{left:13.905000px;}
.x35{left:18.045000px;}
.x1e{left:19.500000px;}
.x26{left:21.000000px;}
.x6{left:24.375000px;}
.xb{left:26.250000px;}
.x32{left:27.420000px;}
.x18{left:29.625000px;}
.x2d{left:33.000000px;}
.x19{left:37.545000px;}
.x5{left:40.530000px;}
.x14{left:46.920000px;}
.x27{left:48.787500px;}
.x1{left:85.162487px;}
.x1c{left:86.662500px;}
.x8{left:103.162487px;}
.x1b{left:106.537487px;}
.x29{left:121.200000px;}
.x16{left:122.325000px;}
.x1a{left:127.537487px;}
.x36{left:138.449987px;}
.x2f{left:145.950000px;}
.xa{left:164.700000px;}
.xf{left:182.325000px;}
.x13{left:191.325000px;}
.xc{left:196.200000px;}
.x30{left:205.575000px;}
.xd{left:228.120000px;}
.x7{left:250.244987px;}
.x28{left:286.245000px;}
.x10{left:298.620000px;}
.x4{left:361.635000px;}
.x9{left:371.024987px;}
.x15{left:393.525000px;}
.x3{left:446.445000px;}
.x2{left:473.069987px;}
.x1d{left:489.225000px;}
.x1f{left:534.600000px;}
.x2a{left:560.475000px;}
.x20{left:580.020000px;}
.x2c{left:589.395000px;}
.x21{left:625.770000px;}
.x22{left:671.175000px;}
.x17{left:713.550000px;}
.x23{left:716.550000px;}
.x2e{left:748.095000px;}
.x24{left:761.970000px;}
.x11{left:790.470000px;}
@media print{
.v1{vertical-align:-80.000000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.056000pt;}
.ls10{letter-spacing:-0.458667pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.309333pt;}
.ls18{letter-spacing:-0.138667pt;}
.lsa{letter-spacing:-0.021333pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:-0.010667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.ls5{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.021333pt;}
.ls12{letter-spacing:0.069333pt;}
.ls11{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.138667pt;}
.ls1a{letter-spacing:0.149333pt;}
.ls15{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.277333pt;}
.lse{letter-spacing:0.416000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.458667pt;}
.ls16{letter-spacing:0.693333pt;}
.ls7{letter-spacing:1.322667pt;}
.ls1d{letter-spacing:2.656000pt;}
.ls19{letter-spacing:5.322667pt;}
.ls17{letter-spacing:9.173333pt;}
.ls4{letter-spacing:49.173333pt;}
.ls13{letter-spacing:61.173333pt;}
.ls1c{letter-spacing:70.762667pt;}
.wsb{word-spacing:-17.792000pt;}
.ws10{word-spacing:-16.309333pt;}
.wsd{word-spacing:-15.253333pt;}
.wsa{word-spacing:-14.506667pt;}
.ws6{word-spacing:-13.360000pt;}
.ws3{word-spacing:-13.354667pt;}
.ws5{word-spacing:-13.349333pt;}
.ws8{word-spacing:-13.344000pt;}
.ws7{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.328000pt;}
.ws4{word-spacing:-13.322667pt;}
.ws1{word-spacing:-12.138667pt;}
.ws0{word-spacing:-11.861333pt;}
.wsf{word-spacing:-11.722667pt;}
.ws2{word-spacing:-10.805333pt;}
.wse{word-spacing:-0.746667pt;}
.ws9{word-spacing:0.000000pt;}
._17{margin-left:-4.597333pt;}
._8{margin-left:-3.498667pt;}
._5{margin-left:-2.592000pt;}
._1{margin-left:-1.349333pt;}
._0{width:0.981333pt;}
._2{width:1.872000pt;}
._3{width:2.906667pt;}
._a{width:4.368000pt;}
._9{width:5.280000pt;}
._4{width:6.576000pt;}
._7{width:7.728000pt;}
._6{width:9.408000pt;}
._b{width:10.901333pt;}
._d{width:12.000000pt;}
._16{width:12.965333pt;}
._e{width:13.856000pt;}
._14{width:15.024000pt;}
._19{width:16.453333pt;}
._18{width:17.402667pt;}
._f{width:19.280000pt;}
._10{width:21.040000pt;}
._21{width:23.904000pt;}
._1d{width:25.685333pt;}
._12{width:27.066667pt;}
._11{width:27.962667pt;}
._1a{width:31.728000pt;}
._1b{width:32.640000pt;}
._15{width:42.080000pt;}
._1c{width:45.216000pt;}
._1f{width:69.754667pt;}
._1e{width:70.656000pt;}
._20{width:79.968000pt;}
._22{width:122.736000pt;}
._c{width:579.178667pt;}
._13{width:863.306667pt;}
.fs7{font-size:5.333333pt;}
.fs6{font-size:26.666667pt;}
.fs2{font-size:29.333333pt;}
.fs9{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y107{bottom:2.320000pt;}
.yf{bottom:2.333333pt;}
.y121{bottom:2.373333pt;}
.y9b{bottom:2.666667pt;}
.yb4{bottom:4.333333pt;}
.ybc{bottom:4.653333pt;}
.ybb{bottom:4.666667pt;}
.yb9{bottom:4.693333pt;}
.y99{bottom:5.000000pt;}
.yb3{bottom:5.333333pt;}
.yac{bottom:6.333333pt;}
.y8f{bottom:6.653333pt;}
.y20{bottom:6.666667pt;}
.y13d{bottom:6.680000pt;}
.y1c{bottom:7.000000pt;}
.y132{bottom:7.013333pt;}
.y1d{bottom:7.333333pt;}
.y23{bottom:7.666667pt;}
.y11e{bottom:8.320000pt;}
.y103{bottom:8.333333pt;}
.y108{bottom:8.653333pt;}
.yb2{bottom:8.666667pt;}
.y10b{bottom:8.680000pt;}
.y122{bottom:8.706667pt;}
.y8d{bottom:10.666667pt;}
.y12d{bottom:11.653333pt;}
.y135{bottom:11.666667pt;}
.y9d{bottom:13.333333pt;}
.y87{bottom:13.666667pt;}
.ye{bottom:14.333333pt;}
.y106{bottom:14.653333pt;}
.y1e{bottom:14.666667pt;}
.y11a{bottom:14.693333pt;}
.y120{bottom:14.706667pt;}
.y24{bottom:15.000000pt;}
.y12e{bottom:15.653333pt;}
.y13b{bottom:18.000000pt;}
.y98{bottom:19.000000pt;}
.yb0{bottom:20.333333pt;}
.y8e{bottom:20.360000pt;}
.y102{bottom:20.666667pt;}
.y9c{bottom:20.693333pt;}
.y117{bottom:21.000000pt;}
.y13{bottom:23.000000pt;}
.y151{bottom:23.040000pt;}
.y13f{bottom:23.333333pt;}
.y134{bottom:24.000000pt;}
.y8c{bottom:24.666667pt;}
.y133{bottom:25.000000pt;}
.yb6{bottom:25.986667pt;}
.yd{bottom:26.666667pt;}
.y104{bottom:27.000000pt;}
.y10e{bottom:27.026667pt;}
.y159{bottom:29.000000pt;}
.y8a{bottom:29.026667pt;}
.y13e{bottom:29.666667pt;}
.y95{bottom:32.666667pt;}
.yae{bottom:33.000000pt;}
.y153{bottom:34.000000pt;}
.y141{bottom:35.333333pt;}
.y150{bottom:35.373333pt;}
.y12{bottom:36.666667pt;}
.y93{bottom:37.693333pt;}
.yc{bottom:39.000000pt;}
.y14b{bottom:39.333333pt;}
.yb5{bottom:40.000000pt;}
.y157{bottom:40.666667pt;}
.y89{bottom:43.026667pt;}
.y130{bottom:45.000000pt;}
.y152{bottom:46.333333pt;}
.y97{bottom:46.666667pt;}
.y11{bottom:48.000000pt;}
.y13a{bottom:50.360000pt;}
.yb{bottom:51.333333pt;}
.y4b{bottom:51.366667pt;}
.y92{bottom:51.373333pt;}
.y145{bottom:56.333333pt;}
.y96{bottom:60.333333pt;}
.y139{bottom:62.693333pt;}
.ya{bottom:63.666667pt;}
.y83{bottom:63.700000pt;}
.y91{bottom:65.360000pt;}
.y144{bottom:68.693333pt;}
.y138{bottom:75.026667pt;}
.y9{bottom:75.333333pt;}
.y149{bottom:77.333333pt;}
.y10{bottom:78.666667pt;}
.y2{bottom:78.700000pt;}
.y148{bottom:99.026667pt;}
.y49{bottom:101.033333pt;}
.yfd{bottom:107.366667pt;}
.y82{bottom:112.033333pt;}
.y48{bottom:115.033333pt;}
.yc8{bottom:117.033333pt;}
.y1c9{bottom:118.033333pt;}
.y199{bottom:121.033333pt;}
.y166{bottom:121.366667pt;}
.yfc{bottom:122.700000pt;}
.y12b{bottom:124.700000pt;}
.y81{bottom:127.366667pt;}
.y47{bottom:128.700000pt;}
.y18b{bottom:130.366667pt;}
.y1c8{bottom:131.700000pt;}
.yc7{bottom:132.366667pt;}
.y198{bottom:135.026667pt;}
.y165{bottom:136.706667pt;}
.yfb{bottom:138.026667pt;}
.y12a{bottom:140.040000pt;}
.y46{bottom:142.373333pt;}
.y80{bottom:142.706667pt;}
.y18a{bottom:145.706667pt;}
.yc6{bottom:147.706667pt;}
.y197{bottom:148.706667pt;}
.y164{bottom:152.040000pt;}
.yfa{bottom:153.360000pt;}
.y129{bottom:155.400000pt;}
.y45{bottom:156.733333pt;}
.y7f{bottom:158.066667pt;}
.y1c7{bottom:159.400000pt;}
.y189{bottom:161.066667pt;}
.y196{bottom:162.400000pt;}
.yc5{bottom:163.066667pt;}
.y163{bottom:167.400000pt;}
.yf9{bottom:168.733333pt;}
.y128{bottom:170.733333pt;}
.y44{bottom:173.066667pt;}
.y7e{bottom:173.400000pt;}
.y188{bottom:176.400000pt;}
.yc4{bottom:178.733333pt;}
.y162{bottom:182.733333pt;}
.yf8{bottom:184.066667pt;}
.y43{bottom:184.733333pt;}
.y127{bottom:186.066667pt;}
.y1c6{bottom:187.066667pt;}
.y7d{bottom:188.733333pt;}
.y195{bottom:190.066667pt;}
.y187{bottom:191.733333pt;}
.yc3{bottom:195.066667pt;}
.y161{bottom:198.066667pt;}
.y42{bottom:198.400000pt;}
.yf7{bottom:199.400000pt;}
.y1c5{bottom:200.733333pt;}
.y126{bottom:201.400000pt;}
.y7c{bottom:204.066667pt;}
.y186{bottom:207.066667pt;}
.yc2{bottom:210.400000pt;}
.y41{bottom:212.400000pt;}
.y160{bottom:213.400000pt;}
.yf6{bottom:214.733333pt;}
.y125{bottom:216.400000pt;}
.y194{bottom:217.733333pt;}
.y7b{bottom:219.400000pt;}
.y185{bottom:222.400000pt;}
.yc1{bottom:225.733333pt;}
.y40{bottom:226.066667pt;}
.y1c4{bottom:228.400000pt;}
.y15f{bottom:228.733333pt;}
.yf5{bottom:230.066667pt;}
.y124{bottom:230.400000pt;}
.y193{bottom:231.400000pt;}
.y7a{bottom:234.733333pt;}
.y184{bottom:237.733333pt;}
.y3f{bottom:239.733333pt;}
.yc0{bottom:241.066667pt;}
.y1c3{bottom:242.400000pt;}
.y123{bottom:243.066667pt;}
.y15e{bottom:244.733333pt;}
.yf4{bottom:245.400000pt;}
.y79{bottom:250.066667pt;}
.y183{bottom:253.066667pt;}
.y3e{bottom:253.733333pt;}
.y1c2{bottom:256.066667pt;}
.ybf{bottom:257.066667pt;}
.y192{bottom:259.066667pt;}
.y15d{bottom:262.066667pt;}
.y78{bottom:265.400000pt;}
.y3d{bottom:267.400000pt;}
.y182{bottom:268.400000pt;}
.y11f{bottom:268.733333pt;}
.y1c1{bottom:269.773333pt;}
.y191{bottom:273.093333pt;}
.ybe{bottom:275.773333pt;}
.yf3{bottom:276.093333pt;}
.y77{bottom:280.773333pt;}
.y3c{bottom:281.440000pt;}
.y181{bottom:283.773333pt;}
.y190{bottom:286.773333pt;}
.y15c{bottom:289.773333pt;}
.yf2{bottom:291.426667pt;}
.ybd{bottom:293.440000pt;}
.y11d{bottom:294.773333pt;}
.y3b{bottom:295.106667pt;}
.y76{bottom:296.106667pt;}
.y1c0{bottom:297.426667pt;}
.y180{bottom:299.106667pt;}
.y18f{bottom:300.426667pt;}
.y147{bottom:302.440000pt;}
.yf1{bottom:306.760000pt;}
.y3a{bottom:308.773333pt;}
.y75{bottom:311.440000pt;}
.y17f{bottom:314.440000pt;}
.y11c{bottom:320.440000pt;}
.yf0{bottom:322.106667pt;}
.y39{bottom:322.773333pt;}
.y15b{bottom:324.773333pt;}
.y1bf{bottom:325.106667pt;}
.y74{bottom:326.773333pt;}
.y18e{bottom:328.106667pt;}
.y17e{bottom:329.773333pt;}
.y38{bottom:336.426667pt;}
.yef{bottom:337.440000pt;}
.y1be{bottom:338.773333pt;}
.y73{bottom:342.093333pt;}
.y18d{bottom:342.426667pt;}
.yba{bottom:342.440000pt;}
.y17d{bottom:345.093333pt;}
.y11b{bottom:346.440000pt;}
.y158{bottom:347.106667pt;}
.y37{bottom:350.773333pt;}
.yee{bottom:352.773333pt;}
.y72{bottom:357.440000pt;}
.y18c{bottom:358.773333pt;}
.y17c{bottom:360.440000pt;}
.yb7{bottom:361.773333pt;}
.y36{bottom:366.106667pt;}
.y1bd{bottom:366.440000pt;}
.yed{bottom:368.106667pt;}
.y15a{bottom:369.440000pt;}
.y119{bottom:372.106667pt;}
.y35{bottom:372.773333pt;}
.y17b{bottom:375.773333pt;}
.y34{bottom:376.440000pt;}
.yb8{bottom:380.106667pt;}
.y1bc{bottom:380.440000pt;}
.yec{bottom:383.466667pt;}
.y71{bottom:388.133333pt;}
.y33{bottom:390.133333pt;}
.y17a{bottom:391.133333pt;}
.y156{bottom:391.800000pt;}
.y1bb{bottom:394.133333pt;}
.y118{bottom:398.133333pt;}
.yeb{bottom:398.800000pt;}
.yad{bottom:399.133333pt;}
.y70{bottom:403.466667pt;}
.y32{bottom:404.133333pt;}
.y179{bottom:406.466667pt;}
.y1ba{bottom:407.800000pt;}
.yea{bottom:414.133333pt;}
.y31{bottom:417.800000pt;}
.y6f{bottom:418.800000pt;}
.y178{bottom:421.800000pt;}
.ye9{bottom:429.466667pt;}
.y30{bottom:431.466667pt;}
.y6e{bottom:434.133333pt;}
.y1b9{bottom:435.466667pt;}
.y116{bottom:436.133333pt;}
.y155{bottom:436.466667pt;}
.y177{bottom:437.133333pt;}
.yaf{bottom:438.133333pt;}
.ye8{bottom:444.800000pt;}
.y2f{bottom:445.466667pt;}
.y6d{bottom:449.466667pt;}
.y176{bottom:452.466667pt;}
.y154{bottom:458.800000pt;}
.y2e{bottom:459.133333pt;}
.ye7{bottom:460.133333pt;}
.y1b8{bottom:463.133333pt;}
.y6c{bottom:464.800000pt;}
.yb1{bottom:465.466667pt;}
.y175{bottom:467.800000pt;}
.y2d{bottom:473.133333pt;}
.y115{bottom:474.466667pt;}
.ye6{bottom:475.466667pt;}
.y1b7{bottom:476.800000pt;}
.y6b{bottom:480.133333pt;}
.y14f{bottom:481.133333pt;}
.y174{bottom:483.133333pt;}
.y2c{bottom:486.800000pt;}
.yab{bottom:488.800000pt;}
.ye5{bottom:490.800000pt;}
.y6a{bottom:495.466667pt;}
.y173{bottom:498.506667pt;}
.y114{bottom:500.173333pt;}
.y2b{bottom:500.506667pt;}
.y14a{bottom:503.506667pt;}
.y1b6{bottom:504.506667pt;}
.ye4{bottom:506.506667pt;}
.y69{bottom:510.840000pt;}
.yaa{bottom:512.506667pt;}
.y172{bottom:513.840000pt;}
.y2a{bottom:514.506667pt;}
.y1b5{bottom:518.506667pt;}
.ye3{bottom:523.173333pt;}
.y14e{bottom:525.840000pt;}
.y68{bottom:526.173333pt;}
.ya9{bottom:527.840000pt;}
.y29{bottom:528.173333pt;}
.y171{bottom:529.173333pt;}
.y1b4{bottom:532.173333pt;}
.ye2{bottom:538.506667pt;}
.y67{bottom:541.506667pt;}
.y28{bottom:542.173333pt;}
.ya8{bottom:543.173333pt;}
.y170{bottom:544.506667pt;}
.y1b3{bottom:545.840000pt;}
.y143{bottom:548.173333pt;}
.ye1{bottom:553.840000pt;}
.y27{bottom:555.840000pt;}
.y66{bottom:556.840000pt;}
.ya7{bottom:558.506667pt;}
.y16f{bottom:559.840000pt;}
.y113{bottom:564.173333pt;}
.ye0{bottom:569.173333pt;}
.y26{bottom:570.173333pt;}
.y14d{bottom:570.506667pt;}
.y65{bottom:572.173333pt;}
.y1b2{bottom:573.506667pt;}
.ya6{bottom:573.840000pt;}
.y16e{bottom:575.173333pt;}
.ydf{bottom:584.506667pt;}
.y25{bottom:586.506667pt;}
.y1b1{bottom:587.173333pt;}
.y64{bottom:587.506667pt;}
.ya5{bottom:589.173333pt;}
.y112{bottom:590.173333pt;}
.y16d{bottom:590.506667pt;}
.y14c{bottom:592.840000pt;}
.y22{bottom:596.173333pt;}
.yde{bottom:599.840000pt;}
.y1b0{bottom:601.173333pt;}
.y63{bottom:602.840000pt;}
.ya4{bottom:604.506667pt;}
.y16c{bottom:605.840000pt;}
.ydd{bottom:614.866667pt;}
.y12f{bottom:615.200000pt;}
.y111{bottom:616.200000pt;}
.y62{bottom:618.200000pt;}
.ya3{bottom:619.866667pt;}
.y16b{bottom:621.200000pt;}
.y21{bottom:626.200000pt;}
.ydc{bottom:627.866667pt;}
.y1af{bottom:628.866667pt;}
.y61{bottom:633.533333pt;}
.ya2{bottom:635.200000pt;}
.y16a{bottom:636.533333pt;}
.y146{bottom:637.533333pt;}
.y110{bottom:641.866667pt;}
.y1ae{bottom:642.533333pt;}
.ydb{bottom:644.200000pt;}
.y60{bottom:648.866667pt;}
.ya1{bottom:650.533333pt;}
.y169{bottom:651.866667pt;}
.y1f{bottom:656.200000pt;}
.y140{bottom:659.866667pt;}
.yda{bottom:660.200000pt;}
.y5f{bottom:664.200000pt;}
.ya0{bottom:666.200000pt;}
.y168{bottom:667.200000pt;}
.y1ca{bottom:668.866667pt;}
.y1ad{bottom:670.200000pt;}
.yd9{bottom:678.866667pt;}
.y5e{bottom:679.533333pt;}
.y10f{bottom:680.200000pt;}
.y137{bottom:682.200000pt;}
.y9f{bottom:682.533333pt;}
.y1ac{bottom:683.866667pt;}
.y1b{bottom:685.866667pt;}
.y5d{bottom:694.866667pt;}
.y9e{bottom:696.533333pt;}
.yd8{bottom:696.866667pt;}
.y167{bottom:697.866667pt;}
.y142{bottom:704.533333pt;}
.y10d{bottom:705.866667pt;}
.y90{bottom:709.200000pt;}
.y5c{bottom:710.200000pt;}
.y1ab{bottom:711.533333pt;}
.yd7{bottom:713.200000pt;}
.y1a{bottom:723.866667pt;}
.y1aa{bottom:725.200000pt;}
.y5b{bottom:725.533333pt;}
.y19{bottom:726.560000pt;}
.y131{bottom:726.893333pt;}
.yd6{bottom:728.560000pt;}
.y18{bottom:736.573333pt;}
.y1a9{bottom:739.226667pt;}
.y5a{bottom:740.893333pt;}
.yd5{bottom:743.893333pt;}
.y10c{bottom:744.226667pt;}
.y94{bottom:746.893333pt;}
.y13c{bottom:749.226667pt;}
.y1a8{bottom:752.893333pt;}
.y17{bottom:754.893333pt;}
.y59{bottom:756.226667pt;}
.yd4{bottom:759.226667pt;}
.y1a7{bottom:766.893333pt;}
.y10a{bottom:769.893333pt;}
.y58{bottom:771.560000pt;}
.y16{bottom:772.573333pt;}
.yd3{bottom:774.560000pt;}
.y9a{bottom:777.893333pt;}
.y1a6{bottom:780.560000pt;}
.y57{bottom:786.893333pt;}
.y15{bottom:789.226667pt;}
.yd2{bottom:789.893333pt;}
.y136{bottom:793.893333pt;}
.y1a5{bottom:794.226667pt;}
.y109{bottom:795.893333pt;}
.y56{bottom:802.226667pt;}
.yd1{bottom:805.226667pt;}
.y1a4{bottom:808.226667pt;}
.y12c{bottom:816.240000pt;}
.y55{bottom:817.560000pt;}
.yd0{bottom:820.560000pt;}
.y105{bottom:821.573333pt;}
.y1a3{bottom:821.893333pt;}
.y88{bottom:822.573333pt;}
.y14{bottom:830.893333pt;}
.y54{bottom:832.893333pt;}
.ycf{bottom:835.893333pt;}
.y8{bottom:843.600000pt;}
.y101{bottom:847.600000pt;}
.y53{bottom:848.266667pt;}
.y1a2{bottom:849.600000pt;}
.yce{bottom:851.266667pt;}
.y8b{bottom:859.600000pt;}
.y1a1{bottom:863.266667pt;}
.y52{bottom:863.600000pt;}
.ycd{bottom:866.600000pt;}
.y1a0{bottom:877.266667pt;}
.y51{bottom:878.933333pt;}
.ycc{bottom:881.933333pt;}
.y100{bottom:885.600000pt;}
.y19f{bottom:890.933333pt;}
.y50{bottom:894.266667pt;}
.ycb{bottom:897.266667pt;}
.y86{bottom:904.600000pt;}
.y19e{bottom:904.933333pt;}
.y4f{bottom:909.600000pt;}
.yff{bottom:911.600000pt;}
.yca{bottom:912.600000pt;}
.y19d{bottom:918.600000pt;}
.y4e{bottom:924.933333pt;}
.yc9{bottom:927.933333pt;}
.y19c{bottom:932.266667pt;}
.y7{bottom:936.266667pt;}
.y4d{bottom:940.266667pt;}
.y85{bottom:943.266667pt;}
.y19b{bottom:946.266667pt;}
.y6{bottom:951.600000pt;}
.y4c{bottom:956.293333pt;}
.y84{bottom:958.626667pt;}
.yfe{bottom:958.960000pt;}
.y19a{bottom:959.960000pt;}
.y5{bottom:966.960000pt;}
.y4{bottom:982.293333pt;}
.y3{bottom:997.626667pt;}
.y1{bottom:1031.960000pt;}
.y4a{bottom:1049.626667pt;}
.h9{height:5.562500pt;}
.h25{height:12.333333pt;}
.h22{height:17.000000pt;}
.h1e{height:17.333333pt;}
.h21{height:17.700000pt;}
.h23{height:18.000000pt;}
.h24{height:18.333333pt;}
.h1d{height:19.000000pt;}
.h15{height:21.000000pt;}
.h18{height:21.033333pt;}
.h1b{height:22.000000pt;}
.h29{height:24.333333pt;}
.h2d{height:24.366667pt;}
.h26{height:24.666667pt;}
.h28{height:24.686667pt;}
.h2c{height:24.700000pt;}
.ha{height:26.000000pt;}
.hc{height:26.366667pt;}
.h8{height:27.812500pt;}
.h16{height:29.666667pt;}
.h4{height:30.593750pt;}
.h2e{height:31.020000pt;}
.h12{height:35.686667pt;}
.hf{height:36.000000pt;}
.h20{height:36.033333pt;}
.h17{height:36.366667pt;}
.h27{height:36.666667pt;}
.h2b{height:37.000000pt;}
.h2a{height:37.033333pt;}
.h1c{height:37.666667pt;}
.hd{height:41.718750pt;}
.h31{height:43.333333pt;}
.h11{height:44.000000pt;}
.h5{height:44.500000pt;}
.he{height:47.838542pt;}
.h1a{height:49.333333pt;}
.h6{height:50.062500pt;}
.h2{height:55.625000pt;}
.hb{height:61.187500pt;}
.h34{height:65.666667pt;}
.h38{height:65.700000pt;}
.h1{height:66.750000pt;}
.h14{height:74.333333pt;}
.h1f{height:75.033333pt;}
.h7{height:77.875000pt;}
.h10{height:81.020000pt;}
.h30{height:88.000000pt;}
.h39{height:88.033333pt;}
.h19{height:88.333333pt;}
.h3{height:90.000000pt;}
.h33{height:110.333333pt;}
.h37{height:110.366667pt;}
.h13{height:112.033333pt;}
.h32{height:132.700000pt;}
.h2f{height:199.693333pt;}
.h36{height:199.733333pt;}
.h35{height:311.426667pt;}
.h0{height:1122.666667pt;}
.wb{width:15.666667pt;}
.w1c{width:24.366667pt;}
.w16{width:25.033333pt;}
.w5{width:28.000000pt;}
.w6{width:28.366667pt;}
.w11{width:39.666667pt;}
.w12{width:39.700000pt;}
.w13{width:40.000000pt;}
.w19{width:51.366667pt;}
.w1a{width:51.666667pt;}
.w18{width:52.000000pt;}
.w1b{width:71.033333pt;}
.wf{width:84.033333pt;}
.w8{width:86.366667pt;}
.wc{width:94.366667pt;}
.w9{width:103.366667pt;}
.w17{width:140.400000pt;}
.w14{width:176.733333pt;}
.wd{width:179.733333pt;}
.w15{width:243.106667pt;}
.we{width:284.466667pt;}
.w3{width:321.133333pt;}
.w4{width:321.466667pt;}
.w10{width:357.160000pt;}
.wa{width:437.200000pt;}
.w7{width:444.840000pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:4.000000pt;}
.x33{left:5.333333pt;}
.xe{left:7.000000pt;}
.x34{left:8.333333pt;}
.x12{left:9.666667pt;}
.x25{left:11.000000pt;}
.x2b{left:12.360000pt;}
.x35{left:16.040000pt;}
.x1e{left:17.333333pt;}
.x26{left:18.666667pt;}
.x6{left:21.666667pt;}
.xb{left:23.333333pt;}
.x32{left:24.373333pt;}
.x18{left:26.333333pt;}
.x2d{left:29.333333pt;}
.x19{left:33.373333pt;}
.x5{left:36.026667pt;}
.x14{left:41.706667pt;}
.x27{left:43.366667pt;}
.x1{left:75.699988pt;}
.x1c{left:77.033333pt;}
.x8{left:91.699988pt;}
.x1b{left:94.699988pt;}
.x29{left:107.733333pt;}
.x16{left:108.733333pt;}
.x1a{left:113.366655pt;}
.x36{left:123.066655pt;}
.x2f{left:129.733333pt;}
.xa{left:146.400000pt;}
.xf{left:162.066667pt;}
.x13{left:170.066667pt;}
.xc{left:174.400000pt;}
.x30{left:182.733333pt;}
.xd{left:202.773333pt;}
.x7{left:222.439988pt;}
.x28{left:254.440000pt;}
.x10{left:265.440000pt;}
.x4{left:321.453333pt;}
.x9{left:329.799988pt;}
.x15{left:349.800000pt;}
.x3{left:396.840000pt;}
.x2{left:420.506655pt;}
.x1d{left:434.866667pt;}
.x1f{left:475.200000pt;}
.x2a{left:498.200000pt;}
.x20{left:515.573333pt;}
.x2c{left:523.906667pt;}
.x21{left:556.240000pt;}
.x22{left:596.600000pt;}
.x17{left:634.266667pt;}
.x23{left:636.933333pt;}
.x2e{left:664.973333pt;}
.x24{left:677.306667pt;}
.x11{left:702.640000pt;}
}




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