
    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_ff12a22d0591619488375fdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.990234;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_317b9a4df90cd7d52de7ae9d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf87b0245d7716abb99d3128.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_9e9be1c9714567385b0657f2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.975098;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_b17a080eb7c155edb0ea0340.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690430;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_0def337be6f029154a018fb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_f3108ba66003141f00dd6232.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_16819ed717a9c64116cb1597.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d835e9c3a0faa8f883980ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_409aa0b8962f6bca88a0bce7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859375;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-28.080000px;}
.v1{vertical-align:-23.100000px;}
.v2{vertical-align:-18.900000px;}
.v7{vertical-align:-2.997000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.002400px;}
.v4{vertical-align:18.900000px;}
.v5{vertical-align:20.996400px;}
.ls61{letter-spacing:-11.890800px;}
.ls91{letter-spacing:-11.230200px;}
.ls28{letter-spacing:-10.705200px;}
.ls70{letter-spacing:-8.323560px;}
.ls38{letter-spacing:-4.380000px;}
.ls4e{letter-spacing:-2.976000px;}
.ls39{letter-spacing:-1.134000px;}
.ls34{letter-spacing:-0.486000px;}
.ls7d{letter-spacing:-0.352800px;}
.ls7c{letter-spacing:-0.340200px;}
.ls7a{letter-spacing:-0.315000px;}
.ls7b{letter-spacing:-0.302400px;}
.ls41{letter-spacing:-0.187500px;}
.ls42{letter-spacing:-0.180000px;}
.ls3d{letter-spacing:-0.100800px;}
.ls81{letter-spacing:-0.063000px;}
.ls80{letter-spacing:-0.056700px;}
.ls7f{letter-spacing:-0.044100px;}
.ls6e{letter-spacing:-0.031500px;}
.ls5c{letter-spacing:-0.027000px;}
.ls75{letter-spacing:-0.025200px;}
.ls87{letter-spacing:-0.024000px;}
.ls6f{letter-spacing:-0.018900px;}
.ls5e{letter-spacing:-0.016200px;}
.ls88{letter-spacing:-0.015300px;}
.ls64{letter-spacing:-0.012000px;}
.ls5d{letter-spacing:-0.010800px;}
.ls89{letter-spacing:-0.010200px;}
.ls24{letter-spacing:0.000000px;}
.ls8e{letter-spacing:0.005100px;}
.ls54{letter-spacing:0.005400px;}
.ls83{letter-spacing:0.006000px;}
.ls60{letter-spacing:0.006300px;}
.ls77{letter-spacing:0.010800px;}
.ls8d{letter-spacing:0.015300px;}
.ls58{letter-spacing:0.016200px;}
.ls8b{letter-spacing:0.020400px;}
.ls5a{letter-spacing:0.021600px;}
.ls79{letter-spacing:0.025200px;}
.ls8c{letter-spacing:0.025500px;}
.ls7{letter-spacing:0.026400px;}
.ls55{letter-spacing:0.027000px;}
.ls56{letter-spacing:0.032400px;}
.ls53{letter-spacing:0.037800px;}
.ls57{letter-spacing:0.043200px;}
.lsa{letter-spacing:0.048000px;}
.ls5f{letter-spacing:0.048600px;}
.ls4{letter-spacing:0.054000px;}
.ls62{letter-spacing:0.059400px;}
.ls59{letter-spacing:0.075600px;}
.ls8f{letter-spacing:0.084000px;}
.ls1d{letter-spacing:0.096000px;}
.lsd{letter-spacing:0.103800px;}
.ls3c{letter-spacing:0.105000px;}
.ls16{letter-spacing:0.108600px;}
.ls17{letter-spacing:0.109800px;}
.ls11{letter-spacing:0.110400px;}
.ls10{letter-spacing:0.111600px;}
.ls15{letter-spacing:0.114600px;}
.ls50{letter-spacing:0.117600px;}
.ls4c{letter-spacing:0.121800px;}
.ls3a{letter-spacing:0.126000px;}
.ls2c{letter-spacing:0.140400px;}
.ls25{letter-spacing:0.151200px;}
.ls65{letter-spacing:0.153000px;}
.ls20{letter-spacing:0.156000px;}
.ls2b{letter-spacing:0.156600px;}
.ls76{letter-spacing:0.157500px;}
.ls2d{letter-spacing:0.162000px;}
.ls32{letter-spacing:0.167400px;}
.ls2f{letter-spacing:0.172800px;}
.ls8{letter-spacing:0.178200px;}
.ls44{letter-spacing:0.183750px;}
.ls9{letter-spacing:0.191400px;}
.lsf{letter-spacing:0.194400px;}
.ls2a{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.199800px;}
.ls1c{letter-spacing:0.204000px;}
.ls5{letter-spacing:0.204600px;}
.ls3b{letter-spacing:0.210000px;}
.ls46{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.220500px;}
.ls6{letter-spacing:0.224400px;}
.ls4d{letter-spacing:0.228000px;}
.ls33{letter-spacing:0.232200px;}
.ls1e{letter-spacing:0.234000px;}
.lsb{letter-spacing:0.237600px;}
.ls35{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.243000px;}
.ls19{letter-spacing:0.246000px;}
.ls8a{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.270600px;}
.ls2{letter-spacing:0.276000px;}
.ls5b{letter-spacing:0.280800px;}
.ls1b{letter-spacing:0.288000px;}
.ls48{letter-spacing:0.302400px;}
.ls47{letter-spacing:0.315000px;}
.ls4a{letter-spacing:0.327600px;}
.ls30{letter-spacing:0.334800px;}
.ls49{letter-spacing:0.340200px;}
.ls14{letter-spacing:0.351000px;}
.ls1{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.438000px;}
.ls2e{letter-spacing:0.448200px;}
.ls85{letter-spacing:0.462000px;}
.ls84{letter-spacing:0.468000px;}
.ls1a{letter-spacing:0.480000px;}
.ls7e{letter-spacing:0.540000px;}
.ls36{letter-spacing:0.582000px;}
.ls13{letter-spacing:0.604800px;}
.ls4b{letter-spacing:0.630000px;}
.ls45{letter-spacing:0.654000px;}
.ls52{letter-spacing:0.678000px;}
.ls4f{letter-spacing:0.696000px;}
.ls78{letter-spacing:0.702000px;}
.ls23{letter-spacing:0.705600px;}
.ls12{letter-spacing:0.707400px;}
.ls0{letter-spacing:0.768000px;}
.lse{letter-spacing:0.772200px;}
.ls29{letter-spacing:0.817740px;}
.ls22{letter-spacing:0.835800px;}
.lsc{letter-spacing:0.873180px;}
.ls63{letter-spacing:0.896400px;}
.ls27{letter-spacing:0.928620px;}
.ls82{letter-spacing:0.930000px;}
.ls37{letter-spacing:0.936000px;}
.ls86{letter-spacing:0.984000px;}
.ls90{letter-spacing:1.065900px;}
.ls3e{letter-spacing:1.066800px;}
.ls26{letter-spacing:1.164240px;}
.ls51{letter-spacing:1.242000px;}
.ls40{letter-spacing:1.797600px;}
.ls3f{letter-spacing:2.289000px;}
.ls69{letter-spacing:90.636000px;}
.ls6c{letter-spacing:107.694000px;}
.ls6b{letter-spacing:144.108000px;}
.ls71{letter-spacing:179.700000px;}
.ls6a{letter-spacing:186.060000px;}
.ls74{letter-spacing:196.764000px;}
.ls73{letter-spacing:233.178000px;}
.ls72{letter-spacing:275.124000px;}
.ls66{letter-spacing:347.280000px;}
.ls67{letter-spacing:493.434000px;}
.ls68{letter-spacing:591.230400px;}
.ls6d{letter-spacing:776.244000px;}
.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:-60.000000px;}
.ws1{word-spacing:-13.797000px;}
.ws49{word-spacing:-12.787200px;}
.ws45{word-spacing:-12.171600px;}
.ws48{word-spacing:-11.950200px;}
.ws43{word-spacing:-11.880000px;}
.ws5a{word-spacing:-11.220000px;}
.ws47{word-spacing:-8.316000px;}
.ws3{word-spacing:-4.502400px;}
.ws29{word-spacing:-3.744000px;}
.ws27{word-spacing:-3.618000px;}
.ws28{word-spacing:-3.576000px;}
.ws53{word-spacing:-3.307500px;}
.ws22{word-spacing:-2.292000px;}
.ws21{word-spacing:-2.172000px;}
.ws25{word-spacing:-1.944000px;}
.ws31{word-spacing:-1.671600px;}
.ws3c{word-spacing:-1.626000px;}
.ws4c{word-spacing:-1.550400px;}
.ws23{word-spacing:-1.536000px;}
.ws20{word-spacing:-1.380000px;}
.ws32{word-spacing:-1.297500px;}
.ws40{word-spacing:-1.110000px;}
.ws39{word-spacing:-1.044000px;}
.ws8{word-spacing:-1.025640px;}
.ws5b{word-spacing:-0.804000px;}
.wsb{word-spacing:-0.790020px;}
.ws2d{word-spacing:-0.768000px;}
.ws2b{word-spacing:-0.762000px;}
.ws2c{word-spacing:-0.756000px;}
.ws11{word-spacing:-0.734580px;}
.ws2e{word-spacing:-0.709800px;}
.wsd{word-spacing:-0.679140px;}
.ws4{word-spacing:-0.588000px;}
.ws44{word-spacing:-0.498000px;}
.ws18{word-spacing:-0.442800px;}
.ws51{word-spacing:-0.438600px;}
.ws59{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.189000px;}
.ws17{word-spacing:-0.172800px;}
.ws41{word-spacing:-0.096000px;}
.ws1a{word-spacing:-0.081000px;}
.ws7{word-spacing:-0.072600px;}
.ws1c{word-spacing:-0.070200px;}
.ws1e{word-spacing:-0.060000px;}
.ws4d{word-spacing:-0.054000px;}
.ws46{word-spacing:-0.048600px;}
.ws10{word-spacing:-0.039600px;}
.ws1d{word-spacing:-0.037800px;}
.ws3a{word-spacing:-0.036000px;}
.ws14{word-spacing:-0.032400px;}
.wsa{word-spacing:-0.026400px;}
.ws36{word-spacing:-0.026250px;}
.ws30{word-spacing:-0.025200px;}
.ws12{word-spacing:-0.016200px;}
.ws16{word-spacing:-0.010800px;}
.ws34{word-spacing:-0.007500px;}
.ws9{word-spacing:-0.006600px;}
.ws1b{word-spacing:-0.005400px;}
.ws2{word-spacing:0.000000px;}
.ws37{word-spacing:0.004200px;}
.ws13{word-spacing:0.005400px;}
.wsf{word-spacing:0.006600px;}
.ws42{word-spacing:0.008400px;}
.ws5{word-spacing:0.010800px;}
.wse{word-spacing:0.019800px;}
.ws2f{word-spacing:0.021000px;}
.ws15{word-spacing:0.021600px;}
.ws6{word-spacing:0.084000px;}
.wsc{word-spacing:0.171600px;}
.ws26{word-spacing:0.696000px;}
.ws35{word-spacing:0.782250px;}
.ws5c{word-spacing:0.861900px;}
.ws3d{word-spacing:1.488000px;}
.ws3f{word-spacing:2.076000px;}
.ws3b{word-spacing:2.682000px;}
.ws24{word-spacing:3.042000px;}
.ws33{word-spacing:3.641250px;}
.ws2a{word-spacing:3.726000px;}
.ws52{word-spacing:4.697100px;}
.ws38{word-spacing:5.058000px;}
.ws3e{word-spacing:6.096000px;}
.ws58{word-spacing:7.828500px;}
.ws1f{word-spacing:12.372000px;}
.ws56{word-spacing:55.144800px;}
.ws4e{word-spacing:57.045600px;}
.ws4f{word-spacing:86.945400px;}
.ws57{word-spacing:134.773200px;}
.ws4a{word-spacing:179.193600px;}
.ws54{word-spacing:221.286600px;}
.ws55{word-spacing:225.185400px;}
.ws4b{word-spacing:290.244600px;}
.ws50{word-spacing:835.795800px;}
._8{margin-left:-33.120000px;}
._9{margin-left:-18.084000px;}
._1{margin-left:-16.560000px;}
._4{margin-left:-14.796000px;}
._d{margin-left:-13.240200px;}
._0{margin-left:-11.508000px;}
._a{margin-left:-6.414000px;}
._15{margin-left:-5.316600px;}
._e{margin-left:-3.869400px;}
._6{margin-left:-2.556000px;}
._2{margin-left:-1.008000px;}
._3{width:1.152000px;}
._5{width:2.266200px;}
._7{width:3.340800px;}
._b{width:5.064000px;}
._c{width:6.210000px;}
._13{width:7.251300px;}
._12{width:9.157800px;}
._10{width:10.408800px;}
._11{width:11.425800px;}
._18{width:12.589200px;}
._67{width:14.898600px;}
._66{width:16.226100px;}
._14{width:19.019700px;}
._6e{width:25.999800px;}
._6f{width:29.760900px;}
._6d{width:47.371200px;}
._6c{width:50.109900px;}
._50{width:63.174600px;}
._45{width:71.539200px;}
._30{width:72.835200px;}
._41{width:80.239800px;}
._32{width:84.002400px;}
._4e{width:98.193600px;}
._44{width:101.439000px;}
._42{width:111.785400px;}
._5c{width:122.784600px;}
._3c{width:129.394800px;}
._52{width:132.754200px;}
._6b{width:134.762400px;}
._2f{width:136.436400px;}
._33{width:139.894800px;}
._2d{width:143.910000px;}
._1d{width:148.219200px;}
._5d{width:150.287400px;}
._38{width:156.903600px;}
._1b{width:166.519800px;}
._29{width:175.638600px;}
._20{width:177.595200px;}
._54{width:178.740000px;}
._5e{width:180.376200px;}
._5a{width:182.244600px;}
._31{width:184.734000px;}
._22{width:189.194400px;}
._36{width:193.405200px;}
._2a{width:203.304600px;}
._37{width:207.495000px;}
._3a{width:211.291200px;}
._26{width:212.770800px;}
._63{width:223.516800px;}
._58{width:228.420000px;}
._1a{width:230.121000px;}
._f{width:232.242000px;}
._35{width:235.201200px;}
._4c{width:237.394800px;}
._1f{width:241.191000px;}
._2c{width:244.539000px;}
._2b{width:248.286600px;}
._69{width:251.964000px;}
._3b{width:259.070400px;}
._59{width:269.514000px;}
._27{width:271.096200px;}
._5b{width:273.396600px;}
._1c{width:278.418600px;}
._68{width:281.966400px;}
._21{width:289.494000px;}
._6a{width:297.064800px;}
._34{width:300.996000px;}
._28{width:319.393800px;}
._3e{width:320.425200px;}
._4b{width:330.796800px;}
._53{width:338.607000px;}
._4d{width:349.293600px;}
._25{width:376.747200px;}
._3d{width:383.985000px;}
._39{width:410.211000px;}
._57{width:418.051800px;}
._3f{width:432.324000px;}
._2e{width:447.546600px;}
._4f{width:459.497400px;}
._55{width:462.612600px;}
._56{width:474.427800px;}
._48{width:493.597800px;}
._62{width:507.124800px;}
._23{width:526.829400px;}
._1e{width:537.640200px;}
._5f{width:551.680200px;}
._61{width:563.495400px;}
._19{width:565.012800px;}
._47{width:569.802600px;}
._49{width:587.784600px;}
._4a{width:590.263200px;}
._40{width:598.627800px;}
._65{width:602.262000px;}
._17{width:625.081200px;}
._24{width:661.462200px;}
._60{width:703.372200px;}
._51{width:739.643400px;}
._64{width:1014.795000px;}
._16{width:1527.600600px;}
._43{width:2117.437200px;}
._46{width:2130.343200px;}
.fc1{color:rgb(212,16,66);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:6.000000px;}
.fs5{font-size:18.000000px;}
.fs8{font-size:37.500000px;}
.fs7{font-size:37.800000px;}
.fsa{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:46.200000px;}
.fsc{font-size:51.000000px;}
.fs9{font-size:52.500000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:61.552350px;}
.y36{bottom:73.552500px;}
.y35{bottom:85.551150px;}
.yd4{bottom:87.060300px;}
.y1b9{bottom:87.060450px;}
.y114{bottom:87.061275px;}
.y171{bottom:87.062325px;}
.y1d3{bottom:87.306900px;}
.y221{bottom:87.525000px;}
.y222{bottom:87.526500px;}
.ya5{bottom:88.669500px;}
.y34{bottom:97.551600px;}
.y220{bottom:102.525375px;}
.y1d2{bottom:104.751600px;}
.ya4{bottom:106.114200px;}
.yd3{bottom:106.604475px;}
.y1b8{bottom:106.604625px;}
.y113{bottom:106.605450px;}
.y170{bottom:106.606500px;}
.y33{bottom:109.552050px;}
.y21f{bottom:117.525750px;}
.y32{bottom:121.552500px;}
.y1d1{bottom:122.196300px;}
.ya3{bottom:123.558900px;}
.yd2{bottom:126.150225px;}
.y1b7{bottom:126.150375px;}
.y71{bottom:126.150450px;}
.y112{bottom:126.151200px;}
.y16f{bottom:126.151275px;}
.y21e{bottom:132.526125px;}
.y1d0{bottom:139.641000px;}
.y148{bottom:145.690950px;}
.yd1{bottom:145.694400px;}
.y1b6{bottom:145.694550px;}
.y70{bottom:145.694625px;}
.y111{bottom:145.695375px;}
.y16e{bottom:145.695450px;}
.y21c{bottom:147.525750px;}
.y21d{bottom:147.526500px;}
.ya2{bottom:158.253900px;}
.y21b{bottom:162.526125px;}
.y147{bottom:165.236700px;}
.yd0{bottom:165.240150px;}
.y1b5{bottom:165.240300px;}
.y6f{bottom:165.240375px;}
.y110{bottom:165.241125px;}
.y16d{bottom:165.241200px;}
.y3e{bottom:165.824062px;}
.y1cf{bottom:175.369500px;}
.ya1{bottom:175.698600px;}
.y219{bottom:177.525375px;}
.y21a{bottom:177.526500px;}
.y3d{bottom:183.268500px;}
.y146{bottom:184.782450px;}
.ycf{bottom:184.785900px;}
.y1b4{bottom:184.786050px;}
.y6e{bottom:184.786125px;}
.y10f{bottom:184.786875px;}
.y16c{bottom:184.786950px;}
.y218{bottom:192.525750px;}
.ya0{bottom:193.143300px;}
.y160{bottom:198.521100px;}
.y105{bottom:201.675000px;}
.y145{bottom:204.328200px;}
.yce{bottom:204.331650px;}
.y1b3{bottom:204.331800px;}
.y6d{bottom:204.331875px;}
.y10e{bottom:204.332625px;}
.y16b{bottom:204.332700px;}
.y217{bottom:207.526125px;}
.y9f{bottom:210.588000px;}
.y15f{bottom:215.965800px;}
.y104{bottom:219.120000px;}
.y215{bottom:222.525375px;}
.y216{bottom:222.526500px;}
.y26a{bottom:222.602625px;}
.y144{bottom:223.872375px;}
.ycd{bottom:223.875825px;}
.y1b2{bottom:223.875975px;}
.y6c{bottom:223.876050px;}
.y2e{bottom:223.876500px;}
.y10d{bottom:223.876800px;}
.y16a{bottom:223.876875px;}
.y9e{bottom:228.032700px;}
.y1ce{bottom:231.057900px;}
.y15e{bottom:233.410500px;}
.y103{bottom:236.565000px;}
.y214{bottom:237.525750px;}
.y268{bottom:237.601875px;}
.y269{bottom:237.603000px;}
.y143{bottom:243.418125px;}
.y2d{bottom:243.421500px;}
.ycc{bottom:243.421575px;}
.y1b1{bottom:243.421725px;}
.y6b{bottom:243.421800px;}
.y10c{bottom:243.422550px;}
.y169{bottom:243.422625px;}
.y9d{bottom:245.477400px;}
.y1cd{bottom:248.502600px;}
.y213{bottom:252.526125px;}
.y267{bottom:252.602250px;}
.y102{bottom:254.010000px;}
.y9c{bottom:262.922100px;}
.y142{bottom:262.962300px;}
.ycb{bottom:262.965750px;}
.y1b0{bottom:262.965900px;}
.y6a{bottom:262.965975px;}
.y2c{bottom:262.966500px;}
.y10b{bottom:262.966725px;}
.y168{bottom:262.966800px;}
.y1cc{bottom:265.947300px;}
.y211{bottom:267.525750px;}
.y212{bottom:267.526500px;}
.y266{bottom:267.602625px;}
.y101{bottom:271.455000px;}
.y141{bottom:282.508050px;}
.y2b{bottom:282.511500px;}
.y1af{bottom:282.511650px;}
.y69{bottom:282.511725px;}
.y10a{bottom:282.512475px;}
.y167{bottom:282.512550px;}
.y210{bottom:282.526125px;}
.y264{bottom:282.601500px;}
.y265{bottom:282.603000px;}
.y1cb{bottom:283.392000px;}
.y100{bottom:288.900300px;}
.y20e{bottom:297.525750px;}
.y20f{bottom:297.526500px;}
.y263{bottom:297.601875px;}
.y9b{bottom:297.617100px;}
.y1ca{bottom:300.836700px;}
.yff{bottom:301.620150px;}
.y140{bottom:302.052225px;}
.y1ae{bottom:302.055825px;}
.y68{bottom:302.055900px;}
.y2a{bottom:302.056500px;}
.y109{bottom:302.056650px;}
.y166{bottom:302.056725px;}
.y20d{bottom:312.526125px;}
.y262{bottom:312.602250px;}
.y9a{bottom:315.061800px;}
.y1c9{bottom:318.281400px;}
.y13f{bottom:321.597975px;}
.y29{bottom:321.601500px;}
.y1ad{bottom:321.601575px;}
.y67{bottom:321.601650px;}
.y108{bottom:321.602400px;}
.y165{bottom:321.602475px;}
.yfe{bottom:323.790000px;}
.y20b{bottom:327.525750px;}
.y20c{bottom:327.526500px;}
.y261{bottom:327.602625px;}
.y99{bottom:332.506500px;}
.y1c8{bottom:335.726100px;}
.yfd{bottom:336.510450px;}
.y13e{bottom:341.142150px;}
.y1ac{bottom:341.145750px;}
.y66{bottom:341.145825px;}
.y28{bottom:341.146500px;}
.y107{bottom:341.146575px;}
.y164{bottom:341.146650px;}
.y20a{bottom:342.526125px;}
.y25f{bottom:342.602250px;}
.y260{bottom:342.603000px;}
.y98{bottom:349.951200px;}
.y1c7{bottom:353.170800px;}
.yfc{bottom:353.955150px;}
.y208{bottom:357.525375px;}
.y209{bottom:357.526500px;}
.y25e{bottom:357.602625px;}
.y13d{bottom:360.687900px;}
.y27{bottom:360.691500px;}
.y65{bottom:360.691575px;}
.y106{bottom:360.692325px;}
.y163{bottom:360.692400px;}
.y97{bottom:367.395900px;}
.y1c6{bottom:370.615500px;}
.y207{bottom:372.525750px;}
.y25c{bottom:372.602250px;}
.y25d{bottom:372.603000px;}
.yfb{bottom:376.125000px;}
.y1ab{bottom:380.225325px;}
.y13c{bottom:380.232075px;}
.y64{bottom:380.235750px;}
.y26{bottom:380.236500px;}
.y162{bottom:380.236575px;}
.y96{bottom:384.840600px;}
.y206{bottom:387.526125px;}
.y25b{bottom:387.602625px;}
.yca{bottom:388.671600px;}
.yfa{bottom:388.844400px;}
.y1aa{bottom:399.771075px;}
.y13b{bottom:399.777825px;}
.y25{bottom:399.781500px;}
.y161{bottom:399.782325px;}
.y95{bottom:402.285300px;}
.y204{bottom:402.525750px;}
.y205{bottom:402.526500px;}
.y259{bottom:402.602250px;}
.y25a{bottom:402.603000px;}
.y1c5{bottom:404.941500px;}
.yc9{bottom:406.116300px;}
.yf9{bottom:406.289100px;}
.y203{bottom:417.526125px;}
.y258{bottom:417.602625px;}
.y63{bottom:419.314500px;}
.y1a9{bottom:419.315250px;}
.y13a{bottom:419.322000px;}
.y24{bottom:419.326500px;}
.y94{bottom:419.730000px;}
.yc8{bottom:423.561000px;}
.y201{bottom:432.525750px;}
.y202{bottom:432.526500px;}
.y256{bottom:432.601875px;}
.y257{bottom:432.603000px;}
.y93{bottom:437.174700px;}
.yf8{bottom:437.565900px;}
.y62{bottom:438.860250px;}
.y1a8{bottom:438.861000px;}
.y139{bottom:438.867750px;}
.y23{bottom:438.871500px;}
.yc7{bottom:441.004350px;}
.y200{bottom:447.526125px;}
.y255{bottom:447.602250px;}
.yf7{bottom:453.544500px;}
.y92{bottom:454.619400px;}
.y61{bottom:458.406000px;}
.y1a7{bottom:458.406750px;}
.y1c4{bottom:458.412750px;}
.y138{bottom:458.413500px;}
.y22{bottom:458.416500px;}
.yc6{bottom:458.450400px;}
.y1fe{bottom:462.525750px;}
.y1ff{bottom:462.526500px;}
.y254{bottom:462.602625px;}
.yf6{bottom:469.520400px;}
.y91{bottom:472.064100px;}
.yc5{bottom:475.895100px;}
.y1fd{bottom:477.526125px;}
.y253{bottom:477.603000px;}
.y60{bottom:477.951750px;}
.y1a6{bottom:477.952500px;}
.y1c3{bottom:477.958500px;}
.y137{bottom:477.959250px;}
.yf5{bottom:485.499000px;}
.y90{bottom:489.508800px;}
.y1fb{bottom:492.525750px;}
.y1fc{bottom:492.526500px;}
.y251{bottom:492.602250px;}
.y252{bottom:492.603000px;}
.y133{bottom:493.002000px;}
.yc4{bottom:493.339800px;}
.y5f{bottom:497.497500px;}
.y1a5{bottom:497.498250px;}
.y1c2{bottom:497.504250px;}
.y136{bottom:497.505000px;}
.y21{bottom:497.506500px;}
.yf4{bottom:501.474900px;}
.y1fa{bottom:507.526125px;}
.y250{bottom:507.602625px;}
.y132{bottom:510.447300px;}
.yc3{bottom:510.784500px;}
.y5e{bottom:517.043250px;}
.y1a4{bottom:517.044000px;}
.y1c1{bottom:517.050000px;}
.y135{bottom:517.050750px;}
.y20{bottom:517.051500px;}
.yf3{bottom:517.453500px;}
.y1f8{bottom:522.525375px;}
.y1f9{bottom:522.526500px;}
.y24e{bottom:522.601875px;}
.y24f{bottom:522.603000px;}
.y8f{bottom:524.203800px;}
.y131{bottom:527.892000px;}
.yc2{bottom:528.229200px;}
.yf2{bottom:533.429400px;}
.y5d{bottom:536.589000px;}
.y1a3{bottom:536.589750px;}
.y1c0{bottom:536.595750px;}
.y134{bottom:536.596500px;}
.y1f7{bottom:537.525750px;}
.y24d{bottom:537.602250px;}
.y8e{bottom:541.648500px;}
.y130{bottom:545.337000px;}
.yc1{bottom:545.672550px;}
.yf1{bottom:549.408000px;}
.y1f6{bottom:552.526125px;}
.y24c{bottom:552.602625px;}
.y189{bottom:554.337000px;}
.y5c{bottom:556.134750px;}
.y1a2{bottom:556.135500px;}
.y1bf{bottom:556.141500px;}
.y8d{bottom:559.093200px;}
.y12f{bottom:562.782000px;}
.yc0{bottom:563.118600px;}
.yf0{bottom:565.383900px;}
.y188{bottom:567.057300px;}
.y1f4{bottom:567.523875px;}
.y1f5{bottom:567.526500px;}
.y24a{bottom:567.602250px;}
.y24b{bottom:567.603000px;}
.y12e{bottom:575.502300px;}
.y5b{bottom:575.680500px;}
.y1a1{bottom:575.681250px;}
.y8c{bottom:576.537900px;}
.ybf{bottom:580.563300px;}
.yef{bottom:581.362500px;}
.y1f3{bottom:582.524250px;}
.y249{bottom:582.602625px;}
.y187{bottom:589.227000px;}
.y8b{bottom:593.982600px;}
.y5a{bottom:595.226250px;}
.y1a0{bottom:595.227000px;}
.y1be{bottom:595.231500px;}
.y1f{bottom:595.488450px;}
.yee{bottom:597.338400px;}
.y1f2{bottom:597.524625px;}
.y247{bottom:597.601875px;}
.y248{bottom:597.603000px;}
.y12d{bottom:597.672000px;}
.ybe{bottom:598.008000px;}
.y186{bottom:601.944900px;}
.y8a{bottom:611.427300px;}
.y1f1{bottom:612.525000px;}
.y246{bottom:612.602250px;}
.yed{bottom:613.317000px;}
.y59{bottom:614.772000px;}
.y19f{bottom:614.772750px;}
.ybd{bottom:615.452700px;}
.y12c{bottom:624.224850px;}
.y1f0{bottom:627.525375px;}
.y245{bottom:627.602625px;}
.y89{bottom:628.872000px;}
.yec{bottom:629.292900px;}
.ybc{bottom:632.897400px;}
.y185{bottom:633.221700px;}
.y1e{bottom:633.887850px;}
.y58{bottom:634.317750px;}
.y19e{bottom:634.318500px;}
.y12b{bottom:640.951350px;}
.y1ef{bottom:642.525750px;}
.y244{bottom:642.603000px;}
.yeb{bottom:645.271500px;}
.y88{bottom:646.316700px;}
.y15d{bottom:647.985000px;}
.y184{bottom:650.666400px;}
.y1c{bottom:651.287850px;}
.y1bd{bottom:653.858100px;}
.y57{bottom:653.863500px;}
.y19d{bottom:653.864250px;}
.y1d{bottom:656.013000px;}
.y1ee{bottom:657.526125px;}
.y242{bottom:657.602250px;}
.y243{bottom:657.603000px;}
.y12a{bottom:658.396050px;}
.yea{bottom:661.247400px;}
.y87{bottom:663.761400px;}
.y15c{bottom:665.430000px;}
.y183{bottom:666.645000px;}
.ybb{bottom:667.591050px;}
.y1a{bottom:668.687850px;}
.y1ec{bottom:672.525750px;}
.y1ed{bottom:672.526500px;}
.y241{bottom:672.602625px;}
.y1bc{bottom:673.403850px;}
.y56{bottom:673.409250px;}
.y19c{bottom:673.410000px;}
.y1b{bottom:673.413000px;}
.y129{bottom:674.374650px;}
.ye9{bottom:677.973900px;}
.y86{bottom:681.206100px;}
.y15b{bottom:682.875000px;}
.y182{bottom:684.089700px;}
.yba{bottom:685.037100px;}
.y18{bottom:686.087700px;}
.y1eb{bottom:687.526125px;}
.y23f{bottom:687.599250px;}
.y240{bottom:687.603000px;}
.y19{bottom:690.813000px;}
.y128{bottom:691.819350px;}
.y1bb{bottom:692.949600px;}
.y55{bottom:692.955000px;}
.y19b{bottom:692.955750px;}
.ye8{bottom:694.700400px;}
.y85{bottom:698.650800px;}
.y181{bottom:700.065600px;}
.y15a{bottom:700.320000px;}
.yb9{bottom:702.481800px;}
.y1e9{bottom:702.525750px;}
.y1ea{bottom:702.526500px;}
.y23e{bottom:702.599625px;}
.y16{bottom:703.487850px;}
.y127{bottom:707.795250px;}
.y17{bottom:708.213000px;}
.ye7{bottom:711.426900px;}
.y1ba{bottom:712.495350px;}
.y54{bottom:712.500750px;}
.y19a{bottom:712.501500px;}
.y159{bottom:713.040300px;}
.y180{bottom:716.044200px;}
.y1e8{bottom:717.526125px;}
.y23d{bottom:717.600000px;}
.y14{bottom:720.887850px;}
.y126{bottom:725.239950px;}
.y15{bottom:725.613000px;}
.ye6{bottom:727.405500px;}
.y199{bottom:732.041100px;}
.y53{bottom:732.046500px;}
.y1e6{bottom:732.525000px;}
.y1e7{bottom:732.526500px;}
.y23c{bottom:732.600375px;}
.y84{bottom:733.345800px;}
.y17f{bottom:733.488900px;}
.y158{bottom:735.210000px;}
.yb8{bottom:737.176800px;}
.y12{bottom:738.287850px;}
.y125{bottom:741.218550px;}
.y13{bottom:743.013000px;}
.ye5{bottom:744.132000px;}
.y1e5{bottom:747.525375px;}
.y23b{bottom:747.600750px;}
.y17e{bottom:749.466150px;}
.y83{bottom:750.790500px;}
.y198{bottom:751.586850px;}
.yb6{bottom:754.621800px;}
.y10{bottom:755.688000px;}
.y124{bottom:758.663250px;}
.yb7{bottom:759.346500px;}
.y11{bottom:760.413000px;}
.ye4{bottom:760.858500px;}
.y157{bottom:761.764050px;}
.y1e4{bottom:762.525750px;}
.y23a{bottom:762.601125px;}
.y17d{bottom:766.910850px;}
.y82{bottom:768.235200px;}
.y197{bottom:771.132600px;}
.y52{bottom:771.136500px;}
.yb4{bottom:772.066950px;}
.y123{bottom:774.639150px;}
.yb5{bottom:776.791500px;}
.y1e3{bottom:777.526125px;}
.ye3{bottom:777.585000px;}
.y239{bottom:777.601500px;}
.y156{bottom:777.739950px;}
.y17c{bottom:782.889450px;}
.y81{bottom:785.679900px;}
.ye{bottom:785.844000px;}
.yd{bottom:785.844450px;}
.y196{bottom:790.678350px;}
.yf{bottom:791.619000px;}
.y1e2{bottom:792.526500px;}
.y238{bottom:792.601875px;}
.y155{bottom:793.718550px;}
.ye2{bottom:794.311500px;}
.y80{bottom:803.124600px;}
.y121{bottom:805.917300px;}
.yb3{bottom:805.956000px;}
.yb{bottom:806.844000px;}
.ya{bottom:806.844450px;}
.y1e0{bottom:807.525750px;}
.y1e1{bottom:807.526500px;}
.y237{bottom:807.602250px;}
.y154{bottom:809.694450px;}
.y195{bottom:810.224100px;}
.ye1{bottom:810.290100px;}
.yc{bottom:812.619000px;}
.y17b{bottom:814.166250px;}
.yb2{bottom:819.456300px;}
.y7f{bottom:820.569300px;}
.y1df{bottom:822.526125px;}
.y236{bottom:822.602625px;}
.y120{bottom:822.612300px;}
.y122{bottom:823.362000px;}
.y153{bottom:825.673050px;}
.ye0{bottom:826.266000px;}
.y8{bottom:827.844000px;}
.y194{bottom:829.768275px;}
.y17a{bottom:831.610950px;}
.y9{bottom:833.619000px;}
.y51{bottom:834.271050px;}
.yb1{bottom:836.901000px;}
.y1dd{bottom:837.526125px;}
.y1de{bottom:837.526500px;}
.y235{bottom:837.603000px;}
.y7e{bottom:838.014000px;}
.y11e{bottom:839.338800px;}
.y152{bottom:841.648950px;}
.ydf{bottom:842.994600px;}
.y179{bottom:847.589550px;}
.y193{bottom:849.314025px;}
.y50{bottom:849.316800px;}
.y1db{bottom:852.525375px;}
.y1dc{bottom:852.526500px;}
.y233{bottom:852.600750px;}
.y234{bottom:852.603000px;}
.y7d{bottom:855.458700px;}
.y11d{bottom:856.035300px;}
.y11f{bottom:856.783500px;}
.yde{bottom:859.721100px;}
.y178{bottom:865.034250px;}
.y1da{bottom:867.525750px;}
.y232{bottom:867.601125px;}
.y192{bottom:868.858200px;}
.y4f{bottom:868.861800px;}
.y7{bottom:870.105000px;}
.yb0{bottom:872.757000px;}
.y11b{bottom:872.761800px;}
.y7c{bottom:872.903400px;}
.y151{bottom:872.927100px;}
.ydd{bottom:875.699700px;}
.y177{bottom:881.010150px;}
.y1d9{bottom:882.526125px;}
.y231{bottom:882.601500px;}
.y191{bottom:888.403950px;}
.y4e{bottom:888.406800px;}
.y11a{bottom:889.456800px;}
.y150{bottom:889.653600px;}
.yaf{bottom:890.204250px;}
.y11c{bottom:890.206500px;}
.y7b{bottom:890.348100px;}
.ydc{bottom:891.675600px;}
.y176{bottom:896.988750px;}
.y1d7{bottom:897.526125px;}
.y1d8{bottom:897.526500px;}
.y230{bottom:897.601875px;}
.y6{bottom:904.605000px;}
.y118{bottom:906.183300px;}
.y14f{bottom:906.380100px;}
.yae{bottom:907.648950px;}
.ydb{bottom:907.651500px;}
.y7a{bottom:907.792800px;}
.y190{bottom:907.949700px;}
.y4d{bottom:907.951800px;}
.y1d6{bottom:912.526500px;}
.y22f{bottom:912.602250px;}
.y175{bottom:914.433450px;}
.y117{bottom:922.879500px;}
.y14e{bottom:923.106000px;}
.yda{bottom:923.627400px;}
.y119{bottom:923.628000px;}
.yad{bottom:925.093650px;}
.y79{bottom:925.237500px;}
.y18f{bottom:927.495450px;}
.y4c{bottom:927.496800px;}
.y22e{bottom:927.602625px;}
.y174{bottom:930.410700px;}
.y5{bottom:939.105000px;}
.yd9{bottom:939.606000px;}
.y14d{bottom:939.832500px;}
.y1d5{bottom:941.436000px;}
.yac{bottom:942.538350px;}
.y22c{bottom:942.602250px;}
.y22d{bottom:942.603000px;}
.y78{bottom:942.682200px;}
.y18e{bottom:947.039625px;}
.y4b{bottom:947.041800px;}
.y173{bottom:947.855400px;}
.y22b{bottom:957.602625px;}
.yab{bottom:959.983050px;}
.y77{bottom:960.126900px;}
.y172{bottom:963.834000px;}
.y18d{bottom:966.585375px;}
.y4a{bottom:966.586800px;}
.y116{bottom:970.882800px;}
.yd7{bottom:970.883100px;}
.y14c{bottom:971.109300px;}
.y22a{bottom:972.603000px;}
.yaa{bottom:977.427750px;}
.y76{bottom:977.571600px;}
.y18c{bottom:986.131125px;}
.y49{bottom:986.131800px;}
.yd8{bottom:987.579900px;}
.y228{bottom:987.601875px;}
.y229{bottom:987.603000px;}
.yd6{bottom:988.327800px;}
.y1d4{bottom:991.461750px;}
.ya9{bottom:994.872450px;}
.y75{bottom:995.016300px;}
.y115{bottom:995.860500px;}
.y14b{bottom:996.087000px;}
.y227{bottom:1002.602250px;}
.y48{bottom:1005.676800px;}
.y18b{bottom:1005.676875px;}
.ya8{bottom:1012.317150px;}
.y74{bottom:1012.461000px;}
.yd5{bottom:1013.305500px;}
.y3{bottom:1015.015500px;}
.y226{bottom:1017.602625px;}
.y18a{bottom:1025.221050px;}
.y47{bottom:1025.221800px;}
.ya7{bottom:1029.761850px;}
.y14a{bottom:1029.988500px;}
.y224{bottom:1032.602475px;}
.y225{bottom:1032.603000px;}
.y46{bottom:1044.766800px;}
.y73{bottom:1046.786850px;}
.ya6{bottom:1047.206550px;}
.y149{bottom:1047.433200px;}
.y223{bottom:1047.602850px;}
.y3c{bottom:1050.510450px;}
.y3b{bottom:1061.385450px;}
.y3a{bottom:1072.260450px;}
.y43{bottom:1083.715950px;}
.y31{bottom:1090.660200px;}
.y42{bottom:1095.716400px;}
.y38{bottom:1102.473000px;}
.y30{bottom:1102.660650px;}
.y2f{bottom:1114.661100px;}
.y44{bottom:1114.714050px;}
.y2{bottom:1114.906350px;}
.y41{bottom:1126.593300px;}
.y1{bottom:1126.906800px;}
.y39{bottom:1126.921500px;}
.y72{bottom:1127.195400px;}
.y45{bottom:1127.196450px;}
.y4{bottom:1144.050450px;}
.y40{bottom:1146.034050px;}
.y3f{bottom:1149.445650px;}
.h20{height:4.256836px;}
.h10{height:26.818066px;}
.hb{height:27.037500px;}
.h8{height:28.534570px;}
.hd{height:29.440430px;}
.h2{height:31.705078px;}
.h7{height:34.875586px;}
.h21{height:35.759766px;}
.h1f{height:36.183105px;}
.hf{height:37.863281px;}
.h9{height:38.311523px;}
.h17{height:38.349609px;}
.h1c{height:39.477539px;}
.hc{height:39.631348px;}
.h1d{height:40.605469px;}
.h4{height:40.763672px;}
.he{height:44.696777px;}
.h3{height:45.117188px;}
.ha{height:45.292969px;}
.h16{height:45.717466px;}
.h11{height:45.718066px;}
.h18{height:45.718666px;}
.h1e{height:45.993164px;}
.h13{height:48.984764px;}
.h1a{height:48.987764px;}
.h12{height:48.989564px;}
.h1b{height:48.990764px;}
.h19{height:48.991964px;}
.h14{height:48.993164px;}
.h15{height:48.995564px;}
.h6{height:49.822266px;}
.h5{height:90.234375px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:918.426000px;}
.w1{width:918.750000px;}
.x0{left:0.000000px;}
.x22{left:97.795350px;}
.x1b{left:98.938350px;}
.x2a{left:116.929200px;}
.x21{left:118.063500px;}
.x2{left:150.945000px;}
.x2c{left:170.052000px;}
.x15{left:179.646000px;}
.x3b{left:211.246500px;}
.x2d{left:237.231000px;}
.x43{left:239.361000px;}
.x23{left:246.895500px;}
.x40{left:263.461500px;}
.x3e{left:272.350500px;}
.x4{left:276.216000px;}
.xb{left:282.444000px;}
.xc{left:283.690500px;}
.x2e{left:297.962700px;}
.x1c{left:298.963500px;}
.x24{left:304.270500px;}
.x1a{left:313.857000px;}
.x4a{left:314.901000px;}
.x7{left:319.302000px;}
.x8{left:320.548500px;}
.x2b{left:322.285500px;}
.xf{left:324.459000px;}
.x10{left:337.372500px;}
.x4b{left:343.434000px;}
.x3c{left:345.850500px;}
.x41{left:351.241500px;}
.x3{left:363.543000px;}
.x34{left:366.133500px;}
.x16{left:367.795500px;}
.xd{left:376.404000px;}
.x37{left:383.148000px;}
.x25{left:396.070500px;}
.x2f{left:398.971050px;}
.x3d{left:411.375000px;}
.xe{left:413.106000px;}
.x1d{left:420.163800px;}
.x3a{left:428.737500px;}
.x33{left:446.206500px;}
.x39{left:447.414000px;}
.x18{left:449.568000px;}
.x48{left:450.987000px;}
.x11{left:485.088000px;}
.x26{left:487.558650px;}
.x30{left:489.483150px;}
.x13{left:502.395000px;}
.x9{left:504.856500px;}
.x5{left:509.127000px;}
.x49{left:515.427000px;}
.x1e{left:525.463800px;}
.x27{left:544.933650px;}
.x19{left:555.808500px;}
.x3f{left:575.275500px;}
.x14{left:580.393500px;}
.x31{left:591.270450px;}
.x1{left:593.311500px;}
.x47{left:626.380500px;}
.x28{left:648.134400px;}
.x46{left:653.100000px;}
.x44{left:654.945000px;}
.xa{left:656.568000px;}
.x1f{left:658.738500px;}
.x38{left:660.889500px;}
.x35{left:671.401500px;}
.x32{left:693.056400px;}
.x6{left:696.507000px;}
.x42{left:714.492000px;}
.x45{left:742.561500px;}
.x17{left:749.695350px;}
.x20{left:759.463350px;}
.x29{left:764.504400px;}
.x36{left:767.481000px;}
.x12{left:796.720500px;}
@media print{
.v3{vertical-align:-24.960000pt;}
.v1{vertical-align:-20.533333pt;}
.v2{vertical-align:-16.800000pt;}
.v7{vertical-align:-2.664000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.668800pt;}
.v4{vertical-align:16.800000pt;}
.v5{vertical-align:18.663467pt;}
.ls61{letter-spacing:-10.569600pt;}
.ls91{letter-spacing:-9.982400pt;}
.ls28{letter-spacing:-9.515733pt;}
.ls70{letter-spacing:-7.398720pt;}
.ls38{letter-spacing:-3.893333pt;}
.ls4e{letter-spacing:-2.645333pt;}
.ls39{letter-spacing:-1.008000pt;}
.ls34{letter-spacing:-0.432000pt;}
.ls7d{letter-spacing:-0.313600pt;}
.ls7c{letter-spacing:-0.302400pt;}
.ls7a{letter-spacing:-0.280000pt;}
.ls7b{letter-spacing:-0.268800pt;}
.ls41{letter-spacing:-0.166667pt;}
.ls42{letter-spacing:-0.160000pt;}
.ls3d{letter-spacing:-0.089600pt;}
.ls81{letter-spacing:-0.056000pt;}
.ls80{letter-spacing:-0.050400pt;}
.ls7f{letter-spacing:-0.039200pt;}
.ls6e{letter-spacing:-0.028000pt;}
.ls5c{letter-spacing:-0.024000pt;}
.ls75{letter-spacing:-0.022400pt;}
.ls87{letter-spacing:-0.021333pt;}
.ls6f{letter-spacing:-0.016800pt;}
.ls5e{letter-spacing:-0.014400pt;}
.ls88{letter-spacing:-0.013600pt;}
.ls64{letter-spacing:-0.010667pt;}
.ls5d{letter-spacing:-0.009600pt;}
.ls89{letter-spacing:-0.009067pt;}
.ls24{letter-spacing:0.000000pt;}
.ls8e{letter-spacing:0.004533pt;}
.ls54{letter-spacing:0.004800pt;}
.ls83{letter-spacing:0.005333pt;}
.ls60{letter-spacing:0.005600pt;}
.ls77{letter-spacing:0.009600pt;}
.ls8d{letter-spacing:0.013600pt;}
.ls58{letter-spacing:0.014400pt;}
.ls8b{letter-spacing:0.018133pt;}
.ls5a{letter-spacing:0.019200pt;}
.ls79{letter-spacing:0.022400pt;}
.ls8c{letter-spacing:0.022667pt;}
.ls7{letter-spacing:0.023467pt;}
.ls55{letter-spacing:0.024000pt;}
.ls56{letter-spacing:0.028800pt;}
.ls53{letter-spacing:0.033600pt;}
.ls57{letter-spacing:0.038400pt;}
.lsa{letter-spacing:0.042667pt;}
.ls5f{letter-spacing:0.043200pt;}
.ls4{letter-spacing:0.048000pt;}
.ls62{letter-spacing:0.052800pt;}
.ls59{letter-spacing:0.067200pt;}
.ls8f{letter-spacing:0.074667pt;}
.ls1d{letter-spacing:0.085333pt;}
.lsd{letter-spacing:0.092267pt;}
.ls3c{letter-spacing:0.093333pt;}
.ls16{letter-spacing:0.096533pt;}
.ls17{letter-spacing:0.097600pt;}
.ls11{letter-spacing:0.098133pt;}
.ls10{letter-spacing:0.099200pt;}
.ls15{letter-spacing:0.101867pt;}
.ls50{letter-spacing:0.104533pt;}
.ls4c{letter-spacing:0.108267pt;}
.ls3a{letter-spacing:0.112000pt;}
.ls2c{letter-spacing:0.124800pt;}
.ls25{letter-spacing:0.134400pt;}
.ls65{letter-spacing:0.136000pt;}
.ls20{letter-spacing:0.138667pt;}
.ls2b{letter-spacing:0.139200pt;}
.ls76{letter-spacing:0.140000pt;}
.ls2d{letter-spacing:0.144000pt;}
.ls32{letter-spacing:0.148800pt;}
.ls2f{letter-spacing:0.153600pt;}
.ls8{letter-spacing:0.158400pt;}
.ls44{letter-spacing:0.163333pt;}
.ls9{letter-spacing:0.170133pt;}
.lsf{letter-spacing:0.172800pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.177600pt;}
.ls1c{letter-spacing:0.181333pt;}
.ls5{letter-spacing:0.181867pt;}
.ls3b{letter-spacing:0.186667pt;}
.ls46{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.196000pt;}
.ls6{letter-spacing:0.199467pt;}
.ls4d{letter-spacing:0.202667pt;}
.ls33{letter-spacing:0.206400pt;}
.ls1e{letter-spacing:0.208000pt;}
.lsb{letter-spacing:0.211200pt;}
.ls35{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.216000pt;}
.ls19{letter-spacing:0.218667pt;}
.ls8a{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.240533pt;}
.ls2{letter-spacing:0.245333pt;}
.ls5b{letter-spacing:0.249600pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls48{letter-spacing:0.268800pt;}
.ls47{letter-spacing:0.280000pt;}
.ls4a{letter-spacing:0.291200pt;}
.ls30{letter-spacing:0.297600pt;}
.ls49{letter-spacing:0.302400pt;}
.ls14{letter-spacing:0.312000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.389333pt;}
.ls2e{letter-spacing:0.398400pt;}
.ls85{letter-spacing:0.410667pt;}
.ls84{letter-spacing:0.416000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls7e{letter-spacing:0.480000pt;}
.ls36{letter-spacing:0.517333pt;}
.ls13{letter-spacing:0.537600pt;}
.ls4b{letter-spacing:0.560000pt;}
.ls45{letter-spacing:0.581333pt;}
.ls52{letter-spacing:0.602667pt;}
.ls4f{letter-spacing:0.618667pt;}
.ls78{letter-spacing:0.624000pt;}
.ls23{letter-spacing:0.627200pt;}
.ls12{letter-spacing:0.628800pt;}
.ls0{letter-spacing:0.682667pt;}
.lse{letter-spacing:0.686400pt;}
.ls29{letter-spacing:0.726880pt;}
.ls22{letter-spacing:0.742933pt;}
.lsc{letter-spacing:0.776160pt;}
.ls63{letter-spacing:0.796800pt;}
.ls27{letter-spacing:0.825440pt;}
.ls82{letter-spacing:0.826667pt;}
.ls37{letter-spacing:0.832000pt;}
.ls86{letter-spacing:0.874667pt;}
.ls90{letter-spacing:0.947467pt;}
.ls3e{letter-spacing:0.948267pt;}
.ls26{letter-spacing:1.034880pt;}
.ls51{letter-spacing:1.104000pt;}
.ls40{letter-spacing:1.597867pt;}
.ls3f{letter-spacing:2.034667pt;}
.ls69{letter-spacing:80.565333pt;}
.ls6c{letter-spacing:95.728000pt;}
.ls6b{letter-spacing:128.096000pt;}
.ls71{letter-spacing:159.733333pt;}
.ls6a{letter-spacing:165.386667pt;}
.ls74{letter-spacing:174.901333pt;}
.ls73{letter-spacing:207.269333pt;}
.ls72{letter-spacing:244.554667pt;}
.ls66{letter-spacing:308.693333pt;}
.ls67{letter-spacing:438.608000pt;}
.ls68{letter-spacing:525.538133pt;}
.ls6d{letter-spacing:689.994667pt;}
.ws0{word-spacing:-53.333333pt;}
.ws1{word-spacing:-12.264000pt;}
.ws49{word-spacing:-11.366400pt;}
.ws45{word-spacing:-10.819200pt;}
.ws48{word-spacing:-10.622400pt;}
.ws43{word-spacing:-10.560000pt;}
.ws5a{word-spacing:-9.973333pt;}
.ws47{word-spacing:-7.392000pt;}
.ws3{word-spacing:-4.002133pt;}
.ws29{word-spacing:-3.328000pt;}
.ws27{word-spacing:-3.216000pt;}
.ws28{word-spacing:-3.178667pt;}
.ws53{word-spacing:-2.940000pt;}
.ws22{word-spacing:-2.037333pt;}
.ws21{word-spacing:-1.930667pt;}
.ws25{word-spacing:-1.728000pt;}
.ws31{word-spacing:-1.485867pt;}
.ws3c{word-spacing:-1.445333pt;}
.ws4c{word-spacing:-1.378133pt;}
.ws23{word-spacing:-1.365333pt;}
.ws20{word-spacing:-1.226667pt;}
.ws32{word-spacing:-1.153333pt;}
.ws40{word-spacing:-0.986667pt;}
.ws39{word-spacing:-0.928000pt;}
.ws8{word-spacing:-0.911680pt;}
.ws5b{word-spacing:-0.714667pt;}
.wsb{word-spacing:-0.702240pt;}
.ws2d{word-spacing:-0.682667pt;}
.ws2b{word-spacing:-0.677333pt;}
.ws2c{word-spacing:-0.672000pt;}
.ws11{word-spacing:-0.652960pt;}
.ws2e{word-spacing:-0.630933pt;}
.wsd{word-spacing:-0.603680pt;}
.ws4{word-spacing:-0.522667pt;}
.ws44{word-spacing:-0.442667pt;}
.ws18{word-spacing:-0.393600pt;}
.ws51{word-spacing:-0.389867pt;}
.ws59{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.168000pt;}
.ws17{word-spacing:-0.153600pt;}
.ws41{word-spacing:-0.085333pt;}
.ws1a{word-spacing:-0.072000pt;}
.ws7{word-spacing:-0.064533pt;}
.ws1c{word-spacing:-0.062400pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws4d{word-spacing:-0.048000pt;}
.ws46{word-spacing:-0.043200pt;}
.ws10{word-spacing:-0.035200pt;}
.ws1d{word-spacing:-0.033600pt;}
.ws3a{word-spacing:-0.032000pt;}
.ws14{word-spacing:-0.028800pt;}
.wsa{word-spacing:-0.023467pt;}
.ws36{word-spacing:-0.023333pt;}
.ws30{word-spacing:-0.022400pt;}
.ws12{word-spacing:-0.014400pt;}
.ws16{word-spacing:-0.009600pt;}
.ws34{word-spacing:-0.006667pt;}
.ws9{word-spacing:-0.005867pt;}
.ws1b{word-spacing:-0.004800pt;}
.ws2{word-spacing:0.000000pt;}
.ws37{word-spacing:0.003733pt;}
.ws13{word-spacing:0.004800pt;}
.wsf{word-spacing:0.005867pt;}
.ws42{word-spacing:0.007467pt;}
.ws5{word-spacing:0.009600pt;}
.wse{word-spacing:0.017600pt;}
.ws2f{word-spacing:0.018667pt;}
.ws15{word-spacing:0.019200pt;}
.ws6{word-spacing:0.074667pt;}
.wsc{word-spacing:0.152533pt;}
.ws26{word-spacing:0.618667pt;}
.ws35{word-spacing:0.695333pt;}
.ws5c{word-spacing:0.766133pt;}
.ws3d{word-spacing:1.322667pt;}
.ws3f{word-spacing:1.845333pt;}
.ws3b{word-spacing:2.384000pt;}
.ws24{word-spacing:2.704000pt;}
.ws33{word-spacing:3.236667pt;}
.ws2a{word-spacing:3.312000pt;}
.ws52{word-spacing:4.175200pt;}
.ws38{word-spacing:4.496000pt;}
.ws3e{word-spacing:5.418667pt;}
.ws58{word-spacing:6.958667pt;}
.ws1f{word-spacing:10.997333pt;}
.ws56{word-spacing:49.017600pt;}
.ws4e{word-spacing:50.707200pt;}
.ws4f{word-spacing:77.284800pt;}
.ws57{word-spacing:119.798400pt;}
.ws4a{word-spacing:159.283200pt;}
.ws54{word-spacing:196.699200pt;}
.ws55{word-spacing:200.164800pt;}
.ws4b{word-spacing:257.995200pt;}
.ws50{word-spacing:742.929600pt;}
._8{margin-left:-29.440000pt;}
._9{margin-left:-16.074667pt;}
._1{margin-left:-14.720000pt;}
._4{margin-left:-13.152000pt;}
._d{margin-left:-11.769067pt;}
._0{margin-left:-10.229333pt;}
._a{margin-left:-5.701333pt;}
._15{margin-left:-4.725867pt;}
._e{margin-left:-3.439467pt;}
._6{margin-left:-2.272000pt;}
._2{margin-left:-0.896000pt;}
._3{width:1.024000pt;}
._5{width:2.014400pt;}
._7{width:2.969600pt;}
._b{width:4.501333pt;}
._c{width:5.520000pt;}
._13{width:6.445600pt;}
._12{width:8.140267pt;}
._10{width:9.252267pt;}
._11{width:10.156267pt;}
._18{width:11.190400pt;}
._67{width:13.243200pt;}
._66{width:14.423200pt;}
._14{width:16.906400pt;}
._6e{width:23.110933pt;}
._6f{width:26.454133pt;}
._6d{width:42.107733pt;}
._6c{width:44.542133pt;}
._50{width:56.155200pt;}
._45{width:63.590400pt;}
._30{width:64.742400pt;}
._41{width:71.324267pt;}
._32{width:74.668800pt;}
._4e{width:87.283200pt;}
._44{width:90.168000pt;}
._42{width:99.364800pt;}
._5c{width:109.141867pt;}
._3c{width:115.017600pt;}
._52{width:118.003733pt;}
._6b{width:119.788800pt;}
._2f{width:121.276800pt;}
._33{width:124.350933pt;}
._2d{width:127.920000pt;}
._1d{width:131.750400pt;}
._5d{width:133.588800pt;}
._38{width:139.469867pt;}
._1b{width:148.017600pt;}
._29{width:156.123200pt;}
._20{width:157.862400pt;}
._54{width:158.880000pt;}
._5e{width:160.334400pt;}
._5a{width:161.995200pt;}
._31{width:164.208000pt;}
._22{width:168.172800pt;}
._36{width:171.915733pt;}
._2a{width:180.715200pt;}
._37{width:184.440000pt;}
._3a{width:187.814400pt;}
._26{width:189.129600pt;}
._63{width:198.681600pt;}
._58{width:203.040000pt;}
._1a{width:204.552000pt;}
._f{width:206.437333pt;}
._35{width:209.067733pt;}
._4c{width:211.017600pt;}
._1f{width:214.392000pt;}
._2c{width:217.368000pt;}
._2b{width:220.699200pt;}
._69{width:223.968000pt;}
._3b{width:230.284800pt;}
._59{width:239.568000pt;}
._27{width:240.974400pt;}
._5b{width:243.019200pt;}
._1c{width:247.483200pt;}
._68{width:250.636800pt;}
._21{width:257.328000pt;}
._6a{width:264.057600pt;}
._34{width:267.552000pt;}
._28{width:283.905600pt;}
._3e{width:284.822400pt;}
._4b{width:294.041600pt;}
._53{width:300.984000pt;}
._4d{width:310.483200pt;}
._25{width:334.886400pt;}
._3d{width:341.320000pt;}
._39{width:364.632000pt;}
._57{width:371.601600pt;}
._3f{width:384.288000pt;}
._2e{width:397.819200pt;}
._4f{width:408.442133pt;}
._55{width:411.211200pt;}
._56{width:421.713600pt;}
._48{width:438.753600pt;}
._62{width:450.777600pt;}
._23{width:468.292800pt;}
._1e{width:477.902400pt;}
._5f{width:490.382400pt;}
._61{width:500.884800pt;}
._19{width:502.233600pt;}
._47{width:506.491200pt;}
._49{width:522.475200pt;}
._4a{width:524.678400pt;}
._40{width:532.113600pt;}
._65{width:535.344000pt;}
._17{width:555.627733pt;}
._24{width:587.966400pt;}
._60{width:625.219733pt;}
._51{width:657.460800pt;}
._64{width:902.040000pt;}
._16{width:1357.867200pt;}
._43{width:1882.166400pt;}
._46{width:1893.638400pt;}
.fsd{font-size:5.333333pt;}
.fs5{font-size:16.000000pt;}
.fs8{font-size:33.333333pt;}
.fs7{font-size:33.600000pt;}
.fsa{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:41.066667pt;}
.fsc{font-size:45.333333pt;}
.fs9{font-size:46.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:54.713200pt;}
.y36{bottom:65.380000pt;}
.y35{bottom:76.045467pt;}
.yd4{bottom:77.386933pt;}
.y1b9{bottom:77.387067pt;}
.y114{bottom:77.387800pt;}
.y171{bottom:77.388733pt;}
.y1d3{bottom:77.606133pt;}
.y221{bottom:77.800000pt;}
.y222{bottom:77.801333pt;}
.ya5{bottom:78.817333pt;}
.y34{bottom:86.712533pt;}
.y220{bottom:91.133667pt;}
.y1d2{bottom:93.112533pt;}
.ya4{bottom:94.323733pt;}
.yd3{bottom:94.759533pt;}
.y1b8{bottom:94.759667pt;}
.y113{bottom:94.760400pt;}
.y170{bottom:94.761333pt;}
.y33{bottom:97.379600pt;}
.y21f{bottom:104.467333pt;}
.y32{bottom:108.046667pt;}
.y1d1{bottom:108.618933pt;}
.ya3{bottom:109.830133pt;}
.yd2{bottom:112.133533pt;}
.y1b7{bottom:112.133667pt;}
.y71{bottom:112.133733pt;}
.y112{bottom:112.134400pt;}
.y16f{bottom:112.134467pt;}
.y21e{bottom:117.801000pt;}
.y1d0{bottom:124.125333pt;}
.y148{bottom:129.503067pt;}
.yd1{bottom:129.506133pt;}
.y1b6{bottom:129.506267pt;}
.y70{bottom:129.506333pt;}
.y111{bottom:129.507000pt;}
.y16e{bottom:129.507067pt;}
.y21c{bottom:131.134000pt;}
.y21d{bottom:131.134667pt;}
.ya2{bottom:140.670133pt;}
.y21b{bottom:144.467667pt;}
.y147{bottom:146.877067pt;}
.yd0{bottom:146.880133pt;}
.y1b5{bottom:146.880267pt;}
.y6f{bottom:146.880333pt;}
.y110{bottom:146.881000pt;}
.y16d{bottom:146.881067pt;}
.y3e{bottom:147.399167pt;}
.y1cf{bottom:155.884000pt;}
.ya1{bottom:156.176533pt;}
.y219{bottom:157.800333pt;}
.y21a{bottom:157.801333pt;}
.y3d{bottom:162.905333pt;}
.y146{bottom:164.251067pt;}
.ycf{bottom:164.254133pt;}
.y1b4{bottom:164.254267pt;}
.y6e{bottom:164.254333pt;}
.y10f{bottom:164.255000pt;}
.y16c{bottom:164.255067pt;}
.y218{bottom:171.134000pt;}
.ya0{bottom:171.682933pt;}
.y160{bottom:176.463200pt;}
.y105{bottom:179.266667pt;}
.y145{bottom:181.625067pt;}
.yce{bottom:181.628133pt;}
.y1b3{bottom:181.628267pt;}
.y6d{bottom:181.628333pt;}
.y10e{bottom:181.629000pt;}
.y16b{bottom:181.629067pt;}
.y217{bottom:184.467667pt;}
.y9f{bottom:187.189333pt;}
.y15f{bottom:191.969600pt;}
.y104{bottom:194.773333pt;}
.y215{bottom:197.800333pt;}
.y216{bottom:197.801333pt;}
.y26a{bottom:197.869000pt;}
.y144{bottom:198.997667pt;}
.ycd{bottom:199.000733pt;}
.y1b2{bottom:199.000867pt;}
.y6c{bottom:199.000933pt;}
.y2e{bottom:199.001333pt;}
.y10d{bottom:199.001600pt;}
.y16a{bottom:199.001667pt;}
.y9e{bottom:202.695733pt;}
.y1ce{bottom:205.384800pt;}
.y15e{bottom:207.476000pt;}
.y103{bottom:210.280000pt;}
.y214{bottom:211.134000pt;}
.y268{bottom:211.201667pt;}
.y269{bottom:211.202667pt;}
.y143{bottom:216.371667pt;}
.y2d{bottom:216.374667pt;}
.ycc{bottom:216.374733pt;}
.y1b1{bottom:216.374867pt;}
.y6b{bottom:216.374933pt;}
.y10c{bottom:216.375600pt;}
.y169{bottom:216.375667pt;}
.y9d{bottom:218.202133pt;}
.y1cd{bottom:220.891200pt;}
.y213{bottom:224.467667pt;}
.y267{bottom:224.535333pt;}
.y102{bottom:225.786667pt;}
.y9c{bottom:233.708533pt;}
.y142{bottom:233.744267pt;}
.ycb{bottom:233.747333pt;}
.y1b0{bottom:233.747467pt;}
.y6a{bottom:233.747533pt;}
.y2c{bottom:233.748000pt;}
.y10b{bottom:233.748200pt;}
.y168{bottom:233.748267pt;}
.y1cc{bottom:236.397600pt;}
.y211{bottom:237.800667pt;}
.y212{bottom:237.801333pt;}
.y266{bottom:237.869000pt;}
.y101{bottom:241.293333pt;}
.y141{bottom:251.118267pt;}
.y2b{bottom:251.121333pt;}
.y1af{bottom:251.121467pt;}
.y69{bottom:251.121533pt;}
.y10a{bottom:251.122200pt;}
.y167{bottom:251.122267pt;}
.y210{bottom:251.134333pt;}
.y264{bottom:251.201333pt;}
.y265{bottom:251.202667pt;}
.y1cb{bottom:251.904000pt;}
.y100{bottom:256.800267pt;}
.y20e{bottom:264.467333pt;}
.y20f{bottom:264.468000pt;}
.y263{bottom:264.535000pt;}
.y9b{bottom:264.548533pt;}
.y1ca{bottom:267.410400pt;}
.yff{bottom:268.106800pt;}
.y140{bottom:268.490867pt;}
.y1ae{bottom:268.494067pt;}
.y68{bottom:268.494133pt;}
.y2a{bottom:268.494667pt;}
.y109{bottom:268.494800pt;}
.y166{bottom:268.494867pt;}
.y20d{bottom:277.801000pt;}
.y262{bottom:277.868667pt;}
.y9a{bottom:280.054933pt;}
.y1c9{bottom:282.916800pt;}
.y13f{bottom:285.864867pt;}
.y29{bottom:285.868000pt;}
.y1ad{bottom:285.868067pt;}
.y67{bottom:285.868133pt;}
.y108{bottom:285.868800pt;}
.y165{bottom:285.868867pt;}
.yfe{bottom:287.813333pt;}
.y20b{bottom:291.134000pt;}
.y20c{bottom:291.134667pt;}
.y261{bottom:291.202333pt;}
.y99{bottom:295.561333pt;}
.y1c8{bottom:298.423200pt;}
.yfd{bottom:299.120400pt;}
.y13e{bottom:303.237467pt;}
.y1ac{bottom:303.240667pt;}
.y66{bottom:303.240733pt;}
.y28{bottom:303.241333pt;}
.y107{bottom:303.241400pt;}
.y164{bottom:303.241467pt;}
.y20a{bottom:304.467667pt;}
.y25f{bottom:304.535333pt;}
.y260{bottom:304.536000pt;}
.y98{bottom:311.067733pt;}
.y1c7{bottom:313.929600pt;}
.yfc{bottom:314.626800pt;}
.y208{bottom:317.800333pt;}
.y209{bottom:317.801333pt;}
.y25e{bottom:317.869000pt;}
.y13d{bottom:320.611467pt;}
.y27{bottom:320.614667pt;}
.y65{bottom:320.614733pt;}
.y106{bottom:320.615400pt;}
.y163{bottom:320.615467pt;}
.y97{bottom:326.574133pt;}
.y1c6{bottom:329.436000pt;}
.y207{bottom:331.134000pt;}
.y25c{bottom:331.202000pt;}
.y25d{bottom:331.202667pt;}
.yfb{bottom:334.333333pt;}
.y1ab{bottom:337.978067pt;}
.y13c{bottom:337.984067pt;}
.y64{bottom:337.987333pt;}
.y26{bottom:337.988000pt;}
.y162{bottom:337.988067pt;}
.y96{bottom:342.080533pt;}
.y206{bottom:344.467667pt;}
.y25b{bottom:344.535667pt;}
.yca{bottom:345.485867pt;}
.yfa{bottom:345.639467pt;}
.y1aa{bottom:355.352067pt;}
.y13b{bottom:355.358067pt;}
.y25{bottom:355.361333pt;}
.y161{bottom:355.362067pt;}
.y95{bottom:357.586933pt;}
.y204{bottom:357.800667pt;}
.y205{bottom:357.801333pt;}
.y259{bottom:357.868667pt;}
.y25a{bottom:357.869333pt;}
.y1c5{bottom:359.948000pt;}
.yc9{bottom:360.992267pt;}
.yf9{bottom:361.145867pt;}
.y203{bottom:371.134333pt;}
.y258{bottom:371.202333pt;}
.y63{bottom:372.724000pt;}
.y1a9{bottom:372.724667pt;}
.y13a{bottom:372.730667pt;}
.y24{bottom:372.734667pt;}
.y94{bottom:373.093333pt;}
.yc8{bottom:376.498667pt;}
.y201{bottom:384.467333pt;}
.y202{bottom:384.468000pt;}
.y256{bottom:384.535000pt;}
.y257{bottom:384.536000pt;}
.y93{bottom:388.599733pt;}
.yf8{bottom:388.947467pt;}
.y62{bottom:390.098000pt;}
.y1a8{bottom:390.098667pt;}
.y139{bottom:390.104667pt;}
.y23{bottom:390.108000pt;}
.yc7{bottom:392.003867pt;}
.y200{bottom:397.801000pt;}
.y255{bottom:397.868667pt;}
.yf7{bottom:403.150667pt;}
.y92{bottom:404.106133pt;}
.y61{bottom:407.472000pt;}
.y1a7{bottom:407.472667pt;}
.y1c4{bottom:407.478000pt;}
.y138{bottom:407.478667pt;}
.y22{bottom:407.481333pt;}
.yc6{bottom:407.511467pt;}
.y1fe{bottom:411.134000pt;}
.y1ff{bottom:411.134667pt;}
.y254{bottom:411.202333pt;}
.yf6{bottom:417.351467pt;}
.y91{bottom:419.612533pt;}
.yc5{bottom:423.017867pt;}
.y1fd{bottom:424.467667pt;}
.y253{bottom:424.536000pt;}
.y60{bottom:424.846000pt;}
.y1a6{bottom:424.846667pt;}
.y1c3{bottom:424.852000pt;}
.y137{bottom:424.852667pt;}
.yf5{bottom:431.554667pt;}
.y90{bottom:435.118933pt;}
.y1fb{bottom:437.800667pt;}
.y1fc{bottom:437.801333pt;}
.y251{bottom:437.868667pt;}
.y252{bottom:437.869333pt;}
.y133{bottom:438.224000pt;}
.yc4{bottom:438.524267pt;}
.y5f{bottom:442.220000pt;}
.y1a5{bottom:442.220667pt;}
.y1c2{bottom:442.226000pt;}
.y136{bottom:442.226667pt;}
.y21{bottom:442.228000pt;}
.yf4{bottom:445.755467pt;}
.y1fa{bottom:451.134333pt;}
.y250{bottom:451.202333pt;}
.y132{bottom:453.730933pt;}
.yc3{bottom:454.030667pt;}
.y5e{bottom:459.594000pt;}
.y1a4{bottom:459.594667pt;}
.y1c1{bottom:459.600000pt;}
.y135{bottom:459.600667pt;}
.y20{bottom:459.601333pt;}
.yf3{bottom:459.958667pt;}
.y1f8{bottom:464.467000pt;}
.y1f9{bottom:464.468000pt;}
.y24e{bottom:464.535000pt;}
.y24f{bottom:464.536000pt;}
.y8f{bottom:465.958933pt;}
.y131{bottom:469.237333pt;}
.yc2{bottom:469.537067pt;}
.yf2{bottom:474.159467pt;}
.y5d{bottom:476.968000pt;}
.y1a3{bottom:476.968667pt;}
.y1c0{bottom:476.974000pt;}
.y134{bottom:476.974667pt;}
.y1f7{bottom:477.800667pt;}
.y24d{bottom:477.868667pt;}
.y8e{bottom:481.465333pt;}
.y130{bottom:484.744000pt;}
.yc1{bottom:485.042267pt;}
.yf1{bottom:488.362667pt;}
.y1f6{bottom:491.134333pt;}
.y24c{bottom:491.202333pt;}
.y189{bottom:492.744000pt;}
.y5c{bottom:494.342000pt;}
.y1a2{bottom:494.342667pt;}
.y1bf{bottom:494.348000pt;}
.y8d{bottom:496.971733pt;}
.y12f{bottom:500.250667pt;}
.yc0{bottom:500.549867pt;}
.yf0{bottom:502.563467pt;}
.y188{bottom:504.050933pt;}
.y1f4{bottom:504.465667pt;}
.y1f5{bottom:504.468000pt;}
.y24a{bottom:504.535333pt;}
.y24b{bottom:504.536000pt;}
.y12e{bottom:511.557600pt;}
.y5b{bottom:511.716000pt;}
.y1a1{bottom:511.716667pt;}
.y8c{bottom:512.478133pt;}
.ybf{bottom:516.056267pt;}
.yef{bottom:516.766667pt;}
.y1f3{bottom:517.799333pt;}
.y249{bottom:517.869000pt;}
.y187{bottom:523.757333pt;}
.y8b{bottom:527.984533pt;}
.y5a{bottom:529.090000pt;}
.y1a0{bottom:529.090667pt;}
.y1be{bottom:529.094667pt;}
.y1f{bottom:529.323067pt;}
.yee{bottom:530.967467pt;}
.y1f2{bottom:531.133000pt;}
.y247{bottom:531.201667pt;}
.y248{bottom:531.202667pt;}
.y12d{bottom:531.264000pt;}
.ybe{bottom:531.562667pt;}
.y186{bottom:535.062133pt;}
.y8a{bottom:543.490933pt;}
.y1f1{bottom:544.466667pt;}
.y246{bottom:544.535333pt;}
.yed{bottom:545.170667pt;}
.y59{bottom:546.464000pt;}
.y19f{bottom:546.464667pt;}
.ybd{bottom:547.069067pt;}
.y12c{bottom:554.866533pt;}
.y1f0{bottom:557.800333pt;}
.y245{bottom:557.869000pt;}
.y89{bottom:558.997333pt;}
.yec{bottom:559.371467pt;}
.ybc{bottom:562.575467pt;}
.y185{bottom:562.863733pt;}
.y1e{bottom:563.455867pt;}
.y58{bottom:563.838000pt;}
.y19e{bottom:563.838667pt;}
.y12b{bottom:569.734533pt;}
.y1ef{bottom:571.134000pt;}
.y244{bottom:571.202667pt;}
.yeb{bottom:573.574667pt;}
.y88{bottom:574.503733pt;}
.y15d{bottom:575.986667pt;}
.y184{bottom:578.370133pt;}
.y1c{bottom:578.922533pt;}
.y1bd{bottom:581.207200pt;}
.y57{bottom:581.212000pt;}
.y19d{bottom:581.212667pt;}
.y1d{bottom:583.122667pt;}
.y1ee{bottom:584.467667pt;}
.y242{bottom:584.535333pt;}
.y243{bottom:584.536000pt;}
.y12a{bottom:585.240933pt;}
.yea{bottom:587.775467pt;}
.y87{bottom:590.010133pt;}
.y15c{bottom:591.493333pt;}
.y183{bottom:592.573333pt;}
.ybb{bottom:593.414267pt;}
.y1a{bottom:594.389200pt;}
.y1ec{bottom:597.800667pt;}
.y1ed{bottom:597.801333pt;}
.y241{bottom:597.869000pt;}
.y1bc{bottom:598.581200pt;}
.y56{bottom:598.586000pt;}
.y19c{bottom:598.586667pt;}
.y1b{bottom:598.589333pt;}
.y129{bottom:599.444133pt;}
.ye9{bottom:602.643467pt;}
.y86{bottom:605.516533pt;}
.y15b{bottom:607.000000pt;}
.y182{bottom:608.079733pt;}
.yba{bottom:608.921867pt;}
.y18{bottom:609.855733pt;}
.y1eb{bottom:611.134333pt;}
.y23f{bottom:611.199333pt;}
.y240{bottom:611.202667pt;}
.y19{bottom:614.056000pt;}
.y128{bottom:614.950533pt;}
.y1bb{bottom:615.955200pt;}
.y55{bottom:615.960000pt;}
.y19b{bottom:615.960667pt;}
.ye8{bottom:617.511467pt;}
.y85{bottom:621.022933pt;}
.y181{bottom:622.280533pt;}
.y15a{bottom:622.506667pt;}
.yb9{bottom:624.428267pt;}
.y1e9{bottom:624.467333pt;}
.y1ea{bottom:624.468000pt;}
.y23e{bottom:624.533000pt;}
.y16{bottom:625.322533pt;}
.y127{bottom:629.151333pt;}
.y17{bottom:629.522667pt;}
.ye7{bottom:632.379467pt;}
.y1ba{bottom:633.329200pt;}
.y54{bottom:633.334000pt;}
.y19a{bottom:633.334667pt;}
.y159{bottom:633.813600pt;}
.y180{bottom:636.483733pt;}
.y1e8{bottom:637.801000pt;}
.y23d{bottom:637.866667pt;}
.y14{bottom:640.789200pt;}
.y126{bottom:644.657733pt;}
.y15{bottom:644.989333pt;}
.ye6{bottom:646.582667pt;}
.y199{bottom:650.703200pt;}
.y53{bottom:650.708000pt;}
.y1e6{bottom:651.133333pt;}
.y1e7{bottom:651.134667pt;}
.y23c{bottom:651.200333pt;}
.y84{bottom:651.862933pt;}
.y17f{bottom:651.990133pt;}
.y158{bottom:653.520000pt;}
.yb8{bottom:655.268267pt;}
.y12{bottom:656.255867pt;}
.y125{bottom:658.860933pt;}
.y13{bottom:660.456000pt;}
.ye5{bottom:661.450667pt;}
.y1e5{bottom:664.467000pt;}
.y23b{bottom:664.534000pt;}
.y17e{bottom:666.192133pt;}
.y83{bottom:667.369333pt;}
.y198{bottom:668.077200pt;}
.yb6{bottom:670.774933pt;}
.y10{bottom:671.722667pt;}
.y124{bottom:674.367333pt;}
.yb7{bottom:674.974667pt;}
.y11{bottom:675.922667pt;}
.ye4{bottom:676.318667pt;}
.y157{bottom:677.123600pt;}
.y1e4{bottom:677.800667pt;}
.y23a{bottom:677.867667pt;}
.y17d{bottom:681.698533pt;}
.y82{bottom:682.875733pt;}
.y197{bottom:685.451200pt;}
.y52{bottom:685.454667pt;}
.yb4{bottom:686.281733pt;}
.y123{bottom:688.568133pt;}
.yb5{bottom:690.481333pt;}
.y1e3{bottom:691.134333pt;}
.ye3{bottom:691.186667pt;}
.y239{bottom:691.201333pt;}
.y156{bottom:691.324400pt;}
.y17c{bottom:695.901733pt;}
.y81{bottom:698.382133pt;}
.ye{bottom:698.528000pt;}
.yd{bottom:698.528400pt;}
.y196{bottom:702.825200pt;}
.yf{bottom:703.661333pt;}
.y1e2{bottom:704.468000pt;}
.y238{bottom:704.535000pt;}
.y155{bottom:705.527600pt;}
.ye2{bottom:706.054667pt;}
.y80{bottom:713.888533pt;}
.y121{bottom:716.370933pt;}
.yb3{bottom:716.405333pt;}
.yb{bottom:717.194667pt;}
.ya{bottom:717.195067pt;}
.y1e0{bottom:717.800667pt;}
.y1e1{bottom:717.801333pt;}
.y237{bottom:717.868667pt;}
.y154{bottom:719.728400pt;}
.y195{bottom:720.199200pt;}
.ye1{bottom:720.257867pt;}
.yc{bottom:722.328000pt;}
.y17b{bottom:723.703333pt;}
.yb2{bottom:728.405600pt;}
.y7f{bottom:729.394933pt;}
.y1df{bottom:731.134333pt;}
.y236{bottom:731.202333pt;}
.y120{bottom:731.210933pt;}
.y122{bottom:731.877333pt;}
.y153{bottom:733.931600pt;}
.ye0{bottom:734.458667pt;}
.y8{bottom:735.861333pt;}
.y194{bottom:737.571800pt;}
.y17a{bottom:739.209733pt;}
.y9{bottom:740.994667pt;}
.y51{bottom:741.574267pt;}
.yb1{bottom:743.912000pt;}
.y1dd{bottom:744.467667pt;}
.y1de{bottom:744.468000pt;}
.y235{bottom:744.536000pt;}
.y7e{bottom:744.901333pt;}
.y11e{bottom:746.078933pt;}
.y152{bottom:748.132400pt;}
.ydf{bottom:749.328533pt;}
.y179{bottom:753.412933pt;}
.y193{bottom:754.945800pt;}
.y50{bottom:754.948267pt;}
.y1db{bottom:757.800333pt;}
.y1dc{bottom:757.801333pt;}
.y233{bottom:757.867333pt;}
.y234{bottom:757.869333pt;}
.y7d{bottom:760.407733pt;}
.y11d{bottom:760.920267pt;}
.y11f{bottom:761.585333pt;}
.yde{bottom:764.196533pt;}
.y178{bottom:768.919333pt;}
.y1da{bottom:771.134000pt;}
.y232{bottom:771.201000pt;}
.y192{bottom:772.318400pt;}
.y4f{bottom:772.321600pt;}
.y7{bottom:773.426667pt;}
.yb0{bottom:775.784000pt;}
.y11b{bottom:775.788267pt;}
.y7c{bottom:775.914133pt;}
.y151{bottom:775.935200pt;}
.ydd{bottom:778.399733pt;}
.y177{bottom:783.120133pt;}
.y1d9{bottom:784.467667pt;}
.y231{bottom:784.534667pt;}
.y191{bottom:789.692400pt;}
.y4e{bottom:789.694933pt;}
.y11a{bottom:790.628267pt;}
.y150{bottom:790.803200pt;}
.yaf{bottom:791.292667pt;}
.y11c{bottom:791.294667pt;}
.y7b{bottom:791.420533pt;}
.ydc{bottom:792.600533pt;}
.y176{bottom:797.323333pt;}
.y1d7{bottom:797.801000pt;}
.y1d8{bottom:797.801333pt;}
.y230{bottom:797.868333pt;}
.y6{bottom:804.093333pt;}
.y118{bottom:805.496267pt;}
.y14f{bottom:805.671200pt;}
.yae{bottom:806.799067pt;}
.ydb{bottom:806.801333pt;}
.y7a{bottom:806.926933pt;}
.y190{bottom:807.066400pt;}
.y4d{bottom:807.068267pt;}
.y1d6{bottom:811.134667pt;}
.y22f{bottom:811.202000pt;}
.y175{bottom:812.829733pt;}
.y117{bottom:820.337333pt;}
.y14e{bottom:820.538667pt;}
.yda{bottom:821.002133pt;}
.y119{bottom:821.002667pt;}
.yad{bottom:822.305467pt;}
.y79{bottom:822.433333pt;}
.y18f{bottom:824.440400pt;}
.y4c{bottom:824.441600pt;}
.y22e{bottom:824.535667pt;}
.y174{bottom:827.031733pt;}
.y5{bottom:834.760000pt;}
.yd9{bottom:835.205333pt;}
.y14d{bottom:835.406667pt;}
.y1d5{bottom:836.832000pt;}
.yac{bottom:837.811867pt;}
.y22c{bottom:837.868667pt;}
.y22d{bottom:837.869333pt;}
.y78{bottom:837.939733pt;}
.y18e{bottom:841.813000pt;}
.y4b{bottom:841.814933pt;}
.y173{bottom:842.538133pt;}
.y22b{bottom:851.202333pt;}
.yab{bottom:853.318267pt;}
.y77{bottom:853.446133pt;}
.y172{bottom:856.741333pt;}
.y18d{bottom:859.187000pt;}
.y4a{bottom:859.188267pt;}
.y116{bottom:863.006933pt;}
.yd7{bottom:863.007200pt;}
.y14c{bottom:863.208267pt;}
.y22a{bottom:864.536000pt;}
.yaa{bottom:868.824667pt;}
.y76{bottom:868.952533pt;}
.y18c{bottom:876.561000pt;}
.y49{bottom:876.561600pt;}
.yd8{bottom:877.848800pt;}
.y228{bottom:877.868333pt;}
.y229{bottom:877.869333pt;}
.yd6{bottom:878.513600pt;}
.y1d4{bottom:881.299333pt;}
.ya9{bottom:884.331067pt;}
.y75{bottom:884.458933pt;}
.y115{bottom:885.209333pt;}
.y14b{bottom:885.410667pt;}
.y227{bottom:891.202000pt;}
.y48{bottom:893.934933pt;}
.y18b{bottom:893.935000pt;}
.ya8{bottom:899.837467pt;}
.y74{bottom:899.965333pt;}
.yd5{bottom:900.716000pt;}
.y3{bottom:902.236000pt;}
.y226{bottom:904.535667pt;}
.y18a{bottom:911.307600pt;}
.y47{bottom:911.308267pt;}
.ya7{bottom:915.343867pt;}
.y14a{bottom:915.545333pt;}
.y224{bottom:917.868867pt;}
.y225{bottom:917.869333pt;}
.y46{bottom:928.681600pt;}
.y73{bottom:930.477200pt;}
.ya6{bottom:930.850267pt;}
.y149{bottom:931.051733pt;}
.y223{bottom:931.202533pt;}
.y3c{bottom:933.787067pt;}
.y3b{bottom:943.453733pt;}
.y3a{bottom:953.120400pt;}
.y43{bottom:963.303067pt;}
.y31{bottom:969.475733pt;}
.y42{bottom:973.970133pt;}
.y38{bottom:979.976000pt;}
.y30{bottom:980.142800pt;}
.y2f{bottom:990.809867pt;}
.y44{bottom:990.856933pt;}
.y2{bottom:991.027867pt;}
.y41{bottom:1001.416267pt;}
.y1{bottom:1001.694933pt;}
.y39{bottom:1001.708000pt;}
.y72{bottom:1001.951467pt;}
.y45{bottom:1001.952400pt;}
.y4{bottom:1016.933733pt;}
.y40{bottom:1018.696933pt;}
.y3f{bottom:1021.729467pt;}
.h20{height:3.783854pt;}
.h10{height:23.838281pt;}
.hb{height:24.033333pt;}
.h8{height:25.364062pt;}
.hd{height:26.169271pt;}
.h2{height:28.182292pt;}
.h7{height:31.000521pt;}
.h21{height:31.786458pt;}
.h1f{height:32.162760pt;}
.hf{height:33.656250pt;}
.h9{height:34.054688pt;}
.h17{height:34.088542pt;}
.h1c{height:35.091146pt;}
.hc{height:35.227865pt;}
.h1d{height:36.093750pt;}
.h4{height:36.234375pt;}
.he{height:39.730469pt;}
.h3{height:40.104167pt;}
.ha{height:40.260417pt;}
.h16{height:40.637748pt;}
.h11{height:40.638281pt;}
.h18{height:40.638815pt;}
.h1e{height:40.882812pt;}
.h13{height:43.542013pt;}
.h1a{height:43.544679pt;}
.h12{height:43.546279pt;}
.h1b{height:43.547346pt;}
.h19{height:43.548413pt;}
.h14{height:43.549479pt;}
.h15{height:43.551613pt;}
.h6{height:44.286458pt;}
.h5{height:80.208333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:816.378667pt;}
.w1{width:816.666667pt;}
.x0{left:0.000000pt;}
.x22{left:86.929200pt;}
.x1b{left:87.945200pt;}
.x2a{left:103.937067pt;}
.x21{left:104.945333pt;}
.x2{left:134.173333pt;}
.x2c{left:151.157333pt;}
.x15{left:159.685333pt;}
.x3b{left:187.774667pt;}
.x2d{left:210.872000pt;}
.x43{left:212.765333pt;}
.x23{left:219.462667pt;}
.x40{left:234.188000pt;}
.x3e{left:242.089333pt;}
.x4{left:245.525333pt;}
.xb{left:251.061333pt;}
.xc{left:252.169333pt;}
.x2e{left:264.855733pt;}
.x1c{left:265.745333pt;}
.x24{left:270.462667pt;}
.x1a{left:278.984000pt;}
.x4a{left:279.912000pt;}
.x7{left:283.824000pt;}
.x8{left:284.932000pt;}
.x2b{left:286.476000pt;}
.xf{left:288.408000pt;}
.x10{left:299.886667pt;}
.x4b{left:305.274667pt;}
.x3c{left:307.422667pt;}
.x41{left:312.214667pt;}
.x3{left:323.149333pt;}
.x34{left:325.452000pt;}
.x16{left:326.929333pt;}
.xd{left:334.581333pt;}
.x37{left:340.576000pt;}
.x25{left:352.062667pt;}
.x2f{left:354.640933pt;}
.x3d{left:365.666667pt;}
.xe{left:367.205333pt;}
.x1d{left:373.478933pt;}
.x3a{left:381.100000pt;}
.x33{left:396.628000pt;}
.x39{left:397.701333pt;}
.x18{left:399.616000pt;}
.x48{left:400.877333pt;}
.x11{left:431.189333pt;}
.x26{left:433.385467pt;}
.x30{left:435.096133pt;}
.x13{left:446.573333pt;}
.x9{left:448.761333pt;}
.x5{left:452.557333pt;}
.x49{left:458.157333pt;}
.x1e{left:467.078933pt;}
.x27{left:484.385467pt;}
.x19{left:494.052000pt;}
.x3f{left:511.356000pt;}
.x14{left:515.905333pt;}
.x31{left:525.573733pt;}
.x1{left:527.388000pt;}
.x47{left:556.782667pt;}
.x28{left:576.119467pt;}
.x46{left:580.533333pt;}
.x44{left:582.173333pt;}
.xa{left:583.616000pt;}
.x1f{left:585.545333pt;}
.x38{left:587.457333pt;}
.x35{left:596.801333pt;}
.x32{left:616.050133pt;}
.x6{left:619.117333pt;}
.x42{left:635.104000pt;}
.x45{left:660.054667pt;}
.x17{left:666.395867pt;}
.x20{left:675.078533pt;}
.x29{left:679.559467pt;}
.x36{left:682.205333pt;}
.x12{left:708.196000pt;}
}




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