
    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_5fa2a26766a93b0b77354c7d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_99b83c9419896b6ec899354e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f186bc02fdb5cf1a6656dead.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_facfb595145e7e08e81403ff.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_8ba7451e8371c56d57fc9cef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.848145;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_71b0f00f211c7698bb03fc43.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a95fbaa02ed58cdb3238c24.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881836;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_8cdaf85c3d601a210de056bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.729000;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_aceec4cb20e9ad6c6a7655cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_759c744cd914ab88051720d3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938000;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_2773a2264619543a038bb659.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738281;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_759c744cd914ab88051720d3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_5f05e412a2e0d3bb0004f10d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_8cdaf85c3d601a210de056bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.729000;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;}
.m3{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,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);}
.m2{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-14.785200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.452800px;}
.v5{vertical-align:8.790600px;}
.v4{vertical-align:17.706600px;}
.v1{vertical-align:21.978600px;}
.ls34{letter-spacing:-3.552000px;}
.ls2a{letter-spacing:-0.756000px;}
.lsc{letter-spacing:-0.702000px;}
.ls2c{letter-spacing:-0.672000px;}
.ls28{letter-spacing:-0.666000px;}
.lse{letter-spacing:-0.648000px;}
.ls18{letter-spacing:-0.594000px;}
.lsb{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.488400px;}
.ls10{letter-spacing:-0.486000px;}
.ls2b{letter-spacing:-0.462000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls39{letter-spacing:-0.399600px;}
.lsa{letter-spacing:-0.378000px;}
.ls13{letter-spacing:-0.355200px;}
.lsf{letter-spacing:-0.324000px;}
.ls1c{letter-spacing:-0.270000px;}
.ls3b{letter-spacing:-0.266400px;}
.ls11{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.177600px;}
.lsd{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.133200px;}
.ls19{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.088800px;}
.ls1d{letter-spacing:-0.054000px;}
.ls3a{letter-spacing:-0.044400px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003629px;}
.ls25{letter-spacing:0.004608px;}
.ls26{letter-spacing:0.005208px;}
.ls38{letter-spacing:0.044400px;}
.ls3{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.266400px;}
.ls16{letter-spacing:0.270000px;}
.ls36{letter-spacing:0.355200px;}
.ls5{letter-spacing:0.378000px;}
.ls1b{letter-spacing:0.432000px;}
.ls37{letter-spacing:0.488400px;}
.ls15{letter-spacing:0.594000px;}
.ls22{letter-spacing:0.702000px;}
.ls1f{letter-spacing:0.710400px;}
.ls2d{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.810000px;}
.ls7{letter-spacing:0.968232px;}
.ls20{letter-spacing:0.976800px;}
.ls0{letter-spacing:1.650000px;}
.ls6{letter-spacing:2.352000px;}
.ls24{letter-spacing:2.484000px;}
.ls17{letter-spacing:5.346000px;}
.ls23{letter-spacing:8.316000px;}
.ls2f{letter-spacing:32.954191px;}
.ls31{letter-spacing:32.958991px;}
.ls2e{letter-spacing:32.978638px;}
.ls30{letter-spacing:35.723038px;}
.ls33{letter-spacing:202.344923px;}
.ls32{letter-spacing:220.658309px;}
.ls27{letter-spacing:986.202000px;}
.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;}
}
.wse{word-spacing:-54.000000px;}
.ws92{word-spacing:-44.400000px;}
.ws11{word-spacing:-40.194000px;}
.ws8d{word-spacing:-32.292000px;}
.ws3d{word-spacing:-32.130000px;}
.wsd{word-spacing:-31.914000px;}
.ws3f{word-spacing:-31.806000px;}
.ws9{word-spacing:-31.752000px;}
.wsc{word-spacing:-31.698000px;}
.ws37{word-spacing:-31.590000px;}
.ws7{word-spacing:-31.536000px;}
.ws3e{word-spacing:-31.482000px;}
.ws3b{word-spacing:-31.428000px;}
.wsa{word-spacing:-31.374000px;}
.wsf{word-spacing:-31.320000px;}
.ws3c{word-spacing:-31.266000px;}
.ws6{word-spacing:-31.158000px;}
.ws70{word-spacing:-31.104000px;}
.ws73{word-spacing:-31.050000px;}
.ws6d{word-spacing:-30.996000px;}
.ws39{word-spacing:-30.942000px;}
.wsb{word-spacing:-30.888000px;}
.ws6f{word-spacing:-30.834000px;}
.ws6e{word-spacing:-30.780000px;}
.ws66{word-spacing:-26.906400px;}
.ws9d{word-spacing:-26.284800px;}
.ws64{word-spacing:-26.196000px;}
.wsa2{word-spacing:-25.974000px;}
.ws13{word-spacing:-25.929600px;}
.wsa0{word-spacing:-25.885200px;}
.ws91{word-spacing:-25.840800px;}
.ws68{word-spacing:-25.796400px;}
.ws16{word-spacing:-25.752000px;}
.wsa3{word-spacing:-25.663200px;}
.ws9f{word-spacing:-25.530000px;}
.ws9e{word-spacing:-25.441200px;}
.ws67{word-spacing:-25.263600px;}
.ws6b{word-spacing:-24.732000px;}
.ws36{word-spacing:-24.528000px;}
.ws3a{word-spacing:-24.084000px;}
.ws8{word-spacing:-24.030000px;}
.ws38{word-spacing:-23.976000px;}
.ws72{word-spacing:-23.922000px;}
.ws10{word-spacing:-23.352000px;}
.wsa1{word-spacing:-20.113200px;}
.ws63{word-spacing:-19.935600px;}
.ws65{word-spacing:-19.802400px;}
.ws3{word-spacing:-19.272000px;}
.ws15{word-spacing:-17.937600px;}
.ws12{word-spacing:-17.671200px;}
.ws6c{word-spacing:-15.822000px;}
.ws5{word-spacing:-15.012000px;}
.ws8c{word-spacing:-14.796000px;}
.ws44{word-spacing:-11.676000px;}
.ws71{word-spacing:-8.751996px;}
.ws14{word-spacing:-4.262400px;}
.ws19{word-spacing:-3.780000px;}
.ws1d{word-spacing:-3.726000px;}
.ws27{word-spacing:-3.618000px;}
.ws7f{word-spacing:-3.564000px;}
.ws53{word-spacing:-3.510000px;}
.ws7d{word-spacing:-3.330000px;}
.ws22{word-spacing:-3.240000px;}
.ws56{word-spacing:-3.186000px;}
.ws32{word-spacing:-3.063600px;}
.ws30{word-spacing:-2.974800px;}
.ws1c{word-spacing:-2.916000px;}
.ws18{word-spacing:-2.442000px;}
.ws4d{word-spacing:-2.376000px;}
.ws2b{word-spacing:-2.106000px;}
.wsa7{word-spacing:-1.890000px;}
.ws4a{word-spacing:-1.566000px;}
.ws43{word-spacing:-1.470000px;}
.ws9a{word-spacing:-1.420800px;}
.ws4c{word-spacing:-1.242000px;}
.ws5a{word-spacing:-1.134000px;}
.ws9c{word-spacing:-1.110000px;}
.ws9b{word-spacing:-0.932400px;}
.ws54{word-spacing:-0.648000px;}
.ws57{word-spacing:-0.594000px;}
.wsa8{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.486000px;}
.ws31{word-spacing:-0.355200px;}
.ws4f{word-spacing:-0.270000px;}
.ws2a{word-spacing:-0.216000px;}
.ws51{word-spacing:-0.162000px;}
.ws93{word-spacing:-0.072000px;}
.ws46{word-spacing:-0.054000px;}
.ws17{word-spacing:0.000000px;}
.ws58{word-spacing:0.054000px;}
.ws5c{word-spacing:0.108000px;}
.ws33{word-spacing:0.177600px;}
.ws5b{word-spacing:0.270000px;}
.ws29{word-spacing:0.324000px;}
.ws84{word-spacing:0.378000px;}
.ws48{word-spacing:0.432000px;}
.ws4e{word-spacing:0.648000px;}
.ws20{word-spacing:0.702000px;}
.ws1e{word-spacing:0.756000px;}
.ws52{word-spacing:0.810000px;}
.ws8b{word-spacing:0.888000px;}
.ws4b{word-spacing:0.972000px;}
.ws88{word-spacing:1.080000px;}
.ws98{word-spacing:1.134000px;}
.ws35{word-spacing:1.198800px;}
.ws1b{word-spacing:1.242000px;}
.ws5f{word-spacing:1.512000px;}
.ws24{word-spacing:1.620000px;}
.wsaa{word-spacing:1.687200px;}
.ws7b{word-spacing:1.731600px;}
.ws2c{word-spacing:1.782000px;}
.wsa9{word-spacing:1.953600px;}
.ws87{word-spacing:1.998000px;}
.ws95{word-spacing:2.052000px;}
.ws80{word-spacing:2.268000px;}
.ws2f{word-spacing:2.352000px;}
.ws23{word-spacing:2.430000px;}
.ws2d{word-spacing:2.484000px;}
.ws85{word-spacing:2.538000px;}
.wsa6{word-spacing:2.646000px;}
.ws21{word-spacing:2.808000px;}
.ws34{word-spacing:2.841600px;}
.ws83{word-spacing:3.078000px;}
.wsa4{word-spacing:3.132000px;}
.ws49{word-spacing:3.402000px;}
.ws25{word-spacing:3.456000px;}
.ws94{word-spacing:3.552000px;}
.ws82{word-spacing:3.564000px;}
.ws59{word-spacing:3.672000px;}
.wsa5{word-spacing:3.726000px;}
.ws5e{word-spacing:3.834000px;}
.ws7a{word-spacing:3.862800px;}
.ws26{word-spacing:3.996000px;}
.ws96{word-spacing:4.104000px;}
.ws50{word-spacing:4.428000px;}
.ws7c{word-spacing:4.617600px;}
.ws60{word-spacing:4.644000px;}
.ws45{word-spacing:4.698000px;}
.ws55{word-spacing:5.022000px;}
.ws1a{word-spacing:5.076000px;}
.ws89{word-spacing:5.400000px;}
.ws97{word-spacing:5.724000px;}
.ws2e{word-spacing:5.778000px;}
.ws86{word-spacing:6.372000px;}
.ws79{word-spacing:6.594000px;}
.ws28{word-spacing:6.696000px;}
.ws47{word-spacing:6.750000px;}
.ws61{word-spacing:6.858000px;}
.ws99{word-spacing:7.452000px;}
.ws1f{word-spacing:7.506000px;}
.ws81{word-spacing:7.668000px;}
.ws42{word-spacing:8.232000px;}
.ws40{word-spacing:9.996000px;}
.ws2{word-spacing:10.494000px;}
.ws6a{word-spacing:19.872000px;}
.ws41{word-spacing:20.706000px;}
.ws69{word-spacing:21.492000px;}
.ws7e{word-spacing:55.677600px;}
.ws1{word-spacing:58.212000px;}
.ws90{word-spacing:85.731840px;}
.ws8e{word-spacing:101.360040px;}
.ws0{word-spacing:149.820000px;}
.ws74{word-spacing:154.014000px;}
.ws77{word-spacing:206.598000px;}
.ws8f{word-spacing:390.239150px;}
.ws78{word-spacing:503.790000px;}
.ws75{word-spacing:504.714000px;}
.ws76{word-spacing:505.134000px;}
.ws8a{word-spacing:528.318000px;}
.ws4{word-spacing:1003.306200px;}
.ws62{word-spacing:2431.983000px;}
._34{margin-left:-1038.240000px;}
._33{margin-left:-1026.432000px;}
._25{margin-left:-528.318000px;}
._2d{margin-left:-198.277545px;}
._1f{margin-left:-21.114000px;}
._1e{margin-left:-17.442000px;}
._1c{margin-left:-15.606000px;}
._c{margin-left:-14.106000px;}
._7{margin-left:-10.176000px;}
._a{margin-left:-6.670200px;}
._b{margin-left:-5.577600px;}
._5{margin-left:-4.092000px;}
._0{margin-left:-3.036000px;}
._1{margin-left:-1.815000px;}
._2{width:1.353000px;}
._4{width:2.442000px;}
._6{width:3.768000px;}
._9{width:4.788000px;}
._3{width:5.808000px;}
._8{width:7.452000px;}
._2e{width:30.693585px;}
._17{width:32.886000px;}
._11{width:34.248000px;}
._29{width:35.784000px;}
._19{width:37.284000px;}
._1b{width:40.320000px;}
._d{width:41.916000px;}
._30{width:43.541308px;}
._16{width:45.234000px;}
._1d{width:52.866000px;}
._27{width:72.042000px;}
._31{width:116.876610px;}
._32{width:120.727845px;}
._2f{width:134.793225px;}
._2b{width:150.855705px;}
._14{width:169.614000px;}
._2c{width:195.564855px;}
._1a{width:216.276000px;}
._f{width:255.276000px;}
._20{width:271.614000px;}
._21{width:280.896000px;}
._13{width:291.900000px;}
._10{width:315.252000px;}
._28{width:528.318000px;}
._15{width:574.098000px;}
._18{width:609.042000px;}
._12{width:669.774000px;}
._24{width:738.024000px;}
._22{width:741.504000px;}
._26{width:773.724000px;}
._2a{width:897.540000px;}
._e{width:1065.195600px;}
._23{width:1267.014000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:25.885200px;}
.fs9{font-size:31.482000px;}
.fs0{font-size:33.000000px;}
.fs6{font-size:38.478000px;}
.fs11{font-size:39.070800px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:44.400000px;}
.fs1{font-size:48.000000px;}
.fsf{font-size:50.233200px;}
.fsd{font-size:50.235000px;}
.fs4{font-size:54.000000px;}
.fse{font-size:55.815000px;}
.fsb{font-size:59.328000px;}
.fs3{font-size:66.000000px;}
.fsa{font-size:69.215400px;}
.fsc{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs10{font-size:89.305200px;}
.y0{bottom:0.000000px;}
.y190{bottom:32.821950px;}
.y7{bottom:33.207450px;}
.y14a{bottom:35.202450px;}
.ydb{bottom:35.439900px;}
.y6{bottom:43.107450px;}
.y18f{bottom:47.218650px;}
.y149{bottom:48.705450px;}
.yda{bottom:48.942900px;}
.y5{bottom:53.007450px;}
.y18e{bottom:61.615350px;}
.y148{bottom:62.208450px;}
.yd9{bottom:62.445900px;}
.y4{bottom:62.907450px;}
.y3{bottom:72.807450px;}
.yd8{bottom:75.948900px;}
.y147{bottom:81.706950px;}
.y17c{bottom:82.657350px;}
.y2{bottom:82.707450px;}
.y191{bottom:83.203650px;}
.yd7{bottom:89.451900px;}
.y146{bottom:95.209950px;}
.y1{bottom:97.103700px;}
.y17d{bottom:98.735550px;}
.y17e{bottom:98.794156px;}
.yd6{bottom:102.954900px;}
.y174{bottom:105.514650px;}
.y145{bottom:108.712950px;}
.y17f{bottom:114.051900px;}
.yd5{bottom:116.457900px;}
.y144{bottom:122.215950px;}
.y189{bottom:126.088950px;}
.y64{bottom:126.212250px;}
.y50{bottom:126.505800px;}
.yd4{bottom:129.960900px;}
.y143{bottom:135.718950px;}
.y18d{bottom:138.078450px;}
.y187{bottom:140.528850px;}
.y180{bottom:141.504344px;}
.y175{bottom:142.436052px;}
.y4f{bottom:143.002800px;}
.y63{bottom:143.406150px;}
.yd3{bottom:143.463900px;}
.y17a{bottom:148.905600px;}
.y62{bottom:153.221850px;}
.y142{bottom:155.217450px;}
.yd2{bottom:156.966900px;}
.y4e{bottom:159.499800px;}
.y61{bottom:166.719450px;}
.y141{bottom:168.720450px;}
.y181{bottom:168.956788px;}
.yd1{bottom:170.469900px;}
.y18a{bottom:175.593769px;}
.y4d{bottom:175.996800px;}
.y176{bottom:179.370012px;}
.y60{bottom:180.217050px;}
.yd0{bottom:183.972900px;}
.y140{bottom:188.218950px;}
.y5f{bottom:193.714650px;}
.y182{bottom:196.409231px;}
.y4c{bottom:197.002800px;}
.ycf{bottom:197.475900px;}
.y13f{bottom:201.721950px;}
.y5e{bottom:207.212250px;}
.y4b{bottom:213.499800px;}
.y13e{bottom:215.224950px;}
.y177{bottom:216.291414px;}
.yce{bottom:219.977400px;}
.y183{bottom:223.861675px;}
.y5d{bottom:224.406150px;}
.y18b{bottom:225.098587px;}
.y13d{bottom:228.727950px;}
.y4a{bottom:229.996800px;}
.y49{bottom:246.493800px;}
.y29{bottom:247.911300px;}
.ydc{bottom:248.879250px;}
.y13c{bottom:251.229450px;}
.y184{bottom:251.314119px;}
.y178{bottom:253.212816px;}
.y48{bottom:262.990800px;}
.y28{bottom:264.408300px;}
.y18c{bottom:274.603406px;}
.y185{bottom:278.766563px;}
.y47{bottom:279.487800px;}
.y27{bottom:280.905300px;}
.y14c{bottom:281.573100px;}
.y179{bottom:290.134218px;}
.y14b{bottom:295.969800px;}
.y46{bottom:295.984800px;}
.y26{bottom:297.402300px;}
.y9e{bottom:303.478050px;}
.y186{bottom:306.219007px;}
.y17b{bottom:308.620950px;}
.y188{bottom:308.624250px;}
.y173{bottom:310.819500px;}
.y45{bottom:312.481800px;}
.ycd{bottom:312.725550px;}
.y25{bottom:313.899300px;}
.y9d{bottom:319.975050px;}
.y13b{bottom:328.972050px;}
.y44{bottom:328.978800px;}
.y10a{bottom:329.482050px;}
.ycc{bottom:329.519550px;}
.y24{bottom:330.396300px;}
.y9c{bottom:336.472050px;}
.y172{bottom:341.184300px;}
.y171{bottom:341.351850px;}
.y13a{bottom:345.469050px;}
.y43{bottom:345.475800px;}
.y109{bottom:345.979050px;}
.y23{bottom:346.893300px;}
.ycb{bottom:350.822550px;}
.y9b{bottom:352.969050px;}
.y139{bottom:361.966050px;}
.y42{bottom:361.972800px;}
.y108{bottom:362.544900px;}
.y22{bottom:363.390300px;}
.yca{bottom:367.616550px;}
.y9a{bottom:369.466050px;}
.y138{bottom:378.463050px;}
.y41{bottom:378.469800px;}
.y107{bottom:379.041900px;}
.y21{bottom:379.887300px;}
.y158{bottom:383.269200px;}
.yc9{bottom:384.410550px;}
.y99{bottom:385.963050px;}
.y137{bottom:394.960050px;}
.y40{bottom:394.966800px;}
.y106{bottom:395.538900px;}
.y20{bottom:396.384300px;}
.y157{bottom:399.766200px;}
.yc8{bottom:401.204550px;}
.y98{bottom:406.969050px;}
.y136{bottom:411.457050px;}
.y3f{bottom:411.463800px;}
.y105{bottom:412.035900px;}
.y1f{bottom:412.881300px;}
.y156{bottom:416.263200px;}
.y162{bottom:416.290200px;}
.yc7{bottom:417.998550px;}
.y97{bottom:423.466050px;}
.y135{bottom:427.954050px;}
.y3e{bottom:427.960800px;}
.y104{bottom:428.532900px;}
.y1e{bottom:429.378300px;}
.y155{bottom:432.760200px;}
.y161{bottom:432.787200px;}
.yc6{bottom:434.792550px;}
.y96{bottom:439.963050px;}
.y1dd{bottom:442.727700px;}
.y134{bottom:444.451050px;}
.y3d{bottom:444.457800px;}
.y103{bottom:445.029900px;}
.y1d{bottom:445.875300px;}
.y154{bottom:449.257200px;}
.y160{bottom:449.284200px;}
.yc5{bottom:451.586550px;}
.y95{bottom:456.460050px;}
.y1dc{bottom:457.124400px;}
.y3c{bottom:460.954800px;}
.y102{bottom:461.526900px;}
.y1c{bottom:462.372300px;}
.y133{bottom:465.457050px;}
.y153{bottom:465.754200px;}
.y15f{bottom:465.781200px;}
.yc4{bottom:468.380550px;}
.y1db{bottom:471.521100px;}
.y94{bottom:472.957050px;}
.y3b{bottom:477.451800px;}
.y1b{bottom:478.869300px;}
.y132{bottom:481.954050px;}
.y152{bottom:482.251200px;}
.y15e{bottom:482.278200px;}
.yc3{bottom:485.174550px;}
.y1da{bottom:485.917800px;}
.y93{bottom:489.454050px;}
.y3a{bottom:493.948800px;}
.y101{bottom:494.520900px;}
.y131{bottom:498.451050px;}
.y151{bottom:498.748200px;}
.y15d{bottom:498.775200px;}
.y1a{bottom:499.875300px;}
.y1d9{bottom:500.314500px;}
.yc2{bottom:501.968550px;}
.y92{bottom:505.951050px;}
.y39{bottom:510.445800px;}
.y1d8{bottom:514.711200px;}
.y130{bottom:514.948050px;}
.y150{bottom:515.245200px;}
.y15c{bottom:515.272200px;}
.y19{bottom:516.372300px;}
.yc1{bottom:518.762550px;}
.y91{bottom:522.448050px;}
.y38{bottom:526.942800px;}
.y1d7{bottom:529.107900px;}
.y12f{bottom:531.445050px;}
.y14f{bottom:531.742200px;}
.y15b{bottom:531.769200px;}
.y18{bottom:532.869300px;}
.yc0{bottom:535.556550px;}
.y100{bottom:536.519400px;}
.y90{bottom:538.945050px;}
.y37{bottom:543.439800px;}
.y1d6{bottom:543.504600px;}
.y12e{bottom:547.942050px;}
.y14e{bottom:548.239200px;}
.y15a{bottom:548.266200px;}
.y17{bottom:549.366300px;}
.ybf{bottom:552.350550px;}
.yff{bottom:553.016400px;}
.y8f{bottom:555.442050px;}
.y1d5{bottom:557.901300px;}
.y12d{bottom:564.439050px;}
.y36{bottom:564.445800px;}
.y14d{bottom:564.736200px;}
.y159{bottom:564.763200px;}
.y16{bottom:565.863300px;}
.ybe{bottom:569.144550px;}
.yfe{bottom:569.513400px;}
.y8e{bottom:571.939050px;}
.y1d4{bottom:572.298000px;}
.y12c{bottom:580.936050px;}
.y35{bottom:580.942800px;}
.y15{bottom:582.360300px;}
.ybd{bottom:585.938550px;}
.yfd{bottom:586.010400px;}
.y1d3{bottom:586.694700px;}
.y8d{bottom:588.436050px;}
.y12b{bottom:597.433050px;}
.y34{bottom:597.439800px;}
.y14{bottom:598.857300px;}
.y1d2{bottom:601.091400px;}
.yfc{bottom:602.507400px;}
.ybc{bottom:602.732550px;}
.y16c{bottom:603.695100px;}
.y8c{bottom:604.933050px;}
.y12a{bottom:613.930050px;}
.y33{bottom:613.936800px;}
.y13{bottom:615.354300px;}
.y1d1{bottom:615.488100px;}
.y16b{bottom:618.091800px;}
.yfb{bottom:619.004400px;}
.ybb{bottom:619.526550px;}
.y8b{bottom:621.430050px;}
.y1d0{bottom:629.884800px;}
.y129{bottom:630.427050px;}
.y32{bottom:630.433800px;}
.y12{bottom:631.851300px;}
.yba{bottom:636.320550px;}
.y169{bottom:636.389550px;}
.y8a{bottom:637.927050px;}
.y1cf{bottom:644.281500px;}
.yfa{bottom:644.505900px;}
.y128{bottom:646.924050px;}
.y31{bottom:646.930800px;}
.y11{bottom:648.348300px;}
.y16f{bottom:648.633000px;}
.yb9{bottom:653.114550px;}
.y89{bottom:654.424050px;}
.y1ce{bottom:658.678200px;}
.yf9{bottom:661.002900px;}
.y127{bottom:663.421050px;}
.y30{bottom:663.427800px;}
.y10{bottom:664.845300px;}
.y1ae{bottom:666.405600px;}
.yb8{bottom:669.908550px;}
.y16a{bottom:671.929200px;}
.y1cd{bottom:673.074900px;}
.y88{bottom:675.430050px;}
.yf8{bottom:677.499900px;}
.y126{bottom:679.918050px;}
.y2f{bottom:679.924800px;}
.y1ad{bottom:680.802300px;}
.yf{bottom:681.342300px;}
.yb7{bottom:686.702550px;}
.y1cc{bottom:687.471600px;}
.y87{bottom:691.927050px;}
.yf7{bottom:693.996900px;}
.y1ac{bottom:695.199000px;}
.y125{bottom:696.415050px;}
.y2e{bottom:696.421800px;}
.ye{bottom:697.839300px;}
.y1cb{bottom:701.868300px;}
.y86{bottom:708.424050px;}
.y1ab{bottom:709.595700px;}
.yf6{bottom:710.493900px;}
.y124{bottom:712.912050px;}
.y2d{bottom:712.918800px;}
.yd{bottom:714.336300px;}
.y1ca{bottom:716.265000px;}
.yb6{bottom:718.508550px;}
.y1aa{bottom:723.992400px;}
.yf5{bottom:726.990900px;}
.y123{bottom:729.409050px;}
.y2c{bottom:729.415800px;}
.y85{bottom:729.430050px;}
.y1c9{bottom:730.661700px;}
.yc{bottom:730.833300px;}
.y168{bottom:732.996900px;}
.y1a9{bottom:738.389100px;}
.yf4{bottom:743.487900px;}
.y1c8{bottom:745.058400px;}
.y122{bottom:745.906050px;}
.y2b{bottom:745.912800px;}
.y84{bottom:745.927050px;}
.y16d{bottom:746.787000px;}
.y1a8{bottom:752.785800px;}
.y1c7{bottom:759.455100px;}
.yf3{bottom:759.984900px;}
.yb5{bottom:760.507050px;}
.yb{bottom:762.328800px;}
.y2a{bottom:762.409800px;}
.y83{bottom:762.424050px;}
.y121{bottom:766.912050px;}
.y1a7{bottom:767.182500px;}
.y1c6{bottom:773.851800px;}
.yf2{bottom:776.481900px;}
.yb4{bottom:777.301050px;}
.y163{bottom:778.790850px;}
.y82{bottom:778.921050px;}
.y1a6{bottom:781.579200px;}
.y120{bottom:783.409050px;}
.y1c5{bottom:788.248500px;}
.yf1{bottom:792.978900px;}
.yb3{bottom:794.095050px;}
.y81{bottom:795.418050px;}
.y1a5{bottom:795.975900px;}
.y11f{bottom:799.906050px;}
.y1c4{bottom:802.645200px;}
.yf0{bottom:809.475900px;}
.yb2{bottom:810.889050px;}
.y80{bottom:811.915050px;}
.y11e{bottom:816.403050px;}
.y1c3{bottom:817.041900px;}
.yb1{bottom:827.683050px;}
.y7f{bottom:828.412050px;}
.y1c2{bottom:831.438600px;}
.y11d{bottom:832.900050px;}
.y1a4{bottom:832.920900px;}
.yef{bottom:835.031550px;}
.yb0{bottom:844.477050px;}
.y7e{bottom:844.909050px;}
.y1c1{bottom:845.835300px;}
.y11c{bottom:849.397050px;}
.y1a3{bottom:849.417900px;}
.yee{bottom:849.727950px;}
.y5c{bottom:855.010650px;}
.y1c0{bottom:860.232000px;}
.yaf{bottom:861.271050px;}
.y7d{bottom:861.406050px;}
.y11b{bottom:865.894050px;}
.y1a2{bottom:865.914900px;}
.y6a{bottom:866.410350px;}
.y5b{bottom:869.407350px;}
.yed{bottom:873.426450px;}
.y167{bottom:874.046100px;}
.y1bf{bottom:874.628700px;}
.yae{bottom:878.065050px;}
.y16e{bottom:880.905000px;}
.y11a{bottom:882.391050px;}
.y1a1{bottom:882.411900px;}
.y7c{bottom:882.412050px;}
.y5a{bottom:883.804050px;}
.yec{bottom:888.122850px;}
.y1be{bottom:889.025400px;}
.y69{bottom:889.809150px;}
.yad{bottom:894.859050px;}
.y59{bottom:898.200750px;}
.y119{bottom:898.888050px;}
.y1a0{bottom:898.908900px;}
.y7b{bottom:898.909050px;}
.yeb{bottom:902.819250px;}
.y1bd{bottom:903.422100px;}
.y68{bottom:904.205850px;}
.yac{bottom:911.653050px;}
.y58{bottom:912.597450px;}
.y118{bottom:915.385050px;}
.y19f{bottom:915.405900px;}
.y7a{bottom:915.406050px;}
.yea{bottom:917.515650px;}
.y1bc{bottom:917.818800px;}
.y164{bottom:917.822850px;}
.y67{bottom:918.602550px;}
.y57{bottom:926.994150px;}
.yab{bottom:928.447050px;}
.y117{bottom:931.882050px;}
.y19e{bottom:931.902900px;}
.y79{bottom:931.903050px;}
.ye9{bottom:932.212050px;}
.y1bb{bottom:932.215500px;}
.y66{bottom:932.999250px;}
.y56{bottom:941.390850px;}
.y1ba{bottom:946.612200px;}
.ye8{bottom:946.908450px;}
.y65{bottom:947.395950px;}
.y116{bottom:948.379050px;}
.y19d{bottom:948.399900px;}
.y78{bottom:948.400050px;}
.yaa{bottom:949.750050px;}
.y1b9{bottom:961.008900px;}
.ye7{bottom:961.604850px;}
.y55{bottom:961.792650px;}
.y115{bottom:964.876050px;}
.y77{bottom:964.897050px;}
.ya9{bottom:966.544050px;}
.y19c{bottom:969.405900px;}
.y1b8{bottom:975.405600px;}
.ye6{bottom:976.301250px;}
.y114{bottom:981.373050px;}
.y76{bottom:981.394050px;}
.ya8{bottom:983.338050px;}
.y19b{bottom:985.902900px;}
.y1b7{bottom:989.802300px;}
.ye5{bottom:990.997650px;}
.ya7{bottom:1000.132050px;}
.y113{bottom:1002.379050px;}
.y19a{bottom:1002.399900px;}
.y75{bottom:1002.400050px;}
.y1b6{bottom:1004.199000px;}
.y166{bottom:1005.564150px;}
.ye4{bottom:1005.694050px;}
.ya6{bottom:1016.926050px;}
.y1b5{bottom:1018.595700px;}
.y112{bottom:1018.891050px;}
.y199{bottom:1018.896900px;}
.y74{bottom:1018.897050px;}
.ye3{bottom:1020.390450px;}
.y1b4{bottom:1032.992400px;}
.ya5{bottom:1033.720050px;}
.ye2{bottom:1035.086850px;}
.y111{bottom:1035.388050px;}
.y198{bottom:1035.393900px;}
.y73{bottom:1035.394050px;}
.y54{bottom:1038.915750px;}
.y165{bottom:1040.539650px;}
.y170{bottom:1042.995000px;}
.y1b3{bottom:1047.389100px;}
.ye1{bottom:1049.783250px;}
.ya4{bottom:1050.514050px;}
.y110{bottom:1051.885050px;}
.y197{bottom:1051.890900px;}
.y72{bottom:1051.891050px;}
.y1b2{bottom:1061.785800px;}
.ye0{bottom:1064.479650px;}
.ya3{bottom:1067.308050px;}
.y10f{bottom:1068.382050px;}
.y196{bottom:1068.387900px;}
.y71{bottom:1068.388050px;}
.y53{bottom:1074.903750px;}
.y1b1{bottom:1076.182500px;}
.ydf{bottom:1079.176050px;}
.ya2{bottom:1084.102050px;}
.y10e{bottom:1084.879050px;}
.y195{bottom:1084.884900px;}
.y70{bottom:1084.885050px;}
.y1b0{bottom:1090.579200px;}
.ya1{bottom:1100.896050px;}
.y194{bottom:1101.381900px;}
.y6f{bottom:1101.382050px;}
.y10d{bottom:1101.385050px;}
.y52{bottom:1101.909750px;}
.yde{bottom:1102.880550px;}
.y1af{bottom:1104.975900px;}
.ya0{bottom:1117.690050px;}
.y193{bottom:1117.878900px;}
.y6e{bottom:1117.879050px;}
.y10c{bottom:1117.882050px;}
.y51{bottom:1128.915750px;}
.y192{bottom:1134.375900px;}
.y6d{bottom:1134.376050px;}
.y10b{bottom:1134.379050px;}
.y9f{bottom:1134.484050px;}
.y6b{bottom:1172.247600px;}
.y6c{bottom:1173.339600px;}
.y9{bottom:1174.253100px;}
.ydd{bottom:1174.444500px;}
.ya{bottom:1177.877100px;}
.y8{bottom:1188.653100px;}
.hb{height:18.845133px;}
.h1{height:24.024902px;}
.h2{height:24.057129px;}
.h1b{height:28.443542px;}
.h1a{height:28.677967px;}
.h12{height:30.577148px;}
.hd{height:30.618164px;}
.ha{height:32.324414px;}
.hc{height:32.367773px;}
.h3{height:34.945312px;}
.h4{height:34.992188px;}
.h18{height:36.569770px;}
.h16{height:36.571080px;}
.he{height:38.654297px;}
.h6{height:39.313477px;}
.h7{height:39.366211px;}
.hf{height:40.626357px;}
.h17{height:40.633320px;}
.h11{height:40.841757px;}
.h10{height:40.865757px;}
.h14{height:43.190784px;}
.h5{height:48.049805px;}
.h13{height:49.558226px;}
.h9{height:49.991636px;}
.h15{height:51.820312px;}
.h8{height:61.154297px;}
.h19{height:63.942523px;}
.h0{height:1213.500000px;}
.w0{width:825.000000px;}
.x0{left:0.000000px;}
.x1{left:30.779550px;}
.x4{left:39.295800px;}
.xf{left:54.803850px;}
.xb{left:65.527050px;}
.xe{left:80.404650px;}
.x10{left:111.455100px;}
.x11{left:116.027700px;}
.xd{left:122.253000px;}
.xa{left:129.585150px;}
.x13{left:158.566034px;}
.xc{left:169.055100px;}
.x12{left:196.728437px;}
.x9{left:234.793650px;}
.x5{left:241.677150px;}
.x1d{left:301.862400px;}
.x1c{left:312.477450px;}
.x2{left:323.833800px;}
.x1b{left:328.128750px;}
.x1e{left:358.136100px;}
.x1f{left:362.708850px;}
.x21{left:405.247184px;}
.x8{left:427.357200px;}
.x3{left:430.474050px;}
.x23{left:438.989250px;}
.x20{left:443.409587px;}
.x16{left:550.124100px;}
.x22{left:552.637800px;}
.x15{left:560.201850px;}
.x14{left:566.964150px;}
.x17{left:606.375300px;}
.x18{left:610.948200px;}
.x1a{left:653.486533px;}
.x19{left:691.648937px;}
.x7{left:783.676800px;}
.x6{left:789.459900px;}
@media print{
.v2{vertical-align:-13.142400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.180267pt;}
.v5{vertical-align:7.813867pt;}
.v4{vertical-align:15.739200pt;}
.v1{vertical-align:19.536533pt;}
.ls34{letter-spacing:-3.157333pt;}
.ls2a{letter-spacing:-0.672000pt;}
.lsc{letter-spacing:-0.624000pt;}
.ls2c{letter-spacing:-0.597333pt;}
.ls28{letter-spacing:-0.592000pt;}
.lse{letter-spacing:-0.576000pt;}
.ls18{letter-spacing:-0.528000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.434133pt;}
.ls10{letter-spacing:-0.432000pt;}
.ls2b{letter-spacing:-0.410667pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls39{letter-spacing:-0.355200pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls13{letter-spacing:-0.315733pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls1c{letter-spacing:-0.240000pt;}
.ls3b{letter-spacing:-0.236800pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.157867pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.118400pt;}
.ls19{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.078933pt;}
.ls1d{letter-spacing:-0.048000pt;}
.ls3a{letter-spacing:-0.039467pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003226pt;}
.ls25{letter-spacing:0.004096pt;}
.ls26{letter-spacing:0.004629pt;}
.ls38{letter-spacing:0.039467pt;}
.ls3{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.236800pt;}
.ls16{letter-spacing:0.240000pt;}
.ls36{letter-spacing:0.315733pt;}
.ls5{letter-spacing:0.336000pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls37{letter-spacing:0.434133pt;}
.ls15{letter-spacing:0.528000pt;}
.ls22{letter-spacing:0.624000pt;}
.ls1f{letter-spacing:0.631467pt;}
.ls2d{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.720000pt;}
.ls7{letter-spacing:0.860651pt;}
.ls20{letter-spacing:0.868267pt;}
.ls0{letter-spacing:1.466667pt;}
.ls6{letter-spacing:2.090667pt;}
.ls24{letter-spacing:2.208000pt;}
.ls17{letter-spacing:4.752000pt;}
.ls23{letter-spacing:7.392000pt;}
.ls2f{letter-spacing:29.292614pt;}
.ls31{letter-spacing:29.296881pt;}
.ls2e{letter-spacing:29.314345pt;}
.ls30{letter-spacing:31.753811pt;}
.ls33{letter-spacing:179.862154pt;}
.ls32{letter-spacing:196.140719pt;}
.ls27{letter-spacing:876.624000pt;}
.wse{word-spacing:-48.000000pt;}
.ws92{word-spacing:-39.466667pt;}
.ws11{word-spacing:-35.728000pt;}
.ws8d{word-spacing:-28.704000pt;}
.ws3d{word-spacing:-28.560000pt;}
.wsd{word-spacing:-28.368000pt;}
.ws3f{word-spacing:-28.272000pt;}
.ws9{word-spacing:-28.224000pt;}
.wsc{word-spacing:-28.176000pt;}
.ws37{word-spacing:-28.080000pt;}
.ws7{word-spacing:-28.032000pt;}
.ws3e{word-spacing:-27.984000pt;}
.ws3b{word-spacing:-27.936000pt;}
.wsa{word-spacing:-27.888000pt;}
.wsf{word-spacing:-27.840000pt;}
.ws3c{word-spacing:-27.792000pt;}
.ws6{word-spacing:-27.696000pt;}
.ws70{word-spacing:-27.648000pt;}
.ws73{word-spacing:-27.600000pt;}
.ws6d{word-spacing:-27.552000pt;}
.ws39{word-spacing:-27.504000pt;}
.wsb{word-spacing:-27.456000pt;}
.ws6f{word-spacing:-27.408000pt;}
.ws6e{word-spacing:-27.360000pt;}
.ws66{word-spacing:-23.916800pt;}
.ws9d{word-spacing:-23.364267pt;}
.ws64{word-spacing:-23.285333pt;}
.wsa2{word-spacing:-23.088000pt;}
.ws13{word-spacing:-23.048533pt;}
.wsa0{word-spacing:-23.009067pt;}
.ws91{word-spacing:-22.969600pt;}
.ws68{word-spacing:-22.930133pt;}
.ws16{word-spacing:-22.890667pt;}
.wsa3{word-spacing:-22.811733pt;}
.ws9f{word-spacing:-22.693333pt;}
.ws9e{word-spacing:-22.614400pt;}
.ws67{word-spacing:-22.456533pt;}
.ws6b{word-spacing:-21.984000pt;}
.ws36{word-spacing:-21.802667pt;}
.ws3a{word-spacing:-21.408000pt;}
.ws8{word-spacing:-21.360000pt;}
.ws38{word-spacing:-21.312000pt;}
.ws72{word-spacing:-21.264000pt;}
.ws10{word-spacing:-20.757333pt;}
.wsa1{word-spacing:-17.878400pt;}
.ws63{word-spacing:-17.720533pt;}
.ws65{word-spacing:-17.602133pt;}
.ws3{word-spacing:-17.130667pt;}
.ws15{word-spacing:-15.944533pt;}
.ws12{word-spacing:-15.707733pt;}
.ws6c{word-spacing:-14.064000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws8c{word-spacing:-13.152000pt;}
.ws44{word-spacing:-10.378667pt;}
.ws71{word-spacing:-7.779552pt;}
.ws14{word-spacing:-3.788800pt;}
.ws19{word-spacing:-3.360000pt;}
.ws1d{word-spacing:-3.312000pt;}
.ws27{word-spacing:-3.216000pt;}
.ws7f{word-spacing:-3.168000pt;}
.ws53{word-spacing:-3.120000pt;}
.ws7d{word-spacing:-2.960000pt;}
.ws22{word-spacing:-2.880000pt;}
.ws56{word-spacing:-2.832000pt;}
.ws32{word-spacing:-2.723200pt;}
.ws30{word-spacing:-2.644267pt;}
.ws1c{word-spacing:-2.592000pt;}
.ws18{word-spacing:-2.170667pt;}
.ws4d{word-spacing:-2.112000pt;}
.ws2b{word-spacing:-1.872000pt;}
.wsa7{word-spacing:-1.680000pt;}
.ws4a{word-spacing:-1.392000pt;}
.ws43{word-spacing:-1.306667pt;}
.ws9a{word-spacing:-1.262933pt;}
.ws4c{word-spacing:-1.104000pt;}
.ws5a{word-spacing:-1.008000pt;}
.ws9c{word-spacing:-0.986667pt;}
.ws9b{word-spacing:-0.828800pt;}
.ws54{word-spacing:-0.576000pt;}
.ws57{word-spacing:-0.528000pt;}
.wsa8{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.432000pt;}
.ws31{word-spacing:-0.315733pt;}
.ws4f{word-spacing:-0.240000pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws51{word-spacing:-0.144000pt;}
.ws93{word-spacing:-0.064000pt;}
.ws46{word-spacing:-0.048000pt;}
.ws17{word-spacing:0.000000pt;}
.ws58{word-spacing:0.048000pt;}
.ws5c{word-spacing:0.096000pt;}
.ws33{word-spacing:0.157867pt;}
.ws5b{word-spacing:0.240000pt;}
.ws29{word-spacing:0.288000pt;}
.ws84{word-spacing:0.336000pt;}
.ws48{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.576000pt;}
.ws20{word-spacing:0.624000pt;}
.ws1e{word-spacing:0.672000pt;}
.ws52{word-spacing:0.720000pt;}
.ws8b{word-spacing:0.789333pt;}
.ws4b{word-spacing:0.864000pt;}
.ws88{word-spacing:0.960000pt;}
.ws98{word-spacing:1.008000pt;}
.ws35{word-spacing:1.065600pt;}
.ws1b{word-spacing:1.104000pt;}
.ws5f{word-spacing:1.344000pt;}
.ws24{word-spacing:1.440000pt;}
.wsaa{word-spacing:1.499733pt;}
.ws7b{word-spacing:1.539200pt;}
.ws2c{word-spacing:1.584000pt;}
.wsa9{word-spacing:1.736533pt;}
.ws87{word-spacing:1.776000pt;}
.ws95{word-spacing:1.824000pt;}
.ws80{word-spacing:2.016000pt;}
.ws2f{word-spacing:2.090667pt;}
.ws23{word-spacing:2.160000pt;}
.ws2d{word-spacing:2.208000pt;}
.ws85{word-spacing:2.256000pt;}
.wsa6{word-spacing:2.352000pt;}
.ws21{word-spacing:2.496000pt;}
.ws34{word-spacing:2.525867pt;}
.ws83{word-spacing:2.736000pt;}
.wsa4{word-spacing:2.784000pt;}
.ws49{word-spacing:3.024000pt;}
.ws25{word-spacing:3.072000pt;}
.ws94{word-spacing:3.157333pt;}
.ws82{word-spacing:3.168000pt;}
.ws59{word-spacing:3.264000pt;}
.wsa5{word-spacing:3.312000pt;}
.ws5e{word-spacing:3.408000pt;}
.ws7a{word-spacing:3.433600pt;}
.ws26{word-spacing:3.552000pt;}
.ws96{word-spacing:3.648000pt;}
.ws50{word-spacing:3.936000pt;}
.ws7c{word-spacing:4.104533pt;}
.ws60{word-spacing:4.128000pt;}
.ws45{word-spacing:4.176000pt;}
.ws55{word-spacing:4.464000pt;}
.ws1a{word-spacing:4.512000pt;}
.ws89{word-spacing:4.800000pt;}
.ws97{word-spacing:5.088000pt;}
.ws2e{word-spacing:5.136000pt;}
.ws86{word-spacing:5.664000pt;}
.ws79{word-spacing:5.861333pt;}
.ws28{word-spacing:5.952000pt;}
.ws47{word-spacing:6.000000pt;}
.ws61{word-spacing:6.096000pt;}
.ws99{word-spacing:6.624000pt;}
.ws1f{word-spacing:6.672000pt;}
.ws81{word-spacing:6.816000pt;}
.ws42{word-spacing:7.317333pt;}
.ws40{word-spacing:8.885333pt;}
.ws2{word-spacing:9.328000pt;}
.ws6a{word-spacing:17.664000pt;}
.ws41{word-spacing:18.405333pt;}
.ws69{word-spacing:19.104000pt;}
.ws7e{word-spacing:49.491200pt;}
.ws1{word-spacing:51.744000pt;}
.ws90{word-spacing:76.206080pt;}
.ws8e{word-spacing:90.097813pt;}
.ws0{word-spacing:133.173333pt;}
.ws74{word-spacing:136.901333pt;}
.ws77{word-spacing:183.642667pt;}
.ws8f{word-spacing:346.879245pt;}
.ws78{word-spacing:447.813333pt;}
.ws75{word-spacing:448.634667pt;}
.ws76{word-spacing:449.008000pt;}
.ws8a{word-spacing:469.616000pt;}
.ws4{word-spacing:891.827733pt;}
.ws62{word-spacing:2161.762667pt;}
._34{margin-left:-922.880000pt;}
._33{margin-left:-912.384000pt;}
._25{margin-left:-469.616000pt;}
._2d{margin-left:-176.246707pt;}
._1f{margin-left:-18.768000pt;}
._1e{margin-left:-15.504000pt;}
._1c{margin-left:-13.872000pt;}
._c{margin-left:-12.538667pt;}
._7{margin-left:-9.045333pt;}
._a{margin-left:-5.929067pt;}
._b{margin-left:-4.957867pt;}
._5{margin-left:-3.637333pt;}
._0{margin-left:-2.698667pt;}
._1{margin-left:-1.613333pt;}
._2{width:1.202667pt;}
._4{width:2.170667pt;}
._6{width:3.349333pt;}
._9{width:4.256000pt;}
._3{width:5.162667pt;}
._8{width:6.624000pt;}
._2e{width:27.283187pt;}
._17{width:29.232000pt;}
._11{width:30.442667pt;}
._29{width:31.808000pt;}
._19{width:33.141333pt;}
._1b{width:35.840000pt;}
._d{width:37.258667pt;}
._30{width:38.703385pt;}
._16{width:40.208000pt;}
._1d{width:46.992000pt;}
._27{width:64.037333pt;}
._31{width:103.890320pt;}
._32{width:107.313640pt;}
._2f{width:119.816200pt;}
._2b{width:134.093960pt;}
._14{width:150.768000pt;}
._2c{width:173.835427pt;}
._1a{width:192.245333pt;}
._f{width:226.912000pt;}
._20{width:241.434667pt;}
._21{width:249.685333pt;}
._13{width:259.466667pt;}
._10{width:280.224000pt;}
._28{width:469.616000pt;}
._15{width:510.309333pt;}
._18{width:541.370667pt;}
._12{width:595.354667pt;}
._24{width:656.021333pt;}
._22{width:659.114667pt;}
._26{width:687.754667pt;}
._2a{width:797.813333pt;}
._e{width:946.840533pt;}
._23{width:1126.234667pt;}
.fs8{font-size:23.009067pt;}
.fs9{font-size:27.984000pt;}
.fs0{font-size:29.333333pt;}
.fs6{font-size:34.202667pt;}
.fs11{font-size:34.729600pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:39.466667pt;}
.fs1{font-size:42.666667pt;}
.fsf{font-size:44.651733pt;}
.fsd{font-size:44.653333pt;}
.fs4{font-size:48.000000pt;}
.fse{font-size:49.613333pt;}
.fsb{font-size:52.736000pt;}
.fs3{font-size:58.666667pt;}
.fsa{font-size:61.524800pt;}
.fsc{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs10{font-size:79.382400pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:29.175067pt;}
.y7{bottom:29.517733pt;}
.y14a{bottom:31.291067pt;}
.ydb{bottom:31.502133pt;}
.y6{bottom:38.317733pt;}
.y18f{bottom:41.972133pt;}
.y149{bottom:43.293733pt;}
.yda{bottom:43.504800pt;}
.y5{bottom:47.117733pt;}
.y18e{bottom:54.769200pt;}
.y148{bottom:55.296400pt;}
.yd9{bottom:55.507467pt;}
.y4{bottom:55.917733pt;}
.y3{bottom:64.717733pt;}
.yd8{bottom:67.510133pt;}
.y147{bottom:72.628400pt;}
.y17c{bottom:73.473200pt;}
.y2{bottom:73.517733pt;}
.y191{bottom:73.958800pt;}
.yd7{bottom:79.512800pt;}
.y146{bottom:84.631067pt;}
.y1{bottom:86.314400pt;}
.y17d{bottom:87.764933pt;}
.y17e{bottom:87.817028pt;}
.yd6{bottom:91.515467pt;}
.y174{bottom:93.790800pt;}
.y145{bottom:96.633733pt;}
.y17f{bottom:101.379467pt;}
.yd5{bottom:103.518133pt;}
.y144{bottom:108.636400pt;}
.y189{bottom:112.079067pt;}
.y64{bottom:112.188667pt;}
.y50{bottom:112.449600pt;}
.yd4{bottom:115.520800pt;}
.y143{bottom:120.639067pt;}
.y18d{bottom:122.736400pt;}
.y187{bottom:124.914533pt;}
.y180{bottom:125.781639pt;}
.y175{bottom:126.609824pt;}
.y4f{bottom:127.113600pt;}
.y63{bottom:127.472133pt;}
.yd3{bottom:127.523467pt;}
.y17a{bottom:132.360533pt;}
.y62{bottom:136.197200pt;}
.y142{bottom:137.971067pt;}
.yd2{bottom:139.526133pt;}
.y4e{bottom:141.777600pt;}
.y61{bottom:148.195067pt;}
.y141{bottom:149.973733pt;}
.y181{bottom:150.183811pt;}
.yd1{bottom:151.528800pt;}
.y18a{bottom:156.083350pt;}
.y4d{bottom:156.441600pt;}
.y176{bottom:159.440011pt;}
.y60{bottom:160.192933pt;}
.yd0{bottom:163.531467pt;}
.y140{bottom:167.305733pt;}
.y5f{bottom:172.190800pt;}
.y182{bottom:174.585983pt;}
.y4c{bottom:175.113600pt;}
.ycf{bottom:175.534133pt;}
.y13f{bottom:179.308400pt;}
.y5e{bottom:184.188667pt;}
.y4b{bottom:189.777600pt;}
.y13e{bottom:191.311067pt;}
.y177{bottom:192.259035pt;}
.yce{bottom:195.535467pt;}
.y183{bottom:198.988156pt;}
.y5d{bottom:199.472133pt;}
.y18b{bottom:200.087633pt;}
.y13d{bottom:203.313733pt;}
.y4a{bottom:204.441600pt;}
.y49{bottom:219.105600pt;}
.y29{bottom:220.365600pt;}
.ydc{bottom:221.226000pt;}
.y13c{bottom:223.315067pt;}
.y184{bottom:223.390328pt;}
.y178{bottom:225.078059pt;}
.y48{bottom:233.769600pt;}
.y28{bottom:235.029600pt;}
.y18c{bottom:244.091916pt;}
.y185{bottom:247.792500pt;}
.y47{bottom:248.433600pt;}
.y27{bottom:249.693600pt;}
.y14c{bottom:250.287200pt;}
.y179{bottom:257.897083pt;}
.y14b{bottom:263.084267pt;}
.y46{bottom:263.097600pt;}
.y26{bottom:264.357600pt;}
.y9e{bottom:269.758267pt;}
.y186{bottom:272.194673pt;}
.y17b{bottom:274.329733pt;}
.y188{bottom:274.332667pt;}
.y173{bottom:276.284000pt;}
.y45{bottom:277.761600pt;}
.ycd{bottom:277.978267pt;}
.y25{bottom:279.021600pt;}
.y9d{bottom:284.422267pt;}
.y13b{bottom:292.419600pt;}
.y44{bottom:292.425600pt;}
.y10a{bottom:292.872933pt;}
.ycc{bottom:292.906267pt;}
.y24{bottom:293.685600pt;}
.y9c{bottom:299.086267pt;}
.y172{bottom:303.274933pt;}
.y171{bottom:303.423867pt;}
.y13a{bottom:307.083600pt;}
.y43{bottom:307.089600pt;}
.y109{bottom:307.536933pt;}
.y23{bottom:308.349600pt;}
.ycb{bottom:311.842267pt;}
.y9b{bottom:313.750267pt;}
.y139{bottom:321.747600pt;}
.y42{bottom:321.753600pt;}
.y108{bottom:322.262133pt;}
.y22{bottom:323.013600pt;}
.yca{bottom:326.770267pt;}
.y9a{bottom:328.414267pt;}
.y138{bottom:336.411600pt;}
.y41{bottom:336.417600pt;}
.y107{bottom:336.926133pt;}
.y21{bottom:337.677600pt;}
.y158{bottom:340.683733pt;}
.yc9{bottom:341.698267pt;}
.y99{bottom:343.078267pt;}
.y137{bottom:351.075600pt;}
.y40{bottom:351.081600pt;}
.y106{bottom:351.590133pt;}
.y20{bottom:352.341600pt;}
.y157{bottom:355.347733pt;}
.yc8{bottom:356.626267pt;}
.y98{bottom:361.750267pt;}
.y136{bottom:365.739600pt;}
.y3f{bottom:365.745600pt;}
.y105{bottom:366.254133pt;}
.y1f{bottom:367.005600pt;}
.y156{bottom:370.011733pt;}
.y162{bottom:370.035733pt;}
.yc7{bottom:371.554267pt;}
.y97{bottom:376.414267pt;}
.y135{bottom:380.403600pt;}
.y3e{bottom:380.409600pt;}
.y104{bottom:380.918133pt;}
.y1e{bottom:381.669600pt;}
.y155{bottom:384.675733pt;}
.y161{bottom:384.699733pt;}
.yc6{bottom:386.482267pt;}
.y96{bottom:391.078267pt;}
.y1dd{bottom:393.535733pt;}
.y134{bottom:395.067600pt;}
.y3d{bottom:395.073600pt;}
.y103{bottom:395.582133pt;}
.y1d{bottom:396.333600pt;}
.y154{bottom:399.339733pt;}
.y160{bottom:399.363733pt;}
.yc5{bottom:401.410267pt;}
.y95{bottom:405.742267pt;}
.y1dc{bottom:406.332800pt;}
.y3c{bottom:409.737600pt;}
.y102{bottom:410.246133pt;}
.y1c{bottom:410.997600pt;}
.y133{bottom:413.739600pt;}
.y153{bottom:414.003733pt;}
.y15f{bottom:414.027733pt;}
.yc4{bottom:416.338267pt;}
.y1db{bottom:419.129867pt;}
.y94{bottom:420.406267pt;}
.y3b{bottom:424.401600pt;}
.y1b{bottom:425.661600pt;}
.y132{bottom:428.403600pt;}
.y152{bottom:428.667733pt;}
.y15e{bottom:428.691733pt;}
.yc3{bottom:431.266267pt;}
.y1da{bottom:431.926933pt;}
.y93{bottom:435.070267pt;}
.y3a{bottom:439.065600pt;}
.y101{bottom:439.574133pt;}
.y131{bottom:443.067600pt;}
.y151{bottom:443.331733pt;}
.y15d{bottom:443.355733pt;}
.y1a{bottom:444.333600pt;}
.y1d9{bottom:444.724000pt;}
.yc2{bottom:446.194267pt;}
.y92{bottom:449.734267pt;}
.y39{bottom:453.729600pt;}
.y1d8{bottom:457.521067pt;}
.y130{bottom:457.731600pt;}
.y150{bottom:457.995733pt;}
.y15c{bottom:458.019733pt;}
.y19{bottom:458.997600pt;}
.yc1{bottom:461.122267pt;}
.y91{bottom:464.398267pt;}
.y38{bottom:468.393600pt;}
.y1d7{bottom:470.318133pt;}
.y12f{bottom:472.395600pt;}
.y14f{bottom:472.659733pt;}
.y15b{bottom:472.683733pt;}
.y18{bottom:473.661600pt;}
.yc0{bottom:476.050267pt;}
.y100{bottom:476.906133pt;}
.y90{bottom:479.062267pt;}
.y37{bottom:483.057600pt;}
.y1d6{bottom:483.115200pt;}
.y12e{bottom:487.059600pt;}
.y14e{bottom:487.323733pt;}
.y15a{bottom:487.347733pt;}
.y17{bottom:488.325600pt;}
.ybf{bottom:490.978267pt;}
.yff{bottom:491.570133pt;}
.y8f{bottom:493.726267pt;}
.y1d5{bottom:495.912267pt;}
.y12d{bottom:501.723600pt;}
.y36{bottom:501.729600pt;}
.y14d{bottom:501.987733pt;}
.y159{bottom:502.011733pt;}
.y16{bottom:502.989600pt;}
.ybe{bottom:505.906267pt;}
.yfe{bottom:506.234133pt;}
.y8e{bottom:508.390267pt;}
.y1d4{bottom:508.709333pt;}
.y12c{bottom:516.387600pt;}
.y35{bottom:516.393600pt;}
.y15{bottom:517.653600pt;}
.ybd{bottom:520.834267pt;}
.yfd{bottom:520.898133pt;}
.y1d3{bottom:521.506400pt;}
.y8d{bottom:523.054267pt;}
.y12b{bottom:531.051600pt;}
.y34{bottom:531.057600pt;}
.y14{bottom:532.317600pt;}
.y1d2{bottom:534.303467pt;}
.yfc{bottom:535.562133pt;}
.ybc{bottom:535.762267pt;}
.y16c{bottom:536.617867pt;}
.y8c{bottom:537.718267pt;}
.y12a{bottom:545.715600pt;}
.y33{bottom:545.721600pt;}
.y13{bottom:546.981600pt;}
.y1d1{bottom:547.100533pt;}
.y16b{bottom:549.414933pt;}
.yfb{bottom:550.226133pt;}
.ybb{bottom:550.690267pt;}
.y8b{bottom:552.382267pt;}
.y1d0{bottom:559.897600pt;}
.y129{bottom:560.379600pt;}
.y32{bottom:560.385600pt;}
.y12{bottom:561.645600pt;}
.yba{bottom:565.618267pt;}
.y169{bottom:565.679600pt;}
.y8a{bottom:567.046267pt;}
.y1cf{bottom:572.694667pt;}
.yfa{bottom:572.894133pt;}
.y128{bottom:575.043600pt;}
.y31{bottom:575.049600pt;}
.y11{bottom:576.309600pt;}
.y16f{bottom:576.562667pt;}
.yb9{bottom:580.546267pt;}
.y89{bottom:581.710267pt;}
.y1ce{bottom:585.491733pt;}
.yf9{bottom:587.558133pt;}
.y127{bottom:589.707600pt;}
.y30{bottom:589.713600pt;}
.y10{bottom:590.973600pt;}
.y1ae{bottom:592.360533pt;}
.yb8{bottom:595.474267pt;}
.y16a{bottom:597.270400pt;}
.y1cd{bottom:598.288800pt;}
.y88{bottom:600.382267pt;}
.yf8{bottom:602.222133pt;}
.y126{bottom:604.371600pt;}
.y2f{bottom:604.377600pt;}
.y1ad{bottom:605.157600pt;}
.yf{bottom:605.637600pt;}
.yb7{bottom:610.402267pt;}
.y1cc{bottom:611.085867pt;}
.y87{bottom:615.046267pt;}
.yf7{bottom:616.886133pt;}
.y1ac{bottom:617.954667pt;}
.y125{bottom:619.035600pt;}
.y2e{bottom:619.041600pt;}
.ye{bottom:620.301600pt;}
.y1cb{bottom:623.882933pt;}
.y86{bottom:629.710267pt;}
.y1ab{bottom:630.751733pt;}
.yf6{bottom:631.550133pt;}
.y124{bottom:633.699600pt;}
.y2d{bottom:633.705600pt;}
.yd{bottom:634.965600pt;}
.y1ca{bottom:636.680000pt;}
.yb6{bottom:638.674267pt;}
.y1aa{bottom:643.548800pt;}
.yf5{bottom:646.214133pt;}
.y123{bottom:648.363600pt;}
.y2c{bottom:648.369600pt;}
.y85{bottom:648.382267pt;}
.y1c9{bottom:649.477067pt;}
.yc{bottom:649.629600pt;}
.y168{bottom:651.552800pt;}
.y1a9{bottom:656.345867pt;}
.yf4{bottom:660.878133pt;}
.y1c8{bottom:662.274133pt;}
.y122{bottom:663.027600pt;}
.y2b{bottom:663.033600pt;}
.y84{bottom:663.046267pt;}
.y16d{bottom:663.810667pt;}
.y1a8{bottom:669.142933pt;}
.y1c7{bottom:675.071200pt;}
.yf3{bottom:675.542133pt;}
.yb5{bottom:676.006267pt;}
.yb{bottom:677.625600pt;}
.y2a{bottom:677.697600pt;}
.y83{bottom:677.710267pt;}
.y121{bottom:681.699600pt;}
.y1a7{bottom:681.940000pt;}
.y1c6{bottom:687.868267pt;}
.yf2{bottom:690.206133pt;}
.yb4{bottom:690.934267pt;}
.y163{bottom:692.258533pt;}
.y82{bottom:692.374267pt;}
.y1a6{bottom:694.737067pt;}
.y120{bottom:696.363600pt;}
.y1c5{bottom:700.665333pt;}
.yf1{bottom:704.870133pt;}
.yb3{bottom:705.862267pt;}
.y81{bottom:707.038267pt;}
.y1a5{bottom:707.534133pt;}
.y11f{bottom:711.027600pt;}
.y1c4{bottom:713.462400pt;}
.yf0{bottom:719.534133pt;}
.yb2{bottom:720.790267pt;}
.y80{bottom:721.702267pt;}
.y11e{bottom:725.691600pt;}
.y1c3{bottom:726.259467pt;}
.yb1{bottom:735.718267pt;}
.y7f{bottom:736.366267pt;}
.y1c2{bottom:739.056533pt;}
.y11d{bottom:740.355600pt;}
.y1a4{bottom:740.374133pt;}
.yef{bottom:742.250267pt;}
.yb0{bottom:750.646267pt;}
.y7e{bottom:751.030267pt;}
.y1c1{bottom:751.853600pt;}
.y11c{bottom:755.019600pt;}
.y1a3{bottom:755.038133pt;}
.yee{bottom:755.313733pt;}
.y5c{bottom:760.009467pt;}
.y1c0{bottom:764.650667pt;}
.yaf{bottom:765.574267pt;}
.y7d{bottom:765.694267pt;}
.y11b{bottom:769.683600pt;}
.y1a2{bottom:769.702133pt;}
.y6a{bottom:770.142533pt;}
.y5b{bottom:772.806533pt;}
.yed{bottom:776.379067pt;}
.y167{bottom:776.929867pt;}
.y1bf{bottom:777.447733pt;}
.yae{bottom:780.502267pt;}
.y16e{bottom:783.026667pt;}
.y11a{bottom:784.347600pt;}
.y1a1{bottom:784.366133pt;}
.y7c{bottom:784.366267pt;}
.y5a{bottom:785.603600pt;}
.yec{bottom:789.442533pt;}
.y1be{bottom:790.244800pt;}
.y69{bottom:790.941467pt;}
.yad{bottom:795.430267pt;}
.y59{bottom:798.400667pt;}
.y119{bottom:799.011600pt;}
.y1a0{bottom:799.030133pt;}
.y7b{bottom:799.030267pt;}
.yeb{bottom:802.506000pt;}
.y1bd{bottom:803.041867pt;}
.y68{bottom:803.738533pt;}
.yac{bottom:810.358267pt;}
.y58{bottom:811.197733pt;}
.y118{bottom:813.675600pt;}
.y19f{bottom:813.694133pt;}
.y7a{bottom:813.694267pt;}
.yea{bottom:815.569467pt;}
.y1bc{bottom:815.838933pt;}
.y164{bottom:815.842533pt;}
.y67{bottom:816.535600pt;}
.y57{bottom:823.994800pt;}
.yab{bottom:825.286267pt;}
.y117{bottom:828.339600pt;}
.y19e{bottom:828.358133pt;}
.y79{bottom:828.358267pt;}
.ye9{bottom:828.632933pt;}
.y1bb{bottom:828.636000pt;}
.y66{bottom:829.332667pt;}
.y56{bottom:836.791867pt;}
.y1ba{bottom:841.433067pt;}
.ye8{bottom:841.696400pt;}
.y65{bottom:842.129733pt;}
.y116{bottom:843.003600pt;}
.y19d{bottom:843.022133pt;}
.y78{bottom:843.022267pt;}
.yaa{bottom:844.222267pt;}
.y1b9{bottom:854.230133pt;}
.ye7{bottom:854.759867pt;}
.y55{bottom:854.926800pt;}
.y115{bottom:857.667600pt;}
.y77{bottom:857.686267pt;}
.ya9{bottom:859.150267pt;}
.y19c{bottom:861.694133pt;}
.y1b8{bottom:867.027200pt;}
.ye6{bottom:867.823333pt;}
.y114{bottom:872.331600pt;}
.y76{bottom:872.350267pt;}
.ya8{bottom:874.078267pt;}
.y19b{bottom:876.358133pt;}
.y1b7{bottom:879.824267pt;}
.ye5{bottom:880.886800pt;}
.ya7{bottom:889.006267pt;}
.y113{bottom:891.003600pt;}
.y19a{bottom:891.022133pt;}
.y75{bottom:891.022267pt;}
.y1b6{bottom:892.621333pt;}
.y166{bottom:893.834800pt;}
.ye4{bottom:893.950267pt;}
.ya6{bottom:903.934267pt;}
.y1b5{bottom:905.418400pt;}
.y112{bottom:905.680933pt;}
.y199{bottom:905.686133pt;}
.y74{bottom:905.686267pt;}
.ye3{bottom:907.013733pt;}
.y1b4{bottom:918.215467pt;}
.ya5{bottom:918.862267pt;}
.ye2{bottom:920.077200pt;}
.y111{bottom:920.344933pt;}
.y198{bottom:920.350133pt;}
.y73{bottom:920.350267pt;}
.y54{bottom:923.480667pt;}
.y165{bottom:924.924133pt;}
.y170{bottom:927.106667pt;}
.y1b3{bottom:931.012533pt;}
.ye1{bottom:933.140667pt;}
.ya4{bottom:933.790267pt;}
.y110{bottom:935.008933pt;}
.y197{bottom:935.014133pt;}
.y72{bottom:935.014267pt;}
.y1b2{bottom:943.809600pt;}
.ye0{bottom:946.204133pt;}
.ya3{bottom:948.718267pt;}
.y10f{bottom:949.672933pt;}
.y196{bottom:949.678133pt;}
.y71{bottom:949.678267pt;}
.y53{bottom:955.470000pt;}
.y1b1{bottom:956.606667pt;}
.ydf{bottom:959.267600pt;}
.ya2{bottom:963.646267pt;}
.y10e{bottom:964.336933pt;}
.y195{bottom:964.342133pt;}
.y70{bottom:964.342267pt;}
.y1b0{bottom:969.403733pt;}
.ya1{bottom:978.574267pt;}
.y194{bottom:979.006133pt;}
.y6f{bottom:979.006267pt;}
.y10d{bottom:979.008933pt;}
.y52{bottom:979.475333pt;}
.yde{bottom:980.338267pt;}
.y1af{bottom:982.200800pt;}
.ya0{bottom:993.502267pt;}
.y193{bottom:993.670133pt;}
.y6e{bottom:993.670267pt;}
.y10c{bottom:993.672933pt;}
.y51{bottom:1003.480667pt;}
.y192{bottom:1008.334133pt;}
.y6d{bottom:1008.334267pt;}
.y10b{bottom:1008.336933pt;}
.y9f{bottom:1008.430267pt;}
.y6b{bottom:1041.997867pt;}
.y6c{bottom:1042.968533pt;}
.y9{bottom:1043.780533pt;}
.ydd{bottom:1043.950667pt;}
.ya{bottom:1047.001867pt;}
.y8{bottom:1056.580533pt;}
.hb{height:16.751230pt;}
.h1{height:21.355469pt;}
.h2{height:21.384115pt;}
.h1b{height:25.283149pt;}
.h1a{height:25.491526pt;}
.h12{height:27.179688pt;}
.hd{height:27.216146pt;}
.ha{height:28.732813pt;}
.hc{height:28.771354pt;}
.h3{height:31.062500pt;}
.h4{height:31.104167pt;}
.h18{height:32.506462pt;}
.h16{height:32.507627pt;}
.he{height:34.359375pt;}
.h6{height:34.945312pt;}
.h7{height:34.992188pt;}
.hf{height:36.112317pt;}
.h17{height:36.118507pt;}
.h11{height:36.303784pt;}
.h10{height:36.325117pt;}
.h14{height:38.391808pt;}
.h5{height:42.710938pt;}
.h13{height:44.051757pt;}
.h9{height:44.437010pt;}
.h15{height:46.062500pt;}
.h8{height:54.359375pt;}
.h19{height:56.837798pt;}
.h0{height:1078.666667pt;}
.w0{width:733.333333pt;}
.x0{left:0.000000pt;}
.x1{left:27.359600pt;}
.x4{left:34.929600pt;}
.xf{left:48.714533pt;}
.xb{left:58.246267pt;}
.xe{left:71.470800pt;}
.x10{left:99.071200pt;}
.x11{left:103.135733pt;}
.xd{left:108.669333pt;}
.xa{left:115.186800pt;}
.x13{left:140.947585pt;}
.xc{left:150.271200pt;}
.x12{left:174.869722pt;}
.x9{left:208.705467pt;}
.x5{left:214.824133pt;}
.x1d{left:268.322133pt;}
.x1c{left:277.757733pt;}
.x2{left:287.852267pt;}
.x1b{left:291.670000pt;}
.x1e{left:318.343200pt;}
.x1f{left:322.407867pt;}
.x21{left:360.219719pt;}
.x8{left:379.873067pt;}
.x3{left:382.643600pt;}
.x23{left:390.212667pt;}
.x20{left:394.141855pt;}
.x16{left:488.999200pt;}
.x22{left:491.233600pt;}
.x15{left:497.957200pt;}
.x14{left:503.968133pt;}
.x17{left:539.000267pt;}
.x18{left:543.065067pt;}
.x1a{left:580.876919pt;}
.x19{left:614.799055pt;}
.x7{left:696.601600pt;}
.x6{left:701.742133pt;}
}




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