
    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_2c81d090f7a5e155d9035cd8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_70cdb3ce15ad513b0b5bfcd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_b84ee1a469a2723b2fa43b53.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_2678075d69a9bf1f5007b277.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_91d8fc4996128e238b3215fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_0ae56871f70f06479736bb24.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_0b1f4fd4d6a50a7fa49fdb7f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956543;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_dea673d32df784d76f6646bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.831000;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_7c1254a2411a30d51a9ea799.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_18f2248c9612a0be68dba45c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b27f1a531ff2ab81ba71ca05.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.869141;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_896dc57669242b1b91233766.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cccf93b85ce0804f33051953.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.m8{transform:matrix(0.232681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232681,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.236503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236503,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.ma{transform:matrix(0.240978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240978,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240986,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242658,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246348,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247121,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247659,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,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);}
.m11{transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251169,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252031,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252656,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252711,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254765,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v9{vertical-align:-42.017986px;}
.v7{vertical-align:-38.633279px;}
.v5{vertical-align:-9.360000px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.360000px;}
.v4{vertical-align:19.239514px;}
.v1{vertical-align:23.957243px;}
.v2{vertical-align:43.106673px;}
.v8{vertical-align:44.206420px;}
.v3{vertical-align:72.000000px;}
.ls1c{letter-spacing:-3.431335px;}
.ls1f{letter-spacing:-2.057999px;}
.ls35{letter-spacing:-1.080000px;}
.ls2e{letter-spacing:-0.690000px;}
.ls34{letter-spacing:-0.684000px;}
.ls36{letter-spacing:-0.445200px;}
.ls11{letter-spacing:-0.428400px;}
.ls2d{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.282000px;}
.lsc{letter-spacing:-0.180000px;}
.ls24{letter-spacing:-0.158400px;}
.ls2{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.008640px;}
.ls20{letter-spacing:0.018000px;}
.ls28{letter-spacing:0.028080px;}
.ls22{letter-spacing:0.029823px;}
.ls3{letter-spacing:0.037440px;}
.ls2f{letter-spacing:0.106560px;}
.ls27{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.208080px;}
.ls2c{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.285000px;}
.ls25{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.369360px;}
.ls29{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.540000px;}
.ls31{letter-spacing:1.781280px;}
.ls30{letter-spacing:3.420000px;}
.ls32{letter-spacing:4.140000px;}
.ls33{letter-spacing:4.860000px;}
.ls8{letter-spacing:8.460000px;}
.ls7{letter-spacing:9.180000px;}
.ls1{letter-spacing:19.980000px;}
.ls2b{letter-spacing:20.700000px;}
.lse{letter-spacing:27.900000px;}
.ls9{letter-spacing:28.620000px;}
.lsd{letter-spacing:31.667227px;}
.ls5{letter-spacing:35.100000px;}
.ls4{letter-spacing:35.820000px;}
.ls6{letter-spacing:36.000000px;}
.ls2a{letter-spacing:39.420000px;}
.lsb{letter-spacing:54.540000px;}
.lsa{letter-spacing:66.960000px;}
.ls13{letter-spacing:103.012733px;}
.ls15{letter-spacing:119.636860px;}
.ls18{letter-spacing:121.911341px;}
.ls12{letter-spacing:127.427851px;}
.ls14{letter-spacing:145.142030px;}
.lsf{letter-spacing:176.654327px;}
.ls19{letter-spacing:184.718098px;}
.ls1e{letter-spacing:204.608286px;}
.ls1d{letter-spacing:217.687907px;}
.ls17{letter-spacing:384.081075px;}
.ls1a{letter-spacing:631.773697px;}
.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;}
}
.wsa{word-spacing:-384.137317px;}
.ws5{word-spacing:-127.479096px;}
.ws34{word-spacing:-84.240000px;}
.ws1a{word-spacing:-56.862000px;}
.ws27{word-spacing:-51.361052px;}
.ws28{word-spacing:-49.303054px;}
.ws1b{word-spacing:-47.131697px;}
.ws1c{word-spacing:-43.700361px;}
.ws21{word-spacing:-36.058526px;}
.ws24{word-spacing:-35.167480px;}
.wsf{word-spacing:-32.017925px;}
.ws0{word-spacing:-24.300000px;}
.ws32{word-spacing:-21.420000px;}
.ws2d{word-spacing:-21.410400px;}
.ws2a{word-spacing:-21.345000px;}
.ws2{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws2b{word-spacing:-20.901600px;}
.ws2e{word-spacing:-20.778000px;}
.ws33{word-spacing:-20.700000px;}
.ws4{word-spacing:-20.631600px;}
.ws30{word-spacing:-20.370000px;}
.ws35{word-spacing:-19.980000px;}
.ws2c{word-spacing:-18.000000px;}
.ws2f{word-spacing:-13.860000px;}
.ws29{word-spacing:-13.500000px;}
.ws31{word-spacing:-12.060000px;}
.ws14{word-spacing:-0.087272px;}
.ws16{word-spacing:-0.076982px;}
.ws12{word-spacing:-0.055860px;}
.ws25{word-spacing:-0.054637px;}
.ws1e{word-spacing:-0.052336px;}
.ws13{word-spacing:-0.050968px;}
.ws17{word-spacing:-0.045035px;}
.ws15{word-spacing:-0.044958px;}
.wsc{word-spacing:-0.043823px;}
.ws8{word-spacing:-0.036537px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:88.467796px;}
.ws11{word-spacing:93.123050px;}
.ws6{word-spacing:93.258945px;}
.ws7{word-spacing:109.531145px;}
.wsb{word-spacing:109.661335px;}
.ws18{word-spacing:151.602734px;}
.wsd{word-spacing:153.944237px;}
.wse{word-spacing:157.202069px;}
.ws22{word-spacing:162.540694px;}
.ws1f{word-spacing:172.931137px;}
.ws23{word-spacing:175.108538px;}
.ws20{word-spacing:186.302383px;}
.ws9{word-spacing:345.498106px;}
.ws10{word-spacing:458.899533px;}
.ws1d{word-spacing:599.296737px;}
.ws26{word-spacing:697.679504px;}
._24{margin-left:-576.082182px;}
._20{margin-left:-465.511976px;}
._3e{margin-left:-426.826511px;}
._41{margin-left:-399.723228px;}
._28{margin-left:-377.501789px;}
._2a{margin-left:-356.635097px;}
._48{margin-left:-341.571344px;}
._2b{margin-left:-336.102894px;}
._3a{margin-left:-318.850477px;}
._44{margin-left:-309.073387px;}
._26{margin-left:-307.767215px;}
._2d{margin-left:-300.405562px;}
._35{margin-left:-293.247712px;}
._36{margin-left:-291.045544px;}
._22{margin-left:-273.221384px;}
._3c{margin-left:-264.958477px;}
._46{margin-left:-257.369803px;}
._38{margin-left:-243.036492px;}
._45{margin-left:-185.526775px;}
._37{margin-left:-168.001561px;}
._47{margin-left:-136.867457px;}
._2c{margin-left:-131.184617px;}
._39{margin-left:-126.622413px;}
._31{margin-left:-106.735052px;}
._34{margin-left:-94.149900px;}
._3b{margin-left:-73.307648px;}
._2e{margin-left:-49.509327px;}
._43{margin-left:-48.367707px;}
._2f{margin-left:-45.286685px;}
._30{margin-left:-41.410259px;}
._33{margin-left:-36.527567px;}
._1b{margin-left:-6.513600px;}
._b{margin-left:-5.187840px;}
._a{margin-left:-3.959280px;}
._9{margin-left:-2.500320px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._3{width:3.034320px;}
._2{width:4.043520px;}
._1a{width:5.791920px;}
._49{width:7.095600px;}
._c{width:8.325840px;}
._d{width:9.357360px;}
._4d{width:11.753040px;}
._4b{width:12.952320px;}
._14{width:13.983840px;}
._4{width:15.500160px;}
._1d{width:17.100720px;}
._7{width:18.280080px;}
._8{width:19.584480px;}
._4f{width:22.205280px;}
._1f{width:23.671440px;}
._4c{width:26.451360px;}
._32{width:27.967680px;}
._13{width:29.631840px;}
._12{width:30.726960px;}
._19{width:32.770560px;}
._18{width:33.843840px;}
._1c{width:35.781360px;}
._15{width:37.044960px;}
._6{width:39.150960px;}
._4e{width:41.067120px;}
._51{width:50.772480px;}
._50{width:52.174080px;}
._1e{width:55.493520px;}
._5{width:57.683760px;}
._e{width:66.339840px;}
._f{width:71.836080px;}
._52{width:79.639680px;}
._10{width:95.086320px;}
._11{width:96.370560px;}
._17{width:97.459440px;}
._16{width:98.792880px;}
._4a{width:99.824400px;}
._21{width:110.247292px;}
._23{width:141.974548px;}
._29{width:165.609959px;}
._42{width:174.470786px;}
._3f{width:185.623862px;}
._25{width:189.547720px;}
._27{width:204.337211px;}
._40{width:215.378036px;}
._3d{width:230.697019px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:36.536587px;}
.fsd{font-size:43.822608px;}
.fs15{font-size:44.958424px;}
.fs17{font-size:45.034898px;}
.fs24{font-size:48.240000px;}
.fs22{font-size:48.913141px;}
.fsf{font-size:49.089361px;}
.fs13{font-size:50.968080px;}
.fs5{font-size:51.244619px;}
.fs1a{font-size:52.336388px;}
.fs1d{font-size:52.738707px;}
.fs7{font-size:53.532516px;}
.fs1{font-size:54.000000px;}
.fs20{font-size:54.636767px;}
.fs12{font-size:55.860324px;}
.fs1b{font-size:56.110038px;}
.fsb{font-size:56.242570px;}
.fsa{font-size:63.117885px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fse{font-size:75.704673px;}
.fs16{font-size:76.981727px;}
.fs18{font-size:77.224257px;}
.fs23{font-size:80.413521px;}
.fs4{font-size:84.240000px;}
.fs10{font-size:84.928184px;}
.fs19{font-size:85.850085px;}
.fs14{font-size:87.271985px;}
.fs6{font-size:88.480973px;}
.fs21{font-size:88.795869px;}
.fs1e{font-size:91.107460px;}
.fs8{font-size:92.431346px;}
.fs1f{font-size:93.553829px;}
.fs3{font-size:95.760000px;}
.fs11{font-size:95.787315px;}
.fs1c{font-size:96.931521px;}
.fsc{font-size:97.303758px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y88{bottom:3.473154px;}
.yb3{bottom:3.490895px;}
.yb5{bottom:3.490942px;}
.y8d{bottom:3.529900px;}
.y83{bottom:3.937424px;}
.y3{bottom:3.960000px;}
.y68{bottom:3.978887px;}
.ya8{bottom:4.220853px;}
.yaa{bottom:4.220878px;}
.y93{bottom:4.267884px;}
.y95{bottom:4.267909px;}
.y7c{bottom:4.378412px;}
.y74{bottom:4.772312px;}
.yd3{bottom:5.040000px;}
.ya{bottom:5.220000px;}
.y77{bottom:5.407043px;}
.y5c{bottom:5.688815px;}
.ya1{bottom:5.743355px;}
.y61{bottom:5.942799px;}
.y63{bottom:5.942816px;}
.y9c{bottom:6.110496px;}
.y6d{bottom:6.194983px;}
.yd1{bottom:6.300000px;}
.ycb{bottom:7.020000px;}
.y9{bottom:7.380000px;}
.y69{bottom:8.084085px;}
.y89{bottom:8.297086px;}
.yb7{bottom:8.519586px;}
.yba{bottom:8.519631px;}
.yd0{bottom:8.820000px;}
.y7d{bottom:9.237825px;}
.y84{bottom:9.406182px;}
.y91{bottom:9.658695px;}
.y75{bottom:9.696147px;}
.ya6{bottom:10.083231px;}
.y7b{bottom:10.344482px;}
.y78{bottom:10.899070px;}
.y5d{bottom:11.422172px;}
.ya2{bottom:11.668993px;}
.y62{bottom:11.932131px;}
.y9d{bottom:12.414930px;}
.y6e{bottom:12.487301px;}
.y67{bottom:15.158264px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y87{bottom:16.902620px;}
.y8c{bottom:17.027987px;}
.y73{bottom:18.181056px;}
.y82{bottom:19.162021px;}
.y97{bottom:19.317072px;}
.y96{bottom:19.317075px;}
.y76{bottom:20.436634px;}
.yab{bottom:20.587785px;}
.y92{bottom:20.710313px;}
.y94{bottom:20.710338px;}
.y7e{bottom:21.121151px;}
.ya0{bottom:21.880224px;}
.ya7{bottom:22.276302px;}
.ya9{bottom:22.276327px;}
.y9b{bottom:23.278917px;}
.y6c{bottom:23.414657px;}
.yb9{bottom:24.311270px;}
.y2{bottom:24.660000px;}
.yb4{bottom:32.624084px;}
.yb6{bottom:32.624130px;}
.yb8{bottom:37.652949px;}
.ybb{bottom:37.652994px;}
.y8{bottom:44.640000px;}
.y4e{bottom:95.256000px;}
.yeb{bottom:96.336000px;}
.y2b{bottom:96.516000px;}
.y54{bottom:99.036000px;}
.y10e{bottom:117.036000px;}
.y4d{bottom:122.976000px;}
.y2a{bottom:124.236000px;}
.y53{bottom:126.756000px;}
.y8f{bottom:126.936000px;}
.y10d{bottom:144.936000px;}
.y8b{bottom:150.240000px;}
.y4c{bottom:150.870000px;}
.yea{bottom:151.950000px;}
.y52{bottom:154.470000px;}
.y8e{bottom:157.710000px;}
.yd4{bottom:158.790000px;}
.y29{bottom:160.410000px;}
.ye9{bottom:172.290000px;}
.y85{bottom:172.650000px;}
.y4b{bottom:178.590000px;}
.yd2{bottom:179.130000px;}
.y81{bottom:183.164980px;}
.y86{bottom:183.165000px;}
.y8a{bottom:190.650000px;}
.ye8{bottom:193.710000px;}
.y28{bottom:196.590000px;}
.y10c{bottom:200.370000px;}
.ycf{bottom:201.630000px;}
.y4a{bottom:206.310000px;}
.ye7{bottom:215.310000px;}
.y80{bottom:224.670000px;}
.y10b{bottom:228.090000px;}
.y27{bottom:232.950000px;}
.y49{bottom:234.030000px;}
.yce{bottom:236.010000px;}
.ye6{bottom:244.830000px;}
.y7a{bottom:247.740000px;}
.y7f{bottom:255.270000px;}
.y10a{bottom:255.990000px;}
.y48{bottom:261.930000px;}
.ycd{bottom:263.910000px;}
.y26{bottom:269.130000px;}
.ye5{bottom:272.550000px;}
.y109{bottom:283.710000px;}
.ycc{bottom:284.250000px;}
.y47{bottom:289.650000px;}
.y79{bottom:292.350000px;}
.ye4{bottom:300.450000px;}
.y25{bottom:305.310000px;}
.yca{bottom:308.730000px;}
.y108{bottom:311.430000px;}
.y72{bottom:315.465000px;}
.y46{bottom:317.370000px;}
.y71{bottom:324.390000px;}
.ye3{bottom:328.170000px;}
.y107{bottom:339.375000px;}
.y24{bottom:341.535000px;}
.y45{bottom:345.135000px;}
.ye2{bottom:355.935000px;}
.y70{bottom:357.735000px;}
.y106{bottom:367.095000px;}
.yc9{bottom:369.255000px;}
.y44{bottom:373.035000px;}
.y23{bottom:377.895000px;}
.y6b{bottom:380.939959px;}
.ye1{bottom:383.655000px;}
.y6f{bottom:389.955000px;}
.y105{bottom:394.815000px;}
.yc8{bottom:396.975000px;}
.y43{bottom:400.755000px;}
.ye0{bottom:411.555000px;}
.y22{bottom:414.075000px;}
.y104{bottom:422.535000px;}
.yc7{bottom:424.875000px;}
.y6a{bottom:427.935000px;}
.y42{bottom:428.475000px;}
.ydf{bottom:439.275000px;}
.y21{bottom:450.255000px;}
.y103{bottom:450.435000px;}
.y66{bottom:451.139959px;}
.yc6{bottom:452.595000px;}
.y41{bottom:456.375000px;}
.y65{bottom:460.155000px;}
.yde{bottom:466.995000px;}
.y102{bottom:478.155000px;}
.yc5{bottom:480.315000px;}
.y60{bottom:483.389959px;}
.y40{bottom:484.095000px;}
.y20{bottom:486.435000px;}
.y64{bottom:492.375000px;}
.ydd{bottom:494.715000px;}
.y101{bottom:505.875000px;}
.yc4{bottom:508.035000px;}
.y3f{bottom:511.815000px;}
.ydc{bottom:522.615000px;}
.y1f{bottom:522.795000px;}
.y5f{bottom:526.575000px;}
.y100{bottom:533.595000px;}
.yc3{bottom:535.935000px;}
.y3e{bottom:539.535000px;}
.y5b{bottom:549.839959px;}
.ydb{bottom:550.335000px;}
.y5e{bottom:558.795000px;}
.y1e{bottom:558.975000px;}
.yff{bottom:561.495000px;}
.yc2{bottom:563.655000px;}
.y3d{bottom:567.435000px;}
.yda{bottom:578.055000px;}
.yfe{bottom:589.215000px;}
.yc1{bottom:591.375000px;}
.y5a{bottom:591.555000px;}
.y1d{bottom:595.155000px;}
.yd9{bottom:605.985000px;}
.yfd{bottom:616.965000px;}
.yc0{bottom:619.305000px;}
.y59{bottom:619.485000px;}
.y51{bottom:619.665000px;}
.y3c{bottom:622.905000px;}
.y1c{bottom:631.365000px;}
.yd8{bottom:633.705000px;}
.yfc{bottom:644.865000px;}
.ybf{bottom:647.025000px;}
.y58{bottom:647.205000px;}
.y50{bottom:647.565000px;}
.y3b{bottom:650.805000px;}
.yd7{bottom:661.425000px;}
.y1b{bottom:667.545000px;}
.yfb{bottom:672.585000px;}
.ybe{bottom:674.745000px;}
.y57{bottom:674.925000px;}
.y4f{bottom:675.285000px;}
.y3a{bottom:678.525000px;}
.yd6{bottom:689.145000px;}
.yfa{bottom:696.705000px;}
.ybd{bottom:702.465000px;}
.y56{bottom:702.645000px;}
.y1a{bottom:703.905000px;}
.y39{bottom:706.245000px;}
.yd5{bottom:717.045000px;}
.yf9{bottom:724.425000px;}
.yb2{bottom:725.639919px;}
.y55{bottom:730.545000px;}
.y38{bottom:733.965000px;}
.y19{bottom:740.085000px;}
.ybc{bottom:746.745000px;}
.yf8{bottom:752.325000px;}
.y37{bottom:761.865000px;}
.y18{bottom:776.265000px;}
.yf7{bottom:780.045000px;}
.y36{bottom:789.585000px;}
.yb1{bottom:791.565000px;}
.yf6{bottom:807.765000px;}
.y17{bottom:812.445000px;}
.y35{bottom:817.305000px;}
.yb0{bottom:819.825000px;}
.yf5{bottom:835.485000px;}
.y34{bottom:845.025000px;}
.y16{bottom:848.805000px;}
.yaf{bottom:848.985000px;}
.yf4{bottom:863.385000px;}
.y33{bottom:872.970000px;}
.y15{bottom:876.570000px;}
.yae{bottom:876.750000px;}
.yf3{bottom:891.150000px;}
.y32{bottom:900.690000px;}
.y14{bottom:904.290000px;}
.yad{bottom:904.470000px;}
.yf2{bottom:918.870000px;}
.ya5{bottom:927.614919px;}
.y31{bottom:928.410000px;}
.y13{bottom:932.010000px;}
.yac{bottom:935.250000px;}
.yf1{bottom:946.770000px;}
.y30{bottom:956.310000px;}
.y12{bottom:959.910000px;}
.ya4{bottom:973.230000px;}
.yf0{bottom:974.490000px;}
.y2f{bottom:984.030000px;}
.y11{bottom:987.630000px;}
.y9f{bottom:996.539919px;}
.yef{bottom:1002.210000px;}
.ya3{bottom:1005.630000px;}
.y2e{bottom:1011.750000px;}
.y10{bottom:1015.350000px;}
.yee{bottom:1022.550000px;}
.y9e{bottom:1027.590000px;}
.y9a{bottom:1036.514919px;}
.y2d{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.yed{bottom:1043.970000px;}
.yec{bottom:1065.570000px;}
.y2c{bottom:1067.370000px;}
.ye{bottom:1070.970000px;}
.y99{bottom:1083.390000px;}
.yd{bottom:1095.090000px;}
.y90{bottom:1106.339919px;}
.y98{bottom:1113.990000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h44{height:20.700000px;}
.h43{height:21.780000px;}
.h41{height:23.760000px;}
.h15{height:25.199528px;}
.h42{height:25.560000px;}
.h7{height:27.576000px;}
.h28{height:29.175323px;}
.h2b{height:29.325444px;}
.h1b{height:30.224697px;}
.h24{height:33.075251px;}
.he{height:33.600155px;}
.h1e{height:33.974434px;}
.h11{height:35.100285px;}
.h2e{height:35.849384px;}
.h16{height:35.858662px;}
.h36{height:36.374261px;}
.h21{height:36.374654px;}
.h39{height:37.425095px;}
.h33{height:38.699487px;}
.h18{height:38.925165px;}
.h2{height:41.400000px;}
.h1c{height:43.009493px;}
.h29{height:44.124234px;}
.h2c{height:44.199290px;}
.h3f{height:48.005573px;}
.h1f{height:48.178524px;}
.h25{height:50.022384px;}
.hf{height:50.293791px;}
.h32{height:51.339748px;}
.h30{height:51.365302px;}
.h37{height:51.760157px;}
.h12{height:52.539237px;}
.h3b{height:53.622999px;}
.h4{height:53.709961px;}
.h23{height:54.823853px;}
.h34{height:55.068934px;}
.h19{height:55.199006px;}
.h31{height:56.912888px;}
.h3e{height:57.600405px;}
.hd{height:59.066719px;}
.h40{height:59.564117px;}
.h17{height:61.915933px;}
.h3c{height:65.773112px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:72.846211px;}
.h1d{height:74.263031px;}
.h2a{height:75.515766px;}
.h3d{height:82.635820px;}
.ha{height:82.676953px;}
.h20{height:83.310899px;}
.h2f{height:84.257164px;}
.hb{height:84.898125px;}
.h26{height:85.610067px;}
.h45{height:86.585445px;}
.h10{height:86.796032px;}
.h38{height:89.372504px;}
.h13{height:90.671179px;}
.h3a{height:91.817967px;}
.h14{height:92.423235px;}
.h2d{height:94.993191px;}
.h35{height:95.085657px;}
.h1a{height:95.450805px;}
.h9{height:96.508125px;}
.h22{height:97.930526px;}
.h27{height:131.066719px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:27.375091px;}
.wb{width:33.674748px;}
.wf{width:42.074051px;}
.we{width:47.699600px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w26{width:72.720000px;}
.w27{width:72.756000px;}
.w25{width:72.900000px;}
.w23{width:72.936000px;}
.w24{width:75.060000px;}
.w22{width:77.220000px;}
.w28{width:90.180000px;}
.w1a{width:91.296000px;}
.w2a{width:95.400000px;}
.w1d{width:96.300000px;}
.w17{width:97.596000px;}
.w10{width:99.152270px;}
.w7{width:105.301287px;}
.w15{width:105.822443px;}
.w1f{width:107.460000px;}
.w1e{width:108.216000px;}
.w29{width:108.396000px;}
.w21{width:108.576000px;}
.w19{width:111.420000px;}
.w18{width:111.996000px;}
.w8{width:116.102863px;}
.w20{width:117.900000px;}
.w1b{width:124.020000px;}
.wc{width:137.548607px;}
.w13{width:147.225671px;}
.wa{width:147.226673px;}
.wd{width:155.703316px;}
.w12{width:156.978075px;}
.w16{width:181.290000px;}
.w1c{width:196.455000px;}
.w11{width:249.683479px;}
.w14{width:265.122494px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:2.824439px;}
.x15{left:4.110892px;}
.x47{left:7.079864px;}
.x2{left:8.640000px;}
.x21{left:10.957457px;}
.x24{left:12.329191px;}
.x7{left:13.860000px;}
.x1e{left:15.423602px;}
.x18{left:17.080430px;}
.x39{left:18.695886px;}
.x1d{left:20.356076px;}
.x2e{left:25.453097px;}
.x2b{left:27.466621px;}
.x28{left:29.256129px;}
.x44{left:30.610382px;}
.x1{left:31.860000px;}
.x27{left:35.195637px;}
.x2a{left:40.086796px;}
.x46{left:45.727874px;}
.x36{left:51.292855px;}
.x14{left:54.752040px;}
.x4{left:59.970000px;}
.x17{left:63.871539px;}
.x45{left:66.092320px;}
.x26{left:79.280209px;}
.x31{left:81.949390px;}
.x5{left:84.959987px;}
.x42{left:88.747031px;}
.x43{left:90.995966px;}
.x30{left:92.856503px;}
.x8{left:106.775987px;}
.x3e{left:113.201053px;}
.x35{left:120.121561px;}
.xf{left:127.475987px;}
.x2c{left:132.695987px;}
.x3d{left:135.235933px;}
.x9{left:137.735987px;}
.x40{left:140.435987px;}
.x32{left:184.169987px;}
.xd{left:188.669987px;}
.x3c{left:195.811342px;}
.x34{left:197.245424px;}
.x41{left:200.909987px;}
.x3b{left:216.809976px;}
.x16{left:232.769987px;}
.x33{left:236.140747px;}
.x11{left:241.589987px;}
.x19{left:243.569987px;}
.x3a{left:249.246425px;}
.x12{left:258.689987px;}
.x13{left:260.669987px;}
.x48{left:267.870000px;}
.x51{left:273.090000px;}
.x1f{left:274.709987px;}
.x29{left:283.214987px;}
.x38{left:284.474987px;}
.xa{left:291.674987px;}
.xc{left:307.334987px;}
.x58{left:342.075000px;}
.x52{left:346.935000px;}
.x49{left:366.375000px;}
.x20{left:372.839959px;}
.xe{left:375.914987px;}
.x37{left:377.174987px;}
.x4d{left:380.235000px;}
.x10{left:389.234987px;}
.x3f{left:392.654987px;}
.x22{left:406.514987px;}
.x59{left:417.855000px;}
.x53{left:422.715000px;}
.x23{left:435.690000px;}
.xb{left:446.474987px;}
.x4a{left:479.085000px;}
.x4e{left:489.165000px;}
.x5a{left:491.325000px;}
.x54{left:496.365000px;}
.x5b{left:564.945000px;}
.x55{left:569.985000px;}
.x25{left:573.224987px;}
.x4b{left:591.225000px;}
.x4f{left:597.345000px;}
.x5c{left:638.385000px;}
.x56{left:643.605000px;}
.x4c{left:683.250000px;}
.x50{left:689.370000px;}
.x2d{left:694.739919px;}
.x5d{left:711.870000px;}
.x57{left:717.090000px;}
.x2f{left:736.889987px;}
.x1a{left:775.139919px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
.x1c{left:802.589987px;}
@media print{
.v9{vertical-align:-37.349321pt;}
.v7{vertical-align:-34.340693pt;}
.v5{vertical-align:-8.320000pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.320000pt;}
.v4{vertical-align:17.101790pt;}
.v1{vertical-align:21.295327pt;}
.v2{vertical-align:38.317043pt;}
.v8{vertical-align:39.294596pt;}
.v3{vertical-align:64.000000pt;}
.ls1c{letter-spacing:-3.050076pt;}
.ls1f{letter-spacing:-1.829332pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls2e{letter-spacing:-0.613333pt;}
.ls34{letter-spacing:-0.608000pt;}
.ls36{letter-spacing:-0.395733pt;}
.ls11{letter-spacing:-0.380800pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.250667pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls24{letter-spacing:-0.140800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.007680pt;}
.ls20{letter-spacing:0.016000pt;}
.ls28{letter-spacing:0.024960pt;}
.ls22{letter-spacing:0.026510pt;}
.ls3{letter-spacing:0.033280pt;}
.ls2f{letter-spacing:0.094720pt;}
.ls27{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.184960pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.253333pt;}
.ls25{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.328320pt;}
.ls29{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls31{letter-spacing:1.583360pt;}
.ls30{letter-spacing:3.040000pt;}
.ls32{letter-spacing:3.680000pt;}
.ls33{letter-spacing:4.320000pt;}
.ls8{letter-spacing:7.520000pt;}
.ls7{letter-spacing:8.160000pt;}
.ls1{letter-spacing:17.760000pt;}
.ls2b{letter-spacing:18.400000pt;}
.lse{letter-spacing:24.800000pt;}
.ls9{letter-spacing:25.440000pt;}
.lsd{letter-spacing:28.148646pt;}
.ls5{letter-spacing:31.200000pt;}
.ls4{letter-spacing:31.840000pt;}
.ls6{letter-spacing:32.000000pt;}
.ls2a{letter-spacing:35.040000pt;}
.lsb{letter-spacing:48.480000pt;}
.lsa{letter-spacing:59.520000pt;}
.ls13{letter-spacing:91.566874pt;}
.ls15{letter-spacing:106.343876pt;}
.ls18{letter-spacing:108.365636pt;}
.ls12{letter-spacing:113.269201pt;}
.ls14{letter-spacing:129.015137pt;}
.lsf{letter-spacing:157.026068pt;}
.ls19{letter-spacing:164.193865pt;}
.ls1e{letter-spacing:181.874032pt;}
.ls1d{letter-spacing:193.500361pt;}
.ls17{letter-spacing:341.405400pt;}
.ls1a{letter-spacing:561.576619pt;}
.wsa{word-spacing:-341.455393pt;}
.ws5{word-spacing:-113.314752pt;}
.ws34{word-spacing:-74.880000pt;}
.ws1a{word-spacing:-50.544000pt;}
.ws27{word-spacing:-45.654269pt;}
.ws28{word-spacing:-43.824937pt;}
.ws1b{word-spacing:-41.894842pt;}
.ws1c{word-spacing:-38.844766pt;}
.ws21{word-spacing:-32.052023pt;}
.ws24{word-spacing:-31.259982pt;}
.wsf{word-spacing:-28.460378pt;}
.ws0{word-spacing:-21.600000pt;}
.ws32{word-spacing:-19.040000pt;}
.ws2d{word-spacing:-19.031467pt;}
.ws2a{word-spacing:-18.973333pt;}
.ws2{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2b{word-spacing:-18.579200pt;}
.ws2e{word-spacing:-18.469333pt;}
.ws33{word-spacing:-18.400000pt;}
.ws4{word-spacing:-18.339200pt;}
.ws30{word-spacing:-18.106667pt;}
.ws35{word-spacing:-17.760000pt;}
.ws2c{word-spacing:-16.000000pt;}
.ws2f{word-spacing:-12.320000pt;}
.ws29{word-spacing:-12.000000pt;}
.ws31{word-spacing:-10.720000pt;}
.ws14{word-spacing:-0.077575pt;}
.ws16{word-spacing:-0.068428pt;}
.ws12{word-spacing:-0.049654pt;}
.ws25{word-spacing:-0.048566pt;}
.ws1e{word-spacing:-0.046521pt;}
.ws13{word-spacing:-0.045305pt;}
.ws17{word-spacing:-0.040031pt;}
.ws15{word-spacing:-0.039963pt;}
.wsc{word-spacing:-0.038953pt;}
.ws8{word-spacing:-0.032477pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:78.638041pt;}
.ws11{word-spacing:82.776044pt;}
.ws6{word-spacing:82.896840pt;}
.ws7{word-spacing:97.361018pt;}
.wsb{word-spacing:97.476742pt;}
.ws18{word-spacing:134.757986pt;}
.wsd{word-spacing:136.839322pt;}
.wse{word-spacing:139.735172pt;}
.ws22{word-spacing:144.480617pt;}
.ws1f{word-spacing:153.716566pt;}
.ws23{word-spacing:155.652034pt;}
.ws20{word-spacing:165.602118pt;}
.ws9{word-spacing:307.109428pt;}
.ws10{word-spacing:407.910696pt;}
.ws1d{word-spacing:532.708210pt;}
.ws26{word-spacing:620.159559pt;}
._24{margin-left:-512.073051pt;}
._20{margin-left:-413.788423pt;}
._3e{margin-left:-379.401343pt;}
._41{margin-left:-355.309536pt;}
._28{margin-left:-335.557146pt;}
._2a{margin-left:-317.008975pt;}
._48{margin-left:-303.618973pt;}
._2b{margin-left:-298.758128pt;}
._3a{margin-left:-283.422646pt;}
._44{margin-left:-274.731899pt;}
._26{margin-left:-273.570858pt;}
._2d{margin-left:-267.027166pt;}
._35{margin-left:-260.664633pt;}
._36{margin-left:-258.707150pt;}
._22{margin-left:-242.863453pt;}
._3c{margin-left:-235.518646pt;}
._46{margin-left:-228.773158pt;}
._38{margin-left:-216.032438pt;}
._45{margin-left:-164.912689pt;}
._37{margin-left:-149.334721pt;}
._47{margin-left:-121.659962pt;}
._2c{margin-left:-116.608549pt;}
._39{margin-left:-112.553256pt;}
._31{margin-left:-94.875602pt;}
._34{margin-left:-83.688800pt;}
._3b{margin-left:-65.162354pt;}
._2e{margin-left:-44.008291pt;}
._43{margin-left:-42.993517pt;}
._2f{margin-left:-40.254831pt;}
._30{margin-left:-36.809119pt;}
._33{margin-left:-32.468948pt;}
._1b{margin-left:-5.789867pt;}
._b{margin-left:-4.611413pt;}
._a{margin-left:-3.519360pt;}
._9{margin-left:-2.222507pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._3{width:2.697173pt;}
._2{width:3.594240pt;}
._1a{width:5.148373pt;}
._49{width:6.307200pt;}
._c{width:7.400747pt;}
._d{width:8.317653pt;}
._4d{width:10.447147pt;}
._4b{width:11.513173pt;}
._14{width:12.430080pt;}
._4{width:13.777920pt;}
._1d{width:15.200640pt;}
._7{width:16.248960pt;}
._8{width:17.408427pt;}
._4f{width:19.738027pt;}
._1f{width:21.041280pt;}
._4c{width:23.512320pt;}
._32{width:24.860160pt;}
._13{width:26.339413pt;}
._12{width:27.312853pt;}
._19{width:29.129387pt;}
._18{width:30.083413pt;}
._1c{width:31.805653pt;}
._15{width:32.928853pt;}
._6{width:34.800853pt;}
._4e{width:36.504107pt;}
._51{width:45.131093pt;}
._50{width:46.376960pt;}
._1e{width:49.327573pt;}
._5{width:51.274453pt;}
._e{width:58.968747pt;}
._f{width:63.854293pt;}
._52{width:70.790827pt;}
._10{width:84.521173pt;}
._11{width:85.662720pt;}
._17{width:86.630613pt;}
._16{width:87.815893pt;}
._4a{width:88.732800pt;}
._21{width:97.997593pt;}
._23{width:126.199598pt;}
._29{width:147.208852pt;}
._42{width:155.085143pt;}
._3f{width:164.998988pt;}
._25{width:168.486862pt;}
._27{width:181.633076pt;}
._40{width:191.447143pt;}
._3d{width:205.064017pt;}
.fs9{font-size:32.476966pt;}
.fsd{font-size:38.953430pt;}
.fs15{font-size:39.963043pt;}
.fs17{font-size:40.031021pt;}
.fs24{font-size:42.880000pt;}
.fs22{font-size:43.478347pt;}
.fsf{font-size:43.634988pt;}
.fs13{font-size:45.304960pt;}
.fs5{font-size:45.550772pt;}
.fs1a{font-size:46.521234pt;}
.fs1d{font-size:46.878850pt;}
.fs7{font-size:47.584459pt;}
.fs1{font-size:48.000000pt;}
.fs20{font-size:48.566015pt;}
.fs12{font-size:49.653621pt;}
.fs1b{font-size:49.875589pt;}
.fsb{font-size:49.993395pt;}
.fsa{font-size:56.104787pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:67.293042pt;}
.fs16{font-size:68.428202pt;}
.fs18{font-size:68.643784pt;}
.fs23{font-size:71.478686pt;}
.fs4{font-size:74.880000pt;}
.fs10{font-size:75.491719pt;}
.fs19{font-size:76.311187pt;}
.fs14{font-size:77.575097pt;}
.fs6{font-size:78.649754pt;}
.fs21{font-size:78.929661pt;}
.fs1e{font-size:80.984409pt;}
.fs8{font-size:82.161197pt;}
.fs1f{font-size:83.158959pt;}
.fs3{font-size:85.120000pt;}
.fs11{font-size:85.144280pt;}
.fs1c{font-size:86.161352pt;}
.fsc{font-size:86.492229pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:3.087248pt;}
.yb3{bottom:3.103018pt;}
.yb5{bottom:3.103059pt;}
.y8d{bottom:3.137689pt;}
.y83{bottom:3.499933pt;}
.y3{bottom:3.520000pt;}
.y68{bottom:3.536788pt;}
.ya8{bottom:3.751869pt;}
.yaa{bottom:3.751891pt;}
.y93{bottom:3.793674pt;}
.y95{bottom:3.793697pt;}
.y7c{bottom:3.891922pt;}
.y74{bottom:4.242055pt;}
.yd3{bottom:4.480000pt;}
.ya{bottom:4.640000pt;}
.y77{bottom:4.806260pt;}
.y5c{bottom:5.056725pt;}
.ya1{bottom:5.105205pt;}
.y61{bottom:5.282488pt;}
.y63{bottom:5.282503pt;}
.y9c{bottom:5.431552pt;}
.y6d{bottom:5.506652pt;}
.yd1{bottom:5.600000pt;}
.ycb{bottom:6.240000pt;}
.y9{bottom:6.560000pt;}
.y69{bottom:7.185854pt;}
.y89{bottom:7.375187pt;}
.yb7{bottom:7.572965pt;}
.yba{bottom:7.573005pt;}
.yd0{bottom:7.840000pt;}
.y7d{bottom:8.211400pt;}
.y84{bottom:8.361051pt;}
.y91{bottom:8.585507pt;}
.y75{bottom:8.618797pt;}
.ya6{bottom:8.962872pt;}
.y7b{bottom:9.195095pt;}
.y78{bottom:9.688062pt;}
.y5d{bottom:10.153041pt;}
.ya2{bottom:10.372438pt;}
.y62{bottom:10.606339pt;}
.y9d{bottom:11.035493pt;}
.y6e{bottom:11.099823pt;}
.y67{bottom:13.474012pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y87{bottom:15.024551pt;}
.y8c{bottom:15.135988pt;}
.y73{bottom:16.160938pt;}
.y82{bottom:17.032908pt;}
.y97{bottom:17.170731pt;}
.y96{bottom:17.170733pt;}
.y76{bottom:18.165897pt;}
.yab{bottom:18.300253pt;}
.y92{bottom:18.409167pt;}
.y94{bottom:18.409189pt;}
.y7e{bottom:18.774356pt;}
.ya0{bottom:19.449088pt;}
.ya7{bottom:19.801157pt;}
.ya9{bottom:19.801180pt;}
.y9b{bottom:20.692370pt;}
.y6c{bottom:20.813029pt;}
.yb9{bottom:21.610018pt;}
.y2{bottom:21.920000pt;}
.yb4{bottom:28.999185pt;}
.yb6{bottom:28.999227pt;}
.yb8{bottom:33.469288pt;}
.ybb{bottom:33.469328pt;}
.y8{bottom:39.680000pt;}
.y4e{bottom:84.672000pt;}
.yeb{bottom:85.632000pt;}
.y2b{bottom:85.792000pt;}
.y54{bottom:88.032000pt;}
.y10e{bottom:104.032000pt;}
.y4d{bottom:109.312000pt;}
.y2a{bottom:110.432000pt;}
.y53{bottom:112.672000pt;}
.y8f{bottom:112.832000pt;}
.y10d{bottom:128.832000pt;}
.y8b{bottom:133.546667pt;}
.y4c{bottom:134.106667pt;}
.yea{bottom:135.066667pt;}
.y52{bottom:137.306667pt;}
.y8e{bottom:140.186667pt;}
.yd4{bottom:141.146667pt;}
.y29{bottom:142.586667pt;}
.ye9{bottom:153.146667pt;}
.y85{bottom:153.466667pt;}
.y4b{bottom:158.746667pt;}
.yd2{bottom:159.226667pt;}
.y81{bottom:162.813315pt;}
.y86{bottom:162.813333pt;}
.y8a{bottom:169.466667pt;}
.ye8{bottom:172.186667pt;}
.y28{bottom:174.746667pt;}
.y10c{bottom:178.106667pt;}
.ycf{bottom:179.226667pt;}
.y4a{bottom:183.386667pt;}
.ye7{bottom:191.386667pt;}
.y80{bottom:199.706667pt;}
.y10b{bottom:202.746667pt;}
.y27{bottom:207.066667pt;}
.y49{bottom:208.026667pt;}
.yce{bottom:209.786667pt;}
.ye6{bottom:217.626667pt;}
.y7a{bottom:220.213333pt;}
.y7f{bottom:226.906667pt;}
.y10a{bottom:227.546667pt;}
.y48{bottom:232.826667pt;}
.ycd{bottom:234.586667pt;}
.y26{bottom:239.226667pt;}
.ye5{bottom:242.266667pt;}
.y109{bottom:252.186667pt;}
.ycc{bottom:252.666667pt;}
.y47{bottom:257.466667pt;}
.y79{bottom:259.866667pt;}
.ye4{bottom:267.066667pt;}
.y25{bottom:271.386667pt;}
.yca{bottom:274.426667pt;}
.y108{bottom:276.826667pt;}
.y72{bottom:280.413333pt;}
.y46{bottom:282.106667pt;}
.y71{bottom:288.346667pt;}
.ye3{bottom:291.706667pt;}
.y107{bottom:301.666667pt;}
.y24{bottom:303.586667pt;}
.y45{bottom:306.786667pt;}
.ye2{bottom:316.386667pt;}
.y70{bottom:317.986667pt;}
.y106{bottom:326.306667pt;}
.yc9{bottom:328.226667pt;}
.y44{bottom:331.586667pt;}
.y23{bottom:335.906667pt;}
.y6b{bottom:338.613297pt;}
.ye1{bottom:341.026667pt;}
.y6f{bottom:346.626667pt;}
.y105{bottom:350.946667pt;}
.yc8{bottom:352.866667pt;}
.y43{bottom:356.226667pt;}
.ye0{bottom:365.826667pt;}
.y22{bottom:368.066667pt;}
.y104{bottom:375.586667pt;}
.yc7{bottom:377.666667pt;}
.y6a{bottom:380.386667pt;}
.y42{bottom:380.866667pt;}
.ydf{bottom:390.466667pt;}
.y21{bottom:400.226667pt;}
.y103{bottom:400.386667pt;}
.y66{bottom:401.013297pt;}
.yc6{bottom:402.306667pt;}
.y41{bottom:405.666667pt;}
.y65{bottom:409.026667pt;}
.yde{bottom:415.106667pt;}
.y102{bottom:425.026667pt;}
.yc5{bottom:426.946667pt;}
.y60{bottom:429.679964pt;}
.y40{bottom:430.306667pt;}
.y20{bottom:432.386667pt;}
.y64{bottom:437.666667pt;}
.ydd{bottom:439.746667pt;}
.y101{bottom:449.666667pt;}
.yc4{bottom:451.586667pt;}
.y3f{bottom:454.946667pt;}
.ydc{bottom:464.546667pt;}
.y1f{bottom:464.706667pt;}
.y5f{bottom:468.066667pt;}
.y100{bottom:474.306667pt;}
.yc3{bottom:476.386667pt;}
.y3e{bottom:479.586667pt;}
.y5b{bottom:488.746630pt;}
.ydb{bottom:489.186667pt;}
.y5e{bottom:496.706667pt;}
.y1e{bottom:496.866667pt;}
.yff{bottom:499.106667pt;}
.yc2{bottom:501.026667pt;}
.y3d{bottom:504.386667pt;}
.yda{bottom:513.826667pt;}
.yfe{bottom:523.746667pt;}
.yc1{bottom:525.666667pt;}
.y5a{bottom:525.826667pt;}
.y1d{bottom:529.026667pt;}
.yd9{bottom:538.653333pt;}
.yfd{bottom:548.413333pt;}
.yc0{bottom:550.493333pt;}
.y59{bottom:550.653333pt;}
.y51{bottom:550.813333pt;}
.y3c{bottom:553.693333pt;}
.y1c{bottom:561.213333pt;}
.yd8{bottom:563.293333pt;}
.yfc{bottom:573.213333pt;}
.ybf{bottom:575.133333pt;}
.y58{bottom:575.293333pt;}
.y50{bottom:575.613333pt;}
.y3b{bottom:578.493333pt;}
.yd7{bottom:587.933333pt;}
.y1b{bottom:593.373333pt;}
.yfb{bottom:597.853333pt;}
.ybe{bottom:599.773333pt;}
.y57{bottom:599.933333pt;}
.y4f{bottom:600.253333pt;}
.y3a{bottom:603.133333pt;}
.yd6{bottom:612.573333pt;}
.yfa{bottom:619.293333pt;}
.ybd{bottom:624.413333pt;}
.y56{bottom:624.573333pt;}
.y1a{bottom:625.693333pt;}
.y39{bottom:627.773333pt;}
.yd5{bottom:637.373333pt;}
.yf9{bottom:643.933333pt;}
.yb2{bottom:645.013261pt;}
.y55{bottom:649.373333pt;}
.y38{bottom:652.413333pt;}
.y19{bottom:657.853333pt;}
.ybc{bottom:663.773333pt;}
.yf8{bottom:668.733333pt;}
.y37{bottom:677.213333pt;}
.y18{bottom:690.013333pt;}
.yf7{bottom:693.373333pt;}
.y36{bottom:701.853333pt;}
.yb1{bottom:703.613333pt;}
.yf6{bottom:718.013333pt;}
.y17{bottom:722.173333pt;}
.y35{bottom:726.493333pt;}
.yb0{bottom:728.733333pt;}
.yf5{bottom:742.653333pt;}
.y34{bottom:751.133333pt;}
.y16{bottom:754.493333pt;}
.yaf{bottom:754.653333pt;}
.yf4{bottom:767.453333pt;}
.y33{bottom:775.973333pt;}
.y15{bottom:779.173333pt;}
.yae{bottom:779.333333pt;}
.yf3{bottom:792.133333pt;}
.y32{bottom:800.613333pt;}
.y14{bottom:803.813333pt;}
.yad{bottom:803.973333pt;}
.yf2{bottom:816.773333pt;}
.ya5{bottom:824.546594pt;}
.y31{bottom:825.253333pt;}
.y13{bottom:828.453333pt;}
.yac{bottom:831.333333pt;}
.yf1{bottom:841.573333pt;}
.y30{bottom:850.053333pt;}
.y12{bottom:853.253333pt;}
.ya4{bottom:865.093333pt;}
.yf0{bottom:866.213333pt;}
.y2f{bottom:874.693333pt;}
.y11{bottom:877.893333pt;}
.y9f{bottom:885.813261pt;}
.yef{bottom:890.853333pt;}
.ya3{bottom:893.893333pt;}
.y2e{bottom:899.333333pt;}
.y10{bottom:902.533333pt;}
.yee{bottom:908.933333pt;}
.y9e{bottom:913.413333pt;}
.y9a{bottom:921.346594pt;}
.y2d{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.yed{bottom:927.973333pt;}
.yec{bottom:947.173333pt;}
.y2c{bottom:948.773333pt;}
.ye{bottom:951.973333pt;}
.y99{bottom:963.013333pt;}
.yd{bottom:973.413333pt;}
.y90{bottom:983.413261pt;}
.y98{bottom:990.213333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h44{height:18.400000pt;}
.h43{height:19.360000pt;}
.h41{height:21.120000pt;}
.h15{height:22.399581pt;}
.h42{height:22.720000pt;}
.h7{height:24.512000pt;}
.h28{height:25.933621pt;}
.h2b{height:26.067062pt;}
.h1b{height:26.866397pt;}
.h24{height:29.400223pt;}
.he{height:29.866804pt;}
.h1e{height:30.199497pt;}
.h11{height:31.200254pt;}
.h2e{height:31.866119pt;}
.h16{height:31.874366pt;}
.h36{height:32.332677pt;}
.h21{height:32.333025pt;}
.h39{height:33.266751pt;}
.h33{height:34.399544pt;}
.h18{height:34.600147pt;}
.h2{height:36.800000pt;}
.h1c{height:38.230661pt;}
.h29{height:39.221541pt;}
.h2c{height:39.288258pt;}
.h3f{height:42.671620pt;}
.h1f{height:42.825354pt;}
.h25{height:44.464341pt;}
.hf{height:44.705592pt;}
.h32{height:45.635331pt;}
.h30{height:45.658047pt;}
.h37{height:46.009028pt;}
.h12{height:46.701544pt;}
.h3b{height:47.664888pt;}
.h4{height:47.742188pt;}
.h23{height:48.732314pt;}
.h34{height:48.950163pt;}
.h19{height:49.065784pt;}
.h31{height:50.589234pt;}
.h3e{height:51.200360pt;}
.hd{height:52.503750pt;}
.h40{height:52.945882pt;}
.h17{height:55.036385pt;}
.h3c{height:58.464988pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:64.752187pt;}
.h1d{height:66.011583pt;}
.h2a{height:67.125126pt;}
.h3d{height:73.454062pt;}
.ha{height:73.490625pt;}
.h20{height:74.054133pt;}
.h2f{height:74.895257pt;}
.hb{height:75.465000pt;}
.h26{height:76.097837pt;}
.h45{height:76.964840pt;}
.h10{height:77.152029pt;}
.h38{height:79.442225pt;}
.h13{height:80.596604pt;}
.h3a{height:81.615971pt;}
.h14{height:82.153987pt;}
.h2d{height:84.438392pt;}
.h35{height:84.520584pt;}
.h1a{height:84.845160pt;}
.h9{height:85.785000pt;}
.h22{height:87.049356pt;}
.h27{height:116.503750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:24.333415pt;}
.wb{width:29.933109pt;}
.wf{width:37.399156pt;}
.we{width:42.399644pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w26{width:64.640000pt;}
.w27{width:64.672000pt;}
.w25{width:64.800000pt;}
.w23{width:64.832000pt;}
.w24{width:66.720000pt;}
.w22{width:68.640000pt;}
.w28{width:80.160000pt;}
.w1a{width:81.152000pt;}
.w2a{width:84.800000pt;}
.w1d{width:85.600000pt;}
.w17{width:86.752000pt;}
.w10{width:88.135351pt;}
.w7{width:93.601144pt;}
.w15{width:94.064393pt;}
.w1f{width:95.520000pt;}
.w1e{width:96.192000pt;}
.w29{width:96.352000pt;}
.w21{width:96.512000pt;}
.w19{width:99.040000pt;}
.w18{width:99.552000pt;}
.w8{width:103.202545pt;}
.w20{width:104.800000pt;}
.w1b{width:110.240000pt;}
.wc{width:122.265428pt;}
.w13{width:130.867263pt;}
.wa{width:130.868154pt;}
.wd{width:138.402948pt;}
.w12{width:139.536066pt;}
.w16{width:161.146667pt;}
.w1c{width:174.626667pt;}
.w11{width:221.940870pt;}
.w14{width:235.664439pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:2.510612pt;}
.x15{left:3.654126pt;}
.x47{left:6.293212pt;}
.x2{left:7.680000pt;}
.x21{left:9.739961pt;}
.x24{left:10.959281pt;}
.x7{left:12.320000pt;}
.x1e{left:13.709868pt;}
.x18{left:15.182604pt;}
.x39{left:16.618566pt;}
.x1d{left:18.094290pt;}
.x2e{left:22.624975pt;}
.x2b{left:24.414774pt;}
.x28{left:26.005448pt;}
.x44{left:27.209229pt;}
.x1{left:28.320000pt;}
.x27{left:31.285010pt;}
.x2a{left:35.632707pt;}
.x46{left:40.646999pt;}
.x36{left:45.593649pt;}
.x14{left:48.668480pt;}
.x4{left:53.306667pt;}
.x17{left:56.774701pt;}
.x45{left:58.748728pt;}
.x26{left:70.471297pt;}
.x31{left:72.843903pt;}
.x5{left:75.519988pt;}
.x42{left:78.886250pt;}
.x43{left:80.885303pt;}
.x30{left:82.539114pt;}
.x8{left:94.911988pt;}
.x3e{left:100.623158pt;}
.x35{left:106.774721pt;}
.xf{left:113.311988pt;}
.x2c{left:117.951988pt;}
.x3d{left:120.209718pt;}
.x9{left:122.431988pt;}
.x40{left:124.831988pt;}
.x32{left:163.706655pt;}
.xd{left:167.706655pt;}
.x3c{left:174.054526pt;}
.x34{left:175.329266pt;}
.x41{left:178.586655pt;}
.x3b{left:192.719979pt;}
.x16{left:206.906655pt;}
.x33{left:209.902886pt;}
.x11{left:214.746655pt;}
.x19{left:216.506655pt;}
.x3a{left:221.552378pt;}
.x12{left:229.946655pt;}
.x13{left:231.706655pt;}
.x48{left:238.106667pt;}
.x51{left:242.746667pt;}
.x1f{left:244.186655pt;}
.x29{left:251.746655pt;}
.x38{left:252.866655pt;}
.xa{left:259.266655pt;}
.xc{left:273.186655pt;}
.x58{left:304.066667pt;}
.x52{left:308.386667pt;}
.x49{left:325.666667pt;}
.x20{left:331.413297pt;}
.xe{left:334.146655pt;}
.x37{left:335.266655pt;}
.x4d{left:337.986667pt;}
.x10{left:345.986655pt;}
.x3f{left:349.026655pt;}
.x22{left:361.346655pt;}
.x59{left:371.426667pt;}
.x53{left:375.746667pt;}
.x23{left:387.280000pt;}
.xb{left:396.866655pt;}
.x4a{left:425.853333pt;}
.x4e{left:434.813333pt;}
.x5a{left:436.733333pt;}
.x54{left:441.213333pt;}
.x5b{left:502.173333pt;}
.x55{left:506.653333pt;}
.x25{left:509.533322pt;}
.x4b{left:525.533333pt;}
.x4f{left:530.973333pt;}
.x5c{left:567.453333pt;}
.x56{left:572.093333pt;}
.x4c{left:607.333333pt;}
.x50{left:612.773333pt;}
.x2d{left:617.546594pt;}
.x5d{left:632.773333pt;}
.x57{left:637.413333pt;}
.x2f{left:655.013322pt;}
.x1a{left:689.013261pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
.x1c{left:713.413322pt;}
}




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