
    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_3097afcdd9410171103d53a8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_29a0573338c03d1a159522da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b6ef1b9f90b11687a86ed382.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_77e3e9ade31d8ffd84e79386.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_821d785c2209d669d750cd90.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_018a16c9b60e26ddf8e8e786.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_59116fa08f1cf2a47429dc6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_14a53f0d7b57deece668bf6d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-84.240000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls5{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.846000px;}
.lsd{letter-spacing:-0.342000px;}
.ls9{letter-spacing:-0.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.256200px;}
.lsb{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.504000px;}
.lse{letter-spacing:52.668000px;}
.ls7{letter-spacing:64.026720px;}
.lsa{letter-spacing:64.170720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws4{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.976000px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.284000px;}
.wsc{word-spacing:-13.158000px;}
.ws3{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-3.231600px;}
._1{margin-left:-1.170000px;}
._2{width:1.080000px;}
._7{width:2.092800px;}
._11{width:3.583440px;}
._b{width:5.277600px;}
._a{width:6.624000px;}
._12{width:8.302320px;}
._13{width:9.774000px;}
._c{width:11.593440px;}
._d{width:12.605040px;}
._10{width:13.898880px;}
._1e{width:15.174000px;}
._f{width:16.248720px;}
._e{width:17.445600px;}
._16{width:19.278000px;}
._1b{width:20.898000px;}
._1a{width:22.014000px;}
._17{width:23.112000px;}
._29{width:24.192000px;}
._24{width:25.218000px;}
._21{width:26.514000px;}
._20{width:28.026000px;}
._15{width:29.484000px;}
._14{width:30.618000px;}
._28{width:31.698000px;}
._23{width:32.976000px;}
._27{width:34.884000px;}
._19{width:36.126000px;}
._18{width:37.152000px;}
._2b{width:38.196000px;}
._25{width:39.510000px;}
._26{width:40.878000px;}
._2a{width:42.282000px;}
._1d{width:43.290000px;}
._2d{width:44.766000px;}
._22{width:47.736000px;}
._1c{width:50.664000px;}
._2e{width:53.688000px;}
._2c{width:56.196000px;}
._1f{width:58.482000px;}
._3{width:59.610000px;}
._4{width:76.500000px;}
._2f{width:108.810000px;}
._5{width:202.500000px;}
._30{width:328.482000px;}
._31{width:347.544000px;}
._32{width:746.712000px;}
._0{width:1037.280000px;}
._6{width:1224.300000px;}
._9{width:1661.460000px;}
.fc5{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y44{bottom:3.060000px;}
.y120{bottom:9.720000px;}
.y100{bottom:9.750000px;}
.yfd{bottom:9.900000px;}
.y102{bottom:10.080000px;}
.y112{bottom:10.260000px;}
.yd1{bottom:11.160000px;}
.ye0{bottom:11.325000px;}
.yce{bottom:11.340000px;}
.yd4{bottom:11.520000px;}
.yd3{bottom:11.550000px;}
.ye5{bottom:11.685000px;}
.yd9{bottom:11.700000px;}
.y11e{bottom:12.060000px;}
.yff{bottom:12.090000px;}
.yd0{bottom:14.220000px;}
.ydf{bottom:14.250000px;}
.ye9{bottom:14.745000px;}
.ye3{bottom:14.925000px;}
.y4{bottom:15.480000px;}
.y45{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y43{bottom:18.900000px;}
.y11c{bottom:20.880000px;}
.yfb{bottom:23.250000px;}
.y111{bottom:23.940000px;}
.ycc{bottom:26.100000px;}
.ydc{bottom:26.310000px;}
.yeb{bottom:26.625000px;}
.ye6{bottom:26.985000px;}
.y106{bottom:27.900000px;}
.y11d{bottom:29.880000px;}
.y11f{bottom:32.040000px;}
.y40{bottom:33.480000px;}
.yfe{bottom:34.410000px;}
.y5{bottom:36.720000px;}
.ycf{bottom:38.160000px;}
.yde{bottom:38.190000px;}
.ye8{bottom:38.505000px;}
.ye2{bottom:38.865000px;}
.y46{bottom:39.780000px;}
.y3f{bottom:53.280000px;}
.y1{bottom:57.600000px;}
.y42{bottom:60.660000px;}
.ya4{bottom:66.240000px;}
.y3e{bottom:73.080000px;}
.ya3{bottom:86.040000px;}
.y3d{bottom:93.060000px;}
.y2c{bottom:100.440000px;}
.yf8{bottom:106.920000px;}
.y174{bottom:108.000000px;}
.y7d{bottom:109.800000px;}
.y135{bottom:113.940000px;}
.y2d{bottom:118.620000px;}
.ya0{bottom:124.740000px;}
.y173{bottom:126.000000px;}
.y7c{bottom:127.620000px;}
.y2b{bottom:129.960000px;}
.y134{bottom:131.760000px;}
.y41{bottom:132.120000px;}
.yf3{bottom:134.100000px;}
.y19d{bottom:136.440000px;}
.y172{bottom:143.820000px;}
.y7b{bottom:145.440000px;}
.y133{bottom:149.580000px;}
.yf2{bottom:151.920000px;}
.y9f{bottom:154.080000px;}
.yf7{bottom:160.920000px;}
.y39{bottom:161.490000px;}
.y171{bottom:161.640000px;}
.y7a{bottom:163.260000px;}
.y132{bottom:167.580000px;}
.y19c{bottom:169.200000px;}
.yf1{bottom:169.920000px;}
.y2a{bottom:176.220000px;}
.yf6{bottom:178.740000px;}
.y170{bottom:179.460000px;}
.y79{bottom:181.260000px;}
.y38{bottom:181.290000px;}
.y9e{bottom:182.880000px;}
.y131{bottom:185.040000px;}
.y13b{bottom:185.400000px;}
.y19b{bottom:187.200000px;}
.yf0{bottom:187.740000px;}
.yf5{bottom:196.560000px;}
.y16f{bottom:197.280000px;}
.y78{bottom:199.080000px;}
.y13a{bottom:203.220000px;}
.y19a{bottom:205.020000px;}
.yef{bottom:205.590000px;}
.y9d{bottom:210.270000px;}
.y3c{bottom:211.680000px;}
.y130{bottom:212.250000px;}
.y16e{bottom:215.310000px;}
.y77{bottom:216.930000px;}
.y139{bottom:221.070000px;}
.y199{bottom:222.870000px;}
.yf4{bottom:223.050000px;}
.yee{bottom:223.410000px;}
.y29{bottom:225.030000px;}
.y36{bottom:230.070000px;}
.y16d{bottom:233.130000px;}
.y76{bottom:234.750000px;}
.y138{bottom:238.890000px;}
.y9c{bottom:239.610000px;}
.y3b{bottom:240.510000px;}
.yed{bottom:245.385000px;}
.y12f{bottom:247.890000px;}
.y198{bottom:249.690000px;}
.y16c{bottom:250.950000px;}
.y137{bottom:256.890000px;}
.y3a{bottom:260.310000px;}
.y75{bottom:261.570000px;}
.y12e{bottom:265.890000px;}
.y197{bottom:267.510000px;}
.y9b{bottom:268.950000px;}
.y16b{bottom:270.750000px;}
.y28{bottom:273.810000px;}
.y136{bottom:274.350000px;}
.yec{bottom:275.985000px;}
.y33{bottom:278.670000px;}
.y74{bottom:279.390000px;}
.y12d{bottom:283.710000px;}
.y196{bottom:285.510000px;}
.y73{bottom:297.390000px;}
.y9a{bottom:297.750000px;}
.y32{bottom:298.470000px;}
.y12c{bottom:301.530000px;}
.y195{bottom:303.330000px;}
.y16a{bottom:303.510000px;}
.y27{bottom:304.590000px;}
.ye7{bottom:306.585000px;}
.y72{bottom:315.210000px;}
.y31{bottom:318.450000px;}
.y12b{bottom:319.350000px;}
.y169{bottom:321.510000px;}
.y99{bottom:324.930000px;}
.y37{bottom:328.890000px;}
.y194{bottom:330.150000px;}
.y26{bottom:330.870000px;}
.y71{bottom:333.030000px;}
.yea{bottom:336.465000px;}
.y12a{bottom:337.170000px;}
.y30{bottom:338.295000px;}
.y168{bottom:339.330000px;}
.y98{bottom:342.750000px;}
.y193{bottom:347.970000px;}
.y35{bottom:348.690000px;}
.y70{bottom:350.850000px;}
.y129{bottom:354.990000px;}
.y167{bottom:357.150000px;}
.y25{bottom:357.330000px;}
.y97{bottom:360.570000px;}
.y192{bottom:365.790000px;}
.ye1{bottom:367.065000px;}
.y2e{bottom:368.535000px;}
.y6f{bottom:368.670000px;}
.y128{bottom:372.990000px;}
.y166{bottom:374.970000px;}
.y34{bottom:377.490000px;}
.y96{bottom:378.570000px;}
.y24{bottom:383.610000px;}
.y6e{bottom:386.670000px;}
.y127{bottom:390.810000px;}
.y165{bottom:392.790000px;}
.y95{bottom:396.030000px;}
.ye4{bottom:397.665000px;}
.y191{bottom:401.610000px;}
.y1ca{bottom:403.050000px;}
.y6d{bottom:404.490000px;}
.y126{bottom:408.630000px;}
.y23{bottom:409.890000px;}
.y164{bottom:410.610000px;}
.y190{bottom:419.430000px;}
.y1c9{bottom:420.870000px;}
.y6c{bottom:422.310000px;}
.y94{bottom:423.210000px;}
.y125{bottom:426.450000px;}
.ydb{bottom:428.265000px;}
.y163{bottom:428.610000px;}
.y22{bottom:436.170000px;}
.y18f{bottom:437.250000px;}
.y1c8{bottom:438.690000px;}
.y6b{bottom:440.130000px;}
.y93{bottom:441.075000px;}
.y124{bottom:446.295000px;}
.y162{bottom:446.475000px;}
.y1c7{bottom:456.735000px;}
.y2f{bottom:456.915000px;}
.y6a{bottom:457.995000px;}
.ydd{bottom:458.175000px;}
.y92{bottom:458.895000px;}
.y21{bottom:462.675000px;}
.y18e{bottom:464.115000px;}
.y161{bottom:464.295000px;}
.y123{bottom:474.375000px;}
.y1c6{bottom:474.555000px;}
.y69{bottom:475.815000px;}
.y91{bottom:476.895000px;}
.y18d{bottom:481.935000px;}
.y160{bottom:482.115000px;}
.y20{bottom:488.955000px;}
.yda{bottom:492.015000px;}
.y1c5{bottom:492.375000px;}
.y68{bottom:493.815000px;}
.y90{bottom:494.715000px;}
.y18c{bottom:499.935000px;}
.y122{bottom:501.915000px;}
.y15f{bottom:508.935000px;}
.y1c4{bottom:510.195000px;}
.y67{bottom:511.635000px;}
.y8f{bottom:512.175000px;}
.yd8{bottom:513.975000px;}
.y1f{bottom:515.235000px;}
.y18b{bottom:517.755000px;}
.y15e{bottom:526.935000px;}
.y1c3{bottom:528.015000px;}
.y66{bottom:529.455000px;}
.y8e{bottom:532.335000px;}
.y18a{bottom:535.575000px;}
.y1e{bottom:541.515000px;}
.yd7{bottom:544.755000px;}
.y1c2{bottom:545.835000px;}
.y65{bottom:556.275000px;}
.y121{bottom:557.175000px;}
.y189{bottom:562.395000px;}
.y15d{bottom:562.575000px;}
.y1c1{bottom:563.835000px;}
.y8d{bottom:565.095000px;}
.y1d{bottom:567.795000px;}
.y64{bottom:574.095000px;}
.yd6{bottom:575.355000px;}
.y188{bottom:580.215000px;}
.y15c{bottom:580.395000px;}
.y1c0{bottom:581.655000px;}
.y8c{bottom:583.095000px;}
.y11b{bottom:584.715000px;}
.y63{bottom:592.095000px;}
.y187{bottom:598.035000px;}
.y15b{bottom:598.215000px;}
.y1c{bottom:598.755000px;}
.y1bf{bottom:599.475000px;}
.y8b{bottom:600.915000px;}
.yd5{bottom:605.955000px;}
.y62{bottom:609.915000px;}
.y15a{bottom:616.035000px;}
.y1be{bottom:617.295000px;}
.y8a{bottom:618.735000px;}
.y1b{bottom:620.535000px;}
.y61{bottom:627.735000px;}
.y186{bottom:633.855000px;}
.y159{bottom:634.035000px;}
.y1bd{bottom:635.115000px;}
.y89{bottom:636.555000px;}
.y11a{bottom:639.975000px;}
.y60{bottom:645.555000px;}
.y158{bottom:651.855000px;}
.y1bc{bottom:653.115000px;}
.y1a{bottom:654.375000px;}
.y185{bottom:660.675000px;}
.y5f{bottom:663.375000px;}
.yd2{bottom:667.155000px;}
.y157{bottom:669.675000px;}
.y1bb{bottom:670.935000px;}
.y88{bottom:672.195000px;}
.y184{bottom:678.525000px;}
.y5e{bottom:681.225000px;}
.y117{bottom:685.005000px;}
.y19{bottom:685.185000px;}
.y156{bottom:687.525000px;}
.y1ba{bottom:688.785000px;}
.y87{bottom:690.225000px;}
.y119{bottom:694.005000px;}
.y183{bottom:696.345000px;}
.ycb{bottom:697.785000px;}
.y5d{bottom:699.225000px;}
.y18{bottom:699.585000px;}
.y116{bottom:702.825000px;}
.y155{bottom:704.985000px;}
.y1b9{bottom:706.605000px;}
.y86{bottom:708.045000px;}
.y118{bottom:711.825000px;}
.y182{bottom:714.165000px;}
.y5c{bottom:717.045000px;}
.y17{bottom:721.005000px;}
.y1b8{bottom:724.425000px;}
.y115{bottom:724.785000px;}
.ycd{bottom:727.485000px;}
.y154{bottom:732.165000px;}
.y5b{bottom:734.865000px;}
.y1b7{bottom:742.245000px;}
.y153{bottom:750.165000px;}
.y114{bottom:752.505000px;}
.y5a{bottom:752.685000px;}
.y181{bottom:758.985000px;}
.y1b6{bottom:760.245000px;}
.yca{bottom:763.845000px;}
.y152{bottom:767.985000px;}
.y59{bottom:770.505000px;}
.y16{bottom:771.585000px;}
.y180{bottom:776.805000px;}
.y1b5{bottom:778.065000px;}
.y113{bottom:780.045000px;}
.y151{bottom:785.805000px;}
.y58{bottom:788.505000px;}
.yc9{bottom:790.665000px;}
.yb9{bottom:791.025000px;}
.y17f{bottom:794.625000px;}
.y1b4{bottom:795.885000px;}
.y15{bottom:799.305000px;}
.y150{bottom:803.625000px;}
.y85{bottom:806.325000px;}
.y110{bottom:807.585000px;}
.yc8{bottom:808.485000px;}
.y17e{bottom:812.085000px;}
.y1b3{bottom:813.705000px;}
.y57{bottom:815.325000px;}
.yb8{bottom:820.365000px;}
.y14f{bottom:821.445000px;}
.y84{bottom:824.145000px;}
.yc7{bottom:826.305000px;}
.y1b2{bottom:831.525000px;}
.y56{bottom:833.145000px;}
.y10f{bottom:835.305000px;}
.y14e{bottom:839.445000px;}
.y83{bottom:841.965000px;}
.yc6{bottom:844.125000px;}
.y14{bottom:845.565000px;}
.y1b1{bottom:849.345000px;}
.yb7{bottom:849.525000px;}
.y55{bottom:850.965000px;}
.y14d{bottom:857.265000px;}
.y82{bottom:859.785000px;}
.yc5{bottom:862.125000px;}
.y10e{bottom:862.845000px;}
.y1b0{bottom:867.345000px;}
.y54{bottom:868.785000px;}
.y13{bottom:870.765000px;}
.y14c{bottom:875.085000px;}
.yb6{bottom:876.525000px;}
.y81{bottom:877.605000px;}
.yc4{bottom:879.945000px;}
.y1af{bottom:885.165000px;}
.y53{bottom:886.605000px;}
.y10d{bottom:890.385000px;}
.y12{bottom:890.565000px;}
.y14b{bottom:892.905000px;}
.y80{bottom:895.605000px;}
.yc3{bottom:897.405000px;}
.y1ae{bottom:902.985000px;}
.y52{bottom:904.605000px;}
.yb5{bottom:905.685000px;}
.y14a{bottom:910.770000px;}
.y11{bottom:911.130000px;}
.y7f{bottom:913.470000px;}
.y17d{bottom:919.770000px;}
.y1ad{bottom:920.850000px;}
.y51{bottom:922.470000px;}
.yb4{bottom:923.190000px;}
.y10c{bottom:923.370000px;}
.yc2{bottom:924.630000px;}
.y149{bottom:928.590000px;}
.y7e{bottom:931.290000px;}
.y10{bottom:931.830000px;}
.y17c{bottom:937.590000px;}
.y1ac{bottom:938.670000px;}
.y50{bottom:940.290000px;}
.yc1{bottom:942.450000px;}
.y148{bottom:946.590000px;}
.yb3{bottom:950.370000px;}
.y109{bottom:950.550000px;}
.yf{bottom:952.170000px;}
.y17b{bottom:955.590000px;}
.y1ab{bottom:956.670000px;}
.y4f{bottom:958.110000px;}
.yc0{bottom:960.270000px;}
.y147{bottom:964.410000px;}
.yb2{bottom:968.190000px;}
.y108{bottom:968.370000px;}
.y17a{bottom:973.410000px;}
.y1aa{bottom:974.490000px;}
.y4e{bottom:975.930000px;}
.y10b{bottom:977.370000px;}
.ybf{bottom:978.270000px;}
.y146{bottom:981.870000px;}
.yb1{bottom:985.830000px;}
.y107{bottom:986.010000px;}
.y179{bottom:991.230000px;}
.y1a9{bottom:992.310000px;}
.ye{bottom:993.930000px;}
.y10a{bottom:995.370000px;}
.ybe{bottom:996.090000px;}
.yb0{bottom:1003.650000px;}
.yd{bottom:1007.790000px;}
.y105{bottom:1008.330000px;}
.y145{bottom:1009.050000px;}
.y1a8{bottom:1010.130000px;}
.y4d{bottom:1011.750000px;}
.ybd{bottom:1013.550000px;}
.yc{bottom:1021.650000px;}
.y144{bottom:1026.870000px;}
.y1a7{bottom:1027.950000px;}
.y4c{bottom:1029.570000px;}
.yaf{bottom:1030.830000px;}
.ybc{bottom:1033.710000px;}
.yb{bottom:1035.510000px;}
.y143{bottom:1044.870000px;}
.y1a6{bottom:1045.770000px;}
.yae{bottom:1048.650000px;}
.y4b{bottom:1049.370000px;}
.y104{bottom:1053.690000px;}
.ya{bottom:1054.050000px;}
.y142{bottom:1062.690000px;}
.y1a5{bottom:1063.770000px;}
.yad{bottom:1066.470000px;}
.y141{bottom:1080.510000px;}
.y103{bottom:1081.410000px;}
.y1a4{bottom:1081.590000px;}
.y9{bottom:1083.210000px;}
.yac{bottom:1084.470000px;}
.y140{bottom:1098.330000px;}
.y1a3{bottom:1099.410000px;}
.y4a{bottom:1101.390000px;}
.yab{bottom:1102.290000px;}
.ya2{bottom:1105.020000px;}
.y178{bottom:1107.330000px;}
.y101{bottom:1108.950000px;}
.y8{bottom:1110.930000px;}
.y13f{bottom:1116.150000px;}
.y1a2{bottom:1117.230000px;}
.yaa{bottom:1119.750000px;}
.ybb{bottom:1120.110000px;}
.ya6{bottom:1121.910000px;}
.y177{bottom:1125.150000px;}
.y49{bottom:1132.350000px;}
.y13e{bottom:1133.970000px;}
.y1a1{bottom:1135.050000px;}
.yfa{bottom:1136.490000px;}
.yba{bottom:1137.570000px;}
.y7{bottom:1138.830000px;}
.y176{bottom:1142.970000px;}
.ya9{bottom:1146.960000px;}
.ya5{bottom:1151.430000px;}
.y13d{bottom:1152.000000px;}
.y1a0{bottom:1153.080000px;}
.y175{bottom:1161.000000px;}
.y48{bottom:1163.160000px;}
.yfc{bottom:1163.340000px;}
.ya8{bottom:1164.960000px;}
.y6{bottom:1170.540000px;}
.y19f{bottom:1170.900000px;}
.y13c{bottom:1178.820000px;}
.y19e{bottom:1190.700000px;}
.ya1{bottom:1191.060000px;}
.y47{bottom:1193.940000px;}
.ya7{bottom:1194.300000px;}
.yf9{bottom:1196.640000px;}
.h2b{height:26.805000px;}
.h26{height:26.820000px;}
.h25{height:26.842500px;}
.h24{height:27.000000px;}
.h28{height:27.036000px;}
.h1d{height:29.685000px;}
.h1b{height:29.700000px;}
.h1c{height:29.730000px;}
.h1e{height:29.865000px;}
.h1a{height:29.880000px;}
.h20{height:29.901000px;}
.h2{height:30.955500px;}
.h13{height:31.135500px;}
.h14{height:37.705078px;}
.h8{height:40.985156px;}
.h27{height:44.640000px;}
.h2a{height:49.125000px;}
.h3{height:52.998047px;}
.h23{height:53.842500px;}
.h15{height:54.421875px;}
.h29{height:54.540000px;}
.h2c{height:55.503491px;}
.h12{height:58.621992px;}
.h9{height:58.651172px;}
.h11{height:58.763250px;}
.h18{height:59.092031px;}
.h19{height:59.580000px;}
.h22{height:59.745000px;}
.h1f{height:59.781000px;}
.ha{height:60.226875px;}
.h21{height:60.465000px;}
.h16{height:61.423863px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.h10{height:78.367500px;}
.hc{height:82.676953px;}
.h6{height:84.898125px;}
.h7{height:90.703125px;}
.h17{height:108.720000px;}
.h5{height:126.984375px;}
.hf{height:395.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w14{width:93.090000px;}
.w8{width:125.310000px;}
.wd{width:126.382500px;}
.w18{width:126.390000px;}
.wc{width:128.370000px;}
.w1d{width:129.450000px;}
.we{width:152.490000px;}
.wb{width:176.595000px;}
.w10{width:177.135000px;}
.w7{width:177.855000px;}
.w12{width:186.690000px;}
.wa{width:195.150000px;}
.wf{width:195.870000px;}
.w1c{width:200.715000px;}
.w17{width:201.615000px;}
.w15{width:201.625500px;}
.w6{width:201.630000px;}
.w1a{width:201.805500px;}
.w13{width:212.415000px;}
.w16{width:245.955000px;}
.w1b{width:250.095000px;}
.w5{width:274.930500px;}
.w9{width:279.790500px;}
.w11{width:288.610500px;}
.w2{width:722.115000px;}
.w19{width:778.135500px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:7.560000px;}
.x3{left:8.635500px;}
.x13{left:10.800000px;}
.x35{left:27.540000px;}
.x33{left:31.140000px;}
.x22{left:34.005000px;}
.x3f{left:38.205000px;}
.x12{left:40.140000px;}
.x32{left:42.300000px;}
.x27{left:43.560000px;}
.x1{left:45.364500px;}
.x24{left:47.160000px;}
.x2b{left:48.600000px;}
.x14{left:50.940000px;}
.x5{left:54.000000px;}
.x1e{left:55.444500px;}
.x38{left:57.604500px;}
.x20{left:58.680000px;}
.x17{left:60.696000px;}
.x2d{left:63.211500px;}
.x43{left:64.620000px;}
.x26{left:66.600000px;}
.x36{left:68.745000px;}
.x25{left:70.005000px;}
.x2c{left:71.625000px;}
.x16{left:73.296000px;}
.xc{left:75.420000px;}
.x34{left:78.825000px;}
.x1b{left:81.000000px;}
.x3c{left:82.065000px;}
.x40{left:84.465000px;}
.x1a{left:86.616000px;}
.x15{left:92.556000px;}
.x3b{left:97.605000px;}
.x42{left:100.425000px;}
.xe{left:103.356000px;}
.x3d{left:104.796000px;}
.x1c{left:108.036000px;}
.x1d{left:113.616000px;}
.x44{left:116.505000px;}
.x41{left:124.965000px;}
.x37{left:171.030000px;}
.x2e{left:182.730000px;}
.xd{left:219.450000px;}
.x2{left:222.370500px;}
.x3e{left:256.890000px;}
.x39{left:259.950000px;}
.x7{left:270.615000px;}
.x9{left:272.595000px;}
.x10{left:275.475000px;}
.xf{left:286.095000px;}
.xa{left:287.715000px;}
.x11{left:324.075000px;}
.x1f{left:331.275000px;}
.x28{left:335.955000px;}
.x30{left:344.415000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x6{left:446.505000px;}
.x18{left:473.505000px;}
.x19{left:500.505000px;}
.x3a{left:506.820000px;}
.x45{left:527.505000px;}
.x29{left:531.840000px;}
.x21{left:533.820000px;}
.x2a{left:709.350000px;}
.x23{left:712.410000px;}
.x31{left:744.990000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.752000pt;}
.lsd{letter-spacing:-0.304000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.227733pt;}
.lsb{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.448000pt;}
.lse{letter-spacing:46.816000pt;}
.ls7{letter-spacing:56.912640pt;}
.lsa{letter-spacing:57.040640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.312000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.808000pt;}
.wsc{word-spacing:-11.696000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-2.872533pt;}
._1{margin-left:-1.040000pt;}
._2{width:0.960000pt;}
._7{width:1.860267pt;}
._11{width:3.185280pt;}
._b{width:4.691200pt;}
._a{width:5.888000pt;}
._12{width:7.379840pt;}
._13{width:8.688000pt;}
._c{width:10.305280pt;}
._d{width:11.204480pt;}
._10{width:12.354560pt;}
._1e{width:13.488000pt;}
._f{width:14.443307pt;}
._e{width:15.507200pt;}
._16{width:17.136000pt;}
._1b{width:18.576000pt;}
._1a{width:19.568000pt;}
._17{width:20.544000pt;}
._29{width:21.504000pt;}
._24{width:22.416000pt;}
._21{width:23.568000pt;}
._20{width:24.912000pt;}
._15{width:26.208000pt;}
._14{width:27.216000pt;}
._28{width:28.176000pt;}
._23{width:29.312000pt;}
._27{width:31.008000pt;}
._19{width:32.112000pt;}
._18{width:33.024000pt;}
._2b{width:33.952000pt;}
._25{width:35.120000pt;}
._26{width:36.336000pt;}
._2a{width:37.584000pt;}
._1d{width:38.480000pt;}
._2d{width:39.792000pt;}
._22{width:42.432000pt;}
._1c{width:45.034667pt;}
._2e{width:47.722667pt;}
._2c{width:49.952000pt;}
._1f{width:51.984000pt;}
._3{width:52.986667pt;}
._4{width:68.000000pt;}
._2f{width:96.720000pt;}
._5{width:180.000000pt;}
._30{width:291.984000pt;}
._31{width:308.928000pt;}
._32{width:663.744000pt;}
._0{width:922.026667pt;}
._6{width:1088.266667pt;}
._9{width:1476.853333pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y44{bottom:2.720000pt;}
.y120{bottom:8.640000pt;}
.y100{bottom:8.666667pt;}
.yfd{bottom:8.800000pt;}
.y102{bottom:8.960000pt;}
.y112{bottom:9.120000pt;}
.yd1{bottom:9.920000pt;}
.ye0{bottom:10.066667pt;}
.yce{bottom:10.080000pt;}
.yd4{bottom:10.240000pt;}
.yd3{bottom:10.266667pt;}
.ye5{bottom:10.386667pt;}
.yd9{bottom:10.400000pt;}
.y11e{bottom:10.720000pt;}
.yff{bottom:10.746667pt;}
.yd0{bottom:12.640000pt;}
.ydf{bottom:12.666667pt;}
.ye9{bottom:13.106667pt;}
.ye3{bottom:13.266667pt;}
.y4{bottom:13.760000pt;}
.y45{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y43{bottom:16.800000pt;}
.y11c{bottom:18.560000pt;}
.yfb{bottom:20.666667pt;}
.y111{bottom:21.280000pt;}
.ycc{bottom:23.200000pt;}
.ydc{bottom:23.386667pt;}
.yeb{bottom:23.666667pt;}
.ye6{bottom:23.986667pt;}
.y106{bottom:24.800000pt;}
.y11d{bottom:26.560000pt;}
.y11f{bottom:28.480000pt;}
.y40{bottom:29.760000pt;}
.yfe{bottom:30.586667pt;}
.y5{bottom:32.640000pt;}
.ycf{bottom:33.920000pt;}
.yde{bottom:33.946667pt;}
.ye8{bottom:34.226667pt;}
.ye2{bottom:34.546667pt;}
.y46{bottom:35.360000pt;}
.y3f{bottom:47.360000pt;}
.y1{bottom:51.200000pt;}
.y42{bottom:53.920000pt;}
.ya4{bottom:58.880000pt;}
.y3e{bottom:64.960000pt;}
.ya3{bottom:76.480000pt;}
.y3d{bottom:82.720000pt;}
.y2c{bottom:89.280000pt;}
.yf8{bottom:95.040000pt;}
.y174{bottom:96.000000pt;}
.y7d{bottom:97.600000pt;}
.y135{bottom:101.280000pt;}
.y2d{bottom:105.440000pt;}
.ya0{bottom:110.880000pt;}
.y173{bottom:112.000000pt;}
.y7c{bottom:113.440000pt;}
.y2b{bottom:115.520000pt;}
.y134{bottom:117.120000pt;}
.y41{bottom:117.440000pt;}
.yf3{bottom:119.200000pt;}
.y19d{bottom:121.280000pt;}
.y172{bottom:127.840000pt;}
.y7b{bottom:129.280000pt;}
.y133{bottom:132.960000pt;}
.yf2{bottom:135.040000pt;}
.y9f{bottom:136.960000pt;}
.yf7{bottom:143.040000pt;}
.y39{bottom:143.546667pt;}
.y171{bottom:143.680000pt;}
.y7a{bottom:145.120000pt;}
.y132{bottom:148.960000pt;}
.y19c{bottom:150.400000pt;}
.yf1{bottom:151.040000pt;}
.y2a{bottom:156.640000pt;}
.yf6{bottom:158.880000pt;}
.y170{bottom:159.520000pt;}
.y79{bottom:161.120000pt;}
.y38{bottom:161.146667pt;}
.y9e{bottom:162.560000pt;}
.y131{bottom:164.480000pt;}
.y13b{bottom:164.800000pt;}
.y19b{bottom:166.400000pt;}
.yf0{bottom:166.880000pt;}
.yf5{bottom:174.720000pt;}
.y16f{bottom:175.360000pt;}
.y78{bottom:176.960000pt;}
.y13a{bottom:180.640000pt;}
.y19a{bottom:182.240000pt;}
.yef{bottom:182.746667pt;}
.y9d{bottom:186.906667pt;}
.y3c{bottom:188.160000pt;}
.y130{bottom:188.666667pt;}
.y16e{bottom:191.386667pt;}
.y77{bottom:192.826667pt;}
.y139{bottom:196.506667pt;}
.y199{bottom:198.106667pt;}
.yf4{bottom:198.266667pt;}
.yee{bottom:198.586667pt;}
.y29{bottom:200.026667pt;}
.y36{bottom:204.506667pt;}
.y16d{bottom:207.226667pt;}
.y76{bottom:208.666667pt;}
.y138{bottom:212.346667pt;}
.y9c{bottom:212.986667pt;}
.y3b{bottom:213.786667pt;}
.yed{bottom:218.120000pt;}
.y12f{bottom:220.346667pt;}
.y198{bottom:221.946667pt;}
.y16c{bottom:223.066667pt;}
.y137{bottom:228.346667pt;}
.y3a{bottom:231.386667pt;}
.y75{bottom:232.506667pt;}
.y12e{bottom:236.346667pt;}
.y197{bottom:237.786667pt;}
.y9b{bottom:239.066667pt;}
.y16b{bottom:240.666667pt;}
.y28{bottom:243.386667pt;}
.y136{bottom:243.866667pt;}
.yec{bottom:245.320000pt;}
.y33{bottom:247.706667pt;}
.y74{bottom:248.346667pt;}
.y12d{bottom:252.186667pt;}
.y196{bottom:253.786667pt;}
.y73{bottom:264.346667pt;}
.y9a{bottom:264.666667pt;}
.y32{bottom:265.306667pt;}
.y12c{bottom:268.026667pt;}
.y195{bottom:269.626667pt;}
.y16a{bottom:269.786667pt;}
.y27{bottom:270.746667pt;}
.ye7{bottom:272.520000pt;}
.y72{bottom:280.186667pt;}
.y31{bottom:283.066667pt;}
.y12b{bottom:283.866667pt;}
.y169{bottom:285.786667pt;}
.y99{bottom:288.826667pt;}
.y37{bottom:292.346667pt;}
.y194{bottom:293.466667pt;}
.y26{bottom:294.106667pt;}
.y71{bottom:296.026667pt;}
.yea{bottom:299.080000pt;}
.y12a{bottom:299.706667pt;}
.y30{bottom:300.706667pt;}
.y168{bottom:301.626667pt;}
.y98{bottom:304.666667pt;}
.y193{bottom:309.306667pt;}
.y35{bottom:309.946667pt;}
.y70{bottom:311.866667pt;}
.y129{bottom:315.546667pt;}
.y167{bottom:317.466667pt;}
.y25{bottom:317.626667pt;}
.y97{bottom:320.506667pt;}
.y192{bottom:325.146667pt;}
.ye1{bottom:326.280000pt;}
.y2e{bottom:327.586667pt;}
.y6f{bottom:327.706667pt;}
.y128{bottom:331.546667pt;}
.y166{bottom:333.306667pt;}
.y34{bottom:335.546667pt;}
.y96{bottom:336.506667pt;}
.y24{bottom:340.986667pt;}
.y6e{bottom:343.706667pt;}
.y127{bottom:347.386667pt;}
.y165{bottom:349.146667pt;}
.y95{bottom:352.026667pt;}
.ye4{bottom:353.480000pt;}
.y191{bottom:356.986667pt;}
.y1ca{bottom:358.266667pt;}
.y6d{bottom:359.546667pt;}
.y126{bottom:363.226667pt;}
.y23{bottom:364.346667pt;}
.y164{bottom:364.986667pt;}
.y190{bottom:372.826667pt;}
.y1c9{bottom:374.106667pt;}
.y6c{bottom:375.386667pt;}
.y94{bottom:376.186667pt;}
.y125{bottom:379.066667pt;}
.ydb{bottom:380.680000pt;}
.y163{bottom:380.986667pt;}
.y22{bottom:387.706667pt;}
.y18f{bottom:388.666667pt;}
.y1c8{bottom:389.946667pt;}
.y6b{bottom:391.226667pt;}
.y93{bottom:392.066667pt;}
.y124{bottom:396.706667pt;}
.y162{bottom:396.866667pt;}
.y1c7{bottom:405.986667pt;}
.y2f{bottom:406.146667pt;}
.y6a{bottom:407.106667pt;}
.ydd{bottom:407.266667pt;}
.y92{bottom:407.906667pt;}
.y21{bottom:411.266667pt;}
.y18e{bottom:412.546667pt;}
.y161{bottom:412.706667pt;}
.y123{bottom:421.666667pt;}
.y1c6{bottom:421.826667pt;}
.y69{bottom:422.946667pt;}
.y91{bottom:423.906667pt;}
.y18d{bottom:428.386667pt;}
.y160{bottom:428.546667pt;}
.y20{bottom:434.626667pt;}
.yda{bottom:437.346667pt;}
.y1c5{bottom:437.666667pt;}
.y68{bottom:438.946667pt;}
.y90{bottom:439.746667pt;}
.y18c{bottom:444.386667pt;}
.y122{bottom:446.146667pt;}
.y15f{bottom:452.386667pt;}
.y1c4{bottom:453.506667pt;}
.y67{bottom:454.786667pt;}
.y8f{bottom:455.266667pt;}
.yd8{bottom:456.866667pt;}
.y1f{bottom:457.986667pt;}
.y18b{bottom:460.226667pt;}
.y15e{bottom:468.386667pt;}
.y1c3{bottom:469.346667pt;}
.y66{bottom:470.626667pt;}
.y8e{bottom:473.186667pt;}
.y18a{bottom:476.066667pt;}
.y1e{bottom:481.346667pt;}
.yd7{bottom:484.226667pt;}
.y1c2{bottom:485.186667pt;}
.y65{bottom:494.466667pt;}
.y121{bottom:495.266667pt;}
.y189{bottom:499.906667pt;}
.y15d{bottom:500.066667pt;}
.y1c1{bottom:501.186667pt;}
.y8d{bottom:502.306667pt;}
.y1d{bottom:504.706667pt;}
.y64{bottom:510.306667pt;}
.yd6{bottom:511.426667pt;}
.y188{bottom:515.746667pt;}
.y15c{bottom:515.906667pt;}
.y1c0{bottom:517.026667pt;}
.y8c{bottom:518.306667pt;}
.y11b{bottom:519.746667pt;}
.y63{bottom:526.306667pt;}
.y187{bottom:531.586667pt;}
.y15b{bottom:531.746667pt;}
.y1c{bottom:532.226667pt;}
.y1bf{bottom:532.866667pt;}
.y8b{bottom:534.146667pt;}
.yd5{bottom:538.626667pt;}
.y62{bottom:542.146667pt;}
.y15a{bottom:547.586667pt;}
.y1be{bottom:548.706667pt;}
.y8a{bottom:549.986667pt;}
.y1b{bottom:551.586667pt;}
.y61{bottom:557.986667pt;}
.y186{bottom:563.426667pt;}
.y159{bottom:563.586667pt;}
.y1bd{bottom:564.546667pt;}
.y89{bottom:565.826667pt;}
.y11a{bottom:568.866667pt;}
.y60{bottom:573.826667pt;}
.y158{bottom:579.426667pt;}
.y1bc{bottom:580.546667pt;}
.y1a{bottom:581.666667pt;}
.y185{bottom:587.266667pt;}
.y5f{bottom:589.666667pt;}
.yd2{bottom:593.026667pt;}
.y157{bottom:595.266667pt;}
.y1bb{bottom:596.386667pt;}
.y88{bottom:597.506667pt;}
.y184{bottom:603.133333pt;}
.y5e{bottom:605.533333pt;}
.y117{bottom:608.893333pt;}
.y19{bottom:609.053333pt;}
.y156{bottom:611.133333pt;}
.y1ba{bottom:612.253333pt;}
.y87{bottom:613.533333pt;}
.y119{bottom:616.893333pt;}
.y183{bottom:618.973333pt;}
.ycb{bottom:620.253333pt;}
.y5d{bottom:621.533333pt;}
.y18{bottom:621.853333pt;}
.y116{bottom:624.733333pt;}
.y155{bottom:626.653333pt;}
.y1b9{bottom:628.093333pt;}
.y86{bottom:629.373333pt;}
.y118{bottom:632.733333pt;}
.y182{bottom:634.813333pt;}
.y5c{bottom:637.373333pt;}
.y17{bottom:640.893333pt;}
.y1b8{bottom:643.933333pt;}
.y115{bottom:644.253333pt;}
.ycd{bottom:646.653333pt;}
.y154{bottom:650.813333pt;}
.y5b{bottom:653.213333pt;}
.y1b7{bottom:659.773333pt;}
.y153{bottom:666.813333pt;}
.y114{bottom:668.893333pt;}
.y5a{bottom:669.053333pt;}
.y181{bottom:674.653333pt;}
.y1b6{bottom:675.773333pt;}
.yca{bottom:678.973333pt;}
.y152{bottom:682.653333pt;}
.y59{bottom:684.893333pt;}
.y16{bottom:685.853333pt;}
.y180{bottom:690.493333pt;}
.y1b5{bottom:691.613333pt;}
.y113{bottom:693.373333pt;}
.y151{bottom:698.493333pt;}
.y58{bottom:700.893333pt;}
.yc9{bottom:702.813333pt;}
.yb9{bottom:703.133333pt;}
.y17f{bottom:706.333333pt;}
.y1b4{bottom:707.453333pt;}
.y15{bottom:710.493333pt;}
.y150{bottom:714.333333pt;}
.y85{bottom:716.733333pt;}
.y110{bottom:717.853333pt;}
.yc8{bottom:718.653333pt;}
.y17e{bottom:721.853333pt;}
.y1b3{bottom:723.293333pt;}
.y57{bottom:724.733333pt;}
.yb8{bottom:729.213333pt;}
.y14f{bottom:730.173333pt;}
.y84{bottom:732.573333pt;}
.yc7{bottom:734.493333pt;}
.y1b2{bottom:739.133333pt;}
.y56{bottom:740.573333pt;}
.y10f{bottom:742.493333pt;}
.y14e{bottom:746.173333pt;}
.y83{bottom:748.413333pt;}
.yc6{bottom:750.333333pt;}
.y14{bottom:751.613333pt;}
.y1b1{bottom:754.973333pt;}
.yb7{bottom:755.133333pt;}
.y55{bottom:756.413333pt;}
.y14d{bottom:762.013333pt;}
.y82{bottom:764.253333pt;}
.yc5{bottom:766.333333pt;}
.y10e{bottom:766.973333pt;}
.y1b0{bottom:770.973333pt;}
.y54{bottom:772.253333pt;}
.y13{bottom:774.013333pt;}
.y14c{bottom:777.853333pt;}
.yb6{bottom:779.133333pt;}
.y81{bottom:780.093333pt;}
.yc4{bottom:782.173333pt;}
.y1af{bottom:786.813333pt;}
.y53{bottom:788.093333pt;}
.y10d{bottom:791.453333pt;}
.y12{bottom:791.613333pt;}
.y14b{bottom:793.693333pt;}
.y80{bottom:796.093333pt;}
.yc3{bottom:797.693333pt;}
.y1ae{bottom:802.653333pt;}
.y52{bottom:804.093333pt;}
.yb5{bottom:805.053333pt;}
.y14a{bottom:809.573333pt;}
.y11{bottom:809.893333pt;}
.y7f{bottom:811.973333pt;}
.y17d{bottom:817.573333pt;}
.y1ad{bottom:818.533333pt;}
.y51{bottom:819.973333pt;}
.yb4{bottom:820.613333pt;}
.y10c{bottom:820.773333pt;}
.yc2{bottom:821.893333pt;}
.y149{bottom:825.413333pt;}
.y7e{bottom:827.813333pt;}
.y10{bottom:828.293333pt;}
.y17c{bottom:833.413333pt;}
.y1ac{bottom:834.373333pt;}
.y50{bottom:835.813333pt;}
.yc1{bottom:837.733333pt;}
.y148{bottom:841.413333pt;}
.yb3{bottom:844.773333pt;}
.y109{bottom:844.933333pt;}
.yf{bottom:846.373333pt;}
.y17b{bottom:849.413333pt;}
.y1ab{bottom:850.373333pt;}
.y4f{bottom:851.653333pt;}
.yc0{bottom:853.573333pt;}
.y147{bottom:857.253333pt;}
.yb2{bottom:860.613333pt;}
.y108{bottom:860.773333pt;}
.y17a{bottom:865.253333pt;}
.y1aa{bottom:866.213333pt;}
.y4e{bottom:867.493333pt;}
.y10b{bottom:868.773333pt;}
.ybf{bottom:869.573333pt;}
.y146{bottom:872.773333pt;}
.yb1{bottom:876.293333pt;}
.y107{bottom:876.453333pt;}
.y179{bottom:881.093333pt;}
.y1a9{bottom:882.053333pt;}
.ye{bottom:883.493333pt;}
.y10a{bottom:884.773333pt;}
.ybe{bottom:885.413333pt;}
.yb0{bottom:892.133333pt;}
.yd{bottom:895.813333pt;}
.y105{bottom:896.293333pt;}
.y145{bottom:896.933333pt;}
.y1a8{bottom:897.893333pt;}
.y4d{bottom:899.333333pt;}
.ybd{bottom:900.933333pt;}
.yc{bottom:908.133333pt;}
.y144{bottom:912.773333pt;}
.y1a7{bottom:913.733333pt;}
.y4c{bottom:915.173333pt;}
.yaf{bottom:916.293333pt;}
.ybc{bottom:918.853333pt;}
.yb{bottom:920.453333pt;}
.y143{bottom:928.773333pt;}
.y1a6{bottom:929.573333pt;}
.yae{bottom:932.133333pt;}
.y4b{bottom:932.773333pt;}
.y104{bottom:936.613333pt;}
.ya{bottom:936.933333pt;}
.y142{bottom:944.613333pt;}
.y1a5{bottom:945.573333pt;}
.yad{bottom:947.973333pt;}
.y141{bottom:960.453333pt;}
.y103{bottom:961.253333pt;}
.y1a4{bottom:961.413333pt;}
.y9{bottom:962.853333pt;}
.yac{bottom:963.973333pt;}
.y140{bottom:976.293333pt;}
.y1a3{bottom:977.253333pt;}
.y4a{bottom:979.013333pt;}
.yab{bottom:979.813333pt;}
.ya2{bottom:982.240000pt;}
.y178{bottom:984.293333pt;}
.y101{bottom:985.733333pt;}
.y8{bottom:987.493333pt;}
.y13f{bottom:992.133333pt;}
.y1a2{bottom:993.093333pt;}
.yaa{bottom:995.333333pt;}
.ybb{bottom:995.653333pt;}
.ya6{bottom:997.253333pt;}
.y177{bottom:1000.133333pt;}
.y49{bottom:1006.533333pt;}
.y13e{bottom:1007.973333pt;}
.y1a1{bottom:1008.933333pt;}
.yfa{bottom:1010.213333pt;}
.yba{bottom:1011.173333pt;}
.y7{bottom:1012.293333pt;}
.y176{bottom:1015.973333pt;}
.ya9{bottom:1019.520000pt;}
.ya5{bottom:1023.493333pt;}
.y13d{bottom:1024.000000pt;}
.y1a0{bottom:1024.960000pt;}
.y175{bottom:1032.000000pt;}
.y48{bottom:1033.920000pt;}
.yfc{bottom:1034.080000pt;}
.ya8{bottom:1035.520000pt;}
.y6{bottom:1040.480000pt;}
.y19f{bottom:1040.800000pt;}
.y13c{bottom:1047.840000pt;}
.y19e{bottom:1058.400000pt;}
.ya1{bottom:1058.720000pt;}
.y47{bottom:1061.280000pt;}
.ya7{bottom:1061.600000pt;}
.yf9{bottom:1063.680000pt;}
.h2b{height:23.826667pt;}
.h26{height:23.840000pt;}
.h25{height:23.860000pt;}
.h24{height:24.000000pt;}
.h28{height:24.032000pt;}
.h1d{height:26.386667pt;}
.h1b{height:26.400000pt;}
.h1c{height:26.426667pt;}
.h1e{height:26.546667pt;}
.h1a{height:26.560000pt;}
.h20{height:26.578667pt;}
.h2{height:27.516000pt;}
.h13{height:27.676000pt;}
.h14{height:33.515625pt;}
.h8{height:36.431250pt;}
.h27{height:39.680000pt;}
.h2a{height:43.666667pt;}
.h3{height:47.109375pt;}
.h23{height:47.860000pt;}
.h15{height:48.375000pt;}
.h29{height:48.480000pt;}
.h2c{height:49.336436pt;}
.h12{height:52.108438pt;}
.h9{height:52.134375pt;}
.h11{height:52.234000pt;}
.h18{height:52.526250pt;}
.h19{height:52.960000pt;}
.h22{height:53.106667pt;}
.h1f{height:53.138667pt;}
.ha{height:53.535000pt;}
.h21{height:53.746667pt;}
.h16{height:54.598989pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.h10{height:69.660000pt;}
.hc{height:73.490625pt;}
.h6{height:75.465000pt;}
.h7{height:80.625000pt;}
.h17{height:96.640000pt;}
.h5{height:112.875000pt;}
.hf{height:351.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w14{width:82.746667pt;}
.w8{width:111.386667pt;}
.wd{width:112.340000pt;}
.w18{width:112.346667pt;}
.wc{width:114.106667pt;}
.w1d{width:115.066667pt;}
.we{width:135.546667pt;}
.wb{width:156.973333pt;}
.w10{width:157.453333pt;}
.w7{width:158.093333pt;}
.w12{width:165.946667pt;}
.wa{width:173.466667pt;}
.wf{width:174.106667pt;}
.w1c{width:178.413333pt;}
.w17{width:179.213333pt;}
.w15{width:179.222667pt;}
.w6{width:179.226667pt;}
.w1a{width:179.382667pt;}
.w13{width:188.813333pt;}
.w16{width:218.626667pt;}
.w1b{width:222.306667pt;}
.w5{width:244.382667pt;}
.w9{width:248.702667pt;}
.w11{width:256.542667pt;}
.w2{width:641.880000pt;}
.w19{width:691.676000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.720000pt;}
.x3{left:7.676000pt;}
.x13{left:9.600000pt;}
.x35{left:24.480000pt;}
.x33{left:27.680000pt;}
.x22{left:30.226667pt;}
.x3f{left:33.960000pt;}
.x12{left:35.680000pt;}
.x32{left:37.600000pt;}
.x27{left:38.720000pt;}
.x1{left:40.324000pt;}
.x24{left:41.920000pt;}
.x2b{left:43.200000pt;}
.x14{left:45.280000pt;}
.x5{left:48.000000pt;}
.x1e{left:49.284000pt;}
.x38{left:51.204000pt;}
.x20{left:52.160000pt;}
.x17{left:53.952000pt;}
.x2d{left:56.188000pt;}
.x43{left:57.440000pt;}
.x26{left:59.200000pt;}
.x36{left:61.106667pt;}
.x25{left:62.226667pt;}
.x2c{left:63.666667pt;}
.x16{left:65.152000pt;}
.xc{left:67.040000pt;}
.x34{left:70.066667pt;}
.x1b{left:72.000000pt;}
.x3c{left:72.946667pt;}
.x40{left:75.080000pt;}
.x1a{left:76.992000pt;}
.x15{left:82.272000pt;}
.x3b{left:86.760000pt;}
.x42{left:89.266667pt;}
.xe{left:91.872000pt;}
.x3d{left:93.152000pt;}
.x1c{left:96.032000pt;}
.x1d{left:100.992000pt;}
.x44{left:103.560000pt;}
.x41{left:111.080000pt;}
.x37{left:152.026667pt;}
.x2e{left:162.426667pt;}
.xd{left:195.066667pt;}
.x2{left:197.662667pt;}
.x3e{left:228.346667pt;}
.x39{left:231.066667pt;}
.x7{left:240.546667pt;}
.x9{left:242.306667pt;}
.x10{left:244.866667pt;}
.xf{left:254.306667pt;}
.xa{left:255.746667pt;}
.x11{left:288.066667pt;}
.x1f{left:294.466667pt;}
.x28{left:298.626667pt;}
.x30{left:306.146667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x6{left:396.893333pt;}
.x18{left:420.893333pt;}
.x19{left:444.893333pt;}
.x3a{left:450.506667pt;}
.x45{left:468.893333pt;}
.x29{left:472.746667pt;}
.x21{left:474.506667pt;}
.x2a{left:630.533333pt;}
.x23{left:633.253333pt;}
.x31{left:662.213333pt;}
.x4{left:682.213333pt;}
}




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