
    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_ceef1cd634c0f49394e76481.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960589;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_ca47f4fca869e43dedd0c7f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.764175;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_714bbc1dcb54cc211f50ad00.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959180;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_4f27b7c7fb72f94ae1b6a36b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958984;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_c0cf9c8e7c52a49fba9ba261.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976000;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_69ac84dbaa7dd184d12464a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051000;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_720dbbc72c8b5a8bbea81c2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_492e7cf665bac9e5f8cf7083.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923000;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_bc7e3c03e556fbf3d35ca128.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_58801875cd52c11b1de60974.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905000;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_fa76957c7d0945d4a18e01f5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.686000;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_75202787066320d92b808164.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.915000;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_09ed9cfca2f64d5a13054652.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913000;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_cbe63a8f2fa75c4116605f69.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.110000;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_720dbbc72c8b5a8bbea81c2d.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;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_7239515db60f2f47c4974e9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.924000;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_0eac79644af8789a87f90712.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.909180;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_def1a248506383557c07850e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.923000;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_911d77d61ab16081c576d52e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;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_be84f88ba1d7f13a523e3f1d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.678223;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_56574f40973f427073e7a987.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.686000;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_2b2cb9d761a720aae4d902c2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.692383;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);}
.v5{vertical-align:-17.482200px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.057500px;}
.v3{vertical-align:15.984000px;}
.v4{vertical-align:17.774700px;}
.v1{vertical-align:18.981000px;}
.ls10{letter-spacing:-3.465000px;}
.ls6{letter-spacing:-1.163085px;}
.ls1f{letter-spacing:-1.050000px;}
.ls9{letter-spacing:-0.787500px;}
.ls23{letter-spacing:-0.630000px;}
.ls8{letter-spacing:-0.525000px;}
.ls7{letter-spacing:-0.480000px;}
.ls22{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.262500px;}
.ls24{letter-spacing:-0.210000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000222px;}
.ls18{letter-spacing:0.139920px;}
.ls1a{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.196800px;}
.ls1c{letter-spacing:0.201600px;}
.ls17{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.244800px;}
.ls1d{letter-spacing:0.262500px;}
.lsa{letter-spacing:0.306078px;}
.ls20{letter-spacing:0.306222px;}
.ls14{letter-spacing:0.367500px;}
.lsd{letter-spacing:0.459117px;}
.lsb{letter-spacing:0.472500px;}
.ls5{letter-spacing:0.525000px;}
.ls13{letter-spacing:0.577500px;}
.ls16{letter-spacing:0.612156px;}
.ls4{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.774144px;}
.lsc{letter-spacing:0.787500px;}
.ls12{letter-spacing:0.892500px;}
.lsf{letter-spacing:1.050000px;}
.ls11{letter-spacing:1.102500px;}
.ls2{letter-spacing:1.200000px;}
.ls1e{letter-spacing:9.600000px;}
.ls3{letter-spacing:10.800000px;}
.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;}
}
.ws0{word-spacing:-129.024001px;}
.ws1f{word-spacing:-52.500000px;}
.ws97{word-spacing:-48.000000px;}
.ws1{word-spacing:-21.123072px;}
.ws2{word-spacing:-20.348928px;}
.ws3{word-spacing:-17.805312px;}
.wsc{word-spacing:-15.840000px;}
.wsa2{word-spacing:-13.387500px;}
.ws52{word-spacing:-13.335000px;}
.ws23{word-spacing:-13.072500px;}
.ws20{word-spacing:-12.810000px;}
.ws1e{word-spacing:-12.285000px;}
.ws78{word-spacing:-12.022500px;}
.ws96{word-spacing:-11.497500px;}
.ws83{word-spacing:-10.560000px;}
.ws62{word-spacing:-10.320000px;}
.ws6d{word-spacing:-10.176000px;}
.ws5{word-spacing:-10.080000px;}
.wsc5{word-spacing:-9.828000px;}
.ws98{word-spacing:-9.600000px;}
.ws7{word-spacing:-9.120000px;}
.ws6{word-spacing:-8.976000px;}
.ws22{word-spacing:-7.804989px;}
.ws79{word-spacing:-7.774381px;}
.ws24{word-spacing:-7.621342px;}
.ws21{word-spacing:-7.468303px;}
.ws8d{word-spacing:-7.162225px;}
.ws9{word-spacing:-6.978510px;}
.ws84{word-spacing:-6.156480px;}
.wsb{word-spacing:-6.016560px;}
.wsa{word-spacing:-5.815425px;}
.ws65{word-spacing:-2.205000px;}
.wsba{word-spacing:-2.100000px;}
.wsa8{word-spacing:-2.047500px;}
.ws1d{word-spacing:-1.942500px;}
.wsbb{word-spacing:-1.837500px;}
.ws72{word-spacing:-1.785000px;}
.wsb5{word-spacing:-1.732500px;}
.wsb8{word-spacing:-1.680000px;}
.ws95{word-spacing:-1.627500px;}
.ws61{word-spacing:-1.575000px;}
.ws1a{word-spacing:-1.470000px;}
.wsc0{word-spacing:-1.417500px;}
.ws53{word-spacing:-1.365000px;}
.ws41{word-spacing:-1.312500px;}
.ws88{word-spacing:-1.260000px;}
.wsaa{word-spacing:-1.207500px;}
.ws8a{word-spacing:-1.155000px;}
.ws48{word-spacing:-1.102500px;}
.ws3f{word-spacing:-1.050000px;}
.wsc4{word-spacing:-0.997500px;}
.ws59{word-spacing:-0.945000px;}
.wsc1{word-spacing:-0.892500px;}
.ws9b{word-spacing:-0.840000px;}
.wsf{word-spacing:-0.792000px;}
.ws85{word-spacing:-0.787500px;}
.ws35{word-spacing:-0.720000px;}
.ws45{word-spacing:-0.682500px;}
.ws46{word-spacing:-0.630000px;}
.ws9a{word-spacing:-0.577500px;}
.ws28{word-spacing:-0.525000px;}
.ws42{word-spacing:-0.472500px;}
.wsb3{word-spacing:-0.420000px;}
.ws90{word-spacing:-0.367500px;}
.wsa1{word-spacing:-0.336000px;}
.ws33{word-spacing:-0.315000px;}
.wsa0{word-spacing:-0.288000px;}
.wsab{word-spacing:-0.262500px;}
.ws89{word-spacing:-0.240000px;}
.ws8b{word-spacing:-0.210000px;}
.ws2d{word-spacing:-0.157500px;}
.ws8{word-spacing:-0.132000px;}
.ws1b{word-spacing:-0.105000px;}
.wsa3{word-spacing:-0.052500px;}
.ws4{word-spacing:0.000000px;}
.wsc2{word-spacing:0.052500px;}
.ws94{word-spacing:0.105000px;}
.ws17{word-spacing:0.157500px;}
.ws6c{word-spacing:0.210000px;}
.ws3c{word-spacing:0.262500px;}
.wsbe{word-spacing:0.367500px;}
.ws66{word-spacing:0.420000px;}
.ws10{word-spacing:0.480000px;}
.ws36{word-spacing:0.525000px;}
.ws1c{word-spacing:0.577500px;}
.ws9d{word-spacing:0.630000px;}
.ws2c{word-spacing:0.682500px;}
.wsd{word-spacing:0.735000px;}
.ws64{word-spacing:0.787500px;}
.ws56{word-spacing:0.840000px;}
.ws5d{word-spacing:0.892500px;}
.ws4f{word-spacing:0.945000px;}
.ws74{word-spacing:0.997500px;}
.wsae{word-spacing:1.102500px;}
.wsb7{word-spacing:1.155000px;}
.wsa7{word-spacing:1.207500px;}
.ws71{word-spacing:1.260000px;}
.ws99{word-spacing:1.312500px;}
.wsbc{word-spacing:1.365000px;}
.ws2a{word-spacing:1.470000px;}
.ws49{word-spacing:1.522500px;}
.ws75{word-spacing:1.575000px;}
.ws38{word-spacing:1.627500px;}
.ws9c{word-spacing:1.680000px;}
.ws19{word-spacing:1.785000px;}
.ws30{word-spacing:1.837500px;}
.ws5b{word-spacing:1.890000px;}
.wsad{word-spacing:1.942500px;}
.ws44{word-spacing:1.995000px;}
.ws76{word-spacing:2.047500px;}
.ws57{word-spacing:2.100000px;}
.ws2b{word-spacing:2.152500px;}
.ws6e{word-spacing:2.205000px;}
.ws6b{word-spacing:2.257500px;}
.wsb4{word-spacing:2.310000px;}
.ws14{word-spacing:2.362500px;}
.ws91{word-spacing:2.415000px;}
.ws4d{word-spacing:2.467500px;}
.ws87{word-spacing:2.520000px;}
.ws8f{word-spacing:2.572500px;}
.ws69{word-spacing:2.625000px;}
.ws73{word-spacing:2.730000px;}
.ws4e{word-spacing:2.782500px;}
.ws4c{word-spacing:2.835000px;}
.ws50{word-spacing:2.887500px;}
.ws47{word-spacing:2.940000px;}
.ws40{word-spacing:2.992500px;}
.ws7e{word-spacing:3.045000px;}
.ws60{word-spacing:3.097500px;}
.ws68{word-spacing:3.202500px;}
.wsb6{word-spacing:3.255000px;}
.ws54{word-spacing:3.307500px;}
.wsb2{word-spacing:3.360000px;}
.ws58{word-spacing:3.465000px;}
.ws13{word-spacing:3.517500px;}
.ws5a{word-spacing:3.570000px;}
.ws16{word-spacing:3.622500px;}
.ws6f{word-spacing:3.675000px;}
.wsbf{word-spacing:3.727500px;}
.ws4a{word-spacing:3.885000px;}
.ws7f{word-spacing:3.937500px;}
.ws34{word-spacing:3.990000px;}
.ws9e{word-spacing:4.042500px;}
.ws7a{word-spacing:4.147500px;}
.ws93{word-spacing:4.200000px;}
.wsa5{word-spacing:4.252500px;}
.wsa6{word-spacing:4.305000px;}
.wsac{word-spacing:4.357500px;}
.wsb1{word-spacing:4.410000px;}
.ws3b{word-spacing:4.462500px;}
.ws2f{word-spacing:4.515000px;}
.ws37{word-spacing:4.567500px;}
.ws8c{word-spacing:4.672500px;}
.ws92{word-spacing:4.725000px;}
.ws63{word-spacing:4.777500px;}
.ws2e{word-spacing:4.987500px;}
.wsbd{word-spacing:5.145000px;}
.ws6a{word-spacing:5.250000px;}
.ws27{word-spacing:5.302500px;}
.ws15{word-spacing:5.355000px;}
.ws39{word-spacing:5.512500px;}
.ws80{word-spacing:5.565000px;}
.ws7c{word-spacing:5.617500px;}
.ws3a{word-spacing:5.827500px;}
.ws51{word-spacing:5.880000px;}
.ws8e{word-spacing:5.985000px;}
.ws67{word-spacing:6.037500px;}
.wsb0{word-spacing:6.090000px;}
.ws43{word-spacing:6.142500px;}
.ws29{word-spacing:6.247500px;}
.wsb9{word-spacing:6.300000px;}
.ws81{word-spacing:6.352500px;}
.ws4b{word-spacing:6.405000px;}
.wsa9{word-spacing:6.457500px;}
.ws5c{word-spacing:6.615000px;}
.ws9f{word-spacing:6.667500px;}
.ws18{word-spacing:6.772500px;}
.ws77{word-spacing:6.930000px;}
.ws55{word-spacing:7.192500px;}
.ws7d{word-spacing:7.297500px;}
.ws3d{word-spacing:7.350000px;}
.ws70{word-spacing:7.612500px;}
.wsa4{word-spacing:7.665000px;}
.ws32{word-spacing:7.875000px;}
.ws3e{word-spacing:7.927500px;}
.wsc6{word-spacing:8.032500px;}
.ws11{word-spacing:8.295000px;}
.wsaf{word-spacing:8.347500px;}
.ws82{word-spacing:8.505000px;}
.ws86{word-spacing:8.610000px;}
.ws5f{word-spacing:8.662500px;}
.ws5e{word-spacing:9.187500px;}
.wsc3{word-spacing:9.345000px;}
.ws26{word-spacing:9.502500px;}
.ws12{word-spacing:9.817500px;}
.ws25{word-spacing:10.132500px;}
.ws31{word-spacing:10.237500px;}
.ws7b{word-spacing:10.290000px;}
.wse{word-spacing:13.680000px;}
._5{margin-left:-3042.000000px;}
._d{margin-left:-7.706100px;}
._7{margin-left:-5.809476px;}
._6{margin-left:-3.990000px;}
._3{margin-left:-2.433024px;}
._2{margin-left:-1.253376px;}
._0{width:1.253376px;}
._1{width:2.654208px;}
._b{width:3.832500px;}
._9{width:5.452002px;}
._8{width:6.552672px;}
._c{width:7.559544px;}
._a{width:9.345000px;}
._e{width:24.108000px;}
._4{width:103.219201px;}
.fc6{color:rgb(0,107,59);}
.fc2{color:rgb(0,0,238);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fsa{font-size:27.984000px;}
.fsd{font-size:30.607800px;}
.fs9{font-size:33.231000px;}
.fse{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:52.500000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs3{font-size:64.512001px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:73.728001px;}
.fs4{font-size:105.984001px;}
.fs1{font-size:110.592001px;}
.fs0{font-size:129.024001px;}
.fs7{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:15.257998px;}
.y56{bottom:27.152400px;}
.y19{bottom:27.194850px;}
.y57{bottom:27.200400px;}
.y15{bottom:28.800005px;}
.y18{bottom:34.559999px;}
.y14{bottom:52.992005px;}
.y135{bottom:66.251475px;}
.y17a{bottom:66.307725px;}
.yd5{bottom:66.313350px;}
.y9e{bottom:66.318975px;}
.y47{bottom:66.330225px;}
.yeb{bottom:66.347100px;}
.yba{bottom:66.375225px;}
.y164{bottom:66.380850px;}
.y15c{bottom:66.397725px;}
.y28{bottom:66.399450px;}
.y8d{bottom:66.408975px;}
.y1b4{bottom:68.465100px;}
.y13{bottom:77.184006px;}
.y27{bottom:82.899450px;}
.y1b3{bottom:83.469600px;}
.y134{bottom:85.007100px;}
.y179{bottom:85.063350px;}
.yd4{bottom:85.068975px;}
.y9d{bottom:85.074600px;}
.y46{bottom:85.085850px;}
.yea{bottom:85.102725px;}
.y8c{bottom:85.113975px;}
.yb9{bottom:85.130850px;}
.y163{bottom:85.136475px;}
.y15b{bottom:85.153350px;}
.y17{bottom:85.248000px;}
.y1b2{bottom:98.474100px;}
.y26{bottom:99.399450px;}
.y12{bottom:101.376006px;}
.y133{bottom:103.762725px;}
.y178{bottom:103.818975px;}
.yd3{bottom:103.824600px;}
.y9c{bottom:103.830225px;}
.y45{bottom:103.841475px;}
.ye9{bottom:103.858350px;}
.y8b{bottom:103.869600px;}
.yb8{bottom:103.886475px;}
.y162{bottom:103.892100px;}
.y15a{bottom:103.908975px;}
.y1b1{bottom:113.478600px;}
.y25{bottom:115.899450px;}
.y132{bottom:122.518350px;}
.y177{bottom:122.574600px;}
.yd2{bottom:122.580225px;}
.y9b{bottom:122.585850px;}
.y44{bottom:122.597100px;}
.ye8{bottom:122.613975px;}
.y8a{bottom:122.625225px;}
.yb7{bottom:122.642100px;}
.y161{bottom:122.647725px;}
.y159{bottom:122.658975px;}
.y11{bottom:125.568006px;}
.y1b0{bottom:128.483100px;}
.y24{bottom:140.907450px;}
.y131{bottom:141.273975px;}
.y176{bottom:141.330225px;}
.yd1{bottom:141.335850px;}
.y9a{bottom:141.341475px;}
.y43{bottom:141.352725px;}
.ye7{bottom:141.369600px;}
.y89{bottom:141.380850px;}
.yb6{bottom:141.397725px;}
.y160{bottom:141.403350px;}
.y158{bottom:141.408975px;}
.y1af{bottom:143.487600px;}
.y10{bottom:149.760006px;}
.y23{bottom:157.407450px;}
.y1ae{bottom:158.492100px;}
.y130{bottom:160.029600px;}
.y175{bottom:160.085850px;}
.yd0{bottom:160.091475px;}
.y99{bottom:160.097100px;}
.y42{bottom:160.108350px;}
.ye6{bottom:160.125225px;}
.y88{bottom:160.136475px;}
.yb5{bottom:160.153350px;}
.y15f{bottom:160.158975px;}
.y157{bottom:160.164600px;}
.y1ad{bottom:173.496600px;}
.y22{bottom:173.907450px;}
.yf{bottom:173.952006px;}
.y15e{bottom:178.650225px;}
.y12f{bottom:178.785225px;}
.y174{bottom:178.841475px;}
.ycf{bottom:178.847100px;}
.y98{bottom:178.852725px;}
.y41{bottom:178.863975px;}
.ye5{bottom:178.880850px;}
.y87{bottom:178.892100px;}
.yb4{bottom:178.908975px;}
.y156{bottom:178.914600px;}
.y1ac{bottom:188.501100px;}
.y15d{bottom:197.405850px;}
.y12e{bottom:197.540850px;}
.yb3{bottom:197.597100px;}
.yce{bottom:197.602725px;}
.y97{bottom:197.608350px;}
.y40{bottom:197.619600px;}
.ye4{bottom:197.636475px;}
.y86{bottom:197.647725px;}
.y10e{bottom:197.664600px;}
.ye{bottom:198.144007px;}
.y21{bottom:198.915450px;}
.y1ab{bottom:203.505600px;}
.y20{bottom:215.415450px;}
.y155{bottom:216.161475px;}
.y12d{bottom:216.296475px;}
.yb2{bottom:216.352725px;}
.ycd{bottom:216.358350px;}
.y96{bottom:216.363975px;}
.y3f{bottom:216.375225px;}
.ye3{bottom:216.392100px;}
.y85{bottom:216.403350px;}
.y10d{bottom:216.414600px;}
.y1aa{bottom:218.510100px;}
.yd{bottom:222.336007px;}
.y1a9{bottom:233.514600px;}
.y154{bottom:234.917100px;}
.y12c{bottom:235.052100px;}
.yb1{bottom:235.108350px;}
.ycc{bottom:235.113975px;}
.y95{bottom:235.119600px;}
.y3e{bottom:235.130850px;}
.ye2{bottom:235.147725px;}
.y84{bottom:235.158975px;}
.y1f{bottom:240.423450px;}
.yc{bottom:246.528007px;}
.y1a8{bottom:248.519100px;}
.y153{bottom:253.672725px;}
.y12b{bottom:253.807725px;}
.yb0{bottom:253.863975px;}
.ycb{bottom:253.869600px;}
.y94{bottom:253.875225px;}
.y3d{bottom:253.886475px;}
.ye1{bottom:253.903350px;}
.y83{bottom:253.908975px;}
.y1e{bottom:256.923450px;}
.y1a7{bottom:263.523600px;}
.yb{bottom:270.720007px;}
.y152{bottom:272.428350px;}
.y12a{bottom:272.563350px;}
.yaf{bottom:272.619600px;}
.yca{bottom:272.625225px;}
.y93{bottom:272.630850px;}
.y82{bottom:272.636475px;}
.y3c{bottom:272.642100px;}
.ye0{bottom:272.658975px;}
.y1d{bottom:273.423450px;}
.y1a6{bottom:278.528100px;}
.y151{bottom:291.183975px;}
.y129{bottom:291.318975px;}
.yae{bottom:291.375225px;}
.yc9{bottom:291.380850px;}
.y92{bottom:291.386475px;}
.y81{bottom:291.392100px;}
.y3b{bottom:291.397725px;}
.yf8{bottom:291.414600px;}
.y1a5{bottom:293.532600px;}
.ya{bottom:294.912007px;}
.y1c{bottom:298.431450px;}
.y1a4{bottom:308.537100px;}
.y150{bottom:309.939600px;}
.y128{bottom:310.074600px;}
.yad{bottom:310.130850px;}
.yc8{bottom:310.136475px;}
.y91{bottom:310.142100px;}
.y80{bottom:310.147725px;}
.y3a{bottom:310.153350px;}
.y1b{bottom:314.931450px;}
.y9{bottom:319.104008px;}
.y1a3{bottom:323.541600px;}
.y14f{bottom:328.695225px;}
.y127{bottom:328.830225px;}
.yac{bottom:328.886475px;}
.yc7{bottom:328.892100px;}
.y90{bottom:328.897725px;}
.y7f{bottom:328.903350px;}
.y39{bottom:328.908975px;}
.y10c{bottom:330.902400px;}
.y1a2{bottom:338.546100px;}
.y8{bottom:343.296008px;}
.y102{bottom:343.863000px;}
.y10b{bottom:345.902400px;}
.y14e{bottom:347.450850px;}
.y126{bottom:347.585850px;}
.yab{bottom:347.642100px;}
.yc6{bottom:347.647725px;}
.y8f{bottom:347.653350px;}
.y7e{bottom:347.658975px;}
.y38{bottom:347.664600px;}
.y1a1{bottom:353.550600px;}
.y101{bottom:358.863000px;}
.y10a{bottom:360.902400px;}
.y14d{bottom:366.206475px;}
.y125{bottom:366.341475px;}
.yaa{bottom:366.397725px;}
.yc5{bottom:366.403350px;}
.y7d{bottom:366.408975px;}
.y37{bottom:366.414600px;}
.y7{bottom:367.488008px;}
.y1a0{bottom:368.555100px;}
.y100{bottom:373.863000px;}
.y109{bottom:375.902400px;}
.y19f{bottom:383.559600px;}
.y14c{bottom:384.962100px;}
.y124{bottom:385.097100px;}
.ya9{bottom:385.153350px;}
.y7c{bottom:385.158975px;}
.y8e{bottom:385.164600px;}
.yff{bottom:388.863000px;}
.y108{bottom:390.902400px;}
.y1{bottom:390.935988px;}
.y19e{bottom:398.564100px;}
.yf7{bottom:402.066900px;}
.y14b{bottom:403.717725px;}
.y7b{bottom:403.841475px;}
.y123{bottom:403.852725px;}
.yfe{bottom:403.863000px;}
.ya8{bottom:403.908975px;}
.yc4{bottom:403.914600px;}
.y107{bottom:405.902400px;}
.y19d{bottom:413.568600px;}
.y6{bottom:414.720008px;}
.yf6{bottom:417.066900px;}
.yfd{bottom:418.863000px;}
.y106{bottom:420.902400px;}
.y14a{bottom:422.473350px;}
.y7a{bottom:422.597100px;}
.y122{bottom:422.608350px;}
.y173{bottom:422.642100px;}
.ya7{bottom:422.664600px;}
.ya6{bottom:425.525250px;}
.y19c{bottom:428.573100px;}
.yf5{bottom:432.066900px;}
.yfc{bottom:433.863000px;}
.y105{bottom:435.902400px;}
.ya5{bottom:440.525250px;}
.y149{bottom:441.228975px;}
.y79{bottom:441.352725px;}
.y121{bottom:441.363975px;}
.y172{bottom:441.397725px;}
.y19b{bottom:443.577600px;}
.ydf{bottom:444.847350px;}
.yf4{bottom:447.066900px;}
.yfb{bottom:448.863000px;}
.y104{bottom:450.902400px;}
.y117{bottom:451.927050px;}
.ya4{bottom:455.525250px;}
.y19a{bottom:458.582100px;}
.yde{bottom:459.847350px;}
.y148{bottom:459.984600px;}
.y78{bottom:460.108350px;}
.y120{bottom:460.119600px;}
.y171{bottom:460.153350px;}
.y5{bottom:461.952009px;}
.yf3{bottom:462.066900px;}
.yc3{bottom:462.367500px;}
.yfa{bottom:463.863000px;}
.y103{bottom:465.902400px;}
.y116{bottom:466.927050px;}
.ya3{bottom:470.525250px;}
.y199{bottom:473.586600px;}
.y55{bottom:473.658375px;}
.ydd{bottom:474.847350px;}
.yf2{bottom:477.066900px;}
.yc2{bottom:477.367500px;}
.y147{bottom:478.740225px;}
.yf9{bottom:478.863000px;}
.y77{bottom:478.863975px;}
.y11f{bottom:478.875225px;}
.y170{bottom:478.908975px;}
.y115{bottom:481.927050px;}
.ya2{bottom:485.525250px;}
.y198{bottom:488.591100px;}
.ydc{bottom:489.847350px;}
.yf1{bottom:492.066900px;}
.yc1{bottom:492.367500px;}
.y54{bottom:492.414000px;}
.y114{bottom:496.927050px;}
.y146{bottom:497.495850px;}
.y76{bottom:497.619600px;}
.y11e{bottom:497.630850px;}
.y16f{bottom:497.642100px;}
.ya1{bottom:500.525250px;}
.y197{bottom:503.595600px;}
.ydb{bottom:504.847350px;}
.yf0{bottom:507.066900px;}
.yc0{bottom:507.367500px;}
.y53{bottom:511.169625px;}
.y4{bottom:511.488009px;}
.y113{bottom:511.927050px;}
.ya0{bottom:515.525250px;}
.y145{bottom:516.251475px;}
.y75{bottom:516.375225px;}
.y11d{bottom:516.386475px;}
.y16e{bottom:516.397725px;}
.y196{bottom:518.600100px;}
.yda{bottom:519.847350px;}
.yef{bottom:522.066900px;}
.ybf{bottom:522.367500px;}
.y112{bottom:526.927050px;}
.y52{bottom:529.925250px;}
.y9f{bottom:530.525250px;}
.y195{bottom:533.604600px;}
.yd9{bottom:534.847350px;}
.y144{bottom:535.007100px;}
.y74{bottom:535.130850px;}
.y11c{bottom:535.142100px;}
.y16d{bottom:535.153350px;}
.yee{bottom:537.066900px;}
.ybe{bottom:537.367500px;}
.y111{bottom:541.927050px;}
.y1d8{bottom:546.271800px;}
.y194{bottom:548.609100px;}
.y51{bottom:548.680875px;}
.yd8{bottom:549.847350px;}
.yed{bottom:552.066900px;}
.ybd{bottom:552.367500px;}
.y143{bottom:553.762725px;}
.y73{bottom:553.886475px;}
.y11b{bottom:553.897725px;}
.y16c{bottom:553.908975px;}
.y110{bottom:556.927050px;}
.y1d7{bottom:561.276300px;}
.y193{bottom:563.613600px;}
.yd7{bottom:564.847350px;}
.yec{bottom:567.066900px;}
.ybc{bottom:567.367500px;}
.y50{bottom:567.436500px;}
.y3{bottom:571.392009px;}
.y10f{bottom:571.927050px;}
.y142{bottom:572.518350px;}
.y72{bottom:572.642100px;}
.y16b{bottom:572.647725px;}
.y11a{bottom:572.653350px;}
.y1d6{bottom:576.280800px;}
.y192{bottom:578.618100px;}
.yd6{bottom:579.847350px;}
.ybb{bottom:582.367500px;}
.y4f{bottom:586.192125px;}
.y141{bottom:591.273975px;}
.y1d5{bottom:591.285300px;}
.y71{bottom:591.397725px;}
.y16a{bottom:591.403350px;}
.y119{bottom:591.408975px;}
.y191{bottom:593.622600px;}
.y4e{bottom:604.947750px;}
.y1d4{bottom:606.289800px;}
.y190{bottom:608.627100px;}
.y140{bottom:610.029600px;}
.y70{bottom:610.153350px;}
.y169{bottom:610.158975px;}
.y118{bottom:610.164600px;}
.y2{bottom:614.016010px;}
.y1d3{bottom:621.294300px;}
.y18f{bottom:623.631600px;}
.y4d{bottom:623.703375px;}
.y13f{bottom:628.785225px;}
.y168{bottom:628.892100px;}
.y6f{bottom:628.908975px;}
.y1d2{bottom:636.298800px;}
.y18e{bottom:638.636100px;}
.y4c{bottom:642.459000px;}
.y13e{bottom:647.540850px;}
.y167{bottom:647.647725px;}
.y6e{bottom:647.664600px;}
.y1d1{bottom:651.303300px;}
.y18d{bottom:653.640600px;}
.y4b{bottom:661.214625px;}
.y13b{bottom:665.774400px;}
.y13d{bottom:666.296475px;}
.y1d0{bottom:666.307800px;}
.y166{bottom:666.403350px;}
.y6d{bottom:666.414600px;}
.y18c{bottom:668.645100px;}
.y4a{bottom:679.970250px;}
.y13a{bottom:680.774400px;}
.y1cf{bottom:681.312300px;}
.y18b{bottom:683.649600px;}
.y13c{bottom:685.052100px;}
.y165{bottom:685.158975px;}
.y139{bottom:695.774400px;}
.y1ce{bottom:696.316800px;}
.y18a{bottom:698.654100px;}
.y49{bottom:698.725875px;}
.y6c{bottom:703.807725px;}
.y138{bottom:710.774400px;}
.y1cd{bottom:711.321300px;}
.y189{bottom:713.658600px;}
.y48{bottom:717.481500px;}
.y6b{bottom:722.563350px;}
.y137{bottom:725.774400px;}
.y1cc{bottom:726.325800px;}
.y136{bottom:740.774400px;}
.y6a{bottom:741.318975px;}
.y1cb{bottom:741.330300px;}
.y1ca{bottom:756.334800px;}
.y69{bottom:760.074600px;}
.y188{bottom:760.132725px;}
.y36{bottom:763.083150px;}
.y1c9{bottom:771.339300px;}
.y68{bottom:778.830225px;}
.y187{bottom:778.888350px;}
.y35{bottom:782.583150px;}
.y1c8{bottom:786.343800px;}
.y67{bottom:797.585850px;}
.y186{bottom:797.643975px;}
.y1c7{bottom:801.348300px;}
.y34{bottom:806.079150px;}
.y66{bottom:816.341475px;}
.y1c6{bottom:816.352800px;}
.y33{bottom:821.583150px;}
.y1c5{bottom:831.357300px;}
.y65{bottom:835.097100px;}
.y185{bottom:835.142100px;}
.y32{bottom:841.083150px;}
.y1c4{bottom:846.361800px;}
.y64{bottom:853.852725px;}
.y184{bottom:853.897725px;}
.y1c3{bottom:861.366300px;}
.y31{bottom:864.579150px;}
.y63{bottom:872.608350px;}
.y183{bottom:872.653350px;}
.y1c2{bottom:876.370800px;}
.y30{bottom:880.083150px;}
.y62{bottom:891.363975px;}
.y1c1{bottom:891.375300px;}
.y182{bottom:891.408975px;}
.y2f{bottom:899.583150px;}
.y1c0{bottom:906.379800px;}
.y61{bottom:910.119600px;}
.y181{bottom:910.164600px;}
.y1bf{bottom:921.384300px;}
.y2e{bottom:923.079150px;}
.y60{bottom:928.875225px;}
.y180{bottom:928.914600px;}
.y1be{bottom:936.388800px;}
.y2d{bottom:943.089150px;}
.y5f{bottom:947.630850px;}
.y1bd{bottom:951.393300px;}
.y2c{bottom:962.589150px;}
.y5e{bottom:966.386475px;}
.y17f{bottom:966.392100px;}
.y1bc{bottom:966.397800px;}
.y1bb{bottom:981.402300px;}
.y2b{bottom:982.083150px;}
.y5d{bottom:985.142100px;}
.y17e{bottom:985.147725px;}
.y1ba{bottom:996.406800px;}
.y5c{bottom:1003.897725px;}
.y17d{bottom:1003.903350px;}
.y1b9{bottom:1011.411300px;}
.y2a{bottom:1018.162800px;}
.y5b{bottom:1022.653350px;}
.y17c{bottom:1022.658975px;}
.y1b8{bottom:1026.415800px;}
.y5a{bottom:1041.408975px;}
.y17b{bottom:1041.414600px;}
.y1b7{bottom:1041.420300px;}
.y29{bottom:1054.165800px;}
.y1b6{bottom:1056.424800px;}
.y59{bottom:1060.164600px;}
.y1b5{bottom:1071.429300px;}
.y1a{bottom:1128.373500px;}
.y58{bottom:1128.605400px;}
.hf{height:19.756704px;}
.h11{height:33.888000px;}
.h10{height:35.740704px;}
.h15{height:36.576000px;}
.h1a{height:37.432500px;}
.h20{height:37.548000px;}
.ha{height:38.124000px;}
.hb{height:38.400000px;}
.h14{height:40.005000px;}
.h9{height:40.416000px;}
.he{height:44.279022px;}
.hd{height:44.303022px;}
.h13{height:46.935000px;}
.h17{height:46.957500px;}
.h1c{height:47.002500px;}
.h1f{height:47.025000px;}
.h18{height:47.047500px;}
.h19{height:47.137500px;}
.h1b{height:47.205000px;}
.h16{height:47.227500px;}
.h1e{height:47.362500px;}
.h5{height:47.817000px;}
.h1d{height:47.992500px;}
.h12{height:50.832000px;}
.h4{height:54.648000px;}
.h7{height:78.556501px;}
.h3{height:81.972001px;}
.h2{height:95.634001px;}
.hc{height:100.584000px;}
.h6{height:133.632000px;}
.h1{height:739.584011px;}
.h0{height:1173.000000px;}
.h8{height:1174.500000px;}
.w1{width:746.496011px;}
.w0{width:876.000000px;}
.w2{width:877.500000px;}
.x0{left:0.000000px;}
.x4{left:3.456000px;}
.x3{left:9.216000px;}
.x7{left:58.502850px;}
.x1{left:64.512001px;}
.x2{left:149.760001px;}
.x8{left:232.109850px;}
.xe{left:252.151800px;}
.x9{left:254.606100px;}
.xa{left:274.270050px;}
.x6{left:663.451350px;}
.xc{left:805.245450px;}
.xd{left:807.381450px;}
.xb{left:812.985300px;}
.x5{left:814.389300px;}
@media print{
.v5{vertical-align:-15.539733pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:0.940000pt;}
.v3{vertical-align:14.208000pt;}
.v4{vertical-align:15.799733pt;}
.v1{vertical-align:16.872000pt;}
.ls10{letter-spacing:-3.080000pt;}
.ls6{letter-spacing:-1.033853pt;}
.ls1f{letter-spacing:-0.933333pt;}
.ls9{letter-spacing:-0.700000pt;}
.ls23{letter-spacing:-0.560000pt;}
.ls8{letter-spacing:-0.466667pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls22{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.233333pt;}
.ls24{letter-spacing:-0.186667pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000197pt;}
.ls18{letter-spacing:0.124373pt;}
.ls1a{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.174933pt;}
.ls1c{letter-spacing:0.179200pt;}
.ls17{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.217600pt;}
.ls1d{letter-spacing:0.233333pt;}
.lsa{letter-spacing:0.272069pt;}
.ls20{letter-spacing:0.272197pt;}
.ls14{letter-spacing:0.326667pt;}
.lsd{letter-spacing:0.408104pt;}
.lsb{letter-spacing:0.420000pt;}
.ls5{letter-spacing:0.466667pt;}
.ls13{letter-spacing:0.513333pt;}
.ls16{letter-spacing:0.544139pt;}
.ls4{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.688128pt;}
.lsc{letter-spacing:0.700000pt;}
.ls12{letter-spacing:0.793333pt;}
.lsf{letter-spacing:0.933333pt;}
.ls11{letter-spacing:0.980000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls1e{letter-spacing:8.533333pt;}
.ls3{letter-spacing:9.600000pt;}
.ws0{word-spacing:-114.688001pt;}
.ws1f{word-spacing:-46.666667pt;}
.ws97{word-spacing:-42.666667pt;}
.ws1{word-spacing:-18.776064pt;}
.ws2{word-spacing:-18.087936pt;}
.ws3{word-spacing:-15.826944pt;}
.wsc{word-spacing:-14.080000pt;}
.wsa2{word-spacing:-11.900000pt;}
.ws52{word-spacing:-11.853333pt;}
.ws23{word-spacing:-11.620000pt;}
.ws20{word-spacing:-11.386667pt;}
.ws1e{word-spacing:-10.920000pt;}
.ws78{word-spacing:-10.686667pt;}
.ws96{word-spacing:-10.220000pt;}
.ws83{word-spacing:-9.386667pt;}
.ws62{word-spacing:-9.173333pt;}
.ws6d{word-spacing:-9.045333pt;}
.ws5{word-spacing:-8.960000pt;}
.wsc5{word-spacing:-8.736000pt;}
.ws98{word-spacing:-8.533333pt;}
.ws7{word-spacing:-8.106667pt;}
.ws6{word-spacing:-7.978667pt;}
.ws22{word-spacing:-6.937768pt;}
.ws79{word-spacing:-6.910561pt;}
.ws24{word-spacing:-6.774526pt;}
.ws21{word-spacing:-6.638492pt;}
.ws8d{word-spacing:-6.366422pt;}
.ws9{word-spacing:-6.203120pt;}
.ws84{word-spacing:-5.472427pt;}
.wsb{word-spacing:-5.348053pt;}
.wsa{word-spacing:-5.169267pt;}
.ws65{word-spacing:-1.960000pt;}
.wsba{word-spacing:-1.866667pt;}
.wsa8{word-spacing:-1.820000pt;}
.ws1d{word-spacing:-1.726667pt;}
.wsbb{word-spacing:-1.633333pt;}
.ws72{word-spacing:-1.586667pt;}
.wsb5{word-spacing:-1.540000pt;}
.wsb8{word-spacing:-1.493333pt;}
.ws95{word-spacing:-1.446667pt;}
.ws61{word-spacing:-1.400000pt;}
.ws1a{word-spacing:-1.306667pt;}
.wsc0{word-spacing:-1.260000pt;}
.ws53{word-spacing:-1.213333pt;}
.ws41{word-spacing:-1.166667pt;}
.ws88{word-spacing:-1.120000pt;}
.wsaa{word-spacing:-1.073333pt;}
.ws8a{word-spacing:-1.026667pt;}
.ws48{word-spacing:-0.980000pt;}
.ws3f{word-spacing:-0.933333pt;}
.wsc4{word-spacing:-0.886667pt;}
.ws59{word-spacing:-0.840000pt;}
.wsc1{word-spacing:-0.793333pt;}
.ws9b{word-spacing:-0.746667pt;}
.wsf{word-spacing:-0.704000pt;}
.ws85{word-spacing:-0.700000pt;}
.ws35{word-spacing:-0.640000pt;}
.ws45{word-spacing:-0.606667pt;}
.ws46{word-spacing:-0.560000pt;}
.ws9a{word-spacing:-0.513333pt;}
.ws28{word-spacing:-0.466667pt;}
.ws42{word-spacing:-0.420000pt;}
.wsb3{word-spacing:-0.373333pt;}
.ws90{word-spacing:-0.326667pt;}
.wsa1{word-spacing:-0.298667pt;}
.ws33{word-spacing:-0.280000pt;}
.wsa0{word-spacing:-0.256000pt;}
.wsab{word-spacing:-0.233333pt;}
.ws89{word-spacing:-0.213333pt;}
.ws8b{word-spacing:-0.186667pt;}
.ws2d{word-spacing:-0.140000pt;}
.ws8{word-spacing:-0.117333pt;}
.ws1b{word-spacing:-0.093333pt;}
.wsa3{word-spacing:-0.046667pt;}
.ws4{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.046667pt;}
.ws94{word-spacing:0.093333pt;}
.ws17{word-spacing:0.140000pt;}
.ws6c{word-spacing:0.186667pt;}
.ws3c{word-spacing:0.233333pt;}
.wsbe{word-spacing:0.326667pt;}
.ws66{word-spacing:0.373333pt;}
.ws10{word-spacing:0.426667pt;}
.ws36{word-spacing:0.466667pt;}
.ws1c{word-spacing:0.513333pt;}
.ws9d{word-spacing:0.560000pt;}
.ws2c{word-spacing:0.606667pt;}
.wsd{word-spacing:0.653333pt;}
.ws64{word-spacing:0.700000pt;}
.ws56{word-spacing:0.746667pt;}
.ws5d{word-spacing:0.793333pt;}
.ws4f{word-spacing:0.840000pt;}
.ws74{word-spacing:0.886667pt;}
.wsae{word-spacing:0.980000pt;}
.wsb7{word-spacing:1.026667pt;}
.wsa7{word-spacing:1.073333pt;}
.ws71{word-spacing:1.120000pt;}
.ws99{word-spacing:1.166667pt;}
.wsbc{word-spacing:1.213333pt;}
.ws2a{word-spacing:1.306667pt;}
.ws49{word-spacing:1.353333pt;}
.ws75{word-spacing:1.400000pt;}
.ws38{word-spacing:1.446667pt;}
.ws9c{word-spacing:1.493333pt;}
.ws19{word-spacing:1.586667pt;}
.ws30{word-spacing:1.633333pt;}
.ws5b{word-spacing:1.680000pt;}
.wsad{word-spacing:1.726667pt;}
.ws44{word-spacing:1.773333pt;}
.ws76{word-spacing:1.820000pt;}
.ws57{word-spacing:1.866667pt;}
.ws2b{word-spacing:1.913333pt;}
.ws6e{word-spacing:1.960000pt;}
.ws6b{word-spacing:2.006667pt;}
.wsb4{word-spacing:2.053333pt;}
.ws14{word-spacing:2.100000pt;}
.ws91{word-spacing:2.146667pt;}
.ws4d{word-spacing:2.193333pt;}
.ws87{word-spacing:2.240000pt;}
.ws8f{word-spacing:2.286667pt;}
.ws69{word-spacing:2.333333pt;}
.ws73{word-spacing:2.426667pt;}
.ws4e{word-spacing:2.473333pt;}
.ws4c{word-spacing:2.520000pt;}
.ws50{word-spacing:2.566667pt;}
.ws47{word-spacing:2.613333pt;}
.ws40{word-spacing:2.660000pt;}
.ws7e{word-spacing:2.706667pt;}
.ws60{word-spacing:2.753333pt;}
.ws68{word-spacing:2.846667pt;}
.wsb6{word-spacing:2.893333pt;}
.ws54{word-spacing:2.940000pt;}
.wsb2{word-spacing:2.986667pt;}
.ws58{word-spacing:3.080000pt;}
.ws13{word-spacing:3.126667pt;}
.ws5a{word-spacing:3.173333pt;}
.ws16{word-spacing:3.220000pt;}
.ws6f{word-spacing:3.266667pt;}
.wsbf{word-spacing:3.313333pt;}
.ws4a{word-spacing:3.453333pt;}
.ws7f{word-spacing:3.500000pt;}
.ws34{word-spacing:3.546667pt;}
.ws9e{word-spacing:3.593333pt;}
.ws7a{word-spacing:3.686667pt;}
.ws93{word-spacing:3.733333pt;}
.wsa5{word-spacing:3.780000pt;}
.wsa6{word-spacing:3.826667pt;}
.wsac{word-spacing:3.873333pt;}
.wsb1{word-spacing:3.920000pt;}
.ws3b{word-spacing:3.966667pt;}
.ws2f{word-spacing:4.013333pt;}
.ws37{word-spacing:4.060000pt;}
.ws8c{word-spacing:4.153333pt;}
.ws92{word-spacing:4.200000pt;}
.ws63{word-spacing:4.246667pt;}
.ws2e{word-spacing:4.433333pt;}
.wsbd{word-spacing:4.573333pt;}
.ws6a{word-spacing:4.666667pt;}
.ws27{word-spacing:4.713333pt;}
.ws15{word-spacing:4.760000pt;}
.ws39{word-spacing:4.900000pt;}
.ws80{word-spacing:4.946667pt;}
.ws7c{word-spacing:4.993333pt;}
.ws3a{word-spacing:5.180000pt;}
.ws51{word-spacing:5.226667pt;}
.ws8e{word-spacing:5.320000pt;}
.ws67{word-spacing:5.366667pt;}
.wsb0{word-spacing:5.413333pt;}
.ws43{word-spacing:5.460000pt;}
.ws29{word-spacing:5.553333pt;}
.wsb9{word-spacing:5.600000pt;}
.ws81{word-spacing:5.646667pt;}
.ws4b{word-spacing:5.693333pt;}
.wsa9{word-spacing:5.740000pt;}
.ws5c{word-spacing:5.880000pt;}
.ws9f{word-spacing:5.926667pt;}
.ws18{word-spacing:6.020000pt;}
.ws77{word-spacing:6.160000pt;}
.ws55{word-spacing:6.393333pt;}
.ws7d{word-spacing:6.486667pt;}
.ws3d{word-spacing:6.533333pt;}
.ws70{word-spacing:6.766667pt;}
.wsa4{word-spacing:6.813333pt;}
.ws32{word-spacing:7.000000pt;}
.ws3e{word-spacing:7.046667pt;}
.wsc6{word-spacing:7.140000pt;}
.ws11{word-spacing:7.373333pt;}
.wsaf{word-spacing:7.420000pt;}
.ws82{word-spacing:7.560000pt;}
.ws86{word-spacing:7.653333pt;}
.ws5f{word-spacing:7.700000pt;}
.ws5e{word-spacing:8.166667pt;}
.wsc3{word-spacing:8.306667pt;}
.ws26{word-spacing:8.446667pt;}
.ws12{word-spacing:8.726667pt;}
.ws25{word-spacing:9.006667pt;}
.ws31{word-spacing:9.100000pt;}
.ws7b{word-spacing:9.146667pt;}
.wse{word-spacing:12.160000pt;}
._5{margin-left:-2704.000000pt;}
._d{margin-left:-6.849867pt;}
._7{margin-left:-5.163979pt;}
._6{margin-left:-3.546667pt;}
._3{margin-left:-2.162688pt;}
._2{margin-left:-1.114112pt;}
._0{width:1.114112pt;}
._1{width:2.359296pt;}
._b{width:3.406667pt;}
._9{width:4.846224pt;}
._8{width:5.824597pt;}
._c{width:6.719595pt;}
._a{width:8.306667pt;}
._e{width:21.429333pt;}
._4{width:91.750401pt;}
.fsa{font-size:24.874667pt;}
.fsd{font-size:27.206933pt;}
.fs9{font-size:29.538667pt;}
.fse{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:46.666667pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs3{font-size:57.344000pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:65.536001pt;}
.fs4{font-size:94.208001pt;}
.fs1{font-size:98.304001pt;}
.fs0{font-size:114.688001pt;}
.fs7{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:13.562665pt;}
.y56{bottom:24.135467pt;}
.y19{bottom:24.173200pt;}
.y57{bottom:24.178133pt;}
.y15{bottom:25.600005pt;}
.y18{bottom:30.719999pt;}
.y14{bottom:47.104005pt;}
.y135{bottom:58.890200pt;}
.y17a{bottom:58.940200pt;}
.yd5{bottom:58.945200pt;}
.y9e{bottom:58.950200pt;}
.y47{bottom:58.960200pt;}
.yeb{bottom:58.975200pt;}
.yba{bottom:59.000200pt;}
.y164{bottom:59.005200pt;}
.y15c{bottom:59.020200pt;}
.y28{bottom:59.021733pt;}
.y8d{bottom:59.030200pt;}
.y1b4{bottom:60.857867pt;}
.y13{bottom:68.608005pt;}
.y27{bottom:73.688400pt;}
.y1b3{bottom:74.195200pt;}
.y134{bottom:75.561867pt;}
.y179{bottom:75.611867pt;}
.yd4{bottom:75.616867pt;}
.y9d{bottom:75.621867pt;}
.y46{bottom:75.631867pt;}
.yea{bottom:75.646867pt;}
.y8c{bottom:75.656867pt;}
.yb9{bottom:75.671867pt;}
.y163{bottom:75.676867pt;}
.y15b{bottom:75.691867pt;}
.y17{bottom:75.776000pt;}
.y1b2{bottom:87.532533pt;}
.y26{bottom:88.355067pt;}
.y12{bottom:90.112005pt;}
.y133{bottom:92.233533pt;}
.y178{bottom:92.283533pt;}
.yd3{bottom:92.288533pt;}
.y9c{bottom:92.293533pt;}
.y45{bottom:92.303533pt;}
.ye9{bottom:92.318533pt;}
.y8b{bottom:92.328533pt;}
.yb8{bottom:92.343533pt;}
.y162{bottom:92.348533pt;}
.y15a{bottom:92.363533pt;}
.y1b1{bottom:100.869867pt;}
.y25{bottom:103.021733pt;}
.y132{bottom:108.905200pt;}
.y177{bottom:108.955200pt;}
.yd2{bottom:108.960200pt;}
.y9b{bottom:108.965200pt;}
.y44{bottom:108.975200pt;}
.ye8{bottom:108.990200pt;}
.y8a{bottom:109.000200pt;}
.yb7{bottom:109.015200pt;}
.y161{bottom:109.020200pt;}
.y159{bottom:109.030200pt;}
.y11{bottom:111.616005pt;}
.y1b0{bottom:114.207200pt;}
.y24{bottom:125.251067pt;}
.y131{bottom:125.576867pt;}
.y176{bottom:125.626867pt;}
.yd1{bottom:125.631867pt;}
.y9a{bottom:125.636867pt;}
.y43{bottom:125.646867pt;}
.ye7{bottom:125.661867pt;}
.y89{bottom:125.671867pt;}
.yb6{bottom:125.686867pt;}
.y160{bottom:125.691867pt;}
.y158{bottom:125.696867pt;}
.y1af{bottom:127.544533pt;}
.y10{bottom:133.120006pt;}
.y23{bottom:139.917733pt;}
.y1ae{bottom:140.881867pt;}
.y130{bottom:142.248533pt;}
.y175{bottom:142.298533pt;}
.yd0{bottom:142.303533pt;}
.y99{bottom:142.308533pt;}
.y42{bottom:142.318533pt;}
.ye6{bottom:142.333533pt;}
.y88{bottom:142.343533pt;}
.yb5{bottom:142.358533pt;}
.y15f{bottom:142.363533pt;}
.y157{bottom:142.368533pt;}
.y1ad{bottom:154.219200pt;}
.y22{bottom:154.584400pt;}
.yf{bottom:154.624006pt;}
.y15e{bottom:158.800200pt;}
.y12f{bottom:158.920200pt;}
.y174{bottom:158.970200pt;}
.ycf{bottom:158.975200pt;}
.y98{bottom:158.980200pt;}
.y41{bottom:158.990200pt;}
.ye5{bottom:159.005200pt;}
.y87{bottom:159.015200pt;}
.yb4{bottom:159.030200pt;}
.y156{bottom:159.035200pt;}
.y1ac{bottom:167.556533pt;}
.y15d{bottom:175.471867pt;}
.y12e{bottom:175.591867pt;}
.yb3{bottom:175.641867pt;}
.yce{bottom:175.646867pt;}
.y97{bottom:175.651867pt;}
.y40{bottom:175.661867pt;}
.ye4{bottom:175.676867pt;}
.y86{bottom:175.686867pt;}
.y10e{bottom:175.701867pt;}
.ye{bottom:176.128006pt;}
.y21{bottom:176.813733pt;}
.y1ab{bottom:180.893867pt;}
.y20{bottom:191.480400pt;}
.y155{bottom:192.143533pt;}
.y12d{bottom:192.263533pt;}
.yb2{bottom:192.313533pt;}
.ycd{bottom:192.318533pt;}
.y96{bottom:192.323533pt;}
.y3f{bottom:192.333533pt;}
.ye3{bottom:192.348533pt;}
.y85{bottom:192.358533pt;}
.y10d{bottom:192.368533pt;}
.y1aa{bottom:194.231200pt;}
.yd{bottom:197.632006pt;}
.y1a9{bottom:207.568533pt;}
.y154{bottom:208.815200pt;}
.y12c{bottom:208.935200pt;}
.yb1{bottom:208.985200pt;}
.ycc{bottom:208.990200pt;}
.y95{bottom:208.995200pt;}
.y3e{bottom:209.005200pt;}
.ye2{bottom:209.020200pt;}
.y84{bottom:209.030200pt;}
.y1f{bottom:213.709733pt;}
.yc{bottom:219.136006pt;}
.y1a8{bottom:220.905867pt;}
.y153{bottom:225.486867pt;}
.y12b{bottom:225.606867pt;}
.yb0{bottom:225.656867pt;}
.ycb{bottom:225.661867pt;}
.y94{bottom:225.666867pt;}
.y3d{bottom:225.676867pt;}
.ye1{bottom:225.691867pt;}
.y83{bottom:225.696867pt;}
.y1e{bottom:228.376400pt;}
.y1a7{bottom:234.243200pt;}
.yb{bottom:240.640006pt;}
.y152{bottom:242.158533pt;}
.y12a{bottom:242.278533pt;}
.yaf{bottom:242.328533pt;}
.yca{bottom:242.333533pt;}
.y93{bottom:242.338533pt;}
.y82{bottom:242.343533pt;}
.y3c{bottom:242.348533pt;}
.ye0{bottom:242.363533pt;}
.y1d{bottom:243.043067pt;}
.y1a6{bottom:247.580533pt;}
.y151{bottom:258.830200pt;}
.y129{bottom:258.950200pt;}
.yae{bottom:259.000200pt;}
.yc9{bottom:259.005200pt;}
.y92{bottom:259.010200pt;}
.y81{bottom:259.015200pt;}
.y3b{bottom:259.020200pt;}
.yf8{bottom:259.035200pt;}
.y1a5{bottom:260.917867pt;}
.ya{bottom:262.144007pt;}
.y1c{bottom:265.272400pt;}
.y1a4{bottom:274.255200pt;}
.y150{bottom:275.501867pt;}
.y128{bottom:275.621867pt;}
.yad{bottom:275.671867pt;}
.yc8{bottom:275.676867pt;}
.y91{bottom:275.681867pt;}
.y80{bottom:275.686867pt;}
.y3a{bottom:275.691867pt;}
.y1b{bottom:279.939067pt;}
.y9{bottom:283.648007pt;}
.y1a3{bottom:287.592533pt;}
.y14f{bottom:292.173533pt;}
.y127{bottom:292.293533pt;}
.yac{bottom:292.343533pt;}
.yc7{bottom:292.348533pt;}
.y90{bottom:292.353533pt;}
.y7f{bottom:292.358533pt;}
.y39{bottom:292.363533pt;}
.y10c{bottom:294.135467pt;}
.y1a2{bottom:300.929867pt;}
.y8{bottom:305.152007pt;}
.y102{bottom:305.656000pt;}
.y10b{bottom:307.468800pt;}
.y14e{bottom:308.845200pt;}
.y126{bottom:308.965200pt;}
.yab{bottom:309.015200pt;}
.yc6{bottom:309.020200pt;}
.y8f{bottom:309.025200pt;}
.y7e{bottom:309.030200pt;}
.y38{bottom:309.035200pt;}
.y1a1{bottom:314.267200pt;}
.y101{bottom:318.989333pt;}
.y10a{bottom:320.802133pt;}
.y14d{bottom:325.516867pt;}
.y125{bottom:325.636867pt;}
.yaa{bottom:325.686867pt;}
.yc5{bottom:325.691867pt;}
.y7d{bottom:325.696867pt;}
.y37{bottom:325.701867pt;}
.y7{bottom:326.656007pt;}
.y1a0{bottom:327.604533pt;}
.y100{bottom:332.322667pt;}
.y109{bottom:334.135467pt;}
.y19f{bottom:340.941867pt;}
.y14c{bottom:342.188533pt;}
.y124{bottom:342.308533pt;}
.ya9{bottom:342.358533pt;}
.y7c{bottom:342.363533pt;}
.y8e{bottom:342.368533pt;}
.yff{bottom:345.656000pt;}
.y108{bottom:347.468800pt;}
.y1{bottom:347.498656pt;}
.y19e{bottom:354.279200pt;}
.yf7{bottom:357.392800pt;}
.y14b{bottom:358.860200pt;}
.y7b{bottom:358.970200pt;}
.y123{bottom:358.980200pt;}
.yfe{bottom:358.989333pt;}
.ya8{bottom:359.030200pt;}
.yc4{bottom:359.035200pt;}
.y107{bottom:360.802133pt;}
.y19d{bottom:367.616533pt;}
.y6{bottom:368.640007pt;}
.yf6{bottom:370.726133pt;}
.yfd{bottom:372.322667pt;}
.y106{bottom:374.135467pt;}
.y14a{bottom:375.531867pt;}
.y7a{bottom:375.641867pt;}
.y122{bottom:375.651867pt;}
.y173{bottom:375.681867pt;}
.ya7{bottom:375.701867pt;}
.ya6{bottom:378.244667pt;}
.y19c{bottom:380.953867pt;}
.yf5{bottom:384.059467pt;}
.yfc{bottom:385.656000pt;}
.y105{bottom:387.468800pt;}
.ya5{bottom:391.578000pt;}
.y149{bottom:392.203533pt;}
.y79{bottom:392.313533pt;}
.y121{bottom:392.323533pt;}
.y172{bottom:392.353533pt;}
.y19b{bottom:394.291200pt;}
.ydf{bottom:395.419867pt;}
.yf4{bottom:397.392800pt;}
.yfb{bottom:398.989333pt;}
.y104{bottom:400.802133pt;}
.y117{bottom:401.712933pt;}
.ya4{bottom:404.911333pt;}
.y19a{bottom:407.628533pt;}
.yde{bottom:408.753200pt;}
.y148{bottom:408.875200pt;}
.y78{bottom:408.985200pt;}
.y120{bottom:408.995200pt;}
.y171{bottom:409.025200pt;}
.y5{bottom:410.624008pt;}
.yf3{bottom:410.726133pt;}
.yc3{bottom:410.993333pt;}
.yfa{bottom:412.322667pt;}
.y103{bottom:414.135467pt;}
.y116{bottom:415.046267pt;}
.ya3{bottom:418.244667pt;}
.y199{bottom:420.965867pt;}
.y55{bottom:421.029667pt;}
.ydd{bottom:422.086533pt;}
.yf2{bottom:424.059467pt;}
.yc2{bottom:424.326667pt;}
.y147{bottom:425.546867pt;}
.yf9{bottom:425.656000pt;}
.y77{bottom:425.656867pt;}
.y11f{bottom:425.666867pt;}
.y170{bottom:425.696867pt;}
.y115{bottom:428.379600pt;}
.ya2{bottom:431.578000pt;}
.y198{bottom:434.303200pt;}
.ydc{bottom:435.419867pt;}
.yf1{bottom:437.392800pt;}
.yc1{bottom:437.660000pt;}
.y54{bottom:437.701333pt;}
.y114{bottom:441.712933pt;}
.y146{bottom:442.218533pt;}
.y76{bottom:442.328533pt;}
.y11e{bottom:442.338533pt;}
.y16f{bottom:442.348533pt;}
.ya1{bottom:444.911333pt;}
.y197{bottom:447.640533pt;}
.ydb{bottom:448.753200pt;}
.yf0{bottom:450.726133pt;}
.yc0{bottom:450.993333pt;}
.y53{bottom:454.373000pt;}
.y4{bottom:454.656008pt;}
.y113{bottom:455.046267pt;}
.ya0{bottom:458.244667pt;}
.y145{bottom:458.890200pt;}
.y75{bottom:459.000200pt;}
.y11d{bottom:459.010200pt;}
.y16e{bottom:459.020200pt;}
.y196{bottom:460.977867pt;}
.yda{bottom:462.086533pt;}
.yef{bottom:464.059467pt;}
.ybf{bottom:464.326667pt;}
.y112{bottom:468.379600pt;}
.y52{bottom:471.044667pt;}
.y9f{bottom:471.578000pt;}
.y195{bottom:474.315200pt;}
.yd9{bottom:475.419867pt;}
.y144{bottom:475.561867pt;}
.y74{bottom:475.671867pt;}
.y11c{bottom:475.681867pt;}
.y16d{bottom:475.691867pt;}
.yee{bottom:477.392800pt;}
.ybe{bottom:477.660000pt;}
.y111{bottom:481.712933pt;}
.y1d8{bottom:485.574933pt;}
.y194{bottom:487.652533pt;}
.y51{bottom:487.716333pt;}
.yd8{bottom:488.753200pt;}
.yed{bottom:490.726133pt;}
.ybd{bottom:490.993333pt;}
.y143{bottom:492.233533pt;}
.y73{bottom:492.343533pt;}
.y11b{bottom:492.353533pt;}
.y16c{bottom:492.363533pt;}
.y110{bottom:495.046267pt;}
.y1d7{bottom:498.912267pt;}
.y193{bottom:500.989867pt;}
.yd7{bottom:502.086533pt;}
.yec{bottom:504.059467pt;}
.ybc{bottom:504.326667pt;}
.y50{bottom:504.388000pt;}
.y3{bottom:507.904008pt;}
.y10f{bottom:508.379600pt;}
.y142{bottom:508.905200pt;}
.y72{bottom:509.015200pt;}
.y16b{bottom:509.020200pt;}
.y11a{bottom:509.025200pt;}
.y1d6{bottom:512.249600pt;}
.y192{bottom:514.327200pt;}
.yd6{bottom:515.419867pt;}
.ybb{bottom:517.660000pt;}
.y4f{bottom:521.059667pt;}
.y141{bottom:525.576867pt;}
.y1d5{bottom:525.586933pt;}
.y71{bottom:525.686867pt;}
.y16a{bottom:525.691867pt;}
.y119{bottom:525.696867pt;}
.y191{bottom:527.664533pt;}
.y4e{bottom:537.731333pt;}
.y1d4{bottom:538.924267pt;}
.y190{bottom:541.001867pt;}
.y140{bottom:542.248533pt;}
.y70{bottom:542.358533pt;}
.y169{bottom:542.363533pt;}
.y118{bottom:542.368533pt;}
.y2{bottom:545.792009pt;}
.y1d3{bottom:552.261600pt;}
.y18f{bottom:554.339200pt;}
.y4d{bottom:554.403000pt;}
.y13f{bottom:558.920200pt;}
.y168{bottom:559.015200pt;}
.y6f{bottom:559.030200pt;}
.y1d2{bottom:565.598933pt;}
.y18e{bottom:567.676533pt;}
.y4c{bottom:571.074667pt;}
.y13e{bottom:575.591867pt;}
.y167{bottom:575.686867pt;}
.y6e{bottom:575.701867pt;}
.y1d1{bottom:578.936267pt;}
.y18d{bottom:581.013867pt;}
.y4b{bottom:587.746333pt;}
.y13b{bottom:591.799467pt;}
.y13d{bottom:592.263533pt;}
.y1d0{bottom:592.273600pt;}
.y166{bottom:592.358533pt;}
.y6d{bottom:592.368533pt;}
.y18c{bottom:594.351200pt;}
.y4a{bottom:604.418000pt;}
.y13a{bottom:605.132800pt;}
.y1cf{bottom:605.610933pt;}
.y18b{bottom:607.688533pt;}
.y13c{bottom:608.935200pt;}
.y165{bottom:609.030200pt;}
.y139{bottom:618.466133pt;}
.y1ce{bottom:618.948267pt;}
.y18a{bottom:621.025867pt;}
.y49{bottom:621.089667pt;}
.y6c{bottom:625.606867pt;}
.y138{bottom:631.799467pt;}
.y1cd{bottom:632.285600pt;}
.y189{bottom:634.363200pt;}
.y48{bottom:637.761333pt;}
.y6b{bottom:642.278533pt;}
.y137{bottom:645.132800pt;}
.y1cc{bottom:645.622933pt;}
.y136{bottom:658.466133pt;}
.y6a{bottom:658.950200pt;}
.y1cb{bottom:658.960267pt;}
.y1ca{bottom:672.297600pt;}
.y69{bottom:675.621867pt;}
.y188{bottom:675.673533pt;}
.y36{bottom:678.296133pt;}
.y1c9{bottom:685.634933pt;}
.y68{bottom:692.293533pt;}
.y187{bottom:692.345200pt;}
.y35{bottom:695.629467pt;}
.y1c8{bottom:698.972267pt;}
.y67{bottom:708.965200pt;}
.y186{bottom:709.016867pt;}
.y1c7{bottom:712.309600pt;}
.y34{bottom:716.514800pt;}
.y66{bottom:725.636867pt;}
.y1c6{bottom:725.646933pt;}
.y33{bottom:730.296133pt;}
.y1c5{bottom:738.984267pt;}
.y65{bottom:742.308533pt;}
.y185{bottom:742.348533pt;}
.y32{bottom:747.629467pt;}
.y1c4{bottom:752.321600pt;}
.y64{bottom:758.980200pt;}
.y184{bottom:759.020200pt;}
.y1c3{bottom:765.658933pt;}
.y31{bottom:768.514800pt;}
.y63{bottom:775.651867pt;}
.y183{bottom:775.691867pt;}
.y1c2{bottom:778.996267pt;}
.y30{bottom:782.296133pt;}
.y62{bottom:792.323533pt;}
.y1c1{bottom:792.333600pt;}
.y182{bottom:792.363533pt;}
.y2f{bottom:799.629467pt;}
.y1c0{bottom:805.670933pt;}
.y61{bottom:808.995200pt;}
.y181{bottom:809.035200pt;}
.y1bf{bottom:819.008267pt;}
.y2e{bottom:820.514800pt;}
.y60{bottom:825.666867pt;}
.y180{bottom:825.701867pt;}
.y1be{bottom:832.345600pt;}
.y2d{bottom:838.301467pt;}
.y5f{bottom:842.338533pt;}
.y1bd{bottom:845.682933pt;}
.y2c{bottom:855.634800pt;}
.y5e{bottom:859.010200pt;}
.y17f{bottom:859.015200pt;}
.y1bc{bottom:859.020267pt;}
.y1bb{bottom:872.357600pt;}
.y2b{bottom:872.962800pt;}
.y5d{bottom:875.681867pt;}
.y17e{bottom:875.686867pt;}
.y1ba{bottom:885.694933pt;}
.y5c{bottom:892.353533pt;}
.y17d{bottom:892.358533pt;}
.y1b9{bottom:899.032267pt;}
.y2a{bottom:905.033600pt;}
.y5b{bottom:909.025200pt;}
.y17c{bottom:909.030200pt;}
.y1b8{bottom:912.369600pt;}
.y5a{bottom:925.696867pt;}
.y17b{bottom:925.701867pt;}
.y1b7{bottom:925.706933pt;}
.y29{bottom:937.036267pt;}
.y1b6{bottom:939.044267pt;}
.y59{bottom:942.368533pt;}
.y1b5{bottom:952.381600pt;}
.y1a{bottom:1002.998667pt;}
.y58{bottom:1003.204800pt;}
.hf{height:17.561515pt;}
.h11{height:30.122667pt;}
.h10{height:31.769515pt;}
.h15{height:32.512000pt;}
.h1a{height:33.273333pt;}
.h20{height:33.376000pt;}
.ha{height:33.888000pt;}
.hb{height:34.133333pt;}
.h14{height:35.560000pt;}
.h9{height:35.925333pt;}
.he{height:39.359131pt;}
.hd{height:39.380464pt;}
.h13{height:41.720000pt;}
.h17{height:41.740000pt;}
.h1c{height:41.780000pt;}
.h1f{height:41.800000pt;}
.h18{height:41.820000pt;}
.h19{height:41.900000pt;}
.h1b{height:41.960000pt;}
.h16{height:41.980000pt;}
.h1e{height:42.100000pt;}
.h5{height:42.504000pt;}
.h1d{height:42.660000pt;}
.h12{height:45.184000pt;}
.h4{height:48.576000pt;}
.h7{height:69.828001pt;}
.h3{height:72.864001pt;}
.h2{height:85.008001pt;}
.hc{height:89.408000pt;}
.h6{height:118.784000pt;}
.h1{height:657.408010pt;}
.h0{height:1042.666667pt;}
.h8{height:1044.000000pt;}
.w1{width:663.552010pt;}
.w0{width:778.666667pt;}
.w2{width:780.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.072000pt;}
.x3{left:8.192000pt;}
.x7{left:52.002533pt;}
.x1{left:57.344001pt;}
.x2{left:133.120001pt;}
.x8{left:206.319867pt;}
.xe{left:224.134933pt;}
.x9{left:226.316533pt;}
.xa{left:243.795600pt;}
.x6{left:589.734533pt;}
.xc{left:715.773733pt;}
.xd{left:717.672400pt;}
.xb{left:722.653600pt;}
.x5{left:723.901600pt;}
}




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