
    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_af0aec7005885a16cf1e8b17.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_3c97902ae85c50763c00b7b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_343e636ef91c1e0d0f72d306.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5be0120fe3efaa772d9400fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_26215925354e40403dd657d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ecbf5a56472271d254704095.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_746e467fca0fb4cddad00210.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.823730;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_41e9e8bd4d8c633d1268bbf0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.823730;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_dd40f3b412a012a9085daa09.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5f9d6755d0925b51e316c109.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5ee8ea91e07a32d56d4d3ece.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cab6bbd4ca08005b9a6f7ff9.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e9080737a87b52ef2b465437.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e6a2811334da00410d848c4d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.917969;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_09126e6899f4faae49e288ef.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ab47f4f986a7bf981719356a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_baeb5a8940fe6316a3997ba4.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a5ffd3987268a4ceb6fb471e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6e159a222ad92c47f902bf49.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-20.880000px;}
.v9{vertical-align:-18.000000px;}
.v6{vertical-align:-14.760000px;}
.v4{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v8{vertical-align:18.000000px;}
.v7{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.ls1c{letter-spacing:-0.513600px;}
.ls1e{letter-spacing:-0.384000px;}
.ls47{letter-spacing:-0.381600px;}
.ls1f{letter-spacing:-0.373200px;}
.ls22{letter-spacing:-0.333600px;}
.lsa{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.220200px;}
.lsb{letter-spacing:-0.180000px;}
.ls33{letter-spacing:-0.153600px;}
.ls29{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.064200px;}
.ls9{letter-spacing:-0.054720px;}
.ls20{letter-spacing:-0.053280px;}
.ls1d{letter-spacing:-0.024120px;}
.ls3f{letter-spacing:-0.013320px;}
.ls37{letter-spacing:-0.009360px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.090000px;}
.ls2d{letter-spacing:0.093600px;}
.ls8{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.126000px;}
.ls23{letter-spacing:0.139800px;}
.ls38{letter-spacing:0.140040px;}
.ls7{letter-spacing:0.147000px;}
.ls24{letter-spacing:0.153600px;}
.ls1a{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.450000px;}
.ls34{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.540000px;}
.ls27{letter-spacing:1.368000px;}
.ls36{letter-spacing:1.481760px;}
.ls25{letter-spacing:1.614240px;}
.ls2e{letter-spacing:2.252520px;}
.ls43{letter-spacing:2.610000px;}
.ls12{letter-spacing:2.612520px;}
.ls19{letter-spacing:2.802600px;}
.ls2f{letter-spacing:2.972520px;}
.ls17{letter-spacing:3.575880px;}
.ls18{letter-spacing:3.787200px;}
.ls1b{letter-spacing:3.935880px;}
.ls45{letter-spacing:5.850000px;}
.ls10{letter-spacing:7.920000px;}
.ls16{letter-spacing:9.018000px;}
.ls2c{letter-spacing:9.060000px;}
.ls32{letter-spacing:9.090000px;}
.ls31{letter-spacing:9.092520px;}
.ls30{letter-spacing:9.452520px;}
.ls49{letter-spacing:11.250000px;}
.lse{letter-spacing:11.880000px;}
.ls3a{letter-spacing:14.850000px;}
.lsc{letter-spacing:15.180000px;}
.ls11{letter-spacing:15.572520px;}
.ls2a{letter-spacing:15.932520px;}
.ls2b{letter-spacing:16.387200px;}
.ls14{letter-spacing:16.747200px;}
.ls13{letter-spacing:16.895880px;}
.ls15{letter-spacing:17.255880px;}
.ls48{letter-spacing:21.330000px;}
.ls4{letter-spacing:24.210000px;}
.ls3d{letter-spacing:38.610000px;}
.ls3c{letter-spacing:38.970000px;}
.ls3e{letter-spacing:41.130000px;}
.ls42{letter-spacing:47.970000px;}
.ls41{letter-spacing:53.730000px;}
.ls2{letter-spacing:55.980000px;}
.ls3b{letter-spacing:65.970000px;}
.ls46{letter-spacing:66.690000px;}
.ls40{letter-spacing:68.130000px;}
.ls44{letter-spacing:73.890000px;}
.lsd{letter-spacing:1385.852640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-60.120000px;}
.ws28{word-spacing:-47.880000px;}
.ws8{word-spacing:-38.880000px;}
.ws1{word-spacing:-31.463160px;}
.wsb{word-spacing:-15.210000px;}
.ws1b{word-spacing:-15.183600px;}
.ws24{word-spacing:-15.169800px;}
.ws6{word-spacing:-15.030000px;}
.ws2d{word-spacing:-15.016680px;}
.ws17{word-spacing:-14.976720px;}
.ws7{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.809800px;}
.ws18{word-spacing:-14.696400px;}
.wsd{word-spacing:-14.516400px;}
.ws2{word-spacing:-13.854360px;}
.ws4{word-spacing:-13.652640px;}
.ws1e{word-spacing:-13.626000px;}
.ws1c{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.392000px;}
.wse{word-spacing:-13.226400px;}
.ws2c{word-spacing:-12.150000px;}
.ws29{word-spacing:-11.970000px;}
.ws2b{word-spacing:-11.960640px;}
.ws5{word-spacing:-10.530000px;}
.ws1a{word-spacing:-9.720000px;}
.ws16{word-spacing:-9.242280px;}
.ws1d{word-spacing:-9.000000px;}
.ws2a{word-spacing:-7.470000px;}
.ws19{word-spacing:-0.213720px;}
.ws15{word-spacing:-0.176040px;}
.wsa{word-spacing:-0.060120px;}
.ws26{word-spacing:-0.056040px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.007920px;}
.ws22{word-spacing:0.127920px;}
.ws11{word-spacing:0.183960px;}
.ws13{word-spacing:0.303960px;}
.ws21{word-spacing:3.063960px;}
.ws10{word-spacing:3.423960px;}
.ws23{word-spacing:7.169040px;}
.ws27{word-spacing:7.529040px;}
.ws14{word-spacing:8.248680px;}
.ws20{word-spacing:10.769040px;}
.wsf{word-spacing:11.129040px;}
.ws25{word-spacing:11.488680px;}
._1e{margin-left:-10.137000px;}
._1d{margin-left:-8.158920px;}
._1c{margin-left:-5.722680px;}
._17{margin-left:-4.467480px;}
._13{margin-left:-3.348120px;}
._11{margin-left:-2.104200px;}
._0{margin-left:-1.100760px;}
._2{width:1.174320px;}
._7{width:2.885760px;}
._f{width:4.216680px;}
._e{width:5.410800px;}
._12{width:7.034040px;}
._c{width:8.056080px;}
._d{width:9.559080px;}
._b{width:11.001960px;}
._18{width:12.384720px;}
._8{width:14.016240px;}
._20{width:15.229320px;}
._16{width:16.299120px;}
._4{width:17.558040px;}
._19{width:18.637200px;}
._3{width:20.329080px;}
._10{width:21.943800px;}
._5{width:23.386680px;}
._6{width:25.063320px;}
._32{width:26.470200px;}
._2d{width:27.474840px;}
._15{width:29.995560px;}
._14{width:31.382640px;}
._2f{width:32.645160px;}
._1a{width:36.492840px;}
._1b{width:37.514880px;}
._26{width:38.633400px;}
._27{width:39.739320px;}
._28{width:41.122080px;}
._9{width:45.510840px;}
._a{width:46.773360px;}
._2c{width:47.975760px;}
._30{width:50.681160px;}
._31{width:52.184760px;}
._2b{width:53.253360px;}
._25{width:57.534840px;}
._23{width:58.797360px;}
._22{width:59.819400px;}
._24{width:60.849840px;}
._21{width:65.170080px;}
._2a{width:66.939840px;}
._29{width:68.055840px;}
._2e{width:74.188080px;}
._1f{width:849.090000px;}
._1{width:1620.452640px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,111,192);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:29.880000px;}
.fsd{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.120000px;}
.fsc{font-size:47.880000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y145{bottom:0.090000px;}
.y19b{bottom:1.620000px;}
.y168{bottom:2.070000px;}
.y1fc{bottom:2.610000px;}
.y207{bottom:2.700000px;}
.y59{bottom:2.880000px;}
.y199{bottom:2.970000px;}
.y166{bottom:3.000000px;}
.y1c8{bottom:3.060000px;}
.y27{bottom:3.150000px;}
.y3b{bottom:3.240000px;}
.y12f{bottom:3.330000px;}
.y11a{bottom:3.420000px;}
.y113{bottom:3.510000px;}
.y14a{bottom:3.600000px;}
.y14e{bottom:3.690000px;}
.y12e{bottom:3.780000px;}
.y14b{bottom:4.050000px;}
.y16c{bottom:4.140000px;}
.y1a0{bottom:4.170000px;}
.y169{bottom:4.230000px;}
.y172{bottom:4.320000px;}
.y1f6{bottom:4.410000px;}
.y198{bottom:4.590000px;}
.y179{bottom:4.770000px;}
.y19d{bottom:4.860000px;}
.y19f{bottom:4.890000px;}
.y175{bottom:4.950000px;}
.y16b{bottom:5.040000px;}
.y1a3{bottom:5.130000px;}
.y171{bottom:5.310000px;}
.y56{bottom:6.570000px;}
.y143{bottom:7.020000px;}
.y201{bottom:7.380000px;}
.y142{bottom:7.650000px;}
.y200{bottom:9.810000px;}
.y5c{bottom:10.530000px;}
.y5d{bottom:11.340000px;}
.y110{bottom:11.880000px;}
.y140{bottom:12.240000px;}
.y25{bottom:13.860000px;}
.y1fb{bottom:16.380000px;}
.y58{bottom:16.650000px;}
.y203{bottom:16.740000px;}
.y165{bottom:18.480000px;}
.y26{bottom:20.340000px;}
.y3a{bottom:20.520000px;}
.y119{bottom:20.700000px;}
.y112{bottom:20.790000px;}
.y196{bottom:20.880000px;}
.y1ff{bottom:23.580000px;}
.y1fe{bottom:27.630000px;}
.y13f{bottom:29.460000px;}
.y1fa{bottom:30.150000px;}
.y57{bottom:30.510000px;}
.y164{bottom:34.050000px;}
.y6{bottom:35.925007px;}
.y15f{bottom:36.570000px;}
.y39{bottom:37.980000px;}
.y1f9{bottom:44.010000px;}
.y1f4{bottom:47.250000px;}
.y163{bottom:49.530000px;}
.y15e{bottom:52.140000px;}
.y38{bottom:55.170000px;}
.y118{bottom:55.260000px;}
.y1f8{bottom:57.780000px;}
.y1f3{bottom:61.110000px;}
.y162{bottom:65.010000px;}
.y5{bottom:66.525004px;}
.y15d{bottom:67.620000px;}
.y37{bottom:72.450000px;}
.y12b{bottom:72.540000px;}
.y116{bottom:73.170000px;}
.y1f2{bottom:74.880000px;}
.y15c{bottom:83.190000px;}
.y1f1{bottom:88.650000px;}
.y36{bottom:89.730000px;}
.y12a{bottom:89.760000px;}
.y115{bottom:90.450000px;}
.y4{bottom:97.125005px;}
.y15b{bottom:98.670000px;}
.y35{bottom:106.920000px;}
.y129{bottom:107.040000px;}
.y34{bottom:124.020000px;}
.y128{bottom:124.320000px;}
.y23{bottom:139.264499px;}
.y33{bottom:141.300000px;}
.y127{bottom:141.510000px;}
.y1a{bottom:196.933500px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y11d{bottom:250.200000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y11c{bottom:267.420000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y29{bottom:278.220000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yb9{bottom:324.660000px;}
.y1c6{bottom:325.380000px;}
.ye5{bottom:326.370000px;}
.y242{bottom:326.910000px;}
.y17c{bottom:328.350000px;}
.y11b{bottom:331.950000px;}
.y8b{bottom:333.210000px;}
.y5a{bottom:334.650000px;}
.y194{bottom:335.550000px;}
.y1c5{bottom:340.860000px;}
.y219{bottom:342.480000px;}
.y17b{bottom:342.840000px;}
.ye4{bottom:343.650000px;}
.y241{bottom:344.190000px;}
.y105{bottom:347.970000px;}
.y11{bottom:348.133500px;}
.y55{bottom:348.420000px;}
.y8a{bottom:350.400000px;}
.yb8{bottom:350.940000px;}
.y1c4{bottom:357.150000px;}
.y153{bottom:358.680000px;}
.y1ee{bottom:360.390000px;}
.ye3{bottom:360.930000px;}
.y17a{bottom:361.200000px;}
.y240{bottom:361.380000px;}
.y193{bottom:361.740000px;}
.y89{bottom:367.680000px;}
.y218{bottom:368.940000px;}
.y1c3{bottom:372.630000px;}
.y104{bottom:374.250000px;}
.y152{bottom:376.140000px;}
.yb7{bottom:377.130000px;}
.ye2{bottom:378.120000px;}
.y178{bottom:379.470000px;}
.y23f{bottom:383.160000px;}
.y1ed{bottom:386.580000px;}
.y10{bottom:386.785499px;}
.y192{bottom:388.020000px;}
.y1c2{bottom:388.920000px;}
.y103{bottom:392.340000px;}
.y54{bottom:392.790000px;}
.y151{bottom:393.420000px;}
.y88{bottom:393.780000px;}
.y217{bottom:395.130000px;}
.ye1{bottom:395.400000px;}
.y177{bottom:397.740000px;}
.y23e{bottom:400.350000px;}
.y124{bottom:401.700000px;}
.yb6{bottom:403.410000px;}
.y1c1{bottom:405.210000px;}
.yf{bottom:408.044999px;}
.y150{bottom:410.610000px;}
.y216{bottom:412.410000px;}
.ye0{bottom:412.680000px;}
.y102{bottom:412.860000px;}
.y1ec{bottom:413.040000px;}
.y53{bottom:413.760000px;}
.y191{bottom:414.480000px;}
.y176{bottom:416.100000px;}
.y23d{bottom:417.630000px;}
.y87{bottom:420.150000px;}
.yb5{bottom:420.690000px;}
.y52{bottom:427.800000px;}
.y14f{bottom:427.890000px;}
.y215{bottom:429.690000px;}
.ydf{bottom:429.870000px;}
.y1eb{bottom:430.230000px;}
.y101{bottom:430.500000px;}
.y190{bottom:431.670000px;}
.y1c0{bottom:433.740000px;}
.y174{bottom:434.100000px;}
.y262{bottom:434.370000px;}
.y123{bottom:436.890000px;}
.yb4{bottom:437.880000px;}
.y23c{bottom:439.410000px;}
.y86{bottom:446.430000px;}
.y14d{bottom:446.880000px;}
.yde{bottom:447.150000px;}
.y1ea{bottom:447.510000px;}
.y51{bottom:447.690000px;}
.y18f{bottom:448.950000px;}
.y173{bottom:451.290000px;}
.y261{bottom:451.650000px;}
.y122{bottom:454.890000px;}
.yb3{bottom:455.160000px;}
.y23b{bottom:456.600000px;}
.y100{bottom:457.050000px;}
.y1bf{bottom:460.200000px;}
.y85{bottom:463.710000px;}
.y214{bottom:464.160000px;}
.ydd{bottom:464.340000px;}
.y1e9{bottom:464.790000px;}
.y50{bottom:464.880000px;}
.y14c{bottom:465.150000px;}
.y18e{bottom:466.140000px;}
.y260{bottom:468.840000px;}
.y170{bottom:469.290000px;}
.yb2{bottom:472.350000px;}
.y23a{bottom:473.880000px;}
.y1be{bottom:477.480000px;}
.y84{bottom:480.900000px;}
.y213{bottom:481.440000px;}
.ydc{bottom:481.620000px;}
.y1e8{bottom:481.980000px;}
.y149{bottom:483.150000px;}
.y18d{bottom:483.420000px;}
.yff{bottom:483.690000px;}
.y4f{bottom:484.500000px;}
.ye{bottom:484.864502px;}
.y25f{bottom:486.120000px;}
.y16f{bottom:486.840000px;}
.yb1{bottom:489.630000px;}
.y1bd{bottom:494.670000px;}
.y239{bottom:495.660000px;}
.y83{bottom:498.180000px;}
.y212{bottom:498.630000px;}
.ydb{bottom:498.900000px;}
.y1e7{bottom:499.260000px;}
.yfe{bottom:500.970000px;}
.y18c{bottom:501.060000px;}
.y148{bottom:501.690000px;}
.y4e{bottom:501.870000px;}
.yd{bottom:502.864502px;}
.y16e{bottom:504.840000px;}
.yb0{bottom:506.910000px;}
.y121{bottom:507.360000px;}
.y25e{bottom:507.900000px;}
.y1bc{bottom:511.950000px;}
.y238{bottom:512.850000px;}
.y82{bottom:515.460000px;}
.y211{bottom:515.910000px;}
.yda{bottom:516.090000px;}
.y1e6{bottom:516.540000px;}
.yfd{bottom:518.160000px;}
.y18b{bottom:518.250000px;}
.y4d{bottom:519.060000px;}
.y147{bottom:519.690000px;}
.yc{bottom:520.864502px;}
.y16d{bottom:522.120000px;}
.y281{bottom:522.480000px;}
.yaf{bottom:524.100000px;}
.y25d{bottom:525.090000px;}
.y1bb{bottom:529.140000px;}
.y81{bottom:532.650000px;}
.y210{bottom:533.100000px;}
.yd9{bottom:533.370000px;}
.y237{bottom:534.630000px;}
.y18a{bottom:535.530000px;}
.y4c{bottom:536.340000px;}
.y146{bottom:537.690000px;}
.yb{bottom:538.864499px;}
.y16a{bottom:540.120000px;}
.yae{bottom:541.380000px;}
.y25c{bottom:542.370000px;}
.y1e5{bottom:542.550000px;}
.y120{bottom:542.640000px;}
.yfc{bottom:544.260000px;}
.y280{bottom:544.350000px;}
.y1ba{bottom:546.780000px;}
.y80{bottom:549.930000px;}
.y20f{bottom:550.380000px;}
.yd8{bottom:550.650000px;}
.y236{bottom:551.910000px;}
.y189{bottom:553.080000px;}
.y4b{bottom:553.440000px;}
.y144{bottom:554.970000px;}
.ya{bottom:556.864499px;}
.y167{bottom:557.400000px;}
.yad{bottom:558.660000px;}
.y25b{bottom:559.650000px;}
.y11f{bottom:560.640000px;}
.y27f{bottom:561.630000px;}
.y1b9{bottom:564.060000px;}
.y7f{bottom:567.210000px;}
.y20e{bottom:567.660000px;}
.yd7{bottom:567.840000px;}
.y1e4{bottom:568.830000px;}
.y235{bottom:569.100000px;}
.y188{bottom:570.360000px;}
.yfb{bottom:570.630000px;}
.y4a{bottom:570.810000px;}
.y13e{bottom:572.970000px;}
.y15a{bottom:575.670000px;}
.yac{bottom:575.850000px;}
.y27e{bottom:578.910000px;}
.y1b8{bottom:581.250000px;}
.y25a{bottom:581.340000px;}
.y7e{bottom:584.400000px;}
.y20d{bottom:584.850000px;}
.yd6{bottom:585.120000px;}
.y49{bottom:588.090000px;}
.y234{bottom:590.880000px;}
.y161{bottom:591.960000px;}
.yab{bottom:593.130000px;}
.y141{bottom:594.780000px;}
.y1e3{bottom:595.320000px;}
.y11e{bottom:595.950000px;}
.y27d{bottom:596.130000px;}
.yfa{bottom:596.940000px;}
.y259{bottom:598.650000px;}
.y1b7{bottom:598.920000px;}
.y7d{bottom:601.710000px;}
.yd5{bottom:602.430000px;}
.y48{bottom:605.400000px;}
.y233{bottom:608.190000px;}
.yaa{bottom:610.440000px;}
.y20c{bottom:610.980000px;}
.y1e2{bottom:612.510000px;}
.y114{bottom:613.950000px;}
.yf9{bottom:614.220000px;}
.y258{bottom:615.930000px;}
.y1b6{bottom:616.110000px;}
.y27c{bottom:617.910000px;}
.yd4{bottom:619.620000px;}
.y47{bottom:622.590000px;}
.y232{bottom:625.380000px;}
.ya9{bottom:627.630000px;}
.y7c{bottom:627.990000px;}
.y13d{bottom:629.430000px;}
.y1e1{bottom:629.790000px;}
.yf8{bottom:631.410000px;}
.y187{bottom:631.500000px;}
.y257{bottom:633.120000px;}
.y27b{bottom:635.190000px;}
.y20b{bottom:637.260000px;}
.y46{bottom:639.870000px;}
.y1b5{bottom:642.750000px;}
.ya8{bottom:644.910000px;}
.y7b{bottom:645.180000px;}
.y9{bottom:645.510000px;}
.yd3{bottom:645.720000px;}
.y1e0{bottom:647.070000px;}
.y231{bottom:647.160000px;}
.yf7{bottom:648.690000px;}
.y117{bottom:649.140000px;}
.y27a{bottom:652.380000px;}
.y256{bottom:654.900000px;}
.y13c{bottom:655.890000px;}
.y45{bottom:657.150000px;}
.y1b4{bottom:659.940000px;}
.ya7{bottom:662.190000px;}
.y7a{bottom:662.460000px;}
.y20a{bottom:663.090000px;}
.y1df{bottom:664.260000px;}
.y230{bottom:664.440000px;}
.yf6{bottom:665.970000px;}
.y8{bottom:666.771000px;}
.y279{bottom:669.660000px;}
.y160{bottom:670.290000px;}
.yd2{bottom:672.180000px;}
.y13b{bottom:673.170000px;}
.y44{bottom:674.340000px;}
.y1b3{bottom:677.220000px;}
.y209{bottom:679.200000px;}
.ya6{bottom:679.380000px;}
.y79{bottom:679.650000px;}
.y1de{bottom:681.540000px;}
.y22f{bottom:681.630000px;}
.yf5{bottom:683.160000px;}
.y186{bottom:683.250000px;}
.y278{bottom:686.940000px;}
.y255{bottom:689.370000px;}
.y13a{bottom:690.360000px;}
.y43{bottom:691.620000px;}
.y208{bottom:693.780000px;}
.y1b2{bottom:694.500000px;}
.ya5{bottom:696.660000px;}
.y78{bottom:696.930000px;}
.yd1{bottom:698.370000px;}
.y1dd{bottom:698.820000px;}
.y159{bottom:699.900000px;}
.yf4{bottom:700.440000px;}
.y22e{bottom:703.410000px;}
.y139{bottom:707.640000px;}
.y206{bottom:708.360000px;}
.y277{bottom:708.630000px;}
.y42{bottom:708.900000px;}
.y185{bottom:709.440000px;}
.y254{bottom:711.150000px;}
.y1b1{bottom:711.690000px;}
.y77{bottom:714.210000px;}
.yd0{bottom:715.650000px;}
.yf3{bottom:717.720000px;}
.y111{bottom:718.890000px;}
.y22d{bottom:720.690000px;}
.ya4{bottom:722.940000px;}
.y205{bottom:723.120000px;}
.y1dc{bottom:724.830000px;}
.y138{bottom:725.190000px;}
.y276{bottom:725.910000px;}
.y41{bottom:726.090000px;}
.y158{bottom:726.180000px;}
.y7{bottom:726.298500px;}
.y253{bottom:728.430000px;}
.y1b0{bottom:728.970000px;}
.y76{bottom:731.400000px;}
.ycf{bottom:732.930000px;}
.yf2{bottom:734.910000px;}
.y184{bottom:735.990000px;}
.y204{bottom:737.700000px;}
.y22c{bottom:737.880000px;}
.ya3{bottom:740.130000px;}
.y137{bottom:742.470000px;}
.y275{bottom:743.190000px;}
.y40{bottom:743.370000px;}
.y252{bottom:745.620000px;}
.y75{bottom:748.680000px;}
.yce{bottom:750.120000px;}
.y1db{bottom:751.290000px;}
.y157{bottom:752.370000px;}
.y3{bottom:752.599495px;}
.y1af{bottom:755.160000px;}
.ya2{bottom:757.410000px;}
.y136{bottom:759.660000px;}
.y274{bottom:760.380000px;}
.y3f{bottom:760.650000px;}
.yf1{bottom:761.010000px;}
.y183{bottom:762.630000px;}
.y74{bottom:765.960000px;}
.y202{bottom:766.050000px;}
.ycd{bottom:767.400000px;}
.y10f{bottom:771.450000px;}
.ya1{bottom:774.690000px;}
.y156{bottom:775.410000px;}
.y22b{bottom:776.850000px;}
.y135{bottom:777.300000px;}
.y1da{bottom:777.570000px;}
.y3e{bottom:777.660000px;}
.y182{bottom:779.910000px;}
.y1ae{bottom:781.800000px;}
.y273{bottom:782.160000px;}
.y73{bottom:784.050000px;}
.ycc{bottom:784.680000px;}
.yf0{bottom:787.290000px;}
.ya0{bottom:791.880000px;}
.y1fd{bottom:793.680000px;}
.y22a{bottom:794.130000px;}
.y134{bottom:794.580000px;}
.y1d9{bottom:794.760000px;}
.y3d{bottom:794.940000px;}
.y272{bottom:799.350000px;}
.ycb{bottom:801.870000px;}
.y72{bottom:802.680000px;}
.y181{bottom:805.920000px;}
.y1ad{bottom:808.350000px;}
.y9f{bottom:809.160000px;}
.y10e{bottom:809.970000px;}
.y229{bottom:811.410000px;}
.y1d8{bottom:812.040000px;}
.y3c{bottom:812.220000px;}
.yef{bottom:813.660000px;}
.y271{bottom:816.630000px;}
.yca{bottom:819.150000px;}
.y71{bottom:819.870000px;}
.y133{bottom:820.590000px;}
.y251{bottom:823.650000px;}
.y1ac{bottom:825.630000px;}
.y9e{bottom:826.350000px;}
.y32{bottom:826.890000px;}
.y1d7{bottom:829.230000px;}
.y180{bottom:832.200000px;}
.y228{bottom:833.100000px;}
.y1f0{bottom:835.800000px;}
.yc9{bottom:836.340000px;}
.y70{bottom:837.150000px;}
.y270{bottom:838.410000px;}
.yee{bottom:839.940000px;}
.y250{bottom:840.840000px;}
.y9d{bottom:843.630000px;}
.y132{bottom:846.870000px;}
.y1f7{bottom:850.380000px;}
.y1ab{bottom:851.730000px;}
.yc8{bottom:853.620000px;}
.y6f{bottom:854.340000px;}
.y26f{bottom:855.600000px;}
.yed{bottom:857.220000px;}
.y24f{bottom:858.120000px;}
.y17f{bottom:858.660000px;}
.y9c{bottom:860.910000px;}
.y1d6{bottom:864.150000px;}
.y227{bottom:867.660000px;}
.yc7{bottom:870.900000px;}
.y6e{bottom:871.620000px;}
.y26e{bottom:872.880000px;}
.y131{bottom:873.150000px;}
.yec{bottom:874.410000px;}
.y1aa{bottom:877.920000px;}
.y9b{bottom:878.100000px;}
.y2{bottom:879.369000px;}
.y24e{bottom:879.900000px;}
.y1d5{bottom:881.340000px;}
.y17e{bottom:884.670000px;}
.yc6{bottom:888.090000px;}
.y6d{bottom:888.900000px;}
.y226{bottom:889.350000px;}
.y26d{bottom:894.660000px;}
.y9a{bottom:895.380000px;}
.y24d{bottom:897.090000px;}
.y1d4{bottom:898.620000px;}
.y130{bottom:899.520000px;}
.yeb{bottom:900.690000px;}
.y1a9{bottom:904.200000px;}
.yc5{bottom:905.370000px;}
.y6c{bottom:906.090000px;}
.y225{bottom:906.630000px;}
.y17d{bottom:907.620000px;}
.y26c{bottom:911.850000px;}
.y99{bottom:912.660000px;}
.y24c{bottom:914.370000px;}
.y1d3{bottom:915.810000px;}
.yea{bottom:917.970000px;}
.y1a8{bottom:919.680000px;}
.y1f5{bottom:920.040000px;}
.yc4{bottom:922.650000px;}
.y12d{bottom:923.100000px;}
.y6b{bottom:923.370000px;}
.y224{bottom:928.410000px;}
.y98{bottom:929.850000px;}
.y1a7{bottom:932.730000px;}
.y26b{bottom:933.630000px;}
.y24b{bottom:936.150000px;}
.yc3{bottom:939.840000px;}
.y6a{bottom:940.650000px;}
.y12c{bottom:941.370000px;}
.y1d2{bottom:941.910000px;}
.ye9{bottom:944.160000px;}
.y223{bottom:945.600000px;}
.y97{bottom:947.130000px;}
.y1ef{bottom:948.660000px;}
.y10d{bottom:948.840000px;}
.y1a6{bottom:950.550000px;}
.y26a{bottom:950.910000px;}
.y24a{bottom:953.340000px;}
.yc2{bottom:957.120000px;}
.y69{bottom:957.840000px;}
.y126{bottom:959.370000px;}
.ye8{bottom:961.440000px;}
.y96{bottom:964.410000px;}
.y10c{bottom:966.120000px;}
.y1{bottom:966.726000px;}
.y222{bottom:967.380000px;}
.y269{bottom:968.100000px;}
.y1d1{bottom:968.190000px;}
.y1a5{bottom:968.730000px;}
.y249{bottom:970.620000px;}
.yc1{bottom:974.400000px;}
.y68{bottom:975.120000px;}
.ye7{bottom:978.720000px;}
.y95{bottom:981.600000px;}
.y10b{bottom:983.400000px;}
.y221{bottom:984.660000px;}
.y31{bottom:986.190000px;}
.y1a4{bottom:986.820000px;}
.y268{bottom:989.880000px;}
.yc0{bottom:991.590000px;}
.y67{bottom:992.400000px;}
.y1d0{bottom:994.380000px;}
.y94{bottom:998.880000px;}
.y10a{bottom:1000.590000px;}
.y220{bottom:1001.850000px;}
.y30{bottom:1003.380000px;}
.y1a2{bottom:1004.730000px;}
.ye6{bottom:1005.810000px;}
.y267{bottom:1007.160000px;}
.ybf{bottom:1008.870000px;}
.y66{bottom:1009.590000px;}
.y93{bottom:1016.160000px;}
.y109{bottom:1017.870000px;}
.y1cf{bottom:1020.300000px;}
.y1a1{bottom:1022.820000px;}
.y21f{bottom:1023.630000px;}
.y266{bottom:1024.350000px;}
.y155{bottom:1024.620000px;}
.ybe{bottom:1026.150000px;}
.y65{bottom:1026.870000px;}
.y2f{bottom:1027.770000px;}
.y92{bottom:1033.350000px;}
.y108{bottom:1035.150000px;}
.y1ce{bottom:1036.410000px;}
.y19e{bottom:1039.920000px;}
.y2e{bottom:1040.040000px;}
.y21e{bottom:1040.940000px;}
.y154{bottom:1042.830000px;}
.ybd{bottom:1043.370000px;}
.y64{bottom:1044.180000px;}
.y265{bottom:1046.160000px;}
.y248{bottom:1048.680000px;}
.y91{bottom:1050.660000px;}
.y107{bottom:1052.370000px;}
.y1cd{bottom:1052.730000px;}
.y19c{bottom:1057.860000px;}
.y2d{bottom:1060.020000px;}
.ybc{bottom:1060.650000px;}
.y63{bottom:1061.370000px;}
.y264{bottom:1063.440000px;}
.y247{bottom:1065.870000px;}
.y21d{bottom:1066.950000px;}
.y90{bottom:1067.940000px;}
.y1cc{bottom:1069.020000px;}
.y106{bottom:1069.650000px;}
.y19a{bottom:1074.960000px;}
.y2c{bottom:1078.290000px;}
.y62{bottom:1078.650000px;}
.y263{bottom:1080.630000px;}
.y246{bottom:1083.150000px;}
.y8f{bottom:1085.130000px;}
.y1cb{bottom:1085.580000px;}
.ybb{bottom:1086.750000px;}
.y195{bottom:1092.780000px;}
.y21c{bottom:1093.410000px;}
.y61{bottom:1095.930000px;}
.y1ca{bottom:1101.870000px;}
.y8e{bottom:1102.410000px;}
.y2b{bottom:1103.940000px;}
.y245{bottom:1104.930000px;}
.y197{bottom:1109.070000px;}
.y21b{bottom:1110.690000px;}
.yba{bottom:1112.940000px;}
.y60{bottom:1113.120000px;}
.y125{bottom:1115.460000px;}
.y1c9{bottom:1118.160000px;}
.y8d{bottom:1119.690000px;}
.y244{bottom:1122.120000px;}
.y2a{bottom:1129.500000px;}
.y1c7{bottom:1134.360000px;}
.y21a{bottom:1136.700000px;}
.y8c{bottom:1136.880000px;}
.y5f{bottom:1139.220000px;}
.y243{bottom:1139.400000px;}
.y28{bottom:1154.790000px;}
.y5e{bottom:1157.310000px;}
.y24{bottom:1172.880000px;}
.y5b{bottom:1175.400000px;}
.h46{height:13.770000px;}
.h4a{height:13.860000px;}
.h4b{height:14.040000px;}
.h34{height:15.480000px;}
.h3c{height:15.570000px;}
.h40{height:15.600000px;}
.h3f{height:15.840000px;}
.h32{height:16.560000px;}
.h3b{height:17.100000px;}
.h3d{height:17.130000px;}
.h22{height:17.190000px;}
.h24{height:17.280000px;}
.h3e{height:17.370000px;}
.h2e{height:17.460000px;}
.h28{height:17.550000px;}
.h2d{height:17.820000px;}
.h2b{height:20.970000px;}
.h2a{height:21.600000px;}
.h49{height:27.630000px;}
.h48{height:29.325586px;}
.h19{height:31.860000px;}
.h7{height:32.130000px;}
.h3a{height:33.390000px;}
.h9{height:34.380000px;}
.h1b{height:34.470000px;}
.h23{height:34.492500px;}
.h25{height:34.560000px;}
.h35{height:36.571289px;}
.h31{height:36.597656px;}
.h15{height:38.124492px;}
.h11{height:41.317910px;}
.h17{height:41.400000px;}
.h1a{height:41.772832px;}
.h29{height:43.402500px;}
.hb{height:43.769004px;}
.h6{height:45.900000px;}
.h18{height:46.968223px;}
.h42{height:46.991602px;}
.h4c{height:47.310996px;}
.h47{height:47.325586px;}
.h3{height:48.195000px;}
.h44{height:48.254063px;}
.h1c{height:51.750000px;}
.h36{height:52.971680px;}
.h38{height:52.998047px;}
.h39{height:53.314453px;}
.h37{height:53.332031px;}
.h41{height:53.434453px;}
.h16{height:54.421875px;}
.h2{height:55.080000px;}
.h1d{height:58.975137px;}
.hf{height:59.004492px;}
.h2f{height:59.019609px;}
.h2c{height:59.038594px;}
.hd{height:60.589687px;}
.ha{height:64.064355px;}
.h13{height:64.657617px;}
.h10{height:66.569062px;}
.he{height:67.701973px;}
.h26{height:68.940000px;}
.h20{height:69.025500px;}
.h1f{height:69.030000px;}
.hc{height:70.664062px;}
.h33{height:77.512500px;}
.h5{height:78.030000px;}
.h43{height:99.805500px;}
.h45{height:99.810000px;}
.h1e{height:104.220000px;}
.h30{height:111.172500px;}
.h4{height:119.055004px;}
.h12{height:155.250000px;}
.h27{height:155.280000px;}
.h21{height:281.175000px;}
.h14{height:1262.774911px;}
.h8{height:1262.790000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w21{width:53.730000px;}
.w20{width:54.450000px;}
.w23{width:58.320000px;}
.w25{width:58.350000px;}
.w24{width:58.410000px;}
.w22{width:59.422500px;}
.wf{width:63.630000px;}
.wc{width:72.540000px;}
.w4{width:73.170000px;}
.w16{width:81.922500px;}
.wd{width:83.970000px;}
.w1e{width:84.235500px;}
.w1f{width:84.240000px;}
.w19{width:90.030000px;}
.w18{width:99.810000px;}
.w17{width:101.520000px;}
.w9{width:115.020000px;}
.w1c{width:123.390000px;}
.w14{width:134.997000px;}
.w15{width:135.000000px;}
.w1d{width:150.420000px;}
.w1a{width:153.990000px;}
.we{width:161.400000px;}
.w13{width:177.510000px;}
.w11{width:177.570000px;}
.w12{width:177.600000px;}
.w1b{width:187.590000px;}
.w7{width:200.550000px;}
.w10{width:239.880000px;}
.w6{width:341.850000px;}
.wa{width:437.730000px;}
.w5{width:477.960000px;}
.wb{width:478.590000px;}
.w2{width:637.794021px;}
.w8{width:892.878750px;}
.w3{width:892.890000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:3.870000px;}
.x1f{left:5.310000px;}
.x29{left:6.390000px;}
.x6{left:8.100000px;}
.x25{left:9.900000px;}
.x1e{left:11.610000px;}
.x14{left:14.400000px;}
.x20{left:15.570000px;}
.x1b{left:17.190000px;}
.x9{left:18.810000px;}
.x24{left:20.970000px;}
.x28{left:22.140000px;}
.x2a{left:24.210000px;}
.x16{left:25.380000px;}
.x48{left:26.640000px;}
.x8{left:28.080000px;}
.x49{left:29.550000px;}
.x21{left:31.680000px;}
.x18{left:33.390000px;}
.x35{left:35.640000px;}
.x47{left:37.110000px;}
.x42{left:39.690000px;}
.x23{left:40.860000px;}
.x27{left:42.120000px;}
.x4b{left:43.200000px;}
.x1d{left:45.360000px;}
.x4f{left:47.160000px;}
.x2b{left:49.860000px;}
.x22{left:52.560000px;}
.x4c{left:54.540000px;}
.x2e{left:57.960000px;}
.x59{left:59.610000px;}
.x51{left:61.020000px;}
.x4e{left:62.670000px;}
.x50{left:65.160000px;}
.x26{left:66.960000px;}
.x60{left:70.560000px;}
.x4d{left:72.540000px;}
.x38{left:74.610000px;}
.x5d{left:76.950000px;}
.x74{left:79.740000px;}
.x3b{left:81.720000px;}
.x39{left:84.420000px;}
.x57{left:85.890000px;}
.x66{left:87.570000px;}
.x2d{left:88.740000px;}
.x67{left:92.100000px;}
.x65{left:96.600000px;}
.x1{left:102.045000px;}
.x33{left:103.770000px;}
.x2{left:106.297500px;}
.x32{left:109.020000px;}
.x4a{left:112.410000px;}
.x34{left:113.610000px;}
.x6a{left:115.680000px;}
.x5a{left:121.950000px;}
.x69{left:123.060000px;}
.x5c{left:124.860000px;}
.x5b{left:129.270000px;}
.x31{left:133.740000px;}
.x3c{left:136.110000px;}
.x3a{left:139.890000px;}
.x68{left:142.680000px;}
.x37{left:146.550000px;}
.x61{left:149.520000px;}
.x36{left:151.500000px;}
.x5f{left:152.850000px;}
.x5e{left:160.230000px;}
.x5{left:170.130000px;}
.x6c{left:171.660000px;}
.xf{left:178.950000px;}
.x55{left:181.110000px;}
.xa{left:183.990000px;}
.x41{left:190.830000px;}
.x4{left:203.484001px;}
.x6b{left:208.650000px;}
.x63{left:233.580000px;}
.x7{left:243.300000px;}
.x62{left:245.460000px;}
.xe{left:248.880000px;}
.x17{left:255.540000px;}
.x6d{left:256.620000px;}
.x54{left:260.490000px;}
.x12{left:285.150000px;}
.xb{left:291.540000px;}
.x6e{left:311.880000px;}
.x2c{left:320.700000px;}
.xd{left:323.940000px;}
.x43{left:326.550000px;}
.x56{left:335.910000px;}
.x3e{left:338.700000px;}
.x15{left:343.560000px;}
.x53{left:345.000000px;}
.x2f{left:357.690000px;}
.x40{left:366.060000px;}
.x11{left:386.160000px;}
.x44{left:409.200000px;}
.x19{left:417.750000px;}
.x6f{left:426.570000px;}
.xc{left:446.460000px;}
.x3{left:454.959000px;}
.x3f{left:457.800000px;}
.x1c{left:482.190000px;}
.x70{left:485.610000px;}
.x64{left:509.010000px;}
.x45{left:511.440000px;}
.x10{left:521.520000px;}
.x58{left:524.220000px;}
.x30{left:536.010000px;}
.x71{left:544.740000px;}
.x72{left:603.870000px;}
.x46{left:612.060000px;}
.x13{left:648.720000px;}
.x73{left:662.940000px;}
.x52{left:721.440000px;}
.x3d{left:731.430000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v9{vertical-align:-16.000000pt;}
.v6{vertical-align:-13.120000pt;}
.v4{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v8{vertical-align:16.000000pt;}
.v7{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.ls1c{letter-spacing:-0.456533pt;}
.ls1e{letter-spacing:-0.341333pt;}
.ls47{letter-spacing:-0.339200pt;}
.ls1f{letter-spacing:-0.331733pt;}
.ls22{letter-spacing:-0.296533pt;}
.lsa{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.195733pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls33{letter-spacing:-0.136533pt;}
.ls29{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.057067pt;}
.ls9{letter-spacing:-0.048640pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls1d{letter-spacing:-0.021440pt;}
.ls3f{letter-spacing:-0.011840pt;}
.ls37{letter-spacing:-0.008320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.080000pt;}
.ls2d{letter-spacing:0.083200pt;}
.ls8{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.112000pt;}
.ls23{letter-spacing:0.124267pt;}
.ls38{letter-spacing:0.124480pt;}
.ls7{letter-spacing:0.130667pt;}
.ls24{letter-spacing:0.136533pt;}
.ls1a{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.400000pt;}
.ls34{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.480000pt;}
.ls27{letter-spacing:1.216000pt;}
.ls36{letter-spacing:1.317120pt;}
.ls25{letter-spacing:1.434880pt;}
.ls2e{letter-spacing:2.002240pt;}
.ls43{letter-spacing:2.320000pt;}
.ls12{letter-spacing:2.322240pt;}
.ls19{letter-spacing:2.491200pt;}
.ls2f{letter-spacing:2.642240pt;}
.ls17{letter-spacing:3.178560pt;}
.ls18{letter-spacing:3.366400pt;}
.ls1b{letter-spacing:3.498560pt;}
.ls45{letter-spacing:5.200000pt;}
.ls10{letter-spacing:7.040000pt;}
.ls16{letter-spacing:8.016000pt;}
.ls2c{letter-spacing:8.053333pt;}
.ls32{letter-spacing:8.080000pt;}
.ls31{letter-spacing:8.082240pt;}
.ls30{letter-spacing:8.402240pt;}
.ls49{letter-spacing:10.000000pt;}
.lse{letter-spacing:10.560000pt;}
.ls3a{letter-spacing:13.200000pt;}
.lsc{letter-spacing:13.493333pt;}
.ls11{letter-spacing:13.842240pt;}
.ls2a{letter-spacing:14.162240pt;}
.ls2b{letter-spacing:14.566400pt;}
.ls14{letter-spacing:14.886400pt;}
.ls13{letter-spacing:15.018560pt;}
.ls15{letter-spacing:15.338560pt;}
.ls48{letter-spacing:18.960000pt;}
.ls4{letter-spacing:21.520000pt;}
.ls3d{letter-spacing:34.320000pt;}
.ls3c{letter-spacing:34.640000pt;}
.ls3e{letter-spacing:36.560000pt;}
.ls42{letter-spacing:42.640000pt;}
.ls41{letter-spacing:47.760000pt;}
.ls2{letter-spacing:49.760000pt;}
.ls3b{letter-spacing:58.640000pt;}
.ls46{letter-spacing:59.280000pt;}
.ls40{letter-spacing:60.560000pt;}
.ls44{letter-spacing:65.680000pt;}
.lsd{letter-spacing:1231.869013pt;}
.ws3{word-spacing:-53.440000pt;}
.ws28{word-spacing:-42.560000pt;}
.ws8{word-spacing:-34.560000pt;}
.ws1{word-spacing:-27.967253pt;}
.wsb{word-spacing:-13.520000pt;}
.ws1b{word-spacing:-13.496533pt;}
.ws24{word-spacing:-13.484267pt;}
.ws6{word-spacing:-13.360000pt;}
.ws2d{word-spacing:-13.348160pt;}
.ws17{word-spacing:-13.312640pt;}
.ws7{word-spacing:-13.200000pt;}
.wsc{word-spacing:-13.164267pt;}
.ws18{word-spacing:-13.063467pt;}
.wsd{word-spacing:-12.903467pt;}
.ws2{word-spacing:-12.314987pt;}
.ws4{word-spacing:-12.135680pt;}
.ws1e{word-spacing:-12.112000pt;}
.ws1c{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.756800pt;}
.ws2c{word-spacing:-10.800000pt;}
.ws29{word-spacing:-10.640000pt;}
.ws2b{word-spacing:-10.631680pt;}
.ws5{word-spacing:-9.360000pt;}
.ws1a{word-spacing:-8.640000pt;}
.ws16{word-spacing:-8.215360pt;}
.ws1d{word-spacing:-8.000000pt;}
.ws2a{word-spacing:-6.640000pt;}
.ws19{word-spacing:-0.189973pt;}
.ws15{word-spacing:-0.156480pt;}
.wsa{word-spacing:-0.053440pt;}
.ws26{word-spacing:-0.049813pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.007040pt;}
.ws22{word-spacing:0.113707pt;}
.ws11{word-spacing:0.163520pt;}
.ws13{word-spacing:0.270187pt;}
.ws21{word-spacing:2.723520pt;}
.ws10{word-spacing:3.043520pt;}
.ws23{word-spacing:6.372480pt;}
.ws27{word-spacing:6.692480pt;}
.ws14{word-spacing:7.332160pt;}
.ws20{word-spacing:9.572480pt;}
.wsf{word-spacing:9.892480pt;}
.ws25{word-spacing:10.212160pt;}
._1e{margin-left:-9.010667pt;}
._1d{margin-left:-7.252373pt;}
._1c{margin-left:-5.086827pt;}
._17{margin-left:-3.971093pt;}
._13{margin-left:-2.976107pt;}
._11{margin-left:-1.870400pt;}
._0{margin-left:-0.978453pt;}
._2{width:1.043840pt;}
._7{width:2.565120pt;}
._f{width:3.748160pt;}
._e{width:4.809600pt;}
._12{width:6.252480pt;}
._c{width:7.160960pt;}
._d{width:8.496960pt;}
._b{width:9.779520pt;}
._18{width:11.008640pt;}
._8{width:12.458880pt;}
._20{width:13.537173pt;}
._16{width:14.488107pt;}
._4{width:15.607147pt;}
._19{width:16.566400pt;}
._3{width:18.070293pt;}
._10{width:19.505600pt;}
._5{width:20.788160pt;}
._6{width:22.278507pt;}
._32{width:23.529067pt;}
._2d{width:24.422080pt;}
._15{width:26.662720pt;}
._14{width:27.895680pt;}
._2f{width:29.017920pt;}
._1a{width:32.438080pt;}
._1b{width:33.346560pt;}
._26{width:34.340800pt;}
._27{width:35.323840pt;}
._28{width:36.552960pt;}
._9{width:40.454080pt;}
._a{width:41.576320pt;}
._2c{width:42.645120pt;}
._30{width:45.049920pt;}
._31{width:46.386453pt;}
._2b{width:47.336320pt;}
._25{width:51.142080pt;}
._23{width:52.264320pt;}
._22{width:53.172800pt;}
._24{width:54.088747pt;}
._21{width:57.928960pt;}
._2a{width:59.502080pt;}
._29{width:60.494080pt;}
._2e{width:65.944960pt;}
._1f{width:754.746667pt;}
._1{width:1440.402347pt;}
.fse{font-size:26.560000pt;}
.fsd{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.440000pt;}
.fsc{font-size:42.560000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:0.080000pt;}
.y19b{bottom:1.440000pt;}
.y168{bottom:1.840000pt;}
.y1fc{bottom:2.320000pt;}
.y207{bottom:2.400000pt;}
.y59{bottom:2.560000pt;}
.y199{bottom:2.640000pt;}
.y166{bottom:2.666667pt;}
.y1c8{bottom:2.720000pt;}
.y27{bottom:2.800000pt;}
.y3b{bottom:2.880000pt;}
.y12f{bottom:2.960000pt;}
.y11a{bottom:3.040000pt;}
.y113{bottom:3.120000pt;}
.y14a{bottom:3.200000pt;}
.y14e{bottom:3.280000pt;}
.y12e{bottom:3.360000pt;}
.y14b{bottom:3.600000pt;}
.y16c{bottom:3.680000pt;}
.y1a0{bottom:3.706667pt;}
.y169{bottom:3.760000pt;}
.y172{bottom:3.840000pt;}
.y1f6{bottom:3.920000pt;}
.y198{bottom:4.080000pt;}
.y179{bottom:4.240000pt;}
.y19d{bottom:4.320000pt;}
.y19f{bottom:4.346667pt;}
.y175{bottom:4.400000pt;}
.y16b{bottom:4.480000pt;}
.y1a3{bottom:4.560000pt;}
.y171{bottom:4.720000pt;}
.y56{bottom:5.840000pt;}
.y143{bottom:6.240000pt;}
.y201{bottom:6.560000pt;}
.y142{bottom:6.800000pt;}
.y200{bottom:8.720000pt;}
.y5c{bottom:9.360000pt;}
.y5d{bottom:10.080000pt;}
.y110{bottom:10.560000pt;}
.y140{bottom:10.880000pt;}
.y25{bottom:12.320000pt;}
.y1fb{bottom:14.560000pt;}
.y58{bottom:14.800000pt;}
.y203{bottom:14.880000pt;}
.y165{bottom:16.426667pt;}
.y26{bottom:18.080000pt;}
.y3a{bottom:18.240000pt;}
.y119{bottom:18.400000pt;}
.y112{bottom:18.480000pt;}
.y196{bottom:18.560000pt;}
.y1ff{bottom:20.960000pt;}
.y1fe{bottom:24.560000pt;}
.y13f{bottom:26.186667pt;}
.y1fa{bottom:26.800000pt;}
.y57{bottom:27.120000pt;}
.y164{bottom:30.266667pt;}
.y6{bottom:31.933340pt;}
.y15f{bottom:32.506667pt;}
.y39{bottom:33.760000pt;}
.y1f9{bottom:39.120000pt;}
.y1f4{bottom:42.000000pt;}
.y163{bottom:44.026667pt;}
.y15e{bottom:46.346667pt;}
.y38{bottom:49.040000pt;}
.y118{bottom:49.120000pt;}
.y1f8{bottom:51.360000pt;}
.y1f3{bottom:54.320000pt;}
.y162{bottom:57.786667pt;}
.y5{bottom:59.133337pt;}
.y15d{bottom:60.106667pt;}
.y37{bottom:64.400000pt;}
.y12b{bottom:64.480000pt;}
.y116{bottom:65.040000pt;}
.y1f2{bottom:66.560000pt;}
.y15c{bottom:73.946667pt;}
.y1f1{bottom:78.800000pt;}
.y36{bottom:79.760000pt;}
.y12a{bottom:79.786667pt;}
.y115{bottom:80.400000pt;}
.y4{bottom:86.333337pt;}
.y15b{bottom:87.706667pt;}
.y35{bottom:95.040000pt;}
.y129{bottom:95.146667pt;}
.y34{bottom:110.240000pt;}
.y128{bottom:110.506667pt;}
.y23{bottom:123.790666pt;}
.y33{bottom:125.600000pt;}
.y127{bottom:125.786667pt;}
.y1a{bottom:175.052000pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y11d{bottom:222.400000pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y11c{bottom:237.706667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y29{bottom:247.306667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yb9{bottom:288.586667pt;}
.y1c6{bottom:289.226667pt;}
.ye5{bottom:290.106667pt;}
.y242{bottom:290.586667pt;}
.y17c{bottom:291.866667pt;}
.y11b{bottom:295.066667pt;}
.y8b{bottom:296.186667pt;}
.y5a{bottom:297.466667pt;}
.y194{bottom:298.266667pt;}
.y1c5{bottom:302.986667pt;}
.y219{bottom:304.426667pt;}
.y17b{bottom:304.746667pt;}
.ye4{bottom:305.466667pt;}
.y241{bottom:305.946667pt;}
.y105{bottom:309.306667pt;}
.y11{bottom:309.452000pt;}
.y55{bottom:309.706667pt;}
.y8a{bottom:311.466667pt;}
.yb8{bottom:311.946667pt;}
.y1c4{bottom:317.466667pt;}
.y153{bottom:318.826667pt;}
.y1ee{bottom:320.346667pt;}
.ye3{bottom:320.826667pt;}
.y17a{bottom:321.066667pt;}
.y240{bottom:321.226667pt;}
.y193{bottom:321.546667pt;}
.y89{bottom:326.826667pt;}
.y218{bottom:327.946667pt;}
.y1c3{bottom:331.226667pt;}
.y104{bottom:332.666667pt;}
.y152{bottom:334.346667pt;}
.yb7{bottom:335.226667pt;}
.ye2{bottom:336.106667pt;}
.y178{bottom:337.306667pt;}
.y23f{bottom:340.586667pt;}
.y1ed{bottom:343.626667pt;}
.y10{bottom:343.809333pt;}
.y192{bottom:344.906667pt;}
.y1c2{bottom:345.706667pt;}
.y103{bottom:348.746667pt;}
.y54{bottom:349.146667pt;}
.y151{bottom:349.706667pt;}
.y88{bottom:350.026667pt;}
.y217{bottom:351.226667pt;}
.ye1{bottom:351.466667pt;}
.y177{bottom:353.546667pt;}
.y23e{bottom:355.866667pt;}
.y124{bottom:357.066667pt;}
.yb6{bottom:358.586667pt;}
.y1c1{bottom:360.186667pt;}
.yf{bottom:362.706666pt;}
.y150{bottom:364.986667pt;}
.y216{bottom:366.586667pt;}
.ye0{bottom:366.826667pt;}
.y102{bottom:366.986667pt;}
.y1ec{bottom:367.146667pt;}
.y53{bottom:367.786667pt;}
.y191{bottom:368.426667pt;}
.y176{bottom:369.866667pt;}
.y23d{bottom:371.226667pt;}
.y87{bottom:373.466667pt;}
.yb5{bottom:373.946667pt;}
.y52{bottom:380.266667pt;}
.y14f{bottom:380.346667pt;}
.y215{bottom:381.946667pt;}
.ydf{bottom:382.106667pt;}
.y1eb{bottom:382.426667pt;}
.y101{bottom:382.666667pt;}
.y190{bottom:383.706667pt;}
.y1c0{bottom:385.546667pt;}
.y174{bottom:385.866667pt;}
.y262{bottom:386.106667pt;}
.y123{bottom:388.346667pt;}
.yb4{bottom:389.226667pt;}
.y23c{bottom:390.586667pt;}
.y86{bottom:396.826667pt;}
.y14d{bottom:397.226667pt;}
.yde{bottom:397.466667pt;}
.y1ea{bottom:397.786667pt;}
.y51{bottom:397.946667pt;}
.y18f{bottom:399.066667pt;}
.y173{bottom:401.146667pt;}
.y261{bottom:401.466667pt;}
.y122{bottom:404.346667pt;}
.yb3{bottom:404.586667pt;}
.y23b{bottom:405.866667pt;}
.y100{bottom:406.266667pt;}
.y1bf{bottom:409.066667pt;}
.y85{bottom:412.186667pt;}
.y214{bottom:412.586667pt;}
.ydd{bottom:412.746667pt;}
.y1e9{bottom:413.146667pt;}
.y50{bottom:413.226667pt;}
.y14c{bottom:413.466667pt;}
.y18e{bottom:414.346667pt;}
.y260{bottom:416.746667pt;}
.y170{bottom:417.146667pt;}
.yb2{bottom:419.866667pt;}
.y23a{bottom:421.226667pt;}
.y1be{bottom:424.426667pt;}
.y84{bottom:427.466667pt;}
.y213{bottom:427.946667pt;}
.ydc{bottom:428.106667pt;}
.y1e8{bottom:428.426667pt;}
.y149{bottom:429.466667pt;}
.y18d{bottom:429.706667pt;}
.yff{bottom:429.946667pt;}
.y4f{bottom:430.666667pt;}
.ye{bottom:430.990669pt;}
.y25f{bottom:432.106667pt;}
.y16f{bottom:432.746667pt;}
.yb1{bottom:435.226667pt;}
.y1bd{bottom:439.706667pt;}
.y239{bottom:440.586667pt;}
.y83{bottom:442.826667pt;}
.y212{bottom:443.226667pt;}
.ydb{bottom:443.466667pt;}
.y1e7{bottom:443.786667pt;}
.yfe{bottom:445.306667pt;}
.y18c{bottom:445.386667pt;}
.y148{bottom:445.946667pt;}
.y4e{bottom:446.106667pt;}
.yd{bottom:446.990669pt;}
.y16e{bottom:448.746667pt;}
.yb0{bottom:450.586667pt;}
.y121{bottom:450.986667pt;}
.y25e{bottom:451.466667pt;}
.y1bc{bottom:455.066667pt;}
.y238{bottom:455.866667pt;}
.y82{bottom:458.186667pt;}
.y211{bottom:458.586667pt;}
.yda{bottom:458.746667pt;}
.y1e6{bottom:459.146667pt;}
.yfd{bottom:460.586667pt;}
.y18b{bottom:460.666667pt;}
.y4d{bottom:461.386667pt;}
.y147{bottom:461.946667pt;}
.yc{bottom:462.990669pt;}
.y16d{bottom:464.106667pt;}
.y281{bottom:464.426667pt;}
.yaf{bottom:465.866667pt;}
.y25d{bottom:466.746667pt;}
.y1bb{bottom:470.346667pt;}
.y81{bottom:473.466667pt;}
.y210{bottom:473.866667pt;}
.yd9{bottom:474.106667pt;}
.y237{bottom:475.226667pt;}
.y18a{bottom:476.026667pt;}
.y4c{bottom:476.746667pt;}
.y146{bottom:477.946667pt;}
.yb{bottom:478.990666pt;}
.y16a{bottom:480.106667pt;}
.yae{bottom:481.226667pt;}
.y25c{bottom:482.106667pt;}
.y1e5{bottom:482.266667pt;}
.y120{bottom:482.346667pt;}
.yfc{bottom:483.786667pt;}
.y280{bottom:483.866667pt;}
.y1ba{bottom:486.026667pt;}
.y80{bottom:488.826667pt;}
.y20f{bottom:489.226667pt;}
.yd8{bottom:489.466667pt;}
.y236{bottom:490.586667pt;}
.y189{bottom:491.626667pt;}
.y4b{bottom:491.946667pt;}
.y144{bottom:493.306667pt;}
.ya{bottom:494.990666pt;}
.y167{bottom:495.466667pt;}
.yad{bottom:496.586667pt;}
.y25b{bottom:497.466667pt;}
.y11f{bottom:498.346667pt;}
.y27f{bottom:499.226667pt;}
.y1b9{bottom:501.386667pt;}
.y7f{bottom:504.186667pt;}
.y20e{bottom:504.586667pt;}
.yd7{bottom:504.746667pt;}
.y1e4{bottom:505.626667pt;}
.y235{bottom:505.866667pt;}
.y188{bottom:506.986667pt;}
.yfb{bottom:507.226667pt;}
.y4a{bottom:507.386667pt;}
.y13e{bottom:509.306667pt;}
.y15a{bottom:511.706667pt;}
.yac{bottom:511.866667pt;}
.y27e{bottom:514.586667pt;}
.y1b8{bottom:516.666667pt;}
.y25a{bottom:516.746667pt;}
.y7e{bottom:519.466667pt;}
.y20d{bottom:519.866667pt;}
.yd6{bottom:520.106667pt;}
.y49{bottom:522.746667pt;}
.y234{bottom:525.226667pt;}
.y161{bottom:526.186667pt;}
.yab{bottom:527.226667pt;}
.y141{bottom:528.693333pt;}
.y1e3{bottom:529.173333pt;}
.y11e{bottom:529.733333pt;}
.y27d{bottom:529.893333pt;}
.yfa{bottom:530.613333pt;}
.y259{bottom:532.133333pt;}
.y1b7{bottom:532.373333pt;}
.y7d{bottom:534.853333pt;}
.yd5{bottom:535.493333pt;}
.y48{bottom:538.133333pt;}
.y233{bottom:540.613333pt;}
.yaa{bottom:542.613333pt;}
.y20c{bottom:543.093333pt;}
.y1e2{bottom:544.453333pt;}
.y114{bottom:545.733333pt;}
.yf9{bottom:545.973333pt;}
.y258{bottom:547.493333pt;}
.y1b6{bottom:547.653333pt;}
.y27c{bottom:549.253333pt;}
.yd4{bottom:550.773333pt;}
.y47{bottom:553.413333pt;}
.y232{bottom:555.893333pt;}
.ya9{bottom:557.893333pt;}
.y7c{bottom:558.213333pt;}
.y13d{bottom:559.493333pt;}
.y1e1{bottom:559.813333pt;}
.yf8{bottom:561.253333pt;}
.y187{bottom:561.333333pt;}
.y257{bottom:562.773333pt;}
.y27b{bottom:564.613333pt;}
.y20b{bottom:566.453333pt;}
.y46{bottom:568.773333pt;}
.y1b5{bottom:571.333333pt;}
.ya8{bottom:573.253333pt;}
.y7b{bottom:573.493333pt;}
.y9{bottom:573.786667pt;}
.yd3{bottom:573.973333pt;}
.y1e0{bottom:575.173333pt;}
.y231{bottom:575.253333pt;}
.yf7{bottom:576.613333pt;}
.y117{bottom:577.013333pt;}
.y27a{bottom:579.893333pt;}
.y256{bottom:582.133333pt;}
.y13c{bottom:583.013333pt;}
.y45{bottom:584.133333pt;}
.y1b4{bottom:586.613333pt;}
.ya7{bottom:588.613333pt;}
.y7a{bottom:588.853333pt;}
.y20a{bottom:589.413333pt;}
.y1df{bottom:590.453333pt;}
.y230{bottom:590.613333pt;}
.yf6{bottom:591.973333pt;}
.y8{bottom:592.685334pt;}
.y279{bottom:595.253333pt;}
.y160{bottom:595.813333pt;}
.yd2{bottom:597.493333pt;}
.y13b{bottom:598.373333pt;}
.y44{bottom:599.413333pt;}
.y1b3{bottom:601.973333pt;}
.y209{bottom:603.733333pt;}
.ya6{bottom:603.893333pt;}
.y79{bottom:604.133333pt;}
.y1de{bottom:605.813333pt;}
.y22f{bottom:605.893333pt;}
.yf5{bottom:607.253333pt;}
.y186{bottom:607.333333pt;}
.y278{bottom:610.613333pt;}
.y255{bottom:612.773333pt;}
.y13a{bottom:613.653333pt;}
.y43{bottom:614.773333pt;}
.y208{bottom:616.693333pt;}
.y1b2{bottom:617.333333pt;}
.ya5{bottom:619.253333pt;}
.y78{bottom:619.493333pt;}
.yd1{bottom:620.773333pt;}
.y1dd{bottom:621.173333pt;}
.y159{bottom:622.133333pt;}
.yf4{bottom:622.613333pt;}
.y22e{bottom:625.253333pt;}
.y139{bottom:629.013333pt;}
.y206{bottom:629.653333pt;}
.y277{bottom:629.893333pt;}
.y42{bottom:630.133333pt;}
.y185{bottom:630.613333pt;}
.y254{bottom:632.133333pt;}
.y1b1{bottom:632.613333pt;}
.y77{bottom:634.853333pt;}
.yd0{bottom:636.133333pt;}
.yf3{bottom:637.973333pt;}
.y111{bottom:639.013333pt;}
.y22d{bottom:640.613333pt;}
.ya4{bottom:642.613333pt;}
.y205{bottom:642.773333pt;}
.y1dc{bottom:644.293333pt;}
.y138{bottom:644.613333pt;}
.y276{bottom:645.253333pt;}
.y41{bottom:645.413333pt;}
.y158{bottom:645.493333pt;}
.y7{bottom:645.598667pt;}
.y253{bottom:647.493333pt;}
.y1b0{bottom:647.973333pt;}
.y76{bottom:650.133333pt;}
.ycf{bottom:651.493333pt;}
.yf2{bottom:653.253333pt;}
.y184{bottom:654.213333pt;}
.y204{bottom:655.733333pt;}
.y22c{bottom:655.893333pt;}
.ya3{bottom:657.893333pt;}
.y137{bottom:659.973333pt;}
.y275{bottom:660.613333pt;}
.y40{bottom:660.773333pt;}
.y252{bottom:662.773333pt;}
.y75{bottom:665.493333pt;}
.yce{bottom:666.773333pt;}
.y1db{bottom:667.813333pt;}
.y157{bottom:668.773333pt;}
.y3{bottom:668.977329pt;}
.y1af{bottom:671.253333pt;}
.ya2{bottom:673.253333pt;}
.y136{bottom:675.253333pt;}
.y274{bottom:675.893333pt;}
.y3f{bottom:676.133333pt;}
.yf1{bottom:676.453333pt;}
.y183{bottom:677.893333pt;}
.y74{bottom:680.853333pt;}
.y202{bottom:680.933333pt;}
.ycd{bottom:682.133333pt;}
.y10f{bottom:685.733333pt;}
.ya1{bottom:688.613333pt;}
.y156{bottom:689.253333pt;}
.y22b{bottom:690.533333pt;}
.y135{bottom:690.933333pt;}
.y1da{bottom:691.173333pt;}
.y3e{bottom:691.253333pt;}
.y182{bottom:693.253333pt;}
.y1ae{bottom:694.933333pt;}
.y273{bottom:695.253333pt;}
.y73{bottom:696.933333pt;}
.ycc{bottom:697.493333pt;}
.yf0{bottom:699.813333pt;}
.ya0{bottom:703.893333pt;}
.y1fd{bottom:705.493333pt;}
.y22a{bottom:705.893333pt;}
.y134{bottom:706.293333pt;}
.y1d9{bottom:706.453333pt;}
.y3d{bottom:706.613333pt;}
.y272{bottom:710.533333pt;}
.ycb{bottom:712.773333pt;}
.y72{bottom:713.493333pt;}
.y181{bottom:716.373333pt;}
.y1ad{bottom:718.533333pt;}
.y9f{bottom:719.253333pt;}
.y10e{bottom:719.973333pt;}
.y229{bottom:721.253333pt;}
.y1d8{bottom:721.813333pt;}
.y3c{bottom:721.973333pt;}
.yef{bottom:723.253333pt;}
.y271{bottom:725.893333pt;}
.yca{bottom:728.133333pt;}
.y71{bottom:728.773333pt;}
.y133{bottom:729.413333pt;}
.y251{bottom:732.133333pt;}
.y1ac{bottom:733.893333pt;}
.y9e{bottom:734.533333pt;}
.y32{bottom:735.013333pt;}
.y1d7{bottom:737.093333pt;}
.y180{bottom:739.733333pt;}
.y228{bottom:740.533333pt;}
.y1f0{bottom:742.933333pt;}
.yc9{bottom:743.413333pt;}
.y70{bottom:744.133333pt;}
.y270{bottom:745.253333pt;}
.yee{bottom:746.613333pt;}
.y250{bottom:747.413333pt;}
.y9d{bottom:749.893333pt;}
.y132{bottom:752.773333pt;}
.y1f7{bottom:755.893333pt;}
.y1ab{bottom:757.093333pt;}
.yc8{bottom:758.773333pt;}
.y6f{bottom:759.413333pt;}
.y26f{bottom:760.533333pt;}
.yed{bottom:761.973333pt;}
.y24f{bottom:762.773333pt;}
.y17f{bottom:763.253333pt;}
.y9c{bottom:765.253333pt;}
.y1d6{bottom:768.133333pt;}
.y227{bottom:771.253333pt;}
.yc7{bottom:774.133333pt;}
.y6e{bottom:774.773333pt;}
.y26e{bottom:775.893333pt;}
.y131{bottom:776.133333pt;}
.yec{bottom:777.253333pt;}
.y1aa{bottom:780.373333pt;}
.y9b{bottom:780.533333pt;}
.y2{bottom:781.661334pt;}
.y24e{bottom:782.133333pt;}
.y1d5{bottom:783.413333pt;}
.y17e{bottom:786.373333pt;}
.yc6{bottom:789.413333pt;}
.y6d{bottom:790.133333pt;}
.y226{bottom:790.533333pt;}
.y26d{bottom:795.253333pt;}
.y9a{bottom:795.893333pt;}
.y24d{bottom:797.413333pt;}
.y1d4{bottom:798.773333pt;}
.y130{bottom:799.573333pt;}
.yeb{bottom:800.613333pt;}
.y1a9{bottom:803.733333pt;}
.yc5{bottom:804.773333pt;}
.y6c{bottom:805.413333pt;}
.y225{bottom:805.893333pt;}
.y17d{bottom:806.773333pt;}
.y26c{bottom:810.533333pt;}
.y99{bottom:811.253333pt;}
.y24c{bottom:812.773333pt;}
.y1d3{bottom:814.053333pt;}
.yea{bottom:815.973333pt;}
.y1a8{bottom:817.493333pt;}
.y1f5{bottom:817.813333pt;}
.yc4{bottom:820.133333pt;}
.y12d{bottom:820.533333pt;}
.y6b{bottom:820.773333pt;}
.y224{bottom:825.253333pt;}
.y98{bottom:826.533333pt;}
.y1a7{bottom:829.093333pt;}
.y26b{bottom:829.893333pt;}
.y24b{bottom:832.133333pt;}
.yc3{bottom:835.413333pt;}
.y6a{bottom:836.133333pt;}
.y12c{bottom:836.773333pt;}
.y1d2{bottom:837.253333pt;}
.ye9{bottom:839.253333pt;}
.y223{bottom:840.533333pt;}
.y97{bottom:841.893333pt;}
.y1ef{bottom:843.253333pt;}
.y10d{bottom:843.413333pt;}
.y1a6{bottom:844.933333pt;}
.y26a{bottom:845.253333pt;}
.y24a{bottom:847.413333pt;}
.yc2{bottom:850.773333pt;}
.y69{bottom:851.413333pt;}
.y126{bottom:852.773333pt;}
.ye8{bottom:854.613333pt;}
.y96{bottom:857.253333pt;}
.y10c{bottom:858.773333pt;}
.y1{bottom:859.312000pt;}
.y222{bottom:859.893333pt;}
.y269{bottom:860.533333pt;}
.y1d1{bottom:860.613333pt;}
.y1a5{bottom:861.093333pt;}
.y249{bottom:862.773333pt;}
.yc1{bottom:866.133333pt;}
.y68{bottom:866.773333pt;}
.ye7{bottom:869.973333pt;}
.y95{bottom:872.533333pt;}
.y10b{bottom:874.133333pt;}
.y221{bottom:875.253333pt;}
.y31{bottom:876.613333pt;}
.y1a4{bottom:877.173333pt;}
.y268{bottom:879.893333pt;}
.yc0{bottom:881.413333pt;}
.y67{bottom:882.133333pt;}
.y1d0{bottom:883.893333pt;}
.y94{bottom:887.893333pt;}
.y10a{bottom:889.413333pt;}
.y220{bottom:890.533333pt;}
.y30{bottom:891.893333pt;}
.y1a2{bottom:893.093333pt;}
.ye6{bottom:894.053333pt;}
.y267{bottom:895.253333pt;}
.ybf{bottom:896.773333pt;}
.y66{bottom:897.413333pt;}
.y93{bottom:903.253333pt;}
.y109{bottom:904.773333pt;}
.y1cf{bottom:906.933333pt;}
.y1a1{bottom:909.173333pt;}
.y21f{bottom:909.893333pt;}
.y266{bottom:910.533333pt;}
.y155{bottom:910.773333pt;}
.ybe{bottom:912.133333pt;}
.y65{bottom:912.773333pt;}
.y2f{bottom:913.573333pt;}
.y92{bottom:918.533333pt;}
.y108{bottom:920.133333pt;}
.y1ce{bottom:921.253333pt;}
.y19e{bottom:924.373333pt;}
.y2e{bottom:924.480000pt;}
.y21e{bottom:925.280000pt;}
.y154{bottom:926.960000pt;}
.ybd{bottom:927.440000pt;}
.y64{bottom:928.160000pt;}
.y265{bottom:929.920000pt;}
.y248{bottom:932.160000pt;}
.y91{bottom:933.920000pt;}
.y107{bottom:935.440000pt;}
.y1cd{bottom:935.760000pt;}
.y19c{bottom:940.320000pt;}
.y2d{bottom:942.240000pt;}
.ybc{bottom:942.800000pt;}
.y63{bottom:943.440000pt;}
.y264{bottom:945.280000pt;}
.y247{bottom:947.440000pt;}
.y21d{bottom:948.400000pt;}
.y90{bottom:949.280000pt;}
.y1cc{bottom:950.240000pt;}
.y106{bottom:950.800000pt;}
.y19a{bottom:955.520000pt;}
.y2c{bottom:958.480000pt;}
.y62{bottom:958.800000pt;}
.y263{bottom:960.560000pt;}
.y246{bottom:962.800000pt;}
.y8f{bottom:964.560000pt;}
.y1cb{bottom:964.960000pt;}
.ybb{bottom:966.000000pt;}
.y195{bottom:971.360000pt;}
.y21c{bottom:971.920000pt;}
.y61{bottom:974.160000pt;}
.y1ca{bottom:979.440000pt;}
.y8e{bottom:979.920000pt;}
.y2b{bottom:981.280000pt;}
.y245{bottom:982.160000pt;}
.y197{bottom:985.840000pt;}
.y21b{bottom:987.280000pt;}
.yba{bottom:989.280000pt;}
.y60{bottom:989.440000pt;}
.y125{bottom:991.520000pt;}
.y1c9{bottom:993.920000pt;}
.y8d{bottom:995.280000pt;}
.y244{bottom:997.440000pt;}
.y2a{bottom:1004.000000pt;}
.y1c7{bottom:1008.320000pt;}
.y21a{bottom:1010.400000pt;}
.y8c{bottom:1010.560000pt;}
.y5f{bottom:1012.640000pt;}
.y243{bottom:1012.800000pt;}
.y28{bottom:1026.480000pt;}
.y5e{bottom:1028.720000pt;}
.y24{bottom:1042.560000pt;}
.y5b{bottom:1044.800000pt;}
.h46{height:12.240000pt;}
.h4a{height:12.320000pt;}
.h4b{height:12.480000pt;}
.h34{height:13.760000pt;}
.h3c{height:13.840000pt;}
.h40{height:13.866667pt;}
.h3f{height:14.080000pt;}
.h32{height:14.720000pt;}
.h3b{height:15.200000pt;}
.h3d{height:15.226667pt;}
.h22{height:15.280000pt;}
.h24{height:15.360000pt;}
.h3e{height:15.440000pt;}
.h2e{height:15.520000pt;}
.h28{height:15.600000pt;}
.h2d{height:15.840000pt;}
.h2b{height:18.640000pt;}
.h2a{height:19.200000pt;}
.h49{height:24.560000pt;}
.h48{height:26.067187pt;}
.h19{height:28.320000pt;}
.h7{height:28.560000pt;}
.h3a{height:29.680000pt;}
.h9{height:30.560000pt;}
.h1b{height:30.640000pt;}
.h23{height:30.660000pt;}
.h25{height:30.720000pt;}
.h35{height:32.507812pt;}
.h31{height:32.531250pt;}
.h15{height:33.888437pt;}
.h11{height:36.727031pt;}
.h17{height:36.800000pt;}
.h1a{height:37.131406pt;}
.h29{height:38.580000pt;}
.hb{height:38.905781pt;}
.h6{height:40.800000pt;}
.h18{height:41.749531pt;}
.h42{height:41.770312pt;}
.h4c{height:42.054219pt;}
.h47{height:42.067187pt;}
.h3{height:42.840000pt;}
.h44{height:42.892500pt;}
.h1c{height:46.000000pt;}
.h36{height:47.085938pt;}
.h38{height:47.109375pt;}
.h39{height:47.390625pt;}
.h37{height:47.406250pt;}
.h41{height:47.497292pt;}
.h16{height:48.375000pt;}
.h2{height:48.960000pt;}
.h1d{height:52.422344pt;}
.hf{height:52.448437pt;}
.h2f{height:52.461875pt;}
.h2c{height:52.478750pt;}
.hd{height:53.857500pt;}
.ha{height:56.946094pt;}
.h13{height:57.473437pt;}
.h10{height:59.172500pt;}
.he{height:60.179531pt;}
.h26{height:61.280000pt;}
.h20{height:61.356000pt;}
.h1f{height:61.360000pt;}
.hc{height:62.812500pt;}
.h33{height:68.900000pt;}
.h5{height:69.360000pt;}
.h43{height:88.716000pt;}
.h45{height:88.720000pt;}
.h1e{height:92.640000pt;}
.h30{height:98.820000pt;}
.h4{height:105.826671pt;}
.h12{height:138.000000pt;}
.h27{height:138.026667pt;}
.h21{height:249.933333pt;}
.h14{height:1122.466588pt;}
.h8{height:1122.480000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w21{width:47.760000pt;}
.w20{width:48.400000pt;}
.w23{width:51.840000pt;}
.w25{width:51.866667pt;}
.w24{width:51.920000pt;}
.w22{width:52.820000pt;}
.wf{width:56.560000pt;}
.wc{width:64.480000pt;}
.w4{width:65.040000pt;}
.w16{width:72.820000pt;}
.wd{width:74.640000pt;}
.w1e{width:74.876000pt;}
.w1f{width:74.880000pt;}
.w19{width:80.026667pt;}
.w18{width:88.720000pt;}
.w17{width:90.240000pt;}
.w9{width:102.240000pt;}
.w1c{width:109.680000pt;}
.w14{width:119.997333pt;}
.w15{width:120.000000pt;}
.w1d{width:133.706667pt;}
.w1a{width:136.880000pt;}
.we{width:143.466667pt;}
.w13{width:157.786667pt;}
.w11{width:157.840000pt;}
.w12{width:157.866667pt;}
.w1b{width:166.746667pt;}
.w7{width:178.266667pt;}
.w10{width:213.226667pt;}
.w6{width:303.866667pt;}
.wa{width:389.093333pt;}
.w5{width:424.853333pt;}
.wb{width:425.413333pt;}
.w2{width:566.928019pt;}
.w8{width:793.670000pt;}
.w3{width:793.680000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.440000pt;}
.x1f{left:4.720000pt;}
.x29{left:5.680000pt;}
.x6{left:7.200000pt;}
.x25{left:8.800000pt;}
.x1e{left:10.320000pt;}
.x14{left:12.800000pt;}
.x20{left:13.840000pt;}
.x1b{left:15.280000pt;}
.x9{left:16.720000pt;}
.x24{left:18.640000pt;}
.x28{left:19.680000pt;}
.x2a{left:21.520000pt;}
.x16{left:22.560000pt;}
.x48{left:23.680000pt;}
.x8{left:24.960000pt;}
.x49{left:26.266667pt;}
.x21{left:28.160000pt;}
.x18{left:29.680000pt;}
.x35{left:31.680000pt;}
.x47{left:32.986667pt;}
.x42{left:35.280000pt;}
.x23{left:36.320000pt;}
.x27{left:37.440000pt;}
.x4b{left:38.400000pt;}
.x1d{left:40.320000pt;}
.x4f{left:41.920000pt;}
.x2b{left:44.320000pt;}
.x22{left:46.720000pt;}
.x4c{left:48.480000pt;}
.x2e{left:51.520000pt;}
.x59{left:52.986667pt;}
.x51{left:54.240000pt;}
.x4e{left:55.706667pt;}
.x50{left:57.920000pt;}
.x26{left:59.520000pt;}
.x60{left:62.720000pt;}
.x4d{left:64.480000pt;}
.x38{left:66.320000pt;}
.x5d{left:68.400000pt;}
.x74{left:70.880000pt;}
.x3b{left:72.640000pt;}
.x39{left:75.040000pt;}
.x57{left:76.346667pt;}
.x66{left:77.840000pt;}
.x2d{left:78.880000pt;}
.x67{left:81.866667pt;}
.x65{left:85.866667pt;}
.x1{left:90.706667pt;}
.x33{left:92.240000pt;}
.x2{left:94.486667pt;}
.x32{left:96.906667pt;}
.x4a{left:99.920000pt;}
.x34{left:100.986667pt;}
.x6a{left:102.826667pt;}
.x5a{left:108.400000pt;}
.x69{left:109.386667pt;}
.x5c{left:110.986667pt;}
.x5b{left:114.906667pt;}
.x31{left:118.880000pt;}
.x3c{left:120.986667pt;}
.x3a{left:124.346667pt;}
.x68{left:126.826667pt;}
.x37{left:130.266667pt;}
.x61{left:132.906667pt;}
.x36{left:134.666667pt;}
.x5f{left:135.866667pt;}
.x5e{left:142.426667pt;}
.x5{left:151.226667pt;}
.x6c{left:152.586667pt;}
.xf{left:159.066667pt;}
.x55{left:160.986667pt;}
.xa{left:163.546667pt;}
.x41{left:169.626667pt;}
.x4{left:180.874667pt;}
.x6b{left:185.466667pt;}
.x63{left:207.626667pt;}
.x7{left:216.266667pt;}
.x62{left:218.186667pt;}
.xe{left:221.226667pt;}
.x17{left:227.146667pt;}
.x6d{left:228.106667pt;}
.x54{left:231.546667pt;}
.x12{left:253.466667pt;}
.xb{left:259.146667pt;}
.x6e{left:277.226667pt;}
.x2c{left:285.066667pt;}
.xd{left:287.946667pt;}
.x43{left:290.266667pt;}
.x56{left:298.586667pt;}
.x3e{left:301.066667pt;}
.x15{left:305.386667pt;}
.x53{left:306.666667pt;}
.x2f{left:317.946667pt;}
.x40{left:325.386667pt;}
.x11{left:343.253333pt;}
.x44{left:363.733333pt;}
.x19{left:371.333333pt;}
.x6f{left:379.173333pt;}
.xc{left:396.853333pt;}
.x3{left:404.408000pt;}
.x3f{left:406.933333pt;}
.x1c{left:428.613333pt;}
.x70{left:431.653333pt;}
.x64{left:452.453333pt;}
.x45{left:454.613333pt;}
.x10{left:463.573333pt;}
.x58{left:465.973333pt;}
.x30{left:476.453333pt;}
.x71{left:484.213333pt;}
.x72{left:536.773333pt;}
.x46{left:544.053333pt;}
.x13{left:576.640000pt;}
.x73{left:589.280000pt;}
.x52{left:641.280000pt;}
.x3d{left:650.160000pt;}
}




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