
    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_a6e7a6479ada06822906ea9c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_37d5cfe27a7c56512e07556f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_73835988b2674411cdb55b87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730957;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_6e4c6322164c69635df288ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_292b96d90dab259b8d1bc1f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_e7f0454098dc003b44f6585d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925781;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_a6e7a6479ada06822906ea9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.113281;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_95290a6ca4ed7e874c7e7225.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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_a6e7a6479ada06822906ea9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113281;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_a6e7a6479ada06822906ea9c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113281;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_b9fead46cb18adc610de09dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_a6e7a6479ada06822906ea9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.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);}
.v3{vertical-align:-36.600000px;}
.v8{vertical-align:-17.982000px;}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.000000px;}
.v6{vertical-align:12.000000px;}
.v9{vertical-align:13.986000px;}
.v1{vertical-align:17.982000px;}
.v7{vertical-align:30.000000px;}
.v2{vertical-align:42.425400px;}
.ls7{letter-spacing:-6.090000px;}
.lsa{letter-spacing:-5.460000px;}
.ls14{letter-spacing:-3.552000px;}
.lsb{letter-spacing:-2.329668px;}
.ls15{letter-spacing:-0.864000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000600px;}
.ls3{letter-spacing:0.004608px;}
.ls4{letter-spacing:0.005208px;}
.ls0{letter-spacing:0.011400px;}
.ls2{letter-spacing:0.017400px;}
.ls5{letter-spacing:0.024000px;}
.ls1a{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.762204px;}
.lsd{letter-spacing:1.242000px;}
.ls8{letter-spacing:1.680000px;}
.ls16{letter-spacing:2.260200px;}
.lsc{letter-spacing:13.497204px;}
.ls9{letter-spacing:70.027800px;}
.lse{letter-spacing:129.009600px;}
.ls11{letter-spacing:219.921600px;}
.lsf{letter-spacing:224.485200px;}
.ls10{letter-spacing:243.808800px;}
.ls13{letter-spacing:246.616800px;}
.ls12{letter-spacing:273.312000px;}
.ls17{letter-spacing:373.306800px;}
.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;}
}
.ws1{word-spacing:-26.688000px;}
.wsf{word-spacing:-16.254000px;}
.ws9{word-spacing:-15.012000px;}
.ws0{word-spacing:-13.344000px;}
.ws4e{word-spacing:-12.012000px;}
.ws4f{word-spacing:-11.676000px;}
.ws2{word-spacing:-10.008000px;}
.ws25{word-spacing:-9.792000px;}
.ws3{word-spacing:-8.751996px;}
.ws4d{word-spacing:-6.807108px;}
.ws7{word-spacing:-1.680000px;}
.wsd{word-spacing:-1.620000px;}
.wsb{word-spacing:-0.918000px;}
.ws4c{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.432000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.702000px;}
.ws6{word-spacing:0.912000px;}
.ws10{word-spacing:1.674000px;}
.wse{word-spacing:2.329668px;}
.ws1b{word-spacing:3.516000px;}
.ws1f{word-spacing:4.488600px;}
.wsa{word-spacing:5.460000px;}
.ws5{word-spacing:6.090000px;}
.ws1d{word-spacing:10.488600px;}
.ws1c{word-spacing:10.489200px;}
.ws22{word-spacing:100.603800px;}
.ws1e{word-spacing:109.943400px;}
.ws35{word-spacing:129.224400px;}
.ws28{word-spacing:129.931200px;}
.ws33{word-spacing:129.938400px;}
.ws23{word-spacing:135.015000px;}
.ws11{word-spacing:139.188600px;}
.ws31{word-spacing:156.619200px;}
.ws2d{word-spacing:156.626400px;}
.ws20{word-spacing:158.535600px;}
.ws2e{word-spacing:177.912600px;}
.ws2a{word-spacing:177.919800px;}
.ws26{word-spacing:184.453200px;}
.ws32{word-spacing:185.004000px;}
.ws17{word-spacing:192.683400px;}
.ws27{word-spacing:202.256400px;}
.ws29{word-spacing:202.418400px;}
.ws39{word-spacing:206.577600px;}
.ws38{word-spacing:206.584800px;}
.ws2c{word-spacing:207.339000px;}
.ws19{word-spacing:219.371400px;}
.ws15{word-spacing:219.378600px;}
.ws2f{word-spacing:230.464800px;}
.ws36{word-spacing:233.272800px;}
.ws3a{word-spacing:259.968000px;}
.ws3b{word-spacing:259.975200px;}
.ws47{word-spacing:333.274800px;}
.ws42{word-spacing:340.864200px;}
.ws48{word-spacing:344.742600px;}
.ws4b{word-spacing:359.956200px;}
.ws41{word-spacing:363.997200px;}
.ws49{word-spacing:371.438400px;}
.ws4a{word-spacing:377.973000px;}
.ws46{word-spacing:378.106800px;}
.ws24{word-spacing:419.018400px;}
.ws18{word-spacing:419.731800px;}
.ws16{word-spacing:419.779800px;}
.ws14{word-spacing:430.435800px;}
.ws1a{word-spacing:443.779800px;}
.ws13{word-spacing:449.107800px;}
.ws12{word-spacing:475.795800px;}
.ws34{word-spacing:488.497800px;}
.ws3c{word-spacing:514.247400px;}
.ws40{word-spacing:516.300000px;}
.ws43{word-spacing:520.654800px;}
.ws3e{word-spacing:526.915200px;}
.ws30{word-spacing:543.344400px;}
.ws37{word-spacing:543.575400px;}
.ws3f{word-spacing:553.587600px;}
.ws3d{word-spacing:553.596000px;}
.ws45{word-spacing:568.351200px;}
.ws2b{word-spacing:572.713200px;}
.ws44{word-spacing:595.047000px;}
.ws21{word-spacing:728.767200px;}
._2{margin-left:-6.258000px;}
._3{margin-left:-5.250000px;}
._9{margin-left:-4.054200px;}
._7{margin-left:-2.947200px;}
._6{margin-left:-1.867200px;}
._5{width:1.075200px;}
._4{width:2.358600px;}
._1{width:3.502800px;}
._8{width:4.514400px;}
._0{width:6.098400px;}
._d{width:7.225200px;}
._f{width:8.229600px;}
._c{width:10.146600px;}
._10{width:11.167200px;}
._a{width:12.873600px;}
._13{width:13.883400px;}
._82{width:14.994000px;}
._e{width:16.669800px;}
._11{width:17.674200px;}
._81{width:18.921000px;}
._83{width:20.260800px;}
._86{width:21.281400px;}
._12{width:23.160600px;}
._24{width:28.164000px;}
._85{width:30.881400px;}
._84{width:34.243800px;}
._80{width:38.346000px;}
._14{width:62.602200px;}
._b{width:70.038000px;}
._4b{width:89.328600px;}
._2b{width:97.373400px;}
._4d{width:101.204400px;}
._2c{width:105.323400px;}
._2e{width:107.176200px;}
._30{width:108.334800px;}
._32{width:113.543400px;}
._61{width:115.976400px;}
._4c{width:124.449600px;}
._50{width:134.480400px;}
._2a{width:144.052800px;}
._4f{width:148.335600px;}
._2d{width:149.665200px;}
._1a{width:152.556000px;}
._38{width:153.972000px;}
._27{width:156.531600px;}
._28{width:159.846600px;}
._56{width:164.735400px;}
._5d{width:171.102000px;}
._3c{width:176.365800px;}
._4e{width:179.919000px;}
._25{width:183.884400px;}
._26{width:185.197200px;}
._5f{width:186.532800px;}
._5e{width:188.912400px;}
._53{width:191.965800px;}
._51{width:196.830600px;}
._3f{width:199.884000px;}
._1f{width:203.727600px;}
._62{width:206.647800px;}
._60{width:210.163200px;}
._59{width:211.558800px;}
._43{width:213.219600px;}
._52{width:215.600400px;}
._18{width:216.801600px;}
._5a{width:218.716200px;}
._54{width:220.675800px;}
._58{width:224.485200px;}
._3e{width:227.323800px;}
._1e{width:232.722600px;}
._16{width:236.827800px;}
._1d{width:238.686600px;}
._40{width:240.231600px;}
._37{width:243.093000px;}
._41{width:244.633200px;}
._6a{width:245.846400px;}
._63{width:247.023600px;}
._1c{width:250.440000px;}
._19{width:253.457400px;}
._20{width:257.103000px;}
._3d{width:262.505400px;}
._1b{width:265.900800px;}
._45{width:267.348000px;}
._64{width:272.572200px;}
._65{width:274.249200px;}
._48{width:276.397800px;}
._22{width:278.076000px;}
._23{width:279.601800px;}
._2f{width:288.284400px;}
._17{width:291.378600px;}
._21{width:343.615800px;}
._70{width:358.086600px;}
._74{width:373.314600px;}
._7e{width:384.782400px;}
._71{width:391.324800px;}
._7a{width:395.478600px;}
._31{width:409.886400px;}
._6b{width:414.883200px;}
._33{width:419.689800px;}
._78{width:430.059000px;}
._4a{width:431.424600px;}
._72{width:447.139200px;}
._6d{width:459.282600px;}
._76{width:472.952400px;}
._7f{width:484.531800px;}
._77{width:488.339400px;}
._67{width:527.543400px;}
._66{width:538.247400px;}
._6c{width:540.250800px;}
._68{width:551.591400px;}
._5b{width:556.736400px;}
._55{width:559.369200px;}
._57{width:567.392400px;}
._46{width:569.768400px;}
._42{width:572.401200px;}
._69{width:573.826200px;}
._44{width:580.424400px;}
._79{width:586.255800px;}
._47{width:593.768400px;}
._39{width:595.547400px;}
._35{width:598.180200px;}
._3b{width:601.750800px;}
._5c{width:602.971200px;}
._36{width:606.203400px;}
._49{width:616.003200px;}
._7d{width:618.209400px;}
._3a{width:619.547400px;}
._34{width:624.868200px;}
._75{width:667.091400px;}
._29{width:669.982800px;}
._73{width:695.537400px;}
._7c{width:714.209400px;}
._6f{width:724.865400px;}
._6e{width:732.618000px;}
._15{width:779.322000px;}
._7b{width:989.231400px;}
.fc3{color:rgb(37,74,165);}
.fc1{color:rgb(145,143,143);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:24.486000px;}
.fs5{font-size:31.482000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:45.676500px;}
.y3d{bottom:46.480200px;}
.y3e{bottom:46.780950px;}
.y2{bottom:47.572200px;}
.y143{bottom:84.468900px;}
.y225{bottom:84.711600px;}
.y27{bottom:85.313850px;}
.y1c6{bottom:85.722750px;}
.y121{bottom:87.683400px;}
.ye8{bottom:87.683550px;}
.y78{bottom:88.675650px;}
.yb0{bottom:88.941150px;}
.y1eb{bottom:91.348350px;}
.y26{bottom:98.813850px;}
.y142{bottom:99.468900px;}
.y1a9{bottom:102.730650px;}
.y224{bottom:102.973350px;}
.y1c5{bottom:103.722750px;}
.y120{bottom:105.683400px;}
.ye7{bottom:105.683550px;}
.y77{bottom:106.675650px;}
.yaf{bottom:106.941150px;}
.y25{bottom:112.313850px;}
.y1e9{bottom:112.608300px;}
.y1c4{bottom:121.722750px;}
.y11f{bottom:123.683400px;}
.ye6{bottom:123.683550px;}
.y1a8{bottom:123.990450px;}
.y223{bottom:124.233300px;}
.y76{bottom:124.675650px;}
.yae{bottom:124.941150px;}
.y24{bottom:125.813850px;}
.y1ea{bottom:133.868100px;}
.y152{bottom:136.202700px;}
.y23{bottom:139.313850px;}
.y1c3{bottom:139.722750px;}
.y11e{bottom:141.683400px;}
.ye5{bottom:141.683550px;}
.y159{bottom:142.448250px;}
.y75{bottom:142.675650px;}
.yad{bottom:142.941150px;}
.y1a7{bottom:145.250400px;}
.y222{bottom:145.493100px;}
.y22{bottom:152.813850px;}
.y1e8{bottom:155.127900px;}
.y156{bottom:157.448250px;}
.y1c2{bottom:157.722750px;}
.y11d{bottom:159.683400px;}
.ye4{bottom:159.683550px;}
.y74{bottom:160.675650px;}
.yac{bottom:160.941150px;}
.y21{bottom:166.313850px;}
.y1a6{bottom:166.510200px;}
.y14e{bottom:166.598250px;}
.y221{bottom:166.752900px;}
.y1c1{bottom:175.722750px;}
.y1e7{bottom:176.387700px;}
.y11c{bottom:177.683400px;}
.y73{bottom:178.675650px;}
.yab{bottom:178.941150px;}
.y20{bottom:179.813850px;}
.y150{bottom:179.852700px;}
.y154{bottom:181.502700px;}
.y1a5{bottom:187.770000px;}
.y220{bottom:188.012700px;}
.y14d{bottom:191.513400px;}
.y1f{bottom:193.313850px;}
.y1c0{bottom:193.722750px;}
.y11b{bottom:195.683400px;}
.ye3{bottom:195.683550px;}
.y72{bottom:196.675650px;}
.yaa{bottom:196.941150px;}
.y1e6{bottom:197.647650px;}
.y1e{bottom:206.813850px;}
.y1a4{bottom:209.029950px;}
.y21f{bottom:209.272650px;}
.y1bf{bottom:211.722750px;}
.y11a{bottom:213.683400px;}
.ye2{bottom:213.683550px;}
.y71{bottom:214.675650px;}
.ya9{bottom:214.941150px;}
.y14c{bottom:216.428400px;}
.y1e5{bottom:218.907450px;}
.y1d{bottom:220.313850px;}
.y1be{bottom:229.722750px;}
.y1a3{bottom:230.289750px;}
.y21e{bottom:230.532450px;}
.y119{bottom:231.683400px;}
.ye1{bottom:231.683550px;}
.y70{bottom:232.675650px;}
.ya8{bottom:232.941150px;}
.y151{bottom:239.852700px;}
.y1e4{bottom:240.476250px;}
.y14b{bottom:241.343400px;}
.y1bd{bottom:247.722750px;}
.y153{bottom:249.002700px;}
.y118{bottom:249.683400px;}
.ye0{bottom:249.683550px;}
.y6f{bottom:250.675650px;}
.ya7{bottom:250.941150px;}
.y1a2{bottom:251.549550px;}
.y21d{bottom:251.792250px;}
.y155{bottom:255.152700px;}
.y1e3{bottom:261.927000px;}
.y1bc{bottom:265.722750px;}
.y14a{bottom:266.258400px;}
.y117{bottom:267.683400px;}
.ydf{bottom:267.683550px;}
.y6e{bottom:268.675650px;}
.ya6{bottom:268.941150px;}
.y1a0{bottom:271.687350px;}
.y21b{bottom:271.930050px;}
.y1e2{bottom:276.927000px;}
.y3b{bottom:278.692650px;}
.y19f{bottom:279.187350px;}
.y21a{bottom:279.430050px;}
.y1bb{bottom:283.722750px;}
.y116{bottom:285.683400px;}
.yde{bottom:285.683550px;}
.y6d{bottom:286.675650px;}
.y1a1{bottom:286.687350px;}
.y21c{bottom:286.930050px;}
.ya5{bottom:286.941150px;}
.y149{bottom:291.173400px;}
.y1e1{bottom:291.927000px;}
.y3a{bottom:293.692650px;}
.y1ba{bottom:301.722750px;}
.y115{bottom:303.683400px;}
.ydd{bottom:303.683550px;}
.y6c{bottom:304.675650px;}
.ya4{bottom:304.941150px;}
.y19e{bottom:306.563400px;}
.y219{bottom:306.806100px;}
.y39{bottom:308.692650px;}
.y1e0{bottom:312.807000px;}
.y148{bottom:316.088400px;}
.y1b9{bottom:319.722750px;}
.y114{bottom:321.683400px;}
.ydc{bottom:321.683550px;}
.y6b{bottom:322.675650px;}
.ya3{bottom:322.941150px;}
.y38{bottom:323.692650px;}
.y1df{bottom:327.807000px;}
.y20d{bottom:334.368600px;}
.y176{bottom:337.692300px;}
.y1b8{bottom:337.722750px;}
.y191{bottom:337.805550px;}
.y37{bottom:338.692650px;}
.y113{bottom:339.683400px;}
.ydb{bottom:339.683550px;}
.y6a{bottom:340.675650px;}
.ya2{bottom:340.941150px;}
.y147{bottom:341.003400px;}
.y20c{bottom:352.368600px;}
.y36{bottom:353.692650px;}
.y175{bottom:355.692300px;}
.y1b7{bottom:355.722750px;}
.y190{bottom:355.805550px;}
.y112{bottom:357.683400px;}
.yda{bottom:357.683550px;}
.y69{bottom:358.675650px;}
.ya1{bottom:358.941150px;}
.y146{bottom:365.918400px;}
.y35{bottom:368.692650px;}
.y20b{bottom:370.368600px;}
.y174{bottom:373.692300px;}
.y1b6{bottom:373.722750px;}
.y18f{bottom:373.805550px;}
.y111{bottom:375.683400px;}
.yd9{bottom:375.683550px;}
.y68{bottom:376.675650px;}
.ya0{bottom:376.941150px;}
.y34{bottom:383.692650px;}
.y20a{bottom:388.368600px;}
.y145{bottom:390.833250px;}
.y173{bottom:391.692300px;}
.y1b5{bottom:391.722750px;}
.y18e{bottom:391.805550px;}
.y110{bottom:393.683400px;}
.yd8{bottom:393.683550px;}
.y67{bottom:394.675650px;}
.y9f{bottom:394.941150px;}
.y33{bottom:398.692650px;}
.y209{bottom:406.368600px;}
.y172{bottom:409.692300px;}
.y1b4{bottom:409.722750px;}
.y10f{bottom:411.683400px;}
.yd7{bottom:411.683550px;}
.y66{bottom:412.675650px;}
.y9e{bottom:412.941150px;}
.y32{bottom:413.692650px;}
.y14f{bottom:413.852700px;}
.y144{bottom:415.748400px;}
.y208{bottom:424.368600px;}
.y171{bottom:427.692300px;}
.y1b3{bottom:427.722750px;}
.y18d{bottom:427.805550px;}
.y31{bottom:428.692650px;}
.y10e{bottom:429.683400px;}
.yd6{bottom:429.683550px;}
.y65{bottom:430.675650px;}
.y9d{bottom:430.941150px;}
.y207{bottom:442.368600px;}
.y30{bottom:443.692650px;}
.y158{bottom:444.098400px;}
.y170{bottom:445.692300px;}
.y1b2{bottom:445.722750px;}
.y18c{bottom:445.805550px;}
.y10d{bottom:447.683400px;}
.yd5{bottom:447.683550px;}
.y64{bottom:448.675650px;}
.y9c{bottom:448.941150px;}
.y2f{bottom:458.692650px;}
.y157{bottom:459.098400px;}
.y206{bottom:460.368600px;}
.y16f{bottom:463.692300px;}
.y1b1{bottom:463.722750px;}
.y18b{bottom:463.805550px;}
.y10c{bottom:465.683400px;}
.yd4{bottom:465.683550px;}
.y63{bottom:466.675650px;}
.y9b{bottom:466.941150px;}
.y2e{bottom:473.692650px;}
.y205{bottom:478.368600px;}
.y16e{bottom:481.692300px;}
.y1b0{bottom:481.722750px;}
.y18a{bottom:481.805550px;}
.y10b{bottom:483.683400px;}
.yd3{bottom:483.683550px;}
.y62{bottom:484.675650px;}
.y9a{bottom:484.941150px;}
.y2d{bottom:488.692650px;}
.y204{bottom:496.368600px;}
.y12f{bottom:498.884250px;}
.y16d{bottom:499.692300px;}
.y1af{bottom:499.722750px;}
.y189{bottom:499.805550px;}
.y10a{bottom:501.683400px;}
.yd2{bottom:501.683550px;}
.y61{bottom:502.675650px;}
.y99{bottom:502.941150px;}
.y2c{bottom:503.692650px;}
.y203{bottom:514.368600px;}
.y12e{bottom:516.884250px;}
.y16c{bottom:517.692300px;}
.y1ae{bottom:517.722750px;}
.y188{bottom:517.805550px;}
.y2b{bottom:518.692650px;}
.y109{bottom:519.683400px;}
.yd1{bottom:519.683550px;}
.y60{bottom:520.675650px;}
.y98{bottom:520.941150px;}
.y202{bottom:532.368600px;}
.y12d{bottom:534.884250px;}
.y16b{bottom:535.692300px;}
.y1ad{bottom:535.722750px;}
.y187{bottom:535.805550px;}
.y108{bottom:537.683400px;}
.yd0{bottom:537.683550px;}
.y5f{bottom:538.675650px;}
.y97{bottom:538.941150px;}
.y16{bottom:542.428950px;}
.y201{bottom:550.368600px;}
.y12c{bottom:552.884250px;}
.y16a{bottom:553.692300px;}
.y1ac{bottom:553.722750px;}
.y186{bottom:553.805550px;}
.y107{bottom:555.683400px;}
.ycf{bottom:555.683550px;}
.y5e{bottom:556.675650px;}
.y96{bottom:556.941150px;}
.y15{bottom:557.428950px;}
.y200{bottom:568.368600px;}
.y12b{bottom:570.884250px;}
.y169{bottom:571.692300px;}
.y1ab{bottom:571.722750px;}
.y185{bottom:571.805550px;}
.y14{bottom:572.428950px;}
.y106{bottom:573.683400px;}
.yce{bottom:573.683550px;}
.y5d{bottom:574.675650px;}
.y95{bottom:574.941150px;}
.y1ff{bottom:586.368600px;}
.y13{bottom:587.428950px;}
.y12a{bottom:588.884250px;}
.y168{bottom:589.692300px;}
.y1aa{bottom:589.722750px;}
.y184{bottom:589.805550px;}
.y105{bottom:591.683400px;}
.ycd{bottom:591.683550px;}
.y5c{bottom:592.675650px;}
.y94{bottom:592.941150px;}
.y12{bottom:602.428950px;}
.y1fe{bottom:604.368600px;}
.y129{bottom:606.884250px;}
.y167{bottom:607.692300px;}
.y183{bottom:607.805550px;}
.y104{bottom:609.683400px;}
.ycc{bottom:609.683550px;}
.y5b{bottom:610.675650px;}
.y93{bottom:610.941150px;}
.y1de{bottom:617.002350px;}
.y11{bottom:617.428950px;}
.y1fd{bottom:622.368600px;}
.y128{bottom:624.884250px;}
.y166{bottom:625.692300px;}
.y182{bottom:625.805550px;}
.y103{bottom:627.683400px;}
.ycb{bottom:627.683550px;}
.y5a{bottom:628.675650px;}
.y92{bottom:628.941150px;}
.y10{bottom:632.428950px;}
.y1dd{bottom:635.264100px;}
.y1fc{bottom:640.368600px;}
.y130{bottom:642.884250px;}
.y165{bottom:643.692300px;}
.y181{bottom:643.805550px;}
.y102{bottom:645.683400px;}
.yca{bottom:645.683550px;}
.y59{bottom:646.675650px;}
.y91{bottom:646.941150px;}
.yf{bottom:647.428950px;}
.y1dc{bottom:656.523900px;}
.y1fb{bottom:658.368600px;}
.y127{bottom:660.884250px;}
.y164{bottom:661.692300px;}
.y180{bottom:661.805550px;}
.ye{bottom:662.428950px;}
.y101{bottom:663.683400px;}
.yc9{bottom:663.683550px;}
.y58{bottom:664.675650px;}
.y90{bottom:664.941150px;}
.y1fa{bottom:676.368600px;}
.yd{bottom:677.428950px;}
.y1db{bottom:677.783700px;}
.y126{bottom:678.884250px;}
.y163{bottom:679.692300px;}
.y17f{bottom:679.805550px;}
.y100{bottom:681.683400px;}
.yc8{bottom:681.683550px;}
.y57{bottom:682.675650px;}
.y8f{bottom:682.941150px;}
.yc{bottom:692.428950px;}
.y1f9{bottom:694.368600px;}
.y125{bottom:696.884250px;}
.y162{bottom:697.692300px;}
.y17e{bottom:697.805550px;}
.y1da{bottom:699.043650px;}
.yff{bottom:699.683400px;}
.yc7{bottom:699.683550px;}
.y56{bottom:700.675650px;}
.y8e{bottom:700.941150px;}
.yb{bottom:707.428950px;}
.y1f8{bottom:712.368600px;}
.y124{bottom:714.884250px;}
.y161{bottom:715.692300px;}
.y17d{bottom:715.805550px;}
.yfe{bottom:717.683400px;}
.yc6{bottom:717.683550px;}
.y55{bottom:718.675650px;}
.y8d{bottom:718.941150px;}
.y1d9{bottom:720.303450px;}
.ya{bottom:722.428950px;}
.y1f7{bottom:730.368600px;}
.y123{bottom:732.884250px;}
.y160{bottom:733.692300px;}
.y17c{bottom:733.805550px;}
.yfd{bottom:735.683400px;}
.yc5{bottom:735.683550px;}
.y54{bottom:736.675650px;}
.y8c{bottom:736.941150px;}
.y9{bottom:737.428950px;}
.y1d8{bottom:741.563250px;}
.y1f6{bottom:748.368600px;}
.y15f{bottom:751.692300px;}
.y17b{bottom:751.805550px;}
.y8{bottom:752.428950px;}
.yfc{bottom:753.683400px;}
.yc4{bottom:753.683550px;}
.y53{bottom:754.675650px;}
.y8b{bottom:754.941150px;}
.y251{bottom:756.859650px;}
.y238{bottom:758.183400px;}
.y141{bottom:760.350150px;}
.y1d7{bottom:762.823200px;}
.y1f5{bottom:766.368600px;}
.y7{bottom:767.428950px;}
.y15e{bottom:769.692300px;}
.y17a{bottom:769.805550px;}
.y250{bottom:770.359650px;}
.yfb{bottom:771.683400px;}
.yc3{bottom:771.683550px;}
.y52{bottom:772.675650px;}
.y8a{bottom:772.941150px;}
.y140{bottom:778.588500px;}
.y6{bottom:782.428950px;}
.y24f{bottom:783.859650px;}
.y1d6{bottom:784.083000px;}
.y1f4{bottom:784.368600px;}
.y237{bottom:785.183400px;}
.y15d{bottom:787.692300px;}
.y179{bottom:787.805550px;}
.y13f{bottom:789.194850px;}
.yfa{bottom:789.683400px;}
.yc2{bottom:789.683550px;}
.y51{bottom:790.675650px;}
.y89{bottom:790.941150px;}
.y24e{bottom:797.359650px;}
.y5{bottom:797.428950px;}
.y236{bottom:798.683400px;}
.y1f3{bottom:802.368600px;}
.y1d5{bottom:805.342800px;}
.y15c{bottom:805.692300px;}
.y178{bottom:805.805550px;}
.yf9{bottom:807.683400px;}
.yc1{bottom:807.683550px;}
.y50{bottom:808.675650px;}
.y88{bottom:808.941150px;}
.y24d{bottom:810.859650px;}
.y235{bottom:812.183400px;}
.y4{bottom:812.428950px;}
.y1f2{bottom:820.368600px;}
.y13e{bottom:821.014200px;}
.y15b{bottom:823.692300px;}
.y177{bottom:823.805550px;}
.y24c{bottom:824.359650px;}
.yf8{bottom:825.683400px;}
.yc0{bottom:825.683550px;}
.y1d4{bottom:826.340850px;}
.y4f{bottom:826.675650px;}
.y87{bottom:826.941150px;}
.y13d{bottom:831.620700px;}
.y24b{bottom:837.859650px;}
.y2a{bottom:838.343550px;}
.y1f1{bottom:838.368600px;}
.y234{bottom:839.183400px;}
.y1d3{bottom:841.340850px;}
.yf7{bottom:843.683400px;}
.ybf{bottom:843.683550px;}
.y4e{bottom:844.675650px;}
.y86{bottom:844.941150px;}
.y19d{bottom:850.944600px;}
.y24a{bottom:851.359650px;}
.y29{bottom:851.843550px;}
.y233{bottom:852.683400px;}
.y1f0{bottom:856.368600px;}
.yf6{bottom:861.683400px;}
.ybe{bottom:861.683550px;}
.y4d{bottom:862.675650px;}
.y85{bottom:862.941150px;}
.y13c{bottom:863.439900px;}
.y249{bottom:864.859650px;}
.y232{bottom:866.183400px;}
.y28{bottom:866.843550px;}
.y19c{bottom:869.206350px;}
.y1d2{bottom:872.436900px;}
.y13b{bottom:874.046400px;}
.y1ef{bottom:874.368600px;}
.y248{bottom:878.359650px;}
.yf5{bottom:879.683400px;}
.ybd{bottom:879.683550px;}
.y4c{bottom:880.675650px;}
.y84{bottom:880.941150px;}
.y19b{bottom:890.466300px;}
.y1d1{bottom:890.698800px;}
.y247{bottom:891.859650px;}
.y1ee{bottom:892.368600px;}
.y231{bottom:893.183400px;}
.yf4{bottom:897.683400px;}
.ybc{bottom:897.683550px;}
.y4b{bottom:898.675650px;}
.y83{bottom:898.941150px;}
.y246{bottom:905.359650px;}
.y13a{bottom:905.865600px;}
.y230{bottom:906.683400px;}
.y1c{bottom:907.826550px;}
.y1ed{bottom:910.368600px;}
.y19a{bottom:911.726100px;}
.y1d0{bottom:911.958600px;}
.yf3{bottom:915.683400px;}
.ybb{bottom:915.683550px;}
.y139{bottom:916.472100px;}
.y4a{bottom:916.675650px;}
.y82{bottom:916.941150px;}
.y245{bottom:918.859650px;}
.y22f{bottom:920.183400px;}
.y1ec{bottom:928.368600px;}
.y244{bottom:932.359650px;}
.y199{bottom:932.985900px;}
.y1cf{bottom:933.218400px;}
.yf2{bottom:933.683400px;}
.yba{bottom:933.683550px;}
.y49{bottom:934.675650px;}
.y81{bottom:934.941150px;}
.y1b{bottom:937.826550px;}
.y243{bottom:945.859650px;}
.y22e{bottom:947.183400px;}
.y138{bottom:948.291300px;}
.yf1{bottom:951.683400px;}
.yb9{bottom:951.683550px;}
.y48{bottom:952.675650px;}
.y80{bottom:952.941150px;}
.y198{bottom:954.245700px;}
.y1ce{bottom:954.478200px;}
.y137{bottom:958.897650px;}
.y242{bottom:959.359650px;}
.y218{bottom:959.720550px;}
.y22d{bottom:960.683400px;}
.y1a{bottom:967.826550px;}
.yf0{bottom:969.683400px;}
.yb8{bottom:969.683550px;}
.y47{bottom:970.675650px;}
.y7f{bottom:970.941150px;}
.y241{bottom:972.859650px;}
.y22c{bottom:974.183400px;}
.y197{bottom:975.505500px;}
.y1cd{bottom:975.738150px;}
.y216{bottom:976.860150px;}
.y215{bottom:984.360150px;}
.y240{bottom:986.359650px;}
.y1{bottom:987.271650px;}
.yef{bottom:987.683400px;}
.yb7{bottom:987.683550px;}
.y46{bottom:988.675650px;}
.y7e{bottom:988.941150px;}
.y136{bottom:990.717000px;}
.y217{bottom:991.860150px;}
.y196{bottom:996.765450px;}
.y1cc{bottom:996.997950px;}
.y23f{bottom:999.859650px;}
.y22b{bottom:1001.183400px;}
.y135{bottom:1001.323500px;}
.yee{bottom:1005.683400px;}
.yb6{bottom:1005.683550px;}
.y45{bottom:1006.675650px;}
.y7d{bottom:1006.941150px;}
.y213{bottom:1010.875950px;}
.y23e{bottom:1013.359650px;}
.y22a{bottom:1014.683400px;}
.y195{bottom:1018.025250px;}
.y1cb{bottom:1018.257900px;}
.y212{bottom:1018.375950px;}
.yed{bottom:1023.683400px;}
.yb5{bottom:1023.683550px;}
.y44{bottom:1024.675650px;}
.y7c{bottom:1024.941150px;}
.y214{bottom:1025.875950px;}
.y23d{bottom:1026.859650px;}
.y19{bottom:1027.826550px;}
.y229{bottom:1028.183400px;}
.y134{bottom:1033.142700px;}
.y194{bottom:1039.285200px;}
.y1ca{bottom:1039.517700px;}
.y23c{bottom:1040.359650px;}
.yec{bottom:1041.683400px;}
.yb4{bottom:1041.683550px;}
.y43{bottom:1042.675650px;}
.y7b{bottom:1042.941150px;}
.y133{bottom:1043.749200px;}
.y211{bottom:1045.895550px;}
.y193{bottom:1049.915100px;}
.y20f{bottom:1053.395550px;}
.y23b{bottom:1053.859650px;}
.y228{bottom:1055.183400px;}
.y18{bottom:1057.826550px;}
.yeb{bottom:1059.683400px;}
.yb3{bottom:1059.683550px;}
.y42{bottom:1060.675650px;}
.y1c9{bottom:1060.777500px;}
.y20e{bottom:1060.895550px;}
.y7a{bottom:1060.941150px;}
.y23a{bottom:1067.359650px;}
.y227{bottom:1068.683400px;}
.y132{bottom:1075.568550px;}
.y210{bottom:1075.895550px;}
.yea{bottom:1077.683400px;}
.yb2{bottom:1077.683550px;}
.y41{bottom:1078.675650px;}
.y79{bottom:1078.941150px;}
.y239{bottom:1080.859650px;}
.y192{bottom:1081.543050px;}
.y1c8{bottom:1081.775550px;}
.y3c{bottom:1082.161500px;}
.y226{bottom:1082.183400px;}
.y17{bottom:1087.826550px;}
.ye9{bottom:1095.683400px;}
.yb1{bottom:1095.683550px;}
.y131{bottom:1096.543050px;}
.y40{bottom:1096.675650px;}
.y1c7{bottom:1096.775550px;}
.y3f{bottom:1137.658800px;}
.y122{bottom:1137.658950px;}
.y15a{bottom:1137.906900px;}
.h8{height:32.273438px;}
.h9{height:32.501953px;}
.h4{height:34.500000px;}
.h3{height:37.652344px;}
.h2{height:37.918945px;}
.h13{height:38.812500px;}
.h6{height:43.031250px;}
.h5{height:43.335938px;}
.he{height:43.652344px;}
.ha{height:48.410156px;}
.hb{height:48.752930px;}
.hf{height:55.652344px;}
.h12{height:73.031250px;}
.h11{height:73.335938px;}
.hc{height:85.456650px;}
.hd{height:85.457250px;}
.h10{height:85.855538px;}
.h7{height:86.671875px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w1{width:850.500000px;}
.w0{width:850.692000px;}
.x0{left:0.000000px;}
.x6{left:6.660600px;}
.x4{left:42.519750px;}
.x20{left:46.771800px;}
.x22{left:50.380500px;}
.x5{left:57.401550px;}
.x4c{left:63.779550px;}
.xa{left:85.039350px;}
.xe{left:89.171850px;}
.x2e{left:93.139350px;}
.x10{left:99.810600px;}
.x11{left:106.484400px;}
.x12{left:136.513800px;}
.x13{left:153.970050px;}
.x4b{left:158.953350px;}
.xd{left:160.405800px;}
.x1c{left:184.136400px;}
.x2{left:194.512050px;}
.x37{left:201.473100px;}
.x9{left:202.925400px;}
.x21{left:204.321000px;}
.x38{left:211.122450px;}
.x23{left:220.832550px;}
.x8{left:237.140400px;}
.xf{left:240.796650px;}
.x14{left:245.376900px;}
.x1b{left:250.588200px;}
.x42{left:266.189700px;}
.x24{left:292.004250px;}
.x25{left:311.029650px;}
.x3a{left:316.560600px;}
.x15{left:317.770050px;}
.x43{left:331.737000px;}
.x44{left:369.055350px;}
.x17{left:381.070050px;}
.x26{left:385.471350px;}
.x3{left:392.924400px;}
.x1d{left:399.828900px;}
.x16{left:409.176750px;}
.xc{left:413.085900px;}
.x39{left:422.855550px;}
.x7{left:435.177450px;}
.x45{left:442.393800px;}
.x27{left:450.850350px;}
.xb{left:455.605500px;}
.x3f{left:457.923900px;}
.x35{left:460.105500px;}
.x3b{left:474.605550px;}
.x46{left:475.727850px;}
.x18{left:481.420050px;}
.x28{left:488.647050px;}
.x1e{left:501.040050px;}
.x29{left:511.000500px;}
.x36{left:533.511000px;}
.x3c{left:539.745750px;}
.x48{left:552.553500px;}
.x3d{left:556.468350px;}
.x2f{left:562.106250px;}
.x47{left:569.908950px;}
.x19{left:572.826900px;}
.x2a{left:582.172200px;}
.x31{left:586.487100px;}
.x3e{left:587.780850px;}
.x2b{left:601.197600px;}
.x30{left:615.842550px;}
.x49{left:659.053650px;}
.x2c{left:676.605900px;}
.x32{left:689.112750px;}
.x34{left:692.880300px;}
.x4a{left:724.397400px;}
.x1a{left:726.220050px;}
.x1f{left:730.024800px;}
.x40{left:737.171550px;}
.x2d{left:738.650700px;}
.x41{left:742.527000px;}
.x33{left:764.247600px;}
.x1{left:844.218150px;}
@media print{
.v3{vertical-align:-32.533333pt;}
.v8{vertical-align:-15.984000pt;}
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.333333pt;}
.v6{vertical-align:10.666667pt;}
.v9{vertical-align:12.432000pt;}
.v1{vertical-align:15.984000pt;}
.v7{vertical-align:26.666667pt;}
.v2{vertical-align:37.711467pt;}
.ls7{letter-spacing:-5.413333pt;}
.lsa{letter-spacing:-4.853333pt;}
.ls14{letter-spacing:-3.157333pt;}
.lsb{letter-spacing:-2.070816pt;}
.ls15{letter-spacing:-0.768000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000533pt;}
.ls3{letter-spacing:0.004096pt;}
.ls4{letter-spacing:0.004629pt;}
.ls0{letter-spacing:0.010133pt;}
.ls2{letter-spacing:0.015467pt;}
.ls5{letter-spacing:0.021333pt;}
.ls1a{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.677515pt;}
.lsd{letter-spacing:1.104000pt;}
.ls8{letter-spacing:1.493333pt;}
.ls16{letter-spacing:2.009067pt;}
.lsc{letter-spacing:11.997515pt;}
.ls9{letter-spacing:62.246933pt;}
.lse{letter-spacing:114.675200pt;}
.ls11{letter-spacing:195.485867pt;}
.lsf{letter-spacing:199.542400pt;}
.ls10{letter-spacing:216.718933pt;}
.ls13{letter-spacing:219.214933pt;}
.ls12{letter-spacing:242.944000pt;}
.ls17{letter-spacing:331.828267pt;}
.ws1{word-spacing:-23.722667pt;}
.wsf{word-spacing:-14.448000pt;}
.ws9{word-spacing:-13.344000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws4e{word-spacing:-10.677333pt;}
.ws4f{word-spacing:-10.378667pt;}
.ws2{word-spacing:-8.896000pt;}
.ws25{word-spacing:-8.704000pt;}
.ws3{word-spacing:-7.779552pt;}
.ws4d{word-spacing:-6.050763pt;}
.ws7{word-spacing:-1.493333pt;}
.wsd{word-spacing:-1.440000pt;}
.wsb{word-spacing:-0.816000pt;}
.ws4c{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.384000pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.624000pt;}
.ws6{word-spacing:0.810667pt;}
.ws10{word-spacing:1.488000pt;}
.wse{word-spacing:2.070816pt;}
.ws1b{word-spacing:3.125333pt;}
.ws1f{word-spacing:3.989867pt;}
.wsa{word-spacing:4.853333pt;}
.ws5{word-spacing:5.413333pt;}
.ws1d{word-spacing:9.323200pt;}
.ws1c{word-spacing:9.323733pt;}
.ws22{word-spacing:89.425600pt;}
.ws1e{word-spacing:97.727467pt;}
.ws35{word-spacing:114.866133pt;}
.ws28{word-spacing:115.494400pt;}
.ws33{word-spacing:115.500800pt;}
.ws23{word-spacing:120.013333pt;}
.ws11{word-spacing:123.723200pt;}
.ws31{word-spacing:139.217067pt;}
.ws2d{word-spacing:139.223467pt;}
.ws20{word-spacing:140.920533pt;}
.ws2e{word-spacing:158.144533pt;}
.ws2a{word-spacing:158.150933pt;}
.ws26{word-spacing:163.958400pt;}
.ws32{word-spacing:164.448000pt;}
.ws17{word-spacing:171.274133pt;}
.ws27{word-spacing:179.783467pt;}
.ws29{word-spacing:179.927467pt;}
.ws39{word-spacing:183.624533pt;}
.ws38{word-spacing:183.630933pt;}
.ws2c{word-spacing:184.301333pt;}
.ws19{word-spacing:194.996800pt;}
.ws15{word-spacing:195.003200pt;}
.ws2f{word-spacing:204.857600pt;}
.ws36{word-spacing:207.353600pt;}
.ws3a{word-spacing:231.082667pt;}
.ws3b{word-spacing:231.089067pt;}
.ws47{word-spacing:296.244267pt;}
.ws42{word-spacing:302.990400pt;}
.ws48{word-spacing:306.437867pt;}
.ws4b{word-spacing:319.961067pt;}
.ws41{word-spacing:323.553067pt;}
.ws49{word-spacing:330.167467pt;}
.ws4a{word-spacing:335.976000pt;}
.ws46{word-spacing:336.094933pt;}
.ws24{word-spacing:372.460800pt;}
.ws18{word-spacing:373.094933pt;}
.ws16{word-spacing:373.137600pt;}
.ws14{word-spacing:382.609600pt;}
.ws1a{word-spacing:394.470933pt;}
.ws13{word-spacing:399.206933pt;}
.ws12{word-spacing:422.929600pt;}
.ws34{word-spacing:434.220267pt;}
.ws3c{word-spacing:457.108800pt;}
.ws40{word-spacing:458.933333pt;}
.ws43{word-spacing:462.804267pt;}
.ws3e{word-spacing:468.369067pt;}
.ws30{word-spacing:482.972800pt;}
.ws37{word-spacing:483.178133pt;}
.ws3f{word-spacing:492.077867pt;}
.ws3d{word-spacing:492.085333pt;}
.ws45{word-spacing:505.201067pt;}
.ws2b{word-spacing:509.078400pt;}
.ws44{word-spacing:528.930667pt;}
.ws21{word-spacing:647.793067pt;}
._2{margin-left:-5.562667pt;}
._3{margin-left:-4.666667pt;}
._9{margin-left:-3.603733pt;}
._7{margin-left:-2.619733pt;}
._6{margin-left:-1.659733pt;}
._5{width:0.955733pt;}
._4{width:2.096533pt;}
._1{width:3.113600pt;}
._8{width:4.012800pt;}
._0{width:5.420800pt;}
._d{width:6.422400pt;}
._f{width:7.315200pt;}
._c{width:9.019200pt;}
._10{width:9.926400pt;}
._a{width:11.443200pt;}
._13{width:12.340800pt;}
._82{width:13.328000pt;}
._e{width:14.817600pt;}
._11{width:15.710400pt;}
._81{width:16.818667pt;}
._83{width:18.009600pt;}
._86{width:18.916800pt;}
._12{width:20.587200pt;}
._24{width:25.034667pt;}
._85{width:27.450133pt;}
._84{width:30.438933pt;}
._80{width:34.085333pt;}
._14{width:55.646400pt;}
._b{width:62.256000pt;}
._4b{width:79.403200pt;}
._2b{width:86.554133pt;}
._4d{width:89.959467pt;}
._2c{width:93.620800pt;}
._2e{width:95.267733pt;}
._30{width:96.297600pt;}
._32{width:100.927467pt;}
._61{width:103.090133pt;}
._4c{width:110.621867pt;}
._50{width:119.538133pt;}
._2a{width:128.046933pt;}
._4f{width:131.853867pt;}
._2d{width:133.035733pt;}
._1a{width:135.605333pt;}
._38{width:136.864000pt;}
._27{width:139.139200pt;}
._28{width:142.085867pt;}
._56{width:146.431467pt;}
._5d{width:152.090667pt;}
._3c{width:156.769600pt;}
._4e{width:159.928000pt;}
._25{width:163.452800pt;}
._26{width:164.619733pt;}
._5f{width:165.806933pt;}
._5e{width:167.922133pt;}
._53{width:170.636267pt;}
._51{width:174.960533pt;}
._3f{width:177.674667pt;}
._1f{width:181.091200pt;}
._62{width:183.686933pt;}
._60{width:186.811733pt;}
._59{width:188.052267pt;}
._43{width:189.528533pt;}
._52{width:191.644800pt;}
._18{width:192.712533pt;}
._5a{width:194.414400pt;}
._54{width:196.156267pt;}
._58{width:199.542400pt;}
._3e{width:202.065600pt;}
._1e{width:206.864533pt;}
._16{width:210.513600pt;}
._1d{width:212.165867pt;}
._40{width:213.539200pt;}
._37{width:216.082667pt;}
._41{width:217.451733pt;}
._6a{width:218.530133pt;}
._63{width:219.576533pt;}
._1c{width:222.613333pt;}
._19{width:225.295467pt;}
._20{width:228.536000pt;}
._3d{width:233.338133pt;}
._1b{width:236.356267pt;}
._45{width:237.642667pt;}
._64{width:242.286400pt;}
._65{width:243.777067pt;}
._48{width:245.686933pt;}
._22{width:247.178667pt;}
._23{width:248.534933pt;}
._2f{width:256.252800pt;}
._17{width:259.003200pt;}
._21{width:305.436267pt;}
._70{width:318.299200pt;}
._74{width:331.835200pt;}
._7e{width:342.028800pt;}
._71{width:347.844267pt;}
._7a{width:351.536533pt;}
._31{width:364.343467pt;}
._6b{width:368.785067pt;}
._33{width:373.057600pt;}
._78{width:382.274667pt;}
._4a{width:383.488533pt;}
._72{width:397.457067pt;}
._6d{width:408.251200pt;}
._76{width:420.402133pt;}
._7f{width:430.694933pt;}
._77{width:434.079467pt;}
._67{width:468.927467pt;}
._66{width:478.442133pt;}
._6c{width:480.222933pt;}
._68{width:490.303467pt;}
._5b{width:494.876800pt;}
._55{width:497.217067pt;}
._57{width:504.348800pt;}
._46{width:506.460800pt;}
._42{width:508.801067pt;}
._69{width:510.067733pt;}
._44{width:515.932800pt;}
._79{width:521.116267pt;}
._47{width:527.794133pt;}
._39{width:529.375467pt;}
._35{width:531.715733pt;}
._3b{width:534.889600pt;}
._5c{width:535.974400pt;}
._36{width:538.847467pt;}
._49{width:547.558400pt;}
._7d{width:549.519467pt;}
._3a{width:550.708800pt;}
._34{width:555.438400pt;}
._75{width:592.970133pt;}
._29{width:595.540267pt;}
._73{width:618.255467pt;}
._7c{width:634.852800pt;}
._6f{width:644.324800pt;}
._6e{width:651.216000pt;}
._15{width:692.730667pt;}
._7b{width:879.316800pt;}
.fs6{font-size:21.765333pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:40.601333pt;}
.y3d{bottom:41.315733pt;}
.y3e{bottom:41.583067pt;}
.y2{bottom:42.286400pt;}
.y143{bottom:75.083467pt;}
.y225{bottom:75.299200pt;}
.y27{bottom:75.834533pt;}
.y1c6{bottom:76.198000pt;}
.y121{bottom:77.940800pt;}
.ye8{bottom:77.940933pt;}
.y78{bottom:78.822800pt;}
.yb0{bottom:79.058800pt;}
.y1eb{bottom:81.198533pt;}
.y26{bottom:87.834533pt;}
.y142{bottom:88.416800pt;}
.y1a9{bottom:91.316133pt;}
.y224{bottom:91.531867pt;}
.y1c5{bottom:92.198000pt;}
.y120{bottom:93.940800pt;}
.ye7{bottom:93.940933pt;}
.y77{bottom:94.822800pt;}
.yaf{bottom:95.058800pt;}
.y25{bottom:99.834533pt;}
.y1e9{bottom:100.096267pt;}
.y1c4{bottom:108.198000pt;}
.y11f{bottom:109.940800pt;}
.ye6{bottom:109.940933pt;}
.y1a8{bottom:110.213733pt;}
.y223{bottom:110.429600pt;}
.y76{bottom:110.822800pt;}
.yae{bottom:111.058800pt;}
.y24{bottom:111.834533pt;}
.y1ea{bottom:118.993867pt;}
.y152{bottom:121.069067pt;}
.y23{bottom:123.834533pt;}
.y1c3{bottom:124.198000pt;}
.y11e{bottom:125.940800pt;}
.ye5{bottom:125.940933pt;}
.y159{bottom:126.620667pt;}
.y75{bottom:126.822800pt;}
.yad{bottom:127.058800pt;}
.y1a7{bottom:129.111467pt;}
.y222{bottom:129.327200pt;}
.y22{bottom:135.834533pt;}
.y1e8{bottom:137.891467pt;}
.y156{bottom:139.954000pt;}
.y1c2{bottom:140.198000pt;}
.y11d{bottom:141.940800pt;}
.ye4{bottom:141.940933pt;}
.y74{bottom:142.822800pt;}
.yac{bottom:143.058800pt;}
.y21{bottom:147.834533pt;}
.y1a6{bottom:148.009067pt;}
.y14e{bottom:148.087333pt;}
.y221{bottom:148.224800pt;}
.y1c1{bottom:156.198000pt;}
.y1e7{bottom:156.789067pt;}
.y11c{bottom:157.940800pt;}
.y73{bottom:158.822800pt;}
.yab{bottom:159.058800pt;}
.y20{bottom:159.834533pt;}
.y150{bottom:159.869067pt;}
.y154{bottom:161.335733pt;}
.y1a5{bottom:166.906667pt;}
.y220{bottom:167.122400pt;}
.y14d{bottom:170.234133pt;}
.y1f{bottom:171.834533pt;}
.y1c0{bottom:172.198000pt;}
.y11b{bottom:173.940800pt;}
.ye3{bottom:173.940933pt;}
.y72{bottom:174.822800pt;}
.yaa{bottom:175.058800pt;}
.y1e6{bottom:175.686800pt;}
.y1e{bottom:183.834533pt;}
.y1a4{bottom:185.804400pt;}
.y21f{bottom:186.020133pt;}
.y1bf{bottom:188.198000pt;}
.y11a{bottom:189.940800pt;}
.ye2{bottom:189.940933pt;}
.y71{bottom:190.822800pt;}
.ya9{bottom:191.058800pt;}
.y14c{bottom:192.380800pt;}
.y1e5{bottom:194.584400pt;}
.y1d{bottom:195.834533pt;}
.y1be{bottom:204.198000pt;}
.y1a3{bottom:204.702000pt;}
.y21e{bottom:204.917733pt;}
.y119{bottom:205.940800pt;}
.ye1{bottom:205.940933pt;}
.y70{bottom:206.822800pt;}
.ya8{bottom:207.058800pt;}
.y151{bottom:213.202400pt;}
.y1e4{bottom:213.756667pt;}
.y14b{bottom:214.527467pt;}
.y1bd{bottom:220.198000pt;}
.y153{bottom:221.335733pt;}
.y118{bottom:221.940800pt;}
.ye0{bottom:221.940933pt;}
.y6f{bottom:222.822800pt;}
.ya7{bottom:223.058800pt;}
.y1a2{bottom:223.599600pt;}
.y21d{bottom:223.815333pt;}
.y155{bottom:226.802400pt;}
.y1e3{bottom:232.824000pt;}
.y1bc{bottom:236.198000pt;}
.y14a{bottom:236.674133pt;}
.y117{bottom:237.940800pt;}
.ydf{bottom:237.940933pt;}
.y6e{bottom:238.822800pt;}
.ya6{bottom:239.058800pt;}
.y1a0{bottom:241.499867pt;}
.y21b{bottom:241.715600pt;}
.y1e2{bottom:246.157333pt;}
.y3b{bottom:247.726800pt;}
.y19f{bottom:248.166533pt;}
.y21a{bottom:248.382267pt;}
.y1bb{bottom:252.198000pt;}
.y116{bottom:253.940800pt;}
.yde{bottom:253.940933pt;}
.y6d{bottom:254.822800pt;}
.y1a1{bottom:254.833200pt;}
.y21c{bottom:255.048933pt;}
.ya5{bottom:255.058800pt;}
.y149{bottom:258.820800pt;}
.y1e1{bottom:259.490667pt;}
.y3a{bottom:261.060133pt;}
.y1ba{bottom:268.198000pt;}
.y115{bottom:269.940800pt;}
.ydd{bottom:269.940933pt;}
.y6c{bottom:270.822800pt;}
.ya4{bottom:271.058800pt;}
.y19e{bottom:272.500800pt;}
.y219{bottom:272.716533pt;}
.y39{bottom:274.393467pt;}
.y1e0{bottom:278.050667pt;}
.y148{bottom:280.967467pt;}
.y1b9{bottom:284.198000pt;}
.y114{bottom:285.940800pt;}
.ydc{bottom:285.940933pt;}
.y6b{bottom:286.822800pt;}
.ya3{bottom:287.058800pt;}
.y38{bottom:287.726800pt;}
.y1df{bottom:291.384000pt;}
.y20d{bottom:297.216533pt;}
.y176{bottom:300.170933pt;}
.y1b8{bottom:300.198000pt;}
.y191{bottom:300.271600pt;}
.y37{bottom:301.060133pt;}
.y113{bottom:301.940800pt;}
.ydb{bottom:301.940933pt;}
.y6a{bottom:302.822800pt;}
.ya2{bottom:303.058800pt;}
.y147{bottom:303.114133pt;}
.y20c{bottom:313.216533pt;}
.y36{bottom:314.393467pt;}
.y175{bottom:316.170933pt;}
.y1b7{bottom:316.198000pt;}
.y190{bottom:316.271600pt;}
.y112{bottom:317.940800pt;}
.yda{bottom:317.940933pt;}
.y69{bottom:318.822800pt;}
.ya1{bottom:319.058800pt;}
.y146{bottom:325.260800pt;}
.y35{bottom:327.726800pt;}
.y20b{bottom:329.216533pt;}
.y174{bottom:332.170933pt;}
.y1b6{bottom:332.198000pt;}
.y18f{bottom:332.271600pt;}
.y111{bottom:333.940800pt;}
.yd9{bottom:333.940933pt;}
.y68{bottom:334.822800pt;}
.ya0{bottom:335.058800pt;}
.y34{bottom:341.060133pt;}
.y20a{bottom:345.216533pt;}
.y145{bottom:347.407333pt;}
.y173{bottom:348.170933pt;}
.y1b5{bottom:348.198000pt;}
.y18e{bottom:348.271600pt;}
.y110{bottom:349.940800pt;}
.yd8{bottom:349.940933pt;}
.y67{bottom:350.822800pt;}
.y9f{bottom:351.058800pt;}
.y33{bottom:354.393467pt;}
.y209{bottom:361.216533pt;}
.y172{bottom:364.170933pt;}
.y1b4{bottom:364.198000pt;}
.y10f{bottom:365.940800pt;}
.yd7{bottom:365.940933pt;}
.y66{bottom:366.822800pt;}
.y9e{bottom:367.058800pt;}
.y32{bottom:367.726800pt;}
.y14f{bottom:367.869067pt;}
.y144{bottom:369.554133pt;}
.y208{bottom:377.216533pt;}
.y171{bottom:380.170933pt;}
.y1b3{bottom:380.198000pt;}
.y18d{bottom:380.271600pt;}
.y31{bottom:381.060133pt;}
.y10e{bottom:381.940800pt;}
.yd6{bottom:381.940933pt;}
.y65{bottom:382.822800pt;}
.y9d{bottom:383.058800pt;}
.y207{bottom:393.216533pt;}
.y30{bottom:394.393467pt;}
.y158{bottom:394.754133pt;}
.y170{bottom:396.170933pt;}
.y1b2{bottom:396.198000pt;}
.y18c{bottom:396.271600pt;}
.y10d{bottom:397.940800pt;}
.yd5{bottom:397.940933pt;}
.y64{bottom:398.822800pt;}
.y9c{bottom:399.058800pt;}
.y2f{bottom:407.726800pt;}
.y157{bottom:408.087467pt;}
.y206{bottom:409.216533pt;}
.y16f{bottom:412.170933pt;}
.y1b1{bottom:412.198000pt;}
.y18b{bottom:412.271600pt;}
.y10c{bottom:413.940800pt;}
.yd4{bottom:413.940933pt;}
.y63{bottom:414.822800pt;}
.y9b{bottom:415.058800pt;}
.y2e{bottom:421.060133pt;}
.y205{bottom:425.216533pt;}
.y16e{bottom:428.170933pt;}
.y1b0{bottom:428.198000pt;}
.y18a{bottom:428.271600pt;}
.y10b{bottom:429.940800pt;}
.yd3{bottom:429.940933pt;}
.y62{bottom:430.822800pt;}
.y9a{bottom:431.058800pt;}
.y2d{bottom:434.393467pt;}
.y204{bottom:441.216533pt;}
.y12f{bottom:443.452667pt;}
.y16d{bottom:444.170933pt;}
.y1af{bottom:444.198000pt;}
.y189{bottom:444.271600pt;}
.y10a{bottom:445.940800pt;}
.yd2{bottom:445.940933pt;}
.y61{bottom:446.822800pt;}
.y99{bottom:447.058800pt;}
.y2c{bottom:447.726800pt;}
.y203{bottom:457.216533pt;}
.y12e{bottom:459.452667pt;}
.y16c{bottom:460.170933pt;}
.y1ae{bottom:460.198000pt;}
.y188{bottom:460.271600pt;}
.y2b{bottom:461.060133pt;}
.y109{bottom:461.940800pt;}
.yd1{bottom:461.940933pt;}
.y60{bottom:462.822800pt;}
.y98{bottom:463.058800pt;}
.y202{bottom:473.216533pt;}
.y12d{bottom:475.452667pt;}
.y16b{bottom:476.170933pt;}
.y1ad{bottom:476.198000pt;}
.y187{bottom:476.271600pt;}
.y108{bottom:477.940800pt;}
.yd0{bottom:477.940933pt;}
.y5f{bottom:478.822800pt;}
.y97{bottom:479.058800pt;}
.y16{bottom:482.159067pt;}
.y201{bottom:489.216533pt;}
.y12c{bottom:491.452667pt;}
.y16a{bottom:492.170933pt;}
.y1ac{bottom:492.198000pt;}
.y186{bottom:492.271600pt;}
.y107{bottom:493.940800pt;}
.ycf{bottom:493.940933pt;}
.y5e{bottom:494.822800pt;}
.y96{bottom:495.058800pt;}
.y15{bottom:495.492400pt;}
.y200{bottom:505.216533pt;}
.y12b{bottom:507.452667pt;}
.y169{bottom:508.170933pt;}
.y1ab{bottom:508.198000pt;}
.y185{bottom:508.271600pt;}
.y14{bottom:508.825733pt;}
.y106{bottom:509.940800pt;}
.yce{bottom:509.940933pt;}
.y5d{bottom:510.822800pt;}
.y95{bottom:511.058800pt;}
.y1ff{bottom:521.216533pt;}
.y13{bottom:522.159067pt;}
.y12a{bottom:523.452667pt;}
.y168{bottom:524.170933pt;}
.y1aa{bottom:524.198000pt;}
.y184{bottom:524.271600pt;}
.y105{bottom:525.940800pt;}
.ycd{bottom:525.940933pt;}
.y5c{bottom:526.822800pt;}
.y94{bottom:527.058800pt;}
.y12{bottom:535.492400pt;}
.y1fe{bottom:537.216533pt;}
.y129{bottom:539.452667pt;}
.y167{bottom:540.170933pt;}
.y183{bottom:540.271600pt;}
.y104{bottom:541.940800pt;}
.ycc{bottom:541.940933pt;}
.y5b{bottom:542.822800pt;}
.y93{bottom:543.058800pt;}
.y1de{bottom:548.446533pt;}
.y11{bottom:548.825733pt;}
.y1fd{bottom:553.216533pt;}
.y128{bottom:555.452667pt;}
.y166{bottom:556.170933pt;}
.y182{bottom:556.271600pt;}
.y103{bottom:557.940800pt;}
.ycb{bottom:557.940933pt;}
.y5a{bottom:558.822800pt;}
.y92{bottom:559.058800pt;}
.y10{bottom:562.159067pt;}
.y1dd{bottom:564.679200pt;}
.y1fc{bottom:569.216533pt;}
.y130{bottom:571.452667pt;}
.y165{bottom:572.170933pt;}
.y181{bottom:572.271600pt;}
.y102{bottom:573.940800pt;}
.yca{bottom:573.940933pt;}
.y59{bottom:574.822800pt;}
.y91{bottom:575.058800pt;}
.yf{bottom:575.492400pt;}
.y1dc{bottom:583.576800pt;}
.y1fb{bottom:585.216533pt;}
.y127{bottom:587.452667pt;}
.y164{bottom:588.170933pt;}
.y180{bottom:588.271600pt;}
.ye{bottom:588.825733pt;}
.y101{bottom:589.940800pt;}
.yc9{bottom:589.940933pt;}
.y58{bottom:590.822800pt;}
.y90{bottom:591.058800pt;}
.y1fa{bottom:601.216533pt;}
.yd{bottom:602.159067pt;}
.y1db{bottom:602.474400pt;}
.y126{bottom:603.452667pt;}
.y163{bottom:604.170933pt;}
.y17f{bottom:604.271600pt;}
.y100{bottom:605.940800pt;}
.yc8{bottom:605.940933pt;}
.y57{bottom:606.822800pt;}
.y8f{bottom:607.058800pt;}
.yc{bottom:615.492400pt;}
.y1f9{bottom:617.216533pt;}
.y125{bottom:619.452667pt;}
.y162{bottom:620.170933pt;}
.y17e{bottom:620.271600pt;}
.y1da{bottom:621.372133pt;}
.yff{bottom:621.940800pt;}
.yc7{bottom:621.940933pt;}
.y56{bottom:622.822800pt;}
.y8e{bottom:623.058800pt;}
.yb{bottom:628.825733pt;}
.y1f8{bottom:633.216533pt;}
.y124{bottom:635.452667pt;}
.y161{bottom:636.170933pt;}
.y17d{bottom:636.271600pt;}
.yfe{bottom:637.940800pt;}
.yc6{bottom:637.940933pt;}
.y55{bottom:638.822800pt;}
.y8d{bottom:639.058800pt;}
.y1d9{bottom:640.269733pt;}
.ya{bottom:642.159067pt;}
.y1f7{bottom:649.216533pt;}
.y123{bottom:651.452667pt;}
.y160{bottom:652.170933pt;}
.y17c{bottom:652.271600pt;}
.yfd{bottom:653.940800pt;}
.yc5{bottom:653.940933pt;}
.y54{bottom:654.822800pt;}
.y8c{bottom:655.058800pt;}
.y9{bottom:655.492400pt;}
.y1d8{bottom:659.167333pt;}
.y1f6{bottom:665.216533pt;}
.y15f{bottom:668.170933pt;}
.y17b{bottom:668.271600pt;}
.y8{bottom:668.825733pt;}
.yfc{bottom:669.940800pt;}
.yc4{bottom:669.940933pt;}
.y53{bottom:670.822800pt;}
.y8b{bottom:671.058800pt;}
.y251{bottom:672.764133pt;}
.y238{bottom:673.940800pt;}
.y141{bottom:675.866800pt;}
.y1d7{bottom:678.065067pt;}
.y1f5{bottom:681.216533pt;}
.y7{bottom:682.159067pt;}
.y15e{bottom:684.170933pt;}
.y17a{bottom:684.271600pt;}
.y250{bottom:684.764133pt;}
.yfb{bottom:685.940800pt;}
.yc3{bottom:685.940933pt;}
.y52{bottom:686.822800pt;}
.y8a{bottom:687.058800pt;}
.y140{bottom:692.078667pt;}
.y6{bottom:695.492400pt;}
.y24f{bottom:696.764133pt;}
.y1d6{bottom:696.962667pt;}
.y1f4{bottom:697.216533pt;}
.y237{bottom:697.940800pt;}
.y15d{bottom:700.170933pt;}
.y179{bottom:700.271600pt;}
.y13f{bottom:701.506533pt;}
.yfa{bottom:701.940800pt;}
.yc2{bottom:701.940933pt;}
.y51{bottom:702.822800pt;}
.y89{bottom:703.058800pt;}
.y24e{bottom:708.764133pt;}
.y5{bottom:708.825733pt;}
.y236{bottom:709.940800pt;}
.y1f3{bottom:713.216533pt;}
.y1d5{bottom:715.860267pt;}
.y15c{bottom:716.170933pt;}
.y178{bottom:716.271600pt;}
.yf9{bottom:717.940800pt;}
.yc1{bottom:717.940933pt;}
.y50{bottom:718.822800pt;}
.y88{bottom:719.058800pt;}
.y24d{bottom:720.764133pt;}
.y235{bottom:721.940800pt;}
.y4{bottom:722.159067pt;}
.y1f2{bottom:729.216533pt;}
.y13e{bottom:729.790400pt;}
.y15b{bottom:732.170933pt;}
.y177{bottom:732.271600pt;}
.y24c{bottom:732.764133pt;}
.yf8{bottom:733.940800pt;}
.yc0{bottom:733.940933pt;}
.y1d4{bottom:734.525200pt;}
.y4f{bottom:734.822800pt;}
.y87{bottom:735.058800pt;}
.y13d{bottom:739.218400pt;}
.y24b{bottom:744.764133pt;}
.y2a{bottom:745.194267pt;}
.y1f1{bottom:745.216533pt;}
.y234{bottom:745.940800pt;}
.y1d3{bottom:747.858533pt;}
.yf7{bottom:749.940800pt;}
.ybf{bottom:749.940933pt;}
.y4e{bottom:750.822800pt;}
.y86{bottom:751.058800pt;}
.y19d{bottom:756.395200pt;}
.y24a{bottom:756.764133pt;}
.y29{bottom:757.194267pt;}
.y233{bottom:757.940800pt;}
.y1f0{bottom:761.216533pt;}
.yf6{bottom:765.940800pt;}
.ybe{bottom:765.940933pt;}
.y4d{bottom:766.822800pt;}
.y85{bottom:767.058800pt;}
.y13c{bottom:767.502133pt;}
.y249{bottom:768.764133pt;}
.y232{bottom:769.940800pt;}
.y28{bottom:770.527600pt;}
.y19c{bottom:772.627867pt;}
.y1d2{bottom:775.499467pt;}
.y13b{bottom:776.930133pt;}
.y1ef{bottom:777.216533pt;}
.y248{bottom:780.764133pt;}
.yf5{bottom:781.940800pt;}
.ybd{bottom:781.940933pt;}
.y4c{bottom:782.822800pt;}
.y84{bottom:783.058800pt;}
.y19b{bottom:791.525600pt;}
.y1d1{bottom:791.732267pt;}
.y247{bottom:792.764133pt;}
.y1ee{bottom:793.216533pt;}
.y231{bottom:793.940800pt;}
.yf4{bottom:797.940800pt;}
.ybc{bottom:797.940933pt;}
.y4b{bottom:798.822800pt;}
.y83{bottom:799.058800pt;}
.y246{bottom:804.764133pt;}
.y13a{bottom:805.213867pt;}
.y230{bottom:805.940800pt;}
.y1c{bottom:806.956933pt;}
.y1ed{bottom:809.216533pt;}
.y19a{bottom:810.423200pt;}
.y1d0{bottom:810.629867pt;}
.yf3{bottom:813.940800pt;}
.ybb{bottom:813.940933pt;}
.y139{bottom:814.641867pt;}
.y4a{bottom:814.822800pt;}
.y82{bottom:815.058800pt;}
.y245{bottom:816.764133pt;}
.y22f{bottom:817.940800pt;}
.y1ec{bottom:825.216533pt;}
.y244{bottom:828.764133pt;}
.y199{bottom:829.320800pt;}
.y1cf{bottom:829.527467pt;}
.yf2{bottom:829.940800pt;}
.yba{bottom:829.940933pt;}
.y49{bottom:830.822800pt;}
.y81{bottom:831.058800pt;}
.y1b{bottom:833.623600pt;}
.y243{bottom:840.764133pt;}
.y22e{bottom:841.940800pt;}
.y138{bottom:842.925600pt;}
.yf1{bottom:845.940800pt;}
.yb9{bottom:845.940933pt;}
.y48{bottom:846.822800pt;}
.y80{bottom:847.058800pt;}
.y198{bottom:848.218400pt;}
.y1ce{bottom:848.425067pt;}
.y137{bottom:852.353467pt;}
.y242{bottom:852.764133pt;}
.y218{bottom:853.084933pt;}
.y22d{bottom:853.940800pt;}
.y1a{bottom:860.290267pt;}
.yf0{bottom:861.940800pt;}
.yb8{bottom:861.940933pt;}
.y47{bottom:862.822800pt;}
.y7f{bottom:863.058800pt;}
.y241{bottom:864.764133pt;}
.y22c{bottom:865.940800pt;}
.y197{bottom:867.116000pt;}
.y1cd{bottom:867.322800pt;}
.y216{bottom:868.320133pt;}
.y215{bottom:874.986800pt;}
.y240{bottom:876.764133pt;}
.y1{bottom:877.574800pt;}
.yef{bottom:877.940800pt;}
.yb7{bottom:877.940933pt;}
.y46{bottom:878.822800pt;}
.y7e{bottom:879.058800pt;}
.y136{bottom:880.637333pt;}
.y217{bottom:881.653467pt;}
.y196{bottom:886.013733pt;}
.y1cc{bottom:886.220400pt;}
.y23f{bottom:888.764133pt;}
.y22b{bottom:889.940800pt;}
.y135{bottom:890.065333pt;}
.yee{bottom:893.940800pt;}
.yb6{bottom:893.940933pt;}
.y45{bottom:894.822800pt;}
.y7d{bottom:895.058800pt;}
.y213{bottom:898.556400pt;}
.y23e{bottom:900.764133pt;}
.y22a{bottom:901.940800pt;}
.y195{bottom:904.911333pt;}
.y1cb{bottom:905.118133pt;}
.y212{bottom:905.223067pt;}
.yed{bottom:909.940800pt;}
.yb5{bottom:909.940933pt;}
.y44{bottom:910.822800pt;}
.y7c{bottom:911.058800pt;}
.y214{bottom:911.889733pt;}
.y23d{bottom:912.764133pt;}
.y19{bottom:913.623600pt;}
.y229{bottom:913.940800pt;}
.y134{bottom:918.349067pt;}
.y194{bottom:923.809067pt;}
.y1ca{bottom:924.015733pt;}
.y23c{bottom:924.764133pt;}
.yec{bottom:925.940800pt;}
.yb4{bottom:925.940933pt;}
.y43{bottom:926.822800pt;}
.y7b{bottom:927.058800pt;}
.y133{bottom:927.777067pt;}
.y211{bottom:929.684933pt;}
.y193{bottom:933.257867pt;}
.y20f{bottom:936.351600pt;}
.y23b{bottom:936.764133pt;}
.y228{bottom:937.940800pt;}
.y18{bottom:940.290267pt;}
.yeb{bottom:941.940800pt;}
.yb3{bottom:941.940933pt;}
.y42{bottom:942.822800pt;}
.y1c9{bottom:942.913333pt;}
.y20e{bottom:943.018267pt;}
.y7a{bottom:943.058800pt;}
.y23a{bottom:948.764133pt;}
.y227{bottom:949.940800pt;}
.y132{bottom:956.060933pt;}
.y210{bottom:956.351600pt;}
.yea{bottom:957.940800pt;}
.yb2{bottom:957.940933pt;}
.y41{bottom:958.822800pt;}
.y79{bottom:959.058800pt;}
.y239{bottom:960.764133pt;}
.y192{bottom:961.371600pt;}
.y1c8{bottom:961.578267pt;}
.y3c{bottom:961.921333pt;}
.y226{bottom:961.940800pt;}
.y17{bottom:966.956933pt;}
.ye9{bottom:973.940800pt;}
.yb1{bottom:973.940933pt;}
.y131{bottom:974.704933pt;}
.y40{bottom:974.822800pt;}
.y1c7{bottom:974.911600pt;}
.y3f{bottom:1011.252267pt;}
.y122{bottom:1011.252400pt;}
.y15a{bottom:1011.472800pt;}
.h8{height:28.687500pt;}
.h9{height:28.890625pt;}
.h4{height:30.666667pt;}
.h3{height:33.468750pt;}
.h2{height:33.705729pt;}
.h13{height:34.500000pt;}
.h6{height:38.250000pt;}
.h5{height:38.520833pt;}
.he{height:38.802083pt;}
.ha{height:43.031250pt;}
.hb{height:43.335938pt;}
.hf{height:49.468750pt;}
.h12{height:64.916667pt;}
.h11{height:65.187500pt;}
.hc{height:75.961467pt;}
.hd{height:75.962000pt;}
.h10{height:76.316033pt;}
.h7{height:77.041667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w1{width:756.000000pt;}
.w0{width:756.170667pt;}
.x0{left:0.000000pt;}
.x6{left:5.920533pt;}
.x4{left:37.795333pt;}
.x20{left:41.574933pt;}
.x22{left:44.782667pt;}
.x5{left:51.023600pt;}
.x4c{left:56.692933pt;}
.xa{left:75.590533pt;}
.xe{left:79.263867pt;}
.x2e{left:82.790533pt;}
.x10{left:88.720533pt;}
.x11{left:94.652800pt;}
.x12{left:121.345600pt;}
.x13{left:136.862267pt;}
.x4b{left:141.291867pt;}
.xd{left:142.582933pt;}
.x1c{left:163.676800pt;}
.x2{left:172.899600pt;}
.x37{left:179.087200pt;}
.x9{left:180.378133pt;}
.x21{left:181.618667pt;}
.x38{left:187.664400pt;}
.x23{left:196.295600pt;}
.x8{left:210.791467pt;}
.xf{left:214.041467pt;}
.x14{left:218.112800pt;}
.x1b{left:222.745067pt;}
.x42{left:236.613067pt;}
.x24{left:259.559333pt;}
.x25{left:276.470800pt;}
.x3a{left:281.387200pt;}
.x15{left:282.462267pt;}
.x43{left:294.877333pt;}
.x44{left:328.049200pt;}
.x17{left:338.728933pt;}
.x26{left:342.641200pt;}
.x3{left:349.266133pt;}
.x1d{left:355.403467pt;}
.x16{left:363.712667pt;}
.xc{left:367.187467pt;}
.x39{left:375.871600pt;}
.x7{left:386.824400pt;}
.x45{left:393.238933pt;}
.x27{left:400.755867pt;}
.xb{left:404.982667pt;}
.x3f{left:407.043467pt;}
.x35{left:408.982667pt;}
.x3b{left:421.871600pt;}
.x46{left:422.869200pt;}
.x18{left:427.928933pt;}
.x28{left:434.352933pt;}
.x1e{left:445.368933pt;}
.x29{left:454.222667pt;}
.x36{left:474.232000pt;}
.x3c{left:479.774000pt;}
.x48{left:491.158667pt;}
.x3d{left:494.638533pt;}
.x2f{left:499.650000pt;}
.x47{left:506.585733pt;}
.x19{left:509.179467pt;}
.x2a{left:517.486400pt;}
.x31{left:521.321867pt;}
.x3e{left:522.471867pt;}
.x2b{left:534.397867pt;}
.x30{left:547.415600pt;}
.x49{left:585.825467pt;}
.x2c{left:601.427467pt;}
.x32{left:612.544667pt;}
.x34{left:615.893600pt;}
.x4a{left:643.908800pt;}
.x1a{left:645.528933pt;}
.x1f{left:648.910933pt;}
.x40{left:655.263600pt;}
.x2d{left:656.578400pt;}
.x41{left:660.024000pt;}
.x33{left:679.331200pt;}
.x1{left:750.416133pt;}
}




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