
    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_bccfbbca91e70f00b9d7f2e5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4bdc5d9101e10ed13ee6b8c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_bc62791b57d6536c373f0c9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8edfcd97cbc5e857afc2aacd.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_ee4a9288ebf33c949d5ed3fb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ae2cc25a2ac366e9fbdfd0c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_bccfbbca91e70f00b9d7f2e5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3a200ed9365a52cd082c8040.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;}
.m1{transform:matrix(0.233254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233254,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);}
.v4{vertical-align:-42.000000px;}
.v3{vertical-align:-36.000000px;}
.v2{vertical-align:-27.972000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.976000px;}
.v1{vertical-align:27.972000px;}
.v6{vertical-align:36.000000px;}
.v7{vertical-align:72.000000px;}
.ls4{letter-spacing:-1.018760px;}
.ls6{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.509380px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.183828px;}
.ls3{letter-spacing:1.863162px;}
.ls1{letter-spacing:16.177200px;}
.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;}
}
.ws69{word-spacing:-18.000000px;}
.wsbd{word-spacing:-16.500000px;}
.ws6d{word-spacing:-10.494000px;}
.ws1a{word-spacing:-6.624000px;}
.wsb9{word-spacing:-6.552000px;}
.ws87{word-spacing:-6.264000px;}
.ws5b{word-spacing:-6.064050px;}
.wsb{word-spacing:-6.048000px;}
.wsb4{word-spacing:-5.832000px;}
.ws9f{word-spacing:-5.760000px;}
.ws1b{word-spacing:-5.688000px;}
.ws5a{word-spacing:-5.554670px;}
.wsa1{word-spacing:-5.328000px;}
.ws85{word-spacing:-5.256000px;}
.ws58{word-spacing:-5.045290px;}
.wsb6{word-spacing:-4.968000px;}
.wsad{word-spacing:-4.824000px;}
.ws1{word-spacing:-4.620000px;}
.ws3e{word-spacing:-4.536000px;}
.wsf{word-spacing:-4.032000px;}
.wsa8{word-spacing:-3.960000px;}
.ws6{word-spacing:-3.744000px;}
.ws24{word-spacing:-3.456000px;}
.ws15{word-spacing:-3.384000px;}
.ws5{word-spacing:-3.312000px;}
.wsaf{word-spacing:-3.096000px;}
.wse{word-spacing:-3.024000px;}
.wsc1{word-spacing:-2.970000px;}
.ws3a{word-spacing:-2.880000px;}
.ws1e{word-spacing:-2.808000px;}
.wsa6{word-spacing:-2.736000px;}
.ws37{word-spacing:-2.448000px;}
.ws2b{word-spacing:-2.376000px;}
.wsaa{word-spacing:-2.304000px;}
.wsba{word-spacing:-2.232000px;}
.ws90{word-spacing:-2.088000px;}
.ws9e{word-spacing:-2.016000px;}
.ws22{word-spacing:-1.800000px;}
.ws8{word-spacing:-1.656000px;}
.ws99{word-spacing:-1.584000px;}
.ws2{word-spacing:-1.512000px;}
.ws94{word-spacing:-1.440000px;}
.ws32{word-spacing:-1.224000px;}
.ws2d{word-spacing:-1.080000px;}
.ws97{word-spacing:-1.008000px;}
.wsa2{word-spacing:-0.936000px;}
.ws8f{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.792000px;}
.ws34{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.648000px;}
.wsa4{word-spacing:-0.576000px;}
.wsc7{word-spacing:-0.396000px;}
.ws9b{word-spacing:-0.360000px;}
.wsc0{word-spacing:-0.330000px;}
.ws93{word-spacing:-0.288000px;}
.wsc{word-spacing:-0.216000px;}
.ws23{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.216000px;}
.ws54{word-spacing:0.504000px;}
.ws6f{word-spacing:0.509380px;}
.ws82{word-spacing:0.720000px;}
.wsbc{word-spacing:0.924000px;}
.wsa5{word-spacing:0.936000px;}
.ws6e{word-spacing:1.018760px;}
.ws9{word-spacing:1.080000px;}
.wsa3{word-spacing:1.224000px;}
.ws52{word-spacing:1.512000px;}
.wsae{word-spacing:1.800000px;}
.wsa{word-spacing:1.944000px;}
.wsb2{word-spacing:2.016000px;}
.ws83{word-spacing:2.088000px;}
.ws25{word-spacing:2.304000px;}
.ws4d{word-spacing:2.520000px;}
.ws56{word-spacing:2.736000px;}
.ws39{word-spacing:2.808000px;}
.wsa9{word-spacing:2.952000px;}
.ws10{word-spacing:3.024000px;}
.ws1d{word-spacing:3.312000px;}
.ws40{word-spacing:3.456000px;}
.wsbe{word-spacing:3.564000px;}
.ws19{word-spacing:3.600000px;}
.wsb5{word-spacing:3.672000px;}
.ws2a{word-spacing:3.744000px;}
.wsc2{word-spacing:3.762000px;}
.ws53{word-spacing:3.816000px;}
.ws4{word-spacing:3.888000px;}
.ws7{word-spacing:4.248000px;}
.ws14{word-spacing:4.464000px;}
.ws41{word-spacing:4.536000px;}
.wsbb{word-spacing:4.554000px;}
.ws4c{word-spacing:4.608000px;}
.wsc3{word-spacing:4.620000px;}
.ws3f{word-spacing:4.680000px;}
.ws3b{word-spacing:4.752000px;}
.ws95{word-spacing:4.824000px;}
.ws28{word-spacing:4.896000px;}
.ws47{word-spacing:5.256000px;}
.ws96{word-spacing:5.328000px;}
.ws8b{word-spacing:5.472000px;}
.wsc5{word-spacing:5.610000px;}
.ws35{word-spacing:5.760000px;}
.ws45{word-spacing:5.976000px;}
.ws8e{word-spacing:6.120000px;}
.ws8c{word-spacing:6.192000px;}
.ws7f{word-spacing:6.408000px;}
.ws50{word-spacing:6.480000px;}
.ws38{word-spacing:6.552000px;}
.ws1c{word-spacing:6.624000px;}
.ws2c{word-spacing:6.696000px;}
.ws98{word-spacing:6.984000px;}
.ws1f{word-spacing:7.344000px;}
.ws42{word-spacing:7.560000px;}
.ws33{word-spacing:7.632000px;}
.ws18{word-spacing:7.704000px;}
.ws4b{word-spacing:8.208000px;}
.ws30{word-spacing:8.280000px;}
.ws8d{word-spacing:8.568000px;}
.ws17{word-spacing:8.712000px;}
.ws8a{word-spacing:8.856000px;}
.ws51{word-spacing:9.144000px;}
.wsd{word-spacing:9.288000px;}
.ws29{word-spacing:9.432000px;}
.ws12{word-spacing:9.504000px;}
.ws84{word-spacing:9.576000px;}
.ws36{word-spacing:9.720000px;}
.ws3d{word-spacing:9.792000px;}
.wsc6{word-spacing:9.966000px;}
.ws27{word-spacing:10.224000px;}
.ws21{word-spacing:10.512000px;}
.ws26{word-spacing:10.584000px;}
.wsc8{word-spacing:10.626000px;}
.ws43{word-spacing:10.728000px;}
.wsb8{word-spacing:10.800000px;}
.wsbf{word-spacing:10.824000px;}
.ws31{word-spacing:11.016000px;}
.ws86{word-spacing:11.088000px;}
.ws9c{word-spacing:11.232000px;}
.ws46{word-spacing:11.448000px;}
.ws3c{word-spacing:11.664000px;}
.ws88{word-spacing:11.952000px;}
.ws11{word-spacing:12.312000px;}
.wsa0{word-spacing:13.032000px;}
.ws89{word-spacing:13.248000px;}
.ws48{word-spacing:13.680000px;}
.ws4e{word-spacing:13.968000px;}
.ws9d{word-spacing:14.040000px;}
.ws20{word-spacing:14.184000px;}
.ws4a{word-spacing:14.760000px;}
.ws16{word-spacing:14.832000px;}
.ws57{word-spacing:14.976000px;}
.wsb1{word-spacing:15.192000px;}
.ws3{word-spacing:15.264000px;}
.wsb0{word-spacing:15.336000px;}
.ws4f{word-spacing:15.624000px;}
.wsb7{word-spacing:15.912000px;}
.ws9a{word-spacing:16.128000px;}
.ws13{word-spacing:16.200000px;}
.wsc4{word-spacing:16.236000px;}
.ws49{word-spacing:16.560000px;}
.wsa7{word-spacing:18.360000px;}
.ws92{word-spacing:18.720000px;}
.wsac{word-spacing:21.168000px;}
.ws55{word-spacing:22.248000px;}
.ws91{word-spacing:25.632000px;}
.ws70{word-spacing:26.424000px;}
.ws44{word-spacing:29.232000px;}
.ws7c{word-spacing:35.686800px;}
.wsb3{word-spacing:38.016000px;}
.wsab{word-spacing:51.048000px;}
.ws7a{word-spacing:65.615400px;}
.ws7d{word-spacing:90.118200px;}
.ws5d{word-spacing:95.020027px;}
.ws5c{word-spacing:95.524199px;}
.ws59{word-spacing:95.524842px;}
.ws65{word-spacing:124.180800px;}
.ws7e{word-spacing:124.558800px;}
.ws66{word-spacing:136.132800px;}
.ws6a{word-spacing:140.236800px;}
.ws77{word-spacing:145.872000px;}
.ws79{word-spacing:148.543800px;}
.ws76{word-spacing:148.544400px;}
.ws6c{word-spacing:152.746800px;}
.ws63{word-spacing:154.204800px;}
.ws81{word-spacing:175.157400px;}
.ws6b{word-spacing:180.196800px;}
.ws74{word-spacing:181.872000px;}
.ws62{word-spacing:190.204800px;}
.ws64{word-spacing:204.244800px;}
.ws68{word-spacing:226.204800px;}
.ws61{word-spacing:260.260800px;}
.ws67{word-spacing:262.204800px;}
.ws5f{word-spacing:280.276800px;}
.ws7b{word-spacing:296.805000px;}
.ws60{word-spacing:316.204800px;}
.ws5e{word-spacing:332.188800px;}
.ws71{word-spacing:399.259800px;}
.ws75{word-spacing:399.331800px;}
.ws73{word-spacing:451.243800px;}
.ws78{word-spacing:459.235800px;}
.ws72{word-spacing:463.195800px;}
._1a{margin-left:-10.085400px;}
._8{margin-left:-8.878200px;}
._2{margin-left:-7.627200px;}
._15{margin-left:-6.505800px;}
._0{margin-left:-5.352000px;}
._6{margin-left:-4.348800px;}
._1{margin-left:-3.091200px;}
._5{margin-left:-1.505400px;}
._7{width:1.103400px;}
._4{width:2.209800px;}
._12{width:3.231000px;}
._9{width:4.264200px;}
._3{width:5.562000px;}
._a{width:7.298100px;}
._e{width:8.700600px;}
._b{width:9.798000px;}
._11{width:11.025000px;}
._10{width:12.249000px;}
._f{width:13.829400px;}
._d{width:14.876400px;}
._c{width:15.890700px;}
._1d{width:16.991100px;}
._21{width:19.024800px;}
._19{width:20.311200px;}
._14{width:21.314400px;}
._13{width:22.394400px;}
._17{width:23.551200px;}
._16{width:24.832800px;}
._32{width:26.323200px;}
._18{width:28.180800px;}
._30{width:29.404800px;}
._31{width:31.161600px;}
._23{width:62.260800px;}
._2c{width:91.174200px;}
._28{width:94.372800px;}
._1b{width:112.702800px;}
._2a{width:122.164800px;}
._1c{width:132.024600px;}
._2f{width:144.150000px;}
._2e{width:164.769000px;}
._26{width:172.204800px;}
._2d{width:191.657400px;}
._29{width:202.228800px;}
._24{width:208.204800px;}
._25{width:211.296000px;}
._27{width:280.204800px;}
._22{width:366.244800px;}
._2b{width:485.299800px;}
._1f{width:514.798800px;}
._1e{width:527.690400px;}
._20{width:788.877600px;}
.fc1{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:24.256200px;}
.fs6{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs7{font-size:66.000000px;}
.fs4{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:13.912200px;}
.y113{bottom:14.544150px;}
.y127{bottom:14.670300px;}
.ye8{bottom:20.354100px;}
.yf2{bottom:20.355000px;}
.yff{bottom:20.985900px;}
.y109{bottom:20.986500px;}
.y116{bottom:21.112200px;}
.y11e{bottom:21.112950px;}
.ye9{bottom:32.608800px;}
.yf3{bottom:32.609550px;}
.y100{bottom:33.240450px;}
.y10a{bottom:33.241050px;}
.y117{bottom:33.366750px;}
.y11f{bottom:33.367500px;}
.y2{bottom:38.138100px;}
.yea{bottom:44.863500px;}
.yf4{bottom:44.864250px;}
.y101{bottom:45.495150px;}
.y10b{bottom:45.495750px;}
.y118{bottom:45.621450px;}
.y120{bottom:45.622050px;}
.yeb{bottom:56.991750px;}
.yf5{bottom:56.992500px;}
.y102{bottom:57.623550px;}
.y10c{bottom:57.624150px;}
.y119{bottom:57.749850px;}
.y121{bottom:57.750300px;}
.yec{bottom:69.246300px;}
.yf6{bottom:69.247050px;}
.y103{bottom:69.878250px;}
.y10d{bottom:69.878850px;}
.y11a{bottom:70.004550px;}
.y122{bottom:70.005150px;}
.y1af{bottom:70.228200px;}
.yb5{bottom:75.752550px;}
.yc7{bottom:79.254600px;}
.y16d{bottom:81.441450px;}
.yed{bottom:81.501000px;}
.yf7{bottom:81.501600px;}
.y11b{bottom:82.132800px;}
.y104{bottom:82.132950px;}
.y10e{bottom:82.133550px;}
.y96{bottom:82.202550px;}
.ye6{bottom:82.854450px;}
.y49{bottom:85.001700px;}
.y21{bottom:85.855650px;}
.y1d7{bottom:86.894550px;}
.y19a{bottom:87.204600px;}
.y199{bottom:88.681050px;}
.yee{bottom:93.629400px;}
.yf8{bottom:93.630000px;}
.y105{bottom:94.261050px;}
.y10f{bottom:94.261800px;}
.y11c{bottom:94.387350px;}
.y123{bottom:94.387950px;}
.y1ae{bottom:95.324400px;}
.y70{bottom:95.852550px;}
.yb4{bottom:97.502550px;}
.yc6{bottom:100.254600px;}
.y16c{bottom:102.441450px;}
.ye5{bottom:103.854450px;}
.y95{bottom:103.952550px;}
.y15a{bottom:105.606150px;}
.yef{bottom:105.884100px;}
.yf9{bottom:105.884700px;}
.y48{bottom:106.001700px;}
.y1e9{bottom:106.144650px;}
.y11d{bottom:106.515600px;}
.y106{bottom:106.515750px;}
.y124{bottom:106.516200px;}
.y110{bottom:106.516350px;}
.y20{bottom:107.605650px;}
.y129{bottom:107.652450px;}
.y1d6{bottom:107.894550px;}
.y17a{bottom:108.204600px;}
.y115{bottom:109.421100px;}
.y198{bottom:109.681050px;}
.yfe{bottom:111.316350px;}
.y214{bottom:112.717050px;}
.y1ad{bottom:116.324400px;}
.y128{bottom:116.495850px;}
.y6f{bottom:117.602550px;}
.yf0{bottom:118.138800px;}
.yfa{bottom:118.139400px;}
.y114{bottom:118.264650px;}
.y107{bottom:118.770300px;}
.y125{bottom:118.770900px;}
.y111{bottom:118.771050px;}
.yb3{bottom:119.252550px;}
.yfd{bottom:120.159600px;}
.yc5{bottom:121.254600px;}
.y16b{bottom:123.441450px;}
.y1e8{bottom:124.144650px;}
.ye4{bottom:124.854450px;}
.y94{bottom:125.702550px;}
.y47{bottom:127.001700px;}
.y1d5{bottom:128.894550px;}
.y179{bottom:129.204600px;}
.y1f{bottom:129.355650px;}
.yf1{bottom:130.267200px;}
.yfb{bottom:130.267650px;}
.y197{bottom:130.681050px;}
.y213{bottom:130.717050px;}
.y108{bottom:130.898700px;}
.y126{bottom:130.899300px;}
.y112{bottom:130.899450px;}
.y159{bottom:131.118000px;}
.y1ac{bottom:137.324400px;}
.y142{bottom:139.342500px;}
.y6e{bottom:139.352550px;}
.yb2{bottom:141.002550px;}
.yc4{bottom:142.254600px;}
.y16a{bottom:144.441450px;}
.ye3{bottom:145.854450px;}
.y1e7{bottom:146.396700px;}
.y93{bottom:147.452550px;}
.y46{bottom:148.001700px;}
.y212{bottom:148.717050px;}
.y1d4{bottom:149.894550px;}
.y178{bottom:150.204600px;}
.y1e{bottom:151.105650px;}
.y196{bottom:151.681050px;}
.y158{bottom:156.629850px;}
.y1ab{bottom:158.324400px;}
.y6d{bottom:161.102550px;}
.y141{bottom:162.075000px;}
.yb1{bottom:162.752550px;}
.yc3{bottom:163.254600px;}
.y1e6{bottom:164.396700px;}
.y169{bottom:165.441450px;}
.ye2{bottom:166.854450px;}
.y45{bottom:169.001700px;}
.y92{bottom:169.202550px;}
.y1d3{bottom:170.894550px;}
.y211{bottom:170.968950px;}
.y177{bottom:171.204600px;}
.y195{bottom:172.681050px;}
.y1d{bottom:172.855650px;}
.y1aa{bottom:179.324400px;}
.y156{bottom:181.105950px;}
.y1e5{bottom:182.396700px;}
.y6c{bottom:182.852550px;}
.yb0{bottom:184.502550px;}
.y140{bottom:184.807500px;}
.yc2{bottom:185.004600px;}
.ye1{bottom:187.854600px;}
.y210{bottom:188.968950px;}
.y44{bottom:190.001700px;}
.y155{bottom:190.105950px;}
.y91{bottom:190.952550px;}
.y1d2{bottom:191.894550px;}
.y176{bottom:192.204600px;}
.y194{bottom:193.681050px;}
.y157{bottom:199.105950px;}
.y1a9{bottom:200.324400px;}
.y6b{bottom:204.602550px;}
.y1e4{bottom:204.648600px;}
.yaf{bottom:206.252550px;}
.yc1{bottom:206.754600px;}
.y229{bottom:206.968950px;}
.y13f{bottom:207.539850px;}
.ye0{bottom:208.854600px;}
.y43{bottom:211.001700px;}
.y20f{bottom:211.221000px;}
.y90{bottom:212.702550px;}
.y1d1{bottom:212.894550px;}
.y175{bottom:213.204600px;}
.y193{bottom:214.681050px;}
.y1c{bottom:216.055500px;}
.y1a8{bottom:221.324400px;}
.y1e3{bottom:222.648600px;}
.y6a{bottom:226.352550px;}
.yae{bottom:228.002550px;}
.yc0{bottom:228.504600px;}
.y20e{bottom:229.221000px;}
.ydf{bottom:229.854600px;}
.y13e{bottom:230.272350px;}
.y42{bottom:232.001700px;}
.y154{bottom:232.840350px;}
.y1d0{bottom:233.894550px;}
.y174{bottom:234.204600px;}
.y8f{bottom:234.452550px;}
.y192{bottom:235.681050px;}
.y1e2{bottom:240.648600px;}
.y1a7{bottom:242.324400px;}
.y1b{bottom:244.059450px;}
.y20d{bottom:247.221000px;}
.y69{bottom:248.102550px;}
.y13d{bottom:248.272350px;}
.ybf{bottom:250.254600px;}
.yde{bottom:250.854600px;}
.y41{bottom:253.001700px;}
.y1cf{bottom:254.894550px;}
.y173{bottom:255.204600px;}
.y8e{bottom:256.202550px;}
.y191{bottom:256.681050px;}
.yad{bottom:258.752550px;}
.y1e1{bottom:262.900650px;}
.y1a6{bottom:263.324400px;}
.y1a{bottom:263.559450px;}
.y228{bottom:265.221000px;}
.y20c{bottom:269.472900px;}
.y68{bottom:269.852550px;}
.y13c{bottom:271.004700px;}
.ydd{bottom:271.854600px;}
.ybe{bottom:272.004600px;}
.y40{bottom:274.001700px;}
.y153{bottom:274.344300px;}
.y1ce{bottom:275.894550px;}
.y172{bottom:276.204600px;}
.y190{bottom:277.681050px;}
.y8d{bottom:277.952550px;}
.y1e0{bottom:280.900650px;}
.y227{bottom:283.221000px;}
.y1a5{bottom:284.324400px;}
.y19{bottom:284.559450px;}
.y20b{bottom:287.472900px;}
.y67{bottom:291.602550px;}
.ydc{bottom:292.854600px;}
.yac{bottom:292.952550px;}
.y13b{bottom:293.737200px;}
.ybd{bottom:293.754600px;}
.y3f{bottom:295.001700px;}
.y152{bottom:295.344300px;}
.y1cd{bottom:296.894550px;}
.y171{bottom:297.204600px;}
.y18f{bottom:298.681050px;}
.y1df{bottom:298.900650px;}
.y8c{bottom:299.702550px;}
.y1a4{bottom:305.324400px;}
.y20a{bottom:305.472900px;}
.y18{bottom:305.559450px;}
.y238{bottom:309.724800px;}
.ydb{bottom:313.854600px;}
.yab{bottom:314.702550px;}
.y3e{bottom:316.001700px;}
.y151{bottom:316.344300px;}
.y13a{bottom:316.469700px;}
.y66{bottom:317.604600px;}
.y1cc{bottom:317.894550px;}
.y170{bottom:318.204600px;}
.y18e{bottom:319.681050px;}
.y1de{bottom:321.152550px;}
.y8b{bottom:321.452550px;}
.y226{bottom:323.472900px;}
.ybc{bottom:324.804450px;}
.y1a3{bottom:326.324400px;}
.y17{bottom:326.559450px;}
.y209{bottom:327.724800px;}
.yda{bottom:334.854600px;}
.yaa{bottom:336.452550px;}
.y3d{bottom:337.001700px;}
.y150{bottom:337.344300px;}
.y65{bottom:338.604600px;}
.y1cb{bottom:338.894550px;}
.y1dd{bottom:339.152550px;}
.y139{bottom:339.202050px;}
.y16f{bottom:339.204600px;}
.y18d{bottom:340.681050px;}
.y225{bottom:341.472900px;}
.y8a{bottom:343.202550px;}
.y208{bottom:345.724800px;}
.y1a2{bottom:347.324400px;}
.y16{bottom:347.559450px;}
.yd9{bottom:356.604600px;}
.y1dc{bottom:357.152550px;}
.y3c{bottom:358.001700px;}
.ya9{bottom:358.202550px;}
.y14f{bottom:358.344300px;}
.y1ca{bottom:359.894550px;}
.y16e{bottom:360.204600px;}
.y18c{bottom:361.681050px;}
.y138{bottom:361.934550px;}
.y207{bottom:363.724800px;}
.y89{bottom:364.952550px;}
.y237{bottom:367.976850px;}
.y1a1{bottom:368.324400px;}
.y15{bottom:368.559450px;}
.yd8{bottom:378.354600px;}
.y3b{bottom:379.001700px;}
.y14e{bottom:379.344300px;}
.y1db{bottom:379.404450px;}
.ya8{bottom:379.952550px;}
.y1c9{bottom:380.894550px;}
.y64{bottom:381.204600px;}
.y206{bottom:381.724800px;}
.y18b{bottom:382.681050px;}
.y137{bottom:384.666900px;}
.y236{bottom:385.976850px;}
.y88{bottom:386.702550px;}
.y1a0{bottom:389.324400px;}
.y14{bottom:389.559450px;}
.y1da{bottom:397.404450px;}
.y224{bottom:399.724800px;}
.y3a{bottom:400.001700px;}
.yd7{bottom:400.104600px;}
.y14d{bottom:400.344300px;}
.ya7{bottom:401.702550px;}
.y1c8{bottom:401.894550px;}
.y63{bottom:402.204600px;}
.y18a{bottom:403.681050px;}
.y205{bottom:403.976850px;}
.y235{bottom:408.228900px;}
.y87{bottom:408.452550px;}
.y19f{bottom:410.324400px;}
.y13{bottom:410.559450px;}
.y1d9{bottom:415.404450px;}
.y136{bottom:416.278350px;}
.y39{bottom:421.001700px;}
.yd6{bottom:421.854600px;}
.y204{bottom:421.976850px;}
.y1c7{bottom:422.894550px;}
.y62{bottom:423.204600px;}
.ya6{bottom:423.452550px;}
.y189{bottom:424.681050px;}
.y234{bottom:426.228900px;}
.y86{bottom:430.202550px;}
.y19e{bottom:431.324400px;}
.y12{bottom:431.559450px;}
.y223{bottom:439.976850px;}
.y38{bottom:442.751700px;}
.y14c{bottom:443.319300px;}
.yd5{bottom:443.604600px;}
.y1c6{bottom:443.894550px;}
.y61{bottom:444.204600px;}
.y203{bottom:444.228900px;}
.ya5{bottom:445.202550px;}
.y188{bottom:445.681050px;}
.y85{bottom:451.952550px;}
.y19d{bottom:452.324400px;}
.y11{bottom:452.559450px;}
.y1d8{bottom:455.004600px;}
.y135{bottom:457.782300px;}
.y222{bottom:457.976850px;}
.y202{bottom:462.228900px;}
.y37{bottom:464.501700px;}
.y1c5{bottom:464.894550px;}
.y60{bottom:465.204600px;}
.yd4{bottom:465.354600px;}
.y233{bottom:466.480800px;}
.y187{bottom:466.681050px;}
.ya4{bottom:466.952550px;}
.y14b{bottom:467.799750px;}
.y19c{bottom:473.324400px;}
.y10{bottom:473.559450px;}
.y84{bottom:473.702550px;}
.y134{bottom:479.532300px;}
.y221{bottom:480.228900px;}
.y201{bottom:484.480800px;}
.y1c4{bottom:485.894550px;}
.y5f{bottom:486.204600px;}
.y36{bottom:486.251700px;}
.yd3{bottom:487.104600px;}
.y186{bottom:487.681050px;}
.ya3{bottom:488.702550px;}
.y14a{bottom:492.280200px;}
.yf{bottom:494.559450px;}
.y83{bottom:495.452550px;}
.y220{bottom:498.228900px;}
.y133{bottom:501.282300px;}
.y200{bottom:502.480800px;}
.y232{bottom:506.732700px;}
.y1c3{bottom:506.894550px;}
.y5e{bottom:507.204600px;}
.y35{bottom:508.001700px;}
.y185{bottom:508.681050px;}
.yd2{bottom:508.854600px;}
.ya2{bottom:510.452550px;}
.ybb{bottom:511.104600px;}
.ye{bottom:515.559450px;}
.y21f{bottom:516.228900px;}
.y149{bottom:516.760650px;}
.y82{bottom:517.202550px;}
.y1ff{bottom:520.480800px;}
.y132{bottom:523.032300px;}
.y19b{bottom:524.428350px;}
.y231{bottom:524.732700px;}
.y1c2{bottom:527.894550px;}
.y5d{bottom:528.204600px;}
.y184{bottom:529.681050px;}
.y34{bottom:529.751700px;}
.yd1{bottom:530.604600px;}
.yba{bottom:532.104600px;}
.ya1{bottom:532.202550px;}
.yd{bottom:536.559450px;}
.y1fe{bottom:538.480800px;}
.y148{bottom:541.241250px;}
.y230{bottom:542.732700px;}
.y81{bottom:543.204600px;}
.y131{bottom:544.782300px;}
.y1c1{bottom:548.894550px;}
.y5c{bottom:549.204600px;}
.y183{bottom:550.681050px;}
.y33{bottom:551.501700px;}
.yd0{bottom:552.354600px;}
.yb9{bottom:553.104600px;}
.ya0{bottom:553.952550px;}
.y21e{bottom:556.480800px;}
.yc{bottom:557.559450px;}
.y1fd{bottom:560.732700px;}
.y22f{bottom:564.984750px;}
.y130{bottom:566.532300px;}
.y1c0{bottom:569.894550px;}
.y5b{bottom:570.204600px;}
.y182{bottom:571.681050px;}
.y32{bottom:573.251700px;}
.yb8{bottom:574.104600px;}
.y21d{bottom:574.480800px;}
.y147{bottom:574.600650px;}
.y9f{bottom:575.702550px;}
.y1fc{bottom:578.732700px;}
.y80{bottom:579.204600px;}
.y22e{bottom:582.984750px;}
.y168{bottom:584.945400px;}
.y12f{bottom:588.282300px;}
.y1bf{bottom:590.894550px;}
.y5a{bottom:591.204600px;}
.y181{bottom:592.681050px;}
.y31{bottom:595.001700px;}
.ycf{bottom:595.854600px;}
.y21c{bottom:596.732700px;}
.y9e{bottom:597.452550px;}
.yb{bottom:598.059450px;}
.y7f{bottom:600.954600px;}
.y1fb{bottom:600.984750px;}
.y146{bottom:601.104600px;}
.y167{bottom:602.945400px;}
.y12e{bottom:610.032300px;}
.y1be{bottom:611.894550px;}
.y59{bottom:612.204600px;}
.y180{bottom:613.681050px;}
.y21b{bottom:614.732700px;}
.yb7{bottom:616.104600px;}
.y30{bottom:616.751700px;}
.yce{bottom:617.604600px;}
.y1fa{bottom:618.984750px;}
.y9d{bottom:619.202550px;}
.ya{bottom:619.659450px;}
.y7e{bottom:622.704600px;}
.y145{bottom:622.854600px;}
.y22d{bottom:623.236650px;}
.y12d{bottom:631.782300px;}
.y21a{bottom:632.732700px;}
.y1bd{bottom:632.894550px;}
.y58{bottom:633.204600px;}
.y17f{bottom:634.681050px;}
.y1f9{bottom:636.984750px;}
.y2f{bottom:638.501700px;}
.ycd{bottom:639.354600px;}
.y9c{bottom:640.952550px;}
.y22c{bottom:641.236650px;}
.y9{bottom:641.259450px;}
.y7d{bottom:644.454600px;}
.yb6{bottom:644.604600px;}
.y166{bottom:651.049350px;}
.y12c{bottom:653.532300px;}
.y1bc{bottom:653.894550px;}
.y57{bottom:654.204600px;}
.y219{bottom:654.984750px;}
.y17e{bottom:655.681050px;}
.y1f8{bottom:659.236650px;}
.y2e{bottom:660.251700px;}
.ycc{bottom:661.104600px;}
.y9b{bottom:662.702550px;}
.y7c{bottom:666.204600px;}
.y144{bottom:666.354600px;}
.y165{bottom:672.799350px;}
.y218{bottom:672.984750px;}
.y1bb{bottom:674.894550px;}
.y56{bottom:675.204600px;}
.y12b{bottom:675.282300px;}
.y17d{bottom:676.681050px;}
.y1f7{bottom:677.236650px;}
.y8{bottom:677.259450px;}
.y2d{bottom:682.001700px;}
.ycb{bottom:682.854600px;}
.y9a{bottom:684.452550px;}
.y7b{bottom:687.954600px;}
.y143{bottom:688.104600px;}
.y164{bottom:694.549350px;}
.y1f6{bottom:695.236650px;}
.y1ba{bottom:695.894550px;}
.y55{bottom:696.204600px;}
.y17c{bottom:697.681050px;}
.y7{bottom:698.859450px;}
.y22b{bottom:699.488700px;}
.y2c{bottom:703.751700px;}
.yca{bottom:704.604600px;}
.y99{bottom:706.202550px;}
.y7a{bottom:709.704600px;}
.y217{bottom:713.236650px;}
.y163{bottom:716.299350px;}
.y1b9{bottom:716.894550px;}
.y54{bottom:717.204600px;}
.y1f5{bottom:717.488700px;}
.y12a{bottom:718.632300px;}
.y6{bottom:720.459450px;}
.y2b{bottom:725.501700px;}
.yc9{bottom:726.354600px;}
.y98{bottom:727.952550px;}
.y79{bottom:731.454600px;}
.y1f4{bottom:735.488700px;}
.y17b{bottom:736.184850px;}
.y1b8{bottom:737.894550px;}
.y162{bottom:738.049350px;}
.y53{bottom:738.204600px;}
.ye7{bottom:744.732000px;}
.y2a{bottom:747.251700px;}
.y78{bottom:753.204600px;}
.y1f3{bottom:753.488700px;}
.y97{bottom:753.954600px;}
.y22a{bottom:757.740600px;}
.y1b7{bottom:758.894550px;}
.y52{bottom:759.204600px;}
.y161{bottom:759.799350px;}
.yc8{bottom:763.104600px;}
.y29{bottom:769.001700px;}
.y216{bottom:771.488700px;}
.y5{bottom:774.459450px;}
.y77{bottom:774.954600px;}
.y1f2{bottom:775.740600px;}
.y1b6{bottom:779.894550px;}
.y51{bottom:780.204600px;}
.y160{bottom:781.549350px;}
.y28{bottom:790.751700px;}
.y1f1{bottom:793.740600px;}
.y76{bottom:796.704600px;}
.y1b5{bottom:800.894550px;}
.y50{bottom:801.204600px;}
.y15f{bottom:803.299350px;}
.y4{bottom:805.959450px;}
.y1f0{bottom:811.740600px;}
.y27{bottom:812.501700px;}
.y75{bottom:818.454600px;}
.y1b4{bottom:821.894550px;}
.y4f{bottom:822.204600px;}
.y15e{bottom:825.049350px;}
.y215{bottom:829.740600px;}
.y1ef{bottom:833.992650px;}
.y26{bottom:834.251700px;}
.y3{bottom:837.459450px;}
.y74{bottom:840.204600px;}
.y1b3{bottom:842.894550px;}
.y4e{bottom:843.204600px;}
.y1ee{bottom:851.992650px;}
.y25{bottom:856.001700px;}
.y73{bottom:861.954600px;}
.y1b2{bottom:863.894550px;}
.y4d{bottom:864.204600px;}
.y1ed{bottom:869.992650px;}
.y15d{bottom:870.185100px;}
.y24{bottom:877.751700px;}
.y72{bottom:883.704600px;}
.y1b1{bottom:884.894550px;}
.y4c{bottom:885.204600px;}
.y1ec{bottom:892.244550px;}
.y15c{bottom:895.696950px;}
.y23{bottom:899.501700px;}
.y71{bottom:905.454600px;}
.y4b{bottom:906.204600px;}
.y1eb{bottom:910.244550px;}
.y15b{bottom:921.208950px;}
.y22{bottom:921.251700px;}
.y4a{bottom:927.204600px;}
.y1b0{bottom:927.494550px;}
.y1ea{bottom:928.244550px;}
.y1{bottom:965.377200px;}
.hc{height:16.841951px;}
.he{height:16.842551px;}
.hd{height:21.236019px;}
.h10{height:21.236619px;}
.hf{height:21.237219px;}
.h2{height:33.328125px;}
.h15{height:45.826172px;}
.h7{height:47.909180px;}
.ha{height:48.761719px;}
.h8{height:48.796875px;}
.h6{height:49.992188px;}
.h3{height:50.400000px;}
.h11{height:53.121445px;}
.h4{height:56.929688px;}
.h14{height:57.782227px;}
.h5{height:61.162008px;}
.h9{height:63.035156px;}
.h12{height:85.992188px;}
.h13{height:135.035156px;}
.hb{height:136.872000px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w2{width:615.375000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:11.986200px;}
.x13{left:43.222050px;}
.x14{left:44.872350px;}
.x11{left:53.730000px;}
.xc{left:77.952750px;}
.xd{left:80.787450px;}
.x1{left:84.330750px;}
.x22{left:85.414350px;}
.x24{left:87.162450px;}
.x2a{left:105.396300px;}
.x25{left:109.764450px;}
.xf{left:116.787450px;}
.x10{left:119.055150px;}
.x2e{left:123.307050px;}
.x4{left:130.682850px;}
.xe{left:134.787450px;}
.x7{left:145.673250px;}
.xa{left:153.166050px;}
.x20{left:163.720500px;}
.x2c{left:186.431550px;}
.x29{left:187.665300px;}
.x5{left:188.719950px;}
.x3{left:193.226550px;}
.x21{left:195.965550px;}
.x9{left:197.256300px;}
.x1f{left:199.738200px;}
.x2d{left:206.602350px;}
.x16{left:207.770100px;}
.x15{left:210.363300px;}
.x23{left:227.477400px;}
.x6{left:237.092700px;}
.x18{left:239.005800px;}
.x19{left:243.013650px;}
.x26{left:251.444850px;}
.xb{left:259.280700px;}
.x2b{left:270.920700px;}
.x8{left:276.283200px;}
.x27{left:336.484200px;}
.x2{left:352.068750px;}
.x17{left:392.709900px;}
.x1b{left:403.671900px;}
.x1a{left:414.280350px;}
.x1d{left:440.211150px;}
.x1e{left:443.866050px;}
.x28{left:543.555150px;}
.x1c{left:594.033450px;}
@media print{
.v4{vertical-align:-37.333333pt;}
.v3{vertical-align:-32.000000pt;}
.v2{vertical-align:-24.864000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.312000pt;}
.v1{vertical-align:24.864000pt;}
.v6{vertical-align:32.000000pt;}
.v7{vertical-align:64.000000pt;}
.ls4{letter-spacing:-0.905565pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.452782pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.052291pt;}
.ls3{letter-spacing:1.656144pt;}
.ls1{letter-spacing:14.379733pt;}
.ws69{word-spacing:-16.000000pt;}
.wsbd{word-spacing:-14.666667pt;}
.ws6d{word-spacing:-9.328000pt;}
.ws1a{word-spacing:-5.888000pt;}
.wsb9{word-spacing:-5.824000pt;}
.ws87{word-spacing:-5.568000pt;}
.ws5b{word-spacing:-5.390267pt;}
.wsb{word-spacing:-5.376000pt;}
.wsb4{word-spacing:-5.184000pt;}
.ws9f{word-spacing:-5.120000pt;}
.ws1b{word-spacing:-5.056000pt;}
.ws5a{word-spacing:-4.937484pt;}
.wsa1{word-spacing:-4.736000pt;}
.ws85{word-spacing:-4.672000pt;}
.ws58{word-spacing:-4.484702pt;}
.wsb6{word-spacing:-4.416000pt;}
.wsad{word-spacing:-4.288000pt;}
.ws1{word-spacing:-4.106667pt;}
.ws3e{word-spacing:-4.032000pt;}
.wsf{word-spacing:-3.584000pt;}
.wsa8{word-spacing:-3.520000pt;}
.ws6{word-spacing:-3.328000pt;}
.ws24{word-spacing:-3.072000pt;}
.ws15{word-spacing:-3.008000pt;}
.ws5{word-spacing:-2.944000pt;}
.wsaf{word-spacing:-2.752000pt;}
.wse{word-spacing:-2.688000pt;}
.wsc1{word-spacing:-2.640000pt;}
.ws3a{word-spacing:-2.560000pt;}
.ws1e{word-spacing:-2.496000pt;}
.wsa6{word-spacing:-2.432000pt;}
.ws37{word-spacing:-2.176000pt;}
.ws2b{word-spacing:-2.112000pt;}
.wsaa{word-spacing:-2.048000pt;}
.wsba{word-spacing:-1.984000pt;}
.ws90{word-spacing:-1.856000pt;}
.ws9e{word-spacing:-1.792000pt;}
.ws22{word-spacing:-1.600000pt;}
.ws8{word-spacing:-1.472000pt;}
.ws99{word-spacing:-1.408000pt;}
.ws2{word-spacing:-1.344000pt;}
.ws94{word-spacing:-1.280000pt;}
.ws32{word-spacing:-1.088000pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws97{word-spacing:-0.896000pt;}
.wsa2{word-spacing:-0.832000pt;}
.ws8f{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.704000pt;}
.ws34{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.576000pt;}
.wsa4{word-spacing:-0.512000pt;}
.wsc7{word-spacing:-0.352000pt;}
.ws9b{word-spacing:-0.320000pt;}
.wsc0{word-spacing:-0.293333pt;}
.ws93{word-spacing:-0.256000pt;}
.wsc{word-spacing:-0.192000pt;}
.ws23{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.192000pt;}
.ws54{word-spacing:0.448000pt;}
.ws6f{word-spacing:0.452782pt;}
.ws82{word-spacing:0.640000pt;}
.wsbc{word-spacing:0.821333pt;}
.wsa5{word-spacing:0.832000pt;}
.ws6e{word-spacing:0.905565pt;}
.ws9{word-spacing:0.960000pt;}
.wsa3{word-spacing:1.088000pt;}
.ws52{word-spacing:1.344000pt;}
.wsae{word-spacing:1.600000pt;}
.wsa{word-spacing:1.728000pt;}
.wsb2{word-spacing:1.792000pt;}
.ws83{word-spacing:1.856000pt;}
.ws25{word-spacing:2.048000pt;}
.ws4d{word-spacing:2.240000pt;}
.ws56{word-spacing:2.432000pt;}
.ws39{word-spacing:2.496000pt;}
.wsa9{word-spacing:2.624000pt;}
.ws10{word-spacing:2.688000pt;}
.ws1d{word-spacing:2.944000pt;}
.ws40{word-spacing:3.072000pt;}
.wsbe{word-spacing:3.168000pt;}
.ws19{word-spacing:3.200000pt;}
.wsb5{word-spacing:3.264000pt;}
.ws2a{word-spacing:3.328000pt;}
.wsc2{word-spacing:3.344000pt;}
.ws53{word-spacing:3.392000pt;}
.ws4{word-spacing:3.456000pt;}
.ws7{word-spacing:3.776000pt;}
.ws14{word-spacing:3.968000pt;}
.ws41{word-spacing:4.032000pt;}
.wsbb{word-spacing:4.048000pt;}
.ws4c{word-spacing:4.096000pt;}
.wsc3{word-spacing:4.106667pt;}
.ws3f{word-spacing:4.160000pt;}
.ws3b{word-spacing:4.224000pt;}
.ws95{word-spacing:4.288000pt;}
.ws28{word-spacing:4.352000pt;}
.ws47{word-spacing:4.672000pt;}
.ws96{word-spacing:4.736000pt;}
.ws8b{word-spacing:4.864000pt;}
.wsc5{word-spacing:4.986667pt;}
.ws35{word-spacing:5.120000pt;}
.ws45{word-spacing:5.312000pt;}
.ws8e{word-spacing:5.440000pt;}
.ws8c{word-spacing:5.504000pt;}
.ws7f{word-spacing:5.696000pt;}
.ws50{word-spacing:5.760000pt;}
.ws38{word-spacing:5.824000pt;}
.ws1c{word-spacing:5.888000pt;}
.ws2c{word-spacing:5.952000pt;}
.ws98{word-spacing:6.208000pt;}
.ws1f{word-spacing:6.528000pt;}
.ws42{word-spacing:6.720000pt;}
.ws33{word-spacing:6.784000pt;}
.ws18{word-spacing:6.848000pt;}
.ws4b{word-spacing:7.296000pt;}
.ws30{word-spacing:7.360000pt;}
.ws8d{word-spacing:7.616000pt;}
.ws17{word-spacing:7.744000pt;}
.ws8a{word-spacing:7.872000pt;}
.ws51{word-spacing:8.128000pt;}
.wsd{word-spacing:8.256000pt;}
.ws29{word-spacing:8.384000pt;}
.ws12{word-spacing:8.448000pt;}
.ws84{word-spacing:8.512000pt;}
.ws36{word-spacing:8.640000pt;}
.ws3d{word-spacing:8.704000pt;}
.wsc6{word-spacing:8.858667pt;}
.ws27{word-spacing:9.088000pt;}
.ws21{word-spacing:9.344000pt;}
.ws26{word-spacing:9.408000pt;}
.wsc8{word-spacing:9.445333pt;}
.ws43{word-spacing:9.536000pt;}
.wsb8{word-spacing:9.600000pt;}
.wsbf{word-spacing:9.621333pt;}
.ws31{word-spacing:9.792000pt;}
.ws86{word-spacing:9.856000pt;}
.ws9c{word-spacing:9.984000pt;}
.ws46{word-spacing:10.176000pt;}
.ws3c{word-spacing:10.368000pt;}
.ws88{word-spacing:10.624000pt;}
.ws11{word-spacing:10.944000pt;}
.wsa0{word-spacing:11.584000pt;}
.ws89{word-spacing:11.776000pt;}
.ws48{word-spacing:12.160000pt;}
.ws4e{word-spacing:12.416000pt;}
.ws9d{word-spacing:12.480000pt;}
.ws20{word-spacing:12.608000pt;}
.ws4a{word-spacing:13.120000pt;}
.ws16{word-spacing:13.184000pt;}
.ws57{word-spacing:13.312000pt;}
.wsb1{word-spacing:13.504000pt;}
.ws3{word-spacing:13.568000pt;}
.wsb0{word-spacing:13.632000pt;}
.ws4f{word-spacing:13.888000pt;}
.wsb7{word-spacing:14.144000pt;}
.ws9a{word-spacing:14.336000pt;}
.ws13{word-spacing:14.400000pt;}
.wsc4{word-spacing:14.432000pt;}
.ws49{word-spacing:14.720000pt;}
.wsa7{word-spacing:16.320000pt;}
.ws92{word-spacing:16.640000pt;}
.wsac{word-spacing:18.816000pt;}
.ws55{word-spacing:19.776000pt;}
.ws91{word-spacing:22.784000pt;}
.ws70{word-spacing:23.488000pt;}
.ws44{word-spacing:25.984000pt;}
.ws7c{word-spacing:31.721600pt;}
.wsb3{word-spacing:33.792000pt;}
.wsab{word-spacing:45.376000pt;}
.ws7a{word-spacing:58.324800pt;}
.ws7d{word-spacing:80.105067pt;}
.ws5d{word-spacing:84.462247pt;}
.ws5c{word-spacing:84.910399pt;}
.ws59{word-spacing:84.910971pt;}
.ws65{word-spacing:110.382933pt;}
.ws7e{word-spacing:110.718933pt;}
.ws66{word-spacing:121.006933pt;}
.ws6a{word-spacing:124.654933pt;}
.ws77{word-spacing:129.664000pt;}
.ws79{word-spacing:132.038933pt;}
.ws76{word-spacing:132.039467pt;}
.ws6c{word-spacing:135.774933pt;}
.ws63{word-spacing:137.070933pt;}
.ws81{word-spacing:155.695467pt;}
.ws6b{word-spacing:160.174933pt;}
.ws74{word-spacing:161.664000pt;}
.ws62{word-spacing:169.070933pt;}
.ws64{word-spacing:181.550933pt;}
.ws68{word-spacing:201.070933pt;}
.ws61{word-spacing:231.342933pt;}
.ws67{word-spacing:233.070933pt;}
.ws5f{word-spacing:249.134933pt;}
.ws7b{word-spacing:263.826667pt;}
.ws60{word-spacing:281.070933pt;}
.ws5e{word-spacing:295.278933pt;}
.ws71{word-spacing:354.897600pt;}
.ws75{word-spacing:354.961600pt;}
.ws73{word-spacing:401.105600pt;}
.ws78{word-spacing:408.209600pt;}
.ws72{word-spacing:411.729600pt;}
._1a{margin-left:-8.964800pt;}
._8{margin-left:-7.891733pt;}
._2{margin-left:-6.779733pt;}
._15{margin-left:-5.782933pt;}
._0{margin-left:-4.757333pt;}
._6{margin-left:-3.865600pt;}
._1{margin-left:-2.747733pt;}
._5{margin-left:-1.338133pt;}
._7{width:0.980800pt;}
._4{width:1.964267pt;}
._12{width:2.872000pt;}
._9{width:3.790400pt;}
._3{width:4.944000pt;}
._a{width:6.487200pt;}
._e{width:7.733867pt;}
._b{width:8.709333pt;}
._11{width:9.800000pt;}
._10{width:10.888000pt;}
._f{width:12.292800pt;}
._d{width:13.223467pt;}
._c{width:14.125067pt;}
._1d{width:15.103200pt;}
._21{width:16.910933pt;}
._19{width:18.054400pt;}
._14{width:18.946133pt;}
._13{width:19.906133pt;}
._17{width:20.934400pt;}
._16{width:22.073600pt;}
._32{width:23.398400pt;}
._18{width:25.049600pt;}
._30{width:26.137600pt;}
._31{width:27.699200pt;}
._23{width:55.342933pt;}
._2c{width:81.043733pt;}
._28{width:83.886933pt;}
._1b{width:100.180267pt;}
._2a{width:108.590933pt;}
._1c{width:117.355200pt;}
._2f{width:128.133333pt;}
._2e{width:146.461333pt;}
._26{width:153.070933pt;}
._2d{width:170.362133pt;}
._29{width:179.758933pt;}
._24{width:185.070933pt;}
._25{width:187.818667pt;}
._27{width:249.070933pt;}
._22{width:325.550933pt;}
._2b{width:431.377600pt;}
._1f{width:457.598933pt;}
._1e{width:469.058133pt;}
._20{width:701.224533pt;}
.fs5{font-size:21.561067pt;}
.fs6{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs7{font-size:58.666667pt;}
.fs4{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:12.366400pt;}
.y113{bottom:12.928133pt;}
.y127{bottom:13.040267pt;}
.ye8{bottom:18.092533pt;}
.yf2{bottom:18.093333pt;}
.yff{bottom:18.654133pt;}
.y109{bottom:18.654667pt;}
.y116{bottom:18.766400pt;}
.y11e{bottom:18.767067pt;}
.ye9{bottom:28.985600pt;}
.yf3{bottom:28.986267pt;}
.y100{bottom:29.547067pt;}
.y10a{bottom:29.547600pt;}
.y117{bottom:29.659333pt;}
.y11f{bottom:29.660000pt;}
.y2{bottom:33.900533pt;}
.yea{bottom:39.878667pt;}
.yf4{bottom:39.879333pt;}
.y101{bottom:40.440133pt;}
.y10b{bottom:40.440667pt;}
.y118{bottom:40.552400pt;}
.y120{bottom:40.552933pt;}
.yeb{bottom:50.659333pt;}
.yf5{bottom:50.660000pt;}
.y102{bottom:51.220933pt;}
.y10c{bottom:51.221467pt;}
.y119{bottom:51.333200pt;}
.y121{bottom:51.333600pt;}
.yec{bottom:61.552267pt;}
.yf6{bottom:61.552933pt;}
.y103{bottom:62.114000pt;}
.y10d{bottom:62.114533pt;}
.y11a{bottom:62.226267pt;}
.y122{bottom:62.226800pt;}
.y1af{bottom:62.425067pt;}
.yb5{bottom:67.335600pt;}
.yc7{bottom:70.448533pt;}
.y16d{bottom:72.392400pt;}
.yed{bottom:72.445333pt;}
.yf7{bottom:72.445867pt;}
.y11b{bottom:73.006933pt;}
.y104{bottom:73.007067pt;}
.y10e{bottom:73.007600pt;}
.y96{bottom:73.068933pt;}
.ye6{bottom:73.648400pt;}
.y49{bottom:75.557067pt;}
.y21{bottom:76.316133pt;}
.y1d7{bottom:77.239600pt;}
.y19a{bottom:77.515200pt;}
.y199{bottom:78.827600pt;}
.yee{bottom:83.226133pt;}
.yf8{bottom:83.226667pt;}
.y105{bottom:83.787600pt;}
.y10f{bottom:83.788267pt;}
.y11c{bottom:83.899867pt;}
.y123{bottom:83.900400pt;}
.y1ae{bottom:84.732800pt;}
.y70{bottom:85.202267pt;}
.yb4{bottom:86.668933pt;}
.yc6{bottom:89.115200pt;}
.y16c{bottom:91.059067pt;}
.ye5{bottom:92.315067pt;}
.y95{bottom:92.402267pt;}
.y15a{bottom:93.872133pt;}
.yef{bottom:94.119200pt;}
.yf9{bottom:94.119733pt;}
.y48{bottom:94.223733pt;}
.y1e9{bottom:94.350800pt;}
.y11d{bottom:94.680533pt;}
.y106{bottom:94.680667pt;}
.y124{bottom:94.681067pt;}
.y110{bottom:94.681200pt;}
.y20{bottom:95.649467pt;}
.y129{bottom:95.691067pt;}
.y1d6{bottom:95.906267pt;}
.y17a{bottom:96.181867pt;}
.y115{bottom:97.263200pt;}
.y198{bottom:97.494267pt;}
.yfe{bottom:98.947867pt;}
.y214{bottom:100.192933pt;}
.y1ad{bottom:103.399467pt;}
.y128{bottom:103.551867pt;}
.y6f{bottom:104.535600pt;}
.yf0{bottom:105.012267pt;}
.yfa{bottom:105.012800pt;}
.y114{bottom:105.124133pt;}
.y107{bottom:105.573600pt;}
.y125{bottom:105.574133pt;}
.y111{bottom:105.574267pt;}
.yb3{bottom:106.002267pt;}
.yfd{bottom:106.808533pt;}
.yc5{bottom:107.781867pt;}
.y16b{bottom:109.725733pt;}
.y1e8{bottom:110.350800pt;}
.ye4{bottom:110.981733pt;}
.y94{bottom:111.735600pt;}
.y47{bottom:112.890400pt;}
.y1d5{bottom:114.572933pt;}
.y179{bottom:114.848533pt;}
.y1f{bottom:114.982800pt;}
.yf1{bottom:115.793067pt;}
.yfb{bottom:115.793467pt;}
.y197{bottom:116.160933pt;}
.y213{bottom:116.192933pt;}
.y108{bottom:116.354400pt;}
.y126{bottom:116.354933pt;}
.y112{bottom:116.355067pt;}
.y159{bottom:116.549333pt;}
.y1ac{bottom:122.066133pt;}
.y142{bottom:123.860000pt;}
.y6e{bottom:123.868933pt;}
.yb2{bottom:125.335600pt;}
.yc4{bottom:126.448533pt;}
.y16a{bottom:128.392400pt;}
.ye3{bottom:129.648400pt;}
.y1e7{bottom:130.130400pt;}
.y93{bottom:131.068933pt;}
.y46{bottom:131.557067pt;}
.y212{bottom:132.192933pt;}
.y1d4{bottom:133.239600pt;}
.y178{bottom:133.515200pt;}
.y1e{bottom:134.316133pt;}
.y196{bottom:134.827600pt;}
.y158{bottom:139.226533pt;}
.y1ab{bottom:140.732800pt;}
.y6d{bottom:143.202267pt;}
.y141{bottom:144.066667pt;}
.yb1{bottom:144.668933pt;}
.yc3{bottom:145.115200pt;}
.y1e6{bottom:146.130400pt;}
.y169{bottom:147.059067pt;}
.ye2{bottom:148.315067pt;}
.y45{bottom:150.223733pt;}
.y92{bottom:150.402267pt;}
.y1d3{bottom:151.906267pt;}
.y211{bottom:151.972400pt;}
.y177{bottom:152.181867pt;}
.y195{bottom:153.494267pt;}
.y1d{bottom:153.649467pt;}
.y1aa{bottom:159.399467pt;}
.y156{bottom:160.983067pt;}
.y1e5{bottom:162.130400pt;}
.y6c{bottom:162.535600pt;}
.yb0{bottom:164.002267pt;}
.y140{bottom:164.273333pt;}
.yc2{bottom:164.448533pt;}
.ye1{bottom:166.981867pt;}
.y210{bottom:167.972400pt;}
.y44{bottom:168.890400pt;}
.y155{bottom:168.983067pt;}
.y91{bottom:169.735600pt;}
.y1d2{bottom:170.572933pt;}
.y176{bottom:170.848533pt;}
.y194{bottom:172.160933pt;}
.y157{bottom:176.983067pt;}
.y1a9{bottom:178.066133pt;}
.y6b{bottom:181.868933pt;}
.y1e4{bottom:181.909867pt;}
.yaf{bottom:183.335600pt;}
.yc1{bottom:183.781867pt;}
.y229{bottom:183.972400pt;}
.y13f{bottom:184.479867pt;}
.ye0{bottom:185.648533pt;}
.y43{bottom:187.557067pt;}
.y20f{bottom:187.752000pt;}
.y90{bottom:189.068933pt;}
.y1d1{bottom:189.239600pt;}
.y175{bottom:189.515200pt;}
.y193{bottom:190.827600pt;}
.y1c{bottom:192.049333pt;}
.y1a8{bottom:196.732800pt;}
.y1e3{bottom:197.909867pt;}
.y6a{bottom:201.202267pt;}
.yae{bottom:202.668933pt;}
.yc0{bottom:203.115200pt;}
.y20e{bottom:203.752000pt;}
.ydf{bottom:204.315200pt;}
.y13e{bottom:204.686533pt;}
.y42{bottom:206.223733pt;}
.y154{bottom:206.969200pt;}
.y1d0{bottom:207.906267pt;}
.y174{bottom:208.181867pt;}
.y8f{bottom:208.402267pt;}
.y192{bottom:209.494267pt;}
.y1e2{bottom:213.909867pt;}
.y1a7{bottom:215.399467pt;}
.y1b{bottom:216.941733pt;}
.y20d{bottom:219.752000pt;}
.y69{bottom:220.535600pt;}
.y13d{bottom:220.686533pt;}
.ybf{bottom:222.448533pt;}
.yde{bottom:222.981867pt;}
.y41{bottom:224.890400pt;}
.y1cf{bottom:226.572933pt;}
.y173{bottom:226.848533pt;}
.y8e{bottom:227.735600pt;}
.y191{bottom:228.160933pt;}
.yad{bottom:230.002267pt;}
.y1e1{bottom:233.689467pt;}
.y1a6{bottom:234.066133pt;}
.y1a{bottom:234.275067pt;}
.y228{bottom:235.752000pt;}
.y20c{bottom:239.531467pt;}
.y68{bottom:239.868933pt;}
.y13c{bottom:240.893067pt;}
.ydd{bottom:241.648533pt;}
.ybe{bottom:241.781867pt;}
.y40{bottom:243.557067pt;}
.y153{bottom:243.861600pt;}
.y1ce{bottom:245.239600pt;}
.y172{bottom:245.515200pt;}
.y190{bottom:246.827600pt;}
.y8d{bottom:247.068933pt;}
.y1e0{bottom:249.689467pt;}
.y227{bottom:251.752000pt;}
.y1a5{bottom:252.732800pt;}
.y19{bottom:252.941733pt;}
.y20b{bottom:255.531467pt;}
.y67{bottom:259.202267pt;}
.ydc{bottom:260.315200pt;}
.yac{bottom:260.402267pt;}
.y13b{bottom:261.099733pt;}
.ybd{bottom:261.115200pt;}
.y3f{bottom:262.223733pt;}
.y152{bottom:262.528267pt;}
.y1cd{bottom:263.906267pt;}
.y171{bottom:264.181867pt;}
.y18f{bottom:265.494267pt;}
.y1df{bottom:265.689467pt;}
.y8c{bottom:266.402267pt;}
.y1a4{bottom:271.399467pt;}
.y20a{bottom:271.531467pt;}
.y18{bottom:271.608400pt;}
.y238{bottom:275.310933pt;}
.ydb{bottom:278.981867pt;}
.yab{bottom:279.735600pt;}
.y3e{bottom:280.890400pt;}
.y151{bottom:281.194933pt;}
.y13a{bottom:281.306400pt;}
.y66{bottom:282.315200pt;}
.y1cc{bottom:282.572933pt;}
.y170{bottom:282.848533pt;}
.y18e{bottom:284.160933pt;}
.y1de{bottom:285.468933pt;}
.y8b{bottom:285.735600pt;}
.y226{bottom:287.531467pt;}
.ybc{bottom:288.715067pt;}
.y1a3{bottom:290.066133pt;}
.y17{bottom:290.275067pt;}
.y209{bottom:291.310933pt;}
.yda{bottom:297.648533pt;}
.yaa{bottom:299.068933pt;}
.y3d{bottom:299.557067pt;}
.y150{bottom:299.861600pt;}
.y65{bottom:300.981867pt;}
.y1cb{bottom:301.239600pt;}
.y1dd{bottom:301.468933pt;}
.y139{bottom:301.512933pt;}
.y16f{bottom:301.515200pt;}
.y18d{bottom:302.827600pt;}
.y225{bottom:303.531467pt;}
.y8a{bottom:305.068933pt;}
.y208{bottom:307.310933pt;}
.y1a2{bottom:308.732800pt;}
.y16{bottom:308.941733pt;}
.yd9{bottom:316.981867pt;}
.y1dc{bottom:317.468933pt;}
.y3c{bottom:318.223733pt;}
.ya9{bottom:318.402267pt;}
.y14f{bottom:318.528267pt;}
.y1ca{bottom:319.906267pt;}
.y16e{bottom:320.181867pt;}
.y18c{bottom:321.494267pt;}
.y138{bottom:321.719600pt;}
.y207{bottom:323.310933pt;}
.y89{bottom:324.402267pt;}
.y237{bottom:327.090533pt;}
.y1a1{bottom:327.399467pt;}
.y15{bottom:327.608400pt;}
.yd8{bottom:336.315200pt;}
.y3b{bottom:336.890400pt;}
.y14e{bottom:337.194933pt;}
.y1db{bottom:337.248400pt;}
.ya8{bottom:337.735600pt;}
.y1c9{bottom:338.572933pt;}
.y64{bottom:338.848533pt;}
.y206{bottom:339.310933pt;}
.y18b{bottom:340.160933pt;}
.y137{bottom:341.926133pt;}
.y236{bottom:343.090533pt;}
.y88{bottom:343.735600pt;}
.y1a0{bottom:346.066133pt;}
.y14{bottom:346.275067pt;}
.y1da{bottom:353.248400pt;}
.y224{bottom:355.310933pt;}
.y3a{bottom:355.557067pt;}
.yd7{bottom:355.648533pt;}
.y14d{bottom:355.861600pt;}
.ya7{bottom:357.068933pt;}
.y1c8{bottom:357.239600pt;}
.y63{bottom:357.515200pt;}
.y18a{bottom:358.827600pt;}
.y205{bottom:359.090533pt;}
.y235{bottom:362.870133pt;}
.y87{bottom:363.068933pt;}
.y19f{bottom:364.732800pt;}
.y13{bottom:364.941733pt;}
.y1d9{bottom:369.248400pt;}
.y136{bottom:370.025200pt;}
.y39{bottom:374.223733pt;}
.yd6{bottom:374.981867pt;}
.y204{bottom:375.090533pt;}
.y1c7{bottom:375.906267pt;}
.y62{bottom:376.181867pt;}
.ya6{bottom:376.402267pt;}
.y189{bottom:377.494267pt;}
.y234{bottom:378.870133pt;}
.y86{bottom:382.402267pt;}
.y19e{bottom:383.399467pt;}
.y12{bottom:383.608400pt;}
.y223{bottom:391.090533pt;}
.y38{bottom:393.557067pt;}
.y14c{bottom:394.061600pt;}
.yd5{bottom:394.315200pt;}
.y1c6{bottom:394.572933pt;}
.y61{bottom:394.848533pt;}
.y203{bottom:394.870133pt;}
.ya5{bottom:395.735600pt;}
.y188{bottom:396.160933pt;}
.y85{bottom:401.735600pt;}
.y19d{bottom:402.066133pt;}
.y11{bottom:402.275067pt;}
.y1d8{bottom:404.448533pt;}
.y135{bottom:406.917600pt;}
.y222{bottom:407.090533pt;}
.y202{bottom:410.870133pt;}
.y37{bottom:412.890400pt;}
.y1c5{bottom:413.239600pt;}
.y60{bottom:413.515200pt;}
.yd4{bottom:413.648533pt;}
.y233{bottom:414.649600pt;}
.y187{bottom:414.827600pt;}
.ya4{bottom:415.068933pt;}
.y14b{bottom:415.822000pt;}
.y19c{bottom:420.732800pt;}
.y10{bottom:420.941733pt;}
.y84{bottom:421.068933pt;}
.y134{bottom:426.250933pt;}
.y221{bottom:426.870133pt;}
.y201{bottom:430.649600pt;}
.y1c4{bottom:431.906267pt;}
.y5f{bottom:432.181867pt;}
.y36{bottom:432.223733pt;}
.yd3{bottom:432.981867pt;}
.y186{bottom:433.494267pt;}
.ya3{bottom:434.402267pt;}
.y14a{bottom:437.582400pt;}
.yf{bottom:439.608400pt;}
.y83{bottom:440.402267pt;}
.y220{bottom:442.870133pt;}
.y133{bottom:445.584267pt;}
.y200{bottom:446.649600pt;}
.y232{bottom:450.429067pt;}
.y1c3{bottom:450.572933pt;}
.y5e{bottom:450.848533pt;}
.y35{bottom:451.557067pt;}
.y185{bottom:452.160933pt;}
.yd2{bottom:452.315200pt;}
.ya2{bottom:453.735600pt;}
.ybb{bottom:454.315200pt;}
.ye{bottom:458.275067pt;}
.y21f{bottom:458.870133pt;}
.y149{bottom:459.342800pt;}
.y82{bottom:459.735600pt;}
.y1ff{bottom:462.649600pt;}
.y132{bottom:464.917600pt;}
.y19b{bottom:466.158533pt;}
.y231{bottom:466.429067pt;}
.y1c2{bottom:469.239600pt;}
.y5d{bottom:469.515200pt;}
.y184{bottom:470.827600pt;}
.y34{bottom:470.890400pt;}
.yd1{bottom:471.648533pt;}
.yba{bottom:472.981867pt;}
.ya1{bottom:473.068933pt;}
.yd{bottom:476.941733pt;}
.y1fe{bottom:478.649600pt;}
.y148{bottom:481.103333pt;}
.y230{bottom:482.429067pt;}
.y81{bottom:482.848533pt;}
.y131{bottom:484.250933pt;}
.y1c1{bottom:487.906267pt;}
.y5c{bottom:488.181867pt;}
.y183{bottom:489.494267pt;}
.y33{bottom:490.223733pt;}
.yd0{bottom:490.981867pt;}
.yb9{bottom:491.648533pt;}
.ya0{bottom:492.402267pt;}
.y21e{bottom:494.649600pt;}
.yc{bottom:495.608400pt;}
.y1fd{bottom:498.429067pt;}
.y22f{bottom:502.208667pt;}
.y130{bottom:503.584267pt;}
.y1c0{bottom:506.572933pt;}
.y5b{bottom:506.848533pt;}
.y182{bottom:508.160933pt;}
.y32{bottom:509.557067pt;}
.yb8{bottom:510.315200pt;}
.y21d{bottom:510.649600pt;}
.y147{bottom:510.756133pt;}
.y9f{bottom:511.735600pt;}
.y1fc{bottom:514.429067pt;}
.y80{bottom:514.848533pt;}
.y22e{bottom:518.208667pt;}
.y168{bottom:519.951467pt;}
.y12f{bottom:522.917600pt;}
.y1bf{bottom:525.239600pt;}
.y5a{bottom:525.515200pt;}
.y181{bottom:526.827600pt;}
.y31{bottom:528.890400pt;}
.ycf{bottom:529.648533pt;}
.y21c{bottom:530.429067pt;}
.y9e{bottom:531.068933pt;}
.yb{bottom:531.608400pt;}
.y7f{bottom:534.181867pt;}
.y1fb{bottom:534.208667pt;}
.y146{bottom:534.315200pt;}
.y167{bottom:535.951467pt;}
.y12e{bottom:542.250933pt;}
.y1be{bottom:543.906267pt;}
.y59{bottom:544.181867pt;}
.y180{bottom:545.494267pt;}
.y21b{bottom:546.429067pt;}
.yb7{bottom:547.648533pt;}
.y30{bottom:548.223733pt;}
.yce{bottom:548.981867pt;}
.y1fa{bottom:550.208667pt;}
.y9d{bottom:550.402267pt;}
.ya{bottom:550.808400pt;}
.y7e{bottom:553.515200pt;}
.y145{bottom:553.648533pt;}
.y22d{bottom:553.988133pt;}
.y12d{bottom:561.584267pt;}
.y21a{bottom:562.429067pt;}
.y1bd{bottom:562.572933pt;}
.y58{bottom:562.848533pt;}
.y17f{bottom:564.160933pt;}
.y1f9{bottom:566.208667pt;}
.y2f{bottom:567.557067pt;}
.ycd{bottom:568.315200pt;}
.y9c{bottom:569.735600pt;}
.y22c{bottom:569.988133pt;}
.y9{bottom:570.008400pt;}
.y7d{bottom:572.848533pt;}
.yb6{bottom:572.981867pt;}
.y166{bottom:578.710533pt;}
.y12c{bottom:580.917600pt;}
.y1bc{bottom:581.239600pt;}
.y57{bottom:581.515200pt;}
.y219{bottom:582.208667pt;}
.y17e{bottom:582.827600pt;}
.y1f8{bottom:585.988133pt;}
.y2e{bottom:586.890400pt;}
.ycc{bottom:587.648533pt;}
.y9b{bottom:589.068933pt;}
.y7c{bottom:592.181867pt;}
.y144{bottom:592.315200pt;}
.y165{bottom:598.043867pt;}
.y218{bottom:598.208667pt;}
.y1bb{bottom:599.906267pt;}
.y56{bottom:600.181867pt;}
.y12b{bottom:600.250933pt;}
.y17d{bottom:601.494267pt;}
.y1f7{bottom:601.988133pt;}
.y8{bottom:602.008400pt;}
.y2d{bottom:606.223733pt;}
.ycb{bottom:606.981867pt;}
.y9a{bottom:608.402267pt;}
.y7b{bottom:611.515200pt;}
.y143{bottom:611.648533pt;}
.y164{bottom:617.377200pt;}
.y1f6{bottom:617.988133pt;}
.y1ba{bottom:618.572933pt;}
.y55{bottom:618.848533pt;}
.y17c{bottom:620.160933pt;}
.y7{bottom:621.208400pt;}
.y22b{bottom:621.767733pt;}
.y2c{bottom:625.557067pt;}
.yca{bottom:626.315200pt;}
.y99{bottom:627.735600pt;}
.y7a{bottom:630.848533pt;}
.y217{bottom:633.988133pt;}
.y163{bottom:636.710533pt;}
.y1b9{bottom:637.239600pt;}
.y54{bottom:637.515200pt;}
.y1f5{bottom:637.767733pt;}
.y12a{bottom:638.784267pt;}
.y6{bottom:640.408400pt;}
.y2b{bottom:644.890400pt;}
.yc9{bottom:645.648533pt;}
.y98{bottom:647.068933pt;}
.y79{bottom:650.181867pt;}
.y1f4{bottom:653.767733pt;}
.y17b{bottom:654.386533pt;}
.y1b8{bottom:655.906267pt;}
.y162{bottom:656.043867pt;}
.y53{bottom:656.181867pt;}
.ye7{bottom:661.984000pt;}
.y2a{bottom:664.223733pt;}
.y78{bottom:669.515200pt;}
.y1f3{bottom:669.767733pt;}
.y97{bottom:670.181867pt;}
.y22a{bottom:673.547200pt;}
.y1b7{bottom:674.572933pt;}
.y52{bottom:674.848533pt;}
.y161{bottom:675.377200pt;}
.yc8{bottom:678.315200pt;}
.y29{bottom:683.557067pt;}
.y216{bottom:685.767733pt;}
.y5{bottom:688.408400pt;}
.y77{bottom:688.848533pt;}
.y1f2{bottom:689.547200pt;}
.y1b6{bottom:693.239600pt;}
.y51{bottom:693.515200pt;}
.y160{bottom:694.710533pt;}
.y28{bottom:702.890400pt;}
.y1f1{bottom:705.547200pt;}
.y76{bottom:708.181867pt;}
.y1b5{bottom:711.906267pt;}
.y50{bottom:712.181867pt;}
.y15f{bottom:714.043867pt;}
.y4{bottom:716.408400pt;}
.y1f0{bottom:721.547200pt;}
.y27{bottom:722.223733pt;}
.y75{bottom:727.515200pt;}
.y1b4{bottom:730.572933pt;}
.y4f{bottom:730.848533pt;}
.y15e{bottom:733.377200pt;}
.y215{bottom:737.547200pt;}
.y1ef{bottom:741.326800pt;}
.y26{bottom:741.557067pt;}
.y3{bottom:744.408400pt;}
.y74{bottom:746.848533pt;}
.y1b3{bottom:749.239600pt;}
.y4e{bottom:749.515200pt;}
.y1ee{bottom:757.326800pt;}
.y25{bottom:760.890400pt;}
.y73{bottom:766.181867pt;}
.y1b2{bottom:767.906267pt;}
.y4d{bottom:768.181867pt;}
.y1ed{bottom:773.326800pt;}
.y15d{bottom:773.497867pt;}
.y24{bottom:780.223733pt;}
.y72{bottom:785.515200pt;}
.y1b1{bottom:786.572933pt;}
.y4c{bottom:786.848533pt;}
.y1ec{bottom:793.106267pt;}
.y15c{bottom:796.175067pt;}
.y23{bottom:799.557067pt;}
.y71{bottom:804.848533pt;}
.y4b{bottom:805.515200pt;}
.y1eb{bottom:809.106267pt;}
.y15b{bottom:818.852400pt;}
.y22{bottom:818.890400pt;}
.y4a{bottom:824.181867pt;}
.y1b0{bottom:824.439600pt;}
.y1ea{bottom:825.106267pt;}
.y1{bottom:858.113067pt;}
.hc{height:14.970623pt;}
.he{height:14.971157pt;}
.hd{height:18.876461pt;}
.h10{height:18.876995pt;}
.hf{height:18.877528pt;}
.h2{height:29.625000pt;}
.h15{height:40.734375pt;}
.h7{height:42.585938pt;}
.ha{height:43.343750pt;}
.h8{height:43.375000pt;}
.h6{height:44.437500pt;}
.h3{height:44.800000pt;}
.h11{height:47.219063pt;}
.h4{height:50.604167pt;}
.h14{height:51.361979pt;}
.h5{height:54.366229pt;}
.h9{height:56.031250pt;}
.h12{height:76.437500pt;}
.h13{height:120.031250pt;}
.hb{height:121.664000pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w2{width:547.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:10.654400pt;}
.x13{left:38.419600pt;}
.x14{left:39.886533pt;}
.x11{left:47.760000pt;}
.xc{left:69.291333pt;}
.xd{left:71.811067pt;}
.x1{left:74.960667pt;}
.x22{left:75.923867pt;}
.x24{left:77.477733pt;}
.x2a{left:93.685600pt;}
.x25{left:97.568400pt;}
.xf{left:103.811067pt;}
.x10{left:105.826800pt;}
.x2e{left:109.606267pt;}
.x4{left:116.162533pt;}
.xe{left:119.811067pt;}
.x7{left:129.487333pt;}
.xa{left:136.147600pt;}
.x20{left:145.529333pt;}
.x2c{left:165.716933pt;}
.x29{left:166.813600pt;}
.x5{left:167.751067pt;}
.x3{left:171.756933pt;}
.x21{left:174.191600pt;}
.x9{left:175.338933pt;}
.x1f{left:177.545067pt;}
.x2d{left:183.646533pt;}
.x16{left:184.684533pt;}
.x15{left:186.989600pt;}
.x23{left:202.202133pt;}
.x6{left:210.749067pt;}
.x18{left:212.449600pt;}
.x19{left:216.012133pt;}
.x26{left:223.506533pt;}
.xb{left:230.471733pt;}
.x2b{left:240.818400pt;}
.x8{left:245.585067pt;}
.x27{left:299.097067pt;}
.x2{left:312.950000pt;}
.x17{left:349.075467pt;}
.x1b{left:358.819467pt;}
.x1a{left:368.249200pt;}
.x1d{left:391.298800pt;}
.x1e{left:394.547600pt;}
.x28{left:483.160133pt;}
.x1c{left:528.029733pt;}
}




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