
    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_9c8a41a7ad1f6d7a59c03051.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_9b41e8c734fb3a17c97db2ce.woff')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_4670ca0b1a554e5bc372f4cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_15e9e5a8a6e1d4449aeecb98.woff')format("woff");}.ff4{font-family:ff4;line-height:0.243000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fdd0c9434b8e8d50beaa2176.woff')format("woff");}.ff5{font-family:ff5;line-height:0.387000;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_9f541cb38700f1a8f2b96259.woff')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_07f718f63654b141b7ba7827.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_efd890609d30f4407806c648.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_b8e5fb4ff2ddd7b988c9b0b4.woff')format("woff");}.ff9{font-family:ff9;line-height:1.128000;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_07170e33cd7daa7315c7fc07.woff')format("woff");}.ffa{font-family:ffa;line-height:1.332520;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_15b85c1690be186875539e97.woff')format("woff");}.ffb{font-family:ffb;line-height:1.330078;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_37ce9b17ecbcc72c6737764d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_1e9288d9c2c62886f8c3cdc5.woff')format("woff");}.ffd{font-family:ffd;line-height:0.372000;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:ffe;src:url('chunks/assets/font_f6721566a085ffe445288718.woff')format("woff");}.ffe{font-family:ffe;line-height:1.346191;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:fff;src:url('chunks/assets/font_1513d77371a6e731da5c09cb.woff')format("woff");}.fff{font-family:fff;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.lsa{letter-spacing:-0.425366px;}
.ls9{letter-spacing:-0.260537px;}
.ls8{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.001200px;}
.lsd{letter-spacing:0.057334px;}
.lsb{letter-spacing:0.447957px;}
.ls13{letter-spacing:0.516025px;}
.ls12{letter-spacing:0.517289px;}
.ls15{letter-spacing:0.529741px;}
.ls14{letter-spacing:0.534174px;}
.lsc{letter-spacing:1.202407px;}
.ls1{letter-spacing:2.985000px;}
.ls0{letter-spacing:2.988000px;}
.ls2{letter-spacing:2.989476px;}
.ls7{letter-spacing:14.947500px;}
.ls5{letter-spacing:15.199500px;}
.ls6{letter-spacing:15.205500px;}
.lsf{letter-spacing:23.481841px;}
.lse{letter-spacing:24.086334px;}
.ls4{letter-spacing:34.471500px;}
.ls3{letter-spacing:34.477500px;}
.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;}
}
.wsba{word-spacing:-18.943476px;}
.ws29{word-spacing:-16.618284px;}
.ws13{word-spacing:-14.955288px;}
.ws3{word-spacing:-14.944500px;}
.ws2d{word-spacing:-13.032695px;}
.ws31{word-spacing:-11.872984px;}
.ws2f{word-spacing:-11.788350px;}
.wsb1{word-spacing:-3.467244px;}
.ws26{word-spacing:-3.407226px;}
.wsae{word-spacing:-3.347807px;}
.ws82{word-spacing:-3.227833px;}
.ws28{word-spacing:-3.108396px;}
.ws3c{word-spacing:-2.929002px;}
.wscb{word-spacing:-2.869643px;}
.ws92{word-spacing:-2.630232px;}
.ws4f{word-spacing:-2.510796px;}
.ws84{word-spacing:-2.450778px;}
.wsa8{word-spacing:-2.331402px;}
.ws9c{word-spacing:-2.313497px;}
.wsc9{word-spacing:-2.271385px;}
.ws50{word-spacing:-2.091991px;}
.ws59{word-spacing:-2.032572px;}
.ws58{word-spacing:-1.972554px;}
.ws20{word-spacing:-1.936710px;}
.ws3b{word-spacing:-1.853178px;}
.ws42{word-spacing:-1.673784px;}
.ws76{word-spacing:-1.613767px;}
.ws62{word-spacing:-1.374954px;}
.ws5e{word-spacing:-1.255577px;}
.ws97{word-spacing:-1.195560px;}
.ws10{word-spacing:-1.104096px;}
.ws11{word-spacing:-1.075759px;}
.wsc5{word-spacing:-1.016166px;}
.ws8c{word-spacing:-0.956747px;}
.ws57{word-spacing:-0.956149px;}
.ws24{word-spacing:-0.914371px;}
.ws6c{word-spacing:-0.896730px;}
.wsd4{word-spacing:-0.836713px;}
.ws6a{word-spacing:-0.777353px;}
.ws3d{word-spacing:-0.717336px;}
.wsac{word-spacing:-0.657917px;}
.ws61{word-spacing:-0.537942px;}
.wsb3{word-spacing:-0.478523px;}
.ws4c{word-spacing:-0.358489px;}
.ws83{word-spacing:-0.179693px;}
.ws87{word-spacing:-0.179095px;}
.ws94{word-spacing:-0.073691px;}
.ws7{word-spacing:-0.059778px;}
.ws21{word-spacing:-0.054011px;}
.wsbf{word-spacing:-0.027444px;}
.wsc0{word-spacing:-0.025980px;}
.wsc8{word-spacing:-0.019169px;}
.wsc2{word-spacing:-0.019145px;}
.wsc7{word-spacing:-0.014250px;}
.wscc{word-spacing:-0.007885px;}
.wsd{word-spacing:-0.005231px;}
.ws4a{word-spacing:-0.000341px;}
.ws3a{word-spacing:-0.000299px;}
.ws85{word-spacing:-0.000170px;}
.wsf{word-spacing:0.000000px;}
.ws1{word-spacing:0.000079px;}
.ws7c{word-spacing:0.000273px;}
.ws43{word-spacing:0.000299px;}
.ws67{word-spacing:0.000454px;}
.ws4d{word-spacing:0.059718px;}
.wsc1{word-spacing:0.119676px;}
.ws52{word-spacing:0.179095px;}
.ws53{word-spacing:0.239112px;}
.ws0{word-spacing:0.318079px;}
.ws19{word-spacing:0.322776px;}
.wsa0{word-spacing:0.417908px;}
.ws65{word-spacing:0.418506px;}
.ws9d{word-spacing:0.484164px;}
.ws56{word-spacing:0.537942px;}
.ws70{word-spacing:0.657319px;}
.ws69{word-spacing:0.717336px;}
.ws8b{word-spacing:0.776755px;}
.ws8a{word-spacing:0.777353px;}
.wsb0{word-spacing:0.896730px;}
.ws5f{word-spacing:0.956149px;}
.ws63{word-spacing:1.016166px;}
.ws64{word-spacing:1.076124px;}
.ws1a{word-spacing:1.129770px;}
.wsaf{word-spacing:1.195560px;}
.ws5a{word-spacing:1.255577px;}
.ws23{word-spacing:1.291158px;}
.ws86{word-spacing:1.314937px;}
.ws60{word-spacing:1.374954px;}
.ws18{word-spacing:1.452546px;}
.wsbe{word-spacing:1.494330px;}
.ws9b{word-spacing:1.505911px;}
.ws7d{word-spacing:1.673784px;}
.ws51{word-spacing:1.853178px;}
.ws6d{word-spacing:1.913195px;}
.wsaa{word-spacing:2.032572px;}
.ws8f{word-spacing:2.098098px;}
.ws17{word-spacing:2.205475px;}
.ws95{word-spacing:2.211368px;}
.ws96{word-spacing:2.211965px;}
.ws74{word-spacing:2.331402px;}
.ws6f{word-spacing:2.391419px;}
.ws14{word-spacing:2.420874px;}
.wsbb{word-spacing:2.450778px;}
.ws41{word-spacing:2.510796px;}
.ws7b{word-spacing:2.582262px;}
.ws5c{word-spacing:2.630232px;}
.wsa7{word-spacing:2.690189px;}
.ws48{word-spacing:2.749609px;}
.ws27{word-spacing:2.809626px;}
.ws16{word-spacing:2.851080px;}
.ws2c{word-spacing:2.869009px;}
.ws93{word-spacing:2.869643px;}
.ws73{word-spacing:2.929002px;}
.ws34{word-spacing:2.942372px;}
.ws6e{word-spacing:3.048439px;}
.ws80{word-spacing:3.108396px;}
.wsce{word-spacing:3.168413px;}
.ws45{word-spacing:3.227833px;}
.ws1f{word-spacing:3.227868px;}
.ws46{word-spacing:3.287850px;}
.ws8e{word-spacing:3.335244px;}
.ws3f{word-spacing:3.407226px;}
.wsb9{word-spacing:3.467244px;}
.ws9e{word-spacing:3.496632px;}
.ws6b{word-spacing:3.586620px;}
.ws2a{word-spacing:3.646637px;}
.ws15{word-spacing:3.658020px;}
.ws33{word-spacing:3.696827px;}
.ws68{word-spacing:3.706057px;}
.ws78{word-spacing:3.712032px;}
.wsa3{word-spacing:3.825433px;}
.wsa2{word-spacing:3.826031px;}
.ws22{word-spacing:3.873420px;}
.ws7a{word-spacing:3.926839px;}
.wsbd{word-spacing:3.945468px;}
.wsa6{word-spacing:4.004887px;}
.wsa1{word-spacing:4.064844px;}
.ws99{word-spacing:4.184281px;}
.ws71{word-spacing:4.244298px;}
.ws40{word-spacing:4.304255px;}
.ws75{word-spacing:4.363674px;}
.ws32{word-spacing:4.397225px;}
.ws3e{word-spacing:4.423692px;}
.ws12{word-spacing:4.465014px;}
.ws38{word-spacing:4.483051px;}
.ws66{word-spacing:4.603085px;}
.ws1d{word-spacing:4.680413px;}
.ws72{word-spacing:4.722462px;}
.wsb8{word-spacing:4.841898px;}
.ws54{word-spacing:5.021292px;}
.wsc6{word-spacing:5.080712px;}
.ws4b{word-spacing:5.081309px;}
.ws79{word-spacing:5.325965px;}
.ws44{word-spacing:5.380140px;}
.wsb4{word-spacing:5.558936px;}
.ws36{word-spacing:5.738927px;}
.ws89{word-spacing:5.764451px;}
.ws88{word-spacing:5.858364px;}
.ws1b{word-spacing:5.863549px;}
.ws90{word-spacing:6.240336px;}
.wsa9{word-spacing:6.276570px;}
.ws49{word-spacing:6.395947px;}
.ws47{word-spacing:6.635358px;}
.ws9f{word-spacing:6.754794px;}
.ws98{word-spacing:6.755392px;}
.ws1e{word-spacing:6.993265px;}
.wsb6{word-spacing:7.054163px;}
.ws7e{word-spacing:7.113582px;}
.ws2b{word-spacing:7.292976px;}
.wsb5{word-spacing:7.412412px;}
.wscf{word-spacing:7.472370px;}
.wsb7{word-spacing:7.531789px;}
.wsbc{word-spacing:7.591806px;}
.wsad{word-spacing:7.711183px;}
.ws1c{word-spacing:7.746839px;}
.ws81{word-spacing:7.890636px;}
.wsb2{word-spacing:7.950594px;}
.wsab{word-spacing:8.010013px;}
.ws37{word-spacing:8.070030px;}
.ws4e{word-spacing:8.130047px;}
.wsc3{word-spacing:8.249424px;}
.ws30{word-spacing:8.250788px;}
.ws91{word-spacing:8.428818px;}
.ws39{word-spacing:8.548254px;}
.ws35{word-spacing:8.832435px;}
.ws7f{word-spacing:8.907042px;}
.wsd5{word-spacing:8.966461px;}
.wsd1{word-spacing:9.325248px;}
.wsd2{word-spacing:10.939314px;}
.wsa5{word-spacing:12.075156px;}
.wsa4{word-spacing:12.135173px;}
.wsca{word-spacing:12.613337px;}
.ws55{word-spacing:12.792193px;}
.ws77{word-spacing:13.341193px;}
.ws5d{word-spacing:14.227463px;}
.wsc{word-spacing:14.871395px;}
.wse{word-spacing:14.877395px;}
.wscd{word-spacing:14.883222px;}
.ws9a{word-spacing:14.901761px;}
.ws9{word-spacing:15.082992px;}
.wsa{word-spacing:15.087654px;}
.wsb{word-spacing:15.087864px;}
.ws8{word-spacing:15.088296px;}
.ws8d{word-spacing:16.677083px;}
.ws25{word-spacing:16.899216px;}
.wsd0{word-spacing:22.353222px;}
.wsd3{word-spacing:22.476588px;}
.wsc4{word-spacing:23.130222px;}
.ws5{word-spacing:30.486840px;}
.ws4{word-spacing:30.499074px;}
.ws6{word-spacing:30.501456px;}
.ws2{word-spacing:30.503910px;}
.ws2e{word-spacing:627.952436px;}
.ws5b{word-spacing:627.952465px;}
._21{margin-left:-7.493551px;}
._1a{margin-left:-6.457399px;}
._4{margin-left:-5.208311px;}
._3{margin-left:-3.977550px;}
._2{margin-left:-2.610516px;}
._0{margin-left:-1.590000px;}
._c{width:1.079583px;}
._e{width:2.440324px;}
._d{width:4.014770px;}
._f{width:5.082969px;}
._10{width:7.535011px;}
._1e{width:10.090366px;}
._18{width:11.876644px;}
._b{width:13.190146px;}
._1c{width:14.625894px;}
._1d{width:15.679943px;}
._9{width:17.157785px;}
._14{width:18.292307px;}
._6{width:19.342465px;}
._7{width:20.658848px;}
._5{width:22.433040px;}
._16{width:23.880414px;}
._13{width:25.644403px;}
._1{width:27.268103px;}
._a{width:28.457976px;}
._8{width:30.746894px;}
._1b{width:32.478903px;}
._1f{width:34.081504px;}
._17{width:35.842692px;}
._15{width:38.531856px;}
._20{width:41.462165px;}
._11{width:43.055678px;}
._12{width:44.176181px;}
._19{width:46.419093px;}
._22{width:64.266894px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.868000px;}
.fs2{font-size:41.844000px;}
.fsc{font-size:45.900000px;}
.fsd{font-size:47.153400px;}
.fse{font-size:47.262600px;}
.fs7{font-size:47.820000px;}
.fs5{font-size:51.108000px;}
.fsa{font-size:53.170800px;}
.fs4{font-size:53.796000px;}
.fsb{font-size:54.000000px;}
.fs10{font-size:56.784000px;}
.fs9{font-size:59.760000px;}
.fs1{font-size:59.778000px;}
.fsf{font-size:60.000000px;}
.fs6{font-size:68.142000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:79.500000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.237000px;}
.y2f{bottom:11.528565px;}
.y5f{bottom:13.263794px;}
.y2d{bottom:24.887565px;}
.y2e{bottom:25.006620px;}
.y2c{bottom:29.506065px;}
.y5e{bottom:80.052000px;}
.y27{bottom:84.391500px;}
.y5d{bottom:97.984500px;}
.y26{bottom:106.599000px;}
.y5c{bottom:115.917000px;}
.yef{bottom:117.411000px;}
.y25{bottom:124.533000px;}
.y5b{bottom:133.849500px;}
.yee{bottom:136.839000px;}
.y24{bottom:142.465500px;}
.yae{bottom:145.035000px;}
.ycc{bottom:146.689500px;}
.y83{bottom:152.488500px;}
.yed{bottom:156.265500px;}
.y5a{bottom:156.804000px;}
.y23{bottom:160.398000px;}
.y93{bottom:160.929000px;}
.y82{bottom:170.421000px;}
.yec{bottom:174.198000px;}
.y59{bottom:174.736500px;}
.y22{bottom:178.330500px;}
.y92{bottom:178.861500px;}
.yad{bottom:186.945000px;}
.y81{bottom:188.353500px;}
.y58{bottom:192.669000px;}
.ycb{bottom:193.243500px;}
.yeb{bottom:193.626000px;}
.y91{bottom:196.794000px;}
.yac{bottom:204.877500px;}
.y80{bottom:206.287500px;}
.y21{bottom:208.906500px;}
.y57{bottom:210.601500px;}
.yca{bottom:211.176000px;}
.yea{bottom:213.052500px;}
.y90{bottom:214.726500px;}
.yab{bottom:222.811500px;}
.y7f{bottom:224.220000px;}
.y56{bottom:228.535500px;}
.yc9{bottom:229.108500px;}
.y8f{bottom:232.660500px;}
.yaa{bottom:240.744000px;}
.y7e{bottom:242.152500px;}
.y55{bottom:246.468000px;}
.yc8{bottom:247.042500px;}
.ye9{bottom:247.690500px;}
.ya9{bottom:258.676500px;}
.y7d{bottom:260.085000px;}
.y8e{bottom:261.322500px;}
.y54{bottom:264.400500px;}
.yc7{bottom:264.975000px;}
.ya8{bottom:276.609000px;}
.y20{bottom:277.566000px;}
.y7c{bottom:278.017500px;}
.y8d{bottom:279.255000px;}
.yc6{bottom:282.907500px;}
.y53{bottom:287.355000px;}
.y1f{bottom:294.004500px;}
.ya7{bottom:294.541500px;}
.y7b{bottom:295.950000px;}
.y8c{bottom:297.189000px;}
.ye8{bottom:299.088000px;}
.yc5{bottom:300.840000px;}
.y52{bottom:305.287500px;}
.y1e{bottom:310.443000px;}
.ya6{bottom:312.474000px;}
.y7a{bottom:314.589000px;}
.ye7{bottom:317.020500px;}
.y51{bottom:323.220000px;}
.yc4{bottom:324.769500px;}
.y1d{bottom:326.880000px;}
.ya5{bottom:330.408000px;}
.y79{bottom:332.521500px;}
.ye6{bottom:334.954500px;}
.y8b{bottom:335.833500px;}
.y50{bottom:341.152500px;}
.yc3{bottom:342.702000px;}
.y1c{bottom:343.318500px;}
.ya4{bottom:348.340500px;}
.y78{bottom:350.454000px;}
.ye5{bottom:353.865000px;}
.y4f{bottom:359.085000px;}
.y1b{bottom:359.757000px;}
.yc2{bottom:360.634500px;}
.ya3{bottom:366.273000px;}
.y77{bottom:368.388000px;}
.ye4{bottom:371.797500px;}
.y1a{bottom:376.195500px;}
.yc1{bottom:378.568500px;}
.y4e{bottom:382.039500px;}
.ya2{bottom:384.205500px;}
.y76{bottom:386.320500px;}
.y10c{bottom:387.897000px;}
.ye3{bottom:389.730000px;}
.y19{bottom:392.634000px;}
.yc0{bottom:396.501000px;}
.y4d{bottom:399.972000px;}
.y8a{bottom:401.689500px;}
.y75{bottom:404.253000px;}
.y10b{bottom:405.829500px;}
.ye2{bottom:407.664000px;}
.y18{bottom:409.072500px;}
.ya1{bottom:413.323500px;}
.ybf{bottom:414.433500px;}
.y4c{bottom:417.904500px;}
.y89{bottom:418.128000px;}
.y10a{bottom:423.763500px;}
.y17{bottom:425.511000px;}
.ye1{bottom:425.596500px;}
.y88{bottom:434.566500px;}
.y4b{bottom:435.837000px;}
.ybe{bottom:438.363000px;}
.y74{bottom:438.507000px;}
.y109{bottom:441.696000px;}
.y16{bottom:441.949500px;}
.ye0{bottom:443.529000px;}
.y87{bottom:451.005000px;}
.y4a{bottom:453.771000px;}
.ybd{bottom:456.295500px;}
.y15{bottom:458.388000px;}
.y108{bottom:461.122500px;}
.y86{bottom:467.443500px;}
.y49{bottom:471.703500px;}
.ybc{bottom:474.228000px;}
.y14{bottom:474.826500px;}
.y107{bottom:479.055000px;}
.ydf{bottom:479.145000px;}
.y85{bottom:483.882000px;}
.ya0{bottom:486.982500px;}
.y48{bottom:489.636000px;}
.y13{bottom:491.263500px;}
.ybb{bottom:492.160500px;}
.y73{bottom:492.940500px;}
.y106{bottom:498.483000px;}
.y84{bottom:500.320500px;}
.y9f{bottom:503.421000px;}
.y12{bottom:507.702000px;}
.yba{bottom:510.094500px;}
.y72{bottom:510.873000px;}
.y47{bottom:512.589000px;}
.y105{bottom:516.415500px;}
.y9e{bottom:519.859500px;}
.y11{bottom:524.140500px;}
.yb9{bottom:528.027000px;}
.y71{bottom:528.807000px;}
.y46{bottom:530.523000px;}
.yde{bottom:530.542500px;}
.y104{bottom:534.348000px;}
.y9d{bottom:536.298000px;}
.y10{bottom:540.579000px;}
.yb8{bottom:545.959500px;}
.y70{bottom:546.739500px;}
.y45{bottom:548.455500px;}
.ydd{bottom:548.475000px;}
.y103{bottom:553.776000px;}
.yf{bottom:557.017500px;}
.yb7{bottom:563.892000px;}
.y6f{bottom:564.672000px;}
.y44{bottom:566.388000px;}
.ydc{bottom:566.407500px;}
.y102{bottom:571.708500px;}
.ye{bottom:573.456000px;}
.yb6{bottom:581.824500px;}
.y6e{bottom:582.604500px;}
.y101{bottom:589.641000px;}
.yd{bottom:589.894500px;}
.ydb{bottom:592.275000px;}
.y43{bottom:593.287500px;}
.yb5{bottom:599.757000px;}
.y6d{bottom:600.537000px;}
.y100{bottom:607.573500px;}
.yda{bottom:610.207500px;}
.yb4{bottom:617.691000px;}
.yc{bottom:624.552000px;}
.y6c{bottom:625.860000px;}
.yff{bottom:627.001500px;}
.yd9{bottom:628.140000px;}
.y42{bottom:635.967000px;}
.yb{bottom:640.990500px;}
.y6b{bottom:643.792500px;}
.yfe{bottom:644.934000px;}
.y41{bottom:653.899500px;}
.yd8{bottom:654.007500px;}
.ya{bottom:657.429000px;}
.y6a{bottom:661.725000px;}
.yfd{bottom:662.866500px;}
.y40{bottom:671.832000px;}
.yd7{bottom:671.940000px;}
.y9{bottom:673.867500px;}
.yb3{bottom:677.647500px;}
.y69{bottom:679.657500px;}
.yfc{bottom:682.293000px;}
.y3f{bottom:689.766000px;}
.yd6{bottom:689.872500px;}
.y8{bottom:690.306000px;}
.yb2{bottom:694.084500px;}
.y68{bottom:697.590000px;}
.yfb{bottom:700.225500px;}
.y7{bottom:706.744500px;}
.y3e{bottom:707.698500px;}
.yb1{bottom:710.523000px;}
.yd5{bottom:715.740000px;}
.yfa{bottom:718.159500px;}
.y67{bottom:722.911500px;}
.y6{bottom:723.183000px;}
.y3d{bottom:725.631000px;}
.yb0{bottom:726.961500px;}
.yd4{bottom:733.672500px;}
.yf9{bottom:736.092000px;}
.y66{bottom:740.845500px;}
.y5{bottom:742.210500px;}
.yaf{bottom:743.400000px;}
.y3c{bottom:743.563500px;}
.yd3{bottom:751.605000px;}
.yf8{bottom:755.518500px;}
.y65{bottom:758.778000px;}
.y4{bottom:760.143000px;}
.y3b{bottom:761.496000px;}
.yd2{bottom:769.539000px;}
.yf7{bottom:773.451000px;}
.y64{bottom:776.710500px;}
.y3{bottom:778.075500px;}
.y3a{bottom:779.428500px;}
.y9c{bottom:786.177000px;}
.yd1{bottom:787.471500px;}
.yf6{bottom:791.385000px;}
.y39{bottom:797.362500px;}
.y63{bottom:802.738500px;}
.y9b{bottom:804.109500px;}
.yd0{bottom:805.404000px;}
.yf5{bottom:810.811500px;}
.y38{bottom:815.295000px;}
.y62{bottom:820.671000px;}
.y9a{bottom:822.042000px;}
.ycf{bottom:823.336500px;}
.y2{bottom:825.897000px;}
.yf4{bottom:830.238000px;}
.y37{bottom:833.227500px;}
.y99{bottom:839.974500px;}
.yf3{bottom:849.666000px;}
.y1{bottom:849.807000px;}
.yce{bottom:850.182000px;}
.y36{bottom:851.160000px;}
.y61{bottom:854.923500px;}
.y98{bottom:857.908500px;}
.yf2{bottom:867.598500px;}
.ycd{bottom:868.114500px;}
.y35{bottom:869.092500px;}
.y97{bottom:875.841000px;}
.yf1{bottom:885.531000px;}
.y34{bottom:887.026500px;}
.y96{bottom:893.773500px;}
.yf0{bottom:903.463500px;}
.y33{bottom:904.959000px;}
.y95{bottom:911.706000px;}
.y32{bottom:922.891500px;}
.y94{bottom:929.638500px;}
.y31{bottom:940.824000px;}
.y30{bottom:958.756500px;}
.y28{bottom:1003.680000px;}
.y2b{bottom:1016.581950px;}
.y29{bottom:1026.091500px;}
.y2a{bottom:1035.766350px;}
.h13{height:16.500090px;}
.ha{height:18.829800px;}
.h5{height:24.677184px;}
.hf{height:31.900500px;}
.h10{height:32.771613px;}
.h11{height:32.818773px;}
.h12{height:32.942007px;}
.h7{height:37.011648px;}
.h16{height:37.173036px;}
.h6{height:37.871028px;}
.h9{height:41.127264px;}
.h17{height:41.306598px;}
.h15{height:42.076944px;}
.hb{height:50.273438px;}
.h4{height:50.484672px;}
.h3{height:50.490672px;}
.h8{height:50.493222px;}
.hd{height:54.440002px;}
.he{height:55.265625px;}
.h2{height:58.909500px;}
.hc{height:59.439023px;}
.h14{height:62.373047px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w2{width:7.500000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:30.381300px;}
.x8{left:52.579125px;}
.x9{left:54.272265px;}
.x7{left:61.627815px;}
.x6{left:75.362415px;}
.x1{left:85.039500px;}
.x4{left:87.313500px;}
.xb{left:98.488500px;}
.x3{left:100.884000px;}
.xd{left:102.463500px;}
.xa{left:107.455500px;}
.x2{left:148.819500px;}
.xc{left:357.667511px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.lsa{letter-spacing:-0.378103pt;}
.ls9{letter-spacing:-0.231588pt;}
.ls8{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.001067pt;}
.lsd{letter-spacing:0.050964pt;}
.lsb{letter-spacing:0.398184pt;}
.ls13{letter-spacing:0.458689pt;}
.ls12{letter-spacing:0.459813pt;}
.ls15{letter-spacing:0.470881pt;}
.ls14{letter-spacing:0.474821pt;}
.lsc{letter-spacing:1.068806pt;}
.ls1{letter-spacing:2.653333pt;}
.ls0{letter-spacing:2.656000pt;}
.ls2{letter-spacing:2.657312pt;}
.ls7{letter-spacing:13.286667pt;}
.ls5{letter-spacing:13.510667pt;}
.ls6{letter-spacing:13.516000pt;}
.lsf{letter-spacing:20.872747pt;}
.lse{letter-spacing:21.410075pt;}
.ls4{letter-spacing:30.641333pt;}
.ls3{letter-spacing:30.646667pt;}
.wsba{word-spacing:-16.838645pt;}
.ws29{word-spacing:-14.771808pt;}
.ws13{word-spacing:-13.293589pt;}
.ws3{word-spacing:-13.284000pt;}
.ws2d{word-spacing:-11.584618pt;}
.ws31{word-spacing:-10.553764pt;}
.ws2f{word-spacing:-10.478533pt;}
.wsb1{word-spacing:-3.081994pt;}
.ws26{word-spacing:-3.028646pt;}
.wsae{word-spacing:-2.975829pt;}
.ws82{word-spacing:-2.869185pt;}
.ws28{word-spacing:-2.763019pt;}
.ws3c{word-spacing:-2.603558pt;}
.wscb{word-spacing:-2.550794pt;}
.ws92{word-spacing:-2.337984pt;}
.ws4f{word-spacing:-2.231818pt;}
.ws84{word-spacing:-2.178470pt;}
.wsa8{word-spacing:-2.072357pt;}
.ws9c{word-spacing:-2.056442pt;}
.wsc9{word-spacing:-2.019009pt;}
.ws50{word-spacing:-1.859547pt;}
.ws59{word-spacing:-1.806730pt;}
.ws58{word-spacing:-1.753382pt;}
.ws20{word-spacing:-1.721520pt;}
.ws3b{word-spacing:-1.647269pt;}
.ws42{word-spacing:-1.487808pt;}
.ws76{word-spacing:-1.434459pt;}
.ws62{word-spacing:-1.222181pt;}
.ws5e{word-spacing:-1.116069pt;}
.ws97{word-spacing:-1.062720pt;}
.ws10{word-spacing:-0.981419pt;}
.ws11{word-spacing:-0.956230pt;}
.wsc5{word-spacing:-0.903259pt;}
.ws8c{word-spacing:-0.850442pt;}
.ws57{word-spacing:-0.849910pt;}
.ws24{word-spacing:-0.812774pt;}
.ws6c{word-spacing:-0.797093pt;}
.wsd4{word-spacing:-0.743745pt;}
.ws6a{word-spacing:-0.690981pt;}
.ws3d{word-spacing:-0.637632pt;}
.wsac{word-spacing:-0.584815pt;}
.ws61{word-spacing:-0.478171pt;}
.wsb3{word-spacing:-0.425354pt;}
.ws4c{word-spacing:-0.318657pt;}
.ws83{word-spacing:-0.159727pt;}
.ws87{word-spacing:-0.159195pt;}
.ws94{word-spacing:-0.065503pt;}
.ws7{word-spacing:-0.053136pt;}
.ws21{word-spacing:-0.048010pt;}
.wsbf{word-spacing:-0.024395pt;}
.wsc0{word-spacing:-0.023093pt;}
.wsc8{word-spacing:-0.017039pt;}
.wsc2{word-spacing:-0.017018pt;}
.wsc7{word-spacing:-0.012667pt;}
.wscc{word-spacing:-0.007009pt;}
.wsd{word-spacing:-0.004650pt;}
.ws4a{word-spacing:-0.000303pt;}
.ws3a{word-spacing:-0.000266pt;}
.ws85{word-spacing:-0.000151pt;}
.wsf{word-spacing:0.000000pt;}
.ws1{word-spacing:0.000071pt;}
.ws7c{word-spacing:0.000242pt;}
.ws43{word-spacing:0.000266pt;}
.ws67{word-spacing:0.000404pt;}
.ws4d{word-spacing:0.053083pt;}
.wsc1{word-spacing:0.106378pt;}
.ws52{word-spacing:0.159195pt;}
.ws53{word-spacing:0.212544pt;}
.ws0{word-spacing:0.282737pt;}
.ws19{word-spacing:0.286912pt;}
.wsa0{word-spacing:0.371474pt;}
.ws65{word-spacing:0.372005pt;}
.ws9d{word-spacing:0.430368pt;}
.ws56{word-spacing:0.478171pt;}
.ws70{word-spacing:0.584283pt;}
.ws69{word-spacing:0.637632pt;}
.ws8b{word-spacing:0.690449pt;}
.ws8a{word-spacing:0.690981pt;}
.wsb0{word-spacing:0.797093pt;}
.ws5f{word-spacing:0.849910pt;}
.ws63{word-spacing:0.903259pt;}
.ws64{word-spacing:0.956554pt;}
.ws1a{word-spacing:1.004240pt;}
.wsaf{word-spacing:1.062720pt;}
.ws5a{word-spacing:1.116069pt;}
.ws23{word-spacing:1.147696pt;}
.ws86{word-spacing:1.168833pt;}
.ws60{word-spacing:1.222181pt;}
.ws18{word-spacing:1.291152pt;}
.wsbe{word-spacing:1.328294pt;}
.ws9b{word-spacing:1.338588pt;}
.ws7d{word-spacing:1.487808pt;}
.ws51{word-spacing:1.647269pt;}
.ws6d{word-spacing:1.700618pt;}
.wsaa{word-spacing:1.806730pt;}
.ws8f{word-spacing:1.864976pt;}
.ws17{word-spacing:1.960422pt;}
.ws95{word-spacing:1.965660pt;}
.ws96{word-spacing:1.966191pt;}
.ws74{word-spacing:2.072357pt;}
.ws6f{word-spacing:2.125706pt;}
.ws14{word-spacing:2.151888pt;}
.wsbb{word-spacing:2.178470pt;}
.ws41{word-spacing:2.231818pt;}
.ws7b{word-spacing:2.295344pt;}
.ws5c{word-spacing:2.337984pt;}
.wsa7{word-spacing:2.391279pt;}
.ws48{word-spacing:2.444097pt;}
.ws27{word-spacing:2.497445pt;}
.ws16{word-spacing:2.534294pt;}
.ws2c{word-spacing:2.550230pt;}
.ws93{word-spacing:2.550794pt;}
.ws73{word-spacing:2.603558pt;}
.ws34{word-spacing:2.615442pt;}
.ws6e{word-spacing:2.709723pt;}
.ws80{word-spacing:2.763019pt;}
.wsce{word-spacing:2.816367pt;}
.ws45{word-spacing:2.869185pt;}
.ws1f{word-spacing:2.869216pt;}
.ws46{word-spacing:2.922533pt;}
.ws8e{word-spacing:2.964662pt;}
.ws3f{word-spacing:3.028646pt;}
.wsb9{word-spacing:3.081994pt;}
.ws9e{word-spacing:3.108118pt;}
.ws6b{word-spacing:3.188107pt;}
.ws2a{word-spacing:3.241455pt;}
.ws15{word-spacing:3.251574pt;}
.ws33{word-spacing:3.286068pt;}
.ws68{word-spacing:3.294273pt;}
.ws78{word-spacing:3.299584pt;}
.wsa3{word-spacing:3.400385pt;}
.wsa2{word-spacing:3.400917pt;}
.ws22{word-spacing:3.443040pt;}
.ws7a{word-spacing:3.490524pt;}
.wsbd{word-spacing:3.507082pt;}
.wsa6{word-spacing:3.559899pt;}
.wsa1{word-spacing:3.613195pt;}
.ws99{word-spacing:3.719361pt;}
.ws71{word-spacing:3.772709pt;}
.ws40{word-spacing:3.826005pt;}
.ws75{word-spacing:3.878822pt;}
.ws32{word-spacing:3.908645pt;}
.ws3e{word-spacing:3.932170pt;}
.ws12{word-spacing:3.968902pt;}
.ws38{word-spacing:3.984934pt;}
.ws66{word-spacing:4.091631pt;}
.ws1d{word-spacing:4.160367pt;}
.ws72{word-spacing:4.197744pt;}
.wsb8{word-spacing:4.303910pt;}
.ws54{word-spacing:4.463371pt;}
.wsc6{word-spacing:4.516188pt;}
.ws4b{word-spacing:4.516719pt;}
.ws79{word-spacing:4.734191pt;}
.ws44{word-spacing:4.782346pt;}
.wsb4{word-spacing:4.941276pt;}
.ws36{word-spacing:5.101269pt;}
.ws89{word-spacing:5.123956pt;}
.ws88{word-spacing:5.207434pt;}
.ws1b{word-spacing:5.212043pt;}
.ws90{word-spacing:5.546965pt;}
.wsa9{word-spacing:5.579174pt;}
.ws49{word-spacing:5.685286pt;}
.ws47{word-spacing:5.898096pt;}
.ws9f{word-spacing:6.004262pt;}
.ws98{word-spacing:6.004793pt;}
.ws1e{word-spacing:6.216235pt;}
.wsb6{word-spacing:6.270367pt;}
.ws7e{word-spacing:6.323184pt;}
.ws2b{word-spacing:6.482645pt;}
.wsb5{word-spacing:6.588811pt;}
.wscf{word-spacing:6.642106pt;}
.wsb7{word-spacing:6.694923pt;}
.wsbc{word-spacing:6.748272pt;}
.wsad{word-spacing:6.854385pt;}
.ws1c{word-spacing:6.886079pt;}
.ws81{word-spacing:7.013899pt;}
.wsb2{word-spacing:7.067194pt;}
.wsab{word-spacing:7.120011pt;}
.ws37{word-spacing:7.173360pt;}
.ws4e{word-spacing:7.226709pt;}
.wsc3{word-spacing:7.332821pt;}
.ws30{word-spacing:7.334034pt;}
.ws91{word-spacing:7.492282pt;}
.ws39{word-spacing:7.598448pt;}
.ws35{word-spacing:7.851053pt;}
.ws7f{word-spacing:7.917370pt;}
.wsd5{word-spacing:7.970187pt;}
.wsd1{word-spacing:8.289110pt;}
.wsd2{word-spacing:9.723835pt;}
.wsa5{word-spacing:10.733472pt;}
.wsa4{word-spacing:10.786821pt;}
.wsca{word-spacing:11.211855pt;}
.ws55{word-spacing:11.370838pt;}
.ws77{word-spacing:11.858838pt;}
.ws5d{word-spacing:12.646634pt;}
.wsc{word-spacing:13.219018pt;}
.wse{word-spacing:13.224351pt;}
.wscd{word-spacing:13.229531pt;}
.ws9a{word-spacing:13.246010pt;}
.ws9{word-spacing:13.407104pt;}
.wsa{word-spacing:13.411248pt;}
.wsb{word-spacing:13.411435pt;}
.ws8{word-spacing:13.411819pt;}
.ws8d{word-spacing:14.824074pt;}
.ws25{word-spacing:15.021525pt;}
.wsd0{word-spacing:19.869531pt;}
.wsd3{word-spacing:19.979189pt;}
.wsc4{word-spacing:20.560197pt;}
.ws5{word-spacing:27.099413pt;}
.ws4{word-spacing:27.110288pt;}
.ws6{word-spacing:27.112406pt;}
.ws2{word-spacing:27.114587pt;}
.ws2e{word-spacing:558.179943pt;}
.ws5b{word-spacing:558.179969pt;}
._21{margin-left:-6.660934pt;}
._1a{margin-left:-5.739910pt;}
._4{margin-left:-4.629610pt;}
._3{margin-left:-3.535600pt;}
._2{margin-left:-2.320459pt;}
._0{margin-left:-1.413333pt;}
._c{width:0.959629pt;}
._e{width:2.169177pt;}
._d{width:3.568684pt;}
._f{width:4.518195pt;}
._10{width:6.697788pt;}
._1e{width:8.969214pt;}
._18{width:10.557017pt;}
._b{width:11.724574pt;}
._1c{width:13.000795pt;}
._1d{width:13.937727pt;}
._9{width:15.251365pt;}
._14{width:16.259829pt;}
._6{width:17.193302pt;}
._7{width:18.363420pt;}
._5{width:19.940480pt;}
._16{width:21.227035pt;}
._13{width:22.795025pt;}
._1{width:24.238313pt;}
._a{width:25.295979pt;}
._8{width:27.330572pt;}
._1b{width:28.870136pt;}
._1f{width:30.294670pt;}
._17{width:31.860171pt;}
._15{width:34.250539pt;}
._20{width:36.855258pt;}
._11{width:38.271714pt;}
._12{width:39.267717pt;}
._19{width:41.261416pt;}
._22{width:57.126128pt;}
.fs3{font-size:31.882667pt;}
.fs2{font-size:37.194667pt;}
.fsc{font-size:40.800000pt;}
.fsd{font-size:41.914133pt;}
.fse{font-size:42.011200pt;}
.fs7{font-size:42.506667pt;}
.fs5{font-size:45.429333pt;}
.fsa{font-size:47.262933pt;}
.fs4{font-size:47.818667pt;}
.fsb{font-size:48.000000pt;}
.fs10{font-size:50.474667pt;}
.fs9{font-size:53.120000pt;}
.fs1{font-size:53.136000pt;}
.fsf{font-size:53.333333pt;}
.fs6{font-size:60.570667pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:70.666667pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:2.877333pt;}
.y2f{bottom:10.247613pt;}
.y5f{bottom:11.790039pt;}
.y2d{bottom:22.122280pt;}
.y2e{bottom:22.228107pt;}
.y2c{bottom:26.227613pt;}
.y5e{bottom:71.157333pt;}
.y27{bottom:75.014667pt;}
.y5d{bottom:87.097333pt;}
.y26{bottom:94.754667pt;}
.y5c{bottom:103.037333pt;}
.yef{bottom:104.365333pt;}
.y25{bottom:110.696000pt;}
.y5b{bottom:118.977333pt;}
.yee{bottom:121.634667pt;}
.y24{bottom:126.636000pt;}
.yae{bottom:128.920000pt;}
.ycc{bottom:130.390667pt;}
.y83{bottom:135.545333pt;}
.yed{bottom:138.902667pt;}
.y5a{bottom:139.381333pt;}
.y23{bottom:142.576000pt;}
.y93{bottom:143.048000pt;}
.y82{bottom:151.485333pt;}
.yec{bottom:154.842667pt;}
.y59{bottom:155.321333pt;}
.y22{bottom:158.516000pt;}
.y92{bottom:158.988000pt;}
.yad{bottom:166.173333pt;}
.y81{bottom:167.425333pt;}
.y58{bottom:171.261333pt;}
.ycb{bottom:171.772000pt;}
.yeb{bottom:172.112000pt;}
.y91{bottom:174.928000pt;}
.yac{bottom:182.113333pt;}
.y80{bottom:183.366667pt;}
.y21{bottom:185.694667pt;}
.y57{bottom:187.201333pt;}
.yca{bottom:187.712000pt;}
.yea{bottom:189.380000pt;}
.y90{bottom:190.868000pt;}
.yab{bottom:198.054667pt;}
.y7f{bottom:199.306667pt;}
.y56{bottom:203.142667pt;}
.yc9{bottom:203.652000pt;}
.y8f{bottom:206.809333pt;}
.yaa{bottom:213.994667pt;}
.y7e{bottom:215.246667pt;}
.y55{bottom:219.082667pt;}
.yc8{bottom:219.593333pt;}
.ye9{bottom:220.169333pt;}
.ya9{bottom:229.934667pt;}
.y7d{bottom:231.186667pt;}
.y8e{bottom:232.286667pt;}
.y54{bottom:235.022667pt;}
.yc7{bottom:235.533333pt;}
.ya8{bottom:245.874667pt;}
.y20{bottom:246.725333pt;}
.y7c{bottom:247.126667pt;}
.y8d{bottom:248.226667pt;}
.yc6{bottom:251.473333pt;}
.y53{bottom:255.426667pt;}
.y1f{bottom:261.337333pt;}
.ya7{bottom:261.814667pt;}
.y7b{bottom:263.066667pt;}
.y8c{bottom:264.168000pt;}
.ye8{bottom:265.856000pt;}
.yc5{bottom:267.413333pt;}
.y52{bottom:271.366667pt;}
.y1e{bottom:275.949333pt;}
.ya6{bottom:277.754667pt;}
.y7a{bottom:279.634667pt;}
.ye7{bottom:281.796000pt;}
.y51{bottom:287.306667pt;}
.yc4{bottom:288.684000pt;}
.y1d{bottom:290.560000pt;}
.ya5{bottom:293.696000pt;}
.y79{bottom:295.574667pt;}
.ye6{bottom:297.737333pt;}
.y8b{bottom:298.518667pt;}
.y50{bottom:303.246667pt;}
.yc3{bottom:304.624000pt;}
.y1c{bottom:305.172000pt;}
.ya4{bottom:309.636000pt;}
.y78{bottom:311.514667pt;}
.ye5{bottom:314.546667pt;}
.y4f{bottom:319.186667pt;}
.y1b{bottom:319.784000pt;}
.yc2{bottom:320.564000pt;}
.ya3{bottom:325.576000pt;}
.y77{bottom:327.456000pt;}
.ye4{bottom:330.486667pt;}
.y1a{bottom:334.396000pt;}
.yc1{bottom:336.505333pt;}
.y4e{bottom:339.590667pt;}
.ya2{bottom:341.516000pt;}
.y76{bottom:343.396000pt;}
.y10c{bottom:344.797333pt;}
.ye3{bottom:346.426667pt;}
.y19{bottom:349.008000pt;}
.yc0{bottom:352.445333pt;}
.y4d{bottom:355.530667pt;}
.y8a{bottom:357.057333pt;}
.y75{bottom:359.336000pt;}
.y10b{bottom:360.737333pt;}
.ye2{bottom:362.368000pt;}
.y18{bottom:363.620000pt;}
.ya1{bottom:367.398667pt;}
.ybf{bottom:368.385333pt;}
.y4c{bottom:371.470667pt;}
.y89{bottom:371.669333pt;}
.y10a{bottom:376.678667pt;}
.y17{bottom:378.232000pt;}
.ye1{bottom:378.308000pt;}
.y88{bottom:386.281333pt;}
.y4b{bottom:387.410667pt;}
.ybe{bottom:389.656000pt;}
.y74{bottom:389.784000pt;}
.y109{bottom:392.618667pt;}
.y16{bottom:392.844000pt;}
.ye0{bottom:394.248000pt;}
.y87{bottom:400.893333pt;}
.y4a{bottom:403.352000pt;}
.ybd{bottom:405.596000pt;}
.y15{bottom:407.456000pt;}
.y108{bottom:409.886667pt;}
.y86{bottom:415.505333pt;}
.y49{bottom:419.292000pt;}
.ybc{bottom:421.536000pt;}
.y14{bottom:422.068000pt;}
.y107{bottom:425.826667pt;}
.ydf{bottom:425.906667pt;}
.y85{bottom:430.117333pt;}
.ya0{bottom:432.873333pt;}
.y48{bottom:435.232000pt;}
.y13{bottom:436.678667pt;}
.ybb{bottom:437.476000pt;}
.y73{bottom:438.169333pt;}
.y106{bottom:443.096000pt;}
.y84{bottom:444.729333pt;}
.y9f{bottom:447.485333pt;}
.y12{bottom:451.290667pt;}
.yba{bottom:453.417333pt;}
.y72{bottom:454.109333pt;}
.y47{bottom:455.634667pt;}
.y105{bottom:459.036000pt;}
.y9e{bottom:462.097333pt;}
.y11{bottom:465.902667pt;}
.yb9{bottom:469.357333pt;}
.y71{bottom:470.050667pt;}
.y46{bottom:471.576000pt;}
.yde{bottom:471.593333pt;}
.y104{bottom:474.976000pt;}
.y9d{bottom:476.709333pt;}
.y10{bottom:480.514667pt;}
.yb8{bottom:485.297333pt;}
.y70{bottom:485.990667pt;}
.y45{bottom:487.516000pt;}
.ydd{bottom:487.533333pt;}
.y103{bottom:492.245333pt;}
.yf{bottom:495.126667pt;}
.yb7{bottom:501.237333pt;}
.y6f{bottom:501.930667pt;}
.y44{bottom:503.456000pt;}
.ydc{bottom:503.473333pt;}
.y102{bottom:508.185333pt;}
.ye{bottom:509.738667pt;}
.yb6{bottom:517.177333pt;}
.y6e{bottom:517.870667pt;}
.y101{bottom:524.125333pt;}
.yd{bottom:524.350667pt;}
.ydb{bottom:526.466667pt;}
.y43{bottom:527.366667pt;}
.yb5{bottom:533.117333pt;}
.y6d{bottom:533.810667pt;}
.y100{bottom:540.065333pt;}
.yda{bottom:542.406667pt;}
.yb4{bottom:549.058667pt;}
.yc{bottom:555.157333pt;}
.y6c{bottom:556.320000pt;}
.yff{bottom:557.334667pt;}
.yd9{bottom:558.346667pt;}
.y42{bottom:565.304000pt;}
.yb{bottom:569.769333pt;}
.y6b{bottom:572.260000pt;}
.yfe{bottom:573.274667pt;}
.y41{bottom:581.244000pt;}
.yd8{bottom:581.340000pt;}
.ya{bottom:584.381333pt;}
.y6a{bottom:588.200000pt;}
.yfd{bottom:589.214667pt;}
.y40{bottom:597.184000pt;}
.yd7{bottom:597.280000pt;}
.y9{bottom:598.993333pt;}
.yb3{bottom:602.353333pt;}
.y69{bottom:604.140000pt;}
.yfc{bottom:606.482667pt;}
.y3f{bottom:613.125333pt;}
.yd6{bottom:613.220000pt;}
.y8{bottom:613.605333pt;}
.yb2{bottom:616.964000pt;}
.y68{bottom:620.080000pt;}
.yfb{bottom:622.422667pt;}
.y7{bottom:628.217333pt;}
.y3e{bottom:629.065333pt;}
.yb1{bottom:631.576000pt;}
.yd5{bottom:636.213333pt;}
.yfa{bottom:638.364000pt;}
.y67{bottom:642.588000pt;}
.y6{bottom:642.829333pt;}
.y3d{bottom:645.005333pt;}
.yb0{bottom:646.188000pt;}
.yd4{bottom:652.153333pt;}
.yf9{bottom:654.304000pt;}
.y66{bottom:658.529333pt;}
.y5{bottom:659.742667pt;}
.yaf{bottom:660.800000pt;}
.y3c{bottom:660.945333pt;}
.yd3{bottom:668.093333pt;}
.yf8{bottom:671.572000pt;}
.y65{bottom:674.469333pt;}
.y4{bottom:675.682667pt;}
.y3b{bottom:676.885333pt;}
.yd2{bottom:684.034667pt;}
.yf7{bottom:687.512000pt;}
.y64{bottom:690.409333pt;}
.y3{bottom:691.622667pt;}
.y3a{bottom:692.825333pt;}
.y9c{bottom:698.824000pt;}
.yd1{bottom:699.974667pt;}
.yf6{bottom:703.453333pt;}
.y39{bottom:708.766667pt;}
.y63{bottom:713.545333pt;}
.y9b{bottom:714.764000pt;}
.yd0{bottom:715.914667pt;}
.yf5{bottom:720.721333pt;}
.y38{bottom:724.706667pt;}
.y62{bottom:729.485333pt;}
.y9a{bottom:730.704000pt;}
.ycf{bottom:731.854667pt;}
.y2{bottom:734.130667pt;}
.yf4{bottom:737.989333pt;}
.y37{bottom:740.646667pt;}
.y99{bottom:746.644000pt;}
.yf3{bottom:755.258667pt;}
.y1{bottom:755.384000pt;}
.yce{bottom:755.717333pt;}
.y36{bottom:756.586667pt;}
.y61{bottom:759.932000pt;}
.y98{bottom:762.585333pt;}
.yf2{bottom:771.198667pt;}
.ycd{bottom:771.657333pt;}
.y35{bottom:772.526667pt;}
.y97{bottom:778.525333pt;}
.yf1{bottom:787.138667pt;}
.y34{bottom:788.468000pt;}
.y96{bottom:794.465333pt;}
.yf0{bottom:803.078667pt;}
.y33{bottom:804.408000pt;}
.y95{bottom:810.405333pt;}
.y32{bottom:820.348000pt;}
.y94{bottom:826.345333pt;}
.y31{bottom:836.288000pt;}
.y30{bottom:852.228000pt;}
.y28{bottom:892.160000pt;}
.y2b{bottom:903.628400pt;}
.y29{bottom:912.081333pt;}
.y2a{bottom:920.681200pt;}
.h13{height:14.666747pt;}
.ha{height:16.737600pt;}
.h5{height:21.935275pt;}
.hf{height:28.356000pt;}
.h10{height:29.130323pt;}
.h11{height:29.172243pt;}
.h12{height:29.281784pt;}
.h7{height:32.899243pt;}
.h16{height:33.042699pt;}
.h6{height:33.663136pt;}
.h9{height:36.557568pt;}
.h17{height:36.716976pt;}
.h15{height:37.401728pt;}
.hb{height:44.687500pt;}
.h4{height:44.875264pt;}
.h3{height:44.880597pt;}
.h8{height:44.882864pt;}
.hd{height:48.391113pt;}
.he{height:49.125000pt;}
.h2{height:52.364000pt;}
.hc{height:52.834688pt;}
.h14{height:55.442708pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w2{width:6.666667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:27.005600pt;}
.x8{left:46.737000pt;}
.x9{left:48.242013pt;}
.x7{left:54.780280pt;}
.x6{left:66.988813pt;}
.x1{left:75.590667pt;}
.x4{left:77.612000pt;}
.xb{left:87.545333pt;}
.x3{left:89.674667pt;}
.xd{left:91.078667pt;}
.xa{left:95.516000pt;}
.x2{left:132.284000pt;}
.xc{left:317.926676pt;}
}




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