
    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_c027525210e4d0ed974e02f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_f9ca0a3de72d19d605a164d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_b83b7191b6b9ea9ef67eaee2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_1f54ae36d2652071e4e555c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_46abe0fa9df3b6870e794f16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717000;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_a1a317b49a98765f7cc78792.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_93c6ab8f7053c2b5cd7ee83a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.526000;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_2446e784edf15656469023f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_88f7e22d57e1481e9818808c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_f66a0d2d9561fddf25068c01.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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_9c0eb461be295608b565890b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-15.156000px;}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.970000px;}
.vc{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.v9{vertical-align:22.854000px;}
.va{vertical-align:24.690000px;}
.v7{vertical-align:25.854000px;}
.vb{vertical-align:32.040000px;}
.v6{vertical-align:40.464000px;}
.v8{vertical-align:81.474000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000017px;}
.ls16{letter-spacing:0.004200px;}
.ls13{letter-spacing:2.950950px;}
.ls7{letter-spacing:2.956950px;}
.ls27{letter-spacing:2.985004px;}
.ls17{letter-spacing:2.986193px;}
.ls21{letter-spacing:2.987100px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls1a{letter-spacing:2.991004px;}
.ls11{letter-spacing:2.992193px;}
.lsa{letter-spacing:2.993100px;}
.ls55{letter-spacing:3.471193px;}
.ls9{letter-spacing:4.484725px;}
.ls1c{letter-spacing:4.486200px;}
.ls51{letter-spacing:4.632228px;}
.ls4d{letter-spacing:4.643531px;}
.ls34{letter-spacing:4.660651px;}
.ls31{letter-spacing:4.672024px;}
.ls50{letter-spacing:4.673638px;}
.ls4f{letter-spacing:4.679237px;}
.ls4e{letter-spacing:4.680967px;}
.ls4c{letter-spacing:4.688634px;}
.ls33{letter-spacing:4.702315px;}
.ls54{letter-spacing:4.704222px;}
.ls30{letter-spacing:4.707948px;}
.ls32{letter-spacing:4.709690px;}
.ls53{letter-spacing:4.740937px;}
.ls3a{letter-spacing:4.878824px;}
.ls39{letter-spacing:4.916901px;}
.ls3{letter-spacing:4.959596px;}
.ls5{letter-spacing:6.594538px;}
.ls12{letter-spacing:7.174200px;}
.ls19{letter-spacing:8.250538px;}
.ls2e{letter-spacing:9.912538px;}
.ls2b{letter-spacing:9.918538px;}
.ls29{letter-spacing:10.824538px;}
.ls46{letter-spacing:11.172538px;}
.ls44{letter-spacing:11.178538px;}
.ls41{letter-spacing:11.286538px;}
.ls1d{letter-spacing:11.289004px;}
.ls18{letter-spacing:11.291100px;}
.ls2c{letter-spacing:11.304538px;}
.ls2f{letter-spacing:11.310538px;}
.ls2d{letter-spacing:11.356200px;}
.ls3c{letter-spacing:12.000538px;}
.ls2a{letter-spacing:12.300538px;}
.ls28{letter-spacing:12.346200px;}
.ls45{letter-spacing:12.666538px;}
.ls47{letter-spacing:12.672538px;}
.ls1e{letter-spacing:12.738538px;}
.ls42{letter-spacing:12.792538px;}
.ls43{letter-spacing:12.844200px;}
.ls4a{letter-spacing:13.164538px;}
.ls48{letter-spacing:13.170538px;}
.ls20{letter-spacing:13.230538px;}
.ls37{letter-spacing:13.236538px;}
.ls1f{letter-spacing:13.282200px;}
.ls3d{letter-spacing:13.566538px;}
.ls3b{letter-spacing:13.612200px;}
.ls49{letter-spacing:14.820538px;}
.ls4b{letter-spacing:14.826538px;}
.ls38{letter-spacing:14.892538px;}
.ls36{letter-spacing:14.898538px;}
.ls40{letter-spacing:14.922538px;}
.ls3e{letter-spacing:14.928538px;}
.ls4{letter-spacing:17.718562px;}
.lsd{letter-spacing:17.896950px;}
.ls3f{letter-spacing:17.934538px;}
.ls8{letter-spacing:18.705004px;}
.lsc{letter-spacing:19.201196px;}
.lsb{letter-spacing:19.205100px;}
.ls23{letter-spacing:22.643108px;}
.ls25{letter-spacing:25.627196px;}
.ls24{letter-spacing:27.665108px;}
.ls52{letter-spacing:28.015222px;}
.ls35{letter-spacing:28.187122px;}
.ls26{letter-spacing:30.226766px;}
.lse{letter-spacing:62.765100px;}
.lsf{letter-spacing:66.900538px;}
.ls15{letter-spacing:89.867108px;}
.ls10{letter-spacing:96.509108px;}
.ls22{letter-spacing:294.958200px;}
.ls1b{letter-spacing:600.520200px;}
.ls14{letter-spacing:870.520200px;}
.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;}
}
.ws8b{word-spacing:-28.258138px;}
.wsb4{word-spacing:-28.085805px;}
.wsba{word-spacing:-21.519300px;}
.ws28{word-spacing:-14.943900px;}
.ws4a{word-spacing:-11.058450px;}
.ws86{word-spacing:-4.712622px;}
.ws88{word-spacing:-4.709690px;}
.wsb0{word-spacing:-4.680967px;}
.ws80{word-spacing:-3.586536px;}
.ws83{word-spacing:-3.586109px;}
.ws84{word-spacing:-3.582784px;}
.ws75{word-spacing:-3.168107px;}
.ws70{word-spacing:-3.048556px;}
.ws9b{word-spacing:-2.749678px;}
.ws36{word-spacing:-2.630126px;}
.ws81{word-spacing:-2.624332px;}
.ws4d{word-spacing:-2.570351px;}
.ws29{word-spacing:-2.510575px;}
.ws2b{word-spacing:-2.391024px;}
.ws2d{word-spacing:-2.331248px;}
.wsa6{word-spacing:-2.215369px;}
.wsa5{word-spacing:-2.211697px;}
.wscb{word-spacing:-2.175826px;}
.ws76{word-spacing:-2.151922px;}
.wsa2{word-spacing:-2.132378px;}
.wsa1{word-spacing:-2.130920px;}
.wsa3{word-spacing:-2.114671px;}
.wsa4{word-spacing:-2.092146px;}
.ws4e{word-spacing:-1.912819px;}
.wsd3{word-spacing:-1.882926px;}
.wsc9{word-spacing:-1.799240px;}
.ws2a{word-spacing:-1.793268px;}
.ws82{word-spacing:-1.733492px;}
.ws27{word-spacing:-1.673717px;}
.ws21{word-spacing:-1.554166px;}
.ws99{word-spacing:-1.494390px;}
.wsaa{word-spacing:-1.434614px;}
.wsac{word-spacing:-1.374839px;}
.ws9e{word-spacing:-1.344653px;}
.ws7f{word-spacing:-1.315063px;}
.ws24{word-spacing:-1.195512px;}
.ws7a{word-spacing:-1.075961px;}
.ws4b{word-spacing:-1.016185px;}
.ws61{word-spacing:-0.956410px;}
.ws6f{word-spacing:-0.896634px;}
.wsc4{word-spacing:-0.795013px;}
.ws16{word-spacing:-0.717307px;}
.wsbf{word-spacing:-0.669485px;}
.ws34{word-spacing:-0.657532px;}
.wsbb{word-spacing:-0.537980px;}
.ws7{word-spacing:-0.478205px;}
.ws32{word-spacing:-0.358654px;}
.ws7e{word-spacing:-0.239102px;}
.wsa7{word-spacing:-0.086558px;}
.wsa8{word-spacing:-0.061984px;}
.ws14{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.047821px;}
.wscd{word-spacing:-0.041843px;}
.ws89{word-spacing:-0.004103px;}
.wsb1{word-spacing:-0.004078px;}
.ws8f{word-spacing:-0.001133px;}
.ws0{word-spacing:0.000000px;}
.ws8e{word-spacing:0.004808px;}
.wsad{word-spacing:0.012380px;}
.ws85{word-spacing:0.012456px;}
.wsb9{word-spacing:0.119551px;}
.wscf{word-spacing:0.125528px;}
.ws2e{word-spacing:0.239102px;}
.wsd1{word-spacing:0.334742px;}
.ws10{word-spacing:0.358654px;}
.wsbd{word-spacing:0.418428px;}
.ws98{word-spacing:0.418429px;}
.ws31{word-spacing:0.478205px;}
.ws79{word-spacing:0.526027px;}
.ws15{word-spacing:0.537980px;}
.ws1f{word-spacing:0.657532px;}
.wsd4{word-spacing:0.711328px;}
.wsd2{word-spacing:0.753170px;}
.ws26{word-spacing:0.777083px;}
.ws6d{word-spacing:0.836858px;}
.wsbe{word-spacing:0.878699px;}
.ws4f{word-spacing:0.896634px;}
.ws45{word-spacing:0.956410px;}
.ws64{word-spacing:1.016185px;}
.ws9c{word-spacing:1.075961px;}
.ws77{word-spacing:1.135736px;}
.ws1a{word-spacing:1.147694px;}
.ws65{word-spacing:1.195512px;}
.ws53{word-spacing:1.255288px;}
.wsc1{word-spacing:1.297127px;}
.ws30{word-spacing:1.315063px;}
.ws5d{word-spacing:1.494390px;}
.ws18{word-spacing:1.613941px;}
.wsd0{word-spacing:1.631869px;}
.ws67{word-spacing:1.673717px;}
.ws39{word-spacing:1.733492px;}
.ws74{word-spacing:1.793268px;}
.ws9d{word-spacing:1.912819px;}
.ws2f{word-spacing:1.972595px;}
.ws6e{word-spacing:2.032370px;}
.ws66{word-spacing:2.092146px;}
.wsc0{word-spacing:2.175826px;}
.ws43{word-spacing:2.211697px;}
.ws22{word-spacing:2.271473px;}
.ws25{word-spacing:2.331248px;}
.ws6b{word-spacing:2.450800px;}
.ws73{word-spacing:2.570351px;}
.ws48{word-spacing:2.749678px;}
.ws13{word-spacing:2.809453px;}
.ws93{word-spacing:2.869229px;}
.ws69{word-spacing:2.929004px;}
.ws3e{word-spacing:2.988780px;}
.wsa0{word-spacing:3.048556px;}
.wsc3{word-spacing:3.054524px;}
.ws9f{word-spacing:3.057295px;}
.ws50{word-spacing:3.168107px;}
.ws42{word-spacing:3.227882px;}
.ws68{word-spacing:3.287658px;}
.wsc8{word-spacing:3.347424px;}
.ws44{word-spacing:3.347434px;}
.ws40{word-spacing:3.466985px;}
.wsca{word-spacing:3.514795px;}
.wse{word-spacing:3.586536px;}
.ws3a{word-spacing:3.646312px;}
.ws78{word-spacing:3.682186px;}
.ws11{word-spacing:3.706087px;}
.ws2c{word-spacing:3.765863px;}
.ws3d{word-spacing:3.825638px;}
.wsc2{word-spacing:3.849538px;}
.ws33{word-spacing:3.885414px;}
.wsc6{word-spacing:3.933223px;}
.ws2{word-spacing:3.945190px;}
.ws9{word-spacing:4.004965px;}
.wsc7{word-spacing:4.058752px;}
.ws38{word-spacing:4.064741px;}
.ws1e{word-spacing:4.244068px;}
.ws12{word-spacing:4.363619px;}
.wsd{word-spacing:4.542946px;}
.ws62{word-spacing:4.602721px;}
.ws3b{word-spacing:4.662497px;}
.wsae{word-spacing:4.676010px;}
.wsb2{word-spacing:4.685407px;}
.wsce{word-spacing:4.686394px;}
.ws3{word-spacing:4.782048px;}
.ws59{word-spacing:4.841824px;}
.wsc5{word-spacing:4.937450px;}
.ws7c{word-spacing:4.961375px;}
.ws23{word-spacing:5.021150px;}
.ws47{word-spacing:5.080926px;}
.ws35{word-spacing:5.379804px;}
.ws5f{word-spacing:5.499355px;}
.ws60{word-spacing:5.559131px;}
.ws95{word-spacing:5.618906px;}
.ws41{word-spacing:5.678682px;}
.ws63{word-spacing:5.798233px;}
.ws1d{word-spacing:5.977560px;}
.ws6c{word-spacing:6.037336px;}
.wsa{word-spacing:6.097111px;}
.ws7b{word-spacing:6.395989px;}
.wsab{word-spacing:6.455765px;}
.ws6a{word-spacing:6.575316px;}
.ws4{word-spacing:6.635092px;}
.ws92{word-spacing:6.933970px;}
.ws5c{word-spacing:7.232848px;}
.ws5{word-spacing:7.292623px;}
.ws94{word-spacing:7.352399px;}
.wsbc{word-spacing:7.531726px;}
.ws57{word-spacing:7.651277px;}
.ws55{word-spacing:7.694134px;}
.ws54{word-spacing:7.698109px;}
.ws56{word-spacing:7.711052px;}
.wsf{word-spacing:7.770828px;}
.ws5b{word-spacing:8.069706px;}
.ws97{word-spacing:8.547911px;}
.ws6{word-spacing:8.846789px;}
.wsb3{word-spacing:9.287063px;}
.wsaf{word-spacing:9.303939px;}
.ws8a{word-spacing:9.344048px;}
.ws87{word-spacing:9.361027px;}
.ws37{word-spacing:9.564096px;}
.ws46{word-spacing:10.102076px;}
.ws9a{word-spacing:10.341179px;}
.ws20{word-spacing:10.819384px;}
.ws19{word-spacing:11.901626px;}
.ws1{word-spacing:11.907329px;}
.ws3c{word-spacing:13.701791px;}
.ws1b{word-spacing:14.394001px;}
.ws3f{word-spacing:14.884124px;}
.ws72{word-spacing:14.943900px;}
.wscc{word-spacing:15.021565px;}
.ws17{word-spacing:16.491600px;}
.ws8d{word-spacing:16.772534px;}
.wsb6{word-spacing:16.778534px;}
.ws8{word-spacing:19.741966px;}
.ws51{word-spacing:19.870441px;}
.ws71{word-spacing:20.185966px;}
.ws5e{word-spacing:20.560441px;}
.ws52{word-spacing:20.824441px;}
.ws7d{word-spacing:20.965966px;}
.wsc{word-spacing:21.519300px;}
.ws49{word-spacing:21.844441px;}
.ws4c{word-spacing:21.880441px;}
.wsa9{word-spacing:22.921966px;}
.ws58{word-spacing:23.914441px;}
.ws5a{word-spacing:24.154441px;}
.ws96{word-spacing:25.831966px;}
.wsb{word-spacing:37.003661px;}
.wsb5{word-spacing:88.938382px;}
.ws8c{word-spacing:89.484103px;}
.wsb7{word-spacing:90.100808px;}
.ws90{word-spacing:93.444984px;}
.wsb8{word-spacing:132.305923px;}
.ws91{word-spacing:486.897547px;}
._24{margin-left:-2170.309767px;}
._35{margin-left:-2169.108559px;}
._f{margin-left:-2153.991433px;}
._22{margin-left:-2152.973873px;}
._c{margin-left:-2138.569732px;}
._4b{margin-left:-2046.216545px;}
._46{margin-left:-1927.345938px;}
._26{margin-left:-1901.498737px;}
._42{margin-left:-1831.597312px;}
._44{margin-left:-1314.275364px;}
._34{margin-left:-1163.879954px;}
._28{margin-left:-995.492089px;}
._41{margin-left:-941.675826px;}
._48{margin-left:-859.793764px;}
._27{margin-left:-836.309666px;}
._1f{margin-left:-821.987832px;}
._45{margin-left:-589.029005px;}
._4a{margin-left:-568.107605px;}
._49{margin-left:-547.186205px;}
._29{margin-left:-10.684079px;}
._1{margin-left:-9.554569px;}
._3{margin-left:-6.635092px;}
._25{margin-left:-5.559131px;}
._5{margin-left:-4.542946px;}
._2{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._15{width:2.964877px;}
._20{width:4.767216px;}
._23{width:8.115907px;}
._47{width:10.675797px;}
._43{width:12.194222px;}
._1d{width:13.509286px;}
._19{width:14.585246px;}
._11{width:15.679416px;}
._10{width:17.334924px;}
._9{width:18.711280px;}
._d{width:20.503030px;}
._1a{width:21.674638px;}
._21{width:22.894054px;}
._7{width:24.029791px;}
._1c{width:25.105752px;}
._18{width:26.899020px;}
._e{width:27.915205px;}
._a{width:29.290044px;}
._17{width:31.202864px;}
._4{width:32.697253px;}
._1e{width:33.773214px;}
._1b{width:35.148053px;}
._16{width:36.582667px;}
._6{width:38.375935px;}
._8{width:39.631221px;}
._b{width:41.185388px;}
._13{width:43.660208px;}
._14{width:57.097796px;}
._38{width:138.984313px;}
._36{width:151.382488px;}
._2f{width:152.445737px;}
._3c{width:161.586997px;}
._2c{width:173.841561px;}
._2e{width:175.765617px;}
._2d{width:181.174844px;}
._3b{width:184.859208px;}
._40{width:185.937598px;}
._2a{width:187.257260px;}
._32{width:197.390009px;}
._2b{width:199.542634px;}
._3a{width:208.396671px;}
._33{width:221.167025px;}
._31{width:244.486905px;}
._30{width:268.035353px;}
._3d{width:294.300227px;}
._3f{width:299.449291px;}
._3e{width:341.109902px;}
._37{width:346.258966px;}
._39{width:369.663803px;}
._12{width:1105.899188px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fsf{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:71.731200px;}
.fsc{font-size:74.895667px;}
.fs8{font-size:75.355223px;}
.fse{font-size:75.874555px;}
.fsa{font-size:78.690710px;}
.fs0{font-size:86.077200px;}
.fsb{font-size:93.619349px;}
.fs7{font-size:94.193793px;}
.fsd{font-size:94.842956px;}
.fs9{font-size:98.363141px;}
.y0{bottom:0.000000px;}
.y22{bottom:134.047500px;}
.yb8{bottom:181.519500px;}
.y143{bottom:181.867500px;}
.y53{bottom:186.117000px;}
.y9f{bottom:188.256000px;}
.y21{bottom:191.319000px;}
.ye5{bottom:192.552000px;}
.y142{bottom:195.318000px;}
.yb7{bottom:199.452000px;}
.y11a{bottom:201.340500px;}
.y100{bottom:203.160000px;}
.y52{bottom:204.049500px;}
.y9e{bottom:206.190000px;}
.y20{bottom:209.856000px;}
.ye4{bottom:210.486000px;}
.yd1{bottom:212.457000px;}
.y119{bottom:214.789500px;}
.yb6{bottom:217.384500px;}
.y1f{bottom:220.230000px;}
.y141{bottom:220.722000px;}
.y7a{bottom:221.596500px;}
.y51{bottom:221.982000px;}
.y9d{bottom:224.122500px;}
.y118{bottom:228.240000px;}
.ye3{bottom:228.418500px;}
.y140{bottom:234.172500px;}
.yb5{bottom:235.318500px;}
.y1e{bottom:238.765500px;}
.y79{bottom:239.529000px;}
.y50{bottom:239.914500px;}
.y9c{bottom:242.055000px;}
.ye2{bottom:246.351000px;}
.y13f{bottom:247.621500px;}
.yff{bottom:250.579500px;}
.yb4{bottom:253.251000px;}
.y117{bottom:253.644000px;}
.y39{bottom:253.681500px;}
.y78{bottom:257.461500px;}
.y4f{bottom:257.847000px;}
.y9b{bottom:259.987500px;}
.yd0{bottom:264.188377px;}
.y116{bottom:267.094500px;}
.yb3{bottom:271.183500px;}
.y38{bottom:271.614000px;}
.y13e{bottom:273.025500px;}
.y77{bottom:275.395500px;}
.y4e{bottom:275.781000px;}
.y9a{bottom:277.920000px;}
.ye1{bottom:279.750000px;}
.y1d{bottom:284.214000px;}
.y13d{bottom:286.476000px;}
.yb2{bottom:289.116000px;}
.y37{bottom:289.546500px;}
.y76{bottom:293.328000px;}
.ycf{bottom:293.697023px;}
.y4d{bottom:293.713500px;}
.y115{bottom:297.505500px;}
.y13c{bottom:299.925000px;}
.yfe{bottom:301.837091px;}
.y1c{bottom:302.148000px;}
.y99{bottom:305.940000px;}
.yb1{bottom:307.048500px;}
.y36{bottom:307.479000px;}
.y75{bottom:311.260500px;}
.y4c{bottom:311.646000px;}
.y1b{bottom:320.080500px;}
.yce{bottom:324.190525px;}
.yb0{bottom:324.981000px;}
.y13b{bottom:325.330500px;}
.y35{bottom:325.411500px;}
.y74{bottom:329.193000px;}
.y4b{bottom:329.578500px;}
.yfd{bottom:329.922614px;}
.ye0{bottom:330.186000px;}
.y98{bottom:333.960000px;}
.y1a{bottom:338.013000px;}
.y13a{bottom:338.779500px;}
.y114{bottom:339.871500px;}
.yaf{bottom:342.915000px;}
.y34{bottom:343.344000px;}
.y73{bottom:347.125500px;}
.y4a{bottom:347.511000px;}
.ydf{bottom:348.120000px;}
.ycd{bottom:353.699171px;}
.y19{bottom:355.945500px;}
.yfc{bottom:358.008137px;}
.yae{bottom:360.847500px;}
.y33{bottom:361.278000px;}
.y139{bottom:364.185000px;}
.y72{bottom:365.059500px;}
.y49{bottom:365.445000px;}
.yde{bottom:366.052500px;}
.y97{bottom:370.348500px;}
.y18{bottom:373.878000px;}
.y138{bottom:377.634000px;}
.yad{bottom:378.780000px;}
.y32{bottom:379.210500px;}
.y71{bottom:382.992000px;}
.y48{bottom:383.377500px;}
.ydd{bottom:383.985000px;}
.ycc{bottom:384.190204px;}
.yfb{bottom:386.093659px;}
.y113{bottom:390.306000px;}
.y17{bottom:391.810500px;}
.yac{bottom:396.712500px;}
.y31{bottom:397.143000px;}
.y47{bottom:401.310000px;}
.ydc{bottom:401.917500px;}
.y137{bottom:403.038000px;}
.y112{bottom:408.240000px;}
.y70{bottom:409.621500px;}
.y16{bottom:409.744500px;}
.yfa{bottom:414.179182px;}
.yab{bottom:414.645000px;}
.y30{bottom:415.075500px;}
.y136{bottom:416.488500px;}
.y46{bottom:419.242500px;}
.ydb{bottom:419.850000px;}
.y6f{bottom:419.872500px;}
.y96{bottom:420.784500px;}
.ycb{bottom:424.887000px;}
.y111{bottom:426.172500px;}
.y15{bottom:427.677000px;}
.yaa{bottom:432.579000px;}
.y2f{bottom:433.008000px;}
.y45{bottom:437.175000px;}
.yda{bottom:437.782500px;}
.y95{bottom:438.717000px;}
.y135{bottom:441.892500px;}
.yf9{bottom:442.264705px;}
.y110{bottom:444.105000px;}
.y14{bottom:445.609500px;}
.y6e{bottom:445.965000px;}
.ya9{bottom:450.511500px;}
.y2e{bottom:450.940500px;}
.y44{bottom:455.107500px;}
.y134{bottom:455.343000px;}
.yd9{bottom:455.716500px;}
.y6d{bottom:456.216000px;}
.y94{bottom:456.649500px;}
.y13{bottom:463.542000px;}
.ya8{bottom:468.444000px;}
.y133{bottom:468.792000px;}
.y2d{bottom:468.874500px;}
.yf8{bottom:470.352577px;}
.yca{bottom:472.308000px;}
.y43{bottom:473.041500px;}
.yd8{bottom:473.649000px;}
.y93{bottom:474.583500px;}
.y10f{bottom:477.504000px;}
.y6c{bottom:486.045000px;}
.y6b{bottom:486.288000px;}
.ya7{bottom:486.376500px;}
.y2c{bottom:486.807000px;}
.y42{bottom:490.974000px;}
.yd7{bottom:491.581500px;}
.y92{bottom:492.516000px;}
.y132{bottom:494.197500px;}
.y6a{bottom:496.539000px;}
.y12{bottom:496.942500px;}
.yf7{bottom:498.438100px;}
.ya6{bottom:504.309000px;}
.y2b{bottom:504.739500px;}
.y131{bottom:507.646500px;}
.y41{bottom:508.906500px;}
.yd6{bottom:509.514000px;}
.y91{bottom:510.448500px;}
.ya5{bottom:522.241500px;}
.y2a{bottom:522.672000px;}
.yc9{bottom:523.623188px;}
.yf6{bottom:526.523623px;}
.y40{bottom:526.839000px;}
.yd5{bottom:527.446500px;}
.y10e{bottom:527.940000px;}
.y90{bottom:528.381000px;}
.y130{bottom:533.050500px;}
.y69{bottom:538.468500px;}
.ya4{bottom:540.175500px;}
.y29{bottom:540.604500px;}
.y3f{bottom:544.771500px;}
.yd4{bottom:545.379000px;}
.y10d{bottom:545.872500px;}
.y12f{bottom:546.501000px;}
.y11{bottom:551.056500px;}
.yc8{bottom:551.881042px;}
.yf5{bottom:554.609146px;}
.y68{bottom:556.401000px;}
.ya3{bottom:558.108000px;}
.y28{bottom:558.537000px;}
.y3e{bottom:562.704000px;}
.yd3{bottom:563.313000px;}
.y10{bottom:568.989000px;}
.y12e{bottom:571.905000px;}
.y67{bottom:574.333500px;}
.y27{bottom:576.471000px;}
.y10c{bottom:579.273000px;}
.yc7{bottom:580.138896px;}
.y3d{bottom:580.638000px;}
.yd2{bottom:581.245500px;}
.yf4{bottom:583.632027px;}
.y12d{bottom:585.355500px;}
.y66{bottom:592.266000px;}
.y26{bottom:594.403500px;}
.yf{bottom:597.397500px;}
.y3c{bottom:598.570500px;}
.y8f{bottom:599.178000px;}
.ya2{bottom:603.106500px;}
.yc6{bottom:608.396750px;}
.y65{bottom:610.198500px;}
.y12c{bottom:610.759500px;}
.yf3{bottom:611.717550px;}
.y25{bottom:612.336000px;}
.ye{bottom:615.330000px;}
.y8e{bottom:617.110500px;}
.ya1{bottom:617.304000px;}
.y12b{bottom:624.208500px;}
.y3b{bottom:626.590500px;}
.y64{bottom:628.132500px;}
.y10b{bottom:629.709000px;}
.ya0{bottom:631.500000px;}
.yd{bottom:633.262500px;}
.y8d{bottom:635.043000px;}
.yc5{bottom:636.654604px;}
.yf2{bottom:640.740432px;}
.y63{bottom:646.065000px;}
.y10a{bottom:647.641500px;}
.y12a{bottom:649.614000px;}
.yc{bottom:651.195000px;}
.y8c{bottom:652.975500px;}
.y24{bottom:659.824500px;}
.y129{bottom:663.063000px;}
.y62{bottom:663.997500px;}
.yc4{bottom:664.912459px;}
.yf1{bottom:668.825955px;}
.yb{bottom:669.127500px;}
.y8b{bottom:670.909500px;}
.y3a{bottom:674.010000px;}
.y23{bottom:674.022000px;}
.y128{bottom:676.513500px;}
.y109{bottom:681.040500px;}
.y61{bottom:681.930000px;}
.ya{bottom:687.060000px;}
.y8a{bottom:688.842000px;}
.yc3{bottom:694.113423px;}
.yf0{bottom:696.911477px;}
.y60{bottom:699.862500px;}
.y127{bottom:701.917500px;}
.y9{bottom:704.994000px;}
.y89{bottom:706.774500px;}
.y126{bottom:715.368000px;}
.y5f{bottom:717.796500px;}
.yc2{bottom:722.371277px;}
.y8{bottom:722.926500px;}
.y88{bottom:724.707000px;}
.yef{bottom:724.997000px;}
.y125{bottom:728.817000px;}
.y108{bottom:731.476500px;}
.y5e{bottom:735.729000px;}
.y7{bottom:740.859000px;}
.y87{bottom:742.639500px;}
.yc1{bottom:751.572242px;}
.yee{bottom:753.082523px;}
.y5d{bottom:753.661500px;}
.y124{bottom:754.221000px;}
.y86{bottom:760.573500px;}
.y107{bottom:764.877000px;}
.y6{bottom:767.758500px;}
.y5c{bottom:771.594000px;}
.y85{bottom:778.506000px;}
.y123{bottom:779.626500px;}
.yc0{bottom:779.830096px;}
.yed{bottom:781.168046px;}
.y5b{bottom:789.526500px;}
.y84{bottom:796.438500px;}
.y122{bottom:805.030500px;}
.ybf{bottom:808.087950px;}
.yec{bottom:809.255918px;}
.y106{bottom:812.296500px;}
.y83{bottom:814.371000px;}
.y5a{bottom:817.546500px;}
.y121{bottom:818.481000px;}
.y82{bottom:832.303500px;}
.ybe{bottom:836.345804px;}
.yeb{bottom:837.341441px;}
.y120{bottom:843.885000px;}
.y81{bottom:850.236000px;}
.y59{bottom:860.323500px;}
.y105{bottom:863.676800px;}
.ybd{bottom:864.606022px;}
.yea{bottom:865.426964px;}
.y5{bottom:867.796500px;}
.y80{bottom:868.170000px;}
.y11f{bottom:869.290500px;}
.y58{bottom:878.256000px;}
.y7f{bottom:886.102500px;}
.y4{bottom:890.959500px;}
.y104{bottom:892.129401px;}
.ybc{bottom:892.863876px;}
.ye9{bottom:893.512487px;}
.y11e{bottom:894.694500px;}
.y57{bottom:896.188500px;}
.y7e{bottom:904.035000px;}
.y3{bottom:914.122500px;}
.y11d{bottom:920.100000px;}
.y103{bottom:921.531613px;}
.y7d{bottom:921.967500px;}
.ybb{bottom:922.062477px;}
.ye8{bottom:922.535368px;}
.y56{bottom:932.055000px;}
.y11c{bottom:933.549000px;}
.y7c{bottom:939.900000px;}
.y102{bottom:949.984214px;}
.y55{bottom:949.987500px;}
.yba{bottom:950.322695px;}
.ye7{bottom:950.620891px;}
.y7b{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.y54{bottom:967.920000px;}
.y11b{bottom:972.403500px;}
.y101{bottom:979.384045px;}
.yb9{bottom:979.521296px;}
.ye6{bottom:979.643773px;}
.y1{bottom:985.852500px;}
.h9{height:24.675533px;}
.h7{height:25.787366px;}
.h19{height:28.787846px;}
.h1a{height:29.038903px;}
.h3{height:32.804932px;}
.ha{height:32.900573px;}
.h8{height:33.187496px;}
.h2{height:41.125613px;}
.h4{height:41.484266px;}
.h15{height:41.961802px;}
.h10{height:44.831700px;}
.hb{height:49.781453px;}
.h5{height:52.040387px;}
.hc{height:54.871350px;}
.hf{height:56.029350px;}
.h1{height:59.221114px;}
.h6{height:59.737577px;}
.h17{height:64.410112px;}
.h14{height:64.805329px;}
.h18{height:65.251954px;}
.h16{height:67.673841px;}
.hd{height:81.589613px;}
.h11{height:81.595613px;}
.h13{height:85.835700px;}
.h12{height:98.869350px;}
.he{height:137.503350px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x10{left:201.774000px;}
.x1{left:204.661500px;}
.x13{left:206.539939px;}
.x1a{left:208.122000px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.x8{left:222.172500px;}
.x17{left:227.019000px;}
.x11{left:230.595162px;}
.x18{left:233.020500px;}
.x14{left:240.031500px;}
.x16{left:243.922500px;}
.x2{left:255.553500px;}
.xb{left:273.460500px;}
.xc{left:291.816000px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.xd{left:369.936000px;}
.x3{left:405.975000px;}
.xe{left:438.442500px;}
.x19{left:450.964500px;}
.xa{left:454.699500px;}
.x12{left:468.939702px;}
.xf{left:473.692500px;}
.x15{left:487.831463px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-13.472000pt;}
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.973333pt;}
.vc{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.v9{vertical-align:20.314667pt;}
.va{vertical-align:21.946667pt;}
.v7{vertical-align:22.981333pt;}
.vb{vertical-align:28.480000pt;}
.v6{vertical-align:35.968000pt;}
.v8{vertical-align:72.421333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000015pt;}
.ls16{letter-spacing:0.003733pt;}
.ls13{letter-spacing:2.623067pt;}
.ls7{letter-spacing:2.628400pt;}
.ls27{letter-spacing:2.653337pt;}
.ls17{letter-spacing:2.654394pt;}
.ls21{letter-spacing:2.655200pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls1a{letter-spacing:2.658670pt;}
.ls11{letter-spacing:2.659727pt;}
.lsa{letter-spacing:2.660533pt;}
.ls55{letter-spacing:3.085505pt;}
.ls9{letter-spacing:3.986422pt;}
.ls1c{letter-spacing:3.987733pt;}
.ls51{letter-spacing:4.117536pt;}
.ls4d{letter-spacing:4.127583pt;}
.ls34{letter-spacing:4.142801pt;}
.ls31{letter-spacing:4.152910pt;}
.ls50{letter-spacing:4.154345pt;}
.ls4f{letter-spacing:4.159321pt;}
.ls4e{letter-spacing:4.160860pt;}
.ls4c{letter-spacing:4.167674pt;}
.ls33{letter-spacing:4.179836pt;}
.ls54{letter-spacing:4.181531pt;}
.ls30{letter-spacing:4.184843pt;}
.ls32{letter-spacing:4.186391pt;}
.ls53{letter-spacing:4.214166pt;}
.ls3a{letter-spacing:4.336732pt;}
.ls39{letter-spacing:4.370579pt;}
.ls3{letter-spacing:4.408530pt;}
.ls5{letter-spacing:5.861812pt;}
.ls12{letter-spacing:6.377067pt;}
.ls19{letter-spacing:7.333812pt;}
.ls2e{letter-spacing:8.811145pt;}
.ls2b{letter-spacing:8.816479pt;}
.ls29{letter-spacing:9.621812pt;}
.ls46{letter-spacing:9.931145pt;}
.ls44{letter-spacing:9.936479pt;}
.ls41{letter-spacing:10.032479pt;}
.ls1d{letter-spacing:10.034670pt;}
.ls18{letter-spacing:10.036533pt;}
.ls2c{letter-spacing:10.048479pt;}
.ls2f{letter-spacing:10.053812pt;}
.ls2d{letter-spacing:10.094400pt;}
.ls3c{letter-spacing:10.667145pt;}
.ls2a{letter-spacing:10.933812pt;}
.ls28{letter-spacing:10.974400pt;}
.ls45{letter-spacing:11.259145pt;}
.ls47{letter-spacing:11.264479pt;}
.ls1e{letter-spacing:11.323145pt;}
.ls42{letter-spacing:11.371145pt;}
.ls43{letter-spacing:11.417067pt;}
.ls4a{letter-spacing:11.701812pt;}
.ls48{letter-spacing:11.707145pt;}
.ls20{letter-spacing:11.760479pt;}
.ls37{letter-spacing:11.765812pt;}
.ls1f{letter-spacing:11.806400pt;}
.ls3d{letter-spacing:12.059145pt;}
.ls3b{letter-spacing:12.099733pt;}
.ls49{letter-spacing:13.173812pt;}
.ls4b{letter-spacing:13.179145pt;}
.ls38{letter-spacing:13.237812pt;}
.ls36{letter-spacing:13.243145pt;}
.ls40{letter-spacing:13.264479pt;}
.ls3e{letter-spacing:13.269812pt;}
.ls4{letter-spacing:15.749833pt;}
.lsd{letter-spacing:15.908400pt;}
.ls3f{letter-spacing:15.941812pt;}
.ls8{letter-spacing:16.626670pt;}
.lsc{letter-spacing:17.067730pt;}
.lsb{letter-spacing:17.071200pt;}
.ls23{letter-spacing:20.127207pt;}
.ls25{letter-spacing:22.779730pt;}
.ls24{letter-spacing:24.591207pt;}
.ls52{letter-spacing:24.902420pt;}
.ls35{letter-spacing:25.055220pt;}
.ls26{letter-spacing:26.868237pt;}
.lse{letter-spacing:55.791200pt;}
.lsf{letter-spacing:59.467145pt;}
.ls15{letter-spacing:79.881874pt;}
.ls10{letter-spacing:85.785874pt;}
.ls22{letter-spacing:262.185067pt;}
.ls1b{letter-spacing:533.795733pt;}
.ls14{letter-spacing:773.795733pt;}
.ws8b{word-spacing:-25.118345pt;}
.wsb4{word-spacing:-24.965160pt;}
.wsba{word-spacing:-19.128267pt;}
.ws28{word-spacing:-13.283467pt;}
.ws4a{word-spacing:-9.829733pt;}
.ws86{word-spacing:-4.188998pt;}
.ws88{word-spacing:-4.186391pt;}
.wsb0{word-spacing:-4.160860pt;}
.ws80{word-spacing:-3.188032pt;}
.ws83{word-spacing:-3.187652pt;}
.ws84{word-spacing:-3.184697pt;}
.ws75{word-spacing:-2.816095pt;}
.ws70{word-spacing:-2.709827pt;}
.ws9b{word-spacing:-2.444158pt;}
.ws36{word-spacing:-2.337890pt;}
.ws81{word-spacing:-2.332739pt;}
.ws4d{word-spacing:-2.284756pt;}
.ws29{word-spacing:-2.231622pt;}
.ws2b{word-spacing:-2.125355pt;}
.ws2d{word-spacing:-2.072221pt;}
.wsa6{word-spacing:-1.969217pt;}
.wsa5{word-spacing:-1.965953pt;}
.wscb{word-spacing:-1.934067pt;}
.ws76{word-spacing:-1.912819pt;}
.wsa2{word-spacing:-1.895447pt;}
.wsa1{word-spacing:-1.894151pt;}
.wsa3{word-spacing:-1.879708pt;}
.wsa4{word-spacing:-1.859685pt;}
.ws4e{word-spacing:-1.700284pt;}
.wsd3{word-spacing:-1.673712pt;}
.wsc9{word-spacing:-1.599325pt;}
.ws2a{word-spacing:-1.594016pt;}
.ws82{word-spacing:-1.540882pt;}
.ws27{word-spacing:-1.487748pt;}
.ws21{word-spacing:-1.381481pt;}
.ws99{word-spacing:-1.328347pt;}
.wsaa{word-spacing:-1.275213pt;}
.wsac{word-spacing:-1.222079pt;}
.ws9e{word-spacing:-1.195247pt;}
.ws7f{word-spacing:-1.168945pt;}
.ws24{word-spacing:-1.062677pt;}
.ws7a{word-spacing:-0.956410pt;}
.ws4b{word-spacing:-0.903276pt;}
.ws61{word-spacing:-0.850142pt;}
.ws6f{word-spacing:-0.797008pt;}
.wsc4{word-spacing:-0.706678pt;}
.ws16{word-spacing:-0.637606pt;}
.wsbf{word-spacing:-0.595098pt;}
.ws34{word-spacing:-0.584473pt;}
.wsbb{word-spacing:-0.478205pt;}
.ws7{word-spacing:-0.425071pt;}
.ws32{word-spacing:-0.318803pt;}
.ws7e{word-spacing:-0.212535pt;}
.wsa7{word-spacing:-0.076941pt;}
.wsa8{word-spacing:-0.055097pt;}
.ws14{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.042507pt;}
.wscd{word-spacing:-0.037194pt;}
.ws89{word-spacing:-0.003647pt;}
.wsb1{word-spacing:-0.003625pt;}
.ws8f{word-spacing:-0.001007pt;}
.ws0{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.004274pt;}
.wsad{word-spacing:0.011004pt;}
.ws85{word-spacing:0.011072pt;}
.wsb9{word-spacing:0.106268pt;}
.wscf{word-spacing:0.111581pt;}
.ws2e{word-spacing:0.212535pt;}
.wsd1{word-spacing:0.297549pt;}
.ws10{word-spacing:0.318803pt;}
.wsbd{word-spacing:0.371936pt;}
.ws98{word-spacing:0.371937pt;}
.ws31{word-spacing:0.425071pt;}
.ws79{word-spacing:0.467579pt;}
.ws15{word-spacing:0.478205pt;}
.ws1f{word-spacing:0.584473pt;}
.wsd4{word-spacing:0.632291pt;}
.wsd2{word-spacing:0.669485pt;}
.ws26{word-spacing:0.690740pt;}
.ws6d{word-spacing:0.743874pt;}
.wsbe{word-spacing:0.781066pt;}
.ws4f{word-spacing:0.797008pt;}
.ws45{word-spacing:0.850142pt;}
.ws64{word-spacing:0.903276pt;}
.ws9c{word-spacing:0.956410pt;}
.ws77{word-spacing:1.009543pt;}
.ws1a{word-spacing:1.020173pt;}
.ws65{word-spacing:1.062677pt;}
.ws53{word-spacing:1.115811pt;}
.wsc1{word-spacing:1.153002pt;}
.ws30{word-spacing:1.168945pt;}
.ws5d{word-spacing:1.328347pt;}
.ws18{word-spacing:1.434614pt;}
.wsd0{word-spacing:1.450550pt;}
.ws67{word-spacing:1.487748pt;}
.ws39{word-spacing:1.540882pt;}
.ws74{word-spacing:1.594016pt;}
.ws9d{word-spacing:1.700284pt;}
.ws2f{word-spacing:1.753418pt;}
.ws6e{word-spacing:1.806551pt;}
.ws66{word-spacing:1.859685pt;}
.wsc0{word-spacing:1.934067pt;}
.ws43{word-spacing:1.965953pt;}
.ws22{word-spacing:2.019087pt;}
.ws25{word-spacing:2.072221pt;}
.ws6b{word-spacing:2.178489pt;}
.ws73{word-spacing:2.284756pt;}
.ws48{word-spacing:2.444158pt;}
.ws13{word-spacing:2.497292pt;}
.ws93{word-spacing:2.550426pt;}
.ws69{word-spacing:2.603559pt;}
.ws3e{word-spacing:2.656693pt;}
.wsa0{word-spacing:2.709827pt;}
.wsc3{word-spacing:2.715133pt;}
.ws9f{word-spacing:2.717596pt;}
.ws50{word-spacing:2.816095pt;}
.ws42{word-spacing:2.869229pt;}
.ws68{word-spacing:2.922363pt;}
.wsc8{word-spacing:2.975488pt;}
.ws44{word-spacing:2.975497pt;}
.ws40{word-spacing:3.081764pt;}
.wsca{word-spacing:3.124262pt;}
.wse{word-spacing:3.188032pt;}
.ws3a{word-spacing:3.241166pt;}
.ws78{word-spacing:3.273054pt;}
.ws11{word-spacing:3.294300pt;}
.ws2c{word-spacing:3.347434pt;}
.ws3d{word-spacing:3.400567pt;}
.wsc2{word-spacing:3.421811pt;}
.ws33{word-spacing:3.453701pt;}
.wsc6{word-spacing:3.496198pt;}
.ws2{word-spacing:3.506835pt;}
.ws9{word-spacing:3.559969pt;}
.wsc7{word-spacing:3.607779pt;}
.ws38{word-spacing:3.613103pt;}
.ws1e{word-spacing:3.772505pt;}
.ws12{word-spacing:3.878772pt;}
.wsd{word-spacing:4.038174pt;}
.ws62{word-spacing:4.091308pt;}
.ws3b{word-spacing:4.144442pt;}
.wsae{word-spacing:4.156453pt;}
.wsb2{word-spacing:4.164806pt;}
.wsce{word-spacing:4.165683pt;}
.ws3{word-spacing:4.250709pt;}
.ws59{word-spacing:4.303843pt;}
.wsc5{word-spacing:4.388845pt;}
.ws7c{word-spacing:4.410111pt;}
.ws23{word-spacing:4.463245pt;}
.ws47{word-spacing:4.516379pt;}
.ws35{word-spacing:4.782048pt;}
.ws5f{word-spacing:4.888316pt;}
.ws60{word-spacing:4.941450pt;}
.ws95{word-spacing:4.994583pt;}
.ws41{word-spacing:5.047717pt;}
.ws63{word-spacing:5.153985pt;}
.ws1d{word-spacing:5.313387pt;}
.ws6c{word-spacing:5.366521pt;}
.wsa{word-spacing:5.419654pt;}
.ws7b{word-spacing:5.685324pt;}
.wsab{word-spacing:5.738458pt;}
.ws6a{word-spacing:5.844725pt;}
.ws4{word-spacing:5.897859pt;}
.ws92{word-spacing:6.163529pt;}
.ws5c{word-spacing:6.429198pt;}
.ws5{word-spacing:6.482332pt;}
.ws94{word-spacing:6.535466pt;}
.wsbc{word-spacing:6.694867pt;}
.ws57{word-spacing:6.801135pt;}
.ws55{word-spacing:6.839230pt;}
.ws54{word-spacing:6.842764pt;}
.ws56{word-spacing:6.854269pt;}
.wsf{word-spacing:6.907403pt;}
.ws5b{word-spacing:7.173072pt;}
.ws97{word-spacing:7.598143pt;}
.ws6{word-spacing:7.863812pt;}
.wsb3{word-spacing:8.255167pt;}
.wsaf{word-spacing:8.270168pt;}
.ws8a{word-spacing:8.305820pt;}
.ws87{word-spacing:8.320913pt;}
.ws37{word-spacing:8.501419pt;}
.ws46{word-spacing:8.979623pt;}
.ws9a{word-spacing:9.192159pt;}
.ws20{word-spacing:9.617230pt;}
.ws19{word-spacing:10.579223pt;}
.ws1{word-spacing:10.584293pt;}
.ws3c{word-spacing:12.179370pt;}
.ws1b{word-spacing:12.794667pt;}
.ws3f{word-spacing:13.230333pt;}
.ws72{word-spacing:13.283467pt;}
.wscc{word-spacing:13.352502pt;}
.ws17{word-spacing:14.659200pt;}
.ws8d{word-spacing:14.908919pt;}
.wsb6{word-spacing:14.914253pt;}
.ws8{word-spacing:17.548414pt;}
.ws51{word-spacing:17.662614pt;}
.ws71{word-spacing:17.943081pt;}
.ws5e{word-spacing:18.275948pt;}
.ws52{word-spacing:18.510614pt;}
.ws7d{word-spacing:18.636414pt;}
.wsc{word-spacing:19.128267pt;}
.ws49{word-spacing:19.417281pt;}
.ws4c{word-spacing:19.449281pt;}
.wsa9{word-spacing:20.375081pt;}
.ws58{word-spacing:21.257281pt;}
.ws5a{word-spacing:21.470614pt;}
.ws96{word-spacing:22.961748pt;}
.wsb{word-spacing:32.892143pt;}
.wsb5{word-spacing:79.056339pt;}
.ws8c{word-spacing:79.541425pt;}
.wsb7{word-spacing:80.089607pt;}
.ws90{word-spacing:83.062208pt;}
.wsb8{word-spacing:117.605265pt;}
.ws91{word-spacing:432.797820pt;}
._24{margin-left:-1929.164237pt;}
._35{margin-left:-1928.096497pt;}
._f{margin-left:-1914.659052pt;}
._22{margin-left:-1913.754554pt;}
._c{margin-left:-1900.950873pt;}
._4b{margin-left:-1818.859151pt;}
._46{margin-left:-1713.196389pt;}
._26{margin-left:-1690.221099pt;}
._42{margin-left:-1628.086499pt;}
._44{margin-left:-1168.244768pt;}
._34{margin-left:-1034.559959pt;}
._28{margin-left:-884.881857pt;}
._41{margin-left:-837.045179pt;}
._48{margin-left:-764.261123pt;}
._27{margin-left:-743.386370pt;}
._1f{margin-left:-730.655851pt;}
._45{margin-left:-523.581338pt;}
._4a{margin-left:-504.984538pt;}
._49{margin-left:-486.387738pt;}
._29{margin-left:-9.496959pt;}
._1{margin-left:-8.492950pt;}
._3{margin-left:-5.897859pt;}
._25{margin-left:-4.941450pt;}
._5{margin-left:-4.038174pt;}
._2{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._15{width:2.635446pt;}
._20{width:4.237525pt;}
._23{width:7.214139pt;}
._47{width:9.489597pt;}
._43{width:10.839309pt;}
._1d{width:12.008254pt;}
._19{width:12.964663pt;}
._11{width:13.937259pt;}
._10{width:15.408821pt;}
._9{width:16.632249pt;}
._d{width:18.224916pt;}
._1a{width:19.266345pt;}
._21{width:20.350270pt;}
._7{width:21.359814pt;}
._1c{width:22.316224pt;}
._18{width:23.910240pt;}
._e{width:24.813515pt;}
._a{width:26.035595pt;}
._17{width:27.735879pt;}
._4{width:29.064225pt;}
._1e{width:30.020635pt;}
._1b{width:31.242714pt;}
._16{width:32.517926pt;}
._6{width:34.111942pt;}
._8{width:35.227752pt;}
._b{width:36.609234pt;}
._13{width:38.809074pt;}
._14{width:50.753597pt;}
._38{width:123.541611pt;}
._36{width:134.562211pt;}
._2f{width:135.507322pt;}
._3c{width:143.632886pt;}
._2c{width:154.525832pt;}
._2e{width:156.236104pt;}
._2d{width:161.044306pt;}
._3b{width:164.319296pt;}
._40{width:165.277865pt;}
._2a{width:166.450898pt;}
._32{width:175.457786pt;}
._2b{width:177.371230pt;}
._3a{width:185.241486pt;}
._33{width:196.592911pt;}
._31{width:217.321693pt;}
._30{width:238.253647pt;}
._3d{width:261.600202pt;}
._3f{width:266.177148pt;}
._3e{width:303.208801pt;}
._37{width:307.785747pt;}
._39{width:328.590047pt;}
._12{width:983.021501pt;}
.fs4{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fsf{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:63.761067pt;}
.fsc{font-size:66.573926pt;}
.fs8{font-size:66.982421pt;}
.fse{font-size:67.444049pt;}
.fsa{font-size:69.947298pt;}
.fs0{font-size:76.513067pt;}
.fsb{font-size:83.217199pt;}
.fs7{font-size:83.727816pt;}
.fsd{font-size:84.304850pt;}
.fs9{font-size:87.433903pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:119.153333pt;}
.yb8{bottom:161.350667pt;}
.y143{bottom:161.660000pt;}
.y53{bottom:165.437333pt;}
.y9f{bottom:167.338667pt;}
.y21{bottom:170.061333pt;}
.ye5{bottom:171.157333pt;}
.y142{bottom:173.616000pt;}
.yb7{bottom:177.290667pt;}
.y11a{bottom:178.969333pt;}
.y100{bottom:180.586667pt;}
.y52{bottom:181.377333pt;}
.y9e{bottom:183.280000pt;}
.y20{bottom:186.538667pt;}
.ye4{bottom:187.098667pt;}
.yd1{bottom:188.850667pt;}
.y119{bottom:190.924000pt;}
.yb6{bottom:193.230667pt;}
.y1f{bottom:195.760000pt;}
.y141{bottom:196.197333pt;}
.y7a{bottom:196.974667pt;}
.y51{bottom:197.317333pt;}
.y9d{bottom:199.220000pt;}
.y118{bottom:202.880000pt;}
.ye3{bottom:203.038667pt;}
.y140{bottom:208.153333pt;}
.yb5{bottom:209.172000pt;}
.y1e{bottom:212.236000pt;}
.y79{bottom:212.914667pt;}
.y50{bottom:213.257333pt;}
.y9c{bottom:215.160000pt;}
.ye2{bottom:218.978667pt;}
.y13f{bottom:220.108000pt;}
.yff{bottom:222.737333pt;}
.yb4{bottom:225.112000pt;}
.y117{bottom:225.461333pt;}
.y39{bottom:225.494667pt;}
.y78{bottom:228.854667pt;}
.y4f{bottom:229.197333pt;}
.y9b{bottom:231.100000pt;}
.yd0{bottom:234.834113pt;}
.y116{bottom:237.417333pt;}
.yb3{bottom:241.052000pt;}
.y38{bottom:241.434667pt;}
.y13e{bottom:242.689333pt;}
.y77{bottom:244.796000pt;}
.y4e{bottom:245.138667pt;}
.y9a{bottom:247.040000pt;}
.ye1{bottom:248.666667pt;}
.y1d{bottom:252.634667pt;}
.y13d{bottom:254.645333pt;}
.yb2{bottom:256.992000pt;}
.y37{bottom:257.374667pt;}
.y76{bottom:260.736000pt;}
.ycf{bottom:261.064020pt;}
.y4d{bottom:261.078667pt;}
.y115{bottom:264.449333pt;}
.y13c{bottom:266.600000pt;}
.yfe{bottom:268.299636pt;}
.y1c{bottom:268.576000pt;}
.y99{bottom:271.946667pt;}
.yb1{bottom:272.932000pt;}
.y36{bottom:273.314667pt;}
.y75{bottom:276.676000pt;}
.y4c{bottom:277.018667pt;}
.y1b{bottom:284.516000pt;}
.yce{bottom:288.169355pt;}
.yb0{bottom:288.872000pt;}
.y13b{bottom:289.182667pt;}
.y35{bottom:289.254667pt;}
.y74{bottom:292.616000pt;}
.y4b{bottom:292.958667pt;}
.yfd{bottom:293.264545pt;}
.ye0{bottom:293.498667pt;}
.y98{bottom:296.853333pt;}
.y1a{bottom:300.456000pt;}
.y13a{bottom:301.137333pt;}
.y114{bottom:302.108000pt;}
.yaf{bottom:304.813333pt;}
.y34{bottom:305.194667pt;}
.y73{bottom:308.556000pt;}
.y4a{bottom:308.898667pt;}
.ydf{bottom:309.440000pt;}
.ycd{bottom:314.399263pt;}
.y19{bottom:316.396000pt;}
.yfc{bottom:318.229455pt;}
.yae{bottom:320.753333pt;}
.y33{bottom:321.136000pt;}
.y139{bottom:323.720000pt;}
.y72{bottom:324.497333pt;}
.y49{bottom:324.840000pt;}
.yde{bottom:325.380000pt;}
.y97{bottom:329.198667pt;}
.y18{bottom:332.336000pt;}
.y138{bottom:335.674667pt;}
.yad{bottom:336.693333pt;}
.y32{bottom:337.076000pt;}
.y71{bottom:340.437333pt;}
.y48{bottom:340.780000pt;}
.ydd{bottom:341.320000pt;}
.ycc{bottom:341.502404pt;}
.yfb{bottom:343.194364pt;}
.y113{bottom:346.938667pt;}
.y17{bottom:348.276000pt;}
.yac{bottom:352.633333pt;}
.y31{bottom:353.016000pt;}
.y47{bottom:356.720000pt;}
.ydc{bottom:357.260000pt;}
.y137{bottom:358.256000pt;}
.y112{bottom:362.880000pt;}
.y70{bottom:364.108000pt;}
.y16{bottom:364.217333pt;}
.yfa{bottom:368.159273pt;}
.yab{bottom:368.573333pt;}
.y30{bottom:368.956000pt;}
.y136{bottom:370.212000pt;}
.y46{bottom:372.660000pt;}
.ydb{bottom:373.200000pt;}
.y6f{bottom:373.220000pt;}
.y96{bottom:374.030667pt;}
.ycb{bottom:377.677333pt;}
.y111{bottom:378.820000pt;}
.y15{bottom:380.157333pt;}
.yaa{bottom:384.514667pt;}
.y2f{bottom:384.896000pt;}
.y45{bottom:388.600000pt;}
.yda{bottom:389.140000pt;}
.y95{bottom:389.970667pt;}
.y135{bottom:392.793333pt;}
.yf9{bottom:393.124182pt;}
.y110{bottom:394.760000pt;}
.y14{bottom:396.097333pt;}
.y6e{bottom:396.413333pt;}
.ya9{bottom:400.454667pt;}
.y2e{bottom:400.836000pt;}
.y44{bottom:404.540000pt;}
.y134{bottom:404.749333pt;}
.yd9{bottom:405.081333pt;}
.y6d{bottom:405.525333pt;}
.y94{bottom:405.910667pt;}
.y13{bottom:412.037333pt;}
.ya8{bottom:416.394667pt;}
.y133{bottom:416.704000pt;}
.y2d{bottom:416.777333pt;}
.yf8{bottom:418.091180pt;}
.yca{bottom:419.829333pt;}
.y43{bottom:420.481333pt;}
.yd8{bottom:421.021333pt;}
.y93{bottom:421.852000pt;}
.y10f{bottom:424.448000pt;}
.y6c{bottom:432.040000pt;}
.y6b{bottom:432.256000pt;}
.ya7{bottom:432.334667pt;}
.y2c{bottom:432.717333pt;}
.y42{bottom:436.421333pt;}
.yd7{bottom:436.961333pt;}
.y92{bottom:437.792000pt;}
.y132{bottom:439.286667pt;}
.y6a{bottom:441.368000pt;}
.y12{bottom:441.726667pt;}
.yf7{bottom:443.056089pt;}
.ya6{bottom:448.274667pt;}
.y2b{bottom:448.657333pt;}
.y131{bottom:451.241333pt;}
.y41{bottom:452.361333pt;}
.yd6{bottom:452.901333pt;}
.y91{bottom:453.732000pt;}
.ya5{bottom:464.214667pt;}
.y2a{bottom:464.597333pt;}
.yc9{bottom:465.442834pt;}
.yf6{bottom:468.020998pt;}
.y40{bottom:468.301333pt;}
.yd5{bottom:468.841333pt;}
.y10e{bottom:469.280000pt;}
.y90{bottom:469.672000pt;}
.y130{bottom:473.822667pt;}
.y69{bottom:478.638667pt;}
.ya4{bottom:480.156000pt;}
.y29{bottom:480.537333pt;}
.y3f{bottom:484.241333pt;}
.yd4{bottom:484.781333pt;}
.y10d{bottom:485.220000pt;}
.y12f{bottom:485.778667pt;}
.y11{bottom:489.828000pt;}
.yc8{bottom:490.560926pt;}
.yf5{bottom:492.985907pt;}
.y68{bottom:494.578667pt;}
.ya3{bottom:496.096000pt;}
.y28{bottom:496.477333pt;}
.y3e{bottom:500.181333pt;}
.yd3{bottom:500.722667pt;}
.y10{bottom:505.768000pt;}
.y12e{bottom:508.360000pt;}
.y67{bottom:510.518667pt;}
.y27{bottom:512.418667pt;}
.y10c{bottom:514.909333pt;}
.yc7{bottom:515.679019pt;}
.y3d{bottom:516.122667pt;}
.yd2{bottom:516.662667pt;}
.yf4{bottom:518.784024pt;}
.y12d{bottom:520.316000pt;}
.y66{bottom:526.458667pt;}
.y26{bottom:528.358667pt;}
.yf{bottom:531.020000pt;}
.y3c{bottom:532.062667pt;}
.y8f{bottom:532.602667pt;}
.ya2{bottom:536.094667pt;}
.yc6{bottom:540.797111pt;}
.y65{bottom:542.398667pt;}
.y12c{bottom:542.897333pt;}
.yf3{bottom:543.748933pt;}
.y25{bottom:544.298667pt;}
.ye{bottom:546.960000pt;}
.y8e{bottom:548.542667pt;}
.ya1{bottom:548.714667pt;}
.y12b{bottom:554.852000pt;}
.y3b{bottom:556.969333pt;}
.y64{bottom:558.340000pt;}
.y10b{bottom:559.741333pt;}
.ya0{bottom:561.333333pt;}
.yd{bottom:562.900000pt;}
.y8d{bottom:564.482667pt;}
.yc5{bottom:565.915204pt;}
.yf2{bottom:569.547050pt;}
.y63{bottom:574.280000pt;}
.y10a{bottom:575.681333pt;}
.y12a{bottom:577.434667pt;}
.yc{bottom:578.840000pt;}
.y8c{bottom:580.422667pt;}
.y24{bottom:586.510667pt;}
.y129{bottom:589.389333pt;}
.y62{bottom:590.220000pt;}
.yc4{bottom:591.033297pt;}
.yf1{bottom:594.511960pt;}
.yb{bottom:594.780000pt;}
.y8b{bottom:596.364000pt;}
.y3a{bottom:599.120000pt;}
.y23{bottom:599.130667pt;}
.y128{bottom:601.345333pt;}
.y109{bottom:605.369333pt;}
.y61{bottom:606.160000pt;}
.ya{bottom:610.720000pt;}
.y8a{bottom:612.304000pt;}
.yc3{bottom:616.989709pt;}
.yf0{bottom:619.476869pt;}
.y60{bottom:622.100000pt;}
.y127{bottom:623.926667pt;}
.y9{bottom:626.661333pt;}
.y89{bottom:628.244000pt;}
.y126{bottom:635.882667pt;}
.y5f{bottom:638.041333pt;}
.yc2{bottom:642.107802pt;}
.y8{bottom:642.601333pt;}
.y88{bottom:644.184000pt;}
.yef{bottom:644.441778pt;}
.y125{bottom:647.837333pt;}
.y108{bottom:650.201333pt;}
.y5e{bottom:653.981333pt;}
.y7{bottom:658.541333pt;}
.y87{bottom:660.124000pt;}
.yc1{bottom:668.064215pt;}
.yee{bottom:669.406687pt;}
.y5d{bottom:669.921333pt;}
.y124{bottom:670.418667pt;}
.y86{bottom:676.065333pt;}
.y107{bottom:679.890667pt;}
.y6{bottom:682.452000pt;}
.y5c{bottom:685.861333pt;}
.y85{bottom:692.005333pt;}
.y123{bottom:693.001333pt;}
.yc0{bottom:693.182308pt;}
.yed{bottom:694.371596pt;}
.y5b{bottom:701.801333pt;}
.y84{bottom:707.945333pt;}
.y122{bottom:715.582667pt;}
.ybf{bottom:718.300400pt;}
.yec{bottom:719.338594pt;}
.y106{bottom:722.041333pt;}
.y83{bottom:723.885333pt;}
.y5a{bottom:726.708000pt;}
.y121{bottom:727.538667pt;}
.y82{bottom:739.825333pt;}
.ybe{bottom:743.418493pt;}
.yeb{bottom:744.303503pt;}
.y120{bottom:750.120000pt;}
.y81{bottom:755.765333pt;}
.y59{bottom:764.732000pt;}
.y105{bottom:767.712711pt;}
.ybd{bottom:768.538686pt;}
.yea{bottom:769.268412pt;}
.y5{bottom:771.374667pt;}
.y80{bottom:771.706667pt;}
.y11f{bottom:772.702667pt;}
.y58{bottom:780.672000pt;}
.y7f{bottom:787.646667pt;}
.y4{bottom:791.964000pt;}
.y104{bottom:793.003912pt;}
.ybc{bottom:793.656779pt;}
.ye9{bottom:794.233321pt;}
.y11e{bottom:795.284000pt;}
.y57{bottom:796.612000pt;}
.y7e{bottom:803.586667pt;}
.y3{bottom:812.553333pt;}
.y11d{bottom:817.866667pt;}
.y103{bottom:819.139211pt;}
.y7d{bottom:819.526667pt;}
.ybb{bottom:819.611091pt;}
.ye8{bottom:820.031438pt;}
.y56{bottom:828.493333pt;}
.y11c{bottom:829.821333pt;}
.y7c{bottom:835.466667pt;}
.y102{bottom:844.430412pt;}
.y55{bottom:844.433333pt;}
.yba{bottom:844.731284pt;}
.ye7{bottom:844.996348pt;}
.y7b{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.y54{bottom:860.373333pt;}
.y11b{bottom:864.358667pt;}
.y101{bottom:870.563595pt;}
.yb9{bottom:870.685596pt;}
.ye6{bottom:870.794465pt;}
.y1{bottom:876.313333pt;}
.h9{height:21.933807pt;}
.h7{height:22.922103pt;}
.h19{height:25.589197pt;}
.h1a{height:25.812358pt;}
.h3{height:29.159939pt;}
.ha{height:29.244954pt;}
.h8{height:29.499997pt;}
.h2{height:36.556100pt;}
.h4{height:36.874903pt;}
.h15{height:37.299379pt;}
.h10{height:39.850400pt;}
.hb{height:44.250180pt;}
.h5{height:46.258122pt;}
.hc{height:48.774533pt;}
.hf{height:49.803867pt;}
.h1{height:52.640990pt;}
.h6{height:53.100068pt;}
.h17{height:57.253433pt;}
.h14{height:57.604737pt;}
.h18{height:58.001736pt;}
.h16{height:60.154525pt;}
.hd{height:72.524100pt;}
.h11{height:72.529434pt;}
.h13{height:76.298400pt;}
.h12{height:87.883867pt;}
.he{height:122.225200pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x10{left:179.354667pt;}
.x1{left:181.921333pt;}
.x13{left:183.591057pt;}
.x1a{left:184.997333pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.x8{left:197.486667pt;}
.x17{left:201.794667pt;}
.x11{left:204.973477pt;}
.x18{left:207.129333pt;}
.x14{left:213.361333pt;}
.x16{left:216.820000pt;}
.x2{left:227.158667pt;}
.xb{left:243.076000pt;}
.xc{left:259.392000pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.xd{left:328.832000pt;}
.x3{left:360.866667pt;}
.xe{left:389.726667pt;}
.x19{left:400.857333pt;}
.xa{left:404.177333pt;}
.x12{left:416.835291pt;}
.xf{left:421.060000pt;}
.x15{left:433.627967pt;}
}




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