
    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_47759e5581102094d36eaac4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_0afb63905cea6fdcac0dac7b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_1d9d38ace5f76df91471821b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.335449;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_86ed7e6ac1a430a4d6ad0ac8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.060547;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_3cd96fe64a5c30f0bacdf6c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060547;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_b8da6f38e0bdf9debece74c4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_b1af2734a2b2dff9abeb8117.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944336;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_8958c0f56ccbdc480e69c016.woff')format("woff");}.ff8{font-family:ff8;line-height:1.024414;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);}
.v3{vertical-align:-11.982000px;}
.v2{vertical-align:-10.974000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.004400px;}
.v6{vertical-align:10.977000px;}
.v4{vertical-align:13.980000px;}
.v1{vertical-align:16.992600px;}
.ls17{letter-spacing:-4.200000px;}
.ls18{letter-spacing:-3.726000px;}
.ls1c{letter-spacing:-3.225000px;}
.ls3d{letter-spacing:-2.850000px;}
.ls31{letter-spacing:-2.832000px;}
.ls12{letter-spacing:-2.139000px;}
.ls5d{letter-spacing:-1.650000px;}
.ls34{letter-spacing:-1.440000px;}
.ls25{letter-spacing:-1.344000px;}
.ls19{letter-spacing:-1.296000px;}
.lsc{letter-spacing:-1.215000px;}
.ls56{letter-spacing:-1.134000px;}
.ls3a{letter-spacing:-1.056000px;}
.ls23{letter-spacing:-0.979440px;}
.ls48{letter-spacing:-0.972000px;}
.ls24{letter-spacing:-0.960000px;}
.ls39{letter-spacing:-0.912000px;}
.lse{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.825000px;}
.ls3{letter-spacing:-0.693000px;}
.ls3b{letter-spacing:-0.672000px;}
.ls1d{letter-spacing:-0.627000px;}
.ls43{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.276000px;}
.ls35{letter-spacing:-0.240000px;}
.ls41{letter-spacing:-0.207000px;}
.ls2f{letter-spacing:-0.192000px;}
.ls44{letter-spacing:-0.180000px;}
.ls46{letter-spacing:-0.171000px;}
.ls30{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.000300px;}
.ls36{letter-spacing:0.048000px;}
.ls26{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.192000px;}
.ls32{letter-spacing:0.240000px;}
.ls28{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.336000px;}
.ls2b{letter-spacing:0.384000px;}
.ls38{letter-spacing:0.432000px;}
.ls52{letter-spacing:0.450000px;}
.ls29{letter-spacing:0.480000px;}
.ls37{letter-spacing:0.528000px;}
.ls2e{letter-spacing:0.576000px;}
.ls40{letter-spacing:0.675000px;}
.ls5a{letter-spacing:0.756000px;}
.ls33{letter-spacing:0.768000px;}
.ls55{letter-spacing:1.050000px;}
.ls1f{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.260000px;}
.ls20{letter-spacing:1.392000px;}
.ls2d{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.584000px;}
.lsb{letter-spacing:2.100000px;}
.ls5{letter-spacing:2.400000px;}
.ls10{letter-spacing:2.753100px;}
.ls4b{letter-spacing:2.929500px;}
.ls59{letter-spacing:3.767400px;}
.ls9{letter-spacing:4.080000px;}
.ls1{letter-spacing:4.200000px;}
.ls49{letter-spacing:4.347000px;}
.ls4f{letter-spacing:4.460400px;}
.ls7{letter-spacing:5.760000px;}
.ls6{letter-spacing:5.880000px;}
.ls4{letter-spacing:6.000000px;}
.ls4a{letter-spacing:6.300000px;}
.ls50{letter-spacing:7.383600px;}
.ls58{letter-spacing:8.568000px;}
.ls51{letter-spacing:8.656200px;}
.ls53{letter-spacing:8.908200px;}
.ls4e{letter-spacing:9.846900px;}
.ls4d{letter-spacing:9.859500px;}
.ls57{letter-spacing:11.144700px;}
.ls21{letter-spacing:12.768000px;}
.ls5c{letter-spacing:14.219100px;}
.ls15{letter-spacing:22.933800px;}
.ls22{letter-spacing:44.496000px;}
.ls16{letter-spacing:56.446200px;}
.ls54{letter-spacing:504.438600px;}
.ls3f{letter-spacing:504.787200px;}
.ls4c{letter-spacing:504.989400px;}
.ls45{letter-spacing:505.424400px;}
.ls47{letter-spacing:505.454400px;}
.ls42{letter-spacing:505.724400px;}
.ls5b{letter-spacing:507.130800px;}
.ls8{letter-spacing:512.184000px;}
.ls3c{letter-spacing:514.224000px;}
.ls1b{letter-spacing:514.591800px;}
.ls13{letter-spacing:515.551800px;}
.ls3e{letter-spacing:990.022800px;}
.lsf{letter-spacing:990.517800px;}
.ls1a{letter-spacing:993.142800px;}
.ls1e{letter-spacing:997.192800px;}
.ls0{letter-spacing:999.172800px;}
.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;}
}
.ws64{word-spacing:-22.860000px;}
.ws0{word-spacing:-22.740000px;}
.ws1{word-spacing:-22.620000px;}
.ws5f{word-spacing:-22.125000px;}
.ws5a{word-spacing:-22.050000px;}
.ws59{word-spacing:-21.789000px;}
.ws50{word-spacing:-21.750000px;}
.ws9{word-spacing:-21.546000px;}
.ws5e{word-spacing:-21.525000px;}
.ws57{word-spacing:-21.075000px;}
.ws53{word-spacing:-20.775000px;}
.ws7{word-spacing:-20.250000px;}
.ws63{word-spacing:-19.425000px;}
.wsa{word-spacing:-19.389000px;}
.ws13{word-spacing:-19.035000px;}
.ws49{word-spacing:-18.225000px;}
.ws15{word-spacing:-17.850000px;}
.ws5b{word-spacing:-17.703000px;}
.ws10{word-spacing:-17.043000px;}
.ws12{word-spacing:-16.875000px;}
.ws65{word-spacing:-16.860000px;}
.ws51{word-spacing:-16.836000px;}
.ws61{word-spacing:-16.317000px;}
.ws54{word-spacing:-16.002000px;}
.ws5c{word-spacing:-15.561000px;}
.ws1f{word-spacing:-15.072000px;}
.wsf{word-spacing:-14.904000px;}
.ws1a{word-spacing:-14.880000px;}
.ws66{word-spacing:-14.820000px;}
.ws23{word-spacing:-14.544000px;}
.ws60{word-spacing:-14.427000px;}
.ws27{word-spacing:-14.256000px;}
.ws22{word-spacing:-14.064000px;}
.ws8{word-spacing:-13.902000px;}
.ws20{word-spacing:-13.872000px;}
.ws21{word-spacing:-13.824000px;}
.ws1d{word-spacing:-13.776000px;}
.ws26{word-spacing:-13.728000px;}
.ws1e{word-spacing:-13.680000px;}
.ws1c{word-spacing:-13.632000px;}
.ws18{word-spacing:-13.572300px;}
.ws2e{word-spacing:-13.488000px;}
.ws24{word-spacing:-13.296000px;}
.ws19{word-spacing:-12.528000px;}
.ws32{word-spacing:-12.384000px;}
.ws1b{word-spacing:-12.144000px;}
.ws35{word-spacing:-12.096000px;}
.ws34{word-spacing:-12.048000px;}
.ws2f{word-spacing:-11.904000px;}
.ws2d{word-spacing:-11.856000px;}
.ws29{word-spacing:-11.802000px;}
.ws2b{word-spacing:-11.616000px;}
.ws2a{word-spacing:-11.340000px;}
.wsb{word-spacing:-11.303787px;}
.ws25{word-spacing:-10.656000px;}
.ws17{word-spacing:-7.660620px;}
.ws5d{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws6{word-spacing:-4.200000px;}
.wsc{word-spacing:-4.080000px;}
.ws5{word-spacing:-2.400000px;}
.ws45{word-spacing:-1.440000px;}
.ws47{word-spacing:-1.392000px;}
.ws11{word-spacing:-1.260000px;}
.ws44{word-spacing:-1.056000px;}
.ws43{word-spacing:-0.480000px;}
.ws42{word-spacing:-0.192000px;}
.ws2{word-spacing:0.000000px;}
.ws46{word-spacing:0.048000px;}
.ws58{word-spacing:0.171000px;}
.ws56{word-spacing:0.180000px;}
.ws52{word-spacing:0.207000px;}
.wsd{word-spacing:0.276000px;}
.ws55{word-spacing:0.300000px;}
.ws62{word-spacing:0.441000px;}
.ws16{word-spacing:0.627000px;}
.ws3{word-spacing:0.693000px;}
.wse{word-spacing:0.855000px;}
.ws48{word-spacing:1.056000px;}
.ws14{word-spacing:1.296000px;}
.ws3d{word-spacing:8.794800px;}
.ws2c{word-spacing:11.040000px;}
.ws4e{word-spacing:11.827200px;}
.ws3e{word-spacing:18.336000px;}
.ws4b{word-spacing:28.533600px;}
.ws4f{word-spacing:28.555200px;}
.ws33{word-spacing:32.832000px;}
.ws36{word-spacing:34.560000px;}
.ws38{word-spacing:35.136000px;}
.ws4c{word-spacing:37.200000px;}
.ws37{word-spacing:51.950400px;}
.ws3b{word-spacing:51.955200px;}
.ws30{word-spacing:70.848000px;}
.ws40{word-spacing:70.881600px;}
.ws3a{word-spacing:70.882200px;}
.ws31{word-spacing:79.008000px;}
.ws4a{word-spacing:80.186400px;}
.ws4d{word-spacing:81.235800px;}
.ws3f{word-spacing:81.491400px;}
.ws3c{word-spacing:81.991800px;}
.ws41{word-spacing:82.443000px;}
.ws39{word-spacing:83.379000px;}
.ws28{word-spacing:83.546400px;}
._23{margin-left:-19.392300px;}
._2e{margin-left:-17.529300px;}
._2f{margin-left:-11.234700px;}
._8{margin-left:-9.763200px;}
._2d{margin-left:-8.377800px;}
._9{margin-left:-7.116000px;}
._a{margin-left:-5.120100px;}
._7{margin-left:-3.704100px;}
._2{margin-left:-2.072700px;}
._c{margin-left:-1.009800px;}
._3{width:1.323300px;}
._1{width:2.400000px;}
._5{width:3.510000px;}
._14{width:4.512000px;}
._4{width:5.512800px;}
._6{width:6.825900px;}
._b{width:8.530200px;}
._d{width:10.122000px;}
._13{width:11.936100px;}
._10{width:13.196700px;}
._15{width:14.283600px;}
._16{width:15.298800px;}
._1c{width:16.551000px;}
._1d{width:17.592000px;}
._30{width:18.753300px;}
._19{width:20.319672px;}
._1e{width:21.366402px;}
._18{width:22.464114px;}
._12{width:23.524200px;}
._2c{width:24.790200px;}
._22{width:25.792200px;}
._34{width:26.976600px;}
._32{width:28.869300px;}
._33{width:29.880900px;}
._2a{width:31.222800px;}
._31{width:34.968600px;}
._20{width:36.219600px;}
._2b{width:37.314900px;}
._35{width:39.791100px;}
._29{width:41.671200px;}
._17{width:43.445160px;}
._f{width:45.200400px;}
._28{width:48.554100px;}
._1a{width:49.786200px;}
._1b{width:57.268500px;}
._21{width:71.405400px;}
._1f{width:82.992000px;}
._25{width:84.043500px;}
._11{width:85.554000px;}
._27{width:125.610300px;}
._26{width:240.933600px;}
._e{width:260.610000px;}
._24{width:365.100300px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsf{font-size:48.300000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y134{bottom:101.101350px;}
.y1b7{bottom:106.071600px;}
.y1d9{bottom:106.244850px;}
.yc5{bottom:106.265250px;}
.y6b{bottom:106.271700px;}
.y8f{bottom:106.287300px;}
.y42{bottom:106.298550px;}
.y104{bottom:106.299150px;}
.y196{bottom:106.307400px;}
.y1e{bottom:106.309350px;}
.y1fb{bottom:106.370850px;}
.y21d{bottom:106.433850px;}
.y23e{bottom:106.544100px;}
.y15e{bottom:107.818200px;}
.yeb{bottom:110.731800px;}
.y169{bottom:112.492350px;}
.y113{bottom:112.942350px;}
.y12a{bottom:112.943850px;}
.ya3{bottom:112.946850px;}
.y25c{bottom:114.397800px;}
.y133{bottom:121.351350px;}
.y8e{bottom:123.540300px;}
.y6a{bottom:126.695700px;}
.y1d8{bottom:126.704100px;}
.y41{bottom:127.065150px;}
.ye9{bottom:127.214700px;}
.y23d{bottom:127.349850px;}
.y1fa{bottom:127.570350px;}
.y1b6{bottom:127.664850px;}
.yc4{bottom:127.724250px;}
.y1d{bottom:127.744350px;}
.y195{bottom:127.995150px;}
.y177{bottom:130.663350px;}
.y168{bottom:132.743850px;}
.y112{bottom:133.193850px;}
.y129{bottom:133.195350px;}
.ya2{bottom:133.198350px;}
.y25b{bottom:133.897800px;}
.y21c{bottom:135.886350px;}
.ye8{bottom:138.214950px;}
.yea{bottom:139.216200px;}
.y8d{bottom:140.793300px;}
.y69{bottom:147.119700px;}
.y40{bottom:147.834150px;}
.y1f9{bottom:148.769850px;}
.y1c{bottom:149.179350px;}
.yc3{bottom:149.183250px;}
.y194{bottom:149.682900px;}
.y176{bottom:150.914850px;}
.y167{bottom:152.995350px;}
.y14a{bottom:153.001350px;}
.y25a{bottom:153.397800px;}
.y111{bottom:153.445350px;}
.y128{bottom:153.446850px;}
.ya1{bottom:153.449850px;}
.ye7{bottom:154.702950px;}
.y1d7{bottom:155.652600px;}
.y23c{bottom:156.660600px;}
.y21b{bottom:156.833850px;}
.y1b5{bottom:157.763100px;}
.y8c{bottom:158.046300px;}
.y68{bottom:167.543700px;}
.y3f{bottom:168.603150px;}
.y1f8{bottom:169.969350px;}
.y1b{bottom:170.634300px;}
.yc2{bottom:170.642250px;}
.y175{bottom:171.166350px;}
.ye5{bottom:171.185850px;}
.y259{bottom:172.897800px;}
.y166{bottom:173.246850px;}
.y149{bottom:173.251350px;}
.y110{bottom:173.696850px;}
.y127{bottom:173.698350px;}
.ya0{bottom:173.701350px;}
.y1d6{bottom:176.096100px;}
.y23b{bottom:177.466350px;}
.y8b{bottom:178.294800px;}
.y1b4{bottom:179.356350px;}
.y193{bottom:179.875650px;}
.ye4{bottom:182.186250px;}
.ye6{bottom:183.187350px;}
.y21a{bottom:186.286350px;}
.y67{bottom:187.967700px;}
.y3e{bottom:189.371400px;}
.y1a{bottom:190.569300px;}
.y1f7{bottom:191.168850px;}
.y174{bottom:191.417850px;}
.yc1{bottom:192.101250px;}
.y258{bottom:192.397800px;}
.y165{bottom:193.498350px;}
.y148{bottom:193.501350px;}
.y10f{bottom:193.948350px;}
.y126{bottom:193.949850px;}
.y8a{bottom:196.792200px;}
.ye3{bottom:198.674250px;}
.y1b3{bottom:200.949600px;}
.y1d5{bottom:205.044600px;}
.y23a{bottom:206.777100px;}
.y219{bottom:207.233850px;}
.y66{bottom:208.391700px;}
.y3d{bottom:210.140400px;}
.y19{bottom:210.504300px;}
.y173{bottom:211.669350px;}
.y257{bottom:211.897800px;}
.y1f6{bottom:212.368350px;}
.yc0{bottom:213.560250px;}
.y164{bottom:213.749850px;}
.y147{bottom:213.751350px;}
.y89{bottom:214.045200px;}
.y125{bottom:214.193850px;}
.y10e{bottom:214.199850px;}
.y9f{bottom:214.201350px;}
.ye1{bottom:215.157150px;}
.y1d4{bottom:225.503850px;}
.ye0{bottom:226.157550px;}
.ye2{bottom:227.158650px;}
.y239{bottom:227.582850px;}
.y218{bottom:228.181350px;}
.y65{bottom:228.815700px;}
.y18{bottom:230.439300px;}
.y1b2{bottom:231.047850px;}
.y88{bottom:231.298200px;}
.y256{bottom:231.397800px;}
.y172{bottom:231.920850px;}
.y1f5{bottom:233.567850px;}
.y163{bottom:233.996850px;}
.y10d{bottom:234.442350px;}
.ydf{bottom:242.645550px;}
.y1d3{bottom:245.963100px;}
.y238{bottom:248.388600px;}
.y64{bottom:249.239700px;}
.y255{bottom:250.897800px;}
.y87{bottom:251.546700px;}
.y3c{bottom:252.163950px;}
.y171{bottom:252.172350px;}
.y1b1{bottom:252.641100px;}
.y192{bottom:253.885050px;}
.y146{bottom:254.231850px;}
.y10c{bottom:254.693850px;}
.y124{bottom:254.696850px;}
.ybf{bottom:256.263150px;}
.y217{bottom:257.633850px;}
.ydd{bottom:259.128450px;}
.y17{bottom:263.139300px;}
.y1f4{bottom:263.272350px;}
.y63{bottom:269.656950px;}
.ydc{bottom:270.128850px;}
.y254{bottom:270.397800px;}
.yde{bottom:271.129950px;}
.y170{bottom:272.417850px;}
.y145{bottom:274.483350px;}
.y162{bottom:274.499850px;}
.y1d2{bottom:274.911600px;}
.y10b{bottom:274.945350px;}
.y123{bottom:274.948350px;}
.y191{bottom:275.568300px;}
.y3b{bottom:276.686700px;}
.y237{bottom:277.699350px;}
.y216{bottom:278.581350px;}
.ybe{bottom:281.474400px;}
.y1b0{bottom:282.739350px;}
.y1f3{bottom:284.471850px;}
.ydb{bottom:286.616850px;}
.y253{bottom:289.897800px;}
.y62{bottom:290.080950px;}
.y16f{bottom:292.669350px;}
.y86{bottom:293.174250px;}
.y144{bottom:294.734850px;}
.y161{bottom:294.751350px;}
.y10a{bottom:295.196850px;}
.y122{bottom:295.199850px;}
.y1d1{bottom:295.370850px;}
.y190{bottom:297.251550px;}
.y236{bottom:298.505100px;}
.y215{bottom:299.528850px;}
.yd9{bottom:303.099600px;}
.y1af{bottom:304.332600px;}
.y252{bottom:309.397800px;}
.y61{bottom:310.456800px;}
.y16{bottom:312.849300px;}
.y16e{bottom:312.920850px;}
.y85{bottom:313.424250px;}
.yd8{bottom:314.100000px;}
.y1f2{bottom:314.176350px;}
.y143{bottom:314.986350px;}
.yda{bottom:315.101100px;}
.y121{bottom:315.433350px;}
.y109{bottom:315.448350px;}
.y1d0{bottom:315.830100px;}
.y18f{bottom:318.934800px;}
.y235{bottom:319.310850px;}
.y251{bottom:328.897800px;}
.y214{bottom:328.981350px;}
.yd6{bottom:330.588000px;}
.y60{bottom:330.880800px;}
.y16d{bottom:333.172350px;}
.y84{bottom:333.675750px;}
.y15{bottom:334.284300px;}
.y1ae{bottom:334.430850px;}
.y142{bottom:335.237850px;}
.y160{bottom:335.251350px;}
.y1f1{bottom:335.375850px;}
.y120{bottom:335.684850px;}
.y108{bottom:335.699850px;}
.y1cf{bottom:336.289350px;}
.y3a{bottom:339.457050px;}
.y18e{bottom:340.618050px;}
.yd5{bottom:344.088000px;}
.ybd{bottom:344.767350px;}
.y250{bottom:348.397800px;}
.y234{bottom:348.621600px;}
.y213{bottom:349.928850px;}
.y5f{bottom:351.304800px;}
.y16c{bottom:353.423850px;}
.y141{bottom:355.489350px;}
.y14{bottom:355.719300px;}
.y11f{bottom:355.936350px;}
.y107{bottom:355.951350px;}
.y1ad{bottom:356.024100px;}
.y1f0{bottom:356.575350px;}
.yd7{bottom:357.588000px;}
.y39{bottom:360.226050px;}
.y18d{bottom:362.301300px;}
.y1ce{bottom:365.237850px;}
.ybc{bottom:366.226350px;}
.y24f{bottom:367.897800px;}
.y103{bottom:368.149350px;}
.y233{bottom:369.427350px;}
.y212{bottom:370.876350px;}
.yd4{bottom:371.088000px;}
.y5e{bottom:371.728800px;}
.y83{bottom:375.189300px;}
.y140{bottom:375.740850px;}
.y11e{bottom:376.187850px;}
.y13{bottom:377.175300px;}
.y1ac{bottom:377.617350px;}
.y1ef{bottom:377.774850px;}
.y38{bottom:380.995050px;}
.y18c{bottom:383.984550px;}
.yd3{bottom:384.588000px;}
.y1cd{bottom:385.697100px;}
.y24e{bottom:387.397800px;}
.ybb{bottom:387.685350px;}
.y232{bottom:390.233100px;}
.y102{bottom:390.315600px;}
.y15d{bottom:391.756350px;}
.y211{bottom:391.823850px;}
.y5d{bottom:392.152800px;}
.y16b{bottom:394.933650px;}
.y13f{bottom:395.992350px;}
.y11d{bottom:396.439350px;}
.y106{bottom:396.451350px;}
.y12{bottom:397.110300px;}
.y1ee{bottom:398.974350px;}
.y82{bottom:399.185550px;}
.y37{bottom:401.764050px;}
.y18b{bottom:405.667800px;}
.y1cc{bottom:406.156350px;}
.y24d{bottom:406.897800px;}
.y1ab{bottom:407.715600px;}
.yba{bottom:409.144350px;}
.y231{bottom:411.038850px;}
.y15c{bottom:412.007850px;}
.y101{bottom:412.481850px;}
.y5c{bottom:412.576800px;}
.y210{bottom:412.771350px;}
.y13e{bottom:416.243850px;}
.y11c{bottom:416.690850px;}
.y11{bottom:417.045300px;}
.y36{bottom:422.533050px;}
.yd2{bottom:423.443850px;}
.y24c{bottom:426.397800px;}
.y1cb{bottom:426.615600px;}
.y18a{bottom:427.351050px;}
.y1ed{bottom:428.678850px;}
.y1aa{bottom:429.308850px;}
.yb9{bottom:430.603350px;}
.y15b{bottom:432.259350px;}
.y5b{bottom:433.000800px;}
.y20f{bottom:433.718850px;}
.y13d{bottom:436.495350px;}
.y11b{bottom:436.942350px;}
.y10{bottom:436.980300px;}
.y230{bottom:440.349600px;}
.y35{bottom:443.302050px;}
.yd1{bottom:443.695350px;}
.y24b{bottom:445.897800px;}
.y132{bottom:446.692350px;}
.y189{bottom:449.034300px;}
.y1ec{bottom:449.878350px;}
.y1a9{bottom:450.902100px;}
.yb8{bottom:452.062350px;}
.y15a{bottom:452.510850px;}
.y5a{bottom:453.424800px;}
.y1ca{bottom:455.564100px;}
.y13c{bottom:456.746850px;}
.y100{bottom:456.804900px;}
.yf{bottom:456.915300px;}
.y81{bottom:457.192350px;}
.y11a{bottom:457.193850px;}
.y22f{bottom:461.155350px;}
.y20e{bottom:463.171350px;}
.yd0{bottom:463.946850px;}
.y34{bottom:464.071050px;}
.y24a{bottom:465.397800px;}
.y131{bottom:466.943850px;}
.y188{bottom:470.717550px;}
.y1eb{bottom:471.077850px;}
.y159{bottom:472.762350px;}
.yb7{bottom:473.521350px;}
.y59{bottom:473.848800px;}
.y1c9{bottom:476.023350px;}
.y13b{bottom:476.998350px;}
.y80{bottom:477.443850px;}
.y119{bottom:477.445350px;}
.y16a{bottom:477.451350px;}
.y1a8{bottom:481.000350px;}
.y22e{bottom:481.961100px;}
.y20d{bottom:484.118850px;}
.ycf{bottom:484.198350px;}
.y33{bottom:484.840050px;}
.y249{bottom:484.897800px;}
.y130{bottom:487.195350px;}
.ye{bottom:489.615300px;}
.y1ea{bottom:492.277350px;}
.y187{bottom:492.400800px;}
.y158{bottom:493.013850px;}
.y58{bottom:494.272800px;}
.yb6{bottom:494.980350px;}
.y13a{bottom:497.249850px;}
.y7f{bottom:497.695350px;}
.y118{bottom:497.696850px;}
.y1a7{bottom:502.593600px;}
.y22d{bottom:502.766850px;}
.yce{bottom:504.449850px;}
.y1c8{bottom:504.971850px;}
.y20c{bottom:505.066350px;}
.y32{bottom:505.609050px;}
.y12f{bottom:507.446850px;}
.y157{bottom:513.265350px;}
.y186{bottom:514.084050px;}
.y57{bottom:514.696800px;}
.yb5{bottom:516.439350px;}
.y248{bottom:517.147800px;}
.y139{bottom:517.501350px;}
.y7e{bottom:517.946850px;}
.y117{bottom:517.948350px;}
.y1e9{bottom:521.981850px;}
.y1a6{bottom:524.186850px;}
.ycd{bottom:524.692350px;}
.y1c7{bottom:525.431100px;}
.y31{bottom:526.378050px;}
.y12e{bottom:527.698350px;}
.y22c{bottom:532.077600px;}
.y156{bottom:533.516850px;}
.y20b{bottom:534.518850px;}
.y56{bottom:535.120800px;}
.y185{bottom:535.767300px;}
.yb4{bottom:537.898350px;}
.y7d{bottom:538.198350px;}
.y116{bottom:538.199850px;}
.y1e8{bottom:543.181350px;}
.ycc{bottom:544.943850px;}
.y30{bottom:547.147050px;}
.yd{bottom:547.816200px;}
.y12d{bottom:547.949850px;}
.y22b{bottom:552.883350px;}
.y155{bottom:553.762350px;}
.y1a5{bottom:554.285100px;}
.y1c6{bottom:554.379600px;}
.y20a{bottom:555.466350px;}
.y55{bottom:555.544800px;}
.y184{bottom:557.450550px;}
.y7c{bottom:558.449850px;}
.y115{bottom:558.451350px;}
.yb3{bottom:559.357350px;}
.ycb{bottom:565.195350px;}
.y2f{bottom:567.916050px;}
.y12c{bottom:568.201350px;}
.y1e7{bottom:572.885850px;}
.y1c5{bottom:574.838850px;}
.y247{bottom:574.909500px;}
.yc{bottom:575.263200px;}
.y1a4{bottom:575.878350px;}
.y54{bottom:575.968800px;}
.y209{bottom:576.413850px;}
.yff{bottom:577.685250px;}
.y7b{bottom:578.684850px;}
.y9e{bottom:578.689350px;}
.y183{bottom:579.133800px;}
.yb2{bottom:580.816350px;}
.y22a{bottom:582.194100px;}
.yca{bottom:585.446850px;}
.y2e{bottom:588.685050px;}
.y1e6{bottom:594.085350px;}
.y154{bottom:594.265350px;}
.y53{bottom:596.365350px;}
.y1a3{bottom:597.471600px;}
.y7a{bottom:598.936350px;}
.y9d{bottom:598.940850px;}
.y114{bottom:598.948050px;}
.y12b{bottom:598.951350px;}
.yfe{bottom:599.851500px;}
.y246{bottom:601.915500px;}
.yb1{bottom:602.275350px;}
.y229{bottom:602.999850px;}
.y1c4{bottom:603.787350px;}
.yc9{bottom:605.698350px;}
.y208{bottom:605.866350px;}
.y2d{bottom:609.454050px;}
.y153{bottom:614.516850px;}
.y1e5{bottom:615.284850px;}
.y52{bottom:616.789350px;}
.y1a2{bottom:619.064850px;}
.y79{bottom:619.187850px;}
.y9c{bottom:619.192350px;}
.yfd{bottom:622.017750px;}
.y182{bottom:622.084500px;}
.yb0{bottom:623.734350px;}
.yb{bottom:623.961150px;}
.yc8{bottom:625.949850px;}
.y207{bottom:626.813850px;}
.y2c{bottom:630.223050px;}
.y228{bottom:632.310600px;}
.y1c3{bottom:632.735850px;}
.y152{bottom:634.768350px;}
.y51{bottom:637.213350px;}
.y138{bottom:639.001350px;}
.y78{bottom:639.439350px;}
.y9b{bottom:639.443850px;}
.yfc{bottom:644.184000px;}
.y1e4{bottom:644.989350px;}
.yaf{bottom:645.193350px;}
.yc7{bottom:646.201350px;}
.y206{bottom:647.761350px;}
.y1a1{bottom:649.163100px;}
.y2b{bottom:650.992050px;}
.y268{bottom:651.942750px;}
.y1c2{bottom:653.195100px;}
.ya{bottom:655.902150px;}
.y50{bottom:657.637350px;}
.y137{bottom:659.251350px;}
.y77{bottom:659.690850px;}
.y9a{bottom:659.695350px;}
.y227{bottom:661.621350px;}
.y1e3{bottom:666.188850px;}
.yfb{bottom:666.350250px;}
.yae{bottom:666.652350px;}
.y205{bottom:668.708850px;}
.y1a0{bottom:670.756350px;}
.y2a{bottom:671.761050px;}
.y267{bottom:672.192750px;}
.y1c1{bottom:673.654350px;}
.y4f{bottom:678.061350px;}
.y136{bottom:679.501350px;}
.y76{bottom:679.942350px;}
.y99{bottom:679.946850px;}
.y151{bottom:683.057100px;}
.y181{bottom:685.823250px;}
.yc6{bottom:686.701350px;}
.y1e2{bottom:687.388350px;}
.y9{bottom:687.843150px;}
.yad{bottom:688.111350px;}
.y204{bottom:689.656350px;}
.y226{bottom:690.932100px;}
.y19f{bottom:692.349600px;}
.y266{bottom:692.442750px;}
.y29{bottom:692.530050px;}
.y1c0{bottom:694.113600px;}
.y4e{bottom:698.485350px;}
.y135{bottom:699.751350px;}
.y15f{bottom:700.186350px;}
.y75{bottom:700.193850px;}
.y98{bottom:700.198350px;}
.y150{bottom:705.782100px;}
.y180{bottom:707.506500px;}
.y1e1{bottom:708.587850px;}
.yac{bottom:709.570350px;}
.yfa{bottom:710.679900px;}
.y225{bottom:711.737850px;}
.y265{bottom:712.692750px;}
.y28{bottom:713.299050px;}
.y19e{bottom:713.942850px;}
.y4d{bottom:718.909350px;}
.y203{bottom:719.108850px;}
.y105{bottom:720.437850px;}
.y74{bottom:720.445350px;}
.y97{bottom:720.449850px;}
.y1bf{bottom:723.062100px;}
.y14f{bottom:728.507100px;}
.y17f{bottom:729.189750px;}
.yab{bottom:731.029350px;}
.yf9{bottom:732.834900px;}
.y27{bottom:734.068050px;}
.y245{bottom:736.402350px;}
.y1e0{bottom:738.292350px;}
.y4c{bottom:739.333350px;}
.y202{bottom:740.056350px;}
.y96{bottom:740.689350px;}
.y73{bottom:740.696850px;}
.y224{bottom:741.048600px;}
.y1be{bottom:743.521350px;}
.y19d{bottom:744.041100px;}
.y264{bottom:745.692750px;}
.y14e{bottom:746.507100px;}
.y8{bottom:749.568900px;}
.y17e{bottom:750.873000px;}
.yaa{bottom:752.488350px;}
.y26{bottom:754.833150px;}
.y1df{bottom:759.491850px;}
.yf8{bottom:759.623400px;}
.y4b{bottom:759.750600px;}
.y95{bottom:760.940850px;}
.y72{bottom:760.948350px;}
.y201{bottom:761.003850px;}
.y223{bottom:761.854350px;}
.y1bd{bottom:763.980600px;}
.y244{bottom:765.161850px;}
.y19c{bottom:765.634350px;}
.y14d{bottom:769.232100px;}
.y17d{bottom:772.601850px;}
.ya9{bottom:773.947350px;}
.y25{bottom:775.602150px;}
.yf6{bottom:776.106300px;}
.y7{bottom:779.508900px;}
.y4a{bottom:780.174600px;}
.y94{bottom:781.192350px;}
.y71{bottom:781.199850px;}
.y222{bottom:782.660100px;}
.y1bc{bottom:784.439850px;}
.y243{bottom:785.416350px;}
.yf5{bottom:787.106550px;}
.y263{bottom:787.197750px;}
.y19b{bottom:787.227600px;}
.yf7{bottom:788.107800px;}
.y1de{bottom:789.196350px;}
.y200{bottom:790.456350px;}
.y14c{bottom:791.957100px;}
.y17c{bottom:794.285100px;}
.ya8{bottom:795.406350px;}
.y24{bottom:796.371150px;}
.y49{bottom:800.588250px;}
.y6{bottom:800.943900px;}
.y93{bottom:801.443850px;}
.y70{bottom:801.448350px;}
.yf4{bottom:803.594550px;}
.y262{bottom:806.697750px;}
.y19a{bottom:808.820850px;}
.y1dd{bottom:810.395850px;}
.y1ff{bottom:811.403850px;}
.y221{bottom:811.970850px;}
.y1bb{bottom:813.388350px;}
.y242{bottom:814.175850px;}
.y17b{bottom:815.968350px;}
.ya7{bottom:816.865350px;}
.y23{bottom:817.140150px;}
.yf2{bottom:820.077600px;}
.y48{bottom:821.012250px;}
.y14b{bottom:821.441550px;}
.y92{bottom:821.695350px;}
.y6f{bottom:821.699850px;}
.y5{bottom:822.378900px;}
.y261{bottom:826.197750px;}
.yf1{bottom:831.077850px;}
.y1dc{bottom:831.595350px;}
.yf3{bottom:832.079100px;}
.y1fe{bottom:832.351350px;}
.y220{bottom:832.776600px;}
.y1ba{bottom:833.831850px;}
.y241{bottom:834.430350px;}
.y17a{bottom:837.651600px;}
.y22{bottom:837.909150px;}
.ya6{bottom:838.324350px;}
.y199{bottom:838.919100px;}
.y47{bottom:841.436250px;}
.y91{bottom:841.946850px;}
.y6e{bottom:841.948350px;}
.y260{bottom:845.697750px;}
.yef{bottom:847.565850px;}
.y4{bottom:852.318900px;}
.y21f{bottom:853.582350px;}
.y1b9{bottom:854.291100px;}
.y21{bottom:858.678150px;}
.y179{bottom:859.334850px;}
.ya5{bottom:859.783350px;}
.y198{bottom:860.512350px;}
.yee{bottom:861.065850px;}
.y1db{bottom:861.299850px;}
.y1fd{bottom:861.803850px;}
.y46{bottom:861.853350px;}
.y90{bottom:862.198350px;}
.y6d{bottom:862.199850px;}
.y240{bottom:863.189850px;}
.y25f{bottom:865.197750px;}
.yf0{bottom:874.565850px;}
.y178{bottom:881.018100px;}
.ya4{bottom:881.242350px;}
.y197{bottom:882.105600px;}
.y3{bottom:882.258900px;}
.y45{bottom:882.277350px;}
.y6c{bottom:882.449850px;}
.y1da{bottom:882.499350px;}
.y1fc{bottom:882.751350px;}
.y21e{bottom:882.893100px;}
.y1b8{bottom:883.239600px;}
.y23f{bottom:883.444350px;}
.y25e{bottom:884.697750px;}
.yed{bottom:888.065850px;}
.y20{bottom:900.706200px;}
.yec{bottom:901.565850px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y25d{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.h1f{height:29.879883px;}
.h17{height:33.870539px;}
.h20{height:35.663086px;}
.h1e{height:39.726562px;}
.h7{height:40.757812px;}
.h18{height:45.852539px;}
.h1a{height:46.236750px;}
.he{height:49.658203px;}
.h4{height:50.947266px;}
.h21{height:51.750000px;}
.h28{height:52.141113px;}
.h3{height:53.494629px;}
.h19{height:58.218750px;}
.h9{height:58.589355px;}
.hc{height:58.592355px;}
.h14{height:58.595355px;}
.hd{height:58.598955px;}
.h15{height:58.601355px;}
.ha{height:58.604955px;}
.h27{height:58.607355px;}
.h26{height:58.613355px;}
.h11{height:58.616355px;}
.hf{height:58.616955px;}
.h25{height:58.619355px;}
.h1d{height:58.625355px;}
.h10{height:58.630755px;}
.h1b{height:58.637355px;}
.h16{height:58.655355px;}
.h24{height:58.661355px;}
.h22{height:58.665555px;}
.h12{height:58.699155px;}
.h2{height:63.684082px;}
.h1c{height:64.687500px;}
.h23{height:64.700700px;}
.h29{height:67.921875px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.hb{height:74.390625px;}
.h13{height:74.583225px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:82.214250px;}
.x4{left:83.775600px;}
.x1{left:85.039350px;}
.xb{left:87.687000px;}
.x39{left:93.583500px;}
.x26{left:98.571000px;}
.x9{left:100.527000px;}
.x8{left:102.438300px;}
.x3b{left:103.733100px;}
.x3{left:105.030600px;}
.x5{left:106.049250px;}
.xa{left:107.595000px;}
.x33{left:132.176700px;}
.xd{left:137.007000px;}
.xc{left:138.555000px;}
.x27{left:139.596000px;}
.xe{left:162.939000px;}
.xf{left:164.415000px;}
.x28{left:175.317000px;}
.x7{left:212.319000px;}
.x29{left:214.219500px;}
.x2{left:233.345250px;}
.x11{left:244.371000px;}
.x12{left:246.051000px;}
.x2b{left:249.972000px;}
.x10{left:251.115000px;}
.x2a{left:256.954500px;}
.x3a{left:286.108500px;}
.x13{left:290.631000px;}
.x2c{left:295.017000px;}
.x16{left:313.851000px;}
.x15{left:316.623000px;}
.x14{left:320.259000px;}
.x2d{left:323.293500px;}
.x17{left:346.935000px;}
.x1a{left:350.919000px;}
.x18{left:352.107000px;}
.x19{left:354.531000px;}
.x2e{left:358.762500px;}
.x1b{left:391.503000px;}
.x1c{left:401.055000px;}
.x38{left:406.116750px;}
.x37{left:407.962500px;}
.x36{left:427.386000px;}
.x35{left:429.652650px;}
.x1d{left:432.363000px;}
.x1f{left:438.459000px;}
.x1e{left:441.495000px;}
.x2f{left:445.713000px;}
.x20{left:471.843000px;}
.x21{left:474.699000px;}
.x30{left:484.143000px;}
.x34{left:485.192850px;}
.x22{left:517.059000px;}
.x31{left:522.657000px;}
.x23{left:555.519000px;}
.x32{left:563.533500px;}
.x25{left:592.179000px;}
.x24{left:597.147000px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v2{vertical-align:-9.754667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.559467pt;}
.v6{vertical-align:9.757333pt;}
.v4{vertical-align:12.426667pt;}
.v1{vertical-align:15.104533pt;}
.ls17{letter-spacing:-3.733333pt;}
.ls18{letter-spacing:-3.312000pt;}
.ls1c{letter-spacing:-2.866667pt;}
.ls3d{letter-spacing:-2.533333pt;}
.ls31{letter-spacing:-2.517333pt;}
.ls12{letter-spacing:-1.901333pt;}
.ls5d{letter-spacing:-1.466667pt;}
.ls34{letter-spacing:-1.280000pt;}
.ls25{letter-spacing:-1.194667pt;}
.ls19{letter-spacing:-1.152000pt;}
.lsc{letter-spacing:-1.080000pt;}
.ls56{letter-spacing:-1.008000pt;}
.ls3a{letter-spacing:-0.938667pt;}
.ls23{letter-spacing:-0.870613pt;}
.ls48{letter-spacing:-0.864000pt;}
.ls24{letter-spacing:-0.853333pt;}
.ls39{letter-spacing:-0.810667pt;}
.lse{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.733333pt;}
.ls3{letter-spacing:-0.616000pt;}
.ls3b{letter-spacing:-0.597333pt;}
.ls1d{letter-spacing:-0.557333pt;}
.ls43{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.245333pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls41{letter-spacing:-0.184000pt;}
.ls2f{letter-spacing:-0.170667pt;}
.ls44{letter-spacing:-0.160000pt;}
.ls46{letter-spacing:-0.152000pt;}
.ls30{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.000267pt;}
.ls36{letter-spacing:0.042667pt;}
.ls26{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.170667pt;}
.ls32{letter-spacing:0.213333pt;}
.ls28{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.298667pt;}
.ls2b{letter-spacing:0.341333pt;}
.ls38{letter-spacing:0.384000pt;}
.ls52{letter-spacing:0.400000pt;}
.ls29{letter-spacing:0.426667pt;}
.ls37{letter-spacing:0.469333pt;}
.ls2e{letter-spacing:0.512000pt;}
.ls40{letter-spacing:0.600000pt;}
.ls5a{letter-spacing:0.672000pt;}
.ls33{letter-spacing:0.682667pt;}
.ls55{letter-spacing:0.933333pt;}
.ls1f{letter-spacing:0.938667pt;}
.ls11{letter-spacing:1.120000pt;}
.ls20{letter-spacing:1.237333pt;}
.ls2d{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.408000pt;}
.lsb{letter-spacing:1.866667pt;}
.ls5{letter-spacing:2.133333pt;}
.ls10{letter-spacing:2.447200pt;}
.ls4b{letter-spacing:2.604000pt;}
.ls59{letter-spacing:3.348800pt;}
.ls9{letter-spacing:3.626667pt;}
.ls1{letter-spacing:3.733333pt;}
.ls49{letter-spacing:3.864000pt;}
.ls4f{letter-spacing:3.964800pt;}
.ls7{letter-spacing:5.120000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls4{letter-spacing:5.333333pt;}
.ls4a{letter-spacing:5.600000pt;}
.ls50{letter-spacing:6.563200pt;}
.ls58{letter-spacing:7.616000pt;}
.ls51{letter-spacing:7.694400pt;}
.ls53{letter-spacing:7.918400pt;}
.ls4e{letter-spacing:8.752800pt;}
.ls4d{letter-spacing:8.764000pt;}
.ls57{letter-spacing:9.906400pt;}
.ls21{letter-spacing:11.349333pt;}
.ls5c{letter-spacing:12.639200pt;}
.ls15{letter-spacing:20.385600pt;}
.ls22{letter-spacing:39.552000pt;}
.ls16{letter-spacing:50.174400pt;}
.ls54{letter-spacing:448.389867pt;}
.ls3f{letter-spacing:448.699733pt;}
.ls4c{letter-spacing:448.879467pt;}
.ls45{letter-spacing:449.266133pt;}
.ls47{letter-spacing:449.292800pt;}
.ls42{letter-spacing:449.532800pt;}
.ls5b{letter-spacing:450.782933pt;}
.ls8{letter-spacing:455.274667pt;}
.ls3c{letter-spacing:457.088000pt;}
.ls1b{letter-spacing:457.414933pt;}
.ls13{letter-spacing:458.268267pt;}
.ls3e{letter-spacing:880.020267pt;}
.lsf{letter-spacing:880.460267pt;}
.ls1a{letter-spacing:882.793600pt;}
.ls1e{letter-spacing:886.393600pt;}
.ls0{letter-spacing:888.153600pt;}
.ws64{word-spacing:-20.320000pt;}
.ws0{word-spacing:-20.213333pt;}
.ws1{word-spacing:-20.106667pt;}
.ws5f{word-spacing:-19.666667pt;}
.ws5a{word-spacing:-19.600000pt;}
.ws59{word-spacing:-19.368000pt;}
.ws50{word-spacing:-19.333333pt;}
.ws9{word-spacing:-19.152000pt;}
.ws5e{word-spacing:-19.133333pt;}
.ws57{word-spacing:-18.733333pt;}
.ws53{word-spacing:-18.466667pt;}
.ws7{word-spacing:-18.000000pt;}
.ws63{word-spacing:-17.266667pt;}
.wsa{word-spacing:-17.234667pt;}
.ws13{word-spacing:-16.920000pt;}
.ws49{word-spacing:-16.200000pt;}
.ws15{word-spacing:-15.866667pt;}
.ws5b{word-spacing:-15.736000pt;}
.ws10{word-spacing:-15.149333pt;}
.ws12{word-spacing:-15.000000pt;}
.ws65{word-spacing:-14.986667pt;}
.ws51{word-spacing:-14.965333pt;}
.ws61{word-spacing:-14.504000pt;}
.ws54{word-spacing:-14.224000pt;}
.ws5c{word-spacing:-13.832000pt;}
.ws1f{word-spacing:-13.397333pt;}
.wsf{word-spacing:-13.248000pt;}
.ws1a{word-spacing:-13.226667pt;}
.ws66{word-spacing:-13.173333pt;}
.ws23{word-spacing:-12.928000pt;}
.ws60{word-spacing:-12.824000pt;}
.ws27{word-spacing:-12.672000pt;}
.ws22{word-spacing:-12.501333pt;}
.ws8{word-spacing:-12.357333pt;}
.ws20{word-spacing:-12.330667pt;}
.ws21{word-spacing:-12.288000pt;}
.ws1d{word-spacing:-12.245333pt;}
.ws26{word-spacing:-12.202667pt;}
.ws1e{word-spacing:-12.160000pt;}
.ws1c{word-spacing:-12.117333pt;}
.ws18{word-spacing:-12.064267pt;}
.ws2e{word-spacing:-11.989333pt;}
.ws24{word-spacing:-11.818667pt;}
.ws19{word-spacing:-11.136000pt;}
.ws32{word-spacing:-11.008000pt;}
.ws1b{word-spacing:-10.794667pt;}
.ws35{word-spacing:-10.752000pt;}
.ws34{word-spacing:-10.709333pt;}
.ws2f{word-spacing:-10.581333pt;}
.ws2d{word-spacing:-10.538667pt;}
.ws29{word-spacing:-10.490667pt;}
.ws2b{word-spacing:-10.325333pt;}
.ws2a{word-spacing:-10.080000pt;}
.wsb{word-spacing:-10.047811pt;}
.ws25{word-spacing:-9.472000pt;}
.ws17{word-spacing:-6.809440pt;}
.ws5d{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws6{word-spacing:-3.733333pt;}
.wsc{word-spacing:-3.626667pt;}
.ws5{word-spacing:-2.133333pt;}
.ws45{word-spacing:-1.280000pt;}
.ws47{word-spacing:-1.237333pt;}
.ws11{word-spacing:-1.120000pt;}
.ws44{word-spacing:-0.938667pt;}
.ws43{word-spacing:-0.426667pt;}
.ws42{word-spacing:-0.170667pt;}
.ws2{word-spacing:0.000000pt;}
.ws46{word-spacing:0.042667pt;}
.ws58{word-spacing:0.152000pt;}
.ws56{word-spacing:0.160000pt;}
.ws52{word-spacing:0.184000pt;}
.wsd{word-spacing:0.245333pt;}
.ws55{word-spacing:0.266667pt;}
.ws62{word-spacing:0.392000pt;}
.ws16{word-spacing:0.557333pt;}
.ws3{word-spacing:0.616000pt;}
.wse{word-spacing:0.760000pt;}
.ws48{word-spacing:0.938667pt;}
.ws14{word-spacing:1.152000pt;}
.ws3d{word-spacing:7.817600pt;}
.ws2c{word-spacing:9.813333pt;}
.ws4e{word-spacing:10.513067pt;}
.ws3e{word-spacing:16.298667pt;}
.ws4b{word-spacing:25.363200pt;}
.ws4f{word-spacing:25.382400pt;}
.ws33{word-spacing:29.184000pt;}
.ws36{word-spacing:30.720000pt;}
.ws38{word-spacing:31.232000pt;}
.ws4c{word-spacing:33.066667pt;}
.ws37{word-spacing:46.178133pt;}
.ws3b{word-spacing:46.182400pt;}
.ws30{word-spacing:62.976000pt;}
.ws40{word-spacing:63.005867pt;}
.ws3a{word-spacing:63.006400pt;}
.ws31{word-spacing:70.229333pt;}
.ws4a{word-spacing:71.276800pt;}
.ws4d{word-spacing:72.209600pt;}
.ws3f{word-spacing:72.436800pt;}
.ws3c{word-spacing:72.881600pt;}
.ws41{word-spacing:73.282667pt;}
.ws39{word-spacing:74.114667pt;}
.ws28{word-spacing:74.263467pt;}
._23{margin-left:-17.237600pt;}
._2e{margin-left:-15.581600pt;}
._2f{margin-left:-9.986400pt;}
._8{margin-left:-8.678400pt;}
._2d{margin-left:-7.446933pt;}
._9{margin-left:-6.325333pt;}
._a{margin-left:-4.551200pt;}
._7{margin-left:-3.292533pt;}
._2{margin-left:-1.842400pt;}
._c{margin-left:-0.897600pt;}
._3{width:1.176267pt;}
._1{width:2.133333pt;}
._5{width:3.120000pt;}
._14{width:4.010667pt;}
._4{width:4.900267pt;}
._6{width:6.067467pt;}
._b{width:7.582400pt;}
._d{width:8.997333pt;}
._13{width:10.609867pt;}
._10{width:11.730400pt;}
._15{width:12.696533pt;}
._16{width:13.598933pt;}
._1c{width:14.712000pt;}
._1d{width:15.637333pt;}
._30{width:16.669600pt;}
._19{width:18.061931pt;}
._1e{width:18.992357pt;}
._18{width:19.968101pt;}
._12{width:20.910400pt;}
._2c{width:22.035733pt;}
._22{width:22.926400pt;}
._34{width:23.979200pt;}
._32{width:25.661600pt;}
._33{width:26.560800pt;}
._2a{width:27.753600pt;}
._31{width:31.083200pt;}
._20{width:32.195200pt;}
._2b{width:33.168800pt;}
._35{width:35.369867pt;}
._29{width:37.041067pt;}
._17{width:38.617920pt;}
._f{width:40.178133pt;}
._28{width:43.159200pt;}
._1a{width:44.254400pt;}
._1b{width:50.905333pt;}
._21{width:63.471467pt;}
._1f{width:73.770667pt;}
._25{width:74.705333pt;}
._11{width:76.048000pt;}
._27{width:111.653600pt;}
._26{width:214.163200pt;}
._e{width:231.653333pt;}
._24{width:324.533600pt;}
._0{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsf{font-size:42.933333pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y134{bottom:89.867867pt;}
.y1b7{bottom:94.285867pt;}
.y1d9{bottom:94.439867pt;}
.yc5{bottom:94.458000pt;}
.y6b{bottom:94.463733pt;}
.y8f{bottom:94.477600pt;}
.y42{bottom:94.487600pt;}
.y104{bottom:94.488133pt;}
.y196{bottom:94.495467pt;}
.y1e{bottom:94.497200pt;}
.y1fb{bottom:94.551867pt;}
.y21d{bottom:94.607867pt;}
.y23e{bottom:94.705867pt;}
.y15e{bottom:95.838400pt;}
.yeb{bottom:98.428267pt;}
.y169{bottom:99.993200pt;}
.y113{bottom:100.393200pt;}
.y12a{bottom:100.394533pt;}
.ya3{bottom:100.397200pt;}
.y25c{bottom:101.686933pt;}
.y133{bottom:107.867867pt;}
.y8e{bottom:109.813600pt;}
.y6a{bottom:112.618400pt;}
.y1d8{bottom:112.625867pt;}
.y41{bottom:112.946800pt;}
.ye9{bottom:113.079733pt;}
.y23d{bottom:113.199867pt;}
.y1fa{bottom:113.395867pt;}
.y1b6{bottom:113.479867pt;}
.yc4{bottom:113.532667pt;}
.y1d{bottom:113.550533pt;}
.y195{bottom:113.773467pt;}
.y177{bottom:116.145200pt;}
.y168{bottom:117.994533pt;}
.y112{bottom:118.394533pt;}
.y129{bottom:118.395867pt;}
.ya2{bottom:118.398533pt;}
.y25b{bottom:119.020267pt;}
.y21c{bottom:120.787867pt;}
.ye8{bottom:122.857733pt;}
.yea{bottom:123.747733pt;}
.y8d{bottom:125.149600pt;}
.y69{bottom:130.773067pt;}
.y40{bottom:131.408133pt;}
.y1f9{bottom:132.239867pt;}
.y1c{bottom:132.603867pt;}
.yc3{bottom:132.607333pt;}
.y194{bottom:133.051467pt;}
.y176{bottom:134.146533pt;}
.y167{bottom:135.995867pt;}
.y14a{bottom:136.001200pt;}
.y25a{bottom:136.353600pt;}
.y111{bottom:136.395867pt;}
.y128{bottom:136.397200pt;}
.ya1{bottom:136.399867pt;}
.ye7{bottom:137.513733pt;}
.y1d7{bottom:138.357867pt;}
.y23c{bottom:139.253867pt;}
.y21b{bottom:139.407867pt;}
.y1b5{bottom:140.233867pt;}
.y8c{bottom:140.485600pt;}
.y68{bottom:148.927733pt;}
.y3f{bottom:149.869467pt;}
.y1f8{bottom:151.083867pt;}
.y1b{bottom:151.674933pt;}
.yc2{bottom:151.682000pt;}
.y175{bottom:152.147867pt;}
.ye5{bottom:152.165200pt;}
.y259{bottom:153.686933pt;}
.y166{bottom:153.997200pt;}
.y149{bottom:154.001200pt;}
.y110{bottom:154.397200pt;}
.y127{bottom:154.398533pt;}
.ya0{bottom:154.401200pt;}
.y1d6{bottom:156.529867pt;}
.y23b{bottom:157.747867pt;}
.y8b{bottom:158.484267pt;}
.y1b4{bottom:159.427867pt;}
.y193{bottom:159.889467pt;}
.ye4{bottom:161.943333pt;}
.ye6{bottom:162.833200pt;}
.y21a{bottom:165.587867pt;}
.y67{bottom:167.082400pt;}
.y3e{bottom:168.330133pt;}
.y1a{bottom:169.394933pt;}
.y1f7{bottom:169.927867pt;}
.y174{bottom:170.149200pt;}
.yc1{bottom:170.756667pt;}
.y258{bottom:171.020267pt;}
.y165{bottom:171.998533pt;}
.y148{bottom:172.001200pt;}
.y10f{bottom:172.398533pt;}
.y126{bottom:172.399867pt;}
.y8a{bottom:174.926400pt;}
.ye3{bottom:176.599333pt;}
.y1b3{bottom:178.621867pt;}
.y1d5{bottom:182.261867pt;}
.y23a{bottom:183.801867pt;}
.y219{bottom:184.207867pt;}
.y66{bottom:185.237067pt;}
.y3d{bottom:186.791467pt;}
.y19{bottom:187.114933pt;}
.y173{bottom:188.150533pt;}
.y257{bottom:188.353600pt;}
.y1f6{bottom:188.771867pt;}
.yc0{bottom:189.831333pt;}
.y164{bottom:189.999867pt;}
.y147{bottom:190.001200pt;}
.y89{bottom:190.262400pt;}
.y125{bottom:190.394533pt;}
.y10e{bottom:190.399867pt;}
.y9f{bottom:190.401200pt;}
.ye1{bottom:191.250800pt;}
.y1d4{bottom:200.447867pt;}
.ye0{bottom:201.028933pt;}
.ye2{bottom:201.918800pt;}
.y239{bottom:202.295867pt;}
.y218{bottom:202.827867pt;}
.y65{bottom:203.391733pt;}
.y18{bottom:204.834933pt;}
.y1b2{bottom:205.375867pt;}
.y88{bottom:205.598400pt;}
.y256{bottom:205.686933pt;}
.y172{bottom:206.151867pt;}
.y1f5{bottom:207.615867pt;}
.y163{bottom:207.997200pt;}
.y10d{bottom:208.393200pt;}
.ydf{bottom:215.684933pt;}
.y1d3{bottom:218.633867pt;}
.y238{bottom:220.789867pt;}
.y64{bottom:221.546400pt;}
.y255{bottom:223.020267pt;}
.y87{bottom:223.597067pt;}
.y3c{bottom:224.145733pt;}
.y171{bottom:224.153200pt;}
.y1b1{bottom:224.569867pt;}
.y192{bottom:225.675600pt;}
.y146{bottom:225.983867pt;}
.y10c{bottom:226.394533pt;}
.y124{bottom:226.397200pt;}
.ybf{bottom:227.789467pt;}
.y217{bottom:229.007867pt;}
.ydd{bottom:230.336400pt;}
.y17{bottom:233.901600pt;}
.y1f4{bottom:234.019867pt;}
.y63{bottom:239.695067pt;}
.ydc{bottom:240.114533pt;}
.y254{bottom:240.353600pt;}
.yde{bottom:241.004400pt;}
.y170{bottom:242.149200pt;}
.y145{bottom:243.985200pt;}
.y162{bottom:243.999867pt;}
.y1d2{bottom:244.365867pt;}
.y10b{bottom:244.395867pt;}
.y123{bottom:244.398533pt;}
.y191{bottom:244.949600pt;}
.y3b{bottom:245.943733pt;}
.y237{bottom:246.843867pt;}
.y216{bottom:247.627867pt;}
.ybe{bottom:250.199467pt;}
.y1b0{bottom:251.323867pt;}
.y1f3{bottom:252.863867pt;}
.ydb{bottom:254.770533pt;}
.y253{bottom:257.686933pt;}
.y62{bottom:257.849733pt;}
.y16f{bottom:260.150533pt;}
.y86{bottom:260.599333pt;}
.y144{bottom:261.986533pt;}
.y161{bottom:262.001200pt;}
.y10a{bottom:262.397200pt;}
.y122{bottom:262.399867pt;}
.y1d1{bottom:262.551867pt;}
.y190{bottom:264.223600pt;}
.y236{bottom:265.337867pt;}
.y215{bottom:266.247867pt;}
.yd9{bottom:269.421867pt;}
.y1af{bottom:270.517867pt;}
.y252{bottom:275.020267pt;}
.y61{bottom:275.961600pt;}
.y16{bottom:278.088267pt;}
.y16e{bottom:278.151867pt;}
.y85{bottom:278.599333pt;}
.yd8{bottom:279.200000pt;}
.y1f2{bottom:279.267867pt;}
.y143{bottom:279.987867pt;}
.yda{bottom:280.089867pt;}
.y121{bottom:280.385200pt;}
.y109{bottom:280.398533pt;}
.y1d0{bottom:280.737867pt;}
.y18f{bottom:283.497600pt;}
.y235{bottom:283.831867pt;}
.y251{bottom:292.353600pt;}
.y214{bottom:292.427867pt;}
.yd6{bottom:293.856000pt;}
.y60{bottom:294.116267pt;}
.y16d{bottom:296.153200pt;}
.y84{bottom:296.600667pt;}
.y15{bottom:297.141600pt;}
.y1ae{bottom:297.271867pt;}
.y142{bottom:297.989200pt;}
.y160{bottom:298.001200pt;}
.y1f1{bottom:298.111867pt;}
.y120{bottom:298.386533pt;}
.y108{bottom:298.399867pt;}
.y1cf{bottom:298.923867pt;}
.y3a{bottom:301.739600pt;}
.y18e{bottom:302.771600pt;}
.yd5{bottom:305.856000pt;}
.ybd{bottom:306.459867pt;}
.y250{bottom:309.686933pt;}
.y234{bottom:309.885867pt;}
.y213{bottom:311.047867pt;}
.y5f{bottom:312.270933pt;}
.y16c{bottom:314.154533pt;}
.y141{bottom:315.990533pt;}
.y14{bottom:316.194933pt;}
.y11f{bottom:316.387867pt;}
.y107{bottom:316.401200pt;}
.y1ad{bottom:316.465867pt;}
.y1f0{bottom:316.955867pt;}
.yd7{bottom:317.856000pt;}
.y39{bottom:320.200933pt;}
.y18d{bottom:322.045600pt;}
.y1ce{bottom:324.655867pt;}
.ybc{bottom:325.534533pt;}
.y24f{bottom:327.020267pt;}
.y103{bottom:327.243867pt;}
.y233{bottom:328.379867pt;}
.y212{bottom:329.667867pt;}
.yd4{bottom:329.856000pt;}
.y5e{bottom:330.425600pt;}
.y83{bottom:333.501600pt;}
.y140{bottom:333.991867pt;}
.y11e{bottom:334.389200pt;}
.y13{bottom:335.266933pt;}
.y1ac{bottom:335.659867pt;}
.y1ef{bottom:335.799867pt;}
.y38{bottom:338.662267pt;}
.y18c{bottom:341.319600pt;}
.yd3{bottom:341.856000pt;}
.y1cd{bottom:342.841867pt;}
.y24e{bottom:344.353600pt;}
.ybb{bottom:344.609200pt;}
.y232{bottom:346.873867pt;}
.y102{bottom:346.947200pt;}
.y15d{bottom:348.227867pt;}
.y211{bottom:348.287867pt;}
.y5d{bottom:348.580267pt;}
.y16b{bottom:351.052133pt;}
.y13f{bottom:351.993200pt;}
.y11d{bottom:352.390533pt;}
.y106{bottom:352.401200pt;}
.y12{bottom:352.986933pt;}
.y1ee{bottom:354.643867pt;}
.y82{bottom:354.831600pt;}
.y37{bottom:357.123600pt;}
.y18b{bottom:360.593600pt;}
.y1cc{bottom:361.027867pt;}
.y24d{bottom:361.686933pt;}
.y1ab{bottom:362.413867pt;}
.yba{bottom:363.683867pt;}
.y231{bottom:365.367867pt;}
.y15c{bottom:366.229200pt;}
.y101{bottom:366.650533pt;}
.y5c{bottom:366.734933pt;}
.y210{bottom:366.907867pt;}
.y13e{bottom:369.994533pt;}
.y11c{bottom:370.391867pt;}
.y11{bottom:370.706933pt;}
.y36{bottom:375.584933pt;}
.yd2{bottom:376.394533pt;}
.y24c{bottom:379.020267pt;}
.y1cb{bottom:379.213867pt;}
.y18a{bottom:379.867600pt;}
.y1ed{bottom:381.047867pt;}
.y1aa{bottom:381.607867pt;}
.yb9{bottom:382.758533pt;}
.y15b{bottom:384.230533pt;}
.y5b{bottom:384.889600pt;}
.y20f{bottom:385.527867pt;}
.y13d{bottom:387.995867pt;}
.y11b{bottom:388.393200pt;}
.y10{bottom:388.426933pt;}
.y230{bottom:391.421867pt;}
.y35{bottom:394.046267pt;}
.yd1{bottom:394.395867pt;}
.y24b{bottom:396.353600pt;}
.y132{bottom:397.059867pt;}
.y189{bottom:399.141600pt;}
.y1ec{bottom:399.891867pt;}
.y1a9{bottom:400.801867pt;}
.yb8{bottom:401.833200pt;}
.y15a{bottom:402.231867pt;}
.y5a{bottom:403.044267pt;}
.y1ca{bottom:404.945867pt;}
.y13c{bottom:405.997200pt;}
.y100{bottom:406.048800pt;}
.yf{bottom:406.146933pt;}
.y81{bottom:406.393200pt;}
.y11a{bottom:406.394533pt;}
.y22f{bottom:409.915867pt;}
.y20e{bottom:411.707867pt;}
.yd0{bottom:412.397200pt;}
.y34{bottom:412.507600pt;}
.y24a{bottom:413.686933pt;}
.y131{bottom:415.061200pt;}
.y188{bottom:418.415600pt;}
.y1eb{bottom:418.735867pt;}
.y159{bottom:420.233200pt;}
.yb7{bottom:420.907867pt;}
.y59{bottom:421.198933pt;}
.y1c9{bottom:423.131867pt;}
.y13b{bottom:423.998533pt;}
.y80{bottom:424.394533pt;}
.y119{bottom:424.395867pt;}
.y16a{bottom:424.401200pt;}
.y1a8{bottom:427.555867pt;}
.y22e{bottom:428.409867pt;}
.y20d{bottom:430.327867pt;}
.ycf{bottom:430.398533pt;}
.y33{bottom:430.968933pt;}
.y249{bottom:431.020267pt;}
.y130{bottom:433.062533pt;}
.ye{bottom:435.213600pt;}
.y1ea{bottom:437.579867pt;}
.y187{bottom:437.689600pt;}
.y158{bottom:438.234533pt;}
.y58{bottom:439.353600pt;}
.yb6{bottom:439.982533pt;}
.y13a{bottom:441.999867pt;}
.y7f{bottom:442.395867pt;}
.y118{bottom:442.397200pt;}
.y1a7{bottom:446.749867pt;}
.y22d{bottom:446.903867pt;}
.yce{bottom:448.399867pt;}
.y1c8{bottom:448.863867pt;}
.y20c{bottom:448.947867pt;}
.y32{bottom:449.430267pt;}
.y12f{bottom:451.063867pt;}
.y157{bottom:456.235867pt;}
.y186{bottom:456.963600pt;}
.y57{bottom:457.508267pt;}
.yb5{bottom:459.057200pt;}
.y248{bottom:459.686933pt;}
.y139{bottom:460.001200pt;}
.y7e{bottom:460.397200pt;}
.y117{bottom:460.398533pt;}
.y1e9{bottom:463.983867pt;}
.y1a6{bottom:465.943867pt;}
.ycd{bottom:466.393200pt;}
.y1c7{bottom:467.049867pt;}
.y31{bottom:467.891600pt;}
.y12e{bottom:469.065200pt;}
.y22c{bottom:472.957867pt;}
.y156{bottom:474.237200pt;}
.y20b{bottom:475.127867pt;}
.y56{bottom:475.662933pt;}
.y185{bottom:476.237600pt;}
.yb4{bottom:478.131867pt;}
.y7d{bottom:478.398533pt;}
.y116{bottom:478.399867pt;}
.y1e8{bottom:482.827867pt;}
.ycc{bottom:484.394533pt;}
.y30{bottom:486.352933pt;}
.yd{bottom:486.947733pt;}
.y12d{bottom:487.066533pt;}
.y22b{bottom:491.451867pt;}
.y155{bottom:492.233200pt;}
.y1a5{bottom:492.697867pt;}
.y1c6{bottom:492.781867pt;}
.y20a{bottom:493.747867pt;}
.y55{bottom:493.817600pt;}
.y184{bottom:495.511600pt;}
.y7c{bottom:496.399867pt;}
.y115{bottom:496.401200pt;}
.yb3{bottom:497.206533pt;}
.ycb{bottom:502.395867pt;}
.y2f{bottom:504.814267pt;}
.y12c{bottom:505.067867pt;}
.y1e7{bottom:509.231867pt;}
.y1c5{bottom:510.967867pt;}
.y247{bottom:511.030667pt;}
.yc{bottom:511.345067pt;}
.y1a4{bottom:511.891867pt;}
.y54{bottom:511.972267pt;}
.y209{bottom:512.367867pt;}
.yff{bottom:513.498000pt;}
.y7b{bottom:514.386533pt;}
.y9e{bottom:514.390533pt;}
.y183{bottom:514.785600pt;}
.yb2{bottom:516.281200pt;}
.y22a{bottom:517.505867pt;}
.yca{bottom:520.397200pt;}
.y2e{bottom:523.275600pt;}
.y1e6{bottom:528.075867pt;}
.y154{bottom:528.235867pt;}
.y53{bottom:530.102533pt;}
.y1a3{bottom:531.085867pt;}
.y7a{bottom:532.387867pt;}
.y9d{bottom:532.391867pt;}
.y114{bottom:532.398267pt;}
.y12b{bottom:532.401200pt;}
.yfe{bottom:533.201333pt;}
.y246{bottom:535.036000pt;}
.yb1{bottom:535.355867pt;}
.y229{bottom:535.999867pt;}
.y1c4{bottom:536.699867pt;}
.yc9{bottom:538.398533pt;}
.y208{bottom:538.547867pt;}
.y2d{bottom:541.736933pt;}
.y153{bottom:546.237200pt;}
.y1e5{bottom:546.919867pt;}
.y52{bottom:548.257200pt;}
.y1a2{bottom:550.279867pt;}
.y79{bottom:550.389200pt;}
.y9c{bottom:550.393200pt;}
.yfd{bottom:552.904667pt;}
.y182{bottom:552.964000pt;}
.yb0{bottom:554.430533pt;}
.yb{bottom:554.632133pt;}
.yc8{bottom:556.399867pt;}
.y207{bottom:557.167867pt;}
.y2c{bottom:560.198267pt;}
.y228{bottom:562.053867pt;}
.y1c3{bottom:562.431867pt;}
.y152{bottom:564.238533pt;}
.y51{bottom:566.411867pt;}
.y138{bottom:568.001200pt;}
.y78{bottom:568.390533pt;}
.y9b{bottom:568.394533pt;}
.yfc{bottom:572.608000pt;}
.y1e4{bottom:573.323867pt;}
.yaf{bottom:573.505200pt;}
.yc7{bottom:574.401200pt;}
.y206{bottom:575.787867pt;}
.y1a1{bottom:577.033867pt;}
.y2b{bottom:578.659600pt;}
.y268{bottom:579.504667pt;}
.y1c2{bottom:580.617867pt;}
.ya{bottom:583.024133pt;}
.y50{bottom:584.566533pt;}
.y137{bottom:586.001200pt;}
.y77{bottom:586.391867pt;}
.y9a{bottom:586.395867pt;}
.y227{bottom:588.107867pt;}
.y1e3{bottom:592.167867pt;}
.yfb{bottom:592.311333pt;}
.yae{bottom:592.579867pt;}
.y205{bottom:594.407867pt;}
.y1a0{bottom:596.227867pt;}
.y2a{bottom:597.120933pt;}
.y267{bottom:597.504667pt;}
.y1c1{bottom:598.803867pt;}
.y4f{bottom:602.721200pt;}
.y136{bottom:604.001200pt;}
.y76{bottom:604.393200pt;}
.y99{bottom:604.397200pt;}
.y151{bottom:607.161867pt;}
.y181{bottom:609.620667pt;}
.yc6{bottom:610.401200pt;}
.y1e2{bottom:611.011867pt;}
.y9{bottom:611.416133pt;}
.yad{bottom:611.654533pt;}
.y204{bottom:613.027867pt;}
.y226{bottom:614.161867pt;}
.y19f{bottom:615.421867pt;}
.y266{bottom:615.504667pt;}
.y29{bottom:615.582267pt;}
.y1c0{bottom:616.989867pt;}
.y4e{bottom:620.875867pt;}
.y135{bottom:622.001200pt;}
.y15f{bottom:622.387867pt;}
.y75{bottom:622.394533pt;}
.y98{bottom:622.398533pt;}
.y150{bottom:627.361867pt;}
.y180{bottom:628.894667pt;}
.y1e1{bottom:629.855867pt;}
.yac{bottom:630.729200pt;}
.yfa{bottom:631.715467pt;}
.y225{bottom:632.655867pt;}
.y265{bottom:633.504667pt;}
.y28{bottom:634.043600pt;}
.y19e{bottom:634.615867pt;}
.y4d{bottom:639.030533pt;}
.y203{bottom:639.207867pt;}
.y105{bottom:640.389200pt;}
.y74{bottom:640.395867pt;}
.y97{bottom:640.399867pt;}
.y1bf{bottom:642.721867pt;}
.y14f{bottom:647.561867pt;}
.y17f{bottom:648.168667pt;}
.yab{bottom:649.803867pt;}
.yf9{bottom:651.408800pt;}
.y27{bottom:652.504933pt;}
.y245{bottom:654.579867pt;}
.y1e0{bottom:656.259867pt;}
.y4c{bottom:657.185200pt;}
.y202{bottom:657.827867pt;}
.y96{bottom:658.390533pt;}
.y73{bottom:658.397200pt;}
.y224{bottom:658.709867pt;}
.y1be{bottom:660.907867pt;}
.y19d{bottom:661.369867pt;}
.y264{bottom:662.838000pt;}
.y14e{bottom:663.561867pt;}
.y8{bottom:666.283467pt;}
.y17e{bottom:667.442667pt;}
.yaa{bottom:668.878533pt;}
.y26{bottom:670.962800pt;}
.y1df{bottom:675.103867pt;}
.yf8{bottom:675.220800pt;}
.y4b{bottom:675.333867pt;}
.y95{bottom:676.391867pt;}
.y72{bottom:676.398533pt;}
.y201{bottom:676.447867pt;}
.y223{bottom:677.203867pt;}
.y1bd{bottom:679.093867pt;}
.y244{bottom:680.143867pt;}
.y19c{bottom:680.563867pt;}
.y14d{bottom:683.761867pt;}
.y17d{bottom:686.757200pt;}
.ya9{bottom:687.953200pt;}
.y25{bottom:689.424133pt;}
.yf6{bottom:689.872267pt;}
.y7{bottom:692.896800pt;}
.y4a{bottom:693.488533pt;}
.y94{bottom:694.393200pt;}
.y71{bottom:694.399867pt;}
.y222{bottom:695.697867pt;}
.y1bc{bottom:697.279867pt;}
.y243{bottom:698.147867pt;}
.yf5{bottom:699.650267pt;}
.y263{bottom:699.731333pt;}
.y19b{bottom:699.757867pt;}
.yf7{bottom:700.540267pt;}
.y1de{bottom:701.507867pt;}
.y200{bottom:702.627867pt;}
.y14c{bottom:703.961867pt;}
.y17c{bottom:706.031200pt;}
.ya8{bottom:707.027867pt;}
.y24{bottom:707.885467pt;}
.y49{bottom:711.634000pt;}
.y6{bottom:711.950133pt;}
.y93{bottom:712.394533pt;}
.y70{bottom:712.398533pt;}
.yf4{bottom:714.306267pt;}
.y262{bottom:717.064667pt;}
.y19a{bottom:718.951867pt;}
.y1dd{bottom:720.351867pt;}
.y1ff{bottom:721.247867pt;}
.y221{bottom:721.751867pt;}
.y1bb{bottom:723.011867pt;}
.y242{bottom:723.711867pt;}
.y17b{bottom:725.305200pt;}
.ya7{bottom:726.102533pt;}
.y23{bottom:726.346800pt;}
.yf2{bottom:728.957867pt;}
.y48{bottom:729.788667pt;}
.y14b{bottom:730.170267pt;}
.y92{bottom:730.395867pt;}
.y6f{bottom:730.399867pt;}
.y5{bottom:731.003467pt;}
.y261{bottom:734.398000pt;}
.yf1{bottom:738.735867pt;}
.y1dc{bottom:739.195867pt;}
.yf3{bottom:739.625867pt;}
.y1fe{bottom:739.867867pt;}
.y220{bottom:740.245867pt;}
.y1ba{bottom:741.183867pt;}
.y241{bottom:741.715867pt;}
.y17a{bottom:744.579200pt;}
.y22{bottom:744.808133pt;}
.ya6{bottom:745.177200pt;}
.y199{bottom:745.705867pt;}
.y47{bottom:747.943333pt;}
.y91{bottom:748.397200pt;}
.y6e{bottom:748.398533pt;}
.y260{bottom:751.731333pt;}
.yef{bottom:753.391867pt;}
.y4{bottom:757.616800pt;}
.y21f{bottom:758.739867pt;}
.y1b9{bottom:759.369867pt;}
.y21{bottom:763.269467pt;}
.y179{bottom:763.853200pt;}
.ya5{bottom:764.251867pt;}
.y198{bottom:764.899867pt;}
.yee{bottom:765.391867pt;}
.y1db{bottom:765.599867pt;}
.y1fd{bottom:766.047867pt;}
.y46{bottom:766.091867pt;}
.y90{bottom:766.398533pt;}
.y6d{bottom:766.399867pt;}
.y240{bottom:767.279867pt;}
.y25f{bottom:769.064667pt;}
.yf0{bottom:777.391867pt;}
.y178{bottom:783.127200pt;}
.ya4{bottom:783.326533pt;}
.y197{bottom:784.093867pt;}
.y3{bottom:784.230133pt;}
.y45{bottom:784.246533pt;}
.y6c{bottom:784.399867pt;}
.y1da{bottom:784.443867pt;}
.y1fc{bottom:784.667867pt;}
.y21e{bottom:784.793867pt;}
.y1b8{bottom:785.101867pt;}
.y23f{bottom:785.283867pt;}
.y25e{bottom:786.398000pt;}
.yed{bottom:789.391867pt;}
.y20{bottom:800.627733pt;}
.yec{bottom:801.391867pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y25d{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.h1f{height:26.559896pt;}
.h17{height:30.107146pt;}
.h20{height:31.700521pt;}
.h1e{height:35.312500pt;}
.h7{height:36.229167pt;}
.h18{height:40.757812pt;}
.h1a{height:41.099333pt;}
.he{height:44.140625pt;}
.h4{height:45.286458pt;}
.h21{height:46.000000pt;}
.h28{height:46.347656pt;}
.h3{height:47.550781pt;}
.h19{height:51.750000pt;}
.h9{height:52.079427pt;}
.hc{height:52.082094pt;}
.h14{height:52.084760pt;}
.hd{height:52.087960pt;}
.h15{height:52.090094pt;}
.ha{height:52.093294pt;}
.h27{height:52.095427pt;}
.h26{height:52.100760pt;}
.h11{height:52.103427pt;}
.hf{height:52.103960pt;}
.h25{height:52.106094pt;}
.h1d{height:52.111427pt;}
.h10{height:52.116227pt;}
.h1b{height:52.122094pt;}
.h16{height:52.138094pt;}
.h24{height:52.143427pt;}
.h22{height:52.147160pt;}
.h12{height:52.177027pt;}
.h2{height:56.608073pt;}
.h1c{height:57.500000pt;}
.h23{height:57.511733pt;}
.h29{height:60.375000pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.hb{height:66.125000pt;}
.h13{height:66.296200pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:73.079333pt;}
.x4{left:74.467200pt;}
.x1{left:75.590533pt;}
.xb{left:77.944000pt;}
.x39{left:83.185333pt;}
.x26{left:87.618667pt;}
.x9{left:89.357333pt;}
.x8{left:91.056267pt;}
.x3b{left:92.207200pt;}
.x3{left:93.360533pt;}
.x5{left:94.266000pt;}
.xa{left:95.640000pt;}
.x33{left:117.490400pt;}
.xd{left:121.784000pt;}
.xc{left:123.160000pt;}
.x27{left:124.085333pt;}
.xe{left:144.834667pt;}
.xf{left:146.146667pt;}
.x28{left:155.837333pt;}
.x7{left:188.728000pt;}
.x29{left:190.417333pt;}
.x2{left:207.418000pt;}
.x11{left:217.218667pt;}
.x12{left:218.712000pt;}
.x2b{left:222.197333pt;}
.x10{left:223.213333pt;}
.x2a{left:228.404000pt;}
.x3a{left:254.318667pt;}
.x13{left:258.338667pt;}
.x2c{left:262.237333pt;}
.x16{left:278.978667pt;}
.x15{left:281.442667pt;}
.x14{left:284.674667pt;}
.x2d{left:287.372000pt;}
.x17{left:308.386667pt;}
.x1a{left:311.928000pt;}
.x18{left:312.984000pt;}
.x19{left:315.138667pt;}
.x2e{left:318.900000pt;}
.x1b{left:348.002667pt;}
.x1c{left:356.493333pt;}
.x38{left:360.992667pt;}
.x37{left:362.633333pt;}
.x36{left:379.898667pt;}
.x35{left:381.913467pt;}
.x1d{left:384.322667pt;}
.x1f{left:389.741333pt;}
.x1e{left:392.440000pt;}
.x2f{left:396.189333pt;}
.x20{left:419.416000pt;}
.x21{left:421.954667pt;}
.x30{left:430.349333pt;}
.x34{left:431.282533pt;}
.x22{left:459.608000pt;}
.x31{left:464.584000pt;}
.x23{left:493.794667pt;}
.x32{left:500.918667pt;}
.x25{left:526.381333pt;}
.x24{left:530.797333pt;}
}




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