
    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_a34366ef8bffb12f8910f151.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2da72d0ebbca465f2d37db61.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_23395042de4eeea1b2f824cc.woff')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_1076414245cd78820d46ca8c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_f96368613a5730746f946651.woff')format("woff");}.ff5{font-family:ff5;line-height:0.964844;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_4e8c5e9d2c787a19168cef45.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a9c82cd4d261726bf060a3cd.woff')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_f5b3154855dd384e0984a10f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.989258;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_b101c9462355cd483f2746f8.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v3{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v6{vertical-align:14.400000px;}
.v4{vertical-align:17.280000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:41.040000px;}
.v5{vertical-align:47.520000px;}
.v9{vertical-align:77.760000px;}
.v8{vertical-align:92.160000px;}
.va{vertical-align:95.040000px;}
.ls5{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.078600px;}
.lsc{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.002880px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.584000px;}
.lsa{letter-spacing:2.877120px;}
.ls6{letter-spacing:12.528000px;}
.ls9{letter-spacing:72.432000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-97.632000px;}
.ws6{word-spacing:-25.200000px;}
.ws5{word-spacing:-25.128000px;}
.ws1{word-spacing:-21.060000px;}
.ws15{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.892000px;}
.ws7{word-spacing:-17.889120px;}
.ws14{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.813400px;}
.ws16{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.226440px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:43.485840px;}
.wsd{word-spacing:46.512000px;}
.ws9{word-spacing:57.246840px;}
.wsb{word-spacing:57.786840px;}
.ws8{word-spacing:58.686840px;}
.wsf{word-spacing:76.752000px;}
.wse{word-spacing:87.306840px;}
.wsc{word-spacing:87.426840px;}
.ws12{word-spacing:240.689520px;}
._1b{margin-left:-74.160000px;}
._1a{margin-left:-9.240000px;}
._1e{margin-left:-8.064000px;}
._1c{margin-left:-6.588000px;}
._17{margin-left:-4.824000px;}
._c{margin-left:-3.744000px;}
._12{margin-left:-2.592000px;}
._0{margin-left:-1.578240px;}
._1{width:1.062480px;}
._8{width:2.304000px;}
._5{width:3.548880px;}
._7{width:5.256000px;}
._6{width:6.552000px;}
._e{width:7.721520px;}
._a{width:9.570240px;}
._9{width:10.872000px;}
._13{width:12.654720px;}
._10{width:13.896000px;}
._11{width:14.976000px;}
._b{width:16.128000px;}
._f{width:19.872000px;}
._16{width:21.864000px;}
._14{width:23.832000px;}
._15{width:24.999600px;}
._d{width:26.568000px;}
._18{width:27.936000px;}
._19{width:29.208000px;}
._1d{width:30.480000px;}
._1f{width:33.203760px;}
._3{width:34.217520px;}
._4{width:81.220080px;}
._2{width:109.380000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs9{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-17.100000px;}
.y99{bottom:-4.320000px;}
.y97{bottom:-4.140000px;}
.y89{bottom:-3.420000px;}
.y87{bottom:-3.240000px;}
.y95{bottom:-2.520000px;}
.y85{bottom:-1.800000px;}
.y8d{bottom:-1.620000px;}
.y0{bottom:0.000000px;}
.y10e{bottom:3.954000px;}
.yc2{bottom:3.960000px;}
.y112{bottom:3.990000px;}
.yc4{bottom:4.500000px;}
.yc6{bottom:4.680000px;}
.y10f{bottom:5.754000px;}
.yde{bottom:5.760000px;}
.yfb{bottom:5.790000px;}
.y9{bottom:7.920000px;}
.y7{bottom:20.160000px;}
.ydc{bottom:20.700000px;}
.y139{bottom:24.660000px;}
.y8{bottom:31.680000px;}
.y6{bottom:58.896000px;}
.y5{bottom:79.956000px;}
.y168{bottom:111.096000px;}
.y19c{bottom:114.336000px;}
.y13c{bottom:115.956000px;}
.y80{bottom:116.316000px;}
.y5b{bottom:121.716000px;}
.yc0{bottom:122.076000px;}
.y30{bottom:124.416000px;}
.y110{bottom:125.496000px;}
.y17c{bottom:126.216000px;}
.yee{bottom:127.836000px;}
.y167{bottom:128.376000px;}
.y19b{bottom:133.416000px;}
.y166{bottom:133.596000px;}
.y13b{bottom:136.656000px;}
.y7f{bottom:137.016000px;}
.ybf{bottom:142.776000px;}
.y2f{bottom:145.116000px;}
.y10d{bottom:146.196000px;}
.y165{bottom:146.916000px;}
.yed{bottom:148.536000px;}
.y19a{bottom:152.310000px;}
.y1ca{bottom:153.750000px;}
.y5a{bottom:154.470000px;}
.y13a{bottom:157.350000px;}
.y7e{bottom:157.710000px;}
.ybe{bottom:163.470000px;}
.y2e{bottom:165.810000px;}
.y17b{bottom:167.610000px;}
.y164{bottom:168.330000px;}
.yec{bottom:169.230000px;}
.y10c{bottom:169.410000px;}
.y199{bottom:171.210000px;}
.y1c9{bottom:172.830000px;}
.y59{bottom:175.170000px;}
.y7d{bottom:178.410000px;}
.ybd{bottom:184.170000px;}
.y2d{bottom:186.510000px;}
.y17a{bottom:188.310000px;}
.y163{bottom:189.030000px;}
.yeb{bottom:189.930000px;}
.y198{bottom:190.290000px;}
.y1c8{bottom:191.730000px;}
.y10b{bottom:194.790000px;}
.y58{bottom:195.870000px;}
.y138{bottom:198.750000px;}
.y7c{bottom:199.110000px;}
.ybc{bottom:204.870000px;}
.y2c{bottom:207.210000px;}
.y179{bottom:209.010000px;}
.y197{bottom:209.190000px;}
.y162{bottom:209.730000px;}
.yea{bottom:210.630000px;}
.y1c7{bottom:210.810000px;}
.y57{bottom:216.570000px;}
.y7b{bottom:219.810000px;}
.ybb{bottom:225.570000px;}
.y10a{bottom:227.550000px;}
.y196{bottom:228.270000px;}
.y178{bottom:229.710000px;}
.y161{bottom:230.430000px;}
.ye9{bottom:231.330000px;}
.y56{bottom:237.270000px;}
.y2b{bottom:239.970000px;}
.y7a{bottom:240.510000px;}
.y137{bottom:240.870000px;}
.yba{bottom:246.270000px;}
.y195{bottom:247.170000px;}
.y109{bottom:248.250000px;}
.y1c6{bottom:248.610000px;}
.y177{bottom:250.410000px;}
.y160{bottom:251.130000px;}
.ye8{bottom:252.030000px;}
.y55{bottom:257.970000px;}
.y2a{bottom:260.670000px;}
.y79{bottom:261.210000px;}
.y136{bottom:266.250000px;}
.y1c5{bottom:267.690000px;}
.y108{bottom:268.950000px;}
.y176{bottom:271.110000px;}
.y15f{bottom:271.830000px;}
.ye7{bottom:272.730000px;}
.y54{bottom:278.670000px;}
.yb9{bottom:278.850000px;}
.y29{bottom:281.370000px;}
.y194{bottom:285.150000px;}
.y1c4{bottom:286.590000px;}
.y107{bottom:289.650000px;}
.y175{bottom:291.810000px;}
.y15e{bottom:292.530000px;}
.ye6{bottom:293.430000px;}
.y78{bottom:293.970000px;}
.y135{bottom:299.010000px;}
.y53{bottom:299.370000px;}
.y28{bottom:302.070000px;}
.y193{bottom:304.050000px;}
.y1c3{bottom:305.670000px;}
.y106{bottom:310.395000px;}
.yb8{bottom:311.655000px;}
.y174{bottom:312.555000px;}
.y15d{bottom:313.275000px;}
.ye5{bottom:314.175000px;}
.y77{bottom:314.715000px;}
.y134{bottom:319.755000px;}
.y52{bottom:320.115000px;}
.y27{bottom:322.815000px;}
.y192{bottom:323.175000px;}
.y1c2{bottom:324.615000px;}
.y105{bottom:331.095000px;}
.yb7{bottom:332.355000px;}
.y173{bottom:333.255000px;}
.y15c{bottom:333.975000px;}
.ye4{bottom:334.875000px;}
.y76{bottom:335.415000px;}
.y133{bottom:340.275000px;}
.y191{bottom:342.075000px;}
.y26{bottom:343.515000px;}
.y1c1{bottom:343.695000px;}
.y104{bottom:351.795000px;}
.y51{bottom:352.875000px;}
.yb6{bottom:353.055000px;}
.y172{bottom:353.955000px;}
.y15b{bottom:354.675000px;}
.y75{bottom:356.115000px;}
.y132{bottom:360.975000px;}
.y190{bottom:361.155000px;}
.y1c0{bottom:362.595000px;}
.y25{bottom:364.215000px;}
.ye3{bottom:367.635000px;}
.y103{bottom:372.495000px;}
.y50{bottom:373.575000px;}
.yb5{bottom:373.755000px;}
.y171{bottom:374.655000px;}
.y15a{bottom:375.375000px;}
.y74{bottom:376.815000px;}
.y18f{bottom:380.055000px;}
.y1bf{bottom:381.495000px;}
.y131{bottom:381.675000px;}
.y24{bottom:384.915000px;}
.ye2{bottom:385.095000px;}
.y102{bottom:393.195000px;}
.y4f{bottom:394.275000px;}
.yb4{bottom:394.455000px;}
.y170{bottom:395.355000px;}
.y158{bottom:396.075000px;}
.y73{bottom:397.515000px;}
.y18e{bottom:398.955000px;}
.y1be{bottom:400.575000px;}
.y130{bottom:402.375000px;}
.y159{bottom:402.915000px;}
.y23{bottom:405.615000px;}
.ye1{bottom:407.595000px;}
.y4e{bottom:414.975000px;}
.yb3{bottom:415.155000px;}
.y16f{bottom:416.055000px;}
.y157{bottom:416.775000px;}
.y18d{bottom:418.035000px;}
.y72{bottom:418.215000px;}
.y1bd{bottom:419.475000px;}
.y12f{bottom:423.075000px;}
.y101{bottom:425.775000px;}
.ye0{bottom:430.095000px;}
.y4d{bottom:435.675000px;}
.yb2{bottom:435.855000px;}
.y16e{bottom:436.755000px;}
.y18c{bottom:436.935000px;}
.y156{bottom:437.475000px;}
.y22{bottom:438.195000px;}
.y1bc{bottom:438.555000px;}
.y71{bottom:438.915000px;}
.y100{bottom:443.415000px;}
.y12e{bottom:443.775000px;}
.ydf{bottom:452.595000px;}
.y18b{bottom:456.015000px;}
.y4c{bottom:456.375000px;}
.yb1{bottom:456.555000px;}
.y16d{bottom:457.455000px;}
.y70{bottom:459.615000px;}
.y12d{bottom:464.475000px;}
.yff{bottom:465.915000px;}
.y155{bottom:470.055000px;}
.y21{bottom:470.955000px;}
.y18a{bottom:474.915000px;}
.ydd{bottom:475.095000px;}
.y1bb{bottom:476.355000px;}
.yb0{bottom:477.255000px;}
.y16c{bottom:478.155000px;}
.y6f{bottom:480.315000px;}
.y12c{bottom:485.175000px;}
.yfe{bottom:488.415000px;}
.y4b{bottom:488.955000px;}
.y154{bottom:490.755000px;}
.y189{bottom:493.815000px;}
.y1ba{bottom:495.435000px;}
.yaf{bottom:497.955000px;}
.ydb{bottom:498.315000px;}
.y16b{bottom:498.855000px;}
.y6e{bottom:501.015000px;}
.y20{bottom:503.715000px;}
.y12b{bottom:505.875000px;}
.y4a{bottom:509.655000px;}
.yfd{bottom:510.915000px;}
.y153{bottom:511.455000px;}
.y188{bottom:512.895000px;}
.y1b9{bottom:514.335000px;}
.yae{bottom:518.655000px;}
.y184{bottom:519.555000px;}
.yda{bottom:519.915000px;}
.y6d{bottom:521.715000px;}
.y12a{bottom:526.575000px;}
.y49{bottom:530.355000px;}
.y16a{bottom:531.615000px;}
.y187{bottom:531.795000px;}
.y152{bottom:532.155000px;}
.yfc{bottom:533.415000px;}
.y1f{bottom:536.295000px;}
.yad{bottom:539.355000px;}
.y183{bottom:540.255000px;}
.y6c{bottom:542.415000px;}
.yd9{bottom:545.295000px;}
.y129{bottom:547.275000px;}
.y48{bottom:551.055000px;}
.y1b8{bottom:552.315000px;}
.y151{bottom:552.855000px;}
.yfa{bottom:555.915000px;}
.y1e{bottom:556.995000px;}
.y169{bottom:560.445000px;}
.y182{bottom:560.985000px;}
.y6b{bottom:563.145000px;}
.y128{bottom:568.005000px;}
.y1b7{bottom:571.245000px;}
.y47{bottom:571.785000px;}
.yac{bottom:572.145000px;}
.y150{bottom:573.585000px;}
.y1d{bottom:577.725000px;}
.yd8{bottom:577.905000px;}
.yf9{bottom:579.165000px;}
.y181{bottom:581.685000px;}
.y6a{bottom:583.845000px;}
.y127{bottom:588.705000px;}
.y1b6{bottom:590.325000px;}
.y46{bottom:592.485000px;}
.yab{bottom:592.845000px;}
.y14f{bottom:594.285000px;}
.y186{bottom:595.905000px;}
.y1c{bottom:598.425000px;}
.yd7{bottom:598.605000px;}
.y180{bottom:602.385000px;}
.y69{bottom:604.545000px;}
.y1b5{bottom:609.225000px;}
.y45{bottom:613.185000px;}
.yaa{bottom:613.545000px;}
.y14e{bottom:614.985000px;}
.y185{bottom:616.605000px;}
.y1b{bottom:619.125000px;}
.yd6{bottom:619.305000px;}
.y126{bottom:621.465000px;}
.y17f{bottom:623.085000px;}
.y68{bottom:625.245000px;}
.y1b4{bottom:628.305000px;}
.y44{bottom:633.885000px;}
.ya9{bottom:634.245000px;}
.y14d{bottom:635.685000px;}
.yf8{bottom:637.305000px;}
.y1a{bottom:639.825000px;}
.yd5{bottom:640.005000px;}
.y125{bottom:642.165000px;}
.y67{bottom:645.945000px;}
.y1b3{bottom:647.205000px;}
.y43{bottom:654.585000px;}
.ya8{bottom:655.305000px;}
.y17e{bottom:655.845000px;}
.y14c{bottom:656.385000px;}
.yf7{bottom:658.005000px;}
.y19{bottom:660.525000px;}
.yd4{bottom:660.705000px;}
.y124{bottom:662.865000px;}
.y1b2{bottom:666.105000px;}
.y66{bottom:666.645000px;}
.y42{bottom:675.285000px;}
.ya7{bottom:676.005000px;}
.y14b{bottom:677.085000px;}
.yf6{bottom:678.705000px;}
.y18{bottom:681.225000px;}
.yd3{bottom:681.405000px;}
.y123{bottom:683.565000px;}
.y17d{bottom:684.645000px;}
.y1b1{bottom:685.185000px;}
.y65{bottom:687.345000px;}
.ya6{bottom:697.065000px;}
.y14a{bottom:697.785000px;}
.yf5{bottom:699.405000px;}
.y17{bottom:701.925000px;}
.yd2{bottom:702.105000px;}
.y1b0{bottom:704.085000px;}
.y122{bottom:704.265000px;}
.y41{bottom:708.045000px;}
.ya5{bottom:717.765000px;}
.y149{bottom:718.485000px;}
.y64{bottom:719.925000px;}
.y16{bottom:722.625000px;}
.yd1{bottom:722.805000px;}
.y1af{bottom:723.165000px;}
.y121{bottom:724.965000px;}
.y40{bottom:728.745000px;}
.ya4{bottom:738.465000px;}
.y148{bottom:739.185000px;}
.y63{bottom:740.625000px;}
.y1ae{bottom:742.065000px;}
.y15{bottom:743.325000px;}
.yd0{bottom:743.505000px;}
.y120{bottom:745.665000px;}
.y3f{bottom:749.445000px;}
.ya3{bottom:759.165000px;}
.y147{bottom:759.885000px;}
.y1ad{bottom:760.965000px;}
.y62{bottom:761.325000px;}
.y14{bottom:764.025000px;}
.ycf{bottom:764.205000px;}
.y11f{bottom:766.365000px;}
.y3e{bottom:770.145000px;}
.ya2{bottom:779.865000px;}
.y1ac{bottom:780.045000px;}
.y146{bottom:780.585000px;}
.y61{bottom:782.025000px;}
.y13{bottom:784.725000px;}
.yce{bottom:784.905000px;}
.y11e{bottom:787.065000px;}
.y3d{bottom:790.845000px;}
.y1ab{bottom:798.945000px;}
.y145{bottom:801.285000px;}
.y60{bottom:802.725000px;}
.y12{bottom:805.425000px;}
.ycd{bottom:805.605000px;}
.y11d{bottom:807.765000px;}
.y1aa{bottom:818.070000px;}
.y83{bottom:818.430000px;}
.y93{bottom:820.950000px;}
.y144{bottom:822.030000px;}
.y3c{bottom:823.470000px;}
.y11{bottom:826.170000px;}
.ycc{bottom:826.350000px;}
.y11c{bottom:828.510000px;}
.yf4{bottom:835.530000px;}
.y1a9{bottom:836.970000px;}
.y84{bottom:840.210000px;}
.y94{bottom:842.730000px;}
.y3b{bottom:844.170000px;}
.y91{bottom:850.110000px;}
.y9e{bottom:852.630000px;}
.y1a8{bottom:856.050000px;}
.yf3{bottom:856.230000px;}
.ya1{bottom:858.390000px;}
.y10{bottom:858.930000px;}
.ycb{bottom:859.110000px;}
.y86{bottom:860.370000px;}
.y11b{bottom:861.270000px;}
.y96{bottom:862.170000px;}
.y143{bottom:863.430000px;}
.y3a{bottom:864.870000px;}
.y9f{bottom:871.170000px;}
.y1a7{bottom:874.950000px;}
.yca{bottom:876.570000px;}
.yf2{bottom:876.930000px;}
.y11a{bottom:878.730000px;}
.y88{bottom:879.090000px;}
.yf{bottom:879.630000px;}
.y98{bottom:879.990000px;}
.y92{bottom:881.430000px;}
.y90{bottom:881.790000px;}
.y9d{bottom:884.130000px;}
.y39{bottom:885.570000px;}
.y1a6{bottom:893.850000px;}
.y8a{bottom:897.630000px;}
.yc9{bottom:897.810000px;}
.y119{bottom:899.430000px;}
.ye{bottom:900.330000px;}
.y142{bottom:904.830000px;}
.y38{bottom:906.270000px;}
.ya0{bottom:910.770000px;}
.y1a5{bottom:912.930000px;}
.y8f{bottom:913.290000px;}
.y9a{bottom:915.450000px;}
.y9c{bottom:915.810000px;}
.y8b{bottom:916.170000px;}
.yf1{bottom:918.330000px;}
.yc8{bottom:919.230000px;}
.y118{bottom:920.130000px;}
.y141{bottom:925.530000px;}
.y37{bottom:926.970000px;}
.y1a4{bottom:931.830000px;}
.yd{bottom:933.090000px;}
.y8c{bottom:934.710000px;}
.yf0{bottom:939.030000px;}
.yc7{bottom:940.470000px;}
.y117{bottom:940.830000px;}
.y8e{bottom:944.970000px;}
.y140{bottom:946.230000px;}
.y9b{bottom:947.490000px;}
.y36{bottom:947.670000px;}
.y1a3{bottom:950.910000px;}
.yef{bottom:959.730000px;}
.yc5{bottom:961.710000px;}
.y116{bottom:962.250000px;}
.yc{bottom:965.670000px;}
.y13f{bottom:966.930000px;}
.y5f{bottom:968.370000px;}
.y1a2{bottom:969.810000px;}
.y82{bottom:977.190000px;}
.y35{bottom:980.430000px;}
.yc3{bottom:983.130000px;}
.yb{bottom:986.370000px;}
.y115{bottom:987.630000px;}
.y1a1{bottom:988.710000px;}
.y5e{bottom:989.070000px;}
.y81{bottom:997.890000px;}
.y13e{bottom:999.690000px;}
.y34{bottom:1001.130000px;}
.yc1{bottom:1005.090000px;}
.y1a0{bottom:1007.790000px;}
.y5d{bottom:1009.770000px;}
.y13d{bottom:1017.150000px;}
.y114{bottom:1020.390000px;}
.y33{bottom:1021.830000px;}
.y19f{bottom:1026.690000px;}
.y4{bottom:1027.950000px;}
.y5c{bottom:1030.470000px;}
.y113{bottom:1037.850000px;}
.y32{bottom:1042.530000px;}
.y19e{bottom:1045.770000px;}
.y111{bottom:1058.550000px;}
.y31{bottom:1063.260000px;}
.y19d{bottom:1064.700000px;}
.y3{bottom:1070.460000px;}
.y2{bottom:1094.040000px;}
.y1{bottom:1115.100000px;}
.h16{height:17.640000px;}
.h15{height:17.820000px;}
.h10{height:18.540000px;}
.hf{height:18.720000px;}
.h14{height:19.440000px;}
.he{height:20.160000px;}
.h1c{height:20.700000px;}
.h21{height:20.736000px;}
.h1d{height:21.240000px;}
.h1e{height:21.420000px;}
.h1f{height:22.500000px;}
.h20{height:22.536000px;}
.h24{height:28.115859px;}
.h23{height:34.884492px;}
.h22{height:41.400000px;}
.h25{height:43.215117px;}
.h27{height:47.901094px;}
.h7{height:49.500000px;}
.h2{height:50.800781px;}
.h4{height:52.066406px;}
.h6{height:54.000000px;}
.h9{height:54.316406px;}
.h26{height:54.596250px;}
.ha{height:57.796523px;}
.h8{height:58.320000px;}
.hb{height:59.343750px;}
.h1{height:59.436914px;}
.h1a{height:65.447578px;}
.h5{height:65.884219px;}
.h3{height:67.565039px;}
.hd{height:92.179688px;}
.h12{height:95.059687px;}
.h19{height:133.219687px;}
.h18{height:139.699687px;}
.h1b{height:187.219688px;}
.h11{height:253.290000px;}
.h17{height:254.910000px;}
.hc{height:840.210000px;}
.h13{height:842.730000px;}
.h0{height:1188.000000px;}
.wa{width:16.560000px;}
.wb{width:16.740000px;}
.w1b{width:20.880000px;}
.w19{width:20.916000px;}
.w18{width:55.440000px;}
.we{width:56.700000px;}
.w10{width:56.736000px;}
.w17{width:58.140000px;}
.w11{width:61.560000px;}
.wf{width:61.740000px;}
.wd{width:61.776000px;}
.w6{width:62.676000px;}
.w14{width:62.820000px;}
.w24{width:63.360000px;}
.w7{width:72.576000px;}
.w8{width:78.300000px;}
.w22{width:80.100000px;}
.w4{width:82.440000px;}
.w16{width:83.736000px;}
.w12{width:84.240000px;}
.w21{width:85.716000px;}
.w20{width:85.860000px;}
.w3{width:86.256000px;}
.w23{width:87.336000px;}
.w13{width:89.640000px;}
.w15{width:89.676000px;}
.w25{width:89.856000px;}
.w5{width:92.520000px;}
.w1e{width:102.600000px;}
.w1f{width:106.776000px;}
.w1a{width:116.460000px;}
.w1c{width:116.496000px;}
.w1d{width:116.676000px;}
.wc{width:118.260000px;}
.w9{width:118.476000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:8.100000px;}
.x6{left:10.799986px;}
.x40{left:13.680000px;}
.x3d{left:15.480000px;}
.x51{left:16.560000px;}
.x4f{left:19.290000px;}
.x54{left:22.140000px;}
.x7{left:23.219986px;}
.x5a{left:27.000000px;}
.x49{left:29.700000px;}
.x55{left:30.780000px;}
.x4d{left:33.885000px;}
.x57{left:35.460000px;}
.x27{left:38.160000px;}
.x2a{left:40.680000px;}
.x43{left:42.660000px;}
.x2d{left:43.740000px;}
.x48{left:45.180000px;}
.x56{left:48.825000px;}
.x53{left:51.300000px;}
.x5{left:108.035986px;}
.x5d{left:112.895986px;}
.xe{left:122.435973px;}
.xf{left:128.735986px;}
.x9{left:137.195986px;}
.x26{left:158.070000px;}
.x25{left:162.029986px;}
.x35{left:165.270000px;}
.x34{left:168.869986px;}
.x1{left:176.249986px;}
.x4a{left:182.369986px;}
.x4b{left:184.890000px;}
.x1d{left:216.029986px;}
.x1e{left:219.630000px;}
.x10{left:221.069973px;}
.x3e{left:222.869986px;}
.x3f{left:225.210000px;}
.x11{left:232.229986px;}
.x3{left:236.549986px;}
.xc{left:243.209986px;}
.x36{left:249.510000px;}
.x12{left:250.589973px;}
.xd{left:252.029986px;}
.x13{left:257.069986px;}
.x41{left:280.650000px;}
.x2{left:284.249986px;}
.x4c{left:287.490000px;}
.x30{left:298.155000px;}
.x42{left:301.575000px;}
.x20{left:305.895000px;}
.x37{left:312.195000px;}
.xb{left:314.714986px;}
.x14{left:324.254973px;}
.x15{left:333.614986px;}
.x16{left:340.274986px;}
.x28{left:354.855000px;}
.x29{left:371.415000px;}
.x21{left:388.335000px;}
.x4e{left:394.275000px;}
.x38{left:401.835000px;}
.xa{left:404.534986px;}
.x44{left:418.035000px;}
.x31{left:433.155000px;}
.x45{left:438.915000px;}
.x8{left:459.074986px;}
.x39{left:464.655000px;}
.x22{left:480.855000px;}
.x2b{left:489.885000px;}
.x2c{left:506.625000px;}
.x17{left:518.144973px;}
.x18{left:524.444986px;}
.x23{left:543.525000px;}
.x3a{left:554.325000px;}
.x46{left:555.405000px;}
.x50{left:565.845000px;}
.x32{left:568.185000px;}
.x47{left:576.285000px;}
.x58{left:580.425000px;}
.x3b{left:611.025000px;}
.x19{left:619.664973px;}
.x2e{left:624.885000px;}
.x24{left:625.965000px;}
.x1a{left:629.744986px;}
.x2f{left:641.625000px;}
.x52{left:645.945000px;}
.x1c{left:648.824986px;}
.x1b{left:655.124986px;}
.x59{left:670.065000px;}
.x5b{left:680.549973px;}
.x5c{left:686.669986px;}
.x3c{left:694.770000px;}
.x33{left:703.410000px;}
.x5e{left:785.309986px;}
.x4{left:793.409986px;}
@media print{
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v6{vertical-align:12.800000pt;}
.v4{vertical-align:15.360000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:36.480000pt;}
.v5{vertical-align:42.240000pt;}
.v9{vertical-align:69.120000pt;}
.v8{vertical-align:81.920000pt;}
.va{vertical-align:84.480000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.069867pt;}
.lsc{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.002560pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.408000pt;}
.lsa{letter-spacing:2.557440pt;}
.ls6{letter-spacing:11.136000pt;}
.ls9{letter-spacing:64.384000pt;}
.wsa{word-spacing:-86.784000pt;}
.ws6{word-spacing:-22.400000pt;}
.ws5{word-spacing:-22.336000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws15{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.904000pt;}
.ws7{word-spacing:-15.901440pt;}
.ws14{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.834133pt;}
.ws16{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:38.654080pt;}
.wsd{word-spacing:41.344000pt;}
.ws9{word-spacing:50.886080pt;}
.wsb{word-spacing:51.366080pt;}
.ws8{word-spacing:52.166080pt;}
.wsf{word-spacing:68.224000pt;}
.wse{word-spacing:77.606080pt;}
.wsc{word-spacing:77.712747pt;}
.ws12{word-spacing:213.946240pt;}
._1b{margin-left:-65.920000pt;}
._1a{margin-left:-8.213333pt;}
._1e{margin-left:-7.168000pt;}
._1c{margin-left:-5.856000pt;}
._17{margin-left:-4.288000pt;}
._c{margin-left:-3.328000pt;}
._12{margin-left:-2.304000pt;}
._0{margin-left:-1.402880pt;}
._1{width:0.944427pt;}
._8{width:2.048000pt;}
._5{width:3.154560pt;}
._7{width:4.672000pt;}
._6{width:5.824000pt;}
._e{width:6.863573pt;}
._a{width:8.506880pt;}
._9{width:9.664000pt;}
._13{width:11.248640pt;}
._10{width:12.352000pt;}
._11{width:13.312000pt;}
._b{width:14.336000pt;}
._f{width:17.664000pt;}
._16{width:19.434667pt;}
._14{width:21.184000pt;}
._15{width:22.221867pt;}
._d{width:23.616000pt;}
._18{width:24.832000pt;}
._19{width:25.962667pt;}
._1d{width:27.093333pt;}
._1f{width:29.514453pt;}
._3{width:30.415573pt;}
._4{width:72.195627pt;}
._2{width:97.226667pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs9{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-15.200000pt;}
.y99{bottom:-3.840000pt;}
.y97{bottom:-3.680000pt;}
.y89{bottom:-3.040000pt;}
.y87{bottom:-2.880000pt;}
.y95{bottom:-2.240000pt;}
.y85{bottom:-1.600000pt;}
.y8d{bottom:-1.440000pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:3.514667pt;}
.yc2{bottom:3.520000pt;}
.y112{bottom:3.546667pt;}
.yc4{bottom:4.000000pt;}
.yc6{bottom:4.160000pt;}
.y10f{bottom:5.114667pt;}
.yde{bottom:5.120000pt;}
.yfb{bottom:5.146667pt;}
.y9{bottom:7.040000pt;}
.y7{bottom:17.920000pt;}
.ydc{bottom:18.400000pt;}
.y139{bottom:21.920000pt;}
.y8{bottom:28.160000pt;}
.y6{bottom:52.352000pt;}
.y5{bottom:71.072000pt;}
.y168{bottom:98.752000pt;}
.y19c{bottom:101.632000pt;}
.y13c{bottom:103.072000pt;}
.y80{bottom:103.392000pt;}
.y5b{bottom:108.192000pt;}
.yc0{bottom:108.512000pt;}
.y30{bottom:110.592000pt;}
.y110{bottom:111.552000pt;}
.y17c{bottom:112.192000pt;}
.yee{bottom:113.632000pt;}
.y167{bottom:114.112000pt;}
.y19b{bottom:118.592000pt;}
.y166{bottom:118.752000pt;}
.y13b{bottom:121.472000pt;}
.y7f{bottom:121.792000pt;}
.ybf{bottom:126.912000pt;}
.y2f{bottom:128.992000pt;}
.y10d{bottom:129.952000pt;}
.y165{bottom:130.592000pt;}
.yed{bottom:132.032000pt;}
.y19a{bottom:135.386667pt;}
.y1ca{bottom:136.666667pt;}
.y5a{bottom:137.306667pt;}
.y13a{bottom:139.866667pt;}
.y7e{bottom:140.186667pt;}
.ybe{bottom:145.306667pt;}
.y2e{bottom:147.386667pt;}
.y17b{bottom:148.986667pt;}
.y164{bottom:149.626667pt;}
.yec{bottom:150.426667pt;}
.y10c{bottom:150.586667pt;}
.y199{bottom:152.186667pt;}
.y1c9{bottom:153.626667pt;}
.y59{bottom:155.706667pt;}
.y7d{bottom:158.586667pt;}
.ybd{bottom:163.706667pt;}
.y2d{bottom:165.786667pt;}
.y17a{bottom:167.386667pt;}
.y163{bottom:168.026667pt;}
.yeb{bottom:168.826667pt;}
.y198{bottom:169.146667pt;}
.y1c8{bottom:170.426667pt;}
.y10b{bottom:173.146667pt;}
.y58{bottom:174.106667pt;}
.y138{bottom:176.666667pt;}
.y7c{bottom:176.986667pt;}
.ybc{bottom:182.106667pt;}
.y2c{bottom:184.186667pt;}
.y179{bottom:185.786667pt;}
.y197{bottom:185.946667pt;}
.y162{bottom:186.426667pt;}
.yea{bottom:187.226667pt;}
.y1c7{bottom:187.386667pt;}
.y57{bottom:192.506667pt;}
.y7b{bottom:195.386667pt;}
.ybb{bottom:200.506667pt;}
.y10a{bottom:202.266667pt;}
.y196{bottom:202.906667pt;}
.y178{bottom:204.186667pt;}
.y161{bottom:204.826667pt;}
.ye9{bottom:205.626667pt;}
.y56{bottom:210.906667pt;}
.y2b{bottom:213.306667pt;}
.y7a{bottom:213.786667pt;}
.y137{bottom:214.106667pt;}
.yba{bottom:218.906667pt;}
.y195{bottom:219.706667pt;}
.y109{bottom:220.666667pt;}
.y1c6{bottom:220.986667pt;}
.y177{bottom:222.586667pt;}
.y160{bottom:223.226667pt;}
.ye8{bottom:224.026667pt;}
.y55{bottom:229.306667pt;}
.y2a{bottom:231.706667pt;}
.y79{bottom:232.186667pt;}
.y136{bottom:236.666667pt;}
.y1c5{bottom:237.946667pt;}
.y108{bottom:239.066667pt;}
.y176{bottom:240.986667pt;}
.y15f{bottom:241.626667pt;}
.ye7{bottom:242.426667pt;}
.y54{bottom:247.706667pt;}
.yb9{bottom:247.866667pt;}
.y29{bottom:250.106667pt;}
.y194{bottom:253.466667pt;}
.y1c4{bottom:254.746667pt;}
.y107{bottom:257.466667pt;}
.y175{bottom:259.386667pt;}
.y15e{bottom:260.026667pt;}
.ye6{bottom:260.826667pt;}
.y78{bottom:261.306667pt;}
.y135{bottom:265.786667pt;}
.y53{bottom:266.106667pt;}
.y28{bottom:268.506667pt;}
.y193{bottom:270.266667pt;}
.y1c3{bottom:271.706667pt;}
.y106{bottom:275.906667pt;}
.yb8{bottom:277.026667pt;}
.y174{bottom:277.826667pt;}
.y15d{bottom:278.466667pt;}
.ye5{bottom:279.266667pt;}
.y77{bottom:279.746667pt;}
.y134{bottom:284.226667pt;}
.y52{bottom:284.546667pt;}
.y27{bottom:286.946667pt;}
.y192{bottom:287.266667pt;}
.y1c2{bottom:288.546667pt;}
.y105{bottom:294.306667pt;}
.yb7{bottom:295.426667pt;}
.y173{bottom:296.226667pt;}
.y15c{bottom:296.866667pt;}
.ye4{bottom:297.666667pt;}
.y76{bottom:298.146667pt;}
.y133{bottom:302.466667pt;}
.y191{bottom:304.066667pt;}
.y26{bottom:305.346667pt;}
.y1c1{bottom:305.506667pt;}
.y104{bottom:312.706667pt;}
.y51{bottom:313.666667pt;}
.yb6{bottom:313.826667pt;}
.y172{bottom:314.626667pt;}
.y15b{bottom:315.266667pt;}
.y75{bottom:316.546667pt;}
.y132{bottom:320.866667pt;}
.y190{bottom:321.026667pt;}
.y1c0{bottom:322.306667pt;}
.y25{bottom:323.746667pt;}
.ye3{bottom:326.786667pt;}
.y103{bottom:331.106667pt;}
.y50{bottom:332.066667pt;}
.yb5{bottom:332.226667pt;}
.y171{bottom:333.026667pt;}
.y15a{bottom:333.666667pt;}
.y74{bottom:334.946667pt;}
.y18f{bottom:337.826667pt;}
.y1bf{bottom:339.106667pt;}
.y131{bottom:339.266667pt;}
.y24{bottom:342.146667pt;}
.ye2{bottom:342.306667pt;}
.y102{bottom:349.506667pt;}
.y4f{bottom:350.466667pt;}
.yb4{bottom:350.626667pt;}
.y170{bottom:351.426667pt;}
.y158{bottom:352.066667pt;}
.y73{bottom:353.346667pt;}
.y18e{bottom:354.626667pt;}
.y1be{bottom:356.066667pt;}
.y130{bottom:357.666667pt;}
.y159{bottom:358.146667pt;}
.y23{bottom:360.546667pt;}
.ye1{bottom:362.306667pt;}
.y4e{bottom:368.866667pt;}
.yb3{bottom:369.026667pt;}
.y16f{bottom:369.826667pt;}
.y157{bottom:370.466667pt;}
.y18d{bottom:371.586667pt;}
.y72{bottom:371.746667pt;}
.y1bd{bottom:372.866667pt;}
.y12f{bottom:376.066667pt;}
.y101{bottom:378.466667pt;}
.ye0{bottom:382.306667pt;}
.y4d{bottom:387.266667pt;}
.yb2{bottom:387.426667pt;}
.y16e{bottom:388.226667pt;}
.y18c{bottom:388.386667pt;}
.y156{bottom:388.866667pt;}
.y22{bottom:389.506667pt;}
.y1bc{bottom:389.826667pt;}
.y71{bottom:390.146667pt;}
.y100{bottom:394.146667pt;}
.y12e{bottom:394.466667pt;}
.ydf{bottom:402.306667pt;}
.y18b{bottom:405.346667pt;}
.y4c{bottom:405.666667pt;}
.yb1{bottom:405.826667pt;}
.y16d{bottom:406.626667pt;}
.y70{bottom:408.546667pt;}
.y12d{bottom:412.866667pt;}
.yff{bottom:414.146667pt;}
.y155{bottom:417.826667pt;}
.y21{bottom:418.626667pt;}
.y18a{bottom:422.146667pt;}
.ydd{bottom:422.306667pt;}
.y1bb{bottom:423.426667pt;}
.yb0{bottom:424.226667pt;}
.y16c{bottom:425.026667pt;}
.y6f{bottom:426.946667pt;}
.y12c{bottom:431.266667pt;}
.yfe{bottom:434.146667pt;}
.y4b{bottom:434.626667pt;}
.y154{bottom:436.226667pt;}
.y189{bottom:438.946667pt;}
.y1ba{bottom:440.386667pt;}
.yaf{bottom:442.626667pt;}
.ydb{bottom:442.946667pt;}
.y16b{bottom:443.426667pt;}
.y6e{bottom:445.346667pt;}
.y20{bottom:447.746667pt;}
.y12b{bottom:449.666667pt;}
.y4a{bottom:453.026667pt;}
.yfd{bottom:454.146667pt;}
.y153{bottom:454.626667pt;}
.y188{bottom:455.906667pt;}
.y1b9{bottom:457.186667pt;}
.yae{bottom:461.026667pt;}
.y184{bottom:461.826667pt;}
.yda{bottom:462.146667pt;}
.y6d{bottom:463.746667pt;}
.y12a{bottom:468.066667pt;}
.y49{bottom:471.426667pt;}
.y16a{bottom:472.546667pt;}
.y187{bottom:472.706667pt;}
.y152{bottom:473.026667pt;}
.yfc{bottom:474.146667pt;}
.y1f{bottom:476.706667pt;}
.yad{bottom:479.426667pt;}
.y183{bottom:480.226667pt;}
.y6c{bottom:482.146667pt;}
.yd9{bottom:484.706667pt;}
.y129{bottom:486.466667pt;}
.y48{bottom:489.826667pt;}
.y1b8{bottom:490.946667pt;}
.y151{bottom:491.426667pt;}
.yfa{bottom:494.146667pt;}
.y1e{bottom:495.106667pt;}
.y169{bottom:498.173333pt;}
.y182{bottom:498.653333pt;}
.y6b{bottom:500.573333pt;}
.y128{bottom:504.893333pt;}
.y1b7{bottom:507.773333pt;}
.y47{bottom:508.253333pt;}
.yac{bottom:508.573333pt;}
.y150{bottom:509.853333pt;}
.y1d{bottom:513.533333pt;}
.yd8{bottom:513.693333pt;}
.yf9{bottom:514.813333pt;}
.y181{bottom:517.053333pt;}
.y6a{bottom:518.973333pt;}
.y127{bottom:523.293333pt;}
.y1b6{bottom:524.733333pt;}
.y46{bottom:526.653333pt;}
.yab{bottom:526.973333pt;}
.y14f{bottom:528.253333pt;}
.y186{bottom:529.693333pt;}
.y1c{bottom:531.933333pt;}
.yd7{bottom:532.093333pt;}
.y180{bottom:535.453333pt;}
.y69{bottom:537.373333pt;}
.y1b5{bottom:541.533333pt;}
.y45{bottom:545.053333pt;}
.yaa{bottom:545.373333pt;}
.y14e{bottom:546.653333pt;}
.y185{bottom:548.093333pt;}
.y1b{bottom:550.333333pt;}
.yd6{bottom:550.493333pt;}
.y126{bottom:552.413333pt;}
.y17f{bottom:553.853333pt;}
.y68{bottom:555.773333pt;}
.y1b4{bottom:558.493333pt;}
.y44{bottom:563.453333pt;}
.ya9{bottom:563.773333pt;}
.y14d{bottom:565.053333pt;}
.yf8{bottom:566.493333pt;}
.y1a{bottom:568.733333pt;}
.yd5{bottom:568.893333pt;}
.y125{bottom:570.813333pt;}
.y67{bottom:574.173333pt;}
.y1b3{bottom:575.293333pt;}
.y43{bottom:581.853333pt;}
.ya8{bottom:582.493333pt;}
.y17e{bottom:582.973333pt;}
.y14c{bottom:583.453333pt;}
.yf7{bottom:584.893333pt;}
.y19{bottom:587.133333pt;}
.yd4{bottom:587.293333pt;}
.y124{bottom:589.213333pt;}
.y1b2{bottom:592.093333pt;}
.y66{bottom:592.573333pt;}
.y42{bottom:600.253333pt;}
.ya7{bottom:600.893333pt;}
.y14b{bottom:601.853333pt;}
.yf6{bottom:603.293333pt;}
.y18{bottom:605.533333pt;}
.yd3{bottom:605.693333pt;}
.y123{bottom:607.613333pt;}
.y17d{bottom:608.573333pt;}
.y1b1{bottom:609.053333pt;}
.y65{bottom:610.973333pt;}
.ya6{bottom:619.613333pt;}
.y14a{bottom:620.253333pt;}
.yf5{bottom:621.693333pt;}
.y17{bottom:623.933333pt;}
.yd2{bottom:624.093333pt;}
.y1b0{bottom:625.853333pt;}
.y122{bottom:626.013333pt;}
.y41{bottom:629.373333pt;}
.ya5{bottom:638.013333pt;}
.y149{bottom:638.653333pt;}
.y64{bottom:639.933333pt;}
.y16{bottom:642.333333pt;}
.yd1{bottom:642.493333pt;}
.y1af{bottom:642.813333pt;}
.y121{bottom:644.413333pt;}
.y40{bottom:647.773333pt;}
.ya4{bottom:656.413333pt;}
.y148{bottom:657.053333pt;}
.y63{bottom:658.333333pt;}
.y1ae{bottom:659.613333pt;}
.y15{bottom:660.733333pt;}
.yd0{bottom:660.893333pt;}
.y120{bottom:662.813333pt;}
.y3f{bottom:666.173333pt;}
.ya3{bottom:674.813333pt;}
.y147{bottom:675.453333pt;}
.y1ad{bottom:676.413333pt;}
.y62{bottom:676.733333pt;}
.y14{bottom:679.133333pt;}
.ycf{bottom:679.293333pt;}
.y11f{bottom:681.213333pt;}
.y3e{bottom:684.573333pt;}
.ya2{bottom:693.213333pt;}
.y1ac{bottom:693.373333pt;}
.y146{bottom:693.853333pt;}
.y61{bottom:695.133333pt;}
.y13{bottom:697.533333pt;}
.yce{bottom:697.693333pt;}
.y11e{bottom:699.613333pt;}
.y3d{bottom:702.973333pt;}
.y1ab{bottom:710.173333pt;}
.y145{bottom:712.253333pt;}
.y60{bottom:713.533333pt;}
.y12{bottom:715.933333pt;}
.ycd{bottom:716.093333pt;}
.y11d{bottom:718.013333pt;}
.y1aa{bottom:727.173333pt;}
.y83{bottom:727.493333pt;}
.y93{bottom:729.733333pt;}
.y144{bottom:730.693333pt;}
.y3c{bottom:731.973333pt;}
.y11{bottom:734.373333pt;}
.ycc{bottom:734.533333pt;}
.y11c{bottom:736.453333pt;}
.yf4{bottom:742.693333pt;}
.y1a9{bottom:743.973333pt;}
.y84{bottom:746.853333pt;}
.y94{bottom:749.093333pt;}
.y3b{bottom:750.373333pt;}
.y91{bottom:755.653333pt;}
.y9e{bottom:757.893333pt;}
.y1a8{bottom:760.933333pt;}
.yf3{bottom:761.093333pt;}
.ya1{bottom:763.013333pt;}
.y10{bottom:763.493333pt;}
.ycb{bottom:763.653333pt;}
.y86{bottom:764.773333pt;}
.y11b{bottom:765.573333pt;}
.y96{bottom:766.373333pt;}
.y143{bottom:767.493333pt;}
.y3a{bottom:768.773333pt;}
.y9f{bottom:774.373333pt;}
.y1a7{bottom:777.733333pt;}
.yca{bottom:779.173333pt;}
.yf2{bottom:779.493333pt;}
.y11a{bottom:781.093333pt;}
.y88{bottom:781.413333pt;}
.yf{bottom:781.893333pt;}
.y98{bottom:782.213333pt;}
.y92{bottom:783.493333pt;}
.y90{bottom:783.813333pt;}
.y9d{bottom:785.893333pt;}
.y39{bottom:787.173333pt;}
.y1a6{bottom:794.533333pt;}
.y8a{bottom:797.893333pt;}
.yc9{bottom:798.053333pt;}
.y119{bottom:799.493333pt;}
.ye{bottom:800.293333pt;}
.y142{bottom:804.293333pt;}
.y38{bottom:805.573333pt;}
.ya0{bottom:809.573333pt;}
.y1a5{bottom:811.493333pt;}
.y8f{bottom:811.813333pt;}
.y9a{bottom:813.733333pt;}
.y9c{bottom:814.053333pt;}
.y8b{bottom:814.373333pt;}
.yf1{bottom:816.293333pt;}
.yc8{bottom:817.093333pt;}
.y118{bottom:817.893333pt;}
.y141{bottom:822.693333pt;}
.y37{bottom:823.973333pt;}
.y1a4{bottom:828.293333pt;}
.yd{bottom:829.413333pt;}
.y8c{bottom:830.853333pt;}
.yf0{bottom:834.693333pt;}
.yc7{bottom:835.973333pt;}
.y117{bottom:836.293333pt;}
.y8e{bottom:839.973333pt;}
.y140{bottom:841.093333pt;}
.y9b{bottom:842.213333pt;}
.y36{bottom:842.373333pt;}
.y1a3{bottom:845.253333pt;}
.yef{bottom:853.093333pt;}
.yc5{bottom:854.853333pt;}
.y116{bottom:855.333333pt;}
.yc{bottom:858.373333pt;}
.y13f{bottom:859.493333pt;}
.y5f{bottom:860.773333pt;}
.y1a2{bottom:862.053333pt;}
.y82{bottom:868.613333pt;}
.y35{bottom:871.493333pt;}
.yc3{bottom:873.893333pt;}
.yb{bottom:876.773333pt;}
.y115{bottom:877.893333pt;}
.y1a1{bottom:878.853333pt;}
.y5e{bottom:879.173333pt;}
.y81{bottom:887.013333pt;}
.y13e{bottom:888.613333pt;}
.y34{bottom:889.893333pt;}
.yc1{bottom:893.413333pt;}
.y1a0{bottom:895.813333pt;}
.y5d{bottom:897.573333pt;}
.y13d{bottom:904.133333pt;}
.y114{bottom:907.013333pt;}
.y33{bottom:908.293333pt;}
.y19f{bottom:912.613333pt;}
.y4{bottom:913.733333pt;}
.y5c{bottom:915.973333pt;}
.y113{bottom:922.533333pt;}
.y32{bottom:926.693333pt;}
.y19e{bottom:929.573333pt;}
.y111{bottom:940.933333pt;}
.y31{bottom:945.120000pt;}
.y19d{bottom:946.400000pt;}
.y3{bottom:951.520000pt;}
.y2{bottom:972.480000pt;}
.y1{bottom:991.200000pt;}
.h16{height:15.680000pt;}
.h15{height:15.840000pt;}
.h10{height:16.480000pt;}
.hf{height:16.640000pt;}
.h14{height:17.280000pt;}
.he{height:17.920000pt;}
.h1c{height:18.400000pt;}
.h21{height:18.432000pt;}
.h1d{height:18.880000pt;}
.h1e{height:19.040000pt;}
.h1f{height:20.000000pt;}
.h20{height:20.032000pt;}
.h24{height:24.991875pt;}
.h23{height:31.008437pt;}
.h22{height:36.800000pt;}
.h25{height:38.413438pt;}
.h27{height:42.578750pt;}
.h7{height:44.000000pt;}
.h2{height:45.156250pt;}
.h4{height:46.281250pt;}
.h6{height:48.000000pt;}
.h9{height:48.281250pt;}
.h26{height:48.530000pt;}
.ha{height:51.374688pt;}
.h8{height:51.840000pt;}
.hb{height:52.750000pt;}
.h1{height:52.832812pt;}
.h1a{height:58.175625pt;}
.h5{height:58.563750pt;}
.h3{height:60.057813pt;}
.hd{height:81.937500pt;}
.h12{height:84.497500pt;}
.h19{height:118.417500pt;}
.h18{height:124.177500pt;}
.h1b{height:166.417500pt;}
.h11{height:225.146667pt;}
.h17{height:226.586667pt;}
.hc{height:746.853333pt;}
.h13{height:749.093333pt;}
.h0{height:1056.000000pt;}
.wa{width:14.720000pt;}
.wb{width:14.880000pt;}
.w1b{width:18.560000pt;}
.w19{width:18.592000pt;}
.w18{width:49.280000pt;}
.we{width:50.400000pt;}
.w10{width:50.432000pt;}
.w17{width:51.680000pt;}
.w11{width:54.720000pt;}
.wf{width:54.880000pt;}
.wd{width:54.912000pt;}
.w6{width:55.712000pt;}
.w14{width:55.840000pt;}
.w24{width:56.320000pt;}
.w7{width:64.512000pt;}
.w8{width:69.600000pt;}
.w22{width:71.200000pt;}
.w4{width:73.280000pt;}
.w16{width:74.432000pt;}
.w12{width:74.880000pt;}
.w21{width:76.192000pt;}
.w20{width:76.320000pt;}
.w3{width:76.672000pt;}
.w23{width:77.632000pt;}
.w13{width:79.680000pt;}
.w15{width:79.712000pt;}
.w25{width:79.872000pt;}
.w5{width:82.240000pt;}
.w1e{width:91.200000pt;}
.w1f{width:94.912000pt;}
.w1a{width:103.520000pt;}
.w1c{width:103.552000pt;}
.w1d{width:103.712000pt;}
.wc{width:105.120000pt;}
.w9{width:105.312000pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.200000pt;}
.x6{left:9.599988pt;}
.x40{left:12.160000pt;}
.x3d{left:13.760000pt;}
.x51{left:14.720000pt;}
.x4f{left:17.146667pt;}
.x54{left:19.680000pt;}
.x7{left:20.639988pt;}
.x5a{left:24.000000pt;}
.x49{left:26.400000pt;}
.x55{left:27.360000pt;}
.x4d{left:30.120000pt;}
.x57{left:31.520000pt;}
.x27{left:33.920000pt;}
.x2a{left:36.160000pt;}
.x43{left:37.920000pt;}
.x2d{left:38.880000pt;}
.x48{left:40.160000pt;}
.x56{left:43.400000pt;}
.x53{left:45.600000pt;}
.x5{left:96.031988pt;}
.x5d{left:100.351988pt;}
.xe{left:108.831976pt;}
.xf{left:114.431988pt;}
.x9{left:121.951988pt;}
.x26{left:140.506667pt;}
.x25{left:144.026655pt;}
.x35{left:146.906667pt;}
.x34{left:150.106655pt;}
.x1{left:156.666655pt;}
.x4a{left:162.106655pt;}
.x4b{left:164.346667pt;}
.x1d{left:192.026655pt;}
.x1e{left:195.226667pt;}
.x10{left:196.506642pt;}
.x3e{left:198.106655pt;}
.x3f{left:200.186667pt;}
.x11{left:206.426655pt;}
.x3{left:210.266655pt;}
.xc{left:216.186655pt;}
.x36{left:221.786667pt;}
.x12{left:222.746642pt;}
.xd{left:224.026655pt;}
.x13{left:228.506655pt;}
.x41{left:249.466667pt;}
.x2{left:252.666655pt;}
.x4c{left:255.546667pt;}
.x30{left:265.026667pt;}
.x42{left:268.066667pt;}
.x20{left:271.906667pt;}
.x37{left:277.506667pt;}
.xb{left:279.746655pt;}
.x14{left:288.226642pt;}
.x15{left:296.546655pt;}
.x16{left:302.466655pt;}
.x28{left:315.426667pt;}
.x29{left:330.146667pt;}
.x21{left:345.186667pt;}
.x4e{left:350.466667pt;}
.x38{left:357.186667pt;}
.xa{left:359.586655pt;}
.x44{left:371.586667pt;}
.x31{left:385.026667pt;}
.x45{left:390.146667pt;}
.x8{left:408.066655pt;}
.x39{left:413.026667pt;}
.x22{left:427.426667pt;}
.x2b{left:435.453333pt;}
.x2c{left:450.333333pt;}
.x17{left:460.573309pt;}
.x18{left:466.173321pt;}
.x23{left:483.133333pt;}
.x3a{left:492.733333pt;}
.x46{left:493.693333pt;}
.x50{left:502.973333pt;}
.x32{left:505.053333pt;}
.x47{left:512.253333pt;}
.x58{left:515.933333pt;}
.x3b{left:543.133333pt;}
.x19{left:550.813309pt;}
.x2e{left:555.453333pt;}
.x24{left:556.413333pt;}
.x1a{left:559.773321pt;}
.x2f{left:570.333333pt;}
.x52{left:574.173333pt;}
.x1c{left:576.733321pt;}
.x1b{left:582.333321pt;}
.x59{left:595.613333pt;}
.x5b{left:604.933309pt;}
.x5c{left:610.373321pt;}
.x3c{left:617.573333pt;}
.x33{left:625.253333pt;}
.x5e{left:698.053321pt;}
.x4{left:705.253321pt;}
}




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