
    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_79e0ca1bfd8f2da68c0a786a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d52eb5a80284ca82906f062.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.881000;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_682ef43d35a4d05ab02d1c23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.751000;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_ef06b02035ba73e6adffd197.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c234ca07ffd878bccdb8da39.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_978edcc532849114152a5398.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.694000;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_3720d7249e8b7c05edab86a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.667000;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_983f3f522ff487c0ea8d2177.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;}
.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);}
.v4{vertical-align:-17.359200px;}
.v5{vertical-align:-8.968800px;}
.v8{vertical-align:-7.173450px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.243334px;}
.vd{vertical-align:3.226802px;}
.vc{vertical-align:10.789802px;}
.v7{vertical-align:17.358750px;}
.v3{vertical-align:19.519029px;}
.v6{vertical-align:21.678311px;}
.vb{vertical-align:25.768800px;}
.v2{vertical-align:28.208400px;}
.va{vertical-align:41.902696px;}
.v9{vertical-align:44.831700px;}
.ve{vertical-align:51.203779px;}
.ls19{letter-spacing:-0.537984px;}
.ls9{letter-spacing:-0.011955px;}
.lsa{letter-spacing:-0.005978px;}
.ls8{letter-spacing:-0.005380px;}
.ls18{letter-spacing:-0.004782px;}
.ls7{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000029px;}
.ls1a{letter-spacing:0.000242px;}
.ls4a{letter-spacing:0.000292px;}
.ls34{letter-spacing:0.000565px;}
.ls14{letter-spacing:0.000881px;}
.ls26{letter-spacing:0.001613px;}
.ls2b{letter-spacing:0.001701px;}
.ls2e{letter-spacing:0.001844px;}
.ls20{letter-spacing:0.002226px;}
.ls2a{letter-spacing:0.002301px;}
.ls37{letter-spacing:0.002306px;}
.ls40{letter-spacing:0.002615px;}
.ls3a{letter-spacing:0.002906px;}
.ls24{letter-spacing:0.003929px;}
.ls31{letter-spacing:0.006687px;}
.ls2f{letter-spacing:0.006764px;}
.ls30{letter-spacing:0.010721px;}
.ls28{letter-spacing:2.822680px;}
.ls23{letter-spacing:2.823842px;}
.ls1e{letter-spacing:2.825438px;}
.ls1{letter-spacing:2.988600px;}
.ls21{letter-spacing:2.988763px;}
.ls32{letter-spacing:2.988883px;}
.ls4b{letter-spacing:2.988912px;}
.ls0{letter-spacing:2.989200px;}
.ls1f{letter-spacing:2.989363px;}
.ls33{letter-spacing:3.170400px;}
.ls46{letter-spacing:3.521771px;}
.ls3e{letter-spacing:3.526765px;}
.ls4c{letter-spacing:3.529005px;}
.ls11{letter-spacing:3.530408px;}
.ls1c{letter-spacing:3.531345px;}
.lsf{letter-spacing:3.531540px;}
.ls44{letter-spacing:3.532820px;}
.ls42{letter-spacing:6.120600px;}
.ls15{letter-spacing:7.971694px;}
.ls2{letter-spacing:8.968193px;}
.lse{letter-spacing:9.961166px;}
.lsd{letter-spacing:9.964593px;}
.ls16{letter-spacing:10.958832px;}
.ls22{letter-spacing:10.959000px;}
.ls3{letter-spacing:11.954832px;}
.ls25{letter-spacing:11.955150px;}
.ls47{letter-spacing:12.951312px;}
.lsc{letter-spacing:12.951912px;}
.ls49{letter-spacing:12.952200px;}
.ls17{letter-spacing:12.988075px;}
.ls36{letter-spacing:13.282138px;}
.ls2d{letter-spacing:14.943600px;}
.ls4d{letter-spacing:14.944032px;}
.ls29{letter-spacing:14.944200px;}
.ls12{letter-spacing:15.031200px;}
.ls45{letter-spacing:16.079400px;}
.ls10{letter-spacing:16.276200px;}
.ls35{letter-spacing:16.453800px;}
.ls39{letter-spacing:16.499400px;}
.ls13{letter-spacing:16.558200px;}
.ls38{letter-spacing:16.605662px;}
.lsb{letter-spacing:19.757712px;}
.ls3c{letter-spacing:20.132422px;}
.ls1b{letter-spacing:20.589000px;}
.ls4{letter-spacing:20.921822px;}
.ls1d{letter-spacing:22.350000px;}
.ls5{letter-spacing:23.910600px;}
.ls6{letter-spacing:24.054000px;}
.ls48{letter-spacing:26.739000px;}
.ls3f{letter-spacing:55.232737px;}
.ls3d{letter-spacing:187.426394px;}
.ls27{letter-spacing:339.382800px;}
.ls2c{letter-spacing:363.293400px;}
.ls3b{letter-spacing:410.674200px;}
.ls43{letter-spacing:891.313972px;}
.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;}
}
.ws1a{word-spacing:-39.870325px;}
.wsc2{word-spacing:-31.896340px;}
.ws44{word-spacing:-24.926425px;}
.ws3{word-spacing:-19.941190px;}
.wsc3{word-spacing:-19.926844px;}
.ws2{word-spacing:-19.427100px;}
.ws1c{word-spacing:-14.943900px;}
.ws27{word-spacing:-14.937922px;}
.ws100{word-spacing:-13.963615px;}
.wse{word-spacing:-13.449600px;}
.wsac{word-spacing:-11.955150px;}
.ws5f{word-spacing:-9.982525px;}
.ws10{word-spacing:-7.971694px;}
.ws69{word-spacing:-3.245815px;}
.ws7d{word-spacing:-3.239838px;}
.ws78{word-spacing:-3.174084px;}
.ws3c{word-spacing:-3.054533px;}
.wsa8{word-spacing:-3.036600px;}
.wsa7{word-spacing:-3.030623px;}
.wsa0{word-spacing:-2.982802px;}
.ws99{word-spacing:-2.899117px;}
.ws4{word-spacing:-2.813656px;}
.ws7f{word-spacing:-2.749678px;}
.wsfb{word-spacing:-2.719790px;}
.ws3f{word-spacing:-2.642082px;}
.ws3e{word-spacing:-2.636104px;}
.ws94{word-spacing:-2.516553px;}
.wsb0{word-spacing:-2.352774px;}
.wsae{word-spacing:-2.343209px;}
.ws96{word-spacing:-2.343204px;}
.wse4{word-spacing:-2.337226px;}
.ws2a{word-spacing:-2.253540px;}
.wse6{word-spacing:-2.247563px;}
.wse9{word-spacing:-2.211697px;}
.wsfd{word-spacing:-2.169854px;}
.wse2{word-spacing:-2.139966px;}
.ws73{word-spacing:-2.056281px;}
.wsd2{word-spacing:-2.020415px;}
.ws6{word-spacing:-2.012060px;}
.wscf{word-spacing:-1.853044px;}
.ws7c{word-spacing:-1.835111px;}
.wsb6{word-spacing:-1.829133px;}
.wse3{word-spacing:-1.811201px;}
.ws25{word-spacing:-1.763380px;}
.wsa5{word-spacing:-1.739470px;}
.ws65{word-spacing:-1.733492px;}
.ws97{word-spacing:-1.655784px;}
.wscd{word-spacing:-1.607964px;}
.wsa1{word-spacing:-1.590031px;}
.ws32{word-spacing:-1.530255px;}
.wsb2{word-spacing:-1.524278px;}
.ws34{word-spacing:-1.476457px;}
.ws33{word-spacing:-1.470480px;}
.ws9a{word-spacing:-1.374839px;}
.ws5c{word-spacing:-1.332996px;}
.ws3d{word-spacing:-1.327018px;}
.wsf0{word-spacing:-1.267243px;}
.wsd{word-spacing:-1.264262px;}
.ws55{word-spacing:-1.261265px;}
.wsde{word-spacing:-1.249310px;}
.ws66{word-spacing:-1.165624px;}
.ws30{word-spacing:-1.159647px;}
.wsdf{word-spacing:-1.153669px;}
.ws7e{word-spacing:-1.040095px;}
.ws82{word-spacing:-1.022163px;}
.wsd4{word-spacing:-1.010208px;}
.wsb8{word-spacing:-0.932499px;}
.wsee{word-spacing:-0.908591px;}
.ws8{word-spacing:-0.893053px;}
.ws4e{word-spacing:-0.735240px;}
.wsf9{word-spacing:-0.651554px;}
.ws6a{word-spacing:-0.627644px;}
.wsd7{word-spacing:-0.526025px;}
.ws98{word-spacing:-0.502115px;}
.ws56{word-spacing:-0.490160px;}
.wsd0{word-spacing:-0.442339px;}
.ws5e{word-spacing:-0.340721px;}
.ws31{word-spacing:-0.292900px;}
.wscc{word-spacing:-0.291706px;}
.ws95{word-spacing:-0.221170px;}
.wsb7{word-spacing:-0.203237px;}
.ws35{word-spacing:-0.197259px;}
.ws1{word-spacing:-0.101619px;}
.ws17{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsaa{word-spacing:-0.047821px;}
.ws4d{word-spacing:-0.045430px;}
.wsf{word-spacing:-0.035866px;}
.ws0{word-spacing:0.000000px;}
.wsfe{word-spacing:0.131506px;}
.wsef{word-spacing:0.149439px;}
.ws4f{word-spacing:0.239102px;}
.wsbe{word-spacing:0.251058px;}
.ws90{word-spacing:0.400497px;}
.ws5d{word-spacing:0.472227px;}
.wsa6{word-spacing:0.520048px;}
.wsfc{word-spacing:0.537980px;}
.wsed{word-spacing:0.549937px;}
.wsec{word-spacing:0.554719px;}
.ws8f{word-spacing:0.561891px;}
.wsc{word-spacing:0.634821px;}
.ws88{word-spacing:0.663509px;}
.wsb3{word-spacing:0.675464px;}
.ws104{word-spacing:0.755565px;}
.wsb{word-spacing:0.796216px;}
.ws9f{word-spacing:0.860769px;}
.ws84{word-spacing:0.926522px;}
.wsbf{word-spacing:0.998253px;}
.wsf1{word-spacing:1.010208px;}
.ws9{word-spacing:1.027549px;}
.wsad{word-spacing:1.032925px;}
.wsab{word-spacing:1.037707px;}
.wsa{word-spacing:1.038309px;}
.ws47{word-spacing:1.201490px;}
.ws46{word-spacing:1.207467px;}
.ws6d{word-spacing:1.213445px;}
.ws6c{word-spacing:1.291153px;}
.ws57{word-spacing:1.303108px;}
.ws9d{word-spacing:1.416682px;}
.ws68{word-spacing:1.470480px;}
.wse1{word-spacing:1.518300px;}
.wsf2{word-spacing:1.637851px;}
.wsd5{word-spacing:1.733492px;}
.ws2d{word-spacing:1.775335px;}
.ws4c{word-spacing:1.823156px;}
.wsf8{word-spacing:2.014438px;}
.wsd8{word-spacing:2.050303px;}
.ws91{word-spacing:2.062258px;}
.wse7{word-spacing:2.086168px;}
.ws7a{word-spacing:2.122034px;}
.ws58{word-spacing:2.151922px;}
.ws59{word-spacing:2.157899px;}
.ws54{word-spacing:2.241585px;}
.wsbc{word-spacing:2.361136px;}
.wsb1{word-spacing:2.373091px;}
.ws8d{word-spacing:2.444822px;}
.ws79{word-spacing:2.462755px;}
.wsbb{word-spacing:2.654037px;}
.ws2f{word-spacing:2.725767px;}
.wsf3{word-spacing:2.815431px;}
.ws74{word-spacing:2.839341px;}
.ws50{word-spacing:2.863251px;}
.wse0{word-spacing:2.887161px;}
.ws43{word-spacing:2.929004px;}
.wsce{word-spacing:2.940960px;}
.ws108{word-spacing:2.940967px;}
.wsaf{word-spacing:3.068899px;}
.ws51{word-spacing:3.084421px;}
.wsb5{word-spacing:3.090399px;}
.ws86{word-spacing:3.102354px;}
.ws8a{word-spacing:3.108331px;}
.wseb{word-spacing:3.281680px;}
.ws14{word-spacing:3.335478px;}
.ws22{word-spacing:3.407209px;}
.wsd6{word-spacing:3.592514px;}
.wsfa{word-spacing:3.610446px;}
.wsa3{word-spacing:3.670222px;}
.ws89{word-spacing:3.777818px;}
.ws49{word-spacing:3.825638px;}
.ws26{word-spacing:3.957145px;}
.ws53{word-spacing:3.969100px;}
.ws75{word-spacing:4.076696px;}
.wsc1{word-spacing:4.146046px;}
.ws52{word-spacing:4.190270px;}
.wsea{word-spacing:4.262000px;}
.ws1f{word-spacing:4.321776px;}
.ws9b{word-spacing:4.351664px;}
.ws1d{word-spacing:4.385149px;}
.wsbd{word-spacing:4.417417px;}
.ws2e{word-spacing:4.435350px;}
.ws8e{word-spacing:4.536968px;}
.ws13{word-spacing:4.554901px;}
.ws85{word-spacing:4.578811px;}
.ws1e{word-spacing:4.584789px;}
.wsa9{word-spacing:4.629034px;}
.ws28{word-spacing:4.728250px;}
.ws81{word-spacing:4.829868px;}
.ws80{word-spacing:4.835846px;}
.wsdc{word-spacing:5.170589px;}
.ws8c{word-spacing:5.284163px;}
.ws8b{word-spacing:5.290141px;}
.ws64{word-spacing:5.451535px;}
.wsd9{word-spacing:5.672704px;}
.ws36{word-spacing:5.684660px;}
.ws61{word-spacing:5.756390px;}
.ws72{word-spacing:5.804211px;}
.wsf5{word-spacing:5.852031px;}
.ws29{word-spacing:5.887897px;}
.ws2c{word-spacing:5.911807px;}
.wsd1{word-spacing:5.953650px;}
.wsf6{word-spacing:5.959627px;}
.ws103{word-spacing:5.977575px;}
.ws10e{word-spacing:6.011049px;}
.wsa4{word-spacing:6.067223px;}
.ws76{word-spacing:6.079179px;}
.ws4a{word-spacing:6.240573px;}
.ws4b{word-spacing:6.246550px;}
.wsb9{word-spacing:6.294371px;}
.wsda{word-spacing:6.354146px;}
.wsf7{word-spacing:6.366101px;}
.ws6f{word-spacing:6.395989px;}
.ws2b{word-spacing:6.419899px;}
.ws6b{word-spacing:6.491630px;}
.ws5a{word-spacing:6.503585px;}
.ws45{word-spacing:6.515540px;}
.ws83{word-spacing:6.521518px;}
.wsdb{word-spacing:6.772575px;}
.ws63{word-spacing:6.814418px;}
.ws3b{word-spacing:6.957880px;}
.ws3a{word-spacing:6.963857px;}
.wsdd{word-spacing:7.161117px;}
.ws87{word-spacing:7.292623px;}
.wsa2{word-spacing:7.334466px;}
.ws20{word-spacing:7.412174px;}
.ws21{word-spacing:7.436085px;}
.ws5b{word-spacing:7.495860px;}
.ws7{word-spacing:7.537156px;}
.wsf4{word-spacing:7.591501px;}
.ws7b{word-spacing:7.758873px;}
.ws10b{word-spacing:7.770847px;}
.ws71{word-spacing:7.818648px;}
.wse5{word-spacing:7.854514px;}
.ws101{word-spacing:8.308808px;}
.ws42{word-spacing:8.320764px;}
.ws109{word-spacing:8.421208px;}
.ws67{word-spacing:8.673440px;}
.ws41{word-spacing:8.781036px;}
.ws93{word-spacing:8.846789px;}
.ws23{word-spacing:8.972318px;}
.ws39{word-spacing:9.097846px;}
.wse8{word-spacing:9.127734px;}
.ws62{word-spacing:9.301083px;}
.wsd3{word-spacing:9.307061px;}
.wsba{word-spacing:9.450522px;}
.wsc0{word-spacing:9.456500px;}
.ws92{word-spacing:9.468455px;}
.ws106{word-spacing:9.478043px;}
.ws16{word-spacing:9.540186px;}
.ws12{word-spacing:9.599961px;}
.ws9e{word-spacing:9.749400px;}
.ws105{word-spacing:9.798441px;}
.ws6e{word-spacing:10.323246px;}
.ws102{word-spacing:10.716596px;}
.ws19{word-spacing:11.441050px;}
.ws70{word-spacing:12.283886px;}
.ws9c{word-spacing:12.552876px;}
.ws18{word-spacing:13.031081px;}
.ws60{word-spacing:13.037058px;}
.ws40{word-spacing:13.096834px;}
.ws24{word-spacing:13.120744px;}
.ws1b{word-spacing:13.449510px;}
.ws15{word-spacing:13.581016px;}
.ws37{word-spacing:13.604927px;}
.ws10d{word-spacing:13.667127px;}
.ws10c{word-spacing:13.977961px;}
.ws107{word-spacing:14.551809px;}
.ws38{word-spacing:14.645022px;}
.ws48{word-spacing:14.848259px;}
.ws11{word-spacing:14.943900px;}
.wsb4{word-spacing:15.535678px;}
.ws10a{word-spacing:16.158581px;}
.wsc9{word-spacing:153.963204px;}
.wsc7{word-spacing:230.519202px;}
.wsc8{word-spacing:324.061078px;}
.wsc6{word-spacing:337.422154px;}
.wsc5{word-spacing:462.281740px;}
.wsc4{word-spacing:682.710796px;}
.wsff{word-spacing:919.637959px;}
.wscb{word-spacing:927.035805px;}
.wsca{word-spacing:937.365055px;}
.ws77{word-spacing:943.548259px;}
._7{margin-left:-15.143583px;}
._f{margin-left:-8.607686px;}
._4{margin-left:-6.760669px;}
._e{margin-left:-5.021141px;}
._0{margin-left:-3.825648px;}
._1{margin-left:-2.540475px;}
._2{margin-left:-1.524285px;}
._5{width:3.001942px;}
._b{width:5.009195px;}
._c{width:8.026505px;}
._3{width:9.142138px;}
._6{width:10.173807px;}
._a{width:11.375297px;}
._11{width:16.605662px;}
._9{width:20.323755px;}
._12{width:25.622277px;}
._d{width:29.887800px;}
._8{width:957.908785px;}
._10{width:959.104278px;}
.fc1{color:rgb(0,0,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:85.028212px;}
.y123{bottom:90.642030px;}
.y5f{bottom:90.642810px;}
.y144{bottom:90.645554px;}
.y92{bottom:90.646110px;}
.y37{bottom:91.361662px;}
.yf0{bottom:98.011462px;}
.yd5{bottom:99.972262px;}
.y36{bottom:106.305600px;}
.y122{bottom:108.574710px;}
.y5e{bottom:108.575490px;}
.y143{bottom:108.578234px;}
.y91{bottom:108.578790px;}
.yef{bottom:112.955512px;}
.yd4{bottom:114.916312px;}
.yf2{bottom:121.813612px;}
.y121{bottom:126.507390px;}
.y5d{bottom:126.508170px;}
.y142{bottom:126.510914px;}
.y90{bottom:126.511470px;}
.yee{bottom:127.899450px;}
.yd3{bottom:129.860250px;}
.yf1{bottom:136.757550px;}
.y35{bottom:141.038700px;}
.y25{bottom:143.521500px;}
.y120{bottom:144.440070px;}
.y8f{bottom:144.444150px;}
.y5c{bottom:144.445872px;}
.yed{bottom:148.895700px;}
.y24{bottom:154.125712px;}
.y34{bottom:158.971380px;}
.y11f{bottom:162.373980px;}
.y141{bottom:162.376274px;}
.y8e{bottom:162.376830px;}
.y5b{bottom:162.378552px;}
.yec{bottom:163.839900px;}
.y23{bottom:169.069650px;}
.y22{bottom:173.409450px;}
.y33{bottom:176.904060px;}
.y11e{bottom:180.306660px;}
.y8d{bottom:180.309510px;}
.y5a{bottom:180.311232px;}
.y21{bottom:184.013812px;}
.yeb{bottom:184.740413px;}
.y32{bottom:194.836740px;}
.y11d{bottom:198.239340px;}
.y59{bottom:198.243912px;}
.yea{bottom:199.684613px;}
.y20{bottom:203.297550px;}
.y31{bottom:212.769420px;}
.ye9{bottom:214.628550px;}
.y11c{bottom:216.172020px;}
.y8c{bottom:216.174870px;}
.y58{bottom:216.176592px;}
.y140{bottom:217.366837px;}
.y30{bottom:230.702100px;}
.y11b{bottom:234.104700px;}
.y57{bottom:234.109272px;}
.y13f{bottom:235.299517px;}
.y1f{bottom:248.590680px;}
.y2f{bottom:248.634780px;}
.y11a{bottom:252.037380px;}
.y56{bottom:252.041952px;}
.y13e{bottom:253.232197px;}
.ye8{bottom:264.433680px;}
.ye1{bottom:264.434280px;}
.y1e{bottom:266.523360px;}
.y2e{bottom:266.567460px;}
.y119{bottom:269.970060px;}
.y8b{bottom:269.972910px;}
.y13d{bottom:271.164877px;}
.ye7{bottom:282.366360px;}
.ye0{bottom:282.366960px;}
.y1d{bottom:284.456040px;}
.y2d{bottom:284.500140px;}
.y118{bottom:287.902740px;}
.y8a{bottom:287.905590px;}
.y55{bottom:287.907312px;}
.y13c{bottom:289.097557px;}
.ye6{bottom:300.299040px;}
.ydf{bottom:300.299640px;}
.y1c{bottom:302.388720px;}
.y2c{bottom:302.432820px;}
.y117{bottom:305.835420px;}
.y89{bottom:305.838270px;}
.y13b{bottom:307.030237px;}
.ye5{bottom:318.231720px;}
.yde{bottom:318.232320px;}
.y1b{bottom:320.321400px;}
.y2b{bottom:320.366250px;}
.y116{bottom:323.768490px;}
.y88{bottom:323.770950px;}
.y54{bottom:323.772672px;}
.y13a{bottom:324.962917px;}
.ye4{bottom:336.164910px;}
.ydd{bottom:336.165000px;}
.y1a{bottom:338.254080px;}
.y2a{bottom:338.298930px;}
.y115{bottom:341.701170px;}
.y87{bottom:341.703630px;}
.y139{bottom:342.895597px;}
.ye3{bottom:354.097590px;}
.ydc{bottom:354.097680px;}
.y19{bottom:356.186760px;}
.y29{bottom:356.231610px;}
.y114{bottom:359.635020px;}
.y86{bottom:359.636310px;}
.y138{bottom:360.828277px;}
.ye2{bottom:372.030270px;}
.ydb{bottom:372.030360px;}
.y18{bottom:374.119440px;}
.y28{bottom:374.164290px;}
.y113{bottom:377.567700px;}
.y85{bottom:377.568990px;}
.y137{bottom:378.760957px;}
.y53{bottom:380.650650px;}
.yda{bottom:389.963040px;}
.y27{bottom:392.096970px;}
.y112{bottom:395.500380px;}
.y84{bottom:395.501670px;}
.y136{bottom:396.693637px;}
.y52{bottom:398.583330px;}
.yd9{bottom:407.895720px;}
.y17{bottom:409.984800px;}
.y26{bottom:410.029650px;}
.y111{bottom:413.433060px;}
.y83{bottom:413.434350px;}
.y135{bottom:414.626317px;}
.y51{bottom:416.516010px;}
.yd8{bottom:425.828400px;}
.y110{bottom:431.365740px;}
.y82{bottom:431.367030px;}
.y134{bottom:432.558997px;}
.y50{bottom:434.448690px;}
.y10f{bottom:449.298420px;}
.y81{bottom:449.299710px;}
.y133{bottom:450.491677px;}
.y4f{bottom:452.381370px;}
.y10e{bottom:467.231100px;}
.y80{bottom:467.232390px;}
.y132{bottom:468.424357px;}
.yd7{bottom:470.116200px;}
.y4e{bottom:470.314050px;}
.y10d{bottom:485.163780px;}
.y7f{bottom:485.165070px;}
.y131{bottom:486.357037px;}
.y4d{bottom:488.246730px;}
.y16{bottom:488.782950px;}
.y10c{bottom:503.096460px;}
.y7e{bottom:503.097750px;}
.y130{bottom:504.289717px;}
.y4c{bottom:506.179410px;}
.y15{bottom:518.671149px;}
.yb2{bottom:521.028840px;}
.y10b{bottom:521.029140px;}
.y7d{bottom:521.030430px;}
.yd2{bottom:521.031000px;}
.y4b{bottom:524.112090px;}
.y14{bottom:535.111693px;}
.yb1{bottom:538.961520px;}
.y10a{bottom:538.961820px;}
.y7c{bottom:538.963110px;}
.yd1{bottom:538.963680px;}
.y12f{bottom:540.155077px;}
.y4a{bottom:542.044770px;}
.y13{bottom:551.549794px;}
.y109{bottom:556.894830px;}
.y7b{bottom:556.895790px;}
.yd0{bottom:556.896360px;}
.yb0{bottom:556.897980px;}
.y49{bottom:559.977450px;}
.y12{bottom:567.987895px;}
.y108{bottom:574.827510px;}
.y7a{bottom:574.828470px;}
.ycf{bottom:574.829040px;}
.yaf{bottom:574.830660px;}
.y48{bottom:577.910130px;}
.y11{bottom:584.425996px;}
.y107{bottom:592.760190px;}
.y79{bottom:592.761150px;}
.yce{bottom:592.761720px;}
.yae{bottom:592.763340px;}
.y12e{bottom:595.145640px;}
.y47{bottom:595.842810px;}
.y10{bottom:600.864097px;}
.y106{bottom:610.692870px;}
.y78{bottom:610.693830px;}
.ycd{bottom:610.694400px;}
.yad{bottom:610.696020px;}
.y12d{bottom:613.078320px;}
.y46{bottom:613.775490px;}
.yf{bottom:617.302198px;}
.y105{bottom:628.625970px;}
.y77{bottom:628.626510px;}
.ycc{bottom:628.627080px;}
.yac{bottom:628.628700px;}
.y12c{bottom:631.011000px;}
.y45{bottom:631.708170px;}
.ye{bottom:633.740299px;}
.y104{bottom:646.558770px;}
.y76{bottom:646.559190px;}
.ycb{bottom:646.559760px;}
.yab{bottom:646.561380px;}
.y12b{bottom:648.943680px;}
.y44{bottom:649.640850px;}
.yd{bottom:650.178401px;}
.y103{bottom:664.492050px;}
.yca{bottom:664.492440px;}
.yaa{bottom:664.494060px;}
.yc{bottom:666.616502px;}
.y12a{bottom:666.876360px;}
.y43{bottom:667.573530px;}
.y75{bottom:682.424550px;}
.y102{bottom:682.424730px;}
.yc9{bottom:682.425120px;}
.ya9{bottom:682.426740px;}
.yb{bottom:683.054603px;}
.y129{bottom:684.809040px;}
.y42{bottom:685.506210px;}
.y101{bottom:700.357410px;}
.yc8{bottom:700.357800px;}
.ya8{bottom:700.359420px;}
.y128{bottom:702.741720px;}
.y41{bottom:703.438890px;}
.ya{bottom:715.932150px;}
.y74{bottom:718.289910px;}
.y100{bottom:718.290090px;}
.yc7{bottom:718.290480px;}
.ya7{bottom:718.292100px;}
.y127{bottom:720.674400px;}
.y40{bottom:721.371570px;}
.y73{bottom:736.222590px;}
.yff{bottom:736.222770px;}
.yc6{bottom:736.223160px;}
.ya6{bottom:736.224780px;}
.y3f{bottom:739.304250px;}
.y72{bottom:754.155270px;}
.yc5{bottom:754.155840px;}
.yfe{bottom:754.156080px;}
.ya5{bottom:754.157460px;}
.y126{bottom:756.728475px;}
.y3e{bottom:757.236930px;}
.y9{bottom:770.477925px;}
.y125{bottom:771.672412px;}
.y71{bottom:772.088190px;}
.yc4{bottom:772.088520px;}
.yfd{bottom:772.088760px;}
.ya4{bottom:772.090140px;}
.y3d{bottom:775.169610px;}
.y8{bottom:785.421862px;}
.y124{bottom:786.616350px;}
.y70{bottom:790.020870px;}
.yc3{bottom:790.021200px;}
.yfc{bottom:790.021440px;}
.ya3{bottom:790.022820px;}
.y3c{bottom:793.102290px;}
.y6f{bottom:807.953670px;}
.yc2{bottom:807.953880px;}
.yfb{bottom:807.954120px;}
.ya2{bottom:807.955500px;}
.y7{bottom:809.332162px;}
.y3b{bottom:811.034970px;}
.y6{bottom:824.276100px;}
.yc1{bottom:825.886560px;}
.yfa{bottom:825.887051px;}
.y6e{bottom:825.887550px;}
.ya1{bottom:825.888180px;}
.y3a{bottom:828.967650px;}
.y14e{bottom:837.842362px;}
.yc0{bottom:843.819240px;}
.y6d{bottom:843.820230px;}
.ya0{bottom:843.820860px;}
.yf9{bottom:850.103849px;}
.y5{bottom:851.175300px;}
.y14d{bottom:852.786300px;}
.y15e{bottom:852.787496px;}
.yf8{bottom:855.042900px;}
.ybf{bottom:861.751920px;}
.y6c{bottom:861.752910px;}
.y9f{bottom:861.753540px;}
.y14c{bottom:867.730237px;}
.y15d{bottom:867.731433px;}
.yf7{bottom:867.844840px;}
.y39{bottom:875.116350px;}
.ybe{bottom:879.684990px;}
.y6b{bottom:879.685590px;}
.y9e{bottom:879.686220px;}
.y14b{bottom:882.674175px;}
.y15c{bottom:882.675371px;}
.y4{bottom:891.489623px;}
.ybd{bottom:897.617670px;}
.y14a{bottom:897.618112px;}
.y6a{bottom:897.618270px;}
.y9d{bottom:897.618900px;}
.y15b{bottom:897.619308px;}
.y149{bottom:912.562050px;}
.y15a{bottom:912.563246px;}
.yf6{bottom:914.524729px;}
.ybc{bottom:915.550710px;}
.y69{bottom:915.550950px;}
.y9c{bottom:915.551580px;}
.y3{bottom:921.378312px;}
.y148{bottom:927.505987px;}
.y159{bottom:927.507183px;}
.ybb{bottom:933.483390px;}
.y68{bottom:933.483630px;}
.y9b{bottom:933.484260px;}
.yf5{bottom:941.423749px;}
.y147{bottom:942.449925px;}
.y158{bottom:942.451121px;}
.y2{bottom:951.267000px;}
.yba{bottom:951.416070px;}
.y67{bottom:951.416310px;}
.y9a{bottom:951.416940px;}
.y146{bottom:957.393863px;}
.y157{bottom:957.395058px;}
.yb9{bottom:969.347334px;}
.y66{bottom:969.348990px;}
.y99{bottom:969.349620px;}
.y145{bottom:972.337800px;}
.y156{bottom:972.338996px;}
.yf4{bottom:983.950915px;}
.yb8{bottom:987.280014px;}
.y65{bottom:987.281670px;}
.y98{bottom:987.282300px;}
.y155{bottom:987.282933px;}
.y154{bottom:1002.226871px;}
.y64{bottom:1005.210984px;}
.yb7{bottom:1005.212694px;}
.y97{bottom:1005.214980px;}
.yf3{bottom:1010.849935px;}
.y153{bottom:1017.170808px;}
.y63{bottom:1023.143664px;}
.yb6{bottom:1023.145374px;}
.y96{bottom:1023.147660px;}
.y1{bottom:1030.842450px;}
.y152{bottom:1032.114746px;}
.y62{bottom:1041.076344px;}
.yb5{bottom:1041.078054px;}
.y95{bottom:1041.080340px;}
.y151{bottom:1047.058683px;}
.y61{bottom:1059.009024px;}
.yb4{bottom:1059.010734px;}
.y94{bottom:1059.013020px;}
.y150{bottom:1062.002621px;}
.y60{bottom:1076.941704px;}
.yb3{bottom:1076.943414px;}
.y93{bottom:1076.945700px;}
.y14f{bottom:1076.946558px;}
.y38{bottom:1112.661750px;}
.hb{height:29.574104px;}
.hc{height:35.200125px;}
.h5{height:46.909954px;}
.h1{height:46.933304px;}
.h15{height:46.933454px;}
.h22{height:47.698433px;}
.h16{height:48.194198px;}
.h21{height:52.558425px;}
.h14{height:52.558875px;}
.h17{height:52.559325px;}
.h7{height:52.800188px;}
.h6{height:54.218700px;}
.h8{height:54.719154px;}
.he{height:58.637295px;}
.ha{height:58.666482px;}
.h18{height:58.667224px;}
.h19{height:58.667965px;}
.h13{height:58.672145px;}
.hd{height:59.622892px;}
.h9{height:60.242597px;}
.hf{height:66.264979px;}
.h11{height:66.280268px;}
.h1e{height:66.280388px;}
.h20{height:66.280748px;}
.h1d{height:66.282668px;}
.h1f{height:66.284108px;}
.h12{height:66.284588px;}
.h10{height:66.299130px;}
.h1b{height:70.355468px;}
.h3{height:77.509879px;}
.h4{height:86.874882px;}
.h2{height:99.733491px;}
.h1a{height:100.569178px;}
.h1c{height:129.625264px;}
.h0{height:1191.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x13{left:63.947700px;}
.x1a{left:72.915179px;}
.x18{left:74.671500px;}
.xa{left:76.126350px;}
.x15{left:81.881874px;}
.xd{left:84.644400px;}
.xb{left:89.575950px;}
.x1b{left:93.051900px;}
.xc{left:94.059030px;}
.x1c{left:99.522966px;}
.x2{left:121.982700px;}
.x12{left:139.402650px;}
.x3{left:174.367294px;}
.x5{left:189.356100px;}
.x4{left:211.826598px;}
.x7{left:222.367950px;}
.x14{left:256.078434px;}
.x19{left:272.822700px;}
.x6{left:293.465929px;}
.x8{left:301.678415px;}
.x11{left:320.756550px;}
.x1{left:364.036800px;}
.x9{left:375.609063px;}
.xe{left:426.484107px;}
.x16{left:458.467376px;}
.xf{left:470.646900px;}
.x17{left:476.400056px;}
.x10{left:488.581325px;}
.x1e{left:494.795704px;}
.x21{left:516.709494px;}
.x24{left:535.393003px;}
.x1d{left:555.031099px;}
.x22{left:566.945035px;}
.x1f{left:622.218475px;}
.x23{left:685.177881px;}
.x20{left:728.630070px;}
@media print{
.v4{vertical-align:-15.430400pt;}
.v5{vertical-align:-7.972267pt;}
.v8{vertical-align:-6.376400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.105186pt;}
.vd{vertical-align:2.868269pt;}
.vc{vertical-align:9.590935pt;}
.v7{vertical-align:15.430000pt;}
.v3{vertical-align:17.350248pt;}
.v6{vertical-align:19.269610pt;}
.vb{vertical-align:22.905600pt;}
.v2{vertical-align:25.074133pt;}
.va{vertical-align:37.246841pt;}
.v9{vertical-align:39.850400pt;}
.ve{vertical-align:45.514470pt;}
.ls19{letter-spacing:-0.478208pt;}
.ls9{letter-spacing:-0.010627pt;}
.lsa{letter-spacing:-0.005313pt;}
.ls8{letter-spacing:-0.004782pt;}
.ls18{letter-spacing:-0.004251pt;}
.ls7{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000026pt;}
.ls1a{letter-spacing:0.000215pt;}
.ls4a{letter-spacing:0.000259pt;}
.ls34{letter-spacing:0.000502pt;}
.ls14{letter-spacing:0.000783pt;}
.ls26{letter-spacing:0.001434pt;}
.ls2b{letter-spacing:0.001512pt;}
.ls2e{letter-spacing:0.001639pt;}
.ls20{letter-spacing:0.001978pt;}
.ls2a{letter-spacing:0.002046pt;}
.ls37{letter-spacing:0.002049pt;}
.ls40{letter-spacing:0.002325pt;}
.ls3a{letter-spacing:0.002583pt;}
.ls24{letter-spacing:0.003493pt;}
.ls31{letter-spacing:0.005944pt;}
.ls2f{letter-spacing:0.006012pt;}
.ls30{letter-spacing:0.009530pt;}
.ls28{letter-spacing:2.509049pt;}
.ls23{letter-spacing:2.510082pt;}
.ls1e{letter-spacing:2.511501pt;}
.ls1{letter-spacing:2.656533pt;}
.ls21{letter-spacing:2.656678pt;}
.ls32{letter-spacing:2.656785pt;}
.ls4b{letter-spacing:2.656811pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1f{letter-spacing:2.657212pt;}
.ls33{letter-spacing:2.818133pt;}
.ls46{letter-spacing:3.130463pt;}
.ls3e{letter-spacing:3.134902pt;}
.ls4c{letter-spacing:3.136893pt;}
.ls11{letter-spacing:3.138140pt;}
.ls1c{letter-spacing:3.138974pt;}
.lsf{letter-spacing:3.139147pt;}
.ls44{letter-spacing:3.140285pt;}
.ls42{letter-spacing:5.440533pt;}
.ls15{letter-spacing:7.085950pt;}
.ls2{letter-spacing:7.971727pt;}
.lse{letter-spacing:8.854369pt;}
.lsd{letter-spacing:8.857416pt;}
.ls16{letter-spacing:9.741184pt;}
.ls22{letter-spacing:9.741333pt;}
.ls3{letter-spacing:10.626517pt;}
.ls25{letter-spacing:10.626800pt;}
.ls47{letter-spacing:11.512277pt;}
.lsc{letter-spacing:11.512811pt;}
.ls49{letter-spacing:11.513067pt;}
.ls17{letter-spacing:11.544956pt;}
.ls36{letter-spacing:11.806345pt;}
.ls2d{letter-spacing:13.283200pt;}
.ls4d{letter-spacing:13.283584pt;}
.ls29{letter-spacing:13.283733pt;}
.ls12{letter-spacing:13.361067pt;}
.ls45{letter-spacing:14.292800pt;}
.ls10{letter-spacing:14.467733pt;}
.ls35{letter-spacing:14.625600pt;}
.ls39{letter-spacing:14.666133pt;}
.ls13{letter-spacing:14.718400pt;}
.ls38{letter-spacing:14.760588pt;}
.lsb{letter-spacing:17.562411pt;}
.ls3c{letter-spacing:17.895486pt;}
.ls1b{letter-spacing:18.301333pt;}
.ls4{letter-spacing:18.597175pt;}
.ls1d{letter-spacing:19.866667pt;}
.ls5{letter-spacing:21.253867pt;}
.ls6{letter-spacing:21.381333pt;}
.ls48{letter-spacing:23.768000pt;}
.ls3f{letter-spacing:49.095766pt;}
.ls3d{letter-spacing:166.601239pt;}
.ls27{letter-spacing:301.673600pt;}
.ls2c{letter-spacing:322.927467pt;}
.ls3b{letter-spacing:365.043733pt;}
.ls43{letter-spacing:792.279086pt;}
.ws1a{word-spacing:-35.440289pt;}
.wsc2{word-spacing:-28.352302pt;}
.ws44{word-spacing:-22.156822pt;}
.ws3{word-spacing:-17.725502pt;}
.wsc3{word-spacing:-17.712750pt;}
.ws2{word-spacing:-17.268533pt;}
.ws1c{word-spacing:-13.283467pt;}
.ws27{word-spacing:-13.278153pt;}
.ws100{word-spacing:-12.412102pt;}
.wse{word-spacing:-11.955200pt;}
.wsac{word-spacing:-10.626800pt;}
.ws5f{word-spacing:-8.873356pt;}
.ws10{word-spacing:-7.085950pt;}
.ws69{word-spacing:-2.885169pt;}
.ws7d{word-spacing:-2.879856pt;}
.ws78{word-spacing:-2.821408pt;}
.ws3c{word-spacing:-2.715141pt;}
.wsa8{word-spacing:-2.699200pt;}
.wsa7{word-spacing:-2.693887pt;}
.wsa0{word-spacing:-2.651380pt;}
.ws99{word-spacing:-2.576993pt;}
.ws4{word-spacing:-2.501028pt;}
.ws7f{word-spacing:-2.444158pt;}
.wsfb{word-spacing:-2.417591pt;}
.ws3f{word-spacing:-2.348517pt;}
.ws3e{word-spacing:-2.343204pt;}
.ws94{word-spacing:-2.236936pt;}
.wsb0{word-spacing:-2.091354pt;}
.wsae{word-spacing:-2.082853pt;}
.ws96{word-spacing:-2.082848pt;}
.wse4{word-spacing:-2.077534pt;}
.ws2a{word-spacing:-2.003147pt;}
.wse6{word-spacing:-1.997833pt;}
.wse9{word-spacing:-1.965953pt;}
.wsfd{word-spacing:-1.928759pt;}
.wse2{word-spacing:-1.902192pt;}
.ws73{word-spacing:-1.827805pt;}
.wsd2{word-spacing:-1.795925pt;}
.ws6{word-spacing:-1.788498pt;}
.wscf{word-spacing:-1.647150pt;}
.ws7c{word-spacing:-1.631210pt;}
.wsb6{word-spacing:-1.625896pt;}
.wse3{word-spacing:-1.609956pt;}
.ws25{word-spacing:-1.567449pt;}
.wsa5{word-spacing:-1.546196pt;}
.ws65{word-spacing:-1.540882pt;}
.ws97{word-spacing:-1.471808pt;}
.wscd{word-spacing:-1.429301pt;}
.wsa1{word-spacing:-1.413361pt;}
.ws32{word-spacing:-1.360227pt;}
.wsb2{word-spacing:-1.354914pt;}
.ws34{word-spacing:-1.312407pt;}
.ws33{word-spacing:-1.307093pt;}
.ws9a{word-spacing:-1.222079pt;}
.ws5c{word-spacing:-1.184885pt;}
.ws3d{word-spacing:-1.179572pt;}
.wsf0{word-spacing:-1.126438pt;}
.wsd{word-spacing:-1.123789pt;}
.ws55{word-spacing:-1.121125pt;}
.wsde{word-spacing:-1.110498pt;}
.ws66{word-spacing:-1.036110pt;}
.ws30{word-spacing:-1.030797pt;}
.wsdf{word-spacing:-1.025484pt;}
.ws7e{word-spacing:-0.924529pt;}
.ws82{word-spacing:-0.908589pt;}
.wsd4{word-spacing:-0.897962pt;}
.wsb8{word-spacing:-0.828888pt;}
.wsee{word-spacing:-0.807637pt;}
.ws8{word-spacing:-0.793825pt;}
.ws4e{word-spacing:-0.653547pt;}
.wsf9{word-spacing:-0.579159pt;}
.ws6a{word-spacing:-0.557906pt;}
.wsd7{word-spacing:-0.467578pt;}
.ws98{word-spacing:-0.446324pt;}
.ws56{word-spacing:-0.435698pt;}
.wsd0{word-spacing:-0.393191pt;}
.ws5e{word-spacing:-0.302863pt;}
.ws31{word-spacing:-0.260356pt;}
.wscc{word-spacing:-0.259294pt;}
.ws95{word-spacing:-0.196595pt;}
.wsb7{word-spacing:-0.180655pt;}
.ws35{word-spacing:-0.175342pt;}
.ws1{word-spacing:-0.090328pt;}
.ws17{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsaa{word-spacing:-0.042507pt;}
.ws4d{word-spacing:-0.040382pt;}
.wsf{word-spacing:-0.031881pt;}
.ws0{word-spacing:0.000000pt;}
.wsfe{word-spacing:0.116895pt;}
.wsef{word-spacing:0.132835pt;}
.ws4f{word-spacing:0.212535pt;}
.wsbe{word-spacing:0.223162pt;}
.ws90{word-spacing:0.355997pt;}
.ws5d{word-spacing:0.419758pt;}
.wsa6{word-spacing:0.462265pt;}
.wsfc{word-spacing:0.478205pt;}
.wsed{word-spacing:0.488833pt;}
.wsec{word-spacing:0.493084pt;}
.ws8f{word-spacing:0.499458pt;}
.wsc{word-spacing:0.564285pt;}
.ws88{word-spacing:0.589786pt;}
.wsb3{word-spacing:0.600413pt;}
.ws104{word-spacing:0.671614pt;}
.wsb{word-spacing:0.707748pt;}
.ws9f{word-spacing:0.765128pt;}
.ws84{word-spacing:0.823575pt;}
.wsbf{word-spacing:0.887336pt;}
.wsf1{word-spacing:0.897962pt;}
.ws9{word-spacing:0.913377pt;}
.wsad{word-spacing:0.918156pt;}
.wsab{word-spacing:0.922406pt;}
.wsa{word-spacing:0.922941pt;}
.ws47{word-spacing:1.067991pt;}
.ws46{word-spacing:1.073304pt;}
.ws6d{word-spacing:1.078617pt;}
.ws6c{word-spacing:1.147692pt;}
.ws57{word-spacing:1.158318pt;}
.ws9d{word-spacing:1.259273pt;}
.ws68{word-spacing:1.307093pt;}
.wse1{word-spacing:1.349600pt;}
.wsf2{word-spacing:1.455868pt;}
.wsd5{word-spacing:1.540882pt;}
.ws2d{word-spacing:1.578076pt;}
.ws4c{word-spacing:1.620583pt;}
.wsf8{word-spacing:1.790611pt;}
.wsd8{word-spacing:1.822492pt;}
.ws91{word-spacing:1.833118pt;}
.wse7{word-spacing:1.854372pt;}
.ws7a{word-spacing:1.886252pt;}
.ws58{word-spacing:1.912819pt;}
.ws59{word-spacing:1.918133pt;}
.ws54{word-spacing:1.992520pt;}
.wsbc{word-spacing:2.098788pt;}
.wsb1{word-spacing:2.109415pt;}
.ws8d{word-spacing:2.173175pt;}
.ws79{word-spacing:2.189115pt;}
.wsbb{word-spacing:2.359144pt;}
.ws2f{word-spacing:2.422904pt;}
.wsf3{word-spacing:2.502605pt;}
.ws74{word-spacing:2.523859pt;}
.ws50{word-spacing:2.545112pt;}
.wse0{word-spacing:2.566366pt;}
.ws43{word-spacing:2.603559pt;}
.wsce{word-spacing:2.614186pt;}
.ws108{word-spacing:2.614193pt;}
.wsaf{word-spacing:2.727910pt;}
.ws51{word-spacing:2.741708pt;}
.wsb5{word-spacing:2.747021pt;}
.ws86{word-spacing:2.757648pt;}
.ws8a{word-spacing:2.762961pt;}
.wseb{word-spacing:2.917049pt;}
.ws14{word-spacing:2.964870pt;}
.ws22{word-spacing:3.028630pt;}
.wsd6{word-spacing:3.193345pt;}
.wsfa{word-spacing:3.209286pt;}
.wsa3{word-spacing:3.262419pt;}
.ws89{word-spacing:3.358060pt;}
.ws49{word-spacing:3.400567pt;}
.ws26{word-spacing:3.517462pt;}
.ws53{word-spacing:3.528089pt;}
.ws75{word-spacing:3.623730pt;}
.wsc1{word-spacing:3.685374pt;}
.ws52{word-spacing:3.724684pt;}
.wsea{word-spacing:3.788445pt;}
.ws1f{word-spacing:3.841579pt;}
.ws9b{word-spacing:3.868145pt;}
.ws1d{word-spacing:3.897910pt;}
.wsbd{word-spacing:3.926593pt;}
.ws2e{word-spacing:3.942533pt;}
.ws8e{word-spacing:4.032860pt;}
.ws13{word-spacing:4.048801pt;}
.ws85{word-spacing:4.070054pt;}
.ws1e{word-spacing:4.075368pt;}
.wsa9{word-spacing:4.114697pt;}
.ws28{word-spacing:4.202889pt;}
.ws81{word-spacing:4.293216pt;}
.ws80{word-spacing:4.298530pt;}
.wsdc{word-spacing:4.596079pt;}
.ws8c{word-spacing:4.697034pt;}
.ws8b{word-spacing:4.702347pt;}
.ws64{word-spacing:4.845809pt;}
.wsd9{word-spacing:5.042404pt;}
.ws36{word-spacing:5.053031pt;}
.ws61{word-spacing:5.116791pt;}
.ws72{word-spacing:5.159298pt;}
.wsf5{word-spacing:5.201806pt;}
.ws29{word-spacing:5.233686pt;}
.ws2c{word-spacing:5.254939pt;}
.wsd1{word-spacing:5.292133pt;}
.wsf6{word-spacing:5.297447pt;}
.ws103{word-spacing:5.313400pt;}
.ws10e{word-spacing:5.343155pt;}
.wsa4{word-spacing:5.393087pt;}
.ws76{word-spacing:5.403714pt;}
.ws4a{word-spacing:5.547176pt;}
.ws4b{word-spacing:5.552489pt;}
.wsb9{word-spacing:5.594996pt;}
.wsda{word-spacing:5.648130pt;}
.wsf7{word-spacing:5.658757pt;}
.ws6f{word-spacing:5.685324pt;}
.ws2b{word-spacing:5.706577pt;}
.ws6b{word-spacing:5.770338pt;}
.ws5a{word-spacing:5.780965pt;}
.ws45{word-spacing:5.791591pt;}
.ws83{word-spacing:5.796905pt;}
.wsdb{word-spacing:6.020067pt;}
.ws63{word-spacing:6.057261pt;}
.ws3b{word-spacing:6.184782pt;}
.ws3a{word-spacing:6.190095pt;}
.wsdd{word-spacing:6.365437pt;}
.ws87{word-spacing:6.482332pt;}
.wsa2{word-spacing:6.519525pt;}
.ws20{word-spacing:6.588599pt;}
.ws21{word-spacing:6.609853pt;}
.ws5b{word-spacing:6.662987pt;}
.ws7{word-spacing:6.699694pt;}
.wsf4{word-spacing:6.748001pt;}
.ws7b{word-spacing:6.896776pt;}
.ws10b{word-spacing:6.907420pt;}
.ws71{word-spacing:6.949910pt;}
.wse5{word-spacing:6.981790pt;}
.ws101{word-spacing:7.385607pt;}
.ws42{word-spacing:7.396234pt;}
.ws109{word-spacing:7.485518pt;}
.ws67{word-spacing:7.709724pt;}
.ws41{word-spacing:7.805365pt;}
.ws93{word-spacing:7.863812pt;}
.ws23{word-spacing:7.975393pt;}
.ws39{word-spacing:8.086975pt;}
.wse8{word-spacing:8.113541pt;}
.ws62{word-spacing:8.267630pt;}
.wsd3{word-spacing:8.272943pt;}
.wsba{word-spacing:8.400464pt;}
.wsc0{word-spacing:8.405778pt;}
.ws92{word-spacing:8.416404pt;}
.ws106{word-spacing:8.424927pt;}
.ws16{word-spacing:8.480165pt;}
.ws12{word-spacing:8.533299pt;}
.ws9e{word-spacing:8.666134pt;}
.ws105{word-spacing:8.709725pt;}
.ws6e{word-spacing:9.176219pt;}
.ws102{word-spacing:9.525864pt;}
.ws19{word-spacing:10.169822pt;}
.ws70{word-spacing:10.919010pt;}
.ws9c{word-spacing:11.158112pt;}
.ws18{word-spacing:11.583183pt;}
.ws60{word-spacing:11.588496pt;}
.ws40{word-spacing:11.641630pt;}
.ws24{word-spacing:11.662884pt;}
.ws1b{word-spacing:11.955120pt;}
.ws15{word-spacing:12.072015pt;}
.ws37{word-spacing:12.093268pt;}
.ws10d{word-spacing:12.148558pt;}
.ws10c{word-spacing:12.424855pt;}
.ws107{word-spacing:12.934941pt;}
.ws38{word-spacing:13.017797pt;}
.ws48{word-spacing:13.198452pt;}
.ws11{word-spacing:13.283467pt;}
.wsb4{word-spacing:13.809492pt;}
.ws10a{word-spacing:14.363183pt;}
.wsc9{word-spacing:136.856181pt;}
.wsc7{word-spacing:204.905958pt;}
.wsc8{word-spacing:288.054292pt;}
.wsc6{word-spacing:299.930803pt;}
.wsc5{word-spacing:410.917102pt;}
.wsc4{word-spacing:606.854041pt;}
.wsff{word-spacing:817.455963pt;}
.wscb{word-spacing:824.031827pt;}
.wsca{word-spacing:833.213382pt;}
.ws77{word-spacing:838.709563pt;}
._7{margin-left:-13.460963pt;}
._f{margin-left:-7.651277pt;}
._4{margin-left:-6.009483pt;}
._e{margin-left:-4.463236pt;}
._0{margin-left:-3.400576pt;}
._1{margin-left:-2.258200pt;}
._2{margin-left:-1.354920pt;}
._5{width:2.668392pt;}
._b{width:4.452618pt;}
._c{width:7.134671pt;}
._3{width:8.126345pt;}
._6{width:9.043384pt;}
._a{width:10.111375pt;}
._11{width:14.760588pt;}
._9{width:18.065560pt;}
._12{width:22.775358pt;}
._d{width:26.566933pt;}
._8{width:851.474475pt;}
._10{width:852.537136pt;}
.fs5{font-size:31.880533pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:75.580633pt;}
.y123{bottom:80.570693pt;}
.y5f{bottom:80.571387pt;}
.y144{bottom:80.573825pt;}
.y92{bottom:80.574320pt;}
.y37{bottom:81.210367pt;}
.yf0{bottom:87.121300pt;}
.yd5{bottom:88.864233pt;}
.y36{bottom:94.493867pt;}
.y122{bottom:96.510853pt;}
.y5e{bottom:96.511547pt;}
.y143{bottom:96.513985pt;}
.y91{bottom:96.514480pt;}
.yef{bottom:100.404900pt;}
.yd4{bottom:102.147833pt;}
.yf2{bottom:108.278767pt;}
.y121{bottom:112.451013pt;}
.y5d{bottom:112.451707pt;}
.y142{bottom:112.454145pt;}
.y90{bottom:112.454640pt;}
.yee{bottom:113.688400pt;}
.yd3{bottom:115.431333pt;}
.yf1{bottom:121.562267pt;}
.y35{bottom:125.367733pt;}
.y25{bottom:127.574667pt;}
.y120{bottom:128.391173pt;}
.y8f{bottom:128.394800pt;}
.y5c{bottom:128.396331pt;}
.yed{bottom:132.351733pt;}
.y24{bottom:137.000633pt;}
.y34{bottom:141.307893pt;}
.y11f{bottom:144.332427pt;}
.y141{bottom:144.334465pt;}
.y8e{bottom:144.334960pt;}
.y5b{bottom:144.336491pt;}
.yec{bottom:145.635467pt;}
.y23{bottom:150.284133pt;}
.y22{bottom:154.141733pt;}
.y33{bottom:157.248053pt;}
.y11e{bottom:160.272587pt;}
.y8d{bottom:160.275120pt;}
.y5a{bottom:160.276651pt;}
.y21{bottom:163.567833pt;}
.yeb{bottom:164.213700pt;}
.y32{bottom:173.188213pt;}
.y11d{bottom:176.212747pt;}
.y59{bottom:176.216811pt;}
.yea{bottom:177.497433pt;}
.y20{bottom:180.708933pt;}
.y31{bottom:189.128373pt;}
.ye9{bottom:190.780933pt;}
.y11c{bottom:192.152907pt;}
.y8c{bottom:192.155440pt;}
.y58{bottom:192.156971pt;}
.y140{bottom:193.214966pt;}
.y30{bottom:205.068533pt;}
.y11b{bottom:208.093067pt;}
.y57{bottom:208.097131pt;}
.y13f{bottom:209.155126pt;}
.y1f{bottom:220.969493pt;}
.y2f{bottom:221.008693pt;}
.y11a{bottom:224.033227pt;}
.y56{bottom:224.037291pt;}
.y13e{bottom:225.095286pt;}
.ye8{bottom:235.052160pt;}
.ye1{bottom:235.052693pt;}
.y1e{bottom:236.909653pt;}
.y2e{bottom:236.948853pt;}
.y119{bottom:239.973387pt;}
.y8b{bottom:239.975920pt;}
.y13d{bottom:241.035446pt;}
.ye7{bottom:250.992320pt;}
.ye0{bottom:250.992853pt;}
.y1d{bottom:252.849813pt;}
.y2d{bottom:252.889013pt;}
.y118{bottom:255.913547pt;}
.y8a{bottom:255.916080pt;}
.y55{bottom:255.917611pt;}
.y13c{bottom:256.975606pt;}
.ye6{bottom:266.932480pt;}
.ydf{bottom:266.933013pt;}
.y1c{bottom:268.789973pt;}
.y2c{bottom:268.829173pt;}
.y117{bottom:271.853707pt;}
.y89{bottom:271.856240pt;}
.y13b{bottom:272.915766pt;}
.ye5{bottom:282.872640pt;}
.yde{bottom:282.873173pt;}
.y1b{bottom:284.730133pt;}
.y2b{bottom:284.770000pt;}
.y116{bottom:287.794213pt;}
.y88{bottom:287.796400pt;}
.y54{bottom:287.797931pt;}
.y13a{bottom:288.855926pt;}
.ye4{bottom:298.813253pt;}
.ydd{bottom:298.813333pt;}
.y1a{bottom:300.670293pt;}
.y2a{bottom:300.710160pt;}
.y115{bottom:303.734373pt;}
.y87{bottom:303.736560pt;}
.y139{bottom:304.796086pt;}
.ye3{bottom:314.753413pt;}
.ydc{bottom:314.753493pt;}
.y19{bottom:316.610453pt;}
.y29{bottom:316.650320pt;}
.y114{bottom:319.675573pt;}
.y86{bottom:319.676720pt;}
.y138{bottom:320.736246pt;}
.ye2{bottom:330.693573pt;}
.ydb{bottom:330.693653pt;}
.y18{bottom:332.550613pt;}
.y28{bottom:332.590480pt;}
.y113{bottom:335.615733pt;}
.y85{bottom:335.616880pt;}
.y137{bottom:336.676406pt;}
.y53{bottom:338.356133pt;}
.yda{bottom:346.633813pt;}
.y27{bottom:348.530640pt;}
.y112{bottom:351.555893pt;}
.y84{bottom:351.557040pt;}
.y136{bottom:352.616566pt;}
.y52{bottom:354.296293pt;}
.yd9{bottom:362.573973pt;}
.y17{bottom:364.430933pt;}
.y26{bottom:364.470800pt;}
.y111{bottom:367.496053pt;}
.y83{bottom:367.497200pt;}
.y135{bottom:368.556726pt;}
.y51{bottom:370.236453pt;}
.yd8{bottom:378.514133pt;}
.y110{bottom:383.436213pt;}
.y82{bottom:383.437360pt;}
.y134{bottom:384.496886pt;}
.y50{bottom:386.176613pt;}
.y10f{bottom:399.376373pt;}
.y81{bottom:399.377520pt;}
.y133{bottom:400.437046pt;}
.y4f{bottom:402.116773pt;}
.y10e{bottom:415.316533pt;}
.y80{bottom:415.317680pt;}
.y132{bottom:416.377206pt;}
.yd7{bottom:417.881067pt;}
.y4e{bottom:418.056933pt;}
.y10d{bottom:431.256693pt;}
.y7f{bottom:431.257840pt;}
.y131{bottom:432.317366pt;}
.y4d{bottom:433.997093pt;}
.y16{bottom:434.473733pt;}
.y10c{bottom:447.196853pt;}
.y7e{bottom:447.198000pt;}
.y130{bottom:448.257526pt;}
.y4c{bottom:449.937253pt;}
.y15{bottom:461.041021pt;}
.yb2{bottom:463.136747pt;}
.y10b{bottom:463.137013pt;}
.y7d{bottom:463.138160pt;}
.yd2{bottom:463.138667pt;}
.y4b{bottom:465.877413pt;}
.y14{bottom:475.654838pt;}
.yb1{bottom:479.076907pt;}
.y10a{bottom:479.077173pt;}
.y7c{bottom:479.078320pt;}
.yd1{bottom:479.078827pt;}
.y12f{bottom:480.137846pt;}
.y4a{bottom:481.817573pt;}
.y13{bottom:490.266483pt;}
.y109{bottom:495.017627pt;}
.y7b{bottom:495.018480pt;}
.yd0{bottom:495.018987pt;}
.yb0{bottom:495.020427pt;}
.y49{bottom:497.757733pt;}
.y12{bottom:504.878129pt;}
.y108{bottom:510.957787pt;}
.y7a{bottom:510.958640pt;}
.ycf{bottom:510.959147pt;}
.yaf{bottom:510.960587pt;}
.y48{bottom:513.697893pt;}
.y11{bottom:519.489774pt;}
.y107{bottom:526.897947pt;}
.y79{bottom:526.898800pt;}
.yce{bottom:526.899307pt;}
.yae{bottom:526.900747pt;}
.y12e{bottom:529.018347pt;}
.y47{bottom:529.638053pt;}
.y10{bottom:534.101420pt;}
.y106{bottom:542.838107pt;}
.y78{bottom:542.838960pt;}
.ycd{bottom:542.839467pt;}
.yad{bottom:542.840907pt;}
.y12d{bottom:544.958507pt;}
.y46{bottom:545.578213pt;}
.yf{bottom:548.713065pt;}
.y105{bottom:558.778640pt;}
.y77{bottom:558.779120pt;}
.ycc{bottom:558.779627pt;}
.yac{bottom:558.781067pt;}
.y12c{bottom:560.898667pt;}
.y45{bottom:561.518373pt;}
.ye{bottom:563.324711pt;}
.y104{bottom:574.718907pt;}
.y76{bottom:574.719280pt;}
.ycb{bottom:574.719787pt;}
.yab{bottom:574.721227pt;}
.y12b{bottom:576.838827pt;}
.y44{bottom:577.458533pt;}
.yd{bottom:577.936356pt;}
.y103{bottom:590.659600pt;}
.yca{bottom:590.659947pt;}
.yaa{bottom:590.661387pt;}
.yc{bottom:592.548001pt;}
.y12a{bottom:592.778987pt;}
.y43{bottom:593.398693pt;}
.y75{bottom:606.599600pt;}
.y102{bottom:606.599760pt;}
.yc9{bottom:606.600107pt;}
.ya9{bottom:606.601547pt;}
.yb{bottom:607.159647pt;}
.y129{bottom:608.719147pt;}
.y42{bottom:609.338853pt;}
.y101{bottom:622.539920pt;}
.yc8{bottom:622.540267pt;}
.ya8{bottom:622.541707pt;}
.y128{bottom:624.659307pt;}
.y41{bottom:625.279013pt;}
.ya{bottom:636.384133pt;}
.y74{bottom:638.479920pt;}
.y100{bottom:638.480080pt;}
.yc7{bottom:638.480427pt;}
.ya7{bottom:638.481867pt;}
.y127{bottom:640.599467pt;}
.y40{bottom:641.219173pt;}
.y73{bottom:654.420080pt;}
.yff{bottom:654.420240pt;}
.yc6{bottom:654.420587pt;}
.ya6{bottom:654.422027pt;}
.y3f{bottom:657.159333pt;}
.y72{bottom:670.360240pt;}
.yc5{bottom:670.360747pt;}
.yfe{bottom:670.360960pt;}
.ya5{bottom:670.362187pt;}
.y126{bottom:672.647533pt;}
.y3e{bottom:673.099493pt;}
.y9{bottom:684.869267pt;}
.y125{bottom:685.931033pt;}
.y71{bottom:686.300613pt;}
.yc4{bottom:686.300907pt;}
.yfd{bottom:686.301120pt;}
.ya4{bottom:686.302347pt;}
.y3d{bottom:689.039653pt;}
.y8{bottom:698.152767pt;}
.y124{bottom:699.214533pt;}
.y70{bottom:702.240773pt;}
.yc3{bottom:702.241067pt;}
.yfc{bottom:702.241280pt;}
.ya3{bottom:702.242507pt;}
.y3c{bottom:704.979813pt;}
.y6f{bottom:718.181040pt;}
.yc2{bottom:718.181227pt;}
.yfb{bottom:718.181440pt;}
.ya2{bottom:718.182667pt;}
.y7{bottom:719.406367pt;}
.y3b{bottom:720.919973pt;}
.y6{bottom:732.689867pt;}
.yc1{bottom:734.121387pt;}
.yfa{bottom:734.121823pt;}
.y6e{bottom:734.122267pt;}
.ya1{bottom:734.122827pt;}
.y3a{bottom:736.860133pt;}
.y14e{bottom:744.748767pt;}
.yc0{bottom:750.061547pt;}
.y6d{bottom:750.062427pt;}
.ya0{bottom:750.062987pt;}
.yf9{bottom:755.647866pt;}
.y5{bottom:756.600267pt;}
.y14d{bottom:758.032267pt;}
.y15e{bottom:758.033329pt;}
.yf8{bottom:760.038133pt;}
.ybf{bottom:766.001707pt;}
.y6c{bottom:766.002587pt;}
.y9f{bottom:766.003147pt;}
.y14c{bottom:771.315767pt;}
.y15d{bottom:771.316829pt;}
.yf7{bottom:771.417635pt;}
.y39{bottom:777.881200pt;}
.ybe{bottom:781.942213pt;}
.y6b{bottom:781.942747pt;}
.y9e{bottom:781.943307pt;}
.y14b{bottom:784.599267pt;}
.y15c{bottom:784.600329pt;}
.y4{bottom:792.435221pt;}
.ybd{bottom:797.882373pt;}
.y14a{bottom:797.882767pt;}
.y6a{bottom:797.882907pt;}
.y9d{bottom:797.883467pt;}
.y15b{bottom:797.883829pt;}
.y149{bottom:811.166267pt;}
.y15a{bottom:811.167329pt;}
.yf6{bottom:812.910871pt;}
.ybc{bottom:813.822853pt;}
.y69{bottom:813.823067pt;}
.y9c{bottom:813.823627pt;}
.y3{bottom:819.002944pt;}
.y148{bottom:824.449767pt;}
.y159{bottom:824.450829pt;}
.ybb{bottom:829.763013pt;}
.y68{bottom:829.763227pt;}
.y9b{bottom:829.763787pt;}
.yf5{bottom:836.821111pt;}
.y147{bottom:837.733267pt;}
.y158{bottom:837.734329pt;}
.y2{bottom:845.570667pt;}
.yba{bottom:845.703173pt;}
.y67{bottom:845.703387pt;}
.y9a{bottom:845.703947pt;}
.y146{bottom:851.016767pt;}
.y157{bottom:851.017829pt;}
.yb9{bottom:861.642075pt;}
.y66{bottom:861.643547pt;}
.y99{bottom:861.644107pt;}
.y145{bottom:864.300267pt;}
.y156{bottom:864.301329pt;}
.yf4{bottom:874.623035pt;}
.yb8{bottom:877.582235pt;}
.y65{bottom:877.583707pt;}
.y98{bottom:877.584267pt;}
.y155{bottom:877.584829pt;}
.y154{bottom:890.868329pt;}
.y64{bottom:893.520875pt;}
.yb7{bottom:893.522395pt;}
.y97{bottom:893.524427pt;}
.yf3{bottom:898.533275pt;}
.y153{bottom:904.151829pt;}
.y63{bottom:909.461035pt;}
.yb6{bottom:909.462555pt;}
.y96{bottom:909.464587pt;}
.y1{bottom:916.304400pt;}
.y152{bottom:917.435329pt;}
.y62{bottom:925.401195pt;}
.yb5{bottom:925.402715pt;}
.y95{bottom:925.404747pt;}
.y151{bottom:930.718829pt;}
.y61{bottom:941.341355pt;}
.yb4{bottom:941.342875pt;}
.y94{bottom:941.344907pt;}
.y150{bottom:944.002329pt;}
.y60{bottom:957.281515pt;}
.yb3{bottom:957.283035pt;}
.y93{bottom:957.285067pt;}
.y14f{bottom:957.285829pt;}
.y38{bottom:989.032667pt;}
.hb{height:26.288092pt;}
.hc{height:31.289000pt;}
.h5{height:41.697737pt;}
.h1{height:41.718492pt;}
.h15{height:41.718626pt;}
.h22{height:42.398607pt;}
.h16{height:42.839287pt;}
.h21{height:46.718600pt;}
.h14{height:46.719000pt;}
.h17{height:46.719400pt;}
.h7{height:46.933500pt;}
.h6{height:48.194400pt;}
.h8{height:48.639248pt;}
.he{height:52.122040pt;}
.ha{height:52.147984pt;}
.h18{height:52.148643pt;}
.h19{height:52.149302pt;}
.h13{height:52.153018pt;}
.hd{height:52.998126pt;}
.h9{height:53.548975pt;}
.hf{height:58.902204pt;}
.h11{height:58.915794pt;}
.h1e{height:58.915900pt;}
.h20{height:58.916220pt;}
.h1d{height:58.917927pt;}
.h1f{height:58.919207pt;}
.h12{height:58.919634pt;}
.h10{height:58.932560pt;}
.h1b{height:62.538194pt;}
.h3{height:68.897671pt;}
.h4{height:77.222118pt;}
.h2{height:88.651992pt;}
.h1a{height:89.394825pt;}
.h1c{height:115.222456pt;}
.h0{height:1058.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x13{left:56.842400pt;}
.x1a{left:64.813492pt;}
.x18{left:66.374667pt;}
.xa{left:67.667867pt;}
.x15{left:72.783888pt;}
.xd{left:75.239467pt;}
.xb{left:79.623067pt;}
.x1b{left:82.712800pt;}
.xc{left:83.608027pt;}
.x1c{left:88.464858pt;}
.x2{left:108.429067pt;}
.x12{left:123.913467pt;}
.x3{left:154.993151pt;}
.x5{left:168.316533pt;}
.x4{left:188.290310pt;}
.x7{left:197.660400pt;}
.x14{left:227.625274pt;}
.x19{left:242.509067pt;}
.x6{left:260.858603pt;}
.x8{left:268.158591pt;}
.x11{left:285.116933pt;}
.x1{left:323.588267pt;}
.x9{left:333.874722pt;}
.xe{left:379.096984pt;}
.x16{left:407.526557pt;}
.xf{left:418.352800pt;}
.x17{left:423.466717pt;}
.x10{left:434.294512pt;}
.x1e{left:439.818404pt;}
.x21{left:459.297328pt;}
.x24{left:475.904891pt;}
.x1d{left:493.360977pt;}
.x22{left:503.951142pt;}
.x1f{left:553.083089pt;}
.x23{left:609.047006pt;}
.x20{left:647.671173pt;}
}




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