
    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_8285bb0338183c6959026e74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_b2b4e13c1490771870667133.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_374c2250109d6bb795c91816.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.243000;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_c4237c72b7fb67b0a6ce7742.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.235000;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_179ec99e531dc335f826c7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_179ec99e531dc335f826c7be.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_179ec99e531dc335f826c7be.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3beadbf90b4b73eecbb009ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.193000;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:ff9;src:url('chunks/assets/font_1204fee5b8837d75b4693cdd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.176000;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:ffa;src:url('chunks/assets/font_178374dd4d92adebe92d4254.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196000;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(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:31.968000px;}
.ls16{letter-spacing:-2.214000px;}
.ls2d{letter-spacing:-2.052000px;}
.ls3c{letter-spacing:-1.393200px;}
.ls28{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.420000px;}
.ls23{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.lse{letter-spacing:0.022200px;}
.ls2c{letter-spacing:0.030000px;}
.ls9{letter-spacing:0.055800px;}
.ls11{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.090000px;}
.ls8{letter-spacing:0.111600px;}
.ls13{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.210000px;}
.ls14{letter-spacing:0.240000px;}
.ls1e{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.309600px;}
.ls2f{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.390000px;}
.ls5{letter-spacing:0.408000px;}
.lsf{letter-spacing:0.420000px;}
.ls20{letter-spacing:0.450000px;}
.ls1f{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.510000px;}
.ls21{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.561000px;}
.ls34{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.612000px;}
.ls36{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.663000px;}
.ls4{letter-spacing:0.714000px;}
.ls35{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.732600px;}
.ls7{letter-spacing:0.765000px;}
.ls38{letter-spacing:0.780000px;}
.ls6{letter-spacing:0.816000px;}
.ls32{letter-spacing:0.840000px;}
.ls33{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.928800px;}
.ls31{letter-spacing:0.960000px;}
.ls26{letter-spacing:0.990000px;}
.ls39{letter-spacing:1.020000px;}
.ls17{letter-spacing:1.080000px;}
.ls30{letter-spacing:1.275000px;}
.ls37{letter-spacing:1.320000px;}
.ls1c{letter-spacing:1.380000px;}
.ls19{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.560000px;}
.ls3b{letter-spacing:2.340000px;}
.lsc{letter-spacing:2.373600px;}
.ls2e{letter-spacing:2.400000px;}
.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;}
}
.ws6d{word-spacing:-15.660000px;}
.ws8a{word-spacing:-15.600000px;}
.ws23{word-spacing:-14.700000px;}
.ws1{word-spacing:-13.777200px;}
.ws56{word-spacing:-13.260000px;}
.ws22{word-spacing:-12.332400px;}
.ws4{word-spacing:-11.997000px;}
.ws2{word-spacing:-11.713200px;}
.ws74{word-spacing:-11.550600px;}
.ws93{word-spacing:-11.094000px;}
.ws6c{word-spacing:-10.746000px;}
.ws21{word-spacing:-10.584000px;}
.ws77{word-spacing:-10.557000px;}
.ws92{word-spacing:-10.010400px;}
.ws0{word-spacing:-9.948312px;}
.ws3{word-spacing:-8.901000px;}
.ws59{word-spacing:-2.820000px;}
.ws4c{word-spacing:-1.980000px;}
.ws27{word-spacing:-1.920000px;}
.ws28{word-spacing:-1.860000px;}
.ws70{word-spacing:-1.800000px;}
.ws91{word-spacing:-1.740000px;}
.ws2d{word-spacing:-1.680000px;}
.ws15{word-spacing:-1.632000px;}
.ws34{word-spacing:-1.620000px;}
.ws16{word-spacing:-1.581000px;}
.ws30{word-spacing:-1.560000px;}
.ws8f{word-spacing:-1.500000px;}
.ws6f{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.326000px;}
.ws48{word-spacing:-1.260000px;}
.ws65{word-spacing:-1.200000px;}
.wsa{word-spacing:-1.173000px;}
.ws62{word-spacing:-1.140000px;}
.ws3c{word-spacing:-1.080000px;}
.ws1c{word-spacing:-1.020000px;}
.ws43{word-spacing:-0.960000px;}
.ws1d{word-spacing:-0.918000px;}
.ws3e{word-spacing:-0.900000px;}
.ws96{word-spacing:-0.877200px;}
.ws19{word-spacing:-0.867000px;}
.ws4e{word-spacing:-0.840000px;}
.ws68{word-spacing:-0.780000px;}
.ws5{word-spacing:-0.754800px;}
.ws98{word-spacing:-0.722400px;}
.ws45{word-spacing:-0.720000px;}
.ws42{word-spacing:-0.660000px;}
.wsc{word-spacing:-0.612000px;}
.ws5d{word-spacing:-0.600000px;}
.ws55{word-spacing:-0.540000px;}
.ws5e{word-spacing:-0.480000px;}
.ws41{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.309600px;}
.ws8{word-spacing:-0.240000px;}
.ws1f{word-spacing:-0.223200px;}
.ws95{word-spacing:-0.206400px;}
.ws13{word-spacing:-0.204000px;}
.ws40{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.153000px;}
.ws87{word-spacing:-0.120000px;}
.wse{word-spacing:-0.102000px;}
.ws50{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.044400px;}
.ws7{word-spacing:0.000000px;}
.ws39{word-spacing:0.060000px;}
.ws12{word-spacing:0.102000px;}
.ws58{word-spacing:0.120000px;}
.ws8e{word-spacing:0.180000px;}
.wsf{word-spacing:0.204000px;}
.ws49{word-spacing:0.240000px;}
.ws86{word-spacing:0.300000px;}
.ws46{word-spacing:0.360000px;}
.ws7d{word-spacing:0.420000px;}
.ws72{word-spacing:0.540000px;}
.ws44{word-spacing:0.600000px;}
.ws2f{word-spacing:0.660000px;}
.ws2a{word-spacing:0.720000px;}
.ws71{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws4d{word-spacing:0.900000px;}
.ws1a{word-spacing:0.918000px;}
.ws20{word-spacing:0.948600px;}
.ws5b{word-spacing:0.960000px;}
.ws51{word-spacing:1.020000px;}
.ws69{word-spacing:1.140000px;}
.ws52{word-spacing:1.260000px;}
.ws88{word-spacing:1.320000px;}
.ws1b{word-spacing:1.377000px;}
.ws61{word-spacing:1.380000px;}
.ws25{word-spacing:1.440000px;}
.ws10{word-spacing:1.479000px;}
.ws33{word-spacing:1.560000px;}
.ws38{word-spacing:1.620000px;}
.wsd{word-spacing:1.632000px;}
.ws3f{word-spacing:1.680000px;}
.wsb{word-spacing:1.683000px;}
.ws1e{word-spacing:1.785600px;}
.ws8d{word-spacing:1.800000px;}
.ws2c{word-spacing:1.860000px;}
.ws32{word-spacing:1.920000px;}
.ws53{word-spacing:1.980000px;}
.ws5f{word-spacing:2.040000px;}
.ws18{word-spacing:2.091000px;}
.ws66{word-spacing:2.100000px;}
.ws2e{word-spacing:2.160000px;}
.ws4b{word-spacing:2.220000px;}
.ws36{word-spacing:2.280000px;}
.ws4f{word-spacing:2.340000px;}
.ws17{word-spacing:2.346000px;}
.ws37{word-spacing:2.400000px;}
.ws4a{word-spacing:2.460000px;}
.ws31{word-spacing:2.520000px;}
.ws3a{word-spacing:2.580000px;}
.ws5c{word-spacing:2.640000px;}
.ws54{word-spacing:2.700000px;}
.ws64{word-spacing:2.760000px;}
.ws90{word-spacing:2.940000px;}
.ws3b{word-spacing:3.000000px;}
.ws29{word-spacing:3.060000px;}
.ws6a{word-spacing:3.120000px;}
.ws63{word-spacing:3.180000px;}
.ws89{word-spacing:3.240000px;}
.ws47{word-spacing:3.360000px;}
.ws6b{word-spacing:3.420000px;}
.ws26{word-spacing:3.540000px;}
.ws7e{word-spacing:3.720000px;}
.ws7c{word-spacing:3.900000px;}
.ws5a{word-spacing:4.140000px;}
.ws8c{word-spacing:4.320000px;}
.ws85{word-spacing:4.500000px;}
.ws7f{word-spacing:6.060000px;}
.ws67{word-spacing:8.160000px;}
.ws80{word-spacing:59.650200px;}
.ws82{word-spacing:122.146200px;}
.ws81{word-spacing:122.760000px;}
.ws83{word-spacing:123.987600px;}
.ws73{word-spacing:128.953800px;}
.ws79{word-spacing:247.807800px;}
.ws78{word-spacing:248.421600px;}
.ws76{word-spacing:249.258600px;}
.ws7a{word-spacing:249.649200px;}
.ws75{word-spacing:249.872400px;}
.ws8b{word-spacing:567.270000px;}
.ws97{word-spacing:567.432000px;}
.ws3d{word-spacing:568.890000px;}
.ws60{word-spacing:569.592000px;}
.ws7b{word-spacing:571.320000px;}
.ws94{word-spacing:1173.744000px;}
.ws6e{word-spacing:1174.392000px;}
.ws57{word-spacing:1174.662000px;}
.ws24{word-spacing:1174.716000px;}
.ws84{word-spacing:1175.958000px;}
._17{margin-left:-1176.077400px;}
._9{margin-left:-1174.490160px;}
._20{margin-left:-1173.032160px;}
._d{margin-left:-17.517960px;}
._a{margin-left:-6.934320px;}
._c{margin-left:-5.187000px;}
._5{margin-left:-3.999000px;}
._1{margin-left:-2.860800px;}
._0{margin-left:-1.449600px;}
._2{width:1.109400px;}
._3{width:2.598000px;}
._4{width:3.926760px;}
._b{width:4.990800px;}
._f{width:9.240000px;}
._e{width:17.460000px;}
._8{width:49.327200px;}
._7{width:50.833200px;}
._6{width:55.520400px;}
._1b{width:88.813800px;}
._1a{width:114.669000px;}
._12{width:124.525800px;}
._15{width:126.255600px;}
._1c{width:136.040400px;}
._14{width:172.948800px;}
._10{width:174.622800px;}
._18{width:179.086800px;}
._1e{width:195.690600px;}
._19{width:216.727200px;}
._11{width:237.763800px;}
._1d{width:280.116000px;}
._1f{width:281.343600px;}
._13{width:349.419600px;}
._16{width:350.647200px;}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:22.200000px;}
.fs7{font-size:41.400000px;}
.fs3{font-size:41.976000px;}
.fs6{font-size:51.000000px;}
.fs5{font-size:51.600000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs1{font-size:55.968000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:63.773550px;}
.y56{bottom:64.842450px;}
.yba{bottom:69.510750px;}
.y9b{bottom:69.575250px;}
.y2b{bottom:81.029700px;}
.y55{bottom:83.442450px;}
.yb9{bottom:86.912850px;}
.y9a{bottom:86.977350px;}
.y2a{bottom:98.273700px;}
.y54{bottom:102.042450px;}
.yb8{bottom:104.314950px;}
.y99{bottom:104.379450px;}
.y29{bottom:115.529850px;}
.y53{bottom:120.642450px;}
.yb7{bottom:121.717050px;}
.y98{bottom:121.781550px;}
.y28{bottom:132.773850px;}
.yb6{bottom:139.119150px;}
.y97{bottom:139.183650px;}
.y52{bottom:139.242450px;}
.y27{bottom:150.030000px;}
.yb5{bottom:156.521250px;}
.y96{bottom:156.585750px;}
.y51{bottom:157.842450px;}
.y26{bottom:167.267850px;}
.yb4{bottom:173.923350px;}
.y95{bottom:173.987850px;}
.y50{bottom:176.442450px;}
.y25{bottom:184.524000px;}
.yb3{bottom:191.325450px;}
.y94{bottom:191.389950px;}
.y4f{bottom:195.042450px;}
.y24{bottom:201.780150px;}
.yb2{bottom:208.727550px;}
.y93{bottom:208.792050px;}
.y4e{bottom:213.642450px;}
.yb1{bottom:226.129650px;}
.y92{bottom:226.194150px;}
.y4d{bottom:232.242450px;}
.y23{bottom:237.491700px;}
.yb0{bottom:243.531750px;}
.y91{bottom:243.596250px;}
.y4c{bottom:250.842450px;}
.y21{bottom:254.740200px;}
.y22{bottom:254.742450px;}
.ye0{bottom:260.620500px;}
.yaf{bottom:260.933850px;}
.y90{bottom:260.998350px;}
.y4b{bottom:269.442450px;}
.y20{bottom:271.990950px;}
.y105{bottom:277.945200px;}
.ydf{bottom:278.022600px;}
.yae{bottom:278.335950px;}
.y8f{bottom:278.400450px;}
.y61{bottom:288.042450px;}
.y1f{bottom:289.241700px;}
.y104{bottom:295.347300px;}
.yde{bottom:295.424700px;}
.yad{bottom:295.738050px;}
.y8e{bottom:295.802550px;}
.y73{bottom:303.600900px;}
.y1e{bottom:306.492450px;}
.y4a{bottom:306.642450px;}
.y103{bottom:312.749400px;}
.ydd{bottom:312.826800px;}
.yac{bottom:313.140150px;}
.y8d{bottom:313.204650px;}
.y1d{bottom:323.741700px;}
.y60{bottom:325.242450px;}
.y72{bottom:328.871100px;}
.y102{bottom:330.151500px;}
.ydc{bottom:330.228900px;}
.yab{bottom:330.542250px;}
.y8c{bottom:330.606750px;}
.y1c{bottom:340.992450px;}
.y5f{bottom:343.842450px;}
.y101{bottom:347.553600px;}
.ydb{bottom:347.631000px;}
.y71{bottom:347.843100px;}
.yaa{bottom:347.944350px;}
.y8b{bottom:348.008850px;}
.y6d{bottom:349.070700px;}
.y6f{bottom:357.329100px;}
.y1b{bottom:358.241700px;}
.y49{bottom:362.442450px;}
.y100{bottom:364.955700px;}
.yda{bottom:365.033100px;}
.ya9{bottom:365.346450px;}
.y8a{bottom:365.410950px;}
.y6c{bottom:365.573550px;}
.y70{bottom:366.815100px;}
.y1a{bottom:375.492450px;}
.y48{bottom:381.042450px;}
.yff{bottom:382.357800px;}
.yd9{bottom:382.435200px;}
.ya8{bottom:382.748550px;}
.y89{bottom:382.813050px;}
.y6e{bottom:385.773150px;}
.y19{bottom:392.740950px;}
.y47{bottom:399.642450px;}
.yfe{bottom:399.759900px;}
.yd8{bottom:399.837300px;}
.ya7{bottom:400.150650px;}
.y88{bottom:400.215150px;}
.y6b{bottom:404.745150px;}
.y18{bottom:409.991700px;}
.yfd{bottom:417.162000px;}
.yd7{bottom:417.239400px;}
.ya6{bottom:417.552750px;}
.y87{bottom:417.617250px;}
.y46{bottom:418.242450px;}
.y17{bottom:427.242450px;}
.yfc{bottom:434.564100px;}
.yd6{bottom:434.641500px;}
.ya5{bottom:434.954850px;}
.y86{bottom:435.019350px;}
.y45{bottom:436.842450px;}
.y16{bottom:444.492450px;}
.yfb{bottom:451.966200px;}
.yd5{bottom:452.043600px;}
.ya4{bottom:452.356950px;}
.y85{bottom:452.421450px;}
.y44{bottom:455.442450px;}
.yfa{bottom:469.368300px;}
.yd4{bottom:469.445700px;}
.ya3{bottom:469.759050px;}
.y84{bottom:469.823550px;}
.y43{bottom:474.042450px;}
.y15{bottom:479.292450px;}
.yf9{bottom:486.770400px;}
.yd3{bottom:486.847800px;}
.ya2{bottom:487.161150px;}
.y83{bottom:487.225650px;}
.y42{bottom:492.642450px;}
.y14{bottom:496.542450px;}
.yf8{bottom:504.172500px;}
.yd2{bottom:504.249900px;}
.ya1{bottom:504.563250px;}
.y82{bottom:504.627750px;}
.y41{bottom:511.242450px;}
.yf7{bottom:521.574600px;}
.yd1{bottom:521.652000px;}
.ya0{bottom:521.965350px;}
.y81{bottom:522.029850px;}
.y40{bottom:529.842450px;}
.y13{bottom:531.332700px;}
.yf6{bottom:538.976700px;}
.yd0{bottom:539.054100px;}
.y9f{bottom:539.367450px;}
.y80{bottom:539.431950px;}
.y3f{bottom:548.442450px;}
.y12{bottom:548.583450px;}
.yf5{bottom:556.378800px;}
.ycf{bottom:556.456200px;}
.y9e{bottom:556.769550px;}
.y7f{bottom:556.834050px;}
.y11{bottom:565.834200px;}
.y3e{bottom:567.042450px;}
.yf4{bottom:573.780900px;}
.yce{bottom:573.858300px;}
.y9d{bottom:574.171650px;}
.y7e{bottom:574.236150px;}
.y10{bottom:583.084950px;}
.y3d{bottom:585.642450px;}
.yf3{bottom:591.183000px;}
.ycd{bottom:591.260400px;}
.y9c{bottom:591.573750px;}
.y7d{bottom:591.638250px;}
.yf{bottom:600.335700px;}
.y3c{bottom:604.242450px;}
.yf2{bottom:608.585100px;}
.ycc{bottom:608.662500px;}
.ye{bottom:617.586450px;}
.y3b{bottom:622.842450px;}
.yf1{bottom:625.987200px;}
.ycb{bottom:626.064600px;}
.y7c{bottom:626.442450px;}
.yd{bottom:634.837200px;}
.y3a{bottom:641.442450px;}
.yf0{bottom:643.389300px;}
.yca{bottom:643.466700px;}
.yc{bottom:652.087950px;}
.y39{bottom:660.042450px;}
.yef{bottom:660.791400px;}
.yc9{bottom:660.868800px;}
.yb{bottom:669.338700px;}
.yee{bottom:678.193500px;}
.yc8{bottom:678.270900px;}
.y38{bottom:678.642450px;}
.ya{bottom:686.589450px;}
.y6a{bottom:694.200900px;}
.yed{bottom:695.595600px;}
.yc7{bottom:695.673000px;}
.y37{bottom:697.242450px;}
.y9{bottom:703.840200px;}
.yec{bottom:712.997700px;}
.yc6{bottom:713.075100px;}
.y36{bottom:715.842450px;}
.y69{bottom:719.471100px;}
.y8{bottom:721.090950px;}
.yeb{bottom:730.399800px;}
.yc5{bottom:730.477200px;}
.y5e{bottom:734.442450px;}
.y7{bottom:738.341700px;}
.y68{bottom:738.443100px;}
.y64{bottom:739.670700px;}
.yea{bottom:747.801900px;}
.yc4{bottom:747.879300px;}
.y66{bottom:747.929100px;}
.y35{bottom:753.042450px;}
.y6{bottom:755.592450px;}
.y63{bottom:756.173550px;}
.y67{bottom:757.415100px;}
.ye9{bottom:765.204000px;}
.yc3{bottom:765.281400px;}
.y5d{bottom:771.642450px;}
.y5{bottom:772.842450px;}
.y65{bottom:776.373150px;}
.ye8{bottom:782.606100px;}
.yc2{bottom:782.683500px;}
.y4{bottom:790.242450px;}
.y62{bottom:795.345150px;}
.y7b{bottom:797.939400px;}
.ye7{bottom:800.008200px;}
.yc1{bottom:800.085600px;}
.y5c{bottom:808.842450px;}
.ye6{bottom:817.410300px;}
.yc0{bottom:817.487700px;}
.y34{bottom:818.060700px;}
.y3{bottom:818.445300px;}
.y7a{bottom:823.195800px;}
.y5b{bottom:827.442450px;}
.ye5{bottom:834.812400px;}
.ybf{bottom:834.889800px;}
.y33{bottom:835.310700px;}
.y79{bottom:842.167800px;}
.y76{bottom:843.409350px;}
.y5a{bottom:846.042450px;}
.ye4{bottom:852.214500px;}
.ybe{bottom:852.291900px;}
.y2e{bottom:857.391000px;}
.y75{bottom:859.912200px;}
.y78{bottom:861.139800px;}
.y59{bottom:864.642450px;}
.y2d{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.ye3{bottom:869.616600px;}
.ybd{bottom:869.694000px;}
.y32{bottom:870.109950px;}
.y77{bottom:880.111800px;}
.y58{bottom:883.242450px;}
.ye2{bottom:887.018700px;}
.ybc{bottom:887.096100px;}
.y31{bottom:887.360700px;}
.y1{bottom:895.453200px;}
.y74{bottom:899.083800px;}
.y57{bottom:901.842450px;}
.ye1{bottom:904.420800px;}
.ybb{bottom:904.498200px;}
.y30{bottom:904.610700px;}
.y2f{bottom:955.942350px;}
.ha{height:15.295800px;}
.h10{height:46.078800px;}
.h5{height:48.762000px;}
.h6{height:49.521000px;}
.h8{height:49.524000px;}
.h7{height:49.527000px;}
.hf{height:50.103600px;}
.he{height:50.666400px;}
.hb{height:50.868000px;}
.h9{height:54.181800px;}
.hd{height:55.380000px;}
.hc{height:56.700000px;}
.h4{height:58.620000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.310250px;}
.x7{left:28.379400px;}
.x6{left:72.283500px;}
.x1{left:80.787450px;}
.x11{left:85.041600px;}
.x9{left:93.538500px;}
.x3{left:102.053400px;}
.xa{left:131.807250px;}
.xf{left:219.093300px;}
.x10{left:226.319400px;}
.xb{left:242.705100px;}
.xe{left:250.321800px;}
.x13{left:353.413200px;}
.x15{left:361.917150px;}
.x12{left:366.171300px;}
.x14{left:374.675250px;}
.xd{left:549.437700px;}
.xc{left:553.273950px;}
.x2{left:625.039350px;}
.x5{left:650.349600px;}
.x4{left:653.418750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:28.416000pt;}
.ls16{letter-spacing:-1.968000pt;}
.ls2d{letter-spacing:-1.824000pt;}
.ls3c{letter-spacing:-1.238400pt;}
.ls28{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.019733pt;}
.ls2c{letter-spacing:0.026667pt;}
.ls9{letter-spacing:0.049600pt;}
.ls11{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.080000pt;}
.ls8{letter-spacing:0.099200pt;}
.ls13{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.186667pt;}
.ls14{letter-spacing:0.213333pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.275200pt;}
.ls2f{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.346667pt;}
.ls5{letter-spacing:0.362667pt;}
.lsf{letter-spacing:0.373333pt;}
.ls20{letter-spacing:0.400000pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.453333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.498667pt;}
.ls34{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.544000pt;}
.ls36{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.589333pt;}
.ls4{letter-spacing:0.634667pt;}
.ls35{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.651200pt;}
.ls7{letter-spacing:0.680000pt;}
.ls38{letter-spacing:0.693333pt;}
.ls6{letter-spacing:0.725333pt;}
.ls32{letter-spacing:0.746667pt;}
.ls33{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.825600pt;}
.ls31{letter-spacing:0.853333pt;}
.ls26{letter-spacing:0.880000pt;}
.ls39{letter-spacing:0.906667pt;}
.ls17{letter-spacing:0.960000pt;}
.ls30{letter-spacing:1.133333pt;}
.ls37{letter-spacing:1.173333pt;}
.ls1c{letter-spacing:1.226667pt;}
.ls19{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.386667pt;}
.ls3b{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.109867pt;}
.ls2e{letter-spacing:2.133333pt;}
.ws6d{word-spacing:-13.920000pt;}
.ws8a{word-spacing:-13.866667pt;}
.ws23{word-spacing:-13.066667pt;}
.ws1{word-spacing:-12.246400pt;}
.ws56{word-spacing:-11.786667pt;}
.ws22{word-spacing:-10.962133pt;}
.ws4{word-spacing:-10.664000pt;}
.ws2{word-spacing:-10.411733pt;}
.ws74{word-spacing:-10.267200pt;}
.ws93{word-spacing:-9.861333pt;}
.ws6c{word-spacing:-9.552000pt;}
.ws21{word-spacing:-9.408000pt;}
.ws77{word-spacing:-9.384000pt;}
.ws92{word-spacing:-8.898133pt;}
.ws0{word-spacing:-8.842944pt;}
.ws3{word-spacing:-7.912000pt;}
.ws59{word-spacing:-2.506667pt;}
.ws4c{word-spacing:-1.760000pt;}
.ws27{word-spacing:-1.706667pt;}
.ws28{word-spacing:-1.653333pt;}
.ws70{word-spacing:-1.600000pt;}
.ws91{word-spacing:-1.546667pt;}
.ws2d{word-spacing:-1.493333pt;}
.ws15{word-spacing:-1.450667pt;}
.ws34{word-spacing:-1.440000pt;}
.ws16{word-spacing:-1.405333pt;}
.ws30{word-spacing:-1.386667pt;}
.ws8f{word-spacing:-1.333333pt;}
.ws6f{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.178667pt;}
.ws48{word-spacing:-1.120000pt;}
.ws65{word-spacing:-1.066667pt;}
.wsa{word-spacing:-1.042667pt;}
.ws62{word-spacing:-1.013333pt;}
.ws3c{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.906667pt;}
.ws43{word-spacing:-0.853333pt;}
.ws1d{word-spacing:-0.816000pt;}
.ws3e{word-spacing:-0.800000pt;}
.ws96{word-spacing:-0.779733pt;}
.ws19{word-spacing:-0.770667pt;}
.ws4e{word-spacing:-0.746667pt;}
.ws68{word-spacing:-0.693333pt;}
.ws5{word-spacing:-0.670933pt;}
.ws98{word-spacing:-0.642133pt;}
.ws45{word-spacing:-0.640000pt;}
.ws42{word-spacing:-0.586667pt;}
.wsc{word-spacing:-0.544000pt;}
.ws5d{word-spacing:-0.533333pt;}
.ws55{word-spacing:-0.480000pt;}
.ws5e{word-spacing:-0.426667pt;}
.ws41{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.275200pt;}
.ws8{word-spacing:-0.213333pt;}
.ws1f{word-spacing:-0.198400pt;}
.ws95{word-spacing:-0.183467pt;}
.ws13{word-spacing:-0.181333pt;}
.ws40{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.136000pt;}
.ws87{word-spacing:-0.106667pt;}
.wse{word-spacing:-0.090667pt;}
.ws50{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.039467pt;}
.ws7{word-spacing:0.000000pt;}
.ws39{word-spacing:0.053333pt;}
.ws12{word-spacing:0.090667pt;}
.ws58{word-spacing:0.106667pt;}
.ws8e{word-spacing:0.160000pt;}
.wsf{word-spacing:0.181333pt;}
.ws49{word-spacing:0.213333pt;}
.ws86{word-spacing:0.266667pt;}
.ws46{word-spacing:0.320000pt;}
.ws7d{word-spacing:0.373333pt;}
.ws72{word-spacing:0.480000pt;}
.ws44{word-spacing:0.533333pt;}
.ws2f{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.640000pt;}
.ws71{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws4d{word-spacing:0.800000pt;}
.ws1a{word-spacing:0.816000pt;}
.ws20{word-spacing:0.843200pt;}
.ws5b{word-spacing:0.853333pt;}
.ws51{word-spacing:0.906667pt;}
.ws69{word-spacing:1.013333pt;}
.ws52{word-spacing:1.120000pt;}
.ws88{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.224000pt;}
.ws61{word-spacing:1.226667pt;}
.ws25{word-spacing:1.280000pt;}
.ws10{word-spacing:1.314667pt;}
.ws33{word-spacing:1.386667pt;}
.ws38{word-spacing:1.440000pt;}
.wsd{word-spacing:1.450667pt;}
.ws3f{word-spacing:1.493333pt;}
.wsb{word-spacing:1.496000pt;}
.ws1e{word-spacing:1.587200pt;}
.ws8d{word-spacing:1.600000pt;}
.ws2c{word-spacing:1.653333pt;}
.ws32{word-spacing:1.706667pt;}
.ws53{word-spacing:1.760000pt;}
.ws5f{word-spacing:1.813333pt;}
.ws18{word-spacing:1.858667pt;}
.ws66{word-spacing:1.866667pt;}
.ws2e{word-spacing:1.920000pt;}
.ws4b{word-spacing:1.973333pt;}
.ws36{word-spacing:2.026667pt;}
.ws4f{word-spacing:2.080000pt;}
.ws17{word-spacing:2.085333pt;}
.ws37{word-spacing:2.133333pt;}
.ws4a{word-spacing:2.186667pt;}
.ws31{word-spacing:2.240000pt;}
.ws3a{word-spacing:2.293333pt;}
.ws5c{word-spacing:2.346667pt;}
.ws54{word-spacing:2.400000pt;}
.ws64{word-spacing:2.453333pt;}
.ws90{word-spacing:2.613333pt;}
.ws3b{word-spacing:2.666667pt;}
.ws29{word-spacing:2.720000pt;}
.ws6a{word-spacing:2.773333pt;}
.ws63{word-spacing:2.826667pt;}
.ws89{word-spacing:2.880000pt;}
.ws47{word-spacing:2.986667pt;}
.ws6b{word-spacing:3.040000pt;}
.ws26{word-spacing:3.146667pt;}
.ws7e{word-spacing:3.306667pt;}
.ws7c{word-spacing:3.466667pt;}
.ws5a{word-spacing:3.680000pt;}
.ws8c{word-spacing:3.840000pt;}
.ws85{word-spacing:4.000000pt;}
.ws7f{word-spacing:5.386667pt;}
.ws67{word-spacing:7.253333pt;}
.ws80{word-spacing:53.022400pt;}
.ws82{word-spacing:108.574400pt;}
.ws81{word-spacing:109.120000pt;}
.ws83{word-spacing:110.211200pt;}
.ws73{word-spacing:114.625600pt;}
.ws79{word-spacing:220.273600pt;}
.ws78{word-spacing:220.819200pt;}
.ws76{word-spacing:221.563200pt;}
.ws7a{word-spacing:221.910400pt;}
.ws75{word-spacing:222.108800pt;}
.ws8b{word-spacing:504.240000pt;}
.ws97{word-spacing:504.384000pt;}
.ws3d{word-spacing:505.680000pt;}
.ws60{word-spacing:506.304000pt;}
.ws7b{word-spacing:507.840000pt;}
.ws94{word-spacing:1043.328000pt;}
.ws6e{word-spacing:1043.904000pt;}
.ws57{word-spacing:1044.144000pt;}
.ws24{word-spacing:1044.192000pt;}
.ws84{word-spacing:1045.296000pt;}
._17{margin-left:-1045.402133pt;}
._9{margin-left:-1043.991253pt;}
._20{margin-left:-1042.695253pt;}
._d{margin-left:-15.571520pt;}
._a{margin-left:-6.163840pt;}
._c{margin-left:-4.610667pt;}
._5{margin-left:-3.554667pt;}
._1{margin-left:-2.542933pt;}
._0{margin-left:-1.288533pt;}
._2{width:0.986133pt;}
._3{width:2.309333pt;}
._4{width:3.490453pt;}
._b{width:4.436267pt;}
._f{width:8.213333pt;}
._e{width:15.520000pt;}
._8{width:43.846400pt;}
._7{width:45.185067pt;}
._6{width:49.351467pt;}
._1b{width:78.945600pt;}
._1a{width:101.928000pt;}
._12{width:110.689600pt;}
._15{width:112.227200pt;}
._1c{width:120.924800pt;}
._14{width:153.732267pt;}
._10{width:155.220267pt;}
._18{width:159.188267pt;}
._1e{width:173.947200pt;}
._19{width:192.646400pt;}
._11{width:211.345600pt;}
._1d{width:248.992000pt;}
._1f{width:250.083200pt;}
._13{width:310.595200pt;}
._16{width:311.686400pt;}
.fs9{font-size:19.733333pt;}
.fs7{font-size:36.800000pt;}
.fs3{font-size:37.312000pt;}
.fs6{font-size:45.333333pt;}
.fs5{font-size:45.866667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs1{font-size:49.749333pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:56.687600pt;}
.y56{bottom:57.637733pt;}
.yba{bottom:61.787333pt;}
.y9b{bottom:61.844667pt;}
.y2b{bottom:72.026400pt;}
.y55{bottom:74.171067pt;}
.yb9{bottom:77.255867pt;}
.y9a{bottom:77.313200pt;}
.y2a{bottom:87.354400pt;}
.y54{bottom:90.704400pt;}
.yb8{bottom:92.724400pt;}
.y99{bottom:92.781733pt;}
.y29{bottom:102.693200pt;}
.y53{bottom:107.237733pt;}
.yb7{bottom:108.192933pt;}
.y98{bottom:108.250267pt;}
.y28{bottom:118.021200pt;}
.yb6{bottom:123.661467pt;}
.y97{bottom:123.718800pt;}
.y52{bottom:123.771067pt;}
.y27{bottom:133.360000pt;}
.yb5{bottom:139.130000pt;}
.y96{bottom:139.187333pt;}
.y51{bottom:140.304400pt;}
.y26{bottom:148.682533pt;}
.yb4{bottom:154.598533pt;}
.y95{bottom:154.655867pt;}
.y50{bottom:156.837733pt;}
.y25{bottom:164.021333pt;}
.yb3{bottom:170.067067pt;}
.y94{bottom:170.124400pt;}
.y4f{bottom:173.371067pt;}
.y24{bottom:179.360133pt;}
.yb2{bottom:185.535600pt;}
.y93{bottom:185.592933pt;}
.y4e{bottom:189.904400pt;}
.yb1{bottom:201.004133pt;}
.y92{bottom:201.061467pt;}
.y4d{bottom:206.437733pt;}
.y23{bottom:211.103733pt;}
.yb0{bottom:216.472667pt;}
.y91{bottom:216.530000pt;}
.y4c{bottom:222.971067pt;}
.y21{bottom:226.435733pt;}
.y22{bottom:226.437733pt;}
.ye0{bottom:231.662667pt;}
.yaf{bottom:231.941200pt;}
.y90{bottom:231.998533pt;}
.y4b{bottom:239.504400pt;}
.y20{bottom:241.769733pt;}
.y105{bottom:247.062400pt;}
.ydf{bottom:247.131200pt;}
.yae{bottom:247.409733pt;}
.y8f{bottom:247.467067pt;}
.y61{bottom:256.037733pt;}
.y1f{bottom:257.103733pt;}
.y104{bottom:262.530933pt;}
.yde{bottom:262.599733pt;}
.yad{bottom:262.878267pt;}
.y8e{bottom:262.935600pt;}
.y73{bottom:269.867467pt;}
.y1e{bottom:272.437733pt;}
.y4a{bottom:272.571067pt;}
.y103{bottom:277.999467pt;}
.ydd{bottom:278.068267pt;}
.yac{bottom:278.346800pt;}
.y8d{bottom:278.404133pt;}
.y1d{bottom:287.770400pt;}
.y60{bottom:289.104400pt;}
.y72{bottom:292.329867pt;}
.y102{bottom:293.468000pt;}
.ydc{bottom:293.536800pt;}
.yab{bottom:293.815333pt;}
.y8c{bottom:293.872667pt;}
.y1c{bottom:303.104400pt;}
.y5f{bottom:305.637733pt;}
.y101{bottom:308.936533pt;}
.ydb{bottom:309.005333pt;}
.y71{bottom:309.193867pt;}
.yaa{bottom:309.283867pt;}
.y8b{bottom:309.341200pt;}
.y6d{bottom:310.285067pt;}
.y6f{bottom:317.625867pt;}
.y1b{bottom:318.437067pt;}
.y49{bottom:322.171067pt;}
.y100{bottom:324.405067pt;}
.yda{bottom:324.473867pt;}
.ya9{bottom:324.752400pt;}
.y8a{bottom:324.809733pt;}
.y6c{bottom:324.954267pt;}
.y70{bottom:326.057867pt;}
.y1a{bottom:333.771067pt;}
.y48{bottom:338.704400pt;}
.yff{bottom:339.873600pt;}
.yd9{bottom:339.942400pt;}
.ya8{bottom:340.220933pt;}
.y89{bottom:340.278267pt;}
.y6e{bottom:342.909467pt;}
.y19{bottom:349.103067pt;}
.y47{bottom:355.237733pt;}
.yfe{bottom:355.342133pt;}
.yd8{bottom:355.410933pt;}
.ya7{bottom:355.689467pt;}
.y88{bottom:355.746800pt;}
.y6b{bottom:359.773467pt;}
.y18{bottom:364.437067pt;}
.yfd{bottom:370.810667pt;}
.yd7{bottom:370.879467pt;}
.ya6{bottom:371.158000pt;}
.y87{bottom:371.215333pt;}
.y46{bottom:371.771067pt;}
.y17{bottom:379.771067pt;}
.yfc{bottom:386.279200pt;}
.yd6{bottom:386.348000pt;}
.ya5{bottom:386.626533pt;}
.y86{bottom:386.683867pt;}
.y45{bottom:388.304400pt;}
.y16{bottom:395.104400pt;}
.yfb{bottom:401.747733pt;}
.yd5{bottom:401.816533pt;}
.ya4{bottom:402.095067pt;}
.y85{bottom:402.152400pt;}
.y44{bottom:404.837733pt;}
.yfa{bottom:417.216267pt;}
.yd4{bottom:417.285067pt;}
.ya3{bottom:417.563600pt;}
.y84{bottom:417.620933pt;}
.y43{bottom:421.371067pt;}
.y15{bottom:426.037733pt;}
.yf9{bottom:432.684800pt;}
.yd3{bottom:432.753600pt;}
.ya2{bottom:433.032133pt;}
.y83{bottom:433.089467pt;}
.y42{bottom:437.904400pt;}
.y14{bottom:441.371067pt;}
.yf8{bottom:448.153333pt;}
.yd2{bottom:448.222133pt;}
.ya1{bottom:448.500667pt;}
.y82{bottom:448.558000pt;}
.y41{bottom:454.437733pt;}
.yf7{bottom:463.621867pt;}
.yd1{bottom:463.690667pt;}
.ya0{bottom:463.969200pt;}
.y81{bottom:464.026533pt;}
.y40{bottom:470.971067pt;}
.y13{bottom:472.295733pt;}
.yf6{bottom:479.090400pt;}
.yd0{bottom:479.159200pt;}
.y9f{bottom:479.437733pt;}
.y80{bottom:479.495067pt;}
.y3f{bottom:487.504400pt;}
.y12{bottom:487.629733pt;}
.yf5{bottom:494.558933pt;}
.ycf{bottom:494.627733pt;}
.y9e{bottom:494.906267pt;}
.y7f{bottom:494.963600pt;}
.y11{bottom:502.963733pt;}
.y3e{bottom:504.037733pt;}
.yf4{bottom:510.027467pt;}
.yce{bottom:510.096267pt;}
.y9d{bottom:510.374800pt;}
.y7e{bottom:510.432133pt;}
.y10{bottom:518.297733pt;}
.y3d{bottom:520.571067pt;}
.yf3{bottom:525.496000pt;}
.ycd{bottom:525.564800pt;}
.y9c{bottom:525.843333pt;}
.y7d{bottom:525.900667pt;}
.yf{bottom:533.631733pt;}
.y3c{bottom:537.104400pt;}
.yf2{bottom:540.964533pt;}
.ycc{bottom:541.033333pt;}
.ye{bottom:548.965733pt;}
.y3b{bottom:553.637733pt;}
.yf1{bottom:556.433067pt;}
.ycb{bottom:556.501867pt;}
.y7c{bottom:556.837733pt;}
.yd{bottom:564.299733pt;}
.y3a{bottom:570.171067pt;}
.yf0{bottom:571.901600pt;}
.yca{bottom:571.970400pt;}
.yc{bottom:579.633733pt;}
.y39{bottom:586.704400pt;}
.yef{bottom:587.370133pt;}
.yc9{bottom:587.438933pt;}
.yb{bottom:594.967733pt;}
.yee{bottom:602.838667pt;}
.yc8{bottom:602.907467pt;}
.y38{bottom:603.237733pt;}
.ya{bottom:610.301733pt;}
.y6a{bottom:617.067467pt;}
.yed{bottom:618.307200pt;}
.yc7{bottom:618.376000pt;}
.y37{bottom:619.771067pt;}
.y9{bottom:625.635733pt;}
.yec{bottom:633.775733pt;}
.yc6{bottom:633.844533pt;}
.y36{bottom:636.304400pt;}
.y69{bottom:639.529867pt;}
.y8{bottom:640.969733pt;}
.yeb{bottom:649.244267pt;}
.yc5{bottom:649.313067pt;}
.y5e{bottom:652.837733pt;}
.y7{bottom:656.303733pt;}
.y68{bottom:656.393867pt;}
.y64{bottom:657.485067pt;}
.yea{bottom:664.712800pt;}
.yc4{bottom:664.781600pt;}
.y66{bottom:664.825867pt;}
.y35{bottom:669.371067pt;}
.y6{bottom:671.637733pt;}
.y63{bottom:672.154267pt;}
.y67{bottom:673.257867pt;}
.ye9{bottom:680.181333pt;}
.yc3{bottom:680.250133pt;}
.y5d{bottom:685.904400pt;}
.y5{bottom:686.971067pt;}
.y65{bottom:690.109467pt;}
.ye8{bottom:695.649867pt;}
.yc2{bottom:695.718667pt;}
.y4{bottom:702.437733pt;}
.y62{bottom:706.973467pt;}
.y7b{bottom:709.279467pt;}
.ye7{bottom:711.118400pt;}
.yc1{bottom:711.187200pt;}
.y5c{bottom:718.971067pt;}
.ye6{bottom:726.586933pt;}
.yc0{bottom:726.655733pt;}
.y34{bottom:727.165067pt;}
.y3{bottom:727.506933pt;}
.y7a{bottom:731.729600pt;}
.y5b{bottom:735.504400pt;}
.ye5{bottom:742.055467pt;}
.ybf{bottom:742.124267pt;}
.y33{bottom:742.498400pt;}
.y79{bottom:748.593600pt;}
.y76{bottom:749.697200pt;}
.y5a{bottom:752.037733pt;}
.ye4{bottom:757.524000pt;}
.ybe{bottom:757.592800pt;}
.y2e{bottom:762.125333pt;}
.y75{bottom:764.366400pt;}
.y78{bottom:765.457600pt;}
.y59{bottom:768.571067pt;}
.y2d{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.ye3{bottom:772.992533pt;}
.ybd{bottom:773.061333pt;}
.y32{bottom:773.431067pt;}
.y77{bottom:782.321600pt;}
.y58{bottom:785.104400pt;}
.ye2{bottom:788.461067pt;}
.ybc{bottom:788.529867pt;}
.y31{bottom:788.765067pt;}
.y1{bottom:795.958400pt;}
.y74{bottom:799.185600pt;}
.y57{bottom:801.637733pt;}
.ye1{bottom:803.929600pt;}
.ybb{bottom:803.998400pt;}
.y30{bottom:804.098400pt;}
.y2f{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.h10{height:40.958933pt;}
.h5{height:43.344000pt;}
.h6{height:44.018667pt;}
.h8{height:44.021333pt;}
.h7{height:44.024000pt;}
.hf{height:44.536533pt;}
.he{height:45.036800pt;}
.hb{height:45.216000pt;}
.h9{height:48.161600pt;}
.hd{height:49.226667pt;}
.hc{height:50.400000pt;}
.h4{height:52.106667pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.498000pt;}
.x7{left:25.226133pt;}
.x6{left:64.252000pt;}
.x1{left:71.811067pt;}
.x11{left:75.592533pt;}
.x9{left:83.145333pt;}
.x3{left:90.714133pt;}
.xa{left:117.162000pt;}
.xf{left:194.749600pt;}
.x10{left:201.172800pt;}
.xb{left:215.737867pt;}
.xe{left:222.508267pt;}
.x13{left:314.145067pt;}
.x15{left:321.704133pt;}
.x12{left:325.485600pt;}
.x14{left:333.044667pt;}
.xd{left:488.389067pt;}
.xc{left:491.799067pt;}
.x2{left:555.590533pt;}
.x5{left:578.088533pt;}
.x4{left:580.816667pt;}
}




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