
    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_c8dba00dadd8b7d01870f70a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.230957;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_25919b6e5c303543494bdb4b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_5b88312ee9b202c92cb64393.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402832;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_930f539d4459c7c845b62504.woff')format("woff");}.ff4{font-family:ff4;line-height:1.230957;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_e9d289d179f8feb7a205dee7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_b78ec972dae0a7f4bc7f79d8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_13ee69cdfe1d625cc8d050b7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041992;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_c372aa5c59ef84c20094c535.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_5ca296e6efea3b9c922ace67.woff')format("woff");}.ff9{font-family:ff9;line-height:1.230957;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_60d5486debf68a339ac45742.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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_feb14758b374a53e0b7ca482.woff')format("woff");}.ffb{font-family:ffb;line-height:1.066406;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:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.224200px;}
.v3{vertical-align:36.000000px;}
.v4{vertical-align:72.000000px;}
.ls14{letter-spacing:-7.371000px;}
.ls2{letter-spacing:-5.166000px;}
.ls6a{letter-spacing:-4.830000px;}
.ls56{letter-spacing:-4.485000px;}
.ls3f{letter-spacing:-4.416000px;}
.ls80{letter-spacing:-4.200000px;}
.ls41{letter-spacing:-4.002000px;}
.ls57{letter-spacing:-3.864000px;}
.ls2b{letter-spacing:-3.240000px;}
.ls85{letter-spacing:-3.060000px;}
.ls77{letter-spacing:-2.961000px;}
.ls1c{letter-spacing:-2.898000px;}
.ls81{letter-spacing:-2.880000px;}
.ls78{letter-spacing:-2.709000px;}
.ls37{letter-spacing:-2.592000px;}
.ls86{letter-spacing:-2.520000px;}
.ls1b{letter-spacing:-2.484000px;}
.ls12{letter-spacing:-2.475000px;}
.ls48{letter-spacing:-2.304000px;}
.ls61{letter-spacing:-2.100000px;}
.ls63{letter-spacing:-2.040000px;}
.ls23{letter-spacing:-1.932000px;}
.ls35{letter-spacing:-1.920000px;}
.ls54{letter-spacing:-1.863000px;}
.ls1a{letter-spacing:-1.794000px;}
.ls39{letter-spacing:-1.680000px;}
.ls68{letter-spacing:-1.656000px;}
.ls38{letter-spacing:-1.620000px;}
.ls19{letter-spacing:-1.587000px;}
.ls42{letter-spacing:-1.518000px;}
.ls34{letter-spacing:-1.500000px;}
.ls20{letter-spacing:-1.449000px;}
.ls33{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-1.380000px;}
.ls45{letter-spacing:-1.311000px;}
.ls9{letter-spacing:-1.260000px;}
.ls2d{letter-spacing:-1.242000px;}
.ls3a{letter-spacing:-1.200000px;}
.ls2e{letter-spacing:-1.173000px;}
.ls8{letter-spacing:-1.140000px;}
.ls3e{letter-spacing:-1.104000px;}
.ls26{letter-spacing:-1.035000px;}
.ls31{letter-spacing:-1.020000px;}
.ls2f{letter-spacing:-0.966000px;}
.ls30{letter-spacing:-0.960000px;}
.ls79{letter-spacing:-0.945000px;}
.ls5f{letter-spacing:-0.900000px;}
.ls51{letter-spacing:-0.897000px;}
.ls7b{letter-spacing:-0.882000px;}
.ls60{letter-spacing:-0.840000px;}
.ls22{letter-spacing:-0.828000px;}
.ls71{letter-spacing:-0.819000px;}
.ls27{letter-spacing:-0.759000px;}
.ls5b{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.690000px;}
.ls62{letter-spacing:-0.660000px;}
.ls6f{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.621000px;}
.ls3b{letter-spacing:-0.600000px;}
.ls40{letter-spacing:-0.552000px;}
.lse{letter-spacing:-0.540000px;}
.ls47{letter-spacing:-0.504000px;}
.ls50{letter-spacing:-0.483000px;}
.ls87{letter-spacing:-0.480000px;}
.ls76{letter-spacing:-0.441000px;}
.ls21{letter-spacing:-0.414000px;}
.ls6c{letter-spacing:-0.378000px;}
.ls82{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.345000px;}
.lsf{letter-spacing:-0.300000px;}
.ls7a{letter-spacing:-0.252000px;}
.ls53{letter-spacing:-0.243000px;}
.lsa{letter-spacing:-0.240000px;}
.ls67{letter-spacing:-0.207000px;}
.ls70{letter-spacing:-0.189000px;}
.lsb{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.138000px;}
.ls4a{letter-spacing:-0.120000px;}
.ls65{letter-spacing:-0.081000px;}
.ls64{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.069000px;}
.ls7e{letter-spacing:0.189000px;}
.ls32{letter-spacing:0.240000px;}
.ls4e{letter-spacing:0.276000px;}
.ls5c{letter-spacing:0.300000px;}
.ls46{letter-spacing:0.360000px;}
.ls44{letter-spacing:0.414000px;}
.ls1e{letter-spacing:0.545100px;}
.ls43{letter-spacing:0.552000px;}
.ls59{letter-spacing:0.690000px;}
.ls6e{letter-spacing:0.756000px;}
.ls28{letter-spacing:0.759000px;}
.ls52{letter-spacing:0.828000px;}
.ls29{letter-spacing:1.035000px;}
.ls4{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.104000px;}
.ls36{letter-spacing:1.140000px;}
.ls4f{letter-spacing:1.173000px;}
.ls72{letter-spacing:1.197000px;}
.ls69{letter-spacing:1.242000px;}
.ls6{letter-spacing:1.260000px;}
.ls16{letter-spacing:1.587000px;}
.ls18{letter-spacing:1.794000px;}
.ls4d{letter-spacing:1.863000px;}
.ls2c{letter-spacing:2.025000px;}
.ls5{letter-spacing:2.079000px;}
.ls11{letter-spacing:2.400000px;}
.ls13{letter-spacing:3.696000px;}
.ls5e{letter-spacing:4.186200px;}
.lsc{letter-spacing:4.200000px;}
.ls6d{letter-spacing:4.599000px;}
.ls7{letter-spacing:5.760000px;}
.ls7c{letter-spacing:5.859000px;}
.lsd{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls75{letter-spacing:6.237000px;}
.ls6b{letter-spacing:6.300000px;}
.ls7d{letter-spacing:6.993000px;}
.ls84{letter-spacing:8.640000px;}
.ls55{letter-spacing:10.488000px;}
.ls74{letter-spacing:12.726000px;}
.ls4c{letter-spacing:15.594000px;}
.ls10{letter-spacing:475.224000px;}
.ls4b{letter-spacing:475.366800px;}
.ls5d{letter-spacing:475.854000px;}
.ls73{letter-spacing:476.041800px;}
.ls7f{letter-spacing:477.159000px;}
.ls2a{letter-spacing:477.916800px;}
.ls83{letter-spacing:480.076800px;}
.ls0{letter-spacing:952.522800px;}
.ls3c{letter-spacing:953.017800px;}
.ls5a{letter-spacing:955.642800px;}
.ls66{letter-spacing:959.692800px;}
.ls1d{letter-spacing:961.672800px;}
.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;}
}
.ws96{word-spacing:-25.500000px;}
.ws2a{word-spacing:-24.786000px;}
.ws1{word-spacing:-22.740000px;}
.ws70{word-spacing:-22.680000px;}
.ws0{word-spacing:-22.620000px;}
.ws1d{word-spacing:-20.493000px;}
.ws41{word-spacing:-19.296000px;}
.wsf{word-spacing:-18.600000px;}
.ws43{word-spacing:-18.120000px;}
.ws2d{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.802000px;}
.ws86{word-spacing:-17.703000px;}
.ws87{word-spacing:-17.451000px;}
.ws78{word-spacing:-17.073000px;}
.ws55{word-spacing:-16.905000px;}
.ws91{word-spacing:-16.875000px;}
.ws97{word-spacing:-16.860000px;}
.ws2e{word-spacing:-16.848000px;}
.ws40{word-spacing:-16.440000px;}
.ws1f{word-spacing:-16.353000px;}
.ws53{word-spacing:-16.284000px;}
.ws3b{word-spacing:-16.215000px;}
.ws54{word-spacing:-16.146000px;}
.ws42{word-spacing:-16.080000px;}
.ws66{word-spacing:-16.008000px;}
.ws63{word-spacing:-15.900000px;}
.ws3e{word-spacing:-15.870000px;}
.ws76{word-spacing:-15.801000px;}
.ws52{word-spacing:-15.732000px;}
.ws1c{word-spacing:-15.663000px;}
.ws6d{word-spacing:-15.540000px;}
.ws56{word-spacing:-15.525000px;}
.ws3d{word-spacing:-15.456000px;}
.ws11{word-spacing:-15.390000px;}
.ws79{word-spacing:-15.372000px;}
.ws6c{word-spacing:-15.360000px;}
.ws6b{word-spacing:-15.300000px;}
.ws2b{word-spacing:-15.240000px;}
.ws7b{word-spacing:-15.183000px;}
.ws2c{word-spacing:-15.180000px;}
.ws3c{word-spacing:-15.111000px;}
.ws31{word-spacing:-15.000000px;}
.ws3f{word-spacing:-14.940000px;}
.ws95{word-spacing:-14.820000px;}
.ws64{word-spacing:-14.760000px;}
.ws7a{word-spacing:-14.742000px;}
.ws65{word-spacing:-14.700000px;}
.ws2f{word-spacing:-14.580000px;}
.ws77{word-spacing:-14.559000px;}
.ws30{word-spacing:-14.520000px;}
.ws6e{word-spacing:-14.160000px;}
.ws92{word-spacing:-13.980000px;}
.ws10{word-spacing:-13.062000px;}
.ws85{word-spacing:-12.852000px;}
.ws5d{word-spacing:-10.488000px;}
.ws8f{word-spacing:-6.993000px;}
.ws7f{word-spacing:-6.300000px;}
.ws88{word-spacing:-6.237000px;}
.ws4{word-spacing:-6.000000px;}
.ws8e{word-spacing:-5.859000px;}
.ws81{word-spacing:-4.599000px;}
.wsc{word-spacing:-4.200000px;}
.ws13{word-spacing:-3.696000px;}
.ws99{word-spacing:-3.540000px;}
.ws6f{word-spacing:-3.398640px;}
.ws12{word-spacing:-2.400000px;}
.ws6{word-spacing:-2.079000px;}
.ws17{word-spacing:-1.794000px;}
.ws15{word-spacing:-1.587000px;}
.ws7{word-spacing:-1.260000px;}
.ws7e{word-spacing:-1.242000px;}
.ws83{word-spacing:-1.197000px;}
.ws58{word-spacing:-1.173000px;}
.ws14{word-spacing:-1.104000px;}
.ws5{word-spacing:-1.080000px;}
.ws29{word-spacing:-1.035000px;}
.ws5b{word-spacing:-0.828000px;}
.ws82{word-spacing:-0.756000px;}
.ws62{word-spacing:-0.690000px;}
.ws4a{word-spacing:-0.552000px;}
.ws4b{word-spacing:-0.414000px;}
.ws4d{word-spacing:-0.360000px;}
.ws6a{word-spacing:-0.300000px;}
.ws57{word-spacing:-0.276000px;}
.ws36{word-spacing:-0.240000px;}
.ws90{word-spacing:-0.189000px;}
.ws60{word-spacing:-0.069000px;}
.ws2{word-spacing:0.000000px;}
.ws75{word-spacing:0.060000px;}
.ws44{word-spacing:0.138000px;}
.ws72{word-spacing:0.144000px;}
.wsb{word-spacing:0.180000px;}
.ws8b{word-spacing:0.189000px;}
.ws7c{word-spacing:0.207000px;}
.wsa{word-spacing:0.240000px;}
.ws5c{word-spacing:0.243000px;}
.wse{word-spacing:0.300000px;}
.ws24{word-spacing:0.345000px;}
.ws80{word-spacing:0.378000px;}
.ws21{word-spacing:0.414000px;}
.ws89{word-spacing:0.441000px;}
.ws9b{word-spacing:0.480000px;}
.ws59{word-spacing:0.483000px;}
.ws4e{word-spacing:0.504000px;}
.wsd{word-spacing:0.540000px;}
.ws47{word-spacing:0.552000px;}
.ws3a{word-spacing:0.600000px;}
.ws16{word-spacing:0.621000px;}
.ws84{word-spacing:0.630000px;}
.ws26{word-spacing:0.690000px;}
.ws69{word-spacing:0.720000px;}
.ws28{word-spacing:0.759000px;}
.ws22{word-spacing:0.828000px;}
.ws74{word-spacing:0.840000px;}
.ws8d{word-spacing:0.882000px;}
.ws5a{word-spacing:0.897000px;}
.ws71{word-spacing:0.900000px;}
.ws8c{word-spacing:0.945000px;}
.ws50{word-spacing:0.960000px;}
.ws35{word-spacing:0.966000px;}
.ws51{word-spacing:1.020000px;}
.ws27{word-spacing:1.035000px;}
.ws45{word-spacing:1.104000px;}
.ws8{word-spacing:1.140000px;}
.ws34{word-spacing:1.173000px;}
.ws33{word-spacing:1.242000px;}
.ws9{word-spacing:1.260000px;}
.ws4c{word-spacing:1.311000px;}
.ws25{word-spacing:1.380000px;}
.ws37{word-spacing:1.440000px;}
.ws20{word-spacing:1.449000px;}
.ws38{word-spacing:1.500000px;}
.ws49{word-spacing:1.518000px;}
.ws18{word-spacing:1.587000px;}
.ws67{word-spacing:1.620000px;}
.ws7d{word-spacing:1.656000px;}
.ws19{word-spacing:1.794000px;}
.ws61{word-spacing:1.863000px;}
.ws39{word-spacing:1.920000px;}
.ws23{word-spacing:1.932000px;}
.ws73{word-spacing:2.100000px;}
.ws4f{word-spacing:2.304000px;}
.ws1a{word-spacing:2.484000px;}
.ws9a{word-spacing:2.520000px;}
.ws68{word-spacing:2.592000px;}
.ws1b{word-spacing:2.898000px;}
.ws8a{word-spacing:2.961000px;}
.ws98{word-spacing:3.060000px;}
.ws32{word-spacing:3.240000px;}
.ws5f{word-spacing:3.864000px;}
.ws48{word-spacing:4.002000px;}
.ws46{word-spacing:4.416000px;}
.ws5e{word-spacing:4.485000px;}
.ws3{word-spacing:5.166000px;}
.ws94{word-spacing:308.658000px;}
.ws93{word-spacing:388.098000px;}
._f{margin-left:-17.430000px;}
._18{margin-left:-11.449500px;}
._17{margin-left:-9.707100px;}
._b{margin-left:-8.424000px;}
._c{margin-left:-7.292400px;}
._a{margin-left:-5.717700px;}
._8{margin-left:-4.554900px;}
._7{margin-left:-2.943300px;}
._6{margin-left:-1.410000px;}
._5{width:1.008000px;}
._1{width:2.400000px;}
._d{width:3.462000px;}
._2{width:4.781700px;}
._4{width:6.111000px;}
._3{width:7.560000px;}
._9{width:8.597700px;}
._11{width:10.615500px;}
._12{width:11.651400px;}
._1c{width:12.759300px;}
._13{width:13.839600px;}
._15{width:15.347400px;}
._16{width:16.598100px;}
._1a{width:19.215900px;}
._19{width:20.718000px;}
._1b{width:21.855600px;}
._14{width:43.445160px;}
._e{width:71.400000px;}
._1d{width:109.575300px;}
._20{width:121.215300px;}
._1e{width:195.018000px;}
._1f{width:199.308000px;}
._10{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:29.400000px;}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y44{bottom:106.106850px;}
.y13f{bottom:106.118850px;}
.yc9{bottom:106.190250px;}
.ya7{bottom:106.295700px;}
.y1d{bottom:106.297500px;}
.y120{bottom:106.304700px;}
.y1b7{bottom:106.307550px;}
.yff{bottom:106.315200px;}
.y68{bottom:109.294800px;}
.y1c{bottom:126.412500px;}
.y43{bottom:126.427350px;}
.y88{bottom:126.592650px;}
.ya6{bottom:126.725700px;}
.y13e{bottom:126.908850px;}
.y11f{bottom:127.078950px;}
.y1b6{bottom:127.082550px;}
.yc8{bottom:127.649250px;}
.yfe{bottom:127.653450px;}
.yea{bottom:129.070800px;}
.y1b{bottom:146.527500px;}
.y42{bottom:146.747850px;}
.y11e{bottom:147.853200px;}
.y1b5{bottom:147.857550px;}
.yfd{bottom:148.991700px;}
.yc7{bottom:149.108250px;}
.ye9{bottom:151.892550px;}
.y67{bottom:153.220350px;}
.y13d{bottom:156.203850px;}
.y186{bottom:159.444750px;}
.y1a6{bottom:160.030050px;}
.y1a{bottom:166.642500px;}
.y41{bottom:167.068350px;}
.yfc{bottom:170.329950px;}
.yc6{bottom:170.567250px;}
.y7e{bottom:171.916350px;}
.y66{bottom:173.903100px;}
.ye8{bottom:174.714300px;}
.y11d{bottom:177.132450px;}
.y185{bottom:177.444750px;}
.y1a5{bottom:178.030050px;}
.y1b4{bottom:181.382550px;}
.y13c{bottom:185.498850px;}
.y19{bottom:186.757500px;}
.y40{bottom:187.388850px;}
.y7d{bottom:189.916350px;}
.yc5{bottom:192.026250px;}
.y9d{bottom:192.531300px;}
.y65{bottom:194.585850px;}
.y184{bottom:195.444750px;}
.y1a4{bottom:196.030050px;}
.ye7{bottom:197.536050px;}
.y13b{bottom:206.288850px;}
.y11c{bottom:206.411700px;}
.y1d8{bottom:207.192750px;}
.y3f{bottom:207.709350px;}
.y7c{bottom:207.916350px;}
.y9c{bottom:210.531300px;}
.yfb{bottom:212.933400px;}
.y183{bottom:213.444750px;}
.yc4{bottom:213.485250px;}
.y1a3{bottom:214.030050px;}
.y64{bottom:215.268600px;}
.y18{bottom:219.622500px;}
.ye6{bottom:220.357800px;}
.y7b{bottom:225.916350px;}
.y1d7{bottom:227.442750px;}
.y3e{bottom:228.029850px;}
.y9b{bottom:228.531300px;}
.y182{bottom:231.444750px;}
.y1a2{bottom:232.030050px;}
.yc3{bottom:234.944250px;}
.y13a{bottom:235.583850px;}
.y11b{bottom:235.690950px;}
.y63{bottom:235.951350px;}
.y1b3{bottom:240.435900px;}
.ye5{bottom:243.179550px;}
.y7a{bottom:243.916350px;}
.y1d6{bottom:247.692750px;}
.y3d{bottom:248.350350px;}
.y181{bottom:249.444750px;}
.y1a1{bottom:250.030050px;}
.yc2{bottom:256.403250px;}
.y11a{bottom:256.465200px;}
.y62{bottom:256.634100px;}
.y139{bottom:264.878850px;}
.ye4{bottom:266.001300px;}
.y180{bottom:267.444750px;}
.y1d5{bottom:267.942750px;}
.y1a0{bottom:268.030050px;}
.y3c{bottom:268.670850px;}
.y1b2{bottom:268.701900px;}
.y17{bottom:269.497500px;}
.yfa{bottom:276.331950px;}
.y61{bottom:277.316850px;}
.yc1{bottom:277.862250px;}
.y17f{bottom:285.444750px;}
.y138{bottom:285.668850px;}
.y119{bottom:285.744450px;}
.y19f{bottom:286.030050px;}
.ye3{bottom:288.823050px;}
.y3b{bottom:288.991350px;}
.y16{bottom:291.112500px;}
.y15c{bottom:291.971850px;}
.yf9{bottom:297.670200px;}
.y60{bottom:297.999600px;}
.yc0{bottom:299.321250px;}
.y1d4{bottom:300.942750px;}
.y17e{bottom:303.444750px;}
.y19e{bottom:304.030050px;}
.y137{bottom:306.458850px;}
.y118{bottom:306.518700px;}
.y87{bottom:307.483500px;}
.y3a{bottom:309.311850px;}
.y15b{bottom:309.971850px;}
.ye2{bottom:311.644800px;}
.y15{bottom:312.720450px;}
.ya2{bottom:317.834550px;}
.y5f{bottom:318.682350px;}
.yf8{bottom:319.008450px;}
.ybf{bottom:320.780250px;}
.y1d3{bottom:321.192750px;}
.y17d{bottom:321.444750px;}
.y19d{bottom:322.030050px;}
.y86{bottom:325.483500px;}
.y15a{bottom:327.971850px;}
.y39{bottom:329.632350px;}
.y81{bottom:331.731450px;}
.y14{bottom:332.835450px;}
.ya1{bottom:334.340550px;}
.ye1{bottom:334.466550px;}
.y136{bottom:335.753850px;}
.y117{bottom:335.797950px;}
.ya5{bottom:337.098600px;}
.y5e{bottom:339.365100px;}
.y17c{bottom:339.444750px;}
.y19c{bottom:340.030050px;}
.yf7{bottom:340.346700px;}
.y1d2{bottom:341.442750px;}
.ybe{bottom:342.239250px;}
.y85{bottom:343.483500px;}
.y159{bottom:345.971850px;}
.y38{bottom:349.952850px;}
.ya0{bottom:350.846550px;}
.y13{bottom:352.950450px;}
.ya4{bottom:355.098600px;}
.y116{bottom:356.572200px;}
.y80{bottom:356.735400px;}
.ye0{bottom:357.288300px;}
.y17b{bottom:357.444750px;}
.y19b{bottom:358.030050px;}
.y5d{bottom:360.047850px;}
.y1b1{bottom:361.269750px;}
.y84{bottom:361.483500px;}
.yf6{bottom:361.684950px;}
.y1d1{bottom:361.692750px;}
.ybd{bottom:363.698250px;}
.y158{bottom:363.971850px;}
.y135{bottom:365.048850px;}
.y37{bottom:370.273350px;}
.y12{bottom:373.065450px;}
.ya3{bottom:373.098600px;}
.y7f{bottom:373.235400px;}
.y17a{bottom:375.444750px;}
.y9f{bottom:375.850500px;}
.y19a{bottom:376.030050px;}
.y1b0{bottom:379.269750px;}
.y83{bottom:379.483500px;}
.ydf{bottom:380.110050px;}
.y5c{bottom:380.730600px;}
.y157{bottom:381.971850px;}
.yf5{bottom:383.023200px;}
.ybc{bottom:385.157250px;}
.y115{bottom:385.851450px;}
.y36{bottom:390.593850px;}
.y9e{bottom:392.350500px;}
.y11{bottom:393.180450px;}
.y179{bottom:393.444750px;}
.y199{bottom:394.030050px;}
.y134{bottom:394.343850px;}
.y1d0{bottom:394.692750px;}
.y82{bottom:397.483500px;}
.y156{bottom:399.971850px;}
.y5b{bottom:401.413350px;}
.y1af{bottom:401.994750px;}
.yde{bottom:402.931800px;}
.yf4{bottom:404.361450px;}
.ybb{bottom:406.616250px;}
.y35{bottom:410.914350px;}
.y178{bottom:411.444750px;}
.y198{bottom:412.030050px;}
.y10{bottom:413.295450px;}
.y114{bottom:415.130700px;}
.y155{bottom:417.971850px;}
.y1ae{bottom:419.994750px;}
.y5a{bottom:422.096100px;}
.y133{bottom:423.638850px;}
.yf3{bottom:425.699700px;}
.ydd{bottom:425.753550px;}
.yba{bottom:428.075250px;}
.y177{bottom:429.444750px;}
.y197{bottom:430.030050px;}
.y34{bottom:431.234850px;}
.yf{bottom:433.410450px;}
.y154{bottom:435.971850px;}
.y1cf{bottom:436.197750px;}
.y1ad{bottom:437.994750px;}
.y59{bottom:442.778850px;}
.y176{bottom:447.444750px;}
.y196{bottom:448.030050px;}
.yb9{bottom:449.534250px;}
.y33{bottom:451.555350px;}
.y132{bottom:452.933850px;}
.y153{bottom:453.971850px;}
.y1ce{bottom:455.697750px;}
.y1ac{bottom:455.994750px;}
.y58{bottom:463.461600px;}
.y175{bottom:465.444750px;}
.y195{bottom:466.030050px;}
.ye{bottom:466.275450px;}
.yf2{bottom:468.386850px;}
.y79{bottom:469.300350px;}
.ydc{bottom:471.389850px;}
.y32{bottom:471.875850px;}
.y152{bottom:471.971850px;}
.y131{bottom:473.723850px;}
.y1cd{bottom:475.197750px;}
.y1ab{bottom:478.719750px;}
.y9a{bottom:480.915450px;}
.y174{bottom:483.444750px;}
.y194{bottom:484.030050px;}
.y57{bottom:484.144350px;}
.y78{bottom:487.300350px;}
.y113{bottom:487.321350px;}
.y151{bottom:489.971850px;}
.y31{bottom:492.196350px;}
.yb8{bottom:492.237300px;}
.y1cc{bottom:494.697750px;}
.y1aa{bottom:496.719750px;}
.y99{bottom:498.915450px;}
.y173{bottom:501.444750px;}
.y193{bottom:502.030050px;}
.y130{bottom:503.018850px;}
.y56{bottom:504.827100px;}
.y77{bottom:505.300350px;}
.y150{bottom:507.971850px;}
.y112{bottom:508.090350px;}
.y30{bottom:512.516850px;}
.y1cb{bottom:514.197750px;}
.y1a9{bottom:514.719750px;}
.y98{bottom:516.915450px;}
.yb7{bottom:517.448550px;}
.y172{bottom:519.444750px;}
.y192{bottom:520.030050px;}
.yd1{bottom:522.003600px;}
.y76{bottom:523.300350px;}
.y12f{bottom:523.808850px;}
.yd{bottom:524.654850px;}
.y55{bottom:525.509850px;}
.y14f{bottom:525.971850px;}
.y111{bottom:528.859350px;}
.y1a8{bottom:532.719750px;}
.y2f{bottom:532.837350px;}
.y1ca{bottom:533.697750px;}
.y171{bottom:537.444750px;}
.y191{bottom:538.030050px;}
.yd0{bottom:540.003600px;}
.y14e{bottom:543.971850px;}
.y110{bottom:549.628350px;}
.y1a7{bottom:550.719750px;}
.yc{bottom:552.269850px;}
.y12e{bottom:553.103850px;}
.y2e{bottom:553.157850px;}
.y1c9{bottom:553.197750px;}
.y170{bottom:555.444750px;}
.y190{bottom:556.030050px;}
.ycf{bottom:558.003600px;}
.y14d{bottom:561.971850px;}
.y54{bottom:567.453450px;}
.y10f{bottom:570.397350px;}
.y1c8{bottom:572.697750px;}
.y16f{bottom:573.444750px;}
.y2d{bottom:573.478350px;}
.y12d{bottom:573.893850px;}
.y18f{bottom:574.030050px;}
.yce{bottom:576.003600px;}
.y14c{bottom:579.971850px;}
.yb6{bottom:580.816350px;}
.y10e{bottom:591.166350px;}
.y16e{bottom:591.444750px;}
.y53{bottom:591.874950px;}
.y1c7{bottom:592.197750px;}
.y2c{bottom:593.798850px;}
.y97{bottom:596.341350px;}
.y18e{bottom:596.755050px;}
.y14b{bottom:597.971850px;}
.yb{bottom:601.163850px;}
.yb5{bottom:602.275350px;}
.y12c{bottom:603.188850px;}
.y16d{bottom:609.444750px;}
.y1c6{bottom:611.697750px;}
.y10d{bottom:611.935350px;}
.y2b{bottom:614.119350px;}
.y18d{bottom:614.755050px;}
.y14a{bottom:615.971850px;}
.y96{bottom:616.765350px;}
.yb4{bottom:623.734350px;}
.y16c{bottom:627.444750px;}
.y1c5{bottom:631.197750px;}
.y75{bottom:632.249550px;}
.y12b{bottom:632.483850px;}
.y10c{bottom:632.704350px;}
.ya{bottom:633.266850px;}
.y149{bottom:633.971850px;}
.y2a{bottom:634.439850px;}
.y95{bottom:637.189350px;}
.y18c{bottom:639.987450px;}
.yb3{bottom:645.193350px;}
.y16b{bottom:645.444750px;}
.y1c4{bottom:650.697750px;}
.y74{bottom:652.535550px;}
.y12a{bottom:653.273850px;}
.y10b{bottom:653.473350px;}
.y52{bottom:654.508350px;}
.y29{bottom:654.760350px;}
.yf1{bottom:656.306550px;}
.y148{bottom:656.696850px;}
.y94{bottom:657.613350px;}
.y16a{bottom:663.444750px;}
.y9{bottom:665.369850px;}
.yd8{bottom:666.570450px;}
.yb2{bottom:666.652350px;}
.y1c3{bottom:670.197750px;}
.yf0{bottom:672.812550px;}
.yd4{bottom:672.818550px;}
.y73{bottom:672.821550px;}
.y129{bottom:674.063850px;}
.y10a{bottom:674.242350px;}
.y147{bottom:674.696850px;}
.y28{bottom:675.080850px;}
.y51{bottom:675.191100px;}
.ydb{bottom:675.570450px;}
.y93{bottom:678.037350px;}
.y169{bottom:681.444750px;}
.yd7{bottom:684.570450px;}
.yb1{bottom:688.111350px;}
.yef{bottom:689.318550px;}
.y1c2{bottom:689.697750px;}
.y72{bottom:693.107550px;}
.yda{bottom:693.570450px;}
.y128{bottom:694.853850px;}
.y109{bottom:695.011350px;}
.y27{bottom:695.401350px;}
.y50{bottom:695.873850px;}
.yd3{bottom:697.822500px;}
.y92{bottom:698.461350px;}
.y168{bottom:699.444750px;}
.yd6{bottom:702.570450px;}
.y18b{bottom:703.269750px;}
.y146{bottom:704.181150px;}
.y1c1{bottom:709.197750px;}
.yb0{bottom:709.570350px;}
.yd9{bottom:711.570450px;}
.y71{bottom:713.393550px;}
.yd2{bottom:714.322500px;}
.y26{bottom:715.721850px;}
.y108{bottom:715.780350px;}
.y4f{bottom:716.556600px;}
.y167{bottom:717.444750px;}
.y91{bottom:718.885350px;}
.yd5{bottom:720.570450px;}
.y127{bottom:724.148850px;}
.y18a{bottom:725.994750px;}
.y8{bottom:727.244250px;}
.y1c0{bottom:728.697750px;}
.yee{bottom:730.822500px;}
.yaf{bottom:731.029350px;}
.y70{bottom:733.679550px;}
.y166{bottom:735.444750px;}
.y25{bottom:736.042350px;}
.y107{bottom:736.549350px;}
.y4e{bottom:737.239350px;}
.y90{bottom:739.309350px;}
.y189{bottom:743.994750px;}
.y1bf{bottom:748.197750px;}
.yae{bottom:752.488350px;}
.y126{bottom:753.443850px;}
.y165{bottom:753.444750px;}
.y6f{bottom:753.965550px;}
.y106{bottom:757.318350px;}
.y7{bottom:757.364250px;}
.y4d{bottom:757.922100px;}
.y8f{bottom:759.733350px;}
.y188{bottom:761.994750px;}
.y145{bottom:765.161850px;}
.y1be{bottom:767.697750px;}
.y24{bottom:769.112400px;}
.y164{bottom:771.444750px;}
.yad{bottom:773.947350px;}
.y125{bottom:774.233850px;}
.y6e{bottom:774.251550px;}
.y105{bottom:778.087350px;}
.y4c{bottom:778.604850px;}
.y6{bottom:778.977750px;}
.y8e{bottom:780.157350px;}
.y187{bottom:784.719750px;}
.y144{bottom:785.416350px;}
.y1bd{bottom:787.197750px;}
.y163{bottom:789.444750px;}
.y6d{bottom:794.537550px;}
.yac{bottom:795.406350px;}
.y104{bottom:798.856350px;}
.y4b{bottom:799.287600px;}
.y8d{bottom:800.581350px;}
.y124{bottom:803.528850px;}
.y143{bottom:805.670850px;}
.y1bc{bottom:806.697750px;}
.y162{bottom:807.444750px;}
.ycd{bottom:810.387300px;}
.y6c{bottom:814.823550px;}
.yab{bottom:816.865350px;}
.yed{bottom:819.387450px;}
.y103{bottom:819.625350px;}
.y4a{bottom:819.970350px;}
.y8c{bottom:821.005350px;}
.y23{bottom:822.944850px;}
.y161{bottom:825.444750px;}
.y1bb{bottom:826.197750px;}
.ycc{bottom:828.387300px;}
.y5{bottom:830.350500px;}
.y123{bottom:832.823850px;}
.y142{bottom:834.430350px;}
.y6b{bottom:835.109550px;}
.yec{bottom:837.387450px;}
.yaa{bottom:838.324350px;}
.y102{bottom:840.394350px;}
.y49{bottom:840.653100px;}
.y8b{bottom:841.429350px;}
.y160{bottom:843.444750px;}
.y22{bottom:844.004850px;}
.y1ba{bottom:845.697750px;}
.ycb{bottom:846.387300px;}
.y4{bottom:851.965500px;}
.y122{bottom:853.613850px;}
.y141{bottom:854.684850px;}
.yeb{bottom:855.387450px;}
.ya9{bottom:859.783350px;}
.y101{bottom:861.163350px;}
.y48{bottom:861.335850px;}
.y15f{bottom:861.444750px;}
.y8a{bottom:861.853350px;}
.yca{bottom:864.387300px;}
.y21{bottom:865.077750px;}
.y1b9{bottom:865.197750px;}
.y6a{bottom:876.669450px;}
.y15e{bottom:879.444750px;}
.ya8{bottom:881.242350px;}
.y100{bottom:881.932350px;}
.y47{bottom:882.018600px;}
.y3{bottom:882.085500px;}
.y89{bottom:882.277350px;}
.y121{bottom:882.908850px;}
.y140{bottom:883.444350px;}
.y20{bottom:884.637750px;}
.y1b8{bottom:884.697750px;}
.y15d{bottom:897.444750px;}
.y69{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.y45{bottom:966.189000px;}
.hb{height:40.620539px;}
.h7{height:46.757812px;}
.hc{height:51.826172px;}
.h10{height:55.488281px;}
.h4{height:58.447266px;}
.h3{height:61.369629px;}
.hd{height:62.191406px;}
.h9{height:67.214355px;}
.ha{height:67.461555px;}
.h2{height:73.059082px;}
.h8{height:78.903809px;}
.h6{height:81.826172px;}
.he{height:87.826172px;}
.h5{height:105.205078px;}
.hf{height:130.447266px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.214250px;}
.x6{left:83.782500px;}
.x1{left:85.039350px;}
.x28{left:93.602400px;}
.x4{left:105.029250px;}
.x3{left:106.365600px;}
.x25{left:173.934150px;}
.x20{left:183.492450px;}
.x22{left:186.507450px;}
.x13{left:188.997150px;}
.x14{left:190.227150px;}
.x1b{left:191.356500px;}
.x1c{left:193.876500px;}
.x11{left:194.922150px;}
.x23{left:197.892450px;}
.x21{left:199.917450px;}
.x12{left:204.192150px;}
.x7{left:231.420600px;}
.x2{left:233.415450px;}
.x29{left:239.207400px;}
.x2a{left:242.402400px;}
.x1a{left:322.332900px;}
.xa{left:324.597300px;}
.x19{left:327.203250px;}
.xf{left:328.512450px;}
.xc{left:330.717450px;}
.xd{left:332.217450px;}
.xe{left:334.722450px;}
.x10{left:335.832750px;}
.xb{left:339.177300px;}
.x9{left:340.512300px;}
.x8{left:342.957300px;}
.x1f{left:344.301600px;}
.x27{left:459.024000px;}
.x17{left:470.472300px;}
.x26{left:472.179000px;}
.x1e{left:479.714700px;}
.x1d{left:480.809700px;}
.x16{left:484.617300px;}
.x24{left:487.948800px;}
.x15{left:489.747300px;}
.x18{left:492.627300px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.310400pt;}
.v3{vertical-align:32.000000pt;}
.v4{vertical-align:64.000000pt;}
.ls14{letter-spacing:-6.552000pt;}
.ls2{letter-spacing:-4.592000pt;}
.ls6a{letter-spacing:-4.293333pt;}
.ls56{letter-spacing:-3.986667pt;}
.ls3f{letter-spacing:-3.925333pt;}
.ls80{letter-spacing:-3.733333pt;}
.ls41{letter-spacing:-3.557333pt;}
.ls57{letter-spacing:-3.434667pt;}
.ls2b{letter-spacing:-2.880000pt;}
.ls85{letter-spacing:-2.720000pt;}
.ls77{letter-spacing:-2.632000pt;}
.ls1c{letter-spacing:-2.576000pt;}
.ls81{letter-spacing:-2.560000pt;}
.ls78{letter-spacing:-2.408000pt;}
.ls37{letter-spacing:-2.304000pt;}
.ls86{letter-spacing:-2.240000pt;}
.ls1b{letter-spacing:-2.208000pt;}
.ls12{letter-spacing:-2.200000pt;}
.ls48{letter-spacing:-2.048000pt;}
.ls61{letter-spacing:-1.866667pt;}
.ls63{letter-spacing:-1.813333pt;}
.ls23{letter-spacing:-1.717333pt;}
.ls35{letter-spacing:-1.706667pt;}
.ls54{letter-spacing:-1.656000pt;}
.ls1a{letter-spacing:-1.594667pt;}
.ls39{letter-spacing:-1.493333pt;}
.ls68{letter-spacing:-1.472000pt;}
.ls38{letter-spacing:-1.440000pt;}
.ls19{letter-spacing:-1.410667pt;}
.ls42{letter-spacing:-1.349333pt;}
.ls34{letter-spacing:-1.333333pt;}
.ls20{letter-spacing:-1.288000pt;}
.ls33{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-1.226667pt;}
.ls45{letter-spacing:-1.165333pt;}
.ls9{letter-spacing:-1.120000pt;}
.ls2d{letter-spacing:-1.104000pt;}
.ls3a{letter-spacing:-1.066667pt;}
.ls2e{letter-spacing:-1.042667pt;}
.ls8{letter-spacing:-1.013333pt;}
.ls3e{letter-spacing:-0.981333pt;}
.ls26{letter-spacing:-0.920000pt;}
.ls31{letter-spacing:-0.906667pt;}
.ls2f{letter-spacing:-0.858667pt;}
.ls30{letter-spacing:-0.853333pt;}
.ls79{letter-spacing:-0.840000pt;}
.ls5f{letter-spacing:-0.800000pt;}
.ls51{letter-spacing:-0.797333pt;}
.ls7b{letter-spacing:-0.784000pt;}
.ls60{letter-spacing:-0.746667pt;}
.ls22{letter-spacing:-0.736000pt;}
.ls71{letter-spacing:-0.728000pt;}
.ls27{letter-spacing:-0.674667pt;}
.ls5b{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.613333pt;}
.ls62{letter-spacing:-0.586667pt;}
.ls6f{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.552000pt;}
.ls3b{letter-spacing:-0.533333pt;}
.ls40{letter-spacing:-0.490667pt;}
.lse{letter-spacing:-0.480000pt;}
.ls47{letter-spacing:-0.448000pt;}
.ls50{letter-spacing:-0.429333pt;}
.ls87{letter-spacing:-0.426667pt;}
.ls76{letter-spacing:-0.392000pt;}
.ls21{letter-spacing:-0.368000pt;}
.ls6c{letter-spacing:-0.336000pt;}
.ls82{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.306667pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls7a{letter-spacing:-0.224000pt;}
.ls53{letter-spacing:-0.216000pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls67{letter-spacing:-0.184000pt;}
.ls70{letter-spacing:-0.168000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.122667pt;}
.ls4a{letter-spacing:-0.106667pt;}
.ls65{letter-spacing:-0.072000pt;}
.ls64{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.061333pt;}
.ls7e{letter-spacing:0.168000pt;}
.ls32{letter-spacing:0.213333pt;}
.ls4e{letter-spacing:0.245333pt;}
.ls5c{letter-spacing:0.266667pt;}
.ls46{letter-spacing:0.320000pt;}
.ls44{letter-spacing:0.368000pt;}
.ls1e{letter-spacing:0.484533pt;}
.ls43{letter-spacing:0.490667pt;}
.ls59{letter-spacing:0.613333pt;}
.ls6e{letter-spacing:0.672000pt;}
.ls28{letter-spacing:0.674667pt;}
.ls52{letter-spacing:0.736000pt;}
.ls29{letter-spacing:0.920000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls15{letter-spacing:0.981333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls4f{letter-spacing:1.042667pt;}
.ls72{letter-spacing:1.064000pt;}
.ls69{letter-spacing:1.104000pt;}
.ls6{letter-spacing:1.120000pt;}
.ls16{letter-spacing:1.410667pt;}
.ls18{letter-spacing:1.594667pt;}
.ls4d{letter-spacing:1.656000pt;}
.ls2c{letter-spacing:1.800000pt;}
.ls5{letter-spacing:1.848000pt;}
.ls11{letter-spacing:2.133333pt;}
.ls13{letter-spacing:3.285333pt;}
.ls5e{letter-spacing:3.721067pt;}
.lsc{letter-spacing:3.733333pt;}
.ls6d{letter-spacing:4.088000pt;}
.ls7{letter-spacing:5.120000pt;}
.ls7c{letter-spacing:5.208000pt;}
.lsd{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls75{letter-spacing:5.544000pt;}
.ls6b{letter-spacing:5.600000pt;}
.ls7d{letter-spacing:6.216000pt;}
.ls84{letter-spacing:7.680000pt;}
.ls55{letter-spacing:9.322667pt;}
.ls74{letter-spacing:11.312000pt;}
.ls4c{letter-spacing:13.861333pt;}
.ls10{letter-spacing:422.421333pt;}
.ls4b{letter-spacing:422.548267pt;}
.ls5d{letter-spacing:422.981333pt;}
.ls73{letter-spacing:423.148267pt;}
.ls7f{letter-spacing:424.141333pt;}
.ls2a{letter-spacing:424.814933pt;}
.ls83{letter-spacing:426.734933pt;}
.ls0{letter-spacing:846.686933pt;}
.ls3c{letter-spacing:847.126933pt;}
.ls5a{letter-spacing:849.460267pt;}
.ls66{letter-spacing:853.060267pt;}
.ls1d{letter-spacing:854.820267pt;}
.ws96{word-spacing:-22.666667pt;}
.ws2a{word-spacing:-22.032000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws70{word-spacing:-20.160000pt;}
.ws0{word-spacing:-20.106667pt;}
.ws1d{word-spacing:-18.216000pt;}
.ws41{word-spacing:-17.152000pt;}
.wsf{word-spacing:-16.533333pt;}
.ws43{word-spacing:-16.106667pt;}
.ws2d{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.824000pt;}
.ws86{word-spacing:-15.736000pt;}
.ws87{word-spacing:-15.512000pt;}
.ws78{word-spacing:-15.176000pt;}
.ws55{word-spacing:-15.026667pt;}
.ws91{word-spacing:-15.000000pt;}
.ws97{word-spacing:-14.986667pt;}
.ws2e{word-spacing:-14.976000pt;}
.ws40{word-spacing:-14.613333pt;}
.ws1f{word-spacing:-14.536000pt;}
.ws53{word-spacing:-14.474667pt;}
.ws3b{word-spacing:-14.413333pt;}
.ws54{word-spacing:-14.352000pt;}
.ws42{word-spacing:-14.293333pt;}
.ws66{word-spacing:-14.229333pt;}
.ws63{word-spacing:-14.133333pt;}
.ws3e{word-spacing:-14.106667pt;}
.ws76{word-spacing:-14.045333pt;}
.ws52{word-spacing:-13.984000pt;}
.ws1c{word-spacing:-13.922667pt;}
.ws6d{word-spacing:-13.813333pt;}
.ws56{word-spacing:-13.800000pt;}
.ws3d{word-spacing:-13.738667pt;}
.ws11{word-spacing:-13.680000pt;}
.ws79{word-spacing:-13.664000pt;}
.ws6c{word-spacing:-13.653333pt;}
.ws6b{word-spacing:-13.600000pt;}
.ws2b{word-spacing:-13.546667pt;}
.ws7b{word-spacing:-13.496000pt;}
.ws2c{word-spacing:-13.493333pt;}
.ws3c{word-spacing:-13.432000pt;}
.ws31{word-spacing:-13.333333pt;}
.ws3f{word-spacing:-13.280000pt;}
.ws95{word-spacing:-13.173333pt;}
.ws64{word-spacing:-13.120000pt;}
.ws7a{word-spacing:-13.104000pt;}
.ws65{word-spacing:-13.066667pt;}
.ws2f{word-spacing:-12.960000pt;}
.ws77{word-spacing:-12.941333pt;}
.ws30{word-spacing:-12.906667pt;}
.ws6e{word-spacing:-12.586667pt;}
.ws92{word-spacing:-12.426667pt;}
.ws10{word-spacing:-11.610667pt;}
.ws85{word-spacing:-11.424000pt;}
.ws5d{word-spacing:-9.322667pt;}
.ws8f{word-spacing:-6.216000pt;}
.ws7f{word-spacing:-5.600000pt;}
.ws88{word-spacing:-5.544000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws8e{word-spacing:-5.208000pt;}
.ws81{word-spacing:-4.088000pt;}
.wsc{word-spacing:-3.733333pt;}
.ws13{word-spacing:-3.285333pt;}
.ws99{word-spacing:-3.146667pt;}
.ws6f{word-spacing:-3.021013pt;}
.ws12{word-spacing:-2.133333pt;}
.ws6{word-spacing:-1.848000pt;}
.ws17{word-spacing:-1.594667pt;}
.ws15{word-spacing:-1.410667pt;}
.ws7{word-spacing:-1.120000pt;}
.ws7e{word-spacing:-1.104000pt;}
.ws83{word-spacing:-1.064000pt;}
.ws58{word-spacing:-1.042667pt;}
.ws14{word-spacing:-0.981333pt;}
.ws5{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.920000pt;}
.ws5b{word-spacing:-0.736000pt;}
.ws82{word-spacing:-0.672000pt;}
.ws62{word-spacing:-0.613333pt;}
.ws4a{word-spacing:-0.490667pt;}
.ws4b{word-spacing:-0.368000pt;}
.ws4d{word-spacing:-0.320000pt;}
.ws6a{word-spacing:-0.266667pt;}
.ws57{word-spacing:-0.245333pt;}
.ws36{word-spacing:-0.213333pt;}
.ws90{word-spacing:-0.168000pt;}
.ws60{word-spacing:-0.061333pt;}
.ws2{word-spacing:0.000000pt;}
.ws75{word-spacing:0.053333pt;}
.ws44{word-spacing:0.122667pt;}
.ws72{word-spacing:0.128000pt;}
.wsb{word-spacing:0.160000pt;}
.ws8b{word-spacing:0.168000pt;}
.ws7c{word-spacing:0.184000pt;}
.wsa{word-spacing:0.213333pt;}
.ws5c{word-spacing:0.216000pt;}
.wse{word-spacing:0.266667pt;}
.ws24{word-spacing:0.306667pt;}
.ws80{word-spacing:0.336000pt;}
.ws21{word-spacing:0.368000pt;}
.ws89{word-spacing:0.392000pt;}
.ws9b{word-spacing:0.426667pt;}
.ws59{word-spacing:0.429333pt;}
.ws4e{word-spacing:0.448000pt;}
.wsd{word-spacing:0.480000pt;}
.ws47{word-spacing:0.490667pt;}
.ws3a{word-spacing:0.533333pt;}
.ws16{word-spacing:0.552000pt;}
.ws84{word-spacing:0.560000pt;}
.ws26{word-spacing:0.613333pt;}
.ws69{word-spacing:0.640000pt;}
.ws28{word-spacing:0.674667pt;}
.ws22{word-spacing:0.736000pt;}
.ws74{word-spacing:0.746667pt;}
.ws8d{word-spacing:0.784000pt;}
.ws5a{word-spacing:0.797333pt;}
.ws71{word-spacing:0.800000pt;}
.ws8c{word-spacing:0.840000pt;}
.ws50{word-spacing:0.853333pt;}
.ws35{word-spacing:0.858667pt;}
.ws51{word-spacing:0.906667pt;}
.ws27{word-spacing:0.920000pt;}
.ws45{word-spacing:0.981333pt;}
.ws8{word-spacing:1.013333pt;}
.ws34{word-spacing:1.042667pt;}
.ws33{word-spacing:1.104000pt;}
.ws9{word-spacing:1.120000pt;}
.ws4c{word-spacing:1.165333pt;}
.ws25{word-spacing:1.226667pt;}
.ws37{word-spacing:1.280000pt;}
.ws20{word-spacing:1.288000pt;}
.ws38{word-spacing:1.333333pt;}
.ws49{word-spacing:1.349333pt;}
.ws18{word-spacing:1.410667pt;}
.ws67{word-spacing:1.440000pt;}
.ws7d{word-spacing:1.472000pt;}
.ws19{word-spacing:1.594667pt;}
.ws61{word-spacing:1.656000pt;}
.ws39{word-spacing:1.706667pt;}
.ws23{word-spacing:1.717333pt;}
.ws73{word-spacing:1.866667pt;}
.ws4f{word-spacing:2.048000pt;}
.ws1a{word-spacing:2.208000pt;}
.ws9a{word-spacing:2.240000pt;}
.ws68{word-spacing:2.304000pt;}
.ws1b{word-spacing:2.576000pt;}
.ws8a{word-spacing:2.632000pt;}
.ws98{word-spacing:2.720000pt;}
.ws32{word-spacing:2.880000pt;}
.ws5f{word-spacing:3.434667pt;}
.ws48{word-spacing:3.557333pt;}
.ws46{word-spacing:3.925333pt;}
.ws5e{word-spacing:3.986667pt;}
.ws3{word-spacing:4.592000pt;}
.ws94{word-spacing:274.362667pt;}
.ws93{word-spacing:344.976000pt;}
._f{margin-left:-15.493333pt;}
._18{margin-left:-10.177333pt;}
._17{margin-left:-8.628533pt;}
._b{margin-left:-7.488000pt;}
._c{margin-left:-6.482133pt;}
._a{margin-left:-5.082400pt;}
._8{margin-left:-4.048800pt;}
._7{margin-left:-2.616267pt;}
._6{margin-left:-1.253333pt;}
._5{width:0.896000pt;}
._1{width:2.133333pt;}
._d{width:3.077333pt;}
._2{width:4.250400pt;}
._4{width:5.432000pt;}
._3{width:6.720000pt;}
._9{width:7.642400pt;}
._11{width:9.436000pt;}
._12{width:10.356800pt;}
._1c{width:11.341600pt;}
._13{width:12.301867pt;}
._15{width:13.642133pt;}
._16{width:14.753867pt;}
._1a{width:17.080800pt;}
._19{width:18.416000pt;}
._1b{width:19.427200pt;}
._14{width:38.617920pt;}
._e{width:63.466667pt;}
._1d{width:97.400267pt;}
._20{width:107.746933pt;}
._1e{width:173.349333pt;}
._1f{width:177.162667pt;}
._10{width:224.896000pt;}
._0{width:514.133333pt;}
.fsd{font-size:26.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y44{bottom:94.317200pt;}
.y13f{bottom:94.327867pt;}
.yc9{bottom:94.391333pt;}
.ya7{bottom:94.485067pt;}
.y1d{bottom:94.486667pt;}
.y120{bottom:94.493067pt;}
.y1b7{bottom:94.495600pt;}
.yff{bottom:94.502400pt;}
.y68{bottom:97.150933pt;}
.y1c{bottom:112.366667pt;}
.y43{bottom:112.379867pt;}
.y88{bottom:112.526800pt;}
.ya6{bottom:112.645067pt;}
.y13e{bottom:112.807867pt;}
.y11f{bottom:112.959067pt;}
.y1b6{bottom:112.962267pt;}
.yc8{bottom:113.466000pt;}
.yfe{bottom:113.469733pt;}
.yea{bottom:114.729600pt;}
.y1b{bottom:130.246667pt;}
.y42{bottom:130.442533pt;}
.y11e{bottom:131.425067pt;}
.y1b5{bottom:131.428933pt;}
.yfd{bottom:132.437067pt;}
.yc7{bottom:132.540667pt;}
.ye9{bottom:135.015600pt;}
.y67{bottom:136.195867pt;}
.y13d{bottom:138.847867pt;}
.y186{bottom:141.728667pt;}
.y1a6{bottom:142.248933pt;}
.y1a{bottom:148.126667pt;}
.y41{bottom:148.505200pt;}
.yfc{bottom:151.404400pt;}
.yc6{bottom:151.615333pt;}
.y7e{bottom:152.814533pt;}
.y66{bottom:154.580533pt;}
.ye8{bottom:155.301600pt;}
.y11d{bottom:157.451067pt;}
.y185{bottom:157.728667pt;}
.y1a5{bottom:158.248933pt;}
.y1b4{bottom:161.228933pt;}
.y13c{bottom:164.887867pt;}
.y19{bottom:166.006667pt;}
.y40{bottom:166.567867pt;}
.y7d{bottom:168.814533pt;}
.yc5{bottom:170.690000pt;}
.y9d{bottom:171.138933pt;}
.y65{bottom:172.965200pt;}
.y184{bottom:173.728667pt;}
.y1a4{bottom:174.248933pt;}
.ye7{bottom:175.587600pt;}
.y13b{bottom:183.367867pt;}
.y11c{bottom:183.477067pt;}
.y1d8{bottom:184.171333pt;}
.y3f{bottom:184.630533pt;}
.y7c{bottom:184.814533pt;}
.y9c{bottom:187.138933pt;}
.yfb{bottom:189.274133pt;}
.y183{bottom:189.728667pt;}
.yc4{bottom:189.764667pt;}
.y1a3{bottom:190.248933pt;}
.y64{bottom:191.349867pt;}
.y18{bottom:195.220000pt;}
.ye6{bottom:195.873600pt;}
.y7b{bottom:200.814533pt;}
.y1d7{bottom:202.171333pt;}
.y3e{bottom:202.693200pt;}
.y9b{bottom:203.138933pt;}
.y182{bottom:205.728667pt;}
.y1a2{bottom:206.248933pt;}
.yc3{bottom:208.839333pt;}
.y13a{bottom:209.407867pt;}
.y11b{bottom:209.503067pt;}
.y63{bottom:209.734533pt;}
.y1b3{bottom:213.720800pt;}
.ye5{bottom:216.159600pt;}
.y7a{bottom:216.814533pt;}
.y1d6{bottom:220.171333pt;}
.y3d{bottom:220.755867pt;}
.y181{bottom:221.728667pt;}
.y1a1{bottom:222.248933pt;}
.yc2{bottom:227.914000pt;}
.y11a{bottom:227.969067pt;}
.y62{bottom:228.119200pt;}
.y139{bottom:235.447867pt;}
.ye4{bottom:236.445600pt;}
.y180{bottom:237.728667pt;}
.y1d5{bottom:238.171333pt;}
.y1a0{bottom:238.248933pt;}
.y3c{bottom:238.818533pt;}
.y1b2{bottom:238.846133pt;}
.y17{bottom:239.553333pt;}
.yfa{bottom:245.628400pt;}
.y61{bottom:246.503867pt;}
.yc1{bottom:246.988667pt;}
.y17f{bottom:253.728667pt;}
.y138{bottom:253.927867pt;}
.y119{bottom:253.995067pt;}
.y19f{bottom:254.248933pt;}
.ye3{bottom:256.731600pt;}
.y3b{bottom:256.881200pt;}
.y16{bottom:258.766667pt;}
.y15c{bottom:259.530533pt;}
.yf9{bottom:264.595733pt;}
.y60{bottom:264.888533pt;}
.yc0{bottom:266.063333pt;}
.y1d4{bottom:267.504667pt;}
.y17e{bottom:269.728667pt;}
.y19e{bottom:270.248933pt;}
.y137{bottom:272.407867pt;}
.y118{bottom:272.461067pt;}
.y87{bottom:273.318667pt;}
.y3a{bottom:274.943867pt;}
.y15b{bottom:275.530533pt;}
.ye2{bottom:277.017600pt;}
.y15{bottom:277.973733pt;}
.ya2{bottom:282.519600pt;}
.y5f{bottom:283.273200pt;}
.yf8{bottom:283.563067pt;}
.ybf{bottom:285.138000pt;}
.y1d3{bottom:285.504667pt;}
.y17d{bottom:285.728667pt;}
.y19d{bottom:286.248933pt;}
.y86{bottom:289.318667pt;}
.y15a{bottom:291.530533pt;}
.y39{bottom:293.006533pt;}
.y81{bottom:294.872400pt;}
.y14{bottom:295.853733pt;}
.ya1{bottom:297.191600pt;}
.ye1{bottom:297.303600pt;}
.y136{bottom:298.447867pt;}
.y117{bottom:298.487067pt;}
.ya5{bottom:299.643200pt;}
.y5e{bottom:301.657867pt;}
.y17c{bottom:301.728667pt;}
.y19c{bottom:302.248933pt;}
.yf7{bottom:302.530400pt;}
.y1d2{bottom:303.504667pt;}
.ybe{bottom:304.212667pt;}
.y85{bottom:305.318667pt;}
.y159{bottom:307.530533pt;}
.y38{bottom:311.069200pt;}
.ya0{bottom:311.863600pt;}
.y13{bottom:313.733733pt;}
.ya4{bottom:315.643200pt;}
.y116{bottom:316.953067pt;}
.y80{bottom:317.098133pt;}
.ye0{bottom:317.589600pt;}
.y17b{bottom:317.728667pt;}
.y19b{bottom:318.248933pt;}
.y5d{bottom:320.042533pt;}
.y1b1{bottom:321.128667pt;}
.y84{bottom:321.318667pt;}
.yf6{bottom:321.497733pt;}
.y1d1{bottom:321.504667pt;}
.ybd{bottom:323.287333pt;}
.y158{bottom:323.530533pt;}
.y135{bottom:324.487867pt;}
.y37{bottom:329.131867pt;}
.y12{bottom:331.613733pt;}
.ya3{bottom:331.643200pt;}
.y7f{bottom:331.764800pt;}
.y17a{bottom:333.728667pt;}
.y9f{bottom:334.089333pt;}
.y19a{bottom:334.248933pt;}
.y1b0{bottom:337.128667pt;}
.y83{bottom:337.318667pt;}
.ydf{bottom:337.875600pt;}
.y5c{bottom:338.427200pt;}
.y157{bottom:339.530533pt;}
.yf5{bottom:340.465067pt;}
.ybc{bottom:342.362000pt;}
.y115{bottom:342.979067pt;}
.y36{bottom:347.194533pt;}
.y9e{bottom:348.756000pt;}
.y11{bottom:349.493733pt;}
.y179{bottom:349.728667pt;}
.y199{bottom:350.248933pt;}
.y134{bottom:350.527867pt;}
.y1d0{bottom:350.838000pt;}
.y82{bottom:353.318667pt;}
.y156{bottom:355.530533pt;}
.y5b{bottom:356.811867pt;}
.y1af{bottom:357.328667pt;}
.yde{bottom:358.161600pt;}
.yf4{bottom:359.432400pt;}
.ybb{bottom:361.436667pt;}
.y35{bottom:365.257200pt;}
.y178{bottom:365.728667pt;}
.y198{bottom:366.248933pt;}
.y10{bottom:367.373733pt;}
.y114{bottom:369.005067pt;}
.y155{bottom:371.530533pt;}
.y1ae{bottom:373.328667pt;}
.y5a{bottom:375.196533pt;}
.y133{bottom:376.567867pt;}
.yf3{bottom:378.399733pt;}
.ydd{bottom:378.447600pt;}
.yba{bottom:380.511333pt;}
.y177{bottom:381.728667pt;}
.y197{bottom:382.248933pt;}
.y34{bottom:383.319867pt;}
.yf{bottom:385.253733pt;}
.y154{bottom:387.530533pt;}
.y1cf{bottom:387.731333pt;}
.y1ad{bottom:389.328667pt;}
.y59{bottom:393.581200pt;}
.y176{bottom:397.728667pt;}
.y196{bottom:398.248933pt;}
.yb9{bottom:399.586000pt;}
.y33{bottom:401.382533pt;}
.y132{bottom:402.607867pt;}
.y153{bottom:403.530533pt;}
.y1ce{bottom:405.064667pt;}
.y1ac{bottom:405.328667pt;}
.y58{bottom:411.965867pt;}
.y175{bottom:413.728667pt;}
.y195{bottom:414.248933pt;}
.ye{bottom:414.467067pt;}
.yf2{bottom:416.343867pt;}
.y79{bottom:417.155867pt;}
.ydc{bottom:419.013200pt;}
.y32{bottom:419.445200pt;}
.y152{bottom:419.530533pt;}
.y131{bottom:421.087867pt;}
.y1cd{bottom:422.398000pt;}
.y1ab{bottom:425.528667pt;}
.y9a{bottom:427.480400pt;}
.y174{bottom:429.728667pt;}
.y194{bottom:430.248933pt;}
.y57{bottom:430.350533pt;}
.y78{bottom:433.155867pt;}
.y113{bottom:433.174533pt;}
.y151{bottom:435.530533pt;}
.y31{bottom:437.507867pt;}
.yb8{bottom:437.544267pt;}
.y1cc{bottom:439.731333pt;}
.y1aa{bottom:441.528667pt;}
.y99{bottom:443.480400pt;}
.y173{bottom:445.728667pt;}
.y193{bottom:446.248933pt;}
.y130{bottom:447.127867pt;}
.y56{bottom:448.735200pt;}
.y77{bottom:449.155867pt;}
.y150{bottom:451.530533pt;}
.y112{bottom:451.635867pt;}
.y30{bottom:455.570533pt;}
.y1cb{bottom:457.064667pt;}
.y1a9{bottom:457.528667pt;}
.y98{bottom:459.480400pt;}
.yb7{bottom:459.954267pt;}
.y172{bottom:461.728667pt;}
.y192{bottom:462.248933pt;}
.yd1{bottom:464.003200pt;}
.y76{bottom:465.155867pt;}
.y12f{bottom:465.607867pt;}
.yd{bottom:466.359867pt;}
.y55{bottom:467.119867pt;}
.y14f{bottom:467.530533pt;}
.y111{bottom:470.097200pt;}
.y1a8{bottom:473.528667pt;}
.y2f{bottom:473.633200pt;}
.y1ca{bottom:474.398000pt;}
.y171{bottom:477.728667pt;}
.y191{bottom:478.248933pt;}
.yd0{bottom:480.003200pt;}
.y14e{bottom:483.530533pt;}
.y110{bottom:488.558533pt;}
.y1a7{bottom:489.528667pt;}
.yc{bottom:490.906533pt;}
.y12e{bottom:491.647867pt;}
.y2e{bottom:491.695867pt;}
.y1c9{bottom:491.731333pt;}
.y170{bottom:493.728667pt;}
.y190{bottom:494.248933pt;}
.ycf{bottom:496.003200pt;}
.y14d{bottom:499.530533pt;}
.y54{bottom:504.403067pt;}
.y10f{bottom:507.019867pt;}
.y1c8{bottom:509.064667pt;}
.y16f{bottom:509.728667pt;}
.y2d{bottom:509.758533pt;}
.y12d{bottom:510.127867pt;}
.y18f{bottom:510.248933pt;}
.yce{bottom:512.003200pt;}
.y14c{bottom:515.530533pt;}
.yb6{bottom:516.281200pt;}
.y10e{bottom:525.481200pt;}
.y16e{bottom:525.728667pt;}
.y53{bottom:526.111067pt;}
.y1c7{bottom:526.398000pt;}
.y2c{bottom:527.821200pt;}
.y97{bottom:530.081200pt;}
.y18e{bottom:530.448933pt;}
.y14b{bottom:531.530533pt;}
.yb{bottom:534.367867pt;}
.yb5{bottom:535.355867pt;}
.y12c{bottom:536.167867pt;}
.y16d{bottom:541.728667pt;}
.y1c6{bottom:543.731333pt;}
.y10d{bottom:543.942533pt;}
.y2b{bottom:545.883867pt;}
.y18d{bottom:546.448933pt;}
.y14a{bottom:547.530533pt;}
.y96{bottom:548.235867pt;}
.yb4{bottom:554.430533pt;}
.y16c{bottom:557.728667pt;}
.y1c5{bottom:561.064667pt;}
.y75{bottom:561.999600pt;}
.y12b{bottom:562.207867pt;}
.y10c{bottom:562.403867pt;}
.ya{bottom:562.903867pt;}
.y149{bottom:563.530533pt;}
.y2a{bottom:563.946533pt;}
.y95{bottom:566.390533pt;}
.y18c{bottom:568.877733pt;}
.yb3{bottom:573.505200pt;}
.y16b{bottom:573.728667pt;}
.y1c4{bottom:578.398000pt;}
.y74{bottom:580.031600pt;}
.y12a{bottom:580.687867pt;}
.y10b{bottom:580.865200pt;}
.y52{bottom:581.785200pt;}
.y29{bottom:582.009200pt;}
.yf1{bottom:583.383600pt;}
.y148{bottom:583.730533pt;}
.y94{bottom:584.545200pt;}
.y16a{bottom:589.728667pt;}
.y9{bottom:591.439867pt;}
.yd8{bottom:592.507067pt;}
.yb2{bottom:592.579867pt;}
.y1c3{bottom:595.731333pt;}
.yf0{bottom:598.055600pt;}
.yd4{bottom:598.060933pt;}
.y73{bottom:598.063600pt;}
.y129{bottom:599.167867pt;}
.y10a{bottom:599.326533pt;}
.y147{bottom:599.730533pt;}
.y28{bottom:600.071867pt;}
.y51{bottom:600.169867pt;}
.ydb{bottom:600.507067pt;}
.y93{bottom:602.699867pt;}
.y169{bottom:605.728667pt;}
.yd7{bottom:608.507067pt;}
.yb1{bottom:611.654533pt;}
.yef{bottom:612.727600pt;}
.y1c2{bottom:613.064667pt;}
.y72{bottom:616.095600pt;}
.yda{bottom:616.507067pt;}
.y128{bottom:617.647867pt;}
.y109{bottom:617.787867pt;}
.y27{bottom:618.134533pt;}
.y50{bottom:618.554533pt;}
.yd3{bottom:620.286667pt;}
.y92{bottom:620.854533pt;}
.y168{bottom:621.728667pt;}
.yd6{bottom:624.507067pt;}
.y18b{bottom:625.128667pt;}
.y146{bottom:625.938800pt;}
.y1c1{bottom:630.398000pt;}
.yb0{bottom:630.729200pt;}
.yd9{bottom:632.507067pt;}
.y71{bottom:634.127600pt;}
.yd2{bottom:634.953333pt;}
.y26{bottom:636.197200pt;}
.y108{bottom:636.249200pt;}
.y4f{bottom:636.939200pt;}
.y167{bottom:637.728667pt;}
.y91{bottom:639.009200pt;}
.yd5{bottom:640.507067pt;}
.y127{bottom:643.687867pt;}
.y18a{bottom:645.328667pt;}
.y8{bottom:646.439333pt;}
.y1c0{bottom:647.731333pt;}
.yee{bottom:649.620000pt;}
.yaf{bottom:649.803867pt;}
.y70{bottom:652.159600pt;}
.y166{bottom:653.728667pt;}
.y25{bottom:654.259867pt;}
.y107{bottom:654.710533pt;}
.y4e{bottom:655.323867pt;}
.y90{bottom:657.163867pt;}
.y189{bottom:661.328667pt;}
.y1bf{bottom:665.064667pt;}
.yae{bottom:668.878533pt;}
.y126{bottom:669.727867pt;}
.y165{bottom:669.728667pt;}
.y6f{bottom:670.191600pt;}
.y106{bottom:673.171867pt;}
.y7{bottom:673.212667pt;}
.y4d{bottom:673.708533pt;}
.y8f{bottom:675.318533pt;}
.y188{bottom:677.328667pt;}
.y145{bottom:680.143867pt;}
.y1be{bottom:682.398000pt;}
.y24{bottom:683.655467pt;}
.y164{bottom:685.728667pt;}
.yad{bottom:687.953200pt;}
.y125{bottom:688.207867pt;}
.y6e{bottom:688.223600pt;}
.y105{bottom:691.633200pt;}
.y4c{bottom:692.093200pt;}
.y6{bottom:692.424667pt;}
.y8e{bottom:693.473200pt;}
.y187{bottom:697.528667pt;}
.y144{bottom:698.147867pt;}
.y1bd{bottom:699.731333pt;}
.y163{bottom:701.728667pt;}
.y6d{bottom:706.255600pt;}
.yac{bottom:707.027867pt;}
.y104{bottom:710.094533pt;}
.y4b{bottom:710.477867pt;}
.y8d{bottom:711.627867pt;}
.y124{bottom:714.247867pt;}
.y143{bottom:716.151867pt;}
.y1bc{bottom:717.064667pt;}
.y162{bottom:717.728667pt;}
.ycd{bottom:720.344267pt;}
.y6c{bottom:724.287600pt;}
.yab{bottom:726.102533pt;}
.yed{bottom:728.344400pt;}
.y103{bottom:728.555867pt;}
.y4a{bottom:728.862533pt;}
.y8c{bottom:729.782533pt;}
.y23{bottom:731.506533pt;}
.y161{bottom:733.728667pt;}
.y1bb{bottom:734.398000pt;}
.ycc{bottom:736.344267pt;}
.y5{bottom:738.089333pt;}
.y123{bottom:740.287867pt;}
.y142{bottom:741.715867pt;}
.y6b{bottom:742.319600pt;}
.yec{bottom:744.344400pt;}
.yaa{bottom:745.177200pt;}
.y102{bottom:747.017200pt;}
.y49{bottom:747.247200pt;}
.y8b{bottom:747.937200pt;}
.y160{bottom:749.728667pt;}
.y22{bottom:750.226533pt;}
.y1ba{bottom:751.731333pt;}
.ycb{bottom:752.344267pt;}
.y4{bottom:757.302667pt;}
.y122{bottom:758.767867pt;}
.y141{bottom:759.719867pt;}
.yeb{bottom:760.344400pt;}
.ya9{bottom:764.251867pt;}
.y101{bottom:765.478533pt;}
.y48{bottom:765.631867pt;}
.y15f{bottom:765.728667pt;}
.y8a{bottom:766.091867pt;}
.yca{bottom:768.344267pt;}
.y21{bottom:768.958000pt;}
.y1b9{bottom:769.064667pt;}
.y6a{bottom:779.261733pt;}
.y15e{bottom:781.728667pt;}
.ya8{bottom:783.326533pt;}
.y100{bottom:783.939867pt;}
.y47{bottom:784.016533pt;}
.y3{bottom:784.076000pt;}
.y89{bottom:784.246533pt;}
.y121{bottom:784.807867pt;}
.y140{bottom:785.283867pt;}
.y20{bottom:786.344667pt;}
.y1b8{bottom:786.398000pt;}
.y15d{bottom:797.728667pt;}
.y69{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.y45{bottom:858.834667pt;}
.hb{height:36.107146pt;}
.h7{height:41.562500pt;}
.hc{height:46.067708pt;}
.h10{height:49.322917pt;}
.h4{height:51.953125pt;}
.h3{height:54.550781pt;}
.hd{height:55.281250pt;}
.h9{height:59.746094pt;}
.ha{height:59.965827pt;}
.h2{height:64.941406pt;}
.h8{height:70.136719pt;}
.h6{height:72.734375pt;}
.he{height:78.067708pt;}
.h5{height:93.515625pt;}
.hf{height:115.953125pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:73.079333pt;}
.x6{left:74.473333pt;}
.x1{left:75.590533pt;}
.x28{left:83.202133pt;}
.x4{left:93.359333pt;}
.x3{left:94.547200pt;}
.x25{left:154.608133pt;}
.x20{left:163.104400pt;}
.x22{left:165.784400pt;}
.x13{left:167.997467pt;}
.x14{left:169.090800pt;}
.x1b{left:170.094667pt;}
.x1c{left:172.334667pt;}
.x11{left:173.264133pt;}
.x23{left:175.904400pt;}
.x21{left:177.704400pt;}
.x12{left:181.504133pt;}
.x7{left:205.707200pt;}
.x2{left:207.480400pt;}
.x29{left:212.628800pt;}
.x2a{left:215.468800pt;}
.x1a{left:286.518133pt;}
.xa{left:288.530933pt;}
.x19{left:290.847333pt;}
.xf{left:292.011067pt;}
.xc{left:293.971067pt;}
.xd{left:295.304400pt;}
.xe{left:297.531067pt;}
.x10{left:298.518000pt;}
.xb{left:301.490933pt;}
.x9{left:302.677600pt;}
.x8{left:304.850933pt;}
.x1f{left:306.045867pt;}
.x27{left:408.021333pt;}
.x17{left:418.197600pt;}
.x26{left:419.714667pt;}
.x1e{left:426.413067pt;}
.x1d{left:427.386400pt;}
.x16{left:430.770933pt;}
.x24{left:433.732267pt;}
.x15{left:435.330933pt;}
.x18{left:437.890933pt;}
}




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