
    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_2f28cb4ae1975061f951be83.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101000;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_2743fa83d5019a76b11c72f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.920000;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_2c0ab9c33eedf3dcee944b82.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079000;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_6466fc081d8aaf5f21d17ada.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930000;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;}
.v1{vertical-align:6.750000px;}
.lse{letter-spacing:-2.376000px;}
.lsb{letter-spacing:-1.512000px;}
.ls3{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-1.014000px;}
.ls10{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.384000px;}
.lsd{letter-spacing:-0.312000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.420000px;}
.ls0{letter-spacing:1.499400px;}
.ls1{letter-spacing:1.500000px;}
.ls4{letter-spacing:1.980000px;}
.ls8{letter-spacing:2.040000px;}
.ls5{letter-spacing:2.100000px;}
.ls6{letter-spacing:2.400000px;}
.ls7{letter-spacing:2.460000px;}
.ls9{letter-spacing:2.580000px;}
.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;}
}
.wscd{word-spacing:-22.656000px;}
.ws5{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.620000px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.260000px;}
.wsd3{word-spacing:-16.236000px;}
.ws4{word-spacing:-16.200000px;}
.ws6{word-spacing:-16.140000px;}
.ws10{word-spacing:-15.840000px;}
.ws36{word-spacing:-15.576000px;}
.ws11{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.580000px;}
.ws12{word-spacing:-13.284000px;}
.wsa9{word-spacing:-13.200000px;}
.ws0{word-spacing:-11.520000px;}
.wsf{word-spacing:-11.328000px;}
.wscb{word-spacing:-3.366000px;}
.ws7f{word-spacing:-3.168000px;}
.ws3e{word-spacing:-3.102000px;}
.ws3f{word-spacing:-3.036000px;}
.wsca{word-spacing:-2.970000px;}
.wsc9{word-spacing:-2.904000px;}
.wsd9{word-spacing:-2.838000px;}
.wsb0{word-spacing:-2.772000px;}
.ws38{word-spacing:-2.706000px;}
.ws1c{word-spacing:-2.700000px;}
.wsb8{word-spacing:-2.508000px;}
.ws59{word-spacing:-2.442000px;}
.ws8d{word-spacing:-2.376000px;}
.ws5a{word-spacing:-2.310000px;}
.ws74{word-spacing:-2.280000px;}
.ws81{word-spacing:-2.244000px;}
.wsa2{word-spacing:-2.112000px;}
.ws4a{word-spacing:-2.046000px;}
.wscc{word-spacing:-1.980000px;}
.wsb5{word-spacing:-1.848000px;}
.ws3a{word-spacing:-1.782000px;}
.ws6f{word-spacing:-1.716000px;}
.ws5e{word-spacing:-1.584000px;}
.ws43{word-spacing:-1.518000px;}
.ws9{word-spacing:-1.458000px;}
.ws9a{word-spacing:-1.452000px;}
.ws75{word-spacing:-1.386000px;}
.ws4c{word-spacing:-1.320000px;}
.ws7c{word-spacing:-1.254000px;}
.ws22{word-spacing:-1.200000px;}
.ws57{word-spacing:-1.188000px;}
.ws34{word-spacing:-1.140000px;}
.ws20{word-spacing:-1.080000px;}
.ws41{word-spacing:-1.056000px;}
.ws1f{word-spacing:-1.020000px;}
.ws39{word-spacing:-0.924000px;}
.ws50{word-spacing:-0.858000px;}
.ws55{word-spacing:-0.792000px;}
.ws27{word-spacing:-0.780000px;}
.wsa3{word-spacing:-0.726000px;}
.ws9b{word-spacing:-0.660000px;}
.ws9c{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.540000px;}
.ws5b{word-spacing:-0.528000px;}
.ws6e{word-spacing:-0.462000px;}
.wsbf{word-spacing:-0.396000px;}
.wsc3{word-spacing:-0.330000px;}
.ws1b{word-spacing:-0.300000px;}
.ws5c{word-spacing:-0.264000px;}
.wsbd{word-spacing:-0.198000px;}
.ws67{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.132000px;}
.ws26{word-spacing:-0.108000px;}
.ws8c{word-spacing:-0.066000px;}
.ws8{word-spacing:0.000000px;}
.ws2c{word-spacing:0.060000px;}
.ws93{word-spacing:0.066000px;}
.ws51{word-spacing:0.132000px;}
.ws69{word-spacing:0.240000px;}
.ws72{word-spacing:0.300000px;}
.ws80{word-spacing:0.312000px;}
.wsbc{word-spacing:0.330000px;}
.ws7d{word-spacing:0.396000px;}
.ws99{word-spacing:0.462000px;}
.wsd6{word-spacing:0.480000px;}
.ws46{word-spacing:0.528000px;}
.ws15{word-spacing:0.540000px;}
.ws40{word-spacing:0.594000px;}
.ws54{word-spacing:0.660000px;}
.ws49{word-spacing:0.726000px;}
.ws35{word-spacing:0.756000px;}
.wsa5{word-spacing:0.792000px;}
.ws2d{word-spacing:0.840000px;}
.wsaf{word-spacing:0.858000px;}
.ws4b{word-spacing:0.924000px;}
.ws86{word-spacing:0.990000px;}
.ws78{word-spacing:1.014000px;}
.ws17{word-spacing:1.020000px;}
.ws5f{word-spacing:1.056000px;}
.wsa{word-spacing:1.080000px;}
.wsa6{word-spacing:1.122000px;}
.ws44{word-spacing:1.188000px;}
.ws7b{word-spacing:1.254000px;}
.ws89{word-spacing:1.320000px;}
.wsc8{word-spacing:1.386000px;}
.ws1d{word-spacing:1.440000px;}
.wsa7{word-spacing:1.452000px;}
.ws13{word-spacing:1.512000px;}
.ws52{word-spacing:1.518000px;}
.ws58{word-spacing:1.584000px;}
.ws2b{word-spacing:1.620000px;}
.ws62{word-spacing:1.650000px;}
.ws19{word-spacing:1.680000px;}
.wsc4{word-spacing:1.716000px;}
.ws82{word-spacing:1.782000px;}
.wsbe{word-spacing:1.848000px;}
.ws45{word-spacing:1.914000px;}
.wsbb{word-spacing:1.980000px;}
.wsd{word-spacing:2.040000px;}
.wsae{word-spacing:2.046000px;}
.wsa0{word-spacing:2.112000px;}
.wsc{word-spacing:2.160000px;}
.ws37{word-spacing:2.178000px;}
.wsd8{word-spacing:2.244000px;}
.ws94{word-spacing:2.310000px;}
.ws8a{word-spacing:2.340000px;}
.ws85{word-spacing:2.376000px;}
.ws6d{word-spacing:2.442000px;}
.ws4e{word-spacing:2.508000px;}
.ws88{word-spacing:2.520000px;}
.ws68{word-spacing:2.580000px;}
.ws47{word-spacing:2.640000px;}
.wsb4{word-spacing:2.706000px;}
.ws4f{word-spacing:2.772000px;}
.wsc7{word-spacing:2.838000px;}
.wsa4{word-spacing:2.970000px;}
.ws3c{word-spacing:3.102000px;}
.wsd0{word-spacing:3.168000px;}
.wsb7{word-spacing:3.234000px;}
.ws8e{word-spacing:3.300000px;}
.ws73{word-spacing:3.360000px;}
.ws60{word-spacing:3.366000px;}
.wsa8{word-spacing:3.564000px;}
.wsab{word-spacing:3.630000px;}
.wsb9{word-spacing:3.696000px;}
.ws61{word-spacing:3.762000px;}
.wsc0{word-spacing:3.828000px;}
.wsc1{word-spacing:3.960000px;}
.ws96{word-spacing:4.026000px;}
.ws2a{word-spacing:4.080000px;}
.ws4d{word-spacing:4.158000px;}
.ws32{word-spacing:4.200000px;}
.ws9e{word-spacing:4.224000px;}
.ws28{word-spacing:4.260000px;}
.ws91{word-spacing:4.290000px;}
.ws77{word-spacing:4.356000px;}
.ws87{word-spacing:4.380000px;}
.ws53{word-spacing:4.422000px;}
.wsc5{word-spacing:4.488000px;}
.ws7e{word-spacing:4.554000px;}
.ws21{word-spacing:4.560000px;}
.ws48{word-spacing:4.686000px;}
.ws9f{word-spacing:4.752000px;}
.ws98{word-spacing:4.818000px;}
.wsaa{word-spacing:4.950000px;}
.ws3d{word-spacing:5.016000px;}
.ws6b{word-spacing:5.082000px;}
.ws18{word-spacing:5.100000px;}
.ws24{word-spacing:5.160000px;}
.ws90{word-spacing:5.214000px;}
.wsc6{word-spacing:5.280000px;}
.wsa1{word-spacing:5.544000px;}
.wsb{word-spacing:5.580000px;}
.wsd2{word-spacing:5.610000px;}
.wsb2{word-spacing:5.676000px;}
.wsd1{word-spacing:5.742000px;}
.wsd5{word-spacing:5.808000px;}
.ws1e{word-spacing:5.820000px;}
.wsb1{word-spacing:5.874000px;}
.ws3b{word-spacing:5.940000px;}
.ws30{word-spacing:6.000000px;}
.wsad{word-spacing:6.006000px;}
.ws76{word-spacing:6.072000px;}
.ws71{word-spacing:6.120000px;}
.wsb3{word-spacing:6.204000px;}
.ws8b{word-spacing:6.240000px;}
.wsac{word-spacing:6.270000px;}
.ws23{word-spacing:6.300000px;}
.ws63{word-spacing:6.336000px;}
.wsd4{word-spacing:6.402000px;}
.ws64{word-spacing:6.468000px;}
.wsb6{word-spacing:6.600000px;}
.wsc2{word-spacing:6.666000px;}
.ws6c{word-spacing:6.732000px;}
.ws8f{word-spacing:6.798000px;}
.ws5d{word-spacing:6.864000px;}
.ws97{word-spacing:6.930000px;}
.ws84{word-spacing:6.996000px;}
.ws33{word-spacing:7.020000px;}
.wsce{word-spacing:7.128000px;}
.ws42{word-spacing:7.260000px;}
.ws7a{word-spacing:7.326000px;}
.ws2e{word-spacing:7.380000px;}
.ws95{word-spacing:7.458000px;}
.ws65{word-spacing:7.500000px;}
.wscf{word-spacing:7.590000px;}
.ws79{word-spacing:7.920000px;}
.ws70{word-spacing:8.052000px;}
.ws66{word-spacing:8.160000px;}
.ws83{word-spacing:8.250000px;}
.ws25{word-spacing:8.400000px;}
.ws9d{word-spacing:8.514000px;}
.ws1a{word-spacing:8.580000px;}
.ws6a{word-spacing:8.640000px;}
.ws92{word-spacing:8.646000px;}
.wsba{word-spacing:9.108000px;}
.wsd7{word-spacing:9.570000px;}
.ws16{word-spacing:11.280000px;}
.ws31{word-spacing:12.360000px;}
.ws29{word-spacing:13.920000px;}
.ws2f{word-spacing:17.520000px;}
.wse{word-spacing:711.403200px;}
._9{margin-left:-10.203000px;}
._4{margin-left:-7.956600px;}
._7{margin-left:-6.714000px;}
._2{margin-left:-5.253000px;}
._8{margin-left:-3.855600px;}
._3{margin-left:-2.841600px;}
._0{margin-left:-1.679400px;}
._1{width:1.135800px;}
._6{width:2.226600px;}
._5{width:3.925800px;}
.fc2{color:rgb(42,119,143);}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:78.000000px;}
.fs8{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:31.832100px;}
.y2{bottom:32.394600px;}
.y4d{bottom:33.519600px;}
.y5{bottom:47.677200px;}
.y125{bottom:95.034300px;}
.y166{bottom:96.239100px;}
.y108{bottom:99.540300px;}
.y132{bottom:99.546150px;}
.y151{bottom:109.774500px;}
.ybe{bottom:115.756800px;}
.y124{bottom:116.034300px;}
.y107{bottom:120.540300px;}
.y131{bottom:120.546150px;}
.y165{bottom:125.743050px;}
.ye3{bottom:128.790300px;}
.y150{bottom:130.774500px;}
.ybd{bottom:135.256800px;}
.y123{bottom:137.034300px;}
.y7a{bottom:140.397450px;}
.y70{bottom:140.409300px;}
.y106{bottom:141.540300px;}
.y130{bottom:141.546150px;}
.y164{bottom:146.743050px;}
.y9d{bottom:148.647450px;}
.ye2{bottom:149.790300px;}
.y14f{bottom:151.774500px;}
.ybc{bottom:154.756800px;}
.y122{bottom:158.034300px;}
.y79{bottom:159.897600px;}
.y6f{bottom:161.409300px;}
.y105{bottom:162.540300px;}
.y12f{bottom:162.546300px;}
.y9c{bottom:169.647600px;}
.ye1{bottom:170.790300px;}
.y14e{bottom:172.774650px;}
.ybb{bottom:174.256800px;}
.y163{bottom:176.247000px;}
.y121{bottom:179.034300px;}
.y78{bottom:179.397600px;}
.y6e{bottom:182.409300px;}
.y104{bottom:183.540300px;}
.y12e{bottom:183.546300px;}
.y9b{bottom:190.647600px;}
.ye0{bottom:191.790300px;}
.yba{bottom:193.756800px;}
.y14d{bottom:193.774650px;}
.y162{bottom:197.247000px;}
.y19{bottom:202.375950px;}
.y6d{bottom:203.409300px;}
.y103{bottom:204.540300px;}
.y12d{bottom:204.546300px;}
.y9a{bottom:211.647600px;}
.ydf{bottom:212.790300px;}
.yb9{bottom:213.256800px;}
.y14c{bottom:214.774650px;}
.y18{bottom:221.875950px;}
.y6c{bottom:224.409300px;}
.y102{bottom:225.540300px;}
.y12c{bottom:225.546300px;}
.y161{bottom:226.750950px;}
.y99{bottom:232.647600px;}
.yb8{bottom:232.756800px;}
.yde{bottom:233.790300px;}
.y14b{bottom:235.774650px;}
.y17{bottom:241.375950px;}
.y6b{bottom:245.409300px;}
.y101{bottom:246.540300px;}
.y12b{bottom:246.546300px;}
.y160{bottom:247.750950px;}
.y98{bottom:253.647600px;}
.ydd{bottom:254.790300px;}
.y14a{bottom:256.774650px;}
.y6a{bottom:266.409300px;}
.y100{bottom:267.540300px;}
.y12a{bottom:267.546300px;}
.y16{bottom:273.631950px;}
.y97{bottom:274.647600px;}
.y120{bottom:275.790300px;}
.y15f{bottom:277.254900px;}
.yb7{bottom:277.768650px;}
.y149{bottom:277.774650px;}
.y77{bottom:279.165300px;}
.y69{bottom:287.409300px;}
.yff{bottom:288.540300px;}
.ydc{bottom:288.546300px;}
.y96{bottom:295.647600px;}
.y11f{bottom:296.790300px;}
.y15e{bottom:298.254900px;}
.yb6{bottom:298.768650px;}
.y148{bottom:298.774650px;}
.y76{bottom:300.165300px;}
.y68{bottom:308.409300px;}
.yfe{bottom:309.540300px;}
.ydb{bottom:309.546300px;}
.y11e{bottom:317.790300px;}
.yb5{bottom:319.768650px;}
.y147{bottom:319.774650px;}
.y75{bottom:321.165300px;}
.y15d{bottom:327.758850px;}
.y95{bottom:329.403450px;}
.y67{bottom:329.409300px;}
.yfd{bottom:330.540300px;}
.yda{bottom:330.546300px;}
.y35{bottom:336.825600px;}
.y11d{bottom:338.790300px;}
.yb4{bottom:340.768650px;}
.y146{bottom:340.774650px;}
.y74{bottom:342.165300px;}
.y15c{bottom:348.758850px;}
.y94{bottom:348.903450px;}
.y66{bottom:350.409300px;}
.yfc{bottom:351.540300px;}
.yd9{bottom:351.546300px;}
.y34{bottom:353.025600px;}
.yc{bottom:357.789000px;}
.y11c{bottom:359.790300px;}
.yb3{bottom:361.768650px;}
.y145{bottom:361.774650px;}
.y73{bottom:363.165300px;}
.y93{bottom:368.403450px;}
.y15b{bottom:369.758850px;}
.yfb{bottom:372.540300px;}
.yd8{bottom:372.546300px;}
.yb{bottom:376.440900px;}
.y11b{bottom:380.790300px;}
.yb2{bottom:382.768650px;}
.y144{bottom:382.774650px;}
.y65{bottom:384.165300px;}
.y92{bottom:387.903450px;}
.y33{bottom:388.359450px;}
.yfa{bottom:393.540300px;}
.yd7{bottom:393.546300px;}
.ya{bottom:395.092950px;}
.y15a{bottom:399.262800px;}
.y11a{bottom:401.790300px;}
.yb1{bottom:403.768650px;}
.y143{bottom:403.774650px;}
.y64{bottom:405.165300px;}
.y4c{bottom:406.234800px;}
.y32{bottom:406.359450px;}
.y91{bottom:407.403450px;}
.y9{bottom:413.744850px;}
.yf9{bottom:414.540300px;}
.yd6{bottom:414.546300px;}
.y4b{bottom:422.434800px;}
.y119{bottom:422.790300px;}
.y31{bottom:424.359450px;}
.y142{bottom:424.774650px;}
.y63{bottom:426.165300px;}
.y90{bottom:426.903450px;}
.y159{bottom:428.766750px;}
.y8{bottom:432.396900px;}
.yf8{bottom:435.540300px;}
.yd5{bottom:435.546300px;}
.yb0{bottom:437.524500px;}
.y30{bottom:442.359450px;}
.y141{bottom:445.774650px;}
.y62{bottom:447.165300px;}
.y7{bottom:451.048800px;}
.y118{bottom:456.546150px;}
.yd4{bottom:456.546300px;}
.y4a{bottom:457.768650px;}
.y158{bottom:458.270700px;}
.yaf{bottom:458.524500px;}
.y2f{bottom:460.359450px;}
.y61{bottom:468.165300px;}
.yf7{bottom:469.296150px;}
.y6{bottom:469.700850px;}
.y8f{bottom:471.915300px;}
.y49{bottom:475.768650px;}
.y117{bottom:477.546150px;}
.yd3{bottom:477.546300px;}
.y2e{bottom:478.359450px;}
.yae{bottom:479.524500px;}
.y140{bottom:479.530500px;}
.y157{bottom:487.774650px;}
.y60{bottom:489.165300px;}
.yf6{bottom:490.296150px;}
.y8e{bottom:492.915300px;}
.y48{bottom:493.768650px;}
.y2d{bottom:496.359450px;}
.y116{bottom:498.546150px;}
.yd2{bottom:498.546300px;}
.yad{bottom:500.524500px;}
.y13f{bottom:500.530500px;}
.y156{bottom:508.774650px;}
.y5f{bottom:510.165300px;}
.yf5{bottom:511.296150px;}
.y47{bottom:511.768650px;}
.y8d{bottom:513.915300px;}
.y2c{bottom:514.359450px;}
.y115{bottom:519.546150px;}
.yd1{bottom:519.546300px;}
.yac{bottom:521.524500px;}
.y13e{bottom:521.530500px;}
.y46{bottom:529.768650px;}
.y155{bottom:529.774650px;}
.y5e{bottom:531.165300px;}
.yf4{bottom:532.296150px;}
.y2b{bottom:532.359450px;}
.y8c{bottom:534.915300px;}
.y114{bottom:540.546150px;}
.yd0{bottom:540.546300px;}
.yab{bottom:542.524500px;}
.y13d{bottom:542.530500px;}
.y15{bottom:547.038150px;}
.y45{bottom:547.768650px;}
.y2a{bottom:550.359450px;}
.y5d{bottom:552.165300px;}
.yf3{bottom:553.296150px;}
.y8b{bottom:555.915300px;}
.y154{bottom:559.278600px;}
.y113{bottom:561.546150px;}
.ycf{bottom:561.546300px;}
.yaa{bottom:563.524500px;}
.y13c{bottom:563.530500px;}
.y72{bottom:564.921150px;}
.y14{bottom:565.690050px;}
.y44{bottom:565.768650px;}
.y29{bottom:568.359450px;}
.y5c{bottom:573.165300px;}
.yf2{bottom:574.296150px;}
.y8a{bottom:576.915300px;}
.y153{bottom:580.278600px;}
.y112{bottom:582.546150px;}
.y129{bottom:582.546300px;}
.y43{bottom:583.768650px;}
.y13b{bottom:584.530500px;}
.y71{bottom:585.921150px;}
.y28{bottom:586.359450px;}
.yf1{bottom:595.296150px;}
.yce{bottom:595.302150px;}
.ya9{bottom:597.280500px;}
.y89{bottom:597.915300px;}
.y13{bottom:598.246050px;}
.y42{bottom:601.768650px;}
.y111{bottom:603.546150px;}
.y128{bottom:603.546300px;}
.y27{bottom:604.359450px;}
.y13a{bottom:605.530500px;}
.y5b{bottom:606.921150px;}
.yf0{bottom:616.296150px;}
.ycd{bottom:616.302150px;}
.y12{bottom:616.897950px;}
.y152{bottom:618.286350px;}
.y88{bottom:618.915300px;}
.y41{bottom:619.768650px;}
.y26{bottom:622.359450px;}
.ya8{bottom:624.280500px;}
.y110{bottom:624.546150px;}
.y127{bottom:624.546300px;}
.y139{bottom:626.530500px;}
.y5a{bottom:627.921150px;}
.yef{bottom:637.296150px;}
.ycc{bottom:637.302150px;}
.y40{bottom:637.768650px;}
.y87{bottom:639.915300px;}
.y25{bottom:640.359450px;}
.y10f{bottom:645.546150px;}
.y126{bottom:645.546300px;}
.y138{bottom:647.530500px;}
.y59{bottom:648.921150px;}
.y3f{bottom:655.768650px;}
.yee{bottom:658.296150px;}
.ycb{bottom:658.302150px;}
.y24{bottom:658.359450px;}
.y11{bottom:666.461850px;}
.y10e{bottom:666.546150px;}
.y137{bottom:668.530500px;}
.y58{bottom:669.921150px;}
.y86{bottom:673.671150px;}
.y3e{bottom:673.768650px;}
.y23{bottom:676.359450px;}
.yed{bottom:679.296150px;}
.yca{bottom:679.302150px;}
.ya7{bottom:685.296150px;}
.y16e{bottom:687.286350px;}
.y10d{bottom:687.546150px;}
.y136{bottom:689.530500px;}
.y10{bottom:689.861700px;}
.y57{bottom:690.921150px;}
.y3d{bottom:691.768650px;}
.y22{bottom:694.359450px;}
.y85{bottom:694.671150px;}
.yec{bottom:700.296150px;}
.yc9{bottom:700.302150px;}
.ya6{bottom:706.296150px;}
.y16d{bottom:708.286350px;}
.y10c{bottom:708.546150px;}
.y3c{bottom:709.768650px;}
.y135{bottom:710.530500px;}
.y56{bottom:711.921150px;}
.y21{bottom:712.359450px;}
.y84{bottom:715.671150px;}
.yeb{bottom:721.296150px;}
.yc8{bottom:721.302150px;}
.yf{bottom:726.017700px;}
.ya5{bottom:727.296150px;}
.y3b{bottom:727.768650px;}
.y16c{bottom:729.286350px;}
.y10b{bottom:729.546150px;}
.y134{bottom:731.530500px;}
.y55{bottom:732.921150px;}
.y20{bottom:734.611350px;}
.y83{bottom:736.671150px;}
.yea{bottom:742.296150px;}
.yc7{bottom:742.302150px;}
.ya4{bottom:748.296150px;}
.y3a{bottom:750.020700px;}
.y10a{bottom:750.546150px;}
.y54{bottom:753.921150px;}
.ye{bottom:754.517700px;}
.y82{bottom:757.671150px;}
.y16b{bottom:758.790300px;}
.ye9{bottom:763.296150px;}
.yc6{bottom:763.302150px;}
.y133{bottom:765.286350px;}
.ya3{bottom:769.296150px;}
.y109{bottom:771.546150px;}
.y53{bottom:774.921150px;}
.y81{bottom:778.671150px;}
.y16a{bottom:779.790300px;}
.yd{bottom:783.017700px;}
.ye8{bottom:784.296150px;}
.yc5{bottom:784.302150px;}
.y1f{bottom:788.427150px;}
.ya2{bottom:790.296150px;}
.y52{bottom:795.921150px;}
.y80{bottom:799.671150px;}
.ye7{bottom:805.296150px;}
.yc4{bottom:805.302150px;}
.y169{bottom:809.294250px;}
.ya1{bottom:811.296150px;}
.y51{bottom:816.921150px;}
.y1e{bottom:816.927150px;}
.ye6{bottom:826.296150px;}
.yc3{bottom:826.302150px;}
.y168{bottom:830.294250px;}
.ya0{bottom:832.296150px;}
.y7f{bottom:833.427150px;}
.y39{bottom:837.852150px;}
.y1d{bottom:845.427150px;}
.ye5{bottom:847.296150px;}
.yc2{bottom:847.302150px;}
.y50{bottom:850.677150px;}
.y7e{bottom:852.927150px;}
.y9f{bottom:853.296150px;}
.y167{bottom:859.798200px;}
.y38{bottom:861.252150px;}
.yc1{bottom:868.302150px;}
.y7d{bottom:872.427150px;}
.y1c{bottom:873.927150px;}
.y9e{bottom:874.296150px;}
.y4f{bottom:877.677150px;}
.ye4{bottom:881.052150px;}
.y37{bottom:884.652150px;}
.yc0{bottom:889.302150px;}
.y7c{bottom:891.927150px;}
.y1b{bottom:902.427150px;}
.y4e{bottom:904.677150px;}
.y36{bottom:908.052150px;}
.ybf{bottom:910.302150px;}
.y7b{bottom:911.427150px;}
.y3{bottom:946.279950px;}
.y4{bottom:962.913450px;}
.y1a{bottom:976.331700px;}
.h6{height:35.520000px;}
.h5{height:42.624000px;}
.ha{height:44.400000px;}
.h4{height:45.288000px;}
.h3{height:47.952000px;}
.h9{height:48.840000px;}
.h2{height:50.616000px;}
.hb{height:53.280000px;}
.hc{height:58.608000px;}
.h8{height:69.264000px;}
.hd{height:85.248000px;}
.h7{height:95.904000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x13{left:44.365650px;}
.x14{left:63.779550px;}
.x2{left:76.535400px;}
.x18{left:81.607650px;}
.x19{left:87.968250px;}
.x21{left:93.543300px;}
.x17{left:99.770850px;}
.x15{left:105.072750px;}
.x22{left:106.299150px;}
.x16{left:110.083800px;}
.xb{left:116.533050px;}
.x20{left:123.307050px;}
.x1f{left:133.322700px;}
.xc{left:147.745500px;}
.xe{left:162.280650px;}
.xf{left:228.464700px;}
.x1e{left:364.039350px;}
.x1a{left:384.221850px;}
.x11{left:407.506500px;}
.x1c{left:414.739050px;}
.x1b{left:416.239350px;}
.x3{left:444.066600px;}
.x1d{left:452.159400px;}
.xd{left:453.628650px;}
.x12{left:463.287150px;}
.x10{left:503.805900px;}
.xa{left:529.143150px;}
.x7{left:542.690550px;}
.x6{left:545.114250px;}
.x5{left:549.122250px;}
.x9{left:555.158850px;}
.x4{left:569.750250px;}
.x8{left:613.441350px;}
.x1{left:663.307050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.000000pt;}
.lse{letter-spacing:-2.112000pt;}
.lsb{letter-spacing:-1.344000pt;}
.ls3{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.901333pt;}
.ls10{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.341333pt;}
.lsd{letter-spacing:-0.277333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls0{letter-spacing:1.332800pt;}
.ls1{letter-spacing:1.333333pt;}
.ls4{letter-spacing:1.760000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls5{letter-spacing:1.866667pt;}
.ls6{letter-spacing:2.133333pt;}
.ls7{letter-spacing:2.186667pt;}
.ls9{letter-spacing:2.293333pt;}
.wscd{word-spacing:-20.138667pt;}
.ws5{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.773333pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.453333pt;}
.wsd3{word-spacing:-14.432000pt;}
.ws4{word-spacing:-14.400000pt;}
.ws6{word-spacing:-14.346667pt;}
.ws10{word-spacing:-14.080000pt;}
.ws36{word-spacing:-13.845333pt;}
.ws11{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws12{word-spacing:-11.808000pt;}
.wsa9{word-spacing:-11.733333pt;}
.ws0{word-spacing:-10.240000pt;}
.wsf{word-spacing:-10.069333pt;}
.wscb{word-spacing:-2.992000pt;}
.ws7f{word-spacing:-2.816000pt;}
.ws3e{word-spacing:-2.757333pt;}
.ws3f{word-spacing:-2.698667pt;}
.wsca{word-spacing:-2.640000pt;}
.wsc9{word-spacing:-2.581333pt;}
.wsd9{word-spacing:-2.522667pt;}
.wsb0{word-spacing:-2.464000pt;}
.ws38{word-spacing:-2.405333pt;}
.ws1c{word-spacing:-2.400000pt;}
.wsb8{word-spacing:-2.229333pt;}
.ws59{word-spacing:-2.170667pt;}
.ws8d{word-spacing:-2.112000pt;}
.ws5a{word-spacing:-2.053333pt;}
.ws74{word-spacing:-2.026667pt;}
.ws81{word-spacing:-1.994667pt;}
.wsa2{word-spacing:-1.877333pt;}
.ws4a{word-spacing:-1.818667pt;}
.wscc{word-spacing:-1.760000pt;}
.wsb5{word-spacing:-1.642667pt;}
.ws3a{word-spacing:-1.584000pt;}
.ws6f{word-spacing:-1.525333pt;}
.ws5e{word-spacing:-1.408000pt;}
.ws43{word-spacing:-1.349333pt;}
.ws9{word-spacing:-1.296000pt;}
.ws9a{word-spacing:-1.290667pt;}
.ws75{word-spacing:-1.232000pt;}
.ws4c{word-spacing:-1.173333pt;}
.ws7c{word-spacing:-1.114667pt;}
.ws22{word-spacing:-1.066667pt;}
.ws57{word-spacing:-1.056000pt;}
.ws34{word-spacing:-1.013333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws41{word-spacing:-0.938667pt;}
.ws1f{word-spacing:-0.906667pt;}
.ws39{word-spacing:-0.821333pt;}
.ws50{word-spacing:-0.762667pt;}
.ws55{word-spacing:-0.704000pt;}
.ws27{word-spacing:-0.693333pt;}
.wsa3{word-spacing:-0.645333pt;}
.ws9b{word-spacing:-0.586667pt;}
.ws9c{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.480000pt;}
.ws5b{word-spacing:-0.469333pt;}
.ws6e{word-spacing:-0.410667pt;}
.wsbf{word-spacing:-0.352000pt;}
.wsc3{word-spacing:-0.293333pt;}
.ws1b{word-spacing:-0.266667pt;}
.ws5c{word-spacing:-0.234667pt;}
.wsbd{word-spacing:-0.176000pt;}
.ws67{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.117333pt;}
.ws26{word-spacing:-0.096000pt;}
.ws8c{word-spacing:-0.058667pt;}
.ws8{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.053333pt;}
.ws93{word-spacing:0.058667pt;}
.ws51{word-spacing:0.117333pt;}
.ws69{word-spacing:0.213333pt;}
.ws72{word-spacing:0.266667pt;}
.ws80{word-spacing:0.277333pt;}
.wsbc{word-spacing:0.293333pt;}
.ws7d{word-spacing:0.352000pt;}
.ws99{word-spacing:0.410667pt;}
.wsd6{word-spacing:0.426667pt;}
.ws46{word-spacing:0.469333pt;}
.ws15{word-spacing:0.480000pt;}
.ws40{word-spacing:0.528000pt;}
.ws54{word-spacing:0.586667pt;}
.ws49{word-spacing:0.645333pt;}
.ws35{word-spacing:0.672000pt;}
.wsa5{word-spacing:0.704000pt;}
.ws2d{word-spacing:0.746667pt;}
.wsaf{word-spacing:0.762667pt;}
.ws4b{word-spacing:0.821333pt;}
.ws86{word-spacing:0.880000pt;}
.ws78{word-spacing:0.901333pt;}
.ws17{word-spacing:0.906667pt;}
.ws5f{word-spacing:0.938667pt;}
.wsa{word-spacing:0.960000pt;}
.wsa6{word-spacing:0.997333pt;}
.ws44{word-spacing:1.056000pt;}
.ws7b{word-spacing:1.114667pt;}
.ws89{word-spacing:1.173333pt;}
.wsc8{word-spacing:1.232000pt;}
.ws1d{word-spacing:1.280000pt;}
.wsa7{word-spacing:1.290667pt;}
.ws13{word-spacing:1.344000pt;}
.ws52{word-spacing:1.349333pt;}
.ws58{word-spacing:1.408000pt;}
.ws2b{word-spacing:1.440000pt;}
.ws62{word-spacing:1.466667pt;}
.ws19{word-spacing:1.493333pt;}
.wsc4{word-spacing:1.525333pt;}
.ws82{word-spacing:1.584000pt;}
.wsbe{word-spacing:1.642667pt;}
.ws45{word-spacing:1.701333pt;}
.wsbb{word-spacing:1.760000pt;}
.wsd{word-spacing:1.813333pt;}
.wsae{word-spacing:1.818667pt;}
.wsa0{word-spacing:1.877333pt;}
.wsc{word-spacing:1.920000pt;}
.ws37{word-spacing:1.936000pt;}
.wsd8{word-spacing:1.994667pt;}
.ws94{word-spacing:2.053333pt;}
.ws8a{word-spacing:2.080000pt;}
.ws85{word-spacing:2.112000pt;}
.ws6d{word-spacing:2.170667pt;}
.ws4e{word-spacing:2.229333pt;}
.ws88{word-spacing:2.240000pt;}
.ws68{word-spacing:2.293333pt;}
.ws47{word-spacing:2.346667pt;}
.wsb4{word-spacing:2.405333pt;}
.ws4f{word-spacing:2.464000pt;}
.wsc7{word-spacing:2.522667pt;}
.wsa4{word-spacing:2.640000pt;}
.ws3c{word-spacing:2.757333pt;}
.wsd0{word-spacing:2.816000pt;}
.wsb7{word-spacing:2.874667pt;}
.ws8e{word-spacing:2.933333pt;}
.ws73{word-spacing:2.986667pt;}
.ws60{word-spacing:2.992000pt;}
.wsa8{word-spacing:3.168000pt;}
.wsab{word-spacing:3.226667pt;}
.wsb9{word-spacing:3.285333pt;}
.ws61{word-spacing:3.344000pt;}
.wsc0{word-spacing:3.402667pt;}
.wsc1{word-spacing:3.520000pt;}
.ws96{word-spacing:3.578667pt;}
.ws2a{word-spacing:3.626667pt;}
.ws4d{word-spacing:3.696000pt;}
.ws32{word-spacing:3.733333pt;}
.ws9e{word-spacing:3.754667pt;}
.ws28{word-spacing:3.786667pt;}
.ws91{word-spacing:3.813333pt;}
.ws77{word-spacing:3.872000pt;}
.ws87{word-spacing:3.893333pt;}
.ws53{word-spacing:3.930667pt;}
.wsc5{word-spacing:3.989333pt;}
.ws7e{word-spacing:4.048000pt;}
.ws21{word-spacing:4.053333pt;}
.ws48{word-spacing:4.165333pt;}
.ws9f{word-spacing:4.224000pt;}
.ws98{word-spacing:4.282667pt;}
.wsaa{word-spacing:4.400000pt;}
.ws3d{word-spacing:4.458667pt;}
.ws6b{word-spacing:4.517333pt;}
.ws18{word-spacing:4.533333pt;}
.ws24{word-spacing:4.586667pt;}
.ws90{word-spacing:4.634667pt;}
.wsc6{word-spacing:4.693333pt;}
.wsa1{word-spacing:4.928000pt;}
.wsb{word-spacing:4.960000pt;}
.wsd2{word-spacing:4.986667pt;}
.wsb2{word-spacing:5.045333pt;}
.wsd1{word-spacing:5.104000pt;}
.wsd5{word-spacing:5.162667pt;}
.ws1e{word-spacing:5.173333pt;}
.wsb1{word-spacing:5.221333pt;}
.ws3b{word-spacing:5.280000pt;}
.ws30{word-spacing:5.333333pt;}
.wsad{word-spacing:5.338667pt;}
.ws76{word-spacing:5.397333pt;}
.ws71{word-spacing:5.440000pt;}
.wsb3{word-spacing:5.514667pt;}
.ws8b{word-spacing:5.546667pt;}
.wsac{word-spacing:5.573333pt;}
.ws23{word-spacing:5.600000pt;}
.ws63{word-spacing:5.632000pt;}
.wsd4{word-spacing:5.690667pt;}
.ws64{word-spacing:5.749333pt;}
.wsb6{word-spacing:5.866667pt;}
.wsc2{word-spacing:5.925333pt;}
.ws6c{word-spacing:5.984000pt;}
.ws8f{word-spacing:6.042667pt;}
.ws5d{word-spacing:6.101333pt;}
.ws97{word-spacing:6.160000pt;}
.ws84{word-spacing:6.218667pt;}
.ws33{word-spacing:6.240000pt;}
.wsce{word-spacing:6.336000pt;}
.ws42{word-spacing:6.453333pt;}
.ws7a{word-spacing:6.512000pt;}
.ws2e{word-spacing:6.560000pt;}
.ws95{word-spacing:6.629333pt;}
.ws65{word-spacing:6.666667pt;}
.wscf{word-spacing:6.746667pt;}
.ws79{word-spacing:7.040000pt;}
.ws70{word-spacing:7.157333pt;}
.ws66{word-spacing:7.253333pt;}
.ws83{word-spacing:7.333333pt;}
.ws25{word-spacing:7.466667pt;}
.ws9d{word-spacing:7.568000pt;}
.ws1a{word-spacing:7.626667pt;}
.ws6a{word-spacing:7.680000pt;}
.ws92{word-spacing:7.685333pt;}
.wsba{word-spacing:8.096000pt;}
.wsd7{word-spacing:8.506667pt;}
.ws16{word-spacing:10.026667pt;}
.ws31{word-spacing:10.986667pt;}
.ws29{word-spacing:12.373333pt;}
.ws2f{word-spacing:15.573333pt;}
.wse{word-spacing:632.358400pt;}
._9{margin-left:-9.069333pt;}
._4{margin-left:-7.072533pt;}
._7{margin-left:-5.968000pt;}
._2{margin-left:-4.669333pt;}
._8{margin-left:-3.427200pt;}
._3{margin-left:-2.525867pt;}
._0{margin-left:-1.492800pt;}
._1{width:1.009600pt;}
._6{width:1.979200pt;}
._5{width:3.489600pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:69.333333pt;}
.fs8{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:28.295200pt;}
.y2{bottom:28.795200pt;}
.y4d{bottom:29.795200pt;}
.y5{bottom:42.379733pt;}
.y125{bottom:84.474933pt;}
.y166{bottom:85.545867pt;}
.y108{bottom:88.480267pt;}
.y132{bottom:88.485467pt;}
.y151{bottom:97.577333pt;}
.ybe{bottom:102.894933pt;}
.y124{bottom:103.141600pt;}
.y107{bottom:107.146933pt;}
.y131{bottom:107.152133pt;}
.y165{bottom:111.771600pt;}
.ye3{bottom:114.480267pt;}
.y150{bottom:116.244000pt;}
.ybd{bottom:120.228267pt;}
.y123{bottom:121.808267pt;}
.y7a{bottom:124.797733pt;}
.y70{bottom:124.808267pt;}
.y106{bottom:125.813600pt;}
.y130{bottom:125.818800pt;}
.y164{bottom:130.438267pt;}
.y9d{bottom:132.131067pt;}
.ye2{bottom:133.146933pt;}
.y14f{bottom:134.910667pt;}
.ybc{bottom:137.561600pt;}
.y122{bottom:140.474933pt;}
.y79{bottom:142.131200pt;}
.y6f{bottom:143.474933pt;}
.y105{bottom:144.480267pt;}
.y12f{bottom:144.485600pt;}
.y9c{bottom:150.797867pt;}
.ye1{bottom:151.813600pt;}
.y14e{bottom:153.577467pt;}
.ybb{bottom:154.894933pt;}
.y163{bottom:156.664000pt;}
.y121{bottom:159.141600pt;}
.y78{bottom:159.464533pt;}
.y6e{bottom:162.141600pt;}
.y104{bottom:163.146933pt;}
.y12e{bottom:163.152267pt;}
.y9b{bottom:169.464533pt;}
.ye0{bottom:170.480267pt;}
.yba{bottom:172.228267pt;}
.y14d{bottom:172.244133pt;}
.y162{bottom:175.330667pt;}
.y19{bottom:179.889733pt;}
.y6d{bottom:180.808267pt;}
.y103{bottom:181.813600pt;}
.y12d{bottom:181.818933pt;}
.y9a{bottom:188.131200pt;}
.ydf{bottom:189.146933pt;}
.yb9{bottom:189.561600pt;}
.y14c{bottom:190.910800pt;}
.y18{bottom:197.223067pt;}
.y6c{bottom:199.474933pt;}
.y102{bottom:200.480267pt;}
.y12c{bottom:200.485600pt;}
.y161{bottom:201.556400pt;}
.y99{bottom:206.797867pt;}
.yb8{bottom:206.894933pt;}
.yde{bottom:207.813600pt;}
.y14b{bottom:209.577467pt;}
.y17{bottom:214.556400pt;}
.y6b{bottom:218.141600pt;}
.y101{bottom:219.146933pt;}
.y12b{bottom:219.152267pt;}
.y160{bottom:220.223067pt;}
.y98{bottom:225.464533pt;}
.ydd{bottom:226.480267pt;}
.y14a{bottom:228.244133pt;}
.y6a{bottom:236.808267pt;}
.y100{bottom:237.813600pt;}
.y12a{bottom:237.818933pt;}
.y16{bottom:243.228400pt;}
.y97{bottom:244.131200pt;}
.y120{bottom:245.146933pt;}
.y15f{bottom:246.448800pt;}
.yb7{bottom:246.905467pt;}
.y149{bottom:246.910800pt;}
.y77{bottom:248.146933pt;}
.y69{bottom:255.474933pt;}
.yff{bottom:256.480267pt;}
.ydc{bottom:256.485600pt;}
.y96{bottom:262.797867pt;}
.y11f{bottom:263.813600pt;}
.y15e{bottom:265.115467pt;}
.yb6{bottom:265.572133pt;}
.y148{bottom:265.577467pt;}
.y76{bottom:266.813600pt;}
.y68{bottom:274.141600pt;}
.yfe{bottom:275.146933pt;}
.ydb{bottom:275.152267pt;}
.y11e{bottom:282.480267pt;}
.yb5{bottom:284.238800pt;}
.y147{bottom:284.244133pt;}
.y75{bottom:285.480267pt;}
.y15d{bottom:291.341200pt;}
.y95{bottom:292.803067pt;}
.y67{bottom:292.808267pt;}
.yfd{bottom:293.813600pt;}
.yda{bottom:293.818933pt;}
.y35{bottom:299.400533pt;}
.y11d{bottom:301.146933pt;}
.yb4{bottom:302.905467pt;}
.y146{bottom:302.910800pt;}
.y74{bottom:304.146933pt;}
.y15c{bottom:310.007867pt;}
.y94{bottom:310.136400pt;}
.y66{bottom:311.474933pt;}
.yfc{bottom:312.480267pt;}
.yd9{bottom:312.485600pt;}
.y34{bottom:313.800533pt;}
.yc{bottom:318.034667pt;}
.y11c{bottom:319.813600pt;}
.yb3{bottom:321.572133pt;}
.y145{bottom:321.577467pt;}
.y73{bottom:322.813600pt;}
.y93{bottom:327.469733pt;}
.y15b{bottom:328.674533pt;}
.yfb{bottom:331.146933pt;}
.yd8{bottom:331.152267pt;}
.yb{bottom:334.614133pt;}
.y11b{bottom:338.480267pt;}
.yb2{bottom:340.238800pt;}
.y144{bottom:340.244133pt;}
.y65{bottom:341.480267pt;}
.y92{bottom:344.803067pt;}
.y33{bottom:345.208400pt;}
.yfa{bottom:349.813600pt;}
.yd7{bottom:349.818933pt;}
.ya{bottom:351.193733pt;}
.y15a{bottom:354.900267pt;}
.y11a{bottom:357.146933pt;}
.yb1{bottom:358.905467pt;}
.y143{bottom:358.910800pt;}
.y64{bottom:360.146933pt;}
.y4c{bottom:361.097600pt;}
.y32{bottom:361.208400pt;}
.y91{bottom:362.136400pt;}
.y9{bottom:367.773200pt;}
.yf9{bottom:368.480267pt;}
.yd6{bottom:368.485600pt;}
.y4b{bottom:375.497600pt;}
.y119{bottom:375.813600pt;}
.y31{bottom:377.208400pt;}
.y142{bottom:377.577467pt;}
.y63{bottom:378.813600pt;}
.y90{bottom:379.469733pt;}
.y159{bottom:381.126000pt;}
.y8{bottom:384.352800pt;}
.yf8{bottom:387.146933pt;}
.yd5{bottom:387.152267pt;}
.yb0{bottom:388.910667pt;}
.y30{bottom:393.208400pt;}
.y141{bottom:396.244133pt;}
.y62{bottom:397.480267pt;}
.y7{bottom:400.932267pt;}
.y118{bottom:405.818800pt;}
.yd4{bottom:405.818933pt;}
.y4a{bottom:406.905467pt;}
.y158{bottom:407.351733pt;}
.yaf{bottom:407.577333pt;}
.y2f{bottom:409.208400pt;}
.y61{bottom:416.146933pt;}
.yf7{bottom:417.152133pt;}
.y6{bottom:417.511867pt;}
.y8f{bottom:419.480267pt;}
.y49{bottom:422.905467pt;}
.y117{bottom:424.485467pt;}
.yd3{bottom:424.485600pt;}
.y2e{bottom:425.208400pt;}
.yae{bottom:426.244000pt;}
.y140{bottom:426.249333pt;}
.y157{bottom:433.577467pt;}
.y60{bottom:434.813600pt;}
.yf6{bottom:435.818800pt;}
.y8e{bottom:438.146933pt;}
.y48{bottom:438.905467pt;}
.y2d{bottom:441.208400pt;}
.y116{bottom:443.152133pt;}
.yd2{bottom:443.152267pt;}
.yad{bottom:444.910667pt;}
.y13f{bottom:444.916000pt;}
.y156{bottom:452.244133pt;}
.y5f{bottom:453.480267pt;}
.yf5{bottom:454.485467pt;}
.y47{bottom:454.905467pt;}
.y8d{bottom:456.813600pt;}
.y2c{bottom:457.208400pt;}
.y115{bottom:461.818800pt;}
.yd1{bottom:461.818933pt;}
.yac{bottom:463.577333pt;}
.y13e{bottom:463.582667pt;}
.y46{bottom:470.905467pt;}
.y155{bottom:470.910800pt;}
.y5e{bottom:472.146933pt;}
.yf4{bottom:473.152133pt;}
.y2b{bottom:473.208400pt;}
.y8c{bottom:475.480267pt;}
.y114{bottom:480.485467pt;}
.yd0{bottom:480.485600pt;}
.yab{bottom:482.244000pt;}
.y13d{bottom:482.249333pt;}
.y15{bottom:486.256133pt;}
.y45{bottom:486.905467pt;}
.y2a{bottom:489.208400pt;}
.y5d{bottom:490.813600pt;}
.yf3{bottom:491.818800pt;}
.y8b{bottom:494.146933pt;}
.y154{bottom:497.136533pt;}
.y113{bottom:499.152133pt;}
.ycf{bottom:499.152267pt;}
.yaa{bottom:500.910667pt;}
.y13c{bottom:500.916000pt;}
.y72{bottom:502.152133pt;}
.y14{bottom:502.835600pt;}
.y44{bottom:502.905467pt;}
.y29{bottom:505.208400pt;}
.y5c{bottom:509.480267pt;}
.yf2{bottom:510.485467pt;}
.y8a{bottom:512.813600pt;}
.y153{bottom:515.803200pt;}
.y112{bottom:517.818800pt;}
.y129{bottom:517.818933pt;}
.y43{bottom:518.905467pt;}
.y13b{bottom:519.582667pt;}
.y71{bottom:520.818800pt;}
.y28{bottom:521.208400pt;}
.yf1{bottom:529.152133pt;}
.yce{bottom:529.157467pt;}
.ya9{bottom:530.916000pt;}
.y89{bottom:531.480267pt;}
.y13{bottom:531.774267pt;}
.y42{bottom:534.905467pt;}
.y111{bottom:536.485467pt;}
.y128{bottom:536.485600pt;}
.y27{bottom:537.208400pt;}
.y13a{bottom:538.249333pt;}
.y5b{bottom:539.485467pt;}
.yf0{bottom:547.818800pt;}
.ycd{bottom:547.824133pt;}
.y12{bottom:548.353733pt;}
.y152{bottom:549.587867pt;}
.y88{bottom:550.146933pt;}
.y41{bottom:550.905467pt;}
.y26{bottom:553.208400pt;}
.ya8{bottom:554.916000pt;}
.y110{bottom:555.152133pt;}
.y127{bottom:555.152267pt;}
.y139{bottom:556.916000pt;}
.y5a{bottom:558.152133pt;}
.yef{bottom:566.485467pt;}
.ycc{bottom:566.490800pt;}
.y40{bottom:566.905467pt;}
.y87{bottom:568.813600pt;}
.y25{bottom:569.208400pt;}
.y10f{bottom:573.818800pt;}
.y126{bottom:573.818933pt;}
.y138{bottom:575.582667pt;}
.y59{bottom:576.818800pt;}
.y3f{bottom:582.905467pt;}
.yee{bottom:585.152133pt;}
.ycb{bottom:585.157467pt;}
.y24{bottom:585.208400pt;}
.y11{bottom:592.410533pt;}
.y10e{bottom:592.485467pt;}
.y137{bottom:594.249333pt;}
.y58{bottom:595.485467pt;}
.y86{bottom:598.818800pt;}
.y3e{bottom:598.905467pt;}
.y23{bottom:601.208400pt;}
.yed{bottom:603.818800pt;}
.yca{bottom:603.824133pt;}
.ya7{bottom:609.152133pt;}
.y16e{bottom:610.921200pt;}
.y10d{bottom:611.152133pt;}
.y136{bottom:612.916000pt;}
.y10{bottom:613.210400pt;}
.y57{bottom:614.152133pt;}
.y3d{bottom:614.905467pt;}
.y22{bottom:617.208400pt;}
.y85{bottom:617.485467pt;}
.yec{bottom:622.485467pt;}
.yc9{bottom:622.490800pt;}
.ya6{bottom:627.818800pt;}
.y16d{bottom:629.587867pt;}
.y10c{bottom:629.818800pt;}
.y3c{bottom:630.905467pt;}
.y135{bottom:631.582667pt;}
.y56{bottom:632.818800pt;}
.y21{bottom:633.208400pt;}
.y84{bottom:636.152133pt;}
.yeb{bottom:641.152133pt;}
.yc8{bottom:641.157467pt;}
.yf{bottom:645.349067pt;}
.ya5{bottom:646.485467pt;}
.y3b{bottom:646.905467pt;}
.y16c{bottom:648.254533pt;}
.y10b{bottom:648.485467pt;}
.y134{bottom:650.249333pt;}
.y55{bottom:651.485467pt;}
.y20{bottom:652.987867pt;}
.y83{bottom:654.818800pt;}
.yea{bottom:659.818800pt;}
.yc7{bottom:659.824133pt;}
.ya4{bottom:665.152133pt;}
.y3a{bottom:666.685067pt;}
.y10a{bottom:667.152133pt;}
.y54{bottom:670.152133pt;}
.ye{bottom:670.682400pt;}
.y82{bottom:673.485467pt;}
.y16b{bottom:674.480267pt;}
.ye9{bottom:678.485467pt;}
.yc6{bottom:678.490800pt;}
.y133{bottom:680.254533pt;}
.ya3{bottom:683.818800pt;}
.y109{bottom:685.818800pt;}
.y53{bottom:688.818800pt;}
.y81{bottom:692.152133pt;}
.y16a{bottom:693.146933pt;}
.yd{bottom:696.015733pt;}
.ye8{bottom:697.152133pt;}
.yc5{bottom:697.157467pt;}
.y1f{bottom:700.824133pt;}
.ya2{bottom:702.485467pt;}
.y52{bottom:707.485467pt;}
.y80{bottom:710.818800pt;}
.ye7{bottom:715.818800pt;}
.yc4{bottom:715.824133pt;}
.y169{bottom:719.372667pt;}
.ya1{bottom:721.152133pt;}
.y51{bottom:726.152133pt;}
.y1e{bottom:726.157467pt;}
.ye6{bottom:734.485467pt;}
.yc3{bottom:734.490800pt;}
.y168{bottom:738.039333pt;}
.ya0{bottom:739.818800pt;}
.y7f{bottom:740.824133pt;}
.y39{bottom:744.757467pt;}
.y1d{bottom:751.490800pt;}
.ye5{bottom:753.152133pt;}
.yc2{bottom:753.157467pt;}
.y50{bottom:756.157467pt;}
.y7e{bottom:758.157467pt;}
.y9f{bottom:758.485467pt;}
.y167{bottom:764.265067pt;}
.y38{bottom:765.557467pt;}
.yc1{bottom:771.824133pt;}
.y7d{bottom:775.490800pt;}
.y1c{bottom:776.824133pt;}
.y9e{bottom:777.152133pt;}
.y4f{bottom:780.157467pt;}
.ye4{bottom:783.157467pt;}
.y37{bottom:786.357467pt;}
.yc0{bottom:790.490800pt;}
.y7c{bottom:792.824133pt;}
.y1b{bottom:802.157467pt;}
.y4e{bottom:804.157467pt;}
.y36{bottom:807.157467pt;}
.ybf{bottom:809.157467pt;}
.y7b{bottom:810.157467pt;}
.y3{bottom:841.137733pt;}
.y4{bottom:855.923067pt;}
.y1a{bottom:867.850400pt;}
.h6{height:31.573333pt;}
.h5{height:37.888000pt;}
.ha{height:39.466667pt;}
.h4{height:40.256000pt;}
.h3{height:42.624000pt;}
.h9{height:43.413333pt;}
.h2{height:44.992000pt;}
.hb{height:47.360000pt;}
.hc{height:52.096000pt;}
.h8{height:61.568000pt;}
.hd{height:75.776000pt;}
.h7{height:85.248000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x13{left:39.436133pt;}
.x14{left:56.692933pt;}
.x2{left:68.031467pt;}
.x18{left:72.540133pt;}
.x19{left:78.194000pt;}
.x21{left:83.149600pt;}
.x17{left:88.685200pt;}
.x15{left:93.398000pt;}
.x22{left:94.488133pt;}
.x16{left:97.852267pt;}
.xb{left:103.584933pt;}
.x20{left:109.606267pt;}
.x1f{left:118.509067pt;}
.xc{left:131.329333pt;}
.xe{left:144.249467pt;}
.xf{left:203.079733pt;}
.x1e{left:323.590533pt;}
.x1a{left:341.530533pt;}
.x11{left:362.228000pt;}
.x1c{left:368.656933pt;}
.x1b{left:369.990533pt;}
.x3{left:394.725867pt;}
.x1d{left:401.919467pt;}
.xd{left:403.225467pt;}
.x12{left:411.810800pt;}
.x10{left:447.827467pt;}
.xa{left:470.349467pt;}
.x7{left:482.391600pt;}
.x6{left:484.546000pt;}
.x5{left:488.108667pt;}
.x9{left:493.474533pt;}
.x4{left:506.444667pt;}
.x8{left:545.281200pt;}
.x1{left:589.606267pt;}
}




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