
    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_184d9b69f41912fdbaf9c543.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692871;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_8dd7d469a11a4e4f6d4ea92a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_6c4bb52c731b38328505544e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3506561b58adfee3009a0873.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_212f80c2495318bcd64013a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_d6b3c98180a10a3187c1220c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6bd16af85b174794d1afb1cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b05859bc6e67f5c8392ba96c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.070312;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_e8302c03d139ddc887853910.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_78ac826ac17957e5532435b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_0d33883ca91ca81ce51a80e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.104492;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_cbed39f16f2db4cf49c30223.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f8014c3bcd6aa43d26d228e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e6d2faecd5333aa5aa2f2713.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3278e8ca549794aa6c27d651.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7b5d2bc417610a4608e84df1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.926270;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);}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-2.407682px;}
.ls29{letter-spacing:-1.774081px;}
.ls31{letter-spacing:-1.710721px;}
.ls51{letter-spacing:-1.553761px;}
.ls2a{letter-spacing:-1.520641px;}
.ls52{letter-spacing:-1.494001px;}
.ls32{letter-spacing:-1.457281px;}
.lsd{letter-spacing:-1.436401px;}
.ls22{letter-spacing:-1.393921px;}
.ls21{letter-spacing:-1.203841px;}
.ls2c{letter-spacing:-1.140481px;}
.ls4d{letter-spacing:-1.075681px;}
.ls23{letter-spacing:-1.013761px;}
.ls18{letter-spacing:-0.950401px;}
.ls17{letter-spacing:-0.823681px;}
.ls50{letter-spacing:-0.776881px;}
.ls15{letter-spacing:-0.760321px;}
.ls20{letter-spacing:-0.696961px;}
.ls25{letter-spacing:-0.633601px;}
.ls11{letter-spacing:-0.594000px;}
.ls1f{letter-spacing:-0.570240px;}
.ls28{letter-spacing:-0.506880px;}
.ls12{letter-spacing:-0.486000px;}
.ls4a{letter-spacing:-0.478080px;}
.ls2b{letter-spacing:-0.443520px;}
.ls27{letter-spacing:-0.380160px;}
.ls33{letter-spacing:-0.316800px;}
.ls4c{letter-spacing:-0.298800px;}
.lsc{letter-spacing:-0.287280px;}
.ls4b{letter-spacing:-0.239040px;}
.ls57{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.179280px;}
.lsa{letter-spacing:-0.168480px;}
.ls10{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.119520px;}
.ls58{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.063360px;}
.lsb{letter-spacing:-0.059760px;}
.ls13{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001140px;}
.ls53{letter-spacing:0.054000px;}
.ls4f{letter-spacing:0.059760px;}
.ls2f{letter-spacing:0.099660px;}
.ls54{letter-spacing:0.107930px;}
.ls3{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.126720px;}
.ls55{letter-spacing:0.136140px;}
.lsf{letter-spacing:0.144000px;}
.ls56{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.237420px;}
.ls1{letter-spacing:0.239040px;}
.ls3f{letter-spacing:0.243060px;}
.ls24{letter-spacing:0.253440px;}
.ls42{letter-spacing:0.293700px;}
.ls41{letter-spacing:0.321780px;}
.ls49{letter-spacing:0.327420px;}
.ls3e{letter-spacing:0.338700px;}
.ls46{letter-spacing:0.349920px;}
.lse{letter-spacing:0.383040px;}
.ls48{letter-spacing:0.476940px;}
.ls45{letter-spacing:0.518700px;}
.ls47{letter-spacing:0.556980px;}
.ls4{letter-spacing:0.606420px;}
.ls44{letter-spacing:0.655501px;}
.ls43{letter-spacing:0.756721px;}
.ls4e{letter-spacing:0.956161px;}
.ls3a{letter-spacing:1.077781px;}
.ls6{letter-spacing:2.119562px;}
.ls3c{letter-spacing:2.534702px;}
.ls2d{letter-spacing:3.991563px;}
.ls1c{letter-spacing:4.120923px;}
.ls1e{letter-spacing:4.689064px;}
.ls5{letter-spacing:5.005204px;}
.ls39{letter-spacing:5.448424px;}
.ls1b{letter-spacing:6.269705px;}
.ls1d{letter-spacing:6.843425px;}
.ls3b{letter-spacing:6.877206px;}
.ls35{letter-spacing:7.602786px;}
.ls19{letter-spacing:8.300287px;}
.ls36{letter-spacing:10.454708px;}
.ls38{letter-spacing:11.214069px;}
.ls2e{letter-spacing:12.609070px;}
.ls37{letter-spacing:13.368431px;}
.ls1a{letter-spacing:14.763432px;}
.ls34{letter-spacing:16.912214px;}
.ls3d{letter-spacing:37.825950px;}
.ls30{letter-spacing:42.894154px;}
.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;}
}
.ws20{word-spacing:-47.520038px;}
.ws2{word-spacing:-44.820036px;}
.wsd{word-spacing:-40.716033px;}
.wsa{word-spacing:-40.500032px;}
.ws6{word-spacing:-26.621301px;}
.ws4{word-spacing:-26.334021px;}
.ws5{word-spacing:-25.184900px;}
.ws3{word-spacing:-19.206735px;}
.ws25{word-spacing:-17.614094px;}
.ws32{word-spacing:-17.569454px;}
.ws2a{word-spacing:-17.233934px;}
.ws2b{word-spacing:-17.170574px;}
.ws29{word-spacing:-17.107214px;}
.ws22{word-spacing:-16.917134px;}
.ws2c{word-spacing:-16.853773px;}
.ws33{word-spacing:-16.852333px;}
.ws2d{word-spacing:-16.790413px;}
.ws34{word-spacing:-16.673053px;}
.ws26{word-spacing:-16.663693px;}
.ws7{word-spacing:-16.632013px;}
.ws1{word-spacing:-16.613293px;}
.ws21{word-spacing:-16.600333px;}
.ws30{word-spacing:-16.553533px;}
.ws0{word-spacing:-16.493773px;}
.ws24{word-spacing:-16.473613px;}
.ws2e{word-spacing:-16.374253px;}
.ws2f{word-spacing:-16.314493px;}
.ws8{word-spacing:-16.272013px;}
.ws28{word-spacing:-16.156813px;}
.ws27{word-spacing:-15.903373px;}
.ws31{word-spacing:-15.537612px;}
.wsc{word-spacing:-15.228012px;}
.ws23{word-spacing:-15.206412px;}
.ws38{word-spacing:-15.174012px;}
.ws37{word-spacing:-15.120012px;}
.ws9{word-spacing:-15.012012px;}
.ws39{word-spacing:-14.904012px;}
.wsf{word-spacing:-14.572812px;}
.wsb{word-spacing:-14.526012px;}
.ws10{word-spacing:-14.446092px;}
.ws12{word-spacing:-14.382732px;}
.ws13{word-spacing:-13.685771px;}
.ws11{word-spacing:-13.622411px;}
.wse{word-spacing:-12.312010px;}
.ws18{word-spacing:-0.810001px;}
.ws19{word-spacing:-0.239040px;}
.ws1b{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.108000px;}
.ws15{word-spacing:-0.054000px;}
.ws14{word-spacing:0.000000px;}
.ws36{word-spacing:0.059760px;}
.ws35{word-spacing:0.119520px;}
.ws1a{word-spacing:0.288000px;}
.ws17{word-spacing:0.702001px;}
.ws1f{word-spacing:0.823681px;}
.ws1c{word-spacing:1.457281px;}
.ws1e{word-spacing:5.765765px;}
.ws1d{word-spacing:7.920006px;}
._9{margin-left:-3.102164px;}
._1{margin-left:-1.325581px;}
._0{width:1.253521px;}
._2{width:2.456702px;}
._4{width:3.562904px;}
._3{width:4.971014px;}
._5{width:6.151559px;}
._8{width:7.446293px;}
._11{width:8.481949px;}
._a{width:9.546280px;}
._10{width:10.806700px;}
._b{width:12.081148px;}
._12{width:13.255928px;}
._e{width:14.654422px;}
._c{width:15.722645px;}
._d{width:18.515336px;}
._7{width:19.913396px;}
._6{width:21.855744px;}
._14{width:23.341672px;}
._15{width:24.699041px;}
._18{width:25.887659px;}
._f{width:27.752573px;}
._16{width:28.900239px;}
._17{width:29.993262px;}
._1b{width:31.694339px;}
._19{width:33.628019px;}
._1c{width:38.206441px;}
._1a{width:42.558183px;}
._13{width:43.808533px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(232,44,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240039px;}
.fs2{font-size:54.000043px;}
.fs0{font-size:59.760048px;}
.fs5{font-size:63.360051px;}
.fs1{font-size:72.000058px;}
.fs3{font-size:84.240067px;}
.fs4{font-size:95.760077px;}
.y0{bottom:0.000000px;}
.y1ed{bottom:2.880557px;}
.yb0{bottom:4.320076px;}
.y3e{bottom:4.320077px;}
.y3a{bottom:20.520085px;}
.y40{bottom:23.580078px;}
.y5{bottom:29.700087px;}
.y3f{bottom:73.800000px;}
.yb1{bottom:73.980000px;}
.y4{bottom:78.660000px;}
.yb2{bottom:81.720065px;}
.y41{bottom:81.900066px;}
.y39{bottom:86.220000px;}
.y3{bottom:89.100071px;}
.y3c{bottom:89.460072px;}
.yaf{bottom:90.360000px;}
.y3b{bottom:91.440073px;}
.y3d{bottom:91.620000px;}
.y6{bottom:92.880074px;}
.y2{bottom:110.160088px;}
.y152{bottom:152.640122px;}
.y38{bottom:153.045407px;}
.y188{bottom:155.330224px;}
.yae{bottom:160.307378px;}
.y78{bottom:160.446278px;}
.y1c8{bottom:161.455929px;}
.ye8{bottom:166.984634px;}
.y11e{bottom:168.819435px;}
.y151{bottom:170.820137px;}
.y37{bottom:170.865422px;}
.y187{bottom:173.514439px;}
.yad{bottom:177.953092px;}
.y77{bottom:178.266293px;}
.y1c7{bottom:178.920143px;}
.ye7{bottom:185.168848px;}
.y11d{bottom:186.639449px;}
.y150{bottom:188.820151px;}
.y36{bottom:188.859886px;}
.y186{bottom:191.508903px;}
.yac{bottom:195.773107px;}
.y76{bottom:195.912007px;}
.y1c6{bottom:196.020157px;}
.y1d6{bottom:203.040717px;}
.ye6{bottom:203.163313px;}
.y11c{bottom:204.285163px;}
.y35{bottom:206.854350px;}
.y185{bottom:209.693118px;}
.y14f{bottom:211.367869px;}
.yab{bottom:213.418821px;}
.y1c5{bottom:213.451821px;}
.y75{bottom:218.230675px;}
.ye5{bottom:221.347527px;}
.y11b{bottom:222.105178px;}
.y34{bottom:224.674365px;}
.y184{bottom:227.877332px;}
.y14e{bottom:229.552084px;}
.y1c4{bottom:230.557534px;}
.yaa{bottom:231.238835px;}
.ye4{bottom:239.531742px;}
.y11a{bottom:239.750892px;}
.y74{bottom:240.723643px;}
.y33{bottom:242.667329px;}
.y183{bottom:245.871797px;}
.y1c3{bottom:247.664598px;}
.ya9{bottom:248.884549px;}
.y14d{bottom:252.045052px;}
.ye3{bottom:257.526206px;}
.y119{bottom:257.570906px;}
.y73{bottom:258.179457px;}
.y32{bottom:260.487343px;}
.y182{bottom:264.056011px;}
.y1c2{bottom:264.950312px;}
.ya8{bottom:266.704563px;}
.y14c{bottom:269.865066px;}
.y118{bottom:275.216620px;}
.ye2{bottom:275.710421px;}
.y72{bottom:275.825171px;}
.y31{bottom:278.481808px;}
.y181{bottom:282.240226px;}
.y1c1{bottom:282.414526px;}
.ya7{bottom:284.350277px;}
.y14b{bottom:287.510780px;}
.y117{bottom:293.037984px;}
.y71{bottom:293.470885px;}
.ye1{bottom:293.704885px;}
.y30{bottom:296.301822px;}
.y1c0{bottom:299.700240px;}
.ya6{bottom:302.170292px;}
.y180{bottom:304.740244px;}
.y14a{bottom:305.330794px;}
.y116{bottom:310.683699px;}
.y70{bottom:310.926699px;}
.ye0{bottom:311.889100px;}
.y2f{bottom:314.296286px;}
.y1bf{bottom:316.771903px;}
.ya5{bottom:319.816006px;}
.y149{bottom:322.977858px;}
.y17f{bottom:327.420262px;}
.y115{bottom:328.503713px;}
.y6f{bottom:328.572413px;}
.ydf{bottom:330.073314px;}
.y2e{bottom:332.290751px;}
.y1be{bottom:334.236117px;}
.ya4{bottom:337.636020px;}
.y148{bottom:340.797873px;}
.y17e{bottom:345.420276px;}
.y114{bottom:346.149427px;}
.y6e{bottom:346.218127px;}
.yde{bottom:348.067778px;}
.y2d{bottom:350.110765px;}
.y1bd{bottom:351.163181px;}
.ya3{bottom:355.281734px;}
.y147{bottom:358.443587px;}
.y17d{bottom:363.240291px;}
.y6d{bottom:363.673941px;}
.y113{bottom:363.969441px;}
.ydd{bottom:366.251993px;}
.y2c{bottom:368.105229px;}
.y1bc{bottom:368.448895px;}
.ya2{bottom:373.101748px;}
.y146{bottom:376.263601px;}
.y17c{bottom:381.240305px;}
.y6c{bottom:381.319655px;}
.y112{bottom:381.789455px;}
.ydc{bottom:384.246457px;}
.y1bb{bottom:385.914609px;}
.y2b{bottom:385.925244px;}
.ya1{bottom:390.747463px;}
.y145{bottom:393.909315px;}
.y6b{bottom:398.965369px;}
.y17b{bottom:399.240319px;}
.y111{bottom:399.435170px;}
.ydb{bottom:402.430672px;}
.y1ba{bottom:403.020322px;}
.y2a{bottom:403.919708px;}
.ya0{bottom:408.567477px;}
.y144{bottom:411.729329px;}
.y6a{bottom:416.421183px;}
.y17a{bottom:417.240334px;}
.y110{bottom:417.255184px;}
.y1b9{bottom:420.300336px;}
.yda{bottom:420.614886px;}
.y29{bottom:421.019722px;}
.y9f{bottom:426.214541px;}
.y143{bottom:429.375043px;}
.y69{bottom:434.066897px;}
.y10f{bottom:434.900898px;}
.y179{bottom:435.060348px;}
.y28{bottom:435.626449px;}
.y1b8{bottom:437.743400px;}
.yd9{bottom:438.609351px;}
.y9e{bottom:444.034555px;}
.y142{bottom:447.195058px;}
.y68{bottom:451.712611px;}
.y10e{bottom:452.720912px;}
.y178{bottom:453.060362px;}
.y27{bottom:453.620913px;}
.y1b7{bottom:454.849114px;}
.yd8{bottom:456.793565px;}
.y9d{bottom:461.854569px;}
.y141{bottom:464.840772px;}
.y67{bottom:469.168425px;}
.y10d{bottom:470.366626px;}
.y177{bottom:471.060377px;}
.y26{bottom:471.805127px;}
.y1b6{bottom:471.956178px;}
.yd7{bottom:474.977780px;}
.y9c{bottom:479.500284px;}
.y140{bottom:482.660786px;}
.y66{bottom:486.814139px;}
.y10c{bottom:488.186641px;}
.y176{bottom:489.060391px;}
.y1b5{bottom:489.420392px;}
.y25{bottom:489.989342px;}
.yd6{bottom:492.972244px;}
.y9b{bottom:497.320298px;}
.y13f{bottom:500.306500px;}
.y65{bottom:504.459854px;}
.y10b{bottom:505.832355px;}
.y175{bottom:507.060406px;}
.y24{bottom:507.983806px;}
.yd5{bottom:511.156459px;}
.y9a{bottom:514.966012px;}
.y1b4{bottom:515.473912px;}
.y13e{bottom:518.126515px;}
.y64{bottom:521.915668px;}
.y10a{bottom:523.652369px;}
.y174{bottom:524.880420px;}
.y23{bottom:526.168021px;}
.yd4{bottom:529.150923px;}
.y1b3{bottom:532.759176px;}
.y99{bottom:532.786026px;}
.y13d{bottom:535.946529px;}
.y63{bottom:539.561382px;}
.y109{bottom:541.299433px;}
.y173{bottom:542.880434px;}
.y22{bottom:544.162485px;}
.yd3{bottom:546.970938px;}
.y1b2{bottom:550.224890px;}
.y98{bottom:550.431740px;}
.y13c{bottom:553.592243px;}
.y62{bottom:557.207096px;}
.y108{bottom:559.119447px;}
.y172{bottom:560.880449px;}
.y21{bottom:562.156950px;}
.yd2{bottom:564.965402px;}
.y1b1{bottom:567.330604px;}
.y1f4{bottom:568.231955px;}
.y97{bottom:568.251755px;}
.y13b{bottom:571.412257px;}
.y61{bottom:574.662910px;}
.y107{bottom:576.765161px;}
.y171{bottom:578.880463px;}
.y20{bottom:580.341164px;}
.yd1{bottom:582.959866px;}
.y1b0{bottom:584.616318px;}
.y1f3{bottom:585.517668px;}
.y96{bottom:585.897469px;}
.y13a{bottom:589.057971px;}
.y60{bottom:592.308624px;}
.y106{bottom:594.585176px;}
.y170{bottom:596.700477px;}
.y1f{bottom:598.335629px;}
.yd0{bottom:600.954331px;}
.y1af{bottom:601.902032px;}
.y1f2{bottom:602.803382px;}
.y95{bottom:603.717483px;}
.y139{bottom:606.877986px;}
.y5f{bottom:609.955688px;}
.y105{bottom:612.230890px;}
.y16f{bottom:614.700492px;}
.y1e{bottom:616.519843px;}
.ycf{bottom:618.774345px;}
.y1ae{bottom:619.187745px;}
.y1f1{bottom:620.089096px;}
.y94{bottom:621.215447px;}
.y138{bottom:624.523700px;}
.y5e{bottom:627.601402px;}
.y104{bottom:630.050904px;}
.y16e{bottom:632.700506px;}
.y1d{bottom:634.514308px;}
.y1ad{bottom:636.294809px;}
.yce{bottom:636.768809px;}
.y1f0{bottom:637.374810px;}
.y93{bottom:639.399662px;}
.y137{bottom:642.343714px;}
.y5d{bottom:645.057216px;}
.y103{bottom:647.696618px;}
.y16d{bottom:650.700521px;}
.y1c{bottom:652.508772px;}
.y1ac{bottom:653.400523px;}
.y1ef{bottom:654.660524px;}
.ycd{bottom:654.763274px;}
.y92{bottom:657.394126px;}
.y136{bottom:659.990778px;}
.y5c{bottom:662.702930px;}
.y102{bottom:665.516632px;}
.y16c{bottom:668.700535px;}
.y1ab{bottom:670.680537px;}
.y1b{bottom:670.692987px;}
.ycc{bottom:672.757738px;}
.y1ee{bottom:673.740539px;}
.y91{bottom:675.578340px;}
.y135{bottom:677.810792px;}
.y5b{bottom:680.348644px;}
.y101{bottom:683.162347px;}
.y16b{bottom:686.520549px;}
.y1aa{bottom:688.123450px;}
.y1a{bottom:688.687451px;}
.ycb{bottom:690.752203px;}
.y1d5{bottom:692.820000px;}
.y90{bottom:693.762555px;}
.y134{bottom:695.456506px;}
.y5a{bottom:697.804458px;}
.y100{bottom:700.982361px;}
.y1e0{bottom:704.160563px;}
.y16a{bottom:704.520564px;}
.y1a9{bottom:705.229164px;}
.y19{bottom:706.871665px;}
.yca{bottom:708.572217px;}
.y1ec{bottom:711.360569px;}
.y8f{bottom:711.757019px;}
.y133{bottom:713.276521px;}
.y59{bottom:715.450172px;}
.yff{bottom:718.628075px;}
.y1df{bottom:719.820576px;}
.y1a8{bottom:722.514878px;}
.y169{bottom:722.520578px;}
.y18{bottom:724.866130px;}
.yc9{bottom:726.565181px;}
.y1eb{bottom:726.660581px;}
.y8e{bottom:729.941234px;}
.y132{bottom:730.922235px;}
.y58{bottom:733.095886px;}
.y1de{bottom:735.660589px;}
.yfe{bottom:736.448089px;}
.y1a7{bottom:739.800592px;}
.y168{bottom:740.520592px;}
.y1ea{bottom:742.320594px;}
.y17{bottom:742.860594px;}
.yc8{bottom:744.559646px;}
.y8d{bottom:748.125448px;}
.y131{bottom:748.742249px;}
.y57{bottom:750.551700px;}
.yfd{bottom:754.093803px;}
.y1a6{bottom:756.900606px;}
.y1e9{bottom:757.800606px;}
.y167{bottom:758.520607px;}
.yc7{bottom:762.554110px;}
.y1dd{bottom:764.280611px;}
.y8c{bottom:766.119913px;}
.y130{bottom:766.387963px;}
.y56{bottom:768.197415px;}
.y16{bottom:768.960615px;}
.yfc{bottom:771.913818px;}
.y1e8{bottom:773.632219px;}
.y1a5{bottom:774.343519px;}
.y166{bottom:776.700621px;}
.y1dc{bottom:779.760624px;}
.yc6{bottom:780.374124px;}
.y12f{bottom:784.207977px;}
.y8b{bottom:784.304127px;}
.y55{bottom:785.843129px;}
.y1e7{bottom:789.116431px;}
.yfb{bottom:789.559532px;}
.y1a4{bottom:791.629233px;}
.y165{bottom:794.880636px;}
.y15{bottom:797.040638px;}
.yc5{bottom:798.368589px;}
.y1db{bottom:799.920640px;}
.y12e{bottom:801.853691px;}
.y8a{bottom:802.298592px;}
.y54{bottom:803.298943px;}
.y1e6{bottom:804.776444px;}
.yfa{bottom:807.379546px;}
.y1a3{bottom:808.914947px;}
.y164{bottom:812.880650px;}
.y1da{bottom:815.400652px;}
.yc4{bottom:816.363053px;}
.y14{bottom:817.740654px;}
.y12d{bottom:819.673706px;}
.y89{bottom:820.482806px;}
.y53{bottom:820.944657px;}
.y1e5{bottom:824.756460px;}
.yf9{bottom:825.199560px;}
.y1a2{bottom:826.200661px;}
.y163{bottom:831.060665px;}
.yc3{bottom:834.357517px;}
.y1d9{bottom:835.376468px;}
.y12c{bottom:837.319420px;}
.y52{bottom:838.590371px;}
.y88{bottom:838.667021px;}
.yf8{bottom:842.846624px;}
.y1a1{bottom:843.300675px;}
.y1e4{bottom:844.736476px;}
.y162{bottom:849.060679px;}
.y13{bottom:849.776480px;}
.yc2{bottom:852.351982px;}
.y12b{bottom:855.139434px;}
.y1d8{bottom:855.720685px;}
.y51{bottom:856.046185px;}
.y87{bottom:856.661485px;}
.y1e3{bottom:860.220688px;}
.y1a0{bottom:860.569438px;}
.yf7{bottom:860.666639px;}
.y12{bottom:864.896492px;}
.y161{bottom:867.240694px;}
.yc1{bottom:870.171996px;}
.y12a{bottom:872.785148px;}
.y50{bottom:873.691899px;}
.y86{bottom:874.845700px;}
.y1e2{bottom:875.880701px;}
.y19f{bottom:877.855152px;}
.yf6{bottom:878.312353px;}
.y1d7{bottom:880.020704px;}
.y11{bottom:880.380704px;}
.y160{bottom:885.420708px;}
.yc0{bottom:888.166461px;}
.y129{bottom:890.605162px;}
.y4f{bottom:891.337613px;}
.y1e1{bottom:891.360713px;}
.y85{bottom:892.840164px;}
.y19e{bottom:895.140866px;}
.yf5{bottom:896.132367px;}
.y10{bottom:897.120718px;}
.y15f{bottom:903.420723px;}
.ybf{bottom:906.160925px;}
.y128{bottom:908.250877px;}
.y4e{bottom:908.793427px;}
.y84{bottom:911.024379px;}
.yf4{bottom:913.778081px;}
.y1d4{bottom:919.800736px;}
.y193{bottom:921.593537px;}
.y15e{bottom:921.600737px;}
.ybe{bottom:924.155389px;}
.y127{bottom:926.070891px;}
.y4d{bottom:926.440491px;}
.y83{bottom:929.208593px;}
.yf{bottom:931.159045px;}
.yf3{bottom:931.598095px;}
.y1d3{bottom:934.740748px;}
.y192{bottom:939.588002px;}
.y15d{bottom:939.600752px;}
.y19d{bottom:939.778052px;}
.ybd{bottom:941.975404px;}
.y126{bottom:943.890905px;}
.y4c{bottom:944.086205px;}
.y82{bottom:947.203058px;}
.y1d2{bottom:948.722709px;}
.yf2{bottom:949.243809px;}
.y191{bottom:957.772216px;}
.y15c{bottom:957.780766px;}
.y19c{bottom:957.962266px;}
.ye{bottom:958.689167px;}
.ybc{bottom:959.968368px;}
.y125{bottom:961.537969px;}
.y4b{bottom:961.731919px;}
.y81{bottom:965.387272px;}
.y1d1{bottom:966.188423px;}
.yf1{bottom:971.388027px;}
.y190{bottom:975.956431px;}
.y19b{bottom:975.956731px;}
.y15b{bottom:975.960781px;}
.ybb{bottom:977.962832px;}
.y4a{bottom:979.187733px;}
.y124{bottom:979.357983px;}
.y80{bottom:983.032986px;}
.y1d0{bottom:983.474137px;}
.yd{bottom:986.220789px;}
.yf0{bottom:989.572242px;}
.y18f{bottom:993.950895px;}
.y15a{bottom:993.960795px;}
.yba{bottom:995.957297px;}
.y49{bottom:996.833447px;}
.y123{bottom:997.003698px;}
.y19a{bottom:998.639599px;}
.y1cf{bottom:1000.759851px;}
.y7f{bottom:1000.853001px;}
.y18e{bottom:1012.135110px;}
.y159{bottom:1012.140810px;}
.yef{bottom:1012.255110px;}
.yb9{bottom:1013.951761px;}
.y48{bottom:1014.479162px;}
.y122{bottom:1014.823712px;}
.y1ce{bottom:1017.686914px;}
.y7e{bottom:1018.500065px;}
.y199{bottom:1021.322467px;}
.yc{bottom:1023.829419px;}
.y18d{bottom:1030.319324px;}
.y158{bottom:1030.320824px;}
.yee{bottom:1030.439324px;}
.yb8{bottom:1031.771775px;}
.y47{bottom:1031.934976px;}
.y121{bottom:1032.469426px;}
.y1cd{bottom:1035.151128px;}
.y7d{bottom:1036.320079px;}
.y198{bottom:1039.316931px;}
.yb{bottom:1040.935133px;}
.y18c{bottom:1048.313789px;}
.y157{bottom:1048.320839px;}
.yed{bottom:1048.433789px;}
.y46{bottom:1049.580690px;}
.yb7{bottom:1049.766240px;}
.y120{bottom:1050.289440px;}
.y1cc{bottom:1052.258192px;}
.y7c{bottom:1054.140093px;}
.y197{bottom:1057.501146px;}
.ya{bottom:1058.220847px;}
.y18b{bottom:1066.498003px;}
.y156{bottom:1066.500853px;}
.yec{bottom:1066.618003px;}
.y45{bottom:1067.226404px;}
.yb6{bottom:1067.760704px;}
.y11f{bottom:1067.935154px;}
.y1cb{bottom:1069.543906px;}
.y7b{bottom:1071.785807px;}
.y9{bottom:1076.940862px;}
.y196{bottom:1079.994114px;}
.y18a{bottom:1084.492468px;}
.y155{bottom:1084.500868px;}
.yeb{bottom:1084.612468px;}
.y44{bottom:1084.682218px;}
.yb5{bottom:1085.755169px;}
.y1ca{bottom:1087.008120px;}
.y7a{bottom:1089.605822px;}
.y189{bottom:1102.676682px;}
.y195{bottom:1102.676982px;}
.y154{bottom:1102.680882px;}
.yea{bottom:1102.796682px;}
.yb4{bottom:1103.400883px;}
.y1c9{bottom:1104.115183px;}
.y8{bottom:1104.295183px;}
.y43{bottom:1107.000886px;}
.y79{bottom:1107.251536px;}
.y153{bottom:1120.860897px;}
.y194{bottom:1120.861197px;}
.ye9{bottom:1120.980897px;}
.yb3{bottom:1121.220897px;}
.y7{bottom:1121.400897px;}
.y42{bottom:1124.460900px;}
.y1{bottom:1206.360965px;}
.h14{height:29.700000px;}
.h13{height:33.120000px;}
.h11{height:33.494792px;}
.h15{height:35.998596px;}
.h18{height:36.000000px;}
.h7{height:39.313508px;}
.h21{height:39.366242px;}
.h2{height:41.493549px;}
.h5{height:42.120000px;}
.h8{height:43.506949px;}
.h12{height:46.127849px;}
.hf{height:46.406287px;}
.hd{height:46.432654px;}
.he{height:47.566444px;}
.h22{height:48.278359px;}
.h4{height:48.761758px;}
.h3{height:49.992227px;}
.h9{height:51.385471px;}
.h1a{height:51.430471px;}
.h1d{height:51.453271px;}
.h1b{height:51.453871px;}
.h1e{height:51.498871px;}
.h1c{height:51.571471px;}
.h1f{height:51.617671px;}
.h6{height:52.418011px;}
.hc{height:52.699261px;}
.h19{height:53.428051px;}
.h17{height:54.480981px;}
.h10{height:55.811295px;}
.h16{height:56.646608px;}
.h23{height:58.490906px;}
.ha{height:61.658135px;}
.hb{height:85.613623px;}
.h20{height:215.280000px;}
.h0{height:1262.879850px;}
.h1{height:1263.000000px;}
.w6{width:27.000000px;}
.w4{width:27.180000px;}
.w3{width:246.600000px;}
.w2{width:247.140000px;}
.w8{width:252.538560px;}
.w7{width:259.020000px;}
.w5{width:264.060000px;}
.w9{width:478.440000px;}
.w0{width:892.979850px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.100270px;}
.xd{left:10.800073px;}
.x5{left:15.480469px;}
.x11{left:22.320471px;}
.x18{left:28.980473px;}
.x1c{left:77.040000px;}
.xc{left:80.640000px;}
.x7{left:84.959453px;}
.x1e{left:87.124045px;}
.xe{left:91.440073px;}
.x9{left:106.200355px;}
.x1d{left:108.360087px;}
.x1a{left:117.007699px;}
.x13{left:138.060080px;}
.xa{left:169.924531px;}
.x20{left:329.580000px;}
.x1f{left:337.680270px;}
.x2{left:432.900781px;}
.x16{left:439.560000px;}
.xf{left:446.400792px;}
.x14{left:457.151691px;}
.xb{left:463.860266px;}
.x15{left:478.393538px;}
.x8{left:500.400805px;}
.x17{left:562.860000px;}
.x10{left:567.000000px;}
.x4{left:570.780000px;}
.x1b{left:572.940458px;}
.x19{left:630.720505px;}
.x6{left:632.880506px;}
.x12{left:637.380510px;}
.x1{left:705.780565px;}
.x3{left:780.841060px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-2.140162pt;}
.ls29{letter-spacing:-1.576961pt;}
.ls31{letter-spacing:-1.520641pt;}
.ls51{letter-spacing:-1.381121pt;}
.ls2a{letter-spacing:-1.351681pt;}
.ls52{letter-spacing:-1.328001pt;}
.ls32{letter-spacing:-1.295361pt;}
.lsd{letter-spacing:-1.276801pt;}
.ls22{letter-spacing:-1.239041pt;}
.ls21{letter-spacing:-1.070081pt;}
.ls2c{letter-spacing:-1.013761pt;}
.ls4d{letter-spacing:-0.956161pt;}
.ls23{letter-spacing:-0.901121pt;}
.ls18{letter-spacing:-0.844801pt;}
.ls17{letter-spacing:-0.732161pt;}
.ls50{letter-spacing:-0.690561pt;}
.ls15{letter-spacing:-0.675841pt;}
.ls20{letter-spacing:-0.619520pt;}
.ls25{letter-spacing:-0.563200pt;}
.ls11{letter-spacing:-0.528000pt;}
.ls1f{letter-spacing:-0.506880pt;}
.ls28{letter-spacing:-0.450560pt;}
.ls12{letter-spacing:-0.432000pt;}
.ls4a{letter-spacing:-0.424960pt;}
.ls2b{letter-spacing:-0.394240pt;}
.ls27{letter-spacing:-0.337920pt;}
.ls33{letter-spacing:-0.281600pt;}
.ls4c{letter-spacing:-0.265600pt;}
.lsc{letter-spacing:-0.255360pt;}
.ls4b{letter-spacing:-0.212480pt;}
.ls57{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.159360pt;}
.lsa{letter-spacing:-0.149760pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106240pt;}
.ls58{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.056320pt;}
.lsb{letter-spacing:-0.053120pt;}
.ls13{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001013pt;}
.ls53{letter-spacing:0.048000pt;}
.ls4f{letter-spacing:0.053120pt;}
.ls2f{letter-spacing:0.088587pt;}
.ls54{letter-spacing:0.095938pt;}
.ls3{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.112640pt;}
.ls55{letter-spacing:0.121013pt;}
.lsf{letter-spacing:0.128000pt;}
.ls56{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.211040pt;}
.ls1{letter-spacing:0.212480pt;}
.ls3f{letter-spacing:0.216054pt;}
.ls24{letter-spacing:0.225280pt;}
.ls42{letter-spacing:0.261067pt;}
.ls41{letter-spacing:0.286027pt;}
.ls49{letter-spacing:0.291040pt;}
.ls3e{letter-spacing:0.301067pt;}
.ls46{letter-spacing:0.311040pt;}
.lse{letter-spacing:0.340480pt;}
.ls48{letter-spacing:0.423947pt;}
.ls45{letter-spacing:0.461067pt;}
.ls47{letter-spacing:0.495094pt;}
.ls4{letter-spacing:0.539040pt;}
.ls44{letter-spacing:0.582667pt;}
.ls43{letter-spacing:0.672641pt;}
.ls4e{letter-spacing:0.849921pt;}
.ls3a{letter-spacing:0.958027pt;}
.ls6{letter-spacing:1.884055pt;}
.ls3c{letter-spacing:2.253068pt;}
.ls2d{letter-spacing:3.548056pt;}
.ls1c{letter-spacing:3.663043pt;}
.ls1e{letter-spacing:4.168057pt;}
.ls5{letter-spacing:4.449070pt;}
.ls39{letter-spacing:4.843044pt;}
.ls1b{letter-spacing:5.573071pt;}
.ls1d{letter-spacing:6.083045pt;}
.ls3b{letter-spacing:6.113072pt;}
.ls35{letter-spacing:6.758032pt;}
.ls19{letter-spacing:7.378033pt;}
.ls36{letter-spacing:9.293074pt;}
.ls38{letter-spacing:9.968061pt;}
.ls2e{letter-spacing:11.208062pt;}
.ls37{letter-spacing:11.883050pt;}
.ls1a{letter-spacing:13.123050pt;}
.ls34{letter-spacing:15.033079pt;}
.ls3d{letter-spacing:33.623067pt;}
.ls30{letter-spacing:38.128137pt;}
.ws20{word-spacing:-42.240034pt;}
.ws2{word-spacing:-39.840032pt;}
.wsd{word-spacing:-36.192029pt;}
.wsa{word-spacing:-36.000029pt;}
.ws6{word-spacing:-23.663379pt;}
.ws4{word-spacing:-23.408019pt;}
.ws5{word-spacing:-22.386578pt;}
.ws3{word-spacing:-17.072654pt;}
.ws25{word-spacing:-15.656973pt;}
.ws32{word-spacing:-15.617292pt;}
.ws2a{word-spacing:-15.319052pt;}
.ws2b{word-spacing:-15.262732pt;}
.ws29{word-spacing:-15.206412pt;}
.ws22{word-spacing:-15.037452pt;}
.ws2c{word-spacing:-14.981132pt;}
.ws33{word-spacing:-14.979852pt;}
.ws2d{word-spacing:-14.924812pt;}
.ws34{word-spacing:-14.820492pt;}
.ws26{word-spacing:-14.812172pt;}
.ws7{word-spacing:-14.784012pt;}
.ws1{word-spacing:-14.767372pt;}
.ws21{word-spacing:-14.755852pt;}
.ws30{word-spacing:-14.714252pt;}
.ws0{word-spacing:-14.661132pt;}
.ws24{word-spacing:-14.643212pt;}
.ws2e{word-spacing:-14.554892pt;}
.ws2f{word-spacing:-14.501772pt;}
.ws8{word-spacing:-14.464012pt;}
.ws28{word-spacing:-14.361611pt;}
.ws27{word-spacing:-14.136331pt;}
.ws31{word-spacing:-13.811211pt;}
.wsc{word-spacing:-13.536011pt;}
.ws23{word-spacing:-13.516811pt;}
.ws38{word-spacing:-13.488011pt;}
.ws37{word-spacing:-13.440011pt;}
.ws9{word-spacing:-13.344011pt;}
.ws39{word-spacing:-13.248011pt;}
.wsf{word-spacing:-12.953610pt;}
.wsb{word-spacing:-12.912010pt;}
.ws10{word-spacing:-12.840970pt;}
.ws12{word-spacing:-12.784650pt;}
.ws13{word-spacing:-12.165130pt;}
.ws11{word-spacing:-12.108810pt;}
.wse{word-spacing:-10.944009pt;}
.ws18{word-spacing:-0.720001pt;}
.ws19{word-spacing:-0.212480pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.096000pt;}
.ws15{word-spacing:-0.048000pt;}
.ws14{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053120pt;}
.ws35{word-spacing:0.106240pt;}
.ws1a{word-spacing:0.256000pt;}
.ws17{word-spacing:0.624000pt;}
.ws1f{word-spacing:0.732161pt;}
.ws1c{word-spacing:1.295361pt;}
.ws1e{word-spacing:5.125124pt;}
.ws1d{word-spacing:7.040006pt;}
._9{margin-left:-2.757479pt;}
._1{margin-left:-1.178294pt;}
._0{width:1.114241pt;}
._2{width:2.183735pt;}
._4{width:3.167026pt;}
._3{width:4.418679pt;}
._5{width:5.468052pt;}
._8{width:6.618927pt;}
._11{width:7.539510pt;}
._a{width:8.485582pt;}
._10{width:9.605956pt;}
._b{width:10.738798pt;}
._12{width:11.783047pt;}
._e{width:13.026153pt;}
._c{width:13.975685pt;}
._d{width:16.458076pt;}
._7{width:17.700796pt;}
._6{width:19.427328pt;}
._14{width:20.748153pt;}
._15{width:21.954703pt;}
._18{width:23.011253pt;}
._f{width:24.668954pt;}
._16{width:25.689101pt;}
._17{width:26.660677pt;}
._1b{width:28.172746pt;}
._19{width:29.891572pt;}
._1c{width:33.961281pt;}
._1a{width:37.829496pt;}
._13{width:38.940919pt;}
.fs6{font-size:42.880034pt;}
.fs2{font-size:48.000038pt;}
.fs0{font-size:53.120042pt;}
.fs5{font-size:56.320045pt;}
.fs1{font-size:64.000051pt;}
.fs3{font-size:74.880060pt;}
.fs4{font-size:85.120068pt;}
.y0{bottom:0.000000pt;}
.y1ed{bottom:2.560495pt;}
.yb0{bottom:3.840067pt;}
.y3e{bottom:3.840068pt;}
.y3a{bottom:18.240076pt;}
.y40{bottom:20.960069pt;}
.y5{bottom:26.400077pt;}
.y3f{bottom:65.600000pt;}
.yb1{bottom:65.760000pt;}
.y4{bottom:69.920000pt;}
.yb2{bottom:72.640058pt;}
.y41{bottom:72.800058pt;}
.y39{bottom:76.640000pt;}
.y3{bottom:79.200063pt;}
.y3c{bottom:79.520064pt;}
.yaf{bottom:80.320000pt;}
.y3b{bottom:81.280065pt;}
.y3d{bottom:81.440000pt;}
.y6{bottom:82.560066pt;}
.y2{bottom:97.920078pt;}
.y152{bottom:135.680109pt;}
.y38{bottom:136.040362pt;}
.y188{bottom:138.071310pt;}
.yae{bottom:142.495447pt;}
.y78{bottom:142.618914pt;}
.y1c8{bottom:143.516381pt;}
.ye8{bottom:148.430785pt;}
.y11e{bottom:150.061720pt;}
.y151{bottom:151.840121pt;}
.y37{bottom:151.880375pt;}
.y187{bottom:154.235057pt;}
.yad{bottom:158.180527pt;}
.y77{bottom:158.458927pt;}
.y1c7{bottom:159.040127pt;}
.ye7{bottom:164.594532pt;}
.y11d{bottom:165.901733pt;}
.y150{bottom:167.840134pt;}
.y36{bottom:167.875454pt;}
.y186{bottom:170.230136pt;}
.yac{bottom:174.020539pt;}
.y76{bottom:174.144006pt;}
.y1c6{bottom:174.240139pt;}
.y1d6{bottom:180.480637pt;}
.ye6{bottom:180.589611pt;}
.y11c{bottom:181.586812pt;}
.y35{bottom:183.870534pt;}
.y185{bottom:186.393882pt;}
.y14f{bottom:187.882550pt;}
.yab{bottom:189.705618pt;}
.y1c5{bottom:189.734952pt;}
.y75{bottom:193.982822pt;}
.ye5{bottom:196.753357pt;}
.y11b{bottom:197.426825pt;}
.y34{bottom:199.710546pt;}
.y184{bottom:202.557629pt;}
.y14e{bottom:204.046297pt;}
.y1c4{bottom:204.940031pt;}
.yaa{bottom:205.545631pt;}
.ye4{bottom:212.917104pt;}
.y11a{bottom:213.111904pt;}
.y74{bottom:213.976571pt;}
.y33{bottom:215.704293pt;}
.y183{bottom:218.552708pt;}
.y1c3{bottom:220.146309pt;}
.ya9{bottom:221.230710pt;}
.y14d{bottom:224.040046pt;}
.ye3{bottom:228.912183pt;}
.y119{bottom:228.951916pt;}
.y73{bottom:229.492850pt;}
.y32{bottom:231.544305pt;}
.y182{bottom:234.716454pt;}
.y1c2{bottom:235.511388pt;}
.ya8{bottom:237.070723pt;}
.y14c{bottom:239.880059pt;}
.y118{bottom:244.636996pt;}
.ye2{bottom:245.075929pt;}
.y72{bottom:245.177929pt;}
.y31{bottom:247.539385pt;}
.y181{bottom:250.880201pt;}
.y1c1{bottom:251.035134pt;}
.ya7{bottom:252.755802pt;}
.y14b{bottom:255.565138pt;}
.y117{bottom:260.478208pt;}
.y71{bottom:260.863009pt;}
.ye1{bottom:261.071009pt;}
.y30{bottom:263.379397pt;}
.y1c0{bottom:266.400213pt;}
.ya6{bottom:268.595815pt;}
.y180{bottom:270.880217pt;}
.y14a{bottom:271.405150pt;}
.y116{bottom:276.163288pt;}
.y70{bottom:276.379288pt;}
.ye0{bottom:277.234755pt;}
.y2f{bottom:279.374477pt;}
.y1bf{bottom:281.575025pt;}
.ya5{bottom:284.280894pt;}
.y149{bottom:287.091430pt;}
.y17f{bottom:291.040233pt;}
.y115{bottom:292.003300pt;}
.y6f{bottom:292.064367pt;}
.ydf{bottom:293.398501pt;}
.y2e{bottom:295.369556pt;}
.y1be{bottom:297.098771pt;}
.ya4{bottom:300.120907pt;}
.y148{bottom:302.931442pt;}
.y17e{bottom:307.040246pt;}
.y114{bottom:307.688379pt;}
.y6e{bottom:307.749446pt;}
.yde{bottom:309.393581pt;}
.y2d{bottom:311.209569pt;}
.y1bd{bottom:312.145050pt;}
.ya3{bottom:315.805986pt;}
.y147{bottom:318.616522pt;}
.y17d{bottom:322.880258pt;}
.y6d{bottom:323.265725pt;}
.y113{bottom:323.528392pt;}
.ydd{bottom:325.557327pt;}
.y2c{bottom:327.204648pt;}
.y1bc{bottom:327.510129pt;}
.ya2{bottom:331.645999pt;}
.y146{bottom:334.456534pt;}
.y17c{bottom:338.880271pt;}
.y6c{bottom:338.950804pt;}
.y112{bottom:339.368405pt;}
.ydc{bottom:341.552407pt;}
.y1bb{bottom:343.035208pt;}
.y2b{bottom:343.044661pt;}
.ya1{bottom:347.331078pt;}
.y145{bottom:350.141613pt;}
.y6b{bottom:354.635884pt;}
.y17b{bottom:354.880284pt;}
.y111{bottom:355.053484pt;}
.ydb{bottom:357.716153pt;}
.y1ba{bottom:358.240287pt;}
.y2a{bottom:359.039741pt;}
.ya0{bottom:363.171091pt;}
.y144{bottom:365.981626pt;}
.y6a{bottom:370.152163pt;}
.y17a{bottom:370.880297pt;}
.y110{bottom:370.893497pt;}
.y1b9{bottom:373.600299pt;}
.yda{bottom:373.879899pt;}
.y29{bottom:374.239753pt;}
.y9f{bottom:378.857370pt;}
.y143{bottom:381.666705pt;}
.y69{bottom:385.837242pt;}
.y10f{bottom:386.578576pt;}
.y179{bottom:386.720309pt;}
.y28{bottom:387.223510pt;}
.y1b8{bottom:389.105245pt;}
.yd9{bottom:389.874979pt;}
.y9e{bottom:394.697382pt;}
.y142{bottom:397.506718pt;}
.y68{bottom:401.522321pt;}
.y10e{bottom:402.418589pt;}
.y178{bottom:402.720322pt;}
.y27{bottom:403.218589pt;}
.y1b7{bottom:404.310323pt;}
.yd8{bottom:406.038725pt;}
.y9d{bottom:410.537395pt;}
.y141{bottom:413.191797pt;}
.y67{bottom:417.038600pt;}
.y10d{bottom:418.103668pt;}
.y177{bottom:418.720335pt;}
.y26{bottom:419.382336pt;}
.y1b6{bottom:419.516602pt;}
.yd7{bottom:422.202471pt;}
.y9c{bottom:426.222474pt;}
.y140{bottom:429.031810pt;}
.y66{bottom:432.723680pt;}
.y10c{bottom:433.943680pt;}
.y176{bottom:434.720348pt;}
.y1b5{bottom:435.040348pt;}
.y25{bottom:435.546082pt;}
.yd6{bottom:438.197551pt;}
.y9b{bottom:442.062487pt;}
.y13f{bottom:444.716889pt;}
.y65{bottom:448.408759pt;}
.y10b{bottom:449.628760pt;}
.y175{bottom:450.720361pt;}
.y24{bottom:451.541161pt;}
.yd5{bottom:454.361297pt;}
.y9a{bottom:457.747566pt;}
.y1b4{bottom:458.199033pt;}
.y13e{bottom:460.556902pt;}
.y64{bottom:463.925038pt;}
.y10a{bottom:465.468772pt;}
.y174{bottom:466.560373pt;}
.y23{bottom:467.704907pt;}
.yd4{bottom:470.356376pt;}
.y1b3{bottom:473.563712pt;}
.y99{bottom:473.587579pt;}
.y13d{bottom:476.396914pt;}
.y63{bottom:479.610117pt;}
.y109{bottom:481.155052pt;}
.y173{bottom:482.560386pt;}
.y22{bottom:483.699987pt;}
.yd3{bottom:486.196389pt;}
.y1b2{bottom:489.088791pt;}
.y98{bottom:489.272658pt;}
.y13c{bottom:492.081994pt;}
.y62{bottom:495.295196pt;}
.y108{bottom:496.995064pt;}
.y172{bottom:498.560399pt;}
.y21{bottom:499.695066pt;}
.yd2{bottom:502.191468pt;}
.y1b1{bottom:504.293870pt;}
.y1f4{bottom:505.095071pt;}
.y97{bottom:505.112671pt;}
.y13b{bottom:507.922006pt;}
.y61{bottom:510.811475pt;}
.y107{bottom:512.680143pt;}
.y171{bottom:514.560412pt;}
.y20{bottom:515.858813pt;}
.yd1{bottom:518.186548pt;}
.y1b0{bottom:519.658949pt;}
.y1f3{bottom:520.460150pt;}
.y96{bottom:520.797750pt;}
.y13a{bottom:523.607086pt;}
.y60{bottom:526.496555pt;}
.y106{bottom:528.520156pt;}
.y170{bottom:530.400424pt;}
.y1f{bottom:531.853892pt;}
.yd0{bottom:534.181627pt;}
.y1af{bottom:535.024028pt;}
.y1f2{bottom:535.825229pt;}
.y95{bottom:536.637763pt;}
.y139{bottom:539.447098pt;}
.y5f{bottom:542.182834pt;}
.y105{bottom:544.205235pt;}
.y16f{bottom:546.400437pt;}
.y1e{bottom:548.017638pt;}
.ycf{bottom:550.021640pt;}
.y1ae{bottom:550.389107pt;}
.y1f1{bottom:551.190308pt;}
.y94{bottom:552.191508pt;}
.y138{bottom:555.132177pt;}
.y5e{bottom:557.867913pt;}
.y104{bottom:560.045248pt;}
.y16e{bottom:562.400450pt;}
.y1d{bottom:564.012718pt;}
.y1ad{bottom:565.595386pt;}
.yce{bottom:566.016719pt;}
.y1f0{bottom:566.555387pt;}
.y93{bottom:568.355255pt;}
.y137{bottom:570.972190pt;}
.y5d{bottom:573.384192pt;}
.y103{bottom:575.730327pt;}
.y16d{bottom:578.400463pt;}
.y1c{bottom:580.007797pt;}
.y1ac{bottom:580.800465pt;}
.y1ef{bottom:581.920466pt;}
.ycd{bottom:582.011799pt;}
.y92{bottom:584.350334pt;}
.y136{bottom:586.658469pt;}
.y5c{bottom:589.069271pt;}
.y102{bottom:591.570340pt;}
.y16c{bottom:594.400476pt;}
.y1ab{bottom:596.160477pt;}
.y1b{bottom:596.171544pt;}
.ycc{bottom:598.006878pt;}
.y1ee{bottom:598.880479pt;}
.y91{bottom:600.514080pt;}
.y135{bottom:602.498482pt;}
.y5b{bottom:604.754350pt;}
.y101{bottom:607.255419pt;}
.y16b{bottom:610.240488pt;}
.y1aa{bottom:611.665289pt;}
.y1a{bottom:612.166623pt;}
.ycb{bottom:614.001958pt;}
.y1d5{bottom:615.840000pt;}
.y90{bottom:616.677827pt;}
.y134{bottom:618.183561pt;}
.y5a{bottom:620.270630pt;}
.y100{bottom:623.095432pt;}
.y1e0{bottom:625.920501pt;}
.y16a{bottom:626.240501pt;}
.y1a9{bottom:626.870368pt;}
.y19{bottom:628.330369pt;}
.yca{bottom:629.841971pt;}
.y1ec{bottom:632.320506pt;}
.y8f{bottom:632.672906pt;}
.y133{bottom:634.023574pt;}
.y59{bottom:635.955709pt;}
.yff{bottom:638.780511pt;}
.y1df{bottom:639.840512pt;}
.y1a8{bottom:642.235447pt;}
.y169{bottom:642.240514pt;}
.y18{bottom:644.325449pt;}
.yc9{bottom:645.835717pt;}
.y1eb{bottom:645.920517pt;}
.y8e{bottom:648.836652pt;}
.y132{bottom:649.708653pt;}
.y58{bottom:651.640788pt;}
.y1de{bottom:653.920523pt;}
.yfe{bottom:654.620524pt;}
.y1a7{bottom:657.600526pt;}
.y168{bottom:658.240527pt;}
.y1ea{bottom:659.840528pt;}
.y17{bottom:660.320528pt;}
.yc8{bottom:661.830796pt;}
.y8d{bottom:665.000399pt;}
.y131{bottom:665.548666pt;}
.y57{bottom:667.157067pt;}
.yfd{bottom:670.305603pt;}
.y1a6{bottom:672.800538pt;}
.y1e9{bottom:673.600539pt;}
.y167{bottom:674.240539pt;}
.yc7{bottom:677.825876pt;}
.y1dd{bottom:679.360543pt;}
.y8c{bottom:680.995478pt;}
.y130{bottom:681.233745pt;}
.y56{bottom:682.842146pt;}
.y16{bottom:683.520547pt;}
.yfc{bottom:686.145616pt;}
.y1e8{bottom:687.673083pt;}
.y1a5{bottom:688.305351pt;}
.y166{bottom:690.400552pt;}
.y1dc{bottom:693.120554pt;}
.yc6{bottom:693.665888pt;}
.y12f{bottom:697.073758pt;}
.y8b{bottom:697.159224pt;}
.y55{bottom:698.527225pt;}
.y1e7{bottom:701.436828pt;}
.yfb{bottom:701.830695pt;}
.y1a4{bottom:703.670430pt;}
.y165{bottom:706.560565pt;}
.y15{bottom:708.480567pt;}
.yc5{bottom:709.660968pt;}
.y1db{bottom:711.040569pt;}
.y12e{bottom:712.758837pt;}
.y8a{bottom:713.154304pt;}
.y54{bottom:714.043505pt;}
.y1e6{bottom:715.356839pt;}
.yfa{bottom:717.670707pt;}
.y1a3{bottom:719.035509pt;}
.y164{bottom:722.560578pt;}
.y1da{bottom:724.800580pt;}
.yc4{bottom:725.656047pt;}
.y14{bottom:726.880582pt;}
.y12d{bottom:728.598850pt;}
.y89{bottom:729.318050pt;}
.y53{bottom:729.728584pt;}
.y1e5{bottom:733.116853pt;}
.yf9{bottom:733.510720pt;}
.y1a2{bottom:734.400588pt;}
.y163{bottom:738.720591pt;}
.yc3{bottom:741.651127pt;}
.y1d9{bottom:742.556861pt;}
.y12c{bottom:744.283929pt;}
.y52{bottom:745.413663pt;}
.y88{bottom:745.481796pt;}
.yf8{bottom:749.196999pt;}
.y1a1{bottom:749.600600pt;}
.y1e4{bottom:750.876867pt;}
.y162{bottom:754.720604pt;}
.y13{bottom:755.356871pt;}
.yc2{bottom:757.646206pt;}
.y12b{bottom:760.123941pt;}
.y1d8{bottom:760.640609pt;}
.y51{bottom:760.929942pt;}
.y87{bottom:761.476876pt;}
.y1e3{bottom:764.640612pt;}
.y1a0{bottom:764.950612pt;}
.yf7{bottom:765.037012pt;}
.y12{bottom:768.796882pt;}
.y161{bottom:770.880617pt;}
.yc1{bottom:773.486219pt;}
.y12a{bottom:775.809021pt;}
.y50{bottom:776.615021pt;}
.y86{bottom:777.640622pt;}
.y1e2{bottom:778.560623pt;}
.y19f{bottom:780.315691pt;}
.yf6{bottom:780.722091pt;}
.y1d7{bottom:782.240626pt;}
.y11{bottom:782.560626pt;}
.y160{bottom:787.040630pt;}
.yc0{bottom:789.481298pt;}
.y129{bottom:791.649033pt;}
.y4f{bottom:792.300101pt;}
.y1e1{bottom:792.320634pt;}
.y85{bottom:793.635702pt;}
.y19e{bottom:795.680770pt;}
.yf5{bottom:796.562104pt;}
.y10{bottom:797.440638pt;}
.y15f{bottom:803.040642pt;}
.ybf{bottom:805.476378pt;}
.y128{bottom:807.334113pt;}
.y4e{bottom:807.816380pt;}
.y84{bottom:809.799448pt;}
.yf4{bottom:812.247183pt;}
.y1d4{bottom:817.600654pt;}
.y193{bottom:819.194255pt;}
.y15e{bottom:819.200655pt;}
.ybe{bottom:821.471457pt;}
.y127{bottom:823.174125pt;}
.y4d{bottom:823.502659pt;}
.y83{bottom:825.963194pt;}
.yf{bottom:827.696929pt;}
.yf3{bottom:828.087196pt;}
.y1d3{bottom:830.880665pt;}
.y192{bottom:835.189335pt;}
.y15d{bottom:835.200668pt;}
.y19d{bottom:835.358268pt;}
.ybd{bottom:837.311470pt;}
.y126{bottom:839.014138pt;}
.y4c{bottom:839.187738pt;}
.y82{bottom:841.958274pt;}
.y1d2{bottom:843.309075pt;}
.yf2{bottom:843.772275pt;}
.y191{bottom:851.353081pt;}
.y15c{bottom:851.360681pt;}
.y19c{bottom:851.522015pt;}
.ye{bottom:852.168148pt;}
.ybc{bottom:853.305216pt;}
.y125{bottom:854.700417pt;}
.y4b{bottom:854.872817pt;}
.y81{bottom:858.122020pt;}
.y1d1{bottom:858.834154pt;}
.yf1{bottom:863.456024pt;}
.y190{bottom:867.516827pt;}
.y19b{bottom:867.517094pt;}
.y15b{bottom:867.520694pt;}
.ybb{bottom:869.300295pt;}
.y4a{bottom:870.389096pt;}
.y124{bottom:870.540430pt;}
.y80{bottom:873.807099pt;}
.y1d0{bottom:874.199233pt;}
.yd{bottom:876.640701pt;}
.yf0{bottom:879.619770pt;}
.y18f{bottom:883.511907pt;}
.y15a{bottom:883.520707pt;}
.yba{bottom:885.295375pt;}
.y49{bottom:886.074176pt;}
.y123{bottom:886.225509pt;}
.y19a{bottom:887.679643pt;}
.y1cf{bottom:889.564312pt;}
.y7f{bottom:889.647112pt;}
.y18e{bottom:899.675653pt;}
.y159{bottom:899.680720pt;}
.yef{bottom:899.782320pt;}
.yb9{bottom:901.290454pt;}
.y48{bottom:901.759255pt;}
.y122{bottom:902.065522pt;}
.y1ce{bottom:904.610590pt;}
.y7e{bottom:905.333391pt;}
.y199{bottom:907.842193pt;}
.yc{bottom:910.070595pt;}
.y18d{bottom:915.839399pt;}
.y158{bottom:915.840733pt;}
.yee{bottom:915.946066pt;}
.yb8{bottom:917.130467pt;}
.y47{bottom:917.275534pt;}
.y121{bottom:917.750601pt;}
.y1cd{bottom:920.134336pt;}
.y7d{bottom:921.173404pt;}
.y198{bottom:923.837272pt;}
.yb{bottom:925.275674pt;}
.y18c{bottom:931.834479pt;}
.y157{bottom:931.840745pt;}
.yed{bottom:931.941146pt;}
.y46{bottom:932.960613pt;}
.yb7{bottom:933.125546pt;}
.y120{bottom:933.590614pt;}
.y1cc{bottom:935.340615pt;}
.y7c{bottom:937.013416pt;}
.y197{bottom:940.001019pt;}
.ya{bottom:940.640753pt;}
.y18b{bottom:947.998225pt;}
.y156{bottom:948.000758pt;}
.yec{bottom:948.104892pt;}
.y45{bottom:948.645692pt;}
.yb6{bottom:949.120626pt;}
.y11f{bottom:949.275693pt;}
.y1cb{bottom:950.705694pt;}
.y7b{bottom:952.698495pt;}
.y9{bottom:957.280766pt;}
.y196{bottom:959.994768pt;}
.y18a{bottom:963.993305pt;}
.y155{bottom:964.000771pt;}
.yeb{bottom:964.099971pt;}
.y44{bottom:964.161971pt;}
.yb5{bottom:965.115705pt;}
.y1ca{bottom:966.229440pt;}
.y7a{bottom:968.538508pt;}
.y189{bottom:980.157051pt;}
.y195{bottom:980.157317pt;}
.y154{bottom:980.160784pt;}
.yea{bottom:980.263718pt;}
.yb4{bottom:980.800785pt;}
.y1c9{bottom:981.435718pt;}
.y8{bottom:981.595719pt;}
.y43{bottom:984.000787pt;}
.y79{bottom:984.223587pt;}
.y153{bottom:996.320797pt;}
.y194{bottom:996.321064pt;}
.ye9{bottom:996.427464pt;}
.yb3{bottom:996.640797pt;}
.y7{bottom:996.800797pt;}
.y42{bottom:999.520800pt;}
.y1{bottom:1072.320858pt;}
.h14{height:26.400000pt;}
.h13{height:29.440000pt;}
.h11{height:29.773149pt;}
.h15{height:31.998752pt;}
.h18{height:32.000000pt;}
.h7{height:34.945340pt;}
.h21{height:34.992215pt;}
.h2{height:36.883155pt;}
.h5{height:37.440000pt;}
.h8{height:38.672843pt;}
.h12{height:41.002533pt;}
.hf{height:41.250033pt;}
.hd{height:41.273471pt;}
.he{height:42.281284pt;}
.h22{height:42.914097pt;}
.h4{height:43.343785pt;}
.h3{height:44.437536pt;}
.h9{height:45.675974pt;}
.h1a{height:45.715974pt;}
.h1d{height:45.736241pt;}
.h1b{height:45.736774pt;}
.h1e{height:45.776774pt;}
.h1c{height:45.841308pt;}
.h1f{height:45.882374pt;}
.h6{height:46.593787pt;}
.hc{height:46.843787pt;}
.h19{height:47.491600pt;}
.h17{height:48.427539pt;}
.h10{height:49.610040pt;}
.h16{height:50.352540pt;}
.h23{height:51.991917pt;}
.ha{height:54.807231pt;}
.hb{height:76.100998pt;}
.h20{height:191.360000pt;}
.h0{height:1122.559867pt;}
.h1{height:1122.666667pt;}
.w6{width:24.000000pt;}
.w4{width:24.160000pt;}
.w3{width:219.200000pt;}
.w2{width:219.680000pt;}
.w8{width:224.478720pt;}
.w7{width:230.240000pt;}
.w5{width:234.720000pt;}
.w9{width:425.280000pt;}
.w0{width:793.759867pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.200240pt;}
.xd{left:9.600065pt;}
.x5{left:13.760417pt;}
.x11{left:19.840419pt;}
.x18{left:25.760421pt;}
.x1c{left:68.480000pt;}
.xc{left:71.680000pt;}
.x7{left:75.519514pt;}
.x1e{left:77.443595pt;}
.xe{left:81.280065pt;}
.x9{left:94.400316pt;}
.x1d{left:96.320077pt;}
.x1a{left:104.006843pt;}
.x13{left:122.720072pt;}
.xa{left:151.044028pt;}
.x20{left:292.960000pt;}
.x1f{left:300.160240pt;}
.x2{left:384.800695pt;}
.x16{left:390.720000pt;}
.xf{left:396.800704pt;}
.x14{left:406.357058pt;}
.xb{left:412.320237pt;}
.x15{left:425.238700pt;}
.x8{left:444.800716pt;}
.x17{left:500.320000pt;}
.x10{left:504.000000pt;}
.x4{left:507.360000pt;}
.x1b{left:509.280407pt;}
.x19{left:560.640449pt;}
.x6{left:562.560450pt;}
.x12{left:566.560453pt;}
.x1{left:627.360502pt;}
.x3{left:694.080942pt;}
}




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