
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_6635796ffb23302b0172edff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_542dc5c7cd40609e7cd65713.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_c40372b09e2b18dca9576a9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.139000;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_c5981f7c51dcba717dbff512.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab18a2a32b6fa606f7c36ead.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968000;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_8fc552ea61febad2612dc3ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_b782ed3f1b5ecc0db69c4539.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137667;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_66f375ef4b3d8d068f16d586.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4dd65d08550ee126bd7a1003.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_28e0aefe0d3c71ed5f69b180.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.887000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_741b80d6d8de21e8adcf5826.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0564f5945ce3794f4480f47c.woff2')format("woff");}.fff{font-family:fff;line-height:0.963000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls3{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.693000px;}
.lsc{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.441000px;}
.ls8{letter-spacing:-0.378000px;}
.ls12{letter-spacing:-0.315000px;}
.ls7{letter-spacing:-0.189000px;}
.ls11{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls15{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.063000px;}
.lsa{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.315000px;}
.ls6{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.693000px;}
.ls10{letter-spacing:0.756000px;}
.ls13{letter-spacing:1.008000px;}
.lse{letter-spacing:2.142000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws46{word-spacing:-13.980000px;}
.ws47{word-spacing:-11.970000px;}
.wsad{word-spacing:-11.403000px;}
.wsac{word-spacing:-11.214000px;}
.ws56{word-spacing:-2.268000px;}
.ws94{word-spacing:-2.142000px;}
.ws2d{word-spacing:-2.040000px;}
.wsf2{word-spacing:-1.785000px;}
.wsf3{word-spacing:-1.734000px;}
.ws3d{word-spacing:-1.008000px;}
.ws101{word-spacing:-0.960000px;}
.wsc0{word-spacing:-0.882000px;}
.ws10b{word-spacing:-0.819000px;}
.wsbd{word-spacing:-0.756000px;}
.ws7b{word-spacing:-0.693000px;}
.ws7e{word-spacing:-0.567000px;}
.wsae{word-spacing:-0.504000px;}
.ws3e{word-spacing:-0.378000px;}
.ws12{word-spacing:-0.315000px;}
.ws8c{word-spacing:-0.300000px;}
.ws3f{word-spacing:-0.126000px;}
.ws78{word-spacing:-0.063000px;}
.wsff{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsed{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.wsba{word-spacing:0.126000px;}
.ws3a{word-spacing:0.189000px;}
.ws102{word-spacing:0.240000px;}
.ws11{word-spacing:0.315000px;}
.ws87{word-spacing:0.378000px;}
.ws31{word-spacing:0.441000px;}
.ws9{word-spacing:0.504000px;}
.ws43{word-spacing:0.567000px;}
.ws5f{word-spacing:0.630000px;}
.ws4a{word-spacing:0.693000px;}
.ws86{word-spacing:0.756000px;}
.ws5a{word-spacing:0.819000px;}
.ws54{word-spacing:0.945000px;}
.ws88{word-spacing:1.008000px;}
.wsc1{word-spacing:1.071000px;}
.wsfa{word-spacing:1.197000px;}
.wsb0{word-spacing:1.260000px;}
.ws4f{word-spacing:1.323000px;}
.wsc7{word-spacing:1.386000px;}
.wsea{word-spacing:1.449000px;}
.ws76{word-spacing:1.512000px;}
.wse5{word-spacing:1.575000px;}
.ws1d{word-spacing:1.638000px;}
.ws26{word-spacing:1.701000px;}
.ws3c{word-spacing:1.764000px;}
.wse3{word-spacing:1.827000px;}
.ws81{word-spacing:1.890000px;}
.ws27{word-spacing:1.980000px;}
.ws55{word-spacing:2.016000px;}
.ws82{word-spacing:2.079000px;}
.ws29{word-spacing:2.160000px;}
.ws79{word-spacing:2.394000px;}
.ws3b{word-spacing:2.457000px;}
.ws105{word-spacing:2.520000px;}
.ws49{word-spacing:2.583000px;}
.wsbe{word-spacing:2.772000px;}
.ws98{word-spacing:2.835000px;}
.wscc{word-spacing:2.898000px;}
.wsd1{word-spacing:2.961000px;}
.ws9a{word-spacing:3.024000px;}
.ws83{word-spacing:3.276000px;}
.ws28{word-spacing:3.360000px;}
.ws25{word-spacing:3.717000px;}
.wsc4{word-spacing:3.780000px;}
.ws50{word-spacing:3.843000px;}
.wsd4{word-spacing:4.032000px;}
.wsb1{word-spacing:4.095000px;}
.ws58{word-spacing:4.158000px;}
.wscb{word-spacing:4.221000px;}
.ws104{word-spacing:4.260000px;}
.wsd8{word-spacing:4.284000px;}
.wsd5{word-spacing:4.410000px;}
.wsb9{word-spacing:4.536000px;}
.ws7c{word-spacing:4.599000px;}
.wsc6{word-spacing:4.662000px;}
.ws2b{word-spacing:4.680000px;}
.ws84{word-spacing:4.725000px;}
.wsb8{word-spacing:4.788000px;}
.wsee{word-spacing:4.914000px;}
.ws7a{word-spacing:5.103000px;}
.wsc3{word-spacing:5.292000px;}
.ws13{word-spacing:5.355000px;}
.wse4{word-spacing:5.607000px;}
.ws100{word-spacing:5.640000px;}
.ws1e{word-spacing:5.670000px;}
.ws2c{word-spacing:5.700000px;}
.ws108{word-spacing:5.733000px;}
.ws6e{word-spacing:5.859000px;}
.wsc2{word-spacing:5.922000px;}
.wsa2{word-spacing:5.985000px;}
.wsa{word-spacing:6.111000px;}
.ws34{word-spacing:6.174000px;}
.wse{word-spacing:6.363000px;}
.wsb4{word-spacing:6.489000px;}
.ws2a{word-spacing:6.540000px;}
.ws103{word-spacing:6.660000px;}
.ws10{word-spacing:6.741000px;}
.ws60{word-spacing:6.930000px;}
.ws51{word-spacing:7.056000px;}
.wsb{word-spacing:7.119000px;}
.ws40{word-spacing:7.182000px;}
.ws8b{word-spacing:7.245000px;}
.ws4d{word-spacing:7.308000px;}
.wsf1{word-spacing:7.371000px;}
.ws1c{word-spacing:7.623000px;}
.wsc9{word-spacing:7.686000px;}
.wsaa{word-spacing:7.749000px;}
.wsa5{word-spacing:7.812000px;}
.ws57{word-spacing:7.875000px;}
.wse7{word-spacing:8.253000px;}
.wsfd{word-spacing:8.316000px;}
.ws61{word-spacing:8.505000px;}
.ws35{word-spacing:8.694000px;}
.wsdf{word-spacing:8.757000px;}
.ws18{word-spacing:8.820000px;}
.wse2{word-spacing:8.883000px;}
.ws109{word-spacing:8.946000px;}
.ws75{word-spacing:9.009000px;}
.ws48{word-spacing:9.135000px;}
.ws2f{word-spacing:9.198000px;}
.wsfe{word-spacing:9.420000px;}
.ws66{word-spacing:9.450000px;}
.wsca{word-spacing:9.513000px;}
.ws85{word-spacing:9.576000px;}
.ws9c{word-spacing:9.702000px;}
.ws72{word-spacing:9.828000px;}
.ws32{word-spacing:9.954000px;}
.ws42{word-spacing:10.017000px;}
.ws59{word-spacing:10.080000px;}
.ws97{word-spacing:10.143000px;}
.wsa3{word-spacing:10.206000px;}
.ws41{word-spacing:10.269000px;}
.wsfc{word-spacing:10.332000px;}
.ws96{word-spacing:10.521000px;}
.wsd{word-spacing:10.647000px;}
.ws5e{word-spacing:10.773000px;}
.ws80{word-spacing:10.899000px;}
.wse8{word-spacing:10.962000px;}
.ws30{word-spacing:11.025000px;}
.ws4e{word-spacing:11.088000px;}
.ws14{word-spacing:11.151000px;}
.ws67{word-spacing:11.214000px;}
.ws22{word-spacing:11.340000px;}
.wsc5{word-spacing:11.403000px;}
.ws73{word-spacing:11.466000px;}
.ws5d{word-spacing:11.529000px;}
.wsa8{word-spacing:11.655000px;}
.wsf6{word-spacing:11.844000px;}
.wsdc{word-spacing:11.907000px;}
.wsb7{word-spacing:12.159000px;}
.ws99{word-spacing:12.222000px;}
.ws5b{word-spacing:12.411000px;}
.ws62{word-spacing:12.537000px;}
.ws70{word-spacing:12.663000px;}
.ws1f{word-spacing:12.789000px;}
.wsfb{word-spacing:12.852000px;}
.ws10a{word-spacing:12.915000px;}
.ws1b{word-spacing:12.978000px;}
.ws89{word-spacing:13.104000px;}
.wsc{word-spacing:13.167000px;}
.ws33{word-spacing:13.608000px;}
.ws20{word-spacing:13.986000px;}
.wse6{word-spacing:14.049000px;}
.wsbf{word-spacing:14.175000px;}
.wsbc{word-spacing:14.679000px;}
.ws15{word-spacing:14.805000px;}
.wsd7{word-spacing:14.868000px;}
.ws21{word-spacing:15.309000px;}
.ws8f{word-spacing:15.687000px;}
.ws38{word-spacing:15.750000px;}
.wsd6{word-spacing:16.128000px;}
.wsa0{word-spacing:16.569000px;}
.ws69{word-spacing:16.695000px;}
.wsda{word-spacing:16.758000px;}
.ws9f{word-spacing:16.884000px;}
.ws9b{word-spacing:16.947000px;}
.ws17{word-spacing:17.010000px;}
.ws8d{word-spacing:17.073000px;}
.wsd2{word-spacing:17.136000px;}
.wseb{word-spacing:17.199000px;}
.ws8e{word-spacing:17.262000px;}
.ws53{word-spacing:17.388000px;}
.wsd9{word-spacing:17.514000px;}
.wsf8{word-spacing:17.577000px;}
.wsef{word-spacing:17.640000px;}
.ws7d{word-spacing:17.703000px;}
.wsde{word-spacing:18.018000px;}
.ws6c{word-spacing:18.144000px;}
.wsa6{word-spacing:18.207000px;}
.ws1a{word-spacing:18.648000px;}
.ws8{word-spacing:18.837000px;}
.wsbb{word-spacing:18.963000px;}
.wse9{word-spacing:19.026000px;}
.ws36{word-spacing:19.215000px;}
.wsf7{word-spacing:19.341000px;}
.ws91{word-spacing:19.593000px;}
.ws77{word-spacing:19.719000px;}
.ws39{word-spacing:19.971000px;}
.ws6d{word-spacing:20.034000px;}
.ws4c{word-spacing:20.097000px;}
.ws90{word-spacing:20.286000px;}
.ws16{word-spacing:20.475000px;}
.wsa7{word-spacing:20.664000px;}
.ws8a{word-spacing:20.916000px;}
.ws19{word-spacing:21.105000px;}
.ws107{word-spacing:21.483000px;}
.ws5c{word-spacing:21.924000px;}
.ws74{word-spacing:21.987000px;}
.ws64{word-spacing:22.050000px;}
.ws44{word-spacing:22.302000px;}
.wsf{word-spacing:22.365000px;}
.ws6a{word-spacing:22.428000px;}
.ws9d{word-spacing:22.617000px;}
.wsec{word-spacing:22.869000px;}
.wsce{word-spacing:23.247000px;}
.wse0{word-spacing:23.310000px;}
.ws52{word-spacing:23.436000px;}
.wsd3{word-spacing:23.562000px;}
.wsf9{word-spacing:23.940000px;}
.ws63{word-spacing:24.066000px;}
.wsc8{word-spacing:24.318000px;}
.ws23{word-spacing:25.452000px;}
.wsb6{word-spacing:25.767000px;}
.ws92{word-spacing:25.830000px;}
.ws95{word-spacing:26.019000px;}
.wsdb{word-spacing:26.208000px;}
.ws71{word-spacing:26.397000px;}
.wsaf{word-spacing:26.838000px;}
.ws2e{word-spacing:27.279000px;}
.ws9e{word-spacing:27.468000px;}
.wsa4{word-spacing:27.783000px;}
.ws93{word-spacing:27.972000px;}
.ws24{word-spacing:28.161000px;}
.ws68{word-spacing:29.673000px;}
.ws4b{word-spacing:29.799000px;}
.ws106{word-spacing:30.051000px;}
.wscf{word-spacing:30.366000px;}
.wsb5{word-spacing:30.429000px;}
.wsa1{word-spacing:32.382000px;}
.ws6b{word-spacing:32.823000px;}
.wsd0{word-spacing:33.453000px;}
.wsdd{word-spacing:33.894000px;}
.wsa9{word-spacing:34.398000px;}
.wscd{word-spacing:34.839000px;}
.ws65{word-spacing:35.973000px;}
.wsf0{word-spacing:36.981000px;}
.wse1{word-spacing:37.296000px;}
.wsb2{word-spacing:37.548000px;}
.ws7f{word-spacing:37.926000px;}
.wsb3{word-spacing:38.241000px;}
.ws37{word-spacing:40.698000px;}
.ws6f{word-spacing:41.391000px;}
.ws7{word-spacing:596.388600px;}
.wsf5{word-spacing:663.778800px;}
.ws6{word-spacing:1531.869600px;}
.ws5{word-spacing:6276.240000px;}
.wsab{word-spacing:6277.032000px;}
.wsf4{word-spacing:6280.056000px;}
.ws45{word-spacing:6283.224000px;}
._d{margin-left:-14.917805px;}
._1b{margin-left:-13.688100px;}
._1c{margin-left:-7.693795px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._7{margin-left:-1.039500px;}
._4{width:1.341900px;}
._5{width:2.368800px;}
._6{width:3.987900px;}
._a{width:5.537398px;}
._b{width:6.575395px;}
._c{width:7.586102px;}
._8{width:8.764202px;}
._9{width:9.815400px;}
._11{width:11.094300px;}
._1a{width:12.357859px;}
._e{width:13.694412px;}
._f{width:15.430488px;}
._10{width:16.669498px;}
._14{width:17.835300px;}
._18{width:18.953712px;}
._12{width:20.979000px;}
._13{width:24.526802px;}
._16{width:25.697700px;}
._17{width:26.932500px;}
._19{width:29.908202px;}
._15{width:679.968302px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y57{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.y56{bottom:47.834700px;}
.y145{bottom:95.892450px;}
.y172{bottom:95.929200px;}
.y54{bottom:95.944950px;}
.yb0{bottom:95.960700px;}
.y2c{bottom:95.997300px;}
.y104{bottom:96.013200px;}
.y119{bottom:96.018450px;}
.y84{bottom:96.034200px;}
.y144{bottom:116.887200px;}
.y171{bottom:116.923950px;}
.y53{bottom:116.939700px;}
.yaf{bottom:116.955450px;}
.y2b{bottom:116.992050px;}
.y103{bottom:117.007950px;}
.y118{bottom:117.013200px;}
.y83{bottom:117.028950px;}
.y196{bottom:137.852700px;}
.y143{bottom:137.881950px;}
.y170{bottom:137.918700px;}
.y52{bottom:137.934450px;}
.yae{bottom:137.950200px;}
.y2a{bottom:137.986800px;}
.y102{bottom:138.002700px;}
.y117{bottom:138.007950px;}
.y82{bottom:138.023700px;}
.y195{bottom:158.851950px;}
.y1ba{bottom:158.867700px;}
.y142{bottom:158.876700px;}
.y16f{bottom:158.913450px;}
.y51{bottom:158.929200px;}
.yad{bottom:158.944950px;}
.y29{bottom:158.981550px;}
.y101{bottom:158.997450px;}
.y81{bottom:159.018450px;}
.yda{bottom:159.149700px;}
.y194{bottom:179.851200px;}
.y1b9{bottom:179.866950px;}
.y141{bottom:179.871450px;}
.y16e{bottom:179.908200px;}
.y50{bottom:179.923950px;}
.y1ca{bottom:179.939700px;}
.y28{bottom:179.976300px;}
.y100{bottom:179.992200px;}
.y80{bottom:180.013200px;}
.yd9{bottom:180.144450px;}
.y1b8{bottom:200.866200px;}
.y16d{bottom:200.902950px;}
.y4f{bottom:200.918700px;}
.y1c9{bottom:200.934450px;}
.yac{bottom:200.950200px;}
.y27{bottom:200.971050px;}
.yff{bottom:200.986950px;}
.y7f{bottom:201.007950px;}
.yd8{bottom:201.139200px;}
.y193{bottom:221.849700px;}
.y1b7{bottom:221.865450px;}
.y140{bottom:221.876700px;}
.y16c{bottom:221.897700px;}
.y4e{bottom:221.913450px;}
.y1c8{bottom:221.929200px;}
.yab{bottom:221.944950px;}
.y26{bottom:221.965800px;}
.yfe{bottom:221.981700px;}
.y116{bottom:222.018450px;}
.y192{bottom:242.848950px;}
.y13f{bottom:242.871450px;}
.y16b{bottom:242.892450px;}
.y4d{bottom:242.908200px;}
.y1e0{bottom:242.923950px;}
.yaa{bottom:242.939700px;}
.y25{bottom:242.960550px;}
.yfd{bottom:242.976450px;}
.y7e{bottom:243.013200px;}
.yd7{bottom:243.144450px;}
.y191{bottom:263.848200px;}
.y1b6{bottom:263.863950px;}
.y13e{bottom:263.866200px;}
.y16a{bottom:263.887200px;}
.y4c{bottom:263.902950px;}
.y1df{bottom:263.918700px;}
.ya9{bottom:263.934450px;}
.y24{bottom:263.955300px;}
.yfc{bottom:263.971200px;}
.y7d{bottom:264.007950px;}
.yd6{bottom:264.139200px;}
.y13d{bottom:284.860950px;}
.y1b5{bottom:284.863200px;}
.y169{bottom:284.881950px;}
.y4b{bottom:284.897700px;}
.y1de{bottom:284.913450px;}
.ya8{bottom:284.929200px;}
.y23{bottom:284.950050px;}
.yfb{bottom:284.965950px;}
.y7c{bottom:285.002700px;}
.yd5{bottom:285.133950px;}
.y190{bottom:305.846700px;}
.y13c{bottom:305.855700px;}
.y1b4{bottom:305.862450px;}
.y168{bottom:305.876700px;}
.y4a{bottom:305.892450px;}
.y1dd{bottom:305.908200px;}
.ya7{bottom:305.923950px;}
.y22{bottom:305.944800px;}
.yfa{bottom:305.960700px;}
.y7b{bottom:305.997450px;}
.yd4{bottom:306.128700px;}
.y18f{bottom:326.845950px;}
.y13b{bottom:326.850450px;}
.y1b3{bottom:326.861700px;}
.y167{bottom:326.871450px;}
.y49{bottom:326.887200px;}
.y1dc{bottom:326.902950px;}
.ya6{bottom:326.918700px;}
.y21{bottom:326.939550px;}
.yf9{bottom:326.955450px;}
.y7a{bottom:326.992200px;}
.yd3{bottom:327.123450px;}
.y13a{bottom:347.845200px;}
.y1b2{bottom:347.860950px;}
.y166{bottom:347.866200px;}
.y48{bottom:347.881950px;}
.y1db{bottom:347.897700px;}
.ya5{bottom:347.913450px;}
.y20{bottom:347.934300px;}
.yf8{bottom:347.950200px;}
.y79{bottom:347.986950px;}
.yd2{bottom:348.118200px;}
.y7{bottom:352.018200px;}
.y139{bottom:368.839950px;}
.y18e{bottom:368.844450px;}
.y165{bottom:368.860950px;}
.y47{bottom:368.876700px;}
.y1da{bottom:368.892450px;}
.ya4{bottom:368.908200px;}
.y1f{bottom:368.929050px;}
.yf7{bottom:368.944950px;}
.y78{bottom:368.981700px;}
.yd1{bottom:369.112950px;}
.y9{bottom:381.914100px;}
.y138{bottom:389.834700px;}
.y164{bottom:389.855700px;}
.y1b1{bottom:389.859450px;}
.y1d9{bottom:389.887200px;}
.ya3{bottom:389.902950px;}
.y1e{bottom:389.923800px;}
.yf6{bottom:389.939700px;}
.y77{bottom:389.976450px;}
.yd0{bottom:390.107700px;}
.y18d{bottom:410.842950px;}
.y163{bottom:410.850450px;}
.y1b0{bottom:410.858700px;}
.y46{bottom:410.881950px;}
.ya2{bottom:410.897700px;}
.y1d{bottom:410.918550px;}
.yf5{bottom:410.934450px;}
.y76{bottom:410.971200px;}
.ycf{bottom:411.102450px;}
.y137{bottom:431.834700px;}
.y18c{bottom:431.842200px;}
.y162{bottom:431.845200px;}
.y1af{bottom:431.857950px;}
.y45{bottom:431.876700px;}
.ya1{bottom:431.892450px;}
.y1c{bottom:431.913300px;}
.yf4{bottom:431.929200px;}
.y75{bottom:431.965950px;}
.yce{bottom:432.097200px;}
.y6{bottom:445.018200px;}
.y161{bottom:452.839950px;}
.y18b{bottom:452.841450px;}
.y1ae{bottom:452.857200px;}
.y44{bottom:452.871450px;}
.ya0{bottom:452.887200px;}
.y1b{bottom:452.908050px;}
.yf3{bottom:452.923950px;}
.y74{bottom:452.960700px;}
.ycd{bottom:453.091950px;}
.y160{bottom:473.834700px;}
.y18a{bottom:473.840700px;}
.y1ad{bottom:473.856450px;}
.y43{bottom:473.866200px;}
.y9f{bottom:473.881950px;}
.y1a{bottom:473.902800px;}
.yf2{bottom:473.918700px;}
.y73{bottom:473.955450px;}
.ycc{bottom:474.086700px;}
.y136{bottom:474.160200px;}
.y42{bottom:494.860950px;}
.y9e{bottom:494.876700px;}
.y19{bottom:494.897550px;}
.yf1{bottom:494.913450px;}
.y72{bottom:494.950200px;}
.y135{bottom:495.154950px;}
.y15f{bottom:515.834700px;}
.y189{bottom:515.839200px;}
.y1ac{bottom:515.854950px;}
.y41{bottom:515.855700px;}
.y9d{bottom:515.871450px;}
.y18{bottom:515.892300px;}
.yf0{bottom:515.908200px;}
.y71{bottom:515.944950px;}
.ycb{bottom:516.091950px;}
.y134{bottom:516.149700px;}
.y188{bottom:536.838450px;}
.y40{bottom:536.850450px;}
.y1ab{bottom:536.854200px;}
.y9c{bottom:536.866200px;}
.y17{bottom:536.887050px;}
.yef{bottom:536.902950px;}
.y70{bottom:536.939700px;}
.yca{bottom:537.086700px;}
.y133{bottom:537.144450px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y3f{bottom:557.845200px;}
.y1aa{bottom:557.853450px;}
.y9b{bottom:557.860950px;}
.y16{bottom:557.881800px;}
.yee{bottom:557.897700px;}
.y6f{bottom:557.934450px;}
.yc9{bottom:558.081450px;}
.y132{bottom:558.139200px;}
.y187{bottom:578.836950px;}
.y3e{bottom:578.839950px;}
.y9a{bottom:578.855700px;}
.y15{bottom:578.876550px;}
.y6e{bottom:578.929200px;}
.y15e{bottom:579.023700px;}
.yc8{bottom:579.076200px;}
.y131{bottom:579.133950px;}
.y3d{bottom:599.834700px;}
.y186{bottom:599.836200px;}
.y99{bottom:599.850450px;}
.y1a9{bottom:599.851950px;}
.y14{bottom:599.871300px;}
.yed{bottom:599.902950px;}
.y115{bottom:599.923950px;}
.y15d{bottom:600.018450px;}
.yc7{bottom:600.070950px;}
.y130{bottom:600.128700px;}
.y185{bottom:620.835450px;}
.y98{bottom:620.845200px;}
.y1a8{bottom:620.851200px;}
.y13{bottom:620.866050px;}
.y114{bottom:620.918700px;}
.y6d{bottom:620.934450px;}
.y15c{bottom:621.013200px;}
.yc6{bottom:621.065700px;}
.y4{bottom:631.018200px;}
.y3c{bottom:641.834700px;}
.y97{bottom:641.839950px;}
.y12{bottom:641.860800px;}
.yec{bottom:641.908200px;}
.y113{bottom:641.913450px;}
.y6c{bottom:641.929200px;}
.y15b{bottom:642.007950px;}
.yc5{bottom:642.060450px;}
.y12f{bottom:642.133950px;}
.y96{bottom:662.834700px;}
.y1a7{bottom:662.849700px;}
.y1d8{bottom:662.850450px;}
.y11{bottom:662.855550px;}
.yeb{bottom:662.902950px;}
.y112{bottom:662.908200px;}
.y6b{bottom:662.923950px;}
.y15a{bottom:663.002700px;}
.yc4{bottom:663.055200px;}
.y12e{bottom:663.128700px;}
.y184{bottom:683.834700px;}
.y1d7{bottom:683.845200px;}
.y1a6{bottom:683.848950px;}
.y10{bottom:683.850300px;}
.yea{bottom:683.897700px;}
.y111{bottom:683.902950px;}
.y6a{bottom:683.918700px;}
.y159{bottom:683.997450px;}
.yc3{bottom:684.049950px;}
.y12d{bottom:684.123450px;}
.y95{bottom:704.834700px;}
.y1d6{bottom:704.839950px;}
.yf{bottom:704.845050px;}
.y3b{bottom:704.855700px;}
.ye9{bottom:704.892450px;}
.y110{bottom:704.897700px;}
.y69{bottom:704.913450px;}
.y158{bottom:704.992200px;}
.yc2{bottom:705.044700px;}
.y12c{bottom:705.118200px;}
.y94{bottom:725.834700px;}
.ye{bottom:725.839800px;}
.y1a5{bottom:725.847450px;}
.y3a{bottom:725.850450px;}
.ye8{bottom:725.887200px;}
.y10f{bottom:725.892450px;}
.y68{bottom:725.908200px;}
.y157{bottom:725.986950px;}
.yc1{bottom:726.039450px;}
.y12b{bottom:726.112950px;}
.yd{bottom:746.834550px;}
.y39{bottom:746.845200px;}
.y1a4{bottom:746.846700px;}
.ye7{bottom:746.881950px;}
.y1c7{bottom:746.884950px;}
.y10e{bottom:746.887200px;}
.y67{bottom:746.902950px;}
.y156{bottom:746.981700px;}
.y183{bottom:747.018450px;}
.yc0{bottom:747.034200px;}
.y12a{bottom:747.107700px;}
.y3{bottom:751.738650px;}
.y38{bottom:767.839950px;}
.y1a3{bottom:767.845950px;}
.ye6{bottom:767.876700px;}
.y10d{bottom:767.881950px;}
.y1c6{bottom:767.884200px;}
.y66{bottom:767.897700px;}
.y155{bottom:767.976450px;}
.y182{bottom:768.013200px;}
.ybf{bottom:768.028950px;}
.y129{bottom:768.102450px;}
.yc{bottom:788.834550px;}
.y37{bottom:788.834700px;}
.y1a2{bottom:788.845200px;}
.y10c{bottom:788.876700px;}
.y1c5{bottom:788.883450px;}
.y65{bottom:788.892450px;}
.y154{bottom:788.971200px;}
.y181{bottom:789.007950px;}
.ybe{bottom:789.023700px;}
.y128{bottom:789.097200px;}
.y93{bottom:789.112950px;}
.y2{bottom:791.931000px;}
.y1d5{bottom:809.834700px;}
.y10b{bottom:809.871450px;}
.ye5{bottom:809.881950px;}
.y64{bottom:809.887200px;}
.y153{bottom:809.965950px;}
.y180{bottom:810.002700px;}
.ybd{bottom:810.018450px;}
.y127{bottom:810.091950px;}
.y92{bottom:810.107700px;}
.y1d4{bottom:830.834700px;}
.y1a1{bottom:830.843700px;}
.y10a{bottom:830.866200px;}
.ye4{bottom:830.876700px;}
.y63{bottom:830.881950px;}
.y152{bottom:830.960700px;}
.y17f{bottom:830.997450px;}
.ybc{bottom:831.013200px;}
.y126{bottom:831.086700px;}
.y91{bottom:831.102450px;}
.y1d3{bottom:851.834700px;}
.y1a0{bottom:851.842950px;}
.y109{bottom:851.860950px;}
.ye3{bottom:851.871450px;}
.y62{bottom:851.876700px;}
.y1c4{bottom:851.881200px;}
.y151{bottom:851.955450px;}
.y17e{bottom:851.992200px;}
.ybb{bottom:852.007950px;}
.y125{bottom:852.081450px;}
.y90{bottom:852.097200px;}
.y1{bottom:859.112850px;}
.y36{bottom:872.834550px;}
.y1d2{bottom:872.834700px;}
.y19f{bottom:872.842200px;}
.ye2{bottom:872.866200px;}
.y61{bottom:872.871450px;}
.y1c3{bottom:872.880450px;}
.y150{bottom:872.950200px;}
.y17d{bottom:872.986950px;}
.yba{bottom:873.002700px;}
.y124{bottom:873.076200px;}
.y8f{bottom:873.091950px;}
.y35{bottom:893.834550px;}
.y1d1{bottom:893.834700px;}
.y19e{bottom:893.841450px;}
.ye1{bottom:893.860950px;}
.y60{bottom:893.866200px;}
.y1c2{bottom:893.879700px;}
.y14f{bottom:893.944950px;}
.y17c{bottom:893.981700px;}
.yb9{bottom:893.997450px;}
.y123{bottom:894.070950px;}
.y8e{bottom:894.086700px;}
.y34{bottom:914.834550px;}
.y1d0{bottom:914.834700px;}
.y19d{bottom:914.840700px;}
.ye0{bottom:914.855700px;}
.y5f{bottom:914.860950px;}
.y1c1{bottom:914.878950px;}
.y14e{bottom:914.939700px;}
.y17b{bottom:914.976450px;}
.yb8{bottom:914.992200px;}
.y122{bottom:915.065700px;}
.y8d{bottom:915.081450px;}
.y33{bottom:935.834550px;}
.y1cf{bottom:935.834700px;}
.y19c{bottom:935.839950px;}
.ydf{bottom:935.850450px;}
.y5e{bottom:935.855700px;}
.y108{bottom:935.871450px;}
.y14d{bottom:935.934450px;}
.y17a{bottom:935.971200px;}
.yb7{bottom:935.986950px;}
.y121{bottom:936.060450px;}
.y8c{bottom:936.076200px;}
.y32{bottom:956.834550px;}
.y1ce{bottom:956.834700px;}
.y19b{bottom:956.839200px;}
.yde{bottom:956.845200px;}
.y5d{bottom:956.850450px;}
.y107{bottom:956.866200px;}
.y1c0{bottom:956.877450px;}
.y14c{bottom:956.929200px;}
.y179{bottom:956.965950px;}
.yb6{bottom:956.981700px;}
.y120{bottom:957.055200px;}
.y8b{bottom:957.070950px;}
.y31{bottom:977.834550px;}
.y1cd{bottom:977.834700px;}
.y19a{bottom:977.838450px;}
.ydd{bottom:977.839950px;}
.y106{bottom:977.860950px;}
.y1bf{bottom:977.876700px;}
.y14b{bottom:977.923950px;}
.y178{bottom:977.960700px;}
.yb5{bottom:977.976450px;}
.y11f{bottom:978.049950px;}
.y8a{bottom:978.065700px;}
.y30{bottom:998.834550px;}
.ydc{bottom:998.834700px;}
.y5c{bottom:998.855700px;}
.y1be{bottom:998.875950px;}
.y14a{bottom:998.918700px;}
.y177{bottom:998.955450px;}
.yb4{bottom:998.971200px;}
.y11e{bottom:999.044700px;}
.y89{bottom:999.060450px;}
.ydb{bottom:1019.829450px;}
.y2f{bottom:1019.834550px;}
.y1cc{bottom:1019.834700px;}
.y199{bottom:1019.836950px;}
.y5b{bottom:1019.850450px;}
.y149{bottom:1019.913450px;}
.y176{bottom:1019.950200px;}
.yb3{bottom:1019.965950px;}
.y11d{bottom:1020.039450px;}
.y88{bottom:1020.055200px;}
.y198{bottom:1040.836200px;}
.y5a{bottom:1040.845200px;}
.y1bd{bottom:1040.874450px;}
.y148{bottom:1040.908200px;}
.y175{bottom:1040.944950px;}
.y11c{bottom:1041.034200px;}
.y87{bottom:1041.049950px;}
.y2e{bottom:1061.834700px;}
.y197{bottom:1061.835450px;}
.y59{bottom:1061.839950px;}
.y1bc{bottom:1061.873700px;}
.y147{bottom:1061.902950px;}
.y174{bottom:1061.939700px;}
.yb2{bottom:1061.971200px;}
.y11b{bottom:1062.028950px;}
.y86{bottom:1062.044700px;}
.y58{bottom:1082.834700px;}
.y1bb{bottom:1082.872950px;}
.y146{bottom:1082.897700px;}
.y173{bottom:1082.934450px;}
.yb1{bottom:1082.965950px;}
.y11a{bottom:1083.023700px;}
.y85{bottom:1083.039450px;}
.y2d{bottom:1090.573200px;}
.y1cb{bottom:1091.412900px;}
.y55{bottom:1187.834700px;}
.y105{bottom:1187.881950px;}
.yb{bottom:1188.212550px;}
.h10{height:37.740000px;}
.hd{height:43.620000px;}
.hb{height:44.400000px;}
.he{height:44.793000px;}
.hf{height:46.614000px;}
.ha{height:50.526000px;}
.h7{height:53.280000px;}
.h9{height:54.480000px;}
.hc{height:54.840000px;}
.h8{height:70.080000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x2{left:223.228350px;}
.x9{left:467.717100px;}
.x5{left:977.952750px;}
.x7{left:994.584900px;}
.xa{left:998.483850px;}
.xb{left:1074.248850px;}
.x8{left:1100.184900px;}
.x6{left:1360.629900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls3{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.616000pt;}
.lsc{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.392000pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls12{letter-spacing:-0.280000pt;}
.ls7{letter-spacing:-0.168000pt;}
.ls11{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls15{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.056000pt;}
.lsa{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.280000pt;}
.ls6{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.616000pt;}
.ls10{letter-spacing:0.672000pt;}
.ls13{letter-spacing:0.896000pt;}
.lse{letter-spacing:1.904000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws46{word-spacing:-12.426667pt;}
.ws47{word-spacing:-10.640000pt;}
.wsad{word-spacing:-10.136000pt;}
.wsac{word-spacing:-9.968000pt;}
.ws56{word-spacing:-2.016000pt;}
.ws94{word-spacing:-1.904000pt;}
.ws2d{word-spacing:-1.813333pt;}
.wsf2{word-spacing:-1.586667pt;}
.wsf3{word-spacing:-1.541333pt;}
.ws3d{word-spacing:-0.896000pt;}
.ws101{word-spacing:-0.853333pt;}
.wsc0{word-spacing:-0.784000pt;}
.ws10b{word-spacing:-0.728000pt;}
.wsbd{word-spacing:-0.672000pt;}
.ws7b{word-spacing:-0.616000pt;}
.ws7e{word-spacing:-0.504000pt;}
.wsae{word-spacing:-0.448000pt;}
.ws3e{word-spacing:-0.336000pt;}
.ws12{word-spacing:-0.280000pt;}
.ws8c{word-spacing:-0.266667pt;}
.ws3f{word-spacing:-0.112000pt;}
.ws78{word-spacing:-0.056000pt;}
.wsff{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsed{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.wsba{word-spacing:0.112000pt;}
.ws3a{word-spacing:0.168000pt;}
.ws102{word-spacing:0.213333pt;}
.ws11{word-spacing:0.280000pt;}
.ws87{word-spacing:0.336000pt;}
.ws31{word-spacing:0.392000pt;}
.ws9{word-spacing:0.448000pt;}
.ws43{word-spacing:0.504000pt;}
.ws5f{word-spacing:0.560000pt;}
.ws4a{word-spacing:0.616000pt;}
.ws86{word-spacing:0.672000pt;}
.ws5a{word-spacing:0.728000pt;}
.ws54{word-spacing:0.840000pt;}
.ws88{word-spacing:0.896000pt;}
.wsc1{word-spacing:0.952000pt;}
.wsfa{word-spacing:1.064000pt;}
.wsb0{word-spacing:1.120000pt;}
.ws4f{word-spacing:1.176000pt;}
.wsc7{word-spacing:1.232000pt;}
.wsea{word-spacing:1.288000pt;}
.ws76{word-spacing:1.344000pt;}
.wse5{word-spacing:1.400000pt;}
.ws1d{word-spacing:1.456000pt;}
.ws26{word-spacing:1.512000pt;}
.ws3c{word-spacing:1.568000pt;}
.wse3{word-spacing:1.624000pt;}
.ws81{word-spacing:1.680000pt;}
.ws27{word-spacing:1.760000pt;}
.ws55{word-spacing:1.792000pt;}
.ws82{word-spacing:1.848000pt;}
.ws29{word-spacing:1.920000pt;}
.ws79{word-spacing:2.128000pt;}
.ws3b{word-spacing:2.184000pt;}
.ws105{word-spacing:2.240000pt;}
.ws49{word-spacing:2.296000pt;}
.wsbe{word-spacing:2.464000pt;}
.ws98{word-spacing:2.520000pt;}
.wscc{word-spacing:2.576000pt;}
.wsd1{word-spacing:2.632000pt;}
.ws9a{word-spacing:2.688000pt;}
.ws83{word-spacing:2.912000pt;}
.ws28{word-spacing:2.986667pt;}
.ws25{word-spacing:3.304000pt;}
.wsc4{word-spacing:3.360000pt;}
.ws50{word-spacing:3.416000pt;}
.wsd4{word-spacing:3.584000pt;}
.wsb1{word-spacing:3.640000pt;}
.ws58{word-spacing:3.696000pt;}
.wscb{word-spacing:3.752000pt;}
.ws104{word-spacing:3.786667pt;}
.wsd8{word-spacing:3.808000pt;}
.wsd5{word-spacing:3.920000pt;}
.wsb9{word-spacing:4.032000pt;}
.ws7c{word-spacing:4.088000pt;}
.wsc6{word-spacing:4.144000pt;}
.ws2b{word-spacing:4.160000pt;}
.ws84{word-spacing:4.200000pt;}
.wsb8{word-spacing:4.256000pt;}
.wsee{word-spacing:4.368000pt;}
.ws7a{word-spacing:4.536000pt;}
.wsc3{word-spacing:4.704000pt;}
.ws13{word-spacing:4.760000pt;}
.wse4{word-spacing:4.984000pt;}
.ws100{word-spacing:5.013333pt;}
.ws1e{word-spacing:5.040000pt;}
.ws2c{word-spacing:5.066667pt;}
.ws108{word-spacing:5.096000pt;}
.ws6e{word-spacing:5.208000pt;}
.wsc2{word-spacing:5.264000pt;}
.wsa2{word-spacing:5.320000pt;}
.wsa{word-spacing:5.432000pt;}
.ws34{word-spacing:5.488000pt;}
.wse{word-spacing:5.656000pt;}
.wsb4{word-spacing:5.768000pt;}
.ws2a{word-spacing:5.813333pt;}
.ws103{word-spacing:5.920000pt;}
.ws10{word-spacing:5.992000pt;}
.ws60{word-spacing:6.160000pt;}
.ws51{word-spacing:6.272000pt;}
.wsb{word-spacing:6.328000pt;}
.ws40{word-spacing:6.384000pt;}
.ws8b{word-spacing:6.440000pt;}
.ws4d{word-spacing:6.496000pt;}
.wsf1{word-spacing:6.552000pt;}
.ws1c{word-spacing:6.776000pt;}
.wsc9{word-spacing:6.832000pt;}
.wsaa{word-spacing:6.888000pt;}
.wsa5{word-spacing:6.944000pt;}
.ws57{word-spacing:7.000000pt;}
.wse7{word-spacing:7.336000pt;}
.wsfd{word-spacing:7.392000pt;}
.ws61{word-spacing:7.560000pt;}
.ws35{word-spacing:7.728000pt;}
.wsdf{word-spacing:7.784000pt;}
.ws18{word-spacing:7.840000pt;}
.wse2{word-spacing:7.896000pt;}
.ws109{word-spacing:7.952000pt;}
.ws75{word-spacing:8.008000pt;}
.ws48{word-spacing:8.120000pt;}
.ws2f{word-spacing:8.176000pt;}
.wsfe{word-spacing:8.373333pt;}
.ws66{word-spacing:8.400000pt;}
.wsca{word-spacing:8.456000pt;}
.ws85{word-spacing:8.512000pt;}
.ws9c{word-spacing:8.624000pt;}
.ws72{word-spacing:8.736000pt;}
.ws32{word-spacing:8.848000pt;}
.ws42{word-spacing:8.904000pt;}
.ws59{word-spacing:8.960000pt;}
.ws97{word-spacing:9.016000pt;}
.wsa3{word-spacing:9.072000pt;}
.ws41{word-spacing:9.128000pt;}
.wsfc{word-spacing:9.184000pt;}
.ws96{word-spacing:9.352000pt;}
.wsd{word-spacing:9.464000pt;}
.ws5e{word-spacing:9.576000pt;}
.ws80{word-spacing:9.688000pt;}
.wse8{word-spacing:9.744000pt;}
.ws30{word-spacing:9.800000pt;}
.ws4e{word-spacing:9.856000pt;}
.ws14{word-spacing:9.912000pt;}
.ws67{word-spacing:9.968000pt;}
.ws22{word-spacing:10.080000pt;}
.wsc5{word-spacing:10.136000pt;}
.ws73{word-spacing:10.192000pt;}
.ws5d{word-spacing:10.248000pt;}
.wsa8{word-spacing:10.360000pt;}
.wsf6{word-spacing:10.528000pt;}
.wsdc{word-spacing:10.584000pt;}
.wsb7{word-spacing:10.808000pt;}
.ws99{word-spacing:10.864000pt;}
.ws5b{word-spacing:11.032000pt;}
.ws62{word-spacing:11.144000pt;}
.ws70{word-spacing:11.256000pt;}
.ws1f{word-spacing:11.368000pt;}
.wsfb{word-spacing:11.424000pt;}
.ws10a{word-spacing:11.480000pt;}
.ws1b{word-spacing:11.536000pt;}
.ws89{word-spacing:11.648000pt;}
.wsc{word-spacing:11.704000pt;}
.ws33{word-spacing:12.096000pt;}
.ws20{word-spacing:12.432000pt;}
.wse6{word-spacing:12.488000pt;}
.wsbf{word-spacing:12.600000pt;}
.wsbc{word-spacing:13.048000pt;}
.ws15{word-spacing:13.160000pt;}
.wsd7{word-spacing:13.216000pt;}
.ws21{word-spacing:13.608000pt;}
.ws8f{word-spacing:13.944000pt;}
.ws38{word-spacing:14.000000pt;}
.wsd6{word-spacing:14.336000pt;}
.wsa0{word-spacing:14.728000pt;}
.ws69{word-spacing:14.840000pt;}
.wsda{word-spacing:14.896000pt;}
.ws9f{word-spacing:15.008000pt;}
.ws9b{word-spacing:15.064000pt;}
.ws17{word-spacing:15.120000pt;}
.ws8d{word-spacing:15.176000pt;}
.wsd2{word-spacing:15.232000pt;}
.wseb{word-spacing:15.288000pt;}
.ws8e{word-spacing:15.344000pt;}
.ws53{word-spacing:15.456000pt;}
.wsd9{word-spacing:15.568000pt;}
.wsf8{word-spacing:15.624000pt;}
.wsef{word-spacing:15.680000pt;}
.ws7d{word-spacing:15.736000pt;}
.wsde{word-spacing:16.016000pt;}
.ws6c{word-spacing:16.128000pt;}
.wsa6{word-spacing:16.184000pt;}
.ws1a{word-spacing:16.576000pt;}
.ws8{word-spacing:16.744000pt;}
.wsbb{word-spacing:16.856000pt;}
.wse9{word-spacing:16.912000pt;}
.ws36{word-spacing:17.080000pt;}
.wsf7{word-spacing:17.192000pt;}
.ws91{word-spacing:17.416000pt;}
.ws77{word-spacing:17.528000pt;}
.ws39{word-spacing:17.752000pt;}
.ws6d{word-spacing:17.808000pt;}
.ws4c{word-spacing:17.864000pt;}
.ws90{word-spacing:18.032000pt;}
.ws16{word-spacing:18.200000pt;}
.wsa7{word-spacing:18.368000pt;}
.ws8a{word-spacing:18.592000pt;}
.ws19{word-spacing:18.760000pt;}
.ws107{word-spacing:19.096000pt;}
.ws5c{word-spacing:19.488000pt;}
.ws74{word-spacing:19.544000pt;}
.ws64{word-spacing:19.600000pt;}
.ws44{word-spacing:19.824000pt;}
.wsf{word-spacing:19.880000pt;}
.ws6a{word-spacing:19.936000pt;}
.ws9d{word-spacing:20.104000pt;}
.wsec{word-spacing:20.328000pt;}
.wsce{word-spacing:20.664000pt;}
.wse0{word-spacing:20.720000pt;}
.ws52{word-spacing:20.832000pt;}
.wsd3{word-spacing:20.944000pt;}
.wsf9{word-spacing:21.280000pt;}
.ws63{word-spacing:21.392000pt;}
.wsc8{word-spacing:21.616000pt;}
.ws23{word-spacing:22.624000pt;}
.wsb6{word-spacing:22.904000pt;}
.ws92{word-spacing:22.960000pt;}
.ws95{word-spacing:23.128000pt;}
.wsdb{word-spacing:23.296000pt;}
.ws71{word-spacing:23.464000pt;}
.wsaf{word-spacing:23.856000pt;}
.ws2e{word-spacing:24.248000pt;}
.ws9e{word-spacing:24.416000pt;}
.wsa4{word-spacing:24.696000pt;}
.ws93{word-spacing:24.864000pt;}
.ws24{word-spacing:25.032000pt;}
.ws68{word-spacing:26.376000pt;}
.ws4b{word-spacing:26.488000pt;}
.ws106{word-spacing:26.712000pt;}
.wscf{word-spacing:26.992000pt;}
.wsb5{word-spacing:27.048000pt;}
.wsa1{word-spacing:28.784000pt;}
.ws6b{word-spacing:29.176000pt;}
.wsd0{word-spacing:29.736000pt;}
.wsdd{word-spacing:30.128000pt;}
.wsa9{word-spacing:30.576000pt;}
.wscd{word-spacing:30.968000pt;}
.ws65{word-spacing:31.976000pt;}
.wsf0{word-spacing:32.872000pt;}
.wse1{word-spacing:33.152000pt;}
.wsb2{word-spacing:33.376000pt;}
.ws7f{word-spacing:33.712000pt;}
.wsb3{word-spacing:33.992000pt;}
.ws37{word-spacing:36.176000pt;}
.ws6f{word-spacing:36.792000pt;}
.ws7{word-spacing:530.123200pt;}
.wsf5{word-spacing:590.025600pt;}
.ws6{word-spacing:1361.661867pt;}
.ws5{word-spacing:5578.880000pt;}
.wsab{word-spacing:5579.584000pt;}
.wsf4{word-spacing:5582.272000pt;}
.ws45{word-spacing:5585.088000pt;}
._d{margin-left:-13.260271pt;}
._1b{margin-left:-12.167200pt;}
._1c{margin-left:-6.838929pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._7{margin-left:-0.924000pt;}
._4{width:1.192800pt;}
._5{width:2.105600pt;}
._6{width:3.544800pt;}
._a{width:4.922131pt;}
._b{width:5.844796pt;}
._c{width:6.743202pt;}
._8{width:7.790402pt;}
._9{width:8.724800pt;}
._11{width:9.861600pt;}
._1a{width:10.984764pt;}
._e{width:12.172811pt;}
._f{width:13.715989pt;}
._10{width:14.817331pt;}
._14{width:15.853600pt;}
._18{width:16.847744pt;}
._12{width:18.648000pt;}
._13{width:21.801602pt;}
._16{width:22.842400pt;}
._17{width:23.940000pt;}
._19{width:26.585069pt;}
._15{width:604.416269pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.y56{bottom:42.519733pt;}
.y145{bottom:85.237733pt;}
.y172{bottom:85.270400pt;}
.y54{bottom:85.284400pt;}
.yb0{bottom:85.298400pt;}
.y2c{bottom:85.330933pt;}
.y104{bottom:85.345067pt;}
.y119{bottom:85.349733pt;}
.y84{bottom:85.363733pt;}
.y144{bottom:103.899733pt;}
.y171{bottom:103.932400pt;}
.y53{bottom:103.946400pt;}
.yaf{bottom:103.960400pt;}
.y2b{bottom:103.992933pt;}
.y103{bottom:104.007067pt;}
.y118{bottom:104.011733pt;}
.y83{bottom:104.025733pt;}
.y196{bottom:122.535733pt;}
.y143{bottom:122.561733pt;}
.y170{bottom:122.594400pt;}
.y52{bottom:122.608400pt;}
.yae{bottom:122.622400pt;}
.y2a{bottom:122.654933pt;}
.y102{bottom:122.669067pt;}
.y117{bottom:122.673733pt;}
.y82{bottom:122.687733pt;}
.y195{bottom:141.201733pt;}
.y1ba{bottom:141.215733pt;}
.y142{bottom:141.223733pt;}
.y16f{bottom:141.256400pt;}
.y51{bottom:141.270400pt;}
.yad{bottom:141.284400pt;}
.y29{bottom:141.316933pt;}
.y101{bottom:141.331067pt;}
.y81{bottom:141.349733pt;}
.yda{bottom:141.466400pt;}
.y194{bottom:159.867733pt;}
.y1b9{bottom:159.881733pt;}
.y141{bottom:159.885733pt;}
.y16e{bottom:159.918400pt;}
.y50{bottom:159.932400pt;}
.y1ca{bottom:159.946400pt;}
.y28{bottom:159.978933pt;}
.y100{bottom:159.993067pt;}
.y80{bottom:160.011733pt;}
.yd9{bottom:160.128400pt;}
.y1b8{bottom:178.547733pt;}
.y16d{bottom:178.580400pt;}
.y4f{bottom:178.594400pt;}
.y1c9{bottom:178.608400pt;}
.yac{bottom:178.622400pt;}
.y27{bottom:178.640933pt;}
.yff{bottom:178.655067pt;}
.y7f{bottom:178.673733pt;}
.yd8{bottom:178.790400pt;}
.y193{bottom:197.199733pt;}
.y1b7{bottom:197.213733pt;}
.y140{bottom:197.223733pt;}
.y16c{bottom:197.242400pt;}
.y4e{bottom:197.256400pt;}
.y1c8{bottom:197.270400pt;}
.yab{bottom:197.284400pt;}
.y26{bottom:197.302933pt;}
.yfe{bottom:197.317067pt;}
.y116{bottom:197.349733pt;}
.y192{bottom:215.865733pt;}
.y13f{bottom:215.885733pt;}
.y16b{bottom:215.904400pt;}
.y4d{bottom:215.918400pt;}
.y1e0{bottom:215.932400pt;}
.yaa{bottom:215.946400pt;}
.y25{bottom:215.964933pt;}
.yfd{bottom:215.979067pt;}
.y7e{bottom:216.011733pt;}
.yd7{bottom:216.128400pt;}
.y191{bottom:234.531733pt;}
.y1b6{bottom:234.545733pt;}
.y13e{bottom:234.547733pt;}
.y16a{bottom:234.566400pt;}
.y4c{bottom:234.580400pt;}
.y1df{bottom:234.594400pt;}
.ya9{bottom:234.608400pt;}
.y24{bottom:234.626933pt;}
.yfc{bottom:234.641067pt;}
.y7d{bottom:234.673733pt;}
.yd6{bottom:234.790400pt;}
.y13d{bottom:253.209733pt;}
.y1b5{bottom:253.211733pt;}
.y169{bottom:253.228400pt;}
.y4b{bottom:253.242400pt;}
.y1de{bottom:253.256400pt;}
.ya8{bottom:253.270400pt;}
.y23{bottom:253.288933pt;}
.yfb{bottom:253.303067pt;}
.y7c{bottom:253.335733pt;}
.yd5{bottom:253.452400pt;}
.y190{bottom:271.863733pt;}
.y13c{bottom:271.871733pt;}
.y1b4{bottom:271.877733pt;}
.y168{bottom:271.890400pt;}
.y4a{bottom:271.904400pt;}
.y1dd{bottom:271.918400pt;}
.ya7{bottom:271.932400pt;}
.y22{bottom:271.950933pt;}
.yfa{bottom:271.965067pt;}
.y7b{bottom:271.997733pt;}
.yd4{bottom:272.114400pt;}
.y18f{bottom:290.529733pt;}
.y13b{bottom:290.533733pt;}
.y1b3{bottom:290.543733pt;}
.y167{bottom:290.552400pt;}
.y49{bottom:290.566400pt;}
.y1dc{bottom:290.580400pt;}
.ya6{bottom:290.594400pt;}
.y21{bottom:290.612933pt;}
.yf9{bottom:290.627067pt;}
.y7a{bottom:290.659733pt;}
.yd3{bottom:290.776400pt;}
.y13a{bottom:309.195733pt;}
.y1b2{bottom:309.209733pt;}
.y166{bottom:309.214400pt;}
.y48{bottom:309.228400pt;}
.y1db{bottom:309.242400pt;}
.ya5{bottom:309.256400pt;}
.y20{bottom:309.274933pt;}
.yf8{bottom:309.289067pt;}
.y79{bottom:309.321733pt;}
.yd2{bottom:309.438400pt;}
.y7{bottom:312.905067pt;}
.y139{bottom:327.857733pt;}
.y18e{bottom:327.861733pt;}
.y165{bottom:327.876400pt;}
.y47{bottom:327.890400pt;}
.y1da{bottom:327.904400pt;}
.ya4{bottom:327.918400pt;}
.y1f{bottom:327.936933pt;}
.yf7{bottom:327.951067pt;}
.y78{bottom:327.983733pt;}
.yd1{bottom:328.100400pt;}
.y9{bottom:339.479200pt;}
.y138{bottom:346.519733pt;}
.y164{bottom:346.538400pt;}
.y1b1{bottom:346.541733pt;}
.y1d9{bottom:346.566400pt;}
.ya3{bottom:346.580400pt;}
.y1e{bottom:346.598933pt;}
.yf6{bottom:346.613067pt;}
.y77{bottom:346.645733pt;}
.yd0{bottom:346.762400pt;}
.y18d{bottom:365.193733pt;}
.y163{bottom:365.200400pt;}
.y1b0{bottom:365.207733pt;}
.y46{bottom:365.228400pt;}
.ya2{bottom:365.242400pt;}
.y1d{bottom:365.260933pt;}
.yf5{bottom:365.275067pt;}
.y76{bottom:365.307733pt;}
.ycf{bottom:365.424400pt;}
.y137{bottom:383.853067pt;}
.y18c{bottom:383.859733pt;}
.y162{bottom:383.862400pt;}
.y1af{bottom:383.873733pt;}
.y45{bottom:383.890400pt;}
.ya1{bottom:383.904400pt;}
.y1c{bottom:383.922933pt;}
.yf4{bottom:383.937067pt;}
.y75{bottom:383.969733pt;}
.yce{bottom:384.086400pt;}
.y6{bottom:395.571733pt;}
.y161{bottom:402.524400pt;}
.y18b{bottom:402.525733pt;}
.y1ae{bottom:402.539733pt;}
.y44{bottom:402.552400pt;}
.ya0{bottom:402.566400pt;}
.y1b{bottom:402.584933pt;}
.yf3{bottom:402.599067pt;}
.y74{bottom:402.631733pt;}
.ycd{bottom:402.748400pt;}
.y160{bottom:421.186400pt;}
.y18a{bottom:421.191733pt;}
.y1ad{bottom:421.205733pt;}
.y43{bottom:421.214400pt;}
.y9f{bottom:421.228400pt;}
.y1a{bottom:421.246933pt;}
.yf2{bottom:421.261067pt;}
.y73{bottom:421.293733pt;}
.ycc{bottom:421.410400pt;}
.y136{bottom:421.475733pt;}
.y42{bottom:439.876400pt;}
.y9e{bottom:439.890400pt;}
.y19{bottom:439.908933pt;}
.yf1{bottom:439.923067pt;}
.y72{bottom:439.955733pt;}
.y135{bottom:440.137733pt;}
.y15f{bottom:458.519733pt;}
.y189{bottom:458.523733pt;}
.y1ac{bottom:458.537733pt;}
.y41{bottom:458.538400pt;}
.y9d{bottom:458.552400pt;}
.y18{bottom:458.570933pt;}
.yf0{bottom:458.585067pt;}
.y71{bottom:458.617733pt;}
.ycb{bottom:458.748400pt;}
.y134{bottom:458.799733pt;}
.y188{bottom:477.189733pt;}
.y40{bottom:477.200400pt;}
.y1ab{bottom:477.203733pt;}
.y9c{bottom:477.214400pt;}
.y17{bottom:477.232933pt;}
.yef{bottom:477.247067pt;}
.y70{bottom:477.279733pt;}
.yca{bottom:477.410400pt;}
.y133{bottom:477.461733pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y3f{bottom:495.862400pt;}
.y1aa{bottom:495.869733pt;}
.y9b{bottom:495.876400pt;}
.y16{bottom:495.894933pt;}
.yee{bottom:495.909067pt;}
.y6f{bottom:495.941733pt;}
.yc9{bottom:496.072400pt;}
.y132{bottom:496.123733pt;}
.y187{bottom:514.521733pt;}
.y3e{bottom:514.524400pt;}
.y9a{bottom:514.538400pt;}
.y15{bottom:514.556933pt;}
.y6e{bottom:514.603733pt;}
.y15e{bottom:514.687733pt;}
.yc8{bottom:514.734400pt;}
.y131{bottom:514.785733pt;}
.y3d{bottom:533.186400pt;}
.y186{bottom:533.187733pt;}
.y99{bottom:533.200400pt;}
.y1a9{bottom:533.201733pt;}
.y14{bottom:533.218933pt;}
.yed{bottom:533.247067pt;}
.y115{bottom:533.265733pt;}
.y15d{bottom:533.349733pt;}
.yc7{bottom:533.396400pt;}
.y130{bottom:533.447733pt;}
.y185{bottom:551.853733pt;}
.y98{bottom:551.862400pt;}
.y1a8{bottom:551.867733pt;}
.y13{bottom:551.880933pt;}
.y114{bottom:551.927733pt;}
.y6d{bottom:551.941733pt;}
.y15c{bottom:552.011733pt;}
.yc6{bottom:552.058400pt;}
.y4{bottom:560.905067pt;}
.y3c{bottom:570.519733pt;}
.y97{bottom:570.524400pt;}
.y12{bottom:570.542933pt;}
.yec{bottom:570.585067pt;}
.y113{bottom:570.589733pt;}
.y6c{bottom:570.603733pt;}
.y15b{bottom:570.673733pt;}
.yc5{bottom:570.720400pt;}
.y12f{bottom:570.785733pt;}
.y96{bottom:589.186400pt;}
.y1a7{bottom:589.199733pt;}
.y1d8{bottom:589.200400pt;}
.y11{bottom:589.204933pt;}
.yeb{bottom:589.247067pt;}
.y112{bottom:589.251733pt;}
.y6b{bottom:589.265733pt;}
.y15a{bottom:589.335733pt;}
.yc4{bottom:589.382400pt;}
.y12e{bottom:589.447733pt;}
.y184{bottom:607.853067pt;}
.y1d7{bottom:607.862400pt;}
.y1a6{bottom:607.865733pt;}
.y10{bottom:607.866933pt;}
.yea{bottom:607.909067pt;}
.y111{bottom:607.913733pt;}
.y6a{bottom:607.927733pt;}
.y159{bottom:607.997733pt;}
.yc3{bottom:608.044400pt;}
.y12d{bottom:608.109733pt;}
.y95{bottom:626.519733pt;}
.y1d6{bottom:626.524400pt;}
.yf{bottom:626.528933pt;}
.y3b{bottom:626.538400pt;}
.ye9{bottom:626.571067pt;}
.y110{bottom:626.575733pt;}
.y69{bottom:626.589733pt;}
.y158{bottom:626.659733pt;}
.yc2{bottom:626.706400pt;}
.y12c{bottom:626.771733pt;}
.y94{bottom:645.186400pt;}
.ye{bottom:645.190933pt;}
.y1a5{bottom:645.197733pt;}
.y3a{bottom:645.200400pt;}
.ye8{bottom:645.233067pt;}
.y10f{bottom:645.237733pt;}
.y68{bottom:645.251733pt;}
.y157{bottom:645.321733pt;}
.yc1{bottom:645.368400pt;}
.y12b{bottom:645.433733pt;}
.yd{bottom:663.852933pt;}
.y39{bottom:663.862400pt;}
.y1a4{bottom:663.863733pt;}
.ye7{bottom:663.895067pt;}
.y1c7{bottom:663.897733pt;}
.y10e{bottom:663.899733pt;}
.y67{bottom:663.913733pt;}
.y156{bottom:663.983733pt;}
.y183{bottom:664.016400pt;}
.yc0{bottom:664.030400pt;}
.y12a{bottom:664.095733pt;}
.y3{bottom:668.212133pt;}
.y38{bottom:682.524400pt;}
.y1a3{bottom:682.529733pt;}
.ye6{bottom:682.557067pt;}
.y10d{bottom:682.561733pt;}
.y1c6{bottom:682.563733pt;}
.y66{bottom:682.575733pt;}
.y155{bottom:682.645733pt;}
.y182{bottom:682.678400pt;}
.ybf{bottom:682.692400pt;}
.y129{bottom:682.757733pt;}
.yc{bottom:701.186267pt;}
.y37{bottom:701.186400pt;}
.y1a2{bottom:701.195733pt;}
.y10c{bottom:701.223733pt;}
.y1c5{bottom:701.229733pt;}
.y65{bottom:701.237733pt;}
.y154{bottom:701.307733pt;}
.y181{bottom:701.340400pt;}
.ybe{bottom:701.354400pt;}
.y128{bottom:701.419733pt;}
.y93{bottom:701.433733pt;}
.y2{bottom:703.938667pt;}
.y1d5{bottom:719.853067pt;}
.y10b{bottom:719.885733pt;}
.ye5{bottom:719.895067pt;}
.y64{bottom:719.899733pt;}
.y153{bottom:719.969733pt;}
.y180{bottom:720.002400pt;}
.ybd{bottom:720.016400pt;}
.y127{bottom:720.081733pt;}
.y92{bottom:720.095733pt;}
.y1d4{bottom:738.519733pt;}
.y1a1{bottom:738.527733pt;}
.y10a{bottom:738.547733pt;}
.ye4{bottom:738.557067pt;}
.y63{bottom:738.561733pt;}
.y152{bottom:738.631733pt;}
.y17f{bottom:738.664400pt;}
.ybc{bottom:738.678400pt;}
.y126{bottom:738.743733pt;}
.y91{bottom:738.757733pt;}
.y1d3{bottom:757.186400pt;}
.y1a0{bottom:757.193733pt;}
.y109{bottom:757.209733pt;}
.ye3{bottom:757.219067pt;}
.y62{bottom:757.223733pt;}
.y1c4{bottom:757.227733pt;}
.y151{bottom:757.293733pt;}
.y17e{bottom:757.326400pt;}
.ybb{bottom:757.340400pt;}
.y125{bottom:757.405733pt;}
.y90{bottom:757.419733pt;}
.y1{bottom:763.655867pt;}
.y36{bottom:775.852933pt;}
.y1d2{bottom:775.853067pt;}
.y19f{bottom:775.859733pt;}
.ye2{bottom:775.881067pt;}
.y61{bottom:775.885733pt;}
.y1c3{bottom:775.893733pt;}
.y150{bottom:775.955733pt;}
.y17d{bottom:775.988400pt;}
.yba{bottom:776.002400pt;}
.y124{bottom:776.067733pt;}
.y8f{bottom:776.081733pt;}
.y35{bottom:794.519600pt;}
.y1d1{bottom:794.519733pt;}
.y19e{bottom:794.525733pt;}
.ye1{bottom:794.543067pt;}
.y60{bottom:794.547733pt;}
.y1c2{bottom:794.559733pt;}
.y14f{bottom:794.617733pt;}
.y17c{bottom:794.650400pt;}
.yb9{bottom:794.664400pt;}
.y123{bottom:794.729733pt;}
.y8e{bottom:794.743733pt;}
.y34{bottom:813.186267pt;}
.y1d0{bottom:813.186400pt;}
.y19d{bottom:813.191733pt;}
.ye0{bottom:813.205067pt;}
.y5f{bottom:813.209733pt;}
.y1c1{bottom:813.225733pt;}
.y14e{bottom:813.279733pt;}
.y17b{bottom:813.312400pt;}
.yb8{bottom:813.326400pt;}
.y122{bottom:813.391733pt;}
.y8d{bottom:813.405733pt;}
.y33{bottom:831.852933pt;}
.y1cf{bottom:831.853067pt;}
.y19c{bottom:831.857733pt;}
.ydf{bottom:831.867067pt;}
.y5e{bottom:831.871733pt;}
.y108{bottom:831.885733pt;}
.y14d{bottom:831.941733pt;}
.y17a{bottom:831.974400pt;}
.yb7{bottom:831.988400pt;}
.y121{bottom:832.053733pt;}
.y8c{bottom:832.067733pt;}
.y32{bottom:850.519600pt;}
.y1ce{bottom:850.519733pt;}
.y19b{bottom:850.523733pt;}
.yde{bottom:850.529067pt;}
.y5d{bottom:850.533733pt;}
.y107{bottom:850.547733pt;}
.y1c0{bottom:850.557733pt;}
.y14c{bottom:850.603733pt;}
.y179{bottom:850.636400pt;}
.yb6{bottom:850.650400pt;}
.y120{bottom:850.715733pt;}
.y8b{bottom:850.729733pt;}
.y31{bottom:869.186267pt;}
.y1cd{bottom:869.186400pt;}
.y19a{bottom:869.189733pt;}
.ydd{bottom:869.191067pt;}
.y106{bottom:869.209733pt;}
.y1bf{bottom:869.223733pt;}
.y14b{bottom:869.265733pt;}
.y178{bottom:869.298400pt;}
.yb5{bottom:869.312400pt;}
.y11f{bottom:869.377733pt;}
.y8a{bottom:869.391733pt;}
.y30{bottom:887.852933pt;}
.ydc{bottom:887.853067pt;}
.y5c{bottom:887.871733pt;}
.y1be{bottom:887.889733pt;}
.y14a{bottom:887.927733pt;}
.y177{bottom:887.960400pt;}
.yb4{bottom:887.974400pt;}
.y11e{bottom:888.039733pt;}
.y89{bottom:888.053733pt;}
.ydb{bottom:906.515067pt;}
.y2f{bottom:906.519600pt;}
.y1cc{bottom:906.519733pt;}
.y199{bottom:906.521733pt;}
.y5b{bottom:906.533733pt;}
.y149{bottom:906.589733pt;}
.y176{bottom:906.622400pt;}
.yb3{bottom:906.636400pt;}
.y11d{bottom:906.701733pt;}
.y88{bottom:906.715733pt;}
.y198{bottom:925.187733pt;}
.y5a{bottom:925.195733pt;}
.y1bd{bottom:925.221733pt;}
.y148{bottom:925.251733pt;}
.y175{bottom:925.284400pt;}
.y11c{bottom:925.363733pt;}
.y87{bottom:925.377733pt;}
.y2e{bottom:943.853067pt;}
.y197{bottom:943.853733pt;}
.y59{bottom:943.857733pt;}
.y1bc{bottom:943.887733pt;}
.y147{bottom:943.913733pt;}
.y174{bottom:943.946400pt;}
.yb2{bottom:943.974400pt;}
.y11b{bottom:944.025733pt;}
.y86{bottom:944.039733pt;}
.y58{bottom:962.519733pt;}
.y1bb{bottom:962.553733pt;}
.y146{bottom:962.575733pt;}
.y173{bottom:962.608400pt;}
.yb1{bottom:962.636400pt;}
.y11a{bottom:962.687733pt;}
.y85{bottom:962.701733pt;}
.y2d{bottom:969.398400pt;}
.y1cb{bottom:970.144800pt;}
.y55{bottom:1055.853067pt;}
.y105{bottom:1055.895067pt;}
.yb{bottom:1056.188933pt;}
.h10{height:33.546667pt;}
.hd{height:38.773333pt;}
.hb{height:39.466667pt;}
.he{height:39.816000pt;}
.hf{height:41.434667pt;}
.ha{height:44.912000pt;}
.h7{height:47.360000pt;}
.h9{height:48.426667pt;}
.hc{height:48.746667pt;}
.h8{height:62.293333pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x2{left:198.425200pt;}
.x9{left:415.748533pt;}
.x5{left:869.291333pt;}
.x7{left:884.075467pt;}
.xa{left:887.541200pt;}
.xb{left:954.887867pt;}
.x8{left:977.942133pt;}
.x6{left:1209.448800pt;}
}




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