
    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_b971366f2ee40bf2ff4d973c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916504;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_f63ccdc527f0d8213e749d32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_74e7f881acadc69e62c5c5bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_a2b6028595a5ce71fb1295f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.843750;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_eaf2ad8bdb0a3b90eab36dfc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_8a950bb28b379a24dcfdea4d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be59292e7c3430b2fa4f499c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980469;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_a18d6cff97f4a246d465065d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_c47663b887f004a6e54cc300.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.712000;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_d94dcae51e9e66d9ca35b831.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_e943353c4feeb43154e3910e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_89cf8cef0cf2bf69c68a44e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_6cd48f6869b9357aa5c4b787.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls39{letter-spacing:-1.324800px;}
.ls35{letter-spacing:-0.993600px;}
.ls3a{letter-spacing:-0.861120px;}
.ls33{letter-spacing:-0.728640px;}
.lsb{letter-spacing:-0.662400px;}
.ls2e{letter-spacing:-0.633600px;}
.ls34{letter-spacing:-0.596160px;}
.ls26{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.397440px;}
.ls28{letter-spacing:-0.378000px;}
.ls13{letter-spacing:-0.331200px;}
.ls2b{letter-spacing:-0.324000px;}
.ls3b{letter-spacing:-0.316800px;}
.ls1a{letter-spacing:-0.298800px;}
.ls25{letter-spacing:-0.270000px;}
.ls2f{letter-spacing:-0.264960px;}
.ls16{letter-spacing:-0.239040px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.198720px;}
.ls20{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.179280px;}
.ls2a{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.132480px;}
.ls1e{letter-spacing:-0.119520px;}
.ls19{letter-spacing:-0.072000px;}
.ls32{letter-spacing:-0.066240px;}
.ls17{letter-spacing:-0.060000px;}
.ls14{letter-spacing:-0.059760px;}
.ls29{letter-spacing:-0.054000px;}
.lsa{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000720px;}
.ls22{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.059760px;}
.lsc{letter-spacing:0.066240px;}
.ls11{letter-spacing:0.095760px;}
.ls2c{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132480px;}
.ls6{letter-spacing:0.177366px;}
.ls5{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.197280px;}
.ls18{letter-spacing:0.198720px;}
.ls1d{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.239040px;}
.ls1f{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.264960px;}
.ls2d{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.331200px;}
.ls23{letter-spacing:0.378000px;}
.ls3d{letter-spacing:0.380160px;}
.ls12{letter-spacing:0.383040px;}
.ls7{letter-spacing:0.774240px;}
.ls38{letter-spacing:0.927360px;}
.ls24{letter-spacing:3.113280px;}
.ls3c{letter-spacing:8.147520px;}
.ls37{letter-spacing:8.876160px;}
.ls36{letter-spacing:59.351040px;}
.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;}
}
.ws98{word-spacing:-66.240000px;}
.ws68{word-spacing:-18.584640px;}
.ws7{word-spacing:-16.295040px;}
.wsb5{word-spacing:-15.523200px;}
.wsb6{word-spacing:-15.143040px;}
.wsf{word-spacing:-14.832000px;}
.ws3{word-spacing:-14.639040px;}
.ws4{word-spacing:-14.572800px;}
.ws69{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.175360px;}
.ws1{word-spacing:-13.910400px;}
.ws6b{word-spacing:-13.711680px;}
.wsd{word-spacing:-13.645440px;}
.ws6{word-spacing:-13.579200px;}
.ws5{word-spacing:-13.446720px;}
.wsc3{word-spacing:-13.380480px;}
.ws6c{word-spacing:-13.314240px;}
.ws6a{word-spacing:-13.181760px;}
.wsc2{word-spacing:-12.850560px;}
.wsa{word-spacing:-12.311280px;}
.wsc{word-spacing:-12.310560px;}
.ws66{word-spacing:-12.204000px;}
.ws11{word-spacing:-12.191040px;}
.ws9{word-spacing:-12.131280px;}
.wsb{word-spacing:-12.071520px;}
.ws12{word-spacing:-12.071280px;}
.ws10{word-spacing:-11.952000px;}
.ws8{word-spacing:-11.892240px;}
.ws62{word-spacing:-11.880000px;}
.wse{word-spacing:-11.832480px;}
.ws65{word-spacing:-11.826000px;}
.ws64{word-spacing:-11.610000px;}
.ws63{word-spacing:-11.502000px;}
.ws61{word-spacing:-11.448000px;}
.ws67{word-spacing:-10.692000px;}
.ws9c{word-spacing:-3.709440px;}
.wsa5{word-spacing:-3.113280px;}
.ws8d{word-spacing:-2.782080px;}
.wsbf{word-spacing:-2.583360px;}
.ws37{word-spacing:-2.569680px;}
.ws85{word-spacing:-2.517120px;}
.ws8e{word-spacing:-2.384640px;}
.wsad{word-spacing:-2.252160px;}
.ws8a{word-spacing:-2.053440px;}
.ws87{word-spacing:-1.854720px;}
.ws86{word-spacing:-1.788480px;}
.ws89{word-spacing:-1.656000px;}
.wsb1{word-spacing:-1.523520px;}
.wsc4{word-spacing:-1.324800px;}
.ws14{word-spacing:-0.957600px;}
.ws93{word-spacing:-0.927360px;}
.ws94{word-spacing:-0.794880px;}
.wsa0{word-spacing:-0.760320px;}
.ws7f{word-spacing:-0.596160px;}
.ws71{word-spacing:-0.432000px;}
.wsb8{word-spacing:-0.397440px;}
.ws1d{word-spacing:-0.383040px;}
.ws1f{word-spacing:-0.331200px;}
.ws6d{word-spacing:-0.324000px;}
.ws15{word-spacing:-0.264960px;}
.ws55{word-spacing:-0.240000px;}
.ws2a{word-spacing:-0.239040px;}
.ws6e{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.198720px;}
.ws59{word-spacing:-0.186000px;}
.ws25{word-spacing:-0.180000px;}
.ws27{word-spacing:-0.179280px;}
.ws29{word-spacing:-0.144000px;}
.ws9d{word-spacing:-0.132480px;}
.ws4a{word-spacing:-0.120000px;}
.ws31{word-spacing:-0.119520px;}
.ws1b{word-spacing:-0.108000px;}
.ws26{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.066240px;}
.ws91{word-spacing:-0.063360px;}
.ws0{word-spacing:-0.059760px;}
.ws13{word-spacing:0.000000px;}
.ws24{word-spacing:0.006000px;}
.ws5c{word-spacing:0.012000px;}
.ws5a{word-spacing:0.036000px;}
.ws70{word-spacing:0.054000px;}
.ws35{word-spacing:0.059760px;}
.ws4b{word-spacing:0.060000px;}
.ws5e{word-spacing:0.102000px;}
.ws22{word-spacing:0.120000px;}
.ws1e{word-spacing:0.132480px;}
.ws2b{word-spacing:0.144000px;}
.ws20{word-spacing:0.179280px;}
.ws23{word-spacing:0.180000px;}
.ws58{word-spacing:0.198000px;}
.ws28{word-spacing:0.198720px;}
.ws88{word-spacing:0.264960px;}
.ws21{word-spacing:0.298800px;}
.ws56{word-spacing:0.300000px;}
.ws6f{word-spacing:0.324000px;}
.wsb7{word-spacing:0.331200px;}
.ws5d{word-spacing:0.396000px;}
.ws75{word-spacing:0.397440px;}
.ws19{word-spacing:0.463680px;}
.ws80{word-spacing:0.529920px;}
.ws60{word-spacing:0.582000px;}
.ws18{word-spacing:0.594000px;}
.ws9a{word-spacing:0.596160px;}
.ws30{word-spacing:0.597600px;}
.ws57{word-spacing:0.648000px;}
.ws45{word-spacing:0.672000px;}
.ws5f{word-spacing:0.702000px;}
.ws8c{word-spacing:0.728640px;}
.ws97{word-spacing:0.861120px;}
.ws5b{word-spacing:0.894000px;}
.ws3c{word-spacing:0.896400px;}
.ws95{word-spacing:0.993600px;}
.wsa9{word-spacing:1.059840px;}
.ws8b{word-spacing:1.192320px;}
.ws33{word-spacing:1.314720px;}
.ws9b{word-spacing:1.324800px;}
.ws92{word-spacing:1.523520px;}
.ws2f{word-spacing:1.613520px;}
.ws73{word-spacing:1.788480px;}
.ws2e{word-spacing:1.852560px;}
.ws74{word-spacing:1.920960px;}
.ws3f{word-spacing:2.091600px;}
.ws9f{word-spacing:2.154240px;}
.ws76{word-spacing:2.252160px;}
.ws34{word-spacing:2.330640px;}
.wsc7{word-spacing:2.384640px;}
.ws40{word-spacing:2.390400px;}
.ws7d{word-spacing:2.517120px;}
.ws90{word-spacing:2.649600px;}
.ws3e{word-spacing:2.868480px;}
.ws7e{word-spacing:2.980800px;}
.ws3d{word-spacing:3.167280px;}
.ws7c{word-spacing:3.245760px;}
.ws96{word-spacing:3.378240px;}
.ws52{word-spacing:3.522000px;}
.ws51{word-spacing:3.528000px;}
.ws3a{word-spacing:3.585600px;}
.ws49{word-spacing:3.612000px;}
.ws47{word-spacing:3.630000px;}
.ws4e{word-spacing:3.672000px;}
.wsa3{word-spacing:3.709440px;}
.ws4c{word-spacing:3.750000px;}
.ws3b{word-spacing:3.764880px;}
.ws46{word-spacing:3.768000px;}
.ws42{word-spacing:3.824640px;}
.wsa4{word-spacing:3.974400px;}
.ws50{word-spacing:4.062000px;}
.ws4f{word-spacing:4.068000px;}
.ws53{word-spacing:4.086000px;}
.ws7b{word-spacing:4.106880px;}
.ws2c{word-spacing:4.183200px;}
.ws4d{word-spacing:4.350000px;}
.ws54{word-spacing:4.392000px;}
.ws48{word-spacing:4.488000px;}
.ws99{word-spacing:4.835520px;}
.wsba{word-spacing:5.166720px;}
.wsb9{word-spacing:5.365440px;}
.ws81{word-spacing:5.431680px;}
.ws72{word-spacing:5.564160px;}
.ws1c{word-spacing:5.649840px;}
.ws82{word-spacing:5.895360px;}
.ws7a{word-spacing:6.160320px;}
.ws9e{word-spacing:6.292800px;}
.ws41{word-spacing:6.633360px;}
.wsb3{word-spacing:6.822720px;}
.wsae{word-spacing:6.955200px;}
.wsac{word-spacing:7.087680px;}
.wsab{word-spacing:7.220160px;}
.wsb4{word-spacing:7.286400px;}
.ws79{word-spacing:7.551360px;}
.wsa2{word-spacing:7.683840px;}
.wsa7{word-spacing:8.015040px;}
.ws2d{word-spacing:8.067600px;}
.wsa1{word-spacing:8.280000px;}
.wsa8{word-spacing:8.412480px;}
.wsa6{word-spacing:8.743680px;}
.wsaf{word-spacing:10.200960px;}
.wsb0{word-spacing:10.598400px;}
.ws84{word-spacing:10.929600px;}
.ws32{word-spacing:10.995840px;}
.ws83{word-spacing:11.194560px;}
.ws77{word-spacing:11.327040px;}
.ws39{word-spacing:12.967920px;}
.ws38{word-spacing:13.147200px;}
.ws8f{word-spacing:14.042880px;}
.ws36{word-spacing:15.059520px;}
.wsaa{word-spacing:17.752320px;}
.ws44{word-spacing:18.645120px;}
.ws43{word-spacing:18.884160px;}
.ws78{word-spacing:21.726720px;}
.wsc5{word-spacing:23.515200px;}
.wsc6{word-spacing:24.575040px;}
.wsb2{word-spacing:26.231040px;}
.ws1a{word-spacing:44.496000px;}
.wsbe{word-spacing:44.579520px;}
.wsbc{word-spacing:45.440640px;}
.wsbd{word-spacing:45.838080px;}
.wsc1{word-spacing:51.600960px;}
.wsc0{word-spacing:51.932160px;}
.wsbb{word-spacing:364.055040px;}
._9{margin-left:-3.389760px;}
._8{margin-left:-2.160000px;}
._2{margin-left:-1.090656px;}
._1{width:1.243008px;}
._5{width:2.796768px;}
._3{width:5.668992px;}
._4{width:15.912000px;}
._6{width:18.740736px;}
._a{width:23.855904px;}
._7{width:1262.401920px;}
._0{width:1442.340000px;}
.fc5{color:rgb(35,130,170);}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(25,100,125);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.680000px;}
.y7{bottom:10.620000px;}
.y3b{bottom:57.960000px;}
.y6{bottom:63.720000px;}
.y3{bottom:76.500000px;}
.y3c{bottom:77.040000px;}
.y3a{bottom:77.940000px;}
.y3d{bottom:87.660000px;}
.y39{bottom:94.320000px;}
.y38{bottom:118.260000px;}
.y6a{bottom:165.414240px;}
.y97{bottom:165.586320px;}
.ycd{bottom:175.687200px;}
.y69{bottom:188.101440px;}
.y96{bottom:188.273520px;}
.yf5{bottom:192.428640px;}
.yba{bottom:199.446480px;}
.y36{bottom:200.976000px;}
.ycc{bottom:207.366480px;}
.y68{bottom:210.954240px;}
.yf4{bottom:215.281440px;}
.y95{bottom:219.952800px;}
.y35{bottom:225.912000px;}
.ycb{bottom:230.219280px;}
.y67{bottom:233.641440px;}
.ydb{bottom:239.376960px;}
.y94{bottom:242.805600px;}
.yf3{bottom:246.960720px;}
.y34{bottom:248.368500px;}
.yca{bottom:255.771360px;}
.y66{bottom:265.320720px;}
.y93{bottom:265.492800px;}
.y33{bottom:268.920000px;}
.yf2{bottom:269.813520px;}
.yda{bottom:271.056240px;}
.y65{bottom:288.173520px;}
.y92{bottom:288.180000px;}
.yd9{bottom:293.743440px;}
.yf1{bottom:301.492800px;}
.y64{bottom:310.860720px;}
.yd8{bottom:319.477680px;}
.y91{bottom:320.032800px;}
.yf0{bottom:324.180000px;}
.y63{bottom:333.547920px;}
.y90{bottom:342.720000px;}
.yef{bottom:356.032800px;}
.y62{bottom:356.400720px;}
.y8f{bottom:365.400000px;}
.yee{bottom:378.720000px;}
.y8e{bottom:388.078560px;}
.y61{bottom:388.080000px;}
.y32{bottom:397.250280px;}
.yb9{bottom:405.005760px;}
.yed{bottom:410.400000px;}
.y60{bottom:410.767200px;}
.y31{bottom:419.391360px;}
.y8d{bottom:419.940000px;}
.yec{bottom:433.252800px;}
.y5f{bottom:433.620000px;}
.yb8{bottom:436.867200px;}
.y30{bottom:441.353160px;}
.y8c{bottom:453.052800px;}
.yeb{bottom:455.940000px;}
.y2f{bottom:463.494240px;}
.y5e{bottom:467.820000px;}
.yb7{bottom:470.169360px;}
.y8b{bottom:475.905600px;}
.y2e{bottom:485.456040px;}
.yea{bottom:487.793520px;}
.y8a{bottom:498.592800px;}
.yb6{bottom:501.848640px;}
.y2d{bottom:507.597120px;}
.ye9{bottom:510.480720px;}
.y5d{bottom:511.920000px;}
.y27{bottom:514.966320px;}
.y89{bottom:521.280000px;}
.yb5{bottom:524.535840px;}
.y2c{bottom:529.558920px;}
.y5c{bottom:534.772800px;}
.ye8{bottom:542.160000px;}
.y26{bottom:543.770640px;}
.yb4{bottom:547.388640px;}
.y2b{bottom:551.700000px;}
.y88{bottom:553.132800px;}
.y5b{bottom:557.460000px;}
.y25{bottom:572.395680px;}
.y2a{bottom:573.661800px;}
.ye7{bottom:574.020720px;}
.y87{bottom:575.820000px;}
.yb3{bottom:579.067920px;}
.y5a{bottom:589.140000px;}
.yd7{bottom:593.611920px;}
.y29{bottom:595.802880px;}
.y86{bottom:598.507200px;}
.yc9{bottom:600.649920px;}
.y24{bottom:601.200000px;}
.ye6{bottom:605.700000px;}
.yb2{bottom:610.747200px;}
.y59{bottom:612.000000px;}
.y28{bottom:617.764680px;}
.y85{bottom:621.360000px;}
.yd6{bottom:625.473360px;}
.yc8{bottom:632.511360px;}
.yb1{bottom:633.600000px;}
.y58{bottom:634.680000px;}
.ye5{bottom:640.080000px;}
.y23{bottom:641.340000px;}
.y84{bottom:653.032800px;}
.yd5{bottom:658.593300px;}
.yc7{bottom:665.631300px;}
.y57{bottom:666.360000px;}
.yb0{bottom:667.794240px;}
.y83{bottom:675.720000px;}
.ye4{bottom:684.141120px;}
.y56{bottom:689.220000px;}
.yaf{bottom:693.360000px;}
.y82{bottom:698.407200px;}
.y22{bottom:706.309560px;}
.ye3{bottom:706.828320px;}
.y55{bottom:711.900000px;}
.y81{bottom:721.260000px;}
.y21{bottom:728.271360px;}
.ye2{bottom:729.515550px;}
.y54{bottom:734.548320px;}
.yae{bottom:737.624880px;}
.yd4{bottom:744.821280px;}
.y20{bottom:750.412440px;}
.y80{bottom:752.940000px;}
.yad{bottom:760.312080px;}
.y53{bottom:766.409760px;}
.y1f{bottom:772.374240px;}
.yc6{bottom:774.728640px;}
.y7f{bottom:775.627200px;}
.yd3{bottom:776.682720px;}
.yac{bottom:783.164880px;}
.y52{bottom:789.096960px;}
.y1e{bottom:794.336040px;}
.y7e{bottom:798.480000px;}
.yd2{bottom:799.369920px;}
.yab{bottom:805.852080px;}
.yc5{bottom:806.407920px;}
.y51{bottom:811.784160px;}
.y1d{bottom:816.477120px;}
.y7d{bottom:821.158560px;}
.yd1{bottom:822.057120px;}
.y17{bottom:823.846320px;}
.yaa{bottom:828.539280px;}
.yc4{bottom:829.095120px;}
.y1c{bottom:838.438920px;}
.ye1{bottom:838.612800px;}
.y50{bottom:843.645600px;}
.yd0{bottom:847.791360px;}
.yc3{bottom:851.947920px;}
.y16{bottom:852.471360px;}
.y7c{bottom:853.020000px;}
.y1b{bottom:860.580000px;}
.ye0{bottom:861.300000px;}
.y4f{bottom:866.332800px;}
.ya9{bottom:869.392800px;}
.yc2{bottom:877.682160px;}
.y15{bottom:881.275680px;}
.y1a{bottom:882.541800px;}
.y7b{bottom:886.140000px;}
.y4e{bottom:889.020000px;}
.ya8{bottom:892.080000px;}
.ydf{bottom:895.500000px;}
.y19{bottom:904.503600px;}
.y7a{bottom:908.827200px;}
.y14{bottom:910.080000px;}
.y4d{bottom:920.852640px;}
.ya7{bottom:923.760000px;}
.y18{bottom:926.644680px;}
.y79{bottom:931.680000px;}
.yde{bottom:933.654960px;}
.y4c{bottom:943.539840px;}
.ya6{bottom:946.612800px;}
.y13{bottom:950.220000px;}
.y78{bottom:965.874240px;}
.y4b{bottom:966.227040px;}
.ya5{bottom:969.300000px;}
.y12{bottom:983.340000px;}
.y4a{bottom:989.079840px;}
.y77{bottom:991.440000px;}
.ya4{bottom:991.987200px;}
.y49{bottom:1011.767040px;}
.y11{bottom:1012.682340px;}
.ya3{bottom:1014.840000px;}
.y10{bottom:1031.940000px;}
.y76{bottom:1035.681120px;}
.ya2{bottom:1037.520000px;}
.y48{bottom:1043.446320px;}
.yf{bottom:1050.300000px;}
.yc1{bottom:1052.638560px;}
.y75{bottom:1058.368320px;}
.ya1{bottom:1060.175520px;}
.y47{bottom:1066.299120px;}
.ye{bottom:1080.183000px;}
.y74{bottom:1081.221120px;}
.yc0{bottom:1084.500000px;}
.y46{bottom:1088.986320px;}
.ya0{bottom:1092.036960px;}
.yd{bottom:1099.440000px;}
.y73{bottom:1103.908320px;}
.y45{bottom:1111.673520px;}
.y9f{bottom:1114.724160px;}
.ybf{bottom:1117.620000px;}
.yc{bottom:1117.800000px;}
.y72{bottom:1126.595520px;}
.y44{bottom:1134.360720px;}
.y9e{bottom:1137.411360px;}
.ybe{bottom:1149.481440px;}
.y43{bottom:1157.213520px;}
.y71{bottom:1158.456960px;}
.ycf{bottom:1161.537120px;}
.yb{bottom:1162.450980px;}
.y9d{bottom:1169.272800px;}
.yf8{bottom:1172.160000px;}
.ybd{bottom:1172.168640px;}
.y70{bottom:1181.144160px;}
.y42{bottom:1188.892800px;}
.y9c{bottom:1191.960000px;}
.yce{bottom:1193.398560px;}
.ya{bottom:1195.560000px;}
.y6f{bottom:1203.831360px;}
.yf7{bottom:1203.832800px;}
.ybc{bottom:1203.847920px;}
.y41{bottom:1211.580000px;}
.y9b{bottom:1225.087200px;}
.yf6{bottom:1226.520000px;}
.ybb{bottom:1226.700720px;}
.y40{bottom:1234.432800px;}
.y6e{bottom:1235.692800px;}
.ydd{bottom:1238.756400px;}
.y9{bottom:1238.940000px;}
.y9a{bottom:1247.940000px;}
.y3f{bottom:1257.120000px;}
.y6d{bottom:1258.380000px;}
.ydc{bottom:1270.617840px;}
.y99{bottom:1270.618560px;}
.y8{bottom:1276.200000px;}
.y6c{bottom:1281.067200px;}
.y3e{bottom:1291.500000px;}
.y98{bottom:1302.480000px;}
.y6b{bottom:1303.920000px;}
.y4{bottom:1304.100000px;}
.y2{bottom:1306.980000px;}
.y1{bottom:1328.040000px;}
.y37{bottom:1335.780000px;}
.h4{height:19.800000px;}
.h10{height:34.918500px;}
.h6{height:34.920000px;}
.h3{height:40.500000px;}
.hc{height:42.250320px;}
.he{height:44.820000px;}
.h18{height:46.368000px;}
.h2{height:46.639687px;}
.h19{height:46.831680px;}
.hb{height:48.742031px;}
.h5{height:49.680000px;}
.h1a{height:49.680240px;}
.h15{height:49.685760px;}
.h1b{height:49.705920px;}
.h16{height:49.708800px;}
.h17{height:49.777920px;}
.h12{height:49.789440px;}
.h13{height:49.806720px;}
.hf{height:50.904000px;}
.hd{height:54.000000px;}
.h7{height:67.032000px;}
.h1{height:67.424766px;}
.ha{height:67.702320px;}
.h11{height:68.343750px;}
.h14{height:68.366790px;}
.h8{height:76.356000px;}
.h9{height:81.000000px;}
.h0{height:1404.000000px;}
.w2{width:48.418500px;}
.w1{width:142.918500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x2{left:84.960000px;}
.x1{left:102.960000px;}
.xb{left:106.020000px;}
.xf{left:111.969360px;}
.x7{left:127.440000px;}
.x8{left:138.615000px;}
.xd{left:154.975500px;}
.x9{left:263.520000px;}
.x11{left:304.562160px;}
.x10{left:429.143040px;}
.x3{left:525.240000px;}
.x14{left:546.122880px;}
.x15{left:606.053520px;}
.x13{left:619.384320px;}
.x12{left:668.170080px;}
.x4{left:719.100000px;}
.xc{left:741.240000px;}
.xa{left:832.860000px;}
.x6{left:842.760000px;}
.xe{left:853.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls39{letter-spacing:-1.177600pt;}
.ls35{letter-spacing:-0.883200pt;}
.ls3a{letter-spacing:-0.765440pt;}
.ls33{letter-spacing:-0.647680pt;}
.lsb{letter-spacing:-0.588800pt;}
.ls2e{letter-spacing:-0.563200pt;}
.ls34{letter-spacing:-0.529920pt;}
.ls26{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.353280pt;}
.ls28{letter-spacing:-0.336000pt;}
.ls13{letter-spacing:-0.294400pt;}
.ls2b{letter-spacing:-0.288000pt;}
.ls3b{letter-spacing:-0.281600pt;}
.ls1a{letter-spacing:-0.265600pt;}
.ls25{letter-spacing:-0.240000pt;}
.ls2f{letter-spacing:-0.235520pt;}
.ls16{letter-spacing:-0.212480pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.176640pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.159360pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.117760pt;}
.ls1e{letter-spacing:-0.106240pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls32{letter-spacing:-0.058880pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls14{letter-spacing:-0.053120pt;}
.ls29{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000640pt;}
.ls22{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.053120pt;}
.lsc{letter-spacing:0.058880pt;}
.ls11{letter-spacing:0.085120pt;}
.ls2c{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117760pt;}
.ls6{letter-spacing:0.157658pt;}
.ls5{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.175360pt;}
.ls18{letter-spacing:0.176640pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.212480pt;}
.ls1f{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.235520pt;}
.ls2d{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.294400pt;}
.ls23{letter-spacing:0.336000pt;}
.ls3d{letter-spacing:0.337920pt;}
.ls12{letter-spacing:0.340480pt;}
.ls7{letter-spacing:0.688213pt;}
.ls38{letter-spacing:0.824320pt;}
.ls24{letter-spacing:2.767360pt;}
.ls3c{letter-spacing:7.242240pt;}
.ls37{letter-spacing:7.889920pt;}
.ls36{letter-spacing:52.756480pt;}
.ws98{word-spacing:-58.880000pt;}
.ws68{word-spacing:-16.519680pt;}
.ws7{word-spacing:-14.484480pt;}
.wsb5{word-spacing:-13.798400pt;}
.wsb6{word-spacing:-13.460480pt;}
.wsf{word-spacing:-13.184000pt;}
.ws3{word-spacing:-13.012480pt;}
.ws4{word-spacing:-12.953600pt;}
.ws69{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.600320pt;}
.ws1{word-spacing:-12.364800pt;}
.ws6b{word-spacing:-12.188160pt;}
.wsd{word-spacing:-12.129280pt;}
.ws6{word-spacing:-12.070400pt;}
.ws5{word-spacing:-11.952640pt;}
.wsc3{word-spacing:-11.893760pt;}
.ws6c{word-spacing:-11.834880pt;}
.ws6a{word-spacing:-11.717120pt;}
.wsc2{word-spacing:-11.422720pt;}
.wsa{word-spacing:-10.943360pt;}
.wsc{word-spacing:-10.942720pt;}
.ws66{word-spacing:-10.848000pt;}
.ws11{word-spacing:-10.836480pt;}
.ws9{word-spacing:-10.783360pt;}
.wsb{word-spacing:-10.730240pt;}
.ws12{word-spacing:-10.730027pt;}
.ws10{word-spacing:-10.624000pt;}
.ws8{word-spacing:-10.570880pt;}
.ws62{word-spacing:-10.560000pt;}
.wse{word-spacing:-10.517760pt;}
.ws65{word-spacing:-10.512000pt;}
.ws64{word-spacing:-10.320000pt;}
.ws63{word-spacing:-10.224000pt;}
.ws61{word-spacing:-10.176000pt;}
.ws67{word-spacing:-9.504000pt;}
.ws9c{word-spacing:-3.297280pt;}
.wsa5{word-spacing:-2.767360pt;}
.ws8d{word-spacing:-2.472960pt;}
.wsbf{word-spacing:-2.296320pt;}
.ws37{word-spacing:-2.284160pt;}
.ws85{word-spacing:-2.237440pt;}
.ws8e{word-spacing:-2.119680pt;}
.wsad{word-spacing:-2.001920pt;}
.ws8a{word-spacing:-1.825280pt;}
.ws87{word-spacing:-1.648640pt;}
.ws86{word-spacing:-1.589760pt;}
.ws89{word-spacing:-1.472000pt;}
.wsb1{word-spacing:-1.354240pt;}
.wsc4{word-spacing:-1.177600pt;}
.ws14{word-spacing:-0.851200pt;}
.ws93{word-spacing:-0.824320pt;}
.ws94{word-spacing:-0.706560pt;}
.wsa0{word-spacing:-0.675840pt;}
.ws7f{word-spacing:-0.529920pt;}
.ws71{word-spacing:-0.384000pt;}
.wsb8{word-spacing:-0.353280pt;}
.ws1d{word-spacing:-0.340480pt;}
.ws1f{word-spacing:-0.294400pt;}
.ws6d{word-spacing:-0.288000pt;}
.ws15{word-spacing:-0.235520pt;}
.ws55{word-spacing:-0.213333pt;}
.ws2a{word-spacing:-0.212480pt;}
.ws6e{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.176640pt;}
.ws59{word-spacing:-0.165333pt;}
.ws25{word-spacing:-0.160000pt;}
.ws27{word-spacing:-0.159360pt;}
.ws29{word-spacing:-0.128000pt;}
.ws9d{word-spacing:-0.117760pt;}
.ws4a{word-spacing:-0.106667pt;}
.ws31{word-spacing:-0.106240pt;}
.ws1b{word-spacing:-0.096000pt;}
.ws26{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.058880pt;}
.ws91{word-spacing:-0.056320pt;}
.ws0{word-spacing:-0.053120pt;}
.ws13{word-spacing:0.000000pt;}
.ws24{word-spacing:0.005333pt;}
.ws5c{word-spacing:0.010667pt;}
.ws5a{word-spacing:0.032000pt;}
.ws70{word-spacing:0.048000pt;}
.ws35{word-spacing:0.053120pt;}
.ws4b{word-spacing:0.053333pt;}
.ws5e{word-spacing:0.090667pt;}
.ws22{word-spacing:0.106667pt;}
.ws1e{word-spacing:0.117760pt;}
.ws2b{word-spacing:0.128000pt;}
.ws20{word-spacing:0.159360pt;}
.ws23{word-spacing:0.160000pt;}
.ws58{word-spacing:0.176000pt;}
.ws28{word-spacing:0.176640pt;}
.ws88{word-spacing:0.235520pt;}
.ws21{word-spacing:0.265600pt;}
.ws56{word-spacing:0.266667pt;}
.ws6f{word-spacing:0.288000pt;}
.wsb7{word-spacing:0.294400pt;}
.ws5d{word-spacing:0.352000pt;}
.ws75{word-spacing:0.353280pt;}
.ws19{word-spacing:0.412160pt;}
.ws80{word-spacing:0.471040pt;}
.ws60{word-spacing:0.517333pt;}
.ws18{word-spacing:0.528000pt;}
.ws9a{word-spacing:0.529920pt;}
.ws30{word-spacing:0.531200pt;}
.ws57{word-spacing:0.576000pt;}
.ws45{word-spacing:0.597333pt;}
.ws5f{word-spacing:0.624000pt;}
.ws8c{word-spacing:0.647680pt;}
.ws97{word-spacing:0.765440pt;}
.ws5b{word-spacing:0.794667pt;}
.ws3c{word-spacing:0.796800pt;}
.ws95{word-spacing:0.883200pt;}
.wsa9{word-spacing:0.942080pt;}
.ws8b{word-spacing:1.059840pt;}
.ws33{word-spacing:1.168640pt;}
.ws9b{word-spacing:1.177600pt;}
.ws92{word-spacing:1.354240pt;}
.ws2f{word-spacing:1.434240pt;}
.ws73{word-spacing:1.589760pt;}
.ws2e{word-spacing:1.646720pt;}
.ws74{word-spacing:1.707520pt;}
.ws3f{word-spacing:1.859200pt;}
.ws9f{word-spacing:1.914880pt;}
.ws76{word-spacing:2.001920pt;}
.ws34{word-spacing:2.071680pt;}
.wsc7{word-spacing:2.119680pt;}
.ws40{word-spacing:2.124800pt;}
.ws7d{word-spacing:2.237440pt;}
.ws90{word-spacing:2.355200pt;}
.ws3e{word-spacing:2.549760pt;}
.ws7e{word-spacing:2.649600pt;}
.ws3d{word-spacing:2.815360pt;}
.ws7c{word-spacing:2.885120pt;}
.ws96{word-spacing:3.002880pt;}
.ws52{word-spacing:3.130667pt;}
.ws51{word-spacing:3.136000pt;}
.ws3a{word-spacing:3.187200pt;}
.ws49{word-spacing:3.210667pt;}
.ws47{word-spacing:3.226667pt;}
.ws4e{word-spacing:3.264000pt;}
.wsa3{word-spacing:3.297280pt;}
.ws4c{word-spacing:3.333333pt;}
.ws3b{word-spacing:3.346560pt;}
.ws46{word-spacing:3.349333pt;}
.ws42{word-spacing:3.399680pt;}
.wsa4{word-spacing:3.532800pt;}
.ws50{word-spacing:3.610667pt;}
.ws4f{word-spacing:3.616000pt;}
.ws53{word-spacing:3.632000pt;}
.ws7b{word-spacing:3.650560pt;}
.ws2c{word-spacing:3.718400pt;}
.ws4d{word-spacing:3.866667pt;}
.ws54{word-spacing:3.904000pt;}
.ws48{word-spacing:3.989333pt;}
.ws99{word-spacing:4.298240pt;}
.wsba{word-spacing:4.592640pt;}
.wsb9{word-spacing:4.769280pt;}
.ws81{word-spacing:4.828160pt;}
.ws72{word-spacing:4.945920pt;}
.ws1c{word-spacing:5.022080pt;}
.ws82{word-spacing:5.240320pt;}
.ws7a{word-spacing:5.475840pt;}
.ws9e{word-spacing:5.593600pt;}
.ws41{word-spacing:5.896320pt;}
.wsb3{word-spacing:6.064640pt;}
.wsae{word-spacing:6.182400pt;}
.wsac{word-spacing:6.300160pt;}
.wsab{word-spacing:6.417920pt;}
.wsb4{word-spacing:6.476800pt;}
.ws79{word-spacing:6.712320pt;}
.wsa2{word-spacing:6.830080pt;}
.wsa7{word-spacing:7.124480pt;}
.ws2d{word-spacing:7.171200pt;}
.wsa1{word-spacing:7.360000pt;}
.wsa8{word-spacing:7.477760pt;}
.wsa6{word-spacing:7.772160pt;}
.wsaf{word-spacing:9.067520pt;}
.wsb0{word-spacing:9.420800pt;}
.ws84{word-spacing:9.715200pt;}
.ws32{word-spacing:9.774080pt;}
.ws83{word-spacing:9.950720pt;}
.ws77{word-spacing:10.068480pt;}
.ws39{word-spacing:11.527040pt;}
.ws38{word-spacing:11.686400pt;}
.ws8f{word-spacing:12.482560pt;}
.ws36{word-spacing:13.386240pt;}
.wsaa{word-spacing:15.779840pt;}
.ws44{word-spacing:16.573440pt;}
.ws43{word-spacing:16.785920pt;}
.ws78{word-spacing:19.312640pt;}
.wsc5{word-spacing:20.902400pt;}
.wsc6{word-spacing:21.844480pt;}
.wsb2{word-spacing:23.316480pt;}
.ws1a{word-spacing:39.552000pt;}
.wsbe{word-spacing:39.626240pt;}
.wsbc{word-spacing:40.391680pt;}
.wsbd{word-spacing:40.744960pt;}
.wsc1{word-spacing:45.867520pt;}
.wsc0{word-spacing:46.161920pt;}
.wsbb{word-spacing:323.604480pt;}
._9{margin-left:-3.013120pt;}
._8{margin-left:-1.920000pt;}
._2{margin-left:-0.969472pt;}
._1{width:1.104896pt;}
._5{width:2.486016pt;}
._3{width:5.039104pt;}
._4{width:14.144000pt;}
._6{width:16.658432pt;}
._a{width:21.205248pt;}
._7{width:1122.135040pt;}
._0{width:1282.080000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.160000pt;}
.y7{bottom:9.440000pt;}
.y3b{bottom:51.520000pt;}
.y6{bottom:56.640000pt;}
.y3{bottom:68.000000pt;}
.y3c{bottom:68.480000pt;}
.y3a{bottom:69.280000pt;}
.y3d{bottom:77.920000pt;}
.y39{bottom:83.840000pt;}
.y38{bottom:105.120000pt;}
.y6a{bottom:147.034880pt;}
.y97{bottom:147.187840pt;}
.ycd{bottom:156.166400pt;}
.y69{bottom:167.201280pt;}
.y96{bottom:167.354240pt;}
.yf5{bottom:171.047680pt;}
.yba{bottom:177.285760pt;}
.y36{bottom:178.645333pt;}
.ycc{bottom:184.325760pt;}
.y68{bottom:187.514880pt;}
.yf4{bottom:191.361280pt;}
.y95{bottom:195.513600pt;}
.y35{bottom:200.810667pt;}
.ycb{bottom:204.639360pt;}
.y67{bottom:207.681280pt;}
.ydb{bottom:212.779520pt;}
.y94{bottom:215.827200pt;}
.yf3{bottom:219.520640pt;}
.y34{bottom:220.772000pt;}
.yca{bottom:227.352320pt;}
.y66{bottom:235.840640pt;}
.y93{bottom:235.993600pt;}
.y33{bottom:239.040000pt;}
.yf2{bottom:239.834240pt;}
.yda{bottom:240.938880pt;}
.y65{bottom:256.154240pt;}
.y92{bottom:256.160000pt;}
.yd9{bottom:261.105280pt;}
.yf1{bottom:267.993600pt;}
.y64{bottom:276.320640pt;}
.yd8{bottom:283.980160pt;}
.y91{bottom:284.473600pt;}
.yf0{bottom:288.160000pt;}
.y63{bottom:296.487040pt;}
.y90{bottom:304.640000pt;}
.yef{bottom:316.473600pt;}
.y62{bottom:316.800640pt;}
.y8f{bottom:324.800000pt;}
.yee{bottom:336.640000pt;}
.y8e{bottom:344.958720pt;}
.y61{bottom:344.960000pt;}
.y32{bottom:353.111360pt;}
.yb9{bottom:360.005120pt;}
.yed{bottom:364.800000pt;}
.y60{bottom:365.126400pt;}
.y31{bottom:372.792320pt;}
.y8d{bottom:373.280000pt;}
.yec{bottom:385.113600pt;}
.y5f{bottom:385.440000pt;}
.yb8{bottom:388.326400pt;}
.y30{bottom:392.313920pt;}
.y8c{bottom:402.713600pt;}
.yeb{bottom:405.280000pt;}
.y2f{bottom:411.994880pt;}
.y5e{bottom:415.840000pt;}
.yb7{bottom:417.928320pt;}
.y8b{bottom:423.027200pt;}
.y2e{bottom:431.516480pt;}
.yea{bottom:433.594240pt;}
.y8a{bottom:443.193600pt;}
.yb6{bottom:446.087680pt;}
.y2d{bottom:451.197440pt;}
.ye9{bottom:453.760640pt;}
.y5d{bottom:455.040000pt;}
.y27{bottom:457.747840pt;}
.y89{bottom:463.360000pt;}
.yb5{bottom:466.254080pt;}
.y2c{bottom:470.719040pt;}
.y5c{bottom:475.353600pt;}
.ye8{bottom:481.920000pt;}
.y26{bottom:483.351680pt;}
.yb4{bottom:486.567680pt;}
.y2b{bottom:490.400000pt;}
.y88{bottom:491.673600pt;}
.y5b{bottom:495.520000pt;}
.y25{bottom:508.796160pt;}
.y2a{bottom:509.921600pt;}
.ye7{bottom:510.240640pt;}
.y87{bottom:511.840000pt;}
.yb3{bottom:514.727040pt;}
.y5a{bottom:523.680000pt;}
.yd7{bottom:527.655040pt;}
.y29{bottom:529.602560pt;}
.y86{bottom:532.006400pt;}
.yc9{bottom:533.911040pt;}
.y24{bottom:534.400000pt;}
.ye6{bottom:538.400000pt;}
.yb2{bottom:542.886400pt;}
.y59{bottom:544.000000pt;}
.y28{bottom:549.124160pt;}
.y85{bottom:552.320000pt;}
.yd6{bottom:555.976320pt;}
.yc8{bottom:562.232320pt;}
.yb1{bottom:563.200000pt;}
.y58{bottom:564.160000pt;}
.ye5{bottom:568.960000pt;}
.y23{bottom:570.080000pt;}
.y84{bottom:580.473600pt;}
.yd5{bottom:585.416267pt;}
.yc7{bottom:591.672267pt;}
.y57{bottom:592.320000pt;}
.yb0{bottom:593.594880pt;}
.y83{bottom:600.640000pt;}
.ye4{bottom:608.125440pt;}
.y56{bottom:612.640000pt;}
.yaf{bottom:616.320000pt;}
.y82{bottom:620.806400pt;}
.y22{bottom:627.830720pt;}
.ye3{bottom:628.291840pt;}
.y55{bottom:632.800000pt;}
.y81{bottom:641.120000pt;}
.y21{bottom:647.352320pt;}
.ye2{bottom:648.458267pt;}
.y54{bottom:652.931840pt;}
.yae{bottom:655.666560pt;}
.yd4{bottom:662.063360pt;}
.y20{bottom:667.033280pt;}
.y80{bottom:669.280000pt;}
.yad{bottom:675.832960pt;}
.y53{bottom:681.253120pt;}
.y1f{bottom:686.554880pt;}
.yc6{bottom:688.647680pt;}
.y7f{bottom:689.446400pt;}
.yd3{bottom:690.384640pt;}
.yac{bottom:696.146560pt;}
.y52{bottom:701.419520pt;}
.y1e{bottom:706.076480pt;}
.y7e{bottom:709.760000pt;}
.yd2{bottom:710.551040pt;}
.yab{bottom:716.312960pt;}
.yc5{bottom:716.807040pt;}
.y51{bottom:721.585920pt;}
.y1d{bottom:725.757440pt;}
.y7d{bottom:729.918720pt;}
.yd1{bottom:730.717440pt;}
.y17{bottom:732.307840pt;}
.yaa{bottom:736.479360pt;}
.yc4{bottom:736.973440pt;}
.y1c{bottom:745.279040pt;}
.ye1{bottom:745.433600pt;}
.y50{bottom:749.907200pt;}
.yd0{bottom:753.592320pt;}
.yc3{bottom:757.287040pt;}
.y16{bottom:757.752320pt;}
.y7c{bottom:758.240000pt;}
.y1b{bottom:764.960000pt;}
.ye0{bottom:765.600000pt;}
.y4f{bottom:770.073600pt;}
.ya9{bottom:772.793600pt;}
.yc2{bottom:780.161920pt;}
.y15{bottom:783.356160pt;}
.y1a{bottom:784.481600pt;}
.y7b{bottom:787.680000pt;}
.y4e{bottom:790.240000pt;}
.ya8{bottom:792.960000pt;}
.ydf{bottom:796.000000pt;}
.y19{bottom:804.003200pt;}
.y7a{bottom:807.846400pt;}
.y14{bottom:808.960000pt;}
.y4d{bottom:818.535680pt;}
.ya7{bottom:821.120000pt;}
.y18{bottom:823.684160pt;}
.y79{bottom:828.160000pt;}
.yde{bottom:829.915520pt;}
.y4c{bottom:838.702080pt;}
.ya6{bottom:841.433600pt;}
.y13{bottom:844.640000pt;}
.y78{bottom:858.554880pt;}
.y4b{bottom:858.868480pt;}
.ya5{bottom:861.600000pt;}
.y12{bottom:874.080000pt;}
.y4a{bottom:879.182080pt;}
.y77{bottom:881.280000pt;}
.ya4{bottom:881.766400pt;}
.y49{bottom:899.348480pt;}
.y11{bottom:900.162080pt;}
.ya3{bottom:902.080000pt;}
.y10{bottom:917.280000pt;}
.y76{bottom:920.605440pt;}
.ya2{bottom:922.240000pt;}
.y48{bottom:927.507840pt;}
.yf{bottom:933.600000pt;}
.yc1{bottom:935.678720pt;}
.y75{bottom:940.771840pt;}
.ya1{bottom:942.378240pt;}
.y47{bottom:947.821440pt;}
.ye{bottom:960.162667pt;}
.y74{bottom:961.085440pt;}
.yc0{bottom:964.000000pt;}
.y46{bottom:967.987840pt;}
.ya0{bottom:970.699520pt;}
.yd{bottom:977.280000pt;}
.y73{bottom:981.251840pt;}
.y45{bottom:988.154240pt;}
.y9f{bottom:990.865920pt;}
.ybf{bottom:993.440000pt;}
.yc{bottom:993.600000pt;}
.y72{bottom:1001.418240pt;}
.y44{bottom:1008.320640pt;}
.y9e{bottom:1011.032320pt;}
.ybe{bottom:1021.761280pt;}
.y43{bottom:1028.634240pt;}
.y71{bottom:1029.739520pt;}
.ycf{bottom:1032.477440pt;}
.yb{bottom:1033.289760pt;}
.y9d{bottom:1039.353600pt;}
.yf8{bottom:1041.920000pt;}
.ybd{bottom:1041.927680pt;}
.y70{bottom:1049.905920pt;}
.y42{bottom:1056.793600pt;}
.y9c{bottom:1059.520000pt;}
.yce{bottom:1060.798720pt;}
.ya{bottom:1062.720000pt;}
.y6f{bottom:1070.072320pt;}
.yf7{bottom:1070.073600pt;}
.ybc{bottom:1070.087040pt;}
.y41{bottom:1076.960000pt;}
.y9b{bottom:1088.966400pt;}
.yf6{bottom:1090.240000pt;}
.ybb{bottom:1090.400640pt;}
.y40{bottom:1097.273600pt;}
.y6e{bottom:1098.393600pt;}
.ydd{bottom:1101.116800pt;}
.y9{bottom:1101.280000pt;}
.y9a{bottom:1109.280000pt;}
.y3f{bottom:1117.440000pt;}
.y6d{bottom:1118.560000pt;}
.ydc{bottom:1129.438080pt;}
.y99{bottom:1129.438720pt;}
.y8{bottom:1134.400000pt;}
.y6c{bottom:1138.726400pt;}
.y3e{bottom:1148.000000pt;}
.y98{bottom:1157.760000pt;}
.y6b{bottom:1159.040000pt;}
.y4{bottom:1159.200000pt;}
.y2{bottom:1161.760000pt;}
.y1{bottom:1180.480000pt;}
.y37{bottom:1187.360000pt;}
.h4{height:17.600000pt;}
.h10{height:31.038667pt;}
.h6{height:31.040000pt;}
.h3{height:36.000000pt;}
.hc{height:37.555840pt;}
.he{height:39.840000pt;}
.h18{height:41.216000pt;}
.h2{height:41.457500pt;}
.h19{height:41.628160pt;}
.hb{height:43.326250pt;}
.h5{height:44.160000pt;}
.h1a{height:44.160213pt;}
.h15{height:44.165120pt;}
.h1b{height:44.183040pt;}
.h16{height:44.185600pt;}
.h17{height:44.247040pt;}
.h12{height:44.257280pt;}
.h13{height:44.272640pt;}
.hf{height:45.248000pt;}
.hd{height:48.000000pt;}
.h7{height:59.584000pt;}
.h1{height:59.933125pt;}
.ha{height:60.179840pt;}
.h11{height:60.750000pt;}
.h14{height:60.770480pt;}
.h8{height:67.872000pt;}
.h9{height:72.000000pt;}
.h0{height:1248.000000pt;}
.w2{width:43.038667pt;}
.w1{width:127.038667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x2{left:75.520000pt;}
.x1{left:91.520000pt;}
.xb{left:94.240000pt;}
.xf{left:99.528320pt;}
.x7{left:113.280000pt;}
.x8{left:123.213333pt;}
.xd{left:137.756000pt;}
.x9{left:234.240000pt;}
.x11{left:270.721920pt;}
.x10{left:381.460480pt;}
.x3{left:466.880000pt;}
.x14{left:485.442560pt;}
.x15{left:538.714240pt;}
.x13{left:550.563840pt;}
.x12{left:593.928960pt;}
.x4{left:639.200000pt;}
.xc{left:658.880000pt;}
.xa{left:740.320000pt;}
.x6{left:749.120000pt;}
.xe{left:759.040000pt;}
}




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