
    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_dadf5c915e01adac746b73a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_91ac80f071a4124676035a36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_d84cf768ea7daf487bb98909.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731000;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_6bcdfd4d755630ecb994a838.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949000;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_1224d0cee81011f5f77f3d0a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_966e593634cec0601a74d934.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_8dd0c193ca482f9cbb928230.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_3a767d72e1ad7b5b4d566ae7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.233000;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_bb42971bee132171d83db477.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_8970c21458f0ae39d44368cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040000;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_f5879641f73e60cb8abb3d02.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a0ee5e0592790b149c9e9097.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.010000;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;}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{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;}
.v1{vertical-align:18.675600px;}
.ls7{letter-spacing:-1.410000px;}
.ls5{letter-spacing:-0.282000px;}
.ls8{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls3{letter-spacing:-0.168000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000019px;}
.ls4{letter-spacing:0.222000px;}
.ls0{letter-spacing:2134.097755px;}
.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;}
}
.wsb1{word-spacing:-14.100000px;}
.wsb2{word-spacing:-12.900000px;}
.wsa9{word-spacing:-12.690000px;}
.ws1{word-spacing:-12.000000px;}
.ws82{word-spacing:-10.080000px;}
.ws8d{word-spacing:-8.880000px;}
.ws0{word-spacing:-8.658000px;}
.ws2{word-spacing:-8.400000px;}
.ws8e{word-spacing:-8.220300px;}
.ws92{word-spacing:-4.850400px;}
.ws99{word-spacing:-4.578000px;}
.wsac{word-spacing:-4.399200px;}
.ws47{word-spacing:-3.384000px;}
.ws74{word-spacing:-3.045600px;}
.ws27{word-spacing:-2.989200px;}
.ws28{word-spacing:-2.820000px;}
.ws41{word-spacing:-2.594400px;}
.ws8b{word-spacing:-2.538000px;}
.wsa7{word-spacing:-2.425200px;}
.ws6e{word-spacing:-2.368800px;}
.ws5b{word-spacing:-2.312400px;}
.ws11{word-spacing:-2.256000px;}
.ws55{word-spacing:-2.199600px;}
.ws58{word-spacing:-2.086800px;}
.ws2e{word-spacing:-2.030400px;}
.ws7e{word-spacing:-1.974000px;}
.ws17{word-spacing:-1.917600px;}
.ws4d{word-spacing:-1.861200px;}
.wsc{word-spacing:-1.804800px;}
.ws5e{word-spacing:-1.748400px;}
.ws2a{word-spacing:-1.635600px;}
.ws5a{word-spacing:-1.522800px;}
.ws81{word-spacing:-1.466400px;}
.ws21{word-spacing:-1.410000px;}
.ws96{word-spacing:-1.344000px;}
.ws50{word-spacing:-1.240800px;}
.ws53{word-spacing:-1.128000px;}
.ws7{word-spacing:-1.083600px;}
.ws46{word-spacing:-1.071600px;}
.ws73{word-spacing:-0.846000px;}
.wsb{word-spacing:-0.789600px;}
.ws6a{word-spacing:-0.733200px;}
.wsb9{word-spacing:-0.705600px;}
.ws7c{word-spacing:-0.676800px;}
.ws33{word-spacing:-0.620400px;}
.wsbb{word-spacing:-0.604800px;}
.ws63{word-spacing:-0.564000px;}
.ws3d{word-spacing:-0.546000px;}
.ws2b{word-spacing:-0.507600px;}
.ws5c{word-spacing:-0.451200px;}
.ws1a{word-spacing:-0.444000px;}
.ws39{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.338400px;}
.ws72{word-spacing:-0.282000px;}
.ws8a{word-spacing:-0.169200px;}
.ws4{word-spacing:-0.154800px;}
.ws29{word-spacing:-0.112800px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.056400px;}
.ws6f{word-spacing:0.112800px;}
.ws61{word-spacing:0.169200px;}
.ws86{word-spacing:0.225600px;}
.wsa1{word-spacing:0.252000px;}
.ws71{word-spacing:0.338400px;}
.ws9a{word-spacing:0.378000px;}
.ws70{word-spacing:0.394800px;}
.ws62{word-spacing:0.507600px;}
.ws19{word-spacing:0.588000px;}
.ws26{word-spacing:0.676800px;}
.ws66{word-spacing:0.733200px;}
.ws80{word-spacing:0.789600px;}
.ws34{word-spacing:0.846000px;}
.ws65{word-spacing:0.902400px;}
.ws3b{word-spacing:0.966000px;}
.ws1d{word-spacing:1.128000px;}
.ws78{word-spacing:1.184400px;}
.ws84{word-spacing:1.240800px;}
.ws6{word-spacing:1.290000px;}
.ws3a{word-spacing:1.344000px;}
.ws22{word-spacing:1.353600px;}
.ws7d{word-spacing:1.410000px;}
.ws10{word-spacing:1.522800px;}
.ws60{word-spacing:1.579200px;}
.ws98{word-spacing:1.596000px;}
.ws8c{word-spacing:1.635600px;}
.ws69{word-spacing:1.692000px;}
.ws42{word-spacing:1.748400px;}
.ws76{word-spacing:1.917600px;}
.ws18{word-spacing:1.974000px;}
.ws2d{word-spacing:2.086800px;}
.ws79{word-spacing:2.199600px;}
.ws94{word-spacing:2.268000px;}
.ws23{word-spacing:2.368800px;}
.ws9c{word-spacing:2.425200px;}
.ws89{word-spacing:2.481600px;}
.ws90{word-spacing:2.538000px;}
.ws30{word-spacing:2.594400px;}
.wsa{word-spacing:2.707200px;}
.ws3e{word-spacing:2.730000px;}
.ws4e{word-spacing:2.763600px;}
.ws91{word-spacing:2.820000px;}
.ws7b{word-spacing:2.876400px;}
.ws4a{word-spacing:2.932800px;}
.ws56{word-spacing:3.045600px;}
.ws24{word-spacing:3.102000px;}
.ws25{word-spacing:3.158400px;}
.ws52{word-spacing:3.214800px;}
.wse{word-spacing:3.384000px;}
.ws59{word-spacing:3.440400px;}
.ws6b{word-spacing:3.496800px;}
.ws5{word-spacing:3.508800px;}
.ws45{word-spacing:3.553200px;}
.ws85{word-spacing:3.609600px;}
.ws3c{word-spacing:3.696000px;}
.ws93{word-spacing:3.738000px;}
.wsb6{word-spacing:3.778800px;}
.ws4b{word-spacing:3.835200px;}
.ws88{word-spacing:3.891600px;}
.ws35{word-spacing:3.948000px;}
.ws16{word-spacing:4.060800px;}
.ws8{word-spacing:4.117200px;}
.ws43{word-spacing:4.173600px;}
.wsba{word-spacing:4.183200px;}
.ws97{word-spacing:4.242000px;}
.ws77{word-spacing:4.342800px;}
.ws1f{word-spacing:4.399200px;}
.ws68{word-spacing:4.455600px;}
.ws44{word-spacing:4.624800px;}
.ws5d{word-spacing:4.794000px;}
.ws83{word-spacing:4.850400px;}
.ws38{word-spacing:4.906800px;}
.ws4c{word-spacing:4.963200px;}
.ws32{word-spacing:5.188800px;}
.ws95{word-spacing:5.292000px;}
.ws37{word-spacing:5.470800px;}
.wsf{word-spacing:5.527200px;}
.ws2c{word-spacing:5.809200px;}
.ws20{word-spacing:5.922000px;}
.ws9{word-spacing:5.978400px;}
.ws51{word-spacing:6.034800px;}
.wsa4{word-spacing:6.091200px;}
.ws7f{word-spacing:6.147600px;}
.ws87{word-spacing:6.260400px;}
.ws2f{word-spacing:6.373200px;}
.ws75{word-spacing:6.429600px;}
.wsd{word-spacing:6.486000px;}
.ws6c{word-spacing:6.542400px;}
.ws1e{word-spacing:6.655200px;}
.ws31{word-spacing:7.219200px;}
.ws6d{word-spacing:7.275600px;}
.ws54{word-spacing:7.501200px;}
.ws15{word-spacing:7.614000px;}
.ws67{word-spacing:7.783200px;}
.ws5f{word-spacing:7.839600px;}
.ws1c{word-spacing:7.952400px;}
.ws57{word-spacing:8.065200px;}
.wsa5{word-spacing:8.290800px;}
.ws4f{word-spacing:8.460000px;}
.ws1b{word-spacing:8.572800px;}
.ws36{word-spacing:8.629200px;}
.ws64{word-spacing:8.742000px;}
.ws40{word-spacing:9.136800px;}
.ws3f{word-spacing:9.588000px;}
.ws12{word-spacing:9.644400px;}
.ws7a{word-spacing:9.813600px;}
.wsa3{word-spacing:10.321200px;}
.wsb8{word-spacing:10.432800px;}
.ws49{word-spacing:10.490400px;}
.ws9f{word-spacing:11.167200px;}
.wsb0{word-spacing:12.859200px;}
.wsaf{word-spacing:13.592400px;}
.ws9b{word-spacing:13.705200px;}
.ws14{word-spacing:13.761600px;}
.wsa2{word-spacing:14.889600px;}
.wsb7{word-spacing:16.718400px;}
.wsb5{word-spacing:19.006800px;}
.ws9e{word-spacing:20.416800px;}
.wsab{word-spacing:22.898400px;}
.wsad{word-spacing:23.518800px;}
.wsa0{word-spacing:24.252000px;}
.wsae{word-spacing:24.985200px;}
.wsa6{word-spacing:25.098000px;}
.ws9d{word-spacing:26.056800px;}
.wsa8{word-spacing:28.200000px;}
.wsaa{word-spacing:29.158800px;}
.ws8f{word-spacing:32.430000px;}
.wsb3{word-spacing:34.742400px;}
.wsb4{word-spacing:61.137600px;}
._33{margin-left:-19.582800px;}
._b{margin-left:-16.357200px;}
._2e{margin-left:-13.576800px;}
._8{margin-left:-8.255640px;}
._6{margin-left:-7.008000px;}
._1{margin-left:-5.079600px;}
._2{margin-left:-3.115080px;}
._5{margin-left:-1.279200px;}
._4{width:1.326000px;}
._0{width:2.353200px;}
._3{width:3.963600px;}
._1c{width:5.865600px;}
._15{width:7.332000px;}
._1e{width:8.798400px;}
._22{width:10.244400px;}
._1f{width:11.431200px;}
._18{width:12.915600px;}
._27{width:15.284400px;}
._16{width:16.299600px;}
._f{width:17.991600px;}
._11{width:19.058280px;}
._10{width:20.247600px;}
._12{width:21.826800px;}
._29{width:22.934400px;}
._19{width:23.952000px;}
._e{width:25.267200px;}
._1d{width:27.015600px;}
._28{width:28.200000px;}
._1a{width:29.253600px;}
._d{width:31.207200px;}
._c{width:32.299200px;}
._25{width:34.292400px;}
._20{width:35.926800px;}
._2c{width:38.803200px;}
._14{width:41.002800px;}
._2a{width:42.356400px;}
._30{width:43.384680px;}
._23{width:44.556000px;}
._21{width:46.417200px;}
._2d{width:48.091200px;}
._24{width:51.006000px;}
._1b{width:53.392800px;}
._13{width:58.638000px;}
._17{width:59.681753px;}
._7{width:61.445753px;}
._31{width:62.570895px;}
._9{width:63.797753px;}
._2f{width:74.842800px;}
._2b{width:121.242000px;}
._26{width:643.800000px;}
._32{width:644.954400px;}
._a{width:838.671796px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:32.881200px;}
.fs7{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fs8{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fs5{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:65.368050px;}
.y4a{bottom:104.164350px;}
.yd4{bottom:104.167350px;}
.y1e{bottom:104.170350px;}
.yda{bottom:104.171850px;}
.yf2{bottom:104.175600px;}
.ye3{bottom:104.178000px;}
.y82{bottom:104.185200px;}
.yeb{bottom:104.192400px;}
.y5f{bottom:104.211600px;}
.ya3{bottom:104.230800px;}
.y49{bottom:118.265850px;}
.yd3{bottom:118.268850px;}
.y1d{bottom:118.271850px;}
.yd9{bottom:118.273350px;}
.yfe{bottom:124.417200px;}
.ye2{bottom:124.425600px;}
.yb6{bottom:124.428600px;}
.y81{bottom:124.432800px;}
.yea{bottom:124.440000px;}
.y5e{bottom:124.459200px;}
.ya2{bottom:124.478400px;}
.y48{bottom:132.367350px;}
.yd2{bottom:132.370350px;}
.y1c{bottom:132.373350px;}
.yfd{bottom:144.670200px;}
.y80{bottom:144.680400px;}
.ye9{bottom:144.687600px;}
.ye1{bottom:144.690000px;}
.y5d{bottom:144.706800px;}
.ya1{bottom:144.726000px;}
.y47{bottom:146.468850px;}
.yd1{bottom:146.471850px;}
.y46{bottom:160.570350px;}
.yd0{bottom:160.573350px;}
.yfc{bottom:164.923200px;}
.yb5{bottom:164.925000px;}
.y7f{bottom:164.928000px;}
.yd8{bottom:164.932800px;}
.ye8{bottom:164.935200px;}
.ye0{bottom:164.937600px;}
.y5c{bottom:164.954400px;}
.ya0{bottom:164.973600px;}
.ycf{bottom:174.668550px;}
.y45{bottom:174.671850px;}
.yb4{bottom:185.173200px;}
.y7e{bottom:185.175600px;}
.yd7{bottom:185.180400px;}
.ye7{bottom:185.182800px;}
.ydf{bottom:185.185200px;}
.y1b{bottom:185.185350px;}
.y5b{bottom:185.202000px;}
.y9f{bottom:185.221200px;}
.y44{bottom:188.773350px;}
.yce{bottom:192.172050px;}
.y7d{bottom:205.423200px;}
.yd6{bottom:205.428000px;}
.ye6{bottom:205.430400px;}
.yde{bottom:205.432800px;}
.y1a{bottom:205.432950px;}
.y5a{bottom:205.449600px;}
.y9e{bottom:205.468800px;}
.ycd{bottom:206.273550px;}
.ycc{bottom:220.375050px;}
.y43{bottom:225.673200px;}
.yd5{bottom:225.675600px;}
.ye5{bottom:225.678000px;}
.ydd{bottom:225.680400px;}
.y19{bottom:225.680550px;}
.y59{bottom:225.697200px;}
.y42{bottom:225.704400px;}
.y9d{bottom:225.716400px;}
.y7c{bottom:225.735600px;}
.yb3{bottom:245.923200px;}
.ye4{bottom:245.925600px;}
.ydc{bottom:245.928000px;}
.y18{bottom:245.928150px;}
.y58{bottom:245.944800px;}
.y41{bottom:245.952000px;}
.y9c{bottom:245.964000px;}
.y7b{bottom:245.983200px;}
.yf1{bottom:266.173200px;}
.ydb{bottom:266.175600px;}
.y17{bottom:266.175750px;}
.ycb{bottom:266.187600px;}
.y57{bottom:266.192400px;}
.y40{bottom:266.199600px;}
.y9b{bottom:266.211600px;}
.y7a{bottom:266.230800px;}
.y16{bottom:286.423350px;}
.yf0{bottom:286.432800px;}
.yca{bottom:286.435200px;}
.y56{bottom:286.440000px;}
.y3f{bottom:286.447200px;}
.y9a{bottom:286.459200px;}
.y79{bottom:286.478400px;}
.yef{bottom:306.680400px;}
.yc9{bottom:306.682800px;}
.y55{bottom:306.687600px;}
.yb2{bottom:306.692400px;}
.y3e{bottom:306.694800px;}
.y15{bottom:306.699750px;}
.y99{bottom:306.706800px;}
.y78{bottom:306.726000px;}
.yee{bottom:326.928000px;}
.yc8{bottom:326.930400px;}
.y54{bottom:326.935200px;}
.yb1{bottom:326.940000px;}
.y3d{bottom:326.942400px;}
.y14{bottom:326.947350px;}
.y98{bottom:326.954400px;}
.y77{bottom:326.973600px;}
.yed{bottom:347.175600px;}
.yc7{bottom:347.178000px;}
.y53{bottom:347.182800px;}
.yb0{bottom:347.187600px;}
.y3c{bottom:347.190000px;}
.y13{bottom:347.194950px;}
.y97{bottom:347.202000px;}
.y76{bottom:347.221200px;}
.yec{bottom:367.423200px;}
.yc6{bottom:367.425600px;}
.y52{bottom:367.430400px;}
.yaf{bottom:367.435200px;}
.y3b{bottom:367.437600px;}
.y12{bottom:367.442550px;}
.yfb{bottom:367.444800px;}
.y96{bottom:367.449600px;}
.y75{bottom:367.468800px;}
.y51{bottom:387.678000px;}
.yae{bottom:387.682800px;}
.y3a{bottom:387.685200px;}
.y11{bottom:387.690150px;}
.yfa{bottom:387.692400px;}
.y95{bottom:387.697200px;}
.y74{bottom:387.716400px;}
.y50{bottom:407.925600px;}
.yad{bottom:407.930400px;}
.y39{bottom:407.932800px;}
.y10{bottom:407.937750px;}
.yf9{bottom:407.940000px;}
.y94{bottom:407.944800px;}
.y73{bottom:407.964000px;}
.y4f{bottom:428.173200px;}
.yac{bottom:428.178000px;}
.y38{bottom:428.180400px;}
.yf{bottom:428.185350px;}
.yf8{bottom:428.187600px;}
.y93{bottom:428.192400px;}
.y72{bottom:428.211600px;}
.yab{bottom:448.425600px;}
.y37{bottom:448.428000px;}
.ye{bottom:448.432950px;}
.yf7{bottom:448.435200px;}
.y92{bottom:448.440000px;}
.y71{bottom:448.459200px;}
.y4e{bottom:448.466400px;}
.yaa{bottom:468.673200px;}
.y36{bottom:468.675600px;}
.yd{bottom:468.680550px;}
.yf6{bottom:468.682800px;}
.yc5{bottom:468.685200px;}
.y91{bottom:468.687600px;}
.y70{bottom:468.706800px;}
.y4d{bottom:468.714000px;}
.y35{bottom:488.923200px;}
.yc{bottom:488.928150px;}
.yf5{bottom:488.930400px;}
.yc4{bottom:488.932800px;}
.y90{bottom:488.935200px;}
.y6f{bottom:488.954400px;}
.y4c{bottom:488.961600px;}
.ya9{bottom:488.971200px;}
.yb{bottom:509.175750px;}
.yf4{bottom:509.178000px;}
.yc3{bottom:509.180400px;}
.y8f{bottom:509.182800px;}
.y6e{bottom:509.202000px;}
.y34{bottom:509.209200px;}
.ya8{bottom:509.218800px;}
.ya{bottom:529.423350px;}
.yf3{bottom:529.425600px;}
.yc2{bottom:529.428000px;}
.y8e{bottom:529.430400px;}
.y6d{bottom:529.449600px;}
.y33{bottom:529.456800px;}
.ya7{bottom:529.466400px;}
.yc1{bottom:549.675600px;}
.y8d{bottom:549.678000px;}
.y6c{bottom:549.697200px;}
.y32{bottom:549.704400px;}
.ya6{bottom:549.714000px;}
.y8c{bottom:569.925600px;}
.yc0{bottom:569.940000px;}
.y6b{bottom:569.944800px;}
.y31{bottom:569.952000px;}
.ya5{bottom:569.961600px;}
.y8b{bottom:590.173200px;}
.ybf{bottom:590.187600px;}
.y6a{bottom:590.192400px;}
.y30{bottom:590.199600px;}
.ya4{bottom:590.209200px;}
.y9{bottom:610.411350px;}
.ybe{bottom:610.435200px;}
.y69{bottom:610.440000px;}
.y2f{bottom:610.447200px;}
.y8a{bottom:610.456800px;}
.y8{bottom:630.664350px;}
.ybd{bottom:630.682800px;}
.y68{bottom:630.687600px;}
.y2e{bottom:630.694800px;}
.y89{bottom:630.704400px;}
.y7{bottom:650.917350px;}
.ybc{bottom:650.930400px;}
.y67{bottom:650.935200px;}
.y2d{bottom:650.942400px;}
.y88{bottom:650.952000px;}
.y6{bottom:671.170350px;}
.ybb{bottom:671.178000px;}
.y66{bottom:671.182800px;}
.y2c{bottom:671.190000px;}
.y87{bottom:671.199600px;}
.y5{bottom:691.423350px;}
.yba{bottom:691.425600px;}
.y65{bottom:691.430400px;}
.y2b{bottom:691.437600px;}
.y86{bottom:691.447200px;}
.yb9{bottom:711.673200px;}
.y64{bottom:711.678000px;}
.y2a{bottom:711.685200px;}
.y85{bottom:711.694800px;}
.y4{bottom:731.923350px;}
.y63{bottom:731.925600px;}
.y29{bottom:731.932800px;}
.y84{bottom:731.942400px;}
.y62{bottom:752.173200px;}
.y28{bottom:752.180400px;}
.y83{bottom:752.190000px;}
.y27{bottom:772.428000px;}
.y61{bottom:772.437600px;}
.y26{bottom:792.675600px;}
.y103{bottom:792.680400px;}
.y60{bottom:792.685200px;}
.yb8{bottom:798.671700px;}
.y25{bottom:812.923200px;}
.y102{bottom:812.928600px;}
.y4b{bottom:812.932800px;}
.yb7{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y101{bottom:833.176800px;}
.y24{bottom:833.180400px;}
.y100{bottom:853.425000px;}
.y23{bottom:853.428000px;}
.yff{bottom:873.673200px;}
.y22{bottom:873.675600px;}
.y21{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y20{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.h2{height:35.830800px;}
.h13{height:37.461600px;}
.h9{height:39.312000px;}
.h11{height:39.331200px;}
.hd{height:40.672800px;}
.ha{height:41.558400px;}
.h6{height:41.641200px;}
.h12{height:43.560000px;}
.h3{height:44.186400px;}
.hc{height:45.561600px;}
.h5{height:47.220000px;}
.h7{height:47.883600px;}
.h14{height:48.297600px;}
.h8{height:48.400205px;}
.hb{height:48.477005px;}
.h10{height:52.790400px;}
.he{height:57.283200px;}
.hf{height:77.724000px;}
.h4{height:80.274000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x2{left:93.543300px;}
.x3{left:99.921270px;}
.x4{left:116.605500px;}
.x6{left:596.496900px;}
.x5{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.600533pt;}
.ls7{letter-spacing:-1.253333pt;}
.ls5{letter-spacing:-0.250667pt;}
.ls8{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls3{letter-spacing:-0.149333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000017pt;}
.ls4{letter-spacing:0.197333pt;}
.ls0{letter-spacing:1896.975782pt;}
.wsb1{word-spacing:-12.533333pt;}
.wsb2{word-spacing:-11.466667pt;}
.wsa9{word-spacing:-11.280000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws82{word-spacing:-8.960000pt;}
.ws8d{word-spacing:-7.893333pt;}
.ws0{word-spacing:-7.696000pt;}
.ws2{word-spacing:-7.466667pt;}
.ws8e{word-spacing:-7.306933pt;}
.ws92{word-spacing:-4.311467pt;}
.ws99{word-spacing:-4.069333pt;}
.wsac{word-spacing:-3.910400pt;}
.ws47{word-spacing:-3.008000pt;}
.ws74{word-spacing:-2.707200pt;}
.ws27{word-spacing:-2.657067pt;}
.ws28{word-spacing:-2.506667pt;}
.ws41{word-spacing:-2.306133pt;}
.ws8b{word-spacing:-2.256000pt;}
.wsa7{word-spacing:-2.155733pt;}
.ws6e{word-spacing:-2.105600pt;}
.ws5b{word-spacing:-2.055467pt;}
.ws11{word-spacing:-2.005333pt;}
.ws55{word-spacing:-1.955200pt;}
.ws58{word-spacing:-1.854933pt;}
.ws2e{word-spacing:-1.804800pt;}
.ws7e{word-spacing:-1.754667pt;}
.ws17{word-spacing:-1.704533pt;}
.ws4d{word-spacing:-1.654400pt;}
.wsc{word-spacing:-1.604267pt;}
.ws5e{word-spacing:-1.554133pt;}
.ws2a{word-spacing:-1.453867pt;}
.ws5a{word-spacing:-1.353600pt;}
.ws81{word-spacing:-1.303467pt;}
.ws21{word-spacing:-1.253333pt;}
.ws96{word-spacing:-1.194667pt;}
.ws50{word-spacing:-1.102933pt;}
.ws53{word-spacing:-1.002667pt;}
.ws7{word-spacing:-0.963200pt;}
.ws46{word-spacing:-0.952533pt;}
.ws73{word-spacing:-0.752000pt;}
.wsb{word-spacing:-0.701867pt;}
.ws6a{word-spacing:-0.651733pt;}
.wsb9{word-spacing:-0.627200pt;}
.ws7c{word-spacing:-0.601600pt;}
.ws33{word-spacing:-0.551467pt;}
.wsbb{word-spacing:-0.537600pt;}
.ws63{word-spacing:-0.501333pt;}
.ws3d{word-spacing:-0.485333pt;}
.ws2b{word-spacing:-0.451200pt;}
.ws5c{word-spacing:-0.401067pt;}
.ws1a{word-spacing:-0.394667pt;}
.ws39{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.300800pt;}
.ws72{word-spacing:-0.250667pt;}
.ws8a{word-spacing:-0.150400pt;}
.ws4{word-spacing:-0.137600pt;}
.ws29{word-spacing:-0.100267pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.050133pt;}
.ws6f{word-spacing:0.100267pt;}
.ws61{word-spacing:0.150400pt;}
.ws86{word-spacing:0.200533pt;}
.wsa1{word-spacing:0.224000pt;}
.ws71{word-spacing:0.300800pt;}
.ws9a{word-spacing:0.336000pt;}
.ws70{word-spacing:0.350933pt;}
.ws62{word-spacing:0.451200pt;}
.ws19{word-spacing:0.522667pt;}
.ws26{word-spacing:0.601600pt;}
.ws66{word-spacing:0.651733pt;}
.ws80{word-spacing:0.701867pt;}
.ws34{word-spacing:0.752000pt;}
.ws65{word-spacing:0.802133pt;}
.ws3b{word-spacing:0.858667pt;}
.ws1d{word-spacing:1.002667pt;}
.ws78{word-spacing:1.052800pt;}
.ws84{word-spacing:1.102933pt;}
.ws6{word-spacing:1.146667pt;}
.ws3a{word-spacing:1.194667pt;}
.ws22{word-spacing:1.203200pt;}
.ws7d{word-spacing:1.253333pt;}
.ws10{word-spacing:1.353600pt;}
.ws60{word-spacing:1.403733pt;}
.ws98{word-spacing:1.418667pt;}
.ws8c{word-spacing:1.453867pt;}
.ws69{word-spacing:1.504000pt;}
.ws42{word-spacing:1.554133pt;}
.ws76{word-spacing:1.704533pt;}
.ws18{word-spacing:1.754667pt;}
.ws2d{word-spacing:1.854933pt;}
.ws79{word-spacing:1.955200pt;}
.ws94{word-spacing:2.016000pt;}
.ws23{word-spacing:2.105600pt;}
.ws9c{word-spacing:2.155733pt;}
.ws89{word-spacing:2.205867pt;}
.ws90{word-spacing:2.256000pt;}
.ws30{word-spacing:2.306133pt;}
.wsa{word-spacing:2.406400pt;}
.ws3e{word-spacing:2.426667pt;}
.ws4e{word-spacing:2.456533pt;}
.ws91{word-spacing:2.506667pt;}
.ws7b{word-spacing:2.556800pt;}
.ws4a{word-spacing:2.606933pt;}
.ws56{word-spacing:2.707200pt;}
.ws24{word-spacing:2.757333pt;}
.ws25{word-spacing:2.807467pt;}
.ws52{word-spacing:2.857600pt;}
.wse{word-spacing:3.008000pt;}
.ws59{word-spacing:3.058133pt;}
.ws6b{word-spacing:3.108267pt;}
.ws5{word-spacing:3.118933pt;}
.ws45{word-spacing:3.158400pt;}
.ws85{word-spacing:3.208533pt;}
.ws3c{word-spacing:3.285333pt;}
.ws93{word-spacing:3.322667pt;}
.wsb6{word-spacing:3.358933pt;}
.ws4b{word-spacing:3.409067pt;}
.ws88{word-spacing:3.459200pt;}
.ws35{word-spacing:3.509333pt;}
.ws16{word-spacing:3.609600pt;}
.ws8{word-spacing:3.659733pt;}
.ws43{word-spacing:3.709867pt;}
.wsba{word-spacing:3.718400pt;}
.ws97{word-spacing:3.770667pt;}
.ws77{word-spacing:3.860267pt;}
.ws1f{word-spacing:3.910400pt;}
.ws68{word-spacing:3.960533pt;}
.ws44{word-spacing:4.110933pt;}
.ws5d{word-spacing:4.261333pt;}
.ws83{word-spacing:4.311467pt;}
.ws38{word-spacing:4.361600pt;}
.ws4c{word-spacing:4.411733pt;}
.ws32{word-spacing:4.612267pt;}
.ws95{word-spacing:4.704000pt;}
.ws37{word-spacing:4.862933pt;}
.wsf{word-spacing:4.913067pt;}
.ws2c{word-spacing:5.163733pt;}
.ws20{word-spacing:5.264000pt;}
.ws9{word-spacing:5.314133pt;}
.ws51{word-spacing:5.364267pt;}
.wsa4{word-spacing:5.414400pt;}
.ws7f{word-spacing:5.464533pt;}
.ws87{word-spacing:5.564800pt;}
.ws2f{word-spacing:5.665067pt;}
.ws75{word-spacing:5.715200pt;}
.wsd{word-spacing:5.765333pt;}
.ws6c{word-spacing:5.815467pt;}
.ws1e{word-spacing:5.915733pt;}
.ws31{word-spacing:6.417067pt;}
.ws6d{word-spacing:6.467200pt;}
.ws54{word-spacing:6.667733pt;}
.ws15{word-spacing:6.768000pt;}
.ws67{word-spacing:6.918400pt;}
.ws5f{word-spacing:6.968533pt;}
.ws1c{word-spacing:7.068800pt;}
.ws57{word-spacing:7.169067pt;}
.wsa5{word-spacing:7.369600pt;}
.ws4f{word-spacing:7.520000pt;}
.ws1b{word-spacing:7.620267pt;}
.ws36{word-spacing:7.670400pt;}
.ws64{word-spacing:7.770667pt;}
.ws40{word-spacing:8.121600pt;}
.ws3f{word-spacing:8.522667pt;}
.ws12{word-spacing:8.572800pt;}
.ws7a{word-spacing:8.723200pt;}
.wsa3{word-spacing:9.174400pt;}
.wsb8{word-spacing:9.273600pt;}
.ws49{word-spacing:9.324800pt;}
.ws9f{word-spacing:9.926400pt;}
.wsb0{word-spacing:11.430400pt;}
.wsaf{word-spacing:12.082133pt;}
.ws9b{word-spacing:12.182400pt;}
.ws14{word-spacing:12.232533pt;}
.wsa2{word-spacing:13.235200pt;}
.wsb7{word-spacing:14.860800pt;}
.wsb5{word-spacing:16.894933pt;}
.ws9e{word-spacing:18.148267pt;}
.wsab{word-spacing:20.354133pt;}
.wsad{word-spacing:20.905600pt;}
.wsa0{word-spacing:21.557333pt;}
.wsae{word-spacing:22.209067pt;}
.wsa6{word-spacing:22.309333pt;}
.ws9d{word-spacing:23.161600pt;}
.wsa8{word-spacing:25.066667pt;}
.wsaa{word-spacing:25.918933pt;}
.ws8f{word-spacing:28.826667pt;}
.wsb3{word-spacing:30.882133pt;}
.wsb4{word-spacing:54.344533pt;}
._33{margin-left:-17.406933pt;}
._b{margin-left:-14.539733pt;}
._2e{margin-left:-12.068267pt;}
._8{margin-left:-7.338347pt;}
._6{margin-left:-6.229333pt;}
._1{margin-left:-4.515200pt;}
._2{margin-left:-2.768960pt;}
._5{margin-left:-1.137067pt;}
._4{width:1.178667pt;}
._0{width:2.091733pt;}
._3{width:3.523200pt;}
._1c{width:5.213867pt;}
._15{width:6.517333pt;}
._1e{width:7.820800pt;}
._22{width:9.106133pt;}
._1f{width:10.161067pt;}
._18{width:11.480533pt;}
._27{width:13.586133pt;}
._16{width:14.488533pt;}
._f{width:15.992533pt;}
._11{width:16.940693pt;}
._10{width:17.997867pt;}
._12{width:19.401600pt;}
._29{width:20.386133pt;}
._19{width:21.290667pt;}
._e{width:22.459733pt;}
._1d{width:24.013867pt;}
._28{width:25.066667pt;}
._1a{width:26.003200pt;}
._d{width:27.739733pt;}
._c{width:28.710400pt;}
._25{width:30.482133pt;}
._20{width:31.934933pt;}
._2c{width:34.491733pt;}
._14{width:36.446933pt;}
._2a{width:37.650133pt;}
._30{width:38.564160pt;}
._23{width:39.605333pt;}
._21{width:41.259733pt;}
._2d{width:42.747733pt;}
._24{width:45.338667pt;}
._1b{width:47.460267pt;}
._13{width:52.122667pt;}
._17{width:53.050447pt;}
._7{width:54.618447pt;}
._31{width:55.618573pt;}
._9{width:56.709113pt;}
._2f{width:66.526933pt;}
._2b{width:107.770667pt;}
._26{width:572.266667pt;}
._32{width:573.292800pt;}
._a{width:745.486041pt;}
.fs6{font-size:29.227733pt;}
.fs7{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fs8{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fs5{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.104933pt;}
.y4a{bottom:92.590533pt;}
.yd4{bottom:92.593200pt;}
.y1e{bottom:92.595867pt;}
.yda{bottom:92.597200pt;}
.yf2{bottom:92.600533pt;}
.ye3{bottom:92.602667pt;}
.y82{bottom:92.609067pt;}
.yeb{bottom:92.615467pt;}
.y5f{bottom:92.632533pt;}
.ya3{bottom:92.649600pt;}
.y49{bottom:105.125200pt;}
.yd3{bottom:105.127867pt;}
.y1d{bottom:105.130533pt;}
.yd9{bottom:105.131867pt;}
.yfe{bottom:110.593067pt;}
.ye2{bottom:110.600533pt;}
.yb6{bottom:110.603200pt;}
.y81{bottom:110.606933pt;}
.yea{bottom:110.613333pt;}
.y5e{bottom:110.630400pt;}
.ya2{bottom:110.647467pt;}
.y48{bottom:117.659867pt;}
.yd2{bottom:117.662533pt;}
.y1c{bottom:117.665200pt;}
.yfd{bottom:128.595733pt;}
.y80{bottom:128.604800pt;}
.ye9{bottom:128.611200pt;}
.ye1{bottom:128.613333pt;}
.y5d{bottom:128.628267pt;}
.ya1{bottom:128.645333pt;}
.y47{bottom:130.194533pt;}
.yd1{bottom:130.197200pt;}
.y46{bottom:142.729200pt;}
.yd0{bottom:142.731867pt;}
.yfc{bottom:146.598400pt;}
.yb5{bottom:146.600000pt;}
.y7f{bottom:146.602667pt;}
.yd8{bottom:146.606933pt;}
.ye8{bottom:146.609067pt;}
.ye0{bottom:146.611200pt;}
.y5c{bottom:146.626133pt;}
.ya0{bottom:146.643200pt;}
.ycf{bottom:155.260933pt;}
.y45{bottom:155.263867pt;}
.yb4{bottom:164.598400pt;}
.y7e{bottom:164.600533pt;}
.yd7{bottom:164.604800pt;}
.ye7{bottom:164.606933pt;}
.ydf{bottom:164.609067pt;}
.y1b{bottom:164.609200pt;}
.y5b{bottom:164.624000pt;}
.y9f{bottom:164.641067pt;}
.y44{bottom:167.798533pt;}
.yce{bottom:170.819600pt;}
.y7d{bottom:182.598400pt;}
.yd6{bottom:182.602667pt;}
.ye6{bottom:182.604800pt;}
.yde{bottom:182.606933pt;}
.y1a{bottom:182.607067pt;}
.y5a{bottom:182.621867pt;}
.y9e{bottom:182.638933pt;}
.ycd{bottom:183.354267pt;}
.ycc{bottom:195.888933pt;}
.y43{bottom:200.598400pt;}
.yd5{bottom:200.600533pt;}
.ye5{bottom:200.602667pt;}
.ydd{bottom:200.604800pt;}
.y19{bottom:200.604933pt;}
.y59{bottom:200.619733pt;}
.y42{bottom:200.626133pt;}
.y9d{bottom:200.636800pt;}
.y7c{bottom:200.653867pt;}
.yb3{bottom:218.598400pt;}
.ye4{bottom:218.600533pt;}
.ydc{bottom:218.602667pt;}
.y18{bottom:218.602800pt;}
.y58{bottom:218.617600pt;}
.y41{bottom:218.624000pt;}
.y9c{bottom:218.634667pt;}
.y7b{bottom:218.651733pt;}
.yf1{bottom:236.598400pt;}
.ydb{bottom:236.600533pt;}
.y17{bottom:236.600667pt;}
.ycb{bottom:236.611200pt;}
.y57{bottom:236.615467pt;}
.y40{bottom:236.621867pt;}
.y9b{bottom:236.632533pt;}
.y7a{bottom:236.649600pt;}
.y16{bottom:254.598533pt;}
.yf0{bottom:254.606933pt;}
.yca{bottom:254.609067pt;}
.y56{bottom:254.613333pt;}
.y3f{bottom:254.619733pt;}
.y9a{bottom:254.630400pt;}
.y79{bottom:254.647467pt;}
.yef{bottom:272.604800pt;}
.yc9{bottom:272.606933pt;}
.y55{bottom:272.611200pt;}
.yb2{bottom:272.615467pt;}
.y3e{bottom:272.617600pt;}
.y15{bottom:272.622000pt;}
.y99{bottom:272.628267pt;}
.y78{bottom:272.645333pt;}
.yee{bottom:290.602667pt;}
.yc8{bottom:290.604800pt;}
.y54{bottom:290.609067pt;}
.yb1{bottom:290.613333pt;}
.y3d{bottom:290.615467pt;}
.y14{bottom:290.619867pt;}
.y98{bottom:290.626133pt;}
.y77{bottom:290.643200pt;}
.yed{bottom:308.600533pt;}
.yc7{bottom:308.602667pt;}
.y53{bottom:308.606933pt;}
.yb0{bottom:308.611200pt;}
.y3c{bottom:308.613333pt;}
.y13{bottom:308.617733pt;}
.y97{bottom:308.624000pt;}
.y76{bottom:308.641067pt;}
.yec{bottom:326.598400pt;}
.yc6{bottom:326.600533pt;}
.y52{bottom:326.604800pt;}
.yaf{bottom:326.609067pt;}
.y3b{bottom:326.611200pt;}
.y12{bottom:326.615600pt;}
.yfb{bottom:326.617600pt;}
.y96{bottom:326.621867pt;}
.y75{bottom:326.638933pt;}
.y51{bottom:344.602667pt;}
.yae{bottom:344.606933pt;}
.y3a{bottom:344.609067pt;}
.y11{bottom:344.613467pt;}
.yfa{bottom:344.615467pt;}
.y95{bottom:344.619733pt;}
.y74{bottom:344.636800pt;}
.y50{bottom:362.600533pt;}
.yad{bottom:362.604800pt;}
.y39{bottom:362.606933pt;}
.y10{bottom:362.611333pt;}
.yf9{bottom:362.613333pt;}
.y94{bottom:362.617600pt;}
.y73{bottom:362.634667pt;}
.y4f{bottom:380.598400pt;}
.yac{bottom:380.602667pt;}
.y38{bottom:380.604800pt;}
.yf{bottom:380.609200pt;}
.yf8{bottom:380.611200pt;}
.y93{bottom:380.615467pt;}
.y72{bottom:380.632533pt;}
.yab{bottom:398.600533pt;}
.y37{bottom:398.602667pt;}
.ye{bottom:398.607067pt;}
.yf7{bottom:398.609067pt;}
.y92{bottom:398.613333pt;}
.y71{bottom:398.630400pt;}
.y4e{bottom:398.636800pt;}
.yaa{bottom:416.598400pt;}
.y36{bottom:416.600533pt;}
.yd{bottom:416.604933pt;}
.yf6{bottom:416.606933pt;}
.yc5{bottom:416.609067pt;}
.y91{bottom:416.611200pt;}
.y70{bottom:416.628267pt;}
.y4d{bottom:416.634667pt;}
.y35{bottom:434.598400pt;}
.yc{bottom:434.602800pt;}
.yf5{bottom:434.604800pt;}
.yc4{bottom:434.606933pt;}
.y90{bottom:434.609067pt;}
.y6f{bottom:434.626133pt;}
.y4c{bottom:434.632533pt;}
.ya9{bottom:434.641067pt;}
.yb{bottom:452.600667pt;}
.yf4{bottom:452.602667pt;}
.yc3{bottom:452.604800pt;}
.y8f{bottom:452.606933pt;}
.y6e{bottom:452.624000pt;}
.y34{bottom:452.630400pt;}
.ya8{bottom:452.638933pt;}
.ya{bottom:470.598533pt;}
.yf3{bottom:470.600533pt;}
.yc2{bottom:470.602667pt;}
.y8e{bottom:470.604800pt;}
.y6d{bottom:470.621867pt;}
.y33{bottom:470.628267pt;}
.ya7{bottom:470.636800pt;}
.yc1{bottom:488.600533pt;}
.y8d{bottom:488.602667pt;}
.y6c{bottom:488.619733pt;}
.y32{bottom:488.626133pt;}
.ya6{bottom:488.634667pt;}
.y8c{bottom:506.600533pt;}
.yc0{bottom:506.613333pt;}
.y6b{bottom:506.617600pt;}
.y31{bottom:506.624000pt;}
.ya5{bottom:506.632533pt;}
.y8b{bottom:524.598400pt;}
.ybf{bottom:524.611200pt;}
.y6a{bottom:524.615467pt;}
.y30{bottom:524.621867pt;}
.ya4{bottom:524.630400pt;}
.y9{bottom:542.587867pt;}
.ybe{bottom:542.609067pt;}
.y69{bottom:542.613333pt;}
.y2f{bottom:542.619733pt;}
.y8a{bottom:542.628267pt;}
.y8{bottom:560.590533pt;}
.ybd{bottom:560.606933pt;}
.y68{bottom:560.611200pt;}
.y2e{bottom:560.617600pt;}
.y89{bottom:560.626133pt;}
.y7{bottom:578.593200pt;}
.ybc{bottom:578.604800pt;}
.y67{bottom:578.609067pt;}
.y2d{bottom:578.615467pt;}
.y88{bottom:578.624000pt;}
.y6{bottom:596.595867pt;}
.ybb{bottom:596.602667pt;}
.y66{bottom:596.606933pt;}
.y2c{bottom:596.613333pt;}
.y87{bottom:596.621867pt;}
.y5{bottom:614.598533pt;}
.yba{bottom:614.600533pt;}
.y65{bottom:614.604800pt;}
.y2b{bottom:614.611200pt;}
.y86{bottom:614.619733pt;}
.yb9{bottom:632.598400pt;}
.y64{bottom:632.602667pt;}
.y2a{bottom:632.609067pt;}
.y85{bottom:632.617600pt;}
.y4{bottom:650.598533pt;}
.y63{bottom:650.600533pt;}
.y29{bottom:650.606933pt;}
.y84{bottom:650.615467pt;}
.y62{bottom:668.598400pt;}
.y28{bottom:668.604800pt;}
.y83{bottom:668.613333pt;}
.y27{bottom:686.602667pt;}
.y61{bottom:686.611200pt;}
.y26{bottom:704.600533pt;}
.y103{bottom:704.604800pt;}
.y60{bottom:704.609067pt;}
.yb8{bottom:709.930400pt;}
.y25{bottom:722.598400pt;}
.y102{bottom:722.603200pt;}
.y4b{bottom:722.606933pt;}
.yb7{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y101{bottom:740.601600pt;}
.y24{bottom:740.604800pt;}
.y100{bottom:758.600000pt;}
.y23{bottom:758.602667pt;}
.yff{bottom:776.598400pt;}
.y22{bottom:776.600533pt;}
.y21{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y20{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.h2{height:31.849600pt;}
.h13{height:33.299200pt;}
.h9{height:34.944000pt;}
.h11{height:34.961067pt;}
.hd{height:36.153600pt;}
.ha{height:36.940800pt;}
.h6{height:37.014400pt;}
.h12{height:38.720000pt;}
.h3{height:39.276800pt;}
.hc{height:40.499200pt;}
.h5{height:41.973333pt;}
.h7{height:42.563200pt;}
.h14{height:42.931200pt;}
.h8{height:43.022404pt;}
.hb{height:43.090671pt;}
.h10{height:46.924800pt;}
.he{height:50.918400pt;}
.hf{height:69.088000pt;}
.h4{height:71.354667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x2{left:83.149600pt;}
.x3{left:88.818907pt;}
.x4{left:103.649333pt;}
.x6{left:530.219467pt;}
.x5{left:555.590533pt;}
}




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