
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_03d0c3c703ec2616080c2503.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5d39d1e312e98f40166fc5e4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_3d70b6dfcf11e7f4e3e1364e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_f7ed6ffe95213298d85a8227.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_60bd2fd8e5e17afa3d4d2e98.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_9700b2ba057056aadda7c640.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7e9523bb237f01c1d4deff06.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.339600px;}
.ls1f{letter-spacing:-0.243600px;}
.ls18{letter-spacing:-0.232800px;}
.ls9{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls12{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls1b{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.lsb{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.048960px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.041760px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls17{letter-spacing:0.068400px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.116400px;}
.ls1d{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls20{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls1c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws13{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.369800px;}
.wsc{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.294800px;}
.ws9{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.268160px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.177440px;}
.ws12{word-spacing:-13.101000px;}
.wsa{word-spacing:-13.072800px;}
.wse{word-spacing:-13.065600px;}
.ws2{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.982800px;}
.wsb{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._12{margin-left:-3.547320px;}
._7{margin-left:-2.524800px;}
._0{margin-left:-1.110000px;}
._2{width:1.099356px;}
._8{width:2.705400px;}
._f{width:3.890844px;}
._d{width:5.530800px;}
._15{width:6.583915px;}
._6{width:7.640401px;}
._5{width:8.745000px;}
._9{width:10.502880px;}
._3{width:12.199800px;}
._4{width:14.446200px;}
._e{width:16.407360px;}
._13{width:17.800920px;}
._a{width:19.539000px;}
._14{width:20.569079px;}
._10{width:21.636960px;}
._11{width:22.790637px;}
._1{width:24.210360px;}
._c{width:25.296240px;}
._b{width:26.420400px;}
._19{width:27.474840px;}
._1a{width:28.501560px;}
._17{width:66.132000px;}
._1b{width:96.582600px;}
._1c{width:97.663080px;}
._1d{width:122.946960px;}
._16{width:157.625280px;}
._18{width:333.786240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y93{bottom:7.830000px;}
.y91{bottom:7.920000px;}
.y95{bottom:25.380000px;}
.y90{bottom:25.470000px;}
.yd3{bottom:43.020000px;}
.y8f{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yca{bottom:111.720000px;}
.ya0{bottom:112.080000px;}
.yf2{bottom:115.410000px;}
.y5a{bottom:117.840000px;}
.y1ee{bottom:118.200000px;}
.y12a{bottom:120.630000px;}
.y170{bottom:123.060000px;}
.y1bf{bottom:126.390000px;}
.y19e{bottom:127.110000px;}
.yc9{bottom:129.270000px;}
.y9f{bottom:129.630000px;}
.y150{bottom:130.800000px;}
.yf1{bottom:132.960000px;}
.y6e{bottom:134.670000px;}
.y59{bottom:135.390000px;}
.y1ed{bottom:135.840000px;}
.y129{bottom:138.180000px;}
.y16f{bottom:140.700000px;}
.y27{bottom:141.330000px;}
.y217{bottom:143.670000px;}
.y19d{bottom:144.660000px;}
.yc8{bottom:146.910000px;}
.y9e{bottom:147.180000px;}
.y14f{bottom:148.440000px;}
.y6d{bottom:152.310000px;}
.y58{bottom:153.030000px;}
.y1ec{bottom:153.390000px;}
.y128{bottom:155.730000px;}
.y16e{bottom:158.250000px;}
.y26{bottom:158.880000px;}
.y216{bottom:161.310000px;}
.y1be{bottom:162.030000px;}
.y19c{bottom:162.300000px;}
.yc7{bottom:164.460000px;}
.y9d{bottom:164.820000px;}
.y14e{bottom:165.990000px;}
.yf0{bottom:168.600000px;}
.y6c{bottom:169.860000px;}
.y57{bottom:170.580000px;}
.y1eb{bottom:170.940000px;}
.y16d{bottom:175.890000px;}
.y25{bottom:176.430000px;}
.y215{bottom:178.860000px;}
.y1bd{bottom:179.580000px;}
.y19b{bottom:179.850000px;}
.y9c{bottom:182.370000px;}
.y14d{bottom:183.540000px;}
.yef{bottom:186.150000px;}
.y6b{bottom:187.410000px;}
.y56{bottom:188.130000px;}
.y1ea{bottom:188.580000px;}
.y127{bottom:191.370000px;}
.y16c{bottom:193.440000px;}
.y1bc{bottom:197.130000px;}
.y9b{bottom:200.010000px;}
.yc6{bottom:200.100000px;}
.y14c{bottom:201.180000px;}
.yee{bottom:203.700000px;}
.y6a{bottom:205.050000px;}
.y214{bottom:205.500000px;}
.y55{bottom:205.770000px;}
.y126{bottom:208.920000px;}
.y16b{bottom:210.990000px;}
.y24{bottom:212.070000px;}
.y1bb{bottom:214.770000px;}
.y1e9{bottom:215.130000px;}
.y19a{bottom:215.400000px;}
.y9a{bottom:217.560000px;}
.yc5{bottom:217.650000px;}
.y14b{bottom:218.730000px;}
.yed{bottom:221.340000px;}
.y69{bottom:222.600000px;}
.y213{bottom:223.050000px;}
.y125{bottom:226.560000px;}
.y16a{bottom:228.630000px;}
.y23{bottom:229.620000px;}
.y54{bottom:232.320000px;}
.y199{bottom:233.040000px;}
.y99{bottom:235.110000px;}
.yc4{bottom:235.200000px;}
.y14a{bottom:236.370000px;}
.yec{bottom:238.890000px;}
.y68{bottom:240.240000px;}
.y124{bottom:244.110000px;}
.y169{bottom:246.180000px;}
.y22{bottom:247.260000px;}
.y212{bottom:249.600000px;}
.y1ba{bottom:249.960000px;}
.y198{bottom:250.590000px;}
.y1e8{bottom:250.680000px;}
.y98{bottom:252.750000px;}
.y149{bottom:253.920000px;}
.yeb{bottom:256.440000px;}
.y67{bottom:257.790000px;}
.y123{bottom:261.660000px;}
.yc3{bottom:261.840000px;}
.y168{bottom:263.820000px;}
.y21{bottom:264.810000px;}
.y211{bottom:267.240000px;}
.y1b9{bottom:267.510000px;}
.y53{bottom:267.960000px;}
.y197{bottom:268.230000px;}
.y1e7{bottom:268.320000px;}
.y148{bottom:271.470000px;}
.y66{bottom:275.340000px;}
.y122{bottom:279.300000px;}
.y167{bottom:281.370000px;}
.y20{bottom:282.360000px;}
.y210{bottom:284.790000px;}
.y1b8{bottom:285.060000px;}
.y52{bottom:285.510000px;}
.y97{bottom:285.690000px;}
.y196{bottom:285.780000px;}
.y1e6{bottom:285.870000px;}
.yea{bottom:292.080000px;}
.y65{bottom:292.980000px;}
.y10f{bottom:296.850000px;}
.yc2{bottom:297.390000px;}
.y1f{bottom:300.000000px;}
.y1b7{bottom:302.700000px;}
.y51{bottom:303.060000px;}
.y1e5{bottom:303.510000px;}
.y147{bottom:307.110000px;}
.ye9{bottom:309.630000px;}
.y64{bottom:310.530000px;}
.y20f{bottom:311.430000px;}
.y96{bottom:313.050000px;}
.y121{bottom:314.850000px;}
.yc1{bottom:314.940000px;}
.y166{bottom:316.920000px;}
.y1b6{bottom:320.250000px;}
.y50{bottom:320.700000px;}
.y1e4{bottom:321.060000px;}
.y195{bottom:321.330000px;}
.y146{bottom:324.660000px;}
.ye8{bottom:327.270000px;}
.y63{bottom:328.170000px;}
.y20e{bottom:328.980000px;}
.y120{bottom:332.490000px;}
.yc0{bottom:332.580000px;}
.y165{bottom:334.560000px;}
.y10e{bottom:334.650000px;}
.y1e{bottom:335.550000px;}
.y1b5{bottom:337.800000px;}
.y4f{bottom:338.250000px;}
.y1e3{bottom:338.610000px;}
.y194{bottom:338.880000px;}
.y94{bottom:340.410000px;}
.y145{bottom:342.300000px;}
.ye7{bottom:344.820000px;}
.y62{bottom:345.720000px;}
.y11f{bottom:350.040000px;}
.ybf{bottom:350.130000px;}
.y164{bottom:352.110000px;}
.y1d{bottom:353.190000px;}
.y1b4{bottom:355.440000px;}
.y20d{bottom:355.530000px;}
.y4e{bottom:355.800000px;}
.y1e2{bottom:356.250000px;}
.y193{bottom:357.330000px;}
.y144{bottom:359.850000px;}
.ye6{bottom:362.370000px;}
.y11e{bottom:367.590000px;}
.y163{bottom:369.750000px;}
.y10d{bottom:370.110000px;}
.y1c{bottom:370.740000px;}
.y61{bottom:372.270000px;}
.y1b3{bottom:372.990000px;}
.y20c{bottom:373.170000px;}
.y4d{bottom:373.440000px;}
.y1e1{bottom:373.800000px;}
.y192{bottom:374.880000px;}
.y11d{bottom:385.230000px;}
.y92{bottom:385.320000px;}
.ybe{bottom:385.770000px;}
.y143{bottom:386.400000px;}
.y162{bottom:387.300000px;}
.y10c{bottom:387.660000px;}
.y1b{bottom:388.290000px;}
.y4c{bottom:390.990000px;}
.y1e0{bottom:391.440000px;}
.y191{bottom:393.330000px;}
.ye5{bottom:398.010000px;}
.y1b2{bottom:399.630000px;}
.y20b{bottom:399.720000px;}
.y11c{bottom:402.780000px;}
.ybd{bottom:403.320000px;}
.y10b{bottom:405.300000px;}
.y60{bottom:408.180000px;}
.y4b{bottom:408.630000px;}
.y1df{bottom:408.990000px;}
.y190{bottom:410.880000px;}
.y8e{bottom:412.590000px;}
.y1a{bottom:415.200000px;}
.ye4{bottom:415.560000px;}
.y20a{bottom:417.360000px;}
.y11b{bottom:420.420000px;}
.ybc{bottom:420.870000px;}
.y142{bottom:422.040000px;}
.y10a{bottom:422.850000px;}
.y4a{bottom:426.180000px;}
.y1de{bottom:426.540000px;}
.y18f{bottom:429.330000px;}
.ye3{bottom:433.200000px;}
.y1b1{bottom:435.180000px;}
.y11a{bottom:437.970000px;}
.ybb{bottom:438.510000px;}
.y141{bottom:439.590000px;}
.y109{bottom:440.400000px;}
.y49{bottom:443.730000px;}
.y209{bottom:443.910000px;}
.y1dd{bottom:444.180000px;}
.y18e{bottom:446.880000px;}
.ye2{bottom:450.750000px;}
.y1b0{bottom:452.730000px;}
.yba{bottom:456.060000px;}
.y5f{bottom:456.510000px;}
.y140{bottom:457.230000px;}
.y108{bottom:458.040000px;}
.y161{bottom:458.850000px;}
.y208{bottom:461.460000px;}
.y1dc{bottom:461.730000px;}
.y19{bottom:463.530000px;}
.ye1{bottom:468.300000px;}
.y48{bottom:470.400000px;}
.y119{bottom:473.550000px;}
.yb9{bottom:473.730000px;}
.y13f{bottom:474.810000px;}
.y160{bottom:476.430000px;}
.y1db{bottom:479.400000px;}
.y1af{bottom:479.670000px;}
.y18{bottom:481.470000px;}
.y18d{bottom:483.360000px;}
.ye0{bottom:485.970000px;}
.y207{bottom:488.130000px;}
.y5e{bottom:488.760000px;}
.y118{bottom:491.190000px;}
.yb8{bottom:491.280000px;}
.y13e{bottom:492.360000px;}
.y107{bottom:493.620000px;}
.y15f{bottom:494.880000px;}
.y8d{bottom:496.500000px;}
.y1da{bottom:496.950000px;}
.y206{bottom:505.680000px;}
.y47{bottom:506.310000px;}
.y117{bottom:508.740000px;}
.y13d{bottom:510.000000px;}
.y106{bottom:511.170000px;}
.y15e{bottom:512.430000px;}
.y1d9{bottom:514.500000px;}
.y17{bottom:518.460000px;}
.y18c{bottom:519.000000px;}
.ydf{bottom:521.520000px;}
.y8c{bottom:523.140000px;}
.y205{bottom:523.230000px;}
.y116{bottom:526.290000px;}
.yb7{bottom:526.830000px;}
.y13c{bottom:527.550000px;}
.y1ae{bottom:528.000000px;}
.y105{bottom:529.620000px;}
.y15d{bottom:530.880000px;}
.y16{bottom:536.010000px;}
.y18b{bottom:536.550000px;}
.yde{bottom:539.160000px;}
.y1d8{bottom:541.140000px;}
.y115{bottom:543.930000px;}
.yb6{bottom:544.470000px;}
.y1ad{bottom:545.550000px;}
.y104{bottom:547.980000px;}
.y15c{bottom:548.430000px;}
.y204{bottom:549.870000px;}
.y15{bottom:553.650000px;}
.y18a{bottom:554.190000px;}
.y46{bottom:554.550000px;}
.ydd{bottom:556.710000px;}
.y8b{bottom:558.690000px;}
.y114{bottom:561.480000px;}
.yb5{bottom:562.020000px;}
.y13b{bottom:563.100000px;}
.y1ac{bottom:563.190000px;}
.y203{bottom:567.420000px;}
.y14{bottom:571.200000px;}
.y189{bottom:571.740000px;}
.y45{bottom:572.190000px;}
.ydc{bottom:574.260000px;}
.y8a{bottom:576.330000px;}
.y1d7{bottom:576.690000px;}
.y1ab{bottom:580.740000px;}
.y13a{bottom:581.550000px;}
.y103{bottom:584.430000px;}
.y15b{bottom:584.880000px;}
.y202{bottom:585.060000px;}
.y113{bottom:588.120000px;}
.yb4{bottom:588.660000px;}
.y13{bottom:588.840000px;}
.y44{bottom:589.740000px;}
.ydb{bottom:591.900000px;}
.y89{bottom:593.880000px;}
.y1d6{bottom:594.330000px;}
.y188{bottom:598.290000px;}
.y139{bottom:599.910000px;}
.y102{bottom:602.070000px;}
.y12{bottom:606.390000px;}
.y43{bottom:607.290000px;}
.yda{bottom:609.450000px;}
.y88{bottom:611.430000px;}
.y1d5{bottom:611.880000px;}
.y201{bottom:611.970000px;}
.y1aa{bottom:615.930000px;}
.y138{bottom:618.360000px;}
.y15a{bottom:620.520000px;}
.y11{bottom:623.940000px;}
.y112{bottom:624.030000px;}
.yb3{bottom:624.210000px;}
.y87{bottom:629.070000px;}
.y1d4{bottom:629.430000px;}
.y1a9{bottom:633.480000px;}
.y187{bottom:633.930000px;}
.yd9{bottom:636.090000px;}
.y101{bottom:637.620000px;}
.y159{bottom:638.070000px;}
.y10{bottom:641.580000px;}
.yb2{bottom:641.760000px;}
.y42{bottom:642.930000px;}
.y86{bottom:646.620000px;}
.y1d3{bottom:647.070000px;}
.y1a8{bottom:651.120000px;}
.y186{bottom:651.480000px;}
.y137{bottom:654.810000px;}
.y100{bottom:655.260000px;}
.y158{bottom:655.620000px;}
.yf{bottom:659.130000px;}
.yb1{bottom:659.400000px;}
.y200{bottom:660.210000px;}
.y41{bottom:660.480000px;}
.y85{bottom:664.260000px;}
.y1d2{bottom:664.620000px;}
.y1a7{bottom:668.670000px;}
.y185{bottom:669.120000px;}
.yd8{bottom:672.000000px;}
.y111{bottom:672.270000px;}
.y136{bottom:672.360000px;}
.yff{bottom:672.810000px;}
.y157{bottom:673.260000px;}
.ye{bottom:676.770000px;}
.yb0{bottom:676.950000px;}
.y1ff{bottom:677.760000px;}
.y40{bottom:678.120000px;}
.y21f{bottom:681.000000px;}
.y84{bottom:681.810000px;}
.y1d1{bottom:682.260000px;}
.y184{bottom:686.670000px;}
.y135{bottom:690.000000px;}
.yfe{bottom:690.360000px;}
.yd{bottom:694.320000px;}
.yaf{bottom:694.590000px;}
.y1fe{bottom:695.400000px;}
.y3f{bottom:695.670000px;}
.y21e{bottom:698.550000px;}
.y83{bottom:699.360000px;}
.y156{bottom:699.810000px;}
.y183{bottom:704.220000px;}
.y110{bottom:704.490000px;}
.y134{bottom:707.550000px;}
.yfd{bottom:708.000000px;}
.yc{bottom:711.870000px;}
.y1fd{bottom:712.950000px;}
.y82{bottom:717.000000px;}
.y1d0{bottom:717.360000px;}
.yd7{bottom:717.630000px;}
.y182{bottom:721.860000px;}
.y133{bottom:725.190000px;}
.yfc{bottom:725.550000px;}
.yb{bottom:729.510000px;}
.yae{bottom:730.140000px;}
.y1fc{bottom:730.590000px;}
.y3e{bottom:731.220000px;}
.y81{bottom:734.550000px;}
.y1cf{bottom:735.000000px;}
.y155{bottom:735.720000px;}
.y181{bottom:739.410000px;}
.y132{bottom:742.740000px;}
.yfb{bottom:743.190000px;}
.yd6{bottom:744.990000px;}
.yad{bottom:747.690000px;}
.y1fb{bottom:748.140000px;}
.y3d{bottom:748.860000px;}
.y80{bottom:752.190000px;}
.y1ce{bottom:752.550000px;}
.ya{bottom:756.420000px;}
.y1a6{bottom:757.050000px;}
.yfa{bottom:760.740000px;}
.yac{bottom:765.330000px;}
.y1fa{bottom:765.690000px;}
.y3c{bottom:766.410000px;}
.y21d{bottom:769.290000px;}
.y7f{bottom:769.740000px;}
.y1cd{bottom:770.190000px;}
.yd5{bottom:772.260000px;}
.y180{bottom:775.050000px;}
.y131{bottom:778.290000px;}
.yab{bottom:782.880000px;}
.y1f9{bottom:783.330000px;}
.y3b{bottom:784.050000px;}
.y21c{bottom:786.930000px;}
.y7e{bottom:787.290000px;}
.y1cc{bottom:787.740000px;}
.y17f{bottom:792.600000px;}
.y130{bottom:795.930000px;}
.yf9{bottom:796.290000px;}
.yaa{bottom:800.520000px;}
.y1f8{bottom:800.880000px;}
.y3a{bottom:801.600000px;}
.y9{bottom:803.130000px;}
.y21b{bottom:804.480000px;}
.y1cb{bottom:805.290000px;}
.y17e{bottom:810.150000px;}
.y12f{bottom:813.480000px;}
.y7d{bottom:813.930000px;}
.yd4{bottom:817.170000px;}
.ya9{bottom:818.070000px;}
.y1f7{bottom:818.520000px;}
.y39{bottom:819.150000px;}
.y1ca{bottom:822.930000px;}
.y17d{bottom:827.790000px;}
.y1a5{bottom:828.600000px;}
.y12e{bottom:831.030000px;}
.yf8{bottom:831.480000px;}
.y1f6{bottom:836.070000px;}
.y38{bottom:836.790000px;}
.y8{bottom:838.950000px;}
.yd2{bottom:844.530000px;}
.y17c{bottom:845.340000px;}
.y1a4{bottom:846.150000px;}
.y12d{bottom:848.670000px;}
.yf7{bottom:849.030000px;}
.y7c{bottom:849.480000px;}
.ya8{bottom:853.620000px;}
.y1f5{bottom:862.980000px;}
.y1a3{bottom:864.600000px;}
.yf6{bottom:866.670000px;}
.y7b{bottom:867.030000px;}
.ya7{bottom:871.260000px;}
.y154{bottom:872.250000px;}
.y37{bottom:872.340000px;}
.y7{bottom:874.950000px;}
.y21a{bottom:875.220000px;}
.y17b{bottom:880.890000px;}
.y1a2{bottom:882.150000px;}
.yf5{bottom:884.220000px;}
.y7a{bottom:884.670000px;}
.y1c9{bottom:885.030000px;}
.ya6{bottom:888.810000px;}
.y36{bottom:889.890000px;}
.y153{bottom:890.700000px;}
.y219{bottom:892.860000px;}
.y17a{bottom:898.440000px;}
.y1a1{bottom:900.600000px;}
.yf4{bottom:901.860000px;}
.y79{bottom:902.220000px;}
.y1c8{bottom:902.670000px;}
.ya5{bottom:906.450000px;}
.y35{bottom:908.340000px;}
.y152{bottom:909.150000px;}
.y6{bottom:910.950000px;}
.y1f4{bottom:911.220000px;}
.y179{bottom:916.890000px;}
.y1a0{bottom:918.150000px;}
.yf3{bottom:919.410000px;}
.y78{bottom:919.860000px;}
.y1c7{bottom:920.220000px;}
.ya4{bottom:924.000000px;}
.y34{bottom:925.890000px;}
.y151{bottom:927.510000px;}
.yd1{bottom:928.410000px;}
.y1f3{bottom:928.860000px;}
.y178{bottom:934.440000px;}
.y12c{bottom:936.960000px;}
.y77{bottom:937.410000px;}
.y1c6{bottom:937.860000px;}
.y33{bottom:944.340000px;}
.y218{bottom:945.960000px;}
.y1f2{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.ya3{bottom:950.550000px;}
.y177{bottom:952.890000px;}
.y19f{bottom:954.600000px;}
.y76{bottom:954.960000px;}
.y1c5{bottom:955.410000px;}
.y32{bottom:961.890000px;}
.y12b{bottom:963.600000px;}
.yd0{bottom:963.960000px;}
.y176{bottom:970.440000px;}
.y75{bottom:972.600000px;}
.y1c4{bottom:972.960000px;}
.y31{bottom:979.440000px;}
.ycf{bottom:981.600000px;}
.y1f1{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.ya2{bottom:986.460000px;}
.y175{bottom:988.890000px;}
.y74{bottom:990.150000px;}
.y1c3{bottom:990.600000px;}
.y30{bottom:997.890000px;}
.yce{bottom:999.150000px;}
.y1f0{bottom:999.600000px;}
.y73{bottom:1007.790000px;}
.y1c2{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y2f{bottom:1015.560000px;}
.ycd{bottom:1016.820000px;}
.y1ef{bottom:1017.180000px;}
.y72{bottom:1025.370000px;}
.y1c1{bottom:1025.820000px;}
.y2e{bottom:1033.110000px;}
.ycc{bottom:1034.370000px;}
.ya1{bottom:1034.820000px;}
.y71{bottom:1042.920000px;}
.y1c0{bottom:1043.370000px;}
.ycb{bottom:1051.920000px;}
.y5d{bottom:1052.370000px;}
.y70{bottom:1060.560000px;}
.y174{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.y5c{bottom:1069.920000px;}
.y173{bottom:1078.560000px;}
.y6f{bottom:1087.110000px;}
.y5b{bottom:1087.560000px;}
.y172{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y171{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.h11{height:44.190000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.740000px;}
.h9{height:61.793886px;}
.hc{height:61.860000px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h8{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:83.880000px;}
.w5{width:84.060000px;}
.w8{width:90.000000px;}
.wc{width:94.710000px;}
.w4{width:97.740000px;}
.wb{width:105.390000px;}
.wd{width:115.200000px;}
.we{width:121.410000px;}
.w7{width:126.090000px;}
.w6{width:135.930000px;}
.w3{width:218.190000px;}
.w9{width:237.810000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.960000px;}
.xe{left:62.370000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x15{left:111.239987px;}
.x5{left:122.039987px;}
.x14{left:166.529987px;}
.x2{left:202.799987px;}
.x7{left:229.439987px;}
.x9{left:287.670000px;}
.xf{left:300.900000px;}
.xa{left:386.130000px;}
.xb{left:471.000000px;}
.x10{left:491.700000px;}
.x11{left:587.130000px;}
.xc{left:607.650000px;}
.x12{left:703.050000px;}
.xd{left:734.460000px;}
.x13{left:771.809987px;}
.x3{left:792.059987px;}
.x6{left:822.389987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.301867pt;}
.ls1f{letter-spacing:-0.216533pt;}
.ls18{letter-spacing:-0.206933pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls1b{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.lsb{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.043520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.037120pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls17{letter-spacing:0.060800pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.103467pt;}
.ls1d{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls20{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws13{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.884267pt;}
.wsc{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.817600pt;}
.ws9{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.793920pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.713280pt;}
.ws12{word-spacing:-11.645333pt;}
.wsa{word-spacing:-11.620267pt;}
.wse{word-spacing:-11.613867pt;}
.ws2{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.540267pt;}
.wsb{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._12{margin-left:-3.153174pt;}
._7{margin-left:-2.244266pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.977205pt;}
._8{width:2.404800pt;}
._f{width:3.458528pt;}
._d{width:4.916266pt;}
._15{width:5.852369pt;}
._6{width:6.791468pt;}
._5{width:7.773333pt;}
._9{width:9.335894pt;}
._3{width:10.844266pt;}
._4{width:12.841067pt;}
._e{width:14.584320pt;}
._13{width:15.823040pt;}
._a{width:17.368000pt;}
._14{width:18.283626pt;}
._10{width:19.232854pt;}
._11{width:20.258344pt;}
._1{width:21.520320pt;}
._c{width:22.485547pt;}
._b{width:23.484800pt;}
._19{width:24.422080pt;}
._1a{width:25.334720pt;}
._17{width:58.784000pt;}
._1b{width:85.851200pt;}
._1c{width:86.811627pt;}
._1d{width:109.286187pt;}
._16{width:140.111360pt;}
._18{width:296.698880pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:6.960000pt;}
.y91{bottom:7.040000pt;}
.y95{bottom:22.560000pt;}
.y90{bottom:22.640000pt;}
.yd3{bottom:38.240000pt;}
.y8f{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yca{bottom:99.306667pt;}
.ya0{bottom:99.626667pt;}
.yf2{bottom:102.586667pt;}
.y5a{bottom:104.746667pt;}
.y1ee{bottom:105.066667pt;}
.y12a{bottom:107.226667pt;}
.y170{bottom:109.386667pt;}
.y1bf{bottom:112.346667pt;}
.y19e{bottom:112.986667pt;}
.yc9{bottom:114.906667pt;}
.y9f{bottom:115.226667pt;}
.y150{bottom:116.266667pt;}
.yf1{bottom:118.186667pt;}
.y6e{bottom:119.706667pt;}
.y59{bottom:120.346667pt;}
.y1ed{bottom:120.746667pt;}
.y129{bottom:122.826667pt;}
.y16f{bottom:125.066667pt;}
.y27{bottom:125.626667pt;}
.y217{bottom:127.706667pt;}
.y19d{bottom:128.586667pt;}
.yc8{bottom:130.586667pt;}
.y9e{bottom:130.826667pt;}
.y14f{bottom:131.946667pt;}
.y6d{bottom:135.386667pt;}
.y58{bottom:136.026667pt;}
.y1ec{bottom:136.346667pt;}
.y128{bottom:138.426667pt;}
.y16e{bottom:140.666667pt;}
.y26{bottom:141.226667pt;}
.y216{bottom:143.386667pt;}
.y1be{bottom:144.026667pt;}
.y19c{bottom:144.266667pt;}
.yc7{bottom:146.186667pt;}
.y9d{bottom:146.506667pt;}
.y14e{bottom:147.546667pt;}
.yf0{bottom:149.866667pt;}
.y6c{bottom:150.986667pt;}
.y57{bottom:151.626667pt;}
.y1eb{bottom:151.946667pt;}
.y16d{bottom:156.346667pt;}
.y25{bottom:156.826667pt;}
.y215{bottom:158.986667pt;}
.y1bd{bottom:159.626667pt;}
.y19b{bottom:159.866667pt;}
.y9c{bottom:162.106667pt;}
.y14d{bottom:163.146667pt;}
.yef{bottom:165.466667pt;}
.y6b{bottom:166.586667pt;}
.y56{bottom:167.226667pt;}
.y1ea{bottom:167.626667pt;}
.y127{bottom:170.106667pt;}
.y16c{bottom:171.946667pt;}
.y1bc{bottom:175.226667pt;}
.y9b{bottom:177.786667pt;}
.yc6{bottom:177.866667pt;}
.y14c{bottom:178.826667pt;}
.yee{bottom:181.066667pt;}
.y6a{bottom:182.266667pt;}
.y214{bottom:182.666667pt;}
.y55{bottom:182.906667pt;}
.y126{bottom:185.706667pt;}
.y16b{bottom:187.546667pt;}
.y24{bottom:188.506667pt;}
.y1bb{bottom:190.906667pt;}
.y1e9{bottom:191.226667pt;}
.y19a{bottom:191.466667pt;}
.y9a{bottom:193.386667pt;}
.yc5{bottom:193.466667pt;}
.y14b{bottom:194.426667pt;}
.yed{bottom:196.746667pt;}
.y69{bottom:197.866667pt;}
.y213{bottom:198.266667pt;}
.y125{bottom:201.386667pt;}
.y16a{bottom:203.226667pt;}
.y23{bottom:204.106667pt;}
.y54{bottom:206.506667pt;}
.y199{bottom:207.146667pt;}
.y99{bottom:208.986667pt;}
.yc4{bottom:209.066667pt;}
.y14a{bottom:210.106667pt;}
.yec{bottom:212.346667pt;}
.y68{bottom:213.546667pt;}
.y124{bottom:216.986667pt;}
.y169{bottom:218.826667pt;}
.y22{bottom:219.786667pt;}
.y212{bottom:221.866667pt;}
.y1ba{bottom:222.186667pt;}
.y198{bottom:222.746667pt;}
.y1e8{bottom:222.826667pt;}
.y98{bottom:224.666667pt;}
.y149{bottom:225.706667pt;}
.yeb{bottom:227.946667pt;}
.y67{bottom:229.146667pt;}
.y123{bottom:232.586667pt;}
.yc3{bottom:232.746667pt;}
.y168{bottom:234.506667pt;}
.y21{bottom:235.386667pt;}
.y211{bottom:237.546667pt;}
.y1b9{bottom:237.786667pt;}
.y53{bottom:238.186667pt;}
.y197{bottom:238.426667pt;}
.y1e7{bottom:238.506667pt;}
.y148{bottom:241.306667pt;}
.y66{bottom:244.746667pt;}
.y122{bottom:248.266667pt;}
.y167{bottom:250.106667pt;}
.y20{bottom:250.986667pt;}
.y210{bottom:253.146667pt;}
.y1b8{bottom:253.386667pt;}
.y52{bottom:253.786667pt;}
.y97{bottom:253.946667pt;}
.y196{bottom:254.026667pt;}
.y1e6{bottom:254.106667pt;}
.yea{bottom:259.626667pt;}
.y65{bottom:260.426667pt;}
.y10f{bottom:263.866667pt;}
.yc2{bottom:264.346667pt;}
.y1f{bottom:266.666667pt;}
.y1b7{bottom:269.066667pt;}
.y51{bottom:269.386667pt;}
.y1e5{bottom:269.786667pt;}
.y147{bottom:272.986667pt;}
.ye9{bottom:275.226667pt;}
.y64{bottom:276.026667pt;}
.y20f{bottom:276.826667pt;}
.y96{bottom:278.266667pt;}
.y121{bottom:279.866667pt;}
.yc1{bottom:279.946667pt;}
.y166{bottom:281.706667pt;}
.y1b6{bottom:284.666667pt;}
.y50{bottom:285.066667pt;}
.y1e4{bottom:285.386667pt;}
.y195{bottom:285.626667pt;}
.y146{bottom:288.586667pt;}
.ye8{bottom:290.906667pt;}
.y63{bottom:291.706667pt;}
.y20e{bottom:292.426667pt;}
.y120{bottom:295.546667pt;}
.yc0{bottom:295.626667pt;}
.y165{bottom:297.386667pt;}
.y10e{bottom:297.466667pt;}
.y1e{bottom:298.266667pt;}
.y1b5{bottom:300.266667pt;}
.y4f{bottom:300.666667pt;}
.y1e3{bottom:300.986667pt;}
.y194{bottom:301.226667pt;}
.y94{bottom:302.586667pt;}
.y145{bottom:304.266667pt;}
.ye7{bottom:306.506667pt;}
.y62{bottom:307.306667pt;}
.y11f{bottom:311.146667pt;}
.ybf{bottom:311.226667pt;}
.y164{bottom:312.986667pt;}
.y1d{bottom:313.946667pt;}
.y1b4{bottom:315.946667pt;}
.y20d{bottom:316.026667pt;}
.y4e{bottom:316.266667pt;}
.y1e2{bottom:316.666667pt;}
.y193{bottom:317.626667pt;}
.y144{bottom:319.866667pt;}
.ye6{bottom:322.106667pt;}
.y11e{bottom:326.746667pt;}
.y163{bottom:328.666667pt;}
.y10d{bottom:328.986667pt;}
.y1c{bottom:329.546667pt;}
.y61{bottom:330.906667pt;}
.y1b3{bottom:331.546667pt;}
.y20c{bottom:331.706667pt;}
.y4d{bottom:331.946667pt;}
.y1e1{bottom:332.266667pt;}
.y192{bottom:333.226667pt;}
.y11d{bottom:342.426667pt;}
.y92{bottom:342.506667pt;}
.ybe{bottom:342.906667pt;}
.y143{bottom:343.466667pt;}
.y162{bottom:344.266667pt;}
.y10c{bottom:344.586667pt;}
.y1b{bottom:345.146667pt;}
.y4c{bottom:347.546667pt;}
.y1e0{bottom:347.946667pt;}
.y191{bottom:349.626667pt;}
.ye5{bottom:353.786667pt;}
.y1b2{bottom:355.226667pt;}
.y20b{bottom:355.306667pt;}
.y11c{bottom:358.026667pt;}
.ybd{bottom:358.506667pt;}
.y10b{bottom:360.266667pt;}
.y60{bottom:362.826667pt;}
.y4b{bottom:363.226667pt;}
.y1df{bottom:363.546667pt;}
.y190{bottom:365.226667pt;}
.y8e{bottom:366.746667pt;}
.y1a{bottom:369.066667pt;}
.ye4{bottom:369.386667pt;}
.y20a{bottom:370.986667pt;}
.y11b{bottom:373.706667pt;}
.ybc{bottom:374.106667pt;}
.y142{bottom:375.146667pt;}
.y10a{bottom:375.866667pt;}
.y4a{bottom:378.826667pt;}
.y1de{bottom:379.146667pt;}
.y18f{bottom:381.626667pt;}
.ye3{bottom:385.066667pt;}
.y1b1{bottom:386.826667pt;}
.y11a{bottom:389.306667pt;}
.ybb{bottom:389.786667pt;}
.y141{bottom:390.746667pt;}
.y109{bottom:391.466667pt;}
.y49{bottom:394.426667pt;}
.y209{bottom:394.586667pt;}
.y1dd{bottom:394.826667pt;}
.y18e{bottom:397.226667pt;}
.ye2{bottom:400.666667pt;}
.y1b0{bottom:402.426667pt;}
.yba{bottom:405.386667pt;}
.y5f{bottom:405.786667pt;}
.y140{bottom:406.426667pt;}
.y108{bottom:407.146667pt;}
.y161{bottom:407.866667pt;}
.y208{bottom:410.186667pt;}
.y1dc{bottom:410.426667pt;}
.y19{bottom:412.026667pt;}
.ye1{bottom:416.266667pt;}
.y48{bottom:418.133333pt;}
.y119{bottom:420.933333pt;}
.yb9{bottom:421.093333pt;}
.y13f{bottom:422.053333pt;}
.y160{bottom:423.493333pt;}
.y1db{bottom:426.133333pt;}
.y1af{bottom:426.373333pt;}
.y18{bottom:427.973333pt;}
.y18d{bottom:429.653333pt;}
.ye0{bottom:431.973333pt;}
.y207{bottom:433.893333pt;}
.y5e{bottom:434.453333pt;}
.y118{bottom:436.613333pt;}
.yb8{bottom:436.693333pt;}
.y13e{bottom:437.653333pt;}
.y107{bottom:438.773333pt;}
.y15f{bottom:439.893333pt;}
.y8d{bottom:441.333333pt;}
.y1da{bottom:441.733333pt;}
.y206{bottom:449.493333pt;}
.y47{bottom:450.053333pt;}
.y117{bottom:452.213333pt;}
.y13d{bottom:453.333333pt;}
.y106{bottom:454.373333pt;}
.y15e{bottom:455.493333pt;}
.y1d9{bottom:457.333333pt;}
.y17{bottom:460.853333pt;}
.y18c{bottom:461.333333pt;}
.ydf{bottom:463.573333pt;}
.y8c{bottom:465.013333pt;}
.y205{bottom:465.093333pt;}
.y116{bottom:467.813333pt;}
.yb7{bottom:468.293333pt;}
.y13c{bottom:468.933333pt;}
.y1ae{bottom:469.333333pt;}
.y105{bottom:470.773333pt;}
.y15d{bottom:471.893333pt;}
.y16{bottom:476.453333pt;}
.y18b{bottom:476.933333pt;}
.yde{bottom:479.253333pt;}
.y1d8{bottom:481.013333pt;}
.y115{bottom:483.493333pt;}
.yb6{bottom:483.973333pt;}
.y1ad{bottom:484.933333pt;}
.y104{bottom:487.093333pt;}
.y15c{bottom:487.493333pt;}
.y204{bottom:488.773333pt;}
.y15{bottom:492.133333pt;}
.y18a{bottom:492.613333pt;}
.y46{bottom:492.933333pt;}
.ydd{bottom:494.853333pt;}
.y8b{bottom:496.613333pt;}
.y114{bottom:499.093333pt;}
.yb5{bottom:499.573333pt;}
.y13b{bottom:500.533333pt;}
.y1ac{bottom:500.613333pt;}
.y203{bottom:504.373333pt;}
.y14{bottom:507.733333pt;}
.y189{bottom:508.213333pt;}
.y45{bottom:508.613333pt;}
.ydc{bottom:510.453333pt;}
.y8a{bottom:512.293333pt;}
.y1d7{bottom:512.613333pt;}
.y1ab{bottom:516.213333pt;}
.y13a{bottom:516.933333pt;}
.y103{bottom:519.493333pt;}
.y15b{bottom:519.893333pt;}
.y202{bottom:520.053333pt;}
.y113{bottom:522.773333pt;}
.yb4{bottom:523.253333pt;}
.y13{bottom:523.413333pt;}
.y44{bottom:524.213333pt;}
.ydb{bottom:526.133333pt;}
.y89{bottom:527.893333pt;}
.y1d6{bottom:528.293333pt;}
.y188{bottom:531.813333pt;}
.y139{bottom:533.253333pt;}
.y102{bottom:535.173333pt;}
.y12{bottom:539.013333pt;}
.y43{bottom:539.813333pt;}
.yda{bottom:541.733333pt;}
.y88{bottom:543.493333pt;}
.y1d5{bottom:543.893333pt;}
.y201{bottom:543.973333pt;}
.y1aa{bottom:547.493333pt;}
.y138{bottom:549.653333pt;}
.y15a{bottom:551.573333pt;}
.y11{bottom:554.613333pt;}
.y112{bottom:554.693333pt;}
.yb3{bottom:554.853333pt;}
.y87{bottom:559.173333pt;}
.y1d4{bottom:559.493333pt;}
.y1a9{bottom:563.093333pt;}
.y187{bottom:563.493333pt;}
.yd9{bottom:565.413333pt;}
.y101{bottom:566.773333pt;}
.y159{bottom:567.173333pt;}
.y10{bottom:570.293333pt;}
.yb2{bottom:570.453333pt;}
.y42{bottom:571.493333pt;}
.y86{bottom:574.773333pt;}
.y1d3{bottom:575.173333pt;}
.y1a8{bottom:578.773333pt;}
.y186{bottom:579.093333pt;}
.y137{bottom:582.053333pt;}
.y100{bottom:582.453333pt;}
.y158{bottom:582.773333pt;}
.yf{bottom:585.893333pt;}
.yb1{bottom:586.133333pt;}
.y200{bottom:586.853333pt;}
.y41{bottom:587.093333pt;}
.y85{bottom:590.453333pt;}
.y1d2{bottom:590.773333pt;}
.y1a7{bottom:594.373333pt;}
.y185{bottom:594.773333pt;}
.yd8{bottom:597.333333pt;}
.y111{bottom:597.573333pt;}
.y136{bottom:597.653333pt;}
.yff{bottom:598.053333pt;}
.y157{bottom:598.453333pt;}
.ye{bottom:601.573333pt;}
.yb0{bottom:601.733333pt;}
.y1ff{bottom:602.453333pt;}
.y40{bottom:602.773333pt;}
.y21f{bottom:605.333333pt;}
.y84{bottom:606.053333pt;}
.y1d1{bottom:606.453333pt;}
.y184{bottom:610.373333pt;}
.y135{bottom:613.333333pt;}
.yfe{bottom:613.653333pt;}
.yd{bottom:617.173333pt;}
.yaf{bottom:617.413333pt;}
.y1fe{bottom:618.133333pt;}
.y3f{bottom:618.373333pt;}
.y21e{bottom:620.933333pt;}
.y83{bottom:621.653333pt;}
.y156{bottom:622.053333pt;}
.y183{bottom:625.973333pt;}
.y110{bottom:626.213333pt;}
.y134{bottom:628.933333pt;}
.yfd{bottom:629.333333pt;}
.yc{bottom:632.773333pt;}
.y1fd{bottom:633.733333pt;}
.y82{bottom:637.333333pt;}
.y1d0{bottom:637.653333pt;}
.yd7{bottom:637.893333pt;}
.y182{bottom:641.653333pt;}
.y133{bottom:644.613333pt;}
.yfc{bottom:644.933333pt;}
.yb{bottom:648.453333pt;}
.yae{bottom:649.013333pt;}
.y1fc{bottom:649.413333pt;}
.y3e{bottom:649.973333pt;}
.y81{bottom:652.933333pt;}
.y1cf{bottom:653.333333pt;}
.y155{bottom:653.973333pt;}
.y181{bottom:657.253333pt;}
.y132{bottom:660.213333pt;}
.yfb{bottom:660.613333pt;}
.yd6{bottom:662.213333pt;}
.yad{bottom:664.613333pt;}
.y1fb{bottom:665.013333pt;}
.y3d{bottom:665.653333pt;}
.y80{bottom:668.613333pt;}
.y1ce{bottom:668.933333pt;}
.ya{bottom:672.373333pt;}
.y1a6{bottom:672.933333pt;}
.yfa{bottom:676.213333pt;}
.yac{bottom:680.293333pt;}
.y1fa{bottom:680.613333pt;}
.y3c{bottom:681.253333pt;}
.y21d{bottom:683.813333pt;}
.y7f{bottom:684.213333pt;}
.y1cd{bottom:684.613333pt;}
.yd5{bottom:686.453333pt;}
.y180{bottom:688.933333pt;}
.y131{bottom:691.813333pt;}
.yab{bottom:695.893333pt;}
.y1f9{bottom:696.293333pt;}
.y3b{bottom:696.933333pt;}
.y21c{bottom:699.493333pt;}
.y7e{bottom:699.813333pt;}
.y1cc{bottom:700.213333pt;}
.y17f{bottom:704.533333pt;}
.y130{bottom:707.493333pt;}
.yf9{bottom:707.813333pt;}
.yaa{bottom:711.573333pt;}
.y1f8{bottom:711.893333pt;}
.y3a{bottom:712.533333pt;}
.y9{bottom:713.893333pt;}
.y21b{bottom:715.093333pt;}
.y1cb{bottom:715.813333pt;}
.y17e{bottom:720.133333pt;}
.y12f{bottom:723.093333pt;}
.y7d{bottom:723.493333pt;}
.yd4{bottom:726.373333pt;}
.ya9{bottom:727.173333pt;}
.y1f7{bottom:727.573333pt;}
.y39{bottom:728.133333pt;}
.y1ca{bottom:731.493333pt;}
.y17d{bottom:735.813333pt;}
.y1a5{bottom:736.533333pt;}
.y12e{bottom:738.693333pt;}
.yf8{bottom:739.093333pt;}
.y1f6{bottom:743.173333pt;}
.y38{bottom:743.813333pt;}
.y8{bottom:745.733333pt;}
.yd2{bottom:750.693333pt;}
.y17c{bottom:751.413333pt;}
.y1a4{bottom:752.133333pt;}
.y12d{bottom:754.373333pt;}
.yf7{bottom:754.693333pt;}
.y7c{bottom:755.093333pt;}
.ya8{bottom:758.773333pt;}
.y1f5{bottom:767.093333pt;}
.y1a3{bottom:768.533333pt;}
.yf6{bottom:770.373333pt;}
.y7b{bottom:770.693333pt;}
.ya7{bottom:774.453333pt;}
.y154{bottom:775.333333pt;}
.y37{bottom:775.413333pt;}
.y7{bottom:777.733333pt;}
.y21a{bottom:777.973333pt;}
.y17b{bottom:783.013333pt;}
.y1a2{bottom:784.133333pt;}
.yf5{bottom:785.973333pt;}
.y7a{bottom:786.373333pt;}
.y1c9{bottom:786.693333pt;}
.ya6{bottom:790.053333pt;}
.y36{bottom:791.013333pt;}
.y153{bottom:791.733333pt;}
.y219{bottom:793.653333pt;}
.y17a{bottom:798.613333pt;}
.y1a1{bottom:800.533333pt;}
.yf4{bottom:801.653333pt;}
.y79{bottom:801.973333pt;}
.y1c8{bottom:802.373333pt;}
.ya5{bottom:805.733333pt;}
.y35{bottom:807.413333pt;}
.y152{bottom:808.133333pt;}
.y6{bottom:809.733333pt;}
.y1f4{bottom:809.973333pt;}
.y179{bottom:815.013333pt;}
.y1a0{bottom:816.133333pt;}
.yf3{bottom:817.253333pt;}
.y78{bottom:817.653333pt;}
.y1c7{bottom:817.973333pt;}
.ya4{bottom:821.333333pt;}
.y34{bottom:823.013333pt;}
.y151{bottom:824.453333pt;}
.yd1{bottom:825.253333pt;}
.y1f3{bottom:825.653333pt;}
.y178{bottom:830.613333pt;}
.y12c{bottom:832.853333pt;}
.y77{bottom:833.253333pt;}
.y1c6{bottom:833.653333pt;}
.y33{bottom:839.413333pt;}
.y218{bottom:840.853333pt;}
.y1f2{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.ya3{bottom:844.933333pt;}
.y177{bottom:847.013333pt;}
.y19f{bottom:848.533333pt;}
.y76{bottom:848.853333pt;}
.y1c5{bottom:849.253333pt;}
.y32{bottom:855.013333pt;}
.y12b{bottom:856.533333pt;}
.yd0{bottom:856.853333pt;}
.y176{bottom:862.613333pt;}
.y75{bottom:864.533333pt;}
.y1c4{bottom:864.853333pt;}
.y31{bottom:870.613333pt;}
.ycf{bottom:872.533333pt;}
.y1f1{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.ya2{bottom:876.853333pt;}
.y175{bottom:879.013333pt;}
.y74{bottom:880.133333pt;}
.y1c3{bottom:880.533333pt;}
.y30{bottom:887.013333pt;}
.yce{bottom:888.133333pt;}
.y1f0{bottom:888.533333pt;}
.y73{bottom:895.813333pt;}
.y1c2{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y2f{bottom:902.720000pt;}
.ycd{bottom:903.840000pt;}
.y1ef{bottom:904.160000pt;}
.y72{bottom:911.440000pt;}
.y1c1{bottom:911.840000pt;}
.y2e{bottom:918.320000pt;}
.ycc{bottom:919.440000pt;}
.ya1{bottom:919.840000pt;}
.y71{bottom:927.040000pt;}
.y1c0{bottom:927.440000pt;}
.ycb{bottom:935.040000pt;}
.y5d{bottom:935.440000pt;}
.y70{bottom:942.720000pt;}
.y174{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.y5c{bottom:951.040000pt;}
.y173{bottom:958.720000pt;}
.y6f{bottom:966.320000pt;}
.y5b{bottom:966.720000pt;}
.y172{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y171{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.h11{height:39.280000pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.880000pt;}
.h9{height:54.927899pt;}
.hc{height:54.986667pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h8{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:74.560000pt;}
.w5{width:74.720000pt;}
.w8{width:80.000000pt;}
.wc{width:84.186667pt;}
.w4{width:86.880000pt;}
.wb{width:93.680000pt;}
.wd{width:102.400000pt;}
.we{width:107.920000pt;}
.w7{width:112.080000pt;}
.w6{width:120.826667pt;}
.w3{width:193.946667pt;}
.w9{width:211.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.520000pt;}
.xe{left:55.440000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x15{left:98.879988pt;}
.x5{left:108.479988pt;}
.x14{left:148.026655pt;}
.x2{left:180.266655pt;}
.x7{left:203.946655pt;}
.x9{left:255.706667pt;}
.xf{left:267.466667pt;}
.xa{left:343.226667pt;}
.xb{left:418.666667pt;}
.x10{left:437.066667pt;}
.x11{left:521.893333pt;}
.xc{left:540.133333pt;}
.x12{left:624.933333pt;}
.xd{left:652.853333pt;}
.x13{left:686.053322pt;}
.x3{left:704.053322pt;}
.x6{left:731.013322pt;}
}




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