
    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_42e314c26021edc8aade94e6.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_c6db25192f83142c31ebeae0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.954000;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_9c28a5798be055fb093c8f22.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9011c6503e73ce4ab0a056d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_884c159cddf7be0dc7f3a547.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.169000;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_70e01152238fa03156e5bf2d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.184000;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_c39b576e8dc78d9eb4b6fbf7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_e0ebddda8ae1cc1bf7b4c207.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_4151fe98302699269a9d7cb0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4151fe98302699269a9d7cb0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fd4003a90ab60901e4611ee6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.129000;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:ffc;src:url('chunks/assets/font_0ed03b97910de72a0e5bfded.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.143048;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:ffd;src:url('chunks/assets/font_154ffda6e6e6d776bd4feea4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.171000;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);}
.v3{vertical-align:-19.980000px;}
.v4{vertical-align:-3.124800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:16.830000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:31.920000px;}
.ls48{letter-spacing:-4.980000px;}
.ls41{letter-spacing:-3.420000px;}
.ls58{letter-spacing:-3.120000px;}
.ls54{letter-spacing:-3.000000px;}
.ls21{letter-spacing:-2.820000px;}
.ls53{letter-spacing:-2.700000px;}
.ls30{letter-spacing:-1.920000px;}
.ls2b{letter-spacing:-1.836000px;}
.ls49{letter-spacing:-1.500000px;}
.lsc{letter-spacing:-1.479000px;}
.ls52{letter-spacing:-1.380000px;}
.ls2d{letter-spacing:-1.260000px;}
.ls40{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.561000px;}
.ls31{letter-spacing:-0.480000px;}
.ls4c{letter-spacing:-0.414000px;}
.ls4b{letter-spacing:-0.349800px;}
.ls59{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.279000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.223200px;}
.lsd{letter-spacing:-0.204000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls22{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.102000px;}
.ls4a{letter-spacing:-0.069960px;}
.ls2c{letter-spacing:-0.060000px;}
.lsb{letter-spacing:-0.051000px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.026400px;}
.ls4e{letter-spacing:0.030000px;}
.ls55{letter-spacing:0.042000px;}
.ls0{letter-spacing:0.051000px;}
.ls7{letter-spacing:0.060000px;}
.ls27{letter-spacing:0.068760px;}
.ls44{letter-spacing:0.090000px;}
.ls42{letter-spacing:0.104940px;}
.ls36{letter-spacing:0.111600px;}
.ls14{letter-spacing:0.120000px;}
.ls34{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.153000px;}
.ls37{letter-spacing:0.162000px;}
.ls43{letter-spacing:0.174900px;}
.ls25{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.197880px;}
.lsf{letter-spacing:0.204000px;}
.ls4f{letter-spacing:0.216600px;}
.ls12{letter-spacing:0.222000px;}
.ls35{letter-spacing:0.223200px;}
.ls6{letter-spacing:0.240000px;}
.ls3d{letter-spacing:0.246000px;}
.ls3{letter-spacing:0.255000px;}
.ls2{letter-spacing:0.280500px;}
.ls1a{letter-spacing:0.300000px;}
.lse{letter-spacing:0.306000px;}
.ls3f{letter-spacing:0.314820px;}
.ls1b{letter-spacing:0.330000px;}
.ls13{letter-spacing:0.333000px;}
.ls50{letter-spacing:0.334800px;}
.ls17{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.420000px;}
.ls38{letter-spacing:0.438000px;}
.ls16{letter-spacing:0.480000px;}
.ls3b{letter-spacing:0.510000px;}
.ls18{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.660000px;}
.ls3c{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.810000px;}
.ls4{letter-spacing:0.840000px;}
.ls9{letter-spacing:0.867000px;}
.ls4d{letter-spacing:0.900000px;}
.ls20{letter-spacing:1.200000px;}
.ls1c{letter-spacing:1.440000px;}
.ls5a{letter-spacing:1.530000px;}
.ls1d{letter-spacing:1.728000px;}
.ls46{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.836000px;}
.ls2a{letter-spacing:1.944000px;}
.ls28{letter-spacing:1.980000px;}
.ls45{letter-spacing:2.004000px;}
.ls51{letter-spacing:2.052000px;}
.ls29{letter-spacing:2.124000px;}
.ls3e{letter-spacing:2.214000px;}
.ls47{letter-spacing:2.376000px;}
.ls56{letter-spacing:2.460000px;}
.ls19{letter-spacing:4.122000px;}
.ls3a{letter-spacing:4.140000px;}
.ls39{letter-spacing:4.260000px;}
.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;}
}
.ws0{word-spacing:-19.776000px;}
.ws96{word-spacing:-15.174000px;}
.wsbb{word-spacing:-15.000000px;}
.wsd0{word-spacing:-14.742000px;}
.wsba{word-spacing:-14.634000px;}
.ws27{word-spacing:-14.526000px;}
.ws6b{word-spacing:-12.960000px;}
.ws83{word-spacing:-12.840000px;}
.wsc8{word-spacing:-12.801000px;}
.ws5{word-spacing:-12.660000px;}
.ws29{word-spacing:-12.540000px;}
.wsbe{word-spacing:-11.997000px;}
.ws2b{word-spacing:-11.940000px;}
.ws7f{word-spacing:-11.760000px;}
.wsbd{word-spacing:-11.640000px;}
.ws85{word-spacing:-11.580000px;}
.ws6e{word-spacing:-11.550600px;}
.ws28{word-spacing:-11.520000px;}
.wscb{word-spacing:-11.475000px;}
.ws98{word-spacing:-11.460000px;}
.ws6{word-spacing:-11.340000px;}
.ws2a{word-spacing:-11.280000px;}
.ws4e{word-spacing:-11.220000px;}
.ws2c{word-spacing:-11.160000px;}
.ws55{word-spacing:-11.100000px;}
.wsc9{word-spacing:-10.965000px;}
.wsca{word-spacing:-10.914000px;}
.ws81{word-spacing:-10.500000px;}
.wsbc{word-spacing:-10.140000px;}
.ws4f{word-spacing:-10.020000px;}
.wsac{word-spacing:-9.900000px;}
.ws4{word-spacing:-9.741000px;}
.ws3{word-spacing:-9.588000px;}
.ws6c{word-spacing:-9.540000px;}
.ws2{word-spacing:-9.537000px;}
.ws1{word-spacing:-9.486000px;}
.ws56{word-spacing:-9.360000px;}
.ws7{word-spacing:-8.901000px;}
.ws99{word-spacing:-8.487000px;}
.ws80{word-spacing:-7.625640px;}
.ws84{word-spacing:-7.485720px;}
.ws82{word-spacing:-7.415760px;}
.ws50{word-spacing:-7.310820px;}
.ws97{word-spacing:-7.240860px;}
.ws67{word-spacing:-3.420000px;}
.ws37{word-spacing:-2.100000px;}
.wsae{word-spacing:-2.040000px;}
.ws61{word-spacing:-1.980000px;}
.ws57{word-spacing:-1.944000px;}
.ws42{word-spacing:-1.920000px;}
.ws4c{word-spacing:-1.897200px;}
.ws47{word-spacing:-1.860000px;}
.ws92{word-spacing:-1.800000px;}
.ws6a{word-spacing:-1.785600px;}
.ws78{word-spacing:-1.740000px;}
.ws38{word-spacing:-1.680000px;}
.ws18{word-spacing:-1.632000px;}
.ws93{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.581000px;}
.ws4d{word-spacing:-1.506600px;}
.ws5d{word-spacing:-1.500000px;}
.ws10{word-spacing:-1.428000px;}
.ws8d{word-spacing:-1.380000px;}
.wsce{word-spacing:-1.377000px;}
.ws8b{word-spacing:-1.320000px;}
.wsc4{word-spacing:-1.260000px;}
.ws3c{word-spacing:-1.200000px;}
.wsa4{word-spacing:-1.140000px;}
.ws2e{word-spacing:-1.080000px;}
.ws15{word-spacing:-1.071000px;}
.wsaa{word-spacing:-1.060200px;}
.ws35{word-spacing:-1.020000px;}
.ws9d{word-spacing:-0.900000px;}
.wsa{word-spacing:-0.867000px;}
.wsb1{word-spacing:-0.840000px;}
.ws5e{word-spacing:-0.781200px;}
.ws46{word-spacing:-0.780000px;}
.wsc5{word-spacing:-0.720000px;}
.wscd{word-spacing:-0.714000px;}
.wsa6{word-spacing:-0.660000px;}
.ws9b{word-spacing:-0.600000px;}
.ws1a{word-spacing:-0.561000px;}
.ws45{word-spacing:-0.540000px;}
.wscf{word-spacing:-0.510000px;}
.ws88{word-spacing:-0.480000px;}
.wsc7{word-spacing:-0.446400px;}
.ws8f{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.357000px;}
.ws8{word-spacing:-0.355200px;}
.ws11{word-spacing:-0.306000px;}
.ws43{word-spacing:-0.300000px;}
.ws1d{word-spacing:-0.255000px;}
.ws34{word-spacing:-0.240000px;}
.ws25{word-spacing:-0.223200px;}
.ws26{word-spacing:-0.222000px;}
.ws13{word-spacing:-0.204000px;}
.ws3a{word-spacing:-0.180000px;}
.wsd{word-spacing:-0.153000px;}
.ws31{word-spacing:-0.120000px;}
.ws33{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws65{word-spacing:0.060000px;}
.wsb{word-spacing:0.102000px;}
.ws7b{word-spacing:0.111600px;}
.wsa3{word-spacing:0.120000px;}
.ws75{word-spacing:0.180000px;}
.ws77{word-spacing:0.204000px;}
.ws94{word-spacing:0.240000px;}
.ws79{word-spacing:0.279000px;}
.ws5a{word-spacing:0.300000px;}
.wsa9{word-spacing:0.334800px;}
.wsa8{word-spacing:0.349800px;}
.ws49{word-spacing:0.360000px;}
.ws36{word-spacing:0.420000px;}
.ws30{word-spacing:0.480000px;}
.wsa2{word-spacing:0.540000px;}
.ws7a{word-spacing:0.558000px;}
.ws1f{word-spacing:0.561000px;}
.ws39{word-spacing:0.600000px;}
.ws19{word-spacing:0.612000px;}
.ws66{word-spacing:0.660000px;}
.ws16{word-spacing:0.714000px;}
.ws95{word-spacing:0.720000px;}
.wsb8{word-spacing:0.725400px;}
.ws7d{word-spacing:0.781200px;}
.ws7e{word-spacing:0.837000px;}
.ws63{word-spacing:0.840000px;}
.ws62{word-spacing:0.900000px;}
.ws12{word-spacing:0.969000px;}
.wsc6{word-spacing:1.004400px;}
.ws76{word-spacing:1.020000px;}
.ws40{word-spacing:1.080000px;}
.ws69{word-spacing:1.140000px;}
.wsab{word-spacing:1.171800px;}
.ws41{word-spacing:1.200000px;}
.ws8a{word-spacing:1.260000px;}
.wsb2{word-spacing:1.380000px;}
.ws1b{word-spacing:1.428000px;}
.ws3e{word-spacing:1.440000px;}
.ws14{word-spacing:1.479000px;}
.ws4b{word-spacing:1.500000px;}
.ws7c{word-spacing:1.562400px;}
.wse{word-spacing:1.581000px;}
.ws3f{word-spacing:1.620000px;}
.ws17{word-spacing:1.632000px;}
.ws24{word-spacing:1.674000px;}
.ws64{word-spacing:1.680000px;}
.ws9f{word-spacing:1.740000px;}
.ws1e{word-spacing:1.785000px;}
.ws23{word-spacing:1.785600px;}
.wsa5{word-spacing:1.800000px;}
.ws32{word-spacing:1.860000px;}
.ws22{word-spacing:1.920000px;}
.ws2f{word-spacing:1.980000px;}
.ws87{word-spacing:2.040000px;}
.ws68{word-spacing:2.100000px;}
.ws1c{word-spacing:2.142000px;}
.wsc0{word-spacing:2.160000px;}
.wsa7{word-spacing:2.220000px;}
.ws48{word-spacing:2.280000px;}
.wsb3{word-spacing:2.340000px;}
.wsa1{word-spacing:2.400000px;}
.wsc3{word-spacing:2.460000px;}
.wsaf{word-spacing:2.520000px;}
.ws4a{word-spacing:2.580000px;}
.wsb9{word-spacing:2.622600px;}
.ws72{word-spacing:2.640000px;}
.ws90{word-spacing:2.700000px;}
.ws3d{word-spacing:2.820000px;}
.ws3b{word-spacing:3.000000px;}
.ws5c{word-spacing:3.120000px;}
.ws8e{word-spacing:3.180000px;}
.wsc1{word-spacing:3.300000px;}
.ws9c{word-spacing:3.420000px;}
.wsa0{word-spacing:3.480000px;}
.ws59{word-spacing:3.600000px;}
.wsb4{word-spacing:3.660000px;}
.wsc2{word-spacing:3.720000px;}
.ws89{word-spacing:3.780000px;}
.ws8c{word-spacing:4.080000px;}
.ws5f{word-spacing:4.140000px;}
.ws73{word-spacing:4.260000px;}
.ws44{word-spacing:4.320000px;}
.ws74{word-spacing:4.500000px;}
.wsb5{word-spacing:4.680000px;}
.wsb6{word-spacing:4.860000px;}
.ws60{word-spacing:4.920000px;}
.ws9e{word-spacing:4.980000px;}
.ws91{word-spacing:5.100000px;}
.ws21{word-spacing:5.160000px;}
.ws5b{word-spacing:5.400000px;}
.wsb7{word-spacing:5.460000px;}
.ws20{word-spacing:7.020000px;}
.wsb0{word-spacing:7.440000px;}
.ws51{word-spacing:45.588600px;}
.ws52{word-spacing:97.482600px;}
.ws53{word-spacing:124.992000px;}
.ws54{word-spacing:163.661400px;}
.ws6d{word-spacing:275.038200px;}
.ws6f{word-spacing:346.350600px;}
.ws70{word-spacing:380.109600px;}
.ws9a{word-spacing:1039.014000px;}
.wsd1{word-spacing:1039.446000px;}
.wsbf{word-spacing:1039.554000px;}
.ws2d{word-spacing:1039.662000px;}
.ws71{word-spacing:1041.174000px;}
.ws86{word-spacing:1625.778000px;}
.wsad{word-spacing:1626.102000px;}
.wscc{word-spacing:1630.854000px;}
.ws58{word-spacing:1633.932000px;}
._17{margin-left:-1040.757300px;}
._b{margin-left:-1039.429500px;}
._20{margin-left:-1038.336900px;}
._24{margin-left:-8.582940px;}
._1{margin-left:-7.200000px;}
._9{margin-left:-6.144000px;}
._4{margin-left:-5.055300px;}
._5{margin-left:-3.575100px;}
._0{margin-left:-2.400000px;}
._2{margin-left:-1.087200px;}
._3{width:1.387200px;}
._7{width:2.488800px;}
._6{width:4.146300px;}
._c{width:5.618100px;}
._8{width:7.895100px;}
._1c{width:9.420000px;}
._27{width:14.520000px;}
._2c{width:20.604000px;}
._22{width:22.260000px;}
._2d{width:25.347000px;}
._26{width:26.950200px;}
._1d{width:30.298800px;}
._28{width:31.358400px;}
._25{width:32.809800px;}
._23{width:35.041800px;}
._1f{width:36.380400px;}
._1e{width:39.840600px;}
._21{width:41.091600px;}
._29{width:43.350000px;}
._2a{width:45.237000px;}
._2b{width:46.257000px;}
._16{width:50.722200px;}
._e{width:52.228800px;}
._d{width:53.958000px;}
._a{width:55.632000px;}
._11{width:88.164600px;}
._10{width:89.503200px;}
._f{width:108.475200px;}
._12{width:159.085800px;}
._13{width:189.775800px;}
._18{width:216.922200px;}
._14{width:236.424600px;}
._15{width:244.906200px;}
._19{width:314.712000px;}
._1a{width:485.850600px;}
._1b{width:509.733000px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:22.200000px;}
.fs9{font-size:34.980000px;}
.fs5{font-size:41.400000px;}
.fs3{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{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;}
.y25{bottom:90.567000px;}
.y51{bottom:90.567150px;}
.ydc{bottom:94.663050px;}
.yc3{bottom:94.675800px;}
.y7f{bottom:107.804850px;}
.y92{bottom:107.811150px;}
.y24{bottom:107.817000px;}
.y6c{bottom:107.817150px;}
.y50{bottom:107.817300px;}
.ydb{bottom:111.913800px;}
.yc2{bottom:111.926550px;}
.y7e{bottom:125.061000px;}
.y90{bottom:125.067150px;}
.y6b{bottom:125.067300px;}
.y4f{bottom:125.067450px;}
.yda{bottom:129.164550px;}
.yc1{bottom:129.177300px;}
.y4e{bottom:142.311450px;}
.y7d{bottom:142.317150px;}
.y6a{bottom:142.317300px;}
.y91{bottom:142.317450px;}
.yd9{bottom:146.415300px;}
.yc0{bottom:146.428050px;}
.y23{bottom:146.668050px;}
.y7c{bottom:159.567150px;}
.y8f{bottom:159.567300px;}
.y99{bottom:159.567450px;}
.y4d{bottom:159.567600px;}
.yd8{bottom:163.666050px;}
.ybf{bottom:163.678800px;}
.y22{bottom:165.118050px;}
.y7b{bottom:176.817150px;}
.y98{bottom:176.817450px;}
.y4c{bottom:176.817600px;}
.yd7{bottom:180.916800px;}
.ybe{bottom:180.929550px;}
.y21{bottom:183.568050px;}
.y69{bottom:183.568200px;}
.y7a{bottom:194.067150px;}
.y4b{bottom:194.067600px;}
.yd6{bottom:198.167550px;}
.ybd{bottom:198.180300px;}
.y20{bottom:202.018050px;}
.y68{bottom:202.018200px;}
.y79{bottom:211.311000px;}
.yd5{bottom:215.418300px;}
.ybc{bottom:215.431050px;}
.y8e{bottom:220.468050px;}
.y67{bottom:220.468200px;}
.y78{bottom:228.567150px;}
.y97{bottom:230.064450px;}
.yd4{bottom:232.669050px;}
.ybb{bottom:232.681800px;}
.y1f{bottom:238.918050px;}
.y4a{bottom:238.918200px;}
.y77{bottom:245.811000px;}
.y96{bottom:247.315200px;}
.yd3{bottom:249.919800px;}
.yba{bottom:249.932550px;}
.y8d{bottom:257.368050px;}
.y49{bottom:257.368200px;}
.y76{bottom:263.067150px;}
.y95{bottom:264.565950px;}
.yd2{bottom:267.170550px;}
.yb9{bottom:267.183300px;}
.y8c{bottom:275.818050px;}
.y48{bottom:275.818200px;}
.y75{bottom:280.311300px;}
.y94{bottom:281.816700px;}
.yd1{bottom:284.421300px;}
.yb8{bottom:284.434050px;}
.y1e{bottom:294.031950px;}
.y8b{bottom:294.268050px;}
.y47{bottom:294.268200px;}
.y74{bottom:297.567450px;}
.yd0{bottom:301.672050px;}
.yb7{bottom:301.684800px;}
.y1d{bottom:311.282700px;}
.y8a{bottom:312.718050px;}
.y46{bottom:312.718200px;}
.y93{bottom:316.318200px;}
.ycf{bottom:318.922800px;}
.yb6{bottom:318.935550px;}
.y89{bottom:331.168050px;}
.y45{bottom:331.168200px;}
.yce{bottom:336.173550px;}
.yb5{bottom:336.186300px;}
.y1c{bottom:345.784200px;}
.y88{bottom:349.618050px;}
.y44{bottom:349.618200px;}
.ycd{bottom:353.424300px;}
.yb4{bottom:353.437050px;}
.y1b{bottom:363.034950px;}
.y66{bottom:368.068050px;}
.y43{bottom:368.068200px;}
.ycc{bottom:370.675050px;}
.yb3{bottom:370.687800px;}
.y1a{bottom:380.285700px;}
.y65{bottom:386.518050px;}
.y42{bottom:386.518200px;}
.ycb{bottom:387.925800px;}
.yb2{bottom:387.938550px;}
.y19{bottom:397.536450px;}
.y64{bottom:404.968050px;}
.y41{bottom:404.968200px;}
.yca{bottom:405.176550px;}
.yb1{bottom:405.189300px;}
.y18{bottom:414.787200px;}
.yc9{bottom:422.427300px;}
.yb0{bottom:422.440050px;}
.y63{bottom:423.418050px;}
.y40{bottom:423.418200px;}
.y17{bottom:432.037950px;}
.yc8{bottom:439.678050px;}
.yaf{bottom:439.690800px;}
.y62{bottom:441.868050px;}
.y3f{bottom:441.868200px;}
.y16{bottom:449.288700px;}
.yc7{bottom:456.928800px;}
.yae{bottom:456.941550px;}
.y61{bottom:460.318050px;}
.y3e{bottom:460.318200px;}
.y15{bottom:466.539450px;}
.yc6{bottom:474.179550px;}
.yad{bottom:474.192300px;}
.y60{bottom:478.768050px;}
.y3d{bottom:478.768200px;}
.y14{bottom:483.790200px;}
.yc5{bottom:491.430300px;}
.yac{bottom:491.443050px;}
.y85{bottom:497.218050px;}
.y3c{bottom:497.218200px;}
.y13{bottom:501.040950px;}
.yc4{bottom:508.681050px;}
.yab{bottom:508.693800px;}
.y73{bottom:510.971400px;}
.y5f{bottom:515.668050px;}
.y3b{bottom:515.668200px;}
.y12{bottom:518.291700px;}
.y72{bottom:532.842900px;}
.y84{bottom:534.118050px;}
.y3a{bottom:534.118200px;}
.y11{bottom:535.542450px;}
.yaa{bottom:543.195300px;}
.y71{bottom:551.814900px;}
.y83{bottom:552.568050px;}
.y10{bottom:552.793200px;}
.y5e{bottom:568.824600px;}
.y82{bottom:571.018050px;}
.y39{bottom:571.018200px;}
.y70{bottom:571.568850px;}
.y5d{bottom:586.075350px;}
.yf{bottom:587.294700px;}
.y81{bottom:589.468050px;}
.ya9{bottom:594.947550px;}
.ye{bottom:604.545450px;}
.y87{bottom:607.918050px;}
.y5c{bottom:607.946700px;}
.ya8{bottom:612.198300px;}
.y6f{bottom:626.368050px;}
.y38{bottom:626.368200px;}
.y5b{bottom:626.918700px;}
.ya7{bottom:629.449050px;}
.yd{bottom:639.046950px;}
.y6e{bottom:644.818050px;}
.y37{bottom:644.818200px;}
.ya6{bottom:646.699800px;}
.yc{bottom:656.297700px;}
.y80{bottom:663.268050px;}
.y36{bottom:663.268200px;}
.ya5{bottom:663.950550px;}
.yb{bottom:673.548450px;}
.ya4{bottom:681.201300px;}
.y6d{bottom:681.718050px;}
.y35{bottom:681.718200px;}
.ya{bottom:690.799200px;}
.ya3{bottom:698.452050px;}
.y34{bottom:700.168050px;}
.y5a{bottom:700.168200px;}
.y9{bottom:708.049950px;}
.yeb{bottom:715.690050px;}
.ya2{bottom:715.702800px;}
.y33{bottom:718.618050px;}
.y59{bottom:718.618200px;}
.y8{bottom:725.300700px;}
.yea{bottom:732.940800px;}
.ya1{bottom:732.953550px;}
.y32{bottom:737.068050px;}
.y58{bottom:737.068200px;}
.y7{bottom:742.551450px;}
.ye9{bottom:750.191550px;}
.ya0{bottom:750.204300px;}
.y31{bottom:755.518050px;}
.y57{bottom:755.518200px;}
.y6{bottom:759.802200px;}
.ye8{bottom:767.442300px;}
.y9f{bottom:767.455050px;}
.y30{bottom:773.968050px;}
.y56{bottom:773.968200px;}
.y5{bottom:777.052950px;}
.ye7{bottom:784.693050px;}
.y9e{bottom:784.705800px;}
.y2f{bottom:792.418050px;}
.y55{bottom:792.418200px;}
.y4{bottom:794.303700px;}
.ye6{bottom:801.943800px;}
.ydf{bottom:801.956550px;}
.y2e{bottom:810.868050px;}
.y54{bottom:810.868200px;}
.ye5{bottom:819.194550px;}
.y9d{bottom:819.207300px;}
.y3{bottom:828.803700px;}
.y2d{bottom:829.318050px;}
.y53{bottom:829.318200px;}
.ye4{bottom:836.445300px;}
.yde{bottom:836.458050px;}
.y2c{bottom:847.768050px;}
.y52{bottom:847.768200px;}
.ye3{bottom:853.696050px;}
.ydd{bottom:853.708800px;}
.y27{bottom:857.391000px;}
.y26{bottom:864.889050px;}
.y2b{bottom:866.218050px;}
.y86{bottom:866.218200px;}
.y2{bottom:870.815700px;}
.ye2{bottom:870.946800px;}
.y9c{bottom:870.959550px;}
.y2a{bottom:884.668050px;}
.ye1{bottom:888.197550px;}
.y9b{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y29{bottom:903.118050px;}
.ye0{bottom:905.448300px;}
.y9a{bottom:905.461050px;}
.y28{bottom:955.942350px;}
.ha{height:15.295800px;}
.h14{height:45.543000px;}
.he{height:45.696000px;}
.h5{height:45.900000px;}
.h6{height:46.614000px;}
.h4{height:48.195000px;}
.hd{height:48.378600px;}
.h9{height:49.996800px;}
.h10{height:50.021400px;}
.h11{height:50.046000px;}
.hb{height:50.868000px;}
.h12{height:53.880000px;}
.h8{height:54.000000px;}
.hc{height:54.000600px;}
.hf{height:56.520000px;}
.h7{height:56.700000px;}
.h13{height:56.940000px;}
.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.966350px;}
.x7{left:28.835700px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.xf{left:85.033500px;}
.x6{left:93.543300px;}
.x2{left:102.047250px;}
.xa{left:114.793500px;}
.xb{left:123.302250px;}
.xc{left:131.807250px;}
.x9{left:151.681200px;}
.x10{left:353.408250px;}
.xd{left:361.924950px;}
.x11{left:366.158250px;}
.xe{left:374.674950px;}
.x4{left:651.643500px;}
.x3{left:654.512850px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v4{vertical-align:-2.777600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.960000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:28.373333pt;}
.ls48{letter-spacing:-4.426667pt;}
.ls41{letter-spacing:-3.040000pt;}
.ls58{letter-spacing:-2.773333pt;}
.ls54{letter-spacing:-2.666667pt;}
.ls21{letter-spacing:-2.506667pt;}
.ls53{letter-spacing:-2.400000pt;}
.ls30{letter-spacing:-1.706667pt;}
.ls2b{letter-spacing:-1.632000pt;}
.ls49{letter-spacing:-1.333333pt;}
.lsc{letter-spacing:-1.314667pt;}
.ls52{letter-spacing:-1.226667pt;}
.ls2d{letter-spacing:-1.120000pt;}
.ls40{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.498667pt;}
.ls31{letter-spacing:-0.426667pt;}
.ls4c{letter-spacing:-0.368000pt;}
.ls4b{letter-spacing:-0.310933pt;}
.ls59{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.248000pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.198400pt;}
.lsd{letter-spacing:-0.181333pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls22{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.090667pt;}
.ls4a{letter-spacing:-0.062187pt;}
.ls2c{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:-0.045333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.023467pt;}
.ls4e{letter-spacing:0.026667pt;}
.ls55{letter-spacing:0.037333pt;}
.ls0{letter-spacing:0.045333pt;}
.ls7{letter-spacing:0.053333pt;}
.ls27{letter-spacing:0.061120pt;}
.ls44{letter-spacing:0.080000pt;}
.ls42{letter-spacing:0.093280pt;}
.ls36{letter-spacing:0.099200pt;}
.ls14{letter-spacing:0.106667pt;}
.ls34{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.136000pt;}
.ls37{letter-spacing:0.144000pt;}
.ls43{letter-spacing:0.155467pt;}
.ls25{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.175893pt;}
.lsf{letter-spacing:0.181333pt;}
.ls4f{letter-spacing:0.192533pt;}
.ls12{letter-spacing:0.197333pt;}
.ls35{letter-spacing:0.198400pt;}
.ls6{letter-spacing:0.213333pt;}
.ls3d{letter-spacing:0.218667pt;}
.ls3{letter-spacing:0.226667pt;}
.ls2{letter-spacing:0.249333pt;}
.ls1a{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.272000pt;}
.ls3f{letter-spacing:0.279840pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls13{letter-spacing:0.296000pt;}
.ls50{letter-spacing:0.297600pt;}
.ls17{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls38{letter-spacing:0.389333pt;}
.ls16{letter-spacing:0.426667pt;}
.ls3b{letter-spacing:0.453333pt;}
.ls18{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.586667pt;}
.ls3c{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.720000pt;}
.ls4{letter-spacing:0.746667pt;}
.ls9{letter-spacing:0.770667pt;}
.ls4d{letter-spacing:0.800000pt;}
.ls20{letter-spacing:1.066667pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.360000pt;}
.ls1d{letter-spacing:1.536000pt;}
.ls46{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.632000pt;}
.ls2a{letter-spacing:1.728000pt;}
.ls28{letter-spacing:1.760000pt;}
.ls45{letter-spacing:1.781333pt;}
.ls51{letter-spacing:1.824000pt;}
.ls29{letter-spacing:1.888000pt;}
.ls3e{letter-spacing:1.968000pt;}
.ls47{letter-spacing:2.112000pt;}
.ls56{letter-spacing:2.186667pt;}
.ls19{letter-spacing:3.664000pt;}
.ls3a{letter-spacing:3.680000pt;}
.ls39{letter-spacing:3.786667pt;}
.ws0{word-spacing:-17.578667pt;}
.ws96{word-spacing:-13.488000pt;}
.wsbb{word-spacing:-13.333333pt;}
.wsd0{word-spacing:-13.104000pt;}
.wsba{word-spacing:-13.008000pt;}
.ws27{word-spacing:-12.912000pt;}
.ws6b{word-spacing:-11.520000pt;}
.ws83{word-spacing:-11.413333pt;}
.wsc8{word-spacing:-11.378667pt;}
.ws5{word-spacing:-11.253333pt;}
.ws29{word-spacing:-11.146667pt;}
.wsbe{word-spacing:-10.664000pt;}
.ws2b{word-spacing:-10.613333pt;}
.ws7f{word-spacing:-10.453333pt;}
.wsbd{word-spacing:-10.346667pt;}
.ws85{word-spacing:-10.293333pt;}
.ws6e{word-spacing:-10.267200pt;}
.ws28{word-spacing:-10.240000pt;}
.wscb{word-spacing:-10.200000pt;}
.ws98{word-spacing:-10.186667pt;}
.ws6{word-spacing:-10.080000pt;}
.ws2a{word-spacing:-10.026667pt;}
.ws4e{word-spacing:-9.973333pt;}
.ws2c{word-spacing:-9.920000pt;}
.ws55{word-spacing:-9.866667pt;}
.wsc9{word-spacing:-9.746667pt;}
.wsca{word-spacing:-9.701333pt;}
.ws81{word-spacing:-9.333333pt;}
.wsbc{word-spacing:-9.013333pt;}
.ws4f{word-spacing:-8.906667pt;}
.wsac{word-spacing:-8.800000pt;}
.ws4{word-spacing:-8.658667pt;}
.ws3{word-spacing:-8.522667pt;}
.ws6c{word-spacing:-8.480000pt;}
.ws2{word-spacing:-8.477333pt;}
.ws1{word-spacing:-8.432000pt;}
.ws56{word-spacing:-8.320000pt;}
.ws7{word-spacing:-7.912000pt;}
.ws99{word-spacing:-7.544000pt;}
.ws80{word-spacing:-6.778347pt;}
.ws84{word-spacing:-6.653973pt;}
.ws82{word-spacing:-6.591787pt;}
.ws50{word-spacing:-6.498507pt;}
.ws97{word-spacing:-6.436320pt;}
.ws67{word-spacing:-3.040000pt;}
.ws37{word-spacing:-1.866667pt;}
.wsae{word-spacing:-1.813333pt;}
.ws61{word-spacing:-1.760000pt;}
.ws57{word-spacing:-1.728000pt;}
.ws42{word-spacing:-1.706667pt;}
.ws4c{word-spacing:-1.686400pt;}
.ws47{word-spacing:-1.653333pt;}
.ws92{word-spacing:-1.600000pt;}
.ws6a{word-spacing:-1.587200pt;}
.ws78{word-spacing:-1.546667pt;}
.ws38{word-spacing:-1.493333pt;}
.ws18{word-spacing:-1.450667pt;}
.ws93{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.405333pt;}
.ws4d{word-spacing:-1.339200pt;}
.ws5d{word-spacing:-1.333333pt;}
.ws10{word-spacing:-1.269333pt;}
.ws8d{word-spacing:-1.226667pt;}
.wsce{word-spacing:-1.224000pt;}
.ws8b{word-spacing:-1.173333pt;}
.wsc4{word-spacing:-1.120000pt;}
.ws3c{word-spacing:-1.066667pt;}
.wsa4{word-spacing:-1.013333pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.952000pt;}
.wsaa{word-spacing:-0.942400pt;}
.ws35{word-spacing:-0.906667pt;}
.ws9d{word-spacing:-0.800000pt;}
.wsa{word-spacing:-0.770667pt;}
.wsb1{word-spacing:-0.746667pt;}
.ws5e{word-spacing:-0.694400pt;}
.ws46{word-spacing:-0.693333pt;}
.wsc5{word-spacing:-0.640000pt;}
.wscd{word-spacing:-0.634667pt;}
.wsa6{word-spacing:-0.586667pt;}
.ws9b{word-spacing:-0.533333pt;}
.ws1a{word-spacing:-0.498667pt;}
.ws45{word-spacing:-0.480000pt;}
.wscf{word-spacing:-0.453333pt;}
.ws88{word-spacing:-0.426667pt;}
.wsc7{word-spacing:-0.396800pt;}
.ws8f{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.317333pt;}
.ws8{word-spacing:-0.315733pt;}
.ws11{word-spacing:-0.272000pt;}
.ws43{word-spacing:-0.266667pt;}
.ws1d{word-spacing:-0.226667pt;}
.ws34{word-spacing:-0.213333pt;}
.ws25{word-spacing:-0.198400pt;}
.ws26{word-spacing:-0.197333pt;}
.ws13{word-spacing:-0.181333pt;}
.ws3a{word-spacing:-0.160000pt;}
.wsd{word-spacing:-0.136000pt;}
.ws31{word-spacing:-0.106667pt;}
.ws33{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws65{word-spacing:0.053333pt;}
.wsb{word-spacing:0.090667pt;}
.ws7b{word-spacing:0.099200pt;}
.wsa3{word-spacing:0.106667pt;}
.ws75{word-spacing:0.160000pt;}
.ws77{word-spacing:0.181333pt;}
.ws94{word-spacing:0.213333pt;}
.ws79{word-spacing:0.248000pt;}
.ws5a{word-spacing:0.266667pt;}
.wsa9{word-spacing:0.297600pt;}
.wsa8{word-spacing:0.310933pt;}
.ws49{word-spacing:0.320000pt;}
.ws36{word-spacing:0.373333pt;}
.ws30{word-spacing:0.426667pt;}
.wsa2{word-spacing:0.480000pt;}
.ws7a{word-spacing:0.496000pt;}
.ws1f{word-spacing:0.498667pt;}
.ws39{word-spacing:0.533333pt;}
.ws19{word-spacing:0.544000pt;}
.ws66{word-spacing:0.586667pt;}
.ws16{word-spacing:0.634667pt;}
.ws95{word-spacing:0.640000pt;}
.wsb8{word-spacing:0.644800pt;}
.ws7d{word-spacing:0.694400pt;}
.ws7e{word-spacing:0.744000pt;}
.ws63{word-spacing:0.746667pt;}
.ws62{word-spacing:0.800000pt;}
.ws12{word-spacing:0.861333pt;}
.wsc6{word-spacing:0.892800pt;}
.ws76{word-spacing:0.906667pt;}
.ws40{word-spacing:0.960000pt;}
.ws69{word-spacing:1.013333pt;}
.wsab{word-spacing:1.041600pt;}
.ws41{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.120000pt;}
.wsb2{word-spacing:1.226667pt;}
.ws1b{word-spacing:1.269333pt;}
.ws3e{word-spacing:1.280000pt;}
.ws14{word-spacing:1.314667pt;}
.ws4b{word-spacing:1.333333pt;}
.ws7c{word-spacing:1.388800pt;}
.wse{word-spacing:1.405333pt;}
.ws3f{word-spacing:1.440000pt;}
.ws17{word-spacing:1.450667pt;}
.ws24{word-spacing:1.488000pt;}
.ws64{word-spacing:1.493333pt;}
.ws9f{word-spacing:1.546667pt;}
.ws1e{word-spacing:1.586667pt;}
.ws23{word-spacing:1.587200pt;}
.wsa5{word-spacing:1.600000pt;}
.ws32{word-spacing:1.653333pt;}
.ws22{word-spacing:1.706667pt;}
.ws2f{word-spacing:1.760000pt;}
.ws87{word-spacing:1.813333pt;}
.ws68{word-spacing:1.866667pt;}
.ws1c{word-spacing:1.904000pt;}
.wsc0{word-spacing:1.920000pt;}
.wsa7{word-spacing:1.973333pt;}
.ws48{word-spacing:2.026667pt;}
.wsb3{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.133333pt;}
.wsc3{word-spacing:2.186667pt;}
.wsaf{word-spacing:2.240000pt;}
.ws4a{word-spacing:2.293333pt;}
.wsb9{word-spacing:2.331200pt;}
.ws72{word-spacing:2.346667pt;}
.ws90{word-spacing:2.400000pt;}
.ws3d{word-spacing:2.506667pt;}
.ws3b{word-spacing:2.666667pt;}
.ws5c{word-spacing:2.773333pt;}
.ws8e{word-spacing:2.826667pt;}
.wsc1{word-spacing:2.933333pt;}
.ws9c{word-spacing:3.040000pt;}
.wsa0{word-spacing:3.093333pt;}
.ws59{word-spacing:3.200000pt;}
.wsb4{word-spacing:3.253333pt;}
.wsc2{word-spacing:3.306667pt;}
.ws89{word-spacing:3.360000pt;}
.ws8c{word-spacing:3.626667pt;}
.ws5f{word-spacing:3.680000pt;}
.ws73{word-spacing:3.786667pt;}
.ws44{word-spacing:3.840000pt;}
.ws74{word-spacing:4.000000pt;}
.wsb5{word-spacing:4.160000pt;}
.wsb6{word-spacing:4.320000pt;}
.ws60{word-spacing:4.373333pt;}
.ws9e{word-spacing:4.426667pt;}
.ws91{word-spacing:4.533333pt;}
.ws21{word-spacing:4.586667pt;}
.ws5b{word-spacing:4.800000pt;}
.wsb7{word-spacing:4.853333pt;}
.ws20{word-spacing:6.240000pt;}
.wsb0{word-spacing:6.613333pt;}
.ws51{word-spacing:40.523200pt;}
.ws52{word-spacing:86.651200pt;}
.ws53{word-spacing:111.104000pt;}
.ws54{word-spacing:145.476800pt;}
.ws6d{word-spacing:244.478400pt;}
.ws6f{word-spacing:307.867200pt;}
.ws70{word-spacing:337.875200pt;}
.ws9a{word-spacing:923.568000pt;}
.wsd1{word-spacing:923.952000pt;}
.wsbf{word-spacing:924.048000pt;}
.ws2d{word-spacing:924.144000pt;}
.ws71{word-spacing:925.488000pt;}
.ws86{word-spacing:1445.136000pt;}
.wsad{word-spacing:1445.424000pt;}
.wscc{word-spacing:1449.648000pt;}
.ws58{word-spacing:1452.384000pt;}
._17{margin-left:-925.117600pt;}
._b{margin-left:-923.937333pt;}
._20{margin-left:-922.966133pt;}
._24{margin-left:-7.629280pt;}
._1{margin-left:-6.400000pt;}
._9{margin-left:-5.461333pt;}
._4{margin-left:-4.493600pt;}
._5{margin-left:-3.177867pt;}
._0{margin-left:-2.133333pt;}
._2{margin-left:-0.966400pt;}
._3{width:1.233067pt;}
._7{width:2.212267pt;}
._6{width:3.685600pt;}
._c{width:4.993867pt;}
._8{width:7.017867pt;}
._1c{width:8.373333pt;}
._27{width:12.906667pt;}
._2c{width:18.314667pt;}
._22{width:19.786667pt;}
._2d{width:22.530667pt;}
._26{width:23.955733pt;}
._1d{width:26.932267pt;}
._28{width:27.874133pt;}
._25{width:29.164267pt;}
._23{width:31.148267pt;}
._1f{width:32.338133pt;}
._1e{width:35.413867pt;}
._21{width:36.525867pt;}
._29{width:38.533333pt;}
._2a{width:40.210667pt;}
._2b{width:41.117333pt;}
._16{width:45.086400pt;}
._e{width:46.425600pt;}
._d{width:47.962667pt;}
._a{width:49.450667pt;}
._11{width:78.368533pt;}
._10{width:79.558400pt;}
._f{width:96.422400pt;}
._12{width:141.409600pt;}
._13{width:168.689600pt;}
._18{width:192.819733pt;}
._14{width:210.155200pt;}
._15{width:217.694400pt;}
._19{width:279.744000pt;}
._1a{width:431.867200pt;}
._1b{width:453.096000pt;}
.fs7{font-size:19.733333pt;}
.fs9{font-size:31.093333pt;}
.fs5{font-size:36.800000pt;}
.fs3{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{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;}
.y25{bottom:80.504000pt;}
.y51{bottom:80.504133pt;}
.ydc{bottom:84.144933pt;}
.yc3{bottom:84.156267pt;}
.y7f{bottom:95.826533pt;}
.y92{bottom:95.832133pt;}
.y24{bottom:95.837333pt;}
.y6c{bottom:95.837467pt;}
.y50{bottom:95.837600pt;}
.ydb{bottom:99.478933pt;}
.yc2{bottom:99.490267pt;}
.y7e{bottom:111.165333pt;}
.y90{bottom:111.170800pt;}
.y6b{bottom:111.170933pt;}
.y4f{bottom:111.171067pt;}
.yda{bottom:114.812933pt;}
.yc1{bottom:114.824267pt;}
.y4e{bottom:126.499067pt;}
.y7d{bottom:126.504133pt;}
.y6a{bottom:126.504267pt;}
.y91{bottom:126.504400pt;}
.yd9{bottom:130.146933pt;}
.yc0{bottom:130.158267pt;}
.y23{bottom:130.371600pt;}
.y7c{bottom:141.837467pt;}
.y8f{bottom:141.837600pt;}
.y99{bottom:141.837733pt;}
.y4d{bottom:141.837867pt;}
.yd8{bottom:145.480933pt;}
.ybf{bottom:145.492267pt;}
.y22{bottom:146.771600pt;}
.y7b{bottom:157.170800pt;}
.y98{bottom:157.171067pt;}
.y4c{bottom:157.171200pt;}
.yd7{bottom:160.814933pt;}
.ybe{bottom:160.826267pt;}
.y21{bottom:163.171600pt;}
.y69{bottom:163.171733pt;}
.y7a{bottom:172.504133pt;}
.y4b{bottom:172.504533pt;}
.yd6{bottom:176.148933pt;}
.ybd{bottom:176.160267pt;}
.y20{bottom:179.571600pt;}
.y68{bottom:179.571733pt;}
.y79{bottom:187.832000pt;}
.yd5{bottom:191.482933pt;}
.ybc{bottom:191.494267pt;}
.y8e{bottom:195.971600pt;}
.y67{bottom:195.971733pt;}
.y78{bottom:203.170800pt;}
.y97{bottom:204.501733pt;}
.yd4{bottom:206.816933pt;}
.ybb{bottom:206.828267pt;}
.y1f{bottom:212.371600pt;}
.y4a{bottom:212.371733pt;}
.y77{bottom:218.498667pt;}
.y96{bottom:219.835733pt;}
.yd3{bottom:222.150933pt;}
.yba{bottom:222.162267pt;}
.y8d{bottom:228.771600pt;}
.y49{bottom:228.771733pt;}
.y76{bottom:233.837467pt;}
.y95{bottom:235.169733pt;}
.yd2{bottom:237.484933pt;}
.yb9{bottom:237.496267pt;}
.y8c{bottom:245.171600pt;}
.y48{bottom:245.171733pt;}
.y75{bottom:249.165600pt;}
.y94{bottom:250.503733pt;}
.yd1{bottom:252.818933pt;}
.yb8{bottom:252.830267pt;}
.y1e{bottom:261.361733pt;}
.y8b{bottom:261.571600pt;}
.y47{bottom:261.571733pt;}
.y74{bottom:264.504400pt;}
.yd0{bottom:268.152933pt;}
.yb7{bottom:268.164267pt;}
.y1d{bottom:276.695733pt;}
.y8a{bottom:277.971600pt;}
.y46{bottom:277.971733pt;}
.y93{bottom:281.171733pt;}
.ycf{bottom:283.486933pt;}
.yb6{bottom:283.498267pt;}
.y89{bottom:294.371600pt;}
.y45{bottom:294.371733pt;}
.yce{bottom:298.820933pt;}
.yb5{bottom:298.832267pt;}
.y1c{bottom:307.363733pt;}
.y88{bottom:310.771600pt;}
.y44{bottom:310.771733pt;}
.ycd{bottom:314.154933pt;}
.yb4{bottom:314.166267pt;}
.y1b{bottom:322.697733pt;}
.y66{bottom:327.171600pt;}
.y43{bottom:327.171733pt;}
.ycc{bottom:329.488933pt;}
.yb3{bottom:329.500267pt;}
.y1a{bottom:338.031733pt;}
.y65{bottom:343.571600pt;}
.y42{bottom:343.571733pt;}
.ycb{bottom:344.822933pt;}
.yb2{bottom:344.834267pt;}
.y19{bottom:353.365733pt;}
.y64{bottom:359.971600pt;}
.y41{bottom:359.971733pt;}
.yca{bottom:360.156933pt;}
.yb1{bottom:360.168267pt;}
.y18{bottom:368.699733pt;}
.yc9{bottom:375.490933pt;}
.yb0{bottom:375.502267pt;}
.y63{bottom:376.371600pt;}
.y40{bottom:376.371733pt;}
.y17{bottom:384.033733pt;}
.yc8{bottom:390.824933pt;}
.yaf{bottom:390.836267pt;}
.y62{bottom:392.771600pt;}
.y3f{bottom:392.771733pt;}
.y16{bottom:399.367733pt;}
.yc7{bottom:406.158933pt;}
.yae{bottom:406.170267pt;}
.y61{bottom:409.171600pt;}
.y3e{bottom:409.171733pt;}
.y15{bottom:414.701733pt;}
.yc6{bottom:421.492933pt;}
.yad{bottom:421.504267pt;}
.y60{bottom:425.571600pt;}
.y3d{bottom:425.571733pt;}
.y14{bottom:430.035733pt;}
.yc5{bottom:436.826933pt;}
.yac{bottom:436.838267pt;}
.y85{bottom:441.971600pt;}
.y3c{bottom:441.971733pt;}
.y13{bottom:445.369733pt;}
.yc4{bottom:452.160933pt;}
.yab{bottom:452.172267pt;}
.y73{bottom:454.196800pt;}
.y5f{bottom:458.371600pt;}
.y3b{bottom:458.371733pt;}
.y12{bottom:460.703733pt;}
.y72{bottom:473.638133pt;}
.y84{bottom:474.771600pt;}
.y3a{bottom:474.771733pt;}
.y11{bottom:476.037733pt;}
.yaa{bottom:482.840267pt;}
.y71{bottom:490.502133pt;}
.y83{bottom:491.171600pt;}
.y10{bottom:491.371733pt;}
.y5e{bottom:505.621867pt;}
.y82{bottom:507.571600pt;}
.y39{bottom:507.571733pt;}
.y70{bottom:508.061200pt;}
.y5d{bottom:520.955867pt;}
.yf{bottom:522.039733pt;}
.y81{bottom:523.971600pt;}
.ya9{bottom:528.842267pt;}
.ye{bottom:537.373733pt;}
.y87{bottom:540.371600pt;}
.y5c{bottom:540.397067pt;}
.ya8{bottom:544.176267pt;}
.y6f{bottom:556.771600pt;}
.y38{bottom:556.771733pt;}
.y5b{bottom:557.261067pt;}
.ya7{bottom:559.510267pt;}
.yd{bottom:568.041733pt;}
.y6e{bottom:573.171600pt;}
.y37{bottom:573.171733pt;}
.ya6{bottom:574.844267pt;}
.yc{bottom:583.375733pt;}
.y80{bottom:589.571600pt;}
.y36{bottom:589.571733pt;}
.ya5{bottom:590.178267pt;}
.yb{bottom:598.709733pt;}
.ya4{bottom:605.512267pt;}
.y6d{bottom:605.971600pt;}
.y35{bottom:605.971733pt;}
.ya{bottom:614.043733pt;}
.ya3{bottom:620.846267pt;}
.y34{bottom:622.371600pt;}
.y5a{bottom:622.371733pt;}
.y9{bottom:629.377733pt;}
.yeb{bottom:636.168933pt;}
.ya2{bottom:636.180267pt;}
.y33{bottom:638.771600pt;}
.y59{bottom:638.771733pt;}
.y8{bottom:644.711733pt;}
.yea{bottom:651.502933pt;}
.ya1{bottom:651.514267pt;}
.y32{bottom:655.171600pt;}
.y58{bottom:655.171733pt;}
.y7{bottom:660.045733pt;}
.ye9{bottom:666.836933pt;}
.ya0{bottom:666.848267pt;}
.y31{bottom:671.571600pt;}
.y57{bottom:671.571733pt;}
.y6{bottom:675.379733pt;}
.ye8{bottom:682.170933pt;}
.y9f{bottom:682.182267pt;}
.y30{bottom:687.971600pt;}
.y56{bottom:687.971733pt;}
.y5{bottom:690.713733pt;}
.ye7{bottom:697.504933pt;}
.y9e{bottom:697.516267pt;}
.y2f{bottom:704.371600pt;}
.y55{bottom:704.371733pt;}
.y4{bottom:706.047733pt;}
.ye6{bottom:712.838933pt;}
.ydf{bottom:712.850267pt;}
.y2e{bottom:720.771600pt;}
.y54{bottom:720.771733pt;}
.ye5{bottom:728.172933pt;}
.y9d{bottom:728.184267pt;}
.y3{bottom:736.714400pt;}
.y2d{bottom:737.171600pt;}
.y53{bottom:737.171733pt;}
.ye4{bottom:743.506933pt;}
.yde{bottom:743.518267pt;}
.y2c{bottom:753.571600pt;}
.y52{bottom:753.571733pt;}
.ye3{bottom:758.840933pt;}
.ydd{bottom:758.852267pt;}
.y27{bottom:762.125333pt;}
.y26{bottom:768.790267pt;}
.y2b{bottom:769.971600pt;}
.y86{bottom:769.971733pt;}
.y2{bottom:774.058400pt;}
.ye2{bottom:774.174933pt;}
.y9c{bottom:774.186267pt;}
.y2a{bottom:786.371600pt;}
.ye1{bottom:789.508933pt;}
.y9b{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y29{bottom:802.771600pt;}
.ye0{bottom:804.842933pt;}
.y9a{bottom:804.854267pt;}
.y28{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.h14{height:40.482667pt;}
.he{height:40.618667pt;}
.h5{height:40.800000pt;}
.h6{height:41.434667pt;}
.h4{height:42.840000pt;}
.hd{height:43.003200pt;}
.h9{height:44.441600pt;}
.h10{height:44.463467pt;}
.h11{height:44.485333pt;}
.hb{height:45.216000pt;}
.h12{height:47.893333pt;}
.h8{height:48.000000pt;}
.hc{height:48.000533pt;}
.hf{height:50.240000pt;}
.h7{height:50.400000pt;}
.h13{height:50.613333pt;}
.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:23.081200pt;}
.x7{left:25.631733pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.xf{left:75.585333pt;}
.x6{left:83.149600pt;}
.x2{left:90.708667pt;}
.xa{left:102.038667pt;}
.xb{left:109.602000pt;}
.xc{left:117.162000pt;}
.x9{left:134.827733pt;}
.x10{left:314.140667pt;}
.xd{left:321.711067pt;}
.x11{left:325.474000pt;}
.xe{left:333.044400pt;}
.x4{left:579.238667pt;}
.x3{left:581.789200pt;}
}




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