
    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_f31d8fa1d4ec968c6accf06e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a0156ea2fb49a1503fefe05d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_e1831389a17a0605e0319d2d.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4844255d924fcf667e3b83c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.829000;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_e9f59b13fee379470742279f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_5457452b03affd152d9cda80.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_00b0dc03fbbe6a062a83c298.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3f1bfc57cef0280d223c8f24.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.693000;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_36fc466ef277fa90c3543a8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_30cea39f78dc2c48886bbbf8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_8dc8b9a40f20c71b110a0263.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.810000;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_3a1cd1b6d1331a0b9ea350fe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.683000;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_777b399b546be2f5df31f6fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.889000;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);}
.v3{vertical-align:-16.872000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.690000px;}
.ls15{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001140px;}
.lsb{letter-spacing:0.002245px;}
.ls13{letter-spacing:0.004200px;}
.ls16{letter-spacing:1.959527px;}
.ls17{letter-spacing:2.385487px;}
.ls18{letter-spacing:2.385746px;}
.ls19{letter-spacing:2.391487px;}
.ls1{letter-spacing:2.964877px;}
.lsd{letter-spacing:2.983140px;}
.ls14{letter-spacing:2.983492px;}
.ls4{letter-spacing:2.986766px;}
.ls1b{letter-spacing:2.987675px;}
.ls3{letter-spacing:2.988017px;}
.ls5{letter-spacing:2.988780px;}
.lsc{letter-spacing:2.989140px;}
.ls1e{letter-spacing:2.989200px;}
.lsf{letter-spacing:2.989492px;}
.ls1a{letter-spacing:2.989834px;}
.ls6{letter-spacing:2.992766px;}
.ls2{letter-spacing:2.993108px;}
.ls8{letter-spacing:3.541496px;}
.ls12{letter-spacing:9.962338px;}
.ls7{letter-spacing:15.300300px;}
.ls9{letter-spacing:16.602300px;}
.ls11{letter-spacing:16.604338px;}
.ls1d{letter-spacing:19.362600px;}
.ls10{letter-spacing:20.049652px;}
.ls1c{letter-spacing:23.714100px;}
.ls0{letter-spacing:24.068400px;}
.lse{letter-spacing:25.878305px;}
.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;}
}
.ws3e{word-spacing:-14.943900px;}
.ws12{word-spacing:-14.920027px;}
.ws21{word-spacing:-11.955150px;}
.ws58{word-spacing:-9.564150px;}
.ws99{word-spacing:-0.478205px;}
.ws30{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws53{word-spacing:-0.047821px;}
.ws20{word-spacing:-0.002439px;}
.ws4d{word-spacing:0.000000px;}
.ws3a{word-spacing:0.005330px;}
.ws29{word-spacing:0.008060px;}
.ws76{word-spacing:0.008756px;}
.ws6c{word-spacing:0.009056px;}
.ws6d{word-spacing:0.017555px;}
.ws89{word-spacing:0.055980px;}
.wsa{word-spacing:0.215194px;}
.ws2e{word-spacing:0.358654px;}
.ws26{word-spacing:0.418429px;}
.ws9d{word-spacing:1.075961px;}
.ws4{word-spacing:1.237363px;}
.wsa3{word-spacing:1.315063px;}
.ws9a{word-spacing:1.374839px;}
.wsb7{word-spacing:1.434614px;}
.ws38{word-spacing:1.494390px;}
.ws39{word-spacing:1.733492px;}
.ws3b{word-spacing:1.793268px;}
.ws83{word-spacing:2.092146px;}
.wsc2{word-spacing:2.271473px;}
.ws48{word-spacing:2.331248px;}
.ws46{word-spacing:2.348683px;}
.wsa2{word-spacing:2.450800px;}
.ws82{word-spacing:2.510575px;}
.wsa5{word-spacing:2.570351px;}
.ws74{word-spacing:2.630126px;}
.ws4b{word-spacing:2.929004px;}
.ws94{word-spacing:3.347434px;}
.ws7c{word-spacing:3.407209px;}
.ws61{word-spacing:3.526760px;}
.wsc4{word-spacing:3.586536px;}
.ws5c{word-spacing:3.777827px;}
.wsb{word-spacing:3.873485px;}
.ws72{word-spacing:3.885414px;}
.ws9c{word-spacing:3.945190px;}
.ws2b{word-spacing:4.064741px;}
.ws2d{word-spacing:4.244068px;}
.ws4c{word-spacing:4.303843px;}
.wsa7{word-spacing:4.363619px;}
.ws32{word-spacing:4.420309px;}
.ws33{word-spacing:4.423394px;}
.wsb1{word-spacing:4.483170px;}
.ws5{word-spacing:4.519066px;}
.ws6b{word-spacing:4.542946px;}
.ws95{word-spacing:4.722272px;}
.ws56{word-spacing:4.756478px;}
.ws55{word-spacing:4.759786px;}
.ws57{word-spacing:4.760278px;}
.wsa8{word-spacing:4.782048px;}
.ws51{word-spacing:4.782060px;}
.wsc7{word-spacing:4.841824px;}
.wsb4{word-spacing:5.021150px;}
.ws4e{word-spacing:5.021163px;}
.wsf{word-spacing:5.164646px;}
.ws8c{word-spacing:5.200477px;}
.ws9b{word-spacing:5.320028px;}
.wsb5{word-spacing:5.618906px;}
.ws2c{word-spacing:5.738458px;}
.ws93{word-spacing:5.798233px;}
.ws6e{word-spacing:5.917119px;}
.ws77{word-spacing:5.923400px;}
.ws98{word-spacing:5.928608px;}
.ws1f{word-spacing:5.929754px;}
.ws97{word-spacing:5.936366px;}
.ws40{word-spacing:5.941490px;}
.ws3f{word-spacing:5.941601px;}
.ws34{word-spacing:5.948200px;}
.ws1e{word-spacing:5.970969px;}
.ws2{word-spacing:5.977560px;}
.wscb{word-spacing:6.156887px;}
.wsd{word-spacing:6.186816px;}
.ws87{word-spacing:6.216662px;}
.ws5e{word-spacing:6.216678px;}
.wsaf{word-spacing:6.276438px;}
.ws85{word-spacing:6.455765px;}
.ws7e{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.ws92{word-spacing:6.635092px;}
.ws66{word-spacing:6.694867px;}
.ws10{word-spacing:6.724800px;}
.wsa1{word-spacing:6.874194px;}
.ws1b{word-spacing:6.993745px;}
.ws9e{word-spacing:7.173072px;}
.wsbc{word-spacing:7.232848px;}
.wsa6{word-spacing:7.292623px;}
.ws6{word-spacing:7.316582px;}
.wsb3{word-spacing:7.352399px;}
.wscd{word-spacing:7.364372px;}
.ws6f{word-spacing:7.412174px;}
.ws49{word-spacing:7.531726px;}
.wsc{word-spacing:7.585574px;}
.ws75{word-spacing:7.830604px;}
.wsaa{word-spacing:7.890379px;}
.ws43{word-spacing:7.950155px;}
.ws2a{word-spacing:8.069706px;}
.wsc1{word-spacing:8.129482px;}
.wsa9{word-spacing:8.368584px;}
.wsc8{word-spacing:8.488135px;}
.ws88{word-spacing:8.547911px;}
.ws15{word-spacing:8.607686px;}
.wsb2{word-spacing:8.751320px;}
.wsc6{word-spacing:8.966340px;}
.ws73{word-spacing:9.026116px;}
.wsc3{word-spacing:9.205442px;}
.wsa4{word-spacing:9.384769px;}
.wsbf{word-spacing:9.623872px;}
.ws70{word-spacing:9.683647px;}
.ws31{word-spacing:9.922750px;}
.ws62{word-spacing:9.924334px;}
.ws64{word-spacing:9.926683px;}
.ws5f{word-spacing:10.042301px;}
.wsb0{word-spacing:10.102076px;}
.ws9{word-spacing:10.221696px;}
.ws9f{word-spacing:10.281403px;}
.ws7d{word-spacing:10.400954px;}
.ws8b{word-spacing:10.460730px;}
.ws16{word-spacing:10.520506px;}
.ws8{word-spacing:10.598285px;}
.ws1d{word-spacing:10.759608px;}
.ws7a{word-spacing:10.819384px;}
.wsb6{word-spacing:10.998710px;}
.ws35{word-spacing:11.058486px;}
.ws54{word-spacing:11.094379px;}
.ws41{word-spacing:11.118262px;}
.wsae{word-spacing:11.237813px;}
.wse{word-spacing:11.512858px;}
.ws1c{word-spacing:11.596466px;}
.ws27{word-spacing:11.835569px;}
.ws28{word-spacing:11.955120px;}
.ws8d{word-spacing:12.194222px;}
.ws52{word-spacing:12.194253px;}
.wsba{word-spacing:12.313774px;}
.wsa0{word-spacing:12.433325px;}
.ws67{word-spacing:12.484631px;}
.ws14{word-spacing:12.493100px;}
.ws90{word-spacing:12.552876px;}
.ws84{word-spacing:12.732203px;}
.ws17{word-spacing:12.851754px;}
.ws86{word-spacing:12.911530px;}
.ws60{word-spacing:13.031081px;}
.ws18{word-spacing:13.090856px;}
.ws7f{word-spacing:13.150632px;}
.ws1a{word-spacing:13.270183px;}
.wsb8{word-spacing:13.389734px;}
.ws4a{word-spacing:13.808164px;}
.ws0{word-spacing:14.346180px;}
.ws19{word-spacing:14.465695px;}
.wsab{word-spacing:14.525471px;}
.ws37{word-spacing:14.645022px;}
.wsbb{word-spacing:14.704798px;}
.wsb9{word-spacing:14.764573px;}
.ws69{word-spacing:14.884124px;}
.wscc{word-spacing:15.302554px;}
.ws42{word-spacing:15.481880px;}
.ws5d{word-spacing:15.686219px;}
.ws3d{word-spacing:15.840534px;}
.ws65{word-spacing:16.258963px;}
.wsc0{word-spacing:16.438290px;}
.ws2f{word-spacing:16.557841px;}
.ws13{word-spacing:16.677392px;}
.ws81{word-spacing:16.796944px;}
.ws4f{word-spacing:16.917659px;}
.ws3c{word-spacing:16.976270px;}
.wsac{word-spacing:17.155597px;}
.wsc9{word-spacing:17.215373px;}
.ws45{word-spacing:17.232704px;}
.ws47{word-spacing:17.237264px;}
.ws8f{word-spacing:17.334924px;}
.ws50{word-spacing:17.502340px;}
.ws78{word-spacing:17.693578px;}
.ws8e{word-spacing:17.813129px;}
.ws11{word-spacing:17.932680px;}
.wsc5{word-spacing:18.231558px;}
.ws71{word-spacing:18.351109px;}
.ws96{word-spacing:18.829314px;}
.ws80{word-spacing:19.008641px;}
.wsbe{word-spacing:19.115264px;}
.ws91{word-spacing:19.427070px;}
.wsbd{word-spacing:19.546621px;}
.wsca{word-spacing:20.204153px;}
.wsad{word-spacing:20.742133px;}
.ws24{word-spacing:20.862704px;}
.ws25{word-spacing:20.867264px;}
.ws23{word-spacing:20.919025px;}
.ws7{word-spacing:21.465562px;}
.ws36{word-spacing:21.578992px;}
.ws22{word-spacing:22.116972px;}
.ws8a{word-spacing:22.176748px;}
.ws6a{word-spacing:22.296299px;}
.ws79{word-spacing:23.133157px;}
.ws63{word-spacing:24.804704px;}
.ws7b{word-spacing:25.763284px;}
.ws68{word-spacing:27.371264px;}
.ws44{word-spacing:33.952541px;}
.ws5a{word-spacing:114.625978px;}
.ws5b{word-spacing:119.168935px;}
.ws59{word-spacing:177.701350px;}
._4{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._3{margin-left:-2.313331px;}
._1{margin-left:-1.075968px;}
._7{width:1.646016px;}
._5{width:2.988780px;}
._2{width:20.013005px;}
._b{width:22.039333px;}
._6{width:27.197898px;}
._14{width:31.465955px;}
._9{width:33.904805px;}
._8{width:35.865360px;}
._a{width:48.298806px;}
._e{width:71.013591px;}
._d{width:72.328678px;}
._c{width:158.381827px;}
._13{width:178.418659px;}
._12{width:188.700088px;}
._f{width:194.677663px;}
._10{width:202.950626px;}
._11{width:254.070848px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y30{bottom:113.332500px;}
.y61{bottom:129.825000px;}
.yec{bottom:131.001000px;}
.y2f{bottom:131.265000px;}
.y7e{bottom:131.266500px;}
.y60{bottom:143.275500px;}
.y55{bottom:149.197500px;}
.y2e{bottom:149.199000px;}
.y5f{bottom:156.724500px;}
.ydd{bottom:167.130000px;}
.y2d{bottom:167.131500px;}
.y5e{bottom:170.772000px;}
.y2c{bottom:185.064000px;}
.y7d{bottom:194.424000px;}
.y5d{bottom:198.597000px;}
.y54{bottom:202.996500px;}
.yaf{bottom:203.176500px;}
.y2b{bottom:210.703500px;}
.y5c{bottom:212.047500px;}
.y7c{bottom:212.356500px;}
.y53{bottom:220.929000px;}
.yae{bottom:221.109000px;}
.y52{bottom:238.861500px;}
.ydc{bottom:239.022000px;}
.yad{bottom:239.041500px;}
.y2a{bottom:242.973000px;}
.y7b{bottom:246.967500px;}
.y51{bottom:256.795500px;}
.ydb{bottom:256.954500px;}
.yac{bottom:256.974000px;}
.y29{bottom:260.905500px;}
.y7a{bottom:264.900000px;}
.y5b{bottom:269.737500px;}
.yda{bottom:274.888500px;}
.yab{bottom:274.906500px;}
.y50{bottom:275.062500px;}
.y28{bottom:278.838000px;}
.y79{bottom:282.832500px;}
.y5a{bottom:283.186500px;}
.yd9{bottom:292.821000px;}
.yaa{bottom:292.839000px;}
.y4f{bottom:292.996500px;}
.y59{bottom:296.637000px;}
.y27{bottom:296.772000px;}
.y78{bottom:301.540500px;}
.yd8{bottom:310.753500px;}
.ya9{bottom:310.773000px;}
.y4e{bottom:310.929000px;}
.y26{bottom:318.748500px;}
.y77{bottom:319.473000px;}
.yd7{bottom:328.686000px;}
.y4d{bottom:328.861500px;}
.ya8{bottom:334.488000px;}
.y25{bottom:336.681000px;}
.y76{bottom:337.405500px;}
.yd6{bottom:346.618500px;}
.y4c{bottom:353.515500px;}
.y24{bottom:354.613500px;}
.y75{bottom:355.339500px;}
.ya7{bottom:364.032000px;}
.yd5{bottom:364.552500px;}
.y74{bottom:373.272000px;}
.y23{bottom:376.591500px;}
.ya6{bottom:381.966000px;}
.yd4{bottom:382.485000px;}
.y4b{bottom:384.388500px;}
.y73{bottom:391.204500px;}
.y22{bottom:394.524000px;}
.ya5{bottom:399.898500px;}
.yd3{bottom:400.417500px;}
.y4a{bottom:402.321000px;}
.ya4{bottom:417.831000px;}
.yd2{bottom:418.350000px;}
.y72{bottom:418.497000px;}
.y21{bottom:420.163500px;}
.y49{bottom:420.255000px;}
.ya3{bottom:435.763500px;}
.yd1{bottom:436.444500px;}
.y48{bottom:441.885000px;}
.y20{bottom:452.433000px;}
.y71{bottom:453.108000px;}
.ya2{bottom:453.876000px;}
.yd0{bottom:454.377000px;}
.y47{bottom:459.817500px;}
.y1f{bottom:470.365500px;}
.y70{bottom:471.040500px;}
.ya1{bottom:471.808500px;}
.ycf{bottom:472.309500px;}
.y46{bottom:477.750000px;}
.y1e{bottom:488.298000px;}
.y6f{bottom:488.973000px;}
.ya0{bottom:489.741000px;}
.yce{bottom:490.242000px;}
.y45{bottom:495.682500px;}
.y1d{bottom:506.232000px;}
.y6e{bottom:506.905500px;}
.y9f{bottom:507.673500px;}
.ycd{bottom:508.174500px;}
.y44{bottom:517.312500px;}
.y1c{bottom:524.164500px;}
.y6d{bottom:524.838000px;}
.y9e{bottom:525.607500px;}
.ycc{bottom:526.107000px;}
.y43{bottom:535.246500px;}
.y1b{bottom:542.097000px;}
.y6c{bottom:542.770500px;}
.y9d{bottom:543.718500px;}
.ycb{bottom:544.041000px;}
.y42{bottom:559.900500px;}
.y1a{bottom:560.529000px;}
.y6b{bottom:560.704500px;}
.y9c{bottom:561.651000px;}
.yca{bottom:561.973500px;}
.y19{bottom:578.463000px;}
.y6a{bottom:579.412500px;}
.y9b{bottom:579.585000px;}
.yc9{bottom:579.906000px;}
.y41{bottom:590.773500px;}
.y18{bottom:596.395500px;}
.y69{bottom:597.345000px;}
.y9a{bottom:597.517500px;}
.yc8{bottom:603.511500px;}
.y40{bottom:608.706000px;}
.y17{bottom:614.328000px;}
.y68{bottom:615.277500px;}
.y99{bottom:615.450000px;}
.y3f{bottom:626.638500px;}
.y16{bottom:632.260500px;}
.yc7{bottom:632.899500px;}
.y67{bottom:633.210000px;}
.y98{bottom:633.562500px;}
.y3e{bottom:644.571000px;}
.y15{bottom:650.193000px;}
.yc6{bottom:650.832000px;}
.y66{bottom:651.142500px;}
.y97{bottom:651.495000px;}
.y14{bottom:668.125500px;}
.yc5{bottom:668.764500px;}
.y65{bottom:669.076500px;}
.y96{bottom:669.427500px;}
.y3d{bottom:674.419500px;}
.yc4{bottom:686.697000px;}
.y95{bottom:687.360000px;}
.y13{bottom:693.766500px;}
.y3c{bottom:703.930500px;}
.yc3{bottom:704.631000px;}
.y94{bottom:705.292500px;}
.y58{bottom:707.601000px;}
.y64{bottom:719.460000px;}
.y57{bottom:721.051500px;}
.y3b{bottom:721.864500px;}
.yc2{bottom:722.563500px;}
.y12{bottom:726.036000px;}
.yeb{bottom:726.184500px;}
.y93{bottom:729.009000px;}
.y63{bottom:732.910500px;}
.y56{bottom:734.500500px;}
.y3a{bottom:739.797000px;}
.yc1{bottom:740.656500px;}
.y11{bottom:740.979000px;}
.yea{bottom:744.117000px;}
.y62{bottom:746.359500px;}
.y92{bottom:746.941500px;}
.y10{bottom:755.923500px;}
.y39{bottom:757.729500px;}
.yc0{bottom:758.589000px;}
.ye9{bottom:766.758000px;}
.yf{bottom:770.868000px;}
.y91{bottom:776.485500px;}
.ybf{bottom:776.523000px;}
.y38{bottom:782.383500px;}
.ye{bottom:785.811000px;}
.y90{bottom:794.419500px;}
.ybe{bottom:794.455500px;}
.ye8{bottom:794.778000px;}
.yd{bottom:800.755500px;}
.y8f{bottom:812.352000px;}
.ybd{bottom:812.388000px;}
.ye7{bottom:812.710500px;}
.y37{bottom:813.256500px;}
.yc{bottom:815.698500px;}
.y8e{bottom:830.284500px;}
.ybc{bottom:830.320500px;}
.yb{bottom:830.643000px;}
.y36{bottom:831.189000px;}
.ya{bottom:845.587500px;}
.y8d{bottom:848.217000px;}
.ybb{bottom:848.253000px;}
.ye6{bottom:848.575500px;}
.y35{bottom:854.475000px;}
.y9{bottom:860.530500px;}
.y8c{bottom:866.149500px;}
.yba{bottom:866.185500px;}
.ye5{bottom:866.508000px;}
.y32{bottom:872.106000px;}
.y8{bottom:875.475000px;}
.y8b{bottom:884.082000px;}
.yb9{bottom:884.280000px;}
.ye4{bottom:884.442000px;}
.y34{bottom:886.303500px;}
.y7{bottom:890.419500px;}
.y33{bottom:890.787000px;}
.y8a{bottom:902.016000px;}
.yb8{bottom:902.212500px;}
.y31{bottom:902.374500px;}
.y6{bottom:905.362500px;}
.y89{bottom:920.127000px;}
.yb7{bottom:920.145000px;}
.y5{bottom:920.307000px;}
.y88{bottom:938.061000px;}
.yb6{bottom:938.077500px;}
.ye3{bottom:938.239500px;}
.y87{bottom:955.993500px;}
.yb5{bottom:956.011500px;}
.ye2{bottom:956.172000px;}
.y4{bottom:973.521000px;}
.y86{bottom:973.926000px;}
.yb4{bottom:973.944000px;}
.ye1{bottom:974.104500px;}
.y85{bottom:991.858500px;}
.yb3{bottom:991.876500px;}
.ye0{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y84{bottom:1009.791000px;}
.yb2{bottom:1009.809000px;}
.ydf{bottom:1009.971000px;}
.y83{bottom:1027.723500px;}
.yb1{bottom:1027.741500px;}
.yde{bottom:1027.903500px;}
.y2{bottom:1039.309500px;}
.y82{bottom:1045.836000px;}
.y81{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y80{bottom:1081.701000px;}
.yb0{bottom:1099.633500px;}
.y7f{bottom:1099.635000px;}
.h9{height:0.000000px;}
.hc{height:24.675533px;}
.h8{height:28.578632px;}
.ha{height:32.900573px;}
.h5{height:37.174694px;}
.h4{height:37.605082px;}
.h3{height:41.125613px;}
.h6{height:42.799330px;}
.h7{height:44.831700px;}
.h2{height:45.238339px;}
.hb{height:50.477846px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:73.446000px;}
.x16{left:82.849500px;}
.x1c{left:83.961000px;}
.x1f{left:85.401000px;}
.x5{left:88.390500px;}
.x1a{left:94.324500px;}
.x8{left:102.387000px;}
.x1{left:108.544500px;}
.x15{left:138.042000px;}
.x1e{left:175.410000px;}
.x9{left:183.232500px;}
.x7{left:203.430000px;}
.x2{left:226.989000px;}
.x1b{left:231.792000px;}
.x14{left:238.953000px;}
.x4{left:367.603500px;}
.x3{left:423.148500px;}
.xb{left:467.967000px;}
.x17{left:469.546500px;}
.xa{left:482.910000px;}
.x18{left:497.266500px;}
.x13{left:522.349500px;}
.x10{left:555.174000px;}
.xc{left:574.656000px;}
.x12{left:581.124000px;}
.x1d{left:598.816500px;}
.x11{left:607.236000px;}
.x19{left:609.987000px;}
.xe{left:633.961500px;}
.xd{left:638.215500px;}
.xf{left:653.188500px;}
@media print{
.v3{vertical-align:-14.997333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.280000pt;}
.ls15{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001014pt;}
.lsb{letter-spacing:0.001995pt;}
.ls13{letter-spacing:0.003733pt;}
.ls16{letter-spacing:1.741802pt;}
.ls17{letter-spacing:2.120433pt;}
.ls18{letter-spacing:2.120663pt;}
.ls19{letter-spacing:2.125766pt;}
.ls1{letter-spacing:2.635446pt;}
.lsd{letter-spacing:2.651680pt;}
.ls14{letter-spacing:2.651993pt;}
.ls4{letter-spacing:2.654903pt;}
.ls1b{letter-spacing:2.655711pt;}
.ls3{letter-spacing:2.656015pt;}
.ls5{letter-spacing:2.656693pt;}
.lsc{letter-spacing:2.657014pt;}
.ls1e{letter-spacing:2.657067pt;}
.lsf{letter-spacing:2.657326pt;}
.ls1a{letter-spacing:2.657630pt;}
.ls6{letter-spacing:2.660237pt;}
.ls2{letter-spacing:2.660541pt;}
.ls8{letter-spacing:3.147996pt;}
.ls12{letter-spacing:8.855412pt;}
.ls7{letter-spacing:13.600267pt;}
.ls9{letter-spacing:14.757600pt;}
.ls11{letter-spacing:14.759412pt;}
.ls1d{letter-spacing:17.211200pt;}
.ls10{letter-spacing:17.821913pt;}
.ls1c{letter-spacing:21.079200pt;}
.ls0{letter-spacing:21.394133pt;}
.lse{letter-spacing:23.002938pt;}
.ws3e{word-spacing:-13.283467pt;}
.ws12{word-spacing:-13.262246pt;}
.ws21{word-spacing:-10.626800pt;}
.ws58{word-spacing:-8.501467pt;}
.ws99{word-spacing:-0.425071pt;}
.ws30{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws53{word-spacing:-0.042507pt;}
.ws20{word-spacing:-0.002168pt;}
.ws4d{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.004738pt;}
.ws29{word-spacing:0.007165pt;}
.ws76{word-spacing:0.007783pt;}
.ws6c{word-spacing:0.008050pt;}
.ws6d{word-spacing:0.015604pt;}
.ws89{word-spacing:0.049760pt;}
.wsa{word-spacing:0.191283pt;}
.ws2e{word-spacing:0.318803pt;}
.ws26{word-spacing:0.371937pt;}
.ws9d{word-spacing:0.956410pt;}
.ws4{word-spacing:1.099878pt;}
.wsa3{word-spacing:1.168945pt;}
.ws9a{word-spacing:1.222079pt;}
.wsb7{word-spacing:1.275213pt;}
.ws38{word-spacing:1.328347pt;}
.ws39{word-spacing:1.540882pt;}
.ws3b{word-spacing:1.594016pt;}
.ws83{word-spacing:1.859685pt;}
.wsc2{word-spacing:2.019087pt;}
.ws48{word-spacing:2.072221pt;}
.ws46{word-spacing:2.087718pt;}
.wsa2{word-spacing:2.178489pt;}
.ws82{word-spacing:2.231622pt;}
.wsa5{word-spacing:2.284756pt;}
.ws74{word-spacing:2.337890pt;}
.ws4b{word-spacing:2.603559pt;}
.ws94{word-spacing:2.975497pt;}
.ws7c{word-spacing:3.028630pt;}
.ws61{word-spacing:3.134898pt;}
.wsc4{word-spacing:3.188032pt;}
.ws5c{word-spacing:3.358069pt;}
.wsb{word-spacing:3.443098pt;}
.ws72{word-spacing:3.453701pt;}
.ws9c{word-spacing:3.506835pt;}
.ws2b{word-spacing:3.613103pt;}
.ws2d{word-spacing:3.772505pt;}
.ws4c{word-spacing:3.825638pt;}
.wsa7{word-spacing:3.878772pt;}
.ws32{word-spacing:3.929164pt;}
.ws33{word-spacing:3.931906pt;}
.wsb1{word-spacing:3.985040pt;}
.ws5{word-spacing:4.016947pt;}
.ws6b{word-spacing:4.038174pt;}
.ws95{word-spacing:4.197575pt;}
.ws56{word-spacing:4.227980pt;}
.ws55{word-spacing:4.230921pt;}
.ws57{word-spacing:4.231358pt;}
.wsa8{word-spacing:4.250709pt;}
.ws51{word-spacing:4.250720pt;}
.wsc7{word-spacing:4.303843pt;}
.wsb4{word-spacing:4.463245pt;}
.ws4e{word-spacing:4.463256pt;}
.wsf{word-spacing:4.590797pt;}
.ws8c{word-spacing:4.622646pt;}
.ws9b{word-spacing:4.728914pt;}
.wsb5{word-spacing:4.994583pt;}
.ws2c{word-spacing:5.100851pt;}
.ws93{word-spacing:5.153985pt;}
.ws6e{word-spacing:5.259661pt;}
.ws77{word-spacing:5.265245pt;}
.ws98{word-spacing:5.269874pt;}
.ws1f{word-spacing:5.270893pt;}
.ws97{word-spacing:5.276770pt;}
.ws40{word-spacing:5.281324pt;}
.ws3f{word-spacing:5.281423pt;}
.ws34{word-spacing:5.287289pt;}
.ws1e{word-spacing:5.307528pt;}
.ws2{word-spacing:5.313387pt;}
.wscb{word-spacing:5.472788pt;}
.wsd{word-spacing:5.499392pt;}
.ws87{word-spacing:5.525922pt;}
.ws5e{word-spacing:5.525936pt;}
.wsaf{word-spacing:5.579056pt;}
.ws85{word-spacing:5.738458pt;}
.ws7e{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.ws92{word-spacing:5.897859pt;}
.ws66{word-spacing:5.950993pt;}
.ws10{word-spacing:5.977600pt;}
.wsa1{word-spacing:6.110395pt;}
.ws1b{word-spacing:6.216662pt;}
.ws9e{word-spacing:6.376064pt;}
.wsbc{word-spacing:6.429198pt;}
.wsa6{word-spacing:6.482332pt;}
.ws6{word-spacing:6.503629pt;}
.wsb3{word-spacing:6.535466pt;}
.wscd{word-spacing:6.546109pt;}
.ws6f{word-spacing:6.588599pt;}
.ws49{word-spacing:6.694867pt;}
.wsc{word-spacing:6.742733pt;}
.ws75{word-spacing:6.960537pt;}
.wsaa{word-spacing:7.013670pt;}
.ws43{word-spacing:7.066804pt;}
.ws2a{word-spacing:7.173072pt;}
.wsc1{word-spacing:7.226206pt;}
.wsa9{word-spacing:7.438741pt;}
.wsc8{word-spacing:7.545009pt;}
.ws88{word-spacing:7.598143pt;}
.ws15{word-spacing:7.651277pt;}
.wsb2{word-spacing:7.778951pt;}
.wsc6{word-spacing:7.970080pt;}
.ws73{word-spacing:8.023214pt;}
.wsc3{word-spacing:8.182615pt;}
.wsa4{word-spacing:8.342017pt;}
.wsbf{word-spacing:8.554553pt;}
.ws70{word-spacing:8.607686pt;}
.ws31{word-spacing:8.820222pt;}
.ws62{word-spacing:8.821630pt;}
.ws64{word-spacing:8.823718pt;}
.ws5f{word-spacing:8.926490pt;}
.wsb0{word-spacing:8.979623pt;}
.ws9{word-spacing:9.085952pt;}
.ws9f{word-spacing:9.139025pt;}
.ws7d{word-spacing:9.245293pt;}
.ws8b{word-spacing:9.298427pt;}
.ws16{word-spacing:9.351561pt;}
.ws8{word-spacing:9.420698pt;}
.ws1d{word-spacing:9.564096pt;}
.ws7a{word-spacing:9.617230pt;}
.wsb6{word-spacing:9.776631pt;}
.ws35{word-spacing:9.829765pt;}
.ws54{word-spacing:9.861670pt;}
.ws41{word-spacing:9.882899pt;}
.wsae{word-spacing:9.989167pt;}
.wse{word-spacing:10.233651pt;}
.ws1c{word-spacing:10.307970pt;}
.ws27{word-spacing:10.520506pt;}
.ws28{word-spacing:10.626773pt;}
.ws8d{word-spacing:10.839309pt;}
.ws52{word-spacing:10.839336pt;}
.wsba{word-spacing:10.945577pt;}
.wsa0{word-spacing:11.051844pt;}
.ws67{word-spacing:11.097450pt;}
.ws14{word-spacing:11.104978pt;}
.ws90{word-spacing:11.158112pt;}
.ws84{word-spacing:11.317514pt;}
.ws17{word-spacing:11.423781pt;}
.ws86{word-spacing:11.476915pt;}
.ws60{word-spacing:11.583183pt;}
.ws18{word-spacing:11.636317pt;}
.ws7f{word-spacing:11.689451pt;}
.ws1a{word-spacing:11.795718pt;}
.wsb8{word-spacing:11.901986pt;}
.ws4a{word-spacing:12.273923pt;}
.ws0{word-spacing:12.752160pt;}
.ws19{word-spacing:12.858396pt;}
.wsab{word-spacing:12.911530pt;}
.ws37{word-spacing:13.017797pt;}
.wsbb{word-spacing:13.070931pt;}
.wsb9{word-spacing:13.124065pt;}
.ws69{word-spacing:13.230333pt;}
.wscc{word-spacing:13.602270pt;}
.ws42{word-spacing:13.761671pt;}
.ws5d{word-spacing:13.943306pt;}
.ws3d{word-spacing:14.080475pt;}
.ws65{word-spacing:14.452412pt;}
.wsc0{word-spacing:14.611813pt;}
.ws2f{word-spacing:14.718081pt;}
.ws13{word-spacing:14.824349pt;}
.ws81{word-spacing:14.930617pt;}
.ws4f{word-spacing:15.037919pt;}
.ws3c{word-spacing:15.090018pt;}
.wsac{word-spacing:15.249420pt;}
.wsc9{word-spacing:15.302554pt;}
.ws45{word-spacing:15.317959pt;}
.ws47{word-spacing:15.322013pt;}
.ws8f{word-spacing:15.408821pt;}
.ws50{word-spacing:15.557635pt;}
.ws78{word-spacing:15.727625pt;}
.ws8e{word-spacing:15.833892pt;}
.ws11{word-spacing:15.940160pt;}
.wsc5{word-spacing:16.205829pt;}
.ws71{word-spacing:16.312097pt;}
.ws96{word-spacing:16.737168pt;}
.ws80{word-spacing:16.896570pt;}
.wsbe{word-spacing:16.991346pt;}
.ws91{word-spacing:17.268507pt;}
.wsbd{word-spacing:17.374774pt;}
.wsca{word-spacing:17.959247pt;}
.wsad{word-spacing:18.437452pt;}
.ws24{word-spacing:18.544626pt;}
.ws25{word-spacing:18.548679pt;}
.ws23{word-spacing:18.594689pt;}
.ws7{word-spacing:19.080499pt;}
.ws36{word-spacing:19.181326pt;}
.ws22{word-spacing:19.659531pt;}
.ws8a{word-spacing:19.712665pt;}
.ws6a{word-spacing:19.818932pt;}
.ws79{word-spacing:20.562806pt;}
.ws63{word-spacing:22.048626pt;}
.ws7b{word-spacing:22.900697pt;}
.ws68{word-spacing:24.330013pt;}
.ws44{word-spacing:30.180036pt;}
.ws5a{word-spacing:101.889758pt;}
.ws5b{word-spacing:105.927942pt;}
.ws59{word-spacing:157.956755pt;}
._4{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._3{margin-left:-2.056294pt;}
._1{margin-left:-0.956416pt;}
._7{width:1.463125pt;}
._5{width:2.656693pt;}
._2{width:17.789338pt;}
._b{width:19.590518pt;}
._6{width:24.175909pt;}
._14{width:27.969738pt;}
._9{width:30.137605pt;}
._8{width:31.880320pt;}
._a{width:42.932272pt;}
._e{width:63.123192pt;}
._d{width:64.292158pt;}
._c{width:140.783846pt;}
._13{width:158.594363pt;}
._12{width:167.733411pt;}
._f{width:173.046811pt;}
._10{width:180.400557pt;}
._11{width:225.840754pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:100.740000pt;}
.y61{bottom:115.400000pt;}
.yec{bottom:116.445333pt;}
.y2f{bottom:116.680000pt;}
.y7e{bottom:116.681333pt;}
.y60{bottom:127.356000pt;}
.y55{bottom:132.620000pt;}
.y2e{bottom:132.621333pt;}
.y5f{bottom:139.310667pt;}
.ydd{bottom:148.560000pt;}
.y2d{bottom:148.561333pt;}
.y5e{bottom:151.797333pt;}
.y2c{bottom:164.501333pt;}
.y7d{bottom:172.821333pt;}
.y5d{bottom:176.530667pt;}
.y54{bottom:180.441333pt;}
.yaf{bottom:180.601333pt;}
.y2b{bottom:187.292000pt;}
.y5c{bottom:188.486667pt;}
.y7c{bottom:188.761333pt;}
.y53{bottom:196.381333pt;}
.yae{bottom:196.541333pt;}
.y52{bottom:212.321333pt;}
.ydc{bottom:212.464000pt;}
.yad{bottom:212.481333pt;}
.y2a{bottom:215.976000pt;}
.y7b{bottom:219.526667pt;}
.y51{bottom:228.262667pt;}
.ydb{bottom:228.404000pt;}
.yac{bottom:228.421333pt;}
.y29{bottom:231.916000pt;}
.y7a{bottom:235.466667pt;}
.y5b{bottom:239.766667pt;}
.yda{bottom:244.345333pt;}
.yab{bottom:244.361333pt;}
.y50{bottom:244.500000pt;}
.y28{bottom:247.856000pt;}
.y79{bottom:251.406667pt;}
.y5a{bottom:251.721333pt;}
.yd9{bottom:260.285333pt;}
.yaa{bottom:260.301333pt;}
.y4f{bottom:260.441333pt;}
.y59{bottom:263.677333pt;}
.y27{bottom:263.797333pt;}
.y78{bottom:268.036000pt;}
.yd8{bottom:276.225333pt;}
.ya9{bottom:276.242667pt;}
.y4e{bottom:276.381333pt;}
.y26{bottom:283.332000pt;}
.y77{bottom:283.976000pt;}
.yd7{bottom:292.165333pt;}
.y4d{bottom:292.321333pt;}
.ya8{bottom:297.322667pt;}
.y25{bottom:299.272000pt;}
.y76{bottom:299.916000pt;}
.yd6{bottom:308.105333pt;}
.y4c{bottom:314.236000pt;}
.y24{bottom:315.212000pt;}
.y75{bottom:315.857333pt;}
.ya7{bottom:323.584000pt;}
.yd5{bottom:324.046667pt;}
.y74{bottom:331.797333pt;}
.y23{bottom:334.748000pt;}
.ya6{bottom:339.525333pt;}
.yd4{bottom:339.986667pt;}
.y4b{bottom:341.678667pt;}
.y73{bottom:347.737333pt;}
.y22{bottom:350.688000pt;}
.ya5{bottom:355.465333pt;}
.yd3{bottom:355.926667pt;}
.y4a{bottom:357.618667pt;}
.ya4{bottom:371.405333pt;}
.yd2{bottom:371.866667pt;}
.y72{bottom:371.997333pt;}
.y21{bottom:373.478667pt;}
.y49{bottom:373.560000pt;}
.ya3{bottom:387.345333pt;}
.yd1{bottom:387.950667pt;}
.y48{bottom:392.786667pt;}
.y20{bottom:402.162667pt;}
.y71{bottom:402.762667pt;}
.ya2{bottom:403.445333pt;}
.yd0{bottom:403.890667pt;}
.y47{bottom:408.726667pt;}
.y1f{bottom:418.102667pt;}
.y70{bottom:418.702667pt;}
.ya1{bottom:419.385333pt;}
.ycf{bottom:419.830667pt;}
.y46{bottom:424.666667pt;}
.y1e{bottom:434.042667pt;}
.y6f{bottom:434.642667pt;}
.ya0{bottom:435.325333pt;}
.yce{bottom:435.770667pt;}
.y45{bottom:440.606667pt;}
.y1d{bottom:449.984000pt;}
.y6e{bottom:450.582667pt;}
.y9f{bottom:451.265333pt;}
.ycd{bottom:451.710667pt;}
.y44{bottom:459.833333pt;}
.y1c{bottom:465.924000pt;}
.y6d{bottom:466.522667pt;}
.y9e{bottom:467.206667pt;}
.ycc{bottom:467.650667pt;}
.y43{bottom:475.774667pt;}
.y1b{bottom:481.864000pt;}
.y6c{bottom:482.462667pt;}
.y9d{bottom:483.305333pt;}
.ycb{bottom:483.592000pt;}
.y42{bottom:497.689333pt;}
.y1a{bottom:498.248000pt;}
.y6b{bottom:498.404000pt;}
.y9c{bottom:499.245333pt;}
.yca{bottom:499.532000pt;}
.y19{bottom:514.189333pt;}
.y6a{bottom:515.033333pt;}
.y9b{bottom:515.186667pt;}
.yc9{bottom:515.472000pt;}
.y41{bottom:525.132000pt;}
.y18{bottom:530.129333pt;}
.y69{bottom:530.973333pt;}
.y9a{bottom:531.126667pt;}
.yc8{bottom:536.454667pt;}
.y40{bottom:541.072000pt;}
.y17{bottom:546.069333pt;}
.y68{bottom:546.913333pt;}
.y99{bottom:547.066667pt;}
.y3f{bottom:557.012000pt;}
.y16{bottom:562.009333pt;}
.yc7{bottom:562.577333pt;}
.y67{bottom:562.853333pt;}
.y98{bottom:563.166667pt;}
.y3e{bottom:572.952000pt;}
.y15{bottom:577.949333pt;}
.yc6{bottom:578.517333pt;}
.y66{bottom:578.793333pt;}
.y97{bottom:579.106667pt;}
.y14{bottom:593.889333pt;}
.yc5{bottom:594.457333pt;}
.y65{bottom:594.734667pt;}
.y96{bottom:595.046667pt;}
.y3d{bottom:599.484000pt;}
.yc4{bottom:610.397333pt;}
.y95{bottom:610.986667pt;}
.y13{bottom:616.681333pt;}
.y3c{bottom:625.716000pt;}
.yc3{bottom:626.338667pt;}
.y94{bottom:626.926667pt;}
.y58{bottom:628.978667pt;}
.y64{bottom:639.520000pt;}
.y57{bottom:640.934667pt;}
.y3b{bottom:641.657333pt;}
.yc2{bottom:642.278667pt;}
.y12{bottom:645.365333pt;}
.yeb{bottom:645.497333pt;}
.y93{bottom:648.008000pt;}
.y63{bottom:651.476000pt;}
.y56{bottom:652.889333pt;}
.y3a{bottom:657.597333pt;}
.yc1{bottom:658.361333pt;}
.y11{bottom:658.648000pt;}
.yea{bottom:661.437333pt;}
.y62{bottom:663.430667pt;}
.y92{bottom:663.948000pt;}
.y10{bottom:671.932000pt;}
.y39{bottom:673.537333pt;}
.yc0{bottom:674.301333pt;}
.ye9{bottom:681.562667pt;}
.yf{bottom:685.216000pt;}
.y91{bottom:690.209333pt;}
.ybf{bottom:690.242667pt;}
.y38{bottom:695.452000pt;}
.ye{bottom:698.498667pt;}
.y90{bottom:706.150667pt;}
.ybe{bottom:706.182667pt;}
.ye8{bottom:706.469333pt;}
.yd{bottom:711.782667pt;}
.y8f{bottom:722.090667pt;}
.ybd{bottom:722.122667pt;}
.ye7{bottom:722.409333pt;}
.y37{bottom:722.894667pt;}
.yc{bottom:725.065333pt;}
.y8e{bottom:738.030667pt;}
.ybc{bottom:738.062667pt;}
.yb{bottom:738.349333pt;}
.y36{bottom:738.834667pt;}
.ya{bottom:751.633333pt;}
.y8d{bottom:753.970667pt;}
.ybb{bottom:754.002667pt;}
.ye6{bottom:754.289333pt;}
.y35{bottom:759.533333pt;}
.y9{bottom:764.916000pt;}
.y8c{bottom:769.910667pt;}
.yba{bottom:769.942667pt;}
.ye5{bottom:770.229333pt;}
.y32{bottom:775.205333pt;}
.y8{bottom:778.200000pt;}
.y8b{bottom:785.850667pt;}
.yb9{bottom:786.026667pt;}
.ye4{bottom:786.170667pt;}
.y34{bottom:787.825333pt;}
.y7{bottom:791.484000pt;}
.y33{bottom:791.810667pt;}
.y8a{bottom:801.792000pt;}
.yb8{bottom:801.966667pt;}
.y31{bottom:802.110667pt;}
.y6{bottom:804.766667pt;}
.y89{bottom:817.890667pt;}
.yb7{bottom:817.906667pt;}
.y5{bottom:818.050667pt;}
.y88{bottom:833.832000pt;}
.yb6{bottom:833.846667pt;}
.ye3{bottom:833.990667pt;}
.y87{bottom:849.772000pt;}
.yb5{bottom:849.788000pt;}
.ye2{bottom:849.930667pt;}
.y4{bottom:865.352000pt;}
.y86{bottom:865.712000pt;}
.yb4{bottom:865.728000pt;}
.ye1{bottom:865.870667pt;}
.y85{bottom:881.652000pt;}
.yb3{bottom:881.668000pt;}
.ye0{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y84{bottom:897.592000pt;}
.yb2{bottom:897.608000pt;}
.ydf{bottom:897.752000pt;}
.y83{bottom:913.532000pt;}
.yb1{bottom:913.548000pt;}
.yde{bottom:913.692000pt;}
.y2{bottom:923.830667pt;}
.y82{bottom:929.632000pt;}
.y81{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y80{bottom:961.512000pt;}
.yb0{bottom:977.452000pt;}
.y7f{bottom:977.453333pt;}
.h9{height:0.000000pt;}
.hc{height:21.933807pt;}
.h8{height:25.403229pt;}
.ha{height:29.244954pt;}
.h5{height:33.044173pt;}
.h4{height:33.426739pt;}
.h3{height:36.556100pt;}
.h6{height:38.043849pt;}
.h7{height:39.850400pt;}
.h2{height:40.211857pt;}
.hb{height:44.869197pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:65.285333pt;}
.x16{left:73.644000pt;}
.x1c{left:74.632000pt;}
.x1f{left:75.912000pt;}
.x5{left:78.569333pt;}
.x1a{left:83.844000pt;}
.x8{left:91.010667pt;}
.x1{left:96.484000pt;}
.x15{left:122.704000pt;}
.x1e{left:155.920000pt;}
.x9{left:162.873333pt;}
.x7{left:180.826667pt;}
.x2{left:201.768000pt;}
.x1b{left:206.037333pt;}
.x14{left:212.402667pt;}
.x4{left:326.758667pt;}
.x3{left:376.132000pt;}
.xb{left:415.970667pt;}
.x17{left:417.374667pt;}
.xa{left:429.253333pt;}
.x18{left:442.014667pt;}
.x13{left:464.310667pt;}
.x10{left:493.488000pt;}
.xc{left:510.805333pt;}
.x12{left:516.554667pt;}
.x1d{left:532.281333pt;}
.x11{left:539.765333pt;}
.x19{left:542.210667pt;}
.xe{left:563.521333pt;}
.xd{left:567.302667pt;}
.xf{left:580.612000pt;}
}




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