
    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_42f08e866a743cf9e81653a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_bbabc3d459885896b501d507.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948730;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_ccb49c806977127622b8a9cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064000;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_86e6ed7b3faf62b044d45ddf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_e604813e95426c9b54ff6633.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ec372c582c8eb38581584cde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3f5e950c43c488880f22b3cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.032000;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls6{letter-spacing:-3.150000px;}
.ls14{letter-spacing:-1.056000px;}
.ls1e{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.604800px;}
.ls1a{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.528000px;}
.ls1c{letter-spacing:-0.462000px;}
.ls19{letter-spacing:-0.396000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.330000px;}
.lsc{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.264000px;}
.ls29{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.198000px;}
.ls24{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.132000px;}
.lsf{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.066000px;}
.lsb{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.066000px;}
.ls22{letter-spacing:0.120000px;}
.lse{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.270000px;}
.ls16{letter-spacing:0.300000px;}
.ls11{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.396000px;}
.ls2b{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.900000px;}
.ls28{letter-spacing:0.960000px;}
.ls2a{letter-spacing:1.320000px;}
.ls27{letter-spacing:1.380000px;}
.ls25{letter-spacing:1.620000px;}
.ls18{letter-spacing:1.680000px;}
.ls5{letter-spacing:2.100000px;}
.ls21{letter-spacing:2.220000px;}
.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;}
}
.ws93{word-spacing:-13.620000px;}
.ws37{word-spacing:-13.068000px;}
.ws97{word-spacing:-12.480000px;}
.ws96{word-spacing:-12.300000px;}
.ws98{word-spacing:-12.240000px;}
.ws82{word-spacing:-12.210000px;}
.ws94{word-spacing:-11.640000px;}
.ws92{word-spacing:-11.400000px;}
.ws95{word-spacing:-11.340000px;}
.ws8c{word-spacing:-3.498000px;}
.ws1a{word-spacing:-3.234000px;}
.ws3d{word-spacing:-3.168000px;}
.wsc{word-spacing:-3.102000px;}
.ws9f{word-spacing:-3.060000px;}
.wsd{word-spacing:-3.036000px;}
.ws16{word-spacing:-3.024000px;}
.ws7a{word-spacing:-3.000000px;}
.ws85{word-spacing:-2.970000px;}
.ws9c{word-spacing:-2.940000px;}
.wse{word-spacing:-2.904000px;}
.ws7b{word-spacing:-2.880000px;}
.ws25{word-spacing:-2.838000px;}
.ws2d{word-spacing:-2.820000px;}
.ws26{word-spacing:-2.772000px;}
.ws8d{word-spacing:-2.706000px;}
.ws53{word-spacing:-2.640000px;}
.ws67{word-spacing:-2.580000px;}
.ws18{word-spacing:-2.574000px;}
.wsa3{word-spacing:-2.460000px;}
.ws71{word-spacing:-2.442000px;}
.wsa2{word-spacing:-2.400000px;}
.ws1b{word-spacing:-2.376000px;}
.ws91{word-spacing:-2.340000px;}
.ws69{word-spacing:-2.310000px;}
.ws19{word-spacing:-2.244000px;}
.ws86{word-spacing:-2.178000px;}
.ws20{word-spacing:-2.112000px;}
.ws83{word-spacing:-2.046000px;}
.ws9a{word-spacing:-2.040000px;}
.ws99{word-spacing:-1.980000px;}
.ws73{word-spacing:-1.914000px;}
.ws46{word-spacing:-1.848000px;}
.ws61{word-spacing:-1.782000px;}
.ws87{word-spacing:-1.716000px;}
.ws65{word-spacing:-1.680000px;}
.ws40{word-spacing:-1.650000px;}
.wsa0{word-spacing:-1.620000px;}
.ws13{word-spacing:-1.584000px;}
.ws79{word-spacing:-1.560000px;}
.ws76{word-spacing:-1.518000px;}
.ws3c{word-spacing:-1.452000px;}
.ws3e{word-spacing:-1.386000px;}
.ws21{word-spacing:-1.320000px;}
.ws8e{word-spacing:-1.254000px;}
.ws56{word-spacing:-1.188000px;}
.ws63{word-spacing:-1.122000px;}
.ws4e{word-spacing:-1.056000px;}
.ws48{word-spacing:-0.924000px;}
.ws47{word-spacing:-0.858000px;}
.ws7c{word-spacing:-0.840000px;}
.ws44{word-spacing:-0.792000px;}
.ws55{word-spacing:-0.726000px;}
.wsa1{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.594000px;}
.wsa5{word-spacing:-0.540000px;}
.ws28{word-spacing:-0.528000px;}
.ws2{word-spacing:-0.504000px;}
.ws6d{word-spacing:-0.480000px;}
.ws68{word-spacing:-0.462000px;}
.ws30{word-spacing:-0.420000px;}
.ws34{word-spacing:-0.396000px;}
.ws9b{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.330000px;}
.ws42{word-spacing:-0.324000px;}
.ws90{word-spacing:-0.270000px;}
.ws64{word-spacing:-0.264000px;}
.wsf{word-spacing:-0.198000px;}
.ws9{word-spacing:-0.132000px;}
.wsb{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.066000px;}
.wsa8{word-spacing:0.120000px;}
.ws5c{word-spacing:0.132000px;}
.ws2e{word-spacing:0.180000px;}
.ws8{word-spacing:0.198000px;}
.wsa{word-spacing:0.264000px;}
.ws80{word-spacing:0.330000px;}
.ws1e{word-spacing:0.396000px;}
.ws1d{word-spacing:0.462000px;}
.ws2a{word-spacing:0.528000px;}
.ws33{word-spacing:0.594000px;}
.ws31{word-spacing:0.600000px;}
.ws1{word-spacing:0.604800px;}
.ws70{word-spacing:0.660000px;}
.ws6e{word-spacing:0.720000px;}
.ws5b{word-spacing:0.726000px;}
.ws52{word-spacing:0.840000px;}
.ws49{word-spacing:0.858000px;}
.ws36{word-spacing:0.924000px;}
.ws35{word-spacing:0.990000px;}
.ws89{word-spacing:1.020000px;}
.ws62{word-spacing:1.056000px;}
.ws77{word-spacing:1.122000px;}
.ws24{word-spacing:1.188000px;}
.ws43{word-spacing:1.254000px;}
.ws39{word-spacing:1.320000px;}
.ws88{word-spacing:1.386000px;}
.ws3{word-spacing:1.452000px;}
.ws4{word-spacing:1.518000px;}
.ws3b{word-spacing:1.584000px;}
.wsa4{word-spacing:1.620000px;}
.ws72{word-spacing:1.650000px;}
.wsa9{word-spacing:1.680000px;}
.ws29{word-spacing:1.716000px;}
.ws6c{word-spacing:1.740000px;}
.ws2b{word-spacing:1.782000px;}
.wsa7{word-spacing:1.800000px;}
.ws1f{word-spacing:1.848000px;}
.ws27{word-spacing:1.914000px;}
.ws12{word-spacing:1.980000px;}
.ws84{word-spacing:2.046000px;}
.ws32{word-spacing:2.112000px;}
.ws5a{word-spacing:2.178000px;}
.ws41{word-spacing:2.244000px;}
.ws54{word-spacing:2.310000px;}
.ws4f{word-spacing:2.376000px;}
.ws75{word-spacing:2.508000px;}
.ws5f{word-spacing:2.574000px;}
.ws50{word-spacing:2.640000px;}
.ws59{word-spacing:2.772000px;}
.ws5d{word-spacing:2.838000px;}
.ws45{word-spacing:2.904000px;}
.ws7e{word-spacing:3.036000px;}
.ws7d{word-spacing:3.120000px;}
.ws17{word-spacing:3.150000px;}
.ws8f{word-spacing:3.168000px;}
.ws14{word-spacing:3.276000px;}
.ws78{word-spacing:3.300000px;}
.ws4c{word-spacing:3.366000px;}
.ws6{word-spacing:3.432000px;}
.ws2f{word-spacing:3.480000px;}
.ws38{word-spacing:3.498000px;}
.ws23{word-spacing:3.630000px;}
.ws3a{word-spacing:3.762000px;}
.ws66{word-spacing:3.780000px;}
.ws1c{word-spacing:3.828000px;}
.ws15{word-spacing:3.864000px;}
.ws57{word-spacing:3.894000px;}
.ws5e{word-spacing:3.960000px;}
.ws60{word-spacing:4.026000px;}
.ws8b{word-spacing:4.224000px;}
.ws4b{word-spacing:4.290000px;}
.ws51{word-spacing:4.440000px;}
.ws4d{word-spacing:4.488000px;}
.ws6a{word-spacing:4.620000px;}
.ws81{word-spacing:4.752000px;}
.ws7f{word-spacing:4.884000px;}
.ws58{word-spacing:4.950000px;}
.ws6b{word-spacing:4.980000px;}
.ws11{word-spacing:5.040000px;}
.ws9d{word-spacing:5.160000px;}
.ws8a{word-spacing:5.340000px;}
.ws10{word-spacing:5.700000px;}
.ws7{word-spacing:5.742000px;}
.ws9e{word-spacing:5.760000px;}
.ws74{word-spacing:5.874000px;}
.ws4a{word-spacing:6.006000px;}
.wsa6{word-spacing:6.120000px;}
.ws22{word-spacing:6.270000px;}
._9{margin-left:-7.203840px;}
._7{margin-left:-6.203280px;}
._6{margin-left:-4.688520px;}
._5{margin-left:-3.464280px;}
._1{margin-left:-2.373840px;}
._0{margin-left:-1.065960px;}
._2{width:1.088640px;}
._3{width:2.231160px;}
._4{width:3.240960px;}
._8{width:4.653840px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y20{bottom:70.883850px;}
.y1f{bottom:99.911250px;}
.y84{bottom:102.443550px;}
.y92{bottom:102.469050px;}
.y4d{bottom:102.470550px;}
.ye8{bottom:102.472050px;}
.yde{bottom:103.438500px;}
.y66{bottom:103.441500px;}
.y122{bottom:103.499400px;}
.yf2{bottom:107.976000px;}
.y1e{bottom:111.912750px;}
.ybe{bottom:112.444050px;}
.y121{bottom:119.999400px;}
.y83{bottom:120.445050px;}
.y91{bottom:120.470550px;}
.y4c{bottom:120.472050px;}
.ye7{bottom:120.473550px;}
.ydd{bottom:121.440000px;}
.y65{bottom:121.443000px;}
.y1d{bottom:123.914250px;}
.yf1{bottom:124.476000px;}
.ybd{bottom:130.445550px;}
.y1c{bottom:135.915750px;}
.y120{bottom:136.499400px;}
.y82{bottom:138.446550px;}
.y90{bottom:138.472050px;}
.y4b{bottom:138.473550px;}
.ye6{bottom:138.475050px;}
.ydc{bottom:139.441500px;}
.y64{bottom:139.444500px;}
.yf0{bottom:140.976000px;}
.ybc{bottom:148.447050px;}
.y1b{bottom:152.169750px;}
.y11f{bottom:152.999400px;}
.y81{bottom:156.448050px;}
.y8f{bottom:156.473550px;}
.y4a{bottom:156.475050px;}
.ye5{bottom:156.476550px;}
.ydb{bottom:157.443000px;}
.y63{bottom:157.446000px;}
.y1a{bottom:164.171250px;}
.ybb{bottom:166.448550px;}
.yef{bottom:166.970550px;}
.y11e{bottom:169.499400px;}
.y80{bottom:174.449550px;}
.y8e{bottom:174.475050px;}
.y49{bottom:174.476550px;}
.ye4{bottom:174.478050px;}
.yda{bottom:175.444500px;}
.y62{bottom:175.447500px;}
.y19{bottom:180.425250px;}
.yba{bottom:184.450050px;}
.y11d{bottom:185.999400px;}
.y7f{bottom:192.451050px;}
.y8d{bottom:192.476550px;}
.y48{bottom:192.478050px;}
.ye3{bottom:192.479550px;}
.yd9{bottom:193.446000px;}
.y61{bottom:193.449000px;}
.yb9{bottom:202.451550px;}
.y11c{bottom:202.499400px;}
.yee{bottom:210.425400px;}
.y7e{bottom:210.452550px;}
.y8c{bottom:210.478050px;}
.y47{bottom:210.479550px;}
.ye2{bottom:210.481050px;}
.yd8{bottom:211.447500px;}
.y60{bottom:211.450500px;}
.y11b{bottom:218.999400px;}
.yb8{bottom:220.453050px;}
.yed{bottom:228.426900px;}
.y7d{bottom:228.454050px;}
.y8b{bottom:228.479550px;}
.y46{bottom:228.481050px;}
.y18{bottom:228.704550px;}
.yd7{bottom:229.449000px;}
.y5f{bottom:229.452000px;}
.y11a{bottom:235.499400px;}
.ye1{bottom:237.482400px;}
.yb7{bottom:238.454550px;}
.yec{bottom:246.428400px;}
.y7c{bottom:246.455550px;}
.y8a{bottom:246.481050px;}
.y17{bottom:246.706050px;}
.yd6{bottom:247.450500px;}
.y5e{bottom:247.453500px;}
.y119{bottom:251.999400px;}
.y45{bottom:255.482400px;}
.yb6{bottom:256.456050px;}
.yeb{bottom:264.429900px;}
.y7b{bottom:264.457050px;}
.y16{bottom:264.707550px;}
.yd5{bottom:265.452000px;}
.y5d{bottom:265.455000px;}
.y118{bottom:268.499400px;}
.y44{bottom:273.482400px;}
.yb5{bottom:274.457550px;}
.yea{bottom:282.431400px;}
.y7a{bottom:282.458550px;}
.yd4{bottom:283.453500px;}
.y5c{bottom:283.456500px;}
.y117{bottom:284.999400px;}
.y43{bottom:291.482400px;}
.y15{bottom:291.708900px;}
.yb4{bottom:292.459050px;}
.ye9{bottom:300.432900px;}
.y79{bottom:300.460050px;}
.yd3{bottom:301.455000px;}
.y5b{bottom:301.458000px;}
.y116{bottom:301.499400px;}
.y42{bottom:309.482400px;}
.y14{bottom:309.708900px;}
.yb3{bottom:310.460550px;}
.y115{bottom:317.999400px;}
.ye0{bottom:318.434400px;}
.y78{bottom:318.461550px;}
.yd2{bottom:319.456500px;}
.y5a{bottom:319.459500px;}
.y41{bottom:327.482400px;}
.y13{bottom:327.708900px;}
.yb2{bottom:328.462050px;}
.y114{bottom:334.499400px;}
.ydf{bottom:336.435900px;}
.y77{bottom:336.463050px;}
.yd1{bottom:337.458000px;}
.y59{bottom:337.461000px;}
.y40{bottom:345.482400px;}
.yb1{bottom:346.463550px;}
.y113{bottom:350.999400px;}
.y89{bottom:354.437400px;}
.y76{bottom:354.464550px;}
.y12{bottom:354.689400px;}
.yd0{bottom:355.459500px;}
.y58{bottom:355.462500px;}
.y3f{bottom:363.482400px;}
.yb0{bottom:364.465050px;}
.y112{bottom:367.499400px;}
.y88{bottom:372.438900px;}
.y75{bottom:372.466050px;}
.y11{bottom:372.690900px;}
.ycf{bottom:373.461000px;}
.y57{bottom:373.464000px;}
.y3e{bottom:381.482400px;}
.yaf{bottom:382.466550px;}
.y111{bottom:383.999400px;}
.y87{bottom:390.440400px;}
.y74{bottom:390.467550px;}
.y10{bottom:390.692400px;}
.yce{bottom:391.462500px;}
.y56{bottom:391.465500px;}
.y3d{bottom:399.482400px;}
.yae{bottom:400.468050px;}
.y110{bottom:400.499400px;}
.y86{bottom:408.441900px;}
.y73{bottom:408.469050px;}
.yf{bottom:408.693900px;}
.ycd{bottom:409.464000px;}
.y55{bottom:409.467000px;}
.y10f{bottom:416.999400px;}
.y3c{bottom:417.482400px;}
.yad{bottom:418.469550px;}
.y85{bottom:426.443400px;}
.y72{bottom:426.470550px;}
.ye{bottom:426.695400px;}
.ycc{bottom:427.465500px;}
.y54{bottom:427.468500px;}
.y10e{bottom:433.499400px;}
.yac{bottom:436.471050px;}
.y3b{bottom:444.444900px;}
.y71{bottom:444.472050px;}
.yd{bottom:444.696900px;}
.ycb{bottom:445.467000px;}
.y53{bottom:445.470000px;}
.y10d{bottom:449.999400px;}
.yab{bottom:454.472550px;}
.y3a{bottom:462.446400px;}
.y70{bottom:462.473550px;}
.yc{bottom:462.698400px;}
.yca{bottom:463.468500px;}
.y52{bottom:463.471500px;}
.y10c{bottom:466.499400px;}
.yaa{bottom:472.474050px;}
.y39{bottom:480.447900px;}
.y6f{bottom:480.475050px;}
.yb{bottom:480.699900px;}
.yc9{bottom:481.470000px;}
.y51{bottom:481.473000px;}
.y10b{bottom:482.999400px;}
.ya9{bottom:490.475550px;}
.y38{bottom:498.449400px;}
.y6e{bottom:498.476550px;}
.ya{bottom:498.701400px;}
.yc8{bottom:499.471500px;}
.y50{bottom:499.474500px;}
.y10a{bottom:499.499400px;}
.ya8{bottom:508.477050px;}
.y109{bottom:515.999400px;}
.y37{bottom:516.450900px;}
.y6d{bottom:516.478050px;}
.y9{bottom:516.702900px;}
.yc7{bottom:517.473000px;}
.y4f{bottom:517.476000px;}
.ya7{bottom:526.478550px;}
.y108{bottom:532.499400px;}
.y36{bottom:534.452400px;}
.y6c{bottom:534.479550px;}
.y8{bottom:534.704400px;}
.yc6{bottom:535.474500px;}
.ya6{bottom:544.480050px;}
.y4e{bottom:544.970550px;}
.y107{bottom:548.999400px;}
.y35{bottom:552.453900px;}
.y6b{bottom:552.481050px;}
.y7{bottom:552.705900px;}
.ya5{bottom:562.481550px;}
.yc5{bottom:562.969200px;}
.y106{bottom:565.499400px;}
.y34{bottom:570.455400px;}
.y6{bottom:570.707400px;}
.y6a{bottom:579.482400px;}
.ya4{bottom:580.483050px;}
.y105{bottom:581.999400px;}
.y33{bottom:588.456900px;}
.y5{bottom:588.708900px;}
.y69{bottom:597.482400px;}
.ya3{bottom:598.484550px;}
.y104{bottom:598.499400px;}
.y32{bottom:606.458400px;}
.y103{bottom:614.999400px;}
.y68{bottom:615.482400px;}
.y4{bottom:616.203600px;}
.ya2{bottom:616.486050px;}
.y31{bottom:624.459900px;}
.y102{bottom:631.499400px;}
.y67{bottom:633.482400px;}
.ya1{bottom:634.487550px;}
.y30{bottom:642.461400px;}
.y101{bottom:647.999400px;}
.yc4{bottom:651.482400px;}
.ya0{bottom:652.489050px;}
.y2f{bottom:660.462900px;}
.y100{bottom:664.499400px;}
.yc3{bottom:669.482400px;}
.y9f{bottom:670.490550px;}
.y2e{bottom:678.464400px;}
.yff{bottom:680.999400px;}
.yc2{bottom:687.482400px;}
.y9e{bottom:688.492050px;}
.y2d{bottom:696.465900px;}
.yfe{bottom:697.499400px;}
.yc1{bottom:705.482400px;}
.y9d{bottom:706.493550px;}
.yfd{bottom:713.999400px;}
.y2c{bottom:714.467400px;}
.yc0{bottom:723.482400px;}
.y9c{bottom:724.495050px;}
.yfc{bottom:730.499400px;}
.y2b{bottom:732.468900px;}
.ybf{bottom:741.482400px;}
.y9b{bottom:742.496550px;}
.yfb{bottom:746.999400px;}
.y2a{bottom:750.470400px;}
.y9a{bottom:760.498050px;}
.yfa{bottom:763.499400px;}
.y29{bottom:768.471900px;}
.yf9{bottom:779.999400px;}
.y28{bottom:786.473400px;}
.y99{bottom:787.499400px;}
.yf8{bottom:796.499400px;}
.y27{bottom:804.474900px;}
.y98{bottom:805.499400px;}
.yf7{bottom:812.999400px;}
.y26{bottom:822.476400px;}
.y97{bottom:823.499400px;}
.yf6{bottom:829.499400px;}
.y3{bottom:835.215300px;}
.y25{bottom:840.477900px;}
.y96{bottom:841.499400px;}
.yf5{bottom:845.999400px;}
.y24{bottom:858.479400px;}
.y95{bottom:859.499400px;}
.yf4{bottom:862.499400px;}
.y2{bottom:864.725550px;}
.y23{bottom:876.480900px;}
.y94{bottom:877.499400px;}
.yf3{bottom:878.999400px;}
.y1{bottom:889.919250px;}
.y22{bottom:894.482400px;}
.y93{bottom:895.499400px;}
.y21{bottom:934.435800px;}
.h8{height:30.618164px;}
.ha{height:33.156738px;}
.hb{height:39.287109px;}
.h5{height:39.788086px;}
.h9{height:44.208984px;}
.h7{height:47.760000px;}
.h6{height:52.536000px;}
.h3{height:55.001953px;}
.h2{height:55.703320px;}
.h4{height:57.312000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x1{left:106.299150px;}
.x2{left:127.559100px;}
.x5{left:390.254100px;}
.x4{left:578.591100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-2.800000pt;}
.ls14{letter-spacing:-0.938667pt;}
.ls1e{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.537600pt;}
.ls1a{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.469333pt;}
.ls1c{letter-spacing:-0.410667pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.293333pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.234667pt;}
.ls29{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.176000pt;}
.ls24{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.117333pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.058667pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.058667pt;}
.ls22{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls16{letter-spacing:0.266667pt;}
.ls11{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.352000pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls28{letter-spacing:0.853333pt;}
.ls2a{letter-spacing:1.173333pt;}
.ls27{letter-spacing:1.226667pt;}
.ls25{letter-spacing:1.440000pt;}
.ls18{letter-spacing:1.493333pt;}
.ls5{letter-spacing:1.866667pt;}
.ls21{letter-spacing:1.973333pt;}
.ws93{word-spacing:-12.106667pt;}
.ws37{word-spacing:-11.616000pt;}
.ws97{word-spacing:-11.093333pt;}
.ws96{word-spacing:-10.933333pt;}
.ws98{word-spacing:-10.880000pt;}
.ws82{word-spacing:-10.853333pt;}
.ws94{word-spacing:-10.346667pt;}
.ws92{word-spacing:-10.133333pt;}
.ws95{word-spacing:-10.080000pt;}
.ws8c{word-spacing:-3.109333pt;}
.ws1a{word-spacing:-2.874667pt;}
.ws3d{word-spacing:-2.816000pt;}
.wsc{word-spacing:-2.757333pt;}
.ws9f{word-spacing:-2.720000pt;}
.wsd{word-spacing:-2.698667pt;}
.ws16{word-spacing:-2.688000pt;}
.ws7a{word-spacing:-2.666667pt;}
.ws85{word-spacing:-2.640000pt;}
.ws9c{word-spacing:-2.613333pt;}
.wse{word-spacing:-2.581333pt;}
.ws7b{word-spacing:-2.560000pt;}
.ws25{word-spacing:-2.522667pt;}
.ws2d{word-spacing:-2.506667pt;}
.ws26{word-spacing:-2.464000pt;}
.ws8d{word-spacing:-2.405333pt;}
.ws53{word-spacing:-2.346667pt;}
.ws67{word-spacing:-2.293333pt;}
.ws18{word-spacing:-2.288000pt;}
.wsa3{word-spacing:-2.186667pt;}
.ws71{word-spacing:-2.170667pt;}
.wsa2{word-spacing:-2.133333pt;}
.ws1b{word-spacing:-2.112000pt;}
.ws91{word-spacing:-2.080000pt;}
.ws69{word-spacing:-2.053333pt;}
.ws19{word-spacing:-1.994667pt;}
.ws86{word-spacing:-1.936000pt;}
.ws20{word-spacing:-1.877333pt;}
.ws83{word-spacing:-1.818667pt;}
.ws9a{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.760000pt;}
.ws73{word-spacing:-1.701333pt;}
.ws46{word-spacing:-1.642667pt;}
.ws61{word-spacing:-1.584000pt;}
.ws87{word-spacing:-1.525333pt;}
.ws65{word-spacing:-1.493333pt;}
.ws40{word-spacing:-1.466667pt;}
.wsa0{word-spacing:-1.440000pt;}
.ws13{word-spacing:-1.408000pt;}
.ws79{word-spacing:-1.386667pt;}
.ws76{word-spacing:-1.349333pt;}
.ws3c{word-spacing:-1.290667pt;}
.ws3e{word-spacing:-1.232000pt;}
.ws21{word-spacing:-1.173333pt;}
.ws8e{word-spacing:-1.114667pt;}
.ws56{word-spacing:-1.056000pt;}
.ws63{word-spacing:-0.997333pt;}
.ws4e{word-spacing:-0.938667pt;}
.ws48{word-spacing:-0.821333pt;}
.ws47{word-spacing:-0.762667pt;}
.ws7c{word-spacing:-0.746667pt;}
.ws44{word-spacing:-0.704000pt;}
.ws55{word-spacing:-0.645333pt;}
.wsa1{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.528000pt;}
.wsa5{word-spacing:-0.480000pt;}
.ws28{word-spacing:-0.469333pt;}
.ws2{word-spacing:-0.448000pt;}
.ws6d{word-spacing:-0.426667pt;}
.ws68{word-spacing:-0.410667pt;}
.ws30{word-spacing:-0.373333pt;}
.ws34{word-spacing:-0.352000pt;}
.ws9b{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.293333pt;}
.ws42{word-spacing:-0.288000pt;}
.ws90{word-spacing:-0.240000pt;}
.ws64{word-spacing:-0.234667pt;}
.wsf{word-spacing:-0.176000pt;}
.ws9{word-spacing:-0.117333pt;}
.wsb{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.058667pt;}
.wsa8{word-spacing:0.106667pt;}
.ws5c{word-spacing:0.117333pt;}
.ws2e{word-spacing:0.160000pt;}
.ws8{word-spacing:0.176000pt;}
.wsa{word-spacing:0.234667pt;}
.ws80{word-spacing:0.293333pt;}
.ws1e{word-spacing:0.352000pt;}
.ws1d{word-spacing:0.410667pt;}
.ws2a{word-spacing:0.469333pt;}
.ws33{word-spacing:0.528000pt;}
.ws31{word-spacing:0.533333pt;}
.ws1{word-spacing:0.537600pt;}
.ws70{word-spacing:0.586667pt;}
.ws6e{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.645333pt;}
.ws52{word-spacing:0.746667pt;}
.ws49{word-spacing:0.762667pt;}
.ws36{word-spacing:0.821333pt;}
.ws35{word-spacing:0.880000pt;}
.ws89{word-spacing:0.906667pt;}
.ws62{word-spacing:0.938667pt;}
.ws77{word-spacing:0.997333pt;}
.ws24{word-spacing:1.056000pt;}
.ws43{word-spacing:1.114667pt;}
.ws39{word-spacing:1.173333pt;}
.ws88{word-spacing:1.232000pt;}
.ws3{word-spacing:1.290667pt;}
.ws4{word-spacing:1.349333pt;}
.ws3b{word-spacing:1.408000pt;}
.wsa4{word-spacing:1.440000pt;}
.ws72{word-spacing:1.466667pt;}
.wsa9{word-spacing:1.493333pt;}
.ws29{word-spacing:1.525333pt;}
.ws6c{word-spacing:1.546667pt;}
.ws2b{word-spacing:1.584000pt;}
.wsa7{word-spacing:1.600000pt;}
.ws1f{word-spacing:1.642667pt;}
.ws27{word-spacing:1.701333pt;}
.ws12{word-spacing:1.760000pt;}
.ws84{word-spacing:1.818667pt;}
.ws32{word-spacing:1.877333pt;}
.ws5a{word-spacing:1.936000pt;}
.ws41{word-spacing:1.994667pt;}
.ws54{word-spacing:2.053333pt;}
.ws4f{word-spacing:2.112000pt;}
.ws75{word-spacing:2.229333pt;}
.ws5f{word-spacing:2.288000pt;}
.ws50{word-spacing:2.346667pt;}
.ws59{word-spacing:2.464000pt;}
.ws5d{word-spacing:2.522667pt;}
.ws45{word-spacing:2.581333pt;}
.ws7e{word-spacing:2.698667pt;}
.ws7d{word-spacing:2.773333pt;}
.ws17{word-spacing:2.800000pt;}
.ws8f{word-spacing:2.816000pt;}
.ws14{word-spacing:2.912000pt;}
.ws78{word-spacing:2.933333pt;}
.ws4c{word-spacing:2.992000pt;}
.ws6{word-spacing:3.050667pt;}
.ws2f{word-spacing:3.093333pt;}
.ws38{word-spacing:3.109333pt;}
.ws23{word-spacing:3.226667pt;}
.ws3a{word-spacing:3.344000pt;}
.ws66{word-spacing:3.360000pt;}
.ws1c{word-spacing:3.402667pt;}
.ws15{word-spacing:3.434667pt;}
.ws57{word-spacing:3.461333pt;}
.ws5e{word-spacing:3.520000pt;}
.ws60{word-spacing:3.578667pt;}
.ws8b{word-spacing:3.754667pt;}
.ws4b{word-spacing:3.813333pt;}
.ws51{word-spacing:3.946667pt;}
.ws4d{word-spacing:3.989333pt;}
.ws6a{word-spacing:4.106667pt;}
.ws81{word-spacing:4.224000pt;}
.ws7f{word-spacing:4.341333pt;}
.ws58{word-spacing:4.400000pt;}
.ws6b{word-spacing:4.426667pt;}
.ws11{word-spacing:4.480000pt;}
.ws9d{word-spacing:4.586667pt;}
.ws8a{word-spacing:4.746667pt;}
.ws10{word-spacing:5.066667pt;}
.ws7{word-spacing:5.104000pt;}
.ws9e{word-spacing:5.120000pt;}
.ws74{word-spacing:5.221333pt;}
.ws4a{word-spacing:5.338667pt;}
.wsa6{word-spacing:5.440000pt;}
.ws22{word-spacing:5.573333pt;}
._9{margin-left:-6.403413pt;}
._7{margin-left:-5.514027pt;}
._6{margin-left:-4.167573pt;}
._5{margin-left:-3.079360pt;}
._1{margin-left:-2.110080pt;}
._0{margin-left:-0.947520pt;}
._2{width:0.967680pt;}
._3{width:1.983253pt;}
._4{width:2.880853pt;}
._8{width:4.136747pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:63.007867pt;}
.y1f{bottom:88.810000pt;}
.y84{bottom:91.060933pt;}
.y92{bottom:91.083600pt;}
.y4d{bottom:91.084933pt;}
.ye8{bottom:91.086267pt;}
.yde{bottom:91.945333pt;}
.y66{bottom:91.948000pt;}
.y122{bottom:91.999467pt;}
.yf2{bottom:95.978667pt;}
.y1e{bottom:99.478000pt;}
.ybe{bottom:99.950267pt;}
.y121{bottom:106.666133pt;}
.y83{bottom:107.062267pt;}
.y91{bottom:107.084933pt;}
.y4c{bottom:107.086267pt;}
.ye7{bottom:107.087600pt;}
.ydd{bottom:107.946667pt;}
.y65{bottom:107.949333pt;}
.y1d{bottom:110.146000pt;}
.yf1{bottom:110.645333pt;}
.ybd{bottom:115.951600pt;}
.y1c{bottom:120.814000pt;}
.y120{bottom:121.332800pt;}
.y82{bottom:123.063600pt;}
.y90{bottom:123.086267pt;}
.y4b{bottom:123.087600pt;}
.ye6{bottom:123.088933pt;}
.ydc{bottom:123.948000pt;}
.y64{bottom:123.950667pt;}
.yf0{bottom:125.312000pt;}
.ybc{bottom:131.952933pt;}
.y1b{bottom:135.262000pt;}
.y11f{bottom:135.999467pt;}
.y81{bottom:139.064933pt;}
.y8f{bottom:139.087600pt;}
.y4a{bottom:139.088933pt;}
.ye5{bottom:139.090267pt;}
.ydb{bottom:139.949333pt;}
.y63{bottom:139.952000pt;}
.y1a{bottom:145.930000pt;}
.ybb{bottom:147.954267pt;}
.yef{bottom:148.418267pt;}
.y11e{bottom:150.666133pt;}
.y80{bottom:155.066267pt;}
.y8e{bottom:155.088933pt;}
.y49{bottom:155.090267pt;}
.ye4{bottom:155.091600pt;}
.yda{bottom:155.950667pt;}
.y62{bottom:155.953333pt;}
.y19{bottom:160.378000pt;}
.yba{bottom:163.955600pt;}
.y11d{bottom:165.332800pt;}
.y7f{bottom:171.067600pt;}
.y8d{bottom:171.090267pt;}
.y48{bottom:171.091600pt;}
.ye3{bottom:171.092933pt;}
.yd9{bottom:171.952000pt;}
.y61{bottom:171.954667pt;}
.yb9{bottom:179.956933pt;}
.y11c{bottom:179.999467pt;}
.yee{bottom:187.044800pt;}
.y7e{bottom:187.068933pt;}
.y8c{bottom:187.091600pt;}
.y47{bottom:187.092933pt;}
.ye2{bottom:187.094267pt;}
.yd8{bottom:187.953333pt;}
.y60{bottom:187.956000pt;}
.y11b{bottom:194.666133pt;}
.yb8{bottom:195.958267pt;}
.yed{bottom:203.046133pt;}
.y7d{bottom:203.070267pt;}
.y8b{bottom:203.092933pt;}
.y46{bottom:203.094267pt;}
.y18{bottom:203.292933pt;}
.yd7{bottom:203.954667pt;}
.y5f{bottom:203.957333pt;}
.y11a{bottom:209.332800pt;}
.ye1{bottom:211.095467pt;}
.yb7{bottom:211.959600pt;}
.yec{bottom:219.047467pt;}
.y7c{bottom:219.071600pt;}
.y8a{bottom:219.094267pt;}
.y17{bottom:219.294267pt;}
.yd6{bottom:219.956000pt;}
.y5e{bottom:219.958667pt;}
.y119{bottom:223.999467pt;}
.y45{bottom:227.095467pt;}
.yb6{bottom:227.960933pt;}
.yeb{bottom:235.048800pt;}
.y7b{bottom:235.072933pt;}
.y16{bottom:235.295600pt;}
.yd5{bottom:235.957333pt;}
.y5d{bottom:235.960000pt;}
.y118{bottom:238.666133pt;}
.y44{bottom:243.095467pt;}
.yb5{bottom:243.962267pt;}
.yea{bottom:251.050133pt;}
.y7a{bottom:251.074267pt;}
.yd4{bottom:251.958667pt;}
.y5c{bottom:251.961333pt;}
.y117{bottom:253.332800pt;}
.y43{bottom:259.095467pt;}
.y15{bottom:259.296800pt;}
.yb4{bottom:259.963600pt;}
.ye9{bottom:267.051467pt;}
.y79{bottom:267.075600pt;}
.yd3{bottom:267.960000pt;}
.y5b{bottom:267.962667pt;}
.y116{bottom:267.999467pt;}
.y42{bottom:275.095467pt;}
.y14{bottom:275.296800pt;}
.yb3{bottom:275.964933pt;}
.y115{bottom:282.666133pt;}
.ye0{bottom:283.052800pt;}
.y78{bottom:283.076933pt;}
.yd2{bottom:283.961333pt;}
.y5a{bottom:283.964000pt;}
.y41{bottom:291.095467pt;}
.y13{bottom:291.296800pt;}
.yb2{bottom:291.966267pt;}
.y114{bottom:297.332800pt;}
.ydf{bottom:299.054133pt;}
.y77{bottom:299.078267pt;}
.yd1{bottom:299.962667pt;}
.y59{bottom:299.965333pt;}
.y40{bottom:307.095467pt;}
.yb1{bottom:307.967600pt;}
.y113{bottom:311.999467pt;}
.y89{bottom:315.055467pt;}
.y76{bottom:315.079600pt;}
.y12{bottom:315.279467pt;}
.yd0{bottom:315.964000pt;}
.y58{bottom:315.966667pt;}
.y3f{bottom:323.095467pt;}
.yb0{bottom:323.968933pt;}
.y112{bottom:326.666133pt;}
.y88{bottom:331.056800pt;}
.y75{bottom:331.080933pt;}
.y11{bottom:331.280800pt;}
.ycf{bottom:331.965333pt;}
.y57{bottom:331.968000pt;}
.y3e{bottom:339.095467pt;}
.yaf{bottom:339.970267pt;}
.y111{bottom:341.332800pt;}
.y87{bottom:347.058133pt;}
.y74{bottom:347.082267pt;}
.y10{bottom:347.282133pt;}
.yce{bottom:347.966667pt;}
.y56{bottom:347.969333pt;}
.y3d{bottom:355.095467pt;}
.yae{bottom:355.971600pt;}
.y110{bottom:355.999467pt;}
.y86{bottom:363.059467pt;}
.y73{bottom:363.083600pt;}
.yf{bottom:363.283467pt;}
.ycd{bottom:363.968000pt;}
.y55{bottom:363.970667pt;}
.y10f{bottom:370.666133pt;}
.y3c{bottom:371.095467pt;}
.yad{bottom:371.972933pt;}
.y85{bottom:379.060800pt;}
.y72{bottom:379.084933pt;}
.ye{bottom:379.284800pt;}
.ycc{bottom:379.969333pt;}
.y54{bottom:379.972000pt;}
.y10e{bottom:385.332800pt;}
.yac{bottom:387.974267pt;}
.y3b{bottom:395.062133pt;}
.y71{bottom:395.086267pt;}
.yd{bottom:395.286133pt;}
.ycb{bottom:395.970667pt;}
.y53{bottom:395.973333pt;}
.y10d{bottom:399.999467pt;}
.yab{bottom:403.975600pt;}
.y3a{bottom:411.063467pt;}
.y70{bottom:411.087600pt;}
.yc{bottom:411.287467pt;}
.yca{bottom:411.972000pt;}
.y52{bottom:411.974667pt;}
.y10c{bottom:414.666133pt;}
.yaa{bottom:419.976933pt;}
.y39{bottom:427.064800pt;}
.y6f{bottom:427.088933pt;}
.yb{bottom:427.288800pt;}
.yc9{bottom:427.973333pt;}
.y51{bottom:427.976000pt;}
.y10b{bottom:429.332800pt;}
.ya9{bottom:435.978267pt;}
.y38{bottom:443.066133pt;}
.y6e{bottom:443.090267pt;}
.ya{bottom:443.290133pt;}
.yc8{bottom:443.974667pt;}
.y50{bottom:443.977333pt;}
.y10a{bottom:443.999467pt;}
.ya8{bottom:451.979600pt;}
.y109{bottom:458.666133pt;}
.y37{bottom:459.067467pt;}
.y6d{bottom:459.091600pt;}
.y9{bottom:459.291467pt;}
.yc7{bottom:459.976000pt;}
.y4f{bottom:459.978667pt;}
.ya7{bottom:467.980933pt;}
.y108{bottom:473.332800pt;}
.y36{bottom:475.068800pt;}
.y6c{bottom:475.092933pt;}
.y8{bottom:475.292800pt;}
.yc6{bottom:475.977333pt;}
.ya6{bottom:483.982267pt;}
.y4e{bottom:484.418267pt;}
.y107{bottom:487.999467pt;}
.y35{bottom:491.070133pt;}
.y6b{bottom:491.094267pt;}
.y7{bottom:491.294133pt;}
.ya5{bottom:499.983600pt;}
.yc5{bottom:500.417067pt;}
.y106{bottom:502.666133pt;}
.y34{bottom:507.071467pt;}
.y6{bottom:507.295467pt;}
.y6a{bottom:515.095467pt;}
.ya4{bottom:515.984933pt;}
.y105{bottom:517.332800pt;}
.y33{bottom:523.072800pt;}
.y5{bottom:523.296800pt;}
.y69{bottom:531.095467pt;}
.ya3{bottom:531.986267pt;}
.y104{bottom:531.999467pt;}
.y32{bottom:539.074133pt;}
.y103{bottom:546.666133pt;}
.y68{bottom:547.095467pt;}
.y4{bottom:547.736533pt;}
.ya2{bottom:547.987600pt;}
.y31{bottom:555.075467pt;}
.y102{bottom:561.332800pt;}
.y67{bottom:563.095467pt;}
.ya1{bottom:563.988933pt;}
.y30{bottom:571.076800pt;}
.y101{bottom:575.999467pt;}
.yc4{bottom:579.095467pt;}
.ya0{bottom:579.990267pt;}
.y2f{bottom:587.078133pt;}
.y100{bottom:590.666133pt;}
.yc3{bottom:595.095467pt;}
.y9f{bottom:595.991600pt;}
.y2e{bottom:603.079467pt;}
.yff{bottom:605.332800pt;}
.yc2{bottom:611.095467pt;}
.y9e{bottom:611.992933pt;}
.y2d{bottom:619.080800pt;}
.yfe{bottom:619.999467pt;}
.yc1{bottom:627.095467pt;}
.y9d{bottom:627.994267pt;}
.yfd{bottom:634.666133pt;}
.y2c{bottom:635.082133pt;}
.yc0{bottom:643.095467pt;}
.y9c{bottom:643.995600pt;}
.yfc{bottom:649.332800pt;}
.y2b{bottom:651.083467pt;}
.ybf{bottom:659.095467pt;}
.y9b{bottom:659.996933pt;}
.yfb{bottom:663.999467pt;}
.y2a{bottom:667.084800pt;}
.y9a{bottom:675.998267pt;}
.yfa{bottom:678.666133pt;}
.y29{bottom:683.086133pt;}
.yf9{bottom:693.332800pt;}
.y28{bottom:699.087467pt;}
.y99{bottom:699.999467pt;}
.yf8{bottom:707.999467pt;}
.y27{bottom:715.088800pt;}
.y98{bottom:715.999467pt;}
.yf7{bottom:722.666133pt;}
.y26{bottom:731.090133pt;}
.y97{bottom:731.999467pt;}
.yf6{bottom:737.332800pt;}
.y3{bottom:742.413600pt;}
.y25{bottom:747.091467pt;}
.y96{bottom:747.999467pt;}
.yf5{bottom:751.999467pt;}
.y24{bottom:763.092800pt;}
.y95{bottom:763.999467pt;}
.yf4{bottom:766.666133pt;}
.y2{bottom:768.644933pt;}
.y23{bottom:779.094133pt;}
.y94{bottom:779.999467pt;}
.yf3{bottom:781.332800pt;}
.y1{bottom:791.039333pt;}
.y22{bottom:795.095467pt;}
.y93{bottom:795.999467pt;}
.y21{bottom:830.609600pt;}
.h8{height:27.216146pt;}
.ha{height:29.472656pt;}
.hb{height:34.921875pt;}
.h5{height:35.367188pt;}
.h9{height:39.296875pt;}
.h7{height:42.453333pt;}
.h6{height:46.698667pt;}
.h3{height:48.890625pt;}
.h2{height:49.514062pt;}
.h4{height:50.944000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x1{left:94.488133pt;}
.x2{left:113.385867pt;}
.x5{left:346.892533pt;}
.x4{left:514.303200pt;}
}




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