
    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_47c420aef0d0499640e9e7c1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_3f79bca49d10fb6733ec84ce.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_164b852c814560a9793bcbb7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_352b8a5be798d8bd95cde56e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_ab93ab2ef82fdcb29bb3fb6d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_b2c628c3012bec9fc12a4f5f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;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_8af834f6976dd7e5756e59d6.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1bab3d18b218e60bfed53fc0.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v5{vertical-align:-16.980000px;}
.v2{vertical-align:-11.982000px;}
.v6{vertical-align:-10.980000px;}
.v3{vertical-align:-7.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.980000px;}
.v1{vertical-align:29.964000px;}
.ls5f{letter-spacing:-8.487000px;}
.ls54{letter-spacing:-6.279000px;}
.ls5b{letter-spacing:-6.072000px;}
.ls2a{letter-spacing:-4.680000px;}
.ls2e{letter-spacing:-4.200000px;}
.ls75{letter-spacing:-3.900000px;}
.ls99{letter-spacing:-3.780000px;}
.ls80{letter-spacing:-3.726000px;}
.lsa5{letter-spacing:-3.465000px;}
.ls78{letter-spacing:-3.450000px;}
.ls92{letter-spacing:-3.150000px;}
.ls4f{letter-spacing:-3.105000px;}
.ls6d{letter-spacing:-2.829000px;}
.ls90{letter-spacing:-2.772000px;}
.ls70{letter-spacing:-2.553000px;}
.ls2b{letter-spacing:-2.520000px;}
.ls7f{letter-spacing:-2.484000px;}
.ls14{letter-spacing:-2.475000px;}
.ls84{letter-spacing:-2.415000px;}
.ls6f{letter-spacing:-2.346000px;}
.ls5e{letter-spacing:-2.277000px;}
.ls6b{letter-spacing:-2.208000px;}
.ls42{letter-spacing:-2.139000px;}
.ls44{letter-spacing:-2.070000px;}
.ls4d{letter-spacing:-2.001000px;}
.lsa3{letter-spacing:-1.953000px;}
.ls3f{letter-spacing:-1.932000px;}
.ls65{letter-spacing:-1.863000px;}
.ls93{letter-spacing:-1.827000px;}
.ls4b{letter-spacing:-1.794000px;}
.lsa8{letter-spacing:-1.764000px;}
.ls47{letter-spacing:-1.725000px;}
.ls46{letter-spacing:-1.656000px;}
.ls8f{letter-spacing:-1.638000px;}
.ls18{letter-spacing:-1.620000px;}
.ls5d{letter-spacing:-1.587000px;}
.ls50{letter-spacing:-1.518000px;}
.ls9c{letter-spacing:-1.512000px;}
.ls1c{letter-spacing:-1.500000px;}
.ls40{letter-spacing:-1.449000px;}
.ls17{letter-spacing:-1.440000px;}
.ls43{letter-spacing:-1.380000px;}
.lsc{letter-spacing:-1.320000px;}
.ls3e{letter-spacing:-1.311000px;}
.ls96{letter-spacing:-1.260000px;}
.ls4a{letter-spacing:-1.242000px;}
.ls91{letter-spacing:-1.197000px;}
.ls41{letter-spacing:-1.173000px;}
.ls9b{letter-spacing:-1.134000px;}
.ls51{letter-spacing:-1.104000px;}
.ls20{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-1.035000px;}
.lsb4{letter-spacing:-1.020000px;}
.ls48{letter-spacing:-0.966000px;}
.ls2c{letter-spacing:-0.960000px;}
.ls98{letter-spacing:-0.945000px;}
.ls28{letter-spacing:-0.900000px;}
.ls3c{letter-spacing:-0.897000px;}
.ls97{letter-spacing:-0.882000px;}
.ls21{letter-spacing:-0.840000px;}
.ls35{letter-spacing:-0.828000px;}
.ls8e{letter-spacing:-0.819000px;}
.ls25{letter-spacing:-0.780000px;}
.ls6a{letter-spacing:-0.759000px;}
.ls89{letter-spacing:-0.756000px;}
.lsb3{letter-spacing:-0.720000px;}
.ls8c{letter-spacing:-0.693000px;}
.ls4c{letter-spacing:-0.690000px;}
.ls1b{letter-spacing:-0.660000px;}
.lsa7{letter-spacing:-0.630000px;}
.ls33{letter-spacing:-0.621000px;}
.ls1d{letter-spacing:-0.600000px;}
.lsa2{letter-spacing:-0.567000px;}
.ls49{letter-spacing:-0.552000px;}
.ls3d{letter-spacing:-0.483000px;}
.ls19{letter-spacing:-0.480000px;}
.lsa0{letter-spacing:-0.441000px;}
.lsb{letter-spacing:-0.420000px;}
.ls32{letter-spacing:-0.414000px;}
.ls95{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.360000px;}
.ls67{letter-spacing:-0.345000px;}
.ls1f{letter-spacing:-0.300000px;}
.ls5c{letter-spacing:-0.276000px;}
.ls6{letter-spacing:-0.252000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls66{letter-spacing:-0.207000px;}
.lsb0{letter-spacing:-0.189000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls60{letter-spacing:-0.138000px;}
.lsa1{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.120000px;}
.ls83{letter-spacing:-0.069000px;}
.lsa{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.004500px;}
.ls7e{letter-spacing:0.069000px;}
.ls79{letter-spacing:0.138000px;}
.lsaa{letter-spacing:0.150000px;}
.ls24{letter-spacing:0.180000px;}
.ls8b{letter-spacing:0.189000px;}
.ls62{letter-spacing:0.219000px;}
.ls7{letter-spacing:0.240000px;}
.ls8a{letter-spacing:0.252000px;}
.ls7c{letter-spacing:0.258000px;}
.ls9e{letter-spacing:0.378000px;}
.ls76{letter-spacing:0.414000px;}
.ls12{letter-spacing:0.516000px;}
.ls55{letter-spacing:0.621000px;}
.ls22{letter-spacing:0.660000px;}
.lsab{letter-spacing:0.714000px;}
.ls37{letter-spacing:0.759000px;}
.ls52{letter-spacing:0.864000px;}
.lsa4{letter-spacing:0.882000px;}
.ls9f{letter-spacing:0.945000px;}
.lsd{letter-spacing:0.960000px;}
.ls10{letter-spacing:0.972000px;}
.ls1{letter-spacing:0.978000px;}
.ls72{letter-spacing:1.006500px;}
.ls2d{letter-spacing:1.080000px;}
.ls58{letter-spacing:1.083000px;}
.ls8{letter-spacing:1.092000px;}
.ls38{letter-spacing:1.104000px;}
.ls11{letter-spacing:1.114800px;}
.lsa6{letter-spacing:1.134000px;}
.lsaf{letter-spacing:1.197000px;}
.lsf{letter-spacing:1.200000px;}
.ls30{letter-spacing:1.242000px;}
.ls15{letter-spacing:1.260000px;}
.ls59{letter-spacing:1.264500px;}
.ls73{letter-spacing:1.372500px;}
.ls56{letter-spacing:1.380000px;}
.ls82{letter-spacing:1.794000px;}
.ls29{letter-spacing:1.860000px;}
.ls68{letter-spacing:1.863000px;}
.ls63{letter-spacing:1.996500px;}
.lsb1{letter-spacing:2.016000px;}
.ls64{letter-spacing:2.139000px;}
.ls16{letter-spacing:2.340000px;}
.ls13{letter-spacing:2.400000px;}
.ls5a{letter-spacing:2.484000px;}
.ls74{letter-spacing:2.896500px;}
.ls4e{letter-spacing:3.036000px;}
.ls6e{letter-spacing:3.519000px;}
.lsac{letter-spacing:3.522000px;}
.lsad{letter-spacing:3.528000px;}
.ls2f{letter-spacing:3.696000px;}
.lsb2{letter-spacing:3.720000px;}
.ls7a{letter-spacing:4.278000px;}
.ls87{letter-spacing:4.347000px;}
.ls39{letter-spacing:4.494000px;}
.ls85{letter-spacing:4.515000px;}
.ls45{letter-spacing:4.623000px;}
.ls27{letter-spacing:5.460000px;}
.ls8d{letter-spacing:5.481000px;}
.ls86{letter-spacing:5.670000px;}
.ls5{letter-spacing:5.820000px;}
.lsae{letter-spacing:5.859000px;}
.ls9{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls81{letter-spacing:6.072000px;}
.ls88{letter-spacing:6.300000px;}
.lsa9{letter-spacing:6.342000px;}
.ls7d{letter-spacing:7.011000px;}
.ls4{letter-spacing:7.020000px;}
.ls94{letter-spacing:7.056000px;}
.ls9a{letter-spacing:7.497000px;}
.ls77{letter-spacing:9.936000px;}
.ls6c{letter-spacing:14.559000px;}
.ls53{letter-spacing:474.636000px;}
.ls61{letter-spacing:474.823800px;}
.ls36{letter-spacing:475.078800px;}
.lse{letter-spacing:476.503800px;}
.ls7b{letter-spacing:478.596000px;}
.ls71{letter-spacing:480.223800px;}
.lsb5{letter-spacing:481.003800px;}
.ls9d{letter-spacing:481.963800px;}
.ls69{letter-spacing:952.524000px;}
.ls31{letter-spacing:953.022000px;}
.ls3a{letter-spacing:955.644000px;}
.ls57{letter-spacing:959.694000px;}
.ls0{letter-spacing:961.674000px;}
.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;}
}
.ws77{word-spacing:-31.602000px;}
.ws0{word-spacing:-23.880000px;}
.ws96{word-spacing:-23.373000px;}
.ws1{word-spacing:-22.740000px;}
.ws97{word-spacing:-22.050000px;}
.wsbf{word-spacing:-20.580000px;}
.ws40{word-spacing:-19.389000px;}
.wsb6{word-spacing:-18.837000px;}
.wsb3{word-spacing:-18.648000px;}
.ws79{word-spacing:-18.630000px;}
.wsd{word-spacing:-18.600000px;}
.ws95{word-spacing:-18.561000px;}
.ws45{word-spacing:-18.423000px;}
.ws62{word-spacing:-18.240000px;}
.wsb2{word-spacing:-18.081000px;}
.ws99{word-spacing:-17.703000px;}
.ws34{word-spacing:-17.595000px;}
.wsbd{word-spacing:-17.514000px;}
.ws82{word-spacing:-17.457000px;}
.ws81{word-spacing:-17.175000px;}
.ws8b{word-spacing:-17.112000px;}
.wsbe{word-spacing:-17.073000px;}
.ws74{word-spacing:-16.905000px;}
.wsb1{word-spacing:-16.875000px;}
.ws78{word-spacing:-16.836000px;}
.ws8c{word-spacing:-16.767000px;}
.ws47{word-spacing:-16.629000px;}
.ws1c{word-spacing:-16.560000px;}
.ws44{word-spacing:-16.491000px;}
.ws9b{word-spacing:-16.443000px;}
.ws8a{word-spacing:-16.422000px;}
.ws21{word-spacing:-16.380000px;}
.ws68{word-spacing:-16.353000px;}
.ws39{word-spacing:-16.296000px;}
.ws75{word-spacing:-16.284000px;}
.ws3a{word-spacing:-16.260000px;}
.ws3d{word-spacing:-16.215000px;}
.ws4b{word-spacing:-16.146000px;}
.ws43{word-spacing:-16.077000px;}
.ws7b{word-spacing:-16.008000px;}
.ws4c{word-spacing:-15.939000px;}
.ws42{word-spacing:-15.870000px;}
.ws48{word-spacing:-15.801000px;}
.ws65{word-spacing:-15.732000px;}
.ws46{word-spacing:-15.663000px;}
.ws3e{word-spacing:-15.594000px;}
.ws9c{word-spacing:-15.561000px;}
.ws49{word-spacing:-15.525000px;}
.ws16{word-spacing:-15.480000px;}
.ws66{word-spacing:-15.456000px;}
.ws76{word-spacing:-15.387000px;}
.ws12{word-spacing:-15.360000px;}
.ws41{word-spacing:-15.318000px;}
.wsb4{word-spacing:-15.183000px;}
.ws8e{word-spacing:-15.180000px;}
.ws3f{word-spacing:-15.111000px;}
.ws11{word-spacing:-15.060000px;}
.ws18{word-spacing:-15.000000px;}
.ws4a{word-spacing:-14.973000px;}
.wsb5{word-spacing:-14.931000px;}
.ws67{word-spacing:-14.766000px;}
.ws1b{word-spacing:-14.760000px;}
.ws17{word-spacing:-14.700000px;}
.ws7a{word-spacing:-14.697000px;}
.ws8d{word-spacing:-14.628000px;}
.ws14{word-spacing:-14.580000px;}
.ws1f{word-spacing:-14.460000px;}
.ws2{word-spacing:-14.400000px;}
.ws10{word-spacing:-14.340000px;}
.ws13{word-spacing:-14.220000px;}
.wsc1{word-spacing:-14.160000px;}
.wsc0{word-spacing:-14.100000px;}
.ws1a{word-spacing:-14.040000px;}
.ws15{word-spacing:-13.980000px;}
.ws98{word-spacing:-13.923000px;}
.wsc2{word-spacing:-13.920000px;}
.wsc3{word-spacing:-13.860000px;}
.wsc4{word-spacing:-13.800000px;}
.ws1e{word-spacing:-13.740000px;}
.ws9a{word-spacing:-13.734000px;}
.ws3{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.380000px;}
.ws19{word-spacing:-13.200000px;}
.wse{word-spacing:-13.062000px;}
.ws20{word-spacing:-12.660000px;}
.ws1d{word-spacing:-12.180000px;}
.ws35{word-spacing:-11.303787px;}
.ws85{word-spacing:-9.936000px;}
.wsae{word-spacing:-7.497000px;}
.wsa9{word-spacing:-7.056000px;}
.ws9d{word-spacing:-6.300000px;}
.ws91{word-spacing:-6.072000px;}
.ws5{word-spacing:-6.000000px;}
.wscb{word-spacing:-5.880000px;}
.wsc5{word-spacing:-5.859000px;}
.ws6{word-spacing:-5.820000px;}
.wsa2{word-spacing:-5.481000px;}
.ws2c{word-spacing:-5.460000px;}
.ws55{word-spacing:-4.623000px;}
.ws89{word-spacing:-4.278000px;}
.ws32{word-spacing:-3.696000px;}
.ws7f{word-spacing:-3.519000px;}
.ws5e{word-spacing:-3.036000px;}
.ws69{word-spacing:-2.484000px;}
.ws22{word-spacing:-2.400000px;}
.ws23{word-spacing:-2.340000px;}
.wsc7{word-spacing:-2.016000px;}
.ws83{word-spacing:-2.001000px;}
.ws73{word-spacing:-1.863000px;}
.ws2e{word-spacing:-1.860000px;}
.ws5c{word-spacing:-1.794000px;}
.wsa8{word-spacing:-1.575000px;}
.wsc8{word-spacing:-1.260000px;}
.ws33{word-spacing:-1.242000px;}
.wsc6{word-spacing:-1.197000px;}
.ws3c{word-spacing:-1.104000px;}
.ws9{word-spacing:-1.092000px;}
.ws31{word-spacing:-1.080000px;}
.wsb{word-spacing:-0.960000px;}
.wsba{word-spacing:-0.882000px;}
.ws61{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.759000px;}
.ws64{word-spacing:-0.621000px;}
.ws9f{word-spacing:-0.252000px;}
.ws8{word-spacing:-0.240000px;}
.wsa0{word-spacing:-0.189000px;}
.ws88{word-spacing:-0.138000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:0.060000px;}
.ws92{word-spacing:0.069000px;}
.wsb7{word-spacing:0.126000px;}
.ws6d{word-spacing:0.138000px;}
.ws26{word-spacing:0.180000px;}
.ws71{word-spacing:0.207000px;}
.ws29{word-spacing:0.240000px;}
.ws7{word-spacing:0.252000px;}
.ws6b{word-spacing:0.276000px;}
.ws28{word-spacing:0.300000px;}
.ws72{word-spacing:0.345000px;}
.ws2b{word-spacing:0.360000px;}
.wsaa{word-spacing:0.378000px;}
.ws36{word-spacing:0.414000px;}
.wsc{word-spacing:0.420000px;}
.wsa4{word-spacing:0.441000px;}
.ws25{word-spacing:0.480000px;}
.ws4e{word-spacing:0.483000px;}
.ws93{word-spacing:0.552000px;}
.wsb8{word-spacing:0.567000px;}
.wscc{word-spacing:0.600000px;}
.ws37{word-spacing:0.621000px;}
.ws27{word-spacing:0.660000px;}
.ws5b{word-spacing:0.690000px;}
.wsa1{word-spacing:0.693000px;}
.ws9e{word-spacing:0.756000px;}
.ws7d{word-spacing:0.759000px;}
.ws6e{word-spacing:0.780000px;}
.wsa3{word-spacing:0.819000px;}
.ws38{word-spacing:0.828000px;}
.wsc9{word-spacing:0.840000px;}
.wsab{word-spacing:0.882000px;}
.ws4d{word-spacing:0.897000px;}
.ws2d{word-spacing:0.900000px;}
.wsac{word-spacing:0.945000px;}
.ws30{word-spacing:0.960000px;}
.ws59{word-spacing:0.966000px;}
.ws57{word-spacing:1.035000px;}
.ws2a{word-spacing:1.080000px;}
.ws94{word-spacing:1.104000px;}
.wsaf{word-spacing:1.134000px;}
.ws51{word-spacing:1.173000px;}
.wsa6{word-spacing:1.197000px;}
.ws58{word-spacing:1.242000px;}
.ws4f{word-spacing:1.311000px;}
.ws53{word-spacing:1.380000px;}
.wsb0{word-spacing:1.512000px;}
.ws60{word-spacing:1.518000px;}
.ws87{word-spacing:1.587000px;}
.ws24{word-spacing:1.620000px;}
.ws56{word-spacing:1.656000px;}
.ws70{word-spacing:1.725000px;}
.wsbc{word-spacing:1.764000px;}
.ws5a{word-spacing:1.794000px;}
.ws6f{word-spacing:1.863000px;}
.ws50{word-spacing:1.932000px;}
.wsb9{word-spacing:1.953000px;}
.ws5d{word-spacing:2.001000px;}
.ws54{word-spacing:2.070000px;}
.ws52{word-spacing:2.139000px;}
.ws7e{word-spacing:2.208000px;}
.ws7c{word-spacing:2.277000px;}
.ws84{word-spacing:2.346000px;}
.ws8f{word-spacing:2.484000px;}
.ws2f{word-spacing:2.520000px;}
.ws80{word-spacing:2.553000px;}
.wsa5{word-spacing:2.772000px;}
.ws5f{word-spacing:3.105000px;}
.wsa7{word-spacing:3.150000px;}
.ws86{word-spacing:3.450000px;}
.wsbb{word-spacing:3.465000px;}
.ws90{word-spacing:3.726000px;}
.wsad{word-spacing:3.780000px;}
.wsca{word-spacing:4.200000px;}
.ws6a{word-spacing:6.072000px;}
.ws63{word-spacing:6.279000px;}
.ws6c{word-spacing:8.487000px;}
._1b{margin-left:-23.545500px;}
._1e{margin-left:-14.805000px;}
._1a{margin-left:-11.553900px;}
._1d{margin-left:-10.314900px;}
._a{margin-left:-8.904000px;}
._19{margin-left:-7.546200px;}
._5{margin-left:-6.142800px;}
._7{margin-left:-4.536000px;}
._6{margin-left:-3.359700px;}
._8{margin-left:-2.252400px;}
._2{margin-left:-1.089900px;}
._3{width:1.203600px;}
._1{width:2.400000px;}
._9{width:3.681600px;}
._d{width:4.827900px;}
._4{width:5.973600px;}
._e{width:7.071000px;}
._13{width:8.083200px;}
._f{width:9.272400px;}
._b{width:10.308000px;}
._12{width:11.464200px;}
._14{width:12.550200px;}
._16{width:14.140500px;}
._15{width:15.159600px;}
._17{width:16.758600px;}
._18{width:18.076200px;}
._21{width:21.281400px;}
._1f{width:22.459500px;}
._1c{width:25.186200px;}
._20{width:31.521000px;}
._22{width:37.493460px;}
._c{width:43.445160px;}
._10{width:50.652000px;}
._11{width:253.008000px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fs7{font-size:31.482000px;}
.fsb{font-size:34.980000px;}
.fsd{font-size:40.227000px;}
.fsa{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:62.964000px;}
.fs3{font-size:63.000000px;}
.fsc{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs6{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y40{bottom:106.299150px;}
.y1e{bottom:106.299300px;}
.y93{bottom:109.294800px;}
.y1d{bottom:123.549300px;}
.y1ac{bottom:126.508350px;}
.y65{bottom:126.544800px;}
.ya5{bottom:126.549150px;}
.y6b{bottom:126.637050px;}
.y126{bottom:126.719850px;}
.y3f{bottom:127.073850px;}
.y150{bottom:127.257150px;}
.y92{bottom:127.801200px;}
.y18d{bottom:135.101400px;}
.y16d{bottom:135.507450px;}
.y1c{bottom:143.794800px;}
.y91{bottom:145.051200px;}
.y1ab{bottom:146.717400px;}
.ya4{bottom:146.799150px;}
.y6a{bottom:146.974800px;}
.y125{bottom:147.140400px;}
.y3e{bottom:147.848400px;}
.y14f{bottom:148.215150px;}
.y18c{bottom:155.400000px;}
.y16c{bottom:156.211500px;}
.y90{bottom:162.301500px;}
.y1aa{bottom:166.926000px;}
.ya3{bottom:167.049000px;}
.y69{bottom:167.313000px;}
.y124{bottom:167.560500px;}
.y3d{bottom:168.622500px;}
.y14e{bottom:169.173000px;}
.y64{bottom:170.563500px;}
.ydf{bottom:174.129000px;}
.y8f{bottom:182.547000px;}
.y18b{bottom:184.201500px;}
.y16b{bottom:185.419500px;}
.y1a9{bottom:187.135500px;}
.ya2{bottom:187.299000px;}
.y68{bottom:187.650000px;}
.y1b{bottom:187.813500px;}
.y123{bottom:187.981500px;}
.y3c{bottom:189.397500px;}
.y14d{bottom:190.131000px;}
.ybb{bottom:190.813500px;}
.y63{bottom:190.900500px;}
.yde{bottom:194.946000px;}
.y18a{bottom:204.499500px;}
.y16a{bottom:206.124000px;}
.y1a8{bottom:207.345000px;}
.y1a{bottom:207.375000px;}
.ya1{bottom:207.549000px;}
.y67{bottom:207.988500px;}
.y100{bottom:208.239000px;}
.y122{bottom:208.402500px;}
.yba{bottom:211.063500px;}
.y14c{bottom:211.089000px;}
.y62{bottom:211.237500px;}
.ydd{bottom:215.761500px;}
.y189{bottom:224.797500px;}
.y8e{bottom:226.564500px;}
.y19{bottom:226.938000px;}
.y1a7{bottom:227.553000px;}
.ya0{bottom:227.799000px;}
.y66{bottom:228.325500px;}
.yff{bottom:228.663000px;}
.y121{bottom:228.822000px;}
.yb9{bottom:231.313500px;}
.y61{bottom:231.574500px;}
.y14b{bottom:232.047000px;}
.y169{bottom:235.332000px;}
.ydc{bottom:236.578500px;}
.y18{bottom:246.501000px;}
.y8d{bottom:247.054500px;}
.y1a6{bottom:247.762500px;}
.y9f{bottom:248.049000px;}
.yfe{bottom:249.088500px;}
.y120{bottom:249.243000px;}
.yb8{bottom:251.563500px;}
.y60{bottom:251.911500px;}
.y14a{bottom:253.005000px;}
.y188{bottom:253.600500px;}
.y168{bottom:256.036500px;}
.ydb{bottom:257.394000px;}
.y17{bottom:266.064000px;}
.y8c{bottom:267.543000px;}
.y1a5{bottom:267.972000px;}
.y9e{bottom:268.299000px;}
.yfd{bottom:269.514000px;}
.y11f{bottom:269.664000px;}
.yb7{bottom:271.813500px;}
.y5f{bottom:272.248500px;}
.y3b{bottom:272.496000px;}
.y149{bottom:273.963000px;}
.yda{bottom:278.211000px;}
.y187{bottom:282.402000px;}
.y167{bottom:285.244500px;}
.y16{bottom:285.627000px;}
.y8b{bottom:288.031500px;}
.y1a4{bottom:288.181500px;}
.y9d{bottom:288.549000px;}
.yfc{bottom:289.939500px;}
.y11e{bottom:290.085000px;}
.yb6{bottom:292.063500px;}
.y5e{bottom:292.585500px;}
.y3a{bottom:294.019500px;}
.y148{bottom:294.921000px;}
.y6d{bottom:298.593000px;}
.yd9{bottom:299.028000px;}
.y186{bottom:302.700000px;}
.y15{bottom:305.188500px;}
.y166{bottom:305.949000px;}
.y1a3{bottom:308.389500px;}
.y8a{bottom:308.521500px;}
.y9c{bottom:308.799000px;}
.yfb{bottom:310.365000px;}
.y11d{bottom:310.504500px;}
.yb5{bottom:312.313500px;}
.y5d{bottom:312.922500px;}
.y147{bottom:315.879000px;}
.y6c{bottom:318.843000px;}
.yd8{bottom:319.843500px;}
.y185{bottom:322.999500px;}
.y14{bottom:324.751500px;}
.y1a2{bottom:328.599000px;}
.y89{bottom:329.010000px;}
.y9b{bottom:329.049000px;}
.y11c{bottom:330.925500px;}
.yb4{bottom:332.563500px;}
.y5c{bottom:333.261000px;}
.y165{bottom:335.157000px;}
.y39{bottom:336.804000px;}
.y146{bottom:336.837000px;}
.yd7{bottom:340.660500px;}
.y1a1{bottom:348.808500px;}
.y9a{bottom:349.299000px;}
.y88{bottom:349.498500px;}
.yfa{bottom:351.216000px;}
.y11b{bottom:351.346500px;}
.y184{bottom:351.801000px;}
.yb3{bottom:352.813500px;}
.y5b{bottom:353.598000px;}
.y164{bottom:355.861500px;}
.y38{bottom:356.829000px;}
.y13{bottom:357.070500px;}
.y145{bottom:357.795000px;}
.yd6{bottom:361.476000px;}
.y1a0{bottom:369.016500px;}
.y99{bottom:369.549000px;}
.y87{bottom:369.988500px;}
.yf9{bottom:371.641500px;}
.y11a{bottom:371.766000px;}
.y183{bottom:372.099000px;}
.yb2{bottom:373.063500px;}
.y5a{bottom:373.935000px;}
.y37{bottom:376.854000px;}
.y144{bottom:378.753000px;}
.yd5{bottom:382.293000px;}
.y163{bottom:385.069500px;}
.y19f{bottom:389.226000px;}
.y98{bottom:389.799000px;}
.y86{bottom:390.477000px;}
.yf8{bottom:392.067000px;}
.y119{bottom:392.187000px;}
.yb1{bottom:393.313500px;}
.y59{bottom:394.272000px;}
.y36{bottom:396.877500px;}
.y143{bottom:399.711000px;}
.y182{bottom:400.900500px;}
.yd4{bottom:403.108500px;}
.y162{bottom:405.774000px;}
.y19e{bottom:409.435500px;}
.y97{bottom:410.049000px;}
.y85{bottom:410.965500px;}
.yf7{bottom:412.492500px;}
.y118{bottom:412.608000px;}
.yb0{bottom:413.563500px;}
.y58{bottom:414.609000px;}
.y12{bottom:414.901500px;}
.y35{bottom:416.902500px;}
.y142{bottom:420.669000px;}
.y181{bottom:421.200000px;}
.yd3{bottom:423.925500px;}
.y19d{bottom:429.645000px;}
.y96{bottom:430.299000px;}
.y84{bottom:431.454000px;}
.yf6{bottom:432.918000px;}
.y117{bottom:433.027500px;}
.yaf{bottom:433.813500px;}
.y57{bottom:434.946000px;}
.y161{bottom:434.982000px;}
.y34{bottom:436.927500px;}
.y180{bottom:441.498000px;}
.y141{bottom:441.627000px;}
.y11{bottom:441.963000px;}
.yd2{bottom:444.742500px;}
.y19c{bottom:449.853000px;}
.y95{bottom:450.549000px;}
.y83{bottom:451.944000px;}
.yf5{bottom:453.343500px;}
.y116{bottom:453.448500px;}
.yae{bottom:454.063500px;}
.y56{bottom:455.283000px;}
.y160{bottom:455.686500px;}
.y33{bottom:456.952500px;}
.y17f{bottom:461.796000px;}
.y140{bottom:462.585000px;}
.yd1{bottom:465.558000px;}
.y19b{bottom:470.062500px;}
.y94{bottom:470.799000px;}
.y82{bottom:472.432500px;}
.yf4{bottom:473.769000px;}
.y115{bottom:473.869500px;}
.yad{bottom:474.313500px;}
.y55{bottom:475.620000px;}
.y15f{bottom:476.389500px;}
.y32{bottom:476.976000px;}
.y13f{bottom:483.543000px;}
.yd0{bottom:486.375000px;}
.y19a{bottom:490.272000px;}
.y10{bottom:490.285500px;}
.y17e{bottom:490.597500px;}
.y129{bottom:491.049000px;}
.y81{bottom:492.922500px;}
.yf3{bottom:494.193000px;}
.y114{bottom:494.290500px;}
.yac{bottom:494.563500px;}
.y54{bottom:495.958500px;}
.y31{bottom:497.001000px;}
.y13e{bottom:504.499500px;}
.y15e{bottom:505.599000px;}
.ycf{bottom:507.190500px;}
.y199{bottom:510.480000px;}
.y17d{bottom:510.895500px;}
.y128{bottom:511.299000px;}
.y80{bottom:513.411000px;}
.yf2{bottom:514.618500px;}
.y113{bottom:514.710000px;}
.yab{bottom:514.813500px;}
.y53{bottom:516.295500px;}
.y30{bottom:517.026000px;}
.yf{bottom:521.848500px;}
.y13d{bottom:525.457500px;}
.y15d{bottom:526.302000px;}
.yce{bottom:528.007500px;}
.y198{bottom:530.689500px;}
.y127{bottom:531.549000px;}
.y7f{bottom:533.899500px;}
.yf1{bottom:535.044000px;}
.yaa{bottom:535.063500px;}
.y112{bottom:535.131000px;}
.y52{bottom:536.632500px;}
.y2f{bottom:537.049500px;}
.y17c{bottom:539.698500px;}
.ya7{bottom:543.081000px;}
.y13c{bottom:546.415500px;}
.y15c{bottom:547.006500px;}
.ycd{bottom:548.823000px;}
.y197{bottom:550.899000px;}
.ye{bottom:553.411500px;}
.y7e{bottom:554.388000px;}
.ya9{bottom:555.313500px;}
.yf0{bottom:555.469500px;}
.y111{bottom:555.552000px;}
.y51{bottom:556.969500px;}
.y2e{bottom:557.074500px;}
.y17b{bottom:559.996500px;}
.ya6{bottom:563.331000px;}
.y13b{bottom:567.373500px;}
.ycc{bottom:569.640000px;}
.y7d{bottom:574.878000px;}
.ya8{bottom:575.563500px;}
.yef{bottom:575.895000px;}
.y110{bottom:575.971500px;}
.y15b{bottom:576.214500px;}
.y2d{bottom:577.099500px;}
.y50{bottom:577.306500px;}
.y196{bottom:583.864500px;}
.yd{bottom:584.974500px;}
.y13a{bottom:588.331500px;}
.y17a{bottom:588.798000px;}
.ycb{bottom:590.455500px;}
.y12b{bottom:594.813000px;}
.y7c{bottom:595.366500px;}
.yee{bottom:596.320500px;}
.y10f{bottom:596.392500px;}
.y15a{bottom:596.919000px;}
.y2c{bottom:597.123000px;}
.y4f{bottom:597.643500px;}
.y179{bottom:609.097500px;}
.y139{bottom:609.289500px;}
.yca{bottom:611.272500px;}
.y12a{bottom:615.064500px;}
.y7b{bottom:615.855000px;}
.yed{bottom:616.746000px;}
.y10e{bottom:616.813500px;}
.y2b{bottom:617.148000px;}
.y4e{bottom:617.980500px;}
.y159{bottom:626.127000px;}
.y138{bottom:630.247500px;}
.yc9{bottom:632.089500px;}
.y7a{bottom:636.345000px;}
.yec{bottom:637.171500px;}
.y10d{bottom:637.234500px;}
.y178{bottom:637.899000px;}
.y4d{bottom:638.317500px;}
.y195{bottom:642.340500px;}
.yc{bottom:646.300500px;}
.ybc{bottom:649.080000px;}
.y2a{bottom:649.929000px;}
.y137{bottom:651.205500px;}
.yc8{bottom:652.905000px;}
.y1b6{bottom:655.675500px;}
.y79{bottom:656.833500px;}
.yeb{bottom:657.597000px;}
.y10c{bottom:657.654000px;}
.y4c{bottom:658.654500px;}
.y177{bottom:666.700500px;}
.yb{bottom:667.363500px;}
.y194{bottom:670.050000px;}
.y136{bottom:672.163500px;}
.yc7{bottom:673.722000px;}
.y1b5{bottom:675.925500px;}
.y78{bottom:677.322000px;}
.y158{bottom:677.346000px;}
.yea{bottom:678.022500px;}
.y10b{bottom:678.075000px;}
.y176{bottom:687.000000px;}
.ya{bottom:688.426500px;}
.y135{bottom:693.121500px;}
.yc6{bottom:694.537500px;}
.y1b4{bottom:696.175500px;}
.y77{bottom:697.812000px;}
.y157{bottom:698.049000px;}
.ye9{bottom:698.448000px;}
.y10a{bottom:698.496000px;}
.y29{bottom:699.717000px;}
.y175{bottom:707.298000px;}
.y134{bottom:714.079500px;}
.yc5{bottom:715.354500px;}
.y1b3{bottom:716.425500px;}
.y9{bottom:717.993000px;}
.y76{bottom:718.300500px;}
.ye8{bottom:718.873500px;}
.y109{bottom:718.915500px;}
.y4b{bottom:719.667000px;}
.y28{bottom:721.242000px;}
.y156{bottom:727.258500px;}
.y133{bottom:735.037500px;}
.y174{bottom:736.099500px;}
.yc4{bottom:736.170000px;}
.y75{bottom:738.789000px;}
.y8{bottom:739.054500px;}
.ye7{bottom:739.297500px;}
.y108{bottom:739.336500px;}
.y4a{bottom:740.004000px;}
.y1b2{bottom:749.431500px;}
.y132{bottom:755.995500px;}
.y173{bottom:756.397500px;}
.yc3{bottom:756.987000px;}
.y74{bottom:759.279000px;}
.ye6{bottom:759.723000px;}
.y107{bottom:759.757500px;}
.y7{bottom:760.117500px;}
.y49{bottom:760.341000px;}
.y193{bottom:760.936500px;}
.y27{bottom:764.026500px;}
.y1b1{bottom:769.681500px;}
.y131{bottom:776.953500px;}
.yc2{bottom:777.802500px;}
.y73{bottom:779.767500px;}
.ye5{bottom:780.148500px;}
.y106{bottom:780.178500px;}
.y48{bottom:780.678000px;}
.y192{bottom:781.896000px;}
.y26{bottom:784.050000px;}
.y172{bottom:785.200500px;}
.y1b0{bottom:789.931500px;}
.y130{bottom:797.911500px;}
.yc1{bottom:798.619500px;}
.y155{bottom:799.180500px;}
.y72{bottom:800.256000px;}
.ye4{bottom:800.574000px;}
.y105{bottom:800.598000px;}
.y47{bottom:801.015000px;}
.y25{bottom:804.075000px;}
.y1af{bottom:810.181500px;}
.y6{bottom:810.943500px;}
.y191{bottom:811.359000px;}
.y171{bottom:814.002000px;}
.y12f{bottom:818.869500px;}
.yc0{bottom:819.436500px;}
.y154{bottom:819.885000px;}
.y71{bottom:820.746000px;}
.ye3{bottom:820.999500px;}
.y104{bottom:821.019000px;}
.y46{bottom:821.352000px;}
.y24{bottom:824.100000px;}
.y5{bottom:832.006500px;}
.y190{bottom:832.318500px;}
.y170{bottom:834.300000px;}
.y12e{bottom:839.827500px;}
.ybf{bottom:840.252000px;}
.y153{bottom:840.588000px;}
.y70{bottom:841.234500px;}
.ye2{bottom:841.425000px;}
.y103{bottom:841.440000px;}
.y45{bottom:841.689000px;}
.y1ae{bottom:843.187500px;}
.y23{bottom:844.123500px;}
.y18f{bottom:853.276500px;}
.y16f{bottom:854.598000px;}
.y12d{bottom:860.785500px;}
.ybe{bottom:861.069000px;}
.y152{bottom:861.292500px;}
.y4{bottom:861.573000px;}
.y6f{bottom:861.723000px;}
.ye1{bottom:861.850500px;}
.y102{bottom:861.861000px;}
.y44{bottom:862.027500px;}
.y22{bottom:864.148500px;}
.y16e{bottom:874.897500px;}
.y12c{bottom:881.743500px;}
.ybd{bottom:881.884500px;}
.y151{bottom:881.997000px;}
.y6e{bottom:882.213000px;}
.ye0{bottom:882.276000px;}
.y101{bottom:882.280500px;}
.y43{bottom:882.364500px;}
.y3{bottom:882.636000px;}
.y18e{bottom:882.739500px;}
.y21{bottom:884.173500px;}
.y1ad{bottom:884.698500px;}
.y42{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y20{bottom:904.198500px;}
.y1f{bottom:948.189000px;}
.y41{bottom:965.439000px;}
.h8{height:33.870539px;}
.ha{height:40.757812px;}
.h10{height:43.466309px;}
.h9{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h7{height:55.488281px;}
.hf{height:58.262695px;}
.hb{height:58.589355px;}
.hc{height:59.600098px;}
.he{height:59.667480px;}
.h2{height:63.684082px;}
.hd{height:63.811523px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:82.214250px;}
.x7{left:83.906700px;}
.x1{left:85.039350px;}
.x9{left:103.724850px;}
.x6{left:105.892950px;}
.x4{left:230.001000px;}
.x5{left:231.250500px;}
.x3{left:232.483500px;}
.x2{left:233.814000px;}
@media print{
.v5{vertical-align:-15.093333pt;}
.v2{vertical-align:-10.650667pt;}
.v6{vertical-align:-9.760000pt;}
.v3{vertical-align:-7.093333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.093333pt;}
.v1{vertical-align:26.634667pt;}
.ls5f{letter-spacing:-7.544000pt;}
.ls54{letter-spacing:-5.581333pt;}
.ls5b{letter-spacing:-5.397333pt;}
.ls2a{letter-spacing:-4.160000pt;}
.ls2e{letter-spacing:-3.733333pt;}
.ls75{letter-spacing:-3.466667pt;}
.ls99{letter-spacing:-3.360000pt;}
.ls80{letter-spacing:-3.312000pt;}
.lsa5{letter-spacing:-3.080000pt;}
.ls78{letter-spacing:-3.066667pt;}
.ls92{letter-spacing:-2.800000pt;}
.ls4f{letter-spacing:-2.760000pt;}
.ls6d{letter-spacing:-2.514667pt;}
.ls90{letter-spacing:-2.464000pt;}
.ls70{letter-spacing:-2.269333pt;}
.ls2b{letter-spacing:-2.240000pt;}
.ls7f{letter-spacing:-2.208000pt;}
.ls14{letter-spacing:-2.200000pt;}
.ls84{letter-spacing:-2.146667pt;}
.ls6f{letter-spacing:-2.085333pt;}
.ls5e{letter-spacing:-2.024000pt;}
.ls6b{letter-spacing:-1.962667pt;}
.ls42{letter-spacing:-1.901333pt;}
.ls44{letter-spacing:-1.840000pt;}
.ls4d{letter-spacing:-1.778667pt;}
.lsa3{letter-spacing:-1.736000pt;}
.ls3f{letter-spacing:-1.717333pt;}
.ls65{letter-spacing:-1.656000pt;}
.ls93{letter-spacing:-1.624000pt;}
.ls4b{letter-spacing:-1.594667pt;}
.lsa8{letter-spacing:-1.568000pt;}
.ls47{letter-spacing:-1.533333pt;}
.ls46{letter-spacing:-1.472000pt;}
.ls8f{letter-spacing:-1.456000pt;}
.ls18{letter-spacing:-1.440000pt;}
.ls5d{letter-spacing:-1.410667pt;}
.ls50{letter-spacing:-1.349333pt;}
.ls9c{letter-spacing:-1.344000pt;}
.ls1c{letter-spacing:-1.333333pt;}
.ls40{letter-spacing:-1.288000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls43{letter-spacing:-1.226667pt;}
.lsc{letter-spacing:-1.173333pt;}
.ls3e{letter-spacing:-1.165333pt;}
.ls96{letter-spacing:-1.120000pt;}
.ls4a{letter-spacing:-1.104000pt;}
.ls91{letter-spacing:-1.064000pt;}
.ls41{letter-spacing:-1.042667pt;}
.ls9b{letter-spacing:-1.008000pt;}
.ls51{letter-spacing:-0.981333pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.920000pt;}
.lsb4{letter-spacing:-0.906667pt;}
.ls48{letter-spacing:-0.858667pt;}
.ls2c{letter-spacing:-0.853333pt;}
.ls98{letter-spacing:-0.840000pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls3c{letter-spacing:-0.797333pt;}
.ls97{letter-spacing:-0.784000pt;}
.ls21{letter-spacing:-0.746667pt;}
.ls35{letter-spacing:-0.736000pt;}
.ls8e{letter-spacing:-0.728000pt;}
.ls25{letter-spacing:-0.693333pt;}
.ls6a{letter-spacing:-0.674667pt;}
.ls89{letter-spacing:-0.672000pt;}
.lsb3{letter-spacing:-0.640000pt;}
.ls8c{letter-spacing:-0.616000pt;}
.ls4c{letter-spacing:-0.613333pt;}
.ls1b{letter-spacing:-0.586667pt;}
.lsa7{letter-spacing:-0.560000pt;}
.ls33{letter-spacing:-0.552000pt;}
.ls1d{letter-spacing:-0.533333pt;}
.lsa2{letter-spacing:-0.504000pt;}
.ls49{letter-spacing:-0.490667pt;}
.ls3d{letter-spacing:-0.429333pt;}
.ls19{letter-spacing:-0.426667pt;}
.lsa0{letter-spacing:-0.392000pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls32{letter-spacing:-0.368000pt;}
.ls95{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls67{letter-spacing:-0.306667pt;}
.ls1f{letter-spacing:-0.266667pt;}
.ls5c{letter-spacing:-0.245333pt;}
.ls6{letter-spacing:-0.224000pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls66{letter-spacing:-0.184000pt;}
.lsb0{letter-spacing:-0.168000pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls60{letter-spacing:-0.122667pt;}
.lsa1{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.106667pt;}
.ls83{letter-spacing:-0.061333pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.004000pt;}
.ls7e{letter-spacing:0.061333pt;}
.ls79{letter-spacing:0.122667pt;}
.lsaa{letter-spacing:0.133333pt;}
.ls24{letter-spacing:0.160000pt;}
.ls8b{letter-spacing:0.168000pt;}
.ls62{letter-spacing:0.194667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls8a{letter-spacing:0.224000pt;}
.ls7c{letter-spacing:0.229333pt;}
.ls9e{letter-spacing:0.336000pt;}
.ls76{letter-spacing:0.368000pt;}
.ls12{letter-spacing:0.458667pt;}
.ls55{letter-spacing:0.552000pt;}
.ls22{letter-spacing:0.586667pt;}
.lsab{letter-spacing:0.634667pt;}
.ls37{letter-spacing:0.674667pt;}
.ls52{letter-spacing:0.768000pt;}
.lsa4{letter-spacing:0.784000pt;}
.ls9f{letter-spacing:0.840000pt;}
.lsd{letter-spacing:0.853333pt;}
.ls10{letter-spacing:0.864000pt;}
.ls1{letter-spacing:0.869333pt;}
.ls72{letter-spacing:0.894667pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls58{letter-spacing:0.962667pt;}
.ls8{letter-spacing:0.970667pt;}
.ls38{letter-spacing:0.981333pt;}
.ls11{letter-spacing:0.990933pt;}
.lsa6{letter-spacing:1.008000pt;}
.lsaf{letter-spacing:1.064000pt;}
.lsf{letter-spacing:1.066667pt;}
.ls30{letter-spacing:1.104000pt;}
.ls15{letter-spacing:1.120000pt;}
.ls59{letter-spacing:1.124000pt;}
.ls73{letter-spacing:1.220000pt;}
.ls56{letter-spacing:1.226667pt;}
.ls82{letter-spacing:1.594667pt;}
.ls29{letter-spacing:1.653333pt;}
.ls68{letter-spacing:1.656000pt;}
.ls63{letter-spacing:1.774667pt;}
.lsb1{letter-spacing:1.792000pt;}
.ls64{letter-spacing:1.901333pt;}
.ls16{letter-spacing:2.080000pt;}
.ls13{letter-spacing:2.133333pt;}
.ls5a{letter-spacing:2.208000pt;}
.ls74{letter-spacing:2.574667pt;}
.ls4e{letter-spacing:2.698667pt;}
.ls6e{letter-spacing:3.128000pt;}
.lsac{letter-spacing:3.130667pt;}
.lsad{letter-spacing:3.136000pt;}
.ls2f{letter-spacing:3.285333pt;}
.lsb2{letter-spacing:3.306667pt;}
.ls7a{letter-spacing:3.802667pt;}
.ls87{letter-spacing:3.864000pt;}
.ls39{letter-spacing:3.994667pt;}
.ls85{letter-spacing:4.013333pt;}
.ls45{letter-spacing:4.109333pt;}
.ls27{letter-spacing:4.853333pt;}
.ls8d{letter-spacing:4.872000pt;}
.ls86{letter-spacing:5.040000pt;}
.ls5{letter-spacing:5.173333pt;}
.lsae{letter-spacing:5.208000pt;}
.ls9{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls81{letter-spacing:5.397333pt;}
.ls88{letter-spacing:5.600000pt;}
.lsa9{letter-spacing:5.637333pt;}
.ls7d{letter-spacing:6.232000pt;}
.ls4{letter-spacing:6.240000pt;}
.ls94{letter-spacing:6.272000pt;}
.ls9a{letter-spacing:6.664000pt;}
.ls77{letter-spacing:8.832000pt;}
.ls6c{letter-spacing:12.941333pt;}
.ls53{letter-spacing:421.898667pt;}
.ls61{letter-spacing:422.065600pt;}
.ls36{letter-spacing:422.292267pt;}
.lse{letter-spacing:423.558933pt;}
.ls7b{letter-spacing:425.418667pt;}
.ls71{letter-spacing:426.865600pt;}
.lsb5{letter-spacing:427.558933pt;}
.ls9d{letter-spacing:428.412267pt;}
.ls69{letter-spacing:846.688000pt;}
.ls31{letter-spacing:847.130667pt;}
.ls3a{letter-spacing:849.461333pt;}
.ls57{letter-spacing:853.061333pt;}
.ls0{letter-spacing:854.821333pt;}
.ws77{word-spacing:-28.090667pt;}
.ws0{word-spacing:-21.226667pt;}
.ws96{word-spacing:-20.776000pt;}
.ws1{word-spacing:-20.213333pt;}
.ws97{word-spacing:-19.600000pt;}
.wsbf{word-spacing:-18.293333pt;}
.ws40{word-spacing:-17.234667pt;}
.wsb6{word-spacing:-16.744000pt;}
.wsb3{word-spacing:-16.576000pt;}
.ws79{word-spacing:-16.560000pt;}
.wsd{word-spacing:-16.533333pt;}
.ws95{word-spacing:-16.498667pt;}
.ws45{word-spacing:-16.376000pt;}
.ws62{word-spacing:-16.213333pt;}
.wsb2{word-spacing:-16.072000pt;}
.ws99{word-spacing:-15.736000pt;}
.ws34{word-spacing:-15.640000pt;}
.wsbd{word-spacing:-15.568000pt;}
.ws82{word-spacing:-15.517333pt;}
.ws81{word-spacing:-15.266667pt;}
.ws8b{word-spacing:-15.210667pt;}
.wsbe{word-spacing:-15.176000pt;}
.ws74{word-spacing:-15.026667pt;}
.wsb1{word-spacing:-15.000000pt;}
.ws78{word-spacing:-14.965333pt;}
.ws8c{word-spacing:-14.904000pt;}
.ws47{word-spacing:-14.781333pt;}
.ws1c{word-spacing:-14.720000pt;}
.ws44{word-spacing:-14.658667pt;}
.ws9b{word-spacing:-14.616000pt;}
.ws8a{word-spacing:-14.597333pt;}
.ws21{word-spacing:-14.560000pt;}
.ws68{word-spacing:-14.536000pt;}
.ws39{word-spacing:-14.485333pt;}
.ws75{word-spacing:-14.474667pt;}
.ws3a{word-spacing:-14.453333pt;}
.ws3d{word-spacing:-14.413333pt;}
.ws4b{word-spacing:-14.352000pt;}
.ws43{word-spacing:-14.290667pt;}
.ws7b{word-spacing:-14.229333pt;}
.ws4c{word-spacing:-14.168000pt;}
.ws42{word-spacing:-14.106667pt;}
.ws48{word-spacing:-14.045333pt;}
.ws65{word-spacing:-13.984000pt;}
.ws46{word-spacing:-13.922667pt;}
.ws3e{word-spacing:-13.861333pt;}
.ws9c{word-spacing:-13.832000pt;}
.ws49{word-spacing:-13.800000pt;}
.ws16{word-spacing:-13.760000pt;}
.ws66{word-spacing:-13.738667pt;}
.ws76{word-spacing:-13.677333pt;}
.ws12{word-spacing:-13.653333pt;}
.ws41{word-spacing:-13.616000pt;}
.wsb4{word-spacing:-13.496000pt;}
.ws8e{word-spacing:-13.493333pt;}
.ws3f{word-spacing:-13.432000pt;}
.ws11{word-spacing:-13.386667pt;}
.ws18{word-spacing:-13.333333pt;}
.ws4a{word-spacing:-13.309333pt;}
.wsb5{word-spacing:-13.272000pt;}
.ws67{word-spacing:-13.125333pt;}
.ws1b{word-spacing:-13.120000pt;}
.ws17{word-spacing:-13.066667pt;}
.ws7a{word-spacing:-13.064000pt;}
.ws8d{word-spacing:-13.002667pt;}
.ws14{word-spacing:-12.960000pt;}
.ws1f{word-spacing:-12.853333pt;}
.ws2{word-spacing:-12.800000pt;}
.ws10{word-spacing:-12.746667pt;}
.ws13{word-spacing:-12.640000pt;}
.wsc1{word-spacing:-12.586667pt;}
.wsc0{word-spacing:-12.533333pt;}
.ws1a{word-spacing:-12.480000pt;}
.ws15{word-spacing:-12.426667pt;}
.ws98{word-spacing:-12.376000pt;}
.wsc2{word-spacing:-12.373333pt;}
.wsc3{word-spacing:-12.320000pt;}
.wsc4{word-spacing:-12.266667pt;}
.ws1e{word-spacing:-12.213333pt;}
.ws9a{word-spacing:-12.208000pt;}
.ws3{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.893333pt;}
.ws19{word-spacing:-11.733333pt;}
.wse{word-spacing:-11.610667pt;}
.ws20{word-spacing:-11.253333pt;}
.ws1d{word-spacing:-10.826667pt;}
.ws35{word-spacing:-10.047811pt;}
.ws85{word-spacing:-8.832000pt;}
.wsae{word-spacing:-6.664000pt;}
.wsa9{word-spacing:-6.272000pt;}
.ws9d{word-spacing:-5.600000pt;}
.ws91{word-spacing:-5.397333pt;}
.ws5{word-spacing:-5.333333pt;}
.wscb{word-spacing:-5.226667pt;}
.wsc5{word-spacing:-5.208000pt;}
.ws6{word-spacing:-5.173333pt;}
.wsa2{word-spacing:-4.872000pt;}
.ws2c{word-spacing:-4.853333pt;}
.ws55{word-spacing:-4.109333pt;}
.ws89{word-spacing:-3.802667pt;}
.ws32{word-spacing:-3.285333pt;}
.ws7f{word-spacing:-3.128000pt;}
.ws5e{word-spacing:-2.698667pt;}
.ws69{word-spacing:-2.208000pt;}
.ws22{word-spacing:-2.133333pt;}
.ws23{word-spacing:-2.080000pt;}
.wsc7{word-spacing:-1.792000pt;}
.ws83{word-spacing:-1.778667pt;}
.ws73{word-spacing:-1.656000pt;}
.ws2e{word-spacing:-1.653333pt;}
.ws5c{word-spacing:-1.594667pt;}
.wsa8{word-spacing:-1.400000pt;}
.wsc8{word-spacing:-1.120000pt;}
.ws33{word-spacing:-1.104000pt;}
.wsc6{word-spacing:-1.064000pt;}
.ws3c{word-spacing:-0.981333pt;}
.ws9{word-spacing:-0.970667pt;}
.ws31{word-spacing:-0.960000pt;}
.wsb{word-spacing:-0.853333pt;}
.wsba{word-spacing:-0.784000pt;}
.ws61{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.674667pt;}
.ws64{word-spacing:-0.552000pt;}
.ws9f{word-spacing:-0.224000pt;}
.ws8{word-spacing:-0.213333pt;}
.wsa0{word-spacing:-0.168000pt;}
.ws88{word-spacing:-0.122667pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053333pt;}
.ws92{word-spacing:0.061333pt;}
.wsb7{word-spacing:0.112000pt;}
.ws6d{word-spacing:0.122667pt;}
.ws26{word-spacing:0.160000pt;}
.ws71{word-spacing:0.184000pt;}
.ws29{word-spacing:0.213333pt;}
.ws7{word-spacing:0.224000pt;}
.ws6b{word-spacing:0.245333pt;}
.ws28{word-spacing:0.266667pt;}
.ws72{word-spacing:0.306667pt;}
.ws2b{word-spacing:0.320000pt;}
.wsaa{word-spacing:0.336000pt;}
.ws36{word-spacing:0.368000pt;}
.wsc{word-spacing:0.373333pt;}
.wsa4{word-spacing:0.392000pt;}
.ws25{word-spacing:0.426667pt;}
.ws4e{word-spacing:0.429333pt;}
.ws93{word-spacing:0.490667pt;}
.wsb8{word-spacing:0.504000pt;}
.wscc{word-spacing:0.533333pt;}
.ws37{word-spacing:0.552000pt;}
.ws27{word-spacing:0.586667pt;}
.ws5b{word-spacing:0.613333pt;}
.wsa1{word-spacing:0.616000pt;}
.ws9e{word-spacing:0.672000pt;}
.ws7d{word-spacing:0.674667pt;}
.ws6e{word-spacing:0.693333pt;}
.wsa3{word-spacing:0.728000pt;}
.ws38{word-spacing:0.736000pt;}
.wsc9{word-spacing:0.746667pt;}
.wsab{word-spacing:0.784000pt;}
.ws4d{word-spacing:0.797333pt;}
.ws2d{word-spacing:0.800000pt;}
.wsac{word-spacing:0.840000pt;}
.ws30{word-spacing:0.853333pt;}
.ws59{word-spacing:0.858667pt;}
.ws57{word-spacing:0.920000pt;}
.ws2a{word-spacing:0.960000pt;}
.ws94{word-spacing:0.981333pt;}
.wsaf{word-spacing:1.008000pt;}
.ws51{word-spacing:1.042667pt;}
.wsa6{word-spacing:1.064000pt;}
.ws58{word-spacing:1.104000pt;}
.ws4f{word-spacing:1.165333pt;}
.ws53{word-spacing:1.226667pt;}
.wsb0{word-spacing:1.344000pt;}
.ws60{word-spacing:1.349333pt;}
.ws87{word-spacing:1.410667pt;}
.ws24{word-spacing:1.440000pt;}
.ws56{word-spacing:1.472000pt;}
.ws70{word-spacing:1.533333pt;}
.wsbc{word-spacing:1.568000pt;}
.ws5a{word-spacing:1.594667pt;}
.ws6f{word-spacing:1.656000pt;}
.ws50{word-spacing:1.717333pt;}
.wsb9{word-spacing:1.736000pt;}
.ws5d{word-spacing:1.778667pt;}
.ws54{word-spacing:1.840000pt;}
.ws52{word-spacing:1.901333pt;}
.ws7e{word-spacing:1.962667pt;}
.ws7c{word-spacing:2.024000pt;}
.ws84{word-spacing:2.085333pt;}
.ws8f{word-spacing:2.208000pt;}
.ws2f{word-spacing:2.240000pt;}
.ws80{word-spacing:2.269333pt;}
.wsa5{word-spacing:2.464000pt;}
.ws5f{word-spacing:2.760000pt;}
.wsa7{word-spacing:2.800000pt;}
.ws86{word-spacing:3.066667pt;}
.wsbb{word-spacing:3.080000pt;}
.ws90{word-spacing:3.312000pt;}
.wsad{word-spacing:3.360000pt;}
.wsca{word-spacing:3.733333pt;}
.ws6a{word-spacing:5.397333pt;}
.ws63{word-spacing:5.581333pt;}
.ws6c{word-spacing:7.544000pt;}
._1b{margin-left:-20.929333pt;}
._1e{margin-left:-13.160000pt;}
._1a{margin-left:-10.270133pt;}
._1d{margin-left:-9.168800pt;}
._a{margin-left:-7.914667pt;}
._19{margin-left:-6.707733pt;}
._5{margin-left:-5.460267pt;}
._7{margin-left:-4.032000pt;}
._6{margin-left:-2.986400pt;}
._8{margin-left:-2.002133pt;}
._2{margin-left:-0.968800pt;}
._3{width:1.069867pt;}
._1{width:2.133333pt;}
._9{width:3.272533pt;}
._d{width:4.291467pt;}
._4{width:5.309867pt;}
._e{width:6.285333pt;}
._13{width:7.185067pt;}
._f{width:8.242133pt;}
._b{width:9.162667pt;}
._12{width:10.190400pt;}
._14{width:11.155733pt;}
._16{width:12.569333pt;}
._15{width:13.475200pt;}
._17{width:14.896533pt;}
._18{width:16.067733pt;}
._21{width:18.916800pt;}
._1f{width:19.964000pt;}
._1c{width:22.387733pt;}
._20{width:28.018667pt;}
._22{width:33.327520pt;}
._c{width:38.617920pt;}
._10{width:45.024000pt;}
._11{width:224.896000pt;}
._0{width:514.133333pt;}
.fs7{font-size:27.984000pt;}
.fsb{font-size:31.093333pt;}
.fsd{font-size:35.757333pt;}
.fsa{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:55.968000pt;}
.fs3{font-size:56.000000pt;}
.fsc{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs6{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y40{bottom:94.488133pt;}
.y1e{bottom:94.488267pt;}
.y93{bottom:97.150933pt;}
.y1d{bottom:109.821600pt;}
.y1ac{bottom:112.451867pt;}
.y65{bottom:112.484267pt;}
.ya5{bottom:112.488133pt;}
.y6b{bottom:112.566267pt;}
.y126{bottom:112.639867pt;}
.y3f{bottom:112.954533pt;}
.y150{bottom:113.117467pt;}
.y92{bottom:113.601067pt;}
.y18d{bottom:120.090133pt;}
.y16d{bottom:120.451067pt;}
.y1c{bottom:127.817600pt;}
.y91{bottom:128.934400pt;}
.y1ab{bottom:130.415467pt;}
.ya4{bottom:130.488133pt;}
.y6a{bottom:130.644267pt;}
.y125{bottom:130.791467pt;}
.y3e{bottom:131.420800pt;}
.y14f{bottom:131.746800pt;}
.y18c{bottom:138.133333pt;}
.y16c{bottom:138.854667pt;}
.y90{bottom:144.268000pt;}
.y1aa{bottom:148.378667pt;}
.ya3{bottom:148.488000pt;}
.y69{bottom:148.722667pt;}
.y124{bottom:148.942667pt;}
.y3d{bottom:149.886667pt;}
.y14e{bottom:150.376000pt;}
.y64{bottom:151.612000pt;}
.ydf{bottom:154.781333pt;}
.y8f{bottom:162.264000pt;}
.y18b{bottom:163.734667pt;}
.y16b{bottom:164.817333pt;}
.y1a9{bottom:166.342667pt;}
.ya2{bottom:166.488000pt;}
.y68{bottom:166.800000pt;}
.y1b{bottom:166.945333pt;}
.y123{bottom:167.094667pt;}
.y3c{bottom:168.353333pt;}
.y14d{bottom:169.005333pt;}
.ybb{bottom:169.612000pt;}
.y63{bottom:169.689333pt;}
.yde{bottom:173.285333pt;}
.y18a{bottom:181.777333pt;}
.y16a{bottom:183.221333pt;}
.y1a8{bottom:184.306667pt;}
.y1a{bottom:184.333333pt;}
.ya1{bottom:184.488000pt;}
.y67{bottom:184.878667pt;}
.y100{bottom:185.101333pt;}
.y122{bottom:185.246667pt;}
.yba{bottom:187.612000pt;}
.y14c{bottom:187.634667pt;}
.y62{bottom:187.766667pt;}
.ydd{bottom:191.788000pt;}
.y189{bottom:199.820000pt;}
.y8e{bottom:201.390667pt;}
.y19{bottom:201.722667pt;}
.y1a7{bottom:202.269333pt;}
.ya0{bottom:202.488000pt;}
.y66{bottom:202.956000pt;}
.yff{bottom:203.256000pt;}
.y121{bottom:203.397333pt;}
.yb9{bottom:205.612000pt;}
.y61{bottom:205.844000pt;}
.y14b{bottom:206.264000pt;}
.y169{bottom:209.184000pt;}
.ydc{bottom:210.292000pt;}
.y18{bottom:219.112000pt;}
.y8d{bottom:219.604000pt;}
.y1a6{bottom:220.233333pt;}
.y9f{bottom:220.488000pt;}
.yfe{bottom:221.412000pt;}
.y120{bottom:221.549333pt;}
.yb8{bottom:223.612000pt;}
.y60{bottom:223.921333pt;}
.y14a{bottom:224.893333pt;}
.y188{bottom:225.422667pt;}
.y168{bottom:227.588000pt;}
.ydb{bottom:228.794667pt;}
.y17{bottom:236.501333pt;}
.y8c{bottom:237.816000pt;}
.y1a5{bottom:238.197333pt;}
.y9e{bottom:238.488000pt;}
.yfd{bottom:239.568000pt;}
.y11f{bottom:239.701333pt;}
.yb7{bottom:241.612000pt;}
.y5f{bottom:241.998667pt;}
.y3b{bottom:242.218667pt;}
.y149{bottom:243.522667pt;}
.yda{bottom:247.298667pt;}
.y187{bottom:251.024000pt;}
.y167{bottom:253.550667pt;}
.y16{bottom:253.890667pt;}
.y8b{bottom:256.028000pt;}
.y1a4{bottom:256.161333pt;}
.y9d{bottom:256.488000pt;}
.yfc{bottom:257.724000pt;}
.y11e{bottom:257.853333pt;}
.yb6{bottom:259.612000pt;}
.y5e{bottom:260.076000pt;}
.y3a{bottom:261.350667pt;}
.y148{bottom:262.152000pt;}
.y6d{bottom:265.416000pt;}
.yd9{bottom:265.802667pt;}
.y186{bottom:269.066667pt;}
.y15{bottom:271.278667pt;}
.y166{bottom:271.954667pt;}
.y1a3{bottom:274.124000pt;}
.y8a{bottom:274.241333pt;}
.y9c{bottom:274.488000pt;}
.yfb{bottom:275.880000pt;}
.y11d{bottom:276.004000pt;}
.yb5{bottom:277.612000pt;}
.y5d{bottom:278.153333pt;}
.y147{bottom:280.781333pt;}
.y6c{bottom:283.416000pt;}
.yd8{bottom:284.305333pt;}
.y185{bottom:287.110667pt;}
.y14{bottom:288.668000pt;}
.y1a2{bottom:292.088000pt;}
.y89{bottom:292.453333pt;}
.y9b{bottom:292.488000pt;}
.y11c{bottom:294.156000pt;}
.yb4{bottom:295.612000pt;}
.y5c{bottom:296.232000pt;}
.y165{bottom:297.917333pt;}
.y39{bottom:299.381333pt;}
.y146{bottom:299.410667pt;}
.yd7{bottom:302.809333pt;}
.y1a1{bottom:310.052000pt;}
.y9a{bottom:310.488000pt;}
.y88{bottom:310.665333pt;}
.yfa{bottom:312.192000pt;}
.y11b{bottom:312.308000pt;}
.y184{bottom:312.712000pt;}
.yb3{bottom:313.612000pt;}
.y5b{bottom:314.309333pt;}
.y164{bottom:316.321333pt;}
.y38{bottom:317.181333pt;}
.y13{bottom:317.396000pt;}
.y145{bottom:318.040000pt;}
.yd6{bottom:321.312000pt;}
.y1a0{bottom:328.014667pt;}
.y99{bottom:328.488000pt;}
.y87{bottom:328.878667pt;}
.yf9{bottom:330.348000pt;}
.y11a{bottom:330.458667pt;}
.y183{bottom:330.754667pt;}
.yb2{bottom:331.612000pt;}
.y5a{bottom:332.386667pt;}
.y37{bottom:334.981333pt;}
.y144{bottom:336.669333pt;}
.yd5{bottom:339.816000pt;}
.y163{bottom:342.284000pt;}
.y19f{bottom:345.978667pt;}
.y98{bottom:346.488000pt;}
.y86{bottom:347.090667pt;}
.yf8{bottom:348.504000pt;}
.y119{bottom:348.610667pt;}
.yb1{bottom:349.612000pt;}
.y59{bottom:350.464000pt;}
.y36{bottom:352.780000pt;}
.y143{bottom:355.298667pt;}
.y182{bottom:356.356000pt;}
.yd4{bottom:358.318667pt;}
.y162{bottom:360.688000pt;}
.y19e{bottom:363.942667pt;}
.y97{bottom:364.488000pt;}
.y85{bottom:365.302667pt;}
.yf7{bottom:366.660000pt;}
.y118{bottom:366.762667pt;}
.yb0{bottom:367.612000pt;}
.y58{bottom:368.541333pt;}
.y12{bottom:368.801333pt;}
.y35{bottom:370.580000pt;}
.y142{bottom:373.928000pt;}
.y181{bottom:374.400000pt;}
.yd3{bottom:376.822667pt;}
.y19d{bottom:381.906667pt;}
.y96{bottom:382.488000pt;}
.y84{bottom:383.514667pt;}
.yf6{bottom:384.816000pt;}
.y117{bottom:384.913333pt;}
.yaf{bottom:385.612000pt;}
.y57{bottom:386.618667pt;}
.y161{bottom:386.650667pt;}
.y34{bottom:388.380000pt;}
.y180{bottom:392.442667pt;}
.y141{bottom:392.557333pt;}
.y11{bottom:392.856000pt;}
.yd2{bottom:395.326667pt;}
.y19c{bottom:399.869333pt;}
.y95{bottom:400.488000pt;}
.y83{bottom:401.728000pt;}
.yf5{bottom:402.972000pt;}
.y116{bottom:403.065333pt;}
.yae{bottom:403.612000pt;}
.y56{bottom:404.696000pt;}
.y160{bottom:405.054667pt;}
.y33{bottom:406.180000pt;}
.y17f{bottom:410.485333pt;}
.y140{bottom:411.186667pt;}
.yd1{bottom:413.829333pt;}
.y19b{bottom:417.833333pt;}
.y94{bottom:418.488000pt;}
.y82{bottom:419.940000pt;}
.yf4{bottom:421.128000pt;}
.y115{bottom:421.217333pt;}
.yad{bottom:421.612000pt;}
.y55{bottom:422.773333pt;}
.y15f{bottom:423.457333pt;}
.y32{bottom:423.978667pt;}
.y13f{bottom:429.816000pt;}
.yd0{bottom:432.333333pt;}
.y19a{bottom:435.797333pt;}
.y10{bottom:435.809333pt;}
.y17e{bottom:436.086667pt;}
.y129{bottom:436.488000pt;}
.y81{bottom:438.153333pt;}
.yf3{bottom:439.282667pt;}
.y114{bottom:439.369333pt;}
.yac{bottom:439.612000pt;}
.y54{bottom:440.852000pt;}
.y31{bottom:441.778667pt;}
.y13e{bottom:448.444000pt;}
.y15e{bottom:449.421333pt;}
.ycf{bottom:450.836000pt;}
.y199{bottom:453.760000pt;}
.y17d{bottom:454.129333pt;}
.y128{bottom:454.488000pt;}
.y80{bottom:456.365333pt;}
.yf2{bottom:457.438667pt;}
.y113{bottom:457.520000pt;}
.yab{bottom:457.612000pt;}
.y53{bottom:458.929333pt;}
.y30{bottom:459.578667pt;}
.yf{bottom:463.865333pt;}
.y13d{bottom:467.073333pt;}
.y15d{bottom:467.824000pt;}
.yce{bottom:469.340000pt;}
.y198{bottom:471.724000pt;}
.y127{bottom:472.488000pt;}
.y7f{bottom:474.577333pt;}
.yf1{bottom:475.594667pt;}
.yaa{bottom:475.612000pt;}
.y112{bottom:475.672000pt;}
.y52{bottom:477.006667pt;}
.y2f{bottom:477.377333pt;}
.y17c{bottom:479.732000pt;}
.ya7{bottom:482.738667pt;}
.y13c{bottom:485.702667pt;}
.y15c{bottom:486.228000pt;}
.ycd{bottom:487.842667pt;}
.y197{bottom:489.688000pt;}
.ye{bottom:491.921333pt;}
.y7e{bottom:492.789333pt;}
.ya9{bottom:493.612000pt;}
.yf0{bottom:493.750667pt;}
.y111{bottom:493.824000pt;}
.y51{bottom:495.084000pt;}
.y2e{bottom:495.177333pt;}
.y17b{bottom:497.774667pt;}
.ya6{bottom:500.738667pt;}
.y13b{bottom:504.332000pt;}
.ycc{bottom:506.346667pt;}
.y7d{bottom:511.002667pt;}
.ya8{bottom:511.612000pt;}
.yef{bottom:511.906667pt;}
.y110{bottom:511.974667pt;}
.y15b{bottom:512.190667pt;}
.y2d{bottom:512.977333pt;}
.y50{bottom:513.161333pt;}
.y196{bottom:518.990667pt;}
.yd{bottom:519.977333pt;}
.y13a{bottom:522.961333pt;}
.y17a{bottom:523.376000pt;}
.ycb{bottom:524.849333pt;}
.y12b{bottom:528.722667pt;}
.y7c{bottom:529.214667pt;}
.yee{bottom:530.062667pt;}
.y10f{bottom:530.126667pt;}
.y15a{bottom:530.594667pt;}
.y2c{bottom:530.776000pt;}
.y4f{bottom:531.238667pt;}
.y179{bottom:541.420000pt;}
.y139{bottom:541.590667pt;}
.yca{bottom:543.353333pt;}
.y12a{bottom:546.724000pt;}
.y7b{bottom:547.426667pt;}
.yed{bottom:548.218667pt;}
.y10e{bottom:548.278667pt;}
.y2b{bottom:548.576000pt;}
.y4e{bottom:549.316000pt;}
.y159{bottom:556.557333pt;}
.y138{bottom:560.220000pt;}
.yc9{bottom:561.857333pt;}
.y7a{bottom:565.640000pt;}
.yec{bottom:566.374667pt;}
.y10d{bottom:566.430667pt;}
.y178{bottom:567.021333pt;}
.y4d{bottom:567.393333pt;}
.y195{bottom:570.969333pt;}
.yc{bottom:574.489333pt;}
.ybc{bottom:576.960000pt;}
.y2a{bottom:577.714667pt;}
.y137{bottom:578.849333pt;}
.yc8{bottom:580.360000pt;}
.y1b6{bottom:582.822667pt;}
.y79{bottom:583.852000pt;}
.yeb{bottom:584.530667pt;}
.y10c{bottom:584.581333pt;}
.y4c{bottom:585.470667pt;}
.y177{bottom:592.622667pt;}
.yb{bottom:593.212000pt;}
.y194{bottom:595.600000pt;}
.y136{bottom:597.478667pt;}
.yc7{bottom:598.864000pt;}
.y1b5{bottom:600.822667pt;}
.y78{bottom:602.064000pt;}
.y158{bottom:602.085333pt;}
.yea{bottom:602.686667pt;}
.y10b{bottom:602.733333pt;}
.y176{bottom:610.666667pt;}
.ya{bottom:611.934667pt;}
.y135{bottom:616.108000pt;}
.yc6{bottom:617.366667pt;}
.y1b4{bottom:618.822667pt;}
.y77{bottom:620.277333pt;}
.y157{bottom:620.488000pt;}
.ye9{bottom:620.842667pt;}
.y10a{bottom:620.885333pt;}
.y29{bottom:621.970667pt;}
.y175{bottom:628.709333pt;}
.y134{bottom:634.737333pt;}
.yc5{bottom:635.870667pt;}
.y1b3{bottom:636.822667pt;}
.y9{bottom:638.216000pt;}
.y76{bottom:638.489333pt;}
.ye8{bottom:638.998667pt;}
.y109{bottom:639.036000pt;}
.y4b{bottom:639.704000pt;}
.y28{bottom:641.104000pt;}
.y156{bottom:646.452000pt;}
.y133{bottom:653.366667pt;}
.y174{bottom:654.310667pt;}
.yc4{bottom:654.373333pt;}
.y75{bottom:656.701333pt;}
.y8{bottom:656.937333pt;}
.ye7{bottom:657.153333pt;}
.y108{bottom:657.188000pt;}
.y4a{bottom:657.781333pt;}
.y1b2{bottom:666.161333pt;}
.y132{bottom:671.996000pt;}
.y173{bottom:672.353333pt;}
.yc3{bottom:672.877333pt;}
.y74{bottom:674.914667pt;}
.ye6{bottom:675.309333pt;}
.y107{bottom:675.340000pt;}
.y7{bottom:675.660000pt;}
.y49{bottom:675.858667pt;}
.y193{bottom:676.388000pt;}
.y27{bottom:679.134667pt;}
.y1b1{bottom:684.161333pt;}
.y131{bottom:690.625333pt;}
.yc2{bottom:691.380000pt;}
.y73{bottom:693.126667pt;}
.ye5{bottom:693.465333pt;}
.y106{bottom:693.492000pt;}
.y48{bottom:693.936000pt;}
.y192{bottom:695.018667pt;}
.y26{bottom:696.933333pt;}
.y172{bottom:697.956000pt;}
.y1b0{bottom:702.161333pt;}
.y130{bottom:709.254667pt;}
.yc1{bottom:709.884000pt;}
.y155{bottom:710.382667pt;}
.y72{bottom:711.338667pt;}
.ye4{bottom:711.621333pt;}
.y105{bottom:711.642667pt;}
.y47{bottom:712.013333pt;}
.y25{bottom:714.733333pt;}
.y1af{bottom:720.161333pt;}
.y6{bottom:720.838667pt;}
.y191{bottom:721.208000pt;}
.y171{bottom:723.557333pt;}
.y12f{bottom:727.884000pt;}
.yc0{bottom:728.388000pt;}
.y154{bottom:728.786667pt;}
.y71{bottom:729.552000pt;}
.ye3{bottom:729.777333pt;}
.y104{bottom:729.794667pt;}
.y46{bottom:730.090667pt;}
.y24{bottom:732.533333pt;}
.y5{bottom:739.561333pt;}
.y190{bottom:739.838667pt;}
.y170{bottom:741.600000pt;}
.y12e{bottom:746.513333pt;}
.ybf{bottom:746.890667pt;}
.y153{bottom:747.189333pt;}
.y70{bottom:747.764000pt;}
.ye2{bottom:747.933333pt;}
.y103{bottom:747.946667pt;}
.y45{bottom:748.168000pt;}
.y1ae{bottom:749.500000pt;}
.y23{bottom:750.332000pt;}
.y18f{bottom:758.468000pt;}
.y16f{bottom:759.642667pt;}
.y12d{bottom:765.142667pt;}
.ybe{bottom:765.394667pt;}
.y152{bottom:765.593333pt;}
.y4{bottom:765.842667pt;}
.y6f{bottom:765.976000pt;}
.ye1{bottom:766.089333pt;}
.y102{bottom:766.098667pt;}
.y44{bottom:766.246667pt;}
.y22{bottom:768.132000pt;}
.y16e{bottom:777.686667pt;}
.y12c{bottom:783.772000pt;}
.ybd{bottom:783.897333pt;}
.y151{bottom:783.997333pt;}
.y6e{bottom:784.189333pt;}
.ye0{bottom:784.245333pt;}
.y101{bottom:784.249333pt;}
.y43{bottom:784.324000pt;}
.y3{bottom:784.565333pt;}
.y18e{bottom:784.657333pt;}
.y21{bottom:785.932000pt;}
.y1ad{bottom:786.398667pt;}
.y42{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y20{bottom:803.732000pt;}
.y1f{bottom:842.834667pt;}
.y41{bottom:858.168000pt;}
.h8{height:30.107146pt;}
.ha{height:36.229167pt;}
.h10{height:38.636719pt;}
.h9{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h7{height:49.322917pt;}
.hf{height:51.789062pt;}
.hb{height:52.079427pt;}
.hc{height:52.977865pt;}
.he{height:53.037760pt;}
.h2{height:56.608073pt;}
.hd{height:56.721354pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:73.079333pt;}
.x7{left:74.583733pt;}
.x1{left:75.590533pt;}
.x9{left:92.199867pt;}
.x6{left:94.127067pt;}
.x4{left:204.445333pt;}
.x5{left:205.556000pt;}
.x3{left:206.652000pt;}
.x2{left:207.834667pt;}
}




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