
    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_6f806be31af0f1ab3b5243b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_8a6f064007b41ed6cbaaae55.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_eaf4de291dedddce3c97f26c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_601ecb7b32b135d58e0c04db.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_c8c2929d98c2823acd37bfd7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_21ab79c0fae2e2fb50b4c4c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_e481d93c62590077f491f2c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.909180;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_e9e323e51ec02b73dc2a8c42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_d4827b11490e3e20b8925d36.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_b2ce9eb5d659190ad6a6f100.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_5eecc206d2cd9905b44468d3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.909180;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_e4bb2e3856208f55fd769c3b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_86d247a63a5629301250879f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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;}
.ma{transform:matrix(0.000000,-0.250026,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250026,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250026,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249994,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250031,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250031,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250031,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.md{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250811,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251920,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.147821px;}
.v6{vertical-align:-17.240196px;}
.v3{vertical-align:-9.367862px;}
.v5{vertical-align:-7.521068px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.367862px;}
.v7{vertical-align:30.265402px;}
.v1{vertical-align:33.327972px;}
.ls15{letter-spacing:-2.161814px;}
.ls7{letter-spacing:-1.441210px;}
.ls5{letter-spacing:-0.720605px;}
.ls2e{letter-spacing:-0.432363px;}
.ls1e{letter-spacing:-0.305657px;}
.ls4{letter-spacing:-0.288242px;}
.ls3{letter-spacing:-0.216181px;}
.ls2a{letter-spacing:-0.144121px;}
.ls6{letter-spacing:-0.072060px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000120px;}
.ls18{letter-spacing:0.000230px;}
.ls11{letter-spacing:0.006046px;}
.ls1d{letter-spacing:0.007258px;}
.ls1c{letter-spacing:0.012265px;}
.ls1a{letter-spacing:0.012296px;}
.ls19{letter-spacing:0.024325px;}
.ls10{letter-spacing:0.072060px;}
.ls27{letter-spacing:0.120101px;}
.ls1{letter-spacing:0.144121px;}
.ls16{letter-spacing:0.181352px;}
.lsf{letter-spacing:0.181592px;}
.lsd{letter-spacing:0.216181px;}
.lsb{letter-spacing:0.269506px;}
.ls14{letter-spacing:0.269626px;}
.ls2d{letter-spacing:0.288242px;}
.ls0{letter-spacing:0.360302px;}
.ls8{letter-spacing:0.504423px;}
.ls2b{letter-spacing:0.720605px;}
.ls2c{letter-spacing:0.792665px;}
.ls21{letter-spacing:1.097669px;}
.ls1f{letter-spacing:1.098176px;}
.ls22{letter-spacing:1.105453px;}
.ls20{letter-spacing:1.105728px;}
.ls17{letter-spacing:2.570882px;}
.ls28{letter-spacing:4.323629px;}
.ls23{letter-spacing:13.090987px;}
.ls25{letter-spacing:19.456330px;}
.ls24{letter-spacing:21.618144px;}
.lse{letter-spacing:23.059354px;}
.ls26{letter-spacing:26.782478px;}
.lsc{letter-spacing:30.265402px;}
.ls29{letter-spacing:37.471450px;}
.ls12{letter-spacing:160.964377px;}
.ls9{letter-spacing:179.024666px;}
.lsa{letter-spacing:179.048568px;}
.ls13{letter-spacing:200.508286px;}
.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;}
}
.ws14{word-spacing:-72.060480px;}
.ws22{word-spacing:-47.909151px;}
.ws21{word-spacing:-33.592906px;}
.ws33{word-spacing:-18.807785px;}
.ws34{word-spacing:-18.303362px;}
.ws6{word-spacing:-18.159241px;}
.ws32{word-spacing:-18.087180px;}
.ws2{word-spacing:-18.015120px;}
.ws5{word-spacing:-17.943060px;}
.ws31{word-spacing:-17.870999px;}
.ws7{word-spacing:-17.798939px;}
.ws4{word-spacing:-17.726878px;}
.ws35{word-spacing:-17.582757px;}
.ws28{word-spacing:-16.573910px;}
.ws27{word-spacing:-16.268254px;}
.ws1b{word-spacing:-15.126777px;}
.ws18{word-spacing:-13.445890px;}
.ws1e{word-spacing:-13.346405px;}
.ws24{word-spacing:-13.313130px;}
.ws0{word-spacing:-12.430433px;}
.ws13{word-spacing:-12.339757px;}
.ws1d{word-spacing:-12.251483px;}
.ws1{word-spacing:-12.070130px;}
.ws1f{word-spacing:-12.002163px;}
.ws25{word-spacing:-11.972239px;}
.ws11{word-spacing:-10.803502px;}
.ws20{word-spacing:-8.673542px;}
.ws23{word-spacing:-7.682092px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:89.471044px;}
.ws2e{word-spacing:135.313204px;}
.ws2a{word-spacing:135.375704px;}
.ws30{word-spacing:136.272872px;}
.ws2c{word-spacing:136.306659px;}
.ws1a{word-spacing:138.419679px;}
.ws12{word-spacing:143.992204px;}
.ws10{word-spacing:144.016106px;}
.ws17{word-spacing:151.872765px;}
.ws19{word-spacing:151.884857px;}
.ws2d{word-spacing:152.735126px;}
.ws29{word-spacing:152.805672px;}
.ws2f{word-spacing:153.818354px;}
.ws2b{word-spacing:153.856491px;}
.wsf{word-spacing:156.055152px;}
.wsc{word-spacing:156.086511px;}
.wsa{word-spacing:156.102955px;}
.ws16{word-spacing:165.312744px;}
.wse{word-spacing:168.185311px;}
.ws9{word-spacing:168.219969px;}
.wsd{word-spacing:168.245066px;}
.ws15{word-spacing:173.885793px;}
.ws8{word-spacing:176.688374px;}
.wsb{word-spacing:176.730202px;}
.ws1c{word-spacing:301.408791px;}
._1{margin-left:-1.405179px;}
._0{width:1.092917px;}
._8{width:3.026540px;}
._9{width:4.227548px;}
._e{width:5.236395px;}
._11{width:6.485443px;}
._a{width:7.926653px;}
._b{width:9.151681px;}
._d{width:10.196558px;}
._c{width:11.421586px;}
._16{width:12.778725px;}
._f{width:13.883652px;}
._10{width:14.988580px;}
._14{width:16.009437px;}
._19{width:19.084017px;}
._15{width:20.092864px;}
._13{width:21.690204px;}
._7{width:22.843172px;}
._6{width:24.104231px;}
._5{width:25.593480px;}
._23{width:26.614337px;}
._18{width:29.184494px;}
._4{width:30.986006px;}
._25{width:36.402552px;}
._24{width:37.507480px;}
._1c{width:38.840599px;}
._1d{width:39.909496px;}
._2{width:43.020107px;}
._21{width:46.370919px;}
._20{width:47.535897px;}
._3{width:48.965096px;}
._22{width:66.439763px;}
._1e{width:152.696612px;}
._1a{width:178.758634px;}
._1f{width:180.217071px;}
._17{width:187.491876px;}
._12{width:1196.119897px;}
._1b{width:1432.862594px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.199790px;}
.fs19{font-size:33.023853px;}
.fs13{font-size:33.039107px;}
.fs1c{font-size:33.258065px;}
.fs16{font-size:33.266311px;}
.fsd{font-size:34.918600px;}
.fs7{font-size:35.363141px;}
.fs10{font-size:41.795078px;}
.fs4{font-size:47.803106px;}
.fse{font-size:47.888956px;}
.fsc{font-size:47.909151px;}
.fsa{font-size:48.008651px;}
.fs2{font-size:48.280522px;}
.fs17{font-size:48.299952px;}
.fs18{font-size:48.301662px;}
.fs12{font-size:48.316343px;}
.fs11{font-size:48.322261px;}
.fs5{font-size:48.366511px;}
.fs1a{font-size:48.642505px;}
.fs1b{font-size:48.643717px;}
.fs15{font-size:48.649589px;}
.fs14{font-size:48.654565px;}
.fs8{font-size:50.591878px;}
.fs6{font-size:54.412868px;}
.fs9{font-size:54.991172px;}
.fsf{font-size:66.295642px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:72.060480px;}
.fs1{font-size:108.090720px;}
.y162{bottom:-150.092863px;}
.y125{bottom:-142.040001px;}
.y15b{bottom:-136.131176px;}
.y11e{bottom:-128.052844px;}
.y15c{bottom:-126.593120px;}
.y127{bottom:-118.523064px;}
.y11f{bottom:-116.620912px;}
.y15d{bottom:-105.007328px;}
.y163{bottom:-99.290832px;}
.y120{bottom:-96.914621px;}
.y126{bottom:-95.012469px;}
.y15e{bottom:-83.408861px;}
.y168{bottom:-79.606315px;}
.y12c{bottom:-79.129503px;}
.y121{bottom:-77.861401px;}
.y167{bottom:-63.724344px;}
.y12b{bottom:-63.240831px;}
.y15f{bottom:-61.809760px;}
.y122{bottom:-58.785990px;}
.y166{bottom:-48.481834px;}
.y12a{bottom:-47.988744px;}
.y160{bottom:-40.225870px;}
.y123{bottom:-39.728967px;}
.y165{bottom:-32.603032px;}
.y129{bottom:-32.102608px;}
.y124{bottom:-20.022041px;}
.y161{bottom:-18.626135px;}
.y164{bottom:-17.358626px;}
.y128{bottom:-16.851161px;}
.y0{bottom:0.000000px;}
.yb3{bottom:1.583275px;}
.yea{bottom:3.963326px;}
.yec{bottom:4.143478px;}
.y117{bottom:4.758428px;}
.y154{bottom:4.875060px;}
.y17f{bottom:5.014692px;}
.y143{bottom:5.182879px;}
.y8e{bottom:5.800563px;}
.y97{bottom:8.286955px;}
.yd1{bottom:9.316291px;}
.ya5{bottom:12.258453px;}
.y6e{bottom:15.482386px;}
.yb1{bottom:16.964087px;}
.yb9{bottom:18.501519px;}
.y10f{bottom:18.741907px;}
.y14c{bottom:18.851767px;}
.y178{bottom:19.075461px;}
.y13c{bottom:19.262776px;}
.yf4{bottom:19.441317px;}
.ye7{bottom:19.816632px;}
.ye8{bottom:23.059354px;}
.yd0{bottom:23.868394px;}
.y91{bottom:25.081309px;}
.y89{bottom:25.533239px;}
.y110{bottom:28.270420px;}
.y14d{bottom:28.376514px;}
.y179{bottom:28.682440px;}
.y145{bottom:28.856814px;}
.ya4{bottom:29.030760px;}
.y13d{bottom:30.772047px;}
.y96{bottom:30.805855px;}
.ybc{bottom:31.471486px;}
.yb8{bottom:32.904258px;}
.yb2{bottom:34.657217px;}
.ye9{bottom:41.975230px;}
.y111{bottom:44.790607px;}
.ya3{bottom:45.830563px;}
.y14e{bottom:46.156590px;}
.yd2{bottom:46.439283px;}
.y28{bottom:46.468812px;}
.y25{bottom:48.666000px;}
.y17a{bottom:50.419407px;}
.y13e{bottom:50.614494px;}
.y118{bottom:51.782283px;}
.y144{bottom:52.530365px;}
.y155{bottom:55.680704px;}
.y180{bottom:56.180914px;}
.y6f{bottom:57.827399px;}
.y72{bottom:57.828892px;}
.y112{bottom:61.960696px;}
.ya2{bottom:62.465392px;}
.y14f{bottom:64.573593px;}
.y11d{bottom:67.665882px;}
.y90{bottom:67.925397px;}
.y8a{bottom:68.378838px;}
.y14a{bottom:68.527023px;}
.y13f{bottom:69.803846px;}
.y17b{bottom:72.173608px;}
.ybb{bottom:72.460781px;}
.ycd{bottom:74.940979px;}
.y15a{bottom:75.379163px;}
.y185{bottom:76.003122px;}
.y113{bottom:78.482786px;}
.ya1{bottom:79.237700px;}
.y150{bottom:82.369513px;}
.y11c{bottom:83.555189px;}
.y149{bottom:84.519214px;}
.yd4{bottom:87.002832px;}
.y77{bottom:88.263890px;}
.y140{bottom:89.007243px;}
.ycc{bottom:89.494878px;}
.y159{bottom:91.254797px;}
.y184{bottom:91.991349px;}
.y17c{bottom:93.925256px;}
.y114{bottom:94.999803px;}
.y24{bottom:95.650090px;}
.ya0{bottom:95.900025px;}
.y94{bottom:97.917468px;}
.y11b{bottom:98.804105px;}
.y87{bottom:99.613416px;}
.y148{bottom:99.879378px;}
.y151{bottom:100.146420px;}
.y70{bottom:100.173905px;}
.ye3{bottom:101.595079px;}
.ycf{bottom:102.175102px;}
.ycb{bottom:104.002383px;}
.y158{bottom:106.503010px;}
.y183{bottom:107.347706px;}
.y141{bottom:108.197872px;}
.y8f{bottom:108.627735px;}
.y10d{bottom:110.062186px;}
.y8b{bottom:111.222926px;}
.y115{bottom:112.157211px;}
.y9f{bottom:112.672332px;}
.yc9{bottom:113.367761px;}
.y11a{bottom:114.693412px;}
.y17d{bottom:115.664138px;}
.y147{bottom:115.871569px;}
.yba{bottom:116.638183px;}
.y152{bottom:118.563423px;}
.y4f{bottom:120.871258px;}
.y23{bottom:121.051409px;}
.y157{bottom:122.378644px;}
.y182{bottom:123.335933px;}
.y86{bottom:125.194886px;}
.yd3{bottom:126.095642px;}
.ybf{bottom:126.215743px;}
.y142{bottom:128.039680px;}
.y116{bottom:128.674228px;}
.y9e{bottom:129.309453px;}
.y119{bottom:129.942322px;}
.y146{bottom:131.231728px;}
.y76{bottom:131.860481px;}
.yca{bottom:133.232897px;}
.y10c{bottom:135.643656px;}
.y153{bottom:136.340330px;}
.y17e{bottom:137.415786px;}
.y156{bottom:137.607839px;}
.y181{bottom:138.692284px;}
.yb5{bottom:141.013319px;}
.y71{bottom:142.518918px;}
.y74{bottom:142.520411px;}
.ye2{bottom:145.191670px;}
.y9d{bottom:146.104673px;}
.y22{bottom:146.632879px;}
.y85{bottom:150.776357px;}
.y135{bottom:152.988773px;}
.y93{bottom:153.610551px;}
.y8c{bottom:154.063991px;}
.y171{bottom:161.082189px;}
.yc5{bottom:161.791462px;}
.yc7{bottom:161.836358px;}
.y9c{bottom:162.876981px;}
.y4e{bottom:164.287697px;}
.yb7{bottom:164.776339px;}
.y12d{bottom:167.065733px;}
.yce{bottom:169.049704px;}
.y75{bottom:170.953291px;}
.y6d{bottom:171.028354px;}
.yb4{bottom:172.997903px;}
.y169{bottom:175.155660px;}
.y84{bottom:176.177676px;}
.yc4{bottom:176.337878px;}
.y12e{bottom:176.661048px;}
.y10b{bottom:178.699793px;}
.yb6{bottom:179.179078px;}
.y9b{bottom:179.511810px;}
.yc6{bottom:180.558134px;}
.y16a{bottom:184.748596px;}
.y73{bottom:184.865424px;}
.ye1{bottom:188.788260px;}
.y21{bottom:189.869167px;}
.y12f{bottom:193.298034px;}
.y9a{bottom:196.318487px;}
.y8d{bottom:196.914125px;}
.y92{bottom:198.606970px;}
.y136{bottom:200.333321px;}
.y83{bottom:201.759146px;}
.y16b{bottom:202.657964px;}
.y4d{bottom:208.244590px;}
.y99{bottom:208.279067px;}
.yc8{bottom:209.770689px;}
.y130{bottom:210.586199px;}
.y172{bottom:212.250900px;}
.y13b{bottom:216.331895px;}
.y16c{bottom:221.199201px;}
.y10a{bottom:222.686711px;}
.y131{bottom:227.216801px;}
.y82{bottom:227.370642px;}
.yc3{bottom:230.931833px;}
.y177{bottom:232.087788px;}
.ye0{bottom:232.234724px;}
.y13a{bottom:232.324086px;}
.y4c{bottom:233.856085px;}
.yaf{bottom:234.659630px;}
.y16d{bottom:239.121333px;}
.y132{bottom:243.853787px;}
.y139{bottom:247.684250px;}
.y176{bottom:248.076015px;}
.y109{bottom:248.268181px;}
.yae{bottom:249.107378px;}
.y81{bottom:252.771961px;}
.y20{bottom:254.213171px;}
.y16e{bottom:257.030700px;}
.ydf{bottom:257.816195px;}
.y4b{bottom:259.257404px;}
.y133{bottom:261.122799px;}
.y175{bottom:263.432372px;}
.y138{bottom:263.676441px;}
.yc2{bottom:270.560340px;}
.y16f{bottom:275.578320px;}
.y134{bottom:277.759785px;}
.y80{bottom:278.353432px;}
.y137{bottom:279.036600px;}
.y174{bottom:279.420599px;}
.y1f{bottom:279.974792px;}
.y4a{bottom:284.838875px;}
.y108{bottom:291.324318px;}
.y170{bottom:293.481304px;}
.y173{bottom:294.757803px;}
.yde{bottom:296.909005px;}
.ye4{bottom:296.924018px;}
.yad{bottom:301.197285px;}
.y7f{bottom:303.934902px;}
.yc1{bottom:304.247565px;}
.ye5{bottom:304.845856px;}
.y49{bottom:310.420345px;}
.yac{bottom:315.750053px;}
.yc0{bottom:318.614395px;}
.y1e{bottom:323.391232px;}
.y7e{bottom:329.336221px;}
.yab{bottom:330.152792px;}
.yf3{bottom:332.398792px;}
.y107{bottom:335.281211px;}
.y48{bottom:335.821664px;}
.yaa{bottom:344.600540px;}
.y1d{bottom:348.972702px;}
.y7d{bottom:354.917692px;}
.yf2{bottom:357.980262px;}
.y106{bottom:360.862681px;}
.y47{bottom:361.403135px;}
.y1c{bottom:374.554172px;}
.y6c{bottom:376.355684px;}
.y7c{bottom:380.499162px;}
.yf1{bottom:383.561732px;}
.y105{bottom:386.264000px;}
.y46{bottom:386.984605px;}
.ya9{bottom:388.618912px;}
.y1b{bottom:399.955492px;}
.y6b{bottom:401.937155px;}
.y7b{bottom:405.900481px;}
.yf0{bottom:408.963052px;}
.y104{bottom:411.845471px;}
.y45{bottom:412.385924px;}
.ya8{bottom:423.590563px;}
.y1a{bottom:425.536962px;}
.y6a{bottom:427.518625px;}
.yef{bottom:434.544522px;}
.y103{bottom:437.426941px;}
.y44{bottom:437.967395px;}
.ya7{bottom:437.993302px;}
.y7a{bottom:449.542109px;}
.y19{bottom:451.163470px;}
.y69{bottom:452.964982px;}
.yee{bottom:460.171030px;}
.y102{bottom:462.873298px;}
.y43{bottom:463.593903px;}
.y79{bottom:475.123580px;}
.y18{bottom:476.564789px;}
.y68{bottom:478.546453px;}
.ybe{bottom:484.131140px;}
.yed{bottom:485.572349px;}
.y101{bottom:488.454769px;}
.y42{bottom:488.995222px;}
.y17{bottom:502.146260px;}
.y67{bottom:504.127923px;}
.yeb{bottom:511.153820px;}
.y100{bottom:514.036239px;}
.y41{bottom:514.576693px;}
.y78{bottom:518.540019px;}
.y16{bottom:527.727730px;}
.y66{bottom:529.529242px;}
.ye6{bottom:537.455895px;}
.yff{bottom:539.437558px;}
.y40{bottom:540.158163px;}
.y95{bottom:546.283304px;}
.y15{bottom:553.129049px;}
.y65{bottom:555.110713px;}
.yfe{bottom:565.019029px;}
.y3f{bottom:565.559482px;}
.ybd{bottom:566.820541px;}
.ya6{bottom:566.835553px;}
.y88{bottom:577.119184px;}
.y98{bottom:577.584571px;}
.y14{bottom:578.710520px;}
.y64{bottom:580.692183px;}
.yfd{bottom:590.600499px;}
.y3e{bottom:591.140953px;}
.y13{bottom:604.291990px;}
.y63{bottom:606.093502px;}
.yfc{bottom:616.001818px;}
.y3d{bottom:616.722423px;}
.y62{bottom:631.674973px;}
.ydd{bottom:639.241323px;}
.yfb{bottom:641.583289px;}
.y3c{bottom:642.123742px;}
.y12{bottom:650.230546px;}
.y61{bottom:657.256443px;}
.ydc{bottom:664.642642px;}
.y3b{bottom:667.705213px;}
.y11{bottom:675.992168px;}
.y60{bottom:682.687787px;}
.yfa{bottom:684.849602px;}
.ydb{bottom:690.254138px;}
.y3a{bottom:693.316708px;}
.y5f{bottom:708.269258px;}
.yda{bottom:715.835608px;}
.y39{bottom:718.718027px;}
.y10{bottom:719.438632px;}
.yf9{bottom:728.266041px;}
.y5e{bottom:733.850728px;}
.yd9{bottom:741.236927px;}
.y38{bottom:744.299498px;}
.yf{bottom:753.307058px;}
.y5d{bottom:759.252047px;}
.yd8{bottom:766.818398px;}
.y37{bottom:769.880968px;}
.ye{bottom:770.601573px;}
.yf8{bottom:772.222934px;}
.yb0{bottom:784.812010px;}
.y5c{bottom:784.833518px;}
.yd7{bottom:792.399868px;}
.y36{bottom:795.282287px;}
.yf7{bottom:797.804404px;}
.yd{bottom:804.289847px;}
.y5b{bottom:810.414988px;}
.yd6{bottom:817.801187px;}
.y35{bottom:820.863758px;}
.yc{bottom:821.584363px;}
.y5a{bottom:835.816307px;}
.yf6{bottom:836.897215px;}
.y14b{bottom:837.978114px;}
.yd5{bottom:843.382658px;}
.y34{bottom:846.445228px;}
.yb{bottom:855.452788px;}
.y59{bottom:861.397778px;}
.y33{bottom:871.846547px;}
.y58{bottom:886.979248px;}
.ya{bottom:890.221970px;}
.y32{bottom:897.428018px;}
.y57{bottom:912.380567px;}
.y9{bottom:915.803440px;}
.y31{bottom:923.054526px;}
.y56{bottom:938.007076px;}
.y30{bottom:948.455845px;}
.y8{bottom:961.246580px;}
.y55{bottom:963.588546px;}
.y2f{bottom:974.037316px;}
.y54{bottom:988.989865px;}
.y7{bottom:992.412738px;}
.y2e{bottom:999.618786px;}
.y10e{bottom:1005.818982px;}
.yf5{bottom:1005.924078px;}
.y53{bottom:1014.571336px;}
.y2d{bottom:1025.020105px;}
.y6{bottom:1039.972655px;}
.y52{bottom:1040.152806px;}
.y2c{bottom:1050.601576px;}
.y5{bottom:1065.373974px;}
.y2b{bottom:1076.183046px;}
.y51{bottom:1083.208943px;}
.y4{bottom:1090.955444px;}
.y2a{bottom:1101.584365px;}
.y3{bottom:1116.536915px;}
.y50{bottom:1126.805533px;}
.y29{bottom:1127.165836px;}
.y2{bottom:1141.938234px;}
.y27{bottom:1152.777331px;}
.y1{bottom:1167.549730px;}
.y26{bottom:1178.178650px;}
.h35{height:24.042268px;}
.h2d{height:24.053373px;}
.h38{height:24.212781px;}
.h31{height:24.218784px;}
.h27{height:25.401319px;}
.h25{height:25.581470px;}
.h28{height:25.617501px;}
.ha{height:32.607881px;}
.hb{height:32.613856px;}
.h1c{height:32.680217px;}
.h21{height:34.279887px;}
.h14{height:34.510182px;}
.h1f{height:34.887853px;}
.h18{height:34.975052px;}
.h33{height:35.163686px;}
.h34{height:35.164931px;}
.h2c{height:35.175619px;}
.h2b{height:35.179927px;}
.he{height:35.235759px;}
.hf{height:35.241805px;}
.h36{height:35.413074px;}
.h37{height:35.413956px;}
.h30{height:35.418231px;}
.h2f{height:35.421854px;}
.h11{height:38.949836px;}
.h10{height:39.640625px;}
.h19{height:40.507704px;}
.h16{height:41.780402px;}
.h20{height:42.931701px;}
.h1d{height:43.039005px;}
.h6{height:43.282733px;}
.h1b{height:43.307248px;}
.h8{height:53.798400px;}
.h24{height:56.927779px;}
.h1a{height:59.418576px;}
.h23{height:59.433007px;}
.h7{height:64.002936px;}
.h2{height:64.601094px;}
.h26{height:67.734036px;}
.h29{height:67.914188px;}
.h5{height:76.029788px;}
.h4{height:76.209939px;}
.hc{height:89.371884px;}
.h3{height:96.004404px;}
.h2e{height:141.867659px;}
.h2a{height:142.454570px;}
.h32{height:149.780718px;}
.h9{height:201.088766px;}
.h15{height:210.066510px;}
.hd{height:216.185349px;}
.h13{height:220.239647px;}
.h12{height:251.521100px;}
.h22{height:319.783393px;}
.h1e{height:335.600179px;}
.h17{height:453.821312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wc{width:71.159724px;}
.w8{width:71.956818px;}
.wf{width:111.153290px;}
.we{width:111.189321px;}
.wb{width:138.392152px;}
.wd{width:142.535629px;}
.w6{width:178.248888px;}
.w5{width:183.520957px;}
.w3{width:239.899780px;}
.w9{width:320.369001px;}
.w12{width:355.633124px;}
.w10{width:355.741213px;}
.w13{width:358.151592px;}
.w11{width:358.194828px;}
.w7{width:360.608595px;}
.w2{width:362.102808px;}
.w4{width:433.008422px;}
.wa{width:652.777873px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:5.050295px;}
.x24{left:7.414251px;}
.x7{left:9.642988px;}
.x19{left:12.841058px;}
.x57{left:15.883557px;}
.x48{left:19.636481px;}
.x4f{left:20.897539px;}
.x52{left:22.518900px;}
.x45{left:24.140261px;}
.x51{left:26.842529px;}
.x50{left:28.644041px;}
.x4d{left:29.724948px;}
.x6{left:33.009042px;}
.x4c{left:34.589030px;}
.x15{left:36.119759px;}
.x28{left:37.462967px;}
.x27{left:42.442022px;}
.x58{left:45.099564px;}
.x4b{left:51.343092px;}
.x30{left:52.405552px;}
.x8{left:60.622733px;}
.x29{left:63.920299px;}
.x47{left:67.226423px;}
.x49{left:71.369900px;}
.x1{left:73.906097px;}
.x21{left:78.545364px;}
.x31{left:80.794016px;}
.xe{left:83.073377px;}
.x5c{left:84.433959px;}
.x3b{left:85.720598px;}
.x16{left:87.928730px;}
.x1b{left:91.503390px;}
.x2{left:95.199969px;}
.x34{left:96.213617px;}
.x32{left:100.883460px;}
.x3f{left:106.009041px;}
.x1e{left:107.054851px;}
.x2a{left:108.503387px;}
.x17{left:110.444370px;}
.x22{left:111.879360px;}
.x3{left:116.097508px;}
.x35{left:117.987194px;}
.x23{left:120.873962px;}
.x3a{left:125.637331px;}
.x12{left:127.266882px;}
.x18{left:131.194764px;}
.x56{left:137.217095px;}
.x13{left:138.256105px;}
.x10{left:145.282002px;}
.x2b{left:147.124709px;}
.x3c{left:150.064367px;}
.xd{left:159.537452px;}
.x43{left:162.210210px;}
.x55{left:179.684876px;}
.xa{left:189.286804px;}
.x2d{left:200.024963px;}
.x36{left:205.624426px;}
.x1a{left:209.971327px;}
.x9{left:215.679050px;}
.x1c{left:218.777687px;}
.x14{left:223.551694px;}
.x3e{left:228.325700px;}
.x2c{left:236.348165px;}
.xb{left:243.300234px;}
.x37{left:246.149710px;}
.x38{left:256.098316px;}
.x2f{left:261.997773px;}
.xc{left:265.750878px;}
.x2e{left:271.322177px;}
.x39{left:274.668054px;}
.x5{left:275.945666px;}
.x33{left:296.813180px;}
.x44{left:300.611369px;}
.x59{left:321.430599px;}
.x5b{left:323.647560px;}
.x42{left:326.492524px;}
.x53{left:334.058874px;}
.x46{left:371.951245px;}
.x41{left:402.036495px;}
.x1d{left:428.159352px;}
.x54{left:429.809805px;}
.x4{left:437.677500px;}
.x5a{left:443.246078px;}
.x11{left:446.563867px;}
.x1f{left:463.513088px;}
.x25{left:465.582942px;}
.x20{left:466.690143px;}
.x4a{left:514.480869px;}
.x3d{left:617.212091px;}
.x4e{left:625.679197px;}
.xf{left:638.109630px;}
.x40{left:741.156116px;}
@media print{
.v2{vertical-align:-29.464730pt;}
.v6{vertical-align:-15.324619pt;}
.v3{vertical-align:-8.326989pt;}
.v5{vertical-align:-6.685393pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.326989pt;}
.v7{vertical-align:26.902579pt;}
.v1{vertical-align:29.624864pt;}
.ls15{letter-spacing:-1.921613pt;}
.ls7{letter-spacing:-1.281075pt;}
.ls5{letter-spacing:-0.640538pt;}
.ls2e{letter-spacing:-0.384323pt;}
.ls1e{letter-spacing:-0.271695pt;}
.ls4{letter-spacing:-0.256215pt;}
.ls3{letter-spacing:-0.192161pt;}
.ls2a{letter-spacing:-0.128108pt;}
.ls6{letter-spacing:-0.064054pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000107pt;}
.ls18{letter-spacing:0.000205pt;}
.ls11{letter-spacing:0.005374pt;}
.ls1d{letter-spacing:0.006452pt;}
.ls1c{letter-spacing:0.010902pt;}
.ls1a{letter-spacing:0.010929pt;}
.ls19{letter-spacing:0.021622pt;}
.ls10{letter-spacing:0.064054pt;}
.ls27{letter-spacing:0.106756pt;}
.ls1{letter-spacing:0.128108pt;}
.ls16{letter-spacing:0.161202pt;}
.lsf{letter-spacing:0.161415pt;}
.lsd{letter-spacing:0.192161pt;}
.lsb{letter-spacing:0.239561pt;}
.ls14{letter-spacing:0.239668pt;}
.ls2d{letter-spacing:0.256215pt;}
.ls0{letter-spacing:0.320269pt;}
.ls8{letter-spacing:0.448376pt;}
.ls2b{letter-spacing:0.640538pt;}
.ls2c{letter-spacing:0.704591pt;}
.ls21{letter-spacing:0.975705pt;}
.ls1f{letter-spacing:0.976156pt;}
.ls22{letter-spacing:0.982625pt;}
.ls20{letter-spacing:0.982869pt;}
.ls17{letter-spacing:2.285228pt;}
.ls28{letter-spacing:3.843226pt;}
.ls23{letter-spacing:11.636433pt;}
.ls25{letter-spacing:17.294515pt;}
.ls24{letter-spacing:19.216128pt;}
.lse{letter-spacing:20.497203pt;}
.ls26{letter-spacing:23.806647pt;}
.lsc{letter-spacing:26.902579pt;}
.ls29{letter-spacing:33.307955pt;}
.ls12{letter-spacing:143.079446pt;}
.ls9{letter-spacing:159.133036pt;}
.lsa{letter-spacing:159.154282pt;}
.ls13{letter-spacing:178.229587pt;}
.ws14{word-spacing:-64.053760pt;}
.ws22{word-spacing:-42.585912pt;}
.ws21{word-spacing:-29.860361pt;}
.ws33{word-spacing:-16.718031pt;}
.ws34{word-spacing:-16.269655pt;}
.ws6{word-spacing:-16.141548pt;}
.ws32{word-spacing:-16.077494pt;}
.ws2{word-spacing:-16.013440pt;}
.ws5{word-spacing:-15.949386pt;}
.ws31{word-spacing:-15.885332pt;}
.ws7{word-spacing:-15.821279pt;}
.ws4{word-spacing:-15.757225pt;}
.ws35{word-spacing:-15.629117pt;}
.ws28{word-spacing:-14.732365pt;}
.ws27{word-spacing:-14.460670pt;}
.ws1b{word-spacing:-13.446024pt;}
.ws18{word-spacing:-11.951902pt;}
.ws1e{word-spacing:-11.863471pt;}
.ws24{word-spacing:-11.833893pt;}
.ws0{word-spacing:-11.049274pt;}
.ws13{word-spacing:-10.968673pt;}
.ws1d{word-spacing:-10.890207pt;}
.ws1{word-spacing:-10.729005pt;}
.ws1f{word-spacing:-10.668589pt;}
.ws25{word-spacing:-10.641990pt;}
.ws11{word-spacing:-9.603113pt;}
.ws20{word-spacing:-7.709815pt;}
.ws23{word-spacing:-6.828526pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:79.529816pt;}
.ws2e{word-spacing:120.278404pt;}
.ws2a{word-spacing:120.333959pt;}
.ws30{word-spacing:121.131442pt;}
.ws2c{word-spacing:121.161475pt;}
.ws1a{word-spacing:123.039715pt;}
.ws12{word-spacing:127.993070pt;}
.ws10{word-spacing:128.014316pt;}
.ws17{word-spacing:134.998013pt;}
.ws19{word-spacing:135.008762pt;}
.ws2d{word-spacing:135.764556pt;}
.ws29{word-spacing:135.827264pt;}
.ws2f{word-spacing:136.727426pt;}
.ws2b{word-spacing:136.761325pt;}
.wsf{word-spacing:138.715690pt;}
.wsc{word-spacing:138.743565pt;}
.wsa{word-spacing:138.758182pt;}
.ws16{word-spacing:146.944661pt;}
.wse{word-spacing:149.498054pt;}
.ws9{word-spacing:149.528861pt;}
.wsd{word-spacing:149.551170pt;}
.ws15{word-spacing:154.565150pt;}
.ws8{word-spacing:157.056332pt;}
.wsb{word-spacing:157.093513pt;}
.ws1c{word-spacing:267.918925pt;}
._1{margin-left:-1.249048pt;}
._0{width:0.971482pt;}
._8{width:2.690258pt;}
._9{width:3.757821pt;}
._e{width:4.654573pt;}
._11{width:5.764838pt;}
._a{width:7.045914pt;}
._b{width:8.134828pt;}
._d{width:9.063607pt;}
._c{width:10.152521pt;}
._16{width:11.358867pt;}
._f{width:12.341024pt;}
._10{width:13.323182pt;}
._14{width:14.230610pt;}
._19{width:16.963571pt;}
._15{width:17.860323pt;}
._13{width:19.280182pt;}
._7{width:20.305042pt;}
._6{width:21.425983pt;}
._5{width:22.749760pt;}
._23{width:23.657189pt;}
._18{width:25.941773pt;}
._4{width:27.543117pt;}
._25{width:32.357824pt;}
._24{width:33.339982pt;}
._1c{width:34.524977pt;}
._1d{width:35.475107pt;}
._2{width:38.240095pt;}
._21{width:41.218595pt;}
._20{width:42.254130pt;}
._3{width:43.524530pt;}
._22{width:59.057567pt;}
._1e{width:135.730322pt;}
._1a{width:158.896563pt;}
._1f{width:160.192952pt;}
._17{width:166.659445pt;}
._12{width:1063.217687pt;}
._1b{width:1273.655639pt;}
.fsb{font-size:27.733147pt;}
.fs19{font-size:29.354536pt;}
.fs13{font-size:29.368095pt;}
.fs1c{font-size:29.562724pt;}
.fs16{font-size:29.570054pt;}
.fsd{font-size:31.038756pt;}
.fs7{font-size:31.433903pt;}
.fs10{font-size:37.151181pt;}
.fs4{font-size:42.491650pt;}
.fse{font-size:42.567961pt;}
.fsc{font-size:42.585912pt;}
.fsa{font-size:42.674356pt;}
.fs2{font-size:42.916019pt;}
.fs17{font-size:42.933291pt;}
.fs18{font-size:42.934811pt;}
.fs12{font-size:42.947860pt;}
.fs11{font-size:42.953121pt;}
.fs5{font-size:42.992454pt;}
.fs1a{font-size:43.237782pt;}
.fs1b{font-size:43.238859pt;}
.fs15{font-size:43.244079pt;}
.fs14{font-size:43.248502pt;}
.fs8{font-size:44.970558pt;}
.fs6{font-size:48.366994pt;}
.fs9{font-size:48.881042pt;}
.fsf{font-size:58.929459pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:64.053760pt;}
.fs1{font-size:96.080640pt;}
.y162{bottom:-133.415878pt;}
.y125{bottom:-126.257779pt;}
.y15b{bottom:-121.005490pt;}
.y11e{bottom:-113.824750pt;}
.y15c{bottom:-112.527218pt;}
.y127{bottom:-105.353835pt;}
.y11f{bottom:-103.663033pt;}
.y15d{bottom:-93.339847pt;}
.y163{bottom:-88.258517pt;}
.y120{bottom:-86.146329pt;}
.y126{bottom:-84.455528pt;}
.y15e{bottom:-74.141210pt;}
.y168{bottom:-70.761169pt;}
.y12c{bottom:-70.337336pt;}
.y121{bottom:-69.210134pt;}
.y167{bottom:-56.643861pt;}
.y12b{bottom:-56.214072pt;}
.y15f{bottom:-54.942009pt;}
.y122{bottom:-52.254213pt;}
.y166{bottom:-43.094964pt;}
.y12a{bottom:-42.656662pt;}
.y160{bottom:-35.756329pt;}
.y123{bottom:-35.314637pt;}
.y165{bottom:-28.980473pt;}
.y129{bottom:-28.535651pt;}
.y124{bottom:-17.797370pt;}
.y161{bottom:-16.556565pt;}
.y164{bottom:-15.429890pt;}
.y128{bottom:-14.978810pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:1.407356pt;}
.yea{bottom:3.522957pt;}
.yec{bottom:3.683091pt;}
.y117{bottom:4.229713pt;}
.y154{bottom:4.333387pt;}
.y17f{bottom:4.457504pt;}
.y143{bottom:4.607004pt;}
.y8e{bottom:5.156056pt;}
.y97{bottom:7.366182pt;}
.yd1{bottom:8.281147pt;}
.ya5{bottom:10.896402pt;}
.y6e{bottom:13.762121pt;}
.yb1{bottom:15.079188pt;}
.yb9{bottom:16.445795pt;}
.y10f{bottom:16.659473pt;}
.y14c{bottom:16.757127pt;}
.y178{bottom:16.955966pt;}
.y13c{bottom:17.122468pt;}
.yf4{bottom:17.281171pt;}
.ye7{bottom:17.614784pt;}
.ye8{bottom:20.497203pt;}
.yd0{bottom:21.216350pt;}
.y91{bottom:22.294497pt;}
.y89{bottom:22.696212pt;}
.y110{bottom:25.129262pt;}
.y14d{bottom:25.223568pt;}
.y179{bottom:25.495502pt;}
.y145{bottom:25.650502pt;}
.ya4{bottom:25.805120pt;}
.y13d{bottom:27.352931pt;}
.y96{bottom:27.382982pt;}
.ybc{bottom:27.974654pt;}
.yb8{bottom:29.248229pt;}
.yb2{bottom:30.806415pt;}
.ye9{bottom:37.311315pt;}
.y111{bottom:39.813873pt;}
.ya3{bottom:40.738278pt;}
.y14e{bottom:41.028080pt;}
.yd2{bottom:41.279362pt;}
.y28{bottom:41.305611pt;}
.y25{bottom:43.258667pt;}
.y17a{bottom:44.817251pt;}
.y13e{bottom:44.990661pt;}
.y118{bottom:46.028696pt;}
.y144{bottom:46.693657pt;}
.y155{bottom:49.493959pt;}
.y180{bottom:49.938590pt;}
.y6f{bottom:51.402132pt;}
.y72{bottom:51.403460pt;}
.y112{bottom:55.076174pt;}
.ya2{bottom:55.524793pt;}
.y14f{bottom:57.398749pt;}
.y11d{bottom:60.147450pt;}
.y90{bottom:60.378131pt;}
.y8a{bottom:60.781189pt;}
.y14a{bottom:60.912909pt;}
.y13f{bottom:62.047863pt;}
.y17b{bottom:64.154318pt;}
.ybb{bottom:64.409583pt;}
.ycd{bottom:66.614204pt;}
.y15a{bottom:67.003700pt;}
.y185{bottom:67.558331pt;}
.y113{bottom:69.762476pt;}
.ya1{bottom:70.433511pt;}
.y150{bottom:73.217345pt;}
.y11c{bottom:74.271279pt;}
.y149{bottom:75.128190pt;}
.yd4{bottom:77.335851pt;}
.y77{bottom:78.456791pt;}
.y140{bottom:79.117550pt;}
.ycc{bottom:79.551002pt;}
.y159{bottom:81.115375pt;}
.y184{bottom:81.770088pt;}
.y17c{bottom:83.489116pt;}
.y114{bottom:84.444269pt;}
.y24{bottom:85.022302pt;}
.ya0{bottom:85.244467pt;}
.y94{bottom:87.037750pt;}
.y11b{bottom:87.825871pt;}
.y87{bottom:88.545259pt;}
.y148{bottom:88.781670pt;}
.y151{bottom:89.019040pt;}
.y70{bottom:89.043471pt;}
.ye3{bottom:90.306737pt;}
.ycf{bottom:90.822313pt;}
.ycb{bottom:92.446563pt;}
.y158{bottom:94.669342pt;}
.y183{bottom:95.420183pt;}
.y141{bottom:96.175887pt;}
.y8f{bottom:96.557986pt;}
.y10d{bottom:97.833054pt;}
.y8b{bottom:98.864823pt;}
.y115{bottom:99.695299pt;}
.y9f{bottom:100.153184pt;}
.yc9{bottom:100.771343pt;}
.y11a{bottom:101.949699pt;}
.y17d{bottom:102.812567pt;}
.y147{bottom:102.996950pt;}
.yba{bottom:103.678385pt;}
.y152{bottom:105.389709pt;}
.y4f{bottom:107.441118pt;}
.y23{bottom:107.601252pt;}
.y157{bottom:108.781017pt;}
.y182{bottom:109.631940pt;}
.y86{bottom:111.284343pt;}
.yd3{bottom:112.085015pt;}
.ybf{bottom:112.191772pt;}
.y142{bottom:113.813049pt;}
.y116{bottom:114.377091pt;}
.y9e{bottom:114.941736pt;}
.y119{bottom:115.504286pt;}
.y146{bottom:116.650425pt;}
.y76{bottom:117.209316pt;}
.yca{bottom:118.429242pt;}
.y10c{bottom:120.572139pt;}
.y153{bottom:121.191405pt;}
.y17e{bottom:122.147365pt;}
.y156{bottom:122.318079pt;}
.y181{bottom:123.282030pt;}
.yb5{bottom:125.345173pt;}
.y71{bottom:126.683482pt;}
.y74{bottom:126.684810pt;}
.ye2{bottom:129.059262pt;}
.y9d{bottom:129.870821pt;}
.y22{bottom:130.340337pt;}
.y85{bottom:134.023428pt;}
.y135{bottom:135.990020pt;}
.y93{bottom:136.542712pt;}
.y8c{bottom:136.945770pt;}
.y171{bottom:143.184168pt;}
.yc5{bottom:143.814633pt;}
.yc7{bottom:143.854541pt;}
.y9c{bottom:144.779539pt;}
.y4e{bottom:146.033508pt;}
.yb7{bottom:146.467857pt;}
.y12d{bottom:148.502874pt;}
.yce{bottom:150.266404pt;}
.y75{bottom:151.958481pt;}
.y6d{bottom:152.025204pt;}
.yb4{bottom:153.775913pt;}
.y169{bottom:155.693920pt;}
.y84{bottom:156.602379pt;}
.yc4{bottom:156.744780pt;}
.y12e{bottom:157.032043pt;}
.y10b{bottom:158.844260pt;}
.yb6{bottom:159.270292pt;}
.y9b{bottom:159.566054pt;}
.yc6{bottom:160.496119pt;}
.y16a{bottom:164.220974pt;}
.y73{bottom:164.324821pt;}
.ye1{bottom:167.811787pt;}
.y21{bottom:168.772593pt;}
.y12f{bottom:171.820475pt;}
.y9a{bottom:174.505322pt;}
.y8d{bottom:175.034778pt;}
.y92{bottom:176.539529pt;}
.y136{bottom:178.074064pt;}
.y83{bottom:179.341463pt;}
.y16b{bottom:180.140412pt;}
.y4d{bottom:185.106302pt;}
.y99{bottom:185.136949pt;}
.yc8{bottom:186.462835pt;}
.y130{bottom:187.187732pt;}
.y172{bottom:188.667467pt;}
.y13b{bottom:192.295018pt;}
.y16c{bottom:196.621512pt;}
.y10a{bottom:197.943743pt;}
.y131{bottom:201.970490pt;}
.y82{bottom:202.107237pt;}
.yc3{bottom:205.272741pt;}
.y177{bottom:206.300256pt;}
.ye0{bottom:206.430866pt;}
.y13a{bottom:206.510299pt;}
.y4c{bottom:207.872076pt;}
.yaf{bottom:208.586338pt;}
.y16d{bottom:212.552296pt;}
.y132{bottom:216.758921pt;}
.y139{bottom:220.163778pt;}
.y176{bottom:220.512013pt;}
.y109{bottom:220.682828pt;}
.yae{bottom:221.428780pt;}
.y81{bottom:224.686188pt;}
.y20{bottom:225.967263pt;}
.y16e{bottom:228.471733pt;}
.ydf{bottom:229.169951pt;}
.y4b{bottom:230.451026pt;}
.y133{bottom:232.109155pt;}
.y175{bottom:234.162108pt;}
.y138{bottom:234.379059pt;}
.yc2{bottom:240.498080pt;}
.y16f{bottom:244.958507pt;}
.y134{bottom:246.897587pt;}
.y80{bottom:247.425273pt;}
.y137{bottom:248.032533pt;}
.y174{bottom:248.373866pt;}
.y1f{bottom:248.866482pt;}
.y4a{bottom:253.190111pt;}
.y108{bottom:258.954949pt;}
.y170{bottom:260.872271pt;}
.y173{bottom:262.006936pt;}
.yde{bottom:263.919116pt;}
.ye4{bottom:263.932460pt;}
.yad{bottom:267.730920pt;}
.y7f{bottom:270.164357pt;}
.yc1{bottom:270.442280pt;}
.ye5{bottom:270.974094pt;}
.y49{bottom:275.929196pt;}
.yac{bottom:280.666713pt;}
.yc0{bottom:283.212796pt;}
.y1e{bottom:287.458873pt;}
.y7e{bottom:292.743308pt;}
.yab{bottom:293.469148pt;}
.yf3{bottom:295.465593pt;}
.y107{bottom:298.027743pt;}
.y48{bottom:298.508146pt;}
.yaa{bottom:306.311591pt;}
.y1d{bottom:310.197957pt;}
.y7d{bottom:315.482393pt;}
.yf2{bottom:318.204677pt;}
.y106{bottom:320.766828pt;}
.y47{bottom:321.247231pt;}
.y1c{bottom:332.937042pt;}
.y6c{bottom:334.538386pt;}
.y7c{bottom:338.221477pt;}
.yf1{bottom:340.943762pt;}
.y105{bottom:343.345778pt;}
.y46{bottom:343.986316pt;}
.ya9{bottom:345.439033pt;}
.y1b{bottom:355.515993pt;}
.y6b{bottom:357.277471pt;}
.y7b{bottom:360.800428pt;}
.yf0{bottom:363.522713pt;}
.y104{bottom:366.084863pt;}
.y45{bottom:366.565266pt;}
.ya8{bottom:376.524945pt;}
.y1a{bottom:378.255077pt;}
.y6a{bottom:380.016556pt;}
.yef{bottom:386.261797pt;}
.y103{bottom:388.823948pt;}
.y44{bottom:389.304351pt;}
.ya7{bottom:389.327380pt;}
.y7a{bottom:399.592986pt;}
.y19{bottom:401.034196pt;}
.y69{bottom:402.635540pt;}
.yee{bottom:409.040916pt;}
.y102{bottom:411.442932pt;}
.y43{bottom:412.083469pt;}
.y79{bottom:422.332071pt;}
.y18{bottom:423.613146pt;}
.y68{bottom:425.374625pt;}
.ybe{bottom:430.338791pt;}
.yed{bottom:431.619866pt;}
.y101{bottom:434.182017pt;}
.y42{bottom:434.662420pt;}
.y17{bottom:446.352231pt;}
.y67{bottom:448.113709pt;}
.yeb{bottom:454.358951pt;}
.y100{bottom:456.921101pt;}
.y41{bottom:457.401505pt;}
.y78{bottom:460.924461pt;}
.y16{bottom:469.091316pt;}
.y66{bottom:470.692660pt;}
.ye6{bottom:477.738573pt;}
.yff{bottom:479.500052pt;}
.y40{bottom:480.140589pt;}
.y95{bottom:485.585159pt;}
.y15{bottom:491.670266pt;}
.y65{bottom:493.431745pt;}
.yfe{bottom:502.239137pt;}
.y3f{bottom:502.719540pt;}
.ybd{bottom:503.840481pt;}
.ya6{bottom:503.853825pt;}
.y88{bottom:512.994830pt;}
.y98{bottom:513.408507pt;}
.y14{bottom:514.409351pt;}
.y64{bottom:516.170829pt;}
.yfd{bottom:524.978221pt;}
.y3e{bottom:525.458625pt;}
.y13{bottom:537.148436pt;}
.y63{bottom:538.749780pt;}
.yfc{bottom:547.557172pt;}
.y3d{bottom:548.197709pt;}
.y62{bottom:561.488865pt;}
.ydd{bottom:568.214509pt;}
.yfb{bottom:570.296257pt;}
.y3c{bottom:570.776660pt;}
.y12{bottom:577.982708pt;}
.y61{bottom:584.227949pt;}
.ydc{bottom:590.793460pt;}
.y3b{bottom:593.515745pt;}
.y11{bottom:600.881927pt;}
.y60{bottom:606.833589pt;}
.yfa{bottom:608.755202pt;}
.ydb{bottom:613.559234pt;}
.y3a{bottom:616.281518pt;}
.y5f{bottom:629.572674pt;}
.yda{bottom:636.298318pt;}
.y39{bottom:638.860469pt;}
.y10{bottom:639.501006pt;}
.yf9{bottom:647.347592pt;}
.y5e{bottom:652.311758pt;}
.yd9{bottom:658.877269pt;}
.y38{bottom:661.599554pt;}
.yf{bottom:669.606274pt;}
.y5d{bottom:674.890709pt;}
.yd8{bottom:681.616354pt;}
.y37{bottom:684.338638pt;}
.ye{bottom:684.979176pt;}
.yf8{bottom:686.420386pt;}
.yb0{bottom:697.610676pt;}
.y5c{bottom:697.629794pt;}
.yd7{bottom:704.355438pt;}
.y36{bottom:706.917589pt;}
.yf7{bottom:709.159470pt;}
.yd{bottom:714.924309pt;}
.y5b{bottom:720.368878pt;}
.yd6{bottom:726.934389pt;}
.y35{bottom:729.656674pt;}
.yc{bottom:730.297211pt;}
.y5a{bottom:742.947829pt;}
.yf6{bottom:743.908635pt;}
.y14b{bottom:744.869434pt;}
.yd5{bottom:749.673474pt;}
.y34{bottom:752.395758pt;}
.yb{bottom:760.402478pt;}
.y59{bottom:765.686914pt;}
.y33{bottom:774.974709pt;}
.y58{bottom:788.425998pt;}
.ya{bottom:791.308418pt;}
.y32{bottom:797.713794pt;}
.y57{bottom:811.004949pt;}
.y9{bottom:814.047502pt;}
.y31{bottom:820.492912pt;}
.y56{bottom:833.784067pt;}
.y30{bottom:843.071862pt;}
.y8{bottom:854.441405pt;}
.y55{bottom:856.523152pt;}
.y2f{bottom:865.810947pt;}
.y54{bottom:879.102102pt;}
.y7{bottom:882.144656pt;}
.y2e{bottom:888.550032pt;}
.y10e{bottom:894.061317pt;}
.yf5{bottom:894.154736pt;}
.y53{bottom:901.841187pt;}
.y2d{bottom:911.128982pt;}
.y6{bottom:924.420138pt;}
.y52{bottom:924.580272pt;}
.y2c{bottom:933.868067pt;}
.y5{bottom:946.999088pt;}
.y2b{bottom:956.607152pt;}
.y51{bottom:962.852394pt;}
.y4{bottom:969.738173pt;}
.y2a{bottom:979.186102pt;}
.y3{bottom:992.477258pt;}
.y50{bottom:1001.604918pt;}
.y29{bottom:1001.925187pt;}
.y2{bottom:1015.056208pt;}
.y27{bottom:1024.690961pt;}
.y1{bottom:1037.821982pt;}
.y26{bottom:1047.269911pt;}
.h35{height:21.370905pt;}
.h2d{height:21.380776pt;}
.h38{height:21.522472pt;}
.h31{height:21.527808pt;}
.h27{height:22.578950pt;}
.h25{height:22.739085pt;}
.h28{height:22.771112pt;}
.ha{height:28.984783pt;}
.hb{height:28.990094pt;}
.h1c{height:29.049082pt;}
.h21{height:30.471011pt;}
.h14{height:30.675718pt;}
.h1f{height:31.011424pt;}
.h18{height:31.088935pt;}
.h33{height:31.256610pt;}
.h34{height:31.257716pt;}
.h2c{height:31.267216pt;}
.h2b{height:31.271047pt;}
.he{height:31.320674pt;}
.hf{height:31.326048pt;}
.h36{height:31.478288pt;}
.h37{height:31.479072pt;}
.h30{height:31.482872pt;}
.h2f{height:31.486092pt;}
.h11{height:34.622077pt;}
.h10{height:35.236111pt;}
.h19{height:36.006848pt;}
.h16{height:37.138135pt;}
.h20{height:38.161512pt;}
.h1d{height:38.256894pt;}
.h6{height:38.473541pt;}
.h1b{height:38.495332pt;}
.h8{height:47.820800pt;}
.h24{height:50.602470pt;}
.h1a{height:52.816512pt;}
.h23{height:52.829339pt;}
.h7{height:56.891499pt;}
.h2{height:57.423195pt;}
.h26{height:60.208032pt;}
.h29{height:60.368167pt;}
.h5{height:67.582034pt;}
.h4{height:67.742168pt;}
.hc{height:79.441675pt;}
.h3{height:85.337248pt;}
.h2e{height:126.104586pt;}
.h2a{height:126.626284pt;}
.h32{height:133.138416pt;}
.h9{height:178.745569pt;}
.h15{height:186.725786pt;}
.hd{height:192.164755pt;}
.h13{height:195.768575pt;}
.h12{height:223.574311pt;}
.h22{height:284.251905pt;}
.h1e{height:298.311270pt;}
.h17{height:403.396722pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wc{width:63.253088pt;}
.w8{width:63.961616pt;}
.wf{width:98.802925pt;}
.we{width:98.834952pt;}
.wb{width:123.015246pt;}
.wd{width:126.698337pt;}
.w6{width:158.443456pt;}
.w5{width:163.129739pt;}
.w3{width:213.244249pt;}
.w9{width:284.772445pt;}
.w12{width:316.118333pt;}
.w10{width:316.214412pt;}
.w13{width:318.356971pt;}
.w11{width:318.395403pt;}
.w7{width:320.540973pt;}
.w2{width:321.869162pt;}
.w4{width:384.896375pt;}
.wa{width:580.246998pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:4.489151pt;}
.x24{left:6.590445pt;}
.x7{left:8.571545pt;}
.x19{left:11.414274pt;}
.x57{left:14.118718pt;}
.x48{left:17.454650pt;}
.x4f{left:18.575590pt;}
.x52{left:20.016800pt;}
.x45{left:21.458010pt;}
.x51{left:23.860026pt;}
.x50{left:25.461370pt;}
.x4d{left:26.422176pt;}
.x6{left:29.341371pt;}
.x4c{left:30.745805pt;}
.x15{left:32.106453pt;}
.x28{left:33.300415pt;}
.x27{left:37.726242pt;}
.x58{left:40.088502pt;}
.x4b{left:45.638304pt;}
.x30{left:46.582713pt;}
.x8{left:53.886874pt;}
.x29{left:56.818044pt;}
.x47{left:59.756820pt;}
.x49{left:63.439911pt;}
.x1{left:65.694308pt;}
.x21{left:69.818101pt;}
.x31{left:71.816903pt;}
.xe{left:73.843002pt;}
.x5c{left:75.052408pt;}
.x3b{left:76.196087pt;}
.x16{left:78.158871pt;}
.x1b{left:81.336347pt;}
.x2{left:84.622194pt;}
.x34{left:85.523215pt;}
.x32{left:89.674187pt;}
.x3f{left:94.230258pt;}
.x1e{left:95.159867pt;}
.x2a{left:96.447455pt;}
.x17{left:98.172773pt;}
.x22{left:99.448320pt;}
.x3{left:103.197785pt;}
.x35{left:104.877506pt;}
.x23{left:107.443522pt;}
.x3a{left:111.677627pt;}
.x12{left:113.126118pt;}
.x18{left:116.617568pt;}
.x56{left:121.970751pt;}
.x13{left:122.894316pt;}
.x10{left:129.139558pt;}
.x2b{left:130.777520pt;}
.x3c{left:133.390548pt;}
.xd{left:141.811069pt;}
.x43{left:144.186853pt;}
.x55{left:159.719890pt;}
.xa{left:168.254937pt;}
.x2d{left:177.799967pt;}
.x36{left:182.777267pt;}
.x1a{left:186.641179pt;}
.x9{left:191.714711pt;}
.x1c{left:194.469055pt;}
.x14{left:198.712617pt;}
.x3e{left:202.956178pt;}
.x2c{left:210.087258pt;}
.xb{left:216.266875pt;}
.x37{left:218.799742pt;}
.x38{left:227.642948pt;}
.x2f{left:232.886909pt;}
.xc{left:236.223002pt;}
.x2e{left:241.175268pt;}
.x39{left:244.149382pt;}
.x5{left:245.285036pt;}
.x33{left:263.833937pt;}
.x44{left:267.210106pt;}
.x59{left:285.716088pt;}
.x5b{left:287.686720pt;}
.x42{left:290.215576pt;}
.x53{left:296.941221pt;}
.x46{left:330.623329pt;}
.x41{left:357.365773pt;}
.x1d{left:380.586091pt;}
.x54{left:382.053160pt;}
.x4{left:389.046667pt;}
.x5a{left:393.996514pt;}
.x11{left:396.945659pt;}
.x1f{left:412.011634pt;}
.x25{left:413.851504pt;}
.x20{left:414.835682pt;}
.x4a{left:457.316328pt;}
.x3d{left:548.632970pt;}
.x4e{left:556.159286pt;}
.xf{left:567.208560pt;}
.x40{left:658.805437pt;}
}




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