
    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_8a2637e5e0c2539bd45078ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_43ce27c7d9bd13b03b80da60.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_3fa8ea6c1d9fef4b92bb2e31.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_ada146e8a28aaee7ef180994.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_6f3714520276dd7ae100385f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.750000;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);}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.197640px;}
.ls1f{letter-spacing:-0.167760px;}
.ls19{letter-spacing:-0.162000px;}
.lsf{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.143640px;}
.ls15{letter-spacing:-0.131760px;}
.ls1{letter-spacing:-0.114120px;}
.ls12{letter-spacing:-0.083880px;}
.ls10{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.065880px;}
.ls9{letter-spacing:-0.060120px;}
.lsa{letter-spacing:-0.047880px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.065880px;}
.ls5{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.095760px;}
.ls2{letter-spacing:0.120240px;}
.ls16{letter-spacing:0.131760px;}
.lsc{letter-spacing:0.143640px;}
.lse{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.162000px;}
.ls1b{letter-spacing:0.167760px;}
.lsd{letter-spacing:0.192240px;}
.ls17{letter-spacing:0.197640px;}
.ls18{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.263520px;}
.ls11{letter-spacing:0.329400px;}
.ls20{letter-spacing:0.368928px;}
.ls1e{letter-spacing:0.421632px;}
.ls7{letter-spacing:1.368000px;}
.ls6{letter-spacing:2.088000px;}
.ls8{letter-spacing:3.888000px;}
.ls4{letter-spacing:17.928000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-21.915360px;}
.ws31{word-spacing:-19.124640px;}
.ws34{word-spacing:-18.956880px;}
.ws20{word-spacing:-18.873000px;}
.ws33{word-spacing:-18.789120px;}
.wsc{word-spacing:-16.416000px;}
.ws10{word-spacing:-16.344000px;}
.wsf{word-spacing:-16.272000px;}
.wsd{word-spacing:-16.200000px;}
.wse{word-spacing:-16.128000px;}
.ws2c{word-spacing:-15.174000px;}
.ws2b{word-spacing:-15.086520px;}
.ws25{word-spacing:-15.020640px;}
.ws21{word-spacing:-14.954760px;}
.ws24{word-spacing:-14.888880px;}
.ws2d{word-spacing:-14.850000px;}
.ws23{word-spacing:-14.823000px;}
.ws22{word-spacing:-14.757120px;}
.ws6{word-spacing:-13.707360px;}
.ws4{word-spacing:-13.587120px;}
.ws5{word-spacing:-13.527000px;}
.ws7{word-spacing:-12.204000px;}
.wsa{word-spacing:-10.964520px;}
.ws8{word-spacing:-10.773000px;}
.ws9{word-spacing:-10.677240px;}
.ws2{word-spacing:-0.228240px;}
.ws1c{word-spacing:-0.144000px;}
.ws1{word-spacing:-0.131760px;}
.ws2e{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.072000px;}
.ws26{word-spacing:-0.065880px;}
.ws30{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.047880px;}
.ws2a{word-spacing:0.065880px;}
.ws1b{word-spacing:0.072000px;}
.ws3{word-spacing:0.114120px;}
.ws11{word-spacing:0.120240px;}
.ws29{word-spacing:0.131760px;}
.ws13{word-spacing:0.144000px;}
.ws32{word-spacing:0.197640px;}
.ws28{word-spacing:0.263520px;}
.ws2f{word-spacing:0.270000px;}
.ws27{word-spacing:0.329400px;}
.ws1d{word-spacing:1.368000px;}
.ws17{word-spacing:1.656000px;}
.ws18{word-spacing:1.728000px;}
.ws16{word-spacing:2.736000px;}
.ws15{word-spacing:2.808000px;}
.ws1f{word-spacing:4.176000px;}
.ws1e{word-spacing:4.248000px;}
.ws1a{word-spacing:17.856000px;}
.ws19{word-spacing:17.928000px;}
._5{margin-left:-14.546916px;}
._6{margin-left:-8.719200px;}
._7{margin-left:-7.469352px;}
._8{margin-left:-4.229352px;}
._4{margin-left:-1.509084px;}
._1{width:1.133352px;}
._9{width:2.520000px;}
._b{width:4.173084px;}
._a{width:18.792000px;}
._0{width:197.508240px;}
._c{width:219.219408px;}
._2{width:253.754640px;}
._3{width:536.122944px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(0,112,192);}
.fc5{color:transparent;}
.fc4{color:rgb(153,255,51);}
.fc2{color:rgb(146,208,80);}
.fca{color:rgb(32,33,36);}
.fc9{color:rgb(48,48,48);}
.fc8{color:rgb(77,77,77);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fsb{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:69.120000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:83.880000px;}
.fs8{font-size:96.120000px;}
.fs4{font-size:114.120000px;}
.fs2{font-size:209.880000px;}
.fs1{font-size:450.000000px;}
.y19{bottom:-45.540000px;}
.y0{bottom:0.000000px;}
.y1b8{bottom:3.330000px;}
.y1dd{bottom:3.600000px;}
.y7c{bottom:4.410000px;}
.y4c{bottom:4.500000px;}
.y100{bottom:5.490000px;}
.y18{bottom:7.110000px;}
.ye{bottom:14.670000px;}
.y12{bottom:17.730000px;}
.y10{bottom:25.920000px;}
.yc{bottom:39.240000px;}
.ya{bottom:45.360000px;}
.y1e{bottom:57.690720px;}
.y6b{bottom:64.890000px;}
.y1d{bottom:77.850000px;}
.y1c{bottom:97.546860px;}
.y1b{bottom:115.913520px;}
.y1a{bottom:134.190000px;}
.y1b9{bottom:153.270000px;}
.y6a{bottom:157.410000px;}
.yea{bottom:158.566500px;}
.y10e{bottom:160.467660px;}
.y18b{bottom:165.690000px;}
.y3a{bottom:165.865680px;}
.y15{bottom:170.674380px;}
.y7a{bottom:170.820000px;}
.y1c5{bottom:177.930000px;}
.ya3{bottom:178.470000px;}
.y14a{bottom:179.179380px;}
.y189{bottom:180.000000px;}
.y6d{bottom:181.980720px;}
.y70{bottom:185.760000px;}
.y19a{bottom:187.094880px;}
.y167{bottom:188.185680px;}
.y12b{bottom:189.000000px;}
.y17b{bottom:189.270000px;}
.ye9{bottom:195.563250px;}
.y1c4{bottom:198.000000px;}
.yc0{bottom:199.337040px;}
.y6c{bottom:202.140000px;}
.ydd{bottom:205.920000px;}
.y10d{bottom:207.901800px;}
.y39{bottom:213.299820px;}
.y138{bottom:213.570000px;}
.y1c3{bottom:218.160000px;}
.ya2{bottom:223.815240px;}
.y188{bottom:225.457020px;}
.yf1{bottom:225.990000px;}
.y3f{bottom:226.080000px;}
.y149{bottom:226.613520px;}
.y1ba{bottom:226.980000px;}
.y1bb{bottom:231.930000px;}
.ye8{bottom:232.560000px;}
.y137{bottom:233.730720px;}
.y199{bottom:234.529020px;}
.y166{bottom:235.619820px;}
.y5c{bottom:237.960000px;}
.y1c2{bottom:238.320000px;}
.y14{bottom:240.039720px;}
.y1ac{bottom:244.080000px;}
.y1aa{bottom:244.980000px;}
.y5d{bottom:246.150000px;}
.yce{bottom:246.240000px;}
.ybf{bottom:246.771180px;}
.ydc{bottom:248.400000px;}
.y136{bottom:253.890000px;}
.y10c{bottom:255.419820px;}
.y17{bottom:255.960000px;}
.y1c1{bottom:258.473790px;}
.y38{bottom:260.817840px;}
.ya1{bottom:261.976230px;}
.y69{bottom:262.613070px;}
.y4e{bottom:266.310000px;}
.ya6{bottom:266.400000px;}
.y187{bottom:266.582610px;}
.ye7{bottom:273.060000px;}
.y135{bottom:274.050000px;}
.y148{bottom:274.131540px;}
.y1c0{bottom:278.633070px;}
.y198{bottom:282.047040px;}
.y68{bottom:282.690000px;}
.y165{bottom:283.137840px;}
.y97{bottom:284.580000px;}
.yc2{bottom:286.470000px;}
.ye6{bottom:293.220000px;}
.y134{bottom:294.120000px;}
.ybe{bottom:294.289200px;}
.y1bf{bottom:298.710000px;}
.ya0{bottom:300.137220px;}
.y12c{bottom:302.310000px;}
.y67{bottom:302.850000px;}
.y10b{bottom:302.937840px;}
.y186{bottom:307.807020px;}
.y37{bottom:308.251980px;}
.y13{bottom:309.510000px;}
.ye5{bottom:313.292880px;}
.y133{bottom:314.275230px;}
.y1be{bottom:318.870000px;}
.y147{bottom:321.565680px;}
.y66{bottom:323.010000px;}
.y16{bottom:323.460000px;}
.yde{bottom:323.820000px;}
.y197{bottom:329.481180px;}
.y164{bottom:330.571980px;}
.ye4{bottom:333.452160px;}
.y132{bottom:334.434510px;}
.y9f{bottom:338.298210px;}
.y1bd{bottom:339.030000px;}
.ybd{bottom:341.723340px;}
.y65{bottom:343.165230px;}
.y185{bottom:348.932610px;}
.y10a{bottom:350.371980px;}
.ye3{bottom:353.611440px;}
.y131{bottom:354.593790px;}
.y5e{bottom:355.500000px;}
.y36{bottom:355.770000px;}
.y1bc{bottom:359.190000px;}
.y64{bottom:363.324510px;}
.y17a{bottom:364.590000px;}
.y146{bottom:369.083700px;}
.y184{bottom:372.600000px;}
.ye2{bottom:373.770720px;}
.y130{bottom:374.753070px;}
.y9e{bottom:376.459200px;}
.y196{bottom:376.999200px;}
.y163{bottom:378.090000px;}
.y9{bottom:382.410000px;}
.y1ca{bottom:382.770000px;}
.y63{bottom:383.401440px;}
.y17c{bottom:384.660000px;}
.ybc{bottom:389.241360px;}
.y183{bottom:392.760000px;}
.ye1{bottom:393.930000px;}
.y12f{bottom:394.830000px;}
.y1a9{bottom:395.010000px;}
.y109{bottom:397.890000px;}
.y35{bottom:401.940000px;}
.y62{bottom:403.560720px;}
.y182{bottom:412.920000px;}
.ye0{bottom:414.000000px;}
.y9d{bottom:414.620190px;}
.y12e{bottom:414.990000px;}
.y157{bottom:415.980000px;}
.y145{bottom:416.517840px;}
.y1b7{bottom:417.600000px;}
.y61{bottom:423.720000px;}
.y195{bottom:424.433340px;}
.y34{bottom:427.140000px;}
.y181{bottom:432.990000px;}
.ydf{bottom:434.160000px;}
.y12d{bottom:435.150000px;}
.yfe{bottom:435.780000px;}
.ybb{bottom:436.759380px;}
.y1b6{bottom:437.670000px;}
.y162{bottom:440.550720px;}
.y60{bottom:443.880000px;}
.y33{bottom:452.430000px;}
.y9c{bottom:452.781180px;}
.y180{bottom:453.151440px;}
.yff{bottom:457.020000px;}
.y1b5{bottom:457.830000px;}
.y108{bottom:460.350000px;}
.y161{bottom:460.710000px;}
.y144{bottom:464.035860px;}
.y5f{bottom:464.040000px;}
.y7d{bottom:468.450000px;}
.y194{bottom:471.951360px;}
.y17f{bottom:473.310720px;}
.y7e{bottom:474.300000px;}
.y32{bottom:477.720000px;}
.y1b4{bottom:477.990000px;}
.y107{bottom:480.510000px;}
.y160{bottom:480.870000px;}
.yba{bottom:484.193520px;}
.ydb{bottom:491.130000px;}
.y1ab{bottom:492.660000px;}
.y96{bottom:493.110000px;}
.y12a{bottom:493.470000px;}
.y158{bottom:495.360000px;}
.y1b3{bottom:498.150000px;}
.y4d{bottom:499.770000px;}
.y106{bottom:500.663790px;}
.y15f{bottom:501.030000px;}
.y31{bottom:503.010000px;}
.ycd{bottom:506.970000px;}
.y11d{bottom:509.130000px;}
.y143{bottom:511.470000px;}
.y95{bottom:513.180000px;}
.y17e{bottom:513.630000px;}
.y1b2{bottom:518.310000px;}
.y193{bottom:519.469380px;}
.y105{bottom:520.823070px;}
.y15e{bottom:521.190000px;}
.y5b{bottom:524.430720px;}
.y30{bottom:528.210000px;}
.yda{bottom:531.630000px;}
.yb9{bottom:531.711540px;}
.y94{bottom:533.342160px;}
.y17d{bottom:533.700000px;}
.y129{bottom:533.700720px;}
.y1b1{bottom:538.380720px;}
.y104{bottom:540.900000px;}
.y15d{bottom:541.261440px;}
.y9b{bottom:543.777930px;}
.y5a{bottom:544.590000px;}
.y1df{bottom:548.995860px;}
.y13e{bottom:549.360000px;}
.yd9{bottom:551.790000px;}
.y93{bottom:553.501440px;}
.y128{bottom:553.860000px;}
.y1b0{bottom:558.540000px;}
.y9a{bottom:559.440900px;}
.y103{bottom:561.060000px;}
.y15c{bottom:561.420720px;}
.y59{bottom:564.750000px;}
.y192{bottom:566.903520px;}
.y2f{bottom:568.530000px;}
.yd8{bottom:571.860000px;}
.y92{bottom:573.660720px;}
.y127{bottom:574.020000px;}
.y142{bottom:574.020720px;}
.y1af{bottom:578.700000px;}
.yb8{bottom:579.145680px;}
.y102{bottom:581.220000px;}
.y15b{bottom:581.580000px;}
.y58{bottom:584.820000px;}
.yd7{bottom:592.020000px;}
.y13f{bottom:593.190000px;}
.y91{bottom:593.820000px;}
.y126{bottom:594.180000px;}
.y1de{bottom:596.430000px;}
.y1ae{bottom:598.860000px;}
.y101{bottom:601.380000px;}
.y15a{bottom:601.740000px;}
.y57{bottom:604.981440px;}
.y11e{bottom:606.780000px;}
.y171{bottom:607.680000px;}
.y2e{bottom:608.760000px;}
.yd6{bottom:612.175230px;}
.y90{bottom:613.890000px;}
.y125{bottom:614.335230px;}
.y141{bottom:614.340000px;}
.y191{bottom:614.421540px;}
.y4f{bottom:617.670000px;}
.y1ad{bottom:619.020000px;}
.y159{bottom:621.900000px;}
.y56{bottom:625.140720px;}
.y173{bottom:626.577030px;}
.yb7{bottom:626.663700px;}
.ycf{bottom:627.210000px;}
.yd5{bottom:632.334510px;}
.y179{bottom:632.340000px;}
.y8f{bottom:634.050000px;}
.y1c9{bottom:634.320000px;}
.y140{bottom:634.410000px;}
.y124{bottom:634.412160px;}
.y172{bottom:642.240000px;}
.y55{bottom:645.300000px;}
.y2d{bottom:648.270000px;}
.yd4{bottom:652.493790px;}
.y178{bottom:652.500000px;}
.y8e{bottom:652.860000px;}
.y123{bottom:654.571440px;}
.y1dc{bottom:657.000090px;}
.yfd{bottom:659.700000px;}
.y190{bottom:661.855680px;}
.y54{bottom:665.371440px;}
.y8d{bottom:668.340000px;}
.yd3{bottom:672.570720px;}
.y177{bottom:672.571440px;}
.yb6{bottom:674.097840px;}
.y122{bottom:674.730720px;}
.yf0{bottom:675.360000px;}
.y1a8{bottom:675.810000px;}
.y1db{bottom:675.990000px;}
.y156{bottom:679.047840px;}
.y2c{bottom:679.590000px;}
.y8c{bottom:683.820000px;}
.y53{bottom:685.530720px;}
.y19f{bottom:690.570000px;}
.yd2{bottom:692.730000px;}
.y176{bottom:692.730720px;}
.y121{bottom:694.890000px;}
.y1da{bottom:695.701440px;}
.y8b{bottom:699.390000px;}
.yfc{bottom:699.930000px;}
.y155{bottom:700.920000px;}
.y1a0{bottom:702.360000px;}
.y52{bottom:705.690000px;}
.y18f{bottom:709.373700px;}
.y2b{bottom:712.350000px;}
.y99{bottom:712.710720px;}
.yd1{bottom:712.890000px;}
.y8a{bottom:714.960000px;}
.y120{bottom:715.050000px;}
.y1a7{bottom:715.230000px;}
.y1d9{bottom:715.860720px;}
.yfb{bottom:720.090000px;}
.yb5{bottom:721.615860px;}
.y51{bottom:725.850000px;}
.y89{bottom:731.790720px;}
.y98{bottom:732.870000px;}
.yd0{bottom:733.050000px;}
.y11f{bottom:735.120000px;}
.y1a6{bottom:735.383790px;}
.y1d8{bottom:736.020000px;}
.yfa{bottom:740.245230px;}
.y154{bottom:743.851980px;}
.y2a{bottom:745.200000px;}
.y50{bottom:746.010000px;}
.yf2{bottom:750.600000px;}
.y88{bottom:751.950000px;}
.y175{bottom:753.210000px;}
.y1a5{bottom:755.543070px;}
.y1d7{bottom:756.180000px;}
.y18e{bottom:756.807840px;}
.yf9{bottom:760.404510px;}
.y79{bottom:768.690000px;}
.yb4{bottom:769.050000px;}
.y87{bottom:772.110000px;}
.y174{bottom:773.280000px;}
.y1a4{bottom:775.620000px;}
.y1d6{bottom:776.250000px;}
.y29{bottom:777.960000px;}
.yf8{bottom:780.481440px;}
.y3e{bottom:781.740000px;}
.y7b{bottom:788.760000px;}
.ycc{bottom:791.370000px;}
.y86{bottom:792.270000px;}
.y11c{bottom:793.440000px;}
.y1a3{bottom:795.780000px;}
.y1d5{bottom:796.410000px;}
.yf7{bottom:800.640720px;}
.y18d{bottom:804.325860px;}
.y4b{bottom:806.400720px;}
.ya5{bottom:806.940000px;}
.yc1{bottom:807.030000px;}
.y110{bottom:809.100000px;}
.y28{bottom:810.720000px;}
.y85{bottom:812.424510px;}
.y1a2{bottom:815.940720px;}
.y1d4{bottom:816.570000px;}
.yf6{bottom:820.800000px;}
.y4a{bottom:826.560000px;}
.y14b{bottom:829.260000px;}
.y170{bottom:831.600000px;}
.yb3{bottom:831.600720px;}
.y84{bottom:832.501440px;}
.y13d{bottom:833.760000px;}
.y11b{bottom:833.760720px;}
.y1a1{bottom:836.100000px;}
.y1d3{bottom:836.729850px;}
.y41{bottom:838.257030px;}
.yf5{bottom:840.960000px;}
.y27{bottom:843.479850px;}
.y49{bottom:846.720000px;}
.y168{bottom:847.260000px;}
.yb2{bottom:851.760000px;}
.y83{bottom:852.660720px;}
.y40{bottom:853.920000px;}
.y1d2{bottom:856.885230px;}
.yf4{bottom:861.120000px;}
.y48{bottom:866.790000px;}
.yb1{bottom:871.920000px;}
.y16f{bottom:871.920720px;}
.y82{bottom:872.820000px;}
.y11a{bottom:873.990000px;}
.y13c{bottom:873.990720px;}
.y26{bottom:876.240000px;}
.y1d1{bottom:876.962160px;}
.y111{bottom:878.940000px;}
.yf3{bottom:881.190000px;}
.y47{bottom:886.952160px;}
.y18a{bottom:889.650000px;}
.yb0{bottom:891.990000px;}
.ycb{bottom:892.080000px;}
.y81{bottom:892.980000px;}
.y153{bottom:894.145230px;}
.y119{bottom:894.150000px;}
.y1d0{bottom:897.121440px;}
.y14d{bottom:897.477030px;}
.y18c{bottom:906.840000px;}
.y46{bottom:907.111440px;}
.y19b{bottom:907.740000px;}
.y25{bottom:909.000000px;}
.y80{bottom:911.700000px;}
.yaf{bottom:912.145950px;}
.y16e{bottom:912.150000px;}
.yca{bottom:912.150720px;}
.y14c{bottom:913.140000px;}
.ya7{bottom:913.590000px;}
.y152{bottom:914.304510px;}
.y118{bottom:914.305230px;}
.y13b{bottom:914.310000px;}
.y1cf{bottom:917.280720px;}
.y139{bottom:919.980000px;}
.y8{bottom:926.093070px;}
.y7f{bottom:927.270000px;}
.y45{bottom:927.270720px;}
.yae{bottom:932.305230px;}
.yc9{bottom:932.310000px;}
.y19e{bottom:932.310720px;}
.y16a{bottom:933.480000px;}
.y19c{bottom:933.750000px;}
.y151{bottom:934.463790px;}
.y117{bottom:934.464510px;}
.y13a{bottom:934.470000px;}
.y1ce{bottom:937.440000px;}
.yef{bottom:939.510000px;}
.y11{bottom:941.040000px;}
.y24{bottom:941.760000px;}
.yc3{bottom:944.100000px;}
.y44{bottom:947.430000px;}
.y169{bottom:949.230000px;}
.yad{bottom:952.464510px;}
.y16d{bottom:952.465230px;}
.yc8{bottom:952.470000px;}
.y150{bottom:954.623070px;}
.y116{bottom:954.623790px;}
.y6f{bottom:955.170000px;}
.y1cd{bottom:957.600000px;}
.y7{bottom:964.254060px;}
.yf{bottom:967.500000px;}
.y43{bottom:967.500720px;}
.yac{bottom:972.623790px;}
.y16c{bottom:972.624510px;}
.yc7{bottom:972.630000px;}
.y23{bottom:974.520000px;}
.y14f{bottom:974.700000px;}
.y115{bottom:974.700720px;}
.y1cc{bottom:977.670000px;}
.yee{bottom:979.825950px;}
.y78{bottom:979.830000px;}
.y42{bottom:987.660000px;}
.yab{bottom:992.700720px;}
.y19d{bottom:992.783070px;}
.yc6{bottom:992.783790px;}
.y114{bottom:994.860000px;}
.y1cb{bottom:997.830000px;}
.yed{bottom:999.985230px;}
.y77{bottom:999.990000px;}
.y6{bottom:1002.415050px;}
.yeb{bottom:1008.180000px;}
.yaa{bottom:1012.860000px;}
.yc5{bottom:1012.860720px;}
.y22{bottom:1014.120000px;}
.y113{bottom:1015.020000px;}
.y14e{bottom:1015.020720px;}
.y76{bottom:1020.062160px;}
.ya9{bottom:1033.020000px;}
.y112{bottom:1035.180000px;}
.yd{bottom:1035.990000px;}
.y6e{bottom:1036.716930px;}
.y75{bottom:1040.221440px;}
.y5{bottom:1040.576040px;}
.y21{bottom:1040.760000px;}
.y3d{bottom:1045.980000px;}
.ya8{bottom:1053.180000px;}
.y16b{bottom:1053.180720px;}
.y1c8{bottom:1053.900000px;}
.y74{bottom:1060.380720px;}
.yc4{bottom:1073.340000px;}
.y4{bottom:1078.737030px;}
.y73{bottom:1080.540000px;}
.y3c{bottom:1089.265860px;}
.y10f{bottom:1093.500000px;}
.y1c7{bottom:1096.920000px;}
.y72{bottom:1100.693070px;}
.yec{bottom:1100.700000px;}
.y20{bottom:1107.000000px;}
.ya4{bottom:1111.500000px;}
.y3{bottom:1116.898020px;}
.y71{bottom:1120.770000px;}
.y3b{bottom:1136.700000px;}
.y1c6{bottom:1141.202610px;}
.y1f{bottom:1143.720000px;}
.y2{bottom:1155.059010px;}
.yb{bottom:1170.450000px;}
.y1{bottom:1193.220000px;}
.hb{height:33.750000px;}
.h8{height:33.838500px;}
.he{height:38.759766px;}
.h1c{height:39.313477px;}
.hd{height:43.152539px;}
.hc{height:43.651582px;}
.h22{height:47.250000px;}
.h2{height:47.286914px;}
.h24{height:47.303114px;}
.h28{height:47.305994px;}
.h2c{height:47.311754px;}
.h17{height:47.314634px;}
.h13{height:47.833770px;}
.h29{height:47.962441px;}
.h1d{height:48.410156px;}
.h11{height:51.679688px;}
.h10{height:52.277344px;}
.h2d{height:56.478516px;}
.h32{height:59.060391px;}
.h12{height:60.903105px;}
.h9{height:61.965000px;}
.hf{height:69.790254px;}
.h6{height:75.060000px;}
.h18{height:80.550000px;}
.ha{height:102.306797px;}
.h4{height:120.060000px;}
.h2b{height:181.350000px;}
.h2e{height:181.351500px;}
.h1a{height:186.480000px;}
.h7{height:188.154141px;}
.h19{height:201.420000px;}
.h2a{height:204.930000px;}
.h23{height:221.580000px;}
.h27{height:221.581500px;}
.h25{height:241.650000px;}
.h14{height:241.738500px;}
.h30{height:241.740000px;}
.h2f{height:259.740000px;}
.h16{height:261.810000px;}
.h26{height:261.811500px;}
.h21{height:261.900000px;}
.h15{height:281.970000px;}
.h1f{height:282.061500px;}
.h1e{height:300.240000px;}
.h20{height:302.130000px;}
.h31{height:398.160000px;}
.h5{height:403.417969px;}
.h1b{height:486.720000px;}
.h3{height:608.040000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:233.550000px;}
.w12{width:234.450000px;}
.we{width:234.900000px;}
.wc{width:235.170000px;}
.w14{width:236.701500px;}
.w16{width:237.511500px;}
.wa{width:237.960000px;}
.w10{width:238.950000px;}
.w18{width:244.170000px;}
.w4{width:299.610000px;}
.w5{width:309.690000px;}
.w3{width:311.398500px;}
.w6{width:312.120000px;}
.w19{width:392.850000px;}
.w11{width:398.790000px;}
.w17{width:399.510000px;}
.wb{width:399.780000px;}
.w15{width:400.320000px;}
.wf{width:402.120000px;}
.wd{width:402.570000px;}
.w13{width:403.290000px;}
.w8{width:403.470000px;}
.w9{width:404.190000px;}
.w2{width:799.200000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.010000px;}
.xa{left:17.010000px;}
.x8{left:18.180000px;}
.x10{left:20.970000px;}
.x7{left:26.820000px;}
.xb{left:28.530000px;}
.x9{left:32.670000px;}
.x3{left:48.330000px;}
.x1{left:54.000000px;}
.x11{left:62.550000px;}
.x29{left:116.640000px;}
.x1d{left:118.890000px;}
.x16{left:127.620000px;}
.x19{left:135.622260px;}
.x12{left:139.320000px;}
.xc{left:154.890000px;}
.x13{left:172.170000px;}
.x21{left:246.510000px;}
.x2a{left:308.610000px;}
.x5{left:328.950000px;}
.x6{left:330.300000px;}
.x28{left:333.360000px;}
.x2f{left:336.510000px;}
.x2b{left:339.930000px;}
.x26{left:341.280000px;}
.x2c{left:342.450000px;}
.x27{left:344.430000px;}
.x2d{left:345.780000px;}
.x18{left:347.130000px;}
.x1c{left:349.560000px;}
.x30{left:351.180000px;}
.x23{left:354.600000px;}
.x1e{left:355.950000px;}
.x33{left:357.030000px;}
.x22{left:358.835400px;}
.x1a{left:361.170000px;}
.x24{left:362.790000px;}
.x31{left:364.320000px;}
.x1f{left:365.580000px;}
.x1b{left:369.180000px;}
.x25{left:370.890000px;}
.x32{left:372.420000px;}
.x20{left:373.680000px;}
.x34{left:379.890000px;}
.xf{left:390.502530px;}
.x14{left:404.909550px;}
.x2e{left:438.937470px;}
.x15{left:442.710000px;}
.xe{left:457.664130px;}
.xd{left:469.260000px;}
.x2{left:838.976670px;}
.x4{left:976.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.175680pt;}
.ls1f{letter-spacing:-0.149120pt;}
.ls19{letter-spacing:-0.144000pt;}
.lsf{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.127680pt;}
.ls15{letter-spacing:-0.117120pt;}
.ls1{letter-spacing:-0.101440pt;}
.ls12{letter-spacing:-0.074560pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.058560pt;}
.ls9{letter-spacing:-0.053440pt;}
.lsa{letter-spacing:-0.042560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.058560pt;}
.ls5{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.085120pt;}
.ls2{letter-spacing:0.106880pt;}
.ls16{letter-spacing:0.117120pt;}
.lsc{letter-spacing:0.127680pt;}
.lse{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls1b{letter-spacing:0.149120pt;}
.lsd{letter-spacing:0.170880pt;}
.ls17{letter-spacing:0.175680pt;}
.ls18{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.234240pt;}
.ls11{letter-spacing:0.292800pt;}
.ls20{letter-spacing:0.327936pt;}
.ls1e{letter-spacing:0.374784pt;}
.ls7{letter-spacing:1.216000pt;}
.ls6{letter-spacing:1.856000pt;}
.ls8{letter-spacing:3.456000pt;}
.ls4{letter-spacing:15.936000pt;}
.wsb{word-spacing:-19.480320pt;}
.ws31{word-spacing:-16.999680pt;}
.ws34{word-spacing:-16.850560pt;}
.ws20{word-spacing:-16.776000pt;}
.ws33{word-spacing:-16.701440pt;}
.wsc{word-spacing:-14.592000pt;}
.ws10{word-spacing:-14.528000pt;}
.wsf{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.400000pt;}
.wse{word-spacing:-14.336000pt;}
.ws2c{word-spacing:-13.488000pt;}
.ws2b{word-spacing:-13.410240pt;}
.ws25{word-spacing:-13.351680pt;}
.ws21{word-spacing:-13.293120pt;}
.ws24{word-spacing:-13.234560pt;}
.ws2d{word-spacing:-13.200000pt;}
.ws23{word-spacing:-13.176000pt;}
.ws22{word-spacing:-13.117440pt;}
.ws6{word-spacing:-12.184320pt;}
.ws4{word-spacing:-12.077440pt;}
.ws5{word-spacing:-12.024000pt;}
.ws7{word-spacing:-10.848000pt;}
.wsa{word-spacing:-9.746240pt;}
.ws8{word-spacing:-9.576000pt;}
.ws9{word-spacing:-9.490880pt;}
.ws2{word-spacing:-0.202880pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws1{word-spacing:-0.117120pt;}
.ws2e{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws26{word-spacing:-0.058560pt;}
.ws30{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.042560pt;}
.ws2a{word-spacing:0.058560pt;}
.ws1b{word-spacing:0.064000pt;}
.ws3{word-spacing:0.101440pt;}
.ws11{word-spacing:0.106880pt;}
.ws29{word-spacing:0.117120pt;}
.ws13{word-spacing:0.128000pt;}
.ws32{word-spacing:0.175680pt;}
.ws28{word-spacing:0.234240pt;}
.ws2f{word-spacing:0.240000pt;}
.ws27{word-spacing:0.292800pt;}
.ws1d{word-spacing:1.216000pt;}
.ws17{word-spacing:1.472000pt;}
.ws18{word-spacing:1.536000pt;}
.ws16{word-spacing:2.432000pt;}
.ws15{word-spacing:2.496000pt;}
.ws1f{word-spacing:3.712000pt;}
.ws1e{word-spacing:3.776000pt;}
.ws1a{word-spacing:15.872000pt;}
.ws19{word-spacing:15.936000pt;}
._5{margin-left:-12.930592pt;}
._6{margin-left:-7.750400pt;}
._7{margin-left:-6.639424pt;}
._8{margin-left:-3.759424pt;}
._4{margin-left:-1.341408pt;}
._1{width:1.007424pt;}
._9{width:2.240000pt;}
._b{width:3.709408pt;}
._a{width:16.704000pt;}
._0{width:175.562880pt;}
._c{width:194.861696pt;}
._2{width:225.559680pt;}
._3{width:476.553728pt;}
.fs7{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fsb{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:61.440000pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:74.560000pt;}
.fs8{font-size:85.440000pt;}
.fs4{font-size:101.440000pt;}
.fs2{font-size:186.560000pt;}
.fs1{font-size:400.000000pt;}
.y19{bottom:-40.480000pt;}
.y0{bottom:0.000000pt;}
.y1b8{bottom:2.960000pt;}
.y1dd{bottom:3.200000pt;}
.y7c{bottom:3.920000pt;}
.y4c{bottom:4.000000pt;}
.y100{bottom:4.880000pt;}
.y18{bottom:6.320000pt;}
.ye{bottom:13.040000pt;}
.y12{bottom:15.760000pt;}
.y10{bottom:23.040000pt;}
.yc{bottom:34.880000pt;}
.ya{bottom:40.320000pt;}
.y1e{bottom:51.280640pt;}
.y6b{bottom:57.680000pt;}
.y1d{bottom:69.200000pt;}
.y1c{bottom:86.708320pt;}
.y1b{bottom:103.034240pt;}
.y1a{bottom:119.280000pt;}
.y1b9{bottom:136.240000pt;}
.y6a{bottom:139.920000pt;}
.yea{bottom:140.948000pt;}
.y10e{bottom:142.637920pt;}
.y18b{bottom:147.280000pt;}
.y3a{bottom:147.436160pt;}
.y15{bottom:151.710560pt;}
.y7a{bottom:151.840000pt;}
.y1c5{bottom:158.160000pt;}
.ya3{bottom:158.640000pt;}
.y14a{bottom:159.270560pt;}
.y189{bottom:160.000000pt;}
.y6d{bottom:161.760640pt;}
.y70{bottom:165.120000pt;}
.y19a{bottom:166.306560pt;}
.y167{bottom:167.276160pt;}
.y12b{bottom:168.000000pt;}
.y17b{bottom:168.240000pt;}
.ye9{bottom:173.834000pt;}
.y1c4{bottom:176.000000pt;}
.yc0{bottom:177.188480pt;}
.y6c{bottom:179.680000pt;}
.ydd{bottom:183.040000pt;}
.y10d{bottom:184.801600pt;}
.y39{bottom:189.599840pt;}
.y138{bottom:189.840000pt;}
.y1c3{bottom:193.920000pt;}
.ya2{bottom:198.946880pt;}
.y188{bottom:200.406240pt;}
.yf1{bottom:200.880000pt;}
.y3f{bottom:200.960000pt;}
.y149{bottom:201.434240pt;}
.y1ba{bottom:201.760000pt;}
.y1bb{bottom:206.160000pt;}
.ye8{bottom:206.720000pt;}
.y137{bottom:207.760640pt;}
.y199{bottom:208.470240pt;}
.y166{bottom:209.439840pt;}
.y5c{bottom:211.520000pt;}
.y1c2{bottom:211.840000pt;}
.y14{bottom:213.368640pt;}
.y1ac{bottom:216.960000pt;}
.y1aa{bottom:217.760000pt;}
.y5d{bottom:218.800000pt;}
.yce{bottom:218.880000pt;}
.ybf{bottom:219.352160pt;}
.ydc{bottom:220.800000pt;}
.y136{bottom:225.680000pt;}
.y10c{bottom:227.039840pt;}
.y17{bottom:227.520000pt;}
.y1c1{bottom:229.754480pt;}
.y38{bottom:231.838080pt;}
.ya1{bottom:232.867760pt;}
.y69{bottom:233.433840pt;}
.y4e{bottom:236.720000pt;}
.ya6{bottom:236.800000pt;}
.y187{bottom:236.962320pt;}
.ye7{bottom:242.720000pt;}
.y135{bottom:243.600000pt;}
.y148{bottom:243.672480pt;}
.y1c0{bottom:247.673840pt;}
.y198{bottom:250.708480pt;}
.y68{bottom:251.280000pt;}
.y165{bottom:251.678080pt;}
.y97{bottom:252.960000pt;}
.yc2{bottom:254.640000pt;}
.ye6{bottom:260.640000pt;}
.y134{bottom:261.440000pt;}
.ybe{bottom:261.590400pt;}
.y1bf{bottom:265.520000pt;}
.ya0{bottom:266.788640pt;}
.y12c{bottom:268.720000pt;}
.y67{bottom:269.200000pt;}
.y10b{bottom:269.278080pt;}
.y186{bottom:273.606240pt;}
.y37{bottom:274.001760pt;}
.y13{bottom:275.120000pt;}
.ye5{bottom:278.482560pt;}
.y133{bottom:279.355760pt;}
.y1be{bottom:283.440000pt;}
.y147{bottom:285.836160pt;}
.y66{bottom:287.120000pt;}
.y16{bottom:287.520000pt;}
.yde{bottom:287.840000pt;}
.y197{bottom:292.872160pt;}
.y164{bottom:293.841760pt;}
.ye4{bottom:296.401920pt;}
.y132{bottom:297.275120pt;}
.y9f{bottom:300.709520pt;}
.y1bd{bottom:301.360000pt;}
.ybd{bottom:303.754080pt;}
.y65{bottom:305.035760pt;}
.y185{bottom:310.162320pt;}
.y10a{bottom:311.441760pt;}
.ye3{bottom:314.321280pt;}
.y131{bottom:315.194480pt;}
.y5e{bottom:316.000000pt;}
.y36{bottom:316.240000pt;}
.y1bc{bottom:319.280000pt;}
.y64{bottom:322.955120pt;}
.y17a{bottom:324.080000pt;}
.y146{bottom:328.074400pt;}
.y184{bottom:331.200000pt;}
.ye2{bottom:332.240640pt;}
.y130{bottom:333.113840pt;}
.y9e{bottom:334.630400pt;}
.y196{bottom:335.110400pt;}
.y163{bottom:336.080000pt;}
.y9{bottom:339.920000pt;}
.y1ca{bottom:340.240000pt;}
.y63{bottom:340.801280pt;}
.y17c{bottom:341.920000pt;}
.ybc{bottom:345.992320pt;}
.y183{bottom:349.120000pt;}
.ye1{bottom:350.160000pt;}
.y12f{bottom:350.960000pt;}
.y1a9{bottom:351.120000pt;}
.y109{bottom:353.680000pt;}
.y35{bottom:357.280000pt;}
.y62{bottom:358.720640pt;}
.y182{bottom:367.040000pt;}
.ye0{bottom:368.000000pt;}
.y9d{bottom:368.551280pt;}
.y12e{bottom:368.880000pt;}
.y157{bottom:369.760000pt;}
.y145{bottom:370.238080pt;}
.y1b7{bottom:371.200000pt;}
.y61{bottom:376.640000pt;}
.y195{bottom:377.274080pt;}
.y34{bottom:379.680000pt;}
.y181{bottom:384.880000pt;}
.ydf{bottom:385.920000pt;}
.y12d{bottom:386.800000pt;}
.yfe{bottom:387.360000pt;}
.ybb{bottom:388.230560pt;}
.y1b6{bottom:389.040000pt;}
.y162{bottom:391.600640pt;}
.y60{bottom:394.560000pt;}
.y33{bottom:402.160000pt;}
.y9c{bottom:402.472160pt;}
.y180{bottom:402.801280pt;}
.yff{bottom:406.240000pt;}
.y1b5{bottom:406.960000pt;}
.y108{bottom:409.200000pt;}
.y161{bottom:409.520000pt;}
.y144{bottom:412.476320pt;}
.y5f{bottom:412.480000pt;}
.y7d{bottom:416.400000pt;}
.y194{bottom:419.512320pt;}
.y17f{bottom:420.720640pt;}
.y7e{bottom:421.600000pt;}
.y32{bottom:424.640000pt;}
.y1b4{bottom:424.880000pt;}
.y107{bottom:427.120000pt;}
.y160{bottom:427.440000pt;}
.yba{bottom:430.394240pt;}
.ydb{bottom:436.560000pt;}
.y1ab{bottom:437.920000pt;}
.y96{bottom:438.320000pt;}
.y12a{bottom:438.640000pt;}
.y158{bottom:440.320000pt;}
.y1b3{bottom:442.800000pt;}
.y4d{bottom:444.240000pt;}
.y106{bottom:445.034480pt;}
.y15f{bottom:445.360000pt;}
.y31{bottom:447.120000pt;}
.ycd{bottom:450.640000pt;}
.y11d{bottom:452.560000pt;}
.y143{bottom:454.640000pt;}
.y95{bottom:456.160000pt;}
.y17e{bottom:456.560000pt;}
.y1b2{bottom:460.720000pt;}
.y193{bottom:461.750560pt;}
.y105{bottom:462.953840pt;}
.y15e{bottom:463.280000pt;}
.y5b{bottom:466.160640pt;}
.y30{bottom:469.520000pt;}
.yda{bottom:472.560000pt;}
.yb9{bottom:472.632480pt;}
.y94{bottom:474.081920pt;}
.y17d{bottom:474.400000pt;}
.y129{bottom:474.400640pt;}
.y1b1{bottom:478.560640pt;}
.y104{bottom:480.800000pt;}
.y15d{bottom:481.121280pt;}
.y9b{bottom:483.358160pt;}
.y5a{bottom:484.080000pt;}
.y1df{bottom:487.996320pt;}
.y13e{bottom:488.320000pt;}
.yd9{bottom:490.480000pt;}
.y93{bottom:492.001280pt;}
.y128{bottom:492.320000pt;}
.y1b0{bottom:496.480000pt;}
.y9a{bottom:497.280800pt;}
.y103{bottom:498.720000pt;}
.y15c{bottom:499.040640pt;}
.y59{bottom:502.000000pt;}
.y192{bottom:503.914240pt;}
.y2f{bottom:505.360000pt;}
.yd8{bottom:508.320000pt;}
.y92{bottom:509.920640pt;}
.y127{bottom:510.240000pt;}
.y142{bottom:510.240640pt;}
.y1af{bottom:514.400000pt;}
.yb8{bottom:514.796160pt;}
.y102{bottom:516.640000pt;}
.y15b{bottom:516.960000pt;}
.y58{bottom:519.840000pt;}
.yd7{bottom:526.240000pt;}
.y13f{bottom:527.280000pt;}
.y91{bottom:527.840000pt;}
.y126{bottom:528.160000pt;}
.y1de{bottom:530.160000pt;}
.y1ae{bottom:532.320000pt;}
.y101{bottom:534.560000pt;}
.y15a{bottom:534.880000pt;}
.y57{bottom:537.761280pt;}
.y11e{bottom:539.360000pt;}
.y171{bottom:540.160000pt;}
.y2e{bottom:541.120000pt;}
.yd6{bottom:544.155760pt;}
.y90{bottom:545.680000pt;}
.y125{bottom:546.075760pt;}
.y141{bottom:546.080000pt;}
.y191{bottom:546.152480pt;}
.y4f{bottom:549.040000pt;}
.y1ad{bottom:550.240000pt;}
.y159{bottom:552.800000pt;}
.y56{bottom:555.680640pt;}
.y173{bottom:556.957360pt;}
.yb7{bottom:557.034400pt;}
.ycf{bottom:557.520000pt;}
.yd5{bottom:562.075120pt;}
.y179{bottom:562.080000pt;}
.y8f{bottom:563.600000pt;}
.y1c9{bottom:563.840000pt;}
.y140{bottom:563.920000pt;}
.y124{bottom:563.921920pt;}
.y172{bottom:570.880000pt;}
.y55{bottom:573.600000pt;}
.y2d{bottom:576.240000pt;}
.yd4{bottom:579.994480pt;}
.y178{bottom:580.000000pt;}
.y8e{bottom:580.320000pt;}
.y123{bottom:581.841280pt;}
.y1dc{bottom:584.000080pt;}
.yfd{bottom:586.400000pt;}
.y190{bottom:588.316160pt;}
.y54{bottom:591.441280pt;}
.y8d{bottom:594.080000pt;}
.yd3{bottom:597.840640pt;}
.y177{bottom:597.841280pt;}
.yb6{bottom:599.198080pt;}
.y122{bottom:599.760640pt;}
.yf0{bottom:600.320000pt;}
.y1a8{bottom:600.720000pt;}
.y1db{bottom:600.880000pt;}
.y156{bottom:603.598080pt;}
.y2c{bottom:604.080000pt;}
.y8c{bottom:607.840000pt;}
.y53{bottom:609.360640pt;}
.y19f{bottom:613.840000pt;}
.yd2{bottom:615.760000pt;}
.y176{bottom:615.760640pt;}
.y121{bottom:617.680000pt;}
.y1da{bottom:618.401280pt;}
.y8b{bottom:621.680000pt;}
.yfc{bottom:622.160000pt;}
.y155{bottom:623.040000pt;}
.y1a0{bottom:624.320000pt;}
.y52{bottom:627.280000pt;}
.y18f{bottom:630.554400pt;}
.y2b{bottom:633.200000pt;}
.y99{bottom:633.520640pt;}
.yd1{bottom:633.680000pt;}
.y8a{bottom:635.520000pt;}
.y120{bottom:635.600000pt;}
.y1a7{bottom:635.760000pt;}
.y1d9{bottom:636.320640pt;}
.yfb{bottom:640.080000pt;}
.yb5{bottom:641.436320pt;}
.y51{bottom:645.200000pt;}
.y89{bottom:650.480640pt;}
.y98{bottom:651.440000pt;}
.yd0{bottom:651.600000pt;}
.y11f{bottom:653.440000pt;}
.y1a6{bottom:653.674480pt;}
.y1d8{bottom:654.240000pt;}
.yfa{bottom:657.995760pt;}
.y154{bottom:661.201760pt;}
.y2a{bottom:662.400000pt;}
.y50{bottom:663.120000pt;}
.yf2{bottom:667.200000pt;}
.y88{bottom:668.400000pt;}
.y175{bottom:669.520000pt;}
.y1a5{bottom:671.593840pt;}
.y1d7{bottom:672.160000pt;}
.y18e{bottom:672.718080pt;}
.yf9{bottom:675.915120pt;}
.y79{bottom:683.280000pt;}
.yb4{bottom:683.600000pt;}
.y87{bottom:686.320000pt;}
.y174{bottom:687.360000pt;}
.y1a4{bottom:689.440000pt;}
.y1d6{bottom:690.000000pt;}
.y29{bottom:691.520000pt;}
.yf8{bottom:693.761280pt;}
.y3e{bottom:694.880000pt;}
.y7b{bottom:701.120000pt;}
.ycc{bottom:703.440000pt;}
.y86{bottom:704.240000pt;}
.y11c{bottom:705.280000pt;}
.y1a3{bottom:707.360000pt;}
.y1d5{bottom:707.920000pt;}
.yf7{bottom:711.680640pt;}
.y18d{bottom:714.956320pt;}
.y4b{bottom:716.800640pt;}
.ya5{bottom:717.280000pt;}
.yc1{bottom:717.360000pt;}
.y110{bottom:719.200000pt;}
.y28{bottom:720.640000pt;}
.y85{bottom:722.155120pt;}
.y1a2{bottom:725.280640pt;}
.y1d4{bottom:725.840000pt;}
.yf6{bottom:729.600000pt;}
.y4a{bottom:734.720000pt;}
.y14b{bottom:737.120000pt;}
.y170{bottom:739.200000pt;}
.yb3{bottom:739.200640pt;}
.y84{bottom:740.001280pt;}
.y13d{bottom:741.120000pt;}
.y11b{bottom:741.120640pt;}
.y1a1{bottom:743.200000pt;}
.y1d3{bottom:743.759867pt;}
.y41{bottom:745.117360pt;}
.yf5{bottom:747.520000pt;}
.y27{bottom:749.759867pt;}
.y49{bottom:752.640000pt;}
.y168{bottom:753.120000pt;}
.yb2{bottom:757.120000pt;}
.y83{bottom:757.920640pt;}
.y40{bottom:759.040000pt;}
.y1d2{bottom:761.675760pt;}
.yf4{bottom:765.440000pt;}
.y48{bottom:770.480000pt;}
.yb1{bottom:775.040000pt;}
.y16f{bottom:775.040640pt;}
.y82{bottom:775.840000pt;}
.y11a{bottom:776.880000pt;}
.y13c{bottom:776.880640pt;}
.y26{bottom:778.880000pt;}
.y1d1{bottom:779.521920pt;}
.y111{bottom:781.280000pt;}
.yf3{bottom:783.280000pt;}
.y47{bottom:788.401920pt;}
.y18a{bottom:790.800000pt;}
.yb0{bottom:792.880000pt;}
.ycb{bottom:792.960000pt;}
.y81{bottom:793.760000pt;}
.y153{bottom:794.795760pt;}
.y119{bottom:794.800000pt;}
.y1d0{bottom:797.441280pt;}
.y14d{bottom:797.757360pt;}
.y18c{bottom:806.080000pt;}
.y46{bottom:806.321280pt;}
.y19b{bottom:806.880000pt;}
.y25{bottom:808.000000pt;}
.y80{bottom:810.400000pt;}
.yaf{bottom:810.796400pt;}
.y16e{bottom:810.800000pt;}
.yca{bottom:810.800640pt;}
.y14c{bottom:811.680000pt;}
.ya7{bottom:812.080000pt;}
.y152{bottom:812.715120pt;}
.y118{bottom:812.715760pt;}
.y13b{bottom:812.720000pt;}
.y1cf{bottom:815.360640pt;}
.y139{bottom:817.760000pt;}
.y8{bottom:823.193840pt;}
.y7f{bottom:824.240000pt;}
.y45{bottom:824.240640pt;}
.yae{bottom:828.715760pt;}
.yc9{bottom:828.720000pt;}
.y19e{bottom:828.720640pt;}
.y16a{bottom:829.760000pt;}
.y19c{bottom:830.000000pt;}
.y151{bottom:830.634480pt;}
.y117{bottom:830.635120pt;}
.y13a{bottom:830.640000pt;}
.y1ce{bottom:833.280000pt;}
.yef{bottom:835.120000pt;}
.y11{bottom:836.480000pt;}
.y24{bottom:837.120000pt;}
.yc3{bottom:839.200000pt;}
.y44{bottom:842.160000pt;}
.y169{bottom:843.760000pt;}
.yad{bottom:846.635120pt;}
.y16d{bottom:846.635760pt;}
.yc8{bottom:846.640000pt;}
.y150{bottom:848.553840pt;}
.y116{bottom:848.554480pt;}
.y6f{bottom:849.040000pt;}
.y1cd{bottom:851.200000pt;}
.y7{bottom:857.114720pt;}
.yf{bottom:860.000000pt;}
.y43{bottom:860.000640pt;}
.yac{bottom:864.554480pt;}
.y16c{bottom:864.555120pt;}
.yc7{bottom:864.560000pt;}
.y23{bottom:866.240000pt;}
.y14f{bottom:866.400000pt;}
.y115{bottom:866.400640pt;}
.y1cc{bottom:869.040000pt;}
.yee{bottom:870.956400pt;}
.y78{bottom:870.960000pt;}
.y42{bottom:877.920000pt;}
.yab{bottom:882.400640pt;}
.y19d{bottom:882.473840pt;}
.yc6{bottom:882.474480pt;}
.y114{bottom:884.320000pt;}
.y1cb{bottom:886.960000pt;}
.yed{bottom:888.875760pt;}
.y77{bottom:888.880000pt;}
.y6{bottom:891.035600pt;}
.yeb{bottom:896.160000pt;}
.yaa{bottom:900.320000pt;}
.yc5{bottom:900.320640pt;}
.y22{bottom:901.440000pt;}
.y113{bottom:902.240000pt;}
.y14e{bottom:902.240640pt;}
.y76{bottom:906.721920pt;}
.ya9{bottom:918.240000pt;}
.y112{bottom:920.160000pt;}
.yd{bottom:920.880000pt;}
.y6e{bottom:921.526160pt;}
.y75{bottom:924.641280pt;}
.y5{bottom:924.956480pt;}
.y21{bottom:925.120000pt;}
.y3d{bottom:929.760000pt;}
.ya8{bottom:936.160000pt;}
.y16b{bottom:936.160640pt;}
.y1c8{bottom:936.800000pt;}
.y74{bottom:942.560640pt;}
.yc4{bottom:954.080000pt;}
.y4{bottom:958.877360pt;}
.y73{bottom:960.480000pt;}
.y3c{bottom:968.236320pt;}
.y10f{bottom:972.000000pt;}
.y1c7{bottom:975.040000pt;}
.y72{bottom:978.393840pt;}
.yec{bottom:978.400000pt;}
.y20{bottom:984.000000pt;}
.ya4{bottom:988.000000pt;}
.y3{bottom:992.798240pt;}
.y71{bottom:996.240000pt;}
.y3b{bottom:1010.400000pt;}
.y1c6{bottom:1014.402320pt;}
.y1f{bottom:1016.640000pt;}
.y2{bottom:1026.719120pt;}
.yb{bottom:1040.400000pt;}
.y1{bottom:1060.640000pt;}
.hb{height:30.000000pt;}
.h8{height:30.078667pt;}
.he{height:34.453125pt;}
.h1c{height:34.945312pt;}
.hd{height:38.357812pt;}
.hc{height:38.801406pt;}
.h22{height:42.000000pt;}
.h2{height:42.032812pt;}
.h24{height:42.047213pt;}
.h28{height:42.049773pt;}
.h2c{height:42.054892pt;}
.h17{height:42.057453pt;}
.h13{height:42.518906pt;}
.h29{height:42.633281pt;}
.h1d{height:43.031250pt;}
.h11{height:45.937500pt;}
.h10{height:46.468750pt;}
.h2d{height:50.203125pt;}
.h32{height:52.498125pt;}
.h12{height:54.136094pt;}
.h9{height:55.080000pt;}
.hf{height:62.035781pt;}
.h6{height:66.720000pt;}
.h18{height:71.600000pt;}
.ha{height:90.939375pt;}
.h4{height:106.720000pt;}
.h2b{height:161.200000pt;}
.h2e{height:161.201333pt;}
.h1a{height:165.760000pt;}
.h7{height:167.248125pt;}
.h19{height:179.040000pt;}
.h2a{height:182.160000pt;}
.h23{height:196.960000pt;}
.h27{height:196.961333pt;}
.h25{height:214.800000pt;}
.h14{height:214.878667pt;}
.h30{height:214.880000pt;}
.h2f{height:230.880000pt;}
.h16{height:232.720000pt;}
.h26{height:232.721333pt;}
.h21{height:232.800000pt;}
.h15{height:250.640000pt;}
.h1f{height:250.721333pt;}
.h1e{height:266.880000pt;}
.h20{height:268.560000pt;}
.h31{height:353.920000pt;}
.h5{height:358.593750pt;}
.h1b{height:432.640000pt;}
.h3{height:540.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:207.600000pt;}
.w12{width:208.400000pt;}
.we{width:208.800000pt;}
.wc{width:209.040000pt;}
.w14{width:210.401333pt;}
.w16{width:211.121333pt;}
.wa{width:211.520000pt;}
.w10{width:212.400000pt;}
.w18{width:217.040000pt;}
.w4{width:266.320000pt;}
.w5{width:275.280000pt;}
.w3{width:276.798667pt;}
.w6{width:277.440000pt;}
.w19{width:349.200000pt;}
.w11{width:354.480000pt;}
.w17{width:355.120000pt;}
.wb{width:355.360000pt;}
.w15{width:355.840000pt;}
.wf{width:357.440000pt;}
.wd{width:357.840000pt;}
.w13{width:358.480000pt;}
.w8{width:358.640000pt;}
.w9{width:359.280000pt;}
.w2{width:710.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.120000pt;}
.xa{left:15.120000pt;}
.x8{left:16.160000pt;}
.x10{left:18.640000pt;}
.x7{left:23.840000pt;}
.xb{left:25.360000pt;}
.x9{left:29.040000pt;}
.x3{left:42.960000pt;}
.x1{left:48.000000pt;}
.x11{left:55.600000pt;}
.x29{left:103.680000pt;}
.x1d{left:105.680000pt;}
.x16{left:113.440000pt;}
.x19{left:120.553120pt;}
.x12{left:123.840000pt;}
.xc{left:137.680000pt;}
.x13{left:153.040000pt;}
.x21{left:219.120000pt;}
.x2a{left:274.320000pt;}
.x5{left:292.400000pt;}
.x6{left:293.600000pt;}
.x28{left:296.320000pt;}
.x2f{left:299.120000pt;}
.x2b{left:302.160000pt;}
.x26{left:303.360000pt;}
.x2c{left:304.400000pt;}
.x27{left:306.160000pt;}
.x2d{left:307.360000pt;}
.x18{left:308.560000pt;}
.x1c{left:310.720000pt;}
.x30{left:312.160000pt;}
.x23{left:315.200000pt;}
.x1e{left:316.400000pt;}
.x33{left:317.360000pt;}
.x22{left:318.964800pt;}
.x1a{left:321.040000pt;}
.x24{left:322.480000pt;}
.x31{left:323.840000pt;}
.x1f{left:324.960000pt;}
.x1b{left:328.160000pt;}
.x25{left:329.680000pt;}
.x32{left:331.040000pt;}
.x20{left:332.160000pt;}
.x34{left:337.680000pt;}
.xf{left:347.113360pt;}
.x14{left:359.919600pt;}
.x2e{left:390.166640pt;}
.x15{left:393.520000pt;}
.xe{left:406.812560pt;}
.xd{left:417.120000pt;}
.x2{left:745.757040pt;}
.x4{left:867.600000pt;}
}




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