
    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_af48a825781d2813cc26e850.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015000;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_10aa4d34f63d1a345778a6d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122000;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_c43fe72f1ffd572de9bdf553.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_36930f3668b0aeb214bd3e77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103000;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_b4668a2941f52349dd69ea57.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.765000;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);}
.v1{vertical-align:-6.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.000000px;}
.ls1c{letter-spacing:-2.980800px;}
.ls4{letter-spacing:-2.448000px;}
.ls1{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-0.226800px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls13{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.222000px;}
.ls5{letter-spacing:0.226800px;}
.ls18{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.474000px;}
.lsa{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.642000px;}
.lsf{letter-spacing:0.732000px;}
.lsd{letter-spacing:0.804000px;}
.lsc{letter-spacing:1.176000px;}
.ls1a{letter-spacing:1.266000px;}
.ls9{letter-spacing:1.320000px;}
.ls17{letter-spacing:1.536000px;}
.lse{letter-spacing:1.614000px;}
.ls2{letter-spacing:1.926000px;}
.ls19{letter-spacing:1.968000px;}
.ls12{letter-spacing:2.010000px;}
.lsb{letter-spacing:2.046000px;}
.ls10{letter-spacing:2.490000px;}
.ls6{letter-spacing:23.568000px;}
.ls14{letter-spacing:33.024000px;}
.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;}
}
.wsba{word-spacing:-19.105200px;}
.ws89{word-spacing:-18.384000px;}
.wsae{word-spacing:-17.755200px;}
.wsb9{word-spacing:-16.351200px;}
.ws0{word-spacing:0.000000px;}
.ws84{word-spacing:0.096000px;}
.ws9{word-spacing:0.124200px;}
.wsad{word-spacing:0.138000px;}
.wsa4{word-spacing:0.156000px;}
.ws2a{word-spacing:0.174000px;}
.ws36{word-spacing:0.300000px;}
.ws87{word-spacing:0.366000px;}
.ws3d{word-spacing:0.510000px;}
.ws62{word-spacing:0.546000px;}
.ws6{word-spacing:0.793800px;}
.ws5{word-spacing:0.950400px;}
.ws91{word-spacing:1.062000px;}
.ws6a{word-spacing:1.182000px;}
.ws7f{word-spacing:1.344000px;}
.ws79{word-spacing:1.530000px;}
.ws27{word-spacing:1.548000px;}
.wsaf{word-spacing:1.734000px;}
.ws83{word-spacing:1.932000px;}
.ws17{word-spacing:2.111400px;}
.wsb{word-spacing:2.143800px;}
.ws14{word-spacing:2.300400px;}
.ws53{word-spacing:2.370000px;}
.wsc{word-spacing:2.430000px;}
.ws10{word-spacing:2.448000px;}
.wsd{word-spacing:2.705400px;}
.ws8e{word-spacing:2.766000px;}
.ws42{word-spacing:2.796000px;}
.ws1c{word-spacing:2.808000px;}
.ws85{word-spacing:2.898000px;}
.ws48{word-spacing:2.958000px;}
.ws9b{word-spacing:3.120000px;}
.wsb8{word-spacing:3.564000px;}
.ws2b{word-spacing:3.696000px;}
.ws20{word-spacing:3.715200px;}
.ws37{word-spacing:3.804000px;}
.wsb7{word-spacing:4.278000px;}
.ws11{word-spacing:4.363200px;}
.ws1a{word-spacing:4.438800px;}
.wsab{word-spacing:4.446000px;}
.ws6b{word-spacing:4.476000px;}
.wsa{word-spacing:4.541400px;}
.ws13{word-spacing:4.568400px;}
.ws97{word-spacing:4.764000px;}
.ws7{word-spacing:4.881600px;}
.ws32{word-spacing:4.890000px;}
.wsb1{word-spacing:4.914000px;}
.ws82{word-spacing:4.944000px;}
.wsf{word-spacing:5.281200px;}
.wsaa{word-spacing:5.394000px;}
.ws3b{word-spacing:5.472000px;}
.ws50{word-spacing:5.616000px;}
.ws6d{word-spacing:5.862000px;}
.ws57{word-spacing:6.060000px;}
.wsa9{word-spacing:6.456000px;}
.ws40{word-spacing:6.468000px;}
.ws5e{word-spacing:6.960000px;}
.ws67{word-spacing:7.230000px;}
.ws4d{word-spacing:7.260000px;}
.wsb3{word-spacing:7.278000px;}
.ws15{word-spacing:7.435800px;}
.ws2{word-spacing:7.538400px;}
.ws9c{word-spacing:7.566000px;}
.ws86{word-spacing:7.656000px;}
.ws7b{word-spacing:7.800000px;}
.ws51{word-spacing:7.998000px;}
.ws63{word-spacing:8.070000px;}
.ws71{word-spacing:8.196000px;}
.ws7a{word-spacing:8.214000px;}
.ws5f{word-spacing:8.334000px;}
.ws52{word-spacing:8.430000px;}
.ws49{word-spacing:8.538000px;}
.wsb6{word-spacing:8.598000px;}
.ws77{word-spacing:8.628000px;}
.wsa3{word-spacing:8.814000px;}
.ws1b{word-spacing:8.850600px;}
.ws75{word-spacing:9.072000px;}
.ws9d{word-spacing:9.150000px;}
.ws5c{word-spacing:9.162000px;}
.ws8{word-spacing:9.255600px;}
.ws61{word-spacing:9.276000px;}
.ws7c{word-spacing:9.330000px;}
.wsa0{word-spacing:9.342000px;}
.ws21{word-spacing:9.973800px;}
.ws66{word-spacing:10.464000px;}
.ws16{word-spacing:10.465200px;}
.ws94{word-spacing:10.638000px;}
.ws8b{word-spacing:10.650000px;}
.ws33{word-spacing:10.692000px;}
.ws4f{word-spacing:10.782000px;}
.ws12{word-spacing:10.859400px;}
.ws7d{word-spacing:11.034000px;}
.ws1{word-spacing:11.226600px;}
.ws93{word-spacing:11.292000px;}
.ws4{word-spacing:11.323800px;}
.ws44{word-spacing:11.328000px;}
.ws1d{word-spacing:11.669400px;}
.ws2f{word-spacing:11.814000px;}
.ws5d{word-spacing:11.826000px;}
.ws18{word-spacing:12.128400px;}
.ws4e{word-spacing:12.288000px;}
.ws99{word-spacing:12.414000px;}
.wsb4{word-spacing:12.792000px;}
.ws2d{word-spacing:12.942000px;}
.ws26{word-spacing:13.170000px;}
.wsa1{word-spacing:13.386000px;}
.ws59{word-spacing:13.584000px;}
.ws4a{word-spacing:13.728000px;}
.wsb2{word-spacing:13.830000px;}
.ws1f{word-spacing:13.899600px;}
.ws95{word-spacing:14.298000px;}
.ws2e{word-spacing:14.994000px;}
.ws3c{word-spacing:15.030000px;}
.ws29{word-spacing:15.156000px;}
.ws60{word-spacing:15.186000px;}
.ws8c{word-spacing:15.252000px;}
.ws76{word-spacing:15.378000px;}
.ws9f{word-spacing:15.426000px;}
.wsa7{word-spacing:15.528000px;}
.ws7e{word-spacing:15.642000px;}
.ws47{word-spacing:15.660000px;}
.wsa6{word-spacing:16.314000px;}
.ws43{word-spacing:16.368000px;}
.ws6c{word-spacing:16.488000px;}
.ws80{word-spacing:16.728000px;}
.ws9e{word-spacing:16.872000px;}
.ws6e{word-spacing:16.938000px;}
.wsa5{word-spacing:16.956000px;}
.ws4b{word-spacing:18.534000px;}
.ws24{word-spacing:18.588000px;}
.ws68{word-spacing:19.134000px;}
.ws64{word-spacing:19.716000px;}
.ws35{word-spacing:19.728000px;}
.wsac{word-spacing:19.896000px;}
.wsa8{word-spacing:20.790000px;}
.ws28{word-spacing:20.868000px;}
.ws46{word-spacing:21.252000px;}
.ws9a{word-spacing:21.432000px;}
.ws81{word-spacing:21.588000px;}
.wse{word-spacing:22.150800px;}
.ws72{word-spacing:22.218000px;}
.ws1e{word-spacing:22.469400px;}
.ws8d{word-spacing:23.142000px;}
.ws30{word-spacing:23.562000px;}
.ws31{word-spacing:23.568000px;}
.ws19{word-spacing:23.608800px;}
.ws74{word-spacing:24.048000px;}
.ws25{word-spacing:25.218000px;}
.ws78{word-spacing:25.320000px;}
.ws41{word-spacing:26.118000px;}
.ws3{word-spacing:26.584200px;}
.ws56{word-spacing:26.616000px;}
.ws96{word-spacing:26.712000px;}
.ws3e{word-spacing:26.742000px;}
.ws5b{word-spacing:27.636000px;}
.ws22{word-spacing:27.726000px;}
.ws69{word-spacing:28.752000px;}
.ws4c{word-spacing:28.974000px;}
.ws70{word-spacing:28.992000px;}
.wsb0{word-spacing:29.016000px;}
.ws23{word-spacing:29.034000px;}
.ws34{word-spacing:29.052000px;}
.ws5a{word-spacing:29.124000px;}
.ws58{word-spacing:29.190000px;}
.ws98{word-spacing:29.232000px;}
.ws3a{word-spacing:29.340000px;}
.wsb5{word-spacing:29.364000px;}
.ws54{word-spacing:29.412000px;}
.ws55{word-spacing:29.598000px;}
.ws65{word-spacing:29.634000px;}
.ws2c{word-spacing:29.682000px;}
.ws45{word-spacing:29.730000px;}
.ws38{word-spacing:29.760000px;}
.wsa2{word-spacing:29.784000px;}
.ws8f{word-spacing:29.910000px;}
.ws90{word-spacing:29.916000px;}
.ws39{word-spacing:29.964000px;}
.ws73{word-spacing:29.982000px;}
.ws3f{word-spacing:29.994000px;}
.ws6f{word-spacing:30.000000px;}
.ws88{word-spacing:146.515200px;}
.ws92{word-spacing:208.334400px;}
.ws8a{word-spacing:208.339200px;}
._10{margin-left:-7.572000px;}
._6{margin-left:-6.570000px;}
._7{margin-left:-4.980000px;}
._1{margin-left:-3.540000px;}
._0{margin-left:-2.448000px;}
._4{margin-left:-1.152000px;}
._3{width:1.512000px;}
._2{width:2.628000px;}
._5{width:3.960000px;}
._e{width:232.027200px;}
._c{width:264.475200px;}
._f{width:268.843200px;}
._9{width:277.039200px;}
._d{width:281.407200px;}
._8{width:303.332400px;}
._b{width:365.126400px;}
._a{width:378.806400px;}
.fc1{color:rgb(43,49,136);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:251.926500px;}
.y1e{bottom:297.918750px;}
.y43{bottom:302.079750px;}
.y90{bottom:307.659300px;}
.y100{bottom:309.388200px;}
.yb3{bottom:312.759150px;}
.y1d{bottom:312.859200px;}
.y42{bottom:323.079750px;}
.y61{bottom:326.260350px;}
.yff{bottom:327.387750px;}
.y1c{bottom:327.799650px;}
.y8f{bottom:328.659300px;}
.yb2{bottom:333.759150px;}
.ya5{bottom:335.259300px;}
.y71{bottom:336.760350px;}
.y1b{bottom:342.740100px;}
.y41{bottom:344.079750px;}
.y94{bottom:344.128650px;}
.yfe{bottom:345.387300px;}
.y60{bottom:347.260350px;}
.y8e{bottom:349.659300px;}
.yb1{bottom:354.759150px;}
.y11e{bottom:355.594050px;}
.ya4{bottom:356.259300px;}
.y1a{bottom:357.680550px;}
.y70{bottom:357.760350px;}
.y93{bottom:360.762150px;}
.y40{bottom:365.079750px;}
.yee{bottom:366.159450px;}
.yd3{bottom:366.495300px;}
.y5f{bottom:368.260350px;}
.y8d{bottom:370.659300px;}
.yfd{bottom:370.887450px;}
.y19{bottom:372.621000px;}
.y11d{bottom:373.593600px;}
.ya3{bottom:377.259300px;}
.y6f{bottom:378.760350px;}
.yb0{bottom:380.367150px;}
.yd2{bottom:382.995300px;}
.y3f{bottom:386.079750px;}
.yed{bottom:387.159450px;}
.y18{bottom:387.561450px;}
.yfc{bottom:388.887000px;}
.y5e{bottom:389.260350px;}
.y11c{bottom:391.593150px;}
.y8c{bottom:391.659300px;}
.ya2{bottom:398.259300px;}
.yd1{bottom:399.495300px;}
.y6e{bottom:399.760350px;}
.y17{bottom:402.501900px;}
.yfb{bottom:406.886550px;}
.yec{bottom:408.159450px;}
.y11b{bottom:409.592700px;}
.y5d{bottom:410.260350px;}
.y3e{bottom:411.579750px;}
.y8b{bottom:417.267300px;}
.y16{bottom:417.442350px;}
.ya1{bottom:420.909300px;}
.yfa{bottom:424.886100px;}
.y6d{bottom:425.260350px;}
.ybf{bottom:426.681450px;}
.yeb{bottom:429.159450px;}
.y15{bottom:432.382800px;}
.y3d{bottom:432.579750px;}
.y11a{bottom:435.092850px;}
.y5c{bottom:435.760350px;}
.yd0{bottom:439.757700px;}
.yf9{bottom:442.885650px;}
.ybe{bottom:443.181450px;}
.ya0{bottom:444.759450px;}
.y8a{bottom:445.630350px;}
.y6c{bottom:446.260350px;}
.y14{bottom:447.323250px;}
.yea{bottom:450.159450px;}
.y119{bottom:453.092400px;}
.y3c{bottom:453.579750px;}
.y5b{bottom:456.760350px;}
.ybd{bottom:459.681450px;}
.y13{bottom:462.263700px;}
.y6b{bottom:467.260350px;}
.y9f{bottom:467.409450px;}
.yf8{bottom:468.385800px;}
.ycf{bottom:469.335300px;}
.y118{bottom:471.091950px;}
.ye9{bottom:471.159450px;}
.y3b{bottom:474.579750px;}
.y12{bottom:477.204150px;}
.y5a{bottom:477.760350px;}
.y89{bottom:483.760350px;}
.yf7{bottom:486.385350px;}
.y6a{bottom:488.260350px;}
.y9e{bottom:491.259750px;}
.y11{bottom:492.144600px;}
.y3a{bottom:495.579750px;}
.y117{bottom:496.592100px;}
.ye8{bottom:496.767450px;}
.y59{bottom:498.760350px;}
.yce{bottom:499.532100px;}
.ybc{bottom:499.946100px;}
.yf6{bottom:504.384900px;}
.y88{bottom:504.760350px;}
.y10{bottom:507.085050px;}
.y69{bottom:509.260350px;}
.y9d{bottom:512.259750px;}
.y116{bottom:514.591650px;}
.y39{bottom:516.579750px;}
.y58{bottom:519.760350px;}
.ye7{bottom:520.660350px;}
.yf5{bottom:522.384450px;}
.y87{bottom:525.760350px;}
.yf{bottom:525.867600px;}
.ybb{bottom:529.521300px;}
.y115{bottom:532.591200px;}
.y9c{bottom:533.259750px;}
.y38{bottom:537.579750px;}
.y57{bottom:540.760350px;}
.ye6{bottom:541.660350px;}
.yf4{bottom:545.530350px;}
.y86{bottom:546.760350px;}
.y114{bottom:550.590750px;}
.y72{bottom:551.238600px;}
.y9b{bottom:554.259750px;}
.yc7{bottom:555.760350px;}
.y37{bottom:558.579750px;}
.yba{bottom:559.718100px;}
.y56{bottom:561.760350px;}
.ye5{bottom:562.660350px;}
.y85{bottom:567.760350px;}
.ye{bottom:572.260050px;}
.y9a{bottom:575.259750px;}
.y113{bottom:576.090900px;}
.yc6{bottom:576.760350px;}
.y36{bottom:579.579750px;}
.ye4{bottom:583.660350px;}
.y55{bottom:587.260350px;}
.y84{bottom:588.760350px;}
.y112{bottom:594.090450px;}
.y99{bottom:596.259750px;}
.yd{bottom:597.760050px;}
.yc5{bottom:597.760350px;}
.ye3{bottom:604.660350px;}
.y35{bottom:605.949750px;}
.y54{bottom:608.260350px;}
.y83{bottom:609.760350px;}
.y127{bottom:612.090000px;}
.y111{bottom:619.590600px;}
.y98{bottom:621.759750px;}
.yaf{bottom:623.260200px;}
.yc4{bottom:623.260350px;}
.yc{bottom:624.130050px;}
.ye2{bottom:625.660350px;}
.y53{bottom:629.260350px;}
.y126{bottom:630.089550px;}
.y82{bottom:630.760350px;}
.y34{bottom:637.278300px;}
.y110{bottom:637.590150px;}
.y97{bottom:642.759750px;}
.yae{bottom:644.260200px;}
.yc3{bottom:644.260350px;}
.ye1{bottom:646.660350px;}
.y125{bottom:648.089100px;}
.y52{bottom:650.260350px;}
.y81{bottom:651.760350px;}
.y33{bottom:652.218750px;}
.y10f{bottom:655.589700px;}
.yb{bottom:659.260050px;}
.y96{bottom:663.759750px;}
.yad{bottom:665.260200px;}
.yc2{bottom:665.260350px;}
.y124{bottom:666.088650px;}
.y32{bottom:667.159200px;}
.ye0{bottom:667.660350px;}
.y80{bottom:672.760350px;}
.y10e{bottom:673.589250px;}
.y51{bottom:675.760350px;}
.y31{bottom:682.099650px;}
.ya{bottom:684.760050px;}
.yc1{bottom:686.260350px;}
.yf3{bottom:688.660350px;}
.y95{bottom:689.367900px;}
.yb9{bottom:689.928900px;}
.y123{bottom:691.588800px;}
.ydf{bottom:693.160350px;}
.y7f{bottom:693.760350px;}
.y50{bottom:696.760350px;}
.y30{bottom:697.040100px;}
.y92{bottom:698.260350px;}
.y10d{bottom:699.089400px;}
.yc0{bottom:707.260350px;}
.y122{bottom:709.588350px;}
.y9{bottom:711.130050px;}
.y2f{bottom:711.980550px;}
.yde{bottom:714.160350px;}
.y7e{bottom:714.760350px;}
.y10c{bottom:717.088950px;}
.y4f{bottom:717.760350px;}
.y91{bottom:719.260350px;}
.y2e{bottom:726.921000px;}
.y121{bottom:727.587900px;}
.ya7{bottom:729.909900px;}
.yb8{bottom:730.194150px;}
.y10b{bottom:735.088500px;}
.ydd{bottom:735.160350px;}
.y4e{bottom:738.760350px;}
.y7d{bottom:740.260350px;}
.y2d{bottom:741.861450px;}
.y8{bottom:746.260050px;}
.ya6{bottom:746.409900px;}
.y10a{bottom:753.088050px;}
.ycd{bottom:756.043050px;}
.ydc{bottom:756.160350px;}
.y2c{bottom:756.801900px;}
.y4d{bottom:759.760350px;}
.yb7{bottom:759.769350px;}
.y7c{bottom:761.260350px;}
.y68{bottom:763.660350px;}
.y120{bottom:771.087600px;}
.y2b{bottom:771.742350px;}
.y7{bottom:771.760050px;}
.ydb{bottom:777.160350px;}
.y109{bottom:778.588200px;}
.y7b{bottom:782.260350px;}
.y67{bottom:784.660350px;}
.y4c{bottom:785.260350px;}
.y2a{bottom:786.682800px;}
.yb5{bottom:795.218550px;}
.ycc{bottom:796.305900px;}
.y108{bottom:796.587750px;}
.y6{bottom:798.130050px;}
.yf2{bottom:798.160350px;}
.y29{bottom:801.623250px;}
.yda{bottom:802.660350px;}
.y7a{bottom:803.260350px;}
.yb4{bottom:804.218550px;}
.y66{bottom:805.660350px;}
.y4b{bottom:806.260350px;}
.yb6{bottom:811.718550px;}
.y107{bottom:814.587300px;}
.y28{bottom:816.563700px;}
.yf1{bottom:819.160350px;}
.yd9{bottom:823.660350px;}
.y79{bottom:824.260350px;}
.ycb{bottom:825.883500px;}
.y65{bottom:826.660350px;}
.y4a{bottom:827.260350px;}
.y27{bottom:831.504150px;}
.y106{bottom:832.586850px;}
.y5{bottom:835.959000px;}
.yf0{bottom:840.160350px;}
.yd8{bottom:844.660350px;}
.y78{bottom:845.260350px;}
.y26{bottom:846.444600px;}
.y64{bottom:847.660350px;}
.y49{bottom:848.260350px;}
.y105{bottom:858.087000px;}
.yac{bottom:858.160200px;}
.yef{bottom:861.160350px;}
.yc9{bottom:861.332700px;}
.y25{bottom:861.385050px;}
.yd7{bottom:865.660350px;}
.y4{bottom:865.959600px;}
.y77{bottom:866.260350px;}
.y63{bottom:868.660350px;}
.y48{bottom:869.260350px;}
.yc8{bottom:870.332700px;}
.y104{bottom:876.086550px;}
.y24{bottom:876.325500px;}
.yca{bottom:877.832700px;}
.yab{bottom:879.160200px;}
.yd6{bottom:886.660350px;}
.y76{bottom:887.260350px;}
.y47{bottom:890.260350px;}
.y103{bottom:894.086100px;}
.y62{bottom:894.130350px;}
.y23{bottom:895.108050px;}
.y3{bottom:895.960200px;}
.yaa{bottom:900.160200px;}
.y11f{bottom:901.586700px;}
.yd5{bottom:907.660350px;}
.y75{bottom:908.260350px;}
.y46{bottom:911.260350px;}
.y102{bottom:919.586250px;}
.y22{bottom:925.704450px;}
.ya9{bottom:925.768350px;}
.yd4{bottom:928.660350px;}
.y74{bottom:929.260350px;}
.y45{bottom:932.260350px;}
.y101{bottom:937.585800px;}
.y21{bottom:940.644900px;}
.y44{bottom:953.260350px;}
.ya8{bottom:954.130350px;}
.y73{bottom:954.868350px;}
.y20{bottom:955.585350px;}
.y2{bottom:1001.542500px;}
.y1{bottom:1013.812500px;}
.h1{height:36.720000px;}
.hb{height:41.856000px;}
.ha{height:43.296000px;}
.h8{height:45.720000px;}
.h3{height:45.900000px;}
.h6{height:47.088000px;}
.h5{height:48.708000px;}
.h4{height:52.320000px;}
.h7{height:54.120000px;}
.h2{height:73.248000px;}
.h9{height:73.296000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:208.155450px;}
.x6{left:211.710600px;}
.xe{left:216.658950px;}
.x19{left:219.846450px;}
.x15{left:220.911450px;}
.x2d{left:225.162750px;}
.x16{left:233.667450px;}
.x2{left:235.792950px;}
.xa{left:240.045600px;}
.x28{left:242.289450px;}
.x1f{left:254.146950px;}
.x13{left:261.436950px;}
.x3{left:266.662950px;}
.x12{left:277.111950px;}
.x24{left:284.721750px;}
.x8{left:286.883100px;}
.x1a{left:293.225250px;}
.x29{left:305.025600px;}
.x20{left:313.529100px;}
.x17{left:316.031100px;}
.x2b{left:317.741100px;}
.x22{left:319.508100px;}
.x2a{left:329.123100px;}
.x21{left:337.628100px;}
.x5{left:339.458100px;}
.x4{left:342.955950px;}
.x2c{left:354.959100px;}
.x7{left:364.598100px;}
.xd{left:374.427750px;}
.xc{left:377.715750px;}
.x23{left:380.018100px;}
.x9{left:396.143100px;}
.x10{left:397.749300px;}
.x18{left:409.823100px;}
.xb{left:418.806900px;}
.xf{left:420.837000px;}
.x1c{left:429.253650px;}
.x25{left:430.618950px;}
.x1b{left:439.123650px;}
.x27{left:553.359750px;}
.x1e{left:561.863250px;}
.x14{left:564.082050px;}
.x26{left:570.111750px;}
.x1d{left:578.615250px;}
.x11{left:665.980350px;}
@media print{
.v1{vertical-align:-5.866667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.666667pt;}
.ls1c{letter-spacing:-2.649600pt;}
.ls4{letter-spacing:-2.176000pt;}
.ls1{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-0.201600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls13{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.197333pt;}
.ls5{letter-spacing:0.201600pt;}
.ls18{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.421333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.570667pt;}
.lsf{letter-spacing:0.650667pt;}
.lsd{letter-spacing:0.714667pt;}
.lsc{letter-spacing:1.045333pt;}
.ls1a{letter-spacing:1.125333pt;}
.ls9{letter-spacing:1.173333pt;}
.ls17{letter-spacing:1.365333pt;}
.lse{letter-spacing:1.434667pt;}
.ls2{letter-spacing:1.712000pt;}
.ls19{letter-spacing:1.749333pt;}
.ls12{letter-spacing:1.786667pt;}
.lsb{letter-spacing:1.818667pt;}
.ls10{letter-spacing:2.213333pt;}
.ls6{letter-spacing:20.949333pt;}
.ls14{letter-spacing:29.354667pt;}
.wsba{word-spacing:-16.982400pt;}
.ws89{word-spacing:-16.341333pt;}
.wsae{word-spacing:-15.782400pt;}
.wsb9{word-spacing:-14.534400pt;}
.ws0{word-spacing:0.000000pt;}
.ws84{word-spacing:0.085333pt;}
.ws9{word-spacing:0.110400pt;}
.wsad{word-spacing:0.122667pt;}
.wsa4{word-spacing:0.138667pt;}
.ws2a{word-spacing:0.154667pt;}
.ws36{word-spacing:0.266667pt;}
.ws87{word-spacing:0.325333pt;}
.ws3d{word-spacing:0.453333pt;}
.ws62{word-spacing:0.485333pt;}
.ws6{word-spacing:0.705600pt;}
.ws5{word-spacing:0.844800pt;}
.ws91{word-spacing:0.944000pt;}
.ws6a{word-spacing:1.050667pt;}
.ws7f{word-spacing:1.194667pt;}
.ws79{word-spacing:1.360000pt;}
.ws27{word-spacing:1.376000pt;}
.wsaf{word-spacing:1.541333pt;}
.ws83{word-spacing:1.717333pt;}
.ws17{word-spacing:1.876800pt;}
.wsb{word-spacing:1.905600pt;}
.ws14{word-spacing:2.044800pt;}
.ws53{word-spacing:2.106667pt;}
.wsc{word-spacing:2.160000pt;}
.ws10{word-spacing:2.176000pt;}
.wsd{word-spacing:2.404800pt;}
.ws8e{word-spacing:2.458667pt;}
.ws42{word-spacing:2.485333pt;}
.ws1c{word-spacing:2.496000pt;}
.ws85{word-spacing:2.576000pt;}
.ws48{word-spacing:2.629333pt;}
.ws9b{word-spacing:2.773333pt;}
.wsb8{word-spacing:3.168000pt;}
.ws2b{word-spacing:3.285333pt;}
.ws20{word-spacing:3.302400pt;}
.ws37{word-spacing:3.381333pt;}
.wsb7{word-spacing:3.802667pt;}
.ws11{word-spacing:3.878400pt;}
.ws1a{word-spacing:3.945600pt;}
.wsab{word-spacing:3.952000pt;}
.ws6b{word-spacing:3.978667pt;}
.wsa{word-spacing:4.036800pt;}
.ws13{word-spacing:4.060800pt;}
.ws97{word-spacing:4.234667pt;}
.ws7{word-spacing:4.339200pt;}
.ws32{word-spacing:4.346667pt;}
.wsb1{word-spacing:4.368000pt;}
.ws82{word-spacing:4.394667pt;}
.wsf{word-spacing:4.694400pt;}
.wsaa{word-spacing:4.794667pt;}
.ws3b{word-spacing:4.864000pt;}
.ws50{word-spacing:4.992000pt;}
.ws6d{word-spacing:5.210667pt;}
.ws57{word-spacing:5.386667pt;}
.wsa9{word-spacing:5.738667pt;}
.ws40{word-spacing:5.749333pt;}
.ws5e{word-spacing:6.186667pt;}
.ws67{word-spacing:6.426667pt;}
.ws4d{word-spacing:6.453333pt;}
.wsb3{word-spacing:6.469333pt;}
.ws15{word-spacing:6.609600pt;}
.ws2{word-spacing:6.700800pt;}
.ws9c{word-spacing:6.725333pt;}
.ws86{word-spacing:6.805333pt;}
.ws7b{word-spacing:6.933333pt;}
.ws51{word-spacing:7.109333pt;}
.ws63{word-spacing:7.173333pt;}
.ws71{word-spacing:7.285333pt;}
.ws7a{word-spacing:7.301333pt;}
.ws5f{word-spacing:7.408000pt;}
.ws52{word-spacing:7.493333pt;}
.ws49{word-spacing:7.589333pt;}
.wsb6{word-spacing:7.642667pt;}
.ws77{word-spacing:7.669333pt;}
.wsa3{word-spacing:7.834667pt;}
.ws1b{word-spacing:7.867200pt;}
.ws75{word-spacing:8.064000pt;}
.ws9d{word-spacing:8.133333pt;}
.ws5c{word-spacing:8.144000pt;}
.ws8{word-spacing:8.227200pt;}
.ws61{word-spacing:8.245333pt;}
.ws7c{word-spacing:8.293333pt;}
.wsa0{word-spacing:8.304000pt;}
.ws21{word-spacing:8.865600pt;}
.ws66{word-spacing:9.301333pt;}
.ws16{word-spacing:9.302400pt;}
.ws94{word-spacing:9.456000pt;}
.ws8b{word-spacing:9.466667pt;}
.ws33{word-spacing:9.504000pt;}
.ws4f{word-spacing:9.584000pt;}
.ws12{word-spacing:9.652800pt;}
.ws7d{word-spacing:9.808000pt;}
.ws1{word-spacing:9.979200pt;}
.ws93{word-spacing:10.037333pt;}
.ws4{word-spacing:10.065600pt;}
.ws44{word-spacing:10.069333pt;}
.ws1d{word-spacing:10.372800pt;}
.ws2f{word-spacing:10.501333pt;}
.ws5d{word-spacing:10.512000pt;}
.ws18{word-spacing:10.780800pt;}
.ws4e{word-spacing:10.922667pt;}
.ws99{word-spacing:11.034667pt;}
.wsb4{word-spacing:11.370667pt;}
.ws2d{word-spacing:11.504000pt;}
.ws26{word-spacing:11.706667pt;}
.wsa1{word-spacing:11.898667pt;}
.ws59{word-spacing:12.074667pt;}
.ws4a{word-spacing:12.202667pt;}
.wsb2{word-spacing:12.293333pt;}
.ws1f{word-spacing:12.355200pt;}
.ws95{word-spacing:12.709333pt;}
.ws2e{word-spacing:13.328000pt;}
.ws3c{word-spacing:13.360000pt;}
.ws29{word-spacing:13.472000pt;}
.ws60{word-spacing:13.498667pt;}
.ws8c{word-spacing:13.557333pt;}
.ws76{word-spacing:13.669333pt;}
.ws9f{word-spacing:13.712000pt;}
.wsa7{word-spacing:13.802667pt;}
.ws7e{word-spacing:13.904000pt;}
.ws47{word-spacing:13.920000pt;}
.wsa6{word-spacing:14.501333pt;}
.ws43{word-spacing:14.549333pt;}
.ws6c{word-spacing:14.656000pt;}
.ws80{word-spacing:14.869333pt;}
.ws9e{word-spacing:14.997333pt;}
.ws6e{word-spacing:15.056000pt;}
.wsa5{word-spacing:15.072000pt;}
.ws4b{word-spacing:16.474667pt;}
.ws24{word-spacing:16.522667pt;}
.ws68{word-spacing:17.008000pt;}
.ws64{word-spacing:17.525333pt;}
.ws35{word-spacing:17.536000pt;}
.wsac{word-spacing:17.685333pt;}
.wsa8{word-spacing:18.480000pt;}
.ws28{word-spacing:18.549333pt;}
.ws46{word-spacing:18.890667pt;}
.ws9a{word-spacing:19.050667pt;}
.ws81{word-spacing:19.189333pt;}
.wse{word-spacing:19.689600pt;}
.ws72{word-spacing:19.749333pt;}
.ws1e{word-spacing:19.972800pt;}
.ws8d{word-spacing:20.570667pt;}
.ws30{word-spacing:20.944000pt;}
.ws31{word-spacing:20.949333pt;}
.ws19{word-spacing:20.985600pt;}
.ws74{word-spacing:21.376000pt;}
.ws25{word-spacing:22.416000pt;}
.ws78{word-spacing:22.506667pt;}
.ws41{word-spacing:23.216000pt;}
.ws3{word-spacing:23.630400pt;}
.ws56{word-spacing:23.658667pt;}
.ws96{word-spacing:23.744000pt;}
.ws3e{word-spacing:23.770667pt;}
.ws5b{word-spacing:24.565333pt;}
.ws22{word-spacing:24.645333pt;}
.ws69{word-spacing:25.557333pt;}
.ws4c{word-spacing:25.754667pt;}
.ws70{word-spacing:25.770667pt;}
.wsb0{word-spacing:25.792000pt;}
.ws23{word-spacing:25.808000pt;}
.ws34{word-spacing:25.824000pt;}
.ws5a{word-spacing:25.888000pt;}
.ws58{word-spacing:25.946667pt;}
.ws98{word-spacing:25.984000pt;}
.ws3a{word-spacing:26.080000pt;}
.wsb5{word-spacing:26.101333pt;}
.ws54{word-spacing:26.144000pt;}
.ws55{word-spacing:26.309333pt;}
.ws65{word-spacing:26.341333pt;}
.ws2c{word-spacing:26.384000pt;}
.ws45{word-spacing:26.426667pt;}
.ws38{word-spacing:26.453333pt;}
.wsa2{word-spacing:26.474667pt;}
.ws8f{word-spacing:26.586667pt;}
.ws90{word-spacing:26.592000pt;}
.ws39{word-spacing:26.634667pt;}
.ws73{word-spacing:26.650667pt;}
.ws3f{word-spacing:26.661333pt;}
.ws6f{word-spacing:26.666667pt;}
.ws88{word-spacing:130.235733pt;}
.ws92{word-spacing:185.186133pt;}
.ws8a{word-spacing:185.190400pt;}
._10{margin-left:-6.730667pt;}
._6{margin-left:-5.840000pt;}
._7{margin-left:-4.426667pt;}
._1{margin-left:-3.146667pt;}
._0{margin-left:-2.176000pt;}
._4{margin-left:-1.024000pt;}
._3{width:1.344000pt;}
._2{width:2.336000pt;}
._5{width:3.520000pt;}
._e{width:206.246400pt;}
._c{width:235.089067pt;}
._f{width:238.971733pt;}
._9{width:246.257067pt;}
._d{width:250.139733pt;}
._8{width:269.628800pt;}
._b{width:324.556800pt;}
._a{width:336.716800pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:223.934667pt;}
.y1e{bottom:264.816667pt;}
.y43{bottom:268.515333pt;}
.y90{bottom:273.474933pt;}
.y100{bottom:275.011733pt;}
.yb3{bottom:278.008133pt;}
.y1d{bottom:278.097067pt;}
.y42{bottom:287.182000pt;}
.y61{bottom:290.009200pt;}
.yff{bottom:291.011333pt;}
.y1c{bottom:291.377467pt;}
.y8f{bottom:292.141600pt;}
.yb2{bottom:296.674800pt;}
.ya5{bottom:298.008267pt;}
.y71{bottom:299.342533pt;}
.y1b{bottom:304.657867pt;}
.y41{bottom:305.848667pt;}
.y94{bottom:305.892133pt;}
.yfe{bottom:307.010933pt;}
.y60{bottom:308.675867pt;}
.y8e{bottom:310.808267pt;}
.yb1{bottom:315.341467pt;}
.y11e{bottom:316.083600pt;}
.ya4{bottom:316.674933pt;}
.y1a{bottom:317.938267pt;}
.y70{bottom:318.009200pt;}
.y93{bottom:320.677467pt;}
.y40{bottom:324.515333pt;}
.yee{bottom:325.475067pt;}
.yd3{bottom:325.773600pt;}
.y5f{bottom:327.342533pt;}
.y8d{bottom:329.474933pt;}
.yfd{bottom:329.677733pt;}
.y19{bottom:331.218667pt;}
.y11d{bottom:332.083200pt;}
.ya3{bottom:335.341600pt;}
.y6f{bottom:336.675867pt;}
.yb0{bottom:338.104133pt;}
.yd2{bottom:340.440267pt;}
.y3f{bottom:343.182000pt;}
.yed{bottom:344.141733pt;}
.y18{bottom:344.499067pt;}
.yfc{bottom:345.677333pt;}
.y5e{bottom:346.009200pt;}
.y11c{bottom:348.082800pt;}
.y8c{bottom:348.141600pt;}
.ya2{bottom:354.008267pt;}
.yd1{bottom:355.106933pt;}
.y6e{bottom:355.342533pt;}
.y17{bottom:357.779467pt;}
.yfb{bottom:361.676933pt;}
.yec{bottom:362.808400pt;}
.y11b{bottom:364.082400pt;}
.y5d{bottom:364.675867pt;}
.y3e{bottom:365.848667pt;}
.y8b{bottom:370.904267pt;}
.y16{bottom:371.059867pt;}
.ya1{bottom:374.141600pt;}
.yfa{bottom:377.676533pt;}
.y6d{bottom:378.009200pt;}
.ybf{bottom:379.272400pt;}
.yeb{bottom:381.475067pt;}
.y15{bottom:384.340267pt;}
.y3d{bottom:384.515333pt;}
.y11a{bottom:386.749200pt;}
.y5c{bottom:387.342533pt;}
.yd0{bottom:390.895733pt;}
.yf9{bottom:393.676133pt;}
.ybe{bottom:393.939067pt;}
.ya0{bottom:395.341733pt;}
.y8a{bottom:396.115867pt;}
.y6c{bottom:396.675867pt;}
.y14{bottom:397.620667pt;}
.yea{bottom:400.141733pt;}
.y119{bottom:402.748800pt;}
.y3c{bottom:403.182000pt;}
.y5b{bottom:406.009200pt;}
.ybd{bottom:408.605733pt;}
.y13{bottom:410.901067pt;}
.y6b{bottom:415.342533pt;}
.y9f{bottom:415.475067pt;}
.yf8{bottom:416.342933pt;}
.ycf{bottom:417.186933pt;}
.y118{bottom:418.748400pt;}
.ye9{bottom:418.808400pt;}
.y3b{bottom:421.848667pt;}
.y12{bottom:424.181467pt;}
.y5a{bottom:424.675867pt;}
.y89{bottom:430.009200pt;}
.yf7{bottom:432.342533pt;}
.y6a{bottom:434.009200pt;}
.y9e{bottom:436.675333pt;}
.y11{bottom:437.461867pt;}
.y3a{bottom:440.515333pt;}
.y117{bottom:441.415200pt;}
.ye8{bottom:441.571067pt;}
.y59{bottom:443.342533pt;}
.yce{bottom:444.028533pt;}
.ybc{bottom:444.396533pt;}
.yf6{bottom:448.342133pt;}
.y88{bottom:448.675867pt;}
.y10{bottom:450.742267pt;}
.y69{bottom:452.675867pt;}
.y9d{bottom:455.342000pt;}
.y116{bottom:457.414800pt;}
.y39{bottom:459.182000pt;}
.y58{bottom:462.009200pt;}
.ye7{bottom:462.809200pt;}
.yf5{bottom:464.341733pt;}
.y87{bottom:467.342533pt;}
.yf{bottom:467.437867pt;}
.ybb{bottom:470.685600pt;}
.y115{bottom:473.414400pt;}
.y9c{bottom:474.008667pt;}
.y38{bottom:477.848667pt;}
.y57{bottom:480.675867pt;}
.ye6{bottom:481.475867pt;}
.yf4{bottom:484.915867pt;}
.y86{bottom:486.009200pt;}
.y114{bottom:489.414000pt;}
.y72{bottom:489.989867pt;}
.y9b{bottom:492.675333pt;}
.yc7{bottom:494.009200pt;}
.y37{bottom:496.515333pt;}
.yba{bottom:497.527200pt;}
.y56{bottom:499.342533pt;}
.ye5{bottom:500.142533pt;}
.y85{bottom:504.675867pt;}
.ye{bottom:508.675600pt;}
.y9a{bottom:511.342000pt;}
.y113{bottom:512.080800pt;}
.yc6{bottom:512.675867pt;}
.y36{bottom:515.182000pt;}
.ye4{bottom:518.809200pt;}
.y55{bottom:522.009200pt;}
.y84{bottom:523.342533pt;}
.y112{bottom:528.080400pt;}
.y99{bottom:530.008667pt;}
.yd{bottom:531.342267pt;}
.yc5{bottom:531.342533pt;}
.ye3{bottom:537.475867pt;}
.y35{bottom:538.622000pt;}
.y54{bottom:540.675867pt;}
.y83{bottom:542.009200pt;}
.y127{bottom:544.080000pt;}
.y111{bottom:550.747200pt;}
.y98{bottom:552.675333pt;}
.yaf{bottom:554.009067pt;}
.yc4{bottom:554.009200pt;}
.yc{bottom:554.782267pt;}
.ye2{bottom:556.142533pt;}
.y53{bottom:559.342533pt;}
.y126{bottom:560.079600pt;}
.y82{bottom:560.675867pt;}
.y34{bottom:566.469600pt;}
.y110{bottom:566.746800pt;}
.y97{bottom:571.342000pt;}
.yae{bottom:572.675733pt;}
.yc3{bottom:572.675867pt;}
.ye1{bottom:574.809200pt;}
.y125{bottom:576.079200pt;}
.y52{bottom:578.009200pt;}
.y81{bottom:579.342533pt;}
.y33{bottom:579.750000pt;}
.y10f{bottom:582.746400pt;}
.yb{bottom:586.008933pt;}
.y96{bottom:590.008667pt;}
.yad{bottom:591.342400pt;}
.yc2{bottom:591.342533pt;}
.y124{bottom:592.078800pt;}
.y32{bottom:593.030400pt;}
.ye0{bottom:593.475867pt;}
.y80{bottom:598.009200pt;}
.y10e{bottom:598.746000pt;}
.y51{bottom:600.675867pt;}
.y31{bottom:606.310800pt;}
.ya{bottom:608.675600pt;}
.yc1{bottom:610.009200pt;}
.yf3{bottom:612.142533pt;}
.y95{bottom:612.771467pt;}
.yb9{bottom:613.270133pt;}
.y123{bottom:614.745600pt;}
.ydf{bottom:616.142533pt;}
.y7f{bottom:616.675867pt;}
.y50{bottom:619.342533pt;}
.y30{bottom:619.591200pt;}
.y92{bottom:620.675867pt;}
.y10d{bottom:621.412800pt;}
.yc0{bottom:628.675867pt;}
.y122{bottom:630.745200pt;}
.y9{bottom:632.115600pt;}
.y2f{bottom:632.871600pt;}
.yde{bottom:634.809200pt;}
.y7e{bottom:635.342533pt;}
.y10c{bottom:637.412400pt;}
.y4f{bottom:638.009200pt;}
.y91{bottom:639.342533pt;}
.y2e{bottom:646.152000pt;}
.y121{bottom:646.744800pt;}
.ya7{bottom:648.808800pt;}
.yb8{bottom:649.061467pt;}
.y10b{bottom:653.412000pt;}
.ydd{bottom:653.475867pt;}
.y4e{bottom:656.675867pt;}
.y7d{bottom:658.009200pt;}
.y2d{bottom:659.432400pt;}
.y8{bottom:663.342267pt;}
.ya6{bottom:663.475467pt;}
.y10a{bottom:669.411600pt;}
.ycd{bottom:672.038267pt;}
.ydc{bottom:672.142533pt;}
.y2c{bottom:672.712800pt;}
.y4d{bottom:675.342533pt;}
.yb7{bottom:675.350533pt;}
.y7c{bottom:676.675867pt;}
.y68{bottom:678.809200pt;}
.y120{bottom:685.411200pt;}
.y2b{bottom:685.993200pt;}
.y7{bottom:686.008933pt;}
.ydb{bottom:690.809200pt;}
.y109{bottom:692.078400pt;}
.y7b{bottom:695.342533pt;}
.y67{bottom:697.475867pt;}
.y4c{bottom:698.009200pt;}
.y2a{bottom:699.273600pt;}
.yb5{bottom:706.860933pt;}
.ycc{bottom:707.827467pt;}
.y108{bottom:708.078000pt;}
.y6{bottom:709.448933pt;}
.yf2{bottom:709.475867pt;}
.y29{bottom:712.554000pt;}
.yda{bottom:713.475867pt;}
.y7a{bottom:714.009200pt;}
.yb4{bottom:714.860933pt;}
.y66{bottom:716.142533pt;}
.y4b{bottom:716.675867pt;}
.yb6{bottom:721.527600pt;}
.y107{bottom:724.077600pt;}
.y28{bottom:725.834400pt;}
.yf1{bottom:728.142533pt;}
.yd9{bottom:732.142533pt;}
.y79{bottom:732.675867pt;}
.ycb{bottom:734.118667pt;}
.y65{bottom:734.809200pt;}
.y4a{bottom:735.342533pt;}
.y27{bottom:739.114800pt;}
.y106{bottom:740.077200pt;}
.y5{bottom:743.074667pt;}
.yf0{bottom:746.809200pt;}
.yd8{bottom:750.809200pt;}
.y78{bottom:751.342533pt;}
.y26{bottom:752.395200pt;}
.y64{bottom:753.475867pt;}
.y49{bottom:754.009200pt;}
.y105{bottom:762.744000pt;}
.yac{bottom:762.809067pt;}
.yef{bottom:765.475867pt;}
.yc9{bottom:765.629067pt;}
.y25{bottom:765.675600pt;}
.yd7{bottom:769.475867pt;}
.y4{bottom:769.741867pt;}
.y77{bottom:770.009200pt;}
.y63{bottom:772.142533pt;}
.y48{bottom:772.675867pt;}
.yc8{bottom:773.629067pt;}
.y104{bottom:778.743600pt;}
.y24{bottom:778.956000pt;}
.yca{bottom:780.295733pt;}
.yab{bottom:781.475733pt;}
.yd6{bottom:788.142533pt;}
.y76{bottom:788.675867pt;}
.y47{bottom:791.342533pt;}
.y103{bottom:794.743200pt;}
.y62{bottom:794.782533pt;}
.y23{bottom:795.651600pt;}
.y3{bottom:796.409067pt;}
.yaa{bottom:800.142400pt;}
.y11f{bottom:801.410400pt;}
.yd5{bottom:806.809200pt;}
.y75{bottom:807.342533pt;}
.y46{bottom:810.009200pt;}
.y102{bottom:817.410000pt;}
.y22{bottom:822.848400pt;}
.ya9{bottom:822.905200pt;}
.yd4{bottom:825.475867pt;}
.y74{bottom:826.009200pt;}
.y45{bottom:828.675867pt;}
.y101{bottom:833.409600pt;}
.y21{bottom:836.128800pt;}
.y44{bottom:847.342533pt;}
.ya8{bottom:848.115867pt;}
.y73{bottom:848.771867pt;}
.y20{bottom:849.409200pt;}
.y2{bottom:890.260000pt;}
.y1{bottom:901.166667pt;}
.h1{height:32.640000pt;}
.hb{height:37.205333pt;}
.ha{height:38.485333pt;}
.h8{height:40.640000pt;}
.h3{height:40.800000pt;}
.h6{height:41.856000pt;}
.h5{height:43.296000pt;}
.h4{height:46.506667pt;}
.h7{height:48.106667pt;}
.h2{height:65.109333pt;}
.h9{height:65.152000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:185.027067pt;}
.x6{left:188.187200pt;}
.xe{left:192.585733pt;}
.x19{left:195.419067pt;}
.x15{left:196.365733pt;}
.x2d{left:200.144667pt;}
.x16{left:207.704400pt;}
.x2{left:209.593733pt;}
.xa{left:213.373867pt;}
.x28{left:215.368400pt;}
.x1f{left:225.908400pt;}
.x13{left:232.388400pt;}
.x3{left:237.033733pt;}
.x12{left:246.321733pt;}
.x24{left:253.086000pt;}
.x8{left:255.007200pt;}
.x1a{left:260.644667pt;}
.x29{left:271.133867pt;}
.x20{left:278.692533pt;}
.x17{left:280.916533pt;}
.x2b{left:282.436533pt;}
.x22{left:284.007200pt;}
.x2a{left:292.553867pt;}
.x21{left:300.113867pt;}
.x5{left:301.740533pt;}
.x4{left:304.849733pt;}
.x2c{left:315.519200pt;}
.x7{left:324.087200pt;}
.xd{left:332.824667pt;}
.xc{left:335.747333pt;}
.x23{left:337.793867pt;}
.x9{left:352.127200pt;}
.x10{left:353.554933pt;}
.x18{left:364.287200pt;}
.xb{left:372.272800pt;}
.xf{left:374.077333pt;}
.x1c{left:381.558800pt;}
.x25{left:382.772400pt;}
.x1b{left:390.332133pt;}
.x27{left:491.875333pt;}
.x1e{left:499.434000pt;}
.x14{left:501.406267pt;}
.x26{left:506.766000pt;}
.x1d{left:514.324667pt;}
.x11{left:591.982533pt;}
}




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