
    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_229e693176c428760f4e7a1f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_2bc8a25963cb625dbcaa4358.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_382d78572521327336f386fd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_d66c0d979a492fa831f0ae6d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.680000;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_a9570d0637c1087af2166b96.woff')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_d1bf3eb9acff04aa53ae57b5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_ce106a1699c5b40774a551c1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.054000;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_b12b7fccf772bc1a4c4849a0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.054000;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_28ff2b8ea33ccbfcd39c2f5c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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);}
.v3{vertical-align:-16.377600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.416000px;}
.v2{vertical-align:16.380000px;}
.v7{vertical-align:19.974600px;}
.v4{vertical-align:33.360000px;}
.v5{vertical-align:36.000000px;}
.v6{vertical-align:72.000000px;}
.ls17{letter-spacing:-3.300000px;}
.ls23{letter-spacing:-3.234000px;}
.ls4{letter-spacing:-2.310000px;}
.ls11{letter-spacing:-1.848000px;}
.ls2a{letter-spacing:-1.800000px;}
.ls19{letter-spacing:-1.782000px;}
.ls3{letter-spacing:-1.650000px;}
.ls20{letter-spacing:-1.584000px;}
.ls27{letter-spacing:-1.500000px;}
.ls2{letter-spacing:-1.320000px;}
.ls13{letter-spacing:-1.122000px;}
.ls6{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-0.990000px;}
.ls2b{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.858000px;}
.ls1d{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.587664px;}
.ls5{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.470131px;}
.lse{letter-spacing:-0.396000px;}
.ls15{letter-spacing:-0.391776px;}
.lsc{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.349800px;}
.ls22{letter-spacing:-0.330000px;}
.ls26{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.274243px;}
.ls14{letter-spacing:-0.235066px;}
.ls10{letter-spacing:-0.066000px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.056400px;}
.ls1a{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.780000px;}
.ls1c{letter-spacing:1.188000px;}
.ls21{letter-spacing:1.617000px;}
.ls12{letter-spacing:2.772000px;}
.ls0{letter-spacing:6.960000px;}
.ls29{letter-spacing:18.444000px;}
.ls28{letter-spacing:24.240000px;}
.ls9{letter-spacing:41.976000px;}
.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;}
}
.ws60{word-spacing:-13.200000px;}
.ws1f{word-spacing:-13.068000px;}
.ws87{word-spacing:-12.660000px;}
.wsd{word-spacing:-12.408000px;}
.wse{word-spacing:-12.012000px;}
.ws3{word-spacing:-11.880000px;}
.ws24{word-spacing:-11.748000px;}
.ws7e{word-spacing:-11.682000px;}
.ws2c{word-spacing:-11.616000px;}
.ws2b{word-spacing:-11.418000px;}
.ws49{word-spacing:-11.022000px;}
.ws5f{word-spacing:-10.980000px;}
.ws2{word-spacing:-10.920000px;}
.ws12{word-spacing:-10.758000px;}
.ws5{word-spacing:-10.692000px;}
.ws97{word-spacing:-10.620000px;}
.ws4f{word-spacing:-10.320000px;}
.wsa6{word-spacing:-10.020000px;}
.ws4{word-spacing:-9.828000px;}
.ws0{word-spacing:-9.504000px;}
.ws98{word-spacing:-9.420000px;}
.ws15{word-spacing:-9.288000px;}
.ws18{word-spacing:-9.180000px;}
.ws9f{word-spacing:-9.120000px;}
.ws16{word-spacing:-8.748000px;}
.ws9a{word-spacing:-8.160000px;}
.ws13{word-spacing:-7.757165px;}
.ws31{word-spacing:-7.522099px;}
.ws25{word-spacing:-7.482922px;}
.ws42{word-spacing:-7.365389px;}
.ws17{word-spacing:-7.287034px;}
.ws4a{word-spacing:-7.169501px;}
.ws8{word-spacing:-6.804000px;}
.ws74{word-spacing:-6.576240px;}
.ws89{word-spacing:-5.580000px;}
.ws94{word-spacing:-4.680000px;}
.ws8c{word-spacing:-2.760000px;}
.ws9b{word-spacing:-2.580000px;}
.ws69{word-spacing:-2.100000px;}
.ws29{word-spacing:-2.052000px;}
.ws76{word-spacing:-1.860000px;}
.ws47{word-spacing:-1.848000px;}
.ws34{word-spacing:-1.584000px;}
.ws79{word-spacing:-1.452000px;}
.ws6b{word-spacing:-1.440000px;}
.ws65{word-spacing:-1.380000px;}
.ws5c{word-spacing:-1.320000px;}
.ws84{word-spacing:-1.254000px;}
.ws22{word-spacing:-1.188000px;}
.ws67{word-spacing:-1.140000px;}
.ws1d{word-spacing:-1.080000px;}
.ws82{word-spacing:-0.990000px;}
.ws6c{word-spacing:-0.960000px;}
.ws73{word-spacing:-0.858000px;}
.ws54{word-spacing:-0.726000px;}
.ws32{word-spacing:-0.660000px;}
.ws9c{word-spacing:-0.600000px;}
.ws58{word-spacing:-0.540000px;}
.ws48{word-spacing:-0.396000px;}
.ws20{word-spacing:-0.330000px;}
.ws83{word-spacing:-0.264000px;}
.ws11{word-spacing:-0.132000px;}
.ws1{word-spacing:-0.066000px;}
.ws68{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws2f{word-spacing:0.066000px;}
.ws7c{word-spacing:0.120000px;}
.ws1b{word-spacing:0.264000px;}
.ws6a{word-spacing:0.300000px;}
.ws77{word-spacing:0.330000px;}
.ws53{word-spacing:0.360000px;}
.ws28{word-spacing:0.378000px;}
.ws2d{word-spacing:0.396000px;}
.ws64{word-spacing:0.420000px;}
.ws7f{word-spacing:0.528000px;}
.ws2e{word-spacing:0.594000px;}
.ws1e{word-spacing:0.648000px;}
.ws52{word-spacing:0.660000px;}
.ws66{word-spacing:0.720000px;}
.ws5b{word-spacing:0.840000px;}
.ws26{word-spacing:0.858000px;}
.ws7d{word-spacing:0.918000px;}
.ws27{word-spacing:0.972000px;}
.ws4b{word-spacing:0.990000px;}
.ws7b{word-spacing:1.020000px;}
.ws8b{word-spacing:1.080000px;}
.ws33{word-spacing:1.122000px;}
.ws55{word-spacing:1.254000px;}
.ws7{word-spacing:1.320000px;}
.wsa1{word-spacing:1.380000px;}
.ws5d{word-spacing:1.584000px;}
.ws41{word-spacing:1.716000px;}
.ws6d{word-spacing:1.740000px;}
.ws56{word-spacing:1.782000px;}
.ws7a{word-spacing:1.800000px;}
.ws30{word-spacing:1.848000px;}
.ws62{word-spacing:2.100000px;}
.ws45{word-spacing:2.268000px;}
.ws59{word-spacing:2.280000px;}
.ws37{word-spacing:2.322000px;}
.ws93{word-spacing:2.460000px;}
.ws1c{word-spacing:2.508000px;}
.ws23{word-spacing:2.574000px;}
.ws36{word-spacing:2.592000px;}
.ws63{word-spacing:2.640000px;}
.ws5a{word-spacing:2.700000px;}
.ws1a{word-spacing:2.706000px;}
.ws80{word-spacing:2.772000px;}
.ws75{word-spacing:2.820000px;}
.ws6f{word-spacing:2.940000px;}
.ws6e{word-spacing:3.120000px;}
.wsa0{word-spacing:3.180000px;}
.ws85{word-spacing:3.234000px;}
.ws95{word-spacing:3.240000px;}
.ws4c{word-spacing:3.300000px;}
.ws19{word-spacing:3.696000px;}
.wsa2{word-spacing:3.720000px;}
.ws78{word-spacing:3.762000px;}
.ws9{word-spacing:3.840000px;}
.ws88{word-spacing:4.140000px;}
.wsa{word-spacing:4.260000px;}
.ws35{word-spacing:4.266000px;}
.ws81{word-spacing:4.290000px;}
.ws90{word-spacing:5.580000px;}
.ws91{word-spacing:6.060000px;}
.ws10{word-spacing:6.540000px;}
.wsa3{word-spacing:6.600000px;}
.ws61{word-spacing:6.660000px;}
.ws5e{word-spacing:6.840000px;}
.ws8d{word-spacing:7.020000px;}
.ws9e{word-spacing:7.440000px;}
.ws4d{word-spacing:8.976000px;}
.wsf{word-spacing:11.760000px;}
.ws8e{word-spacing:16.680000px;}
.ws9d{word-spacing:19.440000px;}
.ws92{word-spacing:21.480000px;}
.ws8f{word-spacing:22.080000px;}
.ws8a{word-spacing:22.800000px;}
.ws99{word-spacing:27.780000px;}
.ws39{word-spacing:38.640000px;}
.ws3b{word-spacing:80.880000px;}
.ws3f{word-spacing:100.926000px;}
.ws3d{word-spacing:107.286000px;}
.ws50{word-spacing:124.920000px;}
.ws3a{word-spacing:129.600000px;}
.ws71{word-spacing:129.900000px;}
.ws3c{word-spacing:195.180000px;}
.ws3e{word-spacing:201.300000px;}
.ws40{word-spacing:205.440000px;}
.ws72{word-spacing:403.986000px;}
.wsa5{word-spacing:506.164800px;}
.wsc{word-spacing:508.132800px;}
.ws51{word-spacing:613.080000px;}
.ws44{word-spacing:675.420000px;}
.ws86{word-spacing:698.136600px;}
.wsa4{word-spacing:702.558600px;}
.ws96{word-spacing:704.208600px;}
.ws14{word-spacing:709.752600px;}
.ws38{word-spacing:711.138600px;}
.ws46{word-spacing:711.270600px;}
.ws43{word-spacing:712.194600px;}
.ws70{word-spacing:712.656600px;}
.ws57{word-spacing:713.712600px;}
.ws2a{word-spacing:714.174600px;}
.ws4e{word-spacing:715.362600px;}
.ws21{word-spacing:717.804600px;}
.wsb{word-spacing:719.916600px;}
._14{margin-left:-79.068000px;}
._50{margin-left:-9.399000px;}
._6{margin-left:-7.975800px;}
._7{margin-left:-6.652800px;}
._4{margin-left:-5.508000px;}
._3{margin-left:-4.051200px;}
._0{margin-left:-2.644800px;}
._1{margin-left:-1.214400px;}
._2{width:1.125000px;}
._d{width:2.376000px;}
._c{width:3.552000px;}
._b{width:4.758000px;}
._8{width:5.850000px;}
._9{width:7.104000px;}
._f{width:8.448000px;}
._a{width:10.026000px;}
._11{width:11.568600px;}
._10{width:13.236000px;}
._1e{width:15.239400px;}
._1d{width:16.240800px;}
._5{width:17.776800px;}
._e{width:19.404000px;}
._51{width:20.667600px;}
._4c{width:23.226000px;}
._4d{width:24.711600px;}
._4b{width:28.010400px;}
._49{width:29.299200px;}
._4a{width:30.508800px;}
._48{width:32.546400px;}
._16{width:34.914000px;}
._1c{width:36.264000px;}
._19{width:44.418000px;}
._17{width:47.124000px;}
._4f{width:49.316400px;}
._13{width:53.196000px;}
._4e{width:54.414000px;}
._15{width:56.298000px;}
._12{width:62.370000px;}
._23{width:64.350000px;}
._2a{width:75.780000px;}
._29{width:83.340000px;}
._47{width:87.480000px;}
._2b{width:93.000000px;}
._2c{width:94.634400px;}
._34{width:99.960000px;}
._3f{width:101.584800px;}
._33{width:108.434400px;}
._32{width:111.420000px;}
._46{width:113.534400px;}
._2e{width:115.920000px;}
._44{width:121.500000px;}
._3a{width:123.600000px;}
._2f{width:127.200000px;}
._30{width:128.340000px;}
._22{width:130.500000px;}
._3e{width:134.640000px;}
._26{width:138.931200px;}
._39{width:143.068800px;}
._42{width:145.551600px;}
._43{width:149.160000px;}
._21{width:150.300000px;}
._20{width:151.800000px;}
._41{width:153.720000px;}
._36{width:155.971200px;}
._1f{width:159.300000px;}
._3d{width:164.040000px;}
._3c{width:169.468800px;}
._37{width:186.583200px;}
._27{width:199.063200px;}
._40{width:230.224800px;}
._28{width:304.754400px;}
._1a{width:313.186800px;}
._31{width:330.811200px;}
._45{width:332.551200px;}
._25{width:351.120000px;}
._35{width:401.640000px;}
._1b{width:438.850800px;}
._18{width:441.002400px;}
._3b{width:464.820000px;}
._24{width:549.900000px;}
._38{width:562.080000px;}
._2d{width:570.840000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(163,40,50);}
.fs6{font-size:34.980000px;}
.fs5{font-size:39.177600px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.275600px;}
.y4{bottom:57.401550px;}
.y1{bottom:68.775600px;}
.y3{bottom:71.955600px;}
.y69{bottom:116.929200px;}
.y126{bottom:116.929350px;}
.y257{bottom:118.533300px;}
.y29f{bottom:119.637300px;}
.y1ee{bottom:120.327600px;}
.y1b8{bottom:120.646200px;}
.ydd{bottom:121.023600px;}
.y210{bottom:123.230250px;}
.y27b{bottom:126.257700px;}
.y68{bottom:133.129200px;}
.y125{bottom:133.129350px;}
.yac{bottom:137.223600px;}
.y13e{bottom:137.223750px;}
.y29e{bottom:137.637300px;}
.y1ed{bottom:138.327600px;}
.y256{bottom:138.333300px;}
.y1b7{bottom:140.446200px;}
.y20f{bottom:143.030250px;}
.y27a{bottom:144.257700px;}
.y8b{bottom:149.329200px;}
.y154{bottom:149.329350px;}
.y178{bottom:152.252850px;}
.y67{bottom:153.423600px;}
.y124{bottom:153.423750px;}
.y29d{bottom:155.637300px;}
.y21{bottom:157.258650px;}
.y255{bottom:158.133300px;}
.y1b6{bottom:160.246200px;}
.y279{bottom:162.257700px;}
.y20e{bottom:162.830250px;}
.ydc{bottom:165.529200px;}
.y153{bottom:165.529350px;}
.y123{bottom:165.529500px;}
.y8a{bottom:169.623600px;}
.y177{bottom:172.052850px;}
.y29c{bottom:173.637300px;}
.y20{bottom:175.258650px;}
.y1ec{bottom:176.129100px;}
.y254{bottom:177.933300px;}
.y1b5{bottom:180.046200px;}
.y278{bottom:180.257700px;}
.y195{bottom:181.729200px;}
.y20d{bottom:182.630250px;}
.yab{bottom:183.130800px;}
.y89{bottom:185.823600px;}
.y152{bottom:185.823750px;}
.y29b{bottom:191.637300px;}
.y176{bottom:191.852850px;}
.y227{bottom:192.469800px;}
.y1eb{bottom:195.929100px;}
.yc5{bottom:196.941300px;}
.y1d5{bottom:197.724750px;}
.y253{bottom:197.733300px;}
.y100{bottom:197.929200px;}
.y151{bottom:197.929500px;}
.y277{bottom:198.257700px;}
.y1f{bottom:199.858650px;}
.y194{bottom:202.023600px;}
.y20c{bottom:202.430250px;}
.yaa{bottom:202.930800px;}
.y45{bottom:208.790550px;}
.y29a{bottom:209.637300px;}
.y175{bottom:211.652850px;}
.y226{bottom:212.269800px;}
.yff{bottom:214.129200px;}
.y150{bottom:214.129500px;}
.y1d4{bottom:214.221750px;}
.yed{bottom:215.010450px;}
.y1ea{bottom:215.729100px;}
.y242{bottom:216.038100px;}
.y276{bottom:216.257700px;}
.yc4{bottom:216.741300px;}
.y252{bottom:217.533300px;}
.y1e{bottom:217.858650px;}
.y1b4{bottom:219.647700px;}
.y20b{bottom:222.230250px;}
.ya9{bottom:222.730800px;}
.y88{bottom:225.741450px;}
.y66{bottom:226.575900px;}
.y299{bottom:227.637300px;}
.y44{bottom:228.590550px;}
.yfe{bottom:230.329200px;}
.y225{bottom:232.069800px;}
.ydb{bottom:232.864800px;}
.y275{bottom:234.257700px;}
.y14f{bottom:234.423900px;}
.yec{bottom:234.810450px;}
.y1e9{bottom:235.529100px;}
.y241{bottom:235.838100px;}
.y1d{bottom:235.858650px;}
.yc3{bottom:236.541300px;}
.y251{bottom:237.333300px;}
.y1d3{bottom:240.561450px;}
.y193{bottom:241.459500px;}
.y20a{bottom:242.030250px;}
.ya8{bottom:242.530800px;}
.y1b3{bottom:244.890150px;}
.y87{bottom:245.541450px;}
.y298{bottom:245.637300px;}
.y174{bottom:246.335850px;}
.y65{bottom:246.375900px;}
.yfd{bottom:246.529200px;}
.y43{bottom:248.390550px;}
.y274{bottom:252.257700px;}
.yda{bottom:252.664800px;}
.y1c{bottom:253.858650px;}
.y1e8{bottom:255.329100px;}
.y240{bottom:255.638100px;}
.yc2{bottom:256.341300px;}
.y250{bottom:257.133300px;}
.y192{bottom:261.259500px;}
.y209{bottom:261.830250px;}
.y1b2{bottom:262.890150px;}
.y297{bottom:263.637300px;}
.y86{bottom:265.341450px;}
.y122{bottom:265.418400px;}
.y64{bottom:266.175300px;}
.yfc{bottom:266.823600px;}
.y42{bottom:268.190550px;}
.y1d2{bottom:269.691450px;}
.y273{bottom:270.257700px;}
.y13d{bottom:271.223400px;}
.y224{bottom:271.674150px;}
.y1b{bottom:271.858650px;}
.y1e7{bottom:275.129100px;}
.yc1{bottom:276.141300px;}
.y24f{bottom:276.933300px;}
.yeb{bottom:279.271950px;}
.y1b1{bottom:280.890150px;}
.y191{bottom:281.059500px;}
.y296{bottom:281.637300px;}
.y85{bottom:285.141450px;}
.y121{bottom:285.218400px;}
.y63{bottom:285.975300px;}
.ya7{bottom:286.998300px;}
.y1d1{bottom:287.691450px;}
.y41{bottom:287.990550px;}
.y223{bottom:288.171150px;}
.y272{bottom:288.257700px;}
.y1a{bottom:289.858650px;}
.y23f{bottom:290.321100px;}
.y173{bottom:291.647700px;}
.y1a1{bottom:293.580300px;}
.y1e6{bottom:294.929100px;}
.y13c{bottom:296.470350px;}
.y24e{bottom:296.733300px;}
.yd9{bottom:297.132300px;}
.y1b0{bottom:298.890150px;}
.y295{bottom:299.637300px;}
.yfb{bottom:300.066450px;}
.y190{bottom:300.859500px;}
.y208{bottom:301.432950px;}
.y84{bottom:304.941450px;}
.y120{bottom:305.018400px;}
.y62{bottom:305.775300px;}
.y271{bottom:306.257700px;}
.ya6{bottom:306.798300px;}
.y40{bottom:307.790550px;}
.y19{bottom:307.858650px;}
.y1a0{bottom:311.580300px;}
.y13b{bottom:314.470350px;}
.y222{bottom:314.504100px;}
.y1e5{bottom:314.729100px;}
.yc0{bottom:315.741300px;}
.y1d0{bottom:315.741450px;}
.y24d{bottom:316.533300px;}
.y172{bottom:316.890150px;}
.y294{bottom:317.637300px;}
.y207{bottom:319.432950px;}
.yfa{bottom:319.866450px;}
.y18f{bottom:320.659500px;}
.yea{bottom:323.733300px;}
.y270{bottom:324.257700px;}
.y83{bottom:324.741450px;}
.y11f{bottom:324.818400px;}
.y61{bottom:325.575300px;}
.y18{bottom:325.858650px;}
.y3f{bottom:327.590550px;}
.y19f{bottom:329.580300px;}
.y13a{bottom:332.470350px;}
.y1cf{bottom:333.741450px;}
.y1e4{bottom:334.529100px;}
.y171{bottom:334.890150px;}
.ybf{bottom:335.541300px;}
.y23e{bottom:335.630100px;}
.y293{bottom:335.637300px;}
.y24c{bottom:336.333300px;}
.y206{bottom:337.432950px;}
.yd8{bottom:341.599800px;}
.y26f{bottom:342.257700px;}
.ye9{bottom:343.533300px;}
.y220{bottom:343.634100px;}
.y17{bottom:343.858650px;}
.y11e{bottom:344.618400px;}
.y1af{bottom:344.940150px;}
.y60{bottom:345.375300px;}
.y3e{bottom:347.390550px;}
.y19e{bottom:347.580300px;}
.y139{bottom:350.470350px;}
.ya5{bottom:351.265800px;}
.y170{bottom:352.890150px;}
.y292{bottom:353.637300px;}
.y1e3{bottom:354.329100px;}
.yf9{bottom:354.549450px;}
.ybe{bottom:355.341300px;}
.y18e{bottom:355.342500px;}
.y23d{bottom:355.430100px;}
.y24b{bottom:356.133300px;}
.y82{bottom:359.424450px;}
.y26e{bottom:360.257700px;}
.yd7{bottom:361.399800px;}
.y21f{bottom:361.634100px;}
.y1ce{bottom:361.791450px;}
.y16{bottom:361.858650px;}
.y1ae{bottom:362.940150px;}
.ye8{bottom:363.333300px;}
.y19d{bottom:365.580300px;}
.y3d{bottom:367.190550px;}
.y138{bottom:368.470350px;}
.y221{bottom:370.634100px;}
.y16f{bottom:370.890150px;}
.ya4{bottom:371.065800px;}
.y291{bottom:371.637300px;}
.y1e2{bottom:374.129100px;}
.ybd{bottom:375.141300px;}
.y23c{bottom:375.230100px;}
.y205{bottom:375.232950px;}
.y24a{bottom:375.933300px;}
.y26d{bottom:378.257700px;}
.y11d{bottom:379.301400px;}
.y21e{bottom:379.634100px;}
.y1cd{bottom:379.791450px;}
.y15{bottom:379.858650px;}
.y5f{bottom:380.058300px;}
.y1ad{bottom:380.940150px;}
.ye7{bottom:383.133300px;}
.y19c{bottom:383.580300px;}
.y14e{bottom:386.952300px;}
.y3c{bottom:386.990550px;}
.y16e{bottom:388.890150px;}
.y290{bottom:389.637300px;}
.ya3{bottom:390.865800px;}
.y204{bottom:393.232950px;}
.y1e1{bottom:393.929100px;}
.ybc{bottom:394.941300px;}
.y23b{bottom:395.030100px;}
.y249{bottom:395.733300px;}
.y26c{bottom:396.257700px;}
.y137{bottom:396.520350px;}
.y21d{bottom:397.634100px;}
.y14{bottom:397.858650px;}
.y1ac{bottom:398.940150px;}
.yf8{bottom:399.858450px;}
.y18d{bottom:400.651500px;}
.y19b{bottom:401.580300px;}
.ye6{bottom:402.933300px;}
.y81{bottom:404.733450px;}
.y14d{bottom:404.952300px;}
.yd6{bottom:405.861150px;}
.y3b{bottom:406.790550px;}
.y16d{bottom:406.890150px;}
.y28f{bottom:407.637300px;}
.y1cc{bottom:407.841450px;}
.ya2{bottom:410.665800px;}
.y203{bottom:411.232950px;}
.y1e0{bottom:413.729100px;}
.y26b{bottom:414.257700px;}
.y136{bottom:414.520350px;}
.ybb{bottom:414.741300px;}
.y23a{bottom:414.830100px;}
.y248{bottom:415.533300px;}
.y1ab{bottom:416.940150px;}
.yf7{bottom:419.658450px;}
.y13{bottom:420.103650px;}
.y18c{bottom:420.451500px;}
.ye5{bottom:422.733300px;}
.y14c{bottom:422.952300px;}
.y80{bottom:424.533450px;}
.y16c{bottom:424.890150px;}
.y5e{bottom:425.367300px;}
.y28e{bottom:425.637300px;}
.y21c{bottom:425.684100px;}
.y3a{bottom:426.590550px;}
.y202{bottom:429.232950px;}
.y19a{bottom:429.630300px;}
.ya1{bottom:430.465800px;}
.y26a{bottom:432.257700px;}
.y135{bottom:432.520350px;}
.yba{bottom:434.541300px;}
.y239{bottom:434.630100px;}
.y1aa{bottom:434.940150px;}
.y247{bottom:435.333300px;}
.yf6{bottom:439.458450px;}
.y18b{bottom:440.251500px;}
.y1cb{bottom:440.395800px;}
.y14b{bottom:440.952300px;}
.ye4{bottom:442.533300px;}
.y16b{bottom:442.890150px;}
.y28d{bottom:443.637300px;}
.y21b{bottom:443.684100px;}
.y7f{bottom:444.333450px;}
.y11c{bottom:444.414750px;}
.y5d{bottom:445.167300px;}
.yd5{bottom:445.461150px;}
.y39{bottom:446.390550px;}
.y201{bottom:447.232950px;}
.y269{bottom:450.257700px;}
.ya0{bottom:450.265800px;}
.y134{bottom:450.520350px;}
.y1a9{bottom:452.940150px;}
.y1df{bottom:453.331950px;}
.yb9{bottom:454.341300px;}
.y246{bottom:455.133300px;}
.y14a{bottom:458.952300px;}
.yf5{bottom:459.258450px;}
.y18a{bottom:460.050300px;}
.y28c{bottom:461.637300px;}
.y199{bottom:462.184500px;}
.ye3{bottom:462.333300px;}
.y7e{bottom:464.133450px;}
.y1ca{bottom:464.440800px;}
.y5c{bottom:464.967300px;}
.y200{bottom:465.232950px;}
.y38{bottom:466.190550px;}
.y12{bottom:466.413000px;}
.y268{bottom:468.257700px;}
.y133{bottom:468.520350px;}
.y118{bottom:469.659300px;}
.y9f{bottom:470.065800px;}
.y16a{bottom:470.940150px;}
.y1de{bottom:471.331950px;}
.y21a{bottom:471.734100px;}
.yb8{bottom:474.141300px;}
.y238{bottom:474.232950px;}
.y245{bottom:474.933300px;}
.y11b{bottom:478.659300px;}
.yf4{bottom:479.058450px;}
.y28b{bottom:479.637300px;}
.y189{bottom:479.850300px;}
.y11{bottom:481.411500px;}
.ye2{bottom:482.133300px;}
.y1ff{bottom:483.232950px;}
.y7d{bottom:483.933450px;}
.y5b{bottom:484.767300px;}
.y37{bottom:485.990550px;}
.y198{bottom:486.229500px;}
.y267{bottom:486.257700px;}
.y149{bottom:487.002300px;}
.y116{bottom:487.659300px;}
.y169{bottom:488.940150px;}
.y1dd{bottom:489.331950px;}
.y9e{bottom:489.865800px;}
.yd4{bottom:489.916500px;}
.y237{bottom:492.232950px;}
.yb7{bottom:493.941300px;}
.y244{bottom:494.733300px;}
.y10{bottom:496.410000px;}
.y132{bottom:496.570350px;}
.y11a{bottom:496.659300px;}
.y28a{bottom:497.637300px;}
.y188{bottom:499.650300px;}
.y219{bottom:499.784100px;}
.y7c{bottom:503.733450px;}
.y1c9{bottom:504.042450px;}
.y266{bottom:504.257700px;}
.y5a{bottom:504.567300px;}
.y148{bottom:505.002300px;}
.y115{bottom:505.659300px;}
.y36{bottom:505.790550px;}
.y168{bottom:506.940150px;}
.y1dc{bottom:507.331950px;}
.y9d{bottom:509.665800px;}
.yd3{bottom:509.716500px;}
.yb6{bottom:513.741300px;}
.yf3{bottom:513.741450px;}
.y243{bottom:514.533300px;}
.y131{bottom:514.570350px;}
.y119{bottom:514.659300px;}
.y289{bottom:515.637300px;}
.yf{bottom:515.661000px;}
.y1a8{bottom:516.990150px;}
.y218{bottom:517.784100px;}
.y187{bottom:519.450300px;}
.y1fe{bottom:521.034450px;}
.ye1{bottom:521.733450px;}
.y265{bottom:522.257700px;}
.y147{bottom:523.002300px;}
.y7b{bottom:523.533450px;}
.y117{bottom:523.659300px;}
.y1c8{bottom:523.842450px;}
.y59{bottom:524.367300px;}
.y167{bottom:524.940150px;}
.y1db{bottom:525.331950px;}
.y35{bottom:525.590550px;}
.y9c{bottom:529.465800px;}
.yd2{bottom:529.516500px;}
.y236{bottom:530.032950px;}
.y130{bottom:532.570350px;}
.y288{bottom:533.637300px;}
.y197{bottom:534.333300px;}
.y1a7{bottom:534.990150px;}
.y217{bottom:535.784100px;}
.y186{bottom:539.250300px;}
.ye0{bottom:539.733450px;}
.y264{bottom:540.257700px;}
.y1fd{bottom:540.834450px;}
.y146{bottom:541.002300px;}
.y166{bottom:542.940150px;}
.y1da{bottom:543.331950px;}
.y7a{bottom:543.333450px;}
.y1c7{bottom:543.642450px;}
.y58{bottom:544.167300px;}
.y34{bottom:545.390550px;}
.y235{bottom:548.032950px;}
.yf2{bottom:548.424450px;}
.yd1{bottom:549.316500px;}
.ye{bottom:550.462350px;}
.y12f{bottom:550.570350px;}
.y287{bottom:551.637300px;}
.y111{bottom:551.709300px;}
.y1a6{bottom:552.990150px;}
.yb5{bottom:553.341300px;}
.y196{bottom:554.133300px;}
.ydf{bottom:557.733450px;}
.y263{bottom:558.257700px;}
.y145{bottom:559.002300px;}
.y185{bottom:559.050300px;}
.y1fc{bottom:560.634450px;}
.y114{bottom:560.709300px;}
.y1d9{bottom:561.331950px;}
.y79{bottom:563.133450px;}
.y1c6{bottom:563.442450px;}
.y216{bottom:563.834100px;}
.y57{bottom:563.967300px;}
.y33{bottom:565.190550px;}
.y234{bottom:566.032950px;}
.y12e{bottom:568.570350px;}
.yd0{bottom:569.116500px;}
.y286{bottom:569.637300px;}
.y10f{bottom:569.709300px;}
.yd{bottom:570.262350px;}
.y165{bottom:570.990150px;}
.yb4{bottom:573.141300px;}
.y9b{bottom:573.933300px;}
.yde{bottom:575.733450px;}
.y262{bottom:576.257700px;}
.y144{bottom:577.002300px;}
.y113{bottom:578.709300px;}
.y184{bottom:578.850300px;}
.y1d8{bottom:579.331950px;}
.y1fb{bottom:580.434450px;}
.y215{bottom:581.834100px;}
.y78{bottom:582.933450px;}
.y56{bottom:583.767300px;}
.y233{bottom:584.032950px;}
.y32{bottom:584.990550px;}
.y12d{bottom:586.570350px;}
.y285{bottom:587.637300px;}
.y10e{bottom:587.709300px;}
.y164{bottom:588.990150px;}
.yc{bottom:590.062350px;}
.yb3{bottom:592.941300px;}
.y9a{bottom:593.733300px;}
.yf1{bottom:593.733450px;}
.y261{bottom:594.257700px;}
.y112{bottom:596.709300px;}
.y1c5{bottom:598.125450px;}
.y183{bottom:598.650300px;}
.y1fa{bottom:600.234450px;}
.y77{bottom:602.733450px;}
.y55{bottom:603.567300px;}
.y31{bottom:604.790550px;}
.y143{bottom:605.052300px;}
.y284{bottom:605.637300px;}
.y110{bottom:605.709300px;}
.y163{bottom:606.990150px;}
.yb{bottom:609.862350px;}
.y214{bottom:609.884100px;}
.y260{bottom:612.257700px;}
.yb2{bottom:612.741300px;}
.y99{bottom:613.533300px;}
.yf0{bottom:613.533450px;}
.ycf{bottom:613.584000px;}
.y1d7{bottom:617.131950px;}
.y182{bottom:618.450300px;}
.y12c{bottom:619.124550px;}
.y232{bottom:621.834450px;}
.y76{bottom:622.533450px;}
.y142{bottom:623.052300px;}
.y54{bottom:623.367300px;}
.y283{bottom:623.637300px;}
.y162{bottom:624.990150px;}
.y213{bottom:627.884100px;}
.y25f{bottom:630.257700px;}
.yb1{bottom:632.541300px;}
.y98{bottom:633.333300px;}
.yef{bottom:633.333450px;}
.y10a{bottom:633.759300px;}
.y1d6{bottom:635.131950px;}
.y181{bottom:638.250300px;}
.y30{bottom:639.473550px;}
.y1f9{bottom:639.837300px;}
.y141{bottom:641.052300px;}
.y231{bottom:641.634450px;}
.y282{bottom:641.637300px;}
.y75{bottom:642.333450px;}
.y10d{bottom:642.759300px;}
.y161{bottom:642.990150px;}
.y53{bottom:643.167300px;}
.y12b{bottom:643.169550px;}
.y1c4{bottom:643.434450px;}
.y25e{bottom:648.257700px;}
.ya{bottom:649.462350px;}
.y109{bottom:651.759300px;}
.yb0{bottom:652.341300px;}
.y1a5{bottom:653.040150px;}
.y97{bottom:653.133300px;}
.yee{bottom:653.133450px;}
.yce{bottom:653.184000px;}
.y212{bottom:655.934100px;}
.y1f8{bottom:657.837300px;}
.y180{bottom:658.050300px;}
.y281{bottom:659.637300px;}
.y10b{bottom:660.759300px;}
.y160{bottom:660.990150px;}
.y230{bottom:661.434450px;}
.y74{bottom:662.133450px;}
.y52{bottom:662.967300px;}
.y1c3{bottom:663.234450px;}
.y25d{bottom:666.257700px;}
.y9{bottom:669.262350px;}
.y108{bottom:669.759300px;}
.y1a4{bottom:671.040150px;}
.yaf{bottom:672.141300px;}
.y96{bottom:672.933300px;}
.y140{bottom:673.606500px;}
.y1f7{bottom:675.837300px;}
.y280{bottom:677.637300px;}
.y17f{bottom:677.850300px;}
.y10c{bottom:678.759300px;}
.y22f{bottom:681.234450px;}
.y73{bottom:681.933450px;}
.y51{bottom:682.767300px;}
.y12a{bottom:682.769550px;}
.y1c2{bottom:683.034450px;}
.y25c{bottom:684.257700px;}
.y2f{bottom:684.792300px;}
.y107{bottom:687.759300px;}
.y211{bottom:688.488300px;}
.y15f{bottom:689.040150px;}
.y8{bottom:689.062350px;}
.yae{bottom:691.941300px;}
.y95{bottom:692.733300px;}
.ycd{bottom:692.784000px;}
.y1f6{bottom:693.837300px;}
.y27f{bottom:695.637300px;}
.y17e{bottom:697.650300px;}
.y13f{bottom:697.651500px;}
.y22e{bottom:701.034450px;}
.y72{bottom:701.733450px;}
.y25b{bottom:702.257700px;}
.y50{bottom:702.567300px;}
.y129{bottom:702.569550px;}
.y2e{bottom:702.792300px;}
.y1c1{bottom:702.834450px;}
.y15e{bottom:707.040150px;}
.y1f5{bottom:711.837300px;}
.y94{bottom:712.533300px;}
.y27e{bottom:713.637300px;}
.y104{bottom:715.809300px;}
.y106{bottom:716.469300px;}
.y7{bottom:717.357300px;}
.y17d{bottom:717.450300px;}
.y25a{bottom:720.257700px;}
.y22d{bottom:720.834450px;}
.y4f{bottom:722.367300px;}
.y128{bottom:722.369550px;}
.y1c0{bottom:722.634450px;}
.y15d{bottom:725.040150px;}
.y103{bottom:725.471700px;}
.yad{bottom:726.624300px;}
.y2d{bottom:727.392300px;}
.y1f4{bottom:729.837300px;}
.y27d{bottom:731.637300px;}
.y93{bottom:732.333300px;}
.y105{bottom:734.469300px;}
.y17c{bottom:737.250300px;}
.ycc{bottom:737.251500px;}
.y259{bottom:738.257700px;}
.y22c{bottom:740.634450px;}
.y71{bottom:741.333300px;}
.y6{bottom:741.661800px;}
.y4e{bottom:742.167300px;}
.y127{bottom:742.169550px;}
.y1bf{bottom:742.434450px;}
.y15c{bottom:743.040150px;}
.y2c{bottom:745.392300px;}
.y27c{bottom:749.637300px;}
.y92{bottom:752.133300px;}
.y17b{bottom:757.050300px;}
.ycb{bottom:757.051500px;}
.y70{bottom:759.333300px;}
.y22b{bottom:760.434450px;}
.y15b{bottom:761.040150px;}
.y4d{bottom:761.967300px;}
.y1be{bottom:762.234450px;}
.y2b{bottom:763.392300px;}
.y5{bottom:765.966300px;}
.y1f3{bottom:767.637300px;}
.y102{bottom:767.688450px;}
.y258{bottom:771.141300px;}
.y91{bottom:771.933300px;}
.y17a{bottom:776.850300px;}
.yca{bottom:776.851500px;}
.y6f{bottom:777.333300px;}
.y15a{bottom:779.040150px;}
.y22a{bottom:780.234450px;}
.y2a{bottom:781.392300px;}
.y4c{bottom:781.767300px;}
.y1f2{bottom:785.637300px;}
.y90{bottom:791.733300px;}
.y101{bottom:791.733450px;}
.y6e{bottom:795.333300px;}
.y179{bottom:796.650300px;}
.yc9{bottom:796.651500px;}
.y159{bottom:797.040150px;}
.y29{bottom:799.392300px;}
.y4b{bottom:801.567300px;}
.y1bd{bottom:801.837300px;}
.y1f1{bottom:803.637300px;}
.y8f{bottom:811.533300px;}
.y6d{bottom:813.333300px;}
.y158{bottom:815.040150px;}
.yc8{bottom:816.450300px;}
.y28{bottom:817.392300px;}
.y1bc{bottom:819.837300px;}
.y4a{bottom:821.367300px;}
.y1f0{bottom:821.637300px;}
.y8e{bottom:831.333300px;}
.y1a3{bottom:833.040150px;}
.y27{bottom:835.392300px;}
.yc7{bottom:836.250300px;}
.y229{bottom:837.837300px;}
.y1ef{bottom:839.637300px;}
.y49{bottom:841.167300px;}
.y157{bottom:843.090150px;}
.y1a2{bottom:851.040150px;}
.y8d{bottom:851.133300px;}
.y6c{bottom:851.133450px;}
.y26{bottom:853.392300px;}
.y228{bottom:855.837300px;}
.yc6{bottom:856.050300px;}
.y1bb{bottom:857.637300px;}
.y156{bottom:861.090150px;}
.y8c{bottom:870.933300px;}
.y6b{bottom:870.933450px;}
.y25{bottom:871.392300px;}
.y1ba{bottom:875.637300px;}
.y48{bottom:875.850300px;}
.y155{bottom:879.090150px;}
.y24{bottom:889.392300px;}
.y6a{bottom:890.733300px;}
.y1b9{bottom:893.637300px;}
.y47{bottom:910.533300px;}
.y23{bottom:911.637300px;}
.y22{bottom:944.548950px;}
.y46{bottom:945.652950px;}
.hb{height:31.498790px;}
.h3{height:32.064000px;}
.h4{height:33.768000px;}
.h15{height:36.072000px;}
.h2{height:38.592000px;}
.h8{height:40.080000px;}
.h16{height:40.140000px;}
.h9{height:43.416000px;}
.h13{height:44.154000px;}
.h6{height:48.240000px;}
.h10{height:48.660000px;}
.h7{height:53.064000px;}
.hc{height:53.064600px;}
.ha{height:53.066400px;}
.hd{height:53.068800px;}
.h14{height:53.073000px;}
.hf{height:53.088600px;}
.he{height:53.112600px;}
.h5{height:53.526000px;}
.h11{height:81.227390px;}
.h17{height:84.660000px;}
.h12{height:120.240000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:97.795200px;}
.x1c{left:103.983750px;}
.x1{left:106.299150px;}
.x26{left:109.143750px;}
.x2f{left:110.798700px;}
.xe{left:114.803100px;}
.x6{left:118.906950px;}
.x1d{left:120.543750px;}
.x31{left:122.196750px;}
.x12{left:123.310650px;}
.x17{left:129.734550px;}
.x7{left:131.394600px;}
.x5{left:137.964450px;}
.x16{left:141.803100px;}
.x15{left:150.307800px;}
.x8{left:151.764600px;}
.x13{left:153.068700px;}
.x41{left:161.574750px;}
.x4{left:165.535950px;}
.x11{left:170.432550px;}
.x42{left:174.380100px;}
.x43{left:176.598150px;}
.x34{left:181.116750px;}
.x9{left:182.544600px;}
.x39{left:189.620550px;}
.x3e{left:194.031000px;}
.x3c{left:202.534950px;}
.x30{left:221.018700px;}
.x1e{left:234.033750px;}
.x44{left:307.038150px;}
.x18{left:308.568750px;}
.x27{left:311.658750px;}
.x2c{left:312.663750px;}
.x40{left:314.723850px;}
.x3b{left:324.750150px;}
.x3f{left:365.901000px;}
.x3d{left:374.404950px;}
.x20{left:378.348750px;}
.x1f{left:380.208750px;}
.x19{left:381.543750px;}
.x28{left:384.588750px;}
.x2d{left:386.778750px;}
.x1a{left:392.598750px;}
.x2{left:444.087150px;}
.xc{left:453.726450px;}
.x2a{left:463.158750px;}
.x29{left:464.748750px;}
.x2b{left:465.903750px;}
.x21{left:469.413750px;}
.x22{left:473.928750px;}
.x23{left:475.368750px;}
.xa{left:478.703400px;}
.xb{left:489.621450px;}
.xd{left:497.616750px;}
.x32{left:502.281750px;}
.x35{left:503.421750px;}
.x3{left:510.696450px;}
.x3a{left:511.925550px;}
.x37{left:519.650550px;}
.x2e{left:522.978750px;}
.x25{left:525.198750px;}
.x1b{left:528.708750px;}
.x24{left:532.713750px;}
.x33{left:536.481750px;}
.x38{left:544.985550px;}
.x45{left:602.929650px;}
.x36{left:605.008800px;}
.x10{left:606.279000px;}
.x14{left:607.830150px;}
@media print{
.v3{vertical-align:-14.557867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.925333pt;}
.v2{vertical-align:14.560000pt;}
.v7{vertical-align:17.755200pt;}
.v4{vertical-align:29.653333pt;}
.v5{vertical-align:32.000000pt;}
.v6{vertical-align:64.000000pt;}
.ls17{letter-spacing:-2.933333pt;}
.ls23{letter-spacing:-2.874667pt;}
.ls4{letter-spacing:-2.053333pt;}
.ls11{letter-spacing:-1.642667pt;}
.ls2a{letter-spacing:-1.600000pt;}
.ls19{letter-spacing:-1.584000pt;}
.ls3{letter-spacing:-1.466667pt;}
.ls20{letter-spacing:-1.408000pt;}
.ls27{letter-spacing:-1.333333pt;}
.ls2{letter-spacing:-1.173333pt;}
.ls13{letter-spacing:-0.997333pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.880000pt;}
.ls2b{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.762667pt;}
.ls1d{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.522368pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.417894pt;}
.lse{letter-spacing:-0.352000pt;}
.ls15{letter-spacing:-0.348245pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.310933pt;}
.ls22{letter-spacing:-0.293333pt;}
.ls26{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.243772pt;}
.ls14{letter-spacing:-0.208947pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.050133pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:1.056000pt;}
.ls21{letter-spacing:1.437333pt;}
.ls12{letter-spacing:2.464000pt;}
.ls0{letter-spacing:6.186667pt;}
.ls29{letter-spacing:16.394667pt;}
.ls28{letter-spacing:21.546667pt;}
.ls9{letter-spacing:37.312000pt;}
.ws60{word-spacing:-11.733333pt;}
.ws1f{word-spacing:-11.616000pt;}
.ws87{word-spacing:-11.253333pt;}
.wsd{word-spacing:-11.029333pt;}
.wse{word-spacing:-10.677333pt;}
.ws3{word-spacing:-10.560000pt;}
.ws24{word-spacing:-10.442667pt;}
.ws7e{word-spacing:-10.384000pt;}
.ws2c{word-spacing:-10.325333pt;}
.ws2b{word-spacing:-10.149333pt;}
.ws49{word-spacing:-9.797333pt;}
.ws5f{word-spacing:-9.760000pt;}
.ws2{word-spacing:-9.706667pt;}
.ws12{word-spacing:-9.562667pt;}
.ws5{word-spacing:-9.504000pt;}
.ws97{word-spacing:-9.440000pt;}
.ws4f{word-spacing:-9.173333pt;}
.wsa6{word-spacing:-8.906667pt;}
.ws4{word-spacing:-8.736000pt;}
.ws0{word-spacing:-8.448000pt;}
.ws98{word-spacing:-8.373333pt;}
.ws15{word-spacing:-8.256000pt;}
.ws18{word-spacing:-8.160000pt;}
.ws9f{word-spacing:-8.106667pt;}
.ws16{word-spacing:-7.776000pt;}
.ws9a{word-spacing:-7.253333pt;}
.ws13{word-spacing:-6.895258pt;}
.ws31{word-spacing:-6.686310pt;}
.ws25{word-spacing:-6.651486pt;}
.ws42{word-spacing:-6.547012pt;}
.ws17{word-spacing:-6.477363pt;}
.ws4a{word-spacing:-6.372890pt;}
.ws8{word-spacing:-6.048000pt;}
.ws74{word-spacing:-5.845547pt;}
.ws89{word-spacing:-4.960000pt;}
.ws94{word-spacing:-4.160000pt;}
.ws8c{word-spacing:-2.453333pt;}
.ws9b{word-spacing:-2.293333pt;}
.ws69{word-spacing:-1.866667pt;}
.ws29{word-spacing:-1.824000pt;}
.ws76{word-spacing:-1.653333pt;}
.ws47{word-spacing:-1.642667pt;}
.ws34{word-spacing:-1.408000pt;}
.ws79{word-spacing:-1.290667pt;}
.ws6b{word-spacing:-1.280000pt;}
.ws65{word-spacing:-1.226667pt;}
.ws5c{word-spacing:-1.173333pt;}
.ws84{word-spacing:-1.114667pt;}
.ws22{word-spacing:-1.056000pt;}
.ws67{word-spacing:-1.013333pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws82{word-spacing:-0.880000pt;}
.ws6c{word-spacing:-0.853333pt;}
.ws73{word-spacing:-0.762667pt;}
.ws54{word-spacing:-0.645333pt;}
.ws32{word-spacing:-0.586667pt;}
.ws9c{word-spacing:-0.533333pt;}
.ws58{word-spacing:-0.480000pt;}
.ws48{word-spacing:-0.352000pt;}
.ws20{word-spacing:-0.293333pt;}
.ws83{word-spacing:-0.234667pt;}
.ws11{word-spacing:-0.117333pt;}
.ws1{word-spacing:-0.058667pt;}
.ws68{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.058667pt;}
.ws7c{word-spacing:0.106667pt;}
.ws1b{word-spacing:0.234667pt;}
.ws6a{word-spacing:0.266667pt;}
.ws77{word-spacing:0.293333pt;}
.ws53{word-spacing:0.320000pt;}
.ws28{word-spacing:0.336000pt;}
.ws2d{word-spacing:0.352000pt;}
.ws64{word-spacing:0.373333pt;}
.ws7f{word-spacing:0.469333pt;}
.ws2e{word-spacing:0.528000pt;}
.ws1e{word-spacing:0.576000pt;}
.ws52{word-spacing:0.586667pt;}
.ws66{word-spacing:0.640000pt;}
.ws5b{word-spacing:0.746667pt;}
.ws26{word-spacing:0.762667pt;}
.ws7d{word-spacing:0.816000pt;}
.ws27{word-spacing:0.864000pt;}
.ws4b{word-spacing:0.880000pt;}
.ws7b{word-spacing:0.906667pt;}
.ws8b{word-spacing:0.960000pt;}
.ws33{word-spacing:0.997333pt;}
.ws55{word-spacing:1.114667pt;}
.ws7{word-spacing:1.173333pt;}
.wsa1{word-spacing:1.226667pt;}
.ws5d{word-spacing:1.408000pt;}
.ws41{word-spacing:1.525333pt;}
.ws6d{word-spacing:1.546667pt;}
.ws56{word-spacing:1.584000pt;}
.ws7a{word-spacing:1.600000pt;}
.ws30{word-spacing:1.642667pt;}
.ws62{word-spacing:1.866667pt;}
.ws45{word-spacing:2.016000pt;}
.ws59{word-spacing:2.026667pt;}
.ws37{word-spacing:2.064000pt;}
.ws93{word-spacing:2.186667pt;}
.ws1c{word-spacing:2.229333pt;}
.ws23{word-spacing:2.288000pt;}
.ws36{word-spacing:2.304000pt;}
.ws63{word-spacing:2.346667pt;}
.ws5a{word-spacing:2.400000pt;}
.ws1a{word-spacing:2.405333pt;}
.ws80{word-spacing:2.464000pt;}
.ws75{word-spacing:2.506667pt;}
.ws6f{word-spacing:2.613333pt;}
.ws6e{word-spacing:2.773333pt;}
.wsa0{word-spacing:2.826667pt;}
.ws85{word-spacing:2.874667pt;}
.ws95{word-spacing:2.880000pt;}
.ws4c{word-spacing:2.933333pt;}
.ws19{word-spacing:3.285333pt;}
.wsa2{word-spacing:3.306667pt;}
.ws78{word-spacing:3.344000pt;}
.ws9{word-spacing:3.413333pt;}
.ws88{word-spacing:3.680000pt;}
.wsa{word-spacing:3.786667pt;}
.ws35{word-spacing:3.792000pt;}
.ws81{word-spacing:3.813333pt;}
.ws90{word-spacing:4.960000pt;}
.ws91{word-spacing:5.386667pt;}
.ws10{word-spacing:5.813333pt;}
.wsa3{word-spacing:5.866667pt;}
.ws61{word-spacing:5.920000pt;}
.ws5e{word-spacing:6.080000pt;}
.ws8d{word-spacing:6.240000pt;}
.ws9e{word-spacing:6.613333pt;}
.ws4d{word-spacing:7.978667pt;}
.wsf{word-spacing:10.453333pt;}
.ws8e{word-spacing:14.826667pt;}
.ws9d{word-spacing:17.280000pt;}
.ws92{word-spacing:19.093333pt;}
.ws8f{word-spacing:19.626667pt;}
.ws8a{word-spacing:20.266667pt;}
.ws99{word-spacing:24.693333pt;}
.ws39{word-spacing:34.346667pt;}
.ws3b{word-spacing:71.893333pt;}
.ws3f{word-spacing:89.712000pt;}
.ws3d{word-spacing:95.365333pt;}
.ws50{word-spacing:111.040000pt;}
.ws3a{word-spacing:115.200000pt;}
.ws71{word-spacing:115.466667pt;}
.ws3c{word-spacing:173.493333pt;}
.ws3e{word-spacing:178.933333pt;}
.ws40{word-spacing:182.613333pt;}
.ws72{word-spacing:359.098667pt;}
.wsa5{word-spacing:449.924267pt;}
.wsc{word-spacing:451.673600pt;}
.ws51{word-spacing:544.960000pt;}
.ws44{word-spacing:600.373333pt;}
.ws86{word-spacing:620.565867pt;}
.wsa4{word-spacing:624.496533pt;}
.ws96{word-spacing:625.963200pt;}
.ws14{word-spacing:630.891200pt;}
.ws38{word-spacing:632.123200pt;}
.ws46{word-spacing:632.240533pt;}
.ws43{word-spacing:633.061867pt;}
.ws70{word-spacing:633.472533pt;}
.ws57{word-spacing:634.411200pt;}
.ws2a{word-spacing:634.821867pt;}
.ws4e{word-spacing:635.877867pt;}
.ws21{word-spacing:638.048533pt;}
.wsb{word-spacing:639.925867pt;}
._14{margin-left:-70.282667pt;}
._50{margin-left:-8.354667pt;}
._6{margin-left:-7.089600pt;}
._7{margin-left:-5.913600pt;}
._4{margin-left:-4.896000pt;}
._3{margin-left:-3.601067pt;}
._0{margin-left:-2.350933pt;}
._1{margin-left:-1.079467pt;}
._2{width:1.000000pt;}
._d{width:2.112000pt;}
._c{width:3.157333pt;}
._b{width:4.229333pt;}
._8{width:5.200000pt;}
._9{width:6.314667pt;}
._f{width:7.509333pt;}
._a{width:8.912000pt;}
._11{width:10.283200pt;}
._10{width:11.765333pt;}
._1e{width:13.546133pt;}
._1d{width:14.436267pt;}
._5{width:15.801600pt;}
._e{width:17.248000pt;}
._51{width:18.371200pt;}
._4c{width:20.645333pt;}
._4d{width:21.965867pt;}
._4b{width:24.898133pt;}
._49{width:26.043733pt;}
._4a{width:27.118933pt;}
._48{width:28.930133pt;}
._16{width:31.034667pt;}
._1c{width:32.234667pt;}
._19{width:39.482667pt;}
._17{width:41.888000pt;}
._4f{width:43.836800pt;}
._13{width:47.285333pt;}
._4e{width:48.368000pt;}
._15{width:50.042667pt;}
._12{width:55.440000pt;}
._23{width:57.200000pt;}
._2a{width:67.360000pt;}
._29{width:74.080000pt;}
._47{width:77.760000pt;}
._2b{width:82.666667pt;}
._2c{width:84.119467pt;}
._34{width:88.853333pt;}
._3f{width:90.297600pt;}
._33{width:96.386133pt;}
._32{width:99.040000pt;}
._46{width:100.919467pt;}
._2e{width:103.040000pt;}
._44{width:108.000000pt;}
._3a{width:109.866667pt;}
._2f{width:113.066667pt;}
._30{width:114.080000pt;}
._22{width:116.000000pt;}
._3e{width:119.680000pt;}
._26{width:123.494400pt;}
._39{width:127.172267pt;}
._42{width:129.379200pt;}
._43{width:132.586667pt;}
._21{width:133.600000pt;}
._20{width:134.933333pt;}
._41{width:136.640000pt;}
._36{width:138.641067pt;}
._1f{width:141.600000pt;}
._3d{width:145.813333pt;}
._3c{width:150.638933pt;}
._37{width:165.851733pt;}
._27{width:176.945067pt;}
._40{width:204.644267pt;}
._28{width:270.892800pt;}
._1a{width:278.388267pt;}
._31{width:294.054400pt;}
._45{width:295.601067pt;}
._25{width:312.106667pt;}
._35{width:357.013333pt;}
._1b{width:390.089600pt;}
._18{width:392.002133pt;}
._3b{width:413.173333pt;}
._24{width:488.800000pt;}
._38{width:499.626667pt;}
._2d{width:507.413333pt;}
.fs6{font-size:31.093333pt;}
.fs5{font-size:34.824533pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.133867pt;}
.y4{bottom:51.023600pt;}
.y1{bottom:61.133867pt;}
.y3{bottom:63.960533pt;}
.y69{bottom:103.937067pt;}
.y126{bottom:103.937200pt;}
.y257{bottom:105.362933pt;}
.y29f{bottom:106.344267pt;}
.y1ee{bottom:106.957867pt;}
.y1b8{bottom:107.241067pt;}
.ydd{bottom:107.576533pt;}
.y210{bottom:109.538000pt;}
.y27b{bottom:112.229067pt;}
.y68{bottom:118.337067pt;}
.y125{bottom:118.337200pt;}
.yac{bottom:121.976533pt;}
.y13e{bottom:121.976667pt;}
.y29e{bottom:122.344267pt;}
.y1ed{bottom:122.957867pt;}
.y256{bottom:122.962933pt;}
.y1b7{bottom:124.841067pt;}
.y20f{bottom:127.138000pt;}
.y27a{bottom:128.229067pt;}
.y8b{bottom:132.737067pt;}
.y154{bottom:132.737200pt;}
.y178{bottom:135.335867pt;}
.y67{bottom:136.376533pt;}
.y124{bottom:136.376667pt;}
.y29d{bottom:138.344267pt;}
.y21{bottom:139.785467pt;}
.y255{bottom:140.562933pt;}
.y1b6{bottom:142.441067pt;}
.y279{bottom:144.229067pt;}
.y20e{bottom:144.738000pt;}
.ydc{bottom:147.137067pt;}
.y153{bottom:147.137200pt;}
.y123{bottom:147.137333pt;}
.y8a{bottom:150.776533pt;}
.y177{bottom:152.935867pt;}
.y29c{bottom:154.344267pt;}
.y20{bottom:155.785467pt;}
.y1ec{bottom:156.559200pt;}
.y254{bottom:158.162933pt;}
.y1b5{bottom:160.041067pt;}
.y278{bottom:160.229067pt;}
.y195{bottom:161.537067pt;}
.y20d{bottom:162.338000pt;}
.yab{bottom:162.782933pt;}
.y89{bottom:165.176533pt;}
.y152{bottom:165.176667pt;}
.y29b{bottom:170.344267pt;}
.y176{bottom:170.535867pt;}
.y227{bottom:171.084267pt;}
.y1eb{bottom:174.159200pt;}
.yc5{bottom:175.058933pt;}
.y1d5{bottom:175.755333pt;}
.y253{bottom:175.762933pt;}
.y100{bottom:175.937067pt;}
.y151{bottom:175.937333pt;}
.y277{bottom:176.229067pt;}
.y1f{bottom:177.652133pt;}
.y194{bottom:179.576533pt;}
.y20c{bottom:179.938000pt;}
.yaa{bottom:180.382933pt;}
.y45{bottom:185.591600pt;}
.y29a{bottom:186.344267pt;}
.y175{bottom:188.135867pt;}
.y226{bottom:188.684267pt;}
.yff{bottom:190.337067pt;}
.y150{bottom:190.337333pt;}
.y1d4{bottom:190.419333pt;}
.yed{bottom:191.120400pt;}
.y1ea{bottom:191.759200pt;}
.y242{bottom:192.033867pt;}
.y276{bottom:192.229067pt;}
.yc4{bottom:192.658933pt;}
.y252{bottom:193.362933pt;}
.y1e{bottom:193.652133pt;}
.y1b4{bottom:195.242400pt;}
.y20b{bottom:197.538000pt;}
.ya9{bottom:197.982933pt;}
.y88{bottom:200.659067pt;}
.y66{bottom:201.400800pt;}
.y299{bottom:202.344267pt;}
.y44{bottom:203.191600pt;}
.yfe{bottom:204.737067pt;}
.y225{bottom:206.284267pt;}
.ydb{bottom:206.990933pt;}
.y275{bottom:208.229067pt;}
.y14f{bottom:208.376800pt;}
.yec{bottom:208.720400pt;}
.y1e9{bottom:209.359200pt;}
.y241{bottom:209.633867pt;}
.y1d{bottom:209.652133pt;}
.yc3{bottom:210.258933pt;}
.y251{bottom:210.962933pt;}
.y1d3{bottom:213.832400pt;}
.y193{bottom:214.630667pt;}
.y20a{bottom:215.138000pt;}
.ya8{bottom:215.582933pt;}
.y1b3{bottom:217.680133pt;}
.y87{bottom:218.259067pt;}
.y298{bottom:218.344267pt;}
.y174{bottom:218.965200pt;}
.y65{bottom:219.000800pt;}
.yfd{bottom:219.137067pt;}
.y43{bottom:220.791600pt;}
.y274{bottom:224.229067pt;}
.yda{bottom:224.590933pt;}
.y1c{bottom:225.652133pt;}
.y1e8{bottom:226.959200pt;}
.y240{bottom:227.233867pt;}
.yc2{bottom:227.858933pt;}
.y250{bottom:228.562933pt;}
.y192{bottom:232.230667pt;}
.y209{bottom:232.738000pt;}
.y1b2{bottom:233.680133pt;}
.y297{bottom:234.344267pt;}
.y86{bottom:235.859067pt;}
.y122{bottom:235.927467pt;}
.y64{bottom:236.600267pt;}
.yfc{bottom:237.176533pt;}
.y42{bottom:238.391600pt;}
.y1d2{bottom:239.725733pt;}
.y273{bottom:240.229067pt;}
.y13d{bottom:241.087467pt;}
.y224{bottom:241.488133pt;}
.y1b{bottom:241.652133pt;}
.y1e7{bottom:244.559200pt;}
.yc1{bottom:245.458933pt;}
.y24f{bottom:246.162933pt;}
.yeb{bottom:248.241733pt;}
.y1b1{bottom:249.680133pt;}
.y191{bottom:249.830667pt;}
.y296{bottom:250.344267pt;}
.y85{bottom:253.459067pt;}
.y121{bottom:253.527467pt;}
.y63{bottom:254.200267pt;}
.ya7{bottom:255.109600pt;}
.y1d1{bottom:255.725733pt;}
.y41{bottom:255.991600pt;}
.y223{bottom:256.152133pt;}
.y272{bottom:256.229067pt;}
.y1a{bottom:257.652133pt;}
.y23f{bottom:258.063200pt;}
.y173{bottom:259.242400pt;}
.y1a1{bottom:260.960267pt;}
.y1e6{bottom:262.159200pt;}
.y13c{bottom:263.529200pt;}
.y24e{bottom:263.762933pt;}
.yd9{bottom:264.117600pt;}
.y1b0{bottom:265.680133pt;}
.y295{bottom:266.344267pt;}
.yfb{bottom:266.725733pt;}
.y190{bottom:267.430667pt;}
.y208{bottom:267.940400pt;}
.y84{bottom:271.059067pt;}
.y120{bottom:271.127467pt;}
.y62{bottom:271.800267pt;}
.y271{bottom:272.229067pt;}
.ya6{bottom:272.709600pt;}
.y40{bottom:273.591600pt;}
.y19{bottom:273.652133pt;}
.y1a0{bottom:276.960267pt;}
.y13b{bottom:279.529200pt;}
.y222{bottom:279.559200pt;}
.y1e5{bottom:279.759200pt;}
.yc0{bottom:280.658933pt;}
.y1d0{bottom:280.659067pt;}
.y24d{bottom:281.362933pt;}
.y172{bottom:281.680133pt;}
.y294{bottom:282.344267pt;}
.y207{bottom:283.940400pt;}
.yfa{bottom:284.325733pt;}
.y18f{bottom:285.030667pt;}
.yea{bottom:287.762933pt;}
.y270{bottom:288.229067pt;}
.y83{bottom:288.659067pt;}
.y11f{bottom:288.727467pt;}
.y61{bottom:289.400267pt;}
.y18{bottom:289.652133pt;}
.y3f{bottom:291.191600pt;}
.y19f{bottom:292.960267pt;}
.y13a{bottom:295.529200pt;}
.y1cf{bottom:296.659067pt;}
.y1e4{bottom:297.359200pt;}
.y171{bottom:297.680133pt;}
.ybf{bottom:298.258933pt;}
.y23e{bottom:298.337867pt;}
.y293{bottom:298.344267pt;}
.y24c{bottom:298.962933pt;}
.y206{bottom:299.940400pt;}
.yd8{bottom:303.644267pt;}
.y26f{bottom:304.229067pt;}
.ye9{bottom:305.362933pt;}
.y220{bottom:305.452533pt;}
.y17{bottom:305.652133pt;}
.y11e{bottom:306.327467pt;}
.y1af{bottom:306.613467pt;}
.y60{bottom:307.000267pt;}
.y3e{bottom:308.791600pt;}
.y19e{bottom:308.960267pt;}
.y139{bottom:311.529200pt;}
.ya5{bottom:312.236267pt;}
.y170{bottom:313.680133pt;}
.y292{bottom:314.344267pt;}
.y1e3{bottom:314.959200pt;}
.yf9{bottom:315.155067pt;}
.ybe{bottom:315.858933pt;}
.y18e{bottom:315.860000pt;}
.y23d{bottom:315.937867pt;}
.y24b{bottom:316.562933pt;}
.y82{bottom:319.488400pt;}
.y26e{bottom:320.229067pt;}
.yd7{bottom:321.244267pt;}
.y21f{bottom:321.452533pt;}
.y1ce{bottom:321.592400pt;}
.y16{bottom:321.652133pt;}
.y1ae{bottom:322.613467pt;}
.ye8{bottom:322.962933pt;}
.y19d{bottom:324.960267pt;}
.y3d{bottom:326.391600pt;}
.y138{bottom:327.529200pt;}
.y221{bottom:329.452533pt;}
.y16f{bottom:329.680133pt;}
.ya4{bottom:329.836267pt;}
.y291{bottom:330.344267pt;}
.y1e2{bottom:332.559200pt;}
.ybd{bottom:333.458933pt;}
.y23c{bottom:333.537867pt;}
.y205{bottom:333.540400pt;}
.y24a{bottom:334.162933pt;}
.y26d{bottom:336.229067pt;}
.y11d{bottom:337.156800pt;}
.y21e{bottom:337.452533pt;}
.y1cd{bottom:337.592400pt;}
.y15{bottom:337.652133pt;}
.y5f{bottom:337.829600pt;}
.y1ad{bottom:338.613467pt;}
.ye7{bottom:340.562933pt;}
.y19c{bottom:340.960267pt;}
.y14e{bottom:343.957600pt;}
.y3c{bottom:343.991600pt;}
.y16e{bottom:345.680133pt;}
.y290{bottom:346.344267pt;}
.ya3{bottom:347.436267pt;}
.y204{bottom:349.540400pt;}
.y1e1{bottom:350.159200pt;}
.ybc{bottom:351.058933pt;}
.y23b{bottom:351.137867pt;}
.y249{bottom:351.762933pt;}
.y26c{bottom:352.229067pt;}
.y137{bottom:352.462533pt;}
.y21d{bottom:353.452533pt;}
.y14{bottom:353.652133pt;}
.y1ac{bottom:354.613467pt;}
.yf8{bottom:355.429733pt;}
.y18d{bottom:356.134667pt;}
.y19b{bottom:356.960267pt;}
.ye6{bottom:358.162933pt;}
.y81{bottom:359.763067pt;}
.y14d{bottom:359.957600pt;}
.yd6{bottom:360.765467pt;}
.y3b{bottom:361.591600pt;}
.y16d{bottom:361.680133pt;}
.y28f{bottom:362.344267pt;}
.y1cc{bottom:362.525733pt;}
.ya2{bottom:365.036267pt;}
.y203{bottom:365.540400pt;}
.y1e0{bottom:367.759200pt;}
.y26b{bottom:368.229067pt;}
.y136{bottom:368.462533pt;}
.ybb{bottom:368.658933pt;}
.y23a{bottom:368.737867pt;}
.y248{bottom:369.362933pt;}
.y1ab{bottom:370.613467pt;}
.yf7{bottom:373.029733pt;}
.y13{bottom:373.425467pt;}
.y18c{bottom:373.734667pt;}
.ye5{bottom:375.762933pt;}
.y14c{bottom:375.957600pt;}
.y80{bottom:377.363067pt;}
.y16c{bottom:377.680133pt;}
.y5e{bottom:378.104267pt;}
.y28e{bottom:378.344267pt;}
.y21c{bottom:378.385867pt;}
.y3a{bottom:379.191600pt;}
.y202{bottom:381.540400pt;}
.y19a{bottom:381.893600pt;}
.ya1{bottom:382.636267pt;}
.y26a{bottom:384.229067pt;}
.y135{bottom:384.462533pt;}
.yba{bottom:386.258933pt;}
.y239{bottom:386.337867pt;}
.y1aa{bottom:386.613467pt;}
.y247{bottom:386.962933pt;}
.yf6{bottom:390.629733pt;}
.y18b{bottom:391.334667pt;}
.y1cb{bottom:391.462933pt;}
.y14b{bottom:391.957600pt;}
.ye4{bottom:393.362933pt;}
.y16b{bottom:393.680133pt;}
.y28d{bottom:394.344267pt;}
.y21b{bottom:394.385867pt;}
.y7f{bottom:394.963067pt;}
.y11c{bottom:395.035333pt;}
.y5d{bottom:395.704267pt;}
.yd5{bottom:395.965467pt;}
.y39{bottom:396.791600pt;}
.y201{bottom:397.540400pt;}
.y269{bottom:400.229067pt;}
.ya0{bottom:400.236267pt;}
.y134{bottom:400.462533pt;}
.y1a9{bottom:402.613467pt;}
.y1df{bottom:402.961733pt;}
.yb9{bottom:403.858933pt;}
.y246{bottom:404.562933pt;}
.y14a{bottom:407.957600pt;}
.yf5{bottom:408.229733pt;}
.y18a{bottom:408.933600pt;}
.y28c{bottom:410.344267pt;}
.y199{bottom:410.830667pt;}
.ye3{bottom:410.962933pt;}
.y7e{bottom:412.563067pt;}
.y1ca{bottom:412.836267pt;}
.y5c{bottom:413.304267pt;}
.y200{bottom:413.540400pt;}
.y38{bottom:414.391600pt;}
.y12{bottom:414.589333pt;}
.y268{bottom:416.229067pt;}
.y133{bottom:416.462533pt;}
.y118{bottom:417.474933pt;}
.y9f{bottom:417.836267pt;}
.y16a{bottom:418.613467pt;}
.y1de{bottom:418.961733pt;}
.y21a{bottom:419.319200pt;}
.yb8{bottom:421.458933pt;}
.y238{bottom:421.540400pt;}
.y245{bottom:422.162933pt;}
.y11b{bottom:425.474933pt;}
.yf4{bottom:425.829733pt;}
.y28b{bottom:426.344267pt;}
.y189{bottom:426.533600pt;}
.y11{bottom:427.921333pt;}
.ye2{bottom:428.562933pt;}
.y1ff{bottom:429.540400pt;}
.y7d{bottom:430.163067pt;}
.y5b{bottom:430.904267pt;}
.y37{bottom:431.991600pt;}
.y198{bottom:432.204000pt;}
.y267{bottom:432.229067pt;}
.y149{bottom:432.890933pt;}
.y116{bottom:433.474933pt;}
.y169{bottom:434.613467pt;}
.y1dd{bottom:434.961733pt;}
.y9e{bottom:435.436267pt;}
.yd4{bottom:435.481333pt;}
.y237{bottom:437.540400pt;}
.yb7{bottom:439.058933pt;}
.y244{bottom:439.762933pt;}
.y10{bottom:441.253333pt;}
.y132{bottom:441.395867pt;}
.y11a{bottom:441.474933pt;}
.y28a{bottom:442.344267pt;}
.y188{bottom:444.133600pt;}
.y219{bottom:444.252533pt;}
.y7c{bottom:447.763067pt;}
.y1c9{bottom:448.037733pt;}
.y266{bottom:448.229067pt;}
.y5a{bottom:448.504267pt;}
.y148{bottom:448.890933pt;}
.y115{bottom:449.474933pt;}
.y36{bottom:449.591600pt;}
.y168{bottom:450.613467pt;}
.y1dc{bottom:450.961733pt;}
.y9d{bottom:453.036267pt;}
.yd3{bottom:453.081333pt;}
.yb6{bottom:456.658933pt;}
.yf3{bottom:456.659067pt;}
.y243{bottom:457.362933pt;}
.y131{bottom:457.395867pt;}
.y119{bottom:457.474933pt;}
.y289{bottom:458.344267pt;}
.yf{bottom:458.365333pt;}
.y1a8{bottom:459.546800pt;}
.y218{bottom:460.252533pt;}
.y187{bottom:461.733600pt;}
.y1fe{bottom:463.141733pt;}
.ye1{bottom:463.763067pt;}
.y265{bottom:464.229067pt;}
.y147{bottom:464.890933pt;}
.y7b{bottom:465.363067pt;}
.y117{bottom:465.474933pt;}
.y1c8{bottom:465.637733pt;}
.y59{bottom:466.104267pt;}
.y167{bottom:466.613467pt;}
.y1db{bottom:466.961733pt;}
.y35{bottom:467.191600pt;}
.y9c{bottom:470.636267pt;}
.yd2{bottom:470.681333pt;}
.y236{bottom:471.140400pt;}
.y130{bottom:473.395867pt;}
.y288{bottom:474.344267pt;}
.y197{bottom:474.962933pt;}
.y1a7{bottom:475.546800pt;}
.y217{bottom:476.252533pt;}
.y186{bottom:479.333600pt;}
.ye0{bottom:479.763067pt;}
.y264{bottom:480.229067pt;}
.y1fd{bottom:480.741733pt;}
.y146{bottom:480.890933pt;}
.y166{bottom:482.613467pt;}
.y1da{bottom:482.961733pt;}
.y7a{bottom:482.963067pt;}
.y1c7{bottom:483.237733pt;}
.y58{bottom:483.704267pt;}
.y34{bottom:484.791600pt;}
.y235{bottom:487.140400pt;}
.yf2{bottom:487.488400pt;}
.yd1{bottom:488.281333pt;}
.ye{bottom:489.299867pt;}
.y12f{bottom:489.395867pt;}
.y287{bottom:490.344267pt;}
.y111{bottom:490.408267pt;}
.y1a6{bottom:491.546800pt;}
.yb5{bottom:491.858933pt;}
.y196{bottom:492.562933pt;}
.ydf{bottom:495.763067pt;}
.y263{bottom:496.229067pt;}
.y145{bottom:496.890933pt;}
.y185{bottom:496.933600pt;}
.y1fc{bottom:498.341733pt;}
.y114{bottom:498.408267pt;}
.y1d9{bottom:498.961733pt;}
.y79{bottom:500.563067pt;}
.y1c6{bottom:500.837733pt;}
.y216{bottom:501.185867pt;}
.y57{bottom:501.304267pt;}
.y33{bottom:502.391600pt;}
.y234{bottom:503.140400pt;}
.y12e{bottom:505.395867pt;}
.yd0{bottom:505.881333pt;}
.y286{bottom:506.344267pt;}
.y10f{bottom:506.408267pt;}
.yd{bottom:506.899867pt;}
.y165{bottom:507.546800pt;}
.yb4{bottom:509.458933pt;}
.y9b{bottom:510.162933pt;}
.yde{bottom:511.763067pt;}
.y262{bottom:512.229067pt;}
.y144{bottom:512.890933pt;}
.y113{bottom:514.408267pt;}
.y184{bottom:514.533600pt;}
.y1d8{bottom:514.961733pt;}
.y1fb{bottom:515.941733pt;}
.y215{bottom:517.185867pt;}
.y78{bottom:518.163067pt;}
.y56{bottom:518.904267pt;}
.y233{bottom:519.140400pt;}
.y32{bottom:519.991600pt;}
.y12d{bottom:521.395867pt;}
.y285{bottom:522.344267pt;}
.y10e{bottom:522.408267pt;}
.y164{bottom:523.546800pt;}
.yc{bottom:524.499867pt;}
.yb3{bottom:527.058933pt;}
.y9a{bottom:527.762933pt;}
.yf1{bottom:527.763067pt;}
.y261{bottom:528.229067pt;}
.y112{bottom:530.408267pt;}
.y1c5{bottom:531.667067pt;}
.y183{bottom:532.133600pt;}
.y1fa{bottom:533.541733pt;}
.y77{bottom:535.763067pt;}
.y55{bottom:536.504267pt;}
.y31{bottom:537.591600pt;}
.y143{bottom:537.824267pt;}
.y284{bottom:538.344267pt;}
.y110{bottom:538.408267pt;}
.y163{bottom:539.546800pt;}
.yb{bottom:542.099867pt;}
.y214{bottom:542.119200pt;}
.y260{bottom:544.229067pt;}
.yb2{bottom:544.658933pt;}
.y99{bottom:545.362933pt;}
.yf0{bottom:545.363067pt;}
.ycf{bottom:545.408000pt;}
.y1d7{bottom:548.561733pt;}
.y182{bottom:549.733600pt;}
.y12c{bottom:550.332933pt;}
.y232{bottom:552.741733pt;}
.y76{bottom:553.363067pt;}
.y142{bottom:553.824267pt;}
.y54{bottom:554.104267pt;}
.y283{bottom:554.344267pt;}
.y162{bottom:555.546800pt;}
.y213{bottom:558.119200pt;}
.y25f{bottom:560.229067pt;}
.yb1{bottom:562.258933pt;}
.y98{bottom:562.962933pt;}
.yef{bottom:562.963067pt;}
.y10a{bottom:563.341600pt;}
.y1d6{bottom:564.561733pt;}
.y181{bottom:567.333600pt;}
.y30{bottom:568.420933pt;}
.y1f9{bottom:568.744267pt;}
.y141{bottom:569.824267pt;}
.y231{bottom:570.341733pt;}
.y282{bottom:570.344267pt;}
.y75{bottom:570.963067pt;}
.y10d{bottom:571.341600pt;}
.y161{bottom:571.546800pt;}
.y53{bottom:571.704267pt;}
.y12b{bottom:571.706267pt;}
.y1c4{bottom:571.941733pt;}
.y25e{bottom:576.229067pt;}
.ya{bottom:577.299867pt;}
.y109{bottom:579.341600pt;}
.yb0{bottom:579.858933pt;}
.y1a5{bottom:580.480133pt;}
.y97{bottom:580.562933pt;}
.yee{bottom:580.563067pt;}
.yce{bottom:580.608000pt;}
.y212{bottom:583.052533pt;}
.y1f8{bottom:584.744267pt;}
.y180{bottom:584.933600pt;}
.y281{bottom:586.344267pt;}
.y10b{bottom:587.341600pt;}
.y160{bottom:587.546800pt;}
.y230{bottom:587.941733pt;}
.y74{bottom:588.563067pt;}
.y52{bottom:589.304267pt;}
.y1c3{bottom:589.541733pt;}
.y25d{bottom:592.229067pt;}
.y9{bottom:594.899867pt;}
.y108{bottom:595.341600pt;}
.y1a4{bottom:596.480133pt;}
.yaf{bottom:597.458933pt;}
.y96{bottom:598.162933pt;}
.y140{bottom:598.761333pt;}
.y1f7{bottom:600.744267pt;}
.y280{bottom:602.344267pt;}
.y17f{bottom:602.533600pt;}
.y10c{bottom:603.341600pt;}
.y22f{bottom:605.541733pt;}
.y73{bottom:606.163067pt;}
.y51{bottom:606.904267pt;}
.y12a{bottom:606.906267pt;}
.y1c2{bottom:607.141733pt;}
.y25c{bottom:608.229067pt;}
.y2f{bottom:608.704267pt;}
.y107{bottom:611.341600pt;}
.y211{bottom:611.989600pt;}
.y15f{bottom:612.480133pt;}
.y8{bottom:612.499867pt;}
.yae{bottom:615.058933pt;}
.y95{bottom:615.762933pt;}
.ycd{bottom:615.808000pt;}
.y1f6{bottom:616.744267pt;}
.y27f{bottom:618.344267pt;}
.y17e{bottom:620.133600pt;}
.y13f{bottom:620.134667pt;}
.y22e{bottom:623.141733pt;}
.y72{bottom:623.763067pt;}
.y25b{bottom:624.229067pt;}
.y50{bottom:624.504267pt;}
.y129{bottom:624.506267pt;}
.y2e{bottom:624.704267pt;}
.y1c1{bottom:624.741733pt;}
.y15e{bottom:628.480133pt;}
.y1f5{bottom:632.744267pt;}
.y94{bottom:633.362933pt;}
.y27e{bottom:634.344267pt;}
.y104{bottom:636.274933pt;}
.y106{bottom:636.861600pt;}
.y7{bottom:637.650933pt;}
.y17d{bottom:637.733600pt;}
.y25a{bottom:640.229067pt;}
.y22d{bottom:640.741733pt;}
.y4f{bottom:642.104267pt;}
.y128{bottom:642.106267pt;}
.y1c0{bottom:642.341733pt;}
.y15d{bottom:644.480133pt;}
.y103{bottom:644.863733pt;}
.yad{bottom:645.888267pt;}
.y2d{bottom:646.570933pt;}
.y1f4{bottom:648.744267pt;}
.y27d{bottom:650.344267pt;}
.y93{bottom:650.962933pt;}
.y105{bottom:652.861600pt;}
.y17c{bottom:655.333600pt;}
.ycc{bottom:655.334667pt;}
.y259{bottom:656.229067pt;}
.y22c{bottom:658.341733pt;}
.y71{bottom:658.962933pt;}
.y6{bottom:659.254933pt;}
.y4e{bottom:659.704267pt;}
.y127{bottom:659.706267pt;}
.y1bf{bottom:659.941733pt;}
.y15c{bottom:660.480133pt;}
.y2c{bottom:662.570933pt;}
.y27c{bottom:666.344267pt;}
.y92{bottom:668.562933pt;}
.y17b{bottom:672.933600pt;}
.ycb{bottom:672.934667pt;}
.y70{bottom:674.962933pt;}
.y22b{bottom:675.941733pt;}
.y15b{bottom:676.480133pt;}
.y4d{bottom:677.304267pt;}
.y1be{bottom:677.541733pt;}
.y2b{bottom:678.570933pt;}
.y5{bottom:680.858933pt;}
.y1f3{bottom:682.344267pt;}
.y102{bottom:682.389733pt;}
.y258{bottom:685.458933pt;}
.y91{bottom:686.162933pt;}
.y17a{bottom:690.533600pt;}
.yca{bottom:690.534667pt;}
.y6f{bottom:690.962933pt;}
.y15a{bottom:692.480133pt;}
.y22a{bottom:693.541733pt;}
.y2a{bottom:694.570933pt;}
.y4c{bottom:694.904267pt;}
.y1f2{bottom:698.344267pt;}
.y90{bottom:703.762933pt;}
.y101{bottom:703.763067pt;}
.y6e{bottom:706.962933pt;}
.y179{bottom:708.133600pt;}
.yc9{bottom:708.134667pt;}
.y159{bottom:708.480133pt;}
.y29{bottom:710.570933pt;}
.y4b{bottom:712.504267pt;}
.y1bd{bottom:712.744267pt;}
.y1f1{bottom:714.344267pt;}
.y8f{bottom:721.362933pt;}
.y6d{bottom:722.962933pt;}
.y158{bottom:724.480133pt;}
.yc8{bottom:725.733600pt;}
.y28{bottom:726.570933pt;}
.y1bc{bottom:728.744267pt;}
.y4a{bottom:730.104267pt;}
.y1f0{bottom:730.344267pt;}
.y8e{bottom:738.962933pt;}
.y1a3{bottom:740.480133pt;}
.y27{bottom:742.570933pt;}
.yc7{bottom:743.333600pt;}
.y229{bottom:744.744267pt;}
.y1ef{bottom:746.344267pt;}
.y49{bottom:747.704267pt;}
.y157{bottom:749.413467pt;}
.y1a2{bottom:756.480133pt;}
.y8d{bottom:756.562933pt;}
.y6c{bottom:756.563067pt;}
.y26{bottom:758.570933pt;}
.y228{bottom:760.744267pt;}
.yc6{bottom:760.933600pt;}
.y1bb{bottom:762.344267pt;}
.y156{bottom:765.413467pt;}
.y8c{bottom:774.162933pt;}
.y6b{bottom:774.163067pt;}
.y25{bottom:774.570933pt;}
.y1ba{bottom:778.344267pt;}
.y48{bottom:778.533600pt;}
.y155{bottom:781.413467pt;}
.y24{bottom:790.570933pt;}
.y6a{bottom:791.762933pt;}
.y1b9{bottom:794.344267pt;}
.y47{bottom:809.362933pt;}
.y23{bottom:810.344267pt;}
.y22{bottom:839.599067pt;}
.y46{bottom:840.580400pt;}
.hb{height:27.998925pt;}
.h3{height:28.501333pt;}
.h4{height:30.016000pt;}
.h15{height:32.064000pt;}
.h2{height:34.304000pt;}
.h8{height:35.626667pt;}
.h16{height:35.680000pt;}
.h9{height:38.592000pt;}
.h13{height:39.248000pt;}
.h6{height:42.880000pt;}
.h10{height:43.253333pt;}
.h7{height:47.168000pt;}
.hc{height:47.168533pt;}
.ha{height:47.170133pt;}
.hd{height:47.172267pt;}
.h14{height:47.176000pt;}
.hf{height:47.189867pt;}
.he{height:47.211200pt;}
.h5{height:47.578667pt;}
.h11{height:72.202125pt;}
.h17{height:75.253333pt;}
.h12{height:106.880000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:86.929067pt;}
.x1c{left:92.430000pt;}
.x1{left:94.488133pt;}
.x26{left:97.016667pt;}
.x2f{left:98.487733pt;}
.xe{left:102.047200pt;}
.x6{left:105.695067pt;}
.x1d{left:107.150000pt;}
.x31{left:108.619333pt;}
.x12{left:109.609467pt;}
.x17{left:115.319600pt;}
.x7{left:116.795200pt;}
.x5{left:122.635067pt;}
.x16{left:126.047200pt;}
.x15{left:133.606933pt;}
.x8{left:134.901867pt;}
.x13{left:136.061067pt;}
.x41{left:143.622000pt;}
.x4{left:147.143067pt;}
.x11{left:151.495600pt;}
.x42{left:155.004533pt;}
.x43{left:156.976133pt;}
.x34{left:160.992667pt;}
.x9{left:162.261867pt;}
.x39{left:168.551600pt;}
.x3e{left:172.472000pt;}
.x3c{left:180.031067pt;}
.x30{left:196.461067pt;}
.x1e{left:208.030000pt;}
.x44{left:272.922800pt;}
.x18{left:274.283333pt;}
.x27{left:277.030000pt;}
.x2c{left:277.923333pt;}
.x40{left:279.754533pt;}
.x3b{left:288.666800pt;}
.x3f{left:325.245333pt;}
.x3d{left:332.804400pt;}
.x20{left:336.310000pt;}
.x1f{left:337.963333pt;}
.x19{left:339.150000pt;}
.x28{left:341.856667pt;}
.x2d{left:343.803333pt;}
.x1a{left:348.976667pt;}
.x2{left:394.744133pt;}
.xc{left:403.312400pt;}
.x2a{left:411.696667pt;}
.x29{left:413.110000pt;}
.x2b{left:414.136667pt;}
.x21{left:417.256667pt;}
.x22{left:421.270000pt;}
.x23{left:422.550000pt;}
.xa{left:425.514133pt;}
.xb{left:435.219067pt;}
.xd{left:442.326000pt;}
.x32{left:446.472667pt;}
.x35{left:447.486000pt;}
.x3{left:453.952400pt;}
.x3a{left:455.044933pt;}
.x37{left:461.911600pt;}
.x2e{left:464.870000pt;}
.x25{left:466.843333pt;}
.x1b{left:469.963333pt;}
.x24{left:473.523333pt;}
.x33{left:476.872667pt;}
.x38{left:484.431600pt;}
.x45{left:535.937467pt;}
.x36{left:537.785600pt;}
.x10{left:538.914667pt;}
.x14{left:540.293467pt;}
}




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