
    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_18cffd06ba114c8616a36c13.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8614f7548909d6ab7b265381.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4c6289afbe9992921eb004eb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_1603426e5db04b1cd0d4d3cb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.872559;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_0f4d07bd2a5e29c85742875e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8a5546e56fcd0b75c6a7abb3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_8e6d67f4f1dd133641e7232c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_18cffd06ba114c8616a36c13.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8614f7548909d6ab7b265381.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f34c381b344ea4711ab718a7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_94425f9954149e04a075ff68.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8614f7548909d6ab7b265381.woff')format("woff");}.ffd{font-family:ffd;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a85e5eb0e63389e20616176c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.891113;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_b219b3e4c1d09c6db2830f8a.woff')format("woff");}.fff{font-family:fff;line-height:0.700195;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:ff10;src:url('chunks/assets/font_57b226fd553e42d2bad0aef4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.984000px;}
.v4{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.988000px;}
.v5{vertical-align:19.979400px;}
.v1{vertical-align:35.964000px;}
.lsf{letter-spacing:-4.017000px;}
.ls4{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-1.998000px;}
.lse{letter-spacing:-1.333088px;}
.lsd{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-1.035408px;}
.ls3{letter-spacing:-0.420000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000300px;}
.ls8{letter-spacing:0.252000px;}
.ls14{letter-spacing:0.309000px;}
.ls15{letter-spacing:0.370800px;}
.ls2{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.618000px;}
.ls1{letter-spacing:1.755000px;}
.lsb{letter-spacing:1.980000px;}
.ls0{letter-spacing:2.145000px;}
.ls7{letter-spacing:2.772000px;}
.ls13{letter-spacing:10.120200px;}
.ls11{letter-spacing:19.623000px;}
.ls12{letter-spacing:19.623600px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.645000px;}
.ws12{word-spacing:-16.500000px;}
.ws170{word-spacing:-15.820800px;}
.ws16f{word-spacing:-15.759000px;}
.ws48{word-spacing:-15.450000px;}
.wsb5{word-spacing:-14.214000px;}
.ws3{word-spacing:-12.000000px;}
.ws2b{word-spacing:-11.502000px;}
.wsb4{word-spacing:-9.007350px;}
.ws50{word-spacing:-7.725000px;}
.wse1{word-spacing:-7.674262px;}
.ws14{word-spacing:-6.983400px;}
.ws173{word-spacing:-6.365400px;}
.ws12b{word-spacing:-6.241800px;}
.ws103{word-spacing:-6.180000px;}
.ws9d{word-spacing:-5.871000px;}
.ws175{word-spacing:-5.809200px;}
.wsaa{word-spacing:-5.747400px;}
.ws16e{word-spacing:-5.500200px;}
.ws10a{word-spacing:-5.129400px;}
.ws13c{word-spacing:-5.067600px;}
.ws52{word-spacing:-5.005800px;}
.ws4d{word-spacing:-4.944000px;}
.ws23{word-spacing:-4.696800px;}
.ws14a{word-spacing:-4.387800px;}
.ws16d{word-spacing:-4.264200px;}
.ws145{word-spacing:-4.202400px;}
.ws142{word-spacing:-4.140600px;}
.ws30{word-spacing:-3.955200px;}
.wsd0{word-spacing:-3.831600px;}
.ws11d{word-spacing:-3.769800px;}
.ws166{word-spacing:-3.708000px;}
.ws12f{word-spacing:-3.646200px;}
.ws10e{word-spacing:-3.584400px;}
.wsa5{word-spacing:-3.522600px;}
.ws161{word-spacing:-3.460800px;}
.ws174{word-spacing:-3.399000px;}
.ws92{word-spacing:-3.360000px;}
.ws13b{word-spacing:-3.337200px;}
.ws95{word-spacing:-3.275400px;}
.ws16c{word-spacing:-3.151800px;}
.wsb{word-spacing:-3.120000px;}
.ws15a{word-spacing:-3.028200px;}
.ws51{word-spacing:-2.966400px;}
.ws18{word-spacing:-2.842800px;}
.ws104{word-spacing:-2.781000px;}
.ws4e{word-spacing:-2.719200px;}
.ws9e{word-spacing:-2.657400px;}
.ws159{word-spacing:-2.595600px;}
.ws172{word-spacing:-2.533800px;}
.ws8e{word-spacing:-2.472000px;}
.ws10c{word-spacing:-2.410200px;}
.ws20{word-spacing:-2.348400px;}
.ws109{word-spacing:-2.286600px;}
.wsc{word-spacing:-2.280000px;}
.wsfa{word-spacing:-2.224800px;}
.wsd6{word-spacing:-2.163000px;}
.ws12d{word-spacing:-2.101200px;}
.wsfe{word-spacing:-2.039400px;}
.ws16a{word-spacing:-1.977600px;}
.ws146{word-spacing:-1.854000px;}
.ws6{word-spacing:-1.800000px;}
.ws8a{word-spacing:-1.792200px;}
.ws32{word-spacing:-1.730400px;}
.wsc4{word-spacing:-1.728000px;}
.wsb6{word-spacing:-1.668600px;}
.ws5d{word-spacing:-1.584000px;}
.wsa7{word-spacing:-1.545000px;}
.wsd8{word-spacing:-1.483200px;}
.ws10{word-spacing:-1.440000px;}
.ws13d{word-spacing:-1.386000px;}
.ws71{word-spacing:-1.359600px;}
.wsc6{word-spacing:-1.344000px;}
.ws162{word-spacing:-1.297800px;}
.ws37{word-spacing:-1.236000px;}
.wscd{word-spacing:-1.174200px;}
.wsc3{word-spacing:-1.152000px;}
.ws15d{word-spacing:-1.112400px;}
.ws121{word-spacing:-1.050600px;}
.ws108{word-spacing:-0.988800px;}
.ws155{word-spacing:-0.927000px;}
.wse{word-spacing:-0.912000px;}
.ws124{word-spacing:-0.865200px;}
.wsdf{word-spacing:-0.864000px;}
.ws148{word-spacing:-0.803400px;}
.ws79{word-spacing:-0.768000px;}
.ws26{word-spacing:-0.741600px;}
.wsdb{word-spacing:-0.679800px;}
.ws1{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.629640px;}
.wsc7{word-spacing:-0.624000px;}
.ws116{word-spacing:-0.618000px;}
.wsbe{word-spacing:-0.556200px;}
.ws157{word-spacing:-0.494400px;}
.wsa{word-spacing:-0.480000px;}
.wsba{word-spacing:-0.432600px;}
.wsf8{word-spacing:-0.384000px;}
.wsdc{word-spacing:-0.370800px;}
.ws7b{word-spacing:-0.336000px;}
.ws120{word-spacing:-0.247200px;}
.ws163{word-spacing:-0.185400px;}
.wsfc{word-spacing:-0.123600px;}
.wsc5{word-spacing:-0.096000px;}
.wsb3{word-spacing:-0.066000px;}
.ws2{word-spacing:-0.061800px;}
.ws4{word-spacing:0.000000px;}
.wsd3{word-spacing:0.123600px;}
.ws4c{word-spacing:0.185400px;}
.wse9{word-spacing:0.247200px;}
.ws62{word-spacing:0.309000px;}
.wsa1{word-spacing:0.370800px;}
.wse4{word-spacing:0.432600px;}
.ws59{word-spacing:0.494400px;}
.ws14d{word-spacing:0.556200px;}
.ws93{word-spacing:0.576000px;}
.wsad{word-spacing:0.618000px;}
.ws10f{word-spacing:0.679800px;}
.ws53{word-spacing:0.741600px;}
.ws9b{word-spacing:0.803400px;}
.ws34{word-spacing:0.865200px;}
.ws29{word-spacing:0.912000px;}
.wsb7{word-spacing:0.927000px;}
.wsf5{word-spacing:0.960000px;}
.ws13{word-spacing:0.988800px;}
.ws8c{word-spacing:1.050600px;}
.wsf4{word-spacing:1.056000px;}
.ws36{word-spacing:1.112400px;}
.wse0{word-spacing:1.152000px;}
.ws22{word-spacing:1.174200px;}
.ws5c{word-spacing:1.236000px;}
.ws82{word-spacing:1.297800px;}
.ws83{word-spacing:1.421400px;}
.ws13e{word-spacing:1.483200px;}
.ws58{word-spacing:1.545000px;}
.wsf3{word-spacing:1.584000px;}
.ws1a{word-spacing:1.606800px;}
.ws78{word-spacing:1.632000px;}
.ws101{word-spacing:1.668600px;}
.wscc{word-spacing:1.730400px;}
.ws74{word-spacing:1.792200px;}
.wsbb{word-spacing:1.854000px;}
.wsf6{word-spacing:1.872000px;}
.ws24{word-spacing:1.915800px;}
.ws5e{word-spacing:1.977600px;}
.wsca{word-spacing:2.039400px;}
.ws14b{word-spacing:2.101200px;}
.ws69{word-spacing:2.163000px;}
.wsdd{word-spacing:2.224800px;}
.ws139{word-spacing:2.286600px;}
.ws84{word-spacing:2.348400px;}
.wsf1{word-spacing:2.352000px;}
.ws35{word-spacing:2.410200px;}
.wsd7{word-spacing:2.448000px;}
.ws135{word-spacing:2.472000px;}
.wsd5{word-spacing:2.533800px;}
.ws3b{word-spacing:2.595600px;}
.ws81{word-spacing:2.657400px;}
.ws134{word-spacing:2.719200px;}
.ws27{word-spacing:2.781000px;}
.ws97{word-spacing:2.842800px;}
.ws57{word-spacing:2.904600px;}
.wse5{word-spacing:2.966400px;}
.wsc1{word-spacing:2.976000px;}
.wse8{word-spacing:3.028200px;}
.wscf{word-spacing:3.090000px;}
.ws45{word-spacing:3.151800px;}
.wsf2{word-spacing:3.168000px;}
.ws11e{word-spacing:3.213600px;}
.ws5{word-spacing:3.240000px;}
.wsd{word-spacing:3.275400px;}
.ws55{word-spacing:3.337200px;}
.ws88{word-spacing:3.399000px;}
.ws3d{word-spacing:3.460800px;}
.ws6f{word-spacing:3.584400px;}
.ws43{word-spacing:3.646200px;}
.wsbf{word-spacing:3.708000px;}
.wse7{word-spacing:3.769800px;}
.ws115{word-spacing:3.955200px;}
.ws3e{word-spacing:4.017000px;}
.wsbc{word-spacing:4.078800px;}
.wsbd{word-spacing:4.140600px;}
.ws8f{word-spacing:4.176000px;}
.wsc0{word-spacing:4.202400px;}
.ws11b{word-spacing:4.264200px;}
.ws2a{word-spacing:4.272000px;}
.ws72{word-spacing:4.326000px;}
.ws38{word-spacing:4.387800px;}
.ws49{word-spacing:4.449600px;}
.ws19{word-spacing:4.511400px;}
.wsa6{word-spacing:4.573200px;}
.ws7{word-spacing:4.620000px;}
.ws102{word-spacing:4.635000px;}
.ws119{word-spacing:4.696800px;}
.wsa4{word-spacing:4.758600px;}
.ws41{word-spacing:4.882200px;}
.ws2e{word-spacing:4.944000px;}
.ws6e{word-spacing:5.005800px;}
.wsee{word-spacing:5.040000px;}
.ws47{word-spacing:5.129400px;}
.wsf0{word-spacing:5.136000px;}
.ws128{word-spacing:5.191200px;}
.wsa3{word-spacing:5.253000px;}
.ws7c{word-spacing:5.280000px;}
.wsfb{word-spacing:5.314800px;}
.ws4a{word-spacing:5.376600px;}
.ws107{word-spacing:5.424000px;}
.ws149{word-spacing:5.438400px;}
.wsb1{word-spacing:5.500200px;}
.ws87{word-spacing:5.562000px;}
.ws77{word-spacing:5.616000px;}
.wseb{word-spacing:5.623800px;}
.ws99{word-spacing:5.685600px;}
.ws68{word-spacing:5.747400px;}
.ws6d{word-spacing:5.809200px;}
.ws90{word-spacing:5.904000px;}
.ws118{word-spacing:5.932800px;}
.ws2f{word-spacing:5.994600px;}
.ws2c{word-spacing:6.056400px;}
.ws61{word-spacing:6.118200px;}
.wsa0{word-spacing:6.180000px;}
.ws147{word-spacing:6.241800px;}
.wsde{word-spacing:6.288000px;}
.ws65{word-spacing:6.303600px;}
.ws40{word-spacing:6.365400px;}
.ws16{word-spacing:6.427200px;}
.ws33{word-spacing:6.489000px;}
.ws15{word-spacing:6.550800px;}
.ws11a{word-spacing:6.612600px;}
.ws7d{word-spacing:6.736200px;}
.ws126{word-spacing:6.798000px;}
.wsb0{word-spacing:6.859800px;}
.ws7e{word-spacing:6.921600px;}
.ws66{word-spacing:6.983400px;}
.ws28{word-spacing:6.996000px;}
.ws130{word-spacing:7.045200px;}
.ws94{word-spacing:7.056000px;}
.ws110{word-spacing:7.107000px;}
.ws70{word-spacing:7.292400px;}
.wsf9{word-spacing:7.354200px;}
.ws86{word-spacing:7.416000px;}
.ws89{word-spacing:7.477800px;}
.ws12c{word-spacing:7.539600px;}
.ws8{word-spacing:7.560000px;}
.wsa2{word-spacing:7.601400px;}
.ws143{word-spacing:7.663200px;}
.ws54{word-spacing:7.725000px;}
.ws7a{word-spacing:7.776000px;}
.ws122{word-spacing:7.848600px;}
.ws127{word-spacing:7.910400px;}
.wsec{word-spacing:8.031408px;}
.ws21{word-spacing:8.034000px;}
.ws46{word-spacing:8.095800px;}
.wscb{word-spacing:8.157600px;}
.ws12e{word-spacing:8.219400px;}
.ws31{word-spacing:8.281200px;}
.ws3a{word-spacing:8.343000px;}
.ws6b{word-spacing:8.404800px;}
.ws153{word-spacing:8.466600px;}
.ws5b{word-spacing:8.590200px;}
.wsb8{word-spacing:8.652000px;}
.wsef{word-spacing:8.688000px;}
.ws56{word-spacing:8.713800px;}
.ws3c{word-spacing:8.775600px;}
.ws2d{word-spacing:8.837400px;}
.ws132{word-spacing:8.899200px;}
.ws5a{word-spacing:8.961000px;}
.ws67{word-spacing:9.084600px;}
.ws152{word-spacing:9.146400px;}
.wse6{word-spacing:9.270000px;}
.ws7f{word-spacing:9.331800px;}
.ws63{word-spacing:9.455400px;}
.ws13a{word-spacing:9.517200px;}
.wsf7{word-spacing:9.552000px;}
.ws73{word-spacing:9.702600px;}
.ws4f{word-spacing:9.764400px;}
.wsda{word-spacing:9.826200px;}
.ws17{word-spacing:9.949800px;}
.ws14e{word-spacing:9.966000px;}
.wsea{word-spacing:10.011600px;}
.ws9c{word-spacing:10.135200px;}
.ws106{word-spacing:10.176000px;}
.ws15e{word-spacing:10.258800px;}
.ws1c{word-spacing:10.320600px;}
.ws16b{word-spacing:10.444200px;}
.wsd9{word-spacing:10.506000px;}
.ws9{word-spacing:10.560000px;}
.ws8b{word-spacing:10.567800px;}
.wsd1{word-spacing:10.629600px;}
.ws76{word-spacing:10.656000px;}
.ws42{word-spacing:10.691400px;}
.wsfd{word-spacing:10.753200px;}
.ws6c{word-spacing:10.815000px;}
.wsa8{word-spacing:10.938600px;}
.ws6a{word-spacing:11.062200px;}
.ws1e{word-spacing:11.124000px;}
.wsd2{word-spacing:11.185800px;}
.ws75{word-spacing:11.328000px;}
.ws129{word-spacing:11.371200px;}
.ws9a{word-spacing:11.433000px;}
.ws123{word-spacing:11.556600px;}
.ws9f{word-spacing:11.618400px;}
.ws112{word-spacing:11.680200px;}
.wsb9{word-spacing:11.865600px;}
.ws3f{word-spacing:11.927400px;}
.wsc2{word-spacing:12.048000px;}
.ws133{word-spacing:12.051000px;}
.ws154{word-spacing:12.112800px;}
.ws80{word-spacing:12.236400px;}
.ws1f{word-spacing:12.421800px;}
.wsd4{word-spacing:12.483600px;}
.ws176{word-spacing:12.607200px;}
.ws150{word-spacing:12.730800px;}
.ws15b{word-spacing:12.792600px;}
.ws1d{word-spacing:12.978000px;}
.ws96{word-spacing:13.163400px;}
.wse3{word-spacing:13.348800px;}
.ws85{word-spacing:13.410600px;}
.wsed{word-spacing:13.488000px;}
.wsa9{word-spacing:13.534200px;}
.wsae{word-spacing:13.596000px;}
.ws10d{word-spacing:13.657800px;}
.ws91{word-spacing:13.776000px;}
.ws15c{word-spacing:13.781400px;}
.ws11c{word-spacing:13.905000px;}
.ws169{word-spacing:13.966800px;}
.ws44{word-spacing:14.152200px;}
.ws144{word-spacing:14.214000px;}
.ws168{word-spacing:14.646600px;}
.ws11f{word-spacing:14.770200px;}
.ws60{word-spacing:14.832000px;}
.ws15f{word-spacing:14.955600px;}
.ws114{word-spacing:15.079200px;}
.ws14f{word-spacing:15.141000px;}
.ws117{word-spacing:15.326400px;}
.ws151{word-spacing:15.450000px;}
.wse2{word-spacing:15.635400px;}
.wsac{word-spacing:15.820800px;}
.wsce{word-spacing:15.944400px;}
.ws4b{word-spacing:16.315200px;}
.ws165{word-spacing:16.377000px;}
.ws167{word-spacing:16.438800px;}
.ws113{word-spacing:16.500600px;}
.ws25{word-spacing:16.933200px;}
.ws13f{word-spacing:16.995000px;}
.ws14c{word-spacing:17.365800px;}
.ws141{word-spacing:18.292800px;}
.ws131{word-spacing:19.281600px;}
.ws111{word-spacing:19.652400px;}
.ws8d{word-spacing:20.146800px;}
.ws1b{word-spacing:20.517600px;}
.ws137{word-spacing:21.321000px;}
.ws136{word-spacing:21.382800px;}
.ws100{word-spacing:21.444600px;}
.wsc9{word-spacing:21.815400px;}
.ws105{word-spacing:21.939000px;}
.wsab{word-spacing:22.309800px;}
.ws138{word-spacing:22.557000px;}
.ws12a{word-spacing:22.742400px;}
.ws10b{word-spacing:22.770000px;}
.ws156{word-spacing:23.051400px;}
.ws164{word-spacing:23.422200px;}
.wsb2{word-spacing:23.854800px;}
.wsaf{word-spacing:24.040200px;}
.ws125{word-spacing:24.102000px;}
.ws98{word-spacing:24.349200px;}
.ws177{word-spacing:24.658200px;}
.wsff{word-spacing:24.843600px;}
.ws5f{word-spacing:25.399800px;}
.ws64{word-spacing:26.635800px;}
.ws158{word-spacing:26.883000px;}
.ws140{word-spacing:28.428000px;}
.ws39{word-spacing:29.416800px;}
.ws160{word-spacing:37.698000px;}
.ws171{word-spacing:41.776800px;}
.wsc8{word-spacing:251.679000px;}
.ws11{word-spacing:257.673000px;}
._13{margin-left:-13.905000px;}
._3{margin-left:-10.746000px;}
._19{margin-left:-9.054720px;}
._9{margin-left:-7.734000px;}
._4{margin-left:-5.907600px;}
._2{margin-left:-3.952800px;}
._5{margin-left:-2.575200px;}
._0{margin-left:-1.549800px;}
._1{width:1.080000px;}
._b{width:2.972580px;}
._c{width:4.634520px;}
._f{width:5.636640px;}
._6{width:6.681600px;}
._a{width:8.596380px;}
._d{width:10.017780px;}
._10{width:11.374140px;}
._15{width:12.418860px;}
._14{width:13.663980px;}
._e{width:16.982640px;}
._11{width:18.731580px;}
._12{width:20.406360px;}
._17{width:21.776460px;}
._1b{width:25.593000px;}
._16{width:27.925560px;}
._18{width:32.593200px;}
._7{width:40.588800px;}
._8{width:41.668800px;}
._1a{width:88.330740px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:20.988000px;}
.fs8{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fsc{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs2{font-size:62.964000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y21{bottom:76.500000px;}
.yeb{bottom:76.500150px;}
.y92{bottom:79.001100px;}
.yc0{bottom:80.495850px;}
.yf4{bottom:80.496000px;}
.y169{bottom:81.628500px;}
.y192{bottom:84.673800px;}
.y151{bottom:88.856100px;}
.y12a{bottom:89.653950px;}
.ybf{bottom:89.999850px;}
.y20{bottom:90.000000px;}
.yea{bottom:90.000150px;}
.y79{bottom:90.656100px;}
.y13e{bottom:91.376100px;}
.y6e{bottom:92.636100px;}
.y109{bottom:94.213500px;}
.y91{bottom:97.541100px;}
.y168{bottom:100.168500px;}
.y191{bottom:103.213800px;}
.ybe{bottom:103.499850px;}
.y1f{bottom:103.500000px;}
.ye9{bottom:103.500150px;}
.y150{bottom:107.396100px;}
.y43{bottom:107.496000px;}
.y129{bottom:108.193800px;}
.y160{bottom:108.656100px;}
.y78{bottom:109.196100px;}
.y13d{bottom:109.916100px;}
.y194{bottom:111.161100px;}
.y6d{bottom:111.176100px;}
.y108{bottom:112.753500px;}
.y90{bottom:116.081100px;}
.ybd{bottom:116.999850px;}
.y1e{bottom:117.000000px;}
.y167{bottom:118.708500px;}
.ye8{bottom:120.996150px;}
.y190{bottom:121.753950px;}
.y14f{bottom:125.936100px;}
.y128{bottom:126.733950px;}
.y15f{bottom:127.196100px;}
.y77{bottom:127.736100px;}
.y13c{bottom:128.456100px;}
.y193{bottom:129.701100px;}
.y6c{bottom:129.716100px;}
.ybc{bottom:130.499850px;}
.y1d{bottom:130.500000px;}
.y107{bottom:131.293500px;}
.yc1{bottom:134.496000px;}
.y8f{bottom:134.621100px;}
.y166{bottom:137.248500px;}
.y18f{bottom:140.293800px;}
.y42{bottom:141.988650px;}
.ybb{bottom:143.999850px;}
.y80{bottom:144.000000px;}
.y14e{bottom:144.476100px;}
.y15e{bottom:145.736100px;}
.y76{bottom:146.276100px;}
.y13b{bottom:146.996100px;}
.y1c{bottom:147.996000px;}
.y122{bottom:148.076100px;}
.ye7{bottom:148.241100px;}
.y6b{bottom:148.256100px;}
.y106{bottom:149.833500px;}
.y8e{bottom:153.161100px;}
.y165{bottom:155.788500px;}
.yba{bottom:157.499850px;}
.y7f{bottom:157.500000px;}
.y18e{bottom:158.833950px;}
.y41{bottom:160.528650px;}
.y14d{bottom:163.016100px;}
.y127{bottom:163.813800px;}
.y15d{bottom:164.276100px;}
.y75{bottom:164.816100px;}
.y13a{bottom:165.536100px;}
.y121{bottom:166.616100px;}
.ye6{bottom:166.781100px;}
.y6a{bottom:166.796100px;}
.y105{bottom:168.373500px;}
.yb9{bottom:170.999850px;}
.y7e{bottom:171.000000px;}
.y8d{bottom:171.701100px;}
.y164{bottom:174.328500px;}
.y82{bottom:174.996000px;}
.y18d{bottom:177.373800px;}
.y40{bottom:179.068650px;}
.y14c{bottom:181.556100px;}
.y15c{bottom:182.816100px;}
.y1b{bottom:183.019200px;}
.y74{bottom:183.356100px;}
.y139{bottom:184.076100px;}
.yb8{bottom:184.499850px;}
.y7d{bottom:184.500000px;}
.y120{bottom:185.156100px;}
.ye5{bottom:185.321100px;}
.y69{bottom:185.336100px;}
.y104{bottom:186.913500px;}
.y8c{bottom:190.241100px;}
.y163{bottom:192.868500px;}
.y18c{bottom:195.913950px;}
.y3f{bottom:197.608650px;}
.yb7{bottom:197.999850px;}
.y7c{bottom:198.000000px;}
.y14b{bottom:200.096100px;}
.y15b{bottom:201.356100px;}
.y1a{bottom:201.559350px;}
.y73{bottom:201.896100px;}
.yb6{bottom:201.995850px;}
.y81{bottom:201.996000px;}
.y138{bottom:202.616100px;}
.y11f{bottom:203.696100px;}
.ye4{bottom:203.861100px;}
.y68{bottom:203.876100px;}
.y103{bottom:205.453500px;}
.y8b{bottom:208.781100px;}
.y162{bottom:211.408500px;}
.yb5{bottom:211.499850px;}
.y7b{bottom:211.500000px;}
.y18b{bottom:214.453800px;}
.y3e{bottom:216.148650px;}
.y14a{bottom:218.636100px;}
.y15a{bottom:219.896100px;}
.y72{bottom:220.436100px;}
.y137{bottom:221.156100px;}
.y126{bottom:221.953800px;}
.y11e{bottom:222.236100px;}
.ye3{bottom:222.401100px;}
.y67{bottom:222.416100px;}
.y102{bottom:223.993500px;}
.yb4{bottom:224.999850px;}
.yf3{bottom:225.000000px;}
.y8a{bottom:227.321100px;}
.y7a{bottom:228.996000px;}
.y18a{bottom:232.993950px;}
.y3d{bottom:234.688650px;}
.y19{bottom:238.099200px;}
.y159{bottom:238.436100px;}
.yb3{bottom:238.499850px;}
.yf2{bottom:238.500000px;}
.y71{bottom:238.976100px;}
.y136{bottom:239.696100px;}
.y125{bottom:240.493950px;}
.y11d{bottom:240.776100px;}
.ye2{bottom:240.941100px;}
.y66{bottom:240.956100px;}
.y89{bottom:245.861100px;}
.y189{bottom:251.533800px;}
.yb2{bottom:251.999850px;}
.y3c{bottom:253.228650px;}
.y149{bottom:255.716100px;}
.yf1{bottom:255.996000px;}
.y18{bottom:256.099200px;}
.y158{bottom:256.976100px;}
.y135{bottom:258.236100px;}
.y124{bottom:259.033800px;}
.y11c{bottom:259.316100px;}
.ye1{bottom:259.481100px;}
.y65{bottom:259.496100px;}
.y101{bottom:261.073500px;}
.y88{bottom:264.401100px;}
.yb1{bottom:265.499850px;}
.yf0{bottom:265.500000px;}
.yb0{bottom:269.495850px;}
.y188{bottom:270.073950px;}
.y3b{bottom:271.768650px;}
.y17{bottom:274.099200px;}
.y70{bottom:275.516100px;}
.y134{bottom:276.776100px;}
.y123{bottom:277.573950px;}
.y11b{bottom:277.856100px;}
.ye0{bottom:278.021100px;}
.y64{bottom:278.036100px;}
.yef{bottom:279.000000px;}
.y100{bottom:280.873500px;}
.y87{bottom:282.941100px;}
.y187{bottom:288.613800px;}
.y3a{bottom:290.308650px;}
.y16{bottom:292.099200px;}
.yee{bottom:292.500000px;}
.y157{bottom:294.056100px;}
.y6f{bottom:295.316100px;}
.yaf{bottom:296.113800px;}
.y11a{bottom:296.396100px;}
.ydf{bottom:296.561100px;}
.y63{bottom:296.576100px;}
.y86{bottom:301.481100px;}
.yed{bottom:306.000000px;}
.y186{bottom:307.153950px;}
.y39{bottom:308.848650px;}
.y15{bottom:310.099200px;}
.y156{bottom:312.596100px;}
.y133{bottom:313.856100px;}
.yae{bottom:314.653950px;}
.y119{bottom:314.936100px;}
.yde{bottom:315.101100px;}
.y62{bottom:315.116100px;}
.y85{bottom:320.021100px;}
.yec{bottom:323.496000px;}
.y185{bottom:325.693800px;}
.y38{bottom:327.388650px;}
.y14{bottom:328.099200px;}
.y155{bottom:331.136100px;}
.y132{bottom:332.396100px;}
.yad{bottom:333.193800px;}
.y118{bottom:333.476100px;}
.ydd{bottom:333.641100px;}
.y61{bottom:333.656100px;}
.yff{bottom:336.673500px;}
.y84{bottom:338.561100px;}
.y184{bottom:344.233950px;}
.y37{bottom:345.928650px;}
.y13{bottom:346.099200px;}
.y154{bottom:349.676100px;}
.y131{bottom:350.936100px;}
.yac{bottom:351.733950px;}
.y117{bottom:352.016100px;}
.ydc{bottom:352.181100px;}
.y60{bottom:352.196100px;}
.y83{bottom:357.101100px;}
.y183{bottom:362.773800px;}
.y12{bottom:364.099200px;}
.y36{bottom:364.468650px;}
.y153{bottom:368.216100px;}
.y130{bottom:369.476100px;}
.yab{bottom:370.273800px;}
.y116{bottom:370.556100px;}
.ydb{bottom:370.721100px;}
.y5f{bottom:370.736100px;}
.y182{bottom:381.313800px;}
.y11{bottom:382.099200px;}
.y35{bottom:383.008650px;}
.y12f{bottom:388.016100px;}
.yaa{bottom:388.813800px;}
.y115{bottom:389.096100px;}
.yda{bottom:389.261100px;}
.y5e{bottom:389.276100px;}
.y181{bottom:399.853800px;}
.y34{bottom:401.548650px;}
.y152{bottom:405.296100px;}
.y12e{bottom:406.556100px;}
.ya9{bottom:407.353800px;}
.y10{bottom:407.599200px;}
.y114{bottom:407.636100px;}
.yd9{bottom:407.801100px;}
.y5d{bottom:407.816100px;}
.y180{bottom:418.393800px;}
.y33{bottom:420.088650px;}
.y12d{bottom:425.096100px;}
.ya8{bottom:425.893800px;}
.y113{bottom:426.176100px;}
.yd8{bottom:426.341100px;}
.y5c{bottom:426.356100px;}
.y17f{bottom:436.933800px;}
.y32{bottom:438.628650px;}
.y12c{bottom:443.636100px;}
.ya7{bottom:444.433800px;}
.y112{bottom:444.716100px;}
.yd7{bottom:444.881100px;}
.y5b{bottom:444.896100px;}
.y17e{bottom:455.473800px;}
.y31{bottom:457.168650px;}
.y148{bottom:462.176100px;}
.yfe{bottom:462.716100px;}
.ya6{bottom:462.973800px;}
.y111{bottom:463.256100px;}
.yd6{bottom:463.421100px;}
.y5a{bottom:463.436100px;}
.yf{bottom:466.399350px;}
.y17d{bottom:474.013800px;}
.y12b{bottom:480.716100px;}
.yfd{bottom:481.256100px;}
.ya5{bottom:481.513800px;}
.y110{bottom:481.796100px;}
.yd5{bottom:481.961100px;}
.y59{bottom:481.976100px;}
.ye{bottom:487.999350px;}
.y17c{bottom:492.553950px;}
.y30{bottom:493.708650px;}
.y147{bottom:499.256100px;}
.yfc{bottom:499.796100px;}
.ya4{bottom:500.053950px;}
.y10f{bottom:500.336100px;}
.yd4{bottom:500.501100px;}
.y58{bottom:500.516100px;}
.y17b{bottom:511.093800px;}
.y146{bottom:517.796100px;}
.yfb{bottom:518.336100px;}
.ya3{bottom:518.593800px;}
.y10e{bottom:518.876100px;}
.yd3{bottom:519.041100px;}
.y57{bottom:519.056100px;}
.yd{bottom:527.951250px;}
.y17a{bottom:529.633800px;}
.y145{bottom:536.336100px;}
.yfa{bottom:536.876100px;}
.ya2{bottom:537.133800px;}
.y10d{bottom:537.416100px;}
.yd2{bottom:537.581100px;}
.y56{bottom:537.596100px;}
.y161{bottom:546.073500px;}
.y179{bottom:548.173800px;}
.y2f{bottom:549.508650px;}
.yc{bottom:553.503150px;}
.y144{bottom:554.876100px;}
.yf9{bottom:555.416100px;}
.ya1{bottom:555.673800px;}
.y10c{bottom:555.956100px;}
.yd1{bottom:556.121100px;}
.y55{bottom:556.136100px;}
.y178{bottom:566.713950px;}
.y2e{bottom:567.508650px;}
.y143{bottom:573.416100px;}
.yf8{bottom:573.956100px;}
.ya0{bottom:574.213950px;}
.y10b{bottom:574.496100px;}
.yd0{bottom:574.661100px;}
.y54{bottom:574.676100px;}
.yb{bottom:580.203150px;}
.y177{bottom:585.253950px;}
.y142{bottom:591.956100px;}
.yf7{bottom:592.496100px;}
.y9f{bottom:592.753950px;}
.ycf{bottom:593.201100px;}
.y53{bottom:593.216100px;}
.y176{bottom:603.793800px;}
.y141{bottom:610.496100px;}
.yf6{bottom:611.036100px;}
.y9e{bottom:611.293800px;}
.y10a{bottom:611.576100px;}
.yce{bottom:611.741100px;}
.y52{bottom:611.756100px;}
.y2d{bottom:621.508650px;}
.y175{bottom:622.333800px;}
.y140{bottom:629.036100px;}
.y9d{bottom:629.833800px;}
.ycd{bottom:630.281100px;}
.y51{bottom:630.296100px;}
.ya{bottom:635.207100px;}
.y174{bottom:640.873800px;}
.yf5{bottom:647.576100px;}
.y9c{bottom:648.373800px;}
.ycc{bottom:648.821100px;}
.y50{bottom:648.836100px;}
.y2c{bottom:658.588650px;}
.y173{bottom:659.413950px;}
.y9{bottom:660.759150px;}
.y13f{bottom:666.116100px;}
.y9b{bottom:666.913950px;}
.ycb{bottom:667.361100px;}
.y4f{bottom:667.376100px;}
.y2b{bottom:677.128650px;}
.y172{bottom:677.953800px;}
.y9a{bottom:685.453800px;}
.yca{bottom:685.901100px;}
.y4e{bottom:685.916100px;}
.y8{bottom:687.459150px;}
.y2a{bottom:695.668650px;}
.y171{bottom:696.493950px;}
.y16a{bottom:703.196100px;}
.y99{bottom:703.993950px;}
.yc9{bottom:704.441100px;}
.y4d{bottom:704.456100px;}
.y29{bottom:714.208650px;}
.y170{bottom:715.033800px;}
.y98{bottom:722.533800px;}
.yc8{bottom:722.981100px;}
.y4c{bottom:722.996100px;}
.y7{bottom:730.659150px;}
.y28{bottom:732.748650px;}
.y16f{bottom:733.573950px;}
.y97{bottom:741.073950px;}
.yc7{bottom:741.521100px;}
.y4b{bottom:741.536100px;}
.y27{bottom:751.288650px;}
.y16e{bottom:752.113800px;}
.y6{bottom:757.659150px;}
.y96{bottom:759.613800px;}
.yc6{bottom:760.061100px;}
.y4a{bottom:760.076100px;}
.y26{bottom:769.828650px;}
.y16d{bottom:770.653800px;}
.y95{bottom:778.153800px;}
.yc5{bottom:778.601100px;}
.y49{bottom:778.616100px;}
.y25{bottom:788.368650px;}
.y16c{bottom:789.193950px;}
.y94{bottom:796.693950px;}
.yc4{bottom:797.141100px;}
.y48{bottom:797.156100px;}
.y24{bottom:806.908650px;}
.y16b{bottom:807.733950px;}
.y5{bottom:811.659150px;}
.yc3{bottom:815.681100px;}
.y47{bottom:815.696100px;}
.y23{bottom:832.948650px;}
.y93{bottom:833.773950px;}
.yc2{bottom:834.220950px;}
.y46{bottom:834.236100px;}
.y4{bottom:838.659150px;}
.y3{bottom:865.659150px;}
.y45{bottom:893.470500px;}
.y44{bottom:905.470500px;}
.y22{bottom:906.525150px;}
.h15{height:24.554320px;}
.hc{height:26.133187px;}
.hd{height:33.351562px;}
.h2{height:36.852539px;}
.h7{height:37.098633px;}
.h9{height:41.220703px;}
.h10{height:41.660156px;}
.h16{height:41.689453px;}
.he{height:42.117188px;}
.hb{height:42.457324px;}
.ha{height:42.608203px;}
.h14{height:42.940137px;}
.h18{height:45.181641px;}
.h6{height:45.342773px;}
.h8{height:45.503906px;}
.hf{height:47.381836px;}
.h11{height:52.646484px;}
.h13{height:54.225879px;}
.h17{height:54.889746px;}
.h5{height:57.708984px;}
.h12{height:58.620117px;}
.h3{height:74.197266px;}
.h4{height:79.221006px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.x9{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.xe{left:81.569400px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.xd{left:99.163800px;}
.x3{left:106.663050px;}
.xc{left:115.275300px;}
.xb{left:220.531650px;}
.x8{left:321.574050px;}
.xf{left:341.413050px;}
.xa{left:541.723350px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v4{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.656000pt;}
.v5{vertical-align:17.759467pt;}
.v1{vertical-align:31.968000pt;}
.lsf{letter-spacing:-3.570667pt;}
.ls4{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.776000pt;}
.lse{letter-spacing:-1.184967pt;}
.lsd{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.920363pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000267pt;}
.ls8{letter-spacing:0.224000pt;}
.ls14{letter-spacing:0.274667pt;}
.ls15{letter-spacing:0.329600pt;}
.ls2{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.549333pt;}
.ls1{letter-spacing:1.560000pt;}
.lsb{letter-spacing:1.760000pt;}
.ls0{letter-spacing:1.906667pt;}
.ls7{letter-spacing:2.464000pt;}
.ls13{letter-spacing:8.995733pt;}
.ls11{letter-spacing:17.442667pt;}
.ls12{letter-spacing:17.443200pt;}
.ws0{word-spacing:-16.573333pt;}
.ws12{word-spacing:-14.666667pt;}
.ws170{word-spacing:-14.062933pt;}
.ws16f{word-spacing:-14.008000pt;}
.ws48{word-spacing:-13.733333pt;}
.wsb5{word-spacing:-12.634667pt;}
.ws3{word-spacing:-10.666667pt;}
.ws2b{word-spacing:-10.224000pt;}
.wsb4{word-spacing:-8.006533pt;}
.ws50{word-spacing:-6.866667pt;}
.wse1{word-spacing:-6.821566pt;}
.ws14{word-spacing:-6.207467pt;}
.ws173{word-spacing:-5.658133pt;}
.ws12b{word-spacing:-5.548267pt;}
.ws103{word-spacing:-5.493333pt;}
.ws9d{word-spacing:-5.218667pt;}
.ws175{word-spacing:-5.163733pt;}
.wsaa{word-spacing:-5.108800pt;}
.ws16e{word-spacing:-4.889067pt;}
.ws10a{word-spacing:-4.559467pt;}
.ws13c{word-spacing:-4.504533pt;}
.ws52{word-spacing:-4.449600pt;}
.ws4d{word-spacing:-4.394667pt;}
.ws23{word-spacing:-4.174933pt;}
.ws14a{word-spacing:-3.900267pt;}
.ws16d{word-spacing:-3.790400pt;}
.ws145{word-spacing:-3.735467pt;}
.ws142{word-spacing:-3.680533pt;}
.ws30{word-spacing:-3.515733pt;}
.wsd0{word-spacing:-3.405867pt;}
.ws11d{word-spacing:-3.350933pt;}
.ws166{word-spacing:-3.296000pt;}
.ws12f{word-spacing:-3.241067pt;}
.ws10e{word-spacing:-3.186133pt;}
.wsa5{word-spacing:-3.131200pt;}
.ws161{word-spacing:-3.076267pt;}
.ws174{word-spacing:-3.021333pt;}
.ws92{word-spacing:-2.986667pt;}
.ws13b{word-spacing:-2.966400pt;}
.ws95{word-spacing:-2.911467pt;}
.ws16c{word-spacing:-2.801600pt;}
.wsb{word-spacing:-2.773333pt;}
.ws15a{word-spacing:-2.691733pt;}
.ws51{word-spacing:-2.636800pt;}
.ws18{word-spacing:-2.526933pt;}
.ws104{word-spacing:-2.472000pt;}
.ws4e{word-spacing:-2.417067pt;}
.ws9e{word-spacing:-2.362133pt;}
.ws159{word-spacing:-2.307200pt;}
.ws172{word-spacing:-2.252267pt;}
.ws8e{word-spacing:-2.197333pt;}
.ws10c{word-spacing:-2.142400pt;}
.ws20{word-spacing:-2.087467pt;}
.ws109{word-spacing:-2.032533pt;}
.wsc{word-spacing:-2.026667pt;}
.wsfa{word-spacing:-1.977600pt;}
.wsd6{word-spacing:-1.922667pt;}
.ws12d{word-spacing:-1.867733pt;}
.wsfe{word-spacing:-1.812800pt;}
.ws16a{word-spacing:-1.757867pt;}
.ws146{word-spacing:-1.648000pt;}
.ws6{word-spacing:-1.600000pt;}
.ws8a{word-spacing:-1.593067pt;}
.ws32{word-spacing:-1.538133pt;}
.wsc4{word-spacing:-1.536000pt;}
.wsb6{word-spacing:-1.483200pt;}
.ws5d{word-spacing:-1.408000pt;}
.wsa7{word-spacing:-1.373333pt;}
.wsd8{word-spacing:-1.318400pt;}
.ws10{word-spacing:-1.280000pt;}
.ws13d{word-spacing:-1.232000pt;}
.ws71{word-spacing:-1.208533pt;}
.wsc6{word-spacing:-1.194667pt;}
.ws162{word-spacing:-1.153600pt;}
.ws37{word-spacing:-1.098667pt;}
.wscd{word-spacing:-1.043733pt;}
.wsc3{word-spacing:-1.024000pt;}
.ws15d{word-spacing:-0.988800pt;}
.ws121{word-spacing:-0.933867pt;}
.ws108{word-spacing:-0.878933pt;}
.ws155{word-spacing:-0.824000pt;}
.wse{word-spacing:-0.810667pt;}
.ws124{word-spacing:-0.769067pt;}
.wsdf{word-spacing:-0.768000pt;}
.ws148{word-spacing:-0.714133pt;}
.ws79{word-spacing:-0.682667pt;}
.ws26{word-spacing:-0.659200pt;}
.wsdb{word-spacing:-0.604267pt;}
.ws1{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.559680pt;}
.wsc7{word-spacing:-0.554667pt;}
.ws116{word-spacing:-0.549333pt;}
.wsbe{word-spacing:-0.494400pt;}
.ws157{word-spacing:-0.439467pt;}
.wsa{word-spacing:-0.426667pt;}
.wsba{word-spacing:-0.384533pt;}
.wsf8{word-spacing:-0.341333pt;}
.wsdc{word-spacing:-0.329600pt;}
.ws7b{word-spacing:-0.298667pt;}
.ws120{word-spacing:-0.219733pt;}
.ws163{word-spacing:-0.164800pt;}
.wsfc{word-spacing:-0.109867pt;}
.wsc5{word-spacing:-0.085333pt;}
.wsb3{word-spacing:-0.058667pt;}
.ws2{word-spacing:-0.054933pt;}
.ws4{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.109867pt;}
.ws4c{word-spacing:0.164800pt;}
.wse9{word-spacing:0.219733pt;}
.ws62{word-spacing:0.274667pt;}
.wsa1{word-spacing:0.329600pt;}
.wse4{word-spacing:0.384533pt;}
.ws59{word-spacing:0.439467pt;}
.ws14d{word-spacing:0.494400pt;}
.ws93{word-spacing:0.512000pt;}
.wsad{word-spacing:0.549333pt;}
.ws10f{word-spacing:0.604267pt;}
.ws53{word-spacing:0.659200pt;}
.ws9b{word-spacing:0.714133pt;}
.ws34{word-spacing:0.769067pt;}
.ws29{word-spacing:0.810667pt;}
.wsb7{word-spacing:0.824000pt;}
.wsf5{word-spacing:0.853333pt;}
.ws13{word-spacing:0.878933pt;}
.ws8c{word-spacing:0.933867pt;}
.wsf4{word-spacing:0.938667pt;}
.ws36{word-spacing:0.988800pt;}
.wse0{word-spacing:1.024000pt;}
.ws22{word-spacing:1.043733pt;}
.ws5c{word-spacing:1.098667pt;}
.ws82{word-spacing:1.153600pt;}
.ws83{word-spacing:1.263467pt;}
.ws13e{word-spacing:1.318400pt;}
.ws58{word-spacing:1.373333pt;}
.wsf3{word-spacing:1.408000pt;}
.ws1a{word-spacing:1.428267pt;}
.ws78{word-spacing:1.450667pt;}
.ws101{word-spacing:1.483200pt;}
.wscc{word-spacing:1.538133pt;}
.ws74{word-spacing:1.593067pt;}
.wsbb{word-spacing:1.648000pt;}
.wsf6{word-spacing:1.664000pt;}
.ws24{word-spacing:1.702933pt;}
.ws5e{word-spacing:1.757867pt;}
.wsca{word-spacing:1.812800pt;}
.ws14b{word-spacing:1.867733pt;}
.ws69{word-spacing:1.922667pt;}
.wsdd{word-spacing:1.977600pt;}
.ws139{word-spacing:2.032533pt;}
.ws84{word-spacing:2.087467pt;}
.wsf1{word-spacing:2.090667pt;}
.ws35{word-spacing:2.142400pt;}
.wsd7{word-spacing:2.176000pt;}
.ws135{word-spacing:2.197333pt;}
.wsd5{word-spacing:2.252267pt;}
.ws3b{word-spacing:2.307200pt;}
.ws81{word-spacing:2.362133pt;}
.ws134{word-spacing:2.417067pt;}
.ws27{word-spacing:2.472000pt;}
.ws97{word-spacing:2.526933pt;}
.ws57{word-spacing:2.581867pt;}
.wse5{word-spacing:2.636800pt;}
.wsc1{word-spacing:2.645333pt;}
.wse8{word-spacing:2.691733pt;}
.wscf{word-spacing:2.746667pt;}
.ws45{word-spacing:2.801600pt;}
.wsf2{word-spacing:2.816000pt;}
.ws11e{word-spacing:2.856533pt;}
.ws5{word-spacing:2.880000pt;}
.wsd{word-spacing:2.911467pt;}
.ws55{word-spacing:2.966400pt;}
.ws88{word-spacing:3.021333pt;}
.ws3d{word-spacing:3.076267pt;}
.ws6f{word-spacing:3.186133pt;}
.ws43{word-spacing:3.241067pt;}
.wsbf{word-spacing:3.296000pt;}
.wse7{word-spacing:3.350933pt;}
.ws115{word-spacing:3.515733pt;}
.ws3e{word-spacing:3.570667pt;}
.wsbc{word-spacing:3.625600pt;}
.wsbd{word-spacing:3.680533pt;}
.ws8f{word-spacing:3.712000pt;}
.wsc0{word-spacing:3.735467pt;}
.ws11b{word-spacing:3.790400pt;}
.ws2a{word-spacing:3.797333pt;}
.ws72{word-spacing:3.845333pt;}
.ws38{word-spacing:3.900267pt;}
.ws49{word-spacing:3.955200pt;}
.ws19{word-spacing:4.010133pt;}
.wsa6{word-spacing:4.065067pt;}
.ws7{word-spacing:4.106667pt;}
.ws102{word-spacing:4.120000pt;}
.ws119{word-spacing:4.174933pt;}
.wsa4{word-spacing:4.229867pt;}
.ws41{word-spacing:4.339733pt;}
.ws2e{word-spacing:4.394667pt;}
.ws6e{word-spacing:4.449600pt;}
.wsee{word-spacing:4.480000pt;}
.ws47{word-spacing:4.559467pt;}
.wsf0{word-spacing:4.565333pt;}
.ws128{word-spacing:4.614400pt;}
.wsa3{word-spacing:4.669333pt;}
.ws7c{word-spacing:4.693333pt;}
.wsfb{word-spacing:4.724267pt;}
.ws4a{word-spacing:4.779200pt;}
.ws107{word-spacing:4.821333pt;}
.ws149{word-spacing:4.834133pt;}
.wsb1{word-spacing:4.889067pt;}
.ws87{word-spacing:4.944000pt;}
.ws77{word-spacing:4.992000pt;}
.wseb{word-spacing:4.998933pt;}
.ws99{word-spacing:5.053867pt;}
.ws68{word-spacing:5.108800pt;}
.ws6d{word-spacing:5.163733pt;}
.ws90{word-spacing:5.248000pt;}
.ws118{word-spacing:5.273600pt;}
.ws2f{word-spacing:5.328533pt;}
.ws2c{word-spacing:5.383467pt;}
.ws61{word-spacing:5.438400pt;}
.wsa0{word-spacing:5.493333pt;}
.ws147{word-spacing:5.548267pt;}
.wsde{word-spacing:5.589333pt;}
.ws65{word-spacing:5.603200pt;}
.ws40{word-spacing:5.658133pt;}
.ws16{word-spacing:5.713067pt;}
.ws33{word-spacing:5.768000pt;}
.ws15{word-spacing:5.822933pt;}
.ws11a{word-spacing:5.877867pt;}
.ws7d{word-spacing:5.987733pt;}
.ws126{word-spacing:6.042667pt;}
.wsb0{word-spacing:6.097600pt;}
.ws7e{word-spacing:6.152533pt;}
.ws66{word-spacing:6.207467pt;}
.ws28{word-spacing:6.218667pt;}
.ws130{word-spacing:6.262400pt;}
.ws94{word-spacing:6.272000pt;}
.ws110{word-spacing:6.317333pt;}
.ws70{word-spacing:6.482133pt;}
.wsf9{word-spacing:6.537067pt;}
.ws86{word-spacing:6.592000pt;}
.ws89{word-spacing:6.646933pt;}
.ws12c{word-spacing:6.701867pt;}
.ws8{word-spacing:6.720000pt;}
.wsa2{word-spacing:6.756800pt;}
.ws143{word-spacing:6.811733pt;}
.ws54{word-spacing:6.866667pt;}
.ws7a{word-spacing:6.912000pt;}
.ws122{word-spacing:6.976533pt;}
.ws127{word-spacing:7.031467pt;}
.wsec{word-spacing:7.139029pt;}
.ws21{word-spacing:7.141333pt;}
.ws46{word-spacing:7.196267pt;}
.wscb{word-spacing:7.251200pt;}
.ws12e{word-spacing:7.306133pt;}
.ws31{word-spacing:7.361067pt;}
.ws3a{word-spacing:7.416000pt;}
.ws6b{word-spacing:7.470933pt;}
.ws153{word-spacing:7.525867pt;}
.ws5b{word-spacing:7.635733pt;}
.wsb8{word-spacing:7.690667pt;}
.wsef{word-spacing:7.722667pt;}
.ws56{word-spacing:7.745600pt;}
.ws3c{word-spacing:7.800533pt;}
.ws2d{word-spacing:7.855467pt;}
.ws132{word-spacing:7.910400pt;}
.ws5a{word-spacing:7.965333pt;}
.ws67{word-spacing:8.075200pt;}
.ws152{word-spacing:8.130133pt;}
.wse6{word-spacing:8.240000pt;}
.ws7f{word-spacing:8.294933pt;}
.ws63{word-spacing:8.404800pt;}
.ws13a{word-spacing:8.459733pt;}
.wsf7{word-spacing:8.490667pt;}
.ws73{word-spacing:8.624533pt;}
.ws4f{word-spacing:8.679467pt;}
.wsda{word-spacing:8.734400pt;}
.ws17{word-spacing:8.844267pt;}
.ws14e{word-spacing:8.858667pt;}
.wsea{word-spacing:8.899200pt;}
.ws9c{word-spacing:9.009067pt;}
.ws106{word-spacing:9.045333pt;}
.ws15e{word-spacing:9.118933pt;}
.ws1c{word-spacing:9.173867pt;}
.ws16b{word-spacing:9.283733pt;}
.wsd9{word-spacing:9.338667pt;}
.ws9{word-spacing:9.386667pt;}
.ws8b{word-spacing:9.393600pt;}
.wsd1{word-spacing:9.448533pt;}
.ws76{word-spacing:9.472000pt;}
.ws42{word-spacing:9.503467pt;}
.wsfd{word-spacing:9.558400pt;}
.ws6c{word-spacing:9.613333pt;}
.wsa8{word-spacing:9.723200pt;}
.ws6a{word-spacing:9.833067pt;}
.ws1e{word-spacing:9.888000pt;}
.wsd2{word-spacing:9.942933pt;}
.ws75{word-spacing:10.069333pt;}
.ws129{word-spacing:10.107733pt;}
.ws9a{word-spacing:10.162667pt;}
.ws123{word-spacing:10.272533pt;}
.ws9f{word-spacing:10.327467pt;}
.ws112{word-spacing:10.382400pt;}
.wsb9{word-spacing:10.547200pt;}
.ws3f{word-spacing:10.602133pt;}
.wsc2{word-spacing:10.709333pt;}
.ws133{word-spacing:10.712000pt;}
.ws154{word-spacing:10.766933pt;}
.ws80{word-spacing:10.876800pt;}
.ws1f{word-spacing:11.041600pt;}
.wsd4{word-spacing:11.096533pt;}
.ws176{word-spacing:11.206400pt;}
.ws150{word-spacing:11.316267pt;}
.ws15b{word-spacing:11.371200pt;}
.ws1d{word-spacing:11.536000pt;}
.ws96{word-spacing:11.700800pt;}
.wse3{word-spacing:11.865600pt;}
.ws85{word-spacing:11.920533pt;}
.wsed{word-spacing:11.989333pt;}
.wsa9{word-spacing:12.030400pt;}
.wsae{word-spacing:12.085333pt;}
.ws10d{word-spacing:12.140267pt;}
.ws91{word-spacing:12.245333pt;}
.ws15c{word-spacing:12.250133pt;}
.ws11c{word-spacing:12.360000pt;}
.ws169{word-spacing:12.414933pt;}
.ws44{word-spacing:12.579733pt;}
.ws144{word-spacing:12.634667pt;}
.ws168{word-spacing:13.019200pt;}
.ws11f{word-spacing:13.129067pt;}
.ws60{word-spacing:13.184000pt;}
.ws15f{word-spacing:13.293867pt;}
.ws114{word-spacing:13.403733pt;}
.ws14f{word-spacing:13.458667pt;}
.ws117{word-spacing:13.623467pt;}
.ws151{word-spacing:13.733333pt;}
.wse2{word-spacing:13.898133pt;}
.wsac{word-spacing:14.062933pt;}
.wsce{word-spacing:14.172800pt;}
.ws4b{word-spacing:14.502400pt;}
.ws165{word-spacing:14.557333pt;}
.ws167{word-spacing:14.612267pt;}
.ws113{word-spacing:14.667200pt;}
.ws25{word-spacing:15.051733pt;}
.ws13f{word-spacing:15.106667pt;}
.ws14c{word-spacing:15.436267pt;}
.ws141{word-spacing:16.260267pt;}
.ws131{word-spacing:17.139200pt;}
.ws111{word-spacing:17.468800pt;}
.ws8d{word-spacing:17.908267pt;}
.ws1b{word-spacing:18.237867pt;}
.ws137{word-spacing:18.952000pt;}
.ws136{word-spacing:19.006933pt;}
.ws100{word-spacing:19.061867pt;}
.wsc9{word-spacing:19.391467pt;}
.ws105{word-spacing:19.501333pt;}
.wsab{word-spacing:19.830933pt;}
.ws138{word-spacing:20.050667pt;}
.ws12a{word-spacing:20.215467pt;}
.ws10b{word-spacing:20.240000pt;}
.ws156{word-spacing:20.490133pt;}
.ws164{word-spacing:20.819733pt;}
.wsb2{word-spacing:21.204267pt;}
.wsaf{word-spacing:21.369067pt;}
.ws125{word-spacing:21.424000pt;}
.ws98{word-spacing:21.643733pt;}
.ws177{word-spacing:21.918400pt;}
.wsff{word-spacing:22.083200pt;}
.ws5f{word-spacing:22.577600pt;}
.ws64{word-spacing:23.676267pt;}
.ws158{word-spacing:23.896000pt;}
.ws140{word-spacing:25.269333pt;}
.ws39{word-spacing:26.148267pt;}
.ws160{word-spacing:33.509333pt;}
.ws171{word-spacing:37.134933pt;}
.wsc8{word-spacing:223.714667pt;}
.ws11{word-spacing:229.042667pt;}
._13{margin-left:-12.360000pt;}
._3{margin-left:-9.552000pt;}
._19{margin-left:-8.048640pt;}
._9{margin-left:-6.874667pt;}
._4{margin-left:-5.251200pt;}
._2{margin-left:-3.513600pt;}
._5{margin-left:-2.289067pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.960000pt;}
._b{width:2.642293pt;}
._c{width:4.119573pt;}
._f{width:5.010347pt;}
._6{width:5.939200pt;}
._a{width:7.641227pt;}
._d{width:8.904693pt;}
._10{width:10.110347pt;}
._15{width:11.038987pt;}
._14{width:12.145760pt;}
._e{width:15.095680pt;}
._11{width:16.650293pt;}
._12{width:18.138987pt;}
._17{width:19.356853pt;}
._1b{width:22.749333pt;}
._16{width:24.822720pt;}
._18{width:28.971733pt;}
._7{width:36.078933pt;}
._8{width:37.038933pt;}
._1a{width:78.516213pt;}
.fsa{font-size:18.656000pt;}
.fs8{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fsc{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs2{font-size:55.968000pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y21{bottom:68.000000pt;}
.yeb{bottom:68.000133pt;}
.y92{bottom:70.223200pt;}
.yc0{bottom:71.551867pt;}
.yf4{bottom:71.552000pt;}
.y169{bottom:72.558667pt;}
.y192{bottom:75.265600pt;}
.y151{bottom:78.983200pt;}
.y12a{bottom:79.692400pt;}
.ybf{bottom:79.999867pt;}
.y20{bottom:80.000000pt;}
.yea{bottom:80.000133pt;}
.y79{bottom:80.583200pt;}
.y13e{bottom:81.223200pt;}
.y6e{bottom:82.343200pt;}
.y109{bottom:83.745333pt;}
.y91{bottom:86.703200pt;}
.y168{bottom:89.038667pt;}
.y191{bottom:91.745600pt;}
.ybe{bottom:91.999867pt;}
.y1f{bottom:92.000000pt;}
.ye9{bottom:92.000133pt;}
.y150{bottom:95.463200pt;}
.y43{bottom:95.552000pt;}
.y129{bottom:96.172267pt;}
.y160{bottom:96.583200pt;}
.y78{bottom:97.063200pt;}
.y13d{bottom:97.703200pt;}
.y194{bottom:98.809867pt;}
.y6d{bottom:98.823200pt;}
.y108{bottom:100.225333pt;}
.y90{bottom:103.183200pt;}
.ybd{bottom:103.999867pt;}
.y1e{bottom:104.000000pt;}
.y167{bottom:105.518667pt;}
.ye8{bottom:107.552133pt;}
.y190{bottom:108.225733pt;}
.y14f{bottom:111.943200pt;}
.y128{bottom:112.652400pt;}
.y15f{bottom:113.063200pt;}
.y77{bottom:113.543200pt;}
.y13c{bottom:114.183200pt;}
.y193{bottom:115.289867pt;}
.y6c{bottom:115.303200pt;}
.ybc{bottom:115.999867pt;}
.y1d{bottom:116.000000pt;}
.y107{bottom:116.705333pt;}
.yc1{bottom:119.552000pt;}
.y8f{bottom:119.663200pt;}
.y166{bottom:121.998667pt;}
.y18f{bottom:124.705600pt;}
.y42{bottom:126.212133pt;}
.ybb{bottom:127.999867pt;}
.y80{bottom:128.000000pt;}
.y14e{bottom:128.423200pt;}
.y15e{bottom:129.543200pt;}
.y76{bottom:130.023200pt;}
.y13b{bottom:130.663200pt;}
.y1c{bottom:131.552000pt;}
.y122{bottom:131.623200pt;}
.ye7{bottom:131.769867pt;}
.y6b{bottom:131.783200pt;}
.y106{bottom:133.185333pt;}
.y8e{bottom:136.143200pt;}
.y165{bottom:138.478667pt;}
.yba{bottom:139.999867pt;}
.y7f{bottom:140.000000pt;}
.y18e{bottom:141.185733pt;}
.y41{bottom:142.692133pt;}
.y14d{bottom:144.903200pt;}
.y127{bottom:145.612267pt;}
.y15d{bottom:146.023200pt;}
.y75{bottom:146.503200pt;}
.y13a{bottom:147.143200pt;}
.y121{bottom:148.103200pt;}
.ye6{bottom:148.249867pt;}
.y6a{bottom:148.263200pt;}
.y105{bottom:149.665333pt;}
.yb9{bottom:151.999867pt;}
.y7e{bottom:152.000000pt;}
.y8d{bottom:152.623200pt;}
.y164{bottom:154.958667pt;}
.y82{bottom:155.552000pt;}
.y18d{bottom:157.665600pt;}
.y40{bottom:159.172133pt;}
.y14c{bottom:161.383200pt;}
.y15c{bottom:162.503200pt;}
.y1b{bottom:162.683733pt;}
.y74{bottom:162.983200pt;}
.y139{bottom:163.623200pt;}
.yb8{bottom:163.999867pt;}
.y7d{bottom:164.000000pt;}
.y120{bottom:164.583200pt;}
.ye5{bottom:164.729867pt;}
.y69{bottom:164.743200pt;}
.y104{bottom:166.145333pt;}
.y8c{bottom:169.103200pt;}
.y163{bottom:171.438667pt;}
.y18c{bottom:174.145733pt;}
.y3f{bottom:175.652133pt;}
.yb7{bottom:175.999867pt;}
.y7c{bottom:176.000000pt;}
.y14b{bottom:177.863200pt;}
.y15b{bottom:178.983200pt;}
.y1a{bottom:179.163867pt;}
.y73{bottom:179.463200pt;}
.yb6{bottom:179.551867pt;}
.y81{bottom:179.552000pt;}
.y138{bottom:180.103200pt;}
.y11f{bottom:181.063200pt;}
.ye4{bottom:181.209867pt;}
.y68{bottom:181.223200pt;}
.y103{bottom:182.625333pt;}
.y8b{bottom:185.583200pt;}
.y162{bottom:187.918667pt;}
.yb5{bottom:187.999867pt;}
.y7b{bottom:188.000000pt;}
.y18b{bottom:190.625600pt;}
.y3e{bottom:192.132133pt;}
.y14a{bottom:194.343200pt;}
.y15a{bottom:195.463200pt;}
.y72{bottom:195.943200pt;}
.y137{bottom:196.583200pt;}
.y126{bottom:197.292267pt;}
.y11e{bottom:197.543200pt;}
.ye3{bottom:197.689867pt;}
.y67{bottom:197.703200pt;}
.y102{bottom:199.105333pt;}
.yb4{bottom:199.999867pt;}
.yf3{bottom:200.000000pt;}
.y8a{bottom:202.063200pt;}
.y7a{bottom:203.552000pt;}
.y18a{bottom:207.105733pt;}
.y3d{bottom:208.612133pt;}
.y19{bottom:211.643733pt;}
.y159{bottom:211.943200pt;}
.yb3{bottom:211.999867pt;}
.yf2{bottom:212.000000pt;}
.y71{bottom:212.423200pt;}
.y136{bottom:213.063200pt;}
.y125{bottom:213.772400pt;}
.y11d{bottom:214.023200pt;}
.ye2{bottom:214.169867pt;}
.y66{bottom:214.183200pt;}
.y89{bottom:218.543200pt;}
.y189{bottom:223.585600pt;}
.yb2{bottom:223.999867pt;}
.y3c{bottom:225.092133pt;}
.y149{bottom:227.303200pt;}
.yf1{bottom:227.552000pt;}
.y18{bottom:227.643733pt;}
.y158{bottom:228.423200pt;}
.y135{bottom:229.543200pt;}
.y124{bottom:230.252267pt;}
.y11c{bottom:230.503200pt;}
.ye1{bottom:230.649867pt;}
.y65{bottom:230.663200pt;}
.y101{bottom:232.065333pt;}
.y88{bottom:235.023200pt;}
.yb1{bottom:235.999867pt;}
.yf0{bottom:236.000000pt;}
.yb0{bottom:239.551867pt;}
.y188{bottom:240.065733pt;}
.y3b{bottom:241.572133pt;}
.y17{bottom:243.643733pt;}
.y70{bottom:244.903200pt;}
.y134{bottom:246.023200pt;}
.y123{bottom:246.732400pt;}
.y11b{bottom:246.983200pt;}
.ye0{bottom:247.129867pt;}
.y64{bottom:247.143200pt;}
.yef{bottom:248.000000pt;}
.y100{bottom:249.665333pt;}
.y87{bottom:251.503200pt;}
.y187{bottom:256.545600pt;}
.y3a{bottom:258.052133pt;}
.y16{bottom:259.643733pt;}
.yee{bottom:260.000000pt;}
.y157{bottom:261.383200pt;}
.y6f{bottom:262.503200pt;}
.yaf{bottom:263.212267pt;}
.y11a{bottom:263.463200pt;}
.ydf{bottom:263.609867pt;}
.y63{bottom:263.623200pt;}
.y86{bottom:267.983200pt;}
.yed{bottom:272.000000pt;}
.y186{bottom:273.025733pt;}
.y39{bottom:274.532133pt;}
.y15{bottom:275.643733pt;}
.y156{bottom:277.863200pt;}
.y133{bottom:278.983200pt;}
.yae{bottom:279.692400pt;}
.y119{bottom:279.943200pt;}
.yde{bottom:280.089867pt;}
.y62{bottom:280.103200pt;}
.y85{bottom:284.463200pt;}
.yec{bottom:287.552000pt;}
.y185{bottom:289.505600pt;}
.y38{bottom:291.012133pt;}
.y14{bottom:291.643733pt;}
.y155{bottom:294.343200pt;}
.y132{bottom:295.463200pt;}
.yad{bottom:296.172267pt;}
.y118{bottom:296.423200pt;}
.ydd{bottom:296.569867pt;}
.y61{bottom:296.583200pt;}
.yff{bottom:299.265333pt;}
.y84{bottom:300.943200pt;}
.y184{bottom:305.985733pt;}
.y37{bottom:307.492133pt;}
.y13{bottom:307.643733pt;}
.y154{bottom:310.823200pt;}
.y131{bottom:311.943200pt;}
.yac{bottom:312.652400pt;}
.y117{bottom:312.903200pt;}
.ydc{bottom:313.049867pt;}
.y60{bottom:313.063200pt;}
.y83{bottom:317.423200pt;}
.y183{bottom:322.465600pt;}
.y12{bottom:323.643733pt;}
.y36{bottom:323.972133pt;}
.y153{bottom:327.303200pt;}
.y130{bottom:328.423200pt;}
.yab{bottom:329.132267pt;}
.y116{bottom:329.383200pt;}
.ydb{bottom:329.529867pt;}
.y5f{bottom:329.543200pt;}
.y182{bottom:338.945600pt;}
.y11{bottom:339.643733pt;}
.y35{bottom:340.452133pt;}
.y12f{bottom:344.903200pt;}
.yaa{bottom:345.612267pt;}
.y115{bottom:345.863200pt;}
.yda{bottom:346.009867pt;}
.y5e{bottom:346.023200pt;}
.y181{bottom:355.425600pt;}
.y34{bottom:356.932133pt;}
.y152{bottom:360.263200pt;}
.y12e{bottom:361.383200pt;}
.ya9{bottom:362.092267pt;}
.y10{bottom:362.310400pt;}
.y114{bottom:362.343200pt;}
.yd9{bottom:362.489867pt;}
.y5d{bottom:362.503200pt;}
.y180{bottom:371.905600pt;}
.y33{bottom:373.412133pt;}
.y12d{bottom:377.863200pt;}
.ya8{bottom:378.572267pt;}
.y113{bottom:378.823200pt;}
.yd8{bottom:378.969867pt;}
.y5c{bottom:378.983200pt;}
.y17f{bottom:388.385600pt;}
.y32{bottom:389.892133pt;}
.y12c{bottom:394.343200pt;}
.ya7{bottom:395.052267pt;}
.y112{bottom:395.303200pt;}
.yd7{bottom:395.449867pt;}
.y5b{bottom:395.463200pt;}
.y17e{bottom:404.865600pt;}
.y31{bottom:406.372133pt;}
.y148{bottom:410.823200pt;}
.yfe{bottom:411.303200pt;}
.ya6{bottom:411.532267pt;}
.y111{bottom:411.783200pt;}
.yd6{bottom:411.929867pt;}
.y5a{bottom:411.943200pt;}
.yf{bottom:414.577200pt;}
.y17d{bottom:421.345600pt;}
.y12b{bottom:427.303200pt;}
.yfd{bottom:427.783200pt;}
.ya5{bottom:428.012267pt;}
.y110{bottom:428.263200pt;}
.yd5{bottom:428.409867pt;}
.y59{bottom:428.423200pt;}
.ye{bottom:433.777200pt;}
.y17c{bottom:437.825733pt;}
.y30{bottom:438.852133pt;}
.y147{bottom:443.783200pt;}
.yfc{bottom:444.263200pt;}
.ya4{bottom:444.492400pt;}
.y10f{bottom:444.743200pt;}
.yd4{bottom:444.889867pt;}
.y58{bottom:444.903200pt;}
.y17b{bottom:454.305600pt;}
.y146{bottom:460.263200pt;}
.yfb{bottom:460.743200pt;}
.ya3{bottom:460.972267pt;}
.y10e{bottom:461.223200pt;}
.yd3{bottom:461.369867pt;}
.y57{bottom:461.383200pt;}
.yd{bottom:469.290000pt;}
.y17a{bottom:470.785600pt;}
.y145{bottom:476.743200pt;}
.yfa{bottom:477.223200pt;}
.ya2{bottom:477.452267pt;}
.y10d{bottom:477.703200pt;}
.yd2{bottom:477.849867pt;}
.y56{bottom:477.863200pt;}
.y161{bottom:485.398667pt;}
.y179{bottom:487.265600pt;}
.y2f{bottom:488.452133pt;}
.yc{bottom:492.002800pt;}
.y144{bottom:493.223200pt;}
.yf9{bottom:493.703200pt;}
.ya1{bottom:493.932267pt;}
.y10c{bottom:494.183200pt;}
.yd1{bottom:494.329867pt;}
.y55{bottom:494.343200pt;}
.y178{bottom:503.745733pt;}
.y2e{bottom:504.452133pt;}
.y143{bottom:509.703200pt;}
.yf8{bottom:510.183200pt;}
.ya0{bottom:510.412400pt;}
.y10b{bottom:510.663200pt;}
.yd0{bottom:510.809867pt;}
.y54{bottom:510.823200pt;}
.yb{bottom:515.736133pt;}
.y177{bottom:520.225733pt;}
.y142{bottom:526.183200pt;}
.yf7{bottom:526.663200pt;}
.y9f{bottom:526.892400pt;}
.ycf{bottom:527.289867pt;}
.y53{bottom:527.303200pt;}
.y176{bottom:536.705600pt;}
.y141{bottom:542.663200pt;}
.yf6{bottom:543.143200pt;}
.y9e{bottom:543.372267pt;}
.y10a{bottom:543.623200pt;}
.yce{bottom:543.769867pt;}
.y52{bottom:543.783200pt;}
.y2d{bottom:552.452133pt;}
.y175{bottom:553.185600pt;}
.y140{bottom:559.143200pt;}
.y9d{bottom:559.852267pt;}
.ycd{bottom:560.249867pt;}
.y51{bottom:560.263200pt;}
.ya{bottom:564.628533pt;}
.y174{bottom:569.665600pt;}
.yf5{bottom:575.623200pt;}
.y9c{bottom:576.332267pt;}
.ycc{bottom:576.729867pt;}
.y50{bottom:576.743200pt;}
.y2c{bottom:585.412133pt;}
.y173{bottom:586.145733pt;}
.y9{bottom:587.341467pt;}
.y13f{bottom:592.103200pt;}
.y9b{bottom:592.812400pt;}
.ycb{bottom:593.209867pt;}
.y4f{bottom:593.223200pt;}
.y2b{bottom:601.892133pt;}
.y172{bottom:602.625600pt;}
.y9a{bottom:609.292267pt;}
.yca{bottom:609.689867pt;}
.y4e{bottom:609.703200pt;}
.y8{bottom:611.074800pt;}
.y2a{bottom:618.372133pt;}
.y171{bottom:619.105733pt;}
.y16a{bottom:625.063200pt;}
.y99{bottom:625.772400pt;}
.yc9{bottom:626.169867pt;}
.y4d{bottom:626.183200pt;}
.y29{bottom:634.852133pt;}
.y170{bottom:635.585600pt;}
.y98{bottom:642.252267pt;}
.yc8{bottom:642.649867pt;}
.y4c{bottom:642.663200pt;}
.y7{bottom:649.474800pt;}
.y28{bottom:651.332133pt;}
.y16f{bottom:652.065733pt;}
.y97{bottom:658.732400pt;}
.yc7{bottom:659.129867pt;}
.y4b{bottom:659.143200pt;}
.y27{bottom:667.812133pt;}
.y16e{bottom:668.545600pt;}
.y6{bottom:673.474800pt;}
.y96{bottom:675.212267pt;}
.yc6{bottom:675.609867pt;}
.y4a{bottom:675.623200pt;}
.y26{bottom:684.292133pt;}
.y16d{bottom:685.025600pt;}
.y95{bottom:691.692267pt;}
.yc5{bottom:692.089867pt;}
.y49{bottom:692.103200pt;}
.y25{bottom:700.772133pt;}
.y16c{bottom:701.505733pt;}
.y94{bottom:708.172400pt;}
.yc4{bottom:708.569867pt;}
.y48{bottom:708.583200pt;}
.y24{bottom:717.252133pt;}
.y16b{bottom:717.985733pt;}
.y5{bottom:721.474800pt;}
.yc3{bottom:725.049867pt;}
.y47{bottom:725.063200pt;}
.y23{bottom:740.398800pt;}
.y93{bottom:741.132400pt;}
.yc2{bottom:741.529733pt;}
.y46{bottom:741.543200pt;}
.y4{bottom:745.474800pt;}
.y3{bottom:769.474800pt;}
.y45{bottom:794.196000pt;}
.y44{bottom:804.862667pt;}
.y22{bottom:805.800133pt;}
.h15{height:21.826062pt;}
.hc{height:23.229500pt;}
.hd{height:29.645833pt;}
.h2{height:32.757812pt;}
.h7{height:32.976562pt;}
.h9{height:36.640625pt;}
.h10{height:37.031250pt;}
.h16{height:37.057292pt;}
.he{height:37.437500pt;}
.hb{height:37.739844pt;}
.ha{height:37.873958pt;}
.h14{height:38.169010pt;}
.h18{height:40.161458pt;}
.h6{height:40.304688pt;}
.h8{height:40.447917pt;}
.hf{height:42.117188pt;}
.h11{height:46.796875pt;}
.h13{height:48.200781pt;}
.h17{height:48.790885pt;}
.h5{height:51.296875pt;}
.h12{height:52.106771pt;}
.h3{height:65.953125pt;}
.h4{height:70.418672pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.x9{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.xe{left:72.506133pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.xd{left:88.145600pt;}
.x3{left:94.811600pt;}
.xc{left:102.466933pt;}
.xb{left:196.028133pt;}
.x8{left:285.843600pt;}
.xf{left:303.478267pt;}
.xa{left:481.531867pt;}
}




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