
    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_2be582c2c04cc1d8b8a9575e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3caa642208807e141bcc0371.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894000;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_b430593611e2079a596a518a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854980;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_15a6884089d52d53db54f346.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eedf65d6e843807a0ff18d55.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_6229b89e35f48458b1375504.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.116000;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_25e6e27f56928330ebc8b27a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8d0a00be08bc725b2fa7d3a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_9d3085e7cd14c4e89c0b5957.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_dddf00bb131d43f6b0a048a9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e57ae8b24650befa00ad4f8f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.063477;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_f973c883c4398fae77df1747.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.747559;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.738770;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5434f3ec8835fe263cad5c12.woff2')format("woff");}.fff{font-family:fff;line-height:1.116000;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.244535,0.000000,-0.051988,0.244535,0,0);-ms-transform:matrix(0.244535,0.000000,-0.051988,0.244535,0,0);-webkit-transform:matrix(0.244535,0.000000,-0.051988,0.244535,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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-12.240000px;}
.v4{vertical-align:-10.800000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v6{vertical-align:10.800000px;}
.v8{vertical-align:12.240000px;}
.v9{vertical-align:18.000000px;}
.v1{vertical-align:20.879883px;}
.ls24{letter-spacing:-0.774000px;}
.ls52{letter-spacing:-0.702000px;}
.ls16{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.460200px;}
.ls25{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.220200px;}
.ls53{letter-spacing:-0.144000px;}
.ls5e{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053400px;}
.ls4{letter-spacing:-0.033000px;}
.ls38{letter-spacing:-0.008400px;}
.ls2{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.000054px;}
.ls64{letter-spacing:0.001800px;}
.lsf{letter-spacing:0.005760px;}
.ls6{letter-spacing:0.013200px;}
.ls61{letter-spacing:0.051000px;}
.ls44{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.106560px;}
.ls22{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.113980px;}
.lse{letter-spacing:0.114019px;}
.ls31{letter-spacing:0.114057px;}
.ls11{letter-spacing:0.119995px;}
.ls3{letter-spacing:0.162600px;}
.ls59{letter-spacing:0.172800px;}
.lsa{letter-spacing:0.175816px;}
.ls43{letter-spacing:0.179993px;}
.ls42{letter-spacing:0.179995px;}
.ls14{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.259800px;}
.ls5a{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.281933px;}
.ls30{letter-spacing:0.281950px;}
.ls32{letter-spacing:0.288083px;}
.ls8{letter-spacing:0.298560px;}
.ls21{letter-spacing:0.299992px;}
.lsb{letter-spacing:0.299993px;}
.ls13{letter-spacing:0.300084px;}
.ls5d{letter-spacing:0.323843px;}
.ls2c{letter-spacing:0.324000px;}
.ls58{letter-spacing:0.324005px;}
.ls18{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.360051px;}
.ls55{letter-spacing:0.534441px;}
.ls60{letter-spacing:0.708600px;}
.ls29{letter-spacing:0.827999px;}
.ls5f{letter-spacing:0.972000px;}
.ls63{letter-spacing:1.168800px;}
.ls62{letter-spacing:1.230600px;}
.ls1e{letter-spacing:1.663931px;}
.ls65{letter-spacing:1.738800px;}
.ls66{letter-spacing:1.843200px;}
.ls45{letter-spacing:1.854007px;}
.ls46{letter-spacing:2.286006px;}
.ls2a{letter-spacing:2.846879px;}
.ls4b{letter-spacing:2.904465px;}
.ls20{letter-spacing:3.034007px;}
.ls10{letter-spacing:3.034080px;}
.ls2b{letter-spacing:3.052799px;}
.ls57{letter-spacing:3.054049px;}
.ls2f{letter-spacing:3.060000px;}
.ls1c{letter-spacing:3.137720px;}
.ls34{letter-spacing:3.137760px;}
.ls1d{letter-spacing:3.225637px;}
.ls2e{letter-spacing:3.252960px;}
.ls41{letter-spacing:3.253041px;}
.ls28{letter-spacing:3.350880px;}
.ls40{letter-spacing:3.372975px;}
.ls26{letter-spacing:3.432959px;}
.ls4d{letter-spacing:3.785687px;}
.lsd{letter-spacing:3.785760px;}
.ls1f{letter-spacing:3.785870px;}
.ls4e{letter-spacing:4.505841px;}
.ls2d{letter-spacing:12.222000px;}
.ls1a{letter-spacing:13.799313px;}
.ls19{letter-spacing:16.496651px;}
.ls50{letter-spacing:16.559170px;}
.ls36{letter-spacing:16.559279px;}
.ls3d{letter-spacing:16.559353px;}
.ls3e{letter-spacing:17.279232px;}
.ls3a{letter-spacing:17.279324px;}
.ls54{letter-spacing:19.697778px;}
.ls56{letter-spacing:19.785512px;}
.ls39{letter-spacing:20.345745px;}
.ls35{letter-spacing:20.345760px;}
.ls3b{letter-spacing:20.345837px;}
.ls33{letter-spacing:20.505600px;}
.ls3c{letter-spacing:21.065716px;}
.ls3f{letter-spacing:21.065718px;}
.ls37{letter-spacing:21.065759px;}
.ls5b{letter-spacing:47.879997px;}
.ls5c{letter-spacing:47.880032px;}
.ls0{letter-spacing:51.480044px;}
.ls49{letter-spacing:71.460022px;}
.ls51{letter-spacing:78.426698px;}
.ls4a{letter-spacing:98.099945px;}
.ls47{letter-spacing:98.819916px;}
.ls48{letter-spacing:98.820007px;}
.ls9{letter-spacing:113.903998px;}
.ls1{letter-spacing:114.264006px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.046800px;}
.ws5{word-spacing:-15.043200px;}
.ws8{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.886600px;}
.ws2a{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.479800px;}
.ws2d{word-spacing:-14.427000px;}
.ws1e{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.467000px;}
.wse{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.147200px;}
.ws2b{word-spacing:-12.798000px;}
.ws13{word-spacing:-12.204000px;}
.ws10{word-spacing:-11.880000px;}
.ws20{word-spacing:-11.736000px;}
.ws15{word-spacing:-9.711600px;}
.ws1f{word-spacing:-9.072000px;}
.ws0{word-spacing:-9.000000px;}
.ws29{word-spacing:-8.726400px;}
.ws14{word-spacing:-1.098002px;}
.ws11{word-spacing:-0.684000px;}
.ws12{word-spacing:-0.378000px;}
.ws2{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws33{word-spacing:0.003600px;}
.ws7{word-spacing:0.112800px;}
.ws30{word-spacing:0.127200px;}
.wsd{word-spacing:0.519072px;}
.ws28{word-spacing:0.519164px;}
.ws26{word-spacing:0.532163px;}
.ws25{word-spacing:0.641204px;}
.ws2e{word-spacing:1.771800px;}
.ws2f{word-spacing:2.430000px;}
.ws32{word-spacing:2.922000px;}
.ws31{word-spacing:3.076800px;}
.ws18{word-spacing:3.292559px;}
.ws1b{word-spacing:3.412062px;}
.ws16{word-spacing:3.412079px;}
.ws24{word-spacing:3.412176px;}
.ws1d{word-spacing:3.412402px;}
.ws21{word-spacing:3.592349px;}
.ws17{word-spacing:4.132078px;}
.ws27{word-spacing:4.132165px;}
.ws1c{word-spacing:4.132367px;}
.ws22{word-spacing:4.132373px;}
.ws34{word-spacing:4.347000px;}
.ws35{word-spacing:4.607400px;}
.ws19{word-spacing:5.358239px;}
.ws23{word-spacing:6.078010px;}
.ws2c{word-spacing:32.940000px;}
._d{margin-left:-1711.692101px;}
._1d{margin-left:-4.386790px;}
._b{margin-left:-3.382904px;}
._6{margin-left:-2.270878px;}
._1{margin-left:-1.023122px;}
._0{width:1.217350px;}
._2{width:2.825995px;}
._4{width:4.260244px;}
._3{width:5.292000px;}
._5{width:6.480000px;}
._9{width:7.698829px;}
._7{width:8.734153px;}
._a{width:9.793523px;}
._21{width:10.981129px;}
._c{width:12.883201px;}
._20{width:16.908968px;}
._1e{width:18.131450px;}
._1f{width:19.237555px;}
._2f{width:58.371527px;}
._2c{width:70.020037px;}
._1c{width:82.469978px;}
._31{width:84.788216px;}
._29{width:97.380037px;}
._2a{width:99.770940px;}
._30{width:107.117945px;}
._23{width:113.832007px;}
._24{width:116.082037px;}
._25{width:119.945850px;}
._26{width:122.796007px;}
._2e{width:124.379945px;}
._28{width:125.819916px;}
._e{width:150.084000px;}
._10{width:171.623978px;}
._14{width:188.084878px;}
._11{width:195.480000px;}
._13{width:217.523990px;}
._16{width:225.443989px;}
._17{width:244.608658px;}
._19{width:261.990639px;}
._1a{width:369.000000px;}
._18{width:466.307989px;}
._2b{width:477.708672px;}
._12{width:509.508082px;}
._2d{width:513.180038px;}
._f{width:517.067989px;}
._27{width:526.140038px;}
._15{width:536.507989px;}
._22{width:600.095967px;}
._1b{width:646.019989px;}
._8{width:849.090094px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:45.000000px;}
.fs7{font-size:46.005733px;}
.fs8{font-size:53.820000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:60.120000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:83.879997px;}
.y0{bottom:0.000000px;}
.y2b{bottom:46.770000px;}
.y2a{bottom:61.770000px;}
.y29{bottom:76.770000px;}
.y28{bottom:91.770000px;}
.yaf{bottom:93.195002px;}
.y27{bottom:93.554998px;}
.yd1{bottom:94.995003px;}
.y9b{bottom:104.715004px;}
.yfd{bottom:107.235005px;}
.y73{bottom:107.235020px;}
.y56{bottom:107.774994px;}
.y117{bottom:108.974968px;}
.yae{bottom:109.755020px;}
.yc6{bottom:110.294998px;}
.yd0{bottom:111.374989px;}
.y9a{bottom:122.535004px;}
.yfc{bottom:123.614995px;}
.y116{bottom:123.974968px;}
.y72{bottom:125.235020px;}
.y55{bottom:125.595009px;}
.yad{bottom:126.314999px;}
.y26{bottom:127.591473px;}
.y1{bottom:127.591496px;}
.ycf{bottom:127.935000px;}
.yc5{bottom:128.294998px;}
.y115{bottom:138.974968px;}
.yfe{bottom:140.174995px;}
.yfb{bottom:140.175007px;}
.y99{bottom:140.535004px;}
.y71{bottom:143.235020px;}
.y54{bottom:143.774998px;}
.y25{bottom:145.591473px;}
.yac{bottom:148.814999px;}
.yce{bottom:150.615005px;}
.y114{bottom:153.974968px;}
.yfa{bottom:156.735005px;}
.yc4{bottom:158.355011px;}
.y98{bottom:160.515002px;}
.y70{bottom:161.234997px;}
.y53{bottom:161.774994px;}
.y24{bottom:163.591473px;}
.y113{bottom:168.974968px;}
.yf9{bottom:173.114995px;}
.y97{bottom:177.974991px;}
.y6f{bottom:179.415000px;}
.y52{bottom:179.595005px;}
.y23{bottom:181.591473px;}
.y112{bottom:183.974968px;}
.yf8{bottom:189.675007px;}
.y96{bottom:195.975007px;}
.y6e{bottom:197.415024px;}
.y51{bottom:197.594994px;}
.y111{bottom:198.974968px;}
.y22{bottom:199.591461px;}
.yc3{bottom:203.355011px;}
.yf6{bottom:206.235005px;}
.y110{bottom:213.974968px;}
.y95{bottom:214.155006px;}
.y6d{bottom:215.235008px;}
.y50{bottom:215.594994px;}
.y21{bottom:217.591461px;}
.yc2{bottom:221.355011px;}
.yf5{bottom:222.614995px;}
.y10f{bottom:228.974968px;}
.y94{bottom:232.154991px;}
.y6c{bottom:233.235008px;}
.y4f{bottom:233.594994px;}
.y20{bottom:235.591461px;}
.yf7{bottom:239.175007px;}
.yf4{bottom:239.175010px;}
.yc1{bottom:239.535004px;}
.y10e{bottom:243.974968px;}
.y93{bottom:249.975007px;}
.y6b{bottom:251.235008px;}
.y4e{bottom:251.594994px;}
.y1f{bottom:253.591461px;}
.yf2{bottom:255.734983px;}
.yc0{bottom:257.535004px;}
.y92{bottom:268.154989px;}
.y6a{bottom:269.235008px;}
.y4d{bottom:269.594992px;}
.y1e{bottom:271.591461px;}
.yf1{bottom:272.114994px;}
.ybf{bottom:275.535004px;}
.y91{bottom:286.199989px;}
.y4c{bottom:287.639992px;}
.yf0{bottom:288.720005px;}
.yf3{bottom:288.720008px;}
.ybe{bottom:293.580025px;}
.y1d{bottom:296.939964px;}
.y90{bottom:304.199989px;}
.y69{bottom:304.919975px;}
.yee{bottom:305.279981px;}
.y4b{bottom:305.640009px;}
.ybd{bottom:311.580025px;}
.y68{bottom:321.480011px;}
.yed{bottom:321.659994px;}
.y8f{bottom:322.199989px;}
.ybc{bottom:329.400009px;}
.yef{bottom:338.220005px;}
.yec{bottom:338.220008px;}
.y8e{bottom:340.020005px;}
.y1c{bottom:340.874977px;}
.y4a{bottom:342.359992px;}
.y67{bottom:344.160004px;}
.yeb{bottom:354.779981px;}
.y1b{bottom:357.434967px;}
.y8d{bottom:358.199989px;}
.ybb{bottom:365.040024px;}
.yea{bottom:371.160006px;}
.y8c{bottom:376.019982px;}
.yba{bottom:383.400009px;}
.ye8{bottom:387.720006px;}
.y49{bottom:391.139992px;}
.y8b{bottom:394.199982px;}
.y1a{bottom:400.904984px;}
.ye7{bottom:404.279995px;}
.ye9{bottom:404.280006px;}
.yb9{bottom:405.000000px;}
.y48{bottom:409.139992px;}
.y8a{bottom:412.199984px;}
.y19{bottom:417.374954px;}
.ye5{bottom:420.659994px;}
.y47{bottom:427.139992px;}
.y89{bottom:431.820007px;}
.y18{bottom:433.934967px;}
.ye4{bottom:437.219979px;}
.ye6{bottom:437.219994px;}
.y46{bottom:445.140015px;}
.y88{bottom:449.280006px;}
.y17{bottom:450.404984px;}
.ye2{bottom:453.779981px;}
.y45{bottom:463.139992px;}
.y16{bottom:466.874954px;}
.y87{bottom:467.279978px;}
.ye1{bottom:470.159994px;}
.y44{bottom:481.139992px;}
.y15{bottom:483.434967px;}
.ye3{bottom:486.719979px;}
.ye0{bottom:486.720008px;}
.y86{bottom:487.079978px;}
.y43{bottom:499.139992px;}
.y14{bottom:499.904984px;}
.y85{bottom:504.540001px;}
.y13{bottom:516.404984px;}
.y42{bottom:517.140021px;}
.ydf{bottom:522.360021px;}
.y84{bottom:522.539984px;}
.y12{bottom:532.964951px;}
.yab{bottom:534.269989px;}
.y41{bottom:535.170021px;}
.y83{bottom:540.569984px;}
.y11{bottom:549.434967px;}
.yaa{bottom:551.730011px;}
.ycd{bottom:553.169998px;}
.y40{bottom:553.170021px;}
.y82{bottom:558.570007px;}
.y10{bottom:565.904984px;}
.ya9{bottom:569.910004px;}
.ycc{bottom:571.169998px;}
.y3f{bottom:571.170021px;}
.y81{bottom:576.570014px;}
.yf{bottom:582.464951px;}
.ya8{bottom:587.729965px;}
.ycb{bottom:589.169998px;}
.y3e{bottom:589.170021px;}
.y80{bottom:596.370013px;}
.ye{bottom:598.934967px;}
.ya7{bottom:605.730011px;}
.yde{bottom:607.169976px;}
.yca{bottom:607.169998px;}
.y3d{bottom:607.170021px;}
.y7f{bottom:613.830013px;}
.yd{bottom:615.404984px;}
.y66{bottom:625.169952px;}
.y3c{bottom:625.169975px;}
.ya6{bottom:625.709976px;}
.y9c{bottom:625.710022px;}
.yc{bottom:631.964951px;}
.y7e{bottom:633.810012px;}
.y65{bottom:643.169952px;}
.y3b{bottom:643.169975px;}
.ydd{bottom:643.889975px;}
.yb{bottom:648.434967px;}
.y7d{bottom:651.269961px;}
.y64{bottom:661.169952px;}
.y3a{bottom:661.169975px;}
.y63{bottom:679.169952px;}
.y39{bottom:679.169975px;}
.yc9{bottom:679.169998px;}
.ya5{bottom:679.349991px;}
.y7c{bottom:687.989960px;}
.ya{bottom:692.354965px;}
.ydc{bottom:692.669975px;}
.y62{bottom:697.169952px;}
.y38{bottom:697.170020px;}
.yc8{bottom:697.349991px;}
.y9{bottom:708.464951px;}
.ydb{bottom:710.669975px;}
.y61{bottom:715.169952px;}
.y37{bottom:715.170020px;}
.ya4{bottom:715.349991px;}
.yda{bottom:728.669975px;}
.y8{bottom:729.434967px;}
.y10b{bottom:731.190023px;}
.y60{bottom:733.169952px;}
.y36{bottom:733.170020px;}
.y7b{bottom:738.569960px;}
.y7{bottom:741.854965px;}
.yd9{bottom:746.669975px;}
.y10a{bottom:747.749990px;}
.ya3{bottom:751.169952px;}
.yc7{bottom:751.169998px;}
.y35{bottom:751.170020px;}
.y5f{bottom:751.350037px;}
.yb8{bottom:754.949982px;}
.y7a{bottom:756.749960px;}
.y6{bottom:757.879440px;}
.y109{bottom:764.310009px;}
.yd8{bottom:764.670020px;}
.ya2{bottom:769.169952px;}
.y34{bottom:769.170020px;}
.y5e{bottom:769.170044px;}
.yb7{bottom:773.714996px;}
.y79{bottom:774.794960px;}
.y5{bottom:778.934967px;}
.y10c{bottom:780.734985px;}
.y108{bottom:780.735034px;}
.yd7{bottom:782.715019px;}
.y5d{bottom:787.214996px;}
.y33{bottom:787.215019px;}
.ya1{bottom:787.394989px;}
.yb6{bottom:791.894989px;}
.y78{bottom:792.795034px;}
.y106{bottom:797.295034px;}
.yd6{bottom:800.715019px;}
.y5c{bottom:805.214996px;}
.y32{bottom:805.215019px;}
.y4{bottom:806.115051px;}
.yb5{bottom:809.894989px;}
.y77{bottom:811.695034px;}
.y105{bottom:813.855010px;}
.y107{bottom:813.855034px;}
.yd5{bottom:818.715019px;}
.y5b{bottom:823.214996px;}
.y31{bottom:823.215019px;}
.ya0{bottom:823.394989px;}
.yb4{bottom:827.894989px;}
.y103{bottom:830.234975px;}
.yd4{bottom:836.715019px;}
.y74{bottom:840.855011px;}
.y76{bottom:840.855019px;}
.y5a{bottom:841.214996px;}
.y30{bottom:841.215019px;}
.y9f{bottom:841.394989px;}
.yb3{bottom:846.794952px;}
.y102{bottom:846.794974px;}
.y104{bottom:846.795008px;}
.yd3{bottom:854.714968px;}
.y59{bottom:859.214996px;}
.y2f{bottom:859.215019px;}
.y9e{bottom:859.394989px;}
.y3{bottom:860.385040px;}
.y100{bottom:863.354975px;}
.yb2{bottom:867.134949px;}
.y58{bottom:877.214996px;}
.y2e{bottom:877.215019px;}
.y9d{bottom:877.394989px;}
.y75{bottom:877.755019px;}
.yff{bottom:879.734975px;}
.y2{bottom:887.385040px;}
.yd2{bottom:891.434967px;}
.y2d{bottom:895.214968px;}
.y57{bottom:895.214996px;}
.yb1{bottom:896.294952px;}
.y101{bottom:896.294974px;}
.yb0{bottom:896.295044px;}
.y2c{bottom:928.934967px;}
.y10d{bottom:928.934990px;}
.h5{height:25.020000px;}
.h7{height:37.530000px;}
.h19{height:37.705078px;}
.h33{height:37.705089px;}
.h37{height:37.705095px;}
.h2e{height:37.705111px;}
.h2f{height:37.705118px;}
.h2b{height:37.705124px;}
.h36{height:37.705170px;}
.h32{height:37.705181px;}
.h35{height:37.705210px;}
.h31{height:37.705226px;}
.h16{height:37.705261px;}
.h34{height:37.705358px;}
.h6{height:37.872041px;}
.h15{height:38.100586px;}
.h30{height:39.313477px;}
.h9{height:40.410000px;}
.ha{height:41.313148px;}
.hd{height:41.726953px;}
.h21{height:41.726999px;}
.he{height:41.727045px;}
.h20{height:41.727073px;}
.h2d{height:41.727133px;}
.hf{height:41.727136px;}
.h1c{height:41.727157px;}
.hc{height:41.727159px;}
.h2{height:41.783400px;}
.h25{height:43.136627px;}
.h28{height:43.506914px;}
.h26{height:45.509766px;}
.h1b{height:46.229766px;}
.h1a{height:47.669766px;}
.h4{height:47.901483px;}
.h2a{height:48.027539px;}
.h1e{height:48.027656px;}
.h27{height:48.027722px;}
.h29{height:48.027905px;}
.h1d{height:48.147631px;}
.hb{height:48.330360px;}
.h8{height:48.816000px;}
.h14{height:50.363958px;}
.h17{height:50.364045px;}
.h22{height:50.364099px;}
.h23{height:50.364111px;}
.h18{height:50.364141px;}
.h13{height:50.364157px;}
.h12{height:50.364186px;}
.h11{height:50.364203px;}
.h1f{height:50.364221px;}
.h24{height:50.364324px;}
.h2c{height:50.800781px;}
.h10{height:52.417969px;}
.h3{height:56.870638px;}
.h1{height:999.000000px;}
.h0{height:999.210000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x10{left:59.534998px;}
.x1f{left:62.340002px;}
.x17{left:63.779984px;}
.x24{left:66.300013px;}
.x25{left:73.139989px;}
.x11{left:76.560003px;}
.xc{left:80.715059px;}
.x14{left:82.514997px;}
.x5{left:84.495031px;}
.x1c{left:85.919998px;}
.x8{left:88.905046px;}
.x23{left:93.495003px;}
.x27{left:94.575009px;}
.xd{left:97.725060px;}
.x2{left:100.605000px;}
.x26{left:106.275009px;}
.x3{left:119.863483px;}
.xb{left:123.285061px;}
.x20{left:138.659969px;}
.x1a{left:166.935013px;}
.x28{left:171.600003px;}
.x4{left:189.884983px;}
.xe{left:193.575005px;}
.x15{left:203.520012px;}
.xa{left:214.545067px;}
.x7{left:218.595039px;}
.x1d{left:229.784981px;}
.x9{left:281.895058px;}
.x6{left:301.683037px;}
.x1e{left:521.414978px;}
.xf{left:526.005020px;}
.x1b{left:544.558502px;}
.x18{left:545.703003px;}
.x16{left:551.699982px;}
.x22{left:552.750000px;}
.x12{left:559.158005px;}
.x21{left:562.521011px;}
.x19{left:576.375000px;}
.x13{left:599.414978px;}
.x1{left:603.314987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-10.880000pt;}
.v4{vertical-align:-9.600000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v6{vertical-align:9.600000pt;}
.v8{vertical-align:10.880000pt;}
.v9{vertical-align:16.000000pt;}
.v1{vertical-align:18.559896pt;}
.ls24{letter-spacing:-0.688000pt;}
.ls52{letter-spacing:-0.624000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.409067pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.195733pt;}
.ls53{letter-spacing:-0.128000pt;}
.ls5e{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047467pt;}
.ls4{letter-spacing:-0.029333pt;}
.ls38{letter-spacing:-0.007467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.000048pt;}
.ls64{letter-spacing:0.001600pt;}
.lsf{letter-spacing:0.005120pt;}
.ls6{letter-spacing:0.011733pt;}
.ls61{letter-spacing:0.045333pt;}
.ls44{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.094720pt;}
.ls22{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.101315pt;}
.lse{letter-spacing:0.101350pt;}
.ls31{letter-spacing:0.101384pt;}
.ls11{letter-spacing:0.106662pt;}
.ls3{letter-spacing:0.144533pt;}
.ls59{letter-spacing:0.153600pt;}
.lsa{letter-spacing:0.156281pt;}
.ls43{letter-spacing:0.159993pt;}
.ls42{letter-spacing:0.159995pt;}
.ls14{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.230933pt;}
.ls5a{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.250607pt;}
.ls30{letter-spacing:0.250622pt;}
.ls32{letter-spacing:0.256074pt;}
.ls8{letter-spacing:0.265387pt;}
.ls21{letter-spacing:0.266659pt;}
.lsb{letter-spacing:0.266661pt;}
.ls13{letter-spacing:0.266742pt;}
.ls5d{letter-spacing:0.287860pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls58{letter-spacing:0.288004pt;}
.ls18{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.320046pt;}
.ls55{letter-spacing:0.475058pt;}
.ls60{letter-spacing:0.629867pt;}
.ls29{letter-spacing:0.735999pt;}
.ls5f{letter-spacing:0.864000pt;}
.ls63{letter-spacing:1.038933pt;}
.ls62{letter-spacing:1.093867pt;}
.ls1e{letter-spacing:1.479050pt;}
.ls65{letter-spacing:1.545600pt;}
.ls66{letter-spacing:1.638400pt;}
.ls45{letter-spacing:1.648007pt;}
.ls46{letter-spacing:2.032006pt;}
.ls2a{letter-spacing:2.530559pt;}
.ls4b{letter-spacing:2.581747pt;}
.ls20{letter-spacing:2.696895pt;}
.ls10{letter-spacing:2.696960pt;}
.ls2b{letter-spacing:2.713599pt;}
.ls57{letter-spacing:2.714710pt;}
.ls2f{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:2.789084pt;}
.ls34{letter-spacing:2.789120pt;}
.ls1d{letter-spacing:2.867233pt;}
.ls2e{letter-spacing:2.891520pt;}
.ls41{letter-spacing:2.891592pt;}
.ls28{letter-spacing:2.978560pt;}
.ls40{letter-spacing:2.998200pt;}
.ls26{letter-spacing:3.051519pt;}
.ls4d{letter-spacing:3.365055pt;}
.lsd{letter-spacing:3.365120pt;}
.ls1f{letter-spacing:3.365218pt;}
.ls4e{letter-spacing:4.005192pt;}
.ls2d{letter-spacing:10.864000pt;}
.ls1a{letter-spacing:12.266056pt;}
.ls19{letter-spacing:14.663690pt;}
.ls50{letter-spacing:14.719262pt;}
.ls36{letter-spacing:14.719359pt;}
.ls3d{letter-spacing:14.719425pt;}
.ls3e{letter-spacing:15.359318pt;}
.ls3a{letter-spacing:15.359399pt;}
.ls54{letter-spacing:17.509136pt;}
.ls56{letter-spacing:17.587122pt;}
.ls39{letter-spacing:18.085107pt;}
.ls35{letter-spacing:18.085120pt;}
.ls3b{letter-spacing:18.085188pt;}
.ls33{letter-spacing:18.227200pt;}
.ls3c{letter-spacing:18.725081pt;}
.ls3f{letter-spacing:18.725083pt;}
.ls37{letter-spacing:18.725119pt;}
.ls5b{letter-spacing:42.559998pt;}
.ls5c{letter-spacing:42.560028pt;}
.ls0{letter-spacing:45.760039pt;}
.ls49{letter-spacing:63.520020pt;}
.ls51{letter-spacing:69.712620pt;}
.ls4a{letter-spacing:87.199951pt;}
.ls47{letter-spacing:87.839925pt;}
.ls48{letter-spacing:87.840007pt;}
.ls9{letter-spacing:101.247998pt;}
.ls1{letter-spacing:101.568006pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.371733pt;}
.ws8{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.232533pt;}
.ws2a{word-spacing:-13.185067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.870933pt;}
.ws2d{word-spacing:-12.824000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.970667pt;}
.wse{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.686400pt;}
.ws2b{word-spacing:-11.376000pt;}
.ws13{word-spacing:-10.848000pt;}
.ws10{word-spacing:-10.560000pt;}
.ws20{word-spacing:-10.432000pt;}
.ws15{word-spacing:-8.632533pt;}
.ws1f{word-spacing:-8.064000pt;}
.ws0{word-spacing:-8.000000pt;}
.ws29{word-spacing:-7.756800pt;}
.ws14{word-spacing:-0.976002pt;}
.ws11{word-spacing:-0.608000pt;}
.ws12{word-spacing:-0.336000pt;}
.ws2{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws33{word-spacing:0.003200pt;}
.ws7{word-spacing:0.100267pt;}
.ws30{word-spacing:0.113067pt;}
.wsd{word-spacing:0.461398pt;}
.ws28{word-spacing:0.461479pt;}
.ws26{word-spacing:0.473034pt;}
.ws25{word-spacing:0.569959pt;}
.ws2e{word-spacing:1.574933pt;}
.ws2f{word-spacing:2.160000pt;}
.ws32{word-spacing:2.597333pt;}
.ws31{word-spacing:2.734933pt;}
.ws18{word-spacing:2.926719pt;}
.ws1b{word-spacing:3.032944pt;}
.ws16{word-spacing:3.032959pt;}
.ws24{word-spacing:3.033045pt;}
.ws1d{word-spacing:3.033247pt;}
.ws21{word-spacing:3.193199pt;}
.ws17{word-spacing:3.672958pt;}
.ws27{word-spacing:3.673035pt;}
.ws1c{word-spacing:3.673215pt;}
.ws22{word-spacing:3.673221pt;}
.ws34{word-spacing:3.864000pt;}
.ws35{word-spacing:4.095467pt;}
.ws19{word-spacing:4.762879pt;}
.ws23{word-spacing:5.402676pt;}
.ws2c{word-spacing:29.280000pt;}
._d{margin-left:-1521.504090pt;}
._1d{margin-left:-3.899369pt;}
._b{margin-left:-3.007026pt;}
._6{margin-left:-2.018558pt;}
._1{margin-left:-0.909442pt;}
._0{width:1.082089pt;}
._2{width:2.511995pt;}
._4{width:3.786883pt;}
._3{width:4.704000pt;}
._5{width:5.760000pt;}
._9{width:6.843404pt;}
._7{width:7.763691pt;}
._a{width:8.705354pt;}
._21{width:9.761004pt;}
._c{width:11.451734pt;}
._20{width:15.030194pt;}
._1e{width:16.116844pt;}
._1f{width:17.100049pt;}
._2f{width:51.885801pt;}
._2c{width:62.240033pt;}
._1c{width:73.306647pt;}
._31{width:75.367303pt;}
._29{width:86.560033pt;}
._2a{width:88.685280pt;}
._30{width:95.215951pt;}
._23{width:101.184007pt;}
._24{width:103.184033pt;}
._25{width:106.618533pt;}
._26{width:109.152007pt;}
._2e{width:110.559951pt;}
._28{width:111.839925pt;}
._e{width:133.408000pt;}
._10{width:152.554647pt;}
._14{width:167.186558pt;}
._11{width:173.760000pt;}
._13{width:193.354658pt;}
._16{width:200.394657pt;}
._17{width:217.429918pt;}
._19{width:232.880568pt;}
._1a{width:328.000000pt;}
._18{width:414.495990pt;}
._2b{width:424.629930pt;}
._12{width:452.896073pt;}
._2d{width:456.160034pt;}
._f{width:459.615990pt;}
._27{width:467.680033pt;}
._15{width:476.895990pt;}
._22{width:533.418637pt;}
._1b{width:574.239990pt;}
._8{width:754.746750pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:40.000000pt;}
.fs7{font-size:40.893985pt;}
.fs8{font-size:47.840000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:53.440000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.559998pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:41.573333pt;}
.y2a{bottom:54.906667pt;}
.y29{bottom:68.240000pt;}
.y28{bottom:81.573333pt;}
.yaf{bottom:82.840001pt;}
.y27{bottom:83.159999pt;}
.yd1{bottom:84.440002pt;}
.y9b{bottom:93.080003pt;}
.yfd{bottom:95.320005pt;}
.y73{bottom:95.320017pt;}
.y56{bottom:95.799994pt;}
.y117{bottom:96.866638pt;}
.yae{bottom:97.560018pt;}
.yc6{bottom:98.039998pt;}
.yd0{bottom:98.999990pt;}
.y9a{bottom:108.920003pt;}
.yfc{bottom:109.879996pt;}
.y116{bottom:110.199972pt;}
.y72{bottom:111.320017pt;}
.y55{bottom:111.640008pt;}
.yad{bottom:112.279999pt;}
.y26{bottom:113.414642pt;}
.y1{bottom:113.414663pt;}
.ycf{bottom:113.720000pt;}
.yc5{bottom:114.039998pt;}
.y115{bottom:123.533305pt;}
.yfe{bottom:124.599996pt;}
.yfb{bottom:124.600006pt;}
.y99{bottom:124.920003pt;}
.y71{bottom:127.320017pt;}
.y54{bottom:127.799998pt;}
.y25{bottom:129.414642pt;}
.yac{bottom:132.279999pt;}
.yce{bottom:133.880005pt;}
.y114{bottom:136.866638pt;}
.yfa{bottom:139.320005pt;}
.yc4{bottom:140.760010pt;}
.y98{bottom:142.680002pt;}
.y70{bottom:143.319997pt;}
.y53{bottom:143.799994pt;}
.y24{bottom:145.414642pt;}
.y113{bottom:150.199972pt;}
.yf9{bottom:153.879996pt;}
.y97{bottom:158.199992pt;}
.y6f{bottom:159.480000pt;}
.y52{bottom:159.640004pt;}
.y23{bottom:161.414642pt;}
.y112{bottom:163.533305pt;}
.yf8{bottom:168.600006pt;}
.y96{bottom:174.200006pt;}
.y6e{bottom:175.480021pt;}
.y51{bottom:175.639994pt;}
.y111{bottom:176.866638pt;}
.y22{bottom:177.414632pt;}
.yc3{bottom:180.760010pt;}
.yf6{bottom:183.320005pt;}
.y110{bottom:190.199972pt;}
.y95{bottom:190.360006pt;}
.y6d{bottom:191.320007pt;}
.y50{bottom:191.639994pt;}
.y21{bottom:193.414632pt;}
.yc2{bottom:196.760010pt;}
.yf5{bottom:197.879996pt;}
.y10f{bottom:203.533305pt;}
.y94{bottom:206.359992pt;}
.y6c{bottom:207.320007pt;}
.y4f{bottom:207.639994pt;}
.y20{bottom:209.414632pt;}
.yf7{bottom:212.600006pt;}
.yf4{bottom:212.600009pt;}
.yc1{bottom:212.920003pt;}
.y10e{bottom:216.866638pt;}
.y93{bottom:222.200006pt;}
.y6b{bottom:223.320007pt;}
.y4e{bottom:223.639994pt;}
.y1f{bottom:225.414632pt;}
.yf2{bottom:227.319985pt;}
.yc0{bottom:228.920003pt;}
.y92{bottom:238.359991pt;}
.y6a{bottom:239.320007pt;}
.y4d{bottom:239.639993pt;}
.y1e{bottom:241.414632pt;}
.yf1{bottom:241.879995pt;}
.ybf{bottom:244.920003pt;}
.y91{bottom:254.399990pt;}
.y4c{bottom:255.679993pt;}
.yf0{bottom:256.640004pt;}
.yf3{bottom:256.640007pt;}
.ybe{bottom:260.960022pt;}
.y1d{bottom:263.946635pt;}
.y90{bottom:270.399990pt;}
.y69{bottom:271.039978pt;}
.yee{bottom:271.359983pt;}
.y4b{bottom:271.680008pt;}
.ybd{bottom:276.960022pt;}
.y68{bottom:285.760010pt;}
.yed{bottom:285.919994pt;}
.y8f{bottom:286.399990pt;}
.ybc{bottom:292.800008pt;}
.yef{bottom:300.640004pt;}
.yec{bottom:300.640007pt;}
.y8e{bottom:302.240004pt;}
.y1c{bottom:302.999980pt;}
.y4a{bottom:304.319993pt;}
.y67{bottom:305.920003pt;}
.yeb{bottom:315.359983pt;}
.y1b{bottom:317.719971pt;}
.y8d{bottom:318.399990pt;}
.ybb{bottom:324.480021pt;}
.yea{bottom:329.920006pt;}
.y8c{bottom:334.239984pt;}
.yba{bottom:340.800008pt;}
.ye8{bottom:344.640006pt;}
.y49{bottom:347.679993pt;}
.y8b{bottom:350.399984pt;}
.y1a{bottom:356.359985pt;}
.ye7{bottom:359.359996pt;}
.ye9{bottom:359.360006pt;}
.yb9{bottom:360.000000pt;}
.y48{bottom:363.679993pt;}
.y8a{bottom:366.399986pt;}
.y19{bottom:370.999959pt;}
.ye5{bottom:373.919994pt;}
.y47{bottom:379.679993pt;}
.y89{bottom:383.840007pt;}
.y18{bottom:385.719971pt;}
.ye4{bottom:388.639982pt;}
.ye6{bottom:388.639994pt;}
.y46{bottom:395.680013pt;}
.y88{bottom:399.360006pt;}
.y17{bottom:400.359985pt;}
.ye2{bottom:403.359983pt;}
.y45{bottom:411.679993pt;}
.y16{bottom:414.999959pt;}
.y87{bottom:415.359981pt;}
.ye1{bottom:417.919994pt;}
.y44{bottom:427.679993pt;}
.y15{bottom:429.719971pt;}
.ye3{bottom:432.639982pt;}
.ye0{bottom:432.640007pt;}
.y86{bottom:432.959980pt;}
.y43{bottom:443.679993pt;}
.y14{bottom:444.359985pt;}
.y85{bottom:448.480001pt;}
.y13{bottom:459.026652pt;}
.y42{bottom:459.680019pt;}
.ydf{bottom:464.320019pt;}
.y84{bottom:464.479986pt;}
.y12{bottom:473.746623pt;}
.yab{bottom:474.906657pt;}
.y41{bottom:475.706685pt;}
.y83{bottom:480.506653pt;}
.y11{bottom:488.386637pt;}
.yaa{bottom:490.426676pt;}
.ycd{bottom:491.706665pt;}
.y40{bottom:491.706685pt;}
.y82{bottom:496.506673pt;}
.y10{bottom:503.026652pt;}
.ya9{bottom:506.586670pt;}
.ycc{bottom:507.706665pt;}
.y3f{bottom:507.706685pt;}
.y81{bottom:512.506679pt;}
.yf{bottom:517.746623pt;}
.ya8{bottom:522.426636pt;}
.ycb{bottom:523.706665pt;}
.y3e{bottom:523.706685pt;}
.y80{bottom:530.106678pt;}
.ye{bottom:532.386637pt;}
.ya7{bottom:538.426676pt;}
.yde{bottom:539.706645pt;}
.yca{bottom:539.706665pt;}
.y3d{bottom:539.706685pt;}
.y7f{bottom:545.626678pt;}
.yd{bottom:547.026652pt;}
.y66{bottom:555.706624pt;}
.y3c{bottom:555.706645pt;}
.ya6{bottom:556.186646pt;}
.y9c{bottom:556.186686pt;}
.yc{bottom:561.746623pt;}
.y7e{bottom:563.386677pt;}
.y65{bottom:571.706624pt;}
.y3b{bottom:571.706645pt;}
.ydd{bottom:572.346645pt;}
.yb{bottom:576.386637pt;}
.y7d{bottom:578.906632pt;}
.y64{bottom:587.706624pt;}
.y3a{bottom:587.706645pt;}
.y63{bottom:603.706624pt;}
.y39{bottom:603.706645pt;}
.yc9{bottom:603.706665pt;}
.ya5{bottom:603.866659pt;}
.y7c{bottom:611.546631pt;}
.ya{bottom:615.426636pt;}
.ydc{bottom:615.706645pt;}
.y62{bottom:619.706624pt;}
.y38{bottom:619.706684pt;}
.yc8{bottom:619.866659pt;}
.y9{bottom:629.746623pt;}
.ydb{bottom:631.706645pt;}
.y61{bottom:635.706624pt;}
.y37{bottom:635.706684pt;}
.ya4{bottom:635.866659pt;}
.yda{bottom:647.706645pt;}
.y8{bottom:648.386637pt;}
.y10b{bottom:649.946687pt;}
.y60{bottom:651.706624pt;}
.y36{bottom:651.706684pt;}
.y7b{bottom:656.506631pt;}
.y7{bottom:659.426636pt;}
.yd9{bottom:663.706645pt;}
.y10a{bottom:664.666658pt;}
.ya3{bottom:667.706624pt;}
.yc7{bottom:667.706665pt;}
.y35{bottom:667.706684pt;}
.y5f{bottom:667.866699pt;}
.yb8{bottom:671.066650pt;}
.y7a{bottom:672.666631pt;}
.y6{bottom:673.670614pt;}
.y109{bottom:679.386674pt;}
.yd8{bottom:679.706684pt;}
.ya2{bottom:683.706624pt;}
.y34{bottom:683.706684pt;}
.y5e{bottom:683.706706pt;}
.yb7{bottom:687.746663pt;}
.y79{bottom:688.706631pt;}
.y5{bottom:692.386637pt;}
.y10c{bottom:693.986654pt;}
.y108{bottom:693.986697pt;}
.yd7{bottom:695.746684pt;}
.y5d{bottom:699.746663pt;}
.y33{bottom:699.746684pt;}
.ya1{bottom:699.906657pt;}
.yb6{bottom:703.906657pt;}
.y78{bottom:704.706697pt;}
.y106{bottom:708.706697pt;}
.yd6{bottom:711.746684pt;}
.y5c{bottom:715.746663pt;}
.y32{bottom:715.746684pt;}
.y4{bottom:716.546712pt;}
.yb5{bottom:719.906657pt;}
.y77{bottom:721.506697pt;}
.y105{bottom:723.426675pt;}
.y107{bottom:723.426697pt;}
.yd5{bottom:727.746684pt;}
.y5b{bottom:731.746663pt;}
.y31{bottom:731.746684pt;}
.ya0{bottom:731.906657pt;}
.yb4{bottom:735.906657pt;}
.y103{bottom:737.986645pt;}
.yd4{bottom:743.746684pt;}
.y74{bottom:747.426676pt;}
.y76{bottom:747.426684pt;}
.y5a{bottom:747.746663pt;}
.y30{bottom:747.746684pt;}
.y9f{bottom:747.906657pt;}
.yb3{bottom:752.706624pt;}
.y102{bottom:752.706643pt;}
.y104{bottom:752.706674pt;}
.yd3{bottom:759.746638pt;}
.y59{bottom:763.746663pt;}
.y2f{bottom:763.746684pt;}
.y9e{bottom:763.906657pt;}
.y3{bottom:764.786702pt;}
.y100{bottom:767.426645pt;}
.yb2{bottom:770.786621pt;}
.y58{bottom:779.746663pt;}
.y2e{bottom:779.746684pt;}
.y9d{bottom:779.906657pt;}
.y75{bottom:780.226684pt;}
.yff{bottom:781.986645pt;}
.y2{bottom:788.786702pt;}
.yd2{bottom:792.386637pt;}
.y2d{bottom:795.746638pt;}
.y57{bottom:795.746663pt;}
.yb1{bottom:796.706624pt;}
.y101{bottom:796.706643pt;}
.yb0{bottom:796.706706pt;}
.y2c{bottom:825.719971pt;}
.y10d{bottom:825.719991pt;}
.h5{height:22.240000pt;}
.h7{height:33.360000pt;}
.h19{height:33.515625pt;}
.h33{height:33.515635pt;}
.h37{height:33.515640pt;}
.h2e{height:33.515654pt;}
.h2f{height:33.515661pt;}
.h2b{height:33.515666pt;}
.h36{height:33.515706pt;}
.h32{height:33.515716pt;}
.h35{height:33.515742pt;}
.h31{height:33.515757pt;}
.h16{height:33.515788pt;}
.h34{height:33.515874pt;}
.h6{height:33.664036pt;}
.h15{height:33.867188pt;}
.h30{height:34.945312pt;}
.h9{height:35.920000pt;}
.ha{height:36.722799pt;}
.hd{height:37.090625pt;}
.h21{height:37.090666pt;}
.he{height:37.090706pt;}
.h20{height:37.090732pt;}
.h2d{height:37.090785pt;}
.hf{height:37.090788pt;}
.h1c{height:37.090806pt;}
.hc{height:37.090808pt;}
.h2{height:37.140800pt;}
.h25{height:38.343669pt;}
.h28{height:38.672812pt;}
.h26{height:40.453125pt;}
.h1b{height:41.093125pt;}
.h1a{height:42.373125pt;}
.h4{height:42.579096pt;}
.h2a{height:42.691146pt;}
.h1e{height:42.691250pt;}
.h27{height:42.691309pt;}
.h29{height:42.691471pt;}
.h1d{height:42.797894pt;}
.hb{height:42.960320pt;}
.h8{height:43.392000pt;}
.h14{height:44.767962pt;}
.h17{height:44.768040pt;}
.h22{height:44.768088pt;}
.h23{height:44.768099pt;}
.h18{height:44.768125pt;}
.h13{height:44.768140pt;}
.h12{height:44.768166pt;}
.h11{height:44.768180pt;}
.h1f{height:44.768197pt;}
.h24{height:44.768288pt;}
.h2c{height:45.156250pt;}
.h10{height:46.593750pt;}
.h3{height:50.551678pt;}
.h1{height:888.000000pt;}
.h0{height:888.186667pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x10{left:52.919998pt;}
.x1f{left:55.413335pt;}
.x17{left:56.693319pt;}
.x24{left:58.933345pt;}
.x25{left:65.013324pt;}
.x11{left:68.053336pt;}
.xc{left:71.746719pt;}
.x14{left:73.346664pt;}
.x5{left:75.106695pt;}
.x1c{left:76.373332pt;}
.x8{left:79.026708pt;}
.x23{left:83.106669pt;}
.x27{left:84.066675pt;}
.xd{left:86.866720pt;}
.x2{left:89.426666pt;}
.x26{left:94.466675pt;}
.x3{left:106.545319pt;}
.xb{left:109.586721pt;}
.x20{left:123.253306pt;}
.x1a{left:148.386678pt;}
.x28{left:152.533336pt;}
.x4{left:168.786652pt;}
.xe{left:172.066671pt;}
.x15{left:180.906677pt;}
.xa{left:190.706726pt;}
.x7{left:194.306702pt;}
.x1d{left:204.253316pt;}
.x9{left:250.573385pt;}
.x6{left:268.162699pt;}
.x1e{left:463.479980pt;}
.xf{left:467.560018pt;}
.x1b{left:484.052002pt;}
.x18{left:485.069336pt;}
.x16{left:490.399984pt;}
.x22{left:491.333333pt;}
.x12{left:497.029338pt;}
.x21{left:500.018677pt;}
.x19{left:512.333333pt;}
.x13{left:532.813314pt;}
.x1{left:536.279989pt;}
}




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