
    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_fa6d09e32a8af2f7c998f2f6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_6275fdc10e775d46371af65d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.934000;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_b982e1ec209f523b321f4367.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_13ff3efebb86ff0e76d6b6af.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_e29f0ce7e3f417992d1e9183.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933000;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_081ced4a1f89c4f115f37437.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_f73560cfb36ea2ac59278e82.woff')format("woff");}.ff7{font-family:ff7;line-height:0.931000;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_f67df6b54ddae3737a483349.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0c23e54bb94f05eec7728b1e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_49fbebdab214bc9cb2396e73.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_33a402c6002d0706f3c26702.woff')format("woff");}.ffb{font-family:ffb;line-height:0.830000;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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls22{letter-spacing:-3.744000px;}
.ls2f{letter-spacing:-1.620000px;}
.ls2b{letter-spacing:-1.512000px;}
.ls12{letter-spacing:-1.458000px;}
.ls25{letter-spacing:-1.392000px;}
.lsb{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.756000px;}
.lsf{letter-spacing:-0.702000px;}
.ls17{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.450000px;}
.ls18{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.054000px;}
.ls2d{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.096000px;}
.ls13{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.280200px;}
.ls1b{letter-spacing:0.288000px;}
.lse{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.420600px;}
.ls2e{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.ls2a{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.648000px;}
.ls30{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.768000px;}
.ls3{letter-spacing:1.170000px;}
.ls21{letter-spacing:1.404000px;}
.ls31{letter-spacing:4.185000px;}
.ls0{letter-spacing:4.320000px;}
.ls2{letter-spacing:6.264000px;}
.ls1d{letter-spacing:13.819200px;}
.ls1c{letter-spacing:14.928000px;}
.ls1{letter-spacing:2843.040000px;}
.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;}
}
.ws43{word-spacing:-16.380000px;}
.ws7{word-spacing:-16.146000px;}
.ws8d{word-spacing:-11.556000px;}
.ws44{word-spacing:-11.232000px;}
.ws8c{word-spacing:-11.070000px;}
.wsc{word-spacing:-11.016000px;}
.ws3{word-spacing:-10.854000px;}
.ws42{word-spacing:-10.800000px;}
.ws5b{word-spacing:-10.746000px;}
.ws4a{word-spacing:-10.080000px;}
.ws45{word-spacing:-9.936000px;}
.ws47{word-spacing:-9.552000px;}
.ws41{word-spacing:-9.456000px;}
.ws7c{word-spacing:-9.396000px;}
.ws5a{word-spacing:-9.360000px;}
.wsb{word-spacing:-9.342000px;}
.ws6d{word-spacing:-9.168000px;}
.ws6{word-spacing:-9.126000px;}
.ws5{word-spacing:-9.072000px;}
.ws1{word-spacing:-9.000000px;}
.ws0{word-spacing:-8.976000px;}
.ws2{word-spacing:-8.820000px;}
.ws48{word-spacing:-8.784000px;}
.wse{word-spacing:-8.688000px;}
.ws8{word-spacing:-8.532000px;}
.wsa{word-spacing:-8.478000px;}
.ws9{word-spacing:-8.370000px;}
.ws40{word-spacing:-8.304000px;}
.ws4{word-spacing:-8.100000px;}
.ws8e{word-spacing:-7.695000px;}
.ws49{word-spacing:-7.680000px;}
.wsd{word-spacing:-6.996000px;}
.ws9f{word-spacing:-2.295000px;}
.ws7b{word-spacing:-2.160000px;}
.ws79{word-spacing:-2.106000px;}
.ws38{word-spacing:-2.052000px;}
.ws54{word-spacing:-1.998000px;}
.ws7d{word-spacing:-1.890000px;}
.ws53{word-spacing:-1.836000px;}
.wsba{word-spacing:-1.800000px;}
.ws2b{word-spacing:-1.782000px;}
.ws76{word-spacing:-1.728000px;}
.wsc8{word-spacing:-1.710000px;}
.wsc7{word-spacing:-1.665000px;}
.wsc1{word-spacing:-1.575000px;}
.ws2a{word-spacing:-1.458000px;}
.ws14{word-spacing:-1.404000px;}
.ws16{word-spacing:-1.350000px;}
.wsa7{word-spacing:-1.305000px;}
.ws8b{word-spacing:-1.296000px;}
.ws6f{word-spacing:-1.242000px;}
.ws28{word-spacing:-1.188000px;}
.wsa8{word-spacing:-1.170000px;}
.ws77{word-spacing:-1.134000px;}
.ws15{word-spacing:-1.080000px;}
.ws2e{word-spacing:-1.026000px;}
.wsc3{word-spacing:-0.990000px;}
.ws81{word-spacing:-0.972000px;}
.wsc2{word-spacing:-0.945000px;}
.ws19{word-spacing:-0.918000px;}
.ws55{word-spacing:-0.864000px;}
.ws17{word-spacing:-0.810000px;}
.ws61{word-spacing:-0.756000px;}
.ws52{word-spacing:-0.702000px;}
.wsb4{word-spacing:-0.675000px;}
.wsa2{word-spacing:-0.630000px;}
.ws93{word-spacing:-0.624000px;}
.ws10{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.528000px;}
.ws29{word-spacing:-0.486000px;}
.ws59{word-spacing:-0.480000px;}
.ws71{word-spacing:-0.432000px;}
.ws7f{word-spacing:-0.378000px;}
.ws4c{word-spacing:-0.336000px;}
.ws1c{word-spacing:-0.324000px;}
.ws7e{word-spacing:-0.270000px;}
.ws83{word-spacing:-0.216000px;}
.wsa1{word-spacing:-0.180000px;}
.ws5e{word-spacing:-0.162000px;}
.ws32{word-spacing:-0.108000px;}
.ws6e{word-spacing:-0.054000px;}
.ws3f{word-spacing:-0.048000px;}
.wsac{word-spacing:-0.045000px;}
.ws46{word-spacing:-0.043200px;}
.wsf{word-spacing:0.000000px;}
.wsc9{word-spacing:0.045000px;}
.ws2f{word-spacing:0.054000px;}
.ws18{word-spacing:0.108000px;}
.ws99{word-spacing:0.135000px;}
.ws22{word-spacing:0.162000px;}
.wsbb{word-spacing:0.180000px;}
.ws1a{word-spacing:0.216000px;}
.ws2c{word-spacing:0.270000px;}
.wsc6{word-spacing:0.315000px;}
.ws4f{word-spacing:0.324000px;}
.ws51{word-spacing:0.378000px;}
.ws3a{word-spacing:0.432000px;}
.wsad{word-spacing:0.450000px;}
.ws60{word-spacing:0.486000px;}
.wsae{word-spacing:0.495000px;}
.ws1b{word-spacing:0.540000px;}
.wsa0{word-spacing:0.585000px;}
.ws8f{word-spacing:0.594000px;}
.ws3c{word-spacing:0.648000px;}
.ws50{word-spacing:0.702000px;}
.ws3d{word-spacing:0.756000px;}
.ws69{word-spacing:0.810000px;}
.ws34{word-spacing:0.864000px;}
.wsb5{word-spacing:0.900000px;}
.ws25{word-spacing:0.918000px;}
.ws6b{word-spacing:0.972000px;}
.ws68{word-spacing:1.026000px;}
.ws8a{word-spacing:1.080000px;}
.ws9b{word-spacing:1.125000px;}
.ws67{word-spacing:1.134000px;}
.ws9c{word-spacing:1.170000px;}
.ws39{word-spacing:1.188000px;}
.ws94{word-spacing:1.215000px;}
.ws95{word-spacing:1.260000px;}
.ws31{word-spacing:1.296000px;}
.wsab{word-spacing:1.395000px;}
.ws30{word-spacing:1.458000px;}
.ws6c{word-spacing:1.512000px;}
.ws96{word-spacing:1.575000px;}
.ws90{word-spacing:1.620000px;}
.ws97{word-spacing:1.665000px;}
.ws20{word-spacing:1.674000px;}
.wsb3{word-spacing:1.710000px;}
.ws21{word-spacing:1.728000px;}
.ws64{word-spacing:1.782000px;}
.ws1f{word-spacing:1.836000px;}
.ws92{word-spacing:1.890000px;}
.wsbe{word-spacing:1.935000px;}
.ws91{word-spacing:1.944000px;}
.ws9a{word-spacing:1.980000px;}
.ws82{word-spacing:1.998000px;}
.ws63{word-spacing:2.052000px;}
.ws36{word-spacing:2.160000px;}
.wsb6{word-spacing:2.205000px;}
.wsb7{word-spacing:2.250000px;}
.ws70{word-spacing:2.268000px;}
.ws5f{word-spacing:2.322000px;}
.ws4d{word-spacing:2.376000px;}
.ws4e{word-spacing:2.484000px;}
.ws37{word-spacing:2.538000px;}
.ws27{word-spacing:2.592000px;}
.ws1d{word-spacing:2.700000px;}
.ws1e{word-spacing:2.754000px;}
.wsb0{word-spacing:2.790000px;}
.wsa9{word-spacing:2.835000px;}
.wsa5{word-spacing:2.880000px;}
.wsa6{word-spacing:2.925000px;}
.wsb8{word-spacing:3.015000px;}
.ws7a{word-spacing:3.024000px;}
.wsb9{word-spacing:3.060000px;}
.ws85{word-spacing:3.078000px;}
.ws84{word-spacing:3.186000px;}
.ws87{word-spacing:3.294000px;}
.ws98{word-spacing:3.330000px;}
.ws62{word-spacing:3.348000px;}
.ws86{word-spacing:3.402000px;}
.wsbf{word-spacing:3.510000px;}
.wsc0{word-spacing:3.600000px;}
.ws35{word-spacing:3.618000px;}
.ws24{word-spacing:3.834000px;}
.wsa3{word-spacing:3.870000px;}
.ws88{word-spacing:3.888000px;}
.ws65{word-spacing:3.942000px;}
.wsa4{word-spacing:3.960000px;}
.wsc4{word-spacing:4.005000px;}
.wsc5{word-spacing:4.050000px;}
.wsaa{word-spacing:4.095000px;}
.ws9d{word-spacing:4.140000px;}
.ws66{word-spacing:4.212000px;}
.ws9e{word-spacing:4.230000px;}
.wsca{word-spacing:4.410000px;}
.ws33{word-spacing:4.428000px;}
.wsbc{word-spacing:4.635000px;}
.wsbd{word-spacing:4.725000px;}
.ws89{word-spacing:4.752000px;}
.ws5d{word-spacing:4.806000px;}
.ws75{word-spacing:5.022000px;}
.ws6a{word-spacing:5.076000px;}
.ws72{word-spacing:5.346000px;}
.ws26{word-spacing:5.724000px;}
.ws12{word-spacing:5.778000px;}
.ws13{word-spacing:5.832000px;}
.wsb1{word-spacing:5.895000px;}
.ws23{word-spacing:5.994000px;}
.ws73{word-spacing:6.102000px;}
.ws56{word-spacing:6.210000px;}
.ws2d{word-spacing:6.372000px;}
.ws80{word-spacing:6.426000px;}
.ws78{word-spacing:6.480000px;}
.ws11{word-spacing:6.642000px;}
.wsaf{word-spacing:6.885000px;}
.wsb2{word-spacing:7.110000px;}
.ws57{word-spacing:7.182000px;}
.ws58{word-spacing:7.668000px;}
.ws5c{word-spacing:8.748000px;}
.ws74{word-spacing:8.856000px;}
.ws4b{word-spacing:14.400000px;}
.ws3b{word-spacing:25.200000px;}
._6{margin-left:-25.200000px;}
._8{margin-left:-14.400000px;}
._12{margin-left:-9.604800px;}
._4{margin-left:-6.469800px;}
._5{margin-left:-5.158200px;}
._10{margin-left:-4.050000px;}
._1{margin-left:-2.938500px;}
._0{margin-left:-1.188000px;}
._2{width:1.092000px;}
._3{width:2.178600px;}
._c{width:4.071600px;}
._b{width:5.343000px;}
._13{width:6.484500px;}
._7{width:8.160000px;}
._9{width:15.316800px;}
._f{width:38.183400px;}
._11{width:39.456000px;}
._e{width:1462.104000px;}
._d{width:1465.224000px;}
._a{width:1469.448000px;}
.fc3{color:rgb(0,103,104);}
.fc2{color:rgb(77,77,79);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:43.200000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.400000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:37.986600px;}
.y4{bottom:75.486600px;}
.ya4{bottom:83.273700px;}
.y71{bottom:87.150150px;}
.ydc{bottom:87.288450px;}
.ya3{bottom:100.526700px;}
.ydb{bottom:102.284700px;}
.y70{bottom:108.898650px;}
.y34{bottom:111.361350px;}
.yd{bottom:111.442350px;}
.yda{bottom:117.280950px;}
.ya2{bottom:117.779700px;}
.yc{bottom:124.042350px;}
.y6f{bottom:126.151650px;}
.y33{bottom:128.614350px;}
.yd9{bottom:132.277200px;}
.ya1{bottom:135.032700px;}
.yb{bottom:136.642350px;}
.y11f{bottom:138.644700px;}
.y6e{bottom:143.404650px;}
.y32{bottom:145.867350px;}
.yd8{bottom:147.273450px;}
.ya{bottom:149.242350px;}
.ya0{bottom:152.285700px;}
.y11e{bottom:153.640950px;}
.yd7{bottom:162.269700px;}
.y31{bottom:163.120350px;}
.y6d{bottom:165.153150px;}
.y11d{bottom:168.637200px;}
.y9f{bottom:169.538700px;}
.yd6{bottom:177.265950px;}
.y30{bottom:180.373350px;}
.y6c{bottom:182.406150px;}
.y11c{bottom:183.633450px;}
.y9e{bottom:186.791700px;}
.yd5{bottom:192.262200px;}
.y2f{bottom:197.626350px;}
.y9{bottom:197.842350px;}
.y11b{bottom:198.629700px;}
.y6b{bottom:199.659150px;}
.y9d{bottom:204.044700px;}
.yd4{bottom:207.258450px;}
.y8{bottom:211.342350px;}
.y11a{bottom:213.625950px;}
.y2e{bottom:214.879350px;}
.y6a{bottom:216.912150px;}
.y9c{bottom:221.297700px;}
.yd3{bottom:222.254700px;}
.y7{bottom:224.842350px;}
.y119{bottom:228.622200px;}
.y2d{bottom:232.132350px;}
.y69{bottom:234.165150px;}
.yd2{bottom:237.250950px;}
.y6{bottom:238.342350px;}
.y9b{bottom:238.550700px;}
.y118{bottom:243.618450px;}
.y2c{bottom:249.385350px;}
.y68{bottom:251.418150px;}
.y5{bottom:251.842350px;}
.yd1{bottom:252.247200px;}
.y9a{bottom:255.803700px;}
.y117{bottom:258.614700px;}
.y2b{bottom:266.638350px;}
.yd0{bottom:267.243450px;}
.y67{bottom:268.671150px;}
.y99{bottom:273.056700px;}
.y116{bottom:273.610950px;}
.ycf{bottom:282.239700px;}
.y2a{bottom:283.891350px;}
.y66{bottom:285.924150px;}
.y115{bottom:288.607200px;}
.y98{bottom:290.309700px;}
.yce{bottom:297.235950px;}
.y29{bottom:301.144350px;}
.y65{bottom:303.177150px;}
.y114{bottom:303.603450px;}
.y97{bottom:307.562700px;}
.ycd{bottom:312.232200px;}
.y28{bottom:318.397350px;}
.y113{bottom:318.599700px;}
.y64{bottom:320.430150px;}
.y96{bottom:324.815700px;}
.ycc{bottom:327.228450px;}
.y112{bottom:333.595950px;}
.y27{bottom:335.650350px;}
.y63{bottom:337.683150px;}
.y95{bottom:342.068700px;}
.ycb{bottom:342.224700px;}
.y111{bottom:348.592200px;}
.y26{bottom:352.903350px;}
.y62{bottom:354.936150px;}
.yca{bottom:357.220950px;}
.y94{bottom:359.321700px;}
.y110{bottom:363.588450px;}
.y25{bottom:370.156350px;}
.y61{bottom:372.189150px;}
.yc9{bottom:372.217200px;}
.y93{bottom:376.574700px;}
.y10f{bottom:378.584700px;}
.yc8{bottom:387.213450px;}
.y24{bottom:387.409350px;}
.y60{bottom:389.442150px;}
.y10e{bottom:393.580950px;}
.y92{bottom:398.324700px;}
.yc7{bottom:402.209700px;}
.y23{bottom:404.662350px;}
.y5f{bottom:406.695150px;}
.y10d{bottom:408.577200px;}
.y22{bottom:421.915350px;}
.y10c{bottom:423.573450px;}
.y5e{bottom:423.948150px;}
.yc6{bottom:426.209700px;}
.y10b{bottom:438.569700px;}
.y21{bottom:439.168350px;}
.y5d{bottom:441.201150px;}
.y10a{bottom:453.565950px;}
.y91{bottom:454.565700px;}
.y20{bottom:456.421350px;}
.y5c{bottom:458.454150px;}
.y109{bottom:468.562200px;}
.y90{bottom:471.818700px;}
.y1f{bottom:473.674350px;}
.y5b{bottom:475.707150px;}
.yc5{bottom:482.458200px;}
.y108{bottom:483.558450px;}
.y8f{bottom:489.071700px;}
.y1e{bottom:490.927350px;}
.y5a{bottom:492.960150px;}
.y107{bottom:498.554700px;}
.yc4{bottom:499.711200px;}
.y8e{bottom:506.324700px;}
.y1d{bottom:508.180350px;}
.y59{bottom:510.213150px;}
.y106{bottom:513.550950px;}
.yc3{bottom:521.456700px;}
.y1c{bottom:525.433350px;}
.y8d{bottom:528.073200px;}
.y105{bottom:528.547200px;}
.y58{bottom:531.961650px;}
.yc2{bottom:538.706700px;}
.y1b{bottom:542.686350px;}
.y104{bottom:543.543450px;}
.y57{bottom:549.214650px;}
.y8c{bottom:549.821700px;}
.yc1{bottom:555.944700px;}
.y103{bottom:558.539700px;}
.y1a{bottom:559.939350px;}
.y56{bottom:566.467650px;}
.y8b{bottom:567.074700px;}
.yc0{bottom:573.197700px;}
.y102{bottom:573.535950px;}
.y19{bottom:577.192350px;}
.y101{bottom:588.532200px;}
.ybf{bottom:594.946200px;}
.y18{bottom:598.942350px;}
.y100{bottom:603.528450px;}
.ybe{bottom:612.199200px;}
.y73{bottom:612.592650px;}
.ya6{bottom:613.199550px;}
.yff{bottom:618.524700px;}
.y72{bottom:627.592650px;}
.ya5{bottom:628.199550px;}
.ybd{bottom:629.452200px;}
.yfe{bottom:633.520950px;}
.y55{bottom:633.959700px;}
.ybc{bottom:646.705200px;}
.yfd{bottom:648.517200px;}
.y54{bottom:648.959700px;}
.y17{bottom:655.172850px;}
.yfc{bottom:663.513450px;}
.y53{bottom:663.959700px;}
.ybb{bottom:668.453700px;}
.y16{bottom:672.425850px;}
.yfb{bottom:678.509700px;}
.yba{bottom:685.706700px;}
.y15{bottom:689.678850px;}
.yfa{bottom:693.505950px;}
.yb9{bottom:707.455200px;}
.yf9{bottom:708.502200px;}
.y52{bottom:708.956700px;}
.y8a{bottom:713.459700px;}
.y14{bottom:718.933350px;}
.yf8{bottom:723.498450px;}
.yb8{bottom:724.708200px;}
.y51{bottom:726.214200px;}
.y89{bottom:728.459700px;}
.y36{bottom:732.380250px;}
.yf7{bottom:738.494700px;}
.y13{bottom:745.177350px;}
.yb7{bottom:746.456700px;}
.y50{bottom:747.962700px;}
.y35{bottom:751.730250px;}
.yf6{bottom:753.490950px;}
.y12{bottom:762.430350px;}
.yb6{bottom:763.709700px;}
.y4f{bottom:764.459700px;}
.yf5{bottom:768.487200px;}
.y88{bottom:773.419200px;}
.y11{bottom:779.683350px;}
.yf4{bottom:783.483450px;}
.yb5{bottom:785.459700px;}
.y87{bottom:790.672200px;}
.y10{bottom:796.936350px;}
.yf3{bottom:798.479700px;}
.y4e{bottom:801.959700px;}
.y86{bottom:807.925200px;}
.yf2{bottom:813.475950px;}
.yf{bottom:814.189350px;}
.y85{bottom:825.178200px;}
.yf1{bottom:828.472200px;}
.ye{bottom:831.442350px;}
.yb4{bottom:841.697700px;}
.y84{bottom:842.431200px;}
.yf0{bottom:843.468450px;}
.y4d{bottom:858.188700px;}
.yef{bottom:858.464700px;}
.yb3{bottom:858.950700px;}
.y83{bottom:859.684200px;}
.yee{bottom:873.460950px;}
.y4c{bottom:875.441700px;}
.yb2{bottom:876.203700px;}
.y82{bottom:876.937200px;}
.y3d{bottom:877.567350px;}
.yed{bottom:888.457200px;}
.y4b{bottom:892.694700px;}
.yb1{bottom:893.456700px;}
.y81{bottom:894.190200px;}
.y3c{bottom:901.567350px;}
.yec{bottom:903.453450px;}
.y4a{bottom:909.947700px;}
.yb0{bottom:910.709700px;}
.y80{bottom:911.443200px;}
.y3b{bottom:916.567350px;}
.yeb{bottom:918.449700px;}
.y49{bottom:927.200700px;}
.y7f{bottom:928.696200px;}
.yaf{bottom:932.459700px;}
.yea{bottom:933.445950px;}
.y48{bottom:944.453700px;}
.y7e{bottom:945.949200px;}
.y3a{bottom:946.567350px;}
.ye9{bottom:948.442200px;}
.y47{bottom:961.706700px;}
.y7d{bottom:963.202200px;}
.ye8{bottom:963.438450px;}
.ye7{bottom:978.434700px;}
.y46{bottom:978.959700px;}
.y7c{bottom:980.455200px;}
.y39{bottom:981.067350px;}
.yae{bottom:988.685700px;}
.ye6{bottom:993.430950px;}
.y7b{bottom:997.708200px;}
.y45{bottom:1000.709700px;}
.yad{bottom:1005.938700px;}
.ye5{bottom:1008.427200px;}
.y38{bottom:1013.467350px;}
.y7a{bottom:1019.456700px;}
.yac{bottom:1023.191700px;}
.ye4{bottom:1023.423450px;}
.y79{bottom:1036.709700px;}
.ye3{bottom:1038.419700px;}
.yab{bottom:1040.444700px;}
.y37{bottom:1045.867350px;}
.ye2{bottom:1053.415950px;}
.y78{bottom:1053.953700px;}
.y44{bottom:1056.947700px;}
.yaa{bottom:1057.697700px;}
.ye1{bottom:1068.412200px;}
.y77{bottom:1071.206700px;}
.y43{bottom:1074.200700px;}
.ya9{bottom:1074.950700px;}
.ye0{bottom:1083.408450px;}
.y76{bottom:1088.464200px;}
.y42{bottom:1091.453700px;}
.ya8{bottom:1092.203700px;}
.ydf{bottom:1098.404700px;}
.y3{bottom:1103.439450px;}
.y41{bottom:1108.706700px;}
.ya7{bottom:1109.456700px;}
.y75{bottom:1110.212700px;}
.yde{bottom:1113.400950px;}
.y40{bottom:1125.959700px;}
.y74{bottom:1126.709700px;}
.ydd{bottom:1128.397200px;}
.y2{bottom:1136.834700px;}
.y1{bottom:1154.654700px;}
.y3f{bottom:1179.366450px;}
.h6{height:30.030000px;}
.h5{height:32.175000px;}
.h4{height:34.320000px;}
.hb{height:37.800000px;}
.h3{height:38.610000px;}
.hf{height:38.622000px;}
.he{height:38.670000px;}
.h2{height:42.471000px;}
.hc{height:44.262000px;}
.hd{height:44.280000px;}
.ha{height:44.990700px;}
.h7{height:55.770000px;}
.h8{height:60.060000px;}
.h9{height:77.220000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7{left:-337.606350px;}
.x8{left:-85.039350px;}
.x0{left:0.000000px;}
.x3{left:81.000000px;}
.x2{left:93.134850px;}
.x4{left:98.998200px;}
.x5{left:288.000000px;}
.x6{left:305.995500px;}
.x1{left:715.606200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls22{letter-spacing:-3.328000pt;}
.ls2f{letter-spacing:-1.440000pt;}
.ls2b{letter-spacing:-1.344000pt;}
.ls12{letter-spacing:-1.296000pt;}
.ls25{letter-spacing:-1.237333pt;}
.lsb{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.672000pt;}
.lsf{letter-spacing:-0.624000pt;}
.ls17{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.400000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.048000pt;}
.ls2d{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.085333pt;}
.ls13{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.249067pt;}
.ls1b{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.373867pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls30{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.682667pt;}
.ls3{letter-spacing:1.040000pt;}
.ls21{letter-spacing:1.248000pt;}
.ls31{letter-spacing:3.720000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls2{letter-spacing:5.568000pt;}
.ls1d{letter-spacing:12.283733pt;}
.ls1c{letter-spacing:13.269333pt;}
.ls1{letter-spacing:2527.146667pt;}
.ws43{word-spacing:-14.560000pt;}
.ws7{word-spacing:-14.352000pt;}
.ws8d{word-spacing:-10.272000pt;}
.ws44{word-spacing:-9.984000pt;}
.ws8c{word-spacing:-9.840000pt;}
.wsc{word-spacing:-9.792000pt;}
.ws3{word-spacing:-9.648000pt;}
.ws42{word-spacing:-9.600000pt;}
.ws5b{word-spacing:-9.552000pt;}
.ws4a{word-spacing:-8.960000pt;}
.ws45{word-spacing:-8.832000pt;}
.ws47{word-spacing:-8.490667pt;}
.ws41{word-spacing:-8.405333pt;}
.ws7c{word-spacing:-8.352000pt;}
.ws5a{word-spacing:-8.320000pt;}
.wsb{word-spacing:-8.304000pt;}
.ws6d{word-spacing:-8.149333pt;}
.ws6{word-spacing:-8.112000pt;}
.ws5{word-spacing:-8.064000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws0{word-spacing:-7.978667pt;}
.ws2{word-spacing:-7.840000pt;}
.ws48{word-spacing:-7.808000pt;}
.wse{word-spacing:-7.722667pt;}
.ws8{word-spacing:-7.584000pt;}
.wsa{word-spacing:-7.536000pt;}
.ws9{word-spacing:-7.440000pt;}
.ws40{word-spacing:-7.381333pt;}
.ws4{word-spacing:-7.200000pt;}
.ws8e{word-spacing:-6.840000pt;}
.ws49{word-spacing:-6.826667pt;}
.wsd{word-spacing:-6.218667pt;}
.ws9f{word-spacing:-2.040000pt;}
.ws7b{word-spacing:-1.920000pt;}
.ws79{word-spacing:-1.872000pt;}
.ws38{word-spacing:-1.824000pt;}
.ws54{word-spacing:-1.776000pt;}
.ws7d{word-spacing:-1.680000pt;}
.ws53{word-spacing:-1.632000pt;}
.wsba{word-spacing:-1.600000pt;}
.ws2b{word-spacing:-1.584000pt;}
.ws76{word-spacing:-1.536000pt;}
.wsc8{word-spacing:-1.520000pt;}
.wsc7{word-spacing:-1.480000pt;}
.wsc1{word-spacing:-1.400000pt;}
.ws2a{word-spacing:-1.296000pt;}
.ws14{word-spacing:-1.248000pt;}
.ws16{word-spacing:-1.200000pt;}
.wsa7{word-spacing:-1.160000pt;}
.ws8b{word-spacing:-1.152000pt;}
.ws6f{word-spacing:-1.104000pt;}
.ws28{word-spacing:-1.056000pt;}
.wsa8{word-spacing:-1.040000pt;}
.ws77{word-spacing:-1.008000pt;}
.ws15{word-spacing:-0.960000pt;}
.ws2e{word-spacing:-0.912000pt;}
.wsc3{word-spacing:-0.880000pt;}
.ws81{word-spacing:-0.864000pt;}
.wsc2{word-spacing:-0.840000pt;}
.ws19{word-spacing:-0.816000pt;}
.ws55{word-spacing:-0.768000pt;}
.ws17{word-spacing:-0.720000pt;}
.ws61{word-spacing:-0.672000pt;}
.ws52{word-spacing:-0.624000pt;}
.wsb4{word-spacing:-0.600000pt;}
.wsa2{word-spacing:-0.560000pt;}
.ws93{word-spacing:-0.554667pt;}
.ws10{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.469333pt;}
.ws29{word-spacing:-0.432000pt;}
.ws59{word-spacing:-0.426667pt;}
.ws71{word-spacing:-0.384000pt;}
.ws7f{word-spacing:-0.336000pt;}
.ws4c{word-spacing:-0.298667pt;}
.ws1c{word-spacing:-0.288000pt;}
.ws7e{word-spacing:-0.240000pt;}
.ws83{word-spacing:-0.192000pt;}
.wsa1{word-spacing:-0.160000pt;}
.ws5e{word-spacing:-0.144000pt;}
.ws32{word-spacing:-0.096000pt;}
.ws6e{word-spacing:-0.048000pt;}
.ws3f{word-spacing:-0.042667pt;}
.wsac{word-spacing:-0.040000pt;}
.ws46{word-spacing:-0.038400pt;}
.wsf{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.040000pt;}
.ws2f{word-spacing:0.048000pt;}
.ws18{word-spacing:0.096000pt;}
.ws99{word-spacing:0.120000pt;}
.ws22{word-spacing:0.144000pt;}
.wsbb{word-spacing:0.160000pt;}
.ws1a{word-spacing:0.192000pt;}
.ws2c{word-spacing:0.240000pt;}
.wsc6{word-spacing:0.280000pt;}
.ws4f{word-spacing:0.288000pt;}
.ws51{word-spacing:0.336000pt;}
.ws3a{word-spacing:0.384000pt;}
.wsad{word-spacing:0.400000pt;}
.ws60{word-spacing:0.432000pt;}
.wsae{word-spacing:0.440000pt;}
.ws1b{word-spacing:0.480000pt;}
.wsa0{word-spacing:0.520000pt;}
.ws8f{word-spacing:0.528000pt;}
.ws3c{word-spacing:0.576000pt;}
.ws50{word-spacing:0.624000pt;}
.ws3d{word-spacing:0.672000pt;}
.ws69{word-spacing:0.720000pt;}
.ws34{word-spacing:0.768000pt;}
.wsb5{word-spacing:0.800000pt;}
.ws25{word-spacing:0.816000pt;}
.ws6b{word-spacing:0.864000pt;}
.ws68{word-spacing:0.912000pt;}
.ws8a{word-spacing:0.960000pt;}
.ws9b{word-spacing:1.000000pt;}
.ws67{word-spacing:1.008000pt;}
.ws9c{word-spacing:1.040000pt;}
.ws39{word-spacing:1.056000pt;}
.ws94{word-spacing:1.080000pt;}
.ws95{word-spacing:1.120000pt;}
.ws31{word-spacing:1.152000pt;}
.wsab{word-spacing:1.240000pt;}
.ws30{word-spacing:1.296000pt;}
.ws6c{word-spacing:1.344000pt;}
.ws96{word-spacing:1.400000pt;}
.ws90{word-spacing:1.440000pt;}
.ws97{word-spacing:1.480000pt;}
.ws20{word-spacing:1.488000pt;}
.wsb3{word-spacing:1.520000pt;}
.ws21{word-spacing:1.536000pt;}
.ws64{word-spacing:1.584000pt;}
.ws1f{word-spacing:1.632000pt;}
.ws92{word-spacing:1.680000pt;}
.wsbe{word-spacing:1.720000pt;}
.ws91{word-spacing:1.728000pt;}
.ws9a{word-spacing:1.760000pt;}
.ws82{word-spacing:1.776000pt;}
.ws63{word-spacing:1.824000pt;}
.ws36{word-spacing:1.920000pt;}
.wsb6{word-spacing:1.960000pt;}
.wsb7{word-spacing:2.000000pt;}
.ws70{word-spacing:2.016000pt;}
.ws5f{word-spacing:2.064000pt;}
.ws4d{word-spacing:2.112000pt;}
.ws4e{word-spacing:2.208000pt;}
.ws37{word-spacing:2.256000pt;}
.ws27{word-spacing:2.304000pt;}
.ws1d{word-spacing:2.400000pt;}
.ws1e{word-spacing:2.448000pt;}
.wsb0{word-spacing:2.480000pt;}
.wsa9{word-spacing:2.520000pt;}
.wsa5{word-spacing:2.560000pt;}
.wsa6{word-spacing:2.600000pt;}
.wsb8{word-spacing:2.680000pt;}
.ws7a{word-spacing:2.688000pt;}
.wsb9{word-spacing:2.720000pt;}
.ws85{word-spacing:2.736000pt;}
.ws84{word-spacing:2.832000pt;}
.ws87{word-spacing:2.928000pt;}
.ws98{word-spacing:2.960000pt;}
.ws62{word-spacing:2.976000pt;}
.ws86{word-spacing:3.024000pt;}
.wsbf{word-spacing:3.120000pt;}
.wsc0{word-spacing:3.200000pt;}
.ws35{word-spacing:3.216000pt;}
.ws24{word-spacing:3.408000pt;}
.wsa3{word-spacing:3.440000pt;}
.ws88{word-spacing:3.456000pt;}
.ws65{word-spacing:3.504000pt;}
.wsa4{word-spacing:3.520000pt;}
.wsc4{word-spacing:3.560000pt;}
.wsc5{word-spacing:3.600000pt;}
.wsaa{word-spacing:3.640000pt;}
.ws9d{word-spacing:3.680000pt;}
.ws66{word-spacing:3.744000pt;}
.ws9e{word-spacing:3.760000pt;}
.wsca{word-spacing:3.920000pt;}
.ws33{word-spacing:3.936000pt;}
.wsbc{word-spacing:4.120000pt;}
.wsbd{word-spacing:4.200000pt;}
.ws89{word-spacing:4.224000pt;}
.ws5d{word-spacing:4.272000pt;}
.ws75{word-spacing:4.464000pt;}
.ws6a{word-spacing:4.512000pt;}
.ws72{word-spacing:4.752000pt;}
.ws26{word-spacing:5.088000pt;}
.ws12{word-spacing:5.136000pt;}
.ws13{word-spacing:5.184000pt;}
.wsb1{word-spacing:5.240000pt;}
.ws23{word-spacing:5.328000pt;}
.ws73{word-spacing:5.424000pt;}
.ws56{word-spacing:5.520000pt;}
.ws2d{word-spacing:5.664000pt;}
.ws80{word-spacing:5.712000pt;}
.ws78{word-spacing:5.760000pt;}
.ws11{word-spacing:5.904000pt;}
.wsaf{word-spacing:6.120000pt;}
.wsb2{word-spacing:6.320000pt;}
.ws57{word-spacing:6.384000pt;}
.ws58{word-spacing:6.816000pt;}
.ws5c{word-spacing:7.776000pt;}
.ws74{word-spacing:7.872000pt;}
.ws4b{word-spacing:12.800000pt;}
.ws3b{word-spacing:22.400000pt;}
._6{margin-left:-22.400000pt;}
._8{margin-left:-12.800000pt;}
._12{margin-left:-8.537600pt;}
._4{margin-left:-5.750933pt;}
._5{margin-left:-4.585067pt;}
._10{margin-left:-3.600000pt;}
._1{margin-left:-2.612000pt;}
._0{margin-left:-1.056000pt;}
._2{width:0.970667pt;}
._3{width:1.936533pt;}
._c{width:3.619200pt;}
._b{width:4.749333pt;}
._13{width:5.764000pt;}
._7{width:7.253333pt;}
._9{width:13.614933pt;}
._f{width:33.940800pt;}
._11{width:35.072000pt;}
._e{width:1299.648000pt;}
._d{width:1302.421333pt;}
._a{width:1306.176000pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:38.400000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.800000pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:33.765867pt;}
.y4{bottom:67.099200pt;}
.ya4{bottom:74.021067pt;}
.y71{bottom:77.466800pt;}
.ydc{bottom:77.589733pt;}
.ya3{bottom:89.357067pt;}
.ydb{bottom:90.919733pt;}
.y70{bottom:96.798800pt;}
.y34{bottom:98.987867pt;}
.yd{bottom:99.059867pt;}
.yda{bottom:104.249733pt;}
.ya2{bottom:104.693067pt;}
.yc{bottom:110.259867pt;}
.y6f{bottom:112.134800pt;}
.y33{bottom:114.323867pt;}
.yd9{bottom:117.579733pt;}
.ya1{bottom:120.029067pt;}
.yb{bottom:121.459867pt;}
.y11f{bottom:123.239733pt;}
.y6e{bottom:127.470800pt;}
.y32{bottom:129.659867pt;}
.yd8{bottom:130.909733pt;}
.ya{bottom:132.659867pt;}
.ya0{bottom:135.365067pt;}
.y11e{bottom:136.569733pt;}
.yd7{bottom:144.239733pt;}
.y31{bottom:144.995867pt;}
.y6d{bottom:146.802800pt;}
.y11d{bottom:149.899733pt;}
.y9f{bottom:150.701067pt;}
.yd6{bottom:157.569733pt;}
.y30{bottom:160.331867pt;}
.y6c{bottom:162.138800pt;}
.y11c{bottom:163.229733pt;}
.y9e{bottom:166.037067pt;}
.yd5{bottom:170.899733pt;}
.y2f{bottom:175.667867pt;}
.y9{bottom:175.859867pt;}
.y11b{bottom:176.559733pt;}
.y6b{bottom:177.474800pt;}
.y9d{bottom:181.373067pt;}
.yd4{bottom:184.229733pt;}
.y8{bottom:187.859867pt;}
.y11a{bottom:189.889733pt;}
.y2e{bottom:191.003867pt;}
.y6a{bottom:192.810800pt;}
.y9c{bottom:196.709067pt;}
.yd3{bottom:197.559733pt;}
.y7{bottom:199.859867pt;}
.y119{bottom:203.219733pt;}
.y2d{bottom:206.339867pt;}
.y69{bottom:208.146800pt;}
.yd2{bottom:210.889733pt;}
.y6{bottom:211.859867pt;}
.y9b{bottom:212.045067pt;}
.y118{bottom:216.549733pt;}
.y2c{bottom:221.675867pt;}
.y68{bottom:223.482800pt;}
.y5{bottom:223.859867pt;}
.yd1{bottom:224.219733pt;}
.y9a{bottom:227.381067pt;}
.y117{bottom:229.879733pt;}
.y2b{bottom:237.011867pt;}
.yd0{bottom:237.549733pt;}
.y67{bottom:238.818800pt;}
.y99{bottom:242.717067pt;}
.y116{bottom:243.209733pt;}
.ycf{bottom:250.879733pt;}
.y2a{bottom:252.347867pt;}
.y66{bottom:254.154800pt;}
.y115{bottom:256.539733pt;}
.y98{bottom:258.053067pt;}
.yce{bottom:264.209733pt;}
.y29{bottom:267.683867pt;}
.y65{bottom:269.490800pt;}
.y114{bottom:269.869733pt;}
.y97{bottom:273.389067pt;}
.ycd{bottom:277.539733pt;}
.y28{bottom:283.019867pt;}
.y113{bottom:283.199733pt;}
.y64{bottom:284.826800pt;}
.y96{bottom:288.725067pt;}
.ycc{bottom:290.869733pt;}
.y112{bottom:296.529733pt;}
.y27{bottom:298.355867pt;}
.y63{bottom:300.162800pt;}
.y95{bottom:304.061067pt;}
.ycb{bottom:304.199733pt;}
.y111{bottom:309.859733pt;}
.y26{bottom:313.691867pt;}
.y62{bottom:315.498800pt;}
.yca{bottom:317.529733pt;}
.y94{bottom:319.397067pt;}
.y110{bottom:323.189733pt;}
.y25{bottom:329.027867pt;}
.y61{bottom:330.834800pt;}
.yc9{bottom:330.859733pt;}
.y93{bottom:334.733067pt;}
.y10f{bottom:336.519733pt;}
.yc8{bottom:344.189733pt;}
.y24{bottom:344.363867pt;}
.y60{bottom:346.170800pt;}
.y10e{bottom:349.849733pt;}
.y92{bottom:354.066400pt;}
.yc7{bottom:357.519733pt;}
.y23{bottom:359.699867pt;}
.y5f{bottom:361.506800pt;}
.y10d{bottom:363.179733pt;}
.y22{bottom:375.035867pt;}
.y10c{bottom:376.509733pt;}
.y5e{bottom:376.842800pt;}
.yc6{bottom:378.853067pt;}
.y10b{bottom:389.839733pt;}
.y21{bottom:390.371867pt;}
.y5d{bottom:392.178800pt;}
.y10a{bottom:403.169733pt;}
.y91{bottom:404.058400pt;}
.y20{bottom:405.707867pt;}
.y5c{bottom:407.514800pt;}
.y109{bottom:416.499733pt;}
.y90{bottom:419.394400pt;}
.y1f{bottom:421.043867pt;}
.y5b{bottom:422.850800pt;}
.yc5{bottom:428.851733pt;}
.y108{bottom:429.829733pt;}
.y8f{bottom:434.730400pt;}
.y1e{bottom:436.379867pt;}
.y5a{bottom:438.186800pt;}
.y107{bottom:443.159733pt;}
.yc4{bottom:444.187733pt;}
.y8e{bottom:450.066400pt;}
.y1d{bottom:451.715867pt;}
.y59{bottom:453.522800pt;}
.y106{bottom:456.489733pt;}
.yc3{bottom:463.517067pt;}
.y1c{bottom:467.051867pt;}
.y8d{bottom:469.398400pt;}
.y105{bottom:469.819733pt;}
.y58{bottom:472.854800pt;}
.yc2{bottom:478.850400pt;}
.y1b{bottom:482.387867pt;}
.y104{bottom:483.149733pt;}
.y57{bottom:488.190800pt;}
.y8c{bottom:488.730400pt;}
.yc1{bottom:494.173067pt;}
.y103{bottom:496.479733pt;}
.y1a{bottom:497.723867pt;}
.y56{bottom:503.526800pt;}
.y8b{bottom:504.066400pt;}
.yc0{bottom:509.509067pt;}
.y102{bottom:509.809733pt;}
.y19{bottom:513.059867pt;}
.y101{bottom:523.139733pt;}
.ybf{bottom:528.841067pt;}
.y18{bottom:532.393200pt;}
.y100{bottom:536.469733pt;}
.ybe{bottom:544.177067pt;}
.y73{bottom:544.526800pt;}
.ya6{bottom:545.066267pt;}
.yff{bottom:549.799733pt;}
.y72{bottom:557.860133pt;}
.ya5{bottom:558.399600pt;}
.ybd{bottom:559.513067pt;}
.yfe{bottom:563.129733pt;}
.y55{bottom:563.519733pt;}
.ybc{bottom:574.849067pt;}
.yfd{bottom:576.459733pt;}
.y54{bottom:576.853067pt;}
.y17{bottom:582.375867pt;}
.yfc{bottom:589.789733pt;}
.y53{bottom:590.186400pt;}
.ybb{bottom:594.181067pt;}
.y16{bottom:597.711867pt;}
.yfb{bottom:603.119733pt;}
.yba{bottom:609.517067pt;}
.y15{bottom:613.047867pt;}
.yfa{bottom:616.449733pt;}
.yb9{bottom:628.849067pt;}
.yf9{bottom:629.779733pt;}
.y52{bottom:630.183733pt;}
.y8a{bottom:634.186400pt;}
.y14{bottom:639.051867pt;}
.yf8{bottom:643.109733pt;}
.yb8{bottom:644.185067pt;}
.y51{bottom:645.523733pt;}
.y89{bottom:647.519733pt;}
.y36{bottom:651.004667pt;}
.yf7{bottom:656.439733pt;}
.y13{bottom:662.379867pt;}
.yb7{bottom:663.517067pt;}
.y50{bottom:664.855733pt;}
.y35{bottom:668.204667pt;}
.yf6{bottom:669.769733pt;}
.y12{bottom:677.715867pt;}
.yb6{bottom:678.853067pt;}
.y4f{bottom:679.519733pt;}
.yf5{bottom:683.099733pt;}
.y88{bottom:687.483733pt;}
.y11{bottom:693.051867pt;}
.yf4{bottom:696.429733pt;}
.yb5{bottom:698.186400pt;}
.y87{bottom:702.819733pt;}
.y10{bottom:708.387867pt;}
.yf3{bottom:709.759733pt;}
.y4e{bottom:712.853067pt;}
.y86{bottom:718.155733pt;}
.yf2{bottom:723.089733pt;}
.yf{bottom:723.723867pt;}
.y85{bottom:733.491733pt;}
.yf1{bottom:736.419733pt;}
.ye{bottom:739.059867pt;}
.yb4{bottom:748.175733pt;}
.y84{bottom:748.827733pt;}
.yf0{bottom:749.749733pt;}
.y4d{bottom:762.834400pt;}
.yef{bottom:763.079733pt;}
.yb3{bottom:763.511733pt;}
.y83{bottom:764.163733pt;}
.yee{bottom:776.409733pt;}
.y4c{bottom:778.170400pt;}
.yb2{bottom:778.847733pt;}
.y82{bottom:779.499733pt;}
.y3d{bottom:780.059867pt;}
.yed{bottom:789.739733pt;}
.y4b{bottom:793.506400pt;}
.yb1{bottom:794.183733pt;}
.y81{bottom:794.835733pt;}
.y3c{bottom:801.393200pt;}
.yec{bottom:803.069733pt;}
.y4a{bottom:808.842400pt;}
.yb0{bottom:809.519733pt;}
.y80{bottom:810.171733pt;}
.y3b{bottom:814.726533pt;}
.yeb{bottom:816.399733pt;}
.y49{bottom:824.178400pt;}
.y7f{bottom:825.507733pt;}
.yaf{bottom:828.853067pt;}
.yea{bottom:829.729733pt;}
.y48{bottom:839.514400pt;}
.y7e{bottom:840.843733pt;}
.y3a{bottom:841.393200pt;}
.ye9{bottom:843.059733pt;}
.y47{bottom:854.850400pt;}
.y7d{bottom:856.179733pt;}
.ye8{bottom:856.389733pt;}
.ye7{bottom:869.719733pt;}
.y46{bottom:870.186400pt;}
.y7c{bottom:871.515733pt;}
.y39{bottom:872.059867pt;}
.yae{bottom:878.831733pt;}
.ye6{bottom:883.049733pt;}
.y7b{bottom:886.851733pt;}
.y45{bottom:889.519733pt;}
.yad{bottom:894.167733pt;}
.ye5{bottom:896.379733pt;}
.y38{bottom:900.859867pt;}
.y7a{bottom:906.183733pt;}
.yac{bottom:909.503733pt;}
.ye4{bottom:909.709733pt;}
.y79{bottom:921.519733pt;}
.ye3{bottom:923.039733pt;}
.yab{bottom:924.839733pt;}
.y37{bottom:929.659867pt;}
.ye2{bottom:936.369733pt;}
.y78{bottom:936.847733pt;}
.y44{bottom:939.509067pt;}
.yaa{bottom:940.175733pt;}
.ye1{bottom:949.699733pt;}
.y77{bottom:952.183733pt;}
.y43{bottom:954.845067pt;}
.ya9{bottom:955.511733pt;}
.ye0{bottom:963.029733pt;}
.y76{bottom:967.523733pt;}
.y42{bottom:970.181067pt;}
.ya8{bottom:970.847733pt;}
.ydf{bottom:976.359733pt;}
.y3{bottom:980.835067pt;}
.y41{bottom:985.517067pt;}
.ya7{bottom:986.183733pt;}
.y75{bottom:986.855733pt;}
.yde{bottom:989.689733pt;}
.y40{bottom:1000.853067pt;}
.y74{bottom:1001.519733pt;}
.ydd{bottom:1003.019733pt;}
.y2{bottom:1010.519733pt;}
.y1{bottom:1026.359733pt;}
.y3f{bottom:1048.325733pt;}
.h6{height:26.693333pt;}
.h5{height:28.600000pt;}
.h4{height:30.506667pt;}
.hb{height:33.600000pt;}
.h3{height:34.320000pt;}
.hf{height:34.330667pt;}
.he{height:34.373333pt;}
.h2{height:37.752000pt;}
.hc{height:39.344000pt;}
.hd{height:39.360000pt;}
.ha{height:39.991733pt;}
.h7{height:49.573333pt;}
.h8{height:53.386667pt;}
.h9{height:68.640000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7{left:-300.094533pt;}
.x8{left:-75.590533pt;}
.x0{left:0.000000pt;}
.x3{left:72.000000pt;}
.x2{left:82.786533pt;}
.x4{left:87.998400pt;}
.x5{left:256.000000pt;}
.x6{left:271.996000pt;}
.x1{left:636.094400pt;}
}




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