
    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_d0588dd7c5c933ba63775fcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d0db36b4cd9f16aeb38b39d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d13be72cde1e78811296b4a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_3ac4860cf34f87b721e2950b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_509e06fef90ea52dd9b25d88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.865234;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_a0369d7b7bfe8ca22d0d8718.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916504;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_0899d94fa1b8942298392812.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.864258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-29.160000px;}
.v5{vertical-align:-19.800000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.680000px;}
.v7{vertical-align:18.000000px;}
.v2{vertical-align:30.958668px;}
.v3{vertical-align:55.081332px;}
.ls60{letter-spacing:-0.135000px;}
.ls55{letter-spacing:-0.130500px;}
.ls34{letter-spacing:-0.121500px;}
.ls1e{letter-spacing:-0.118800px;}
.ls3d{letter-spacing:-0.113544px;}
.ls19{letter-spacing:-0.113400px;}
.ls54{letter-spacing:-0.112500px;}
.ls36{letter-spacing:-0.110556px;}
.ls5b{letter-spacing:-0.109512px;}
.ls5{letter-spacing:-0.108000px;}
.ls31{letter-spacing:-0.105336px;}
.ls5c{letter-spacing:-0.105300px;}
.ls3f{letter-spacing:-0.104580px;}
.ls38{letter-spacing:-0.101592px;}
.ls1c{letter-spacing:-0.086400px;}
.ls58{letter-spacing:-0.084240px;}
.ls18{letter-spacing:-0.081000px;}
.ls1b{letter-spacing:-0.075600px;}
.ls3e{letter-spacing:-0.068724px;}
.ls61{letter-spacing:-0.067392px;}
.ls70{letter-spacing:-0.066132px;}
.ls3a{letter-spacing:-0.059760px;}
.ls2d{letter-spacing:-0.056232px;}
.ls57{letter-spacing:-0.054756px;}
.ls1a{letter-spacing:-0.054000px;}
.ls41{letter-spacing:-0.050796px;}
.ls62{letter-spacing:-0.048096px;}
.ls33{letter-spacing:-0.047880px;}
.ls59{letter-spacing:-0.046332px;}
.ls6d{letter-spacing:-0.042084px;}
.ls39{letter-spacing:-0.041832px;}
.ls40{letter-spacing:-0.038844px;}
.ls2a{letter-spacing:-0.038304px;}
.ls1d{letter-spacing:-0.037800px;}
.ls67{letter-spacing:-0.030060px;}
.ls2c{letter-spacing:-0.028728px;}
.ls65{letter-spacing:-0.026136px;}
.ls5a{letter-spacing:-0.025272px;}
.ls69{letter-spacing:-0.024048px;}
.ls32{letter-spacing:-0.023940px;}
.ls20{letter-spacing:-0.021060px;}
.ls2f{letter-spacing:-0.019152px;}
.ls6e{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.016200px;}
.ls2b{letter-spacing:-0.014364px;}
.ls68{letter-spacing:-0.012024px;}
.ls35{letter-spacing:-0.009612px;}
.ls7{letter-spacing:-0.006012px;}
.ls37{letter-spacing:-0.005976px;}
.ls2e{letter-spacing:-0.005112px;}
.ls30{letter-spacing:-0.004788px;}
.ls21{letter-spacing:-0.004212px;}
.ls3b{letter-spacing:-0.002988px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.004212px;}
.lsa{letter-spacing:0.004788px;}
.lsd{letter-spacing:0.006012px;}
.ls13{letter-spacing:0.008424px;}
.ls25{letter-spacing:0.009576px;}
.ls9{letter-spacing:0.010800px;}
.ls3c{letter-spacing:0.011952px;}
.ls6f{letter-spacing:0.012024px;}
.ls4d{letter-spacing:0.012636px;}
.ls23{letter-spacing:0.014364px;}
.ls1f{letter-spacing:0.014976px;}
.ls24{letter-spacing:0.015336px;}
.ls50{letter-spacing:0.018036px;}
.ls10{letter-spacing:0.021060px;}
.ls66{letter-spacing:0.024048px;}
.ls14{letter-spacing:0.025272px;}
.ls2{letter-spacing:0.027000px;}
.ls22{letter-spacing:0.029952px;}
.ls6b{letter-spacing:0.030060px;}
.ls17{letter-spacing:0.033696px;}
.lse{letter-spacing:0.036072px;}
.ls48{letter-spacing:0.038448px;}
.ls1{letter-spacing:0.042084px;}
.ls49{letter-spacing:0.048060px;}
.ls0{letter-spacing:0.048096px;}
.ls3{letter-spacing:0.052668px;}
.lsf{letter-spacing:0.054000px;}
.ls63{letter-spacing:0.054108px;}
.ls16{letter-spacing:0.054756px;}
.ls4{letter-spacing:0.058716px;}
.ls5f{letter-spacing:0.059292px;}
.ls6a{letter-spacing:0.060120px;}
.ls46{letter-spacing:0.065880px;}
.ls6c{letter-spacing:0.066132px;}
.ls52{letter-spacing:0.072144px;}
.ls12{letter-spacing:0.074880px;}
.lsc{letter-spacing:0.078156px;}
.ls5e{letter-spacing:0.079056px;}
.ls64{letter-spacing:0.084168px;}
.ls15{letter-spacing:0.084240px;}
.ls5d{letter-spacing:0.085644px;}
.ls29{letter-spacing:0.094500px;}
.ls42{letter-spacing:0.112500px;}
.ls4e{letter-spacing:0.121500px;}
.ls26{letter-spacing:0.135000px;}
.ls27{letter-spacing:0.139500px;}
.ls4f{letter-spacing:0.144000px;}
.ls44{letter-spacing:0.148500px;}
.lsb{letter-spacing:0.150984px;}
.ls45{letter-spacing:0.153000px;}
.ls43{letter-spacing:0.162000px;}
.ls28{letter-spacing:0.184500px;}
.ls53{letter-spacing:16.302240px;}
.ls51{letter-spacing:16.545024px;}
.ls47{letter-spacing:18.060480px;}
.ls4a{letter-spacing:75.915000px;}
.ls56{letter-spacing:76.635000px;}
.ls4b{letter-spacing:140.715000px;}
.ls4c{letter-spacing:224.505000px;}
.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;}
}
.ws56{word-spacing:-60.120000px;}
.ws41{word-spacing:-23.625000px;}
.ws0{word-spacing:-16.755444px;}
.ws9{word-spacing:-16.713360px;}
.ws24{word-spacing:-14.226696px;}
.ws1{word-spacing:-13.363308px;}
.ws23{word-spacing:-13.281912px;}
.ws22{word-spacing:-13.272336px;}
.ws3e{word-spacing:-12.402000px;}
.ws3f{word-spacing:-12.388500px;}
.ws40{word-spacing:-12.379500px;}
.ws49{word-spacing:-11.717784px;}
.ws27{word-spacing:-8.205048px;}
.ws2a{word-spacing:-8.193096px;}
.ws16{word-spacing:-2.745000px;}
.ws4f{word-spacing:-1.461564px;}
.ws26{word-spacing:-1.386000px;}
.ws4{word-spacing:-1.268532px;}
.ws61{word-spacing:-1.172340px;}
.ws68{word-spacing:-0.943884px;}
.ws63{word-spacing:-0.937872px;}
.ws21{word-spacing:-0.935064px;}
.ws6d{word-spacing:-0.907812px;}
.ws15{word-spacing:-0.901800px;}
.ws6c{word-spacing:-0.889776px;}
.wse{word-spacing:-0.871740px;}
.ws5c{word-spacing:-0.836244px;}
.ws42{word-spacing:-0.828000px;}
.ws4e{word-spacing:-0.810000px;}
.ws5d{word-spacing:-0.605556px;}
.ws20{word-spacing:-0.598104px;}
.ws65{word-spacing:-0.595944px;}
.ws6e{word-spacing:-0.589176px;}
.wsc{word-spacing:-0.583164px;}
.ws1e{word-spacing:-0.568620px;}
.ws1a{word-spacing:-0.564408px;}
.ws64{word-spacing:-0.559116px;}
.wsb{word-spacing:-0.553104px;}
.ws1b{word-spacing:-0.547560px;}
.ws1f{word-spacing:-0.539136px;}
.ws62{word-spacing:-0.523044px;}
.wsd{word-spacing:-0.505008px;}
.ws3{word-spacing:-0.498996px;}
.ws67{word-spacing:-0.474948px;}
.ws6b{word-spacing:-0.462924px;}
.ws34{word-spacing:-0.432540px;}
.ws31{word-spacing:-0.400500px;}
.ws5a{word-spacing:-0.388692px;}
.ws57{word-spacing:-0.373500px;}
.ws33{word-spacing:-0.355500px;}
.ws1d{word-spacing:-0.189540px;}
.ws72{word-spacing:-0.186372px;}
.ws1c{word-spacing:-0.185328px;}
.ws70{word-spacing:-0.180360px;}
.ws66{word-spacing:-0.168336px;}
.ws6a{word-spacing:-0.162324px;}
.ws19{word-spacing:-0.160056px;}
.ws6f{word-spacing:-0.156312px;}
.ws69{word-spacing:-0.120240px;}
.ws71{word-spacing:-0.114228px;}
.ws73{word-spacing:-0.078156px;}
.ws55{word-spacing:-0.060120px;}
.ws60{word-spacing:-0.013176px;}
.ws58{word-spacing:-0.006588px;}
.ws2{word-spacing:0.000000px;}
.ws2c{word-spacing:0.019152px;}
.ws25{word-spacing:0.035784px;}
.ws39{word-spacing:0.080676px;}
.ws6{word-spacing:0.091800px;}
.ws5{word-spacing:0.135000px;}
.ws17{word-spacing:0.156600px;}
.ws2e{word-spacing:0.204480px;}
.ws5b{word-spacing:0.335988px;}
.ws36{word-spacing:0.343620px;}
.ws59{word-spacing:0.349164px;}
.ws2b{word-spacing:0.363888px;}
.ws7{word-spacing:0.373464px;}
.ws8{word-spacing:0.394236px;}
.ws35{word-spacing:0.448200px;}
.ws11{word-spacing:0.529200px;}
.ws12{word-spacing:0.550800px;}
.ws14{word-spacing:0.556200px;}
.ws5e{word-spacing:0.560196px;}
.ws18{word-spacing:0.561600px;}
.ws32{word-spacing:0.580500px;}
.ws10{word-spacing:0.588600px;}
.ws5f{word-spacing:0.606528px;}
.ws3a{word-spacing:0.687240px;}
.ws30{word-spacing:0.737352px;}
.ws3c{word-spacing:0.738036px;}
.ws3d{word-spacing:0.749988px;}
.ws2f{word-spacing:0.751716px;}
.ws3b{word-spacing:0.812736px;}
.wsf{word-spacing:0.918000px;}
.ws37{word-spacing:1.099584px;}
.ws38{word-spacing:1.117512px;}
.ws13{word-spacing:1.641600px;}
.ws2d{word-spacing:1.819440px;}
.ws50{word-spacing:25.155000px;}
.ws4b{word-spacing:25.875000px;}
.ws52{word-spacing:37.764000px;}
.ws54{word-spacing:37.773000px;}
.ws48{word-spacing:38.475000px;}
.ws44{word-spacing:38.484000px;}
.ws46{word-spacing:51.075000px;}
.ws45{word-spacing:62.996868px;}
.ws4c{word-spacing:64.350000px;}
.ws43{word-spacing:143.785620px;}
.ws53{word-spacing:145.791000px;}
.ws4d{word-spacing:157.230000px;}
.ws47{word-spacing:160.396452px;}
.ws51{word-spacing:171.360000px;}
.ws4a{word-spacing:171.879804px;}
.wsa{word-spacing:223.447680px;}
.ws28{word-spacing:290.457072px;}
.ws29{word-spacing:290.817072px;}
._a{margin-left:-76.770000px;}
._2{margin-left:-6.291072px;}
._13{margin-left:-5.125464px;}
._6{margin-left:-4.044600px;}
._1{margin-left:-2.770200px;}
._0{margin-left:-1.040076px;}
._4{width:1.080000px;}
._5{width:3.506400px;}
._7{width:12.248496px;}
._9{width:14.317200px;}
._8{width:15.389712px;}
._3{width:21.853800px;}
._b{width:96.012000px;}
._d{width:104.710644px;}
._14{width:115.726716px;}
._12{width:117.402732px;}
._16{width:125.509284px;}
._10{width:129.227040px;}
._e{width:140.085000px;}
._c{width:151.060500px;}
._11{width:152.604000px;}
._17{width:163.946988px;}
._f{width:172.413000px;}
._15{width:177.324300px;}
._18{width:185.609484px;}
.fc8{color:transparent;}
.fc7{color:rgb(255,51,0);}
.fc5{color:rgb(51,51,154);}
.fc6{color:rgb(146,208,80);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,101,101);}
.fc1{color:rgb(0,154,154);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:29.880000px;}
.fse{font-size:39.960000px;}
.fs7{font-size:42.120000px;}
.fsd{font-size:43.920000px;}
.fs9{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs8{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fsc{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:74.880000px;}
.fs4{font-size:83.880000px;}
.fsf{font-size:87.120000px;}
.fs5{font-size:90.000000px;}
.fsa{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y60{bottom:1.710450px;}
.y6f{bottom:3.600450px;}
.y2{bottom:36.750450px;}
.y8f{bottom:71.550450px;}
.y8e{bottom:118.080450px;}
.y71{bottom:190.650450px;}
.y70{bottom:209.010450px;}
.y7{bottom:219.990450px;}
.y6e{bottom:225.210000px;}
.y6d{bottom:228.810450px;}
.y6{bottom:236.190450px;}
.y9{bottom:251.490450px;}
.y4f{bottom:254.371116px;}
.y4c{bottom:258.240783px;}
.y4e{bottom:262.110783px;}
.y4b{bottom:265.980450px;}
.y8{bottom:267.690450px;}
.y4d{bottom:269.850450px;}
.y6c{bottom:292.170450px;}
.y1e{bottom:303.150450px;}
.y6b{bottom:325.740450px;}
.yb{bottom:336.360540px;}
.y22{bottom:342.930447px;}
.y6a{bottom:348.600450px;}
.y29{bottom:348.600675px;}
.ya{bottom:350.760450px;}
.y21{bottom:353.730015px;}
.y1d{bottom:354.990900px;}
.yd{bottom:355.980450px;}
.y28{bottom:359.490801px;}
.y69{bottom:364.620450px;}
.y1c{bottom:368.940450px;}
.y27{bottom:370.380927px;}
.yc{bottom:372.180450px;}
.y48{bottom:373.351116px;}
.y4a{bottom:377.220933px;}
.y20{bottom:379.110474px;}
.y68{bottom:380.190450px;}
.y47{bottom:381.090783px;}
.y26{bottom:381.271053px;}
.y1b{bottom:382.890000px;}
.y49{bottom:384.960600px;}
.y46{bottom:388.830450px;}
.y1f{bottom:390.000600px;}
.y25{bottom:392.070621px;}
.y67{bottom:396.930450px;}
.y1a{bottom:399.180450px;}
.y24{bottom:404.760324px;}
.y66{bottom:412.410450px;}
.y19{bottom:413.220450px;}
.y23{bottom:422.940450px;}
.y65{bottom:427.980450px;}
.y73{bottom:464.340495px;}
.y72{bottom:493.140450px;}
.y45{bottom:519.150450px;}
.y18{bottom:521.040600px;}
.yf{bottom:527.701395px;}
.ye{bottom:550.380450px;}
.y5f{bottom:692.040000px;}
.y5e{bottom:693.749982px;}
.y61{bottom:693.750450px;}
.y62{bottom:698.700450px;}
.y83{bottom:703.837632px;}
.y5d{bottom:713.550216px;}
.y16{bottom:713.911350px;}
.y82{bottom:719.317029px;}
.y15{bottom:727.860900px;}
.y5c{bottom:733.350450px;}
.y81{bottom:734.886606px;}
.y14{bottom:741.810450px;}
.y9b{bottom:748.026003px;}
.y80{bottom:750.366003px;}
.y13{bottom:755.850450px;}
.y9a{bottom:763.595580px;}
.y7f{bottom:765.935580px;}
.y5b{bottom:769.800267px;}
.y44{bottom:778.260450px;}
.y99{bottom:779.074977px;}
.y7e{bottom:781.414977px;}
.y36{bottom:781.500198px;}
.y5a{bottom:784.290600px;}
.y43{bottom:789.960450px;}
.y98{bottom:794.644554px;}
.y35{bottom:794.730054px;}
.y7d{bottom:796.984554px;}
.y42{bottom:801.570450px;}
.y59{bottom:803.370267px;}
.y34{bottom:807.870450px;}
.y97{bottom:810.123951px;}
.y7c{bottom:812.463951px;}
.y8c{bottom:814.353951px;}
.y17{bottom:816.150450px;}
.y58{bottom:817.860600px;}
.y3f{bottom:824.070312px;}
.y96{bottom:825.693528px;}
.y7b{bottom:828.033528px;}
.y8b{bottom:829.923528px;}
.y3e{bottom:836.490384px;}
.y95{bottom:841.172925px;}
.y5{bottom:842.520036px;}
.y7a{bottom:843.512925px;}
.y8a{bottom:845.402925px;}
.y3d{bottom:848.910456px;}
.y57{bottom:851.520450px;}
.y94{bottom:856.742502px;}
.y79{bottom:859.082502px;}
.y89{bottom:860.972502px;}
.y3c{bottom:861.330528px;}
.y4{bottom:865.920243px;}
.y56{bottom:870.600117px;}
.y93{bottom:872.221899px;}
.y3b{bottom:873.750600px;}
.y78{bottom:874.561899px;}
.y88{bottom:876.451899px;}
.y33{bottom:884.550090px;}
.y55{bottom:885.090450px;}
.y92{bottom:887.791476px;}
.y3{bottom:889.320450px;}
.y77{bottom:890.131476px;}
.y87{bottom:892.021476px;}
.y32{bottom:896.970162px;}
.y54{bottom:901.200450px;}
.y91{bottom:903.270873px;}
.y76{bottom:905.610873px;}
.y41{bottom:905.700450px;}
.y86{bottom:907.500873px;}
.y31{bottom:909.390234px;}
.y53{bottom:916.770450px;}
.y40{bottom:917.310450px;}
.y90{bottom:918.840450px;}
.y75{bottom:921.180450px;}
.y30{bottom:921.810306px;}
.y85{bottom:923.070450px;}
.y3a{bottom:932.070234px;}
.y52{bottom:932.250450px;}
.y2f{bottom:934.230378px;}
.y39{bottom:944.490306px;}
.y2e{bottom:946.650450px;}
.y9c{bottom:946.740450px;}
.y12{bottom:947.011476px;}
.y51{bottom:947.730450px;}
.y8d{bottom:953.040600px;}
.y84{bottom:954.030450px;}
.y38{bottom:956.910378px;}
.y11{bottom:962.490873px;}
.y50{bottom:963.300450px;}
.y37{bottom:969.330450px;}
.y10{bottom:978.060450px;}
.y2d{bottom:994.710234px;}
.y2c{bottom:1007.130306px;}
.y64{bottom:1013.430495px;}
.y2b{bottom:1019.550378px;}
.y2a{bottom:1031.970450px;}
.y63{bottom:1042.230450px;}
.y74{bottom:1061.400450px;}
.y1{bottom:1213.140450px;}
.h13{height:16.470000px;}
.h18{height:18.360000px;}
.hd{height:31.163906px;}
.h3{height:43.827715px;}
.h15{height:43.909277px;}
.h9{height:43.929844px;}
.h10{height:44.053594px;}
.hb{height:46.933594px;}
.h14{height:48.026777px;}
.h16{height:48.910781px;}
.h5{height:49.937344px;}
.h17{height:51.613594px;}
.ha{height:53.316562px;}
.h4{height:56.320312px;}
.he{height:62.122574px;}
.h2{height:62.703281px;}
.h12{height:68.710781px;}
.h1{height:75.093750px;}
.h8{height:78.097500px;}
.h6{height:87.484219px;}
.h19{height:92.957040px;}
.h7{height:93.867188px;}
.h11{height:102.014326px;}
.hf{height:102.014926px;}
.hc{height:102.560040px;}
.h1a{height:405.000000px;}
.h0{height:1263.000000px;}
.w6{width:9.180000px;}
.w4{width:9.270000px;}
.w2{width:10.800000px;}
.w5{width:46.440000px;}
.w3{width:108.090000px;}
.w7{width:431.100000px;}
.w8{width:539.910000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x3f{left:14.670000px;}
.x46{left:37.170000px;}
.x41{left:42.300000px;}
.x64{left:61.020000px;}
.x65{left:71.820000px;}
.x43{left:98.820000px;}
.x63{left:176.310000px;}
.x28{left:182.160000px;}
.x14{left:185.490000px;}
.x2a{left:187.380117px;}
.x15{left:195.659550px;}
.x29{left:200.429811px;}
.xd{left:211.950000px;}
.x26{left:231.301053px;}
.x10{left:236.700000px;}
.x67{left:237.959289px;}
.x12{left:239.130000px;}
.xf{left:240.930738px;}
.x69{left:243.989325px;}
.xe{left:245.070000px;}
.x11{left:246.870900px;}
.x6b{left:248.130090px;}
.x6a{left:249.750324px;}
.x25{left:259.740576px;}
.x27{left:262.351233px;}
.x66{left:269.729703px;}
.x52{left:271.800378px;}
.x50{left:273.060000px;}
.x2e{left:282.240000px;}
.x2d{left:285.120000px;}
.x68{left:287.459091px;}
.x3b{left:289.980000px;}
.x13{left:291.060000px;}
.x6{left:293.850000px;}
.x53{left:296.460000px;}
.x7{left:305.460000px;}
.x38{left:306.540000px;}
.x3c{left:317.519487px;}
.x39{left:324.900000px;}
.xa{left:326.070018px;}
.x37{left:329.310000px;}
.x32{left:334.890000px;}
.x3a{left:336.870504px;}
.x20{left:350.280000px;}
.x22{left:360.090612px;}
.x51{left:367.650000px;}
.x16{left:369.900000px;}
.x21{left:371.700315px;}
.x17{left:376.649730px;}
.x62{left:383.220000px;}
.x2f{left:387.540000px;}
.x5f{left:389.879847px;}
.x5e{left:396.720000px;}
.x60{left:399.960468px;}
.x24{left:403.829892px;}
.x23{left:411.480000px;}
.x1e{left:412.829496px;}
.x4d{left:418.320000px;}
.x1d{left:420.299973px;}
.x4c{left:421.470000px;}
.x3d{left:423.450000px;}
.x61{left:425.069586px;}
.x1c{left:427.950000px;}
.x18{left:431.730000px;}
.x3e{left:433.530000px;}
.x1f{left:438.930081px;}
.x33{left:440.190000px;}
.x3{left:442.350000px;}
.x40{left:452.790000px;}
.x8{left:478.170000px;}
.x42{left:481.320000px;}
.x54{left:483.210000px;}
.x56{left:486.809685px;}
.x30{left:492.840000px;}
.x9{left:496.530000px;}
.xb{left:498.150000px;}
.x4e{left:500.670000px;}
.x5c{left:504.089676px;}
.x4f{left:505.620000px;}
.x36{left:507.420000px;}
.xc{left:509.760000px;}
.x4{left:511.199424px;}
.x5a{left:512.459883px;}
.x35{left:515.340000px;}
.x5{left:524.428830px;}
.x5d{left:530.010000px;}
.x57{left:534.330036px;}
.x5b{left:535.769910px;}
.x44{left:536.940000px;}
.x58{left:538.470801px;}
.x45{left:541.530000px;}
.x59{left:542.700243px;}
.x34{left:545.580000px;}
.x55{left:548.640099px;}
.x1a{left:554.310000px;}
.x2c{left:556.110000px;}
.x19{left:561.059730px;}
.x2b{left:579.240000px;}
.x1b{left:586.980000px;}
.x47{left:597.150000px;}
.x31{left:598.230000px;}
.x48{left:601.830000px;}
.x49{left:611.010000px;}
.x4a{left:677.250000px;}
.x4b{left:681.840000px;}
.x1{left:764.460000px;}
.x2{left:844.380000px;}
@media print{
.v1{vertical-align:-25.920000pt;}
.v5{vertical-align:-17.600000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.160000pt;}
.v7{vertical-align:16.000000pt;}
.v2{vertical-align:27.518816pt;}
.v3{vertical-align:48.961184pt;}
.ls60{letter-spacing:-0.120000pt;}
.ls55{letter-spacing:-0.116000pt;}
.ls34{letter-spacing:-0.108000pt;}
.ls1e{letter-spacing:-0.105600pt;}
.ls3d{letter-spacing:-0.100928pt;}
.ls19{letter-spacing:-0.100800pt;}
.ls54{letter-spacing:-0.100000pt;}
.ls36{letter-spacing:-0.098272pt;}
.ls5b{letter-spacing:-0.097344pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls31{letter-spacing:-0.093632pt;}
.ls5c{letter-spacing:-0.093600pt;}
.ls3f{letter-spacing:-0.092960pt;}
.ls38{letter-spacing:-0.090304pt;}
.ls1c{letter-spacing:-0.076800pt;}
.ls58{letter-spacing:-0.074880pt;}
.ls18{letter-spacing:-0.072000pt;}
.ls1b{letter-spacing:-0.067200pt;}
.ls3e{letter-spacing:-0.061088pt;}
.ls61{letter-spacing:-0.059904pt;}
.ls70{letter-spacing:-0.058784pt;}
.ls3a{letter-spacing:-0.053120pt;}
.ls2d{letter-spacing:-0.049984pt;}
.ls57{letter-spacing:-0.048672pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls41{letter-spacing:-0.045152pt;}
.ls62{letter-spacing:-0.042752pt;}
.ls33{letter-spacing:-0.042560pt;}
.ls59{letter-spacing:-0.041184pt;}
.ls6d{letter-spacing:-0.037408pt;}
.ls39{letter-spacing:-0.037184pt;}
.ls40{letter-spacing:-0.034528pt;}
.ls2a{letter-spacing:-0.034048pt;}
.ls1d{letter-spacing:-0.033600pt;}
.ls67{letter-spacing:-0.026720pt;}
.ls2c{letter-spacing:-0.025536pt;}
.ls65{letter-spacing:-0.023232pt;}
.ls5a{letter-spacing:-0.022464pt;}
.ls69{letter-spacing:-0.021376pt;}
.ls32{letter-spacing:-0.021280pt;}
.ls20{letter-spacing:-0.018720pt;}
.ls2f{letter-spacing:-0.017024pt;}
.ls6e{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.014400pt;}
.ls2b{letter-spacing:-0.012768pt;}
.ls68{letter-spacing:-0.010688pt;}
.ls35{letter-spacing:-0.008544pt;}
.ls7{letter-spacing:-0.005344pt;}
.ls37{letter-spacing:-0.005312pt;}
.ls2e{letter-spacing:-0.004544pt;}
.ls30{letter-spacing:-0.004256pt;}
.ls21{letter-spacing:-0.003744pt;}
.ls3b{letter-spacing:-0.002656pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.003744pt;}
.lsa{letter-spacing:0.004256pt;}
.lsd{letter-spacing:0.005344pt;}
.ls13{letter-spacing:0.007488pt;}
.ls25{letter-spacing:0.008512pt;}
.ls9{letter-spacing:0.009600pt;}
.ls3c{letter-spacing:0.010624pt;}
.ls6f{letter-spacing:0.010688pt;}
.ls4d{letter-spacing:0.011232pt;}
.ls23{letter-spacing:0.012768pt;}
.ls1f{letter-spacing:0.013312pt;}
.ls24{letter-spacing:0.013632pt;}
.ls50{letter-spacing:0.016032pt;}
.ls10{letter-spacing:0.018720pt;}
.ls66{letter-spacing:0.021376pt;}
.ls14{letter-spacing:0.022464pt;}
.ls2{letter-spacing:0.024000pt;}
.ls22{letter-spacing:0.026624pt;}
.ls6b{letter-spacing:0.026720pt;}
.ls17{letter-spacing:0.029952pt;}
.lse{letter-spacing:0.032064pt;}
.ls48{letter-spacing:0.034176pt;}
.ls1{letter-spacing:0.037408pt;}
.ls49{letter-spacing:0.042720pt;}
.ls0{letter-spacing:0.042752pt;}
.ls3{letter-spacing:0.046816pt;}
.lsf{letter-spacing:0.048000pt;}
.ls63{letter-spacing:0.048096pt;}
.ls16{letter-spacing:0.048672pt;}
.ls4{letter-spacing:0.052192pt;}
.ls5f{letter-spacing:0.052704pt;}
.ls6a{letter-spacing:0.053440pt;}
.ls46{letter-spacing:0.058560pt;}
.ls6c{letter-spacing:0.058784pt;}
.ls52{letter-spacing:0.064128pt;}
.ls12{letter-spacing:0.066560pt;}
.lsc{letter-spacing:0.069472pt;}
.ls5e{letter-spacing:0.070272pt;}
.ls64{letter-spacing:0.074816pt;}
.ls15{letter-spacing:0.074880pt;}
.ls5d{letter-spacing:0.076128pt;}
.ls29{letter-spacing:0.084000pt;}
.ls42{letter-spacing:0.100000pt;}
.ls4e{letter-spacing:0.108000pt;}
.ls26{letter-spacing:0.120000pt;}
.ls27{letter-spacing:0.124000pt;}
.ls4f{letter-spacing:0.128000pt;}
.ls44{letter-spacing:0.132000pt;}
.lsb{letter-spacing:0.134208pt;}
.ls45{letter-spacing:0.136000pt;}
.ls43{letter-spacing:0.144000pt;}
.ls28{letter-spacing:0.164000pt;}
.ls53{letter-spacing:14.490880pt;}
.ls51{letter-spacing:14.706688pt;}
.ls47{letter-spacing:16.053760pt;}
.ls4a{letter-spacing:67.480000pt;}
.ls56{letter-spacing:68.120000pt;}
.ls4b{letter-spacing:125.080000pt;}
.ls4c{letter-spacing:199.560000pt;}
.ws56{word-spacing:-53.440000pt;}
.ws41{word-spacing:-21.000000pt;}
.ws0{word-spacing:-14.893728pt;}
.ws9{word-spacing:-14.856320pt;}
.ws24{word-spacing:-12.645952pt;}
.ws1{word-spacing:-11.878496pt;}
.ws23{word-spacing:-11.806144pt;}
.ws22{word-spacing:-11.797632pt;}
.ws3e{word-spacing:-11.024000pt;}
.ws3f{word-spacing:-11.012000pt;}
.ws40{word-spacing:-11.004000pt;}
.ws49{word-spacing:-10.415808pt;}
.ws27{word-spacing:-7.293376pt;}
.ws2a{word-spacing:-7.282752pt;}
.ws16{word-spacing:-2.440000pt;}
.ws4f{word-spacing:-1.299168pt;}
.ws26{word-spacing:-1.232000pt;}
.ws4{word-spacing:-1.127584pt;}
.ws61{word-spacing:-1.042080pt;}
.ws68{word-spacing:-0.839008pt;}
.ws63{word-spacing:-0.833664pt;}
.ws21{word-spacing:-0.831168pt;}
.ws6d{word-spacing:-0.806944pt;}
.ws15{word-spacing:-0.801600pt;}
.ws6c{word-spacing:-0.790912pt;}
.wse{word-spacing:-0.774880pt;}
.ws5c{word-spacing:-0.743328pt;}
.ws42{word-spacing:-0.736000pt;}
.ws4e{word-spacing:-0.720000pt;}
.ws5d{word-spacing:-0.538272pt;}
.ws20{word-spacing:-0.531648pt;}
.ws65{word-spacing:-0.529728pt;}
.ws6e{word-spacing:-0.523712pt;}
.wsc{word-spacing:-0.518368pt;}
.ws1e{word-spacing:-0.505440pt;}
.ws1a{word-spacing:-0.501696pt;}
.ws64{word-spacing:-0.496992pt;}
.wsb{word-spacing:-0.491648pt;}
.ws1b{word-spacing:-0.486720pt;}
.ws1f{word-spacing:-0.479232pt;}
.ws62{word-spacing:-0.464928pt;}
.wsd{word-spacing:-0.448896pt;}
.ws3{word-spacing:-0.443552pt;}
.ws67{word-spacing:-0.422176pt;}
.ws6b{word-spacing:-0.411488pt;}
.ws34{word-spacing:-0.384480pt;}
.ws31{word-spacing:-0.356000pt;}
.ws5a{word-spacing:-0.345504pt;}
.ws57{word-spacing:-0.332000pt;}
.ws33{word-spacing:-0.316000pt;}
.ws1d{word-spacing:-0.168480pt;}
.ws72{word-spacing:-0.165664pt;}
.ws1c{word-spacing:-0.164736pt;}
.ws70{word-spacing:-0.160320pt;}
.ws66{word-spacing:-0.149632pt;}
.ws6a{word-spacing:-0.144288pt;}
.ws19{word-spacing:-0.142272pt;}
.ws6f{word-spacing:-0.138944pt;}
.ws69{word-spacing:-0.106880pt;}
.ws71{word-spacing:-0.101536pt;}
.ws73{word-spacing:-0.069472pt;}
.ws55{word-spacing:-0.053440pt;}
.ws60{word-spacing:-0.011712pt;}
.ws58{word-spacing:-0.005856pt;}
.ws2{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.017024pt;}
.ws25{word-spacing:0.031808pt;}
.ws39{word-spacing:0.071712pt;}
.ws6{word-spacing:0.081600pt;}
.ws5{word-spacing:0.120000pt;}
.ws17{word-spacing:0.139200pt;}
.ws2e{word-spacing:0.181760pt;}
.ws5b{word-spacing:0.298656pt;}
.ws36{word-spacing:0.305440pt;}
.ws59{word-spacing:0.310368pt;}
.ws2b{word-spacing:0.323456pt;}
.ws7{word-spacing:0.331968pt;}
.ws8{word-spacing:0.350432pt;}
.ws35{word-spacing:0.398400pt;}
.ws11{word-spacing:0.470400pt;}
.ws12{word-spacing:0.489600pt;}
.ws14{word-spacing:0.494400pt;}
.ws5e{word-spacing:0.497952pt;}
.ws18{word-spacing:0.499200pt;}
.ws32{word-spacing:0.516000pt;}
.ws10{word-spacing:0.523200pt;}
.ws5f{word-spacing:0.539136pt;}
.ws3a{word-spacing:0.610880pt;}
.ws30{word-spacing:0.655424pt;}
.ws3c{word-spacing:0.656032pt;}
.ws3d{word-spacing:0.666656pt;}
.ws2f{word-spacing:0.668192pt;}
.ws3b{word-spacing:0.722432pt;}
.wsf{word-spacing:0.816000pt;}
.ws37{word-spacing:0.977408pt;}
.ws38{word-spacing:0.993344pt;}
.ws13{word-spacing:1.459200pt;}
.ws2d{word-spacing:1.617280pt;}
.ws50{word-spacing:22.360000pt;}
.ws4b{word-spacing:23.000000pt;}
.ws52{word-spacing:33.568000pt;}
.ws54{word-spacing:33.576000pt;}
.ws48{word-spacing:34.200000pt;}
.ws44{word-spacing:34.208000pt;}
.ws46{word-spacing:45.400000pt;}
.ws45{word-spacing:55.997216pt;}
.ws4c{word-spacing:57.200000pt;}
.ws43{word-spacing:127.809440pt;}
.ws53{word-spacing:129.592000pt;}
.ws4d{word-spacing:139.760000pt;}
.ws47{word-spacing:142.574624pt;}
.ws51{word-spacing:152.320000pt;}
.ws4a{word-spacing:152.782048pt;}
.wsa{word-spacing:198.620160pt;}
.ws28{word-spacing:258.184064pt;}
.ws29{word-spacing:258.504064pt;}
._a{margin-left:-68.240000pt;}
._2{margin-left:-5.592064pt;}
._13{margin-left:-4.555968pt;}
._6{margin-left:-3.595200pt;}
._1{margin-left:-2.462400pt;}
._0{margin-left:-0.924512pt;}
._4{width:0.960000pt;}
._5{width:3.116800pt;}
._7{width:10.887552pt;}
._9{width:12.726400pt;}
._8{width:13.679744pt;}
._3{width:19.425600pt;}
._b{width:85.344000pt;}
._d{width:93.076128pt;}
._14{width:102.868192pt;}
._12{width:104.357984pt;}
._16{width:111.563808pt;}
._10{width:114.868480pt;}
._e{width:124.520000pt;}
._c{width:134.276000pt;}
._11{width:135.648000pt;}
._17{width:145.730656pt;}
._f{width:153.256000pt;}
._15{width:157.621600pt;}
._18{width:164.986208pt;}
.fsb{font-size:26.560000pt;}
.fse{font-size:35.520000pt;}
.fs7{font-size:37.440000pt;}
.fsd{font-size:39.040000pt;}
.fs9{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs8{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fsc{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:66.560000pt;}
.fs4{font-size:74.560000pt;}
.fsf{font-size:77.440000pt;}
.fs5{font-size:80.000000pt;}
.fsa{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:1.520400pt;}
.y6f{bottom:3.200400pt;}
.y2{bottom:32.667067pt;}
.y8f{bottom:63.600400pt;}
.y8e{bottom:104.960400pt;}
.y71{bottom:169.467067pt;}
.y70{bottom:185.787067pt;}
.y7{bottom:195.547067pt;}
.y6e{bottom:200.186667pt;}
.y6d{bottom:203.387067pt;}
.y6{bottom:209.947067pt;}
.y9{bottom:223.547067pt;}
.y4f{bottom:226.107659pt;}
.y4c{bottom:229.547363pt;}
.y4e{bottom:232.987363pt;}
.y4b{bottom:236.427067pt;}
.y8{bottom:237.947067pt;}
.y4d{bottom:239.867067pt;}
.y6c{bottom:259.707067pt;}
.y1e{bottom:269.467067pt;}
.y6b{bottom:289.547067pt;}
.yb{bottom:298.987147pt;}
.y22{bottom:304.827064pt;}
.y6a{bottom:309.867067pt;}
.y29{bottom:309.867267pt;}
.ya{bottom:311.787067pt;}
.y21{bottom:314.426680pt;}
.y1d{bottom:315.547467pt;}
.yd{bottom:316.427067pt;}
.y28{bottom:319.547379pt;}
.y69{bottom:324.107067pt;}
.y1c{bottom:327.947067pt;}
.y27{bottom:329.227491pt;}
.yc{bottom:330.827067pt;}
.y48{bottom:331.867659pt;}
.y4a{bottom:335.307496pt;}
.y20{bottom:336.987088pt;}
.y68{bottom:337.947067pt;}
.y47{bottom:338.747363pt;}
.y26{bottom:338.907603pt;}
.y1b{bottom:340.346667pt;}
.y49{bottom:342.187200pt;}
.y46{bottom:345.627067pt;}
.y1f{bottom:346.667200pt;}
.y25{bottom:348.507219pt;}
.y67{bottom:352.827067pt;}
.y1a{bottom:354.827067pt;}
.y24{bottom:359.786955pt;}
.y66{bottom:366.587067pt;}
.y19{bottom:367.307067pt;}
.y23{bottom:375.947067pt;}
.y65{bottom:380.427067pt;}
.y73{bottom:412.747107pt;}
.y72{bottom:438.347067pt;}
.y45{bottom:461.467067pt;}
.y18{bottom:463.147200pt;}
.yf{bottom:469.067907pt;}
.ye{bottom:489.227067pt;}
.y5f{bottom:615.146667pt;}
.y5e{bottom:616.666651pt;}
.y61{bottom:616.667067pt;}
.y62{bottom:621.067067pt;}
.y83{bottom:625.633451pt;}
.y5d{bottom:634.266859pt;}
.y16{bottom:634.587867pt;}
.y82{bottom:639.392915pt;}
.y15{bottom:646.987467pt;}
.y5c{bottom:651.867067pt;}
.y81{bottom:653.232539pt;}
.y14{bottom:659.387067pt;}
.y9b{bottom:664.912003pt;}
.y80{bottom:666.992003pt;}
.y13{bottom:671.867067pt;}
.y9a{bottom:678.751627pt;}
.y7f{bottom:680.831627pt;}
.y5b{bottom:684.266904pt;}
.y44{bottom:691.787067pt;}
.y99{bottom:692.511091pt;}
.y7e{bottom:694.591091pt;}
.y36{bottom:694.666843pt;}
.y5a{bottom:697.147200pt;}
.y43{bottom:702.187067pt;}
.y98{bottom:706.350715pt;}
.y35{bottom:706.426715pt;}
.y7d{bottom:708.430715pt;}
.y42{bottom:712.507067pt;}
.y59{bottom:714.106904pt;}
.y34{bottom:718.107067pt;}
.y97{bottom:720.110179pt;}
.y7c{bottom:722.190179pt;}
.y8c{bottom:723.870179pt;}
.y17{bottom:725.467067pt;}
.y58{bottom:726.987200pt;}
.y3f{bottom:732.506944pt;}
.y96{bottom:733.949803pt;}
.y7b{bottom:736.029803pt;}
.y8b{bottom:737.709803pt;}
.y3e{bottom:743.547008pt;}
.y95{bottom:747.709267pt;}
.y5{bottom:748.906699pt;}
.y7a{bottom:749.789267pt;}
.y8a{bottom:751.469267pt;}
.y3d{bottom:754.587072pt;}
.y57{bottom:756.907067pt;}
.y94{bottom:761.548891pt;}
.y79{bottom:763.628891pt;}
.y89{bottom:765.308891pt;}
.y3c{bottom:765.627136pt;}
.y4{bottom:769.706883pt;}
.y56{bottom:773.866771pt;}
.y93{bottom:775.308355pt;}
.y3b{bottom:776.667200pt;}
.y78{bottom:777.388355pt;}
.y88{bottom:779.068355pt;}
.y33{bottom:786.266747pt;}
.y55{bottom:786.747067pt;}
.y92{bottom:789.147979pt;}
.y3{bottom:790.507067pt;}
.y77{bottom:791.227979pt;}
.y87{bottom:792.907979pt;}
.y32{bottom:797.306811pt;}
.y54{bottom:801.067067pt;}
.y91{bottom:802.907443pt;}
.y76{bottom:804.987443pt;}
.y41{bottom:805.067067pt;}
.y86{bottom:806.667443pt;}
.y31{bottom:808.346875pt;}
.y53{bottom:814.907067pt;}
.y40{bottom:815.387067pt;}
.y90{bottom:816.747067pt;}
.y75{bottom:818.827067pt;}
.y30{bottom:819.386939pt;}
.y85{bottom:820.507067pt;}
.y3a{bottom:828.506875pt;}
.y52{bottom:828.667067pt;}
.y2f{bottom:830.427003pt;}
.y39{bottom:839.546939pt;}
.y2e{bottom:841.467067pt;}
.y9c{bottom:841.547067pt;}
.y12{bottom:841.787979pt;}
.y51{bottom:842.427067pt;}
.y8d{bottom:847.147200pt;}
.y84{bottom:848.027067pt;}
.y38{bottom:850.587003pt;}
.y11{bottom:855.547443pt;}
.y50{bottom:856.267067pt;}
.y37{bottom:861.627067pt;}
.y10{bottom:869.387067pt;}
.y2d{bottom:884.186875pt;}
.y2c{bottom:895.226939pt;}
.y64{bottom:900.827107pt;}
.y2b{bottom:906.267003pt;}
.y2a{bottom:917.307067pt;}
.y63{bottom:926.427067pt;}
.y74{bottom:943.467067pt;}
.y1{bottom:1078.347067pt;}
.h13{height:14.640000pt;}
.h18{height:16.320000pt;}
.hd{height:27.701250pt;}
.h3{height:38.957969pt;}
.h15{height:39.030469pt;}
.h9{height:39.048750pt;}
.h10{height:39.158750pt;}
.hb{height:41.718750pt;}
.h14{height:42.690469pt;}
.h16{height:43.476250pt;}
.h5{height:44.388750pt;}
.h17{height:45.878750pt;}
.ha{height:47.392500pt;}
.h4{height:50.062500pt;}
.he{height:55.220066pt;}
.h2{height:55.736250pt;}
.h12{height:61.076250pt;}
.h1{height:66.750000pt;}
.h8{height:69.420000pt;}
.h6{height:77.763750pt;}
.h19{height:82.628480pt;}
.h7{height:83.437500pt;}
.h11{height:90.679401pt;}
.hf{height:90.679934pt;}
.hc{height:91.164480pt;}
.h1a{height:360.000000pt;}
.h0{height:1122.666667pt;}
.w6{width:8.160000pt;}
.w4{width:8.240000pt;}
.w2{width:9.600000pt;}
.w5{width:41.280000pt;}
.w3{width:96.080000pt;}
.w7{width:383.200000pt;}
.w8{width:479.920000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x3f{left:13.040000pt;}
.x46{left:33.040000pt;}
.x41{left:37.600000pt;}
.x64{left:54.240000pt;}
.x65{left:63.840000pt;}
.x43{left:87.840000pt;}
.x63{left:156.720000pt;}
.x28{left:161.920000pt;}
.x14{left:164.880000pt;}
.x2a{left:166.560104pt;}
.x15{left:173.919600pt;}
.x29{left:178.159832pt;}
.xd{left:188.400000pt;}
.x26{left:205.600936pt;}
.x10{left:210.400000pt;}
.x67{left:211.519368pt;}
.x12{left:212.560000pt;}
.xf{left:214.160656pt;}
.x69{left:216.879400pt;}
.xe{left:217.840000pt;}
.x11{left:219.440800pt;}
.x6b{left:220.560080pt;}
.x6a{left:222.000288pt;}
.x25{left:230.880512pt;}
.x27{left:233.201096pt;}
.x66{left:239.759736pt;}
.x52{left:241.600336pt;}
.x50{left:242.720000pt;}
.x2e{left:250.880000pt;}
.x2d{left:253.440000pt;}
.x68{left:255.519192pt;}
.x3b{left:257.760000pt;}
.x13{left:258.720000pt;}
.x6{left:261.200000pt;}
.x53{left:263.520000pt;}
.x7{left:271.520000pt;}
.x38{left:272.480000pt;}
.x3c{left:282.239544pt;}
.x39{left:288.800000pt;}
.xa{left:289.840016pt;}
.x37{left:292.720000pt;}
.x32{left:297.680000pt;}
.x3a{left:299.440448pt;}
.x20{left:311.360000pt;}
.x22{left:320.080544pt;}
.x51{left:326.800000pt;}
.x16{left:328.800000pt;}
.x21{left:330.400280pt;}
.x17{left:334.799760pt;}
.x62{left:340.640000pt;}
.x2f{left:344.480000pt;}
.x5f{left:346.559864pt;}
.x5e{left:352.640000pt;}
.x60{left:355.520416pt;}
.x24{left:358.959904pt;}
.x23{left:365.760000pt;}
.x1e{left:366.959552pt;}
.x4d{left:371.840000pt;}
.x1d{left:373.599976pt;}
.x4c{left:374.640000pt;}
.x3d{left:376.400000pt;}
.x61{left:377.839632pt;}
.x1c{left:380.400000pt;}
.x18{left:383.760000pt;}
.x3e{left:385.360000pt;}
.x1f{left:390.160072pt;}
.x33{left:391.280000pt;}
.x3{left:393.200000pt;}
.x40{left:402.480000pt;}
.x8{left:425.040000pt;}
.x42{left:427.840000pt;}
.x54{left:429.520000pt;}
.x56{left:432.719720pt;}
.x30{left:438.080000pt;}
.x9{left:441.360000pt;}
.xb{left:442.800000pt;}
.x4e{left:445.040000pt;}
.x5c{left:448.079712pt;}
.x4f{left:449.440000pt;}
.x36{left:451.040000pt;}
.xc{left:453.120000pt;}
.x4{left:454.399488pt;}
.x5a{left:455.519896pt;}
.x35{left:458.080000pt;}
.x5{left:466.158960pt;}
.x5d{left:471.120000pt;}
.x57{left:474.960032pt;}
.x5b{left:476.239920pt;}
.x44{left:477.280000pt;}
.x58{left:478.640712pt;}
.x45{left:481.360000pt;}
.x59{left:482.400216pt;}
.x34{left:484.960000pt;}
.x55{left:487.680088pt;}
.x1a{left:492.720000pt;}
.x2c{left:494.320000pt;}
.x19{left:498.719760pt;}
.x2b{left:514.880000pt;}
.x1b{left:521.760000pt;}
.x47{left:530.800000pt;}
.x31{left:531.760000pt;}
.x48{left:534.960000pt;}
.x49{left:543.120000pt;}
.x4a{left:602.000000pt;}
.x4b{left:606.080000pt;}
.x1{left:679.520000pt;}
.x2{left:750.560000pt;}
}




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