
    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_5fb52c2c98a4af06a1f4e75a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_5c79a15ae28e4067382dad13.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_215e93f531c7db7dbea1f56f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_ffb8911bcd834786771f70a7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_13e13b4e7e981bc3115aa51d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_75875bd35b17340b883ac50d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.724121;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_448c44a46c9a274f60814de2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.092773;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_c872db6e894d28fe0b4ef7b2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_22006f6d561f43d9c82a7d04.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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_ad5d29efca3c71efd89e3992.woff')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_273a85fa02491ec4404d5efc.woff')format("woff");}.ffb{font-family:ffb;line-height:0.986816;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_b43f96590556ef2dc2f60092.woff')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_e2b0a213be1a2281a2013aab.woff')format("woff");}.ffd{font-family:ffd;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b7f6cbccc70f885f476aaa2c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.689453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cfed87a8666251eb35598326.woff')format("woff");}.fff{font-family:fff;line-height:0.986816;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);}
.v5{vertical-align:-21.978000px;}
.v2{vertical-align:-1.452000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.452000px;}
.v1{vertical-align:22.177800px;}
.v4{vertical-align:23.430000px;}
.ls18{letter-spacing:-0.792000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.001242px;}
.ls3{letter-spacing:7.385400px;}
.ls19{letter-spacing:13.569600px;}
.ls0{letter-spacing:17.172000px;}
.ls5{letter-spacing:108.121200px;}
.ls6{letter-spacing:111.210000px;}
.lsd{letter-spacing:112.941720px;}
.ls9{letter-spacing:127.974000px;}
.ls4{letter-spacing:138.487800px;}
.lsb{letter-spacing:157.381920px;}
.ls8{letter-spacing:168.919320px;}
.lsc{letter-spacing:182.209668px;}
.lsf{letter-spacing:183.002520px;}
.lsa{letter-spacing:204.671868px;}
.ls7{letter-spacing:206.766468px;}
.ls11{letter-spacing:207.595320px;}
.ls16{letter-spacing:209.690520px;}
.ls14{letter-spacing:218.068920px;}
.ls13{letter-spacing:229.573920px;}
.lse{letter-spacing:240.765468px;}
.ls17{letter-spacing:262.320468px;}
.ls12{letter-spacing:263.351268px;}
.ls10{letter-spacing:264.415068px;}
.ls15{letter-spacing:273.824868px;}
.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;}
}
.ws0{word-spacing:-18.216000px;}
.ws21{word-spacing:-18.084000px;}
.ws1{word-spacing:-14.904000px;}
.ws51{word-spacing:-11.543400px;}
.ws32{word-spacing:-10.581450px;}
.ws22{word-spacing:-10.542972px;}
.ws76{word-spacing:-8.316000px;}
.ws52{word-spacing:-7.854000px;}
.ws78{word-spacing:-4.884000px;}
.ws56{word-spacing:-3.312000px;}
.ws29{word-spacing:-3.168000px;}
.ws43{word-spacing:-3.036000px;}
.ws6b{word-spacing:-2.376000px;}
.ws5b{word-spacing:-2.310000px;}
.wsd{word-spacing:-1.452000px;}
.ws3{word-spacing:-1.122000px;}
.ws4b{word-spacing:-1.056000px;}
.ws36{word-spacing:-0.660000px;}
.ws39{word-spacing:-0.528000px;}
.ws37{word-spacing:-0.384780px;}
.ws3a{word-spacing:-0.307824px;}
.ws3f{word-spacing:-0.264000px;}
.ws38{word-spacing:-0.198000px;}
.ws3e{word-spacing:-0.132000px;}
.ws2{word-spacing:0.000000px;}
.ws40{word-spacing:0.264000px;}
.ws4e{word-spacing:0.500214px;}
.ws4d{word-spacing:0.858000px;}
.ws58{word-spacing:1.007424px;}
.ws49{word-spacing:1.518000px;}
.wsa{word-spacing:1.650000px;}
.ws57{word-spacing:1.728000px;}
.ws1d{word-spacing:1.782000px;}
.ws8{word-spacing:2.178000px;}
.ws13{word-spacing:2.244000px;}
.wsc{word-spacing:2.640000px;}
.ws6f{word-spacing:2.970000px;}
.ws48{word-spacing:3.564000px;}
.ws50{word-spacing:3.630000px;}
.ws5c{word-spacing:3.762000px;}
.ws85{word-spacing:3.900000px;}
.ws61{word-spacing:3.960000px;}
.ws44{word-spacing:4.092000px;}
.ws7b{word-spacing:4.260000px;}
.ws5a{word-spacing:4.356000px;}
.ws7{word-spacing:4.482000px;}
.ws4{word-spacing:4.488000px;}
.ws11{word-spacing:4.554000px;}
.ws6c{word-spacing:4.686000px;}
.ws60{word-spacing:5.016000px;}
.wse{word-spacing:5.676000px;}
.ws28{word-spacing:5.940000px;}
.ws5d{word-spacing:6.270000px;}
.ws9{word-spacing:7.128000px;}
.ws47{word-spacing:7.524000px;}
.ws10{word-spacing:7.590000px;}
.ws5{word-spacing:8.250000px;}
.ws79{word-spacing:8.280000px;}
.ws2c{word-spacing:8.514000px;}
.ws72{word-spacing:8.910000px;}
.ws4f{word-spacing:9.504000px;}
.ws5f{word-spacing:9.702000px;}
.ws6{word-spacing:9.768000px;}
.ws18{word-spacing:9.834000px;}
.ws74{word-spacing:10.494000px;}
.ws42{word-spacing:10.626000px;}
.ws17{word-spacing:11.154000px;}
.ws45{word-spacing:11.484000px;}
.ws1c{word-spacing:11.946000px;}
.ws1b{word-spacing:12.012000px;}
.ws27{word-spacing:12.078000px;}
.ws26{word-spacing:12.144000px;}
.ws75{word-spacing:12.276000px;}
.ws20{word-spacing:12.474000px;}
.ws6a{word-spacing:12.606000px;}
.ws12{word-spacing:12.738000px;}
.ws80{word-spacing:13.260000px;}
.ws24{word-spacing:13.332000px;}
.ws64{word-spacing:13.398000px;}
.ws69{word-spacing:13.530000px;}
.ws3b{word-spacing:13.728000px;}
.ws7a{word-spacing:14.280000px;}
.ws7d{word-spacing:15.180000px;}
.ws66{word-spacing:15.444000px;}
.ws6e{word-spacing:15.972000px;}
.ws1f{word-spacing:16.500000px;}
.ws19{word-spacing:16.632000px;}
.ws1a{word-spacing:16.698000px;}
.ws54{word-spacing:16.830000px;}
.ws5e{word-spacing:17.292000px;}
.ws77{word-spacing:17.688000px;}
.wsb{word-spacing:17.820000px;}
.ws53{word-spacing:18.150000px;}
.ws7c{word-spacing:19.080000px;}
.ws41{word-spacing:19.140000px;}
.ws4c{word-spacing:20.460000px;}
.ws65{word-spacing:20.724000px;}
.ws6d{word-spacing:21.186000px;}
.ws71{word-spacing:22.110000px;}
.ws62{word-spacing:22.638000px;}
.ws2a{word-spacing:22.704000px;}
.ws3d{word-spacing:23.628000px;}
.ws7f{word-spacing:24.240000px;}
.ws46{word-spacing:24.552000px;}
.ws83{word-spacing:25.860000px;}
.ws23{word-spacing:25.872000px;}
.ws84{word-spacing:26.340000px;}
.ws59{word-spacing:27.192000px;}
.ws4a{word-spacing:27.588000px;}
.ws14{word-spacing:27.852000px;}
.ws16{word-spacing:28.116000px;}
.ws15{word-spacing:29.832000px;}
.ws55{word-spacing:31.878000px;}
.ws73{word-spacing:33.660000px;}
.ws25{word-spacing:34.782000px;}
.ws68{word-spacing:35.244000px;}
.ws7e{word-spacing:36.720000px;}
.wsf{word-spacing:37.158000px;}
.ws2b{word-spacing:37.224000px;}
.ws67{word-spacing:37.356000px;}
.ws63{word-spacing:37.488000px;}
.ws35{word-spacing:37.752000px;}
.ws3c{word-spacing:42.042000px;}
.ws82{word-spacing:42.480000px;}
.ws1e{word-spacing:44.748000px;}
.ws70{word-spacing:52.074000px;}
.ws81{word-spacing:61.680000px;}
.ws2f{word-spacing:97.944000px;}
.ws31{word-spacing:132.990000px;}
.ws30{word-spacing:153.846000px;}
.ws34{word-spacing:257.182200px;}
.ws2e{word-spacing:257.512200px;}
.ws33{word-spacing:270.692400px;}
.ws2d{word-spacing:329.960400px;}
._17{margin-left:-65.664000px;}
._4a{margin-left:-18.552834px;}
._50{margin-left:-15.405241px;}
._4f{margin-left:-13.556159px;}
._16{margin-left:-12.357000px;}
._26{margin-left:-11.114400px;}
._15{margin-left:-9.385200px;}
._19{margin-left:-7.438200px;}
._d{margin-left:-5.956441px;}
._6{margin-left:-4.809600px;}
._0{margin-left:-3.486000px;}
._b{margin-left:-2.422200px;}
._5{margin-left:-1.372800px;}
._1{width:1.587241px;}
._a{width:3.336359px;}
._7{width:5.121600px;}
._12{width:6.233641px;}
._9{width:7.335607px;}
._8{width:8.352359px;}
._c{width:10.210200px;}
._f{width:11.847000px;}
._13{width:13.622400px;}
._1e{width:15.602400px;}
._e{width:16.618800px;}
._4c{width:18.018000px;}
._18{width:19.120200px;}
._1a{width:20.869200px;}
._10{width:21.928441px;}
._11{width:23.048759px;}
._4{width:24.576000px;}
._2d{width:25.597800px;}
._14{width:26.598000px;}
._22{width:27.660600px;}
._24{width:28.703400px;}
._2a{width:30.181800px;}
._20{width:31.231200px;}
._1d{width:32.610600px;}
._21{width:34.069200px;}
._23{width:35.178000px;}
._28{width:36.410400px;}
._1b{width:37.811400px;}
._25{width:38.940000px;}
._2b{width:40.629600px;}
._1c{width:42.992400px;}
._4b{width:44.319000px;}
._49{width:45.790800px;}
._29{width:46.860000px;}
._1f{width:49.156800px;}
._2e{width:50.212800px;}
._4d{width:53.262359px;}
._2c{width:60.423000px;}
._4e{width:64.150800px;}
._35{width:69.828000px;}
._31{width:74.712000px;}
._27{width:97.614000px;}
._43{width:101.607000px;}
._34{width:115.593959px;}
._32{width:118.008000px;}
._36{width:134.565600px;}
._3f{width:140.250000px;}
._38{width:141.306000px;}
._46{width:149.688000px;}
._2f{width:151.998000px;}
._2{width:153.107843px;}
._3c{width:161.238000px;}
._40{width:165.000000px;}
._39{width:166.056000px;}
._44{width:167.112000px;}
._42{width:168.168000px;}
._3d{width:176.550000px;}
._47{width:177.606000px;}
._3{width:183.490826px;}
._33{width:194.370000px;}
._48{width:207.616200px;}
._30{width:251.836200px;}
._3e{width:266.640000px;}
._3b{width:281.094000px;}
._37{width:313.029600px;}
._3a{width:316.131600px;}
._45{width:320.562000px;}
._41{width:351.978000px;}
.fc5{color:rgb(237,29,36);}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:38.478000px;}
.fsa{font-size:41.976000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:56.875050px;}
.y43{bottom:73.075050px;}
.y3{bottom:81.772500px;}
.y2a5{bottom:113.929200px;}
.y1b0{bottom:114.818400px;}
.y1df{bottom:118.630200px;}
.y1d8{bottom:118.646700px;}
.y331{bottom:121.749900px;}
.y30e{bottom:121.794900px;}
.y77{bottom:125.078400px;}
.y2d9{bottom:127.749900px;}
.y105{bottom:128.617350px;}
.y364{bottom:128.839350px;}
.y1ca{bottom:131.747400px;}
.y2a4{bottom:132.679200px;}
.y1af{bottom:134.321400px;}
.yac{bottom:134.450400px;}
.y279{bottom:135.060750px;}
.y133{bottom:138.044250px;}
.y1de{bottom:138.133200px;}
.y1d7{bottom:138.149700px;}
.y217{bottom:140.060250px;}
.y330{bottom:140.499900px;}
.y30d{bottom:140.544900px;}
.y76{bottom:144.581400px;}
.y196{bottom:146.066550px;}
.y2d8{bottom:146.499900px;}
.y104{bottom:148.120350px;}
.y363{bottom:148.639350px;}
.y1c9{bottom:151.250400px;}
.y2a3{bottom:151.429200px;}
.yd7{bottom:153.013350px;}
.y1ae{bottom:153.824400px;}
.yab{bottom:153.953400px;}
.y278{bottom:154.563750px;}
.y161{bottom:154.890750px;}
.y24d{bottom:155.636250px;}
.y1d1{bottom:156.071919px;}
.y132{bottom:157.547250px;}
.y1dd{bottom:157.636200px;}
.y1d6{bottom:157.652700px;}
.y216{bottom:158.804250px;}
.y32f{bottom:159.249900px;}
.y30c{bottom:159.294900px;}
.y75{bottom:164.084400px;}
.y195{bottom:165.866550px;}
.y103{bottom:167.623350px;}
.y362{bottom:168.439350px;}
.y2a2{bottom:170.179200px;}
.y1cf{bottom:170.374200px;}
.y1c8{bottom:170.753400px;}
.y2d7{bottom:171.624900px;}
.yd6{bottom:172.516350px;}
.y1ad{bottom:173.327400px;}
.yaa{bottom:173.456400px;}
.y277{bottom:174.066750px;}
.y24c{bottom:174.380250px;}
.y160{bottom:174.393750px;}
.y2a{bottom:174.622050px;}
.y1d0{bottom:175.868850px;}
.y1dc{bottom:177.139200px;}
.y1d5{bottom:177.155700px;}
.y215{bottom:177.548250px;}
.y32e{bottom:177.999900px;}
.y74{bottom:183.587400px;}
.y30b{bottom:184.419900px;}
.y102{bottom:187.126350px;}
.y2a1{bottom:188.929200px;}
.y1ce{bottom:190.174200px;}
.y1c7{bottom:190.256400px;}
.y2d6{bottom:190.374900px;}
.y29{bottom:190.822050px;}
.y194{bottom:192.797400px;}
.y1ac{bottom:192.830400px;}
.ya9{bottom:192.959400px;}
.y24b{bottom:193.124250px;}
.y15f{bottom:193.896750px;}
.y131{bottom:194.061750px;}
.y214{bottom:196.292250px;}
.y1db{bottom:196.642200px;}
.y1d4{bottom:196.658700px;}
.y32d{bottom:196.749900px;}
.y73{bottom:203.090400px;}
.y30a{bottom:203.169900px;}
.y101{bottom:206.629350px;}
.y28{bottom:207.022050px;}
.yd5{bottom:209.030850px;}
.y2d5{bottom:209.124900px;}
.y1c6{bottom:209.759400px;}
.y276{bottom:210.581250px;}
.y24a{bottom:211.868250px;}
.y1ab{bottom:212.333400px;}
.ya8{bottom:212.462400px;}
.y15e{bottom:213.399750px;}
.y130{bottom:213.564750px;}
.y2a0{bottom:214.054200px;}
.y361{bottom:214.479900px;}
.y213{bottom:215.036250px;}
.y32c{bottom:215.499900px;}
.y1da{bottom:216.145200px;}
.y1d3{bottom:216.161700px;}
.y193{bottom:221.817750px;}
.y309{bottom:221.919900px;}
.y72{bottom:222.593400px;}
.y2d4{bottom:227.874900px;}
.y1c5{bottom:229.262400px;}
.y249{bottom:230.612250px;}
.y1aa{bottom:231.836400px;}
.ya7{bottom:231.965400px;}
.y29f{bottom:232.804200px;}
.y15d{bottom:232.902750px;}
.y32b{bottom:234.249900px;}
.y360{bottom:234.279900px;}
.y1d9{bottom:235.648200px;}
.y1d2{bottom:235.664700px;}
.y71{bottom:242.096400px;}
.y100{bottom:243.143850px;}
.yd4{bottom:245.545350px;}
.y2d3{bottom:246.624900px;}
.y308{bottom:247.044900px;}
.y275{bottom:247.095750px;}
.y1c4{bottom:248.765400px;}
.y248{bottom:249.356250px;}
.y12f{bottom:250.079250px;}
.y212{bottom:250.791750px;}
.y192{bottom:250.838100px;}
.y1a9{bottom:251.339400px;}
.ya6{bottom:251.468400px;}
.y29e{bottom:251.554200px;}
.y15c{bottom:252.405750px;}
.y27{bottom:252.430650px;}
.y35f{bottom:253.029900px;}
.y32a{bottom:259.374900px;}
.y70{bottom:261.599400px;}
.yff{bottom:262.646850px;}
.yd3{bottom:265.048350px;}
.y307{bottom:265.794900px;}
.y247{bottom:268.100250px;}
.y1c3{bottom:268.268400px;}
.y211{bottom:269.535750px;}
.y12e{bottom:269.582250px;}
.y1a8{bottom:270.842400px;}
.ya5{bottom:270.971400px;}
.y2d2{bottom:271.749900px;}
.y15b{bottom:271.908750px;}
.y26{bottom:272.230650px;}
.y1e2{bottom:273.625200px;}
.y29d{bottom:276.679200px;}
.y329{bottom:278.124900px;}
.y35e{bottom:278.154900px;}
.y191{bottom:279.858300px;}
.y6f{bottom:281.102400px;}
.yfe{bottom:282.149850px;}
.y274{bottom:283.610250px;}
.y306{bottom:284.544900px;}
.y246{bottom:286.844250px;}
.y1c2{bottom:287.771400px;}
.y210{bottom:288.279750px;}
.y12d{bottom:289.085250px;}
.y1a7{bottom:290.345400px;}
.ya4{bottom:290.474400px;}
.y2d1{bottom:290.499900px;}
.y25{bottom:292.030650px;}
.y1e1{bottom:295.225350px;}
.y29c{bottom:295.429200px;}
.y328{bottom:296.874900px;}
.y35d{bottom:296.904900px;}
.yd2{bottom:301.562850px;}
.yfd{bottom:301.649850px;}
.y273{bottom:303.113250px;}
.y305{bottom:303.294900px;}
.y245{bottom:305.588250px;}
.y20f{bottom:307.023750px;}
.y1c1{bottom:307.274400px;}
.y15a{bottom:308.423250px;}
.y12c{bottom:308.588250px;}
.y190{bottom:308.878650px;}
.y2d0{bottom:309.249900px;}
.y1a6{bottom:309.848400px;}
.ya3{bottom:309.977400px;}
.y29b{bottom:314.179200px;}
.y35c{bottom:315.654900px;}
.y1e0{bottom:316.825350px;}
.y6e{bottom:317.616900px;}
.yfc{bottom:321.127650px;}
.y327{bottom:321.999900px;}
.y304{bottom:322.044900px;}
.y272{bottom:322.616250px;}
.y244{bottom:324.332250px;}
.y24{bottom:324.585150px;}
.y20e{bottom:325.767750px;}
.y1c0{bottom:326.777400px;}
.y159{bottom:327.926250px;}
.y2cf{bottom:327.999900px;}
.y12b{bottom:328.091250px;}
.y1a5{bottom:329.351400px;}
.ya2{bottom:329.480400px;}
.y29a{bottom:332.929200px;}
.y35b{bottom:334.404900px;}
.y6d{bottom:337.119900px;}
.y18f{bottom:337.899000px;}
.yd1{bottom:338.077350px;}
.y326{bottom:340.749900px;}
.y271{bottom:342.119250px;}
.y243{bottom:343.076250px;}
.y23{bottom:344.385150px;}
.y20d{bottom:344.511750px;}
.y1bf{bottom:346.280400px;}
.y303{bottom:347.169900px;}
.y12a{bottom:347.594250px;}
.y1a4{bottom:348.854400px;}
.ya1{bottom:348.983400px;}
.y2ce{bottom:353.124900px;}
.y6c{bottom:356.622900px;}
.yd0{bottom:357.580350px;}
.yfb{bottom:357.642150px;}
.y299{bottom:358.054200px;}
.y325{bottom:359.499900px;}
.y35a{bottom:359.529900px;}
.y270{bottom:361.622250px;}
.y242{bottom:361.820250px;}
.y20c{bottom:363.255750px;}
.y22{bottom:364.185150px;}
.y158{bottom:364.440750px;}
.y1be{bottom:365.783400px;}
.y302{bottom:365.919900px;}
.y18e{bottom:366.919350px;}
.y129{bottom:367.097250px;}
.y1a3{bottom:368.357400px;}
.ya0{bottom:368.486400px;}
.y2cd{bottom:371.874900px;}
.y6b{bottom:376.125900px;}
.y298{bottom:376.804200px;}
.ycf{bottom:377.083350px;}
.yfa{bottom:377.145150px;}
.y324{bottom:378.249900px;}
.y359{bottom:378.279900px;}
.y42{bottom:380.429550px;}
.y241{bottom:380.564250px;}
.y26f{bottom:381.125250px;}
.y20b{bottom:381.999750px;}
.y157{bottom:383.943750px;}
.y21{bottom:383.985150px;}
.y301{bottom:384.669900px;}
.y1bd{bottom:385.286400px;}
.y128{bottom:386.600250px;}
.y1a2{bottom:387.860400px;}
.y9f{bottom:387.989400px;}
.y2cc{bottom:390.624900px;}
.y297{bottom:395.554200px;}
.y6a{bottom:395.628900px;}
.y18d{bottom:395.936550px;}
.yf9{bottom:396.648150px;}
.y323{bottom:396.999900px;}
.y358{bottom:397.029900px;}
.y240{bottom:399.308250px;}
.y26e{bottom:400.628250px;}
.y20a{bottom:400.743750px;}
.y41{bottom:400.882050px;}
.y300{bottom:403.419900px;}
.y156{bottom:403.446750px;}
.y20{bottom:403.785150px;}
.y1bc{bottom:404.789400px;}
.y127{bottom:406.103250px;}
.y1a1{bottom:407.363400px;}
.y9e{bottom:407.492400px;}
.y2cb{bottom:409.374900px;}
.yce{bottom:413.597850px;}
.y69{bottom:415.131900px;}
.y322{bottom:415.749900px;}
.y357{bottom:415.779900px;}
.yf8{bottom:416.151150px;}
.y23f{bottom:418.052250px;}
.y209{bottom:419.487750px;}
.y26d{bottom:420.131250px;}
.y296{bottom:420.679200px;}
.y40{bottom:421.334550px;}
.y155{bottom:422.949750px;}
.y1f{bottom:423.585150px;}
.y1bb{bottom:424.292400px;}
.y18c{bottom:424.960050px;}
.y126{bottom:425.606250px;}
.y1a0{bottom:426.866400px;}
.y9d{bottom:426.995400px;}
.y2ca{bottom:428.124900px;}
.y2ff{bottom:428.544900px;}
.y356{bottom:434.529900px;}
.y68{bottom:434.634900px;}
.y23e{bottom:436.796250px;}
.y208{bottom:438.231750px;}
.y295{bottom:439.429200px;}
.y321{bottom:440.874900px;}
.y3f{bottom:441.787050px;}
.y154{bottom:442.452750px;}
.y1e{bottom:443.385150px;}
.y1ba{bottom:443.795400px;}
.y125{bottom:445.109250px;}
.y19f{bottom:446.369400px;}
.y9c{bottom:446.498400px;}
.y2fe{bottom:447.294900px;}
.ycd{bottom:450.112350px;}
.y18b{bottom:452.207700px;}
.yf7{bottom:452.665650px;}
.y2c9{bottom:453.249900px;}
.y67{bottom:454.137900px;}
.y23d{bottom:455.540250px;}
.y26c{bottom:456.645750px;}
.y207{bottom:456.975750px;}
.y294{bottom:458.179200px;}
.y320{bottom:459.624900px;}
.y355{bottom:459.654900px;}
.y153{bottom:461.955750px;}
.y3e{bottom:462.239550px;}
.y1d{bottom:463.185150px;}
.y1b9{bottom:463.298400px;}
.y124{bottom:464.612250px;}
.y19e{bottom:465.872400px;}
.y9b{bottom:466.001400px;}
.y2fd{bottom:466.044900px;}
.ycc{bottom:469.615350px;}
.y2c8{bottom:471.999900px;}
.yf6{bottom:472.150050px;}
.y66{bottom:473.640900px;}
.y23c{bottom:474.284250px;}
.y206{bottom:475.719750px;}
.y18a{bottom:476.957700px;}
.y31f{bottom:478.374900px;}
.y354{bottom:478.404900px;}
.y3d{bottom:482.692050px;}
.y1b8{bottom:482.801400px;}
.y1c{bottom:482.985150px;}
.y293{bottom:483.304200px;}
.y123{bottom:484.115250px;}
.y19d{bottom:485.375400px;}
.y9a{bottom:485.504400px;}
.ycb{bottom:489.118350px;}
.y2c7{bottom:490.749900px;}
.y2fc{bottom:491.169900px;}
.yf5{bottom:491.653050px;}
.y23b{bottom:493.028250px;}
.y65{bottom:493.143900px;}
.y26b{bottom:493.160250px;}
.y205{bottom:494.463750px;}
.y31e{bottom:497.124900px;}
.y353{bottom:497.154900px;}
.y152{bottom:498.470250px;}
.y292{bottom:502.054200px;}
.y1b7{bottom:502.304400px;}
.y19c{bottom:504.878400px;}
.y99{bottom:505.007400px;}
.yca{bottom:508.621350px;}
.y2c6{bottom:509.499900px;}
.y2fb{bottom:509.919900px;}
.yf4{bottom:511.156050px;}
.y23a{bottom:511.772250px;}
.y64{bottom:512.646900px;}
.y26a{bottom:512.663250px;}
.y204{bottom:513.207750px;}
.y1b{bottom:515.539650px;}
.y31d{bottom:515.874900px;}
.y352{bottom:515.904900px;}
.y151{bottom:517.973250px;}
.y122{bottom:520.629750px;}
.y291{bottom:520.804200px;}
.y1b6{bottom:521.807400px;}
.y3c{bottom:523.597050px;}
.y19b{bottom:524.381400px;}
.y98{bottom:524.510400px;}
.y189{bottom:525.566700px;}
.yc9{bottom:528.124350px;}
.y2fa{bottom:528.669900px;}
.y239{bottom:530.516250px;}
.yf3{bottom:530.659050px;}
.y63{bottom:532.149900px;}
.y2c5{bottom:534.624900px;}
.y1a{bottom:535.339650px;}
.y290{bottom:539.554200px;}
.y121{bottom:540.132750px;}
.y31c{bottom:540.999900px;}
.y351{bottom:541.029900px;}
.y1b5{bottom:541.310400px;}
.y19a{bottom:543.884400px;}
.y97{bottom:544.013400px;}
.y3b{bottom:544.049550px;}
.y188{bottom:545.366700px;}
.y2f9{bottom:547.419900px;}
.yc8{bottom:547.627350px;}
.y203{bottom:548.963250px;}
.y269{bottom:549.177750px;}
.y238{bottom:549.260250px;}
.y2c4{bottom:553.374900px;}
.y150{bottom:554.487750px;}
.y19{bottom:555.139650px;}
.y120{bottom:559.635750px;}
.y31b{bottom:559.749900px;}
.y350{bottom:559.779900px;}
.y1b4{bottom:560.813400px;}
.y199{bottom:563.387400px;}
.y96{bottom:563.516400px;}
.y3a{bottom:564.502050px;}
.y28f{bottom:564.679200px;}
.y2f8{bottom:566.169900px;}
.yc7{bottom:567.130350px;}
.yf2{bottom:567.173550px;}
.y202{bottom:567.707250px;}
.y237{bottom:568.004250px;}
.y187{bottom:568.045650px;}
.y62{bottom:568.664400px;}
.y268{bottom:568.680750px;}
.y2c3{bottom:572.124900px;}
.y14f{bottom:573.990750px;}
.y18{bottom:574.939650px;}
.y31a{bottom:578.499900px;}
.y34f{bottom:578.529900px;}
.y1b3{bottom:580.316400px;}
.y198{bottom:582.890400px;}
.y95{bottom:583.019400px;}
.y28e{bottom:583.429200px;}
.y2f7{bottom:584.919900px;}
.y39{bottom:584.954550px;}
.y201{bottom:586.451250px;}
.yf1{bottom:586.468350px;}
.yc6{bottom:586.633350px;}
.y186{bottom:587.845650px;}
.y61{bottom:588.167400px;}
.y267{bottom:588.183750px;}
.y2c2{bottom:590.874900px;}
.y14e{bottom:593.493750px;}
.y17{bottom:594.739650px;}
.y11f{bottom:596.150250px;}
.y319{bottom:597.249900px;}
.y1b2{bottom:599.819400px;}
.y28d{bottom:602.179200px;}
.y94{bottom:602.522400px;}
.y34e{bottom:603.654900px;}
.y236{bottom:603.759750px;}
.y200{bottom:605.195250px;}
.y38{bottom:605.407050px;}
.yf0{bottom:605.971350px;}
.yc5{bottom:606.136350px;}
.y60{bottom:607.670400px;}
.y266{bottom:607.686750px;}
.y2f6{bottom:610.044900px;}
.y14d{bottom:612.996750px;}
.y16{bottom:614.539650px;}
.y2c1{bottom:615.999900px;}
.y185{bottom:616.866000px;}
.y1b1{bottom:619.322400px;}
.y197{bottom:619.404900px;}
.y93{bottom:622.025400px;}
.y318{bottom:622.374900px;}
.y34d{bottom:622.404900px;}
.y235{bottom:622.503750px;}
.y1ff{bottom:623.939250px;}
.yef{bottom:625.474350px;}
.yc4{bottom:625.639350px;}
.y37{bottom:625.859550px;}
.y5f{bottom:627.173400px;}
.y265{bottom:627.189750px;}
.y28c{bottom:627.304200px;}
.y2f5{bottom:628.794900px;}
.y14c{bottom:632.499750px;}
.y11e{bottom:632.664750px;}
.y15{bottom:634.339650px;}
.y2c0{bottom:634.749900px;}
.y317{bottom:641.124900px;}
.y34c{bottom:641.154900px;}
.y234{bottom:641.247750px;}
.y92{bottom:641.528400px;}
.y1fe{bottom:642.683250px;}
.yee{bottom:644.977350px;}
.yc3{bottom:645.142350px;}
.y183{bottom:645.886200px;}
.y28b{bottom:646.054200px;}
.y5e{bottom:646.676400px;}
.y264{bottom:646.692750px;}
.y2f4{bottom:647.544900px;}
.y14b{bottom:652.002750px;}
.y11d{bottom:652.167750px;}
.y2bf{bottom:653.499900px;}
.y14{bottom:654.139650px;}
.y316{bottom:659.874900px;}
.y34b{bottom:659.904900px;}
.y233{bottom:659.991750px;}
.y91{bottom:661.031400px;}
.y1fd{bottom:661.427250px;}
.y1cd{bottom:664.074300px;}
.yed{bottom:664.480350px;}
.yc2{bottom:664.645350px;}
.y28a{bottom:664.804200px;}
.y184{bottom:665.323200px;}
.y182{bottom:665.686200px;}
.y5d{bottom:666.179400px;}
.y263{bottom:666.195750px;}
.y2f3{bottom:666.294900px;}
.y36{bottom:666.764550px;}
.y14a{bottom:671.505750px;}
.y11c{bottom:671.670750px;}
.y2be{bottom:672.249900px;}
.y315{bottom:678.624900px;}
.y232{bottom:678.735750px;}
.y1fc{bottom:680.171250px;}
.y90{bottom:680.534400px;}
.y289{bottom:683.554200px;}
.y1cc{bottom:683.874150px;}
.yec{bottom:683.983350px;}
.yc1{bottom:684.148350px;}
.y34a{bottom:685.029900px;}
.y2f2{bottom:685.044900px;}
.y5c{bottom:685.682400px;}
.y262{bottom:685.698750px;}
.y13{bottom:686.694150px;}
.y35{bottom:687.217050px;}
.y149{bottom:691.008750px;}
.y11b{bottom:691.173750px;}
.y181{bottom:694.702950px;}
.y2bd{bottom:697.374900px;}
.y231{bottom:697.479750px;}
.y1fb{bottom:698.915250px;}
.y8f{bottom:700.037400px;}
.yeb{bottom:703.486350px;}
.yc0{bottom:703.651350px;}
.y1cb{bottom:703.674150px;}
.y349{bottom:703.779900px;}
.y2f1{bottom:703.794900px;}
.y5b{bottom:705.185400px;}
.y261{bottom:705.201750px;}
.y12{bottom:706.494150px;}
.y34{bottom:707.669550px;}
.y148{bottom:710.511750px;}
.y288{bottom:710.597250px;}
.y11a{bottom:710.676750px;}
.y180{bottom:714.502950px;}
.y2bc{bottom:716.124900px;}
.y230{bottom:716.223750px;}
.y1fa{bottom:717.659250px;}
.y8e{bottom:719.540400px;}
.y348{bottom:722.529900px;}
.y2f0{bottom:722.544900px;}
.yea{bottom:722.989350px;}
.ybf{bottom:723.154350px;}
.y5a{bottom:724.688400px;}
.y260{bottom:724.704750px;}
.y11{bottom:726.294150px;}
.y33{bottom:728.122050px;}
.y147{bottom:730.014750px;}
.y119{bottom:730.179750px;}
.y2bb{bottom:734.874900px;}
.y22f{bottom:734.967750px;}
.y1f9{bottom:736.403250px;}
.y8d{bottom:739.043400px;}
.y314{bottom:741.249900px;}
.y17f{bottom:743.889450px;}
.y59{bottom:744.191400px;}
.y10{bottom:746.094150px;}
.y347{bottom:747.654900px;}
.y2ef{bottom:747.669900px;}
.y118{bottom:749.682750px;}
.y2ba{bottom:753.624900px;}
.y22e{bottom:753.711750px;}
.y1f8{bottom:755.147250px;}
.y8c{bottom:758.546400px;}
.ye9{bottom:759.503850px;}
.ybe{bottom:759.668850px;}
.y313{bottom:759.999900px;}
.y25f{bottom:761.219250px;}
.y58{bottom:763.694400px;}
.y346{bottom:766.404900px;}
.y2ee{bottom:766.419900px;}
.y146{bottom:766.529250px;}
.y32{bottom:769.027050px;}
.y22d{bottom:772.455750px;}
.y1f7{bottom:773.891250px;}
.y287{bottom:775.706250px;}
.y8b{bottom:778.049400px;}
.y2b9{bottom:778.749900px;}
.y17e{bottom:779.187900px;}
.y57{bottom:783.197400px;}
.y345{bottom:785.154900px;}
.y2ed{bottom:785.169900px;}
.y145{bottom:786.032250px;}
.y117{bottom:786.197250px;}
.y31{bottom:789.479550px;}
.y22c{bottom:791.199750px;}
.y1f6{bottom:792.635250px;}
.y286{bottom:795.506250px;}
.ye8{bottom:796.018350px;}
.ybd{bottom:796.183350px;}
.y2b8{bottom:797.499900px;}
.y8a{bottom:797.552400px;}
.y56{bottom:802.700400px;}
.y2ec{bottom:803.919900px;}
.y17d{bottom:803.937900px;}
.yf{bottom:805.972800px;}
.y22b{bottom:809.943750px;}
.y344{bottom:810.279900px;}
.y1f5{bottom:811.379250px;}
.ye7{bottom:815.521350px;}
.ybc{bottom:815.686350px;}
.y2b7{bottom:816.249900px;}
.y89{bottom:817.055400px;}
.y144{bottom:822.546750px;}
.y312{bottom:822.624900px;}
.y2eb{bottom:822.669900px;}
.y116{bottom:822.711750px;}
.y22a{bottom:828.687750px;}
.y343{bottom:829.029900px;}
.y1f4{bottom:830.123250px;}
.y30{bottom:830.384550px;}
.y285{bottom:832.020750px;}
.y17c{bottom:832.598400px;}
.y25e{bottom:834.231750px;}
.ye6{bottom:835.024350px;}
.y16c{bottom:835.139400px;}
.ybb{bottom:835.189350px;}
.y88{bottom:836.558400px;}
.y55{bottom:839.214900px;}
.y2b6{bottom:841.374900px;}
.y2ea{bottom:841.419900px;}
.y143{bottom:842.049750px;}
.y115{bottom:842.214750px;}
.y2f{bottom:846.584550px;}
.y229{bottom:847.431750px;}
.y342{bottom:847.779900px;}
.y1f3{bottom:848.867250px;}
.y17b{bottom:852.101400px;}
.y25d{bottom:853.734750px;}
.ye5{bottom:854.527350px;}
.yba{bottom:854.642400px;}
.y87{bottom:856.061400px;}
.y54{bottom:858.717900px;}
.y2b5{bottom:860.124900px;}
.ye{bottom:860.561400px;}
.y142{bottom:861.552750px;}
.y114{bottom:861.717750px;}
.y2e{bottom:862.784550px;}
.y228{bottom:866.175750px;}
.y341{bottom:866.529900px;}
.y2e9{bottom:866.544900px;}
.y1f2{bottom:867.611250px;}
.y284{bottom:868.535250px;}
.y17a{bottom:871.604400px;}
.y25c{bottom:873.237750px;}
.ye4{bottom:874.030350px;}
.yb9{bottom:874.145400px;}
.yd{bottom:874.961400px;}
.y86{bottom:875.564400px;}
.y53{bottom:878.220900px;}
.y2b4{bottom:878.874900px;}
.y2d{bottom:878.984550px;}
.y141{bottom:881.055750px;}
.y113{bottom:881.220750px;}
.y227{bottom:884.919750px;}
.y340{bottom:885.279900px;}
.y2e8{bottom:885.294900px;}
.y1f1{bottom:886.355250px;}
.y179{bottom:891.107400px;}
.y16b{bottom:891.156900px;}
.y25b{bottom:892.740750px;}
.ye3{bottom:893.533350px;}
.yb8{bottom:893.648400px;}
.y85{bottom:895.067400px;}
.y2c{bottom:895.184550px;}
.y2b3{bottom:897.624900px;}
.y52{bottom:897.723900px;}
.y140{bottom:900.558750px;}
.y112{bottom:900.723750px;}
.y226{bottom:903.663750px;}
.y2e7{bottom:904.044900px;}
.y283{bottom:905.049750px;}
.y1f0{bottom:905.099250px;}
.yc{bottom:905.804100px;}
.y33f{bottom:910.404900px;}
.y178{bottom:910.610400px;}
.y16a{bottom:910.659900px;}
.y25a{bottom:912.243750px;}
.ye2{bottom:913.036350px;}
.yb7{bottom:913.151400px;}
.y84{bottom:914.570400px;}
.y2b{bottom:915.637050px;}
.y51{bottom:917.226900px;}
.y111{bottom:920.226750px;}
.y225{bottom:922.407750px;}
.y2b2{bottom:922.749900px;}
.y2e6{bottom:922.794900px;}
.yb{bottom:923.804100px;}
.y1ef{bottom:923.843250px;}
.y33e{bottom:929.154900px;}
.y177{bottom:930.113400px;}
.y259{bottom:931.746750px;}
.ye1{bottom:932.539350px;}
.yb6{bottom:932.654400px;}
.y83{bottom:934.073400px;}
.y50{bottom:936.729900px;}
.y13f{bottom:937.073250px;}
.y110{bottom:939.729750px;}
.y224{bottom:941.151750px;}
.y2b1{bottom:941.499900px;}
.y282{bottom:941.564250px;}
.y1ee{bottom:942.587250px;}
.y169{bottom:947.174400px;}
.y33d{bottom:947.904900px;}
.y2e5{bottom:947.919900px;}
.y176{bottom:949.616400px;}
.y258{bottom:951.249750px;}
.ye0{bottom:952.042350px;}
.yb5{bottom:952.157400px;}
.y82{bottom:953.576400px;}
.y4f{bottom:956.232900px;}
.y13e{bottom:956.576250px;}
.y223{bottom:959.895750px;}
.y2b0{bottom:960.249900px;}
.y9{bottom:960.829800px;}
.y281{bottom:961.067250px;}
.y1ed{bottom:961.331250px;}
.y33c{bottom:966.654900px;}
.y2e4{bottom:966.669900px;}
.y168{bottom:966.677400px;}
.y175{bottom:969.119400px;}
.y257{bottom:970.752750px;}
.ydf{bottom:971.545350px;}
.yb4{bottom:971.660400px;}
.y4e{bottom:975.735900px;}
.y10f{bottom:976.244250px;}
.y222{bottom:978.639750px;}
.y2af{bottom:978.999900px;}
.y33b{bottom:985.404900px;}
.y2e3{bottom:985.419900px;}
.y167{bottom:986.180400px;}
.y81{bottom:990.090900px;}
.y256{bottom:990.255750px;}
.yb3{bottom:991.163400px;}
.y13d{bottom:993.090750px;}
.y8{bottom:993.229800px;}
.y10e{bottom:995.747250px;}
.y1ec{bottom:997.086750px;}
.y221{bottom:997.383750px;}
.y280{bottom:997.581750px;}
.y311{bottom:997.749900px;}
.y2ae{bottom:1004.124900px;}
.y2e2{bottom:1004.169900px;}
.y174{bottom:1005.633900px;}
.y166{bottom:1005.683400px;}
.yde{bottom:1008.059850px;}
.y80{bottom:1009.593900px;}
.y255{bottom:1009.758750px;}
.y33a{bottom:1010.529900px;}
.yb2{bottom:1010.666400px;}
.y4d{bottom:1012.250400px;}
.y13c{bottom:1012.593750px;}
.y10d{bottom:1015.250250px;}
.y1eb{bottom:1015.830750px;}
.y220{bottom:1016.127750px;}
.y27f{bottom:1017.084750px;}
.y2ad{bottom:1022.874900px;}
.y173{bottom:1025.136900px;}
.y165{bottom:1025.186400px;}
.y7{bottom:1025.629800px;}
.ydd{bottom:1027.562850px;}
.y7f{bottom:1029.096900px;}
.y254{bottom:1029.261750px;}
.y339{bottom:1029.279900px;}
.y2e1{bottom:1029.294900px;}
.y4c{bottom:1031.753400px;}
.y13b{bottom:1032.096750px;}
.y1ea{bottom:1034.574750px;}
.y10c{bottom:1034.753250px;}
.y21f{bottom:1034.871750px;}
.y2ac{bottom:1041.624900px;}
.y172{bottom:1044.639900px;}
.y164{bottom:1044.689400px;}
.yb1{bottom:1047.180900px;}
.y338{bottom:1048.029900px;}
.y2e0{bottom:1048.044900px;}
.y7e{bottom:1048.599900px;}
.y253{bottom:1048.764750px;}
.y4b{bottom:1051.256400px;}
.y13a{bottom:1051.599750px;}
.y1e9{bottom:1053.318750px;}
.y6{bottom:1053.546450px;}
.y27e{bottom:1053.599250px;}
.y21e{bottom:1053.615750px;}
.y10b{bottom:1054.256250px;}
.y310{bottom:1060.374900px;}
.ydc{bottom:1064.077350px;}
.y163{bottom:1064.192400px;}
.y2ab{bottom:1066.749900px;}
.y337{bottom:1066.779900px;}
.y2df{bottom:1066.794900px;}
.y7d{bottom:1068.102900px;}
.y252{bottom:1068.267750px;}
.y5{bottom:1069.746450px;}
.y4a{bottom:1070.759400px;}
.y139{bottom:1071.102750px;}
.y1e8{bottom:1072.062750px;}
.y21d{bottom:1072.359750px;}
.y10a{bottom:1073.759250px;}
.y171{bottom:1081.154400px;}
.ydb{bottom:1083.580350px;}
.yb0{bottom:1083.695400px;}
.y2aa{bottom:1085.499900px;}
.y336{bottom:1085.529900px;}
.y2de{bottom:1085.544900px;}
.y7c{bottom:1087.605900px;}
.y251{bottom:1087.770750px;}
.y27d{bottom:1090.113750px;}
.y49{bottom:1090.262400px;}
.y138{bottom:1090.605750px;}
.y1e7{bottom:1090.806750px;}
.y21c{bottom:1091.103750px;}
.y109{bottom:1093.262250px;}
.y170{bottom:1100.657400px;}
.yda{bottom:1103.083350px;}
.yaf{bottom:1103.198400px;}
.y2a9{bottom:1104.249900px;}
.y7b{bottom:1107.108900px;}
.y250{bottom:1107.273750px;}
.y1e6{bottom:1109.550750px;}
.y48{bottom:1109.765400px;}
.y21b{bottom:1109.847750px;}
.y137{bottom:1110.108750px;}
.y335{bottom:1110.654900px;}
.y2dd{bottom:1110.669900px;}
.y108{bottom:1112.765250px;}
.y16f{bottom:1120.160400px;}
.yae{bottom:1122.701400px;}
.y30f{bottom:1122.999900px;}
.ya{bottom:1123.179750px;}
.y7a{bottom:1126.611900px;}
.y27c{bottom:1126.628250px;}
.y24f{bottom:1126.776750px;}
.y1e5{bottom:1128.294750px;}
.y21a{bottom:1128.591750px;}
.y47{bottom:1129.268400px;}
.y2a8{bottom:1129.374900px;}
.y334{bottom:1129.404900px;}
.y2dc{bottom:1129.419900px;}
.y136{bottom:1129.611750px;}
.yd9{bottom:1139.597850px;}
.y16e{bottom:1139.663400px;}
.y162{bottom:1139.712900px;}
.y79{bottom:1146.114900px;}
.y27b{bottom:1146.131250px;}
.y24e{bottom:1146.279750px;}
.y1e4{bottom:1147.038750px;}
.y219{bottom:1147.335750px;}
.y2a7{bottom:1148.124900px;}
.y333{bottom:1148.154900px;}
.y2db{bottom:1148.169900px;}
.y135{bottom:1149.114750px;}
.y107{bottom:1149.279750px;}
.yd8{bottom:1159.100850px;}
.y16d{bottom:1159.166400px;}
.yad{bottom:1159.215900px;}
.y78{bottom:1165.617900px;}
.y27a{bottom:1165.634250px;}
.y1e3{bottom:1165.782750px;}
.y46{bottom:1165.782900px;}
.y218{bottom:1166.079750px;}
.y2a6{bottom:1166.874900px;}
.y332{bottom:1166.904900px;}
.y2da{bottom:1166.919900px;}
.y134{bottom:1168.617750px;}
.y106{bottom:1168.782750px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y45{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.h1d{height:28.933652px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.hf{height:40.394531px;}
.he{height:40.605469px;}
.h3{height:44.414062px;}
.h20{height:44.882812px;}
.h4{height:45.117188px;}
.h5{height:47.277398px;}
.hd{height:49.371094px;}
.hc{height:49.628906px;}
.h18{height:50.761348px;}
.h15{height:50.773348px;}
.h1b{height:50.773948px;}
.h16{height:50.775748px;}
.h13{height:50.835748px;}
.h14{height:50.862148px;}
.h19{height:50.911652px;}
.h1c{height:50.912252px;}
.h11{height:50.961148px;}
.h1a{height:51.080906px;}
.h8{height:51.257812px;}
.h9{height:51.445312px;}
.h12{height:51.594148px;}
.h17{height:52.213348px;}
.h10{height:54.140625px;}
.h1e{height:55.539384px;}
.h1f{height:55.540584px;}
.hb{height:72.023438px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:6.108300px;}
.x10{left:13.276800px;}
.xf{left:21.849300px;}
.xe{left:23.401800px;}
.xd{left:25.251300px;}
.x6{left:36.193200px;}
.x13{left:43.287300px;}
.x11{left:46.756800px;}
.x15{left:48.592800px;}
.xc{left:57.178800px;}
.x5{left:63.044700px;}
.x19{left:64.523550px;}
.x16{left:66.669300px;}
.x17{left:72.283350px;}
.x12{left:88.660800px;}
.x1e{left:90.779550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xb{left:232.786800px;}
.xa{left:240.546600px;}
.x1b{left:246.235050px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x18{left:461.545050px;}
.x1d{left:488.338650px;}
.x8{left:659.865300px;}
.x3{left:798.829500px;}
.x1a{left:800.565300px;}
.x1c{left:829.559100px;}
@media print{
.v5{vertical-align:-19.536000pt;}
.v2{vertical-align:-1.290667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.290667pt;}
.v1{vertical-align:19.713600pt;}
.v4{vertical-align:20.826667pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.001104pt;}
.ls3{letter-spacing:6.564800pt;}
.ls19{letter-spacing:12.061867pt;}
.ls0{letter-spacing:15.264000pt;}
.ls5{letter-spacing:96.107733pt;}
.ls6{letter-spacing:98.853333pt;}
.lsd{letter-spacing:100.392640pt;}
.ls9{letter-spacing:113.754667pt;}
.ls4{letter-spacing:123.100267pt;}
.lsb{letter-spacing:139.895040pt;}
.ls8{letter-spacing:150.150507pt;}
.lsc{letter-spacing:161.964149pt;}
.lsf{letter-spacing:162.668907pt;}
.lsa{letter-spacing:181.930549pt;}
.ls7{letter-spacing:183.792416pt;}
.ls11{letter-spacing:184.529173pt;}
.ls16{letter-spacing:186.391573pt;}
.ls14{letter-spacing:193.839040pt;}
.ls13{letter-spacing:204.065707pt;}
.lse{letter-spacing:214.013749pt;}
.ls17{letter-spacing:233.173749pt;}
.ls12{letter-spacing:234.090016pt;}
.ls10{letter-spacing:235.035616pt;}
.ls15{letter-spacing:243.399883pt;}
.ws0{word-spacing:-16.192000pt;}
.ws21{word-spacing:-16.074667pt;}
.ws1{word-spacing:-13.248000pt;}
.ws51{word-spacing:-10.260800pt;}
.ws32{word-spacing:-9.405733pt;}
.ws22{word-spacing:-9.371531pt;}
.ws76{word-spacing:-7.392000pt;}
.ws52{word-spacing:-6.981333pt;}
.ws78{word-spacing:-4.341333pt;}
.ws56{word-spacing:-2.944000pt;}
.ws29{word-spacing:-2.816000pt;}
.ws43{word-spacing:-2.698667pt;}
.ws6b{word-spacing:-2.112000pt;}
.ws5b{word-spacing:-2.053333pt;}
.wsd{word-spacing:-1.290667pt;}
.ws3{word-spacing:-0.997333pt;}
.ws4b{word-spacing:-0.938667pt;}
.ws36{word-spacing:-0.586667pt;}
.ws39{word-spacing:-0.469333pt;}
.ws37{word-spacing:-0.342027pt;}
.ws3a{word-spacing:-0.273621pt;}
.ws3f{word-spacing:-0.234667pt;}
.ws38{word-spacing:-0.176000pt;}
.ws3e{word-spacing:-0.117333pt;}
.ws2{word-spacing:0.000000pt;}
.ws40{word-spacing:0.234667pt;}
.ws4e{word-spacing:0.444635pt;}
.ws4d{word-spacing:0.762667pt;}
.ws58{word-spacing:0.895488pt;}
.ws49{word-spacing:1.349333pt;}
.wsa{word-spacing:1.466667pt;}
.ws57{word-spacing:1.536000pt;}
.ws1d{word-spacing:1.584000pt;}
.ws8{word-spacing:1.936000pt;}
.ws13{word-spacing:1.994667pt;}
.wsc{word-spacing:2.346667pt;}
.ws6f{word-spacing:2.640000pt;}
.ws48{word-spacing:3.168000pt;}
.ws50{word-spacing:3.226667pt;}
.ws5c{word-spacing:3.344000pt;}
.ws85{word-spacing:3.466667pt;}
.ws61{word-spacing:3.520000pt;}
.ws44{word-spacing:3.637333pt;}
.ws7b{word-spacing:3.786667pt;}
.ws5a{word-spacing:3.872000pt;}
.ws7{word-spacing:3.984000pt;}
.ws4{word-spacing:3.989333pt;}
.ws11{word-spacing:4.048000pt;}
.ws6c{word-spacing:4.165333pt;}
.ws60{word-spacing:4.458667pt;}
.wse{word-spacing:5.045333pt;}
.ws28{word-spacing:5.280000pt;}
.ws5d{word-spacing:5.573333pt;}
.ws9{word-spacing:6.336000pt;}
.ws47{word-spacing:6.688000pt;}
.ws10{word-spacing:6.746667pt;}
.ws5{word-spacing:7.333333pt;}
.ws79{word-spacing:7.360000pt;}
.ws2c{word-spacing:7.568000pt;}
.ws72{word-spacing:7.920000pt;}
.ws4f{word-spacing:8.448000pt;}
.ws5f{word-spacing:8.624000pt;}
.ws6{word-spacing:8.682667pt;}
.ws18{word-spacing:8.741333pt;}
.ws74{word-spacing:9.328000pt;}
.ws42{word-spacing:9.445333pt;}
.ws17{word-spacing:9.914667pt;}
.ws45{word-spacing:10.208000pt;}
.ws1c{word-spacing:10.618667pt;}
.ws1b{word-spacing:10.677333pt;}
.ws27{word-spacing:10.736000pt;}
.ws26{word-spacing:10.794667pt;}
.ws75{word-spacing:10.912000pt;}
.ws20{word-spacing:11.088000pt;}
.ws6a{word-spacing:11.205333pt;}
.ws12{word-spacing:11.322667pt;}
.ws80{word-spacing:11.786667pt;}
.ws24{word-spacing:11.850667pt;}
.ws64{word-spacing:11.909333pt;}
.ws69{word-spacing:12.026667pt;}
.ws3b{word-spacing:12.202667pt;}
.ws7a{word-spacing:12.693333pt;}
.ws7d{word-spacing:13.493333pt;}
.ws66{word-spacing:13.728000pt;}
.ws6e{word-spacing:14.197333pt;}
.ws1f{word-spacing:14.666667pt;}
.ws19{word-spacing:14.784000pt;}
.ws1a{word-spacing:14.842667pt;}
.ws54{word-spacing:14.960000pt;}
.ws5e{word-spacing:15.370667pt;}
.ws77{word-spacing:15.722667pt;}
.wsb{word-spacing:15.840000pt;}
.ws53{word-spacing:16.133333pt;}
.ws7c{word-spacing:16.960000pt;}
.ws41{word-spacing:17.013333pt;}
.ws4c{word-spacing:18.186667pt;}
.ws65{word-spacing:18.421333pt;}
.ws6d{word-spacing:18.832000pt;}
.ws71{word-spacing:19.653333pt;}
.ws62{word-spacing:20.122667pt;}
.ws2a{word-spacing:20.181333pt;}
.ws3d{word-spacing:21.002667pt;}
.ws7f{word-spacing:21.546667pt;}
.ws46{word-spacing:21.824000pt;}
.ws83{word-spacing:22.986667pt;}
.ws23{word-spacing:22.997333pt;}
.ws84{word-spacing:23.413333pt;}
.ws59{word-spacing:24.170667pt;}
.ws4a{word-spacing:24.522667pt;}
.ws14{word-spacing:24.757333pt;}
.ws16{word-spacing:24.992000pt;}
.ws15{word-spacing:26.517333pt;}
.ws55{word-spacing:28.336000pt;}
.ws73{word-spacing:29.920000pt;}
.ws25{word-spacing:30.917333pt;}
.ws68{word-spacing:31.328000pt;}
.ws7e{word-spacing:32.640000pt;}
.wsf{word-spacing:33.029333pt;}
.ws2b{word-spacing:33.088000pt;}
.ws67{word-spacing:33.205333pt;}
.ws63{word-spacing:33.322667pt;}
.ws35{word-spacing:33.557333pt;}
.ws3c{word-spacing:37.370667pt;}
.ws82{word-spacing:37.760000pt;}
.ws1e{word-spacing:39.776000pt;}
.ws70{word-spacing:46.288000pt;}
.ws81{word-spacing:54.826667pt;}
.ws2f{word-spacing:87.061333pt;}
.ws31{word-spacing:118.213333pt;}
.ws30{word-spacing:136.752000pt;}
.ws34{word-spacing:228.606400pt;}
.ws2e{word-spacing:228.899733pt;}
.ws33{word-spacing:240.615467pt;}
.ws2d{word-spacing:293.298133pt;}
._17{margin-left:-58.368000pt;}
._4a{margin-left:-16.491408pt;}
._50{margin-left:-13.693548pt;}
._4f{margin-left:-12.049919pt;}
._16{margin-left:-10.984000pt;}
._26{margin-left:-9.879467pt;}
._15{margin-left:-8.342400pt;}
._19{margin-left:-6.611733pt;}
._d{margin-left:-5.294615pt;}
._6{margin-left:-4.275200pt;}
._0{margin-left:-3.098667pt;}
._b{margin-left:-2.153067pt;}
._5{margin-left:-1.220267pt;}
._1{width:1.410881pt;}
._a{width:2.965652pt;}
._7{width:4.552533pt;}
._12{width:5.541015pt;}
._9{width:6.520540pt;}
._8{width:7.424319pt;}
._c{width:9.075733pt;}
._f{width:10.530667pt;}
._13{width:12.108800pt;}
._1e{width:13.868800pt;}
._e{width:14.772267pt;}
._4c{width:16.016000pt;}
._18{width:16.995733pt;}
._1a{width:18.550400pt;}
._10{width:19.491948pt;}
._11{width:20.487785pt;}
._4{width:21.845333pt;}
._2d{width:22.753600pt;}
._14{width:23.642667pt;}
._22{width:24.587200pt;}
._24{width:25.514133pt;}
._2a{width:26.828267pt;}
._20{width:27.761067pt;}
._1d{width:28.987200pt;}
._21{width:30.283733pt;}
._23{width:31.269333pt;}
._28{width:32.364800pt;}
._1b{width:33.610133pt;}
._25{width:34.613333pt;}
._2b{width:36.115200pt;}
._1c{width:38.215467pt;}
._4b{width:39.394667pt;}
._49{width:40.702933pt;}
._29{width:41.653333pt;}
._1f{width:43.694933pt;}
._2e{width:44.633600pt;}
._4d{width:47.344319pt;}
._2c{width:53.709333pt;}
._4e{width:57.022933pt;}
._35{width:62.069333pt;}
._31{width:66.410667pt;}
._27{width:86.768000pt;}
._43{width:90.317333pt;}
._34{width:102.750185pt;}
._32{width:104.896000pt;}
._36{width:119.613867pt;}
._3f{width:124.666667pt;}
._38{width:125.605333pt;}
._46{width:133.056000pt;}
._2f{width:135.109333pt;}
._2{width:136.095860pt;}
._3c{width:143.322667pt;}
._40{width:146.666667pt;}
._39{width:147.605333pt;}
._44{width:148.544000pt;}
._42{width:149.482667pt;}
._3d{width:156.933333pt;}
._47{width:157.872000pt;}
._3{width:163.102957pt;}
._33{width:172.773333pt;}
._48{width:184.547733pt;}
._30{width:223.854400pt;}
._3e{width:237.013333pt;}
._3b{width:249.861333pt;}
._37{width:278.248533pt;}
._3a{width:281.005867pt;}
._45{width:284.944000pt;}
._41{width:312.869333pt;}
.fs9{font-size:34.202667pt;}
.fsa{font-size:37.312000pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:50.555600pt;}
.y43{bottom:64.955600pt;}
.y3{bottom:72.686667pt;}
.y2a5{bottom:101.270400pt;}
.y1b0{bottom:102.060800pt;}
.y1df{bottom:105.449067pt;}
.y1d8{bottom:105.463733pt;}
.y331{bottom:108.222133pt;}
.y30e{bottom:108.262133pt;}
.y77{bottom:111.180800pt;}
.y2d9{bottom:113.555467pt;}
.y105{bottom:114.326533pt;}
.y364{bottom:114.523867pt;}
.y1ca{bottom:117.108800pt;}
.y2a4{bottom:117.937067pt;}
.y1af{bottom:119.396800pt;}
.yac{bottom:119.511467pt;}
.y279{bottom:120.054000pt;}
.y133{bottom:122.706000pt;}
.y1de{bottom:122.785067pt;}
.y1d7{bottom:122.799733pt;}
.y217{bottom:124.498000pt;}
.y330{bottom:124.888800pt;}
.y30d{bottom:124.928800pt;}
.y76{bottom:128.516800pt;}
.y196{bottom:129.836933pt;}
.y2d8{bottom:130.222133pt;}
.y104{bottom:131.662533pt;}
.y363{bottom:132.123867pt;}
.y1c9{bottom:134.444800pt;}
.y2a3{bottom:134.603733pt;}
.yd7{bottom:136.011867pt;}
.y1ae{bottom:136.732800pt;}
.yab{bottom:136.847467pt;}
.y278{bottom:137.390000pt;}
.y161{bottom:137.680667pt;}
.y24d{bottom:138.343333pt;}
.y1d1{bottom:138.730595pt;}
.y132{bottom:140.042000pt;}
.y1dd{bottom:140.121067pt;}
.y1d6{bottom:140.135733pt;}
.y216{bottom:141.159333pt;}
.y32f{bottom:141.555467pt;}
.y30c{bottom:141.595467pt;}
.y75{bottom:145.852800pt;}
.y195{bottom:147.436933pt;}
.y103{bottom:148.998533pt;}
.y362{bottom:149.723867pt;}
.y2a2{bottom:151.270400pt;}
.y1cf{bottom:151.443733pt;}
.y1c8{bottom:151.780800pt;}
.y2d7{bottom:152.555467pt;}
.yd6{bottom:153.347867pt;}
.y1ad{bottom:154.068800pt;}
.yaa{bottom:154.183467pt;}
.y277{bottom:154.726000pt;}
.y24c{bottom:155.004667pt;}
.y160{bottom:155.016667pt;}
.y2a{bottom:155.219600pt;}
.y1d0{bottom:156.327867pt;}
.y1dc{bottom:157.457067pt;}
.y1d5{bottom:157.471733pt;}
.y215{bottom:157.820667pt;}
.y32e{bottom:158.222133pt;}
.y74{bottom:163.188800pt;}
.y30b{bottom:163.928800pt;}
.y102{bottom:166.334533pt;}
.y2a1{bottom:167.937067pt;}
.y1ce{bottom:169.043733pt;}
.y1c7{bottom:169.116800pt;}
.y2d6{bottom:169.222133pt;}
.y29{bottom:169.619600pt;}
.y194{bottom:171.375467pt;}
.y1ac{bottom:171.404800pt;}
.ya9{bottom:171.519467pt;}
.y24b{bottom:171.666000pt;}
.y15f{bottom:172.352667pt;}
.y131{bottom:172.499333pt;}
.y214{bottom:174.482000pt;}
.y1db{bottom:174.793067pt;}
.y1d4{bottom:174.807733pt;}
.y32d{bottom:174.888800pt;}
.y73{bottom:180.524800pt;}
.y30a{bottom:180.595467pt;}
.y101{bottom:183.670533pt;}
.y28{bottom:184.019600pt;}
.yd5{bottom:185.805200pt;}
.y2d5{bottom:185.888800pt;}
.y1c6{bottom:186.452800pt;}
.y276{bottom:187.183333pt;}
.y24a{bottom:188.327333pt;}
.y1ab{bottom:188.740800pt;}
.ya8{bottom:188.855467pt;}
.y15e{bottom:189.688667pt;}
.y130{bottom:189.835333pt;}
.y2a0{bottom:190.270400pt;}
.y361{bottom:190.648800pt;}
.y213{bottom:191.143333pt;}
.y32c{bottom:191.555467pt;}
.y1da{bottom:192.129067pt;}
.y1d3{bottom:192.143733pt;}
.y193{bottom:197.171333pt;}
.y309{bottom:197.262133pt;}
.y72{bottom:197.860800pt;}
.y2d4{bottom:202.555467pt;}
.y1c5{bottom:203.788800pt;}
.y249{bottom:204.988667pt;}
.y1aa{bottom:206.076800pt;}
.ya7{bottom:206.191467pt;}
.y29f{bottom:206.937067pt;}
.y15d{bottom:207.024667pt;}
.y32b{bottom:208.222133pt;}
.y360{bottom:208.248800pt;}
.y1d9{bottom:209.465067pt;}
.y1d2{bottom:209.479733pt;}
.y71{bottom:215.196800pt;}
.y100{bottom:216.127867pt;}
.yd4{bottom:218.262533pt;}
.y2d3{bottom:219.222133pt;}
.y308{bottom:219.595467pt;}
.y275{bottom:219.640667pt;}
.y1c4{bottom:221.124800pt;}
.y248{bottom:221.650000pt;}
.y12f{bottom:222.292667pt;}
.y212{bottom:222.926000pt;}
.y192{bottom:222.967200pt;}
.y1a9{bottom:223.412800pt;}
.ya6{bottom:223.527467pt;}
.y29e{bottom:223.603733pt;}
.y15c{bottom:224.360667pt;}
.y27{bottom:224.382800pt;}
.y35f{bottom:224.915467pt;}
.y32a{bottom:230.555467pt;}
.y70{bottom:232.532800pt;}
.yff{bottom:233.463867pt;}
.yd3{bottom:235.598533pt;}
.y307{bottom:236.262133pt;}
.y247{bottom:238.311333pt;}
.y1c3{bottom:238.460800pt;}
.y211{bottom:239.587333pt;}
.y12e{bottom:239.628667pt;}
.y1a8{bottom:240.748800pt;}
.ya5{bottom:240.863467pt;}
.y2d2{bottom:241.555467pt;}
.y15b{bottom:241.696667pt;}
.y26{bottom:241.982800pt;}
.y1e2{bottom:243.222400pt;}
.y29d{bottom:245.937067pt;}
.y329{bottom:247.222133pt;}
.y35e{bottom:247.248800pt;}
.y191{bottom:248.762933pt;}
.y6f{bottom:249.868800pt;}
.yfe{bottom:250.799867pt;}
.y274{bottom:252.098000pt;}
.y306{bottom:252.928800pt;}
.y246{bottom:254.972667pt;}
.y1c2{bottom:255.796800pt;}
.y210{bottom:256.248667pt;}
.y12d{bottom:256.964667pt;}
.y1a7{bottom:258.084800pt;}
.ya4{bottom:258.199467pt;}
.y2d1{bottom:258.222133pt;}
.y25{bottom:259.582800pt;}
.y1e1{bottom:262.422533pt;}
.y29c{bottom:262.603733pt;}
.y328{bottom:263.888800pt;}
.y35d{bottom:263.915467pt;}
.yd2{bottom:268.055867pt;}
.yfd{bottom:268.133200pt;}
.y273{bottom:269.434000pt;}
.y305{bottom:269.595467pt;}
.y245{bottom:271.634000pt;}
.y20f{bottom:272.910000pt;}
.y1c1{bottom:273.132800pt;}
.y15a{bottom:274.154000pt;}
.y12c{bottom:274.300667pt;}
.y190{bottom:274.558800pt;}
.y2d0{bottom:274.888800pt;}
.y1a6{bottom:275.420800pt;}
.ya3{bottom:275.535467pt;}
.y29b{bottom:279.270400pt;}
.y35c{bottom:280.582133pt;}
.y1e0{bottom:281.622533pt;}
.y6e{bottom:282.326133pt;}
.yfc{bottom:285.446800pt;}
.y327{bottom:286.222133pt;}
.y304{bottom:286.262133pt;}
.y272{bottom:286.770000pt;}
.y244{bottom:288.295333pt;}
.y24{bottom:288.520133pt;}
.y20e{bottom:289.571333pt;}
.y1c0{bottom:290.468800pt;}
.y159{bottom:291.490000pt;}
.y2cf{bottom:291.555467pt;}
.y12b{bottom:291.636667pt;}
.y1a5{bottom:292.756800pt;}
.ya2{bottom:292.871467pt;}
.y29a{bottom:295.937067pt;}
.y35b{bottom:297.248800pt;}
.y6d{bottom:299.662133pt;}
.y18f{bottom:300.354667pt;}
.yd1{bottom:300.513200pt;}
.y326{bottom:302.888800pt;}
.y271{bottom:304.106000pt;}
.y243{bottom:304.956667pt;}
.y23{bottom:306.120133pt;}
.y20d{bottom:306.232667pt;}
.y1bf{bottom:307.804800pt;}
.y303{bottom:308.595467pt;}
.y12a{bottom:308.972667pt;}
.y1a4{bottom:310.092800pt;}
.ya1{bottom:310.207467pt;}
.y2ce{bottom:313.888800pt;}
.y6c{bottom:316.998133pt;}
.yd0{bottom:317.849200pt;}
.yfb{bottom:317.904133pt;}
.y299{bottom:318.270400pt;}
.y325{bottom:319.555467pt;}
.y35a{bottom:319.582133pt;}
.y270{bottom:321.442000pt;}
.y242{bottom:321.618000pt;}
.y20c{bottom:322.894000pt;}
.y22{bottom:323.720133pt;}
.y158{bottom:323.947333pt;}
.y1be{bottom:325.140800pt;}
.y302{bottom:325.262133pt;}
.y18e{bottom:326.150533pt;}
.y129{bottom:326.308667pt;}
.y1a3{bottom:327.428800pt;}
.ya0{bottom:327.543467pt;}
.y2cd{bottom:330.555467pt;}
.y6b{bottom:334.334133pt;}
.y298{bottom:334.937067pt;}
.ycf{bottom:335.185200pt;}
.yfa{bottom:335.240133pt;}
.y324{bottom:336.222133pt;}
.y359{bottom:336.248800pt;}
.y42{bottom:338.159600pt;}
.y241{bottom:338.279333pt;}
.y26f{bottom:338.778000pt;}
.y20b{bottom:339.555333pt;}
.y157{bottom:341.283333pt;}
.y21{bottom:341.320133pt;}
.y301{bottom:341.928800pt;}
.y1bd{bottom:342.476800pt;}
.y128{bottom:343.644667pt;}
.y1a2{bottom:344.764800pt;}
.y9f{bottom:344.879467pt;}
.y2cc{bottom:347.222133pt;}
.y297{bottom:351.603733pt;}
.y6a{bottom:351.670133pt;}
.y18d{bottom:351.943600pt;}
.yf9{bottom:352.576133pt;}
.y323{bottom:352.888800pt;}
.y358{bottom:352.915467pt;}
.y240{bottom:354.940667pt;}
.y26e{bottom:356.114000pt;}
.y20a{bottom:356.216667pt;}
.y41{bottom:356.339600pt;}
.y300{bottom:358.595467pt;}
.y156{bottom:358.619333pt;}
.y20{bottom:358.920133pt;}
.y1bc{bottom:359.812800pt;}
.y127{bottom:360.980667pt;}
.y1a1{bottom:362.100800pt;}
.y9e{bottom:362.215467pt;}
.y2cb{bottom:363.888800pt;}
.yce{bottom:367.642533pt;}
.y69{bottom:369.006133pt;}
.y322{bottom:369.555467pt;}
.y357{bottom:369.582133pt;}
.yf8{bottom:369.912133pt;}
.y23f{bottom:371.602000pt;}
.y209{bottom:372.878000pt;}
.y26d{bottom:373.450000pt;}
.y296{bottom:373.937067pt;}
.y40{bottom:374.519600pt;}
.y155{bottom:375.955333pt;}
.y1f{bottom:376.520133pt;}
.y1bb{bottom:377.148800pt;}
.y18c{bottom:377.742267pt;}
.y126{bottom:378.316667pt;}
.y1a0{bottom:379.436800pt;}
.y9d{bottom:379.551467pt;}
.y2ca{bottom:380.555467pt;}
.y2ff{bottom:380.928800pt;}
.y356{bottom:386.248800pt;}
.y68{bottom:386.342133pt;}
.y23e{bottom:388.263333pt;}
.y208{bottom:389.539333pt;}
.y295{bottom:390.603733pt;}
.y321{bottom:391.888800pt;}
.y3f{bottom:392.699600pt;}
.y154{bottom:393.291333pt;}
.y1e{bottom:394.120133pt;}
.y1ba{bottom:394.484800pt;}
.y125{bottom:395.652667pt;}
.y19f{bottom:396.772800pt;}
.y9c{bottom:396.887467pt;}
.y2fe{bottom:397.595467pt;}
.ycd{bottom:400.099867pt;}
.y18b{bottom:401.962400pt;}
.yf7{bottom:402.369467pt;}
.y2c9{bottom:402.888800pt;}
.y67{bottom:403.678133pt;}
.y23d{bottom:404.924667pt;}
.y26c{bottom:405.907333pt;}
.y207{bottom:406.200667pt;}
.y294{bottom:407.270400pt;}
.y320{bottom:408.555467pt;}
.y355{bottom:408.582133pt;}
.y153{bottom:410.627333pt;}
.y3e{bottom:410.879600pt;}
.y1d{bottom:411.720133pt;}
.y1b9{bottom:411.820800pt;}
.y124{bottom:412.988667pt;}
.y19e{bottom:414.108800pt;}
.y9b{bottom:414.223467pt;}
.y2fd{bottom:414.262133pt;}
.ycc{bottom:417.435867pt;}
.y2c8{bottom:419.555467pt;}
.yf6{bottom:419.688933pt;}
.y66{bottom:421.014133pt;}
.y23c{bottom:421.586000pt;}
.y206{bottom:422.862000pt;}
.y18a{bottom:423.962400pt;}
.y31f{bottom:425.222133pt;}
.y354{bottom:425.248800pt;}
.y3d{bottom:429.059600pt;}
.y1b8{bottom:429.156800pt;}
.y1c{bottom:429.320133pt;}
.y293{bottom:429.603733pt;}
.y123{bottom:430.324667pt;}
.y19d{bottom:431.444800pt;}
.y9a{bottom:431.559467pt;}
.ycb{bottom:434.771867pt;}
.y2c7{bottom:436.222133pt;}
.y2fc{bottom:436.595467pt;}
.yf5{bottom:437.024933pt;}
.y23b{bottom:438.247333pt;}
.y65{bottom:438.350133pt;}
.y26b{bottom:438.364667pt;}
.y205{bottom:439.523333pt;}
.y31e{bottom:441.888800pt;}
.y353{bottom:441.915467pt;}
.y152{bottom:443.084667pt;}
.y292{bottom:446.270400pt;}
.y1b7{bottom:446.492800pt;}
.y19c{bottom:448.780800pt;}
.y99{bottom:448.895467pt;}
.yca{bottom:452.107867pt;}
.y2c6{bottom:452.888800pt;}
.y2fb{bottom:453.262133pt;}
.yf4{bottom:454.360933pt;}
.y23a{bottom:454.908667pt;}
.y64{bottom:455.686133pt;}
.y26a{bottom:455.700667pt;}
.y204{bottom:456.184667pt;}
.y1b{bottom:458.257467pt;}
.y31d{bottom:458.555467pt;}
.y352{bottom:458.582133pt;}
.y151{bottom:460.420667pt;}
.y122{bottom:462.782000pt;}
.y291{bottom:462.937067pt;}
.y1b6{bottom:463.828800pt;}
.y3c{bottom:465.419600pt;}
.y19b{bottom:466.116800pt;}
.y98{bottom:466.231467pt;}
.y189{bottom:467.170400pt;}
.yc9{bottom:469.443867pt;}
.y2fa{bottom:469.928800pt;}
.y239{bottom:471.570000pt;}
.yf3{bottom:471.696933pt;}
.y63{bottom:473.022133pt;}
.y2c5{bottom:475.222133pt;}
.y1a{bottom:475.857467pt;}
.y290{bottom:479.603733pt;}
.y121{bottom:480.118000pt;}
.y31c{bottom:480.888800pt;}
.y351{bottom:480.915467pt;}
.y1b5{bottom:481.164800pt;}
.y19a{bottom:483.452800pt;}
.y97{bottom:483.567467pt;}
.y3b{bottom:483.599600pt;}
.y188{bottom:484.770400pt;}
.y2f9{bottom:486.595467pt;}
.yc8{bottom:486.779867pt;}
.y203{bottom:487.967333pt;}
.y269{bottom:488.158000pt;}
.y238{bottom:488.231333pt;}
.y2c4{bottom:491.888800pt;}
.y150{bottom:492.878000pt;}
.y19{bottom:493.457467pt;}
.y120{bottom:497.454000pt;}
.y31b{bottom:497.555467pt;}
.y350{bottom:497.582133pt;}
.y1b4{bottom:498.500800pt;}
.y199{bottom:500.788800pt;}
.y96{bottom:500.903467pt;}
.y3a{bottom:501.779600pt;}
.y28f{bottom:501.937067pt;}
.y2f8{bottom:503.262133pt;}
.yc7{bottom:504.115867pt;}
.yf2{bottom:504.154267pt;}
.y202{bottom:504.628667pt;}
.y237{bottom:504.892667pt;}
.y187{bottom:504.929467pt;}
.y62{bottom:505.479467pt;}
.y268{bottom:505.494000pt;}
.y2c3{bottom:508.555467pt;}
.y14f{bottom:510.214000pt;}
.y18{bottom:511.057467pt;}
.y31a{bottom:514.222133pt;}
.y34f{bottom:514.248800pt;}
.y1b3{bottom:515.836800pt;}
.y198{bottom:518.124800pt;}
.y95{bottom:518.239467pt;}
.y28e{bottom:518.603733pt;}
.y2f7{bottom:519.928800pt;}
.y39{bottom:519.959600pt;}
.y201{bottom:521.290000pt;}
.yf1{bottom:521.305200pt;}
.yc6{bottom:521.451867pt;}
.y186{bottom:522.529467pt;}
.y61{bottom:522.815467pt;}
.y267{bottom:522.830000pt;}
.y2c2{bottom:525.222133pt;}
.y14e{bottom:527.550000pt;}
.y17{bottom:528.657467pt;}
.y11f{bottom:529.911333pt;}
.y319{bottom:530.888800pt;}
.y1b2{bottom:533.172800pt;}
.y28d{bottom:535.270400pt;}
.y94{bottom:535.575467pt;}
.y34e{bottom:536.582133pt;}
.y236{bottom:536.675333pt;}
.y200{bottom:537.951333pt;}
.y38{bottom:538.139600pt;}
.yf0{bottom:538.641200pt;}
.yc5{bottom:538.787867pt;}
.y60{bottom:540.151467pt;}
.y266{bottom:540.166000pt;}
.y2f6{bottom:542.262133pt;}
.y14d{bottom:544.886000pt;}
.y16{bottom:546.257467pt;}
.y2c1{bottom:547.555467pt;}
.y185{bottom:548.325333pt;}
.y1b1{bottom:550.508800pt;}
.y197{bottom:550.582133pt;}
.y93{bottom:552.911467pt;}
.y318{bottom:553.222133pt;}
.y34d{bottom:553.248800pt;}
.y235{bottom:553.336667pt;}
.y1ff{bottom:554.612667pt;}
.yef{bottom:555.977200pt;}
.yc4{bottom:556.123867pt;}
.y37{bottom:556.319600pt;}
.y5f{bottom:557.487467pt;}
.y265{bottom:557.502000pt;}
.y28c{bottom:557.603733pt;}
.y2f5{bottom:558.928800pt;}
.y14c{bottom:562.222000pt;}
.y11e{bottom:562.368667pt;}
.y15{bottom:563.857467pt;}
.y2c0{bottom:564.222133pt;}
.y317{bottom:569.888800pt;}
.y34c{bottom:569.915467pt;}
.y234{bottom:569.998000pt;}
.y92{bottom:570.247467pt;}
.y1fe{bottom:571.274000pt;}
.yee{bottom:573.313200pt;}
.yc3{bottom:573.459867pt;}
.y183{bottom:574.121067pt;}
.y28b{bottom:574.270400pt;}
.y5e{bottom:574.823467pt;}
.y264{bottom:574.838000pt;}
.y2f4{bottom:575.595467pt;}
.y14b{bottom:579.558000pt;}
.y11d{bottom:579.704667pt;}
.y2bf{bottom:580.888800pt;}
.y14{bottom:581.457467pt;}
.y316{bottom:586.555467pt;}
.y34b{bottom:586.582133pt;}
.y233{bottom:586.659333pt;}
.y91{bottom:587.583467pt;}
.y1fd{bottom:587.935333pt;}
.y1cd{bottom:590.288267pt;}
.yed{bottom:590.649200pt;}
.yc2{bottom:590.795867pt;}
.y28a{bottom:590.937067pt;}
.y184{bottom:591.398400pt;}
.y182{bottom:591.721067pt;}
.y5d{bottom:592.159467pt;}
.y263{bottom:592.174000pt;}
.y2f3{bottom:592.262133pt;}
.y36{bottom:592.679600pt;}
.y14a{bottom:596.894000pt;}
.y11c{bottom:597.040667pt;}
.y2be{bottom:597.555467pt;}
.y315{bottom:603.222133pt;}
.y232{bottom:603.320667pt;}
.y1fc{bottom:604.596667pt;}
.y90{bottom:604.919467pt;}
.y289{bottom:607.603733pt;}
.y1cc{bottom:607.888133pt;}
.yec{bottom:607.985200pt;}
.yc1{bottom:608.131867pt;}
.y34a{bottom:608.915467pt;}
.y2f2{bottom:608.928800pt;}
.y5c{bottom:609.495467pt;}
.y262{bottom:609.510000pt;}
.y13{bottom:610.394800pt;}
.y35{bottom:610.859600pt;}
.y149{bottom:614.230000pt;}
.y11b{bottom:614.376667pt;}
.y181{bottom:617.513733pt;}
.y2bd{bottom:619.888800pt;}
.y231{bottom:619.982000pt;}
.y1fb{bottom:621.258000pt;}
.y8f{bottom:622.255467pt;}
.yeb{bottom:625.321200pt;}
.yc0{bottom:625.467867pt;}
.y1cb{bottom:625.488133pt;}
.y349{bottom:625.582133pt;}
.y2f1{bottom:625.595467pt;}
.y5b{bottom:626.831467pt;}
.y261{bottom:626.846000pt;}
.y12{bottom:627.994800pt;}
.y34{bottom:629.039600pt;}
.y148{bottom:631.566000pt;}
.y288{bottom:631.642000pt;}
.y11a{bottom:631.712667pt;}
.y180{bottom:635.113733pt;}
.y2bc{bottom:636.555467pt;}
.y230{bottom:636.643333pt;}
.y1fa{bottom:637.919333pt;}
.y8e{bottom:639.591467pt;}
.y348{bottom:642.248800pt;}
.y2f0{bottom:642.262133pt;}
.yea{bottom:642.657200pt;}
.ybf{bottom:642.803867pt;}
.y5a{bottom:644.167467pt;}
.y260{bottom:644.182000pt;}
.y11{bottom:645.594800pt;}
.y33{bottom:647.219600pt;}
.y147{bottom:648.902000pt;}
.y119{bottom:649.048667pt;}
.y2bb{bottom:653.222133pt;}
.y22f{bottom:653.304667pt;}
.y1f9{bottom:654.580667pt;}
.y8d{bottom:656.927467pt;}
.y314{bottom:658.888800pt;}
.y17f{bottom:661.235067pt;}
.y59{bottom:661.503467pt;}
.y10{bottom:663.194800pt;}
.y347{bottom:664.582133pt;}
.y2ef{bottom:664.595467pt;}
.y118{bottom:666.384667pt;}
.y2ba{bottom:669.888800pt;}
.y22e{bottom:669.966000pt;}
.y1f8{bottom:671.242000pt;}
.y8c{bottom:674.263467pt;}
.ye9{bottom:675.114533pt;}
.ybe{bottom:675.261200pt;}
.y313{bottom:675.555467pt;}
.y25f{bottom:676.639333pt;}
.y58{bottom:678.839467pt;}
.y346{bottom:681.248800pt;}
.y2ee{bottom:681.262133pt;}
.y146{bottom:681.359333pt;}
.y32{bottom:683.579600pt;}
.y22d{bottom:686.627333pt;}
.y1f7{bottom:687.903333pt;}
.y287{bottom:689.516667pt;}
.y8b{bottom:691.599467pt;}
.y2b9{bottom:692.222133pt;}
.y17e{bottom:692.611467pt;}
.y57{bottom:696.175467pt;}
.y345{bottom:697.915467pt;}
.y2ed{bottom:697.928800pt;}
.y145{bottom:698.695333pt;}
.y117{bottom:698.842000pt;}
.y31{bottom:701.759600pt;}
.y22c{bottom:703.288667pt;}
.y1f6{bottom:704.564667pt;}
.y286{bottom:707.116667pt;}
.ye8{bottom:707.571867pt;}
.ybd{bottom:707.718533pt;}
.y2b8{bottom:708.888800pt;}
.y8a{bottom:708.935467pt;}
.y56{bottom:713.511467pt;}
.y2ec{bottom:714.595467pt;}
.y17d{bottom:714.611467pt;}
.yf{bottom:716.420267pt;}
.y22b{bottom:719.950000pt;}
.y344{bottom:720.248800pt;}
.y1f5{bottom:721.226000pt;}
.ye7{bottom:724.907867pt;}
.ybc{bottom:725.054533pt;}
.y2b7{bottom:725.555467pt;}
.y89{bottom:726.271467pt;}
.y144{bottom:731.152667pt;}
.y312{bottom:731.222133pt;}
.y2eb{bottom:731.262133pt;}
.y116{bottom:731.299333pt;}
.y22a{bottom:736.611333pt;}
.y343{bottom:736.915467pt;}
.y1f4{bottom:737.887333pt;}
.y30{bottom:738.119600pt;}
.y285{bottom:739.574000pt;}
.y17c{bottom:740.087467pt;}
.y25e{bottom:741.539333pt;}
.ye6{bottom:742.243867pt;}
.y16c{bottom:742.346133pt;}
.ybb{bottom:742.390533pt;}
.y88{bottom:743.607467pt;}
.y55{bottom:745.968800pt;}
.y2b6{bottom:747.888800pt;}
.y2ea{bottom:747.928800pt;}
.y143{bottom:748.488667pt;}
.y115{bottom:748.635333pt;}
.y2f{bottom:752.519600pt;}
.y229{bottom:753.272667pt;}
.y342{bottom:753.582133pt;}
.y1f3{bottom:754.548667pt;}
.y17b{bottom:757.423467pt;}
.y25d{bottom:758.875333pt;}
.ye5{bottom:759.579867pt;}
.yba{bottom:759.682133pt;}
.y87{bottom:760.943467pt;}
.y54{bottom:763.304800pt;}
.y2b5{bottom:764.555467pt;}
.ye{bottom:764.943467pt;}
.y142{bottom:765.824667pt;}
.y114{bottom:765.971333pt;}
.y2e{bottom:766.919600pt;}
.y228{bottom:769.934000pt;}
.y341{bottom:770.248800pt;}
.y2e9{bottom:770.262133pt;}
.y1f2{bottom:771.210000pt;}
.y284{bottom:772.031333pt;}
.y17a{bottom:774.759467pt;}
.y25c{bottom:776.211333pt;}
.ye4{bottom:776.915867pt;}
.yb9{bottom:777.018133pt;}
.yd{bottom:777.743467pt;}
.y86{bottom:778.279467pt;}
.y53{bottom:780.640800pt;}
.y2b4{bottom:781.222133pt;}
.y2d{bottom:781.319600pt;}
.y141{bottom:783.160667pt;}
.y113{bottom:783.307333pt;}
.y227{bottom:786.595333pt;}
.y340{bottom:786.915467pt;}
.y2e8{bottom:786.928800pt;}
.y1f1{bottom:787.871333pt;}
.y179{bottom:792.095467pt;}
.y16b{bottom:792.139467pt;}
.y25b{bottom:793.547333pt;}
.ye3{bottom:794.251867pt;}
.yb8{bottom:794.354133pt;}
.y85{bottom:795.615467pt;}
.y2c{bottom:795.719600pt;}
.y2b3{bottom:797.888800pt;}
.y52{bottom:797.976800pt;}
.y140{bottom:800.496667pt;}
.y112{bottom:800.643333pt;}
.y226{bottom:803.256667pt;}
.y2e7{bottom:803.595467pt;}
.y283{bottom:804.488667pt;}
.y1f0{bottom:804.532667pt;}
.yc{bottom:805.159200pt;}
.y33f{bottom:809.248800pt;}
.y178{bottom:809.431467pt;}
.y16a{bottom:809.475467pt;}
.y25a{bottom:810.883333pt;}
.ye2{bottom:811.587867pt;}
.yb7{bottom:811.690133pt;}
.y84{bottom:812.951467pt;}
.y2b{bottom:813.899600pt;}
.y51{bottom:815.312800pt;}
.y111{bottom:817.979333pt;}
.y225{bottom:819.918000pt;}
.y2b2{bottom:820.222133pt;}
.y2e6{bottom:820.262133pt;}
.yb{bottom:821.159200pt;}
.y1ef{bottom:821.194000pt;}
.y33e{bottom:825.915467pt;}
.y177{bottom:826.767467pt;}
.y259{bottom:828.219333pt;}
.ye1{bottom:828.923867pt;}
.yb6{bottom:829.026133pt;}
.y83{bottom:830.287467pt;}
.y50{bottom:832.648800pt;}
.y13f{bottom:832.954000pt;}
.y110{bottom:835.315333pt;}
.y224{bottom:836.579333pt;}
.y2b1{bottom:836.888800pt;}
.y282{bottom:836.946000pt;}
.y1ee{bottom:837.855333pt;}
.y169{bottom:841.932800pt;}
.y33d{bottom:842.582133pt;}
.y2e5{bottom:842.595467pt;}
.y176{bottom:844.103467pt;}
.y258{bottom:845.555333pt;}
.ye0{bottom:846.259867pt;}
.yb5{bottom:846.362133pt;}
.y82{bottom:847.623467pt;}
.y4f{bottom:849.984800pt;}
.y13e{bottom:850.290000pt;}
.y223{bottom:853.240667pt;}
.y2b0{bottom:853.555467pt;}
.y9{bottom:854.070933pt;}
.y281{bottom:854.282000pt;}
.y1ed{bottom:854.516667pt;}
.y33c{bottom:859.248800pt;}
.y2e4{bottom:859.262133pt;}
.y168{bottom:859.268800pt;}
.y175{bottom:861.439467pt;}
.y257{bottom:862.891333pt;}
.ydf{bottom:863.595867pt;}
.yb4{bottom:863.698133pt;}
.y4e{bottom:867.320800pt;}
.y10f{bottom:867.772667pt;}
.y222{bottom:869.902000pt;}
.y2af{bottom:870.222133pt;}
.y33b{bottom:875.915467pt;}
.y2e3{bottom:875.928800pt;}
.y167{bottom:876.604800pt;}
.y81{bottom:880.080800pt;}
.y256{bottom:880.227333pt;}
.yb3{bottom:881.034133pt;}
.y13d{bottom:882.747333pt;}
.y8{bottom:882.870933pt;}
.y10e{bottom:885.108667pt;}
.y1ec{bottom:886.299333pt;}
.y221{bottom:886.563333pt;}
.y280{bottom:886.739333pt;}
.y311{bottom:886.888800pt;}
.y2ae{bottom:892.555467pt;}
.y2e2{bottom:892.595467pt;}
.y174{bottom:893.896800pt;}
.y166{bottom:893.940800pt;}
.yde{bottom:896.053200pt;}
.y80{bottom:897.416800pt;}
.y255{bottom:897.563333pt;}
.y33a{bottom:898.248800pt;}
.yb2{bottom:898.370133pt;}
.y4d{bottom:899.778133pt;}
.y13c{bottom:900.083333pt;}
.y10d{bottom:902.444667pt;}
.y1eb{bottom:902.960667pt;}
.y220{bottom:903.224667pt;}
.y27f{bottom:904.075333pt;}
.y2ad{bottom:909.222133pt;}
.y173{bottom:911.232800pt;}
.y165{bottom:911.276800pt;}
.y7{bottom:911.670933pt;}
.ydd{bottom:913.389200pt;}
.y7f{bottom:914.752800pt;}
.y254{bottom:914.899333pt;}
.y339{bottom:914.915467pt;}
.y2e1{bottom:914.928800pt;}
.y4c{bottom:917.114133pt;}
.y13b{bottom:917.419333pt;}
.y1ea{bottom:919.622000pt;}
.y10c{bottom:919.780667pt;}
.y21f{bottom:919.886000pt;}
.y2ac{bottom:925.888800pt;}
.y172{bottom:928.568800pt;}
.y164{bottom:928.612800pt;}
.yb1{bottom:930.827467pt;}
.y338{bottom:931.582133pt;}
.y2e0{bottom:931.595467pt;}
.y7e{bottom:932.088800pt;}
.y253{bottom:932.235333pt;}
.y4b{bottom:934.450133pt;}
.y13a{bottom:934.755333pt;}
.y1e9{bottom:936.283333pt;}
.y6{bottom:936.485733pt;}
.y27e{bottom:936.532667pt;}
.y21e{bottom:936.547333pt;}
.y10b{bottom:937.116667pt;}
.y310{bottom:942.555467pt;}
.ydc{bottom:945.846533pt;}
.y163{bottom:945.948800pt;}
.y2ab{bottom:948.222133pt;}
.y337{bottom:948.248800pt;}
.y2df{bottom:948.262133pt;}
.y7d{bottom:949.424800pt;}
.y252{bottom:949.571333pt;}
.y5{bottom:950.885733pt;}
.y4a{bottom:951.786133pt;}
.y139{bottom:952.091333pt;}
.y1e8{bottom:952.944667pt;}
.y21d{bottom:953.208667pt;}
.y10a{bottom:954.452667pt;}
.y171{bottom:961.026133pt;}
.ydb{bottom:963.182533pt;}
.yb0{bottom:963.284800pt;}
.y2aa{bottom:964.888800pt;}
.y336{bottom:964.915467pt;}
.y2de{bottom:964.928800pt;}
.y7c{bottom:966.760800pt;}
.y251{bottom:966.907333pt;}
.y27d{bottom:968.990000pt;}
.y49{bottom:969.122133pt;}
.y138{bottom:969.427333pt;}
.y1e7{bottom:969.606000pt;}
.y21c{bottom:969.870000pt;}
.y109{bottom:971.788667pt;}
.y170{bottom:978.362133pt;}
.yda{bottom:980.518533pt;}
.yaf{bottom:980.620800pt;}
.y2a9{bottom:981.555467pt;}
.y7b{bottom:984.096800pt;}
.y250{bottom:984.243333pt;}
.y1e6{bottom:986.267333pt;}
.y48{bottom:986.458133pt;}
.y21b{bottom:986.531333pt;}
.y137{bottom:986.763333pt;}
.y335{bottom:987.248800pt;}
.y2dd{bottom:987.262133pt;}
.y108{bottom:989.124667pt;}
.y16f{bottom:995.698133pt;}
.yae{bottom:997.956800pt;}
.y30f{bottom:998.222133pt;}
.ya{bottom:998.382000pt;}
.y7a{bottom:1001.432800pt;}
.y27c{bottom:1001.447333pt;}
.y24f{bottom:1001.579333pt;}
.y1e5{bottom:1002.928667pt;}
.y21a{bottom:1003.192667pt;}
.y47{bottom:1003.794133pt;}
.y2a8{bottom:1003.888800pt;}
.y334{bottom:1003.915467pt;}
.y2dc{bottom:1003.928800pt;}
.y136{bottom:1004.099333pt;}
.yd9{bottom:1012.975867pt;}
.y16e{bottom:1013.034133pt;}
.y162{bottom:1013.078133pt;}
.y79{bottom:1018.768800pt;}
.y27b{bottom:1018.783333pt;}
.y24e{bottom:1018.915333pt;}
.y1e4{bottom:1019.590000pt;}
.y219{bottom:1019.854000pt;}
.y2a7{bottom:1020.555467pt;}
.y333{bottom:1020.582133pt;}
.y2db{bottom:1020.595467pt;}
.y135{bottom:1021.435333pt;}
.y107{bottom:1021.582000pt;}
.yd8{bottom:1030.311867pt;}
.y16d{bottom:1030.370133pt;}
.yad{bottom:1030.414133pt;}
.y78{bottom:1036.104800pt;}
.y27a{bottom:1036.119333pt;}
.y1e3{bottom:1036.251333pt;}
.y46{bottom:1036.251467pt;}
.y218{bottom:1036.515333pt;}
.y2a6{bottom:1037.222133pt;}
.y332{bottom:1037.248800pt;}
.y2da{bottom:1037.262133pt;}
.y134{bottom:1038.771333pt;}
.y106{bottom:1038.918000pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y45{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.h1d{height:25.718802pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.hf{height:35.906250pt;}
.he{height:36.093750pt;}
.h3{height:39.479167pt;}
.h20{height:39.895833pt;}
.h4{height:40.104167pt;}
.h5{height:42.024354pt;}
.hd{height:43.885417pt;}
.hc{height:44.114583pt;}
.h18{height:45.121198pt;}
.h15{height:45.131865pt;}
.h1b{height:45.132398pt;}
.h16{height:45.133998pt;}
.h13{height:45.187331pt;}
.h14{height:45.210798pt;}
.h19{height:45.254802pt;}
.h1c{height:45.255335pt;}
.h11{height:45.298798pt;}
.h1a{height:45.405250pt;}
.h8{height:45.562500pt;}
.h9{height:45.729167pt;}
.h12{height:45.861465pt;}
.h17{height:46.411865pt;}
.h10{height:48.125000pt;}
.h1e{height:49.368342pt;}
.h1f{height:49.369408pt;}
.hb{height:64.020833pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:5.429600pt;}
.x10{left:11.801600pt;}
.xf{left:19.421600pt;}
.xe{left:20.801600pt;}
.xd{left:22.445600pt;}
.x6{left:32.171733pt;}
.x13{left:38.477600pt;}
.x11{left:41.561600pt;}
.x15{left:43.193600pt;}
.xc{left:50.825600pt;}
.x5{left:56.039733pt;}
.x19{left:57.354267pt;}
.x16{left:59.261600pt;}
.x17{left:64.251867pt;}
.x12{left:78.809600pt;}
.x1e{left:80.692933pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xb{left:206.921600pt;}
.xa{left:213.819200pt;}
.x1b{left:218.875600pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x18{left:410.262267pt;}
.x1d{left:434.078800pt;}
.x8{left:586.546933pt;}
.x3{left:710.070667pt;}
.x1a{left:711.613600pt;}
.x1c{left:737.385867pt;}
}




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