
    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_8bab61561ee4101e948fa2b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_ed542cb3fa6b6f8318832ee8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976603;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_9b8bf7bee7a7899a0b32a73a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_1cfe12f83d51ce9be30158fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_9c97bdc58dbac65d5633883b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_e19b1ed2923ea0e2ad41d402.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_4a8740b6d7ea3455a53a3ead.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_84789497484359bf07799a0f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_7558ae4b2dff6879cfd07b49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_539949f81b7a599147d46f1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_5287562c7ee67f3c02508d6a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964852;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_aa70d99b99c5e9f533ecda26.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964844;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_98bd2c516dfa43ea9aa24537.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_50c9a6938a9f70375555554f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.925781;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls11{letter-spacing:-7.236000px;}
.ls10{letter-spacing:-3.240000px;}
.lsf{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.691200px;}
.lsd{letter-spacing:-0.672000px;}
.ls9{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.408000px;}
.ls5{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.192390px;}
.ls7{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.025800px;}
.ls0{letter-spacing:42.659364px;}
.lsb{letter-spacing:764.991792px;}
.lsc{letter-spacing:764.992392px;}
.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;}
}
.ws9d{word-spacing:-60.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsa9{word-spacing:-16.434000px;}
.ws6{word-spacing:-14.940000px;}
.ws2b{word-spacing:-14.880000px;}
.ws51{word-spacing:-14.700000px;}
.ws2a{word-spacing:-14.400000px;}
.ws2c{word-spacing:-14.340000px;}
.ws8b{word-spacing:-14.280000px;}
.ws9{word-spacing:-14.100000px;}
.ws8c{word-spacing:-13.446000px;}
.wsaa{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.230000px;}
.wsb{word-spacing:-12.150000px;}
.ws70{word-spacing:-11.904000px;}
.wsa{word-spacing:-11.772000px;}
.ws4{word-spacing:-10.896000px;}
.ws29{word-spacing:-10.800000px;}
.wsc{word-spacing:-10.464000px;}
.ws8d{word-spacing:-10.206000px;}
.ws5{word-spacing:-9.417600px;}
.ws2{word-spacing:-9.350154px;}
.ws3{word-spacing:-9.156000px;}
.ws9c{word-spacing:-8.675040px;}
.wsb7{word-spacing:-6.858000px;}
.ws8e{word-spacing:-6.210000px;}
.ws85{word-spacing:-3.660000px;}
.ws3b{word-spacing:-3.600000px;}
.ws95{word-spacing:-3.180000px;}
.ws4e{word-spacing:-2.640000px;}
.wsbd{word-spacing:-2.592000px;}
.ws38{word-spacing:-2.520000px;}
.ws45{word-spacing:-2.400000px;}
.wsf{word-spacing:-2.376000px;}
.ws86{word-spacing:-2.340000px;}
.wsa0{word-spacing:-2.280000px;}
.ws8a{word-spacing:-2.160000px;}
.ws30{word-spacing:-2.100000px;}
.ws39{word-spacing:-1.980000px;}
.wsb8{word-spacing:-1.728000px;}
.wsad{word-spacing:-1.512000px;}
.ws2d{word-spacing:-1.500000px;}
.ws46{word-spacing:-1.440000px;}
.wsc9{word-spacing:-1.350000px;}
.ws5e{word-spacing:-1.320000px;}
.ws2e{word-spacing:-1.260000px;}
.ws26{word-spacing:-1.200000px;}
.ws5b{word-spacing:-1.140000px;}
.wsa7{word-spacing:-1.020000px;}
.ws7c{word-spacing:-0.900000px;}
.ws84{word-spacing:-0.864000px;}
.ws7d{word-spacing:-0.840000px;}
.ws3d{word-spacing:-0.780000px;}
.ws24{word-spacing:-0.720000px;}
.ws21{word-spacing:-0.600000px;}
.ws7b{word-spacing:-0.360000px;}
.ws3e{word-spacing:-0.300000px;}
.ws42{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.wsd{word-spacing:0.000000px;}
.ws33{word-spacing:0.060000px;}
.wsba{word-spacing:0.108000px;}
.ws91{word-spacing:0.180000px;}
.ws63{word-spacing:0.240000px;}
.ws3a{word-spacing:0.300000px;}
.ws3c{word-spacing:0.360000px;}
.wsac{word-spacing:0.378000px;}
.wse{word-spacing:0.408000px;}
.ws83{word-spacing:0.480000px;}
.wsa6{word-spacing:0.540000px;}
.wsce{word-spacing:0.594000px;}
.ws1f{word-spacing:0.600000px;}
.ws11{word-spacing:0.691200px;}
.ws82{word-spacing:0.702000px;}
.ws48{word-spacing:0.720000px;}
.ws81{word-spacing:0.756000px;}
.ws5f{word-spacing:0.780000px;}
.ws8f{word-spacing:0.840000px;}
.ws18{word-spacing:0.864000px;}
.wsaf{word-spacing:0.918000px;}
.ws31{word-spacing:1.080000px;}
.ws77{word-spacing:1.260000px;}
.wsa8{word-spacing:1.320000px;}
.ws49{word-spacing:1.380000px;}
.wsab{word-spacing:1.458000px;}
.ws64{word-spacing:1.680000px;}
.wsc3{word-spacing:1.728000px;}
.ws7f{word-spacing:1.740000px;}
.ws23{word-spacing:1.860000px;}
.ws62{word-spacing:1.920000px;}
.wsb3{word-spacing:2.322000px;}
.ws2f{word-spacing:2.340000px;}
.ws47{word-spacing:2.400000px;}
.ws22{word-spacing:2.460000px;}
.wsb2{word-spacing:2.538000px;}
.ws19{word-spacing:2.646000px;}
.wsbc{word-spacing:2.808000px;}
.ws80{word-spacing:2.820000px;}
.ws16{word-spacing:3.024000px;}
.ws87{word-spacing:3.180000px;}
.ws99{word-spacing:3.348000px;}
.ws32{word-spacing:3.420000px;}
.ws7e{word-spacing:3.480000px;}
.ws5a{word-spacing:3.600000px;}
.ws89{word-spacing:3.888000px;}
.ws88{word-spacing:3.942000px;}
.ws4d{word-spacing:3.960000px;}
.ws66{word-spacing:4.020000px;}
.ws27{word-spacing:4.080000px;}
.wsb0{word-spacing:4.104000px;}
.wsa1{word-spacing:4.140000px;}
.ws78{word-spacing:4.200000px;}
.wsc1{word-spacing:4.374000px;}
.ws4c{word-spacing:4.440000px;}
.ws34{word-spacing:4.560000px;}
.ws9f{word-spacing:4.680000px;}
.ws12{word-spacing:4.752000px;}
.ws41{word-spacing:4.800000px;}
.ws13{word-spacing:4.806000px;}
.ws43{word-spacing:4.860000px;}
.wsca{word-spacing:4.914000px;}
.ws60{word-spacing:4.980000px;}
.ws44{word-spacing:5.040000px;}
.ws15{word-spacing:5.076000px;}
.ws7a{word-spacing:5.100000px;}
.wsae{word-spacing:5.130000px;}
.ws36{word-spacing:5.220000px;}
.wsb5{word-spacing:5.238000px;}
.ws37{word-spacing:5.280000px;}
.wsc5{word-spacing:5.346000px;}
.wsc0{word-spacing:5.454000px;}
.ws1d{word-spacing:5.460000px;}
.ws9b{word-spacing:5.562000px;}
.ws9e{word-spacing:5.580000px;}
.ws9a{word-spacing:5.616000px;}
.ws20{word-spacing:5.640000px;}
.ws50{word-spacing:5.760000px;}
.ws14{word-spacing:5.886000px;}
.ws65{word-spacing:5.940000px;}
.ws68{word-spacing:6.120000px;}
.ws67{word-spacing:6.180000px;}
.ws1a{word-spacing:6.264000px;}
.ws94{word-spacing:6.600000px;}
.ws90{word-spacing:6.660000px;}
.ws73{word-spacing:6.780000px;}
.ws74{word-spacing:6.900000px;}
.ws40{word-spacing:7.020000px;}
.ws4f{word-spacing:7.080000px;}
.ws3f{word-spacing:7.140000px;}
.wscf{word-spacing:7.182000px;}
.ws1c{word-spacing:7.260000px;}
.ws5d{word-spacing:7.380000px;}
.wsb6{word-spacing:7.506000px;}
.ws79{word-spacing:7.620000px;}
.ws4a{word-spacing:7.680000px;}
.ws93{word-spacing:7.740000px;}
.ws92{word-spacing:7.800000px;}
.ws17{word-spacing:7.938000px;}
.ws61{word-spacing:7.980000px;}
.ws25{word-spacing:8.040000px;}
.wsc2{word-spacing:8.100000px;}
.wsb9{word-spacing:8.424000px;}
.ws59{word-spacing:8.460000px;}
.ws1e{word-spacing:8.580000px;}
.ws98{word-spacing:8.856000px;}
.ws97{word-spacing:8.964000px;}
.ws96{word-spacing:9.018000px;}
.wsb4{word-spacing:9.180000px;}
.wsc7{word-spacing:9.342000px;}
.ws76{word-spacing:9.420000px;}
.wsc6{word-spacing:9.450000px;}
.ws75{word-spacing:9.540000px;}
.ws5c{word-spacing:10.200000px;}
.wsbe{word-spacing:10.476000px;}
.wscd{word-spacing:11.124000px;}
.wsa5{word-spacing:11.160000px;}
.wsa4{word-spacing:11.280000px;}
.wsa3{word-spacing:11.340000px;}
.wsa2{word-spacing:11.700000px;}
.ws35{word-spacing:12.360000px;}
.ws1b{word-spacing:12.540000px;}
.wsc4{word-spacing:13.446000px;}
.ws6a{word-spacing:13.662000px;}
.ws69{word-spacing:13.770000px;}
.wsc8{word-spacing:15.012000px;}
.ws28{word-spacing:15.300000px;}
.wscc{word-spacing:15.822000px;}
.wsb1{word-spacing:16.038000px;}
.wsbf{word-spacing:16.416000px;}
.wsbb{word-spacing:16.794000px;}
.ws4b{word-spacing:18.720000px;}
.wscb{word-spacing:19.116000px;}
.ws0{word-spacing:33.512895px;}
.ws1{word-spacing:33.513495px;}
.ws6d{word-spacing:107.672400px;}
.ws6b{word-spacing:178.533600px;}
.ws6c{word-spacing:274.471800px;}
.ws6e{word-spacing:274.648200px;}
.ws72{word-spacing:333.909000px;}
.ws55{word-spacing:346.923600px;}
.ws71{word-spacing:347.521800px;}
.ws6f{word-spacing:356.863200px;}
.ws58{word-spacing:357.766800px;}
.ws57{word-spacing:360.901200px;}
.ws56{word-spacing:360.937200px;}
.ws54{word-spacing:481.126800px;}
.ws53{word-spacing:493.605000px;}
.ws52{word-spacing:694.486200px;}
._8{margin-left:-10.572000px;}
._9{margin-left:-9.140361px;}
._2d{margin-left:-7.750200px;}
._d{margin-left:-6.618000px;}
._2{margin-left:-4.801800px;}
._6{margin-left:-3.584361px;}
._3{margin-left:-2.328039px;}
._0{margin-left:-1.203600px;}
._1{width:1.183200px;}
._b{width:2.616000px;}
._5{width:3.643800px;}
._7{width:4.986000px;}
._e{width:6.102000px;}
._c{width:7.740000px;}
._2e{width:9.113400px;}
._a{width:11.756400px;}
._1c{width:13.380000px;}
._30{width:19.688400px;}
._31{width:20.692200px;}
._32{width:21.732639px;}
._4{width:36.624000px;}
._2f{width:43.137000px;}
._27{width:55.686600px;}
._24{width:110.523600px;}
._2c{width:124.566000px;}
._23{width:137.428800px;}
._2b{width:158.824200px;}
._25{width:167.232600px;}
._28{width:179.712600px;}
._22{width:189.069000px;}
._26{width:207.713400px;}
._1d{width:213.901761px;}
._21{width:219.496800px;}
._20{width:220.858761px;}
._1f{width:228.529161px;}
._1e{width:235.379361px;}
._2a{width:289.788600px;}
._29{width:297.853800px;}
._1b{width:617.527200px;}
._13{width:724.531200px;}
._1a{width:755.191200px;}
._18{width:796.387200px;}
._16{width:805.123200px;}
._19{width:811.159200px;}
._17{width:827.959200px;}
._15{width:830.275200px;}
._12{width:841.255200px;}
._10{width:849.223200px;}
._14{width:851.194800px;}
._f{width:903.367800px;}
._11{width:913.258800px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.yb2{bottom:113.078700px;}
.y68{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.yf{bottom:117.875550px;}
.y7c{bottom:118.379550px;}
.yab{bottom:119.017350px;}
.ye{bottom:132.275550px;}
.yaa{bottom:134.017350px;}
.yb1{bottom:134.078700px;}
.y67{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.yba{bottom:140.686950px;}
.y7b{bottom:140.985750px;}
.yd{bottom:146.675550px;}
.ya9{bottom:149.017350px;}
.yb0{bottom:155.078700px;}
.y66{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.yb9{bottom:160.486950px;}
.yc{bottom:161.075550px;}
.y7a{bottom:163.592100px;}
.ya8{bottom:164.017350px;}
.ye0{bottom:176.078700px;}
.y28{bottom:180.212700px;}
.yb8{bottom:180.286950px;}
.yc2{bottom:181.529400px;}
.y79{bottom:186.198450px;}
.ya7{bottom:187.899150px;}
.y65{bottom:190.441050px;}
.yaf{bottom:197.078700px;}
.y37{bottom:199.392600px;}
.yb7{bottom:200.086950px;}
.y27{bottom:201.212700px;}
.ya6{bottom:202.899150px;}
.y78{bottom:208.804650px;}
.y36{bottom:217.392600px;}
.yae{bottom:218.078700px;}
.yc1{bottom:218.078850px;}
.y26{bottom:222.212700px;}
.ya5{bottom:226.781100px;}
.y77{bottom:231.411000px;}
.y35{bottom:235.392600px;}
.yad{bottom:239.078700px;}
.y64{bottom:239.078850px;}
.ya4{bottom:241.781100px;}
.y25{bottom:243.212700px;}
.yc0{bottom:244.529400px;}
.y34{bottom:253.392600px;}
.y76{bottom:254.017350px;}
.ya3{bottom:256.781100px;}
.ydf{bottom:260.078700px;}
.y63{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y33{bottom:271.392600px;}
.yac{bottom:271.455750px;}
.ya2{bottom:271.781100px;}
.y75{bottom:276.623550px;}
.yde{bottom:281.078700px;}
.y62{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y32{bottom:289.392600px;}
.ya1{bottom:295.662900px;}
.y74{bottom:299.229900px;}
.ydd{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y31{bottom:307.392600px;}
.ybf{bottom:307.937100px;}
.ya0{bottom:310.662900px;}
.y73{bottom:321.836250px;}
.ydc{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y30{bottom:325.392600px;}
.y21{bottom:327.212700px;}
.yb6{bottom:327.836100px;}
.y9f{bottom:334.544850px;}
.ybe{bottom:337.441050px;}
.ydb{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.y72{bottom:344.442450px;}
.yb5{bottom:347.636100px;}
.y20{bottom:348.212700px;}
.y9e{bottom:349.544850px;}
.y2f{bottom:360.400500px;}
.y9d{bottom:364.544850px;}
.yda{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.y71{bottom:367.048800px;}
.yb4{bottom:367.436100px;}
.y1f{bottom:369.212700px;}
.y2e{bottom:378.400500px;}
.yd9{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.yb3{bottom:387.236100px;}
.y9c{bottom:388.426800px;}
.y70{bottom:389.655150px;}
.y1e{bottom:390.212700px;}
.y2d{bottom:396.400500px;}
.yd8{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.y6f{bottom:412.261350px;}
.y9b{bottom:412.308600px;}
.y2c{bottom:414.400500px;}
.y1d{bottom:426.300450px;}
.y9a{bottom:427.308600px;}
.yd7{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.y6e{bottom:434.867700px;}
.y99{bottom:442.308600px;}
.yd6{bottom:449.078700px;}
.ye3{bottom:449.078850px;}
.y6d{bottom:457.474050px;}
.y5a{bottom:462.513600px;}
.ybd{bottom:463.441050px;}
.y98{bottom:466.190550px;}
.yd5{bottom:470.078700px;}
.ye2{bottom:470.078850px;}
.y6c{bottom:487.955850px;}
.y97{bottom:490.072350px;}
.yd4{bottom:491.078700px;}
.ye1{bottom:491.078850px;}
.y59{bottom:494.811150px;}
.y1c{bottom:506.827950px;}
.y6b{bottom:507.755850px;}
.yd3{bottom:512.078700px;}
.ybc{bottom:512.078850px;}
.y96{bottom:520.554300px;}
.yd2{bottom:533.078700px;}
.ybb{bottom:533.078850px;}
.y95{bottom:540.354300px;}
.y1b{bottom:547.887900px;}
.yd1{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.y1a{bottom:567.687900px;}
.y57{bottom:575.078850px;}
.y19{bottom:587.487900px;}
.yd0{bottom:589.440900px;}
.y94{bottom:596.078550px;}
.y56{bottom:596.078850px;}
.y18{bottom:607.287900px;}
.y93{bottom:617.078550px;}
.y55{bottom:617.078850px;}
.y17{bottom:627.087900px;}
.y6a{bottom:630.513600px;}
.y92{bottom:638.078550px;}
.ycf{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.y16{bottom:646.887900px;}
.y91{bottom:659.078550px;}
.yce{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.y69{bottom:662.811150px;}
.y15{bottom:666.687900px;}
.y90{bottom:680.078550px;}
.y52{bottom:680.078850px;}
.ycd{bottom:685.529250px;}
.y14{bottom:686.487900px;}
.y8f{bottom:701.078550px;}
.y51{bottom:701.078850px;}
.y13{bottom:706.287900px;}
.y8e{bottom:722.078550px;}
.ycc{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.y12{bottom:726.087900px;}
.y8d{bottom:743.078550px;}
.ycb{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.y11{bottom:757.185300px;}
.y8c{bottom:764.078550px;}
.yca{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.y8b{bottom:785.078550px;}
.yc9{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.y8a{bottom:806.078550px;}
.yc8{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.yc7{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yb{bottom:836.466750px;}
.y89{bottom:841.440900px;}
.yc6{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.ya{bottom:854.466750px;}
.y49{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.yc5{bottom:874.529250px;}
.y88{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.y7{bottom:908.466750px;}
.y87{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.y86{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.y85{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y84{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y83{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.yc4{bottom:1000.529250px;}
.y82{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y81{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.y80{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.y7f{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y7e{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.y10{bottom:1109.815500px;}
.y7d{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.yc3{bottom:1125.451650px;}
.y39{bottom:1155.615300px;}
.y38{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h14{height:36.972000px;}
.h2{height:38.039062px;}
.h12{height:38.226562px;}
.h10{height:38.273438px;}
.h13{height:38.507812px;}
.h5{height:38.531250px;}
.h15{height:39.000000px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.h9{height:43.321289px;}
.ha{height:43.875000px;}
.h8{height:45.615234px;}
.hc{height:48.134766px;}
.hd{height:48.750000px;}
.h16{height:49.218750px;}
.h11{height:50.176758px;}
.h4{height:52.948242px;}
.hb{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xf{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x10{left:130.125600px;}
.x30{left:215.352000px;}
.x19{left:216.452400px;}
.xe{left:219.028200px;}
.x11{left:222.353850px;}
.x26{left:223.669350px;}
.x27{left:226.320750px;}
.x37{left:232.057050px;}
.x1a{left:253.138800px;}
.x5{left:300.189000px;}
.xc{left:317.196750px;}
.x31{left:338.457000px;}
.x1b{left:339.532200px;}
.x12{left:341.395350px;}
.x13{left:344.316300px;}
.x14{left:347.149350px;}
.x28{left:348.499950px;}
.x38{left:359.588700px;}
.x21{left:367.396350px;}
.x29{left:372.611250px;}
.x39{left:374.366100px;}
.x4{left:396.050700px;}
.x1c{left:462.263850px;}
.x32{left:464.397750px;}
.x15{left:466.026750px;}
.x3a{left:471.358800px;}
.x22{left:472.694700px;}
.x2a{left:474.760050px;}
.x33{left:488.972100px;}
.x2b{left:491.494500px;}
.x1d{left:499.752900px;}
.x3b{left:508.647750px;}
.x16{left:585.681450px;}
.x34{left:591.233250px;}
.x23{left:599.729250px;}
.x2c{left:601.701000px;}
.x3c{left:602.934300px;}
.x1e{left:605.062800px;}
.x35{left:607.657050px;}
.x2d{left:611.884500px;}
.x3d{left:620.755650px;}
.xa{left:648.686550px;}
.x9{left:680.081100px;}
.x20{left:704.125950px;}
.x2e{left:710.054400px;}
.x17{left:711.404550px;}
.x24{left:713.856600px;}
.x3e{left:716.449500px;}
.x25{left:717.565650px;}
.x2f{left:719.630250px;}
.x3f{left:722.282400px;}
.x1f{left:724.117950px;}
.x36{left:729.208200px;}
.x18{left:744.594900px;}
.x1{left:807.210300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls11{letter-spacing:-6.432000pt;}
.ls10{letter-spacing:-2.880000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.614400pt;}
.lsd{letter-spacing:-0.597333pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls5{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.171013pt;}
.ls7{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.022933pt;}
.ls0{letter-spacing:37.919435pt;}
.lsb{letter-spacing:679.992704pt;}
.lsc{letter-spacing:679.993237pt;}
.ws9d{word-spacing:-53.333333pt;}
.ws8{word-spacing:-15.936000pt;}
.wsa9{word-spacing:-14.608000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2b{word-spacing:-13.226667pt;}
.ws51{word-spacing:-13.066667pt;}
.ws2a{word-spacing:-12.800000pt;}
.ws2c{word-spacing:-12.746667pt;}
.ws8b{word-spacing:-12.693333pt;}
.ws9{word-spacing:-12.533333pt;}
.ws8c{word-spacing:-11.952000pt;}
.wsaa{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.760000pt;}
.wsb{word-spacing:-10.800000pt;}
.ws70{word-spacing:-10.581333pt;}
.wsa{word-spacing:-10.464000pt;}
.ws4{word-spacing:-9.685333pt;}
.ws29{word-spacing:-9.600000pt;}
.wsc{word-spacing:-9.301333pt;}
.ws8d{word-spacing:-9.072000pt;}
.ws5{word-spacing:-8.371200pt;}
.ws2{word-spacing:-8.311248pt;}
.ws3{word-spacing:-8.138667pt;}
.ws9c{word-spacing:-7.711147pt;}
.wsb7{word-spacing:-6.096000pt;}
.ws8e{word-spacing:-5.520000pt;}
.ws85{word-spacing:-3.253333pt;}
.ws3b{word-spacing:-3.200000pt;}
.ws95{word-spacing:-2.826667pt;}
.ws4e{word-spacing:-2.346667pt;}
.wsbd{word-spacing:-2.304000pt;}
.ws38{word-spacing:-2.240000pt;}
.ws45{word-spacing:-2.133333pt;}
.wsf{word-spacing:-2.112000pt;}
.ws86{word-spacing:-2.080000pt;}
.wsa0{word-spacing:-2.026667pt;}
.ws8a{word-spacing:-1.920000pt;}
.ws30{word-spacing:-1.866667pt;}
.ws39{word-spacing:-1.760000pt;}
.wsb8{word-spacing:-1.536000pt;}
.wsad{word-spacing:-1.344000pt;}
.ws2d{word-spacing:-1.333333pt;}
.ws46{word-spacing:-1.280000pt;}
.wsc9{word-spacing:-1.200000pt;}
.ws5e{word-spacing:-1.173333pt;}
.ws2e{word-spacing:-1.120000pt;}
.ws26{word-spacing:-1.066667pt;}
.ws5b{word-spacing:-1.013333pt;}
.wsa7{word-spacing:-0.906667pt;}
.ws7c{word-spacing:-0.800000pt;}
.ws84{word-spacing:-0.768000pt;}
.ws7d{word-spacing:-0.746667pt;}
.ws3d{word-spacing:-0.693333pt;}
.ws24{word-spacing:-0.640000pt;}
.ws21{word-spacing:-0.533333pt;}
.ws7b{word-spacing:-0.320000pt;}
.ws3e{word-spacing:-0.266667pt;}
.ws42{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.wsd{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053333pt;}
.wsba{word-spacing:0.096000pt;}
.ws91{word-spacing:0.160000pt;}
.ws63{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.266667pt;}
.ws3c{word-spacing:0.320000pt;}
.wsac{word-spacing:0.336000pt;}
.wse{word-spacing:0.362667pt;}
.ws83{word-spacing:0.426667pt;}
.wsa6{word-spacing:0.480000pt;}
.wsce{word-spacing:0.528000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws11{word-spacing:0.614400pt;}
.ws82{word-spacing:0.624000pt;}
.ws48{word-spacing:0.640000pt;}
.ws81{word-spacing:0.672000pt;}
.ws5f{word-spacing:0.693333pt;}
.ws8f{word-spacing:0.746667pt;}
.ws18{word-spacing:0.768000pt;}
.wsaf{word-spacing:0.816000pt;}
.ws31{word-spacing:0.960000pt;}
.ws77{word-spacing:1.120000pt;}
.wsa8{word-spacing:1.173333pt;}
.ws49{word-spacing:1.226667pt;}
.wsab{word-spacing:1.296000pt;}
.ws64{word-spacing:1.493333pt;}
.wsc3{word-spacing:1.536000pt;}
.ws7f{word-spacing:1.546667pt;}
.ws23{word-spacing:1.653333pt;}
.ws62{word-spacing:1.706667pt;}
.wsb3{word-spacing:2.064000pt;}
.ws2f{word-spacing:2.080000pt;}
.ws47{word-spacing:2.133333pt;}
.ws22{word-spacing:2.186667pt;}
.wsb2{word-spacing:2.256000pt;}
.ws19{word-spacing:2.352000pt;}
.wsbc{word-spacing:2.496000pt;}
.ws80{word-spacing:2.506667pt;}
.ws16{word-spacing:2.688000pt;}
.ws87{word-spacing:2.826667pt;}
.ws99{word-spacing:2.976000pt;}
.ws32{word-spacing:3.040000pt;}
.ws7e{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.200000pt;}
.ws89{word-spacing:3.456000pt;}
.ws88{word-spacing:3.504000pt;}
.ws4d{word-spacing:3.520000pt;}
.ws66{word-spacing:3.573333pt;}
.ws27{word-spacing:3.626667pt;}
.wsb0{word-spacing:3.648000pt;}
.wsa1{word-spacing:3.680000pt;}
.ws78{word-spacing:3.733333pt;}
.wsc1{word-spacing:3.888000pt;}
.ws4c{word-spacing:3.946667pt;}
.ws34{word-spacing:4.053333pt;}
.ws9f{word-spacing:4.160000pt;}
.ws12{word-spacing:4.224000pt;}
.ws41{word-spacing:4.266667pt;}
.ws13{word-spacing:4.272000pt;}
.ws43{word-spacing:4.320000pt;}
.wsca{word-spacing:4.368000pt;}
.ws60{word-spacing:4.426667pt;}
.ws44{word-spacing:4.480000pt;}
.ws15{word-spacing:4.512000pt;}
.ws7a{word-spacing:4.533333pt;}
.wsae{word-spacing:4.560000pt;}
.ws36{word-spacing:4.640000pt;}
.wsb5{word-spacing:4.656000pt;}
.ws37{word-spacing:4.693333pt;}
.wsc5{word-spacing:4.752000pt;}
.wsc0{word-spacing:4.848000pt;}
.ws1d{word-spacing:4.853333pt;}
.ws9b{word-spacing:4.944000pt;}
.ws9e{word-spacing:4.960000pt;}
.ws9a{word-spacing:4.992000pt;}
.ws20{word-spacing:5.013333pt;}
.ws50{word-spacing:5.120000pt;}
.ws14{word-spacing:5.232000pt;}
.ws65{word-spacing:5.280000pt;}
.ws68{word-spacing:5.440000pt;}
.ws67{word-spacing:5.493333pt;}
.ws1a{word-spacing:5.568000pt;}
.ws94{word-spacing:5.866667pt;}
.ws90{word-spacing:5.920000pt;}
.ws73{word-spacing:6.026667pt;}
.ws74{word-spacing:6.133333pt;}
.ws40{word-spacing:6.240000pt;}
.ws4f{word-spacing:6.293333pt;}
.ws3f{word-spacing:6.346667pt;}
.wscf{word-spacing:6.384000pt;}
.ws1c{word-spacing:6.453333pt;}
.ws5d{word-spacing:6.560000pt;}
.wsb6{word-spacing:6.672000pt;}
.ws79{word-spacing:6.773333pt;}
.ws4a{word-spacing:6.826667pt;}
.ws93{word-spacing:6.880000pt;}
.ws92{word-spacing:6.933333pt;}
.ws17{word-spacing:7.056000pt;}
.ws61{word-spacing:7.093333pt;}
.ws25{word-spacing:7.146667pt;}
.wsc2{word-spacing:7.200000pt;}
.wsb9{word-spacing:7.488000pt;}
.ws59{word-spacing:7.520000pt;}
.ws1e{word-spacing:7.626667pt;}
.ws98{word-spacing:7.872000pt;}
.ws97{word-spacing:7.968000pt;}
.ws96{word-spacing:8.016000pt;}
.wsb4{word-spacing:8.160000pt;}
.wsc7{word-spacing:8.304000pt;}
.ws76{word-spacing:8.373333pt;}
.wsc6{word-spacing:8.400000pt;}
.ws75{word-spacing:8.480000pt;}
.ws5c{word-spacing:9.066667pt;}
.wsbe{word-spacing:9.312000pt;}
.wscd{word-spacing:9.888000pt;}
.wsa5{word-spacing:9.920000pt;}
.wsa4{word-spacing:10.026667pt;}
.wsa3{word-spacing:10.080000pt;}
.wsa2{word-spacing:10.400000pt;}
.ws35{word-spacing:10.986667pt;}
.ws1b{word-spacing:11.146667pt;}
.wsc4{word-spacing:11.952000pt;}
.ws6a{word-spacing:12.144000pt;}
.ws69{word-spacing:12.240000pt;}
.wsc8{word-spacing:13.344000pt;}
.ws28{word-spacing:13.600000pt;}
.wscc{word-spacing:14.064000pt;}
.wsb1{word-spacing:14.256000pt;}
.wsbf{word-spacing:14.592000pt;}
.wsbb{word-spacing:14.928000pt;}
.ws4b{word-spacing:16.640000pt;}
.wscb{word-spacing:16.992000pt;}
.ws0{word-spacing:29.789240pt;}
.ws1{word-spacing:29.789773pt;}
.ws6d{word-spacing:95.708800pt;}
.ws6b{word-spacing:158.696533pt;}
.ws6c{word-spacing:243.974933pt;}
.ws6e{word-spacing:244.131733pt;}
.ws72{word-spacing:296.808000pt;}
.ws55{word-spacing:308.376533pt;}
.ws71{word-spacing:308.908267pt;}
.ws6f{word-spacing:317.211733pt;}
.ws58{word-spacing:318.014933pt;}
.ws57{word-spacing:320.801067pt;}
.ws56{word-spacing:320.833067pt;}
.ws54{word-spacing:427.668267pt;}
.ws53{word-spacing:438.760000pt;}
.ws52{word-spacing:617.321067pt;}
._8{margin-left:-9.397333pt;}
._9{margin-left:-8.124765pt;}
._2d{margin-left:-6.889067pt;}
._d{margin-left:-5.882667pt;}
._2{margin-left:-4.268267pt;}
._6{margin-left:-3.186099pt;}
._3{margin-left:-2.069368pt;}
._0{margin-left:-1.069867pt;}
._1{width:1.051733pt;}
._b{width:2.325333pt;}
._5{width:3.238933pt;}
._7{width:4.432000pt;}
._e{width:5.424000pt;}
._c{width:6.880000pt;}
._2e{width:8.100800pt;}
._a{width:10.450133pt;}
._1c{width:11.893333pt;}
._30{width:17.500800pt;}
._31{width:18.393067pt;}
._32{width:19.317901pt;}
._4{width:32.554667pt;}
._2f{width:38.344000pt;}
._27{width:49.499200pt;}
._24{width:98.243200pt;}
._2c{width:110.725333pt;}
._23{width:122.158933pt;}
._2b{width:141.177067pt;}
._25{width:148.651200pt;}
._28{width:159.744533pt;}
._22{width:168.061333pt;}
._26{width:184.634133pt;}
._1d{width:190.134899pt;}
._21{width:195.108267pt;}
._20{width:196.318899pt;}
._1f{width:203.137032pt;}
._1e{width:209.226099pt;}
._2a{width:257.589867pt;}
._29{width:264.758933pt;}
._1b{width:548.913067pt;}
._13{width:644.027733pt;}
._1a{width:671.281067pt;}
._18{width:707.899733pt;}
._16{width:715.665067pt;}
._19{width:721.030400pt;}
._17{width:735.963733pt;}
._15{width:738.022400pt;}
._12{width:747.782400pt;}
._10{width:754.865067pt;}
._14{width:756.617600pt;}
._f{width:802.993600pt;}
._11{width:811.785600pt;}
.fs9{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.yb2{bottom:100.514400pt;}
.y68{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.yf{bottom:104.778267pt;}
.y7c{bottom:105.226267pt;}
.yab{bottom:105.793200pt;}
.ye{bottom:117.578267pt;}
.yaa{bottom:119.126533pt;}
.yb1{bottom:119.181067pt;}
.y67{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.yba{bottom:125.055067pt;}
.y7b{bottom:125.320667pt;}
.yd{bottom:130.378267pt;}
.ya9{bottom:132.459867pt;}
.yb0{bottom:137.847733pt;}
.y66{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.yb9{bottom:142.655067pt;}
.yc{bottom:143.178267pt;}
.y7a{bottom:145.415200pt;}
.ya8{bottom:145.793200pt;}
.ye0{bottom:156.514400pt;}
.y28{bottom:160.189067pt;}
.yb8{bottom:160.255067pt;}
.yc2{bottom:161.359467pt;}
.y79{bottom:165.509733pt;}
.ya7{bottom:167.021467pt;}
.y65{bottom:169.280933pt;}
.yaf{bottom:175.181067pt;}
.y37{bottom:177.237867pt;}
.yb7{bottom:177.855067pt;}
.y27{bottom:178.855733pt;}
.ya6{bottom:180.354800pt;}
.y78{bottom:185.604133pt;}
.y36{bottom:193.237867pt;}
.yae{bottom:193.847733pt;}
.yc1{bottom:193.847867pt;}
.y26{bottom:197.522400pt;}
.ya5{bottom:201.583200pt;}
.y77{bottom:205.698667pt;}
.y35{bottom:209.237867pt;}
.yad{bottom:212.514400pt;}
.y64{bottom:212.514533pt;}
.ya4{bottom:214.916533pt;}
.y25{bottom:216.189067pt;}
.yc0{bottom:217.359467pt;}
.y34{bottom:225.237867pt;}
.y76{bottom:225.793200pt;}
.ya3{bottom:228.249867pt;}
.ydf{bottom:231.181067pt;}
.y63{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y33{bottom:241.237867pt;}
.yac{bottom:241.294000pt;}
.ya2{bottom:241.583200pt;}
.y75{bottom:245.887600pt;}
.yde{bottom:249.847733pt;}
.y62{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y32{bottom:257.237867pt;}
.ya1{bottom:262.811467pt;}
.y74{bottom:265.982133pt;}
.ydd{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y31{bottom:273.237867pt;}
.ybf{bottom:273.721867pt;}
.ya0{bottom:276.144800pt;}
.y73{bottom:286.076667pt;}
.ydc{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y30{bottom:289.237867pt;}
.y21{bottom:290.855733pt;}
.yb6{bottom:291.409867pt;}
.y9f{bottom:297.373200pt;}
.ybe{bottom:299.947600pt;}
.ydb{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.y72{bottom:306.171067pt;}
.yb5{bottom:309.009867pt;}
.y20{bottom:309.522400pt;}
.y9e{bottom:310.706533pt;}
.y2f{bottom:320.356000pt;}
.y9d{bottom:324.039867pt;}
.yda{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.y71{bottom:326.265600pt;}
.yb4{bottom:326.609867pt;}
.y1f{bottom:328.189067pt;}
.y2e{bottom:336.356000pt;}
.yd9{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.yb3{bottom:344.209867pt;}
.y9c{bottom:345.268267pt;}
.y70{bottom:346.360133pt;}
.y1e{bottom:346.855733pt;}
.y2d{bottom:352.356000pt;}
.yd8{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.y6f{bottom:366.454533pt;}
.y9b{bottom:366.496533pt;}
.y2c{bottom:368.356000pt;}
.y1d{bottom:378.933733pt;}
.y9a{bottom:379.829867pt;}
.yd7{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.y6e{bottom:386.549067pt;}
.y99{bottom:393.163200pt;}
.yd6{bottom:399.181067pt;}
.ye3{bottom:399.181200pt;}
.y6d{bottom:406.643600pt;}
.y5a{bottom:411.123200pt;}
.ybd{bottom:411.947600pt;}
.y98{bottom:414.391600pt;}
.yd5{bottom:417.847733pt;}
.ye2{bottom:417.847867pt;}
.y6c{bottom:433.738533pt;}
.y97{bottom:435.619867pt;}
.yd4{bottom:436.514400pt;}
.ye1{bottom:436.514533pt;}
.y59{bottom:439.832133pt;}
.y1c{bottom:450.513733pt;}
.y6b{bottom:451.338533pt;}
.yd3{bottom:455.181067pt;}
.ybc{bottom:455.181200pt;}
.y96{bottom:462.714933pt;}
.yd2{bottom:473.847733pt;}
.ybb{bottom:473.847867pt;}
.y95{bottom:480.314933pt;}
.y1b{bottom:487.011467pt;}
.yd1{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.y1a{bottom:504.611467pt;}
.y57{bottom:511.181200pt;}
.y19{bottom:522.211467pt;}
.yd0{bottom:523.947467pt;}
.y94{bottom:529.847600pt;}
.y56{bottom:529.847867pt;}
.y18{bottom:539.811467pt;}
.y93{bottom:548.514267pt;}
.y55{bottom:548.514533pt;}
.y17{bottom:557.411467pt;}
.y6a{bottom:560.456533pt;}
.y92{bottom:567.180933pt;}
.ycf{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.y16{bottom:575.011467pt;}
.y91{bottom:585.847600pt;}
.yce{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.y69{bottom:589.165467pt;}
.y15{bottom:592.611467pt;}
.y90{bottom:604.514267pt;}
.y52{bottom:604.514533pt;}
.ycd{bottom:609.359333pt;}
.y14{bottom:610.211467pt;}
.y8f{bottom:623.180933pt;}
.y51{bottom:623.181200pt;}
.y13{bottom:627.811467pt;}
.y8e{bottom:641.847600pt;}
.ycc{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.y12{bottom:645.411467pt;}
.y8d{bottom:660.514267pt;}
.ycb{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.y11{bottom:673.053600pt;}
.y8c{bottom:679.180933pt;}
.yca{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.y8b{bottom:697.847600pt;}
.yc9{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.y8a{bottom:716.514267pt;}
.yc8{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.yc7{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yb{bottom:743.526000pt;}
.y89{bottom:747.947467pt;}
.yc6{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.ya{bottom:759.526000pt;}
.y49{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.yc5{bottom:777.359333pt;}
.y88{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.y7{bottom:807.526000pt;}
.y87{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.y86{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.y85{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y84{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y83{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.yc4{bottom:889.359333pt;}
.y82{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y81{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.y80{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.y7f{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y7e{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.y10{bottom:986.502667pt;}
.y7d{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.yc3{bottom:1000.401467pt;}
.y39{bottom:1027.213600pt;}
.y38{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h14{height:32.864000pt;}
.h2{height:33.812500pt;}
.h12{height:33.979167pt;}
.h10{height:34.020833pt;}
.h13{height:34.229167pt;}
.h5{height:34.250000pt;}
.h15{height:34.666667pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.h9{height:38.507812pt;}
.ha{height:39.000000pt;}
.h8{height:40.546875pt;}
.hc{height:42.786458pt;}
.hd{height:43.333333pt;}
.h16{height:43.750000pt;}
.h11{height:44.601562pt;}
.h4{height:47.065104pt;}
.hb{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xf{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x10{left:115.667200pt;}
.x30{left:191.424000pt;}
.x19{left:192.402133pt;}
.xe{left:194.691733pt;}
.x11{left:197.647867pt;}
.x26{left:198.817200pt;}
.x27{left:201.174000pt;}
.x37{left:206.272933pt;}
.x1a{left:225.012267pt;}
.x5{left:266.834667pt;}
.xc{left:281.952667pt;}
.x31{left:300.850667pt;}
.x1b{left:301.806400pt;}
.x12{left:303.462533pt;}
.x13{left:306.058933pt;}
.x14{left:308.577200pt;}
.x28{left:309.777733pt;}
.x38{left:319.634400pt;}
.x21{left:326.574533pt;}
.x29{left:331.210000pt;}
.x39{left:332.769867pt;}
.x4{left:352.045067pt;}
.x1c{left:410.901200pt;}
.x32{left:412.798000pt;}
.x15{left:414.246000pt;}
.x3a{left:418.985600pt;}
.x22{left:420.173067pt;}
.x2a{left:422.008933pt;}
.x33{left:434.641867pt;}
.x2b{left:436.884000pt;}
.x1d{left:444.224800pt;}
.x3b{left:452.131333pt;}
.x16{left:520.605733pt;}
.x34{left:525.540667pt;}
.x23{left:533.092667pt;}
.x2c{left:534.845333pt;}
.x3c{left:535.941600pt;}
.x1e{left:537.833600pt;}
.x35{left:540.139600pt;}
.x2d{left:543.897333pt;}
.x3d{left:551.782800pt;}
.xa{left:576.610267pt;}
.x9{left:604.516533pt;}
.x20{left:625.889733pt;}
.x2e{left:631.159467pt;}
.x17{left:632.359600pt;}
.x24{left:634.539200pt;}
.x3e{left:636.844000pt;}
.x25{left:637.836133pt;}
.x2f{left:639.671333pt;}
.x3f{left:642.028800pt;}
.x1f{left:643.660400pt;}
.x36{left:648.185067pt;}
.x18{left:661.862133pt;}
.x1{left:717.520267pt;}
}




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