
    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_4b485927b662210379c94598.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_a792bc0c5473b2d985cf05e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_a2107272068654f8f21811f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_14e5139826e886a2d3aecf0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.304000;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_1da66e810274451d536620bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_16acfa2f70111d6ca4acf8f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_751c380af83c2bde6a72fd54.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_1a686dc0155ef4be5291b493.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_31232b1e581fac7c46107787.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3e9d28e4d2f637f5c46d65c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.388000;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_bec9df3ccfa8cd583074f1a2.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-26.028000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.993100px;}
.ls0{letter-spacing:2.999580px;}
.ls4{letter-spacing:26.410200px;}
.ls3{letter-spacing:26.411580px;}
.ls6{letter-spacing:29.889000px;}
.ls2{letter-spacing:240.028200px;}
.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;}
}
.wsdc{word-spacing:-0.086076px;}
.ws30{word-spacing:-0.059778px;}
.ws4{word-spacing:-0.053796px;}
.ws29{word-spacing:0.000000px;}
.wsa1{word-spacing:13.390272px;}
.wsd2{word-spacing:13.748940px;}
.ws9{word-spacing:13.825572px;}
.ws35{word-spacing:13.928274px;}
.wsaf{word-spacing:14.107608px;}
.wsad{word-spacing:14.167386px;}
.wsc1{word-spacing:14.227164px;}
.ws11{word-spacing:14.524920px;}
.ws60{word-spacing:15.004278px;}
.wsa{word-spacing:15.062880px;}
.ws5e{word-spacing:15.183612px;}
.wsa2{word-spacing:15.243390px;}
.ws72{word-spacing:15.303168px;}
.ws13{word-spacing:15.439452px;}
.ws94{word-spacing:15.721614px;}
.ws89{word-spacing:15.781392px;}
.ws1d{word-spacing:15.841170px;}
.ws3b{word-spacing:15.900948px;}
.wscf{word-spacing:15.960726px;}
.ws46{word-spacing:16.020504px;}
.wsae{word-spacing:16.080282px;}
.ws9b{word-spacing:16.140060px;}
.ws2c{word-spacing:16.199838px;}
.wsac{word-spacing:16.438950px;}
.wsd1{word-spacing:16.498728px;}
.wsc0{word-spacing:16.678062px;}
.ws24{word-spacing:16.797618px;}
.wsdb{word-spacing:16.857396px;}
.ws2d{word-spacing:16.917174px;}
.ws44{word-spacing:16.976952px;}
.wsa3{word-spacing:17.036730px;}
.wsc9{word-spacing:17.096508px;}
.wsb5{word-spacing:17.156286px;}
.wsce{word-spacing:17.216064px;}
.ws9a{word-spacing:17.275842px;}
.wsd5{word-spacing:17.455176px;}
.wsd0{word-spacing:17.574732px;}
.ws95{word-spacing:17.694288px;}
.wsbd{word-spacing:17.754066px;}
.wsa9{word-spacing:17.813844px;}
.wsab{word-spacing:17.873622px;}
.wsb1{word-spacing:17.878086px;}
.ws4c{word-spacing:17.933400px;}
.wsd4{word-spacing:17.993178px;}
.ws26{word-spacing:18.052956px;}
.ws8{word-spacing:18.129252px;}
.ws88{word-spacing:18.172512px;}
.wsf{word-spacing:18.183048px;}
.ws45{word-spacing:18.232290px;}
.ws54{word-spacing:18.292068px;}
.ws31{word-spacing:18.351846px;}
.ws16{word-spacing:18.398232px;}
.ws70{word-spacing:18.471402px;}
.ws9d{word-spacing:18.590958px;}
.ws2e{word-spacing:18.650736px;}
.ws15{word-spacing:18.667212px;}
.ws4a{word-spacing:18.710514px;}
.ws39{word-spacing:18.770292px;}
.ws3e{word-spacing:18.830070px;}
.ws6d{word-spacing:19.009404px;}
.ws3d{word-spacing:19.069182px;}
.ws52{word-spacing:19.128960px;}
.ws9e{word-spacing:19.188738px;}
.wsba{word-spacing:19.248516px;}
.ws7b{word-spacing:19.308294px;}
.ws98{word-spacing:19.368072px;}
.ws9c{word-spacing:19.427850px;}
.wsaa{word-spacing:19.487628px;}
.wsb2{word-spacing:19.547406px;}
.wsb4{word-spacing:19.607184px;}
.ws5f{word-spacing:19.666962px;}
.wscd{word-spacing:19.726740px;}
.ws37{word-spacing:19.786518px;}
.ws20{word-spacing:19.846296px;}
.wsb7{word-spacing:19.857222px;}
.ws14{word-spacing:19.904520px;}
.ws3a{word-spacing:19.906074px;}
.ws7d{word-spacing:19.965852px;}
.ws6a{word-spacing:20.025630px;}
.wsd{word-spacing:20.065908px;}
.ws5a{word-spacing:20.145186px;}
.ws93{word-spacing:20.204964px;}
.ws36{word-spacing:20.264742px;}
.ws68{word-spacing:20.324520px;}
.wsb{word-spacing:20.334888px;}
.wsbf{word-spacing:20.384298px;}
.wsa4{word-spacing:20.444076px;}
.ws5c{word-spacing:20.503854px;}
.ws64{word-spacing:20.563632px;}
.ws4b{word-spacing:20.623410px;}
.ws2b{word-spacing:20.683188px;}
.wsc7{word-spacing:20.742966px;}
.ws99{word-spacing:20.802744px;}
.ws2f{word-spacing:20.862522px;}
.wsb6{word-spacing:20.922300px;}
.ws63{word-spacing:20.982078px;}
.ws12{word-spacing:21.034236px;}
.ws53{word-spacing:21.041856px;}
.ws7{word-spacing:21.088032px;}
.wse2{word-spacing:21.101634px;}
.ws5d{word-spacing:21.161412px;}
.ws1b{word-spacing:21.221190px;}
.wsb8{word-spacing:21.280968px;}
.wsc{word-spacing:21.303216px;}
.ws32{word-spacing:21.340746px;}
.wsca{word-spacing:21.400524px;}
.ws57{word-spacing:21.460302px;}
.ws34{word-spacing:21.520080px;}
.ws82{word-spacing:21.579858px;}
.ws40{word-spacing:21.639636px;}
.wscb{word-spacing:21.699414px;}
.ws8f{word-spacing:21.759192px;}
.ws10{word-spacing:21.787380px;}
.wsa0{word-spacing:21.818970px;}
.wsc2{word-spacing:21.878748px;}
.ws50{word-spacing:21.938526px;}
.ws9f{word-spacing:21.998304px;}
.ws51{word-spacing:22.058082px;}
.wsb9{word-spacing:22.177638px;}
.wsbb{word-spacing:22.237416px;}
.ws66{word-spacing:22.297194px;}
.ws78{word-spacing:22.356972px;}
.ws8b{word-spacing:22.416750px;}
.ws65{word-spacing:22.476528px;}
.ws80{word-spacing:22.536306px;}
.ws96{word-spacing:22.596084px;}
.ws3c{word-spacing:22.655862px;}
.ws1a{word-spacing:22.715640px;}
.wsd6{word-spacing:22.775418px;}
.ws25{word-spacing:22.894974px;}
.ws7c{word-spacing:22.954752px;}
.ws8e{word-spacing:23.014530px;}
.ws5{word-spacing:23.024688px;}
.wscc{word-spacing:23.074308px;}
.ws6{word-spacing:23.078484px;}
.ws97{word-spacing:23.134086px;}
.ws58{word-spacing:23.193864px;}
.wsa5{word-spacing:23.253642px;}
.ws1{word-spacing:23.289030px;}
.ws2{word-spacing:23.312070px;}
.wsc8{word-spacing:23.313420px;}
.ws77{word-spacing:23.373198px;}
.ws1e{word-spacing:23.492754px;}
.ws61{word-spacing:23.612310px;}
.ws1c{word-spacing:23.672088px;}
.ws5b{word-spacing:23.731866px;}
.ws38{word-spacing:23.851422px;}
.ws43{word-spacing:23.911200px;}
.ws8a{word-spacing:23.970978px;}
.wsda{word-spacing:24.090534px;}
.ws2a{word-spacing:24.150312px;}
.ws75{word-spacing:24.210090px;}
.wsd7{word-spacing:24.269868px;}
.wsb0{word-spacing:24.328332px;}
.ws6f{word-spacing:24.329646px;}
.wsa6{word-spacing:24.449202px;}
.ws81{word-spacing:24.508980px;}
.ws56{word-spacing:24.568758px;}
.wsdd{word-spacing:24.628536px;}
.wse{word-spacing:24.638568px;}
.ws4e{word-spacing:24.807870px;}
.ws23{word-spacing:24.927426px;}
.ws55{word-spacing:24.987204px;}
.ws3{word-spacing:25.033770px;}
.wsb3{word-spacing:25.046982px;}
.ws90{word-spacing:25.106760px;}
.wsbe{word-spacing:25.166538px;}
.wsc4{word-spacing:25.226316px;}
.ws84{word-spacing:25.286094px;}
.wsde{word-spacing:25.345872px;}
.ws18{word-spacing:25.405650px;}
.ws92{word-spacing:25.465428px;}
.ws1f{word-spacing:25.525206px;}
.ws76{word-spacing:25.584984px;}
.ws49{word-spacing:25.644762px;}
.ws19{word-spacing:25.704540px;}
.ws6c{word-spacing:25.883874px;}
.ws27{word-spacing:26.003430px;}
.ws69{word-spacing:26.063208px;}
.ws85{word-spacing:26.242542px;}
.ws28{word-spacing:26.302320px;}
.wse1{word-spacing:26.406954px;}
.wsa7{word-spacing:26.421876px;}
.wsd8{word-spacing:26.481654px;}
.wsd9{word-spacing:26.601210px;}
.ws73{word-spacing:26.780544px;}
.wsc6{word-spacing:26.840322px;}
.ws0{word-spacing:26.898750px;}
.wsdf{word-spacing:26.900100px;}
.ws62{word-spacing:26.959878px;}
.wsd3{word-spacing:27.139212px;}
.ws74{word-spacing:27.198990px;}
.ws79{word-spacing:27.258768px;}
.ws4f{word-spacing:27.378324px;}
.ws7f{word-spacing:27.438102px;}
.wsa8{word-spacing:27.557658px;}
.ws6e{word-spacing:27.617436px;}
.ws21{word-spacing:27.856548px;}
.ws67{word-spacing:27.916326px;}
.ws87{word-spacing:27.976104px;}
.wsc3{word-spacing:28.035882px;}
.ws33{word-spacing:28.095660px;}
.ws41{word-spacing:28.155438px;}
.ws59{word-spacing:28.215216px;}
.wsbc{word-spacing:28.334772px;}
.ws91{word-spacing:28.454328px;}
.ws4d{word-spacing:28.573884px;}
.ws71{word-spacing:28.693440px;}
.ws22{word-spacing:28.932552px;}
.ws48{word-spacing:29.052108px;}
.ws83{word-spacing:29.111886px;}
.ws8d{word-spacing:29.291220px;}
.ws6b{word-spacing:29.350998px;}
.wsc5{word-spacing:29.769444px;}
.ws7a{word-spacing:31.323672px;}
.ws7e{word-spacing:31.503006px;}
.ws42{word-spacing:32.041008px;}
.ws86{word-spacing:32.160564px;}
.ws3f{word-spacing:32.192424px;}
.ws47{word-spacing:33.415902px;}
.ws8c{word-spacing:33.655014px;}
.wse3{word-spacing:39.515154px;}
.wse0{word-spacing:63.723348px;}
.ws17{word-spacing:96.749424px;}
._2{margin-left:-34.860780px;}
._3{margin-left:-32.972580px;}
._26{margin-left:-29.339154px;}
._20{margin-left:-7.980180px;}
._0{margin-left:-6.886080px;}
._4{margin-left:-5.379750px;}
._5{margin-left:-3.514770px;}
._1{margin-left:-2.223630px;}
._a{margin-left:-1.129530px;}
._9{width:1.560084px;}
._10{width:3.428694px;}
._e{width:16.031358px;}
._12{width:17.287686px;}
._17{width:19.433568px;}
._22{width:21.071136px;}
._1f{width:22.231290px;}
._d{width:23.239872px;}
._7{width:24.925542px;}
._16{width:26.906088px;}
._19{width:27.916326px;}
._f{width:29.390610px;}
._1e{width:30.486780px;}
._6{width:32.278500px;}
._b{width:33.317718px;}
._21{width:34.342944px;}
._11{width:35.448486px;}
._13{width:37.370142px;}
._8{width:38.625528px;}
._25{width:39.632814px;}
._1d{width:40.708818px;}
._15{width:41.952444px;}
._c{width:43.144392px;}
._18{width:45.317046px;}
._23{width:46.949418px;}
._24{width:48.246438px;}
._1c{width:49.647480px;}
._1a{width:51.420660px;}
._14{width:54.648666px;}
._1b{width:96.835500px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.820000px;}
.fs2{font-size:53.796000px;}
.fs4{font-size:59.778000px;}
.fs0{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:42.519000px;}
.y2d{bottom:44.101500px;}
.y108{bottom:45.922500px;}
.ya6{bottom:50.374500px;}
.y80{bottom:50.712000px;}
.ye8{bottom:52.824000px;}
.y53{bottom:53.002500px;}
.yc3{bottom:54.387000px;}
.ybf{bottom:60.451500px;}
.yc8{bottom:60.453000px;}
.y2c{bottom:62.035500px;}
.y107{bottom:63.855000px;}
.y7f{bottom:68.644500px;}
.y52{bottom:70.935000px;}
.ybe{bottom:78.385500px;}
.y2b{bottom:79.968000px;}
.y106{bottom:81.787500px;}
.ye7{bottom:82.711500px;}
.ya5{bottom:86.239500px;}
.y7e{bottom:86.578500px;}
.y11d{bottom:92.155500px;}
.ybd{bottom:96.318000px;}
.y2a{bottom:97.900500px;}
.y105{bottom:99.720000px;}
.ya4{bottom:104.172000px;}
.y7d{bottom:104.511000px;}
.y51{bottom:106.801500px;}
.y11c{bottom:110.088000px;}
.ye6{bottom:112.599000px;}
.ybc{bottom:114.250500px;}
.y29{bottom:115.833000px;}
.y104{bottom:117.654000px;}
.ya3{bottom:122.106000px;}
.y7c{bottom:122.443500px;}
.y50{bottom:124.734000px;}
.y11b{bottom:128.020500px;}
.y61{bottom:130.332000px;}
.ye5{bottom:130.533000px;}
.ybb{bottom:132.183000px;}
.y28{bottom:133.765500px;}
.y103{bottom:135.586500px;}
.y7b{bottom:140.376000px;}
.y11a{bottom:145.953000px;}
.y60{bottom:148.264500px;}
.ye4{bottom:148.465500px;}
.yc7{bottom:150.115500px;}
.y27{bottom:151.698000px;}
.y102{bottom:153.519000px;}
.ya2{bottom:157.971000px;}
.y7a{bottom:158.308500px;}
.y4f{bottom:160.599000px;}
.yba{bottom:164.914500px;}
.y5f{bottom:166.197000px;}
.ye3{bottom:166.398000px;}
.yc6{bottom:168.049500px;}
.y26{bottom:169.632000px;}
.y101{bottom:171.451500px;}
.ya1{bottom:175.903500px;}
.y79{bottom:176.242500px;}
.y119{bottom:178.684500px;}
.y5e{bottom:184.129500px;}
.ye2{bottom:184.330500px;}
.yc5{bottom:185.982000px;}
.y25{bottom:187.564500px;}
.y100{bottom:189.384000px;}
.ya0{bottom:193.836000px;}
.y78{bottom:194.175000px;}
.y4e{bottom:196.465500px;}
.y5d{bottom:202.062000px;}
.ye1{bottom:202.263000px;}
.y24{bottom:205.497000px;}
.yff{bottom:207.316500px;}
.y77{bottom:212.107500px;}
.yb9{bottom:213.958500px;}
.y4d{bottom:214.398000px;}
.y5c{bottom:219.996000px;}
.ye0{bottom:220.195500px;}
.yc4{bottom:220.695000px;}
.y23{bottom:223.429500px;}
.y139{bottom:223.725000px;}
.yfe{bottom:225.250500px;}
.y118{bottom:228.103500px;}
.y9f{bottom:229.702500px;}
.y76{bottom:230.040000px;}
.y5b{bottom:237.928500px;}
.y22{bottom:241.362000px;}
.y138{bottom:241.657500px;}
.yb8{bottom:242.977500px;}
.yfd{bottom:243.183000px;}
.y117{bottom:246.036000px;}
.y9e{bottom:247.635000px;}
.y75{bottom:247.972500px;}
.ydf{bottom:250.084500px;}
.y4c{bottom:250.263000px;}
.y5a{bottom:255.861000px;}
.y21{bottom:259.294500px;}
.y137{bottom:259.590000px;}
.yb7{bottom:260.910000px;}
.yfc{bottom:261.115500px;}
.y116{bottom:263.968500px;}
.y74{bottom:265.905000px;}
.y59{bottom:273.793500px;}
.y20{bottom:277.228500px;}
.yfb{bottom:279.048000px;}
.yde{bottom:279.972000px;}
.y115{bottom:281.902500px;}
.y9d{bottom:283.500000px;}
.y73{bottom:283.839000px;}
.y136{bottom:289.477500px;}
.yb6{bottom:289.929000px;}
.y1f{bottom:295.161000px;}
.yfa{bottom:296.980500px;}
.ydd{bottom:297.904500px;}
.y114{bottom:299.835000px;}
.y72{bottom:301.771500px;}
.yb5{bottom:307.861500px;}
.y58{bottom:308.829000px;}
.y1e{bottom:313.093500px;}
.yf9{bottom:314.913000px;}
.ydc{bottom:315.837000px;}
.y113{bottom:317.767500px;}
.y9c{bottom:319.365000px;}
.y71{bottom:319.704000px;}
.y1d{bottom:331.026000px;}
.yf8{bottom:332.847000px;}
.ydb{bottom:333.771000px;}
.y112{bottom:335.700000px;}
.yb4{bottom:336.880500px;}
.y9b{bottom:337.299000px;}
.y70{bottom:337.636500px;}
.y1c{bottom:348.958500px;}
.y135{bottom:349.254000px;}
.yf7{bottom:350.779500px;}
.y111{bottom:353.632500px;}
.yb3{bottom:354.813000px;}
.y6f{bottom:355.569000px;}
.yda{bottom:363.658500px;}
.y134{bottom:367.186500px;}
.yf6{bottom:368.712000px;}
.y110{bottom:371.565000px;}
.y9a{bottom:373.164000px;}
.y6e{bottom:373.501500px;}
.yd9{bottom:381.591000px;}
.y1b{bottom:381.690000px;}
.yb2{bottom:383.832000px;}
.yf5{bottom:386.644500px;}
.y10f{bottom:389.499000px;}
.y99{bottom:391.096500px;}
.y6d{bottom:391.435500px;}
.y133{bottom:397.074000px;}
.yd8{bottom:399.523500px;}
.yb1{bottom:401.764500px;}
.yf4{bottom:404.577000px;}
.y10e{bottom:407.431500px;}
.y6c{bottom:409.368000px;}
.yd7{bottom:417.456000px;}
.yb0{bottom:419.697000px;}
.yf3{bottom:422.509500px;}
.y10d{bottom:425.364000px;}
.y98{bottom:426.961500px;}
.y6b{bottom:427.300500px;}
.y1a{bottom:431.109000px;}
.yd6{bottom:435.388500px;}
.yf2{bottom:440.443500px;}
.y10c{bottom:443.296500px;}
.y97{bottom:444.895500px;}
.y6a{bottom:445.233000px;}
.y19{bottom:447.547500px;}
.yaf{bottom:448.716000px;}
.yf1{bottom:458.376000px;}
.y10b{bottom:461.229000px;}
.y96{bottom:462.828000px;}
.y69{bottom:463.165500px;}
.y18{bottom:463.986000px;}
.yd5{bottom:465.277500px;}
.yae{bottom:466.648500px;}
.yc2{bottom:471.648000px;}
.yf0{bottom:476.308500px;}
.y4b{bottom:479.163000px;}
.y17{bottom:480.424500px;}
.y68{bottom:481.098000px;}
.yd4{bottom:483.210000px;}
.yc1{bottom:489.582000px;}
.y132{bottom:492.715500px;}
.yef{bottom:494.241000px;}
.yad{bottom:495.667500px;}
.y16{bottom:496.863000px;}
.y4a{bottom:497.095500px;}
.y95{bottom:498.693000px;}
.y67{bottom:499.032000px;}
.y57{bottom:507.514500px;}
.y131{bottom:510.648000px;}
.yee{bottom:512.173500px;}
.yd3{bottom:513.097500px;}
.y15{bottom:513.301500px;}
.yac{bottom:513.600000px;}
.y10a{bottom:515.028000px;}
.y94{bottom:516.625500px;}
.y66{bottom:516.964500px;}
.y56{bottom:525.447000px;}
.y14{bottom:529.740000px;}
.y49{bottom:529.827000px;}
.yed{bottom:530.107500px;}
.yd2{bottom:531.030000px;}
.y65{bottom:534.897000px;}
.y130{bottom:540.537000px;}
.yab{bottom:542.619000px;}
.y55{bottom:543.379500px;}
.y13{bottom:546.177000px;}
.y109{bottom:547.759500px;}
.yec{bottom:548.040000px;}
.yd1{bottom:548.964000px;}
.y93{bottom:552.492000px;}
.y12f{bottom:558.469500px;}
.y54{bottom:561.312000px;}
.y12{bottom:562.615500px;}
.yeb{bottom:565.972500px;}
.yd0{bottom:566.896500px;}
.y92{bottom:570.424500px;}
.y64{bottom:570.762000px;}
.yaa{bottom:571.636500px;}
.y12e{bottom:576.402000px;}
.y11{bottom:579.054000px;}
.y48{bottom:579.244500px;}
.y91{bottom:588.357000px;}
.y10{bottom:595.492500px;}
.yea{bottom:595.860000px;}
.ycf{bottom:596.784000px;}
.y47{bottom:597.178500px;}
.ya9{bottom:600.655500px;}
.y12d{bottom:606.289500px;}
.yf{bottom:611.931000px;}
.yce{bottom:614.716500px;}
.y46{bottom:615.111000px;}
.y90{bottom:624.222000px;}
.ye{bottom:628.369500px;}
.ya8{bottom:629.674500px;}
.ycd{bottom:632.649000px;}
.y45{bottom:633.043500px;}
.y12c{bottom:636.177000px;}
.y8f{bottom:642.156000px;}
.ye9{bottom:643.597500px;}
.yd{bottom:644.808000px;}
.ycc{bottom:650.583000px;}
.y44{bottom:650.976000px;}
.y12b{bottom:654.111000px;}
.ya7{bottom:658.692000px;}
.yc{bottom:661.246500px;}
.ycb{bottom:668.515500px;}
.y43{bottom:668.908500px;}
.y8e{bottom:672.043500px;}
.yb{bottom:677.685000px;}
.y12a{bottom:683.998500px;}
.yca{bottom:686.448000px;}
.y42{bottom:686.842500px;}
.ya{bottom:694.123500px;}
.y8d{bottom:701.931000px;}
.y41{bottom:704.775000px;}
.y9{bottom:710.560500px;}
.y129{bottom:719.863500px;}
.y40{bottom:722.707500px;}
.y8c{bottom:731.818500px;}
.y8{bottom:733.986000px;}
.yc9{bottom:734.185500px;}
.y3f{bottom:740.640000px;}
.y128{bottom:749.752500px;}
.y3e{bottom:758.572500px;}
.y8b{bottom:761.707500px;}
.y7{bottom:765.369000px;}
.y127{bottom:767.685000px;}
.y3d{bottom:776.505000px;}
.y8a{bottom:791.595000px;}
.y6{bottom:792.798000px;}
.y3c{bottom:794.439000px;}
.y126{bottom:797.572500px;}
.y5{bottom:807.211500px;}
.y3b{bottom:812.371500px;}
.y125{bottom:815.505000px;}
.y89{bottom:821.482500px;}
.y3a{bottom:830.304000px;}
.y124{bottom:833.437500px;}
.y4{bottom:834.640500px;}
.y39{bottom:848.236500px;}
.y88{bottom:851.370000px;}
.y123{bottom:863.326500px;}
.y38{bottom:866.169000px;}
.y87{bottom:869.304000px;}
.y3{bottom:871.470000px;}
.y122{bottom:881.259000px;}
.y37{bottom:884.101500px;}
.y86{bottom:887.236500px;}
.y121{bottom:899.191500px;}
.y36{bottom:902.035500px;}
.y85{bottom:905.169000px;}
.y35{bottom:919.968000px;}
.y84{bottom:923.101500px;}
.y120{bottom:929.079000px;}
.y2{bottom:937.224000px;}
.y34{bottom:937.900500px;}
.y83{bottom:941.034000px;}
.y11f{bottom:947.011500px;}
.y33{bottom:955.833000px;}
.y82{bottom:958.968000px;}
.y11e{bottom:964.945500px;}
.y1{bottom:970.101000px;}
.y32{bottom:973.765500px;}
.y81{bottom:976.900500px;}
.y31{bottom:991.698000px;}
.y63{bottom:994.833000px;}
.y30{bottom:1009.632000px;}
.y62{bottom:1012.765500px;}
.y2f{bottom:1027.564500px;}
.y2e{bottom:1045.497000px;}
.h3{height:33.187080px;}
.h5{height:37.657200px;}
.h6{height:40.347000px;}
.h8{height:44.833500px;}
.h1{height:50.211000px;}
.h4{height:51.286950px;}
.h2{height:59.221080px;}
.h7{height:60.253200px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:127.558500px;}
.x1{left:128.922000px;}
.x14{left:135.031500px;}
.xc{left:149.974500px;}
.x15{left:158.277000px;}
.xa{left:164.919000px;}
.x13{left:170.287500px;}
.x9{left:185.653500px;}
.x6{left:201.876000px;}
.x10{left:212.608500px;}
.x12{left:227.625000px;}
.xd{left:233.944500px;}
.x11{left:236.362500px;}
.x7{left:263.017500px;}
.xf{left:271.335000px;}
.x3{left:276.319500px;}
.x5{left:279.397500px;}
.x4{left:326.617500px;}
.x2{left:334.557000px;}
.xe{left:337.038000px;}
.x8{left:417.928500px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.660533pt;}
.ls0{letter-spacing:2.666293pt;}
.ls4{letter-spacing:23.475733pt;}
.ls3{letter-spacing:23.476960pt;}
.ls6{letter-spacing:26.568000pt;}
.ls2{letter-spacing:213.358400pt;}
.wsdc{word-spacing:-0.076512pt;}
.ws30{word-spacing:-0.053136pt;}
.ws4{word-spacing:-0.047819pt;}
.ws29{word-spacing:0.000000pt;}
.wsa1{word-spacing:11.902464pt;}
.wsd2{word-spacing:12.221280pt;}
.ws9{word-spacing:12.289397pt;}
.ws35{word-spacing:12.380688pt;}
.wsaf{word-spacing:12.540096pt;}
.wsad{word-spacing:12.593232pt;}
.wsc1{word-spacing:12.646368pt;}
.ws11{word-spacing:12.911040pt;}
.ws60{word-spacing:13.337136pt;}
.wsa{word-spacing:13.389227pt;}
.ws5e{word-spacing:13.496544pt;}
.wsa2{word-spacing:13.549680pt;}
.ws72{word-spacing:13.602816pt;}
.ws13{word-spacing:13.723957pt;}
.ws94{word-spacing:13.974768pt;}
.ws89{word-spacing:14.027904pt;}
.ws1d{word-spacing:14.081040pt;}
.ws3b{word-spacing:14.134176pt;}
.wscf{word-spacing:14.187312pt;}
.ws46{word-spacing:14.240448pt;}
.wsae{word-spacing:14.293584pt;}
.ws9b{word-spacing:14.346720pt;}
.ws2c{word-spacing:14.399856pt;}
.wsac{word-spacing:14.612400pt;}
.wsd1{word-spacing:14.665536pt;}
.wsc0{word-spacing:14.824944pt;}
.ws24{word-spacing:14.931216pt;}
.wsdb{word-spacing:14.984352pt;}
.ws2d{word-spacing:15.037488pt;}
.ws44{word-spacing:15.090624pt;}
.wsa3{word-spacing:15.143760pt;}
.wsc9{word-spacing:15.196896pt;}
.wsb5{word-spacing:15.250032pt;}
.wsce{word-spacing:15.303168pt;}
.ws9a{word-spacing:15.356304pt;}
.wsd5{word-spacing:15.515712pt;}
.wsd0{word-spacing:15.621984pt;}
.ws95{word-spacing:15.728256pt;}
.wsbd{word-spacing:15.781392pt;}
.wsa9{word-spacing:15.834528pt;}
.wsab{word-spacing:15.887664pt;}
.wsb1{word-spacing:15.891632pt;}
.ws4c{word-spacing:15.940800pt;}
.wsd4{word-spacing:15.993936pt;}
.ws26{word-spacing:16.047072pt;}
.ws8{word-spacing:16.114891pt;}
.ws88{word-spacing:16.153344pt;}
.wsf{word-spacing:16.162709pt;}
.ws45{word-spacing:16.206480pt;}
.ws54{word-spacing:16.259616pt;}
.ws31{word-spacing:16.312752pt;}
.ws16{word-spacing:16.353984pt;}
.ws70{word-spacing:16.419024pt;}
.ws9d{word-spacing:16.525296pt;}
.ws2e{word-spacing:16.578432pt;}
.ws15{word-spacing:16.593077pt;}
.ws4a{word-spacing:16.631568pt;}
.ws39{word-spacing:16.684704pt;}
.ws3e{word-spacing:16.737840pt;}
.ws6d{word-spacing:16.897248pt;}
.ws3d{word-spacing:16.950384pt;}
.ws52{word-spacing:17.003520pt;}
.ws9e{word-spacing:17.056656pt;}
.wsba{word-spacing:17.109792pt;}
.ws7b{word-spacing:17.162928pt;}
.ws98{word-spacing:17.216064pt;}
.ws9c{word-spacing:17.269200pt;}
.wsaa{word-spacing:17.322336pt;}
.wsb2{word-spacing:17.375472pt;}
.wsb4{word-spacing:17.428608pt;}
.ws5f{word-spacing:17.481744pt;}
.wscd{word-spacing:17.534880pt;}
.ws37{word-spacing:17.588016pt;}
.ws20{word-spacing:17.641152pt;}
.wsb7{word-spacing:17.650864pt;}
.ws14{word-spacing:17.692907pt;}
.ws3a{word-spacing:17.694288pt;}
.ws7d{word-spacing:17.747424pt;}
.ws6a{word-spacing:17.800560pt;}
.wsd{word-spacing:17.836363pt;}
.ws5a{word-spacing:17.906832pt;}
.ws93{word-spacing:17.959968pt;}
.ws36{word-spacing:18.013104pt;}
.ws68{word-spacing:18.066240pt;}
.wsb{word-spacing:18.075456pt;}
.wsbf{word-spacing:18.119376pt;}
.wsa4{word-spacing:18.172512pt;}
.ws5c{word-spacing:18.225648pt;}
.ws64{word-spacing:18.278784pt;}
.ws4b{word-spacing:18.331920pt;}
.ws2b{word-spacing:18.385056pt;}
.wsc7{word-spacing:18.438192pt;}
.ws99{word-spacing:18.491328pt;}
.ws2f{word-spacing:18.544464pt;}
.wsb6{word-spacing:18.597600pt;}
.ws63{word-spacing:18.650736pt;}
.ws12{word-spacing:18.697099pt;}
.ws53{word-spacing:18.703872pt;}
.ws7{word-spacing:18.744917pt;}
.wse2{word-spacing:18.757008pt;}
.ws5d{word-spacing:18.810144pt;}
.ws1b{word-spacing:18.863280pt;}
.wsb8{word-spacing:18.916416pt;}
.wsc{word-spacing:18.936192pt;}
.ws32{word-spacing:18.969552pt;}
.wsca{word-spacing:19.022688pt;}
.ws57{word-spacing:19.075824pt;}
.ws34{word-spacing:19.128960pt;}
.ws82{word-spacing:19.182096pt;}
.ws40{word-spacing:19.235232pt;}
.wscb{word-spacing:19.288368pt;}
.ws8f{word-spacing:19.341504pt;}
.ws10{word-spacing:19.366560pt;}
.wsa0{word-spacing:19.394640pt;}
.wsc2{word-spacing:19.447776pt;}
.ws50{word-spacing:19.500912pt;}
.ws9f{word-spacing:19.554048pt;}
.ws51{word-spacing:19.607184pt;}
.wsb9{word-spacing:19.713456pt;}
.wsbb{word-spacing:19.766592pt;}
.ws66{word-spacing:19.819728pt;}
.ws78{word-spacing:19.872864pt;}
.ws8b{word-spacing:19.926000pt;}
.ws65{word-spacing:19.979136pt;}
.ws80{word-spacing:20.032272pt;}
.ws96{word-spacing:20.085408pt;}
.ws3c{word-spacing:20.138544pt;}
.ws1a{word-spacing:20.191680pt;}
.wsd6{word-spacing:20.244816pt;}
.ws25{word-spacing:20.351088pt;}
.ws7c{word-spacing:20.404224pt;}
.ws8e{word-spacing:20.457360pt;}
.ws5{word-spacing:20.466389pt;}
.wscc{word-spacing:20.510496pt;}
.ws6{word-spacing:20.514208pt;}
.ws97{word-spacing:20.563632pt;}
.ws58{word-spacing:20.616768pt;}
.wsa5{word-spacing:20.669904pt;}
.ws1{word-spacing:20.701360pt;}
.ws2{word-spacing:20.721840pt;}
.wsc8{word-spacing:20.723040pt;}
.ws77{word-spacing:20.776176pt;}
.ws1e{word-spacing:20.882448pt;}
.ws61{word-spacing:20.988720pt;}
.ws1c{word-spacing:21.041856pt;}
.ws5b{word-spacing:21.094992pt;}
.ws38{word-spacing:21.201264pt;}
.ws43{word-spacing:21.254400pt;}
.ws8a{word-spacing:21.307536pt;}
.wsda{word-spacing:21.413808pt;}
.ws2a{word-spacing:21.466944pt;}
.ws75{word-spacing:21.520080pt;}
.wsd7{word-spacing:21.573216pt;}
.wsb0{word-spacing:21.625184pt;}
.ws6f{word-spacing:21.626352pt;}
.wsa6{word-spacing:21.732624pt;}
.ws81{word-spacing:21.785760pt;}
.ws56{word-spacing:21.838896pt;}
.wsdd{word-spacing:21.892032pt;}
.wse{word-spacing:21.900949pt;}
.ws4e{word-spacing:22.051440pt;}
.ws23{word-spacing:22.157712pt;}
.ws55{word-spacing:22.210848pt;}
.ws3{word-spacing:22.252240pt;}
.wsb3{word-spacing:22.263984pt;}
.ws90{word-spacing:22.317120pt;}
.wsbe{word-spacing:22.370256pt;}
.wsc4{word-spacing:22.423392pt;}
.ws84{word-spacing:22.476528pt;}
.wsde{word-spacing:22.529664pt;}
.ws18{word-spacing:22.582800pt;}
.ws92{word-spacing:22.635936pt;}
.ws1f{word-spacing:22.689072pt;}
.ws76{word-spacing:22.742208pt;}
.ws49{word-spacing:22.795344pt;}
.ws19{word-spacing:22.848480pt;}
.ws6c{word-spacing:23.007888pt;}
.ws27{word-spacing:23.114160pt;}
.ws69{word-spacing:23.167296pt;}
.ws85{word-spacing:23.326704pt;}
.ws28{word-spacing:23.379840pt;}
.wse1{word-spacing:23.472848pt;}
.wsa7{word-spacing:23.486112pt;}
.wsd8{word-spacing:23.539248pt;}
.wsd9{word-spacing:23.645520pt;}
.ws73{word-spacing:23.804928pt;}
.wsc6{word-spacing:23.858064pt;}
.ws0{word-spacing:23.910000pt;}
.wsdf{word-spacing:23.911200pt;}
.ws62{word-spacing:23.964336pt;}
.wsd3{word-spacing:24.123744pt;}
.ws74{word-spacing:24.176880pt;}
.ws79{word-spacing:24.230016pt;}
.ws4f{word-spacing:24.336288pt;}
.ws7f{word-spacing:24.389424pt;}
.wsa8{word-spacing:24.495696pt;}
.ws6e{word-spacing:24.548832pt;}
.ws21{word-spacing:24.761376pt;}
.ws67{word-spacing:24.814512pt;}
.ws87{word-spacing:24.867648pt;}
.wsc3{word-spacing:24.920784pt;}
.ws33{word-spacing:24.973920pt;}
.ws41{word-spacing:25.027056pt;}
.ws59{word-spacing:25.080192pt;}
.wsbc{word-spacing:25.186464pt;}
.ws91{word-spacing:25.292736pt;}
.ws4d{word-spacing:25.399008pt;}
.ws71{word-spacing:25.505280pt;}
.ws22{word-spacing:25.717824pt;}
.ws48{word-spacing:25.824096pt;}
.ws83{word-spacing:25.877232pt;}
.ws8d{word-spacing:26.036640pt;}
.ws6b{word-spacing:26.089776pt;}
.wsc5{word-spacing:26.461728pt;}
.ws7a{word-spacing:27.843264pt;}
.ws7e{word-spacing:28.002672pt;}
.ws42{word-spacing:28.480896pt;}
.ws86{word-spacing:28.587168pt;}
.ws3f{word-spacing:28.615488pt;}
.ws47{word-spacing:29.703024pt;}
.ws8c{word-spacing:29.915568pt;}
.wse3{word-spacing:35.124581pt;}
.wse0{word-spacing:56.642976pt;}
.ws17{word-spacing:85.999488pt;}
._2{margin-left:-30.987360pt;}
._3{margin-left:-29.308960pt;}
._26{margin-left:-26.079248pt;}
._20{margin-left:-7.093493pt;}
._0{margin-left:-6.120960pt;}
._4{margin-left:-4.782000pt;}
._5{margin-left:-3.124240pt;}
._1{margin-left:-1.976560pt;}
._a{margin-left:-1.004027pt;}
._9{width:1.386741pt;}
._10{width:3.047728pt;}
._e{width:14.250096pt;}
._12{width:15.366832pt;}
._17{width:17.274283pt;}
._22{width:18.729899pt;}
._1f{width:19.761147pt;}
._d{width:20.657664pt;}
._7{width:22.156037pt;}
._16{width:23.916523pt;}
._19{width:24.814512pt;}
._f{width:26.124987pt;}
._1e{width:27.099360pt;}
._6{width:28.692000pt;}
._b{width:29.615749pt;}
._21{width:30.527061pt;}
._11{width:31.509765pt;}
._13{width:33.217904pt;}
._8{width:34.333803pt;}
._25{width:35.229168pt;}
._1d{width:36.185616pt;}
._15{width:37.291061pt;}
._c{width:38.350571pt;}
._18{width:40.281819pt;}
._23{width:41.732816pt;}
._24{width:42.885723pt;}
._1c{width:44.131093pt;}
._1a{width:45.707253pt;}
._14{width:48.576592pt;}
._1b{width:86.076000pt;}
.fs1{font-size:42.506667pt;}
.fs2{font-size:47.818667pt;}
.fs4{font-size:53.136000pt;}
.fs0{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:37.794667pt;}
.y2d{bottom:39.201333pt;}
.y108{bottom:40.820000pt;}
.ya6{bottom:44.777333pt;}
.y80{bottom:45.077333pt;}
.ye8{bottom:46.954667pt;}
.y53{bottom:47.113333pt;}
.yc3{bottom:48.344000pt;}
.ybf{bottom:53.734667pt;}
.yc8{bottom:53.736000pt;}
.y2c{bottom:55.142667pt;}
.y107{bottom:56.760000pt;}
.y7f{bottom:61.017333pt;}
.y52{bottom:63.053333pt;}
.ybe{bottom:69.676000pt;}
.y2b{bottom:71.082667pt;}
.y106{bottom:72.700000pt;}
.ye7{bottom:73.521333pt;}
.ya5{bottom:76.657333pt;}
.y7e{bottom:76.958667pt;}
.y11d{bottom:81.916000pt;}
.ybd{bottom:85.616000pt;}
.y2a{bottom:87.022667pt;}
.y105{bottom:88.640000pt;}
.ya4{bottom:92.597333pt;}
.y7d{bottom:92.898667pt;}
.y51{bottom:94.934667pt;}
.y11c{bottom:97.856000pt;}
.ye6{bottom:100.088000pt;}
.ybc{bottom:101.556000pt;}
.y29{bottom:102.962667pt;}
.y104{bottom:104.581333pt;}
.ya3{bottom:108.538667pt;}
.y7c{bottom:108.838667pt;}
.y50{bottom:110.874667pt;}
.y11b{bottom:113.796000pt;}
.y61{bottom:115.850667pt;}
.ye5{bottom:116.029333pt;}
.ybb{bottom:117.496000pt;}
.y28{bottom:118.902667pt;}
.y103{bottom:120.521333pt;}
.y7b{bottom:124.778667pt;}
.y11a{bottom:129.736000pt;}
.y60{bottom:131.790667pt;}
.ye4{bottom:131.969333pt;}
.yc7{bottom:133.436000pt;}
.y27{bottom:134.842667pt;}
.y102{bottom:136.461333pt;}
.ya2{bottom:140.418667pt;}
.y7a{bottom:140.718667pt;}
.y4f{bottom:142.754667pt;}
.yba{bottom:146.590667pt;}
.y5f{bottom:147.730667pt;}
.ye3{bottom:147.909333pt;}
.yc6{bottom:149.377333pt;}
.y26{bottom:150.784000pt;}
.y101{bottom:152.401333pt;}
.ya1{bottom:156.358667pt;}
.y79{bottom:156.660000pt;}
.y119{bottom:158.830667pt;}
.y5e{bottom:163.670667pt;}
.ye2{bottom:163.849333pt;}
.yc5{bottom:165.317333pt;}
.y25{bottom:166.724000pt;}
.y100{bottom:168.341333pt;}
.ya0{bottom:172.298667pt;}
.y78{bottom:172.600000pt;}
.y4e{bottom:174.636000pt;}
.y5d{bottom:179.610667pt;}
.ye1{bottom:179.789333pt;}
.y24{bottom:182.664000pt;}
.yff{bottom:184.281333pt;}
.y77{bottom:188.540000pt;}
.yb9{bottom:190.185333pt;}
.y4d{bottom:190.576000pt;}
.y5c{bottom:195.552000pt;}
.ye0{bottom:195.729333pt;}
.yc4{bottom:196.173333pt;}
.y23{bottom:198.604000pt;}
.y139{bottom:198.866667pt;}
.yfe{bottom:200.222667pt;}
.y118{bottom:202.758667pt;}
.y9f{bottom:204.180000pt;}
.y76{bottom:204.480000pt;}
.y5b{bottom:211.492000pt;}
.y22{bottom:214.544000pt;}
.y138{bottom:214.806667pt;}
.yb8{bottom:215.980000pt;}
.yfd{bottom:216.162667pt;}
.y117{bottom:218.698667pt;}
.y9e{bottom:220.120000pt;}
.y75{bottom:220.420000pt;}
.ydf{bottom:222.297333pt;}
.y4c{bottom:222.456000pt;}
.y5a{bottom:227.432000pt;}
.y21{bottom:230.484000pt;}
.y137{bottom:230.746667pt;}
.yb7{bottom:231.920000pt;}
.yfc{bottom:232.102667pt;}
.y116{bottom:234.638667pt;}
.y74{bottom:236.360000pt;}
.y59{bottom:243.372000pt;}
.y20{bottom:246.425333pt;}
.yfb{bottom:248.042667pt;}
.yde{bottom:248.864000pt;}
.y115{bottom:250.580000pt;}
.y9d{bottom:252.000000pt;}
.y73{bottom:252.301333pt;}
.y136{bottom:257.313333pt;}
.yb6{bottom:257.714667pt;}
.y1f{bottom:262.365333pt;}
.yfa{bottom:263.982667pt;}
.ydd{bottom:264.804000pt;}
.y114{bottom:266.520000pt;}
.y72{bottom:268.241333pt;}
.yb5{bottom:273.654667pt;}
.y58{bottom:274.514667pt;}
.y1e{bottom:278.305333pt;}
.yf9{bottom:279.922667pt;}
.ydc{bottom:280.744000pt;}
.y113{bottom:282.460000pt;}
.y9c{bottom:283.880000pt;}
.y71{bottom:284.181333pt;}
.y1d{bottom:294.245333pt;}
.yf8{bottom:295.864000pt;}
.ydb{bottom:296.685333pt;}
.y112{bottom:298.400000pt;}
.yb4{bottom:299.449333pt;}
.y9b{bottom:299.821333pt;}
.y70{bottom:300.121333pt;}
.y1c{bottom:310.185333pt;}
.y135{bottom:310.448000pt;}
.yf7{bottom:311.804000pt;}
.y111{bottom:314.340000pt;}
.yb3{bottom:315.389333pt;}
.y6f{bottom:316.061333pt;}
.yda{bottom:323.252000pt;}
.y134{bottom:326.388000pt;}
.yf6{bottom:327.744000pt;}
.y110{bottom:330.280000pt;}
.y9a{bottom:331.701333pt;}
.y6e{bottom:332.001333pt;}
.yd9{bottom:339.192000pt;}
.y1b{bottom:339.280000pt;}
.yb2{bottom:341.184000pt;}
.yf5{bottom:343.684000pt;}
.y10f{bottom:346.221333pt;}
.y99{bottom:347.641333pt;}
.y6d{bottom:347.942667pt;}
.y133{bottom:352.954667pt;}
.yd8{bottom:355.132000pt;}
.yb1{bottom:357.124000pt;}
.yf4{bottom:359.624000pt;}
.y10e{bottom:362.161333pt;}
.y6c{bottom:363.882667pt;}
.yd7{bottom:371.072000pt;}
.yb0{bottom:373.064000pt;}
.yf3{bottom:375.564000pt;}
.y10d{bottom:378.101333pt;}
.y98{bottom:379.521333pt;}
.y6b{bottom:379.822667pt;}
.y1a{bottom:383.208000pt;}
.yd6{bottom:387.012000pt;}
.yf2{bottom:391.505333pt;}
.y10c{bottom:394.041333pt;}
.y97{bottom:395.462667pt;}
.y6a{bottom:395.762667pt;}
.y19{bottom:397.820000pt;}
.yaf{bottom:398.858667pt;}
.yf1{bottom:407.445333pt;}
.y10b{bottom:409.981333pt;}
.y96{bottom:411.402667pt;}
.y69{bottom:411.702667pt;}
.y18{bottom:412.432000pt;}
.yd5{bottom:413.580000pt;}
.yae{bottom:414.798667pt;}
.yc2{bottom:419.242667pt;}
.yf0{bottom:423.385333pt;}
.y4b{bottom:425.922667pt;}
.y17{bottom:427.044000pt;}
.y68{bottom:427.642667pt;}
.yd4{bottom:429.520000pt;}
.yc1{bottom:435.184000pt;}
.y132{bottom:437.969333pt;}
.yef{bottom:439.325333pt;}
.yad{bottom:440.593333pt;}
.y16{bottom:441.656000pt;}
.y4a{bottom:441.862667pt;}
.y95{bottom:443.282667pt;}
.y67{bottom:443.584000pt;}
.y57{bottom:451.124000pt;}
.y131{bottom:453.909333pt;}
.yee{bottom:455.265333pt;}
.yd3{bottom:456.086667pt;}
.y15{bottom:456.268000pt;}
.yac{bottom:456.533333pt;}
.y10a{bottom:457.802667pt;}
.y94{bottom:459.222667pt;}
.y66{bottom:459.524000pt;}
.y56{bottom:467.064000pt;}
.y14{bottom:470.880000pt;}
.y49{bottom:470.957333pt;}
.yed{bottom:471.206667pt;}
.yd2{bottom:472.026667pt;}
.y65{bottom:475.464000pt;}
.y130{bottom:480.477333pt;}
.yab{bottom:482.328000pt;}
.y55{bottom:483.004000pt;}
.y13{bottom:485.490667pt;}
.y109{bottom:486.897333pt;}
.yec{bottom:487.146667pt;}
.yd1{bottom:487.968000pt;}
.y93{bottom:491.104000pt;}
.y12f{bottom:496.417333pt;}
.y54{bottom:498.944000pt;}
.y12{bottom:500.102667pt;}
.yeb{bottom:503.086667pt;}
.yd0{bottom:503.908000pt;}
.y92{bottom:507.044000pt;}
.y64{bottom:507.344000pt;}
.yaa{bottom:508.121333pt;}
.y12e{bottom:512.357333pt;}
.y11{bottom:514.714667pt;}
.y48{bottom:514.884000pt;}
.y91{bottom:522.984000pt;}
.y10{bottom:529.326667pt;}
.yea{bottom:529.653333pt;}
.ycf{bottom:530.474667pt;}
.y47{bottom:530.825333pt;}
.ya9{bottom:533.916000pt;}
.y12d{bottom:538.924000pt;}
.yf{bottom:543.938667pt;}
.yce{bottom:546.414667pt;}
.y46{bottom:546.765333pt;}
.y90{bottom:554.864000pt;}
.ye{bottom:558.550667pt;}
.ya8{bottom:559.710667pt;}
.ycd{bottom:562.354667pt;}
.y45{bottom:562.705333pt;}
.y12c{bottom:565.490667pt;}
.y8f{bottom:570.805333pt;}
.ye9{bottom:572.086667pt;}
.yd{bottom:573.162667pt;}
.ycc{bottom:578.296000pt;}
.y44{bottom:578.645333pt;}
.y12b{bottom:581.432000pt;}
.ya7{bottom:585.504000pt;}
.yc{bottom:587.774667pt;}
.ycb{bottom:594.236000pt;}
.y43{bottom:594.585333pt;}
.y8e{bottom:597.372000pt;}
.yb{bottom:602.386667pt;}
.y12a{bottom:607.998667pt;}
.yca{bottom:610.176000pt;}
.y42{bottom:610.526667pt;}
.ya{bottom:616.998667pt;}
.y8d{bottom:623.938667pt;}
.y41{bottom:626.466667pt;}
.y9{bottom:631.609333pt;}
.y129{bottom:639.878667pt;}
.y40{bottom:642.406667pt;}
.y8c{bottom:650.505333pt;}
.y8{bottom:652.432000pt;}
.yc9{bottom:652.609333pt;}
.y3f{bottom:658.346667pt;}
.y128{bottom:666.446667pt;}
.y3e{bottom:674.286667pt;}
.y8b{bottom:677.073333pt;}
.y7{bottom:680.328000pt;}
.y127{bottom:682.386667pt;}
.y3d{bottom:690.226667pt;}
.y8a{bottom:703.640000pt;}
.y6{bottom:704.709333pt;}
.y3c{bottom:706.168000pt;}
.y126{bottom:708.953333pt;}
.y5{bottom:717.521333pt;}
.y3b{bottom:722.108000pt;}
.y125{bottom:724.893333pt;}
.y89{bottom:730.206667pt;}
.y3a{bottom:738.048000pt;}
.y124{bottom:740.833333pt;}
.y4{bottom:741.902667pt;}
.y39{bottom:753.988000pt;}
.y88{bottom:756.773333pt;}
.y123{bottom:767.401333pt;}
.y38{bottom:769.928000pt;}
.y87{bottom:772.714667pt;}
.y3{bottom:774.640000pt;}
.y122{bottom:783.341333pt;}
.y37{bottom:785.868000pt;}
.y86{bottom:788.654667pt;}
.y121{bottom:799.281333pt;}
.y36{bottom:801.809333pt;}
.y85{bottom:804.594667pt;}
.y35{bottom:817.749333pt;}
.y84{bottom:820.534667pt;}
.y120{bottom:825.848000pt;}
.y2{bottom:833.088000pt;}
.y34{bottom:833.689333pt;}
.y83{bottom:836.474667pt;}
.y11f{bottom:841.788000pt;}
.y33{bottom:849.629333pt;}
.y82{bottom:852.416000pt;}
.y11e{bottom:857.729333pt;}
.y1{bottom:862.312000pt;}
.y32{bottom:865.569333pt;}
.y81{bottom:868.356000pt;}
.y31{bottom:881.509333pt;}
.y63{bottom:884.296000pt;}
.y30{bottom:897.450667pt;}
.y62{bottom:900.236000pt;}
.y2f{bottom:913.390667pt;}
.y2e{bottom:929.330667pt;}
.h3{height:29.499627pt;}
.h5{height:33.473067pt;}
.h6{height:35.864000pt;}
.h8{height:39.852000pt;}
.h1{height:44.632000pt;}
.h4{height:45.588400pt;}
.h2{height:52.640960pt;}
.h7{height:53.558400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:113.385333pt;}
.x1{left:114.597333pt;}
.x14{left:120.028000pt;}
.xc{left:133.310667pt;}
.x15{left:140.690667pt;}
.xa{left:146.594667pt;}
.x13{left:151.366667pt;}
.x9{left:165.025333pt;}
.x6{left:179.445333pt;}
.x10{left:188.985333pt;}
.x12{left:202.333333pt;}
.xd{left:207.950667pt;}
.x11{left:210.100000pt;}
.x7{left:233.793333pt;}
.xf{left:241.186667pt;}
.x3{left:245.617333pt;}
.x5{left:248.353333pt;}
.x4{left:290.326667pt;}
.x2{left:297.384000pt;}
.xe{left:299.589333pt;}
.x8{left:371.492000pt;}
}




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