
    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_cfc762009ef70813221b1059.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_8991ce79ae9753720c147d73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101074;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_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_5d6f94d1ad643da15600e325.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_705f4f0d5dec75daebc87529.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.131348;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_5182ee0c453fea23aebcbbd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.121582;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_347c4670b7f7d99e9104b361.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937012;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_34b463096ad83791733ab410.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937012;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_30b5f56d22097ec9e9dd301b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.101074;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_70c5a9a87897f3b654bbd489.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.880859;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_3c4f809f3d5b88c31a505a7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3a243748240c0d761adf917a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.959961;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.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);}
.v1{vertical-align:-50.400000px;}
.v2{vertical-align:-32.220000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:38.880000px;}
.v3{vertical-align:43.380000px;}
.ls26{letter-spacing:-0.960000px;}
.ls23{letter-spacing:-0.420000px;}
.ls43{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.339600px;}
.ls11{letter-spacing:-0.304800px;}
.ls4c{letter-spacing:-0.302400px;}
.ls24{letter-spacing:-0.267600px;}
.ls15{letter-spacing:-0.237600px;}
.ls37{letter-spacing:-0.211800px;}
.ls3e{letter-spacing:-0.195600px;}
.ls1e{letter-spacing:-0.184200px;}
.lsb{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.133800px;}
.ls36{letter-spacing:-0.132600px;}
.ls5{letter-spacing:-0.124800px;}
.ls2f{letter-spacing:-0.122400px;}
.ls3b{letter-spacing:-0.105000px;}
.ls22{letter-spacing:-0.078600px;}
.ls33{letter-spacing:-0.070800px;}
.ls1b{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.005040px;}
.ls35{letter-spacing:0.011520px;}
.ls4a{letter-spacing:0.012120px;}
.ls4b{letter-spacing:0.021600px;}
.ls39{letter-spacing:0.042480px;}
.ls3d{letter-spacing:0.048960px;}
.ls34{letter-spacing:0.052560px;}
.ls2d{letter-spacing:0.057600px;}
.ls3c{letter-spacing:0.122400px;}
.ls20{letter-spacing:0.133800px;}
.ls32{letter-spacing:0.142560px;}
.ls47{letter-spacing:0.169920px;}
.ls16{letter-spacing:0.237600px;}
.ls17{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.302400px;}
.ls38{letter-spacing:0.349800px;}
.ls3a{letter-spacing:0.350640px;}
.ls1f{letter-spacing:0.360000px;}
.ls27{letter-spacing:1.320000px;}
.ls2e{letter-spacing:2.202000px;}
.ls48{letter-spacing:29.217600px;}
.ls49{letter-spacing:29.360160px;}
.ls1a{letter-spacing:33.726960px;}
.ls1d{letter-spacing:34.843680px;}
.ls18{letter-spacing:36.723024px;}
.ls9{letter-spacing:36.843024px;}
.ls7{letter-spacing:36.864000px;}
.lsa{letter-spacing:40.464000px;}
.lsd{letter-spacing:61.821600px;}
.ls2c{letter-spacing:61.845600px;}
.ls1c{letter-spacing:61.860000px;}
.lse{letter-spacing:61.872000px;}
.ls19{letter-spacing:61.884000px;}
.ls2b{letter-spacing:61.896000px;}
.ls3{letter-spacing:65.853600px;}
.lsf{letter-spacing:65.865600px;}
.ls4{letter-spacing:65.904000px;}
.ls10{letter-spacing:65.916000px;}
.ls31{letter-spacing:65.940000px;}
.ls40{letter-spacing:93.276000px;}
.ls41{letter-spacing:93.369600px;}
.ls42{letter-spacing:93.420000px;}
.ls30{letter-spacing:111.549600px;}
.ls8{letter-spacing:111.573600px;}
.ls28{letter-spacing:111.600000px;}
.ls6{letter-spacing:111.624000px;}
.lsc{letter-spacing:111.744000px;}
.ls21{letter-spacing:115.833600px;}
.ls29{letter-spacing:115.857600px;}
.ls25{letter-spacing:115.884000px;}
.ls2a{letter-spacing:115.908000px;}
.ls1{letter-spacing:115.977600px;}
.ls2{letter-spacing:116.028000px;}
.ls45{letter-spacing:119.865600px;}
.ls44{letter-spacing:119.916000px;}
.ls3f{letter-spacing:125.640000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2f{word-spacing:-144.000000px;}
.ws2a{word-spacing:-131.760000px;}
.wse{word-spacing:-95.419440px;}
.ws0{word-spacing:-75.849696px;}
.wsf{word-spacing:-55.116720px;}
.ws1c{word-spacing:-36.756720px;}
.ws5{word-spacing:-36.720000px;}
.ws2e{word-spacing:-36.685920px;}
.ws17{word-spacing:-33.958800px;}
.wsd{word-spacing:-33.836400px;}
.ws12{word-spacing:-33.729696px;}
.ws11{word-spacing:-33.696000px;}
.ws3{word-spacing:-33.635520px;}
.ws7{word-spacing:-33.598800px;}
.ws9{word-spacing:-33.465000px;}
.ws1f{word-spacing:-31.981200px;}
.ws4{word-spacing:-30.865536px;}
.wsa{word-spacing:-30.831840px;}
.ws4e{word-spacing:-30.697920px;}
.ws1{word-spacing:-30.661200px;}
.ws56{word-spacing:-30.538800px;}
.ws8{word-spacing:-28.169856px;}
.ws32{word-spacing:-28.136160px;}
.ws4c{word-spacing:-27.576720px;}
.ws4b{word-spacing:-27.540000px;}
.ws4a{word-spacing:-24.455520px;}
.ws47{word-spacing:-24.418800px;}
.ws1d{word-spacing:-18.360000px;}
.ws10{word-spacing:-3.600000px;}
.ws19{word-spacing:-1.045200px;}
.ws36{word-spacing:-0.952080px;}
.ws3b{word-spacing:-0.924720px;}
.ws39{word-spacing:-0.902400px;}
.ws14{word-spacing:-0.794160px;}
.ws57{word-spacing:-0.786960px;}
.ws2b{word-spacing:-0.752400px;}
.ws3a{word-spacing:-0.639600px;}
.ws6{word-spacing:-0.288000px;}
.ws2d{word-spacing:-0.223920px;}
.ws13{word-spacing:-0.221184px;}
.ws55{word-spacing:-0.120384px;}
.ws54{word-spacing:-0.120240px;}
.ws41{word-spacing:-0.084384px;}
.ws3d{word-spacing:-0.084240px;}
.ws42{word-spacing:-0.067104px;}
.ws3f{word-spacing:-0.066960px;}
.ws33{word-spacing:-0.050640px;}
.ws2{word-spacing:0.000000px;}
.ws34{word-spacing:0.261720px;}
.ws3c{word-spacing:0.300240px;}
.ws31{word-spacing:0.432000px;}
.ws27{word-spacing:0.441792px;}
.ws4d{word-spacing:0.812160px;}
.ws16{word-spacing:0.873360px;}
.ws38{word-spacing:0.877608px;}
.wsb{word-spacing:0.995280px;}
.ws4f{word-spacing:1.205280px;}
.ws50{word-spacing:1.588704px;}
.ws1a{word-spacing:1.844304px;}
.ws37{word-spacing:1.883520px;}
.ws52{word-spacing:1.982400px;}
.ws1b{word-spacing:2.074320px;}
.ws35{word-spacing:2.264544px;}
.ws2c{word-spacing:2.298000px;}
.wsc{word-spacing:2.818800px;}
.ws30{word-spacing:3.024000px;}
.ws22{word-spacing:3.052800px;}
.ws23{word-spacing:3.189600px;}
.ws51{word-spacing:3.408000px;}
.ws25{word-spacing:3.507120px;}
.ws15{word-spacing:3.507600px;}
.ws18{word-spacing:3.741888px;}
.ws29{word-spacing:3.836880px;}
.ws21{word-spacing:4.251840px;}
.ws20{word-spacing:4.459680px;}
.ws28{word-spacing:4.630320px;}
.ws26{word-spacing:4.993680px;}
.ws24{word-spacing:5.462400px;}
.ws45{word-spacing:16.370640px;}
.ws44{word-spacing:18.895680px;}
.ws3e{word-spacing:19.473120px;}
.ws43{word-spacing:21.510720px;}
.ws40{word-spacing:22.709520px;}
.ws53{word-spacing:29.368800px;}
.ws48{word-spacing:72.205920px;}
.ws46{word-spacing:88.475760px;}
.ws49{word-spacing:120.565920px;}
.ws1e{word-spacing:195.658800px;}
._b{margin-left:-20.968560px;}
._1c{margin-left:-18.004992px;}
._a{margin-left:-16.704000px;}
._13{margin-left:-14.644608px;}
._14{margin-left:-11.547312px;}
._c{margin-left:-10.475904px;}
._0{margin-left:-9.396000px;}
._12{margin-left:-8.216640px;}
._7{margin-left:-6.712032px;}
._f{margin-left:-5.586432px;}
._1{margin-left:-4.536000px;}
._3{margin-left:-3.182352px;}
._2{margin-left:-1.474944px;}
._4{width:1.138272px;}
._5{width:2.990256px;}
._6{width:4.897776px;}
._8{width:28.338720px;}
._10{width:29.571072px;}
._1b{width:30.776640px;}
._11{width:31.800576px;}
._e{width:35.442912px;}
._d{width:36.449760px;}
._9{width:38.150352px;}
._15{width:40.077888px;}
._19{width:96.883920px;}
._18{width:106.696320px;}
._1a{width:108.876240px;}
._17{width:128.457120px;}
._16{width:150.612720px;}
.fc6{color:rgb(77,88,67);}
.fc4{color:rgb(91,108,115);}
.fc3{color:rgb(176,188,193);}
.fc2{color:rgb(106,156,142);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs10{font-size:59.760000px;}
.fs13{font-size:59.904000px;}
.fs15{font-size:66.960000px;}
.fs17{font-size:67.104000px;}
.fs11{font-size:72.000000px;}
.fs14{font-size:84.240000px;}
.fs16{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fs18{font-size:95.904000px;}
.fs12{font-size:108.000000px;}
.fs1a{font-size:108.144000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fsc{font-size:126.742821px;}
.fsb{font-size:126.894609px;}
.fs7{font-size:131.760000px;}
.fs6{font-size:131.904000px;}
.fsd{font-size:138.885846px;}
.fs9{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs19{font-size:167.760000px;}
.fs8{font-size:192.240000px;}
.fs5{font-size:192.384000px;}
.fse{font-size:216.000000px;}
.fsf{font-size:216.144000px;}
.fs1b{font-size:288.000000px;}
.fs0{font-size:324.000000px;}
.fs1{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y68{bottom:9.720000px;}
.y72{bottom:12.888000px;}
.y67{bottom:30.495000px;}
.y6a{bottom:44.640000px;}
.y114{bottom:49.500000px;}
.y6b{bottom:50.436000px;}
.yae{bottom:54.720000px;}
.y131{bottom:55.905000px;}
.y47{bottom:65.520000px;}
.y71{bottom:67.212000px;}
.ye1{bottom:68.940000px;}
.yd1{bottom:73.260000px;}
.y9f{bottom:78.912000px;}
.y130{bottom:87.090000px;}
.y66{bottom:90.510000px;}
.y6c{bottom:92.412000px;}
.yad{bottom:93.960000px;}
.y84{bottom:96.300000px;}
.yf7{bottom:97.380000px;}
.y46{bottom:101.556000px;}
.y70{bottom:105.012000px;}
.y6d{bottom:109.185000px;}
.y152{bottom:110.268000px;}
.y9e{bottom:114.912000px;}
.y7{bottom:116.676000px;}
.y14{bottom:116.964000px;}
.y12f{bottom:118.230000px;}
.y15f{bottom:121.104000px;}
.y26{bottom:121.140000px;}
.y92{bottom:121.464000px;}
.y51{bottom:121.968000px;}
.y83{bottom:125.100000px;}
.yac{bottom:126.396000px;}
.y45{bottom:137.556000px;}
.y62{bottom:141.660000px;}
.y6{bottom:145.476000px;}
.y151{bottom:146.088000px;}
.yfd{bottom:149.430000px;}
.y9d{bottom:151.485000px;}
.y82{bottom:153.900000px;}
.y13{bottom:154.770000px;}
.y65{bottom:156.270000px;}
.y25{bottom:156.780000px;}
.y15e{bottom:157.110000px;}
.y50{bottom:158.190000px;}
.yab{bottom:158.790000px;}
.y144{bottom:159.585000px;}
.yb6{bottom:160.230000px;}
.yb8{bottom:163.620000px;}
.y12e{bottom:164.085000px;}
.yba{bottom:165.810000px;}
.yff{bottom:168.555000px;}
.y6e{bottom:172.155000px;}
.y44{bottom:174.090000px;}
.y32{bottom:175.170000px;}
.yfc{bottom:177.150000px;}
.y91{bottom:179.070000px;}
.ye8{bottom:180.720000px;}
.y150{bottom:181.725000px;}
.ye6{bottom:181.875000px;}
.y120{bottom:182.340000px;}
.y81{bottom:182.730000px;}
.y11e{bottom:182.985000px;}
.y39{bottom:184.170000px;}
.yb5{bottom:184.350000px;}
.y60{bottom:185.250000px;}
.yb7{bottom:187.740000px;}
.yb9{bottom:189.930000px;}
.yaa{bottom:191.190000px;}
.y59{bottom:191.910000px;}
.y12{bottom:192.570000px;}
.y24{bottom:192.960000px;}
.y15d{bottom:193.110000px;}
.y4f{bottom:194.190000px;}
.y12d{bottom:195.225000px;}
.y143{bottom:195.585000px;}
.yfe{bottom:196.275000px;}
.yfb{bottom:200.055000px;}
.yd7{bottom:200.085000px;}
.y63{bottom:203.790000px;}
.ye7{bottom:208.440000px;}
.y43{bottom:209.550000px;}
.ye5{bottom:209.595000px;}
.y11f{bottom:210.090000px;}
.y11c{bottom:210.315000px;}
.y11d{bottom:210.750000px;}
.y80{bottom:211.530000px;}
.y1b{bottom:211.710000px;}
.y31{bottom:215.310000px;}
.y14f{bottom:217.365000px;}
.ya9{bottom:223.590000px;}
.y38{bottom:223.770000px;}
.y9a{bottom:226.440000px;}
.yfa{bottom:227.775000px;}
.yd6{bottom:227.805000px;}
.y15c{bottom:229.500000px;}
.y162{bottom:229.680000px;}
.y4e{bottom:230.190000px;}
.y11{bottom:230.370000px;}
.y142{bottom:231.090000px;}
.y58{bottom:231.690000px;}
.y5f{bottom:234.030000px;}
.y90{bottom:236.160000px;}
.y23{bottom:237.630000px;}
.y11b{bottom:238.035000px;}
.y101{bottom:239.430000px;}
.y7f{bottom:240.330000px;}
.y42{bottom:245.595000px;}
.y64{bottom:247.680000px;}
.y6f{bottom:251.925000px;}
.y14e{bottom:253.050000px;}
.y30{bottom:254.370000px;}
.ya8{bottom:256.575000px;}
.y13d{bottom:260.715000px;}
.y11a{bottom:262.650000px;}
.y37{bottom:263.910000px;}
.ybc{bottom:264.930000px;}
.y4d{bottom:266.190000px;}
.y100{bottom:267.150000px;}
.y141{bottom:267.630000px;}
.y15b{bottom:268.020000px;}
.y10{bottom:268.200000px;}
.y7e{bottom:269.130000px;}
.yea{bottom:270.750000px;}
.y57{bottom:271.290000px;}
.y99{bottom:275.040000px;}
.y8f{bottom:276.300000px;}
.y5{bottom:276.555000px;}
.y103{bottom:276.945000px;}
.y69{bottom:279.795000px;}
.y22{bottom:281.550000px;}
.y41{bottom:281.595000px;}
.y1a{bottom:284.970000px;}
.y122{bottom:287.430000px;}
.yb4{bottom:288.510000px;}
.y14d{bottom:288.690000px;}
.ya7{bottom:288.975000px;}
.ybb{bottom:289.080000px;}
.y88{bottom:289.110000px;}
.y119{bottom:290.370000px;}
.y13c{bottom:296.745000px;}
.y73{bottom:297.795000px;}
.y7d{bottom:297.930000px;}
.ye9{bottom:298.470000px;}
.y61{bottom:301.500000px;}
.y2f{bottom:303.015000px;}
.y140{bottom:303.630000px;}
.y15a{bottom:304.020000px;}
.y102{bottom:304.665000px;}
.yf{bottom:306.000000px;}
.y5e{bottom:307.155000px;}
.y56{bottom:310.935000px;}
.y4c{bottom:311.220000px;}
.yb3{bottom:312.630000px;}
.y4{bottom:313.485000px;}
.y21{bottom:313.950000px;}
.y121{bottom:315.150000px;}
.y40{bottom:317.595000px;}
.y98{bottom:323.670000px;}
.yda{bottom:324.285000px;}
.y7c{bottom:326.775000px;}
.y19{bottom:328.215000px;}
.ybf{bottom:328.530000px;}
.ya6{bottom:329.835000px;}
.y13b{bottom:332.745000px;}
.y8e{bottom:333.360000px;}
.yd5{bottom:336.240000px;}
.y87{bottom:337.755000px;}
.y13f{bottom:339.090000px;}
.y159{bottom:340.560000px;}
.y36{bottom:342.435000px;}
.y2e{bottom:342.615000px;}
.ye{bottom:343.800000px;}
.y5d{bottom:346.935000px;}
.y3{bottom:350.385000px;}
.y55{bottom:350.535000px;}
.yd9{bottom:352.005000px;}
.ybe{bottom:352.650000px;}
.y14c{bottom:353.490000px;}
.y3f{bottom:353.595000px;}
.yec{bottom:355.140000px;}
.y20{bottom:355.395000px;}
.y7b{bottom:355.575000px;}
.y118{bottom:356.295000px;}
.y105{bottom:362.085000px;}
.ya5{bottom:362.235000px;}
.yd4{bottom:363.960000px;}
.y13a{bottom:368.745000px;}
.ye4{bottom:369.795000px;}
.y97{bottom:372.270000px;}
.y13e{bottom:375.660000px;}
.ybd{bottom:376.770000px;}
.y86{bottom:377.355000px;}
.y158{bottom:379.110000px;}
.yb2{bottom:379.590000px;}
.yd8{bottom:379.725000px;}
.yd{bottom:381.600000px;}
.y2d{bottom:382.035000px;}
.y35{bottom:382.215000px;}
.yeb{bottom:382.860000px;}
.y117{bottom:384.015000px;}
.y7a{bottom:384.375000px;}
.y8d{bottom:385.050000px;}
.y5c{bottom:386.535000px;}
.y3e{bottom:389.625000px;}
.y104{bottom:389.850000px;}
.y54{bottom:390.135000px;}
.yf9{bottom:391.350000px;}
.ya4{bottom:395.205000px;}
.y1f{bottom:397.515000px;}
.y18{bottom:401.475000px;}
.yb1{bottom:403.710000px;}
.y139{bottom:405.285000px;}
.y79{bottom:413.175000px;}
.yc1{bottom:414.540000px;}
.y157{bottom:415.110000px;}
.y161{bottom:415.650000px;}
.yf8{bottom:419.070000px;}
.yc{bottom:419.430000px;}
.yef{bottom:419.685000px;}
.y14b{bottom:419.760000px;}
.y96{bottom:420.330000px;}
.y124{bottom:421.560000px;}
.y107{bottom:423.975000px;}
.y8c{bottom:425.190000px;}
.y3d{bottom:425.625000px;}
.y4b{bottom:425.730000px;}
.y85{bottom:425.955000px;}
.y5b{bottom:426.135000px;}
.ya3{bottom:427.065000px;}
.yb0{bottom:427.830000px;}
.y53{bottom:429.735000px;}
.y2c{bottom:431.535000px;}
.y34{bottom:432.075000px;}
.y109{bottom:433.005000px;}
.yd3{bottom:435.960000px;}
.yc0{bottom:438.660000px;}
.y138{bottom:440.790000px;}
.ydc{bottom:441.795000px;}
.y78{bottom:441.975000px;}
.y1e{bottom:442.335000px;}
.y17{bottom:444.675000px;}
.yee{bottom:447.405000px;}
.yc3{bottom:448.305000px;}
.y123{bottom:449.280000px;}
.y156{bottom:451.470000px;}
.y106{bottom:451.725000px;}
.yaf{bottom:451.950000px;}
.y160{bottom:454.710000px;}
.y163{bottom:454.860000px;}
.ye3{bottom:455.295000px;}
.y14a{bottom:455.400000px;}
.y12c{bottom:457.200000px;}
.yb{bottom:457.950000px;}
.ya2{bottom:460.005000px;}
.y95{bottom:460.515000px;}
.y108{bottom:460.725000px;}
.y3c{bottom:461.625000px;}
.y4a{bottom:461.730000px;}
.yf1{bottom:462.060000px;}
.yd2{bottom:463.680000px;}
.y8b{bottom:464.250000px;}
.y116{bottom:464.325000px;}
.y52{bottom:469.365000px;}
.ydb{bottom:469.515000px;}
.y77{bottom:470.805000px;}
.y10b{bottom:471.240000px;}
.yc2{bottom:472.425000px;}
.y5a{bottom:474.765000px;}
.yed{bottom:475.170000px;}
.y2b{bottom:475.305000px;}
.y2{bottom:476.025000px;}
.y137{bottom:476.790000px;}
.yc9{bottom:479.445000px;}
.y10e{bottom:482.910000px;}
.ye2{bottom:483.015000px;}
.yf0{bottom:489.780000px;}
.y155{bottom:490.170000px;}
.y149{bottom:491.220000px;}
.y110{bottom:492.015000px;}
.y115{bottom:492.045000px;}
.yc6{bottom:495.075000px;}
.y129{bottom:495.645000px;}
.y49{bottom:497.730000px;}
.y112{bottom:497.910000px;}
.y10a{bottom:498.960000px;}
.y76{bottom:499.605000px;}
.ydf{bottom:502.050000px;}
.ycd{bottom:502.275000px;}
.ya1{bottom:502.845000px;}
.yc8{bottom:503.565000px;}
.y8a{bottom:504.435000px;}
.y3b{bottom:507.885000px;}
.y94{bottom:509.115000px;}
.y10d{bottom:510.630000px;}
.y1d{bottom:511.125000px;}
.y126{bottom:512.790000px;}
.y16{bottom:517.785000px;}
.y33{bottom:517.965000px;}
.y2a{bottom:518.505000px;}
.yc5{bottom:519.195000px;}
.yf5{bottom:519.450000px;}
.ya{bottom:519.690000px;}
.y10f{bottom:519.735000px;}
.y128{bottom:523.410000px;}
.y111{bottom:525.675000px;}
.y154{bottom:526.215000px;}
.y28{bottom:527.655000px;}
.yc7{bottom:527.685000px;}
.y75{bottom:528.405000px;}
.yde{bottom:529.770000px;}
.ycf{bottom:532.365000px;}
.ycc{bottom:534.450000px;}
.yf4{bottom:537.450000px;}
.y10c{bottom:538.380000px;}
.y125{bottom:540.510000px;}
.ya0{bottom:541.770000px;}
.y48{bottom:542.910000px;}
.yc4{bottom:543.315000px;}
.y3a{bottom:547.530000px;}
.y136{bottom:548.790000px;}
.y127{bottom:551.130000px;}
.y9{bottom:551.415000px;}
.yf3{bottom:554.325000px;}
.y89{bottom:555.555000px;}
.y1c{bottom:555.945000px;}
.y148{bottom:556.230000px;}
.yce{bottom:556.530000px;}
.y74{bottom:557.205000px;}
.ydd{bottom:557.535000px;}
.y93{bottom:557.895000px;}
.ycb{bottom:558.570000px;}
.y153{bottom:562.575000px;}
.y1{bottom:571.785000px;}
.yf2{bottom:582.045000px;}
.yca{bottom:582.690000px;}
.y135{bottom:584.820000px;}
.y113{bottom:594.870000px;}
.ye0{bottom:609.330000px;}
.y27{bottom:613.695000px;}
.y134{bottom:620.820000px;}
.yf6{bottom:623.880000px;}
.y12a{bottom:626.295000px;}
.y133{bottom:656.820000px;}
.y146{bottom:666.870000px;}
.y147{bottom:675.900000px;}
.y9c{bottom:678.570000px;}
.y15{bottom:684.720000px;}
.y29{bottom:685.440000px;}
.y8{bottom:692.385000px;}
.y132{bottom:693.360000px;}
.y145{bottom:703.230000px;}
.yd0{bottom:711.105000px;}
.y12b{bottom:717.405000px;}
.y9b{bottom:718.560000px;}
.h18{height:54.128320px;}
.h1c{height:54.258750px;}
.h1f{height:59.472773px;}
.h19{height:65.214844px;}
.h1e{height:74.820586px;}
.h20{height:74.948484px;}
.h5{height:86.735742px;}
.h22{height:86.866172px;}
.h10{height:93.881279px;}
.he{height:93.993712px;}
.h1a{height:97.664062px;}
.h2b{height:97.822266px;}
.h2c{height:97.952695px;}
.h13{height:102.875893px;}
.hf{height:107.030039px;}
.hd{height:107.158219px;}
.h3{height:108.908789px;}
.h4{height:109.039219px;}
.h12{height:117.284414px;}
.h16{height:117.412594px;}
.h11{height:119.150156px;}
.h8{height:119.343164px;}
.h7{height:119.473594px;}
.h26{height:125.615742px;}
.h25{height:130.115742px;}
.hc{height:130.218750px;}
.ha{height:130.429688px;}
.hb{height:130.560117px;}
.h29{height:151.704844px;}
.h27{height:173.842031px;}
.h23{height:173.972250px;}
.h9{height:174.123633px;}
.h6{height:174.254063px;}
.h14{height:195.644531px;}
.h15{height:195.774961px;}
.h2d{height:260.859375px;}
.h2a{height:270.000000px;}
.h1{height:293.466797px;}
.h2{height:293.597227px;}
.h17{height:321.480000px;}
.h1b{height:349.920000px;}
.h1d{height:615.960000px;}
.h28{height:643.860000px;}
.h21{height:657.360000px;}
.h24{height:686.520000px;}
.h0{height:810.000000px;}
.w2{width:572.040000px;}
.w9{width:573.660000px;}
.w3{width:575.280000px;}
.w5{width:901.980000px;}
.w8{width:945.900000px;}
.w4{width:951.300000px;}
.w6{width:968.940000px;}
.w7{width:980.820000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4f{left:5.004000px;}
.x52{left:7.164000px;}
.x51{left:15.228000px;}
.x89{left:18.252000px;}
.x3b{left:23.040000px;}
.x6a{left:29.628000px;}
.x3a{left:33.984000px;}
.x87{left:35.172000px;}
.x6b{left:39.888000px;}
.x57{left:42.120000px;}
.x7f{left:44.460000px;}
.x33{left:46.620000px;}
.x93{left:52.920000px;}
.x32{left:54.000000px;}
.x79{left:55.440000px;}
.x56{left:57.060000px;}
.x78{left:58.356000px;}
.x50{left:59.544000px;}
.x1e{left:61.991984px;}
.x29{left:63.795000px;}
.x3d{left:65.483984px;}
.x8a{left:67.644000px;}
.x3c{left:71.099984px;}
.x6c{left:72.330000px;}
.x28{left:74.055000px;}
.x53{left:75.924000px;}
.x43{left:77.723984px;}
.x21{left:79.523984px;}
.xa7{left:80.963984px;}
.x58{left:83.880000px;}
.xae{left:84.923984px;}
.x88{left:87.372000px;}
.x7a{left:88.380000px;}
.x63{left:89.820000px;}
.xb{left:92.411984px;}
.x24{left:96.840000px;}
.x40{left:99.035984px;}
.x1b{left:100.799984px;}
.x1f{left:102.491984px;}
.x34{left:110.670000px;}
.xaf{left:113.075984px;}
.xa{left:116.459984px;}
.x42{left:117.755984px;}
.x3e{left:119.483984px;}
.x22{left:120.923984px;}
.x6d{left:124.530000px;}
.x20{left:130.391984px;}
.xc{left:132.947984px;}
.x9f{left:135.150000px;}
.xd{left:136.655984px;}
.x1c{left:141.335984px;}
.x3f{left:146.483984px;}
.x54{left:152.205000px;}
.xe{left:157.649984px;}
.x1{left:160.844984px;}
.x19{left:164.729984px;}
.x31{left:166.965000px;}
.x1d{left:169.229984px;}
.x44{left:173.129984px;}
.x77{left:174.135000px;}
.x2a{left:175.245000px;}
.x35{left:178.455000px;}
.x4{left:179.894984px;}
.x55{left:182.985000px;}
.x1a{left:185.549984px;}
.x13{left:187.844984px;}
.x25{left:198.075000px;}
.x14{left:200.444984px;}
.x8b{left:201.675000px;}
.xa0{left:203.910000px;}
.xaa{left:210.390000px;}
.xab{left:213.450000px;}
.x3{left:214.634984px;}
.x9d{left:217.620000px;}
.x8c{left:219.705000px;}
.x5{left:223.094984px;}
.x7b{left:225.795000px;}
.xa1{left:230.190000px;}
.x7c{left:232.170000px;}
.x2{left:238.784984px;}
.x36{left:246.270000px;}
.x6e{left:250.770000px;}
.x5a{left:252.030000px;}
.x62{left:254.369984px;}
.x59{left:256.710000px;}
.x2c{left:261.645000px;}
.x41{left:263.414984px;}
.xb1{left:268.529984px;}
.x9e{left:270.000000px;}
.x6f{left:272.370000px;}
.xa6{left:273.885000px;}
.x2b{left:276.480000px;}
.x8d{left:278.100000px;}
.x68{left:280.590000px;}
.x76{left:282.750000px;}
.xa2{left:286.815000px;}
.x4d{left:290.520000px;}
.x11{left:292.604984px;}
.x92{left:294.045000px;}
.x5b{left:295.770000px;}
.x26{left:299.310000px;}
.xf{left:303.404984px;}
.xa3{left:304.845000px;}
.x7e{left:310.755000px;}
.x37{left:314.070000px;}
.x69{left:323.070000px;}
.x85{left:324.285000px;}
.x12{left:329.009984px;}
.x15{left:334.949984px;}
.x4e{left:336.420000px;}
.x10{left:339.809984px;}
.x5d{left:342.510000px;}
.x5c{left:348.450000px;}
.xa8{left:350.970000px;}
.x2e{left:362.880000px;}
.x86{left:364.605000px;}
.xa9{left:368.250000px;}
.x16{left:375.629984px;}
.x2d{left:377.715000px;}
.x38{left:381.885000px;}
.x5e{left:385.170000px;}
.x27{left:400.500000px;}
.x9b{left:411.945000px;}
.x8e{left:419.865000px;}
.x7d{left:422.640000px;}
.xa4{left:424.260000px;}
.x8f{left:435.705000px;}
.x9c{left:438.945000px;}
.x5f{left:456.120000px;}
.x23{left:458.280000px;}
.xa5{left:460.980000px;}
.x30{left:464.115000px;}
.x2f{left:478.905000px;}
.x64{left:503.670000px;}
.x9{left:504.824984px;}
.x65{left:518.610000px;}
.x39{left:521.280000px;}
.x90{left:537.585000px;}
.x70{left:542.625000px;}
.x84{left:553.965000px;}
.xac{left:556.199984px;}
.xb0{left:558.464984px;}
.x60{left:562.215000px;}
.x71{left:563.865000px;}
.x91{left:569.445000px;}
.xad{left:590.039984px;}
.x7{left:594.689984px;}
.x61{left:595.695000px;}
.x4b{left:602.355000px;}
.x6{left:604.409984px;}
.x46{left:614.880000px;}
.x47{left:616.680000px;}
.x45{left:619.200000px;}
.x74{left:621.615000px;}
.x94{left:624.705000px;}
.x8{left:625.829984px;}
.x99{left:633.810000px;}
.x95{left:639.645000px;}
.x48{left:646.020000px;}
.x4c{left:648.645000px;}
.x75{left:664.095000px;}
.x9a{left:680.250000px;}
.x97{left:687.090000px;}
.x66{left:689.970000px;}
.x67{left:718.050000px;}
.x80{left:733.965000px;}
.x98{left:735.690000px;}
.x72{left:747.435000px;}
.x81{left:748.905000px;}
.x82{left:760.830000px;}
.x96{left:768.855000px;}
.x73{left:775.515000px;}
.x49{left:793.650000px;}
.x83{left:795.060000px;}
.x4a{left:821.910000px;}
.x18{left:905.684984px;}
.x17{left:970.484984px;}
@media print{
.v1{vertical-align:-44.800000pt;}
.v2{vertical-align:-28.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:34.560000pt;}
.v3{vertical-align:38.560000pt;}
.ls26{letter-spacing:-0.853333pt;}
.ls23{letter-spacing:-0.373333pt;}
.ls43{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.301867pt;}
.ls11{letter-spacing:-0.270933pt;}
.ls4c{letter-spacing:-0.268800pt;}
.ls24{letter-spacing:-0.237867pt;}
.ls15{letter-spacing:-0.211200pt;}
.ls37{letter-spacing:-0.188267pt;}
.ls3e{letter-spacing:-0.173867pt;}
.ls1e{letter-spacing:-0.163733pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.118933pt;}
.ls36{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:-0.110933pt;}
.ls2f{letter-spacing:-0.108800pt;}
.ls3b{letter-spacing:-0.093333pt;}
.ls22{letter-spacing:-0.069867pt;}
.ls33{letter-spacing:-0.062933pt;}
.ls1b{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.004480pt;}
.ls35{letter-spacing:0.010240pt;}
.ls4a{letter-spacing:0.010773pt;}
.ls4b{letter-spacing:0.019200pt;}
.ls39{letter-spacing:0.037760pt;}
.ls3d{letter-spacing:0.043520pt;}
.ls34{letter-spacing:0.046720pt;}
.ls2d{letter-spacing:0.051200pt;}
.ls3c{letter-spacing:0.108800pt;}
.ls20{letter-spacing:0.118933pt;}
.ls32{letter-spacing:0.126720pt;}
.ls47{letter-spacing:0.151040pt;}
.ls16{letter-spacing:0.211200pt;}
.ls17{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.268800pt;}
.ls38{letter-spacing:0.310933pt;}
.ls3a{letter-spacing:0.311680pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls27{letter-spacing:1.173333pt;}
.ls2e{letter-spacing:1.957333pt;}
.ls48{letter-spacing:25.971200pt;}
.ls49{letter-spacing:26.097920pt;}
.ls1a{letter-spacing:29.979520pt;}
.ls1d{letter-spacing:30.972160pt;}
.ls18{letter-spacing:32.642688pt;}
.ls9{letter-spacing:32.749355pt;}
.ls7{letter-spacing:32.768000pt;}
.lsa{letter-spacing:35.968000pt;}
.lsd{letter-spacing:54.952533pt;}
.ls2c{letter-spacing:54.973867pt;}
.ls1c{letter-spacing:54.986667pt;}
.lse{letter-spacing:54.997333pt;}
.ls19{letter-spacing:55.008000pt;}
.ls2b{letter-spacing:55.018667pt;}
.ls3{letter-spacing:58.536533pt;}
.lsf{letter-spacing:58.547200pt;}
.ls4{letter-spacing:58.581333pt;}
.ls10{letter-spacing:58.592000pt;}
.ls31{letter-spacing:58.613333pt;}
.ls40{letter-spacing:82.912000pt;}
.ls41{letter-spacing:82.995200pt;}
.ls42{letter-spacing:83.040000pt;}
.ls30{letter-spacing:99.155200pt;}
.ls8{letter-spacing:99.176533pt;}
.ls28{letter-spacing:99.200000pt;}
.ls6{letter-spacing:99.221333pt;}
.lsc{letter-spacing:99.328000pt;}
.ls21{letter-spacing:102.963200pt;}
.ls29{letter-spacing:102.984533pt;}
.ls25{letter-spacing:103.008000pt;}
.ls2a{letter-spacing:103.029333pt;}
.ls1{letter-spacing:103.091200pt;}
.ls2{letter-spacing:103.136000pt;}
.ls45{letter-spacing:106.547200pt;}
.ls44{letter-spacing:106.592000pt;}
.ls3f{letter-spacing:111.680000pt;}
.ws2f{word-spacing:-128.000000pt;}
.ws2a{word-spacing:-117.120000pt;}
.wse{word-spacing:-84.817280pt;}
.ws0{word-spacing:-67.421952pt;}
.wsf{word-spacing:-48.992640pt;}
.ws1c{word-spacing:-32.672640pt;}
.ws5{word-spacing:-32.640000pt;}
.ws2e{word-spacing:-32.609707pt;}
.ws17{word-spacing:-30.185600pt;}
.wsd{word-spacing:-30.076800pt;}
.ws12{word-spacing:-29.981952pt;}
.ws11{word-spacing:-29.952000pt;}
.ws3{word-spacing:-29.898240pt;}
.ws7{word-spacing:-29.865600pt;}
.ws9{word-spacing:-29.746667pt;}
.ws1f{word-spacing:-28.427733pt;}
.ws4{word-spacing:-27.436032pt;}
.wsa{word-spacing:-27.406080pt;}
.ws4e{word-spacing:-27.287040pt;}
.ws1{word-spacing:-27.254400pt;}
.ws56{word-spacing:-27.145600pt;}
.ws8{word-spacing:-25.039872pt;}
.ws32{word-spacing:-25.009920pt;}
.ws4c{word-spacing:-24.512640pt;}
.ws4b{word-spacing:-24.480000pt;}
.ws4a{word-spacing:-21.738240pt;}
.ws47{word-spacing:-21.705600pt;}
.ws1d{word-spacing:-16.320000pt;}
.ws10{word-spacing:-3.200000pt;}
.ws19{word-spacing:-0.929067pt;}
.ws36{word-spacing:-0.846293pt;}
.ws3b{word-spacing:-0.821973pt;}
.ws39{word-spacing:-0.802133pt;}
.ws14{word-spacing:-0.705920pt;}
.ws57{word-spacing:-0.699520pt;}
.ws2b{word-spacing:-0.668800pt;}
.ws3a{word-spacing:-0.568533pt;}
.ws6{word-spacing:-0.256000pt;}
.ws2d{word-spacing:-0.199040pt;}
.ws13{word-spacing:-0.196608pt;}
.ws55{word-spacing:-0.107008pt;}
.ws54{word-spacing:-0.106880pt;}
.ws41{word-spacing:-0.075008pt;}
.ws3d{word-spacing:-0.074880pt;}
.ws42{word-spacing:-0.059648pt;}
.ws3f{word-spacing:-0.059520pt;}
.ws33{word-spacing:-0.045013pt;}
.ws2{word-spacing:0.000000pt;}
.ws34{word-spacing:0.232640pt;}
.ws3c{word-spacing:0.266880pt;}
.ws31{word-spacing:0.384000pt;}
.ws27{word-spacing:0.392704pt;}
.ws4d{word-spacing:0.721920pt;}
.ws16{word-spacing:0.776320pt;}
.ws38{word-spacing:0.780096pt;}
.wsb{word-spacing:0.884693pt;}
.ws4f{word-spacing:1.071360pt;}
.ws50{word-spacing:1.412181pt;}
.ws1a{word-spacing:1.639381pt;}
.ws37{word-spacing:1.674240pt;}
.ws52{word-spacing:1.762133pt;}
.ws1b{word-spacing:1.843840pt;}
.ws35{word-spacing:2.012928pt;}
.ws2c{word-spacing:2.042667pt;}
.wsc{word-spacing:2.505600pt;}
.ws30{word-spacing:2.688000pt;}
.ws22{word-spacing:2.713600pt;}
.ws23{word-spacing:2.835200pt;}
.ws51{word-spacing:3.029333pt;}
.ws25{word-spacing:3.117440pt;}
.ws15{word-spacing:3.117867pt;}
.ws18{word-spacing:3.326123pt;}
.ws29{word-spacing:3.410560pt;}
.ws21{word-spacing:3.779413pt;}
.ws20{word-spacing:3.964160pt;}
.ws28{word-spacing:4.115840pt;}
.ws26{word-spacing:4.438827pt;}
.ws24{word-spacing:4.855467pt;}
.ws45{word-spacing:14.551680pt;}
.ws44{word-spacing:16.796160pt;}
.ws3e{word-spacing:17.309440pt;}
.ws43{word-spacing:19.120640pt;}
.ws40{word-spacing:20.186240pt;}
.ws53{word-spacing:26.105600pt;}
.ws48{word-spacing:64.183040pt;}
.ws46{word-spacing:78.645120pt;}
.ws49{word-spacing:107.169707pt;}
.ws1e{word-spacing:173.918933pt;}
._b{margin-left:-18.638720pt;}
._1c{margin-left:-16.004437pt;}
._a{margin-left:-14.848000pt;}
._13{margin-left:-13.017429pt;}
._14{margin-left:-10.264277pt;}
._c{margin-left:-9.311915pt;}
._0{margin-left:-8.352000pt;}
._12{margin-left:-7.303680pt;}
._7{margin-left:-5.966251pt;}
._f{margin-left:-4.965717pt;}
._1{margin-left:-4.032000pt;}
._3{margin-left:-2.828757pt;}
._2{margin-left:-1.311061pt;}
._4{width:1.011797pt;}
._5{width:2.658005pt;}
._6{width:4.353579pt;}
._8{width:25.189973pt;}
._10{width:26.285397pt;}
._1b{width:27.357013pt;}
._11{width:28.267179pt;}
._e{width:31.504811pt;}
._d{width:32.399787pt;}
._9{width:33.911424pt;}
._15{width:35.624789pt;}
._19{width:86.119040pt;}
._18{width:94.841173pt;}
._1a{width:96.778880pt;}
._17{width:114.184107pt;}
._16{width:133.877973pt;}
.fs10{font-size:53.120000pt;}
.fs13{font-size:53.248000pt;}
.fs15{font-size:59.520000pt;}
.fs17{font-size:59.648000pt;}
.fs11{font-size:64.000000pt;}
.fs14{font-size:74.880000pt;}
.fs16{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fs18{font-size:85.248000pt;}
.fs12{font-size:96.000000pt;}
.fs1a{font-size:96.128000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fsc{font-size:112.660286pt;}
.fsb{font-size:112.795208pt;}
.fs7{font-size:117.120000pt;}
.fs6{font-size:117.248000pt;}
.fsd{font-size:123.454085pt;}
.fs9{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs19{font-size:149.120000pt;}
.fs8{font-size:170.880000pt;}
.fs5{font-size:171.008000pt;}
.fse{font-size:192.000000pt;}
.fsf{font-size:192.128000pt;}
.fs1b{font-size:256.000000pt;}
.fs0{font-size:288.000000pt;}
.fs1{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:8.640000pt;}
.y72{bottom:11.456000pt;}
.y67{bottom:27.106667pt;}
.y6a{bottom:39.680000pt;}
.y114{bottom:44.000000pt;}
.y6b{bottom:44.832000pt;}
.yae{bottom:48.640000pt;}
.y131{bottom:49.693333pt;}
.y47{bottom:58.240000pt;}
.y71{bottom:59.744000pt;}
.ye1{bottom:61.280000pt;}
.yd1{bottom:65.120000pt;}
.y9f{bottom:70.144000pt;}
.y130{bottom:77.413333pt;}
.y66{bottom:80.453333pt;}
.y6c{bottom:82.144000pt;}
.yad{bottom:83.520000pt;}
.y84{bottom:85.600000pt;}
.yf7{bottom:86.560000pt;}
.y46{bottom:90.272000pt;}
.y70{bottom:93.344000pt;}
.y6d{bottom:97.053333pt;}
.y152{bottom:98.016000pt;}
.y9e{bottom:102.144000pt;}
.y7{bottom:103.712000pt;}
.y14{bottom:103.968000pt;}
.y12f{bottom:105.093333pt;}
.y15f{bottom:107.648000pt;}
.y26{bottom:107.680000pt;}
.y92{bottom:107.968000pt;}
.y51{bottom:108.416000pt;}
.y83{bottom:111.200000pt;}
.yac{bottom:112.352000pt;}
.y45{bottom:122.272000pt;}
.y62{bottom:125.920000pt;}
.y6{bottom:129.312000pt;}
.y151{bottom:129.856000pt;}
.yfd{bottom:132.826667pt;}
.y9d{bottom:134.653333pt;}
.y82{bottom:136.800000pt;}
.y13{bottom:137.573333pt;}
.y65{bottom:138.906667pt;}
.y25{bottom:139.360000pt;}
.y15e{bottom:139.653333pt;}
.y50{bottom:140.613333pt;}
.yab{bottom:141.146667pt;}
.y144{bottom:141.853333pt;}
.yb6{bottom:142.426667pt;}
.yb8{bottom:145.440000pt;}
.y12e{bottom:145.853333pt;}
.yba{bottom:147.386667pt;}
.yff{bottom:149.826667pt;}
.y6e{bottom:153.026667pt;}
.y44{bottom:154.746667pt;}
.y32{bottom:155.706667pt;}
.yfc{bottom:157.466667pt;}
.y91{bottom:159.173333pt;}
.ye8{bottom:160.640000pt;}
.y150{bottom:161.533333pt;}
.ye6{bottom:161.666667pt;}
.y120{bottom:162.080000pt;}
.y81{bottom:162.426667pt;}
.y11e{bottom:162.653333pt;}
.y39{bottom:163.706667pt;}
.yb5{bottom:163.866667pt;}
.y60{bottom:164.666667pt;}
.yb7{bottom:166.880000pt;}
.yb9{bottom:168.826667pt;}
.yaa{bottom:169.946667pt;}
.y59{bottom:170.586667pt;}
.y12{bottom:171.173333pt;}
.y24{bottom:171.520000pt;}
.y15d{bottom:171.653333pt;}
.y4f{bottom:172.613333pt;}
.y12d{bottom:173.533333pt;}
.y143{bottom:173.853333pt;}
.yfe{bottom:174.466667pt;}
.yfb{bottom:177.826667pt;}
.yd7{bottom:177.853333pt;}
.y63{bottom:181.146667pt;}
.ye7{bottom:185.280000pt;}
.y43{bottom:186.266667pt;}
.ye5{bottom:186.306667pt;}
.y11f{bottom:186.746667pt;}
.y11c{bottom:186.946667pt;}
.y11d{bottom:187.333333pt;}
.y80{bottom:188.026667pt;}
.y1b{bottom:188.186667pt;}
.y31{bottom:191.386667pt;}
.y14f{bottom:193.213333pt;}
.ya9{bottom:198.746667pt;}
.y38{bottom:198.906667pt;}
.y9a{bottom:201.280000pt;}
.yfa{bottom:202.466667pt;}
.yd6{bottom:202.493333pt;}
.y15c{bottom:204.000000pt;}
.y162{bottom:204.160000pt;}
.y4e{bottom:204.613333pt;}
.y11{bottom:204.773333pt;}
.y142{bottom:205.413333pt;}
.y58{bottom:205.946667pt;}
.y5f{bottom:208.026667pt;}
.y90{bottom:209.920000pt;}
.y23{bottom:211.226667pt;}
.y11b{bottom:211.586667pt;}
.y101{bottom:212.826667pt;}
.y7f{bottom:213.626667pt;}
.y42{bottom:218.306667pt;}
.y64{bottom:220.160000pt;}
.y6f{bottom:223.933333pt;}
.y14e{bottom:224.933333pt;}
.y30{bottom:226.106667pt;}
.ya8{bottom:228.066667pt;}
.y13d{bottom:231.746667pt;}
.y11a{bottom:233.466667pt;}
.y37{bottom:234.586667pt;}
.ybc{bottom:235.493333pt;}
.y4d{bottom:236.613333pt;}
.y100{bottom:237.466667pt;}
.y141{bottom:237.893333pt;}
.y15b{bottom:238.240000pt;}
.y10{bottom:238.400000pt;}
.y7e{bottom:239.226667pt;}
.yea{bottom:240.666667pt;}
.y57{bottom:241.146667pt;}
.y99{bottom:244.480000pt;}
.y8f{bottom:245.600000pt;}
.y5{bottom:245.826667pt;}
.y103{bottom:246.173333pt;}
.y69{bottom:248.706667pt;}
.y22{bottom:250.266667pt;}
.y41{bottom:250.306667pt;}
.y1a{bottom:253.306667pt;}
.y122{bottom:255.493333pt;}
.yb4{bottom:256.453333pt;}
.y14d{bottom:256.613333pt;}
.ya7{bottom:256.866667pt;}
.ybb{bottom:256.960000pt;}
.y88{bottom:256.986667pt;}
.y119{bottom:258.106667pt;}
.y13c{bottom:263.773333pt;}
.y73{bottom:264.706667pt;}
.y7d{bottom:264.826667pt;}
.ye9{bottom:265.306667pt;}
.y61{bottom:268.000000pt;}
.y2f{bottom:269.346667pt;}
.y140{bottom:269.893333pt;}
.y15a{bottom:270.240000pt;}
.y102{bottom:270.813333pt;}
.yf{bottom:272.000000pt;}
.y5e{bottom:273.026667pt;}
.y56{bottom:276.386667pt;}
.y4c{bottom:276.640000pt;}
.yb3{bottom:277.893333pt;}
.y4{bottom:278.653333pt;}
.y21{bottom:279.066667pt;}
.y121{bottom:280.133333pt;}
.y40{bottom:282.306667pt;}
.y98{bottom:287.706667pt;}
.yda{bottom:288.253333pt;}
.y7c{bottom:290.466667pt;}
.y19{bottom:291.746667pt;}
.ybf{bottom:292.026667pt;}
.ya6{bottom:293.186667pt;}
.y13b{bottom:295.773333pt;}
.y8e{bottom:296.320000pt;}
.yd5{bottom:298.880000pt;}
.y87{bottom:300.226667pt;}
.y13f{bottom:301.413333pt;}
.y159{bottom:302.720000pt;}
.y36{bottom:304.386667pt;}
.y2e{bottom:304.546667pt;}
.ye{bottom:305.600000pt;}
.y5d{bottom:308.386667pt;}
.y3{bottom:311.453333pt;}
.y55{bottom:311.586667pt;}
.yd9{bottom:312.893333pt;}
.ybe{bottom:313.466667pt;}
.y14c{bottom:314.213333pt;}
.y3f{bottom:314.306667pt;}
.yec{bottom:315.680000pt;}
.y20{bottom:315.906667pt;}
.y7b{bottom:316.066667pt;}
.y118{bottom:316.706667pt;}
.y105{bottom:321.853333pt;}
.ya5{bottom:321.986667pt;}
.yd4{bottom:323.520000pt;}
.y13a{bottom:327.773333pt;}
.ye4{bottom:328.706667pt;}
.y97{bottom:330.906667pt;}
.y13e{bottom:333.920000pt;}
.ybd{bottom:334.906667pt;}
.y86{bottom:335.426667pt;}
.y158{bottom:336.986667pt;}
.yb2{bottom:337.413333pt;}
.yd8{bottom:337.533333pt;}
.yd{bottom:339.200000pt;}
.y2d{bottom:339.586667pt;}
.y35{bottom:339.746667pt;}
.yeb{bottom:340.320000pt;}
.y117{bottom:341.346667pt;}
.y7a{bottom:341.666667pt;}
.y8d{bottom:342.266667pt;}
.y5c{bottom:343.586667pt;}
.y3e{bottom:346.333333pt;}
.y104{bottom:346.533333pt;}
.y54{bottom:346.786667pt;}
.yf9{bottom:347.866667pt;}
.ya4{bottom:351.293333pt;}
.y1f{bottom:353.346667pt;}
.y18{bottom:356.866667pt;}
.yb1{bottom:358.853333pt;}
.y139{bottom:360.253333pt;}
.y79{bottom:367.266667pt;}
.yc1{bottom:368.480000pt;}
.y157{bottom:368.986667pt;}
.y161{bottom:369.466667pt;}
.yf8{bottom:372.506667pt;}
.yc{bottom:372.826667pt;}
.yef{bottom:373.053333pt;}
.y14b{bottom:373.120000pt;}
.y96{bottom:373.626667pt;}
.y124{bottom:374.720000pt;}
.y107{bottom:376.866667pt;}
.y8c{bottom:377.946667pt;}
.y3d{bottom:378.333333pt;}
.y4b{bottom:378.426667pt;}
.y85{bottom:378.626667pt;}
.y5b{bottom:378.786667pt;}
.ya3{bottom:379.613333pt;}
.yb0{bottom:380.293333pt;}
.y53{bottom:381.986667pt;}
.y2c{bottom:383.586667pt;}
.y34{bottom:384.066667pt;}
.y109{bottom:384.893333pt;}
.yd3{bottom:387.520000pt;}
.yc0{bottom:389.920000pt;}
.y138{bottom:391.813333pt;}
.ydc{bottom:392.706667pt;}
.y78{bottom:392.866667pt;}
.y1e{bottom:393.186667pt;}
.y17{bottom:395.266667pt;}
.yee{bottom:397.693333pt;}
.yc3{bottom:398.493333pt;}
.y123{bottom:399.360000pt;}
.y156{bottom:401.306667pt;}
.y106{bottom:401.533333pt;}
.yaf{bottom:401.733333pt;}
.y160{bottom:404.186667pt;}
.y163{bottom:404.320000pt;}
.ye3{bottom:404.706667pt;}
.y14a{bottom:404.800000pt;}
.y12c{bottom:406.400000pt;}
.yb{bottom:407.066667pt;}
.ya2{bottom:408.893333pt;}
.y95{bottom:409.346667pt;}
.y108{bottom:409.533333pt;}
.y3c{bottom:410.333333pt;}
.y4a{bottom:410.426667pt;}
.yf1{bottom:410.720000pt;}
.yd2{bottom:412.160000pt;}
.y8b{bottom:412.666667pt;}
.y116{bottom:412.733333pt;}
.y52{bottom:417.213333pt;}
.ydb{bottom:417.346667pt;}
.y77{bottom:418.493333pt;}
.y10b{bottom:418.880000pt;}
.yc2{bottom:419.933333pt;}
.y5a{bottom:422.013333pt;}
.yed{bottom:422.373333pt;}
.y2b{bottom:422.493333pt;}
.y2{bottom:423.133333pt;}
.y137{bottom:423.813333pt;}
.yc9{bottom:426.173333pt;}
.y10e{bottom:429.253333pt;}
.ye2{bottom:429.346667pt;}
.yf0{bottom:435.360000pt;}
.y155{bottom:435.706667pt;}
.y149{bottom:436.640000pt;}
.y110{bottom:437.346667pt;}
.y115{bottom:437.373333pt;}
.yc6{bottom:440.066667pt;}
.y129{bottom:440.573333pt;}
.y49{bottom:442.426667pt;}
.y112{bottom:442.586667pt;}
.y10a{bottom:443.520000pt;}
.y76{bottom:444.093333pt;}
.ydf{bottom:446.266667pt;}
.ycd{bottom:446.466667pt;}
.ya1{bottom:446.973333pt;}
.yc8{bottom:447.613333pt;}
.y8a{bottom:448.386667pt;}
.y3b{bottom:451.453333pt;}
.y94{bottom:452.546667pt;}
.y10d{bottom:453.893333pt;}
.y1d{bottom:454.333333pt;}
.y126{bottom:455.813333pt;}
.y16{bottom:460.253333pt;}
.y33{bottom:460.413333pt;}
.y2a{bottom:460.893333pt;}
.yc5{bottom:461.506667pt;}
.yf5{bottom:461.733333pt;}
.ya{bottom:461.946667pt;}
.y10f{bottom:461.986667pt;}
.y128{bottom:465.253333pt;}
.y111{bottom:467.266667pt;}
.y154{bottom:467.746667pt;}
.y28{bottom:469.026667pt;}
.yc7{bottom:469.053333pt;}
.y75{bottom:469.693333pt;}
.yde{bottom:470.906667pt;}
.ycf{bottom:473.213333pt;}
.ycc{bottom:475.066667pt;}
.yf4{bottom:477.733333pt;}
.y10c{bottom:478.560000pt;}
.y125{bottom:480.453333pt;}
.ya0{bottom:481.573333pt;}
.y48{bottom:482.586667pt;}
.yc4{bottom:482.946667pt;}
.y3a{bottom:486.693333pt;}
.y136{bottom:487.813333pt;}
.y127{bottom:489.893333pt;}
.y9{bottom:490.146667pt;}
.yf3{bottom:492.733333pt;}
.y89{bottom:493.826667pt;}
.y1c{bottom:494.173333pt;}
.y148{bottom:494.426667pt;}
.yce{bottom:494.693333pt;}
.y74{bottom:495.293333pt;}
.ydd{bottom:495.586667pt;}
.y93{bottom:495.906667pt;}
.ycb{bottom:496.506667pt;}
.y153{bottom:500.066667pt;}
.y1{bottom:508.253333pt;}
.yf2{bottom:517.373333pt;}
.yca{bottom:517.946667pt;}
.y135{bottom:519.840000pt;}
.y113{bottom:528.773333pt;}
.ye0{bottom:541.626667pt;}
.y27{bottom:545.506667pt;}
.y134{bottom:551.840000pt;}
.yf6{bottom:554.560000pt;}
.y12a{bottom:556.706667pt;}
.y133{bottom:583.840000pt;}
.y146{bottom:592.773333pt;}
.y147{bottom:600.800000pt;}
.y9c{bottom:603.173333pt;}
.y15{bottom:608.640000pt;}
.y29{bottom:609.280000pt;}
.y8{bottom:615.453333pt;}
.y132{bottom:616.320000pt;}
.y145{bottom:625.093333pt;}
.yd0{bottom:632.093333pt;}
.y12b{bottom:637.693333pt;}
.y9b{bottom:638.720000pt;}
.h18{height:48.114062pt;}
.h1c{height:48.230000pt;}
.h1f{height:52.864688pt;}
.h19{height:57.968750pt;}
.h1e{height:66.507188pt;}
.h20{height:66.620875pt;}
.h5{height:77.098438pt;}
.h22{height:77.214375pt;}
.h10{height:83.450026pt;}
.he{height:83.549966pt;}
.h1a{height:86.812500pt;}
.h2b{height:86.953125pt;}
.h2c{height:87.069063pt;}
.h13{height:91.445238pt;}
.hf{height:95.137812pt;}
.hd{height:95.251750pt;}
.h3{height:96.807812pt;}
.h4{height:96.923750pt;}
.h12{height:104.252812pt;}
.h16{height:104.366750pt;}
.h11{height:105.911250pt;}
.h8{height:106.082812pt;}
.h7{height:106.198750pt;}
.h26{height:111.658438pt;}
.h25{height:115.658438pt;}
.hc{height:115.750000pt;}
.ha{height:115.937500pt;}
.hb{height:116.053437pt;}
.h29{height:134.848750pt;}
.h27{height:154.526250pt;}
.h23{height:154.642000pt;}
.h9{height:154.776562pt;}
.h6{height:154.892500pt;}
.h14{height:173.906250pt;}
.h15{height:174.022188pt;}
.h2d{height:231.875000pt;}
.h2a{height:240.000000pt;}
.h1{height:260.859375pt;}
.h2{height:260.975312pt;}
.h17{height:285.760000pt;}
.h1b{height:311.040000pt;}
.h1d{height:547.520000pt;}
.h28{height:572.320000pt;}
.h21{height:584.320000pt;}
.h24{height:610.240000pt;}
.h0{height:720.000000pt;}
.w2{width:508.480000pt;}
.w9{width:509.920000pt;}
.w3{width:511.360000pt;}
.w5{width:801.760000pt;}
.w8{width:840.800000pt;}
.w4{width:845.600000pt;}
.w6{width:861.280000pt;}
.w7{width:871.840000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:4.448000pt;}
.x52{left:6.368000pt;}
.x51{left:13.536000pt;}
.x89{left:16.224000pt;}
.x3b{left:20.480000pt;}
.x6a{left:26.336000pt;}
.x3a{left:30.208000pt;}
.x87{left:31.264000pt;}
.x6b{left:35.456000pt;}
.x57{left:37.440000pt;}
.x7f{left:39.520000pt;}
.x33{left:41.440000pt;}
.x93{left:47.040000pt;}
.x32{left:48.000000pt;}
.x79{left:49.280000pt;}
.x56{left:50.720000pt;}
.x78{left:51.872000pt;}
.x50{left:52.928000pt;}
.x1e{left:55.103986pt;}
.x29{left:56.706667pt;}
.x3d{left:58.207986pt;}
.x8a{left:60.128000pt;}
.x3c{left:63.199986pt;}
.x6c{left:64.293333pt;}
.x28{left:65.826667pt;}
.x53{left:67.488000pt;}
.x43{left:69.087986pt;}
.x21{left:70.687986pt;}
.xa7{left:71.967986pt;}
.x58{left:74.560000pt;}
.xae{left:75.487986pt;}
.x88{left:77.664000pt;}
.x7a{left:78.560000pt;}
.x63{left:79.840000pt;}
.xb{left:82.143986pt;}
.x24{left:86.080000pt;}
.x40{left:88.031986pt;}
.x1b{left:89.599986pt;}
.x1f{left:91.103986pt;}
.x34{left:98.373333pt;}
.xaf{left:100.511986pt;}
.xa{left:103.519986pt;}
.x42{left:104.671986pt;}
.x3e{left:106.207986pt;}
.x22{left:107.487986pt;}
.x6d{left:110.693333pt;}
.x20{left:115.903986pt;}
.xc{left:118.175986pt;}
.x9f{left:120.133333pt;}
.xd{left:121.471986pt;}
.x1c{left:125.631986pt;}
.x3f{left:130.207986pt;}
.x54{left:135.293333pt;}
.xe{left:140.133319pt;}
.x1{left:142.973319pt;}
.x19{left:146.426652pt;}
.x31{left:148.413333pt;}
.x1d{left:150.426652pt;}
.x44{left:153.893319pt;}
.x77{left:154.786667pt;}
.x2a{left:155.773333pt;}
.x35{left:158.626667pt;}
.x4{left:159.906652pt;}
.x55{left:162.653333pt;}
.x1a{left:164.933319pt;}
.x13{left:166.973319pt;}
.x25{left:176.066667pt;}
.x14{left:178.173319pt;}
.x8b{left:179.266667pt;}
.xa0{left:181.253333pt;}
.xaa{left:187.013333pt;}
.xab{left:189.733333pt;}
.x3{left:190.786652pt;}
.x9d{left:193.440000pt;}
.x8c{left:195.293333pt;}
.x5{left:198.306652pt;}
.x7b{left:200.706667pt;}
.xa1{left:204.613333pt;}
.x7c{left:206.373333pt;}
.x2{left:212.253319pt;}
.x36{left:218.906667pt;}
.x6e{left:222.906667pt;}
.x5a{left:224.026667pt;}
.x62{left:226.106652pt;}
.x59{left:228.186667pt;}
.x2c{left:232.573333pt;}
.x41{left:234.146652pt;}
.xb1{left:238.693319pt;}
.x9e{left:240.000000pt;}
.x6f{left:242.106667pt;}
.xa6{left:243.453333pt;}
.x2b{left:245.760000pt;}
.x8d{left:247.200000pt;}
.x68{left:249.413333pt;}
.x76{left:251.333333pt;}
.xa2{left:254.946667pt;}
.x4d{left:258.240000pt;}
.x11{left:260.093319pt;}
.x92{left:261.373333pt;}
.x5b{left:262.906667pt;}
.x26{left:266.053333pt;}
.xf{left:269.693319pt;}
.xa3{left:270.973333pt;}
.x7e{left:276.226667pt;}
.x37{left:279.173333pt;}
.x69{left:287.173333pt;}
.x85{left:288.253333pt;}
.x12{left:292.453319pt;}
.x15{left:297.733319pt;}
.x4e{left:299.040000pt;}
.x10{left:302.053319pt;}
.x5d{left:304.453333pt;}
.x5c{left:309.733333pt;}
.xa8{left:311.973333pt;}
.x2e{left:322.560000pt;}
.x86{left:324.093333pt;}
.xa9{left:327.333333pt;}
.x16{left:333.893319pt;}
.x2d{left:335.746667pt;}
.x38{left:339.453333pt;}
.x5e{left:342.373333pt;}
.x27{left:356.000000pt;}
.x9b{left:366.173333pt;}
.x8e{left:373.213333pt;}
.x7d{left:375.680000pt;}
.xa4{left:377.120000pt;}
.x8f{left:387.293333pt;}
.x9c{left:390.173333pt;}
.x5f{left:405.440000pt;}
.x23{left:407.360000pt;}
.xa5{left:409.760000pt;}
.x30{left:412.546667pt;}
.x2f{left:425.693333pt;}
.x64{left:447.706667pt;}
.x9{left:448.733319pt;}
.x65{left:460.986667pt;}
.x39{left:463.360000pt;}
.x90{left:477.853333pt;}
.x70{left:482.333333pt;}
.x84{left:492.413333pt;}
.xac{left:494.399986pt;}
.xb0{left:496.413319pt;}
.x60{left:499.746667pt;}
.x71{left:501.213333pt;}
.x91{left:506.173333pt;}
.xad{left:524.479986pt;}
.x7{left:528.613319pt;}
.x61{left:529.506667pt;}
.x4b{left:535.426667pt;}
.x6{left:537.253319pt;}
.x46{left:546.560000pt;}
.x47{left:548.160000pt;}
.x45{left:550.400000pt;}
.x74{left:552.546667pt;}
.x94{left:555.293333pt;}
.x8{left:556.293319pt;}
.x99{left:563.386667pt;}
.x95{left:568.573333pt;}
.x48{left:574.240000pt;}
.x4c{left:576.573333pt;}
.x75{left:590.306667pt;}
.x9a{left:604.666667pt;}
.x97{left:610.746667pt;}
.x66{left:613.306667pt;}
.x67{left:638.266667pt;}
.x80{left:652.413333pt;}
.x98{left:653.946667pt;}
.x72{left:664.386667pt;}
.x81{left:665.693333pt;}
.x82{left:676.293333pt;}
.x96{left:683.426667pt;}
.x73{left:689.346667pt;}
.x49{left:705.466667pt;}
.x83{left:706.720000pt;}
.x4a{left:730.586667pt;}
.x18{left:805.053319pt;}
.x17{left:862.653319pt;}
}




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