
    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_8c6f713b11e63a84bf01a037.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_845c1252945e3c17c0c0cc52.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_cfa7f233dfc7b2b52430386c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_be822cdbf22f5ac2c43d326b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.868000;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_e354bbedb6e00d56ea2bb813.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_de8d465d1c44ae2467f0736b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_cca31cc762d1b2c9e6fb24a4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_453a6a5d16c10f6d02814af1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.903000;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_fcb663a5a94b4f1c2f0569ee.woff')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_57bcce8cbd941b4617f04f82.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_47c8931d8c03db233d7a0e28.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_05bc30d2479e978c272427c1.woff')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_24c0da9f4f166b0c469439d5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.643000;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_be26684095e6f040e59cf7de.woff')format("woff");}.ffe{font-family:ffe;line-height:0.390000;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_88b40a3c2a088d77599bec11.woff')format("woff");}.fff{font-family:fff;line-height:0.999000;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_30d8f8d469815e03bc5b1ed7.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_05c2fa673110eced662e772a.woff')format("woff");}.ff11{font-family:ff11;line-height:1.705000;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:ff12;src:url('chunks/assets/font_79141e6797891f04fd48c809.woff')format("woff");}.ff12{font-family:ff12;line-height:0.688000;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:ff13;src:url('chunks/assets/font_4fb6962e66bc7fa00fd2adc9.woff')format("woff");}.ff13{font-family:ff13;line-height:0.958000;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:ff14;src:url('chunks/assets/font_24867b460ca33a90897e3c9f.woff')format("woff");}.ff14{font-family:ff14;line-height:1.800000;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:ff15;src:url('chunks/assets/font_ef86da6dd790f408de3c6be1.woff')format("woff");}.ff15{font-family:ff15;line-height:0.122000;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:ff16;src:url('chunks/assets/font_aca7392988a315246a8a1c15.woff')format("woff");}.ff16{font-family:ff16;line-height:0.673000;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:ff17;src:url('chunks/assets/font_e9fe478323ea1fc98384125c.woff')format("woff");}.ff17{font-family:ff17;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.952000px;}
.v4{vertical-align:-10.626000px;}
.v7{vertical-align:-9.000000px;}
.v8{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:16.944000px;}
.vc{vertical-align:21.774000px;}
.v6{vertical-align:25.086000px;}
.v1{vertical-align:26.124000px;}
.v9{vertical-align:29.940000px;}
.v5{vertical-align:40.920000px;}
.vb{vertical-align:53.040000px;}
.v3{vertical-align:102.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.001200px;}
.ls19{letter-spacing:0.002400px;}
.ls20{letter-spacing:0.003120px;}
.ls2a{letter-spacing:0.003269px;}
.ls8{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.006000px;}
.lsa{letter-spacing:1.566000px;}
.ls24{letter-spacing:2.985843px;}
.ls28{letter-spacing:2.987059px;}
.ls5{letter-spacing:2.989542px;}
.ls29{letter-spacing:2.991843px;}
.ls3e{letter-spacing:2.995542px;}
.ls2c{letter-spacing:8.328000px;}
.ls23{letter-spacing:8.334000px;}
.ls1b{letter-spacing:8.493600px;}
.ls1f{letter-spacing:8.503200px;}
.ls31{letter-spacing:10.002000px;}
.ls1d{letter-spacing:11.331600px;}
.ls1e{letter-spacing:11.335200px;}
.ls27{letter-spacing:13.332000px;}
.ls42{letter-spacing:14.111447px;}
.ls41{letter-spacing:14.116613px;}
.ls18{letter-spacing:14.169600px;}
.ls22{letter-spacing:14.574000px;}
.ls40{letter-spacing:15.389644px;}
.ls17{letter-spacing:15.446400px;}
.ls26{letter-spacing:16.319059px;}
.ls35{letter-spacing:16.662000px;}
.ls25{letter-spacing:16.662538px;}
.ls2f{letter-spacing:16.668000px;}
.ls14{letter-spacing:16.994400px;}
.ls16{letter-spacing:17.001600px;}
.lse{letter-spacing:17.155597px;}
.ls3f{letter-spacing:17.262000px;}
.ls37{letter-spacing:17.448000px;}
.ls15{letter-spacing:18.278400px;}
.ls39{letter-spacing:18.558000px;}
.ls4{letter-spacing:18.822000px;}
.ls13{letter-spacing:19.008641px;}
.ls12{letter-spacing:19.200000px;}
.ls36{letter-spacing:19.338000px;}
.ls3d{letter-spacing:19.440000px;}
.ls30{letter-spacing:19.650000px;}
.ls33{letter-spacing:19.657542px;}
.ls38{letter-spacing:19.965050px;}
.ls1a{letter-spacing:19.983840px;}
.lsd{letter-spacing:20.263928px;}
.ls10{letter-spacing:20.382000px;}
.ls3b{letter-spacing:21.216000px;}
.ls3c{letter-spacing:21.330000px;}
.ls3a{letter-spacing:23.106000px;}
.ls2d{letter-spacing:23.436000px;}
.ls32{letter-spacing:23.838538px;}
.lsb{letter-spacing:24.448220px;}
.lsc{letter-spacing:24.507996px;}
.lsf{letter-spacing:26.832000px;}
.ls2b{letter-spacing:27.006000px;}
.ls11{letter-spacing:28.584000px;}
.ls6{letter-spacing:29.886000px;}
.ls2e{letter-spacing:31.086000px;}
.ls21{letter-spacing:38.778000px;}
.ls2{letter-spacing:59.772000px;}
.ls7{letter-spacing:73.453200px;}
.ls34{letter-spacing:78.456538px;}
.ls3{letter-spacing:229.326000px;}
.ls9{letter-spacing:465.502800px;}
.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;}
}
.ws55{word-spacing:-60.000000px;}
.ws74{word-spacing:-51.000000px;}
.wsce{word-spacing:-40.377600px;}
.ws5a{word-spacing:-39.084000px;}
.ws75{word-spacing:-33.336000px;}
.wsbf{word-spacing:-26.250000px;}
.wsf0{word-spacing:-22.200000px;}
.ws5{word-spacing:-18.334800px;}
.ws56{word-spacing:-16.605662px;}
.ws10a{word-spacing:-15.336000px;}
.wscd{word-spacing:-14.164800px;}
.wsc5{word-spacing:-3.156152px;}
.wscc{word-spacing:-2.976825px;}
.ws29{word-spacing:-2.917049px;}
.ws84{word-spacing:-2.558396px;}
.ws82{word-spacing:-2.543943px;}
.wsfe{word-spacing:-2.498620px;}
.ws92{word-spacing:-2.438844px;}
.wsff{word-spacing:-2.379069px;}
.ws35{word-spacing:-2.319293px;}
.wsc6{word-spacing:-2.259518px;}
.wsd2{word-spacing:-2.021302px;}
.wsd3{word-spacing:-2.020415px;}
.ws10{word-spacing:-1.863000px;}
.ws4b{word-spacing:-1.841088px;}
.wsd7{word-spacing:-1.661762px;}
.ws42{word-spacing:-1.601986px;}
.ws9a{word-spacing:-1.422659px;}
.wsf5{word-spacing:-0.824903px;}
.wsa9{word-spacing:-0.482988px;}
.wsf7{word-spacing:-0.406474px;}
.wsb5{word-spacing:-0.346698px;}
.ws94{word-spacing:-0.286923px;}
.ws9f{word-spacing:-0.227147px;}
.wsbe{word-spacing:-0.167372px;}
.ws7d{word-spacing:-0.107596px;}
.ws54{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.046200px;}
.ws5b{word-spacing:-0.041999px;}
.wscf{word-spacing:-0.033600px;}
.wsfb{word-spacing:-0.004782px;}
.ws1a{word-spacing:0.000000px;}
.ws4f{word-spacing:0.011955px;}
.ws60{word-spacing:0.036000px;}
.ws53{word-spacing:0.057216px;}
.ws58{word-spacing:0.071731px;}
.ws5e{word-spacing:0.131506px;}
.ws7c{word-spacing:0.310833px;}
.ws5f{word-spacing:0.370609px;}
.ws3a{word-spacing:0.430384px;}
.wsc3{word-spacing:0.490160px;}
.ws1f{word-spacing:0.609711px;}
.wsc{word-spacing:0.621000px;}
.wsf8{word-spacing:0.659638px;}
.wsa7{word-spacing:0.669487px;}
.ws10e{word-spacing:0.708237px;}
.ws110{word-spacing:0.729262px;}
.wse4{word-spacing:0.789038px;}
.ws109{word-spacing:0.968365px;}
.wsac{word-spacing:0.999451px;}
.ws8a{word-spacing:1.087916px;}
.wsea{word-spacing:1.147692px;}
.ws64{word-spacing:1.386794px;}
.ws111{word-spacing:1.404000px;}
.ws24{word-spacing:1.446570px;}
.ws116{word-spacing:1.500334px;}
.ws38{word-spacing:1.506345px;}
.ws36{word-spacing:1.566121px;}
.ws39{word-spacing:1.625896px;}
.ws93{word-spacing:1.685672px;}
.ws66{word-spacing:1.686000px;}
.ws81{word-spacing:1.745448px;}
.wsb4{word-spacing:1.864999px;}
.wsd6{word-spacing:1.924774px;}
.wsee{word-spacing:1.984550px;}
.wsfa{word-spacing:2.051504px;}
.ws9d{word-spacing:2.104101px;}
.wsb7{word-spacing:2.163877px;}
.ws59{word-spacing:2.402979px;}
.ws57{word-spacing:2.429581px;}
.wsb6{word-spacing:2.496000px;}
.wscb{word-spacing:2.582306px;}
.wsbc{word-spacing:2.642082px;}
.ws88{word-spacing:2.701857px;}
.ws23{word-spacing:2.761633px;}
.wsa3{word-spacing:2.816633px;}
.ws107{word-spacing:2.821408px;}
.ws15{word-spacing:2.827200px;}
.wsaa{word-spacing:2.864454px;}
.ws80{word-spacing:2.881184px;}
.ws41{word-spacing:3.000735px;}
.ws13{word-spacing:3.051000px;}
.wse3{word-spacing:3.060511px;}
.wsed{word-spacing:3.120286px;}
.ws20{word-spacing:3.299613px;}
.wsec{word-spacing:3.312684px;}
.wse9{word-spacing:3.324698px;}
.ws89{word-spacing:3.359389px;}
.wsef{word-spacing:3.419164px;}
.ws11{word-spacing:3.429000px;}
.ws31{word-spacing:3.478940px;}
.wsc4{word-spacing:3.504000px;}
.wse2{word-spacing:3.516000px;}
.wsa2{word-spacing:3.629584px;}
.ws4{word-spacing:3.643200px;}
.ws12{word-spacing:3.645000px;}
.ws9b{word-spacing:3.658267px;}
.ws50{word-spacing:3.718042px;}
.ws10f{word-spacing:3.744000px;}
.wsa{word-spacing:3.753000px;}
.ws9e{word-spacing:3.777818px;}
.ws102{word-spacing:3.837594px;}
.ws51{word-spacing:3.897369px;}
.ws90{word-spacing:4.076696px;}
.wsc9{word-spacing:4.136472px;}
.ws61{word-spacing:4.196247px;}
.ws18{word-spacing:4.256023px;}
.ws6e{word-spacing:4.315798px;}
.ws117{word-spacing:4.464000px;}
.ws7f{word-spacing:4.500000px;}
.wsba{word-spacing:4.614676px;}
.ws7{word-spacing:4.617000px;}
.wsa6{word-spacing:4.674452px;}
.wsb{word-spacing:4.725000px;}
.wsa0{word-spacing:4.734228px;}
.ws85{word-spacing:4.842684px;}
.ws87{word-spacing:4.853779px;}
.ws65{word-spacing:4.896000px;}
.ws8f{word-spacing:4.913554px;}
.wsf3{word-spacing:4.973330px;}
.ws19{word-spacing:5.033106px;}
.ws4e{word-spacing:5.212432px;}
.ws37{word-spacing:5.250000px;}
.wsdf{word-spacing:5.391759px;}
.ws21{word-spacing:5.451535px;}
.ws3e{word-spacing:5.571086px;}
.wsf4{word-spacing:5.630862px;}
.ws108{word-spacing:5.664000px;}
.wsde{word-spacing:5.736000px;}
.ws63{word-spacing:5.750413px;}
.wsd{word-spacing:5.913000px;}
.ws3b{word-spacing:5.989515px;}
.ws8b{word-spacing:6.049291px;}
.ws106{word-spacing:6.084000px;}
.ws10b{word-spacing:6.144000px;}
.ws105{word-spacing:6.204000px;}
.wsb3{word-spacing:6.228618px;}
.wse{word-spacing:6.291000px;}
.ws28{word-spacing:6.348169px;}
.wsa5{word-spacing:6.498820px;}
.ws5d{word-spacing:6.527496px;}
.wsbb{word-spacing:6.587271px;}
.ws62{word-spacing:6.636000px;}
.wsb8{word-spacing:6.647047px;}
.wsfd{word-spacing:6.706822px;}
.wsae{word-spacing:6.826374px;}
.wsb0{word-spacing:6.886149px;}
.ws32{word-spacing:6.945925px;}
.ws9{word-spacing:6.993000px;}
.wsd9{word-spacing:7.065476px;}
.ws45{word-spacing:7.125252px;}
.ws43{word-spacing:7.185027px;}
.wse5{word-spacing:7.364354px;}
.ws10c{word-spacing:7.524000px;}
.ws3d{word-spacing:7.543681px;}
.ws22{word-spacing:7.782783px;}
.ws96{word-spacing:7.842559px;}
.ws6{word-spacing:7.857000px;}
.ws95{word-spacing:7.902334px;}
.ws1e{word-spacing:7.962110px;}
.wsb2{word-spacing:8.021886px;}
.wsdd{word-spacing:8.081661px;}
.ws8{word-spacing:8.127000px;}
.ws3f{word-spacing:8.244000px;}
.wsb9{word-spacing:8.316000px;}
.ws104{word-spacing:8.380539px;}
.ws34{word-spacing:8.440315px;}
.ws47{word-spacing:8.559866px;}
.ws8e{word-spacing:8.679417px;}
.wsaf{word-spacing:8.739193px;}
.ws2c{word-spacing:8.798968px;}
.ws40{word-spacing:8.858744px;}
.wsd5{word-spacing:8.978295px;}
.ws10d{word-spacing:9.084000px;}
.ws98{word-spacing:9.097846px;}
.ws33{word-spacing:9.217398px;}
.wsad{word-spacing:9.320235px;}
.ws7e{word-spacing:9.336949px;}
.ws91{word-spacing:9.396724px;}
.wsc7{word-spacing:9.444000px;}
.ws103{word-spacing:9.516276px;}
.ws9c{word-spacing:9.635827px;}
.ws44{word-spacing:9.684000px;}
.ws2d{word-spacing:9.695602px;}
.ws2a{word-spacing:9.815154px;}
.ws4c{word-spacing:9.874929px;}
.ws52{word-spacing:9.888000px;}
.ws30{word-spacing:9.994480px;}
.wsf{word-spacing:10.017000px;}
.ws3c{word-spacing:10.224000px;}
.wsc8{word-spacing:10.233583px;}
.ws4a{word-spacing:10.353134px;}
.wsdc{word-spacing:10.412910px;}
.ws2e{word-spacing:11.010666px;}
.ws68{word-spacing:11.070441px;}
.wsf1{word-spacing:11.309544px;}
.ws6d{word-spacing:11.429095px;}
.ws6a{word-spacing:11.634000px;}
.ws1d{word-spacing:11.727973px;}
.ws17{word-spacing:11.787748px;}
.wse8{word-spacing:11.907300px;}
.wse6{word-spacing:11.919751px;}
.wsca{word-spacing:11.967075px;}
.ws4d{word-spacing:12.146402px;}
.ws49{word-spacing:12.325729px;}
.wsb1{word-spacing:12.564831px;}
.ws6c{word-spacing:12.696000px;}
.ws46{word-spacing:12.744158px;}
.ws97{word-spacing:12.803934px;}
.ws114{word-spacing:12.863709px;}
.ws1c{word-spacing:12.923485px;}
.wse1{word-spacing:13.102812px;}
.ws101{word-spacing:13.162587px;}
.ws112{word-spacing:13.282138px;}
.wsd1{word-spacing:13.640792px;}
.ws67{word-spacing:13.700568px;}
.ws99{word-spacing:13.820119px;}
.wsd4{word-spacing:13.879894px;}
.ws6b{word-spacing:14.178772px;}
.ws26{word-spacing:14.597202px;}
.ws25{word-spacing:14.611257px;}
.ws2f{word-spacing:14.776528px;}
.ws27{word-spacing:14.955855px;}
.ws115{word-spacing:14.964000px;}
.ws48{word-spacing:15.075406px;}
.wsc2{word-spacing:15.135182px;}
.wse0{word-spacing:15.156000px;}
.ws100{word-spacing:15.254733px;}
.ws70{word-spacing:15.613387px;}
.ws6f{word-spacing:15.673162px;}
.wsa8{word-spacing:15.685157px;}
.wsd8{word-spacing:15.972040px;}
.wsda{word-spacing:16.091592px;}
.ws69{word-spacing:16.356000px;}
.ws1b{word-spacing:16.629572px;}
.wsfc{word-spacing:16.868674px;}
.ws14{word-spacing:16.950000px;}
.wsf2{word-spacing:16.988226px;}
.wsab{word-spacing:17.358878px;}
.ws113{word-spacing:18.024000px;}
.wsc1{word-spacing:18.123962px;}
.wsf9{word-spacing:18.602213px;}
.ws71{word-spacing:19.536000px;}
.ws83{word-spacing:19.609773px;}
.wsdb{word-spacing:19.616068px;}
.wsc0{word-spacing:19.917230px;}
.wsd0{word-spacing:20.275884px;}
.wsa1{word-spacing:20.419396px;}
.ws16{word-spacing:20.958000px;}
.ws2b{word-spacing:21.710498px;}
.ws86{word-spacing:22.167389px;}
.wsbd{word-spacing:22.965786px;}
.ws2{word-spacing:23.400000px;}
.wsa4{word-spacing:23.671197px;}
.wsf6{word-spacing:26.432770px;}
.ws1{word-spacing:29.070000px;}
.ws0{word-spacing:30.702000px;}
.wseb{word-spacing:31.836000px;}
.ws8c{word-spacing:33.697773px;}
.ws8d{word-spacing:33.759389px;}
.wse7{word-spacing:34.035065px;}
.ws5c{word-spacing:60.445087px;}
.ws72{word-spacing:80.160000px;}
.ws7a{word-spacing:197.787600px;}
.ws73{word-spacing:197.798400px;}
.ws78{word-spacing:197.803200px;}
.ws7b{word-spacing:197.808000px;}
.ws76{word-spacing:268.075200px;}
.ws77{word-spacing:276.836400px;}
.ws79{word-spacing:383.947200px;}
._22{margin-left:-27.907063px;}
._1d{margin-left:-26.896800px;}
._2{margin-left:-8.058000px;}
._6{margin-left:-6.210000px;}
._4{margin-left:-5.083440px;}
._7{margin-left:-4.054950px;}
._0{margin-left:-2.652000px;}
._3{margin-left:-1.438560px;}
._5{width:1.408800px;}
._1{width:2.652000px;}
._1a{width:4.039615px;}
._1b{width:6.778950px;}
._f{width:17.662135px;}
._a{width:19.090290px;}
._e{width:20.943334px;}
._8{width:22.676826px;}
._19{width:24.230992px;}
._b{width:26.442689px;}
._12{width:28.224000px;}
._9{width:29.345623px;}
._18{width:30.920275px;}
._c{width:32.420249px;}
._13{width:34.214640px;}
._11{width:36.318000px;}
._17{width:40.464000px;}
._d{width:47.208000px;}
._1e{width:71.712000px;}
._10{width:78.088807px;}
._1f{width:178.377600px;}
._20{width:285.544800px;}
._21{width:348.436800px;}
._1c{width:479.568000px;}
._15{width:485.370960px;}
._16{width:490.224000px;}
._14{width:495.168000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.600000px;}
.fsa{font-size:41.999400px;}
.fs3{font-size:46.200000px;}
.fsc{font-size:47.820600px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.775600px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:283.819500px;}
.y7e{bottom:326.338500px;}
.ya8{bottom:327.939000px;}
.y60{bottom:329.244000px;}
.y1c{bottom:337.606500px;}
.yd8{bottom:339.676500px;}
.y7d{bottom:344.338500px;}
.yb2{bottom:344.716500px;}
.ya7{bottom:345.939000px;}
.y5f{bottom:347.244000px;}
.yf3{bottom:347.796000px;}
.yf0{bottom:355.206000px;}
.y1b{bottom:355.606500px;}
.y47{bottom:355.957500px;}
.yd7{bottom:357.676500px;}
.y7c{bottom:362.338500px;}
.yb1{bottom:362.716500px;}
.y115{bottom:363.235500px;}
.ya6{bottom:363.939000px;}
.yef{bottom:365.494500px;}
.y5e{bottom:366.739500px;}
.y134{bottom:366.844500px;}
.y1a{bottom:373.606500px;}
.y46{bottom:373.957500px;}
.y9d{bottom:374.211000px;}
.yd6{bottom:375.676500px;}
.yf2{bottom:379.744500px;}
.y7b{bottom:380.338500px;}
.yb0{bottom:380.716500px;}
.y114{bottom:381.235500px;}
.ya5{bottom:381.939000px;}
.y5d{bottom:383.244000px;}
.yf1{bottom:384.244500px;}
.y133{bottom:384.844500px;}
.y117{bottom:387.676500px;}
.y45{bottom:391.957500px;}
.yd5{bottom:393.676500px;}
.y7a{bottom:398.338500px;}
.yaf{bottom:398.716500px;}
.y113{bottom:399.235500px;}
.ya4{bottom:399.939000px;}
.y5c{bottom:401.244000px;}
.y116{bottom:401.872500px;}
.y19{bottom:405.055500px;}
.y44{bottom:409.957500px;}
.y9c{bottom:410.167500px;}
.yd4{bottom:411.676500px;}
.yee{bottom:412.599000px;}
.yae{bottom:416.716500px;}
.y112{bottom:417.235500px;}
.y132{bottom:417.787500px;}
.ya3{bottom:417.939000px;}
.y5b{bottom:420.739500px;}
.y79{bottom:425.305500px;}
.y43{bottom:427.957500px;}
.y9b{bottom:428.167500px;}
.yd3{bottom:429.676500px;}
.y111{bottom:435.235500px;}
.y131{bottom:435.787500px;}
.ya2{bottom:435.939000px;}
.y5a{bottom:437.244000px;}
.yed{bottom:444.048000px;}
.y42{bottom:445.957500px;}
.y9a{bottom:446.167500px;}
.yd2{bottom:447.676500px;}
.y110{bottom:453.235500px;}
.y59{bottom:455.244000px;}
.yad{bottom:456.402000px;}
.y78{bottom:461.257500px;}
.y41{bottom:463.957500px;}
.y99{bottom:464.167500px;}
.y130{bottom:468.732000px;}
.yac{bottom:470.598000px;}
.y10f{bottom:471.235500px;}
.y58{bottom:474.739500px;}
.ya1{bottom:475.623000px;}
.yd1{bottom:479.125500px;}
.y77{bottom:479.257500px;}
.y40{bottom:481.957500px;}
.y98{bottom:482.167500px;}
.y18{bottom:482.854500px;}
.yab{bottom:484.795500px;}
.yec{bottom:485.980500px;}
.y12f{bottom:486.732000px;}
.ya0{bottom:489.820500px;}
.y17{bottom:497.104500px;}
.y76{bottom:497.257500px;}
.y3f{bottom:499.957500px;}
.y57{bottom:500.211000px;}
.y10e{bottom:502.686000px;}
.yd0{bottom:503.125500px;}
.yeb{bottom:503.980500px;}
.y97{bottom:509.133000px;}
.y75{bottom:515.257500px;}
.y3e{bottom:517.957500px;}
.y56{bottom:518.211000px;}
.y12e{bottom:519.676500px;}
.yea{bottom:521.980500px;}
.y16{bottom:526.297500px;}
.y3d{bottom:535.957500px;}
.y55{bottom:536.211000px;}
.y12d{bottom:537.676500px;}
.ye9{bottom:539.980500px;}
.y74{bottom:542.223000px;}
.y15{bottom:542.797500px;}
.y10d{bottom:544.618500px;}
.ycf{bottom:545.058000px;}
.y96{bottom:545.089500px;}
.y54{bottom:554.211000px;}
.ye8{bottom:557.980500px;}
.y14{bottom:559.297500px;}
.y10c{bottom:562.618500px;}
.yce{bottom:563.058000px;}
.y95{bottom:563.089500px;}
.y3c{bottom:567.406500px;}
.y12c{bottom:570.619500px;}
.y53{bottom:572.211000px;}
.y13{bottom:575.797500px;}
.ye7{bottom:575.980500px;}
.y73{bottom:578.175000px;}
.y10b{bottom:580.618500px;}
.ycd{bottom:581.058000px;}
.y94{bottom:581.089500px;}
.y12b{bottom:588.619500px;}
.y52{bottom:590.211000px;}
.y3b{bottom:591.406500px;}
.y12{bottom:592.297500px;}
.ye6{bottom:593.980500px;}
.y72{bottom:596.175000px;}
.ycc{bottom:599.058000px;}
.y93{bottom:599.089500px;}
.y10a{bottom:599.224500px;}
.y51{bottom:608.211000px;}
.y11{bottom:608.797500px;}
.y109{bottom:609.513000px;}
.ye5{bottom:611.980500px;}
.y71{bottom:614.175000px;}
.ycb{bottom:617.058000px;}
.y92{bottom:617.089500px;}
.y12a{bottom:621.564000px;}
.y10{bottom:625.297500px;}
.y50{bottom:626.211000px;}
.ye4{bottom:629.980500px;}
.y3a{bottom:633.339000px;}
.y108{bottom:634.311000px;}
.yca{bottom:635.058000px;}
.y91{bottom:635.089500px;}
.y129{bottom:639.564000px;}
.yf{bottom:641.797500px;}
.y70{bottom:645.624000px;}
.ye3{bottom:647.980500px;}
.y39{bottom:651.339000px;}
.yc9{bottom:653.058000px;}
.y90{bottom:653.089500px;}
.ye{bottom:658.297500px;}
.y107{bottom:664.116000px;}
.y4f{bottom:665.041500px;}
.ye2{bottom:665.980500px;}
.y38{bottom:669.339000px;}
.yc8{bottom:671.058000px;}
.y128{bottom:672.507000px;}
.y106{bottom:674.404500px;}
.yd{bottom:674.797500px;}
.y4e{bottom:676.411500px;}
.y8f{bottom:680.055000px;}
.y6f{bottom:684.576000px;}
.y37{bottom:687.339000px;}
.y127{bottom:690.507000px;}
.yc{bottom:691.297500px;}
.yc7{bottom:698.025000px;}
.y6e{bottom:702.576000px;}
.y36{bottom:705.339000px;}
.yb{bottom:707.797500px;}
.y8e{bottom:716.011500px;}
.yc6{bottom:716.025000px;}
.y105{bottom:718.923000px;}
.y6d{bottom:720.576000px;}
.y126{bottom:721.957500px;}
.y35{bottom:723.339000px;}
.y4d{bottom:723.988500px;}
.ya{bottom:724.297500px;}
.y8d{bottom:734.011500px;}
.ye1{bottom:734.019000px;}
.yc5{bottom:735.519000px;}
.y104{bottom:736.923000px;}
.y9{bottom:740.797500px;}
.y34{bottom:741.339000px;}
.y4c{bottom:741.988500px;}
.ye0{bottom:748.267500px;}
.y8c{bottom:752.011500px;}
.yc4{bottom:752.025000px;}
.y103{bottom:754.923000px;}
.y33{bottom:759.339000px;}
.y4b{bottom:759.988500px;}
.y8{bottom:761.781000px;}
.y125{bottom:763.890000px;}
.ydf{bottom:766.044000px;}
.y8b{bottom:770.011500px;}
.yc3{bottom:770.025000px;}
.y102{bottom:772.923000px;}
.y32{bottom:777.339000px;}
.y4a{bottom:777.988500px;}
.y124{bottom:781.890000px;}
.yaa{bottom:783.300000px;}
.yde{bottom:784.119000px;}
.y6c{bottom:785.632500px;}
.yc2{bottom:789.519000px;}
.y101{bottom:790.923000px;}
.y31{bottom:795.339000px;}
.y49{bottom:795.988500px;}
.ya9{bottom:797.497500px;}
.y6b{bottom:799.882500px;}
.y123{bottom:799.890000px;}
.y8a{bottom:801.460500px;}
.ydd{bottom:805.872000px;}
.y30{bottom:813.339000px;}
.y6a{bottom:814.132500px;}
.y7{bottom:814.147500px;}
.yc1{bottom:814.990500px;}
.y100{bottom:817.890000px;}
.y48{bottom:827.439000px;}
.y69{bottom:828.382500px;}
.y2f{bottom:831.339000px;}
.y9f{bottom:831.564000px;}
.yc0{bottom:832.990500px;}
.yff{bottom:835.890000px;}
.ydc{bottom:838.809000px;}
.y89{bottom:840.417000px;}
.y68{bottom:842.632500px;}
.y9e{bottom:845.760000px;}
.y2e{bottom:849.339000px;}
.ybf{bottom:850.990500px;}
.ydb{bottom:853.059000px;}
.y122{bottom:853.890000px;}
.yfe{bottom:855.384000px;}
.y88{bottom:858.417000px;}
.y67{bottom:864.385500px;}
.yda{bottom:867.309000px;}
.y2d{bottom:867.339000px;}
.ybe{bottom:868.990500px;}
.y6{bottom:870.262500px;}
.yfd{bottom:871.890000px;}
.y87{bottom:876.417000px;}
.yd9{bottom:881.559000px;}
.y2c{bottom:885.339000px;}
.ybd{bottom:886.990500px;}
.yfc{bottom:889.890000px;}
.y86{bottom:894.417000px;}
.y5{bottom:896.500500px;}
.y66{bottom:897.324000px;}
.y2b{bottom:903.339000px;}
.ybc{bottom:904.990500px;}
.y121{bottom:907.890000px;}
.yfb{bottom:909.384000px;}
.y65{bottom:911.574000px;}
.y85{bottom:912.417000px;}
.y4{bottom:921.223500px;}
.y2a{bottom:921.339000px;}
.ybb{bottom:922.990500px;}
.yfa{bottom:925.890000px;}
.y84{bottom:930.417000px;}
.y29{bottom:939.339000px;}
.yf9{bottom:943.890000px;}
.y64{bottom:948.373500px;}
.y83{bottom:948.417000px;}
.yba{bottom:954.441000px;}
.y28{bottom:957.339000px;}
.y120{bottom:961.890000px;}
.yf8{bottom:963.384000px;}
.y63{bottom:966.373500px;}
.y82{bottom:966.417000px;}
.y3{bottom:972.861000px;}
.y27{bottom:975.339000px;}
.yb9{bottom:978.441000px;}
.y11f{bottom:979.890000px;}
.y81{bottom:984.417000px;}
.yf7{bottom:988.855500px;}
.y26{bottom:993.339000px;}
.y11e{bottom:997.890000px;}
.y80{bottom:1002.417000px;}
.y2{bottom:1006.611000px;}
.yf6{bottom:1006.855500px;}
.y25{bottom:1011.339000px;}
.y11d{bottom:1015.890000px;}
.y138{bottom:1017.451500px;}
.yb8{bottom:1020.373500px;}
.yf5{bottom:1024.855500px;}
.y24{bottom:1029.339000px;}
.y7f{bottom:1029.384000px;}
.y11c{bottom:1033.890000px;}
.y137{bottom:1035.451500px;}
.yb7{bottom:1038.373500px;}
.y1{bottom:1040.361000px;}
.yf4{bottom:1042.855500px;}
.y23{bottom:1047.339000px;}
.y62{bottom:1048.834500px;}
.y11b{bottom:1051.890000px;}
.yb6{bottom:1056.373500px;}
.y22{bottom:1065.339000px;}
.y136{bottom:1068.396000px;}
.y11a{bottom:1069.890000px;}
.yb5{bottom:1074.373500px;}
.y21{bottom:1083.339000px;}
.y135{bottom:1086.396000px;}
.y119{bottom:1087.890000px;}
.yb4{bottom:1092.373500px;}
.y20{bottom:1101.339000px;}
.y61{bottom:1102.834500px;}
.y118{bottom:1105.890000px;}
.yb3{bottom:1110.373500px;}
.y1f{bottom:1119.339000px;}
.y1e{bottom:1137.339000px;}
.h19{height:2.400000px;}
.h18{height:27.845602px;}
.h1a{height:31.499550px;}
.h13{height:33.648000px;}
.h4{height:34.650000px;}
.h11{height:35.865450px;}
.h8{height:36.000000px;}
.h6{height:37.800000px;}
.he{height:39.018000px;}
.h12{height:39.024000px;}
.h14{height:39.315600px;}
.h16{height:39.321600px;}
.h7{height:40.500000px;}
.ha{height:44.831700px;}
.hb{height:45.000000px;}
.h5{height:49.500000px;}
.h1d{height:53.273550px;}
.h10{height:54.000000px;}
.h15{height:55.248000px;}
.hd{height:56.585550px;}
.h9{height:63.000000px;}
.h3{height:63.924000px;}
.hf{height:65.940000px;}
.h2{height:72.114000px;}
.h17{height:85.421700px;}
.h1b{height:85.590000px;}
.h1c{height:86.154000px;}
.hc{height:132.954000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:150.106500px;}
.x23{left:157.578000px;}
.x11{left:165.078000px;}
.x2{left:168.039000px;}
.xe{left:172.522500px;}
.x24{left:180.825000px;}
.x8{left:185.971500px;}
.x1{left:195.135000px;}
.x12{left:201.864000px;}
.xb{left:209.308500px;}
.xc{left:210.517500px;}
.x6{left:214.159500px;}
.x22{left:217.609500px;}
.x13{left:234.855000px;}
.x15{left:239.110500px;}
.x14{left:243.822000px;}
.x16{left:248.077500px;}
.xf{left:254.383500px;}
.x10{left:335.821500px;}
.x3{left:341.295000px;}
.x5{left:343.479000px;}
.x4{left:364.357500px;}
.x1c{left:390.658500px;}
.x7{left:397.509000px;}
.x17{left:417.820500px;}
.x21{left:420.592500px;}
.x1d{left:422.896500px;}
.xa{left:424.327500px;}
.x19{left:431.118000px;}
.x1a{left:432.235500px;}
.x18{left:438.243000px;}
.x1b{left:455.284500px;}
.x20{left:457.377000px;}
.xd{left:461.113500px;}
.x1e{left:468.094500px;}
.x1f{left:501.739500px;}
@media print{
.v2{vertical-align:-21.290667pt;}
.v4{vertical-align:-9.445333pt;}
.v7{vertical-align:-8.000000pt;}
.v8{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:15.061333pt;}
.vc{vertical-align:19.354667pt;}
.v6{vertical-align:22.298667pt;}
.v1{vertical-align:23.221333pt;}
.v9{vertical-align:26.613333pt;}
.v5{vertical-align:36.373333pt;}
.vb{vertical-align:47.146667pt;}
.v3{vertical-align:91.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.001067pt;}
.ls19{letter-spacing:0.002133pt;}
.ls20{letter-spacing:0.002773pt;}
.ls2a{letter-spacing:0.002906pt;}
.ls8{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.005333pt;}
.lsa{letter-spacing:1.392000pt;}
.ls24{letter-spacing:2.654082pt;}
.ls28{letter-spacing:2.655164pt;}
.ls5{letter-spacing:2.657370pt;}
.ls29{letter-spacing:2.659416pt;}
.ls3e{letter-spacing:2.662704pt;}
.ls2c{letter-spacing:7.402667pt;}
.ls23{letter-spacing:7.408000pt;}
.ls1b{letter-spacing:7.549867pt;}
.ls1f{letter-spacing:7.558400pt;}
.ls31{letter-spacing:8.890667pt;}
.ls1d{letter-spacing:10.072533pt;}
.ls1e{letter-spacing:10.075733pt;}
.ls27{letter-spacing:11.850667pt;}
.ls42{letter-spacing:12.543508pt;}
.ls41{letter-spacing:12.548100pt;}
.ls18{letter-spacing:12.595200pt;}
.ls22{letter-spacing:12.954667pt;}
.ls40{letter-spacing:13.679684pt;}
.ls17{letter-spacing:13.730133pt;}
.ls26{letter-spacing:14.505830pt;}
.ls35{letter-spacing:14.810667pt;}
.ls25{letter-spacing:14.811145pt;}
.ls2f{letter-spacing:14.816000pt;}
.ls14{letter-spacing:15.106133pt;}
.ls16{letter-spacing:15.112533pt;}
.lse{letter-spacing:15.249420pt;}
.ls3f{letter-spacing:15.344000pt;}
.ls37{letter-spacing:15.509333pt;}
.ls15{letter-spacing:16.247467pt;}
.ls39{letter-spacing:16.496000pt;}
.ls4{letter-spacing:16.730667pt;}
.ls13{letter-spacing:16.896570pt;}
.ls12{letter-spacing:17.066667pt;}
.ls36{letter-spacing:17.189333pt;}
.ls3d{letter-spacing:17.280000pt;}
.ls30{letter-spacing:17.466667pt;}
.ls33{letter-spacing:17.473370pt;}
.ls38{letter-spacing:17.746711pt;}
.ls1a{letter-spacing:17.763413pt;}
.lsd{letter-spacing:18.012381pt;}
.ls10{letter-spacing:18.117333pt;}
.ls3b{letter-spacing:18.858667pt;}
.ls3c{letter-spacing:18.960000pt;}
.ls3a{letter-spacing:20.538667pt;}
.ls2d{letter-spacing:20.832000pt;}
.ls32{letter-spacing:21.189812pt;}
.lsb{letter-spacing:21.731751pt;}
.lsc{letter-spacing:21.784885pt;}
.lsf{letter-spacing:23.850667pt;}
.ls2b{letter-spacing:24.005333pt;}
.ls11{letter-spacing:25.408000pt;}
.ls6{letter-spacing:26.565333pt;}
.ls2e{letter-spacing:27.632000pt;}
.ls21{letter-spacing:34.469333pt;}
.ls2{letter-spacing:53.130667pt;}
.ls7{letter-spacing:65.291733pt;}
.ls34{letter-spacing:69.739145pt;}
.ls3{letter-spacing:203.845333pt;}
.ls9{letter-spacing:413.780267pt;}
.ws55{word-spacing:-53.333333pt;}
.ws74{word-spacing:-45.333333pt;}
.wsce{word-spacing:-35.891200pt;}
.ws5a{word-spacing:-34.741333pt;}
.ws75{word-spacing:-29.632000pt;}
.wsbf{word-spacing:-23.333333pt;}
.wsf0{word-spacing:-19.733333pt;}
.ws5{word-spacing:-16.297600pt;}
.ws56{word-spacing:-14.760588pt;}
.ws10a{word-spacing:-13.632000pt;}
.wscd{word-spacing:-12.590933pt;}
.wsc5{word-spacing:-2.805468pt;}
.wscc{word-spacing:-2.646067pt;}
.ws29{word-spacing:-2.592933pt;}
.ws84{word-spacing:-2.274129pt;}
.ws82{word-spacing:-2.261283pt;}
.wsfe{word-spacing:-2.220996pt;}
.ws92{word-spacing:-2.167862pt;}
.wsff{word-spacing:-2.114728pt;}
.ws35{word-spacing:-2.061594pt;}
.wsc6{word-spacing:-2.008460pt;}
.wsd2{word-spacing:-1.796713pt;}
.wsd3{word-spacing:-1.795925pt;}
.ws10{word-spacing:-1.656000pt;}
.ws4b{word-spacing:-1.636523pt;}
.wsd7{word-spacing:-1.477121pt;}
.ws42{word-spacing:-1.423988pt;}
.ws9a{word-spacing:-1.264586pt;}
.wsf5{word-spacing:-0.733247pt;}
.wsa9{word-spacing:-0.429323pt;}
.wsf7{word-spacing:-0.361310pt;}
.wsb5{word-spacing:-0.308176pt;}
.ws94{word-spacing:-0.255043pt;}
.ws9f{word-spacing:-0.201909pt;}
.wsbe{word-spacing:-0.148775pt;}
.ws7d{word-spacing:-0.095641pt;}
.ws54{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.041067pt;}
.ws5b{word-spacing:-0.037333pt;}
.wscf{word-spacing:-0.029867pt;}
.wsfb{word-spacing:-0.004251pt;}
.ws1a{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.010627pt;}
.ws60{word-spacing:0.032000pt;}
.ws53{word-spacing:0.050859pt;}
.ws58{word-spacing:0.063761pt;}
.ws5e{word-spacing:0.116895pt;}
.ws7c{word-spacing:0.276296pt;}
.ws5f{word-spacing:0.329430pt;}
.ws3a{word-spacing:0.382564pt;}
.wsc3{word-spacing:0.435698pt;}
.ws1f{word-spacing:0.541965pt;}
.wsc{word-spacing:0.552000pt;}
.wsf8{word-spacing:0.586345pt;}
.wsa7{word-spacing:0.595099pt;}
.ws10e{word-spacing:0.629544pt;}
.ws110{word-spacing:0.648233pt;}
.wse4{word-spacing:0.701367pt;}
.ws109{word-spacing:0.860769pt;}
.wsac{word-spacing:0.888400pt;}
.ws8a{word-spacing:0.967036pt;}
.wsea{word-spacing:1.020170pt;}
.ws64{word-spacing:1.232706pt;}
.ws111{word-spacing:1.248000pt;}
.ws24{word-spacing:1.285840pt;}
.ws116{word-spacing:1.333630pt;}
.ws38{word-spacing:1.338973pt;}
.ws36{word-spacing:1.392107pt;}
.ws39{word-spacing:1.445241pt;}
.ws93{word-spacing:1.498375pt;}
.ws66{word-spacing:1.498667pt;}
.ws81{word-spacing:1.551509pt;}
.wsb4{word-spacing:1.657777pt;}
.wsd6{word-spacing:1.710911pt;}
.wsee{word-spacing:1.764044pt;}
.wsfa{word-spacing:1.823559pt;}
.ws9d{word-spacing:1.870312pt;}
.wsb7{word-spacing:1.923446pt;}
.ws59{word-spacing:2.135981pt;}
.ws57{word-spacing:2.159627pt;}
.wsb6{word-spacing:2.218667pt;}
.wscb{word-spacing:2.295383pt;}
.wsbc{word-spacing:2.348517pt;}
.ws88{word-spacing:2.401651pt;}
.ws23{word-spacing:2.454785pt;}
.wsa3{word-spacing:2.503674pt;}
.ws107{word-spacing:2.507919pt;}
.ws15{word-spacing:2.513067pt;}
.wsaa{word-spacing:2.546181pt;}
.ws80{word-spacing:2.561052pt;}
.ws41{word-spacing:2.667320pt;}
.ws13{word-spacing:2.712000pt;}
.wse3{word-spacing:2.720454pt;}
.wsed{word-spacing:2.773588pt;}
.ws20{word-spacing:2.932989pt;}
.wsec{word-spacing:2.944608pt;}
.wse9{word-spacing:2.955287pt;}
.ws89{word-spacing:2.986123pt;}
.wsef{word-spacing:3.039257pt;}
.ws11{word-spacing:3.048000pt;}
.ws31{word-spacing:3.092391pt;}
.wsc4{word-spacing:3.114667pt;}
.wse2{word-spacing:3.125333pt;}
.wsa2{word-spacing:3.226296pt;}
.ws4{word-spacing:3.238400pt;}
.ws12{word-spacing:3.240000pt;}
.ws9b{word-spacing:3.251793pt;}
.ws50{word-spacing:3.304927pt;}
.ws10f{word-spacing:3.328000pt;}
.wsa{word-spacing:3.336000pt;}
.ws9e{word-spacing:3.358060pt;}
.ws102{word-spacing:3.411194pt;}
.ws51{word-spacing:3.464328pt;}
.ws90{word-spacing:3.623730pt;}
.wsc9{word-spacing:3.676864pt;}
.ws61{word-spacing:3.729997pt;}
.ws18{word-spacing:3.783131pt;}
.ws6e{word-spacing:3.836265pt;}
.ws117{word-spacing:3.968000pt;}
.ws7f{word-spacing:4.000000pt;}
.wsba{word-spacing:4.101935pt;}
.ws7{word-spacing:4.104000pt;}
.wsa6{word-spacing:4.155068pt;}
.wsb{word-spacing:4.200000pt;}
.wsa0{word-spacing:4.208202pt;}
.ws85{word-spacing:4.304608pt;}
.ws87{word-spacing:4.314470pt;}
.ws65{word-spacing:4.352000pt;}
.ws8f{word-spacing:4.367604pt;}
.wsf3{word-spacing:4.420738pt;}
.ws19{word-spacing:4.473872pt;}
.ws4e{word-spacing:4.633273pt;}
.ws37{word-spacing:4.666667pt;}
.wsdf{word-spacing:4.792675pt;}
.ws21{word-spacing:4.845809pt;}
.ws3e{word-spacing:4.952076pt;}
.wsf4{word-spacing:5.005210pt;}
.ws108{word-spacing:5.034667pt;}
.wsde{word-spacing:5.098667pt;}
.ws63{word-spacing:5.111478pt;}
.wsd{word-spacing:5.256000pt;}
.ws3b{word-spacing:5.324013pt;}
.ws8b{word-spacing:5.377147pt;}
.ws106{word-spacing:5.408000pt;}
.ws10b{word-spacing:5.461333pt;}
.ws105{word-spacing:5.514667pt;}
.wsb3{word-spacing:5.536549pt;}
.wse{word-spacing:5.592000pt;}
.ws28{word-spacing:5.642817pt;}
.wsa5{word-spacing:5.776728pt;}
.ws5d{word-spacing:5.802218pt;}
.wsbb{word-spacing:5.855352pt;}
.ws62{word-spacing:5.898667pt;}
.wsb8{word-spacing:5.908486pt;}
.wsfd{word-spacing:5.961620pt;}
.wsae{word-spacing:6.067888pt;}
.wsb0{word-spacing:6.121021pt;}
.ws32{word-spacing:6.174155pt;}
.ws9{word-spacing:6.216000pt;}
.wsd9{word-spacing:6.280423pt;}
.ws45{word-spacing:6.333557pt;}
.ws43{word-spacing:6.386691pt;}
.wse5{word-spacing:6.546092pt;}
.ws10c{word-spacing:6.688000pt;}
.ws3d{word-spacing:6.705494pt;}
.ws22{word-spacing:6.918029pt;}
.ws96{word-spacing:6.971163pt;}
.ws6{word-spacing:6.984000pt;}
.ws95{word-spacing:7.024297pt;}
.ws1e{word-spacing:7.077431pt;}
.wsb2{word-spacing:7.130565pt;}
.wsdd{word-spacing:7.183699pt;}
.ws8{word-spacing:7.224000pt;}
.ws3f{word-spacing:7.328000pt;}
.wsb9{word-spacing:7.392000pt;}
.ws104{word-spacing:7.449368pt;}
.ws34{word-spacing:7.502502pt;}
.ws47{word-spacing:7.608770pt;}
.ws8e{word-spacing:7.715037pt;}
.wsaf{word-spacing:7.768171pt;}
.ws2c{word-spacing:7.821305pt;}
.ws40{word-spacing:7.874439pt;}
.wsd5{word-spacing:7.980707pt;}
.ws10d{word-spacing:8.074667pt;}
.ws98{word-spacing:8.086975pt;}
.ws33{word-spacing:8.193242pt;}
.wsad{word-spacing:8.284653pt;}
.ws7e{word-spacing:8.299510pt;}
.ws91{word-spacing:8.352644pt;}
.wsc7{word-spacing:8.394667pt;}
.ws103{word-spacing:8.458912pt;}
.ws9c{word-spacing:8.565179pt;}
.ws44{word-spacing:8.608000pt;}
.ws2d{word-spacing:8.618313pt;}
.ws2a{word-spacing:8.724581pt;}
.ws4c{word-spacing:8.777715pt;}
.ws52{word-spacing:8.789333pt;}
.ws30{word-spacing:8.883983pt;}
.wsf{word-spacing:8.904000pt;}
.ws3c{word-spacing:9.088000pt;}
.wsc8{word-spacing:9.096518pt;}
.ws4a{word-spacing:9.202786pt;}
.wsdc{word-spacing:9.255920pt;}
.ws2e{word-spacing:9.787258pt;}
.ws68{word-spacing:9.840392pt;}
.wsf1{word-spacing:10.052928pt;}
.ws6d{word-spacing:10.159195pt;}
.ws6a{word-spacing:10.341333pt;}
.ws1d{word-spacing:10.424865pt;}
.ws17{word-spacing:10.477999pt;}
.wse8{word-spacing:10.584266pt;}
.wse6{word-spacing:10.595335pt;}
.wsca{word-spacing:10.637400pt;}
.ws4d{word-spacing:10.796802pt;}
.ws49{word-spacing:10.956203pt;}
.wsb1{word-spacing:11.168739pt;}
.ws6c{word-spacing:11.285333pt;}
.ws46{word-spacing:11.328140pt;}
.ws97{word-spacing:11.381274pt;}
.ws114{word-spacing:11.434408pt;}
.ws1c{word-spacing:11.487542pt;}
.wse1{word-spacing:11.646944pt;}
.ws101{word-spacing:11.700077pt;}
.ws112{word-spacing:11.806345pt;}
.wsd1{word-spacing:12.125148pt;}
.ws67{word-spacing:12.178282pt;}
.ws99{word-spacing:12.284550pt;}
.wsd4{word-spacing:12.337684pt;}
.ws6b{word-spacing:12.603353pt;}
.ws26{word-spacing:12.975290pt;}
.ws25{word-spacing:12.987784pt;}
.ws2f{word-spacing:13.134692pt;}
.ws27{word-spacing:13.294093pt;}
.ws115{word-spacing:13.301333pt;}
.ws48{word-spacing:13.400361pt;}
.wsc2{word-spacing:13.453495pt;}
.wse0{word-spacing:13.472000pt;}
.ws100{word-spacing:13.559763pt;}
.ws70{word-spacing:13.878566pt;}
.ws6f{word-spacing:13.931700pt;}
.wsa8{word-spacing:13.942362pt;}
.wsd8{word-spacing:14.197369pt;}
.wsda{word-spacing:14.303637pt;}
.ws69{word-spacing:14.538667pt;}
.ws1b{word-spacing:14.781842pt;}
.wsfc{word-spacing:14.994377pt;}
.ws14{word-spacing:15.066667pt;}
.wsf2{word-spacing:15.100645pt;}
.wsab{word-spacing:15.430114pt;}
.ws113{word-spacing:16.021333pt;}
.wsc1{word-spacing:16.110188pt;}
.wsf9{word-spacing:16.535301pt;}
.ws71{word-spacing:17.365333pt;}
.ws83{word-spacing:17.430910pt;}
.wsdb{word-spacing:17.436505pt;}
.wsc0{word-spacing:17.704204pt;}
.wsd0{word-spacing:18.023008pt;}
.wsa1{word-spacing:18.150574pt;}
.ws16{word-spacing:18.629333pt;}
.ws2b{word-spacing:19.298220pt;}
.ws86{word-spacing:19.704345pt;}
.wsbd{word-spacing:20.414032pt;}
.ws2{word-spacing:20.800000pt;}
.wsa4{word-spacing:21.041064pt;}
.wsf6{word-spacing:23.495796pt;}
.ws1{word-spacing:25.840000pt;}
.ws0{word-spacing:27.290667pt;}
.wseb{word-spacing:28.298667pt;}
.ws8c{word-spacing:29.953576pt;}
.ws8d{word-spacing:30.008345pt;}
.wse7{word-spacing:30.253392pt;}
.ws5c{word-spacing:53.728966pt;}
.ws72{word-spacing:71.253333pt;}
.ws7a{word-spacing:175.811200pt;}
.ws73{word-spacing:175.820800pt;}
.ws78{word-spacing:175.825067pt;}
.ws7b{word-spacing:175.829333pt;}
.ws76{word-spacing:238.289067pt;}
.ws77{word-spacing:246.076800pt;}
.ws79{word-spacing:341.286400pt;}
._22{margin-left:-24.806278pt;}
._1d{margin-left:-23.908267pt;}
._2{margin-left:-7.162667pt;}
._6{margin-left:-5.520000pt;}
._4{margin-left:-4.518613pt;}
._7{margin-left:-3.604400pt;}
._0{margin-left:-2.357333pt;}
._3{margin-left:-1.278720pt;}
._5{width:1.252267pt;}
._1{width:2.357333pt;}
._1a{width:3.590769pt;}
._1b{width:6.025733pt;}
._f{width:15.699676pt;}
._a{width:16.969147pt;}
._e{width:18.616297pt;}
._8{width:20.157179pt;}
._19{width:21.538659pt;}
._b{width:23.504612pt;}
._12{width:25.088000pt;}
._9{width:26.084998pt;}
._18{width:27.484689pt;}
._c{width:28.817999pt;}
._13{width:30.413013pt;}
._11{width:32.282667pt;}
._17{width:35.968000pt;}
._d{width:41.962667pt;}
._1e{width:63.744000pt;}
._10{width:69.412273pt;}
._1f{width:158.557867pt;}
._20{width:253.817600pt;}
._21{width:309.721600pt;}
._1c{width:426.282667pt;}
._15{width:431.440853pt;}
._16{width:435.754667pt;}
._14{width:440.149333pt;}
.fsb{font-size:29.866667pt;}
.fsa{font-size:37.332800pt;}
.fs3{font-size:41.066667pt;}
.fsc{font-size:42.507200pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.133867pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:252.284000pt;}
.y7e{bottom:290.078667pt;}
.ya8{bottom:291.501333pt;}
.y60{bottom:292.661333pt;}
.y1c{bottom:300.094667pt;}
.yd8{bottom:301.934667pt;}
.y7d{bottom:306.078667pt;}
.yb2{bottom:306.414667pt;}
.ya7{bottom:307.501333pt;}
.y5f{bottom:308.661333pt;}
.yf3{bottom:309.152000pt;}
.yf0{bottom:315.738667pt;}
.y1b{bottom:316.094667pt;}
.y47{bottom:316.406667pt;}
.yd7{bottom:317.934667pt;}
.y7c{bottom:322.078667pt;}
.yb1{bottom:322.414667pt;}
.y115{bottom:322.876000pt;}
.ya6{bottom:323.501333pt;}
.yef{bottom:324.884000pt;}
.y5e{bottom:325.990667pt;}
.y134{bottom:326.084000pt;}
.y1a{bottom:332.094667pt;}
.y46{bottom:332.406667pt;}
.y9d{bottom:332.632000pt;}
.yd6{bottom:333.934667pt;}
.yf2{bottom:337.550667pt;}
.y7b{bottom:338.078667pt;}
.yb0{bottom:338.414667pt;}
.y114{bottom:338.876000pt;}
.ya5{bottom:339.501333pt;}
.y5d{bottom:340.661333pt;}
.yf1{bottom:341.550667pt;}
.y133{bottom:342.084000pt;}
.y117{bottom:344.601333pt;}
.y45{bottom:348.406667pt;}
.yd5{bottom:349.934667pt;}
.y7a{bottom:354.078667pt;}
.yaf{bottom:354.414667pt;}
.y113{bottom:354.876000pt;}
.ya4{bottom:355.501333pt;}
.y5c{bottom:356.661333pt;}
.y116{bottom:357.220000pt;}
.y19{bottom:360.049333pt;}
.y44{bottom:364.406667pt;}
.y9c{bottom:364.593333pt;}
.yd4{bottom:365.934667pt;}
.yee{bottom:366.754667pt;}
.yae{bottom:370.414667pt;}
.y112{bottom:370.876000pt;}
.y132{bottom:371.366667pt;}
.ya3{bottom:371.501333pt;}
.y5b{bottom:373.990667pt;}
.y79{bottom:378.049333pt;}
.y43{bottom:380.406667pt;}
.y9b{bottom:380.593333pt;}
.yd3{bottom:381.934667pt;}
.y111{bottom:386.876000pt;}
.y131{bottom:387.366667pt;}
.ya2{bottom:387.501333pt;}
.y5a{bottom:388.661333pt;}
.yed{bottom:394.709333pt;}
.y42{bottom:396.406667pt;}
.y9a{bottom:396.593333pt;}
.yd2{bottom:397.934667pt;}
.y110{bottom:402.876000pt;}
.y59{bottom:404.661333pt;}
.yad{bottom:405.690667pt;}
.y78{bottom:410.006667pt;}
.y41{bottom:412.406667pt;}
.y99{bottom:412.593333pt;}
.y130{bottom:416.650667pt;}
.yac{bottom:418.309333pt;}
.y10f{bottom:418.876000pt;}
.y58{bottom:421.990667pt;}
.ya1{bottom:422.776000pt;}
.yd1{bottom:425.889333pt;}
.y77{bottom:426.006667pt;}
.y40{bottom:428.406667pt;}
.y98{bottom:428.593333pt;}
.y18{bottom:429.204000pt;}
.yab{bottom:430.929333pt;}
.yec{bottom:431.982667pt;}
.y12f{bottom:432.650667pt;}
.ya0{bottom:435.396000pt;}
.y17{bottom:441.870667pt;}
.y76{bottom:442.006667pt;}
.y3f{bottom:444.406667pt;}
.y57{bottom:444.632000pt;}
.y10e{bottom:446.832000pt;}
.yd0{bottom:447.222667pt;}
.yeb{bottom:447.982667pt;}
.y97{bottom:452.562667pt;}
.y75{bottom:458.006667pt;}
.y3e{bottom:460.406667pt;}
.y56{bottom:460.632000pt;}
.y12e{bottom:461.934667pt;}
.yea{bottom:463.982667pt;}
.y16{bottom:467.820000pt;}
.y3d{bottom:476.406667pt;}
.y55{bottom:476.632000pt;}
.y12d{bottom:477.934667pt;}
.ye9{bottom:479.982667pt;}
.y74{bottom:481.976000pt;}
.y15{bottom:482.486667pt;}
.y10d{bottom:484.105333pt;}
.ycf{bottom:484.496000pt;}
.y96{bottom:484.524000pt;}
.y54{bottom:492.632000pt;}
.ye8{bottom:495.982667pt;}
.y14{bottom:497.153333pt;}
.y10c{bottom:500.105333pt;}
.yce{bottom:500.496000pt;}
.y95{bottom:500.524000pt;}
.y3c{bottom:504.361333pt;}
.y12c{bottom:507.217333pt;}
.y53{bottom:508.632000pt;}
.y13{bottom:511.820000pt;}
.ye7{bottom:511.982667pt;}
.y73{bottom:513.933333pt;}
.y10b{bottom:516.105333pt;}
.ycd{bottom:516.496000pt;}
.y94{bottom:516.524000pt;}
.y12b{bottom:523.217333pt;}
.y52{bottom:524.632000pt;}
.y3b{bottom:525.694667pt;}
.y12{bottom:526.486667pt;}
.ye6{bottom:527.982667pt;}
.y72{bottom:529.933333pt;}
.ycc{bottom:532.496000pt;}
.y93{bottom:532.524000pt;}
.y10a{bottom:532.644000pt;}
.y51{bottom:540.632000pt;}
.y11{bottom:541.153333pt;}
.y109{bottom:541.789333pt;}
.ye5{bottom:543.982667pt;}
.y71{bottom:545.933333pt;}
.ycb{bottom:548.496000pt;}
.y92{bottom:548.524000pt;}
.y12a{bottom:552.501333pt;}
.y10{bottom:555.820000pt;}
.y50{bottom:556.632000pt;}
.ye4{bottom:559.982667pt;}
.y3a{bottom:562.968000pt;}
.y108{bottom:563.832000pt;}
.yca{bottom:564.496000pt;}
.y91{bottom:564.524000pt;}
.y129{bottom:568.501333pt;}
.yf{bottom:570.486667pt;}
.y70{bottom:573.888000pt;}
.ye3{bottom:575.982667pt;}
.y39{bottom:578.968000pt;}
.yc9{bottom:580.496000pt;}
.y90{bottom:580.524000pt;}
.ye{bottom:585.153333pt;}
.y107{bottom:590.325333pt;}
.y4f{bottom:591.148000pt;}
.ye2{bottom:591.982667pt;}
.y38{bottom:594.968000pt;}
.yc8{bottom:596.496000pt;}
.y128{bottom:597.784000pt;}
.y106{bottom:599.470667pt;}
.yd{bottom:599.820000pt;}
.y4e{bottom:601.254667pt;}
.y8f{bottom:604.493333pt;}
.y6f{bottom:608.512000pt;}
.y37{bottom:610.968000pt;}
.y127{bottom:613.784000pt;}
.yc{bottom:614.486667pt;}
.yc7{bottom:620.466667pt;}
.y6e{bottom:624.512000pt;}
.y36{bottom:626.968000pt;}
.yb{bottom:629.153333pt;}
.y8e{bottom:636.454667pt;}
.yc6{bottom:636.466667pt;}
.y105{bottom:639.042667pt;}
.y6d{bottom:640.512000pt;}
.y126{bottom:641.740000pt;}
.y35{bottom:642.968000pt;}
.y4d{bottom:643.545333pt;}
.ya{bottom:643.820000pt;}
.y8d{bottom:652.454667pt;}
.ye1{bottom:652.461333pt;}
.yc5{bottom:653.794667pt;}
.y104{bottom:655.042667pt;}
.y9{bottom:658.486667pt;}
.y34{bottom:658.968000pt;}
.y4c{bottom:659.545333pt;}
.ye0{bottom:665.126667pt;}
.y8c{bottom:668.454667pt;}
.yc4{bottom:668.466667pt;}
.y103{bottom:671.042667pt;}
.y33{bottom:674.968000pt;}
.y4b{bottom:675.545333pt;}
.y8{bottom:677.138667pt;}
.y125{bottom:679.013333pt;}
.ydf{bottom:680.928000pt;}
.y8b{bottom:684.454667pt;}
.yc3{bottom:684.466667pt;}
.y102{bottom:687.042667pt;}
.y32{bottom:690.968000pt;}
.y4a{bottom:691.545333pt;}
.y124{bottom:695.013333pt;}
.yaa{bottom:696.266667pt;}
.yde{bottom:696.994667pt;}
.y6c{bottom:698.340000pt;}
.yc2{bottom:701.794667pt;}
.y101{bottom:703.042667pt;}
.y31{bottom:706.968000pt;}
.y49{bottom:707.545333pt;}
.ya9{bottom:708.886667pt;}
.y6b{bottom:711.006667pt;}
.y123{bottom:711.013333pt;}
.y8a{bottom:712.409333pt;}
.ydd{bottom:716.330667pt;}
.y30{bottom:722.968000pt;}
.y6a{bottom:723.673333pt;}
.y7{bottom:723.686667pt;}
.yc1{bottom:724.436000pt;}
.y100{bottom:727.013333pt;}
.y48{bottom:735.501333pt;}
.y69{bottom:736.340000pt;}
.y2f{bottom:738.968000pt;}
.y9f{bottom:739.168000pt;}
.yc0{bottom:740.436000pt;}
.yff{bottom:743.013333pt;}
.ydc{bottom:745.608000pt;}
.y89{bottom:747.037333pt;}
.y68{bottom:749.006667pt;}
.y9e{bottom:751.786667pt;}
.y2e{bottom:754.968000pt;}
.ybf{bottom:756.436000pt;}
.ydb{bottom:758.274667pt;}
.y122{bottom:759.013333pt;}
.yfe{bottom:760.341333pt;}
.y88{bottom:763.037333pt;}
.y67{bottom:768.342667pt;}
.yda{bottom:770.941333pt;}
.y2d{bottom:770.968000pt;}
.ybe{bottom:772.436000pt;}
.y6{bottom:773.566667pt;}
.yfd{bottom:775.013333pt;}
.y87{bottom:779.037333pt;}
.yd9{bottom:783.608000pt;}
.y2c{bottom:786.968000pt;}
.ybd{bottom:788.436000pt;}
.yfc{bottom:791.013333pt;}
.y86{bottom:795.037333pt;}
.y5{bottom:796.889333pt;}
.y66{bottom:797.621333pt;}
.y2b{bottom:802.968000pt;}
.ybc{bottom:804.436000pt;}
.y121{bottom:807.013333pt;}
.yfb{bottom:808.341333pt;}
.y65{bottom:810.288000pt;}
.y85{bottom:811.037333pt;}
.y4{bottom:818.865333pt;}
.y2a{bottom:818.968000pt;}
.ybb{bottom:820.436000pt;}
.yfa{bottom:823.013333pt;}
.y84{bottom:827.037333pt;}
.y29{bottom:834.968000pt;}
.yf9{bottom:839.013333pt;}
.y64{bottom:842.998667pt;}
.y83{bottom:843.037333pt;}
.yba{bottom:848.392000pt;}
.y28{bottom:850.968000pt;}
.y120{bottom:855.013333pt;}
.yf8{bottom:856.341333pt;}
.y63{bottom:858.998667pt;}
.y82{bottom:859.037333pt;}
.y3{bottom:864.765333pt;}
.y27{bottom:866.968000pt;}
.yb9{bottom:869.725333pt;}
.y11f{bottom:871.013333pt;}
.y81{bottom:875.037333pt;}
.yf7{bottom:878.982667pt;}
.y26{bottom:882.968000pt;}
.y11e{bottom:887.013333pt;}
.y80{bottom:891.037333pt;}
.y2{bottom:894.765333pt;}
.yf6{bottom:894.982667pt;}
.y25{bottom:898.968000pt;}
.y11d{bottom:903.013333pt;}
.y138{bottom:904.401333pt;}
.yb8{bottom:906.998667pt;}
.yf5{bottom:910.982667pt;}
.y24{bottom:914.968000pt;}
.y7f{bottom:915.008000pt;}
.y11c{bottom:919.013333pt;}
.y137{bottom:920.401333pt;}
.yb7{bottom:922.998667pt;}
.y1{bottom:924.765333pt;}
.yf4{bottom:926.982667pt;}
.y23{bottom:930.968000pt;}
.y62{bottom:932.297333pt;}
.y11b{bottom:935.013333pt;}
.yb6{bottom:938.998667pt;}
.y22{bottom:946.968000pt;}
.y136{bottom:949.685333pt;}
.y11a{bottom:951.013333pt;}
.yb5{bottom:954.998667pt;}
.y21{bottom:962.968000pt;}
.y135{bottom:965.685333pt;}
.y119{bottom:967.013333pt;}
.yb4{bottom:970.998667pt;}
.y20{bottom:978.968000pt;}
.y61{bottom:980.297333pt;}
.y118{bottom:983.013333pt;}
.yb3{bottom:986.998667pt;}
.y1f{bottom:994.968000pt;}
.y1e{bottom:1010.968000pt;}
.h19{height:2.133333pt;}
.h18{height:24.751646pt;}
.h1a{height:27.999600pt;}
.h13{height:29.909333pt;}
.h4{height:30.800000pt;}
.h11{height:31.880400pt;}
.h8{height:32.000000pt;}
.h6{height:33.600000pt;}
.he{height:34.682667pt;}
.h12{height:34.688000pt;}
.h14{height:34.947200pt;}
.h16{height:34.952533pt;}
.h7{height:36.000000pt;}
.ha{height:39.850400pt;}
.hb{height:40.000000pt;}
.h5{height:44.000000pt;}
.h1d{height:47.354267pt;}
.h10{height:48.000000pt;}
.h15{height:49.109333pt;}
.hd{height:50.298267pt;}
.h9{height:56.000000pt;}
.h3{height:56.821333pt;}
.hf{height:58.613333pt;}
.h2{height:64.101333pt;}
.h17{height:75.930400pt;}
.h1b{height:76.080000pt;}
.h1c{height:76.581333pt;}
.hc{height:118.181333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:133.428000pt;}
.x23{left:140.069333pt;}
.x11{left:146.736000pt;}
.x2{left:149.368000pt;}
.xe{left:153.353333pt;}
.x24{left:160.733333pt;}
.x8{left:165.308000pt;}
.x1{left:173.453333pt;}
.x12{left:179.434667pt;}
.xb{left:186.052000pt;}
.xc{left:187.126667pt;}
.x6{left:190.364000pt;}
.x22{left:193.430667pt;}
.x13{left:208.760000pt;}
.x15{left:212.542667pt;}
.x14{left:216.730667pt;}
.x16{left:220.513333pt;}
.xf{left:226.118667pt;}
.x10{left:298.508000pt;}
.x3{left:303.373333pt;}
.x5{left:305.314667pt;}
.x4{left:323.873333pt;}
.x1c{left:347.252000pt;}
.x7{left:353.341333pt;}
.x17{left:371.396000pt;}
.x21{left:373.860000pt;}
.x1d{left:375.908000pt;}
.xa{left:377.180000pt;}
.x19{left:383.216000pt;}
.x1a{left:384.209333pt;}
.x18{left:389.549333pt;}
.x1b{left:404.697333pt;}
.x20{left:406.557333pt;}
.xd{left:409.878667pt;}
.x1e{left:416.084000pt;}
.x1f{left:445.990667pt;}
}




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