
    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_e750e37be179fadee3837814.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_38096de871436461e3bfe156.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_16493e62fd076b766d47f796.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6fdf9c179f5590c0c6def81b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69bc04cf97d6a7fd27cb3b4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.858398;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_6761955748186c2a39eaf62a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_ffd76b640b34af0b3c18dce6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.731445;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_c5adaa7a8e60380b940a4be2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_8a35dfe76a5085cc1fb4dd4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_66af35cced403291d915e246.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947000;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_071ca714503fa72783b8d188.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_6a8cce3616e828e3ca213cc9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_4304a1b82e180adcd443dfbb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-11.295600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.302200px;}
.v1{vertical-align:11.296200px;}
.lse{letter-spacing:-4.838782px;}
.ls2f{letter-spacing:-3.237780px;}
.ls2c{letter-spacing:-3.106422px;}
.ls11{letter-spacing:-3.039098px;}
.ls2a{letter-spacing:-2.824020px;}
.ls24{letter-spacing:-2.541618px;}
.ls32{letter-spacing:-2.442948px;}
.ls23{letter-spacing:-2.259216px;}
.ls21{letter-spacing:-2.108592px;}
.ls1d{letter-spacing:-2.089775px;}
.ls2d{letter-spacing:-2.070960px;}
.ls2e{letter-spacing:-1.976814px;}
.ls29{letter-spacing:-1.807373px;}
.ls27{letter-spacing:-1.694412px;}
.ls28{letter-spacing:-1.581451px;}
.ls20{letter-spacing:-1.581444px;}
.ls18{letter-spacing:-1.443708px;}
.ls6{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.424628px;}
.ls1f{letter-spacing:-1.412010px;}
.ls26{letter-spacing:-1.242576px;}
.ls25{letter-spacing:-1.242569px;}
.ls33{letter-spacing:-1.221480px;}
.ls31{letter-spacing:-1.194660px;}
.ls17{letter-spacing:-0.962472px;}
.ls2b{letter-spacing:-0.903686px;}
.ls5{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.719508px;}
.lsc{letter-spacing:-0.712314px;}
.ls30{letter-spacing:-0.616596px;}
.ls34{letter-spacing:-0.610740px;}
.ls4{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.481236px;}
.ls8{letter-spacing:-0.378000px;}
.ls2{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.356157px;}
.ls10{letter-spacing:-0.306252px;}
.ls15{letter-spacing:-0.240618px;}
.lsf{letter-spacing:-0.223800px;}
.ls3{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.215852px;}
.ls12{letter-spacing:-0.192348px;}
.ls13{letter-spacing:-0.192327px;}
.ls16{letter-spacing:-0.144371px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010800px;}
.lsa{letter-spacing:0.011400px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:2.070960px;}
.ls19{letter-spacing:3.105696px;}
.ls22{letter-spacing:3.106440px;}
.ls1e{letter-spacing:4.236030px;}
.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;}
}
.ws57{word-spacing:-22.500000px;}
.ws10{word-spacing:-20.016000px;}
.wsa{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.807850px;}
.ws29{word-spacing:-15.006348px;}
.ws41{word-spacing:-10.561835px;}
.ws28{word-spacing:-10.473818px;}
.ws3f{word-spacing:-10.279433px;}
.ws40{word-spacing:-9.070805px;}
.ws12{word-spacing:-4.931388px;}
.ws55{word-spacing:-4.556079px;}
.ws44{word-spacing:-4.236030px;}
.ws1{word-spacing:-3.960000px;}
.ws1a{word-spacing:-3.490339px;}
.ws5{word-spacing:-3.240000px;}
.ws4a{word-spacing:-3.106440px;}
.ws51{word-spacing:-2.485131px;}
.ws48{word-spacing:-2.123657px;}
.ws5e{word-spacing:-2.034767px;}
.ws8{word-spacing:-1.998000px;}
.ws63{word-spacing:-1.954368px;}
.ws19{word-spacing:-1.852016px;}
.ws6e{word-spacing:-1.832220px;}
.ws1f{word-spacing:-1.638322px;}
.ws3d{word-spacing:-1.588079px;}
.ws60{word-spacing:-1.541490px;}
.ws64{word-spacing:-1.465776px;}
.ws35{word-spacing:-1.251214px;}
.wsb{word-spacing:-0.972000px;}
.ws54{word-spacing:-0.789394px;}
.wsc{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.569851px;}
.ws6d{word-spacing:-0.549666px;}
.ws52{word-spacing:-0.508324px;}
.wse{word-spacing:-0.504000px;}
.ws3{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.284926px;}
.ws2c{word-spacing:-0.270915px;}
.ws4d{word-spacing:-0.169441px;}
.ws6{word-spacing:-0.144000px;}
.ws2b{word-spacing:-0.134280px;}
.ws59{word-spacing:-0.123319px;}
.ws0{word-spacing:0.000000px;}
.ws33{word-spacing:0.144371px;}
.ws50{word-spacing:0.169441px;}
.ws2f{word-spacing:0.192348px;}
.ws39{word-spacing:0.192494px;}
.ws2{word-spacing:0.216000px;}
.ws2a{word-spacing:0.223800px;}
.ws32{word-spacing:0.240618px;}
.ws46{word-spacing:0.263574px;}
.ws4c{word-spacing:0.282402px;}
.ws2d{word-spacing:0.306252px;}
.ws16{word-spacing:0.356157px;}
.wsf{word-spacing:0.378000px;}
.ws4e{word-spacing:0.395363px;}
.ws31{word-spacing:0.481236px;}
.wsd{word-spacing:0.504000px;}
.ws53{word-spacing:0.564804px;}
.ws17{word-spacing:0.569851px;}
.ws4{word-spacing:0.576000px;}
.ws67{word-spacing:0.610740px;}
.ws5c{word-spacing:0.616596px;}
.ws49{word-spacing:0.677765px;}
.ws20{word-spacing:0.712314px;}
.ws43{word-spacing:0.719508px;}
.ws7{word-spacing:0.720000px;}
.ws65{word-spacing:0.793962px;}
.ws62{word-spacing:0.855036px;}
.ws30{word-spacing:0.914348px;}
.ws6c{word-spacing:0.916110px;}
.ws36{word-spacing:0.962472px;}
.ws3c{word-spacing:1.106843px;}
.ws45{word-spacing:1.412010px;}
.ws9{word-spacing:1.440000px;}
.ws38{word-spacing:1.443708px;}
.ws37{word-spacing:1.636202px;}
.ws4f{word-spacing:1.694412px;}
.ws69{word-spacing:1.710072px;}
.ws34{word-spacing:1.828697px;}
.ws18{word-spacing:1.994479px;}
.ws47{word-spacing:2.108592px;}
.ws6b{word-spacing:2.198664px;}
.ws4b{word-spacing:2.259216px;}
.ws25{word-spacing:2.350636px;}
.ws42{word-spacing:2.446327px;}
.ws3e{word-spacing:2.502427px;}
.ws5b{word-spacing:2.589703px;}
.ws2e{word-spacing:2.846750px;}
.ws15{word-spacing:2.991719px;}
.ws56{word-spacing:3.237780px;}
.ws24{word-spacing:3.490339px;}
.ws6a{word-spacing:4.214106px;}
.ws58{word-spacing:4.624470px;}
.ws3a{word-spacing:4.860484px;}
.ws5a{word-spacing:5.117747px;}
.ws3b{word-spacing:5.630461px;}
.ws26{word-spacing:6.482057px;}
.ws5d{word-spacing:6.905875px;}
.ws61{word-spacing:7.090854px;}
.ws68{word-spacing:7.145658px;}
.ws27{word-spacing:8.690231px;}
.ws21{word-spacing:9.117619px;}
.ws1b{word-spacing:9.545008px;}
.ws1e{word-spacing:10.969636px;}
.ws1c{word-spacing:11.040867px;}
.ws5f{word-spacing:12.023622px;}
.ws22{word-spacing:12.465495px;}
.ws1d{word-spacing:13.605197px;}
.ws23{word-spacing:14.103817px;}
.ws66{word-spacing:19.299384px;}
._8{margin-left:-17.733600px;}
._7{margin-left:-15.120000px;}
._26{margin-left:-10.460520px;}
._10{margin-left:-9.330973px;}
._6{margin-left:-8.266800px;}
._4{margin-left:-6.354000px;}
._9{margin-left:-5.328000px;}
._0{margin-left:-4.236000px;}
._2{margin-left:-2.887200px;}
._1{margin-left:-1.555200px;}
._3{width:1.080000px;}
._e{width:2.113884px;}
._5{width:3.186000px;}
._a{width:4.355449px;}
._b{width:5.370848px;}
._22{width:6.428830px;}
._27{width:8.897480px;}
._f{width:11.190453px;}
._d{width:14.944348px;}
._c{width:16.062681px;}
._1e{width:54.977736px;}
._14{width:57.055094px;}
._21{width:60.474766px;}
._20{width:72.081692px;}
._23{width:79.207903px;}
._17{width:80.367672px;}
._1a{width:84.676267px;}
._13{width:88.907923px;}
._12{width:101.989567px;}
._16{width:103.334023px;}
._1d{width:107.988845px;}
._18{width:112.952023px;}
._19{width:116.375218px;}
._24{width:117.609884px;}
._1c{width:119.529725px;}
._1b{width:125.608522px;}
._1f{width:127.673820px;}
._15{width:133.626614px;}
._11{width:158.201230px;}
._25{width:713.918233px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:38.465400px;}
.fsf{font-size:38.469600px;}
.fs17{font-size:41.419200px;}
.fs19{font-size:43.855200px;}
.fse{font-size:44.760000px;}
.fs15{font-size:45.184200px;}
.fs12{font-size:48.123600px;}
.fs18{font-size:48.949800px;}
.fs16{font-size:52.714800px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:54.183000px;}
.fs14{font-size:56.480400px;}
.fs5{font-size:60.000000px;}
.fs20{font-size:61.074000px;}
.fsc{font-size:61.250400px;}
.fs1d{font-size:61.659600px;}
.fs1c{font-size:65.513400px;}
.fsa{font-size:71.231400px;}
.fs13{font-size:71.950800px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs1a{font-size:82.837800px;}
.fs7{font-size:90.000000px;}
.fs1e{font-size:119.466000px;}
.fs2{font-size:120.000000px;}
.fs1f{font-size:122.147400px;}
.fs11{font-size:149.922600px;}
.fsb{font-size:164.905800px;}
.fs3{font-size:180.000000px;}
.fs1{font-size:204.000000px;}
.fs0{font-size:246.000000px;}
.fs1b{font-size:249.060000px;}
.fs9{font-size:273.966000px;}
.y0{bottom:0.000000px;}
.y184{bottom:53.533500px;}
.y225{bottom:56.295150px;}
.y133{bottom:56.791200px;}
.y132{bottom:85.291200px;}
.y2c5{bottom:89.106600px;}
.y2ad{bottom:96.016050px;}
.y14d{bottom:98.354250px;}
.y183{bottom:103.633500px;}
.y118{bottom:105.854250px;}
.y2c4{bottom:107.428800px;}
.yc7{bottom:108.369900px;}
.y131{bottom:113.791200px;}
.y2ac{bottom:114.514050px;}
.y275{bottom:118.729800px;}
.y290{bottom:119.560350px;}
.y182{bottom:125.233500px;}
.y90{bottom:126.854250px;}
.y14c{bottom:131.354250px;}
.y274{bottom:132.849900px;}
.y2ab{bottom:133.012050px;}
.y2c3{bottom:133.194300px;}
.y28f{bottom:133.265100px;}
.y117{bottom:134.354250px;}
.yc6{bottom:136.869900px;}
.ye0{bottom:141.854250px;}
.y130{bottom:142.291200px;}
.y273{bottom:146.970000px;}
.y2c2{bottom:150.371400px;}
.y2aa{bottom:151.510050px;}
.y5b{bottom:151.633500px;}
.y15b{bottom:153.854250px;}
.y224{bottom:154.688400px;}
.y1df{bottom:156.533850px;}
.y116{bottom:162.854250px;}
.y3c{bottom:163.633500px;}
.y14b{bottom:164.354250px;}
.yc5{bottom:165.369900px;}
.y2c1{bottom:167.548350px;}
.y181{bottom:168.433500px;}
.y2a9{bottom:170.007900px;}
.ydf{bottom:170.354250px;}
.y12f{bottom:170.791200px;}
.y272{bottom:175.210200px;}
.y1de{bottom:177.903150px;}
.y28e{bottom:180.858150px;}
.y15a{bottom:182.354250px;}
.y295{bottom:182.862000px;}
.yb4{bottom:183.558900px;}
.y2c0{bottom:184.725300px;}
.y2a8{bottom:188.505900px;}
.y271{bottom:189.330300px;}
.y115{bottom:191.354250px;}
.y3b{bottom:192.133500px;}
.yc4{bottom:193.869900px;}
.y28d{bottom:194.978400px;}
.y14a{bottom:197.354250px;}
.y12e{bottom:197.791200px;}
.yde{bottom:198.854250px;}
.y1dd{bottom:199.272450px;}
.y2bf{bottom:201.902400px;}
.y270{bottom:203.450400px;}
.y2a7{bottom:207.003900px;}
.y100{bottom:208.633500px;}
.y28c{bottom:209.098500px;}
.y159{bottom:210.854250px;}
.y180{bottom:211.633500px;}
.yb3{bottom:212.058900px;}
.y2be{bottom:219.079350px;}
.y114{bottom:219.854250px;}
.y3a{bottom:220.633500px;}
.y1dc{bottom:220.641750px;}
.yc3{bottom:222.369900px;}
.y12d{bottom:224.791200px;}
.y2a6{bottom:225.501750px;}
.ydd{bottom:227.354250px;}
.y149{bottom:230.354250px;}
.y26f{bottom:231.690600px;}
.y1ac{bottom:234.133650px;}
.y2bd{bottom:236.256450px;}
.yff{bottom:237.133500px;}
.y158{bottom:239.354250px;}
.y17f{bottom:240.133500px;}
.yb2{bottom:240.558900px;}
.ya0{bottom:241.610100px;}
.y1db{bottom:242.011200px;}
.y28b{bottom:242.986650px;}
.y2a5{bottom:243.999750px;}
.y26e{bottom:245.810700px;}
.y113{bottom:248.354250px;}
.y39{bottom:249.133500px;}
.y223{bottom:250.184550px;}
.yc2{bottom:250.869900px;}
.y12c{bottom:251.791200px;}
.y2bc{bottom:253.433400px;}
.ydc{bottom:255.854250px;}
.y28a{bottom:257.106750px;}
.y26d{bottom:259.930800px;}
.y2a4{bottom:262.497750px;}
.y148{bottom:263.354250px;}
.y1da{bottom:263.380500px;}
.yfe{bottom:265.633500px;}
.y157{bottom:267.854250px;}
.yb1{bottom:269.058900px;}
.y9f{bottom:270.110100px;}
.y2bb{bottom:270.610350px;}
.y289{bottom:271.226850px;}
.y112{bottom:276.854250px;}
.y38{bottom:277.633500px;}
.y12b{bottom:278.791200px;}
.yc1{bottom:279.369900px;}
.y2a3{bottom:280.995750px;}
.ydb{bottom:284.354250px;}
.y1d9{bottom:284.749800px;}
.y2ba{bottom:287.787450px;}
.y17e{bottom:288.133500px;}
.y26c{bottom:288.171000px;}
.y238{bottom:290.436750px;}
.y247{bottom:291.066000px;}
.yfd{bottom:294.133500px;}
.y147{bottom:296.354250px;}
.yb0{bottom:297.558900px;}
.y9e{bottom:298.610100px;}
.y2a2{bottom:299.493750px;}
.y26b{bottom:302.291100px;}
.y246{bottom:304.485000px;}
.y237{bottom:304.873800px;}
.y2b9{bottom:304.964400px;}
.y288{bottom:305.115150px;}
.y111{bottom:305.354250px;}
.y12a{bottom:305.791200px;}
.y1d8{bottom:306.119100px;}
.y37{bottom:306.133500px;}
.yc0{bottom:307.869900px;}
.yda{bottom:312.854250px;}
.y59{bottom:313.633500px;}
.y26a{bottom:316.411200px;}
.y17d{bottom:316.633500px;}
.y167{bottom:317.354250px;}
.y245{bottom:317.904000px;}
.y2a1{bottom:317.991600px;}
.y236{bottom:318.292800px;}
.y287{bottom:319.235250px;}
.y2b8{bottom:322.141500px;}
.yfc{bottom:322.633500px;}
.yaf{bottom:326.058900px;}
.y9d{bottom:327.110100px;}
.y146{bottom:329.354250px;}
.y244{bottom:331.323000px;}
.y235{bottom:331.711800px;}
.y129{bottom:332.791200px;}
.y286{bottom:333.355350px;}
.y110{bottom:333.854250px;}
.y36{bottom:334.633500px;}
.ybf{bottom:336.369900px;}
.y2a0{bottom:336.489600px;}
.y2b7{bottom:336.685500px;}
.yd9{bottom:341.354250px;}
.y58{bottom:342.133500px;}
.y269{bottom:344.651400px;}
.y243{bottom:344.742000px;}
.y234{bottom:345.130800px;}
.y166{bottom:345.854250px;}
.y156{bottom:347.354250px;}
.y222{bottom:347.379300px;}
.y1d7{bottom:348.857850px;}
.yfb{bottom:351.133500px;}
.y17c{bottom:354.133500px;}
.y29f{bottom:354.987600px;}
.y2b6{bottom:355.007700px;}
.y9c{bottom:355.610100px;}
.y242{bottom:358.161000px;}
.y233{bottom:358.549800px;}
.y268{bottom:358.771500px;}
.y128{bottom:359.791200px;}
.y10f{bottom:362.354250px;}
.y35{bottom:363.133500px;}
.ybe{bottom:364.869900px;}
.y285{bottom:367.243650px;}
.yd8{bottom:369.854250px;}
.y1d6{bottom:370.227150px;}
.y57{bottom:370.633500px;}
.y241{bottom:371.580000px;}
.y232{bottom:371.968800px;}
.y267{bottom:372.891750px;}
.y2b5{bottom:373.329900px;}
.y29e{bottom:373.485600px;}
.y165{bottom:378.854250px;}
.yfa{bottom:379.633500px;}
.y284{bottom:381.363750px;}
.y17b{bottom:382.633500px;}
.y9b{bottom:384.110100px;}
.y240{bottom:384.999000px;}
.y231{bottom:385.387800px;}
.y127{bottom:386.791200px;}
.y227{bottom:389.986650px;}
.y10e{bottom:390.854250px;}
.y1d5{bottom:391.596450px;}
.y34{bottom:391.633500px;}
.y2b4{bottom:391.651950px;}
.y29d{bottom:391.983450px;}
.ybd{bottom:393.369900px;}
.y145{bottom:395.354250px;}
.y2ca{bottom:395.472300px;}
.y283{bottom:395.483850px;}
.yd7{bottom:398.354250px;}
.y23f{bottom:398.418000px;}
.y56{bottom:399.133500px;}
.y1b2{bottom:400.432950px;}
.y266{bottom:401.131950px;}
.y1b5{bottom:406.432950px;}
.yf9{bottom:408.133500px;}
.y2b3{bottom:409.974150px;}
.y29c{bottom:410.481450px;}
.y17a{bottom:411.133500px;}
.y23e{bottom:411.837000px;}
.y164{bottom:411.854250px;}
.y230{bottom:412.225800px;}
.y9a{bottom:412.610100px;}
.y1d4{bottom:412.965750px;}
.y265{bottom:415.252050px;}
.y126{bottom:415.291200px;}
.y197{bottom:417.133500px;}
.y10d{bottom:419.354250px;}
.y33{bottom:420.133500px;}
.ybc{bottom:421.869900px;}
.y23d{bottom:425.256000px;}
.y22f{bottom:425.644800px;}
.yd6{bottom:426.854250px;}
.y55{bottom:427.633500px;}
.y2b2{bottom:428.296350px;}
.y155{bottom:428.354250px;}
.y29b{bottom:428.979450px;}
.y264{bottom:429.372000px;}
.y1d3{bottom:434.335200px;}
.yf8{bottom:436.633500px;}
.y22e{bottom:439.063800px;}
.y99{bottom:441.110100px;}
.y221{bottom:441.731250px;}
.y282{bottom:443.492100px;}
.y125{bottom:443.791200px;}
.y81{bottom:444.133500px;}
.y163{bottom:444.854250px;}
.y228{bottom:445.987950px;}
.y2b1{bottom:446.618400px;}
.y29a{bottom:447.477300px;}
.y10c{bottom:447.854250px;}
.y32{bottom:448.633500px;}
.y23c{bottom:452.094000px;}
.y22d{bottom:452.482800px;}
.yd5{bottom:455.354250px;}
.y1d2{bottom:455.704500px;}
.y54{bottom:456.133500px;}
.y263{bottom:457.612350px;}
.yf7{bottom:465.133500px;}
.y23b{bottom:465.513000px;}
.y22c{bottom:465.901800px;}
.y299{bottom:465.975300px;}
.y98{bottom:469.610100px;}
.y262{bottom:471.732450px;}
.y124{bottom:472.291200px;}
.y80{bottom:472.633500px;}
.y10b{bottom:476.354250px;}
.y1d1{bottom:477.073800px;}
.y31{bottom:477.133500px;}
.y162{bottom:477.854250px;}
.y23a{bottom:478.932150px;}
.y22b{bottom:479.320800px;}
.yd4{bottom:483.854250px;}
.y53{bottom:484.633500px;}
.y261{bottom:485.852550px;}
.y2b0{bottom:490.133550px;}
.y281{bottom:491.500500px;}
.yf6{bottom:493.633500px;}
.y8f{bottom:497.354250px;}
.y97{bottom:498.110100px;}
.y298{bottom:498.346800px;}
.y1d0{bottom:498.443100px;}
.y123{bottom:500.791200px;}
.y7f{bottom:501.133500px;}
.y22a{bottom:502.734600px;}
.y280{bottom:505.620600px;}
.y30{bottom:505.633500px;}
.y239{bottom:505.770150px;}
.y161{bottom:510.854250px;}
.yd3{bottom:512.354250px;}
.y52{bottom:513.133500px;}
.y260{bottom:514.092750px;}
.y27f{bottom:519.740700px;}
.y1cf{bottom:519.812550px;}
.yf5{bottom:522.133500px;}
.y96{bottom:526.610100px;}
.y1a{bottom:528.133500px;}
.y25f{bottom:528.212850px;}
.y122{bottom:529.291200px;}
.y7e{bottom:529.633500px;}
.y196{bottom:531.133500px;}
.y10a{bottom:533.354250px;}
.y2f{bottom:534.133500px;}
.y2ae{bottom:539.392800px;}
.yd2{bottom:540.854250px;}
.y1ce{bottom:541.181850px;}
.y51{bottom:541.633500px;}
.y25e{bottom:542.332950px;}
.y160{bottom:543.854250px;}
.yf4{bottom:550.633500px;}
.y27e{bottom:553.629000px;}
.y95{bottom:555.110100px;}
.y19{bottom:556.633500px;}
.y121{bottom:557.791200px;}
.y7d{bottom:558.133500px;}
.y1a9{bottom:560.047050px;}
.y248{bottom:560.443500px;}
.y109{bottom:561.854250px;}
.y1cd{bottom:562.551150px;}
.y2e{bottom:562.633500px;}
.y2c6{bottom:564.985500px;}
.y27d{bottom:567.749100px;}
.y201{bottom:569.107950px;}
.yd1{bottom:569.354250px;}
.y50{bottom:570.133500px;}
.y25d{bottom:570.573150px;}
.y179{bottom:571.633500px;}
.y220{bottom:572.759400px;}
.y15f{bottom:576.854250px;}
.y24a{bottom:578.726850px;}
.yf3{bottom:579.133500px;}
.y200{bottom:581.475900px;}
.y27c{bottom:581.869200px;}
.y94{bottom:583.610100px;}
.y1cc{bottom:583.920450px;}
.y21f{bottom:584.538450px;}
.y25c{bottom:584.693250px;}
.y18{bottom:585.133500px;}
.y120{bottom:586.291200px;}
.y7c{bottom:586.633500px;}
.y195{bottom:588.133500px;}
.y1a8{bottom:588.547050px;}
.y108{bottom:590.354250px;}
.y2d{bottom:591.133500px;}
.y2c8{bottom:593.956500px;}
.y297{bottom:596.354250px;}
.yd0{bottom:597.854250px;}
.y4f{bottom:598.633500px;}
.y25b{bottom:598.813350px;}
.y178{bottom:600.133500px;}
.y1ff{bottom:605.033850px;}
.y1cb{bottom:605.289900px;}
.yf2{bottom:607.633500px;}
.y21e{bottom:608.096400px;}
.y93{bottom:612.110100px;}
.y1af{bottom:613.456500px;}
.y17{bottom:613.633500px;}
.y11f{bottom:614.791200px;}
.y7b{bottom:615.133500px;}
.y27b{bottom:615.757500px;}
.y194{bottom:616.633500px;}
.y1fe{bottom:616.812750px;}
.y1a7{bottom:617.047050px;}
.y107{bottom:618.854250px;}
.y249{bottom:619.314750px;}
.y2c{bottom:619.633500px;}
.y21d{bottom:619.875300px;}
.y24b{bottom:623.448600px;}
.ycf{bottom:626.354250px;}
.y1b9{bottom:626.644200px;}
.y1ca{bottom:626.659200px;}
.y25a{bottom:627.053550px;}
.y4e{bottom:627.133500px;}
.y1fd{bottom:628.591800px;}
.y177{bottom:628.633500px;}
.y27a{bottom:629.877600px;}
.y21c{bottom:631.654350px;}
.yf1{bottom:636.133500px;}
.y1fc{bottom:640.370700px;}
.y92{bottom:640.610100px;}
.y259{bottom:641.173650px;}
.y16{bottom:642.133500px;}
.y15e{bottom:642.854250px;}
.y11e{bottom:643.291200px;}
.y7a{bottom:643.633500px;}
.y279{bottom:643.997700px;}
.y193{bottom:645.133500px;}
.y1a6{bottom:645.547050px;}
.y106{bottom:647.354250px;}
.y1c9{bottom:648.028500px;}
.y2b{bottom:648.133500px;}
.y144{bottom:653.354250px;}
.yce{bottom:654.854250px;}
.y21b{bottom:655.212300px;}
.y258{bottom:655.293750px;}
.y4d{bottom:655.633500px;}
.y1fb{bottom:663.928650px;}
.yf0{bottom:664.633500px;}
.y176{bottom:666.133500px;}
.y21a{bottom:666.991200px;}
.y91{bottom:669.110100px;}
.y1c8{bottom:669.397950px;}
.y15{bottom:670.633500px;}
.y11d{bottom:671.791200px;}
.y79{bottom:672.133500px;}
.y192{bottom:673.633500px;}
.y1a5{bottom:674.047050px;}
.y105{bottom:675.854250px;}
.y2a{bottom:676.633500px;}
.y278{bottom:677.886000px;}
.y219{bottom:678.770250px;}
.y143{bottom:680.354250px;}
.ycd{bottom:683.354250px;}
.y257{bottom:683.533950px;}
.y4c{bottom:684.133500px;}
.y1fa{bottom:687.486600px;}
.y277{bottom:692.005950px;}
.y5a{bottom:693.133500px;}
.y175{bottom:694.633500px;}
.y256{bottom:697.654050px;}
.y14{bottom:699.133500px;}
.y1f9{bottom:699.265650px;}
.y11c{bottom:700.291200px;}
.y78{bottom:700.633500px;}
.y191{bottom:702.133500px;}
.y218{bottom:702.328200px;}
.y1a4{bottom:702.547050px;}
.y104{bottom:704.354250px;}
.y29{bottom:705.133500px;}
.y276{bottom:706.126200px;}
.y142{bottom:707.354250px;}
.y255{bottom:711.774150px;}
.ycc{bottom:711.854250px;}
.y4b{bottom:712.633500px;}
.y217{bottom:714.107100px;}
.y1c7{bottom:715.843350px;}
.yef{bottom:721.633500px;}
.y1f8{bottom:722.823600px;}
.y13{bottom:727.633500px;}
.y11b{bottom:728.791200px;}
.y77{bottom:729.133500px;}
.y190{bottom:730.633500px;}
.y1a3{bottom:731.047050px;}
.y174{bottom:732.133500px;}
.y103{bottom:732.854250px;}
.y28{bottom:733.633500px;}
.y141{bottom:734.354250px;}
.y1f7{bottom:734.602500px;}
.y1c6{bottom:737.212650px;}
.y216{bottom:737.665050px;}
.y254{bottom:740.014350px;}
.ycb{bottom:740.354250px;}
.y4a{bottom:741.133500px;}
.y1f6{bottom:746.381550px;}
.y215{bottom:749.444100px;}
.yee{bottom:750.133500px;}
.y253{bottom:754.134450px;}
.y12{bottom:756.133500px;}
.y11a{bottom:757.291200px;}
.y76{bottom:757.633500px;}
.y1c5{bottom:758.581950px;}
.y18f{bottom:759.133500px;}
.y1a2{bottom:759.547050px;}
.y173{bottom:760.633500px;}
.y102{bottom:761.354250px;}
.y27{bottom:762.133500px;}
.y252{bottom:768.254550px;}
.yca{bottom:768.854250px;}
.y49{bottom:769.633500px;}
.y1f5{bottom:769.939500px;}
.y214{bottom:774.179850px;}
.yed{bottom:778.633500px;}
.y1c4{bottom:779.951250px;}
.y1f4{bottom:781.718400px;}
.yae{bottom:782.058900px;}
.y1b1{bottom:785.956650px;}
.y75{bottom:786.133500px;}
.y213{bottom:787.136700px;}
.y18e{bottom:787.633500px;}
.y1a1{bottom:788.047050px;}
.y140{bottom:788.354250px;}
.y26{bottom:790.633500px;}
.y2c9{bottom:791.956650px;}
.y1f3{bottom:793.497450px;}
.y119{bottom:796.291200px;}
.yc9{bottom:797.354250px;}
.y48{bottom:798.133500px;}
.y212{bottom:798.915750px;}
.y1b4{bottom:799.456650px;}
.y16e{bottom:799.633500px;}
.y5{bottom:801.233100px;}
.y291{bottom:804.008100px;}
.y101{bottom:806.354250px;}
.yec{bottom:807.133500px;}
.yad{bottom:810.558900px;}
.y8e{bottom:810.854250px;}
.y11{bottom:813.133500px;}
.y74{bottom:814.633500px;}
.y18d{bottom:816.133500px;}
.y1a0{bottom:816.547050px;}
.y13f{bottom:816.854250px;}
.y1f2{bottom:817.055400px;}
.y25{bottom:819.133500px;}
.y211{bottom:822.473700px;}
.y1c3{bottom:822.690000px;}
.yc8{bottom:825.854250px;}
.y47{bottom:826.633500px;}
.y210{bottom:834.252750px;}
.yeb{bottom:835.633500px;}
.y154{bottom:836.354250px;}
.y4{bottom:837.233100px;}
.yac{bottom:839.058900px;}
.y1f1{bottom:840.613350px;}
.y10{bottom:841.633500px;}
.y73{bottom:843.133500px;}
.y1c2{bottom:844.059300px;}
.y18c{bottom:844.633500px;}
.y19f{bottom:845.047050px;}
.y13e{bottom:845.354250px;}
.y20f{bottom:846.031650px;}
.y24{bottom:847.633500px;}
.y251{bottom:852.358350px;}
.y1f0{bottom:852.392250px;}
.y68{bottom:854.354250px;}
.y46{bottom:855.133500px;}
.yea{bottom:864.133500px;}
.y1c1{bottom:865.428750px;}
.yab{bottom:867.558900px;}
.y8d{bottom:867.854250px;}
.y153{bottom:869.354250px;}
.y20e{bottom:869.589600px;}
.yf{bottom:870.133500px;}
.y72{bottom:871.633500px;}
.y13d{bottom:872.354250px;}
.y18b{bottom:873.133500px;}
.y3{bottom:873.233100px;}
.y19e{bottom:873.547050px;}
.y250{bottom:873.943500px;}
.y1ef{bottom:875.950200px;}
.y23{bottom:876.133500px;}
.y20d{bottom:881.368500px;}
.y67{bottom:882.854250px;}
.y45{bottom:883.633500px;}
.y1c0{bottom:886.798050px;}
.y1ee{bottom:887.729250px;}
.ye9{bottom:892.633500px;}
.y20c{bottom:893.147550px;}
.y24f{bottom:895.528800px;}
.yaa{bottom:896.058900px;}
.y8c{bottom:896.354250px;}
.ye{bottom:898.633500px;}
.y13c{bottom:899.354250px;}
.y1ed{bottom:899.508150px;}
.y71{bottom:900.133500px;}
.y18a{bottom:901.633500px;}
.y19d{bottom:902.047050px;}
.y152{bottom:902.354250px;}
.y22{bottom:904.633500px;}
.y16d{bottom:907.633500px;}
.y66{bottom:911.354250px;}
.y44{bottom:912.133500px;}
.y1aa{bottom:914.051250px;}
.y20b{bottom:916.705500px;}
.y24e{bottom:917.113950px;}
.ye8{bottom:921.133500px;}
.y1ec{bottom:923.066100px;}
.ya9{bottom:924.558900px;}
.y8b{bottom:924.854250px;}
.y13b{bottom:926.354250px;}
.y70{bottom:928.633500px;}
.y1bf{bottom:929.536650px;}
.y189{bottom:930.133500px;}
.y19c{bottom:930.547050px;}
.y21{bottom:933.133500px;}
.y1eb{bottom:934.845150px;}
.y151{bottom:935.354250px;}
.y24d{bottom:938.699100px;}
.y65{bottom:939.854250px;}
.y20a{bottom:940.263450px;}
.y43{bottom:940.633500px;}
.y16c{bottom:943.633500px;}
.y1ea{bottom:946.624050px;}
.ye7{bottom:949.633500px;}
.y1be{bottom:950.905950px;}
.y209{bottom:952.042350px;}
.ya8{bottom:953.058900px;}
.y8a{bottom:953.354250px;}
.yd{bottom:955.633500px;}
.y2{bottom:955.733100px;}
.y6f{bottom:957.133500px;}
.y1e9{bottom:958.403100px;}
.y172{bottom:958.633500px;}
.y19b{bottom:959.047050px;}
.y24c{bottom:960.284250px;}
.y20{bottom:961.633500px;}
.y208{bottom:963.821400px;}
.y64{bottom:968.354250px;}
.y42{bottom:969.133500px;}
.y1bd{bottom:972.275250px;}
.ybb{bottom:972.854250px;}
.ye6{bottom:978.133500px;}
.y16b{bottom:979.633500px;}
.y13a{bottom:980.354250px;}
.ya7{bottom:981.558900px;}
.y89{bottom:981.854250px;}
.y1e8{bottom:981.961050px;}
.yc{bottom:984.133500px;}
.y6e{bottom:985.633500px;}
.y188{bottom:987.133500px;}
.y207{bottom:987.379350px;}
.y19a{bottom:987.547050px;}
.y1f{bottom:990.133500px;}
.y1bc{bottom:993.644700px;}
.y1e7{bottom:993.739950px;}
.y171{bottom:996.133500px;}
.y63{bottom:996.854250px;}
.y41{bottom:997.633500px;}
.y206{bottom:999.158250px;}
.yba{bottom:1001.354250px;}
.y1e6{bottom:1005.518850px;}
.ye5{bottom:1006.633500px;}
.y139{bottom:1007.354250px;}
.ya6{bottom:1010.058900px;}
.y88{bottom:1010.354250px;}
.yb{bottom:1012.633500px;}
.y6d{bottom:1014.133500px;}
.y293{bottom:1014.163950px;}
.y1bb{bottom:1015.014150px;}
.y16a{bottom:1015.633500px;}
.y1{bottom:1015.733100px;}
.y199{bottom:1016.047050px;}
.y1e5{bottom:1017.297900px;}
.y1e{bottom:1018.633500px;}
.y2c7{bottom:1020.641550px;}
.y205{bottom:1022.716350px;}
.y62{bottom:1025.354250px;}
.y40{bottom:1026.133500px;}
.yb9{bottom:1029.854250px;}
.y170{bottom:1033.633500px;}
.y138{bottom:1034.354250px;}
.ye4{bottom:1035.133500px;}
.y169{bottom:1038.133500px;}
.ya5{bottom:1038.558900px;}
.y87{bottom:1038.854250px;}
.y204{bottom:1039.678050px;}
.y1e4{bottom:1040.855850px;}
.ya{bottom:1041.133500px;}
.y6c{bottom:1042.633500px;}
.y187{bottom:1044.133500px;}
.y198{bottom:1044.547050px;}
.y1d{bottom:1047.133500px;}
.y1b6{bottom:1050.641550px;}
.y1ae{bottom:1052.141550px;}
.y1e3{bottom:1052.634900px;}
.y61{bottom:1053.854250px;}
.y3f{bottom:1054.633500px;}
.yb8{bottom:1058.354250px;}
.y137{bottom:1061.354250px;}
.y203{bottom:1063.236000px;}
.ye3{bottom:1063.633500px;}
.ya4{bottom:1067.058900px;}
.y86{bottom:1067.354250px;}
.y9{bottom:1069.633500px;}
.y6b{bottom:1071.133500px;}
.y292{bottom:1072.969800px;}
.y1ba{bottom:1074.047250px;}
.y202{bottom:1075.603800px;}
.y1c{bottom:1075.633500px;}
.y1e2{bottom:1076.192850px;}
.y60{bottom:1082.354250px;}
.y3e{bottom:1083.133500px;}
.yb7{bottom:1086.854250px;}
.y1e1{bottom:1087.971750px;}
.y136{bottom:1088.354250px;}
.ye2{bottom:1092.133500px;}
.ya3{bottom:1095.558900px;}
.y85{bottom:1095.854250px;}
.y8{bottom:1098.133500px;}
.y6a{bottom:1099.633500px;}
.y150{bottom:1100.354250px;}
.y186{bottom:1101.133500px;}
.y15d{bottom:1103.354250px;}
.y5f{bottom:1110.854250px;}
.y3d{bottom:1111.633500px;}
.y168{bottom:1113.133500px;}
.yb6{bottom:1115.354250px;}
.ye1{bottom:1120.633500px;}
.ya2{bottom:1124.058900px;}
.y84{bottom:1124.354250px;}
.y7{bottom:1126.633500px;}
.y69{bottom:1128.133500px;}
.y1e0{bottom:1128.278850px;}
.y1b{bottom:1132.633500px;}
.y14f{bottom:1133.354250px;}
.y15c{bottom:1136.354250px;}
.y5e{bottom:1139.354250px;}
.y2af{bottom:1139.596650px;}
.y1ab{bottom:1139.644200px;}
.y135{bottom:1142.354250px;}
.yb5{bottom:1143.854250px;}
.ya1{bottom:1152.558900px;}
.y83{bottom:1152.854250px;}
.y16f{bottom:1155.133500px;}
.y185{bottom:1156.633500px;}
.y294{bottom:1165.628400px;}
.y14e{bottom:1166.354250px;}
.y1b7{bottom:1167.128400px;}
.y5d{bottom:1167.854250px;}
.y1b8{bottom:1168.144200px;}
.y134{bottom:1169.354250px;}
.y1ad{bottom:1169.644200px;}
.y6{bottom:1177.633500px;}
.y226{bottom:1178.644200px;}
.y82{bottom:1181.354250px;}
.y1b3{bottom:1188.641550px;}
.y1b0{bottom:1190.141550px;}
.y229{bottom:1193.596650px;}
.y296{bottom:1194.854250px;}
.y5c{bottom:1196.354250px;}
.h1f{height:32.171150px;}
.h13{height:33.751135px;}
.h12{height:33.754820px;}
.h1c{height:36.342921px;}
.h20{height:38.480368px;}
.h11{height:39.274277px;}
.h19{height:39.646488px;}
.h1e{height:40.413298px;}
.h1d{height:40.413898px;}
.h15{height:42.225639px;}
.h16{height:42.742592px;}
.h1a{height:46.820421px;}
.h9{height:47.381836px;}
.ha{height:49.992188px;}
.h1b{height:50.164965px;}
.h18{height:51.001921px;}
.h7{height:52.646484px;}
.h27{height:53.588856px;}
.h24{height:54.102686px;}
.h10{height:54.401600px;}
.h23{height:58.187927px;}
.he{height:62.501380px;}
.h17{height:63.132611px;}
.h6{height:63.175781px;}
.h8{height:63.949219px;}
.hc{height:69.278320px;}
.hb{height:79.936523px;}
.h21{height:81.877375px;}
.h25{height:104.824415px;}
.h4{height:105.292969px;}
.h26{height:107.177186px;}
.h14{height:131.548297px;}
.hf{height:144.695177px;}
.h5{height:157.939453px;}
.h3{height:178.998047px;}
.h2{height:215.850586px;}
.h22{height:218.535557px;}
.hd{height:240.389112px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:119.055150px;}
.x11{left:129.272400px;}
.x6{left:130.752750px;}
.x3{left:131.756700px;}
.x1{left:133.256700px;}
.x4{left:135.566850px;}
.x15{left:137.036700px;}
.x5{left:145.987050px;}
.xa{left:159.267450px;}
.x9{left:163.700850px;}
.x12{left:220.873050px;}
.xd{left:234.294750px;}
.x13{left:245.783550px;}
.xf{left:360.066000px;}
.x7{left:371.207550px;}
.xe{left:471.457950px;}
.x8{left:480.472500px;}
.x14{left:483.701850px;}
.x10{left:493.500900px;}
.xc{left:756.179100px;}
.xb{left:818.884650px;}
@media print{
.v2{vertical-align:-10.040533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.379733pt;}
.v1{vertical-align:10.041067pt;}
.lse{letter-spacing:-4.301139pt;}
.ls2f{letter-spacing:-2.878027pt;}
.ls2c{letter-spacing:-2.761264pt;}
.ls11{letter-spacing:-2.701421pt;}
.ls2a{letter-spacing:-2.510240pt;}
.ls24{letter-spacing:-2.259216pt;}
.ls32{letter-spacing:-2.171509pt;}
.ls23{letter-spacing:-2.008192pt;}
.ls21{letter-spacing:-1.874304pt;}
.ls1d{letter-spacing:-1.857578pt;}
.ls2d{letter-spacing:-1.840853pt;}
.ls2e{letter-spacing:-1.757168pt;}
.ls29{letter-spacing:-1.606554pt;}
.ls27{letter-spacing:-1.506144pt;}
.ls28{letter-spacing:-1.405734pt;}
.ls20{letter-spacing:-1.405728pt;}
.ls18{letter-spacing:-1.283296pt;}
.ls6{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-1.266336pt;}
.ls1f{letter-spacing:-1.255120pt;}
.ls26{letter-spacing:-1.104512pt;}
.ls25{letter-spacing:-1.104506pt;}
.ls33{letter-spacing:-1.085760pt;}
.ls31{letter-spacing:-1.061920pt;}
.ls17{letter-spacing:-0.855531pt;}
.ls2b{letter-spacing:-0.803277pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.639563pt;}
.lsc{letter-spacing:-0.633168pt;}
.ls30{letter-spacing:-0.548085pt;}
.ls34{letter-spacing:-0.542880pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.427765pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls2{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.316584pt;}
.ls10{letter-spacing:-0.272224pt;}
.ls15{letter-spacing:-0.213883pt;}
.lsf{letter-spacing:-0.198933pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.191869pt;}
.ls12{letter-spacing:-0.170976pt;}
.ls13{letter-spacing:-0.170957pt;}
.ls16{letter-spacing:-0.128330pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.009600pt;}
.lsa{letter-spacing:0.010133pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.840853pt;}
.ls19{letter-spacing:2.760619pt;}
.ls22{letter-spacing:2.761280pt;}
.ls1e{letter-spacing:3.765360pt;}
.ws57{word-spacing:-20.000000pt;}
.ws10{word-spacing:-17.792000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.829200pt;}
.ws29{word-spacing:-13.338976pt;}
.ws41{word-spacing:-9.388298pt;}
.ws28{word-spacing:-9.310061pt;}
.ws3f{word-spacing:-9.137274pt;}
.ws40{word-spacing:-8.062938pt;}
.ws12{word-spacing:-4.383456pt;}
.ws55{word-spacing:-4.049848pt;}
.ws44{word-spacing:-3.765360pt;}
.ws1{word-spacing:-3.520000pt;}
.ws1a{word-spacing:-3.102523pt;}
.ws5{word-spacing:-2.880000pt;}
.ws4a{word-spacing:-2.761280pt;}
.ws51{word-spacing:-2.209005pt;}
.ws48{word-spacing:-1.887695pt;}
.ws5e{word-spacing:-1.808682pt;}
.ws8{word-spacing:-1.776000pt;}
.ws63{word-spacing:-1.737216pt;}
.ws19{word-spacing:-1.646237pt;}
.ws6e{word-spacing:-1.628640pt;}
.ws1f{word-spacing:-1.456286pt;}
.ws3d{word-spacing:-1.411626pt;}
.ws60{word-spacing:-1.370213pt;}
.ws64{word-spacing:-1.302912pt;}
.ws35{word-spacing:-1.112190pt;}
.wsb{word-spacing:-0.864000pt;}
.ws54{word-spacing:-0.701683pt;}
.wsc{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.506534pt;}
.ws6d{word-spacing:-0.488592pt;}
.ws52{word-spacing:-0.451843pt;}
.wse{word-spacing:-0.448000pt;}
.ws3{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.253267pt;}
.ws2c{word-spacing:-0.240813pt;}
.ws4d{word-spacing:-0.150614pt;}
.ws6{word-spacing:-0.128000pt;}
.ws2b{word-spacing:-0.119360pt;}
.ws59{word-spacing:-0.109617pt;}
.ws0{word-spacing:0.000000pt;}
.ws33{word-spacing:0.128330pt;}
.ws50{word-spacing:0.150614pt;}
.ws2f{word-spacing:0.170976pt;}
.ws39{word-spacing:0.171106pt;}
.ws2{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.198933pt;}
.ws32{word-spacing:0.213883pt;}
.ws46{word-spacing:0.234288pt;}
.ws4c{word-spacing:0.251024pt;}
.ws2d{word-spacing:0.272224pt;}
.ws16{word-spacing:0.316584pt;}
.wsf{word-spacing:0.336000pt;}
.ws4e{word-spacing:0.351434pt;}
.ws31{word-spacing:0.427765pt;}
.wsd{word-spacing:0.448000pt;}
.ws53{word-spacing:0.502048pt;}
.ws17{word-spacing:0.506534pt;}
.ws4{word-spacing:0.512000pt;}
.ws67{word-spacing:0.542880pt;}
.ws5c{word-spacing:0.548085pt;}
.ws49{word-spacing:0.602458pt;}
.ws20{word-spacing:0.633168pt;}
.ws43{word-spacing:0.639563pt;}
.ws7{word-spacing:0.640000pt;}
.ws65{word-spacing:0.705744pt;}
.ws62{word-spacing:0.760032pt;}
.ws30{word-spacing:0.812754pt;}
.ws6c{word-spacing:0.814320pt;}
.ws36{word-spacing:0.855531pt;}
.ws3c{word-spacing:0.983860pt;}
.ws45{word-spacing:1.255120pt;}
.ws9{word-spacing:1.280000pt;}
.ws38{word-spacing:1.283296pt;}
.ws37{word-spacing:1.454402pt;}
.ws4f{word-spacing:1.506144pt;}
.ws69{word-spacing:1.520064pt;}
.ws34{word-spacing:1.625508pt;}
.ws18{word-spacing:1.772870pt;}
.ws47{word-spacing:1.874304pt;}
.ws6b{word-spacing:1.954368pt;}
.ws4b{word-spacing:2.008192pt;}
.ws25{word-spacing:2.089454pt;}
.ws42{word-spacing:2.174513pt;}
.ws3e{word-spacing:2.224380pt;}
.ws5b{word-spacing:2.301958pt;}
.ws2e{word-spacing:2.530445pt;}
.ws15{word-spacing:2.659306pt;}
.ws56{word-spacing:2.878027pt;}
.ws24{word-spacing:3.102523pt;}
.ws6a{word-spacing:3.745872pt;}
.ws58{word-spacing:4.110640pt;}
.ws3a{word-spacing:4.320430pt;}
.ws5a{word-spacing:4.549108pt;}
.ws3b{word-spacing:5.004854pt;}
.ws26{word-spacing:5.761829pt;}
.ws5d{word-spacing:6.138556pt;}
.ws61{word-spacing:6.302981pt;}
.ws68{word-spacing:6.351696pt;}
.ws27{word-spacing:7.724650pt;}
.ws21{word-spacing:8.104550pt;}
.ws1b{word-spacing:8.484451pt;}
.ws1e{word-spacing:9.750787pt;}
.ws1c{word-spacing:9.814104pt;}
.ws5f{word-spacing:10.687664pt;}
.ws22{word-spacing:11.080440pt;}
.ws1d{word-spacing:12.093509pt;}
.ws23{word-spacing:12.536726pt;}
.ws66{word-spacing:17.155008pt;}
._8{margin-left:-15.763200pt;}
._7{margin-left:-13.440000pt;}
._26{margin-left:-9.298240pt;}
._10{margin-left:-8.294198pt;}
._6{margin-left:-7.348267pt;}
._4{margin-left:-5.648000pt;}
._9{margin-left:-4.736000pt;}
._0{margin-left:-3.765333pt;}
._2{margin-left:-2.566400pt;}
._1{margin-left:-1.382400pt;}
._3{width:0.960000pt;}
._e{width:1.879008pt;}
._5{width:2.832000pt;}
._a{width:3.871510pt;}
._b{width:4.774087pt;}
._22{width:5.714515pt;}
._27{width:7.908871pt;}
._f{width:9.947069pt;}
._d{width:13.283865pt;}
._c{width:14.277938pt;}
._1e{width:48.869099pt;}
._14{width:50.715639pt;}
._21{width:53.755348pt;}
._20{width:64.072615pt;}
._23{width:70.407025pt;}
._17{width:71.437931pt;}
._1a{width:75.267793pt;}
._13{width:79.029265pt;}
._12{width:90.657393pt;}
._16{width:91.852465pt;}
._1d{width:95.990084pt;}
._18{width:100.401798pt;}
._19{width:103.444638pt;}
._24{width:104.542119pt;}
._1c{width:106.248644pt;}
._1b{width:111.652019pt;}
._1f{width:113.487840pt;}
._15{width:118.779213pt;}
._11{width:140.623315pt;}
._25{width:634.593985pt;}
.fs10{font-size:34.191467pt;}
.fsf{font-size:34.195200pt;}
.fs17{font-size:36.817067pt;}
.fs19{font-size:38.982400pt;}
.fse{font-size:39.786667pt;}
.fs15{font-size:40.163733pt;}
.fs12{font-size:42.776533pt;}
.fs18{font-size:43.510933pt;}
.fs16{font-size:46.857600pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:48.162667pt;}
.fs14{font-size:50.204800pt;}
.fs5{font-size:53.333333pt;}
.fs20{font-size:54.288000pt;}
.fsc{font-size:54.444800pt;}
.fs1d{font-size:54.808533pt;}
.fs1c{font-size:58.234133pt;}
.fsa{font-size:63.316800pt;}
.fs13{font-size:63.956267pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs1a{font-size:73.633600pt;}
.fs7{font-size:80.000000pt;}
.fs1e{font-size:106.192000pt;}
.fs2{font-size:106.666667pt;}
.fs1f{font-size:108.575467pt;}
.fs11{font-size:133.264533pt;}
.fsb{font-size:146.582933pt;}
.fs3{font-size:160.000000pt;}
.fs1{font-size:181.333333pt;}
.fs0{font-size:218.666667pt;}
.fs1b{font-size:221.386667pt;}
.fs9{font-size:243.525333pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:47.585333pt;}
.y225{bottom:50.040133pt;}
.y133{bottom:50.481067pt;}
.y132{bottom:75.814400pt;}
.y2c5{bottom:79.205867pt;}
.y2ad{bottom:85.347600pt;}
.y14d{bottom:87.426000pt;}
.y183{bottom:92.118667pt;}
.y118{bottom:94.092667pt;}
.y2c4{bottom:95.492267pt;}
.yc7{bottom:96.328800pt;}
.y131{bottom:101.147733pt;}
.y2ac{bottom:101.790267pt;}
.y275{bottom:105.537600pt;}
.y290{bottom:106.275867pt;}
.y182{bottom:111.318667pt;}
.y90{bottom:112.759333pt;}
.y14c{bottom:116.759333pt;}
.y274{bottom:118.088800pt;}
.y2ab{bottom:118.232933pt;}
.y2c3{bottom:118.394933pt;}
.y28f{bottom:118.457867pt;}
.y117{bottom:119.426000pt;}
.yc6{bottom:121.662133pt;}
.ye0{bottom:126.092667pt;}
.y130{bottom:126.481067pt;}
.y273{bottom:130.640000pt;}
.y2c2{bottom:133.663467pt;}
.y2aa{bottom:134.675600pt;}
.y5b{bottom:134.785333pt;}
.y15b{bottom:136.759333pt;}
.y224{bottom:137.500800pt;}
.y1df{bottom:139.141200pt;}
.y116{bottom:144.759333pt;}
.y3c{bottom:145.452000pt;}
.y14b{bottom:146.092667pt;}
.yc5{bottom:146.995467pt;}
.y2c1{bottom:148.931867pt;}
.y181{bottom:149.718667pt;}
.y2a9{bottom:151.118133pt;}
.ydf{bottom:151.426000pt;}
.y12f{bottom:151.814400pt;}
.y272{bottom:155.742400pt;}
.y1de{bottom:158.136133pt;}
.y28e{bottom:160.762800pt;}
.y15a{bottom:162.092667pt;}
.y295{bottom:162.544000pt;}
.yb4{bottom:163.163467pt;}
.y2c0{bottom:164.200267pt;}
.y2a8{bottom:167.560800pt;}
.y271{bottom:168.293600pt;}
.y115{bottom:170.092667pt;}
.y3b{bottom:170.785333pt;}
.yc4{bottom:172.328800pt;}
.y28d{bottom:173.314133pt;}
.y14a{bottom:175.426000pt;}
.y12e{bottom:175.814400pt;}
.yde{bottom:176.759333pt;}
.y1dd{bottom:177.131067pt;}
.y2bf{bottom:179.468800pt;}
.y270{bottom:180.844800pt;}
.y2a7{bottom:184.003467pt;}
.y100{bottom:185.452000pt;}
.y28c{bottom:185.865333pt;}
.y159{bottom:187.426000pt;}
.y180{bottom:188.118667pt;}
.yb3{bottom:188.496800pt;}
.y2be{bottom:194.737200pt;}
.y114{bottom:195.426000pt;}
.y3a{bottom:196.118667pt;}
.y1dc{bottom:196.126000pt;}
.yc3{bottom:197.662133pt;}
.y12d{bottom:199.814400pt;}
.y2a6{bottom:200.446000pt;}
.ydd{bottom:202.092667pt;}
.y149{bottom:204.759333pt;}
.y26f{bottom:205.947200pt;}
.y1ac{bottom:208.118800pt;}
.y2bd{bottom:210.005733pt;}
.yff{bottom:210.785333pt;}
.y158{bottom:212.759333pt;}
.y17f{bottom:213.452000pt;}
.yb2{bottom:213.830133pt;}
.ya0{bottom:214.764533pt;}
.y1db{bottom:215.121067pt;}
.y28b{bottom:215.988133pt;}
.y2a5{bottom:216.888667pt;}
.y26e{bottom:218.498400pt;}
.y113{bottom:220.759333pt;}
.y39{bottom:221.452000pt;}
.y223{bottom:222.386267pt;}
.yc2{bottom:222.995467pt;}
.y12c{bottom:223.814400pt;}
.y2bc{bottom:225.274133pt;}
.ydc{bottom:227.426000pt;}
.y28a{bottom:228.539333pt;}
.y26d{bottom:231.049600pt;}
.y2a4{bottom:233.331333pt;}
.y148{bottom:234.092667pt;}
.y1da{bottom:234.116000pt;}
.yfe{bottom:236.118667pt;}
.y157{bottom:238.092667pt;}
.yb1{bottom:239.163467pt;}
.y9f{bottom:240.097867pt;}
.y2bb{bottom:240.542533pt;}
.y289{bottom:241.090533pt;}
.y112{bottom:246.092667pt;}
.y38{bottom:246.785333pt;}
.y12b{bottom:247.814400pt;}
.yc1{bottom:248.328800pt;}
.y2a3{bottom:249.774000pt;}
.ydb{bottom:252.759333pt;}
.y1d9{bottom:253.110933pt;}
.y2ba{bottom:255.811067pt;}
.y17e{bottom:256.118667pt;}
.y26c{bottom:256.152000pt;}
.y238{bottom:258.166000pt;}
.y247{bottom:258.725333pt;}
.yfd{bottom:261.452000pt;}
.y147{bottom:263.426000pt;}
.yb0{bottom:264.496800pt;}
.y9e{bottom:265.431200pt;}
.y2a2{bottom:266.216667pt;}
.y26b{bottom:268.703200pt;}
.y246{bottom:270.653333pt;}
.y237{bottom:270.998933pt;}
.y2b9{bottom:271.079467pt;}
.y288{bottom:271.213467pt;}
.y111{bottom:271.426000pt;}
.y12a{bottom:271.814400pt;}
.y1d8{bottom:272.105867pt;}
.y37{bottom:272.118667pt;}
.yc0{bottom:273.662133pt;}
.yda{bottom:278.092667pt;}
.y59{bottom:278.785333pt;}
.y26a{bottom:281.254400pt;}
.y17d{bottom:281.452000pt;}
.y167{bottom:282.092667pt;}
.y245{bottom:282.581333pt;}
.y2a1{bottom:282.659200pt;}
.y236{bottom:282.926933pt;}
.y287{bottom:283.764667pt;}
.y2b8{bottom:286.348000pt;}
.yfc{bottom:286.785333pt;}
.yaf{bottom:289.830133pt;}
.y9d{bottom:290.764533pt;}
.y146{bottom:292.759333pt;}
.y244{bottom:294.509333pt;}
.y235{bottom:294.854933pt;}
.y129{bottom:295.814400pt;}
.y286{bottom:296.315867pt;}
.y110{bottom:296.759333pt;}
.y36{bottom:297.452000pt;}
.ybf{bottom:298.995467pt;}
.y2a0{bottom:299.101867pt;}
.y2b7{bottom:299.276000pt;}
.yd9{bottom:303.426000pt;}
.y58{bottom:304.118667pt;}
.y269{bottom:306.356800pt;}
.y243{bottom:306.437333pt;}
.y234{bottom:306.782933pt;}
.y166{bottom:307.426000pt;}
.y156{bottom:308.759333pt;}
.y222{bottom:308.781600pt;}
.y1d7{bottom:310.095867pt;}
.yfb{bottom:312.118667pt;}
.y17c{bottom:314.785333pt;}
.y29f{bottom:315.544533pt;}
.y2b6{bottom:315.562400pt;}
.y9c{bottom:316.097867pt;}
.y242{bottom:318.365333pt;}
.y233{bottom:318.710933pt;}
.y268{bottom:318.908000pt;}
.y128{bottom:319.814400pt;}
.y10f{bottom:322.092667pt;}
.y35{bottom:322.785333pt;}
.ybe{bottom:324.328800pt;}
.y285{bottom:326.438800pt;}
.yd8{bottom:328.759333pt;}
.y1d6{bottom:329.090800pt;}
.y57{bottom:329.452000pt;}
.y241{bottom:330.293333pt;}
.y232{bottom:330.638933pt;}
.y267{bottom:331.459333pt;}
.y2b5{bottom:331.848800pt;}
.y29e{bottom:331.987200pt;}
.y165{bottom:336.759333pt;}
.yfa{bottom:337.452000pt;}
.y284{bottom:338.990000pt;}
.y17b{bottom:340.118667pt;}
.y9b{bottom:341.431200pt;}
.y240{bottom:342.221333pt;}
.y231{bottom:342.566933pt;}
.y127{bottom:343.814400pt;}
.y227{bottom:346.654800pt;}
.y10e{bottom:347.426000pt;}
.y1d5{bottom:348.085733pt;}
.y34{bottom:348.118667pt;}
.y2b4{bottom:348.135067pt;}
.y29d{bottom:348.429733pt;}
.ybd{bottom:349.662133pt;}
.y145{bottom:351.426000pt;}
.y2ca{bottom:351.530933pt;}
.y283{bottom:351.541200pt;}
.yd7{bottom:354.092667pt;}
.y23f{bottom:354.149333pt;}
.y56{bottom:354.785333pt;}
.y1b2{bottom:355.940400pt;}
.y266{bottom:356.561733pt;}
.y1b5{bottom:361.273733pt;}
.yf9{bottom:362.785333pt;}
.y2b3{bottom:364.421467pt;}
.y29c{bottom:364.872400pt;}
.y17a{bottom:365.452000pt;}
.y23e{bottom:366.077333pt;}
.y164{bottom:366.092667pt;}
.y230{bottom:366.422933pt;}
.y9a{bottom:366.764533pt;}
.y1d4{bottom:367.080667pt;}
.y265{bottom:369.112933pt;}
.y126{bottom:369.147733pt;}
.y197{bottom:370.785333pt;}
.y10d{bottom:372.759333pt;}
.y33{bottom:373.452000pt;}
.ybc{bottom:374.995467pt;}
.y23d{bottom:378.005333pt;}
.y22f{bottom:378.350933pt;}
.yd6{bottom:379.426000pt;}
.y55{bottom:380.118667pt;}
.y2b2{bottom:380.707867pt;}
.y155{bottom:380.759333pt;}
.y29b{bottom:381.315067pt;}
.y264{bottom:381.664000pt;}
.y1d3{bottom:386.075733pt;}
.yf8{bottom:388.118667pt;}
.y22e{bottom:390.278933pt;}
.y99{bottom:392.097867pt;}
.y221{bottom:392.650000pt;}
.y282{bottom:394.215200pt;}
.y125{bottom:394.481067pt;}
.y81{bottom:394.785333pt;}
.y163{bottom:395.426000pt;}
.y228{bottom:396.433733pt;}
.y2b1{bottom:396.994133pt;}
.y29a{bottom:397.757600pt;}
.y10c{bottom:398.092667pt;}
.y32{bottom:398.785333pt;}
.y23c{bottom:401.861333pt;}
.y22d{bottom:402.206933pt;}
.yd5{bottom:404.759333pt;}
.y1d2{bottom:405.070667pt;}
.y54{bottom:405.452000pt;}
.y263{bottom:406.766533pt;}
.yf7{bottom:413.452000pt;}
.y23b{bottom:413.789333pt;}
.y22c{bottom:414.134933pt;}
.y299{bottom:414.200267pt;}
.y98{bottom:417.431200pt;}
.y262{bottom:419.317733pt;}
.y124{bottom:419.814400pt;}
.y80{bottom:420.118667pt;}
.y10b{bottom:423.426000pt;}
.y1d1{bottom:424.065600pt;}
.y31{bottom:424.118667pt;}
.y162{bottom:424.759333pt;}
.y23a{bottom:425.717467pt;}
.y22b{bottom:426.062933pt;}
.yd4{bottom:430.092667pt;}
.y53{bottom:430.785333pt;}
.y261{bottom:431.868933pt;}
.y2b0{bottom:435.674267pt;}
.y281{bottom:436.889333pt;}
.yf6{bottom:438.785333pt;}
.y8f{bottom:442.092667pt;}
.y97{bottom:442.764533pt;}
.y298{bottom:442.974933pt;}
.y1d0{bottom:443.060533pt;}
.y123{bottom:445.147733pt;}
.y7f{bottom:445.452000pt;}
.y22a{bottom:446.875200pt;}
.y280{bottom:449.440533pt;}
.y30{bottom:449.452000pt;}
.y239{bottom:449.573467pt;}
.y161{bottom:454.092667pt;}
.yd3{bottom:455.426000pt;}
.y52{bottom:456.118667pt;}
.y260{bottom:456.971333pt;}
.y27f{bottom:461.991733pt;}
.y1cf{bottom:462.055600pt;}
.yf5{bottom:464.118667pt;}
.y96{bottom:468.097867pt;}
.y1a{bottom:469.452000pt;}
.y25f{bottom:469.522533pt;}
.y122{bottom:470.481067pt;}
.y7e{bottom:470.785333pt;}
.y196{bottom:472.118667pt;}
.y10a{bottom:474.092667pt;}
.y2f{bottom:474.785333pt;}
.y2ae{bottom:479.460267pt;}
.yd2{bottom:480.759333pt;}
.y1ce{bottom:481.050533pt;}
.y51{bottom:481.452000pt;}
.y25e{bottom:482.073733pt;}
.y160{bottom:483.426000pt;}
.yf4{bottom:489.452000pt;}
.y27e{bottom:492.114667pt;}
.y95{bottom:493.431200pt;}
.y19{bottom:494.785333pt;}
.y121{bottom:495.814400pt;}
.y7d{bottom:496.118667pt;}
.y1a9{bottom:497.819600pt;}
.y248{bottom:498.172000pt;}
.y109{bottom:499.426000pt;}
.y1cd{bottom:500.045467pt;}
.y2e{bottom:500.118667pt;}
.y2c6{bottom:502.209333pt;}
.y27d{bottom:504.665867pt;}
.y201{bottom:505.873733pt;}
.yd1{bottom:506.092667pt;}
.y50{bottom:506.785333pt;}
.y25d{bottom:507.176133pt;}
.y179{bottom:508.118667pt;}
.y220{bottom:509.119467pt;}
.y15f{bottom:512.759333pt;}
.y24a{bottom:514.423867pt;}
.yf3{bottom:514.785333pt;}
.y200{bottom:516.867467pt;}
.y27c{bottom:517.217067pt;}
.y94{bottom:518.764533pt;}
.y1cc{bottom:519.040400pt;}
.y21f{bottom:519.589733pt;}
.y25c{bottom:519.727333pt;}
.y18{bottom:520.118667pt;}
.y120{bottom:521.147733pt;}
.y7c{bottom:521.452000pt;}
.y195{bottom:522.785333pt;}
.y1a8{bottom:523.152933pt;}
.y108{bottom:524.759333pt;}
.y2d{bottom:525.452000pt;}
.y2c8{bottom:527.961333pt;}
.y297{bottom:530.092667pt;}
.yd0{bottom:531.426000pt;}
.y4f{bottom:532.118667pt;}
.y25b{bottom:532.278533pt;}
.y178{bottom:533.452000pt;}
.y1ff{bottom:537.807867pt;}
.y1cb{bottom:538.035467pt;}
.yf2{bottom:540.118667pt;}
.y21e{bottom:540.530133pt;}
.y93{bottom:544.097867pt;}
.y1af{bottom:545.294667pt;}
.y17{bottom:545.452000pt;}
.y11f{bottom:546.481067pt;}
.y7b{bottom:546.785333pt;}
.y27b{bottom:547.340000pt;}
.y194{bottom:548.118667pt;}
.y1fe{bottom:548.278000pt;}
.y1a7{bottom:548.486267pt;}
.y107{bottom:550.092667pt;}
.y249{bottom:550.502000pt;}
.y2c{bottom:550.785333pt;}
.y21d{bottom:551.000267pt;}
.y24b{bottom:554.176533pt;}
.ycf{bottom:556.759333pt;}
.y1b9{bottom:557.017067pt;}
.y1ca{bottom:557.030400pt;}
.y25a{bottom:557.380933pt;}
.y4e{bottom:557.452000pt;}
.y1fd{bottom:558.748267pt;}
.y177{bottom:558.785333pt;}
.y27a{bottom:559.891200pt;}
.y21c{bottom:561.470533pt;}
.yf1{bottom:565.452000pt;}
.y1fc{bottom:569.218400pt;}
.y92{bottom:569.431200pt;}
.y259{bottom:569.932133pt;}
.y16{bottom:570.785333pt;}
.y15e{bottom:571.426000pt;}
.y11e{bottom:571.814400pt;}
.y7a{bottom:572.118667pt;}
.y279{bottom:572.442400pt;}
.y193{bottom:573.452000pt;}
.y1a6{bottom:573.819600pt;}
.y106{bottom:575.426000pt;}
.y1c9{bottom:576.025333pt;}
.y2b{bottom:576.118667pt;}
.y144{bottom:580.759333pt;}
.yce{bottom:582.092667pt;}
.y21b{bottom:582.410933pt;}
.y258{bottom:582.483333pt;}
.y4d{bottom:582.785333pt;}
.y1fb{bottom:590.158800pt;}
.yf0{bottom:590.785333pt;}
.y176{bottom:592.118667pt;}
.y21a{bottom:592.881067pt;}
.y91{bottom:594.764533pt;}
.y1c8{bottom:595.020400pt;}
.y15{bottom:596.118667pt;}
.y11d{bottom:597.147733pt;}
.y79{bottom:597.452000pt;}
.y192{bottom:598.785333pt;}
.y1a5{bottom:599.152933pt;}
.y105{bottom:600.759333pt;}
.y2a{bottom:601.452000pt;}
.y278{bottom:602.565333pt;}
.y219{bottom:603.351333pt;}
.y143{bottom:604.759333pt;}
.ycd{bottom:607.426000pt;}
.y257{bottom:607.585733pt;}
.y4c{bottom:608.118667pt;}
.y1fa{bottom:611.099200pt;}
.y277{bottom:615.116400pt;}
.y5a{bottom:616.118667pt;}
.y175{bottom:617.452000pt;}
.y256{bottom:620.136933pt;}
.y14{bottom:621.452000pt;}
.y1f9{bottom:621.569467pt;}
.y11c{bottom:622.481067pt;}
.y78{bottom:622.785333pt;}
.y191{bottom:624.118667pt;}
.y218{bottom:624.291733pt;}
.y1a4{bottom:624.486267pt;}
.y104{bottom:626.092667pt;}
.y29{bottom:626.785333pt;}
.y276{bottom:627.667733pt;}
.y142{bottom:628.759333pt;}
.y255{bottom:632.688133pt;}
.ycc{bottom:632.759333pt;}
.y4b{bottom:633.452000pt;}
.y217{bottom:634.761867pt;}
.y1c7{bottom:636.305200pt;}
.yef{bottom:641.452000pt;}
.y1f8{bottom:642.509867pt;}
.y13{bottom:646.785333pt;}
.y11b{bottom:647.814400pt;}
.y77{bottom:648.118667pt;}
.y190{bottom:649.452000pt;}
.y1a3{bottom:649.819600pt;}
.y174{bottom:650.785333pt;}
.y103{bottom:651.426000pt;}
.y28{bottom:652.118667pt;}
.y141{bottom:652.759333pt;}
.y1f7{bottom:652.980000pt;}
.y1c6{bottom:655.300133pt;}
.y216{bottom:655.702267pt;}
.y254{bottom:657.790533pt;}
.ycb{bottom:658.092667pt;}
.y4a{bottom:658.785333pt;}
.y1f6{bottom:663.450267pt;}
.y215{bottom:666.172533pt;}
.yee{bottom:666.785333pt;}
.y253{bottom:670.341733pt;}
.y12{bottom:672.118667pt;}
.y11a{bottom:673.147733pt;}
.y76{bottom:673.452000pt;}
.y1c5{bottom:674.295067pt;}
.y18f{bottom:674.785333pt;}
.y1a2{bottom:675.152933pt;}
.y173{bottom:676.118667pt;}
.y102{bottom:676.759333pt;}
.y27{bottom:677.452000pt;}
.y252{bottom:682.892933pt;}
.yca{bottom:683.426000pt;}
.y49{bottom:684.118667pt;}
.y1f5{bottom:684.390667pt;}
.y214{bottom:688.159867pt;}
.yed{bottom:692.118667pt;}
.y1c4{bottom:693.290000pt;}
.y1f4{bottom:694.860800pt;}
.yae{bottom:695.163467pt;}
.y1b1{bottom:698.628133pt;}
.y75{bottom:698.785333pt;}
.y213{bottom:699.677067pt;}
.y18e{bottom:700.118667pt;}
.y1a1{bottom:700.486267pt;}
.y140{bottom:700.759333pt;}
.y26{bottom:702.785333pt;}
.y2c9{bottom:703.961467pt;}
.y1f3{bottom:705.331067pt;}
.y119{bottom:707.814400pt;}
.yc9{bottom:708.759333pt;}
.y48{bottom:709.452000pt;}
.y212{bottom:710.147333pt;}
.y1b4{bottom:710.628133pt;}
.y16e{bottom:710.785333pt;}
.y5{bottom:712.207200pt;}
.y291{bottom:714.673867pt;}
.y101{bottom:716.759333pt;}
.yec{bottom:717.452000pt;}
.yad{bottom:720.496800pt;}
.y8e{bottom:720.759333pt;}
.y11{bottom:722.785333pt;}
.y74{bottom:724.118667pt;}
.y18d{bottom:725.452000pt;}
.y1a0{bottom:725.819600pt;}
.y13f{bottom:726.092667pt;}
.y1f2{bottom:726.271467pt;}
.y25{bottom:728.118667pt;}
.y211{bottom:731.087733pt;}
.y1c3{bottom:731.280000pt;}
.yc8{bottom:734.092667pt;}
.y47{bottom:734.785333pt;}
.y210{bottom:741.558000pt;}
.yeb{bottom:742.785333pt;}
.y154{bottom:743.426000pt;}
.y4{bottom:744.207200pt;}
.yac{bottom:745.830133pt;}
.y1f1{bottom:747.211867pt;}
.y10{bottom:748.118667pt;}
.y73{bottom:749.452000pt;}
.y1c2{bottom:750.274933pt;}
.y18c{bottom:750.785333pt;}
.y19f{bottom:751.152933pt;}
.y13e{bottom:751.426000pt;}
.y20f{bottom:752.028133pt;}
.y24{bottom:753.452000pt;}
.y251{bottom:757.651867pt;}
.y1f0{bottom:757.682000pt;}
.y68{bottom:759.426000pt;}
.y46{bottom:760.118667pt;}
.yea{bottom:768.118667pt;}
.y1c1{bottom:769.270000pt;}
.yab{bottom:771.163467pt;}
.y8d{bottom:771.426000pt;}
.y153{bottom:772.759333pt;}
.y20e{bottom:772.968533pt;}
.yf{bottom:773.452000pt;}
.y72{bottom:774.785333pt;}
.y13d{bottom:775.426000pt;}
.y18b{bottom:776.118667pt;}
.y3{bottom:776.207200pt;}
.y19e{bottom:776.486267pt;}
.y250{bottom:776.838667pt;}
.y1ef{bottom:778.622400pt;}
.y23{bottom:778.785333pt;}
.y20d{bottom:783.438667pt;}
.y67{bottom:784.759333pt;}
.y45{bottom:785.452000pt;}
.y1c0{bottom:788.264933pt;}
.y1ee{bottom:789.092667pt;}
.ye9{bottom:793.452000pt;}
.y20c{bottom:793.908933pt;}
.y24f{bottom:796.025600pt;}
.yaa{bottom:796.496800pt;}
.y8c{bottom:796.759333pt;}
.ye{bottom:798.785333pt;}
.y13c{bottom:799.426000pt;}
.y1ed{bottom:799.562800pt;}
.y71{bottom:800.118667pt;}
.y18a{bottom:801.452000pt;}
.y19d{bottom:801.819600pt;}
.y152{bottom:802.092667pt;}
.y22{bottom:804.118667pt;}
.y16d{bottom:806.785333pt;}
.y66{bottom:810.092667pt;}
.y44{bottom:810.785333pt;}
.y1aa{bottom:812.490000pt;}
.y20b{bottom:814.849333pt;}
.y24e{bottom:815.212400pt;}
.ye8{bottom:818.785333pt;}
.y1ec{bottom:820.503200pt;}
.ya9{bottom:821.830133pt;}
.y8b{bottom:822.092667pt;}
.y13b{bottom:823.426000pt;}
.y70{bottom:825.452000pt;}
.y1bf{bottom:826.254800pt;}
.y189{bottom:826.785333pt;}
.y19c{bottom:827.152933pt;}
.y21{bottom:829.452000pt;}
.y1eb{bottom:830.973467pt;}
.y151{bottom:831.426000pt;}
.y24d{bottom:834.399200pt;}
.y65{bottom:835.426000pt;}
.y20a{bottom:835.789733pt;}
.y43{bottom:836.118667pt;}
.y16c{bottom:838.785333pt;}
.y1ea{bottom:841.443600pt;}
.ye7{bottom:844.118667pt;}
.y1be{bottom:845.249733pt;}
.y209{bottom:846.259867pt;}
.ya8{bottom:847.163467pt;}
.y8a{bottom:847.426000pt;}
.yd{bottom:849.452000pt;}
.y2{bottom:849.540533pt;}
.y6f{bottom:850.785333pt;}
.y1e9{bottom:851.913867pt;}
.y172{bottom:852.118667pt;}
.y19b{bottom:852.486267pt;}
.y24c{bottom:853.586000pt;}
.y20{bottom:854.785333pt;}
.y208{bottom:856.730133pt;}
.y64{bottom:860.759333pt;}
.y42{bottom:861.452000pt;}
.y1bd{bottom:864.244667pt;}
.ybb{bottom:864.759333pt;}
.ye6{bottom:869.452000pt;}
.y16b{bottom:870.785333pt;}
.y13a{bottom:871.426000pt;}
.ya7{bottom:872.496800pt;}
.y89{bottom:872.759333pt;}
.y1e8{bottom:872.854267pt;}
.yc{bottom:874.785333pt;}
.y6e{bottom:876.118667pt;}
.y188{bottom:877.452000pt;}
.y207{bottom:877.670533pt;}
.y19a{bottom:877.819600pt;}
.y1f{bottom:880.118667pt;}
.y1bc{bottom:883.239733pt;}
.y1e7{bottom:883.324400pt;}
.y171{bottom:885.452000pt;}
.y63{bottom:886.092667pt;}
.y41{bottom:886.785333pt;}
.y206{bottom:888.140667pt;}
.yba{bottom:890.092667pt;}
.y1e6{bottom:893.794533pt;}
.ye5{bottom:894.785333pt;}
.y139{bottom:895.426000pt;}
.ya6{bottom:897.830133pt;}
.y88{bottom:898.092667pt;}
.yb{bottom:900.118667pt;}
.y6d{bottom:901.452000pt;}
.y293{bottom:901.479067pt;}
.y1bb{bottom:902.234800pt;}
.y16a{bottom:902.785333pt;}
.y1{bottom:902.873867pt;}
.y199{bottom:903.152933pt;}
.y1e5{bottom:904.264800pt;}
.y1e{bottom:905.452000pt;}
.y2c7{bottom:907.236933pt;}
.y205{bottom:909.081200pt;}
.y62{bottom:911.426000pt;}
.y40{bottom:912.118667pt;}
.yb9{bottom:915.426000pt;}
.y170{bottom:918.785333pt;}
.y138{bottom:919.426000pt;}
.ye4{bottom:920.118667pt;}
.y169{bottom:922.785333pt;}
.ya5{bottom:923.163467pt;}
.y87{bottom:923.426000pt;}
.y204{bottom:924.158267pt;}
.y1e4{bottom:925.205200pt;}
.ya{bottom:925.452000pt;}
.y6c{bottom:926.785333pt;}
.y187{bottom:928.118667pt;}
.y198{bottom:928.486267pt;}
.y1d{bottom:930.785333pt;}
.y1b6{bottom:933.903600pt;}
.y1ae{bottom:935.236933pt;}
.y1e3{bottom:935.675467pt;}
.y61{bottom:936.759333pt;}
.y3f{bottom:937.452000pt;}
.yb8{bottom:940.759333pt;}
.y137{bottom:943.426000pt;}
.y203{bottom:945.098667pt;}
.ye3{bottom:945.452000pt;}
.ya4{bottom:948.496800pt;}
.y86{bottom:948.759333pt;}
.y9{bottom:950.785333pt;}
.y6b{bottom:952.118667pt;}
.y292{bottom:953.750933pt;}
.y1ba{bottom:954.708667pt;}
.y202{bottom:956.092267pt;}
.y1c{bottom:956.118667pt;}
.y1e2{bottom:956.615867pt;}
.y60{bottom:962.092667pt;}
.y3e{bottom:962.785333pt;}
.yb7{bottom:966.092667pt;}
.y1e1{bottom:967.086000pt;}
.y136{bottom:967.426000pt;}
.ye2{bottom:970.785333pt;}
.ya3{bottom:973.830133pt;}
.y85{bottom:974.092667pt;}
.y8{bottom:976.118667pt;}
.y6a{bottom:977.452000pt;}
.y150{bottom:978.092667pt;}
.y186{bottom:978.785333pt;}
.y15d{bottom:980.759333pt;}
.y5f{bottom:987.426000pt;}
.y3d{bottom:988.118667pt;}
.y168{bottom:989.452000pt;}
.yb6{bottom:991.426000pt;}
.ye1{bottom:996.118667pt;}
.ya2{bottom:999.163467pt;}
.y84{bottom:999.426000pt;}
.y7{bottom:1001.452000pt;}
.y69{bottom:1002.785333pt;}
.y1e0{bottom:1002.914533pt;}
.y1b{bottom:1006.785333pt;}
.y14f{bottom:1007.426000pt;}
.y15c{bottom:1010.092667pt;}
.y5e{bottom:1012.759333pt;}
.y2af{bottom:1012.974800pt;}
.y1ab{bottom:1013.017067pt;}
.y135{bottom:1015.426000pt;}
.yb5{bottom:1016.759333pt;}
.ya1{bottom:1024.496800pt;}
.y83{bottom:1024.759333pt;}
.y16f{bottom:1026.785333pt;}
.y185{bottom:1028.118667pt;}
.y294{bottom:1036.114133pt;}
.y14e{bottom:1036.759333pt;}
.y1b7{bottom:1037.447467pt;}
.y5d{bottom:1038.092667pt;}
.y1b8{bottom:1038.350400pt;}
.y134{bottom:1039.426000pt;}
.y1ad{bottom:1039.683733pt;}
.y6{bottom:1046.785333pt;}
.y226{bottom:1047.683733pt;}
.y82{bottom:1050.092667pt;}
.y1b3{bottom:1056.570267pt;}
.y1b0{bottom:1057.903600pt;}
.y229{bottom:1060.974800pt;}
.y296{bottom:1062.092667pt;}
.y5c{bottom:1063.426000pt;}
.h1f{height:28.596578pt;}
.h13{height:30.001009pt;}
.h12{height:30.004284pt;}
.h1c{height:32.304819pt;}
.h20{height:34.204772pt;}
.h11{height:34.910469pt;}
.h19{height:35.241323pt;}
.h1e{height:35.922931pt;}
.h1d{height:35.923465pt;}
.h15{height:37.533902pt;}
.h16{height:37.993415pt;}
.h1a{height:41.618152pt;}
.h9{height:42.117188pt;}
.ha{height:44.437500pt;}
.h1b{height:44.591080pt;}
.h18{height:45.335041pt;}
.h7{height:46.796875pt;}
.h27{height:47.634539pt;}
.h24{height:48.091277pt;}
.h10{height:48.356978pt;}
.h23{height:51.722602pt;}
.he{height:55.556782pt;}
.h17{height:56.117877pt;}
.h6{height:56.156250pt;}
.h8{height:56.843750pt;}
.hc{height:61.580729pt;}
.hb{height:71.054688pt;}
.h21{height:72.779889pt;}
.h25{height:93.177258pt;}
.h4{height:93.593750pt;}
.h26{height:95.268610pt;}
.h14{height:116.931820pt;}
.hf{height:128.617935pt;}
.h5{height:140.390625pt;}
.h3{height:159.109375pt;}
.h2{height:191.867188pt;}
.h22{height:194.253828pt;}
.hd{height:213.679211pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:105.826800pt;}
.x11{left:114.908800pt;}
.x6{left:116.224667pt;}
.x3{left:117.117067pt;}
.x1{left:118.450400pt;}
.x4{left:120.503867pt;}
.x15{left:121.810400pt;}
.x5{left:129.766267pt;}
.xa{left:141.571067pt;}
.x9{left:145.511867pt;}
.x12{left:196.331600pt;}
.xd{left:208.262000pt;}
.x13{left:218.474267pt;}
.xf{left:320.058667pt;}
.x7{left:329.962267pt;}
.xe{left:419.073733pt;}
.x8{left:427.086667pt;}
.x14{left:429.957200pt;}
.x10{left:438.667467pt;}
.xc{left:672.159200pt;}
.xb{left:727.897467pt;}
}




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