
    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_eae2cc54f827ab46c278e3c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_48caecca1b5a8ffcbc6364f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_de57dfdd10dfb5ef320aac0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_158988ce9e6808c275434acc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_8b522ec91b35fe89fa3a83c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.718750;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_6c74db114803ec045ad94ba1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_e8395f768789917b8fd4ebae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715820;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_8617f3738349f6675264f5d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.536000px;}
.v1{vertical-align:22.655400px;}
.ls41{letter-spacing:-6.720000px;}
.ls42{letter-spacing:-5.400000px;}
.ls93{letter-spacing:-2.640000px;}
.ls56{letter-spacing:-1.260000px;}
.ls17{letter-spacing:-0.720000px;}
.ls77{letter-spacing:-0.480000px;}
.ls54{letter-spacing:-0.432000px;}
.ls55{letter-spacing:-0.420000px;}
.ls92{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.240000px;}
.ls64{letter-spacing:-0.192000px;}
.ls40{letter-spacing:-0.180000px;}
.ls63{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.120000px;}
.ls43{letter-spacing:-0.060000px;}
.ls65{letter-spacing:-0.048000px;}
.ls16{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls78{letter-spacing:0.048000px;}
.ls61{letter-spacing:0.060000px;}
.ls58{letter-spacing:0.096000px;}
.lse{letter-spacing:0.120000px;}
.ls7d{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.300000px;}
.ls86{letter-spacing:0.336000px;}
.ls1d{letter-spacing:0.360000px;}
.ls62{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.420000px;}
.ls50{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.576000px;}
.ls47{letter-spacing:0.600000px;}
.ls80{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.780000px;}
.ls76{letter-spacing:0.816000px;}
.ls36{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.900000px;}
.ls72{letter-spacing:0.912000px;}
.ls8{letter-spacing:0.960000px;}
.ls2{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.020000px;}
.ls8b{letter-spacing:1.056000px;}
.ls38{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.104000px;}
.ls9{letter-spacing:1.140000px;}
.ls10{letter-spacing:1.200000px;}
.ls44{letter-spacing:1.248000px;}
.lsb{letter-spacing:1.260000px;}
.ls37{letter-spacing:1.320000px;}
.ls7f{letter-spacing:1.344000px;}
.ls28{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.392000px;}
.ls2f{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.500000px;}
.ls59{letter-spacing:1.536000px;}
.ls35{letter-spacing:1.560000px;}
.ls75{letter-spacing:1.584000px;}
.ls24{letter-spacing:1.620000px;}
.ls8e{letter-spacing:1.632000px;}
.ls3c{letter-spacing:1.680000px;}
.ls8a{letter-spacing:1.728000px;}
.ls1c{letter-spacing:1.740000px;}
.ls7e{letter-spacing:1.776000px;}
.ls31{letter-spacing:1.800000px;}
.ls79{letter-spacing:1.824000px;}
.lsa{letter-spacing:1.860000px;}
.ls89{letter-spacing:1.872000px;}
.ls6e{letter-spacing:1.920000px;}
.ls88{letter-spacing:1.968000px;}
.ls46{letter-spacing:1.980000px;}
.ls2e{letter-spacing:2.040000px;}
.ls8c{letter-spacing:2.064000px;}
.lsf{letter-spacing:2.100000px;}
.ls82{letter-spacing:2.112000px;}
.ls15{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.220000px;}
.ls48{letter-spacing:2.280000px;}
.ls7a{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.340000px;}
.ls53{letter-spacing:2.400000px;}
.ls30{letter-spacing:2.460000px;}
.ls74{letter-spacing:2.496000px;}
.ls1b{letter-spacing:2.520000px;}
.ls32{letter-spacing:2.580000px;}
.ls26{letter-spacing:2.640000px;}
.ls27{letter-spacing:2.700000px;}
.ls4c{letter-spacing:2.760000px;}
.ls83{letter-spacing:2.784000px;}
.ls71{letter-spacing:2.820000px;}
.ls73{letter-spacing:2.832000px;}
.ls3d{letter-spacing:2.880000px;}
.ls81{letter-spacing:2.928000px;}
.ls60{letter-spacing:2.940000px;}
.ls7c{letter-spacing:2.976000px;}
.ls22{letter-spacing:3.000000px;}
.ls85{letter-spacing:3.024000px;}
.ls21{letter-spacing:3.060000px;}
.ls2d{letter-spacing:3.120000px;}
.ls1a{letter-spacing:3.180000px;}
.ls1f{letter-spacing:3.240000px;}
.ls4b{letter-spacing:3.300000px;}
.ls8d{letter-spacing:3.408000px;}
.ls5f{letter-spacing:3.420000px;}
.ls49{letter-spacing:3.480000px;}
.ls51{letter-spacing:3.540000px;}
.ls57{letter-spacing:3.600000px;}
.ls91{letter-spacing:3.696000px;}
.ls45{letter-spacing:3.720000px;}
.ls6c{letter-spacing:3.780000px;}
.ls4a{letter-spacing:3.840000px;}
.ls6b{letter-spacing:3.960000px;}
.ls66{letter-spacing:4.020000px;}
.ls6f{letter-spacing:4.080000px;}
.ls3b{letter-spacing:4.140000px;}
.ls3a{letter-spacing:4.200000px;}
.ls52{letter-spacing:4.260000px;}
.ls3f{letter-spacing:4.320000px;}
.ls4f{letter-spacing:4.380000px;}
.ls5d{letter-spacing:4.440000px;}
.ls39{letter-spacing:4.500000px;}
.ls5b{letter-spacing:4.560000px;}
.ls3e{letter-spacing:4.740000px;}
.ls34{letter-spacing:4.800000px;}
.ls90{letter-spacing:4.896000px;}
.ls14{letter-spacing:5.040000px;}
.ls6{letter-spacing:5.160000px;}
.ls5e{letter-spacing:5.280000px;}
.ls87{letter-spacing:5.376000px;}
.ls84{letter-spacing:5.424000px;}
.ls5a{letter-spacing:5.520000px;}
.ls5c{letter-spacing:5.580000px;}
.ls68{letter-spacing:5.940000px;}
.ls70{letter-spacing:6.300000px;}
.ls6a{letter-spacing:6.360000px;}
.ls2a{letter-spacing:6.480000px;}
.ls69{letter-spacing:7.080000px;}
.ls33{letter-spacing:7.860000px;}
.ls4e{letter-spacing:8.280000px;}
.ls4d{letter-spacing:8.340000px;}
.ls6d{letter-spacing:9.300000px;}
.ls67{letter-spacing:9.540000px;}
.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;}
}
.ws62{word-spacing:-22.200000px;}
.ws1c{word-spacing:-21.840000px;}
.ws66{word-spacing:-21.120000px;}
.ws24{word-spacing:-21.000000px;}
.ws7c{word-spacing:-20.700000px;}
.ws7f{word-spacing:-20.460000px;}
.ws23{word-spacing:-19.860000px;}
.ws18{word-spacing:-19.200000px;}
.ws1b{word-spacing:-18.900000px;}
.ws43{word-spacing:-18.780000px;}
.ws7d{word-spacing:-18.240000px;}
.ws1d{word-spacing:-18.180000px;}
.ws1f{word-spacing:-18.060000px;}
.ws7b{word-spacing:-17.880000px;}
.ws21{word-spacing:-17.700000px;}
.ws1a{word-spacing:-17.640000px;}
.ws7e{word-spacing:-17.580000px;}
.ws67{word-spacing:-17.460000px;}
.ws80{word-spacing:-17.340000px;}
.ws41{word-spacing:-17.280000px;}
.ws42{word-spacing:-17.220000px;}
.ws19{word-spacing:-17.160000px;}
.ws3{word-spacing:-17.100000px;}
.ws1e{word-spacing:-16.980000px;}
.ws44{word-spacing:-16.860000px;}
.ws4{word-spacing:-16.680000px;}
.ws8d{word-spacing:-16.224000px;}
.ws8a{word-spacing:-16.128000px;}
.ws8b{word-spacing:-15.024000px;}
.ws8c{word-spacing:-14.544000px;}
.ws8e{word-spacing:-14.448000px;}
.ws81{word-spacing:-14.304000px;}
.ws25{word-spacing:-14.178000px;}
.ws2{word-spacing:-13.824000px;}
.ws1{word-spacing:-13.344000px;}
.ws88{word-spacing:-13.152000px;}
.ws89{word-spacing:-13.056000px;}
.ws40{word-spacing:-12.912000px;}
.ws22{word-spacing:-11.280000px;}
.ws0{word-spacing:-11.008800px;}
.ws8f{word-spacing:-10.704000px;}
.ws20{word-spacing:-9.960000px;}
.ws3f{word-spacing:-4.740000px;}
.ws3d{word-spacing:-4.140000px;}
.ws93{word-spacing:-4.080000px;}
.ws26{word-spacing:-3.180000px;}
.ws2d{word-spacing:-3.060000px;}
.ws2e{word-spacing:-3.000000px;}
.ws9d{word-spacing:-2.880000px;}
.ws6{word-spacing:-2.664000px;}
.wsa0{word-spacing:-2.640000px;}
.ws28{word-spacing:-2.520000px;}
.ws15{word-spacing:-2.220000px;}
.ws3e{word-spacing:-1.860000px;}
.ws32{word-spacing:-1.620000px;}
.ws9c{word-spacing:-1.584000px;}
.ws31{word-spacing:-1.500000px;}
.ws95{word-spacing:-1.344000px;}
.ws12{word-spacing:-1.260000px;}
.ws71{word-spacing:-1.080000px;}
.ws2c{word-spacing:-0.960000px;}
.ws97{word-spacing:-0.864000px;}
.ws6b{word-spacing:-0.840000px;}
.ws4a{word-spacing:-0.780000px;}
.ws13{word-spacing:-0.540000px;}
.ws56{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.420000px;}
.ws9a{word-spacing:-0.384000px;}
.ws2a{word-spacing:-0.360000px;}
.ws4c{word-spacing:-0.300000px;}
.ws76{word-spacing:-0.144000px;}
.ws4b{word-spacing:-0.120000px;}
.ws7a{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:0.048000px;}
.ws37{word-spacing:0.060000px;}
.ws29{word-spacing:0.180000px;}
.ws78{word-spacing:0.192000px;}
.ws50{word-spacing:0.240000px;}
.ws3a{word-spacing:0.300000px;}
.ws72{word-spacing:0.384000px;}
.ws6a{word-spacing:0.420000px;}
.ws45{word-spacing:0.432000px;}
.ws5b{word-spacing:0.480000px;}
.ws5a{word-spacing:0.540000px;}
.ws53{word-spacing:0.600000px;}
.ws99{word-spacing:0.624000px;}
.ws68{word-spacing:0.660000px;}
.ws98{word-spacing:0.816000px;}
.ws47{word-spacing:0.840000px;}
.wse{word-spacing:0.912000px;}
.ws2b{word-spacing:0.960000px;}
.ws96{word-spacing:1.008000px;}
.ws49{word-spacing:1.020000px;}
.ws38{word-spacing:1.140000px;}
.ws92{word-spacing:1.152000px;}
.ws90{word-spacing:1.200000px;}
.ws46{word-spacing:1.248000px;}
.ws6c{word-spacing:1.260000px;}
.ws5d{word-spacing:1.296000px;}
.ws54{word-spacing:1.320000px;}
.ws69{word-spacing:1.440000px;}
.ws59{word-spacing:1.500000px;}
.ws91{word-spacing:1.536000px;}
.ws30{word-spacing:1.560000px;}
.ws34{word-spacing:1.620000px;}
.ws61{word-spacing:1.632000px;}
.ws17{word-spacing:1.740000px;}
.ws2f{word-spacing:1.920000px;}
.ws85{word-spacing:2.100000px;}
.ws75{word-spacing:2.304000px;}
.ws57{word-spacing:2.340000px;}
.ws36{word-spacing:2.520000px;}
.ws9{word-spacing:2.592000px;}
.ws77{word-spacing:2.640000px;}
.wsd{word-spacing:2.688000px;}
.ws4d{word-spacing:2.700000px;}
.ws9f{word-spacing:2.736000px;}
.ws82{word-spacing:2.760000px;}
.ws52{word-spacing:2.820000px;}
.ws5c{word-spacing:2.976000px;}
.ws74{word-spacing:3.024000px;}
.ws9e{word-spacing:3.072000px;}
.ws3c{word-spacing:3.120000px;}
.ws65{word-spacing:3.168000px;}
.ws4f{word-spacing:3.180000px;}
.ws79{word-spacing:3.408000px;}
.ws33{word-spacing:3.420000px;}
.ws8{word-spacing:3.456000px;}
.ws6d{word-spacing:3.480000px;}
.ws7{word-spacing:3.504000px;}
.ws4e{word-spacing:3.600000px;}
.ws9b{word-spacing:3.696000px;}
.ws58{word-spacing:3.720000px;}
.ws6e{word-spacing:3.840000px;}
.wsc{word-spacing:3.936000px;}
.ws16{word-spacing:4.020000px;}
.ws94{word-spacing:4.032000px;}
.ws84{word-spacing:4.140000px;}
.ws35{word-spacing:4.260000px;}
.ws83{word-spacing:4.320000px;}
.ws55{word-spacing:4.368000px;}
.ws87{word-spacing:4.380000px;}
.wsb{word-spacing:4.416000px;}
.ws39{word-spacing:4.500000px;}
.ws6f{word-spacing:4.680000px;}
.ws73{word-spacing:4.740000px;}
.ws51{word-spacing:4.800000px;}
.ws70{word-spacing:4.860000px;}
.ws86{word-spacing:4.920000px;}
.ws48{word-spacing:4.980000px;}
.ws3b{word-spacing:5.220000px;}
.ws11{word-spacing:5.280000px;}
.ws10{word-spacing:5.460000px;}
.wsf{word-spacing:5.520000px;}
.ws60{word-spacing:5.952000px;}
.ws64{word-spacing:6.096000px;}
.ws27{word-spacing:8.700000px;}
.ws5f{word-spacing:843.648000px;}
.ws63{word-spacing:865.872000px;}
.ws5e{word-spacing:1701.264000px;}
._d{margin-left:-2898.126000px;}
._f{margin-left:-2874.309000px;}
._e{margin-left:-8.820000px;}
._b{margin-left:-7.680000px;}
._2{margin-left:-6.468000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.504000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.192800px;}
._5{width:1.008000px;}
._11{width:2.064000px;}
._8{width:3.096000px;}
._9{width:4.800000px;}
._7{width:5.820000px;}
._6{width:6.840000px;}
._a{width:8.748000px;}
._c{width:10.140000px;}
._10{width:882.432000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y150{bottom:83.020050px;}
.y162{bottom:83.028750px;}
.y15c{bottom:83.031750px;}
.y109{bottom:83.114700px;}
.y193{bottom:83.228850px;}
.y92{bottom:83.363850px;}
.y28{bottom:83.493900px;}
.y5c{bottom:83.637600px;}
.y110{bottom:83.738550px;}
.y137{bottom:84.600600px;}
.yc8{bottom:91.767750px;}
.yfb{bottom:91.909350px;}
.y1a9{bottom:94.796700px;}
.y14f{bottom:98.764050px;}
.y15b{bottom:98.775750px;}
.y108{bottom:98.858700px;}
.y10f{bottom:99.482550px;}
.y136{bottom:100.344600px;}
.y192{bottom:101.228850px;}
.y91{bottom:101.363850px;}
.y5b{bottom:101.637600px;}
.yc7{bottom:109.767750px;}
.y1a8{bottom:109.796700px;}
.yfa{bottom:109.909350px;}
.y14e{bottom:114.508050px;}
.y107{bottom:114.602700px;}
.y10e{bottom:115.226550px;}
.y147{bottom:117.366450px;}
.y191{bottom:119.228850px;}
.y90{bottom:119.363850px;}
.y5a{bottom:119.637600px;}
.y16{bottom:121.518300px;}
.y1a7{bottom:124.796700px;}
.yc6{bottom:127.767750px;}
.yf9{bottom:127.909350px;}
.y106{bottom:130.346700px;}
.y146{bottom:133.110450px;}
.y190{bottom:137.228850px;}
.y8f{bottom:137.363850px;}
.y59{bottom:137.637600px;}
.y1a6{bottom:139.796700px;}
.yc5{bottom:145.767750px;}
.yf8{bottom:145.909350px;}
.y1a5{bottom:154.796700px;}
.y18f{bottom:155.228850px;}
.y8e{bottom:155.363850px;}
.y58{bottom:155.637600px;}
.y116{bottom:157.864200px;}
.y140{bottom:158.944200px;}
.yc4{bottom:163.767750px;}
.yf7{bottom:163.909350px;}
.y1a4{bottom:169.796700px;}
.y18e{bottom:173.228850px;}
.y8d{bottom:173.363850px;}
.y57{bottom:173.637600px;}
.yc3{bottom:181.767750px;}
.yf6{bottom:181.909350px;}
.y1a3{bottom:184.796700px;}
.y18d{bottom:191.228850px;}
.y8c{bottom:191.363850px;}
.y56{bottom:191.637600px;}
.yc2{bottom:199.767750px;}
.y1a2{bottom:199.796700px;}
.y25{bottom:203.131350px;}
.y18c{bottom:209.228850px;}
.y8b{bottom:209.363850px;}
.y55{bottom:209.637600px;}
.y1a1{bottom:214.796700px;}
.yf5{bottom:217.483050px;}
.yc1{bottom:217.767750px;}
.y24{bottom:221.131350px;}
.y18b{bottom:227.228850px;}
.y8a{bottom:227.363850px;}
.y54{bottom:227.637600px;}
.y1a0{bottom:229.796700px;}
.yf4{bottom:232.483050px;}
.yc0{bottom:235.767750px;}
.y23{bottom:239.131350px;}
.y18a{bottom:245.228850px;}
.y89{bottom:245.363850px;}
.y53{bottom:245.637600px;}
.y168{bottom:251.629650px;}
.ybf{bottom:253.767750px;}
.y22{bottom:257.131350px;}
.y139{bottom:257.376600px;}
.y189{bottom:263.228850px;}
.y88{bottom:263.363850px;}
.yf3{bottom:263.514000px;}
.y52{bottom:263.637600px;}
.ybe{bottom:271.767750px;}
.y157{bottom:273.535650px;}
.y21{bottom:275.131350px;}
.y188{bottom:281.228850px;}
.y87{bottom:281.363850px;}
.yf2{bottom:281.514000px;}
.y51{bottom:281.637600px;}
.ybd{bottom:289.767750px;}
.y145{bottom:292.019700px;}
.y20{bottom:293.131350px;}
.y187{bottom:299.228850px;}
.y86{bottom:299.363850px;}
.y50{bottom:299.637600px;}
.y1db{bottom:304.938300px;}
.y1f5{bottom:304.941300px;}
.ybc{bottom:307.767750px;}
.y1f{bottom:311.131350px;}
.y186{bottom:317.228850px;}
.y85{bottom:317.363850px;}
.yf1{bottom:317.364000px;}
.y4f{bottom:317.637600px;}
.y1da{bottom:319.938300px;}
.y1f4{bottom:319.941300px;}
.ybb{bottom:325.767750px;}
.y1e{bottom:329.131350px;}
.y1d9{bottom:334.938300px;}
.y1f3{bottom:334.941300px;}
.y185{bottom:335.228850px;}
.y84{bottom:335.363850px;}
.yf0{bottom:335.364000px;}
.y4e{bottom:335.637600px;}
.yba{bottom:343.767750px;}
.y167{bottom:344.317650px;}
.y15f{bottom:346.455750px;}
.y1d{bottom:347.131350px;}
.y13f{bottom:349.852200px;}
.y1d8{bottom:349.938300px;}
.y1f2{bottom:349.941300px;}
.y138{bottom:352.404600px;}
.y184{bottom:353.228850px;}
.y83{bottom:353.363850px;}
.yef{bottom:353.364000px;}
.y4d{bottom:353.637600px;}
.y10c{bottom:358.030650px;}
.yb9{bottom:361.767750px;}
.y1d7{bottom:364.938300px;}
.y1f1{bottom:364.941300px;}
.y1c{bottom:365.131350px;}
.y13b{bottom:368.148600px;}
.y183{bottom:371.228850px;}
.y82{bottom:371.363850px;}
.yee{bottom:371.364000px;}
.y4c{bottom:371.637600px;}
.y156{bottom:372.919650px;}
.y112{bottom:375.568350px;}
.yb8{bottom:379.767750px;}
.y1d6{bottom:379.938300px;}
.y1f0{bottom:379.941300px;}
.y14d{bottom:380.350200px;}
.y1b{bottom:383.131350px;}
.y14a{bottom:387.898650px;}
.y182{bottom:389.228850px;}
.y81{bottom:389.363850px;}
.yed{bottom:389.364000px;}
.y4b{bottom:389.637600px;}
.y1d5{bottom:394.938300px;}
.y1ef{bottom:394.941300px;}
.yb7{bottom:397.767750px;}
.y16a{bottom:399.601650px;}
.y1a{bottom:401.131350px;}
.y181{bottom:407.228850px;}
.y80{bottom:407.363850px;}
.yec{bottom:407.364000px;}
.y4a{bottom:407.637600px;}
.y1d4{bottom:409.938300px;}
.y1ee{bottom:409.941300px;}
.yb6{bottom:415.767750px;}
.y19{bottom:419.131350px;}
.y1d3{bottom:424.938300px;}
.y1ed{bottom:424.941300px;}
.y180{bottom:425.228850px;}
.y7f{bottom:425.363850px;}
.yeb{bottom:425.364000px;}
.y49{bottom:425.637600px;}
.yb5{bottom:433.767750px;}
.y169{bottom:435.313650px;}
.y18{bottom:437.131350px;}
.y1d2{bottom:439.938300px;}
.y1ec{bottom:439.941300px;}
.y17f{bottom:443.228850px;}
.y7e{bottom:443.363850px;}
.yea{bottom:443.364000px;}
.y48{bottom:443.637600px;}
.yb4{bottom:451.767750px;}
.y1d1{bottom:454.938300px;}
.y1eb{bottom:454.941300px;}
.y17e{bottom:461.228850px;}
.y7d{bottom:461.363850px;}
.ye9{bottom:461.364000px;}
.y47{bottom:461.637600px;}
.yb3{bottom:469.767750px;}
.y1d0{bottom:469.938300px;}
.y1ea{bottom:469.941300px;}
.y17{bottom:473.131350px;}
.y158{bottom:478.159650px;}
.y17d{bottom:479.228850px;}
.y7c{bottom:479.363850px;}
.ye8{bottom:479.364000px;}
.y46{bottom:479.637600px;}
.y1cf{bottom:484.938300px;}
.y1e9{bottom:484.941300px;}
.yb2{bottom:487.767750px;}
.y17c{bottom:497.228850px;}
.y7b{bottom:497.363850px;}
.ye7{bottom:497.364000px;}
.y45{bottom:497.637600px;}
.y1ce{bottom:499.938300px;}
.y1e8{bottom:499.941300px;}
.yb1{bottom:505.767750px;}
.y161{bottom:509.397900px;}
.y1cd{bottom:514.938300px;}
.y1e7{bottom:514.941300px;}
.y17b{bottom:515.228850px;}
.y7a{bottom:515.352600px;}
.y19f{bottom:515.363850px;}
.ye6{bottom:515.364000px;}
.y44{bottom:515.637600px;}
.y13a{bottom:515.688600px;}
.yb0{bottom:523.767750px;}
.y160{bottom:525.141900px;}
.y1cc{bottom:529.938300px;}
.y1e6{bottom:529.941300px;}
.y17a{bottom:533.228850px;}
.y79{bottom:533.352600px;}
.ye5{bottom:533.367750px;}
.y43{bottom:533.637600px;}
.y15a{bottom:535.235100px;}
.yaf{bottom:541.767750px;}
.y1cb{bottom:544.938300px;}
.y1e5{bottom:544.941300px;}
.y15{bottom:549.338550px;}
.y179{bottom:551.228850px;}
.y78{bottom:551.352600px;}
.y19e{bottom:551.363850px;}
.ye4{bottom:551.367750px;}
.y42{bottom:551.637600px;}
.yae{bottom:559.767750px;}
.y1ca{bottom:559.938300px;}
.y1e4{bottom:559.941300px;}
.y13e{bottom:563.128200px;}
.y155{bottom:567.979650px;}
.y178{bottom:569.228850px;}
.y77{bottom:569.352600px;}
.y19d{bottom:569.363850px;}
.ye3{bottom:569.367750px;}
.y41{bottom:569.637600px;}
.y10b{bottom:573.922650px;}
.y1c9{bottom:574.938300px;}
.y1e3{bottom:574.941300px;}
.y15e{bottom:576.063750px;}
.yad{bottom:577.767750px;}
.y14{bottom:582.194550px;}
.y177{bottom:587.228850px;}
.y76{bottom:587.352600px;}
.ye2{bottom:587.367750px;}
.y40{bottom:587.637600px;}
.y1c8{bottom:589.938300px;}
.y1e2{bottom:589.941300px;}
.yac{bottom:595.767750px;}
.y135{bottom:595.909350px;}
.y13{bottom:597.194550px;}
.y1c7{bottom:604.938300px;}
.y1e1{bottom:604.941300px;}
.y176{bottom:605.228850px;}
.y75{bottom:605.352600px;}
.y19c{bottom:605.363850px;}
.y12f{bottom:605.367600px;}
.ye1{bottom:605.367750px;}
.y3f{bottom:605.637600px;}
.y117{bottom:611.548200px;}
.y12{bottom:612.194550px;}
.yab{bottom:613.767750px;}
.y134{bottom:613.909350px;}
.y115{bottom:617.716200px;}
.y1c6{bottom:619.938300px;}
.y1e0{bottom:619.941300px;}
.y175{bottom:623.228850px;}
.y74{bottom:623.352600px;}
.y19b{bottom:623.363850px;}
.y12e{bottom:623.367600px;}
.ye0{bottom:623.367750px;}
.y3e{bottom:623.637600px;}
.y11{bottom:627.194550px;}
.y166{bottom:628.345650px;}
.yaa{bottom:631.767750px;}
.y1c5{bottom:634.938300px;}
.y1df{bottom:634.941300px;}
.y174{bottom:641.228850px;}
.y73{bottom:641.352600px;}
.y19a{bottom:641.363850px;}
.y12d{bottom:641.367600px;}
.ydf{bottom:641.367750px;}
.y3d{bottom:641.637600px;}
.y10{bottom:642.194550px;}
.y133{bottom:649.483050px;}
.ya9{bottom:649.767750px;}
.y1c4{bottom:649.938300px;}
.y1de{bottom:649.941300px;}
.y164{bottom:651.733650px;}
.yf{bottom:657.194550px;}
.y173{bottom:659.228850px;}
.y72{bottom:659.352600px;}
.y199{bottom:659.363850px;}
.y12c{bottom:659.367600px;}
.yde{bottom:659.367750px;}
.y3c{bottom:659.637600px;}
.y132{bottom:664.483050px;}
.y1c3{bottom:664.938300px;}
.y1dd{bottom:664.941300px;}
.ya8{bottom:667.767750px;}
.ye{bottom:672.194550px;}
.y172{bottom:677.228850px;}
.y71{bottom:677.352600px;}
.y198{bottom:677.363850px;}
.y12b{bottom:677.367600px;}
.ydd{bottom:677.367750px;}
.y3b{bottom:677.637600px;}
.y1c2{bottom:679.938300px;}
.y1dc{bottom:679.941300px;}
.ya7{bottom:685.767750px;}
.yd{bottom:687.194550px;}
.y1c1{bottom:694.938300px;}
.y70{bottom:695.352600px;}
.y197{bottom:695.363850px;}
.y12a{bottom:695.367600px;}
.ydc{bottom:695.367750px;}
.y131{bottom:695.517600px;}
.y3a{bottom:695.637600px;}
.y113{bottom:698.284350px;}
.ya6{bottom:703.767750px;}
.y1c0{bottom:709.938300px;}
.y171{bottom:713.228850px;}
.y6f{bottom:713.352600px;}
.y196{bottom:713.363850px;}
.y129{bottom:713.367600px;}
.ydb{bottom:713.367750px;}
.y130{bottom:713.517600px;}
.y39{bottom:713.637600px;}
.y144{bottom:718.067700px;}
.ya5{bottom:721.767750px;}
.y1bf{bottom:724.938300px;}
.y6e{bottom:731.352600px;}
.y195{bottom:731.363850px;}
.y128{bottom:731.367600px;}
.yda{bottom:731.367750px;}
.y38{bottom:731.637600px;}
.yc{bottom:735.903000px;}
.ya4{bottom:739.767750px;}
.y1be{bottom:739.938300px;}
.y6d{bottom:749.352600px;}
.y194{bottom:749.363850px;}
.y127{bottom:749.367600px;}
.yd9{bottom:749.367750px;}
.y37{bottom:749.637600px;}
.yb{bottom:750.339000px;}
.y13d{bottom:753.568200px;}
.y141{bottom:753.580200px;}
.y1bd{bottom:754.938300px;}
.y153{bottom:755.599650px;}
.ya3{bottom:757.767750px;}
.y14c{bottom:758.878200px;}
.y6c{bottom:767.352600px;}
.y170{bottom:767.363850px;}
.y126{bottom:767.367600px;}
.yd8{bottom:767.367750px;}
.y36{bottom:767.637600px;}
.y1bc{bottom:769.938300px;}
.ya2{bottom:775.767750px;}
.ya{bottom:777.494550px;}
.y149{bottom:778.438650px;}
.y1bb{bottom:784.938300px;}
.y6b{bottom:785.352600px;}
.y16f{bottom:785.363850px;}
.y125{bottom:785.367600px;}
.yd7{bottom:785.367750px;}
.y35{bottom:785.637600px;}
.ya1{bottom:793.767750px;}
.y1ba{bottom:799.938300px;}
.y6a{bottom:803.352600px;}
.y16e{bottom:803.363850px;}
.y124{bottom:803.367600px;}
.yd6{bottom:803.367750px;}
.y34{bottom:803.637600px;}
.ya0{bottom:811.767750px;}
.y1b9{bottom:814.938300px;}
.y9{bottom:816.112500px;}
.y69{bottom:821.352600px;}
.y16d{bottom:821.363850px;}
.y123{bottom:821.367600px;}
.yd5{bottom:821.367750px;}
.y33{bottom:821.637600px;}
.y10a{bottom:829.040700px;}
.y10d{bottom:829.042650px;}
.y9f{bottom:829.767750px;}
.y1b8{bottom:829.938300px;}
.y8{bottom:832.612500px;}
.y68{bottom:839.352600px;}
.y16c{bottom:839.363850px;}
.y122{bottom:839.367600px;}
.yd4{bottom:839.367750px;}
.y32{bottom:839.637600px;}
.y1b7{bottom:844.938300px;}
.y7{bottom:844.994550px;}
.y9e{bottom:847.767750px;}
.y67{bottom:857.352600px;}
.y16b{bottom:857.363850px;}
.y121{bottom:857.367600px;}
.yd3{bottom:857.367750px;}
.y31{bottom:857.637600px;}
.y1b6{bottom:859.938300px;}
.y151{bottom:861.355650px;}
.y6{bottom:865.612500px;}
.y1b5{bottom:874.938300px;}
.y66{bottom:875.352600px;}
.y105{bottom:875.363850px;}
.y120{bottom:875.367600px;}
.yd2{bottom:875.367750px;}
.y30{bottom:875.637600px;}
.y5{bottom:880.879800px;}
.y9d{bottom:883.341300px;}
.y1b4{bottom:889.938300px;}
.y65{bottom:893.352600px;}
.y104{bottom:893.363850px;}
.y11f{bottom:893.367600px;}
.yd1{bottom:893.367750px;}
.y2f{bottom:893.637600px;}
.y165{bottom:893.665650px;}
.y163{bottom:893.670750px;}
.y9c{bottom:898.341300px;}
.y1b3{bottom:904.938300px;}
.y154{bottom:906.547650px;}
.y4{bottom:908.269200px;}
.y64{bottom:911.352600px;}
.y103{bottom:911.363850px;}
.y11e{bottom:911.367600px;}
.yd0{bottom:911.367750px;}
.y9b{bottom:913.341300px;}
.y114{bottom:914.080200px;}
.y1b2{bottom:919.938300px;}
.y9a{bottom:928.341300px;}
.y63{bottom:929.352600px;}
.y102{bottom:929.363850px;}
.y11d{bottom:929.367600px;}
.ycf{bottom:929.367750px;}
.y2e{bottom:929.637600px;}
.y1b1{bottom:934.938300px;}
.y3{bottom:935.275200px;}
.y99{bottom:943.341300px;}
.y62{bottom:947.352600px;}
.y101{bottom:947.363850px;}
.y11c{bottom:947.367600px;}
.yce{bottom:947.367750px;}
.y2d{bottom:947.637600px;}
.y1b0{bottom:949.938300px;}
.y98{bottom:958.341300px;}
.y1af{bottom:964.938300px;}
.y61{bottom:965.352600px;}
.y100{bottom:965.363850px;}
.y11b{bottom:965.367600px;}
.ycd{bottom:965.367750px;}
.y2c{bottom:965.637600px;}
.y97{bottom:973.341300px;}
.y1ae{bottom:979.938300px;}
.y2{bottom:979.943400px;}
.y60{bottom:983.352600px;}
.yff{bottom:983.363850px;}
.y11a{bottom:983.367600px;}
.ycc{bottom:983.367750px;}
.y96{bottom:988.341300px;}
.y152{bottom:988.495650px;}
.y1ad{bottom:994.938300px;}
.y5f{bottom:1001.352600px;}
.yfe{bottom:1001.363850px;}
.y119{bottom:1001.367600px;}
.ycb{bottom:1001.367750px;}
.y2b{bottom:1001.502600px;}
.y159{bottom:1008.899100px;}
.y1ac{bottom:1009.938300px;}
.y14b{bottom:1015.702200px;}
.y5e{bottom:1019.352600px;}
.yfd{bottom:1019.363850px;}
.y118{bottom:1019.367600px;}
.yca{bottom:1019.367750px;}
.y95{bottom:1019.371350px;}
.y111{bottom:1023.143100px;}
.y1ab{bottom:1024.938300px;}
.y15d{bottom:1025.067750px;}
.y143{bottom:1027.607700px;}
.y13c{bottom:1031.434500px;}
.y142{bottom:1031.452200px;}
.y148{bottom:1032.922650px;}
.y5d{bottom:1037.352600px;}
.yfc{bottom:1037.363850px;}
.y2a{bottom:1037.367600px;}
.yc9{bottom:1037.367750px;}
.y94{bottom:1037.371350px;}
.y1aa{bottom:1039.938300px;}
.y27{bottom:1070.769450px;}
.y93{bottom:1086.066450px;}
.y26{bottom:1086.069450px;}
.h6{height:20.967187px;}
.h2{height:30.618164px;}
.h7{height:34.945312px;}
.h9{height:34.959187px;}
.he{height:34.968750px;}
.h11{height:34.980188px;}
.h8{height:34.992188px;}
.hd{height:37.179199px;}
.ha{height:43.681641px;}
.hc{height:43.710938px;}
.hb{height:43.740234px;}
.h10{height:43.755234px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.hf{height:54.528188px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x1f{left:82.913400px;}
.x1d{left:88.440900px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x29{left:100.984200px;}
.x10{left:107.185350px;}
.x12{left:110.575350px;}
.x3c{left:112.247400px;}
.x11{left:113.455350px;}
.x2d{left:115.228350px;}
.x3{left:125.439600px;}
.x17{left:127.555350px;}
.x6{left:131.816400px;}
.x2e{left:137.128350px;}
.xf{left:145.105350px;}
.x35{left:148.818900px;}
.x25{left:155.419350px;}
.x4{left:161.559600px;}
.x39{left:176.022900px;}
.x3f{left:184.954500px;}
.xe{left:192.775350px;}
.x43{left:198.875400px;}
.x3d{left:204.094500px;}
.xd{left:211.105350px;}
.x5{left:212.876400px;}
.x26{left:265.123350px;}
.x37{left:275.310900px;}
.x3a{left:280.626900px;}
.x1e{left:316.978200px;}
.x40{left:322.714500px;}
.x22{left:332.285400px;}
.x36{left:341.214900px;}
.x27{left:375.883350px;}
.x41{left:405.622500px;}
.x21{left:443.477400px;}
.xb{left:455.041500px;}
.x13{left:457.105350px;}
.x18{left:478.326000px;}
.x9{left:480.431400px;}
.x45{left:486.846600px;}
.x14{left:491.125350px;}
.x23{left:499.361850px;}
.x30{left:503.428350px;}
.x1b{left:508.118400px;}
.x19{left:512.346000px;}
.x8{left:514.451400px;}
.x31{left:537.454500px;}
.x7{left:549.686400px;}
.x2b{left:551.896200px;}
.x20{left:555.305400px;}
.x33{left:557.852400px;}
.x2a{left:560.404200px;}
.x44{left:574.835400px;}
.x1a{left:593.165400px;}
.x3e{left:595.270500px;}
.x24{left:604.826850px;}
.x16{left:663.492300px;}
.x42{left:702.406500px;}
.x2{left:704.338650px;}
.x3b{left:705.822900px;}
.x38{left:708.474900px;}
.x32{left:717.130200px;}
.x15{left:724.221150px;}
.x34{left:739.336350px;}
.x1c{left:745.480950px;}
.x28{left:752.611350px;}
.x2c{left:754.720200px;}
.x2f{left:779.812350px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.365333pt;}
.v1{vertical-align:20.138133pt;}
.ls41{letter-spacing:-5.973333pt;}
.ls42{letter-spacing:-4.800000pt;}
.ls93{letter-spacing:-2.346667pt;}
.ls56{letter-spacing:-1.120000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls77{letter-spacing:-0.426667pt;}
.ls54{letter-spacing:-0.384000pt;}
.ls55{letter-spacing:-0.373333pt;}
.ls92{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls64{letter-spacing:-0.170667pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls63{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls43{letter-spacing:-0.053333pt;}
.ls65{letter-spacing:-0.042667pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls78{letter-spacing:0.042667pt;}
.ls61{letter-spacing:0.053333pt;}
.ls58{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.106667pt;}
.ls7d{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.266667pt;}
.ls86{letter-spacing:0.298667pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls62{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.373333pt;}
.ls50{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls47{letter-spacing:0.533333pt;}
.ls80{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls76{letter-spacing:0.725333pt;}
.ls36{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.800000pt;}
.ls72{letter-spacing:0.810667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls2{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.906667pt;}
.ls8b{letter-spacing:0.938667pt;}
.ls38{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.981333pt;}
.ls9{letter-spacing:1.013333pt;}
.ls10{letter-spacing:1.066667pt;}
.ls44{letter-spacing:1.109333pt;}
.lsb{letter-spacing:1.120000pt;}
.ls37{letter-spacing:1.173333pt;}
.ls7f{letter-spacing:1.194667pt;}
.ls28{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.237333pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.333333pt;}
.ls59{letter-spacing:1.365333pt;}
.ls35{letter-spacing:1.386667pt;}
.ls75{letter-spacing:1.408000pt;}
.ls24{letter-spacing:1.440000pt;}
.ls8e{letter-spacing:1.450667pt;}
.ls3c{letter-spacing:1.493333pt;}
.ls8a{letter-spacing:1.536000pt;}
.ls1c{letter-spacing:1.546667pt;}
.ls7e{letter-spacing:1.578667pt;}
.ls31{letter-spacing:1.600000pt;}
.ls79{letter-spacing:1.621333pt;}
.lsa{letter-spacing:1.653333pt;}
.ls89{letter-spacing:1.664000pt;}
.ls6e{letter-spacing:1.706667pt;}
.ls88{letter-spacing:1.749333pt;}
.ls46{letter-spacing:1.760000pt;}
.ls2e{letter-spacing:1.813333pt;}
.ls8c{letter-spacing:1.834667pt;}
.lsf{letter-spacing:1.866667pt;}
.ls82{letter-spacing:1.877333pt;}
.ls15{letter-spacing:1.920000pt;}
.ls20{letter-spacing:1.973333pt;}
.ls48{letter-spacing:2.026667pt;}
.ls7a{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.080000pt;}
.ls53{letter-spacing:2.133333pt;}
.ls30{letter-spacing:2.186667pt;}
.ls74{letter-spacing:2.218667pt;}
.ls1b{letter-spacing:2.240000pt;}
.ls32{letter-spacing:2.293333pt;}
.ls26{letter-spacing:2.346667pt;}
.ls27{letter-spacing:2.400000pt;}
.ls4c{letter-spacing:2.453333pt;}
.ls83{letter-spacing:2.474667pt;}
.ls71{letter-spacing:2.506667pt;}
.ls73{letter-spacing:2.517333pt;}
.ls3d{letter-spacing:2.560000pt;}
.ls81{letter-spacing:2.602667pt;}
.ls60{letter-spacing:2.613333pt;}
.ls7c{letter-spacing:2.645333pt;}
.ls22{letter-spacing:2.666667pt;}
.ls85{letter-spacing:2.688000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls2d{letter-spacing:2.773333pt;}
.ls1a{letter-spacing:2.826667pt;}
.ls1f{letter-spacing:2.880000pt;}
.ls4b{letter-spacing:2.933333pt;}
.ls8d{letter-spacing:3.029333pt;}
.ls5f{letter-spacing:3.040000pt;}
.ls49{letter-spacing:3.093333pt;}
.ls51{letter-spacing:3.146667pt;}
.ls57{letter-spacing:3.200000pt;}
.ls91{letter-spacing:3.285333pt;}
.ls45{letter-spacing:3.306667pt;}
.ls6c{letter-spacing:3.360000pt;}
.ls4a{letter-spacing:3.413333pt;}
.ls6b{letter-spacing:3.520000pt;}
.ls66{letter-spacing:3.573333pt;}
.ls6f{letter-spacing:3.626667pt;}
.ls3b{letter-spacing:3.680000pt;}
.ls3a{letter-spacing:3.733333pt;}
.ls52{letter-spacing:3.786667pt;}
.ls3f{letter-spacing:3.840000pt;}
.ls4f{letter-spacing:3.893333pt;}
.ls5d{letter-spacing:3.946667pt;}
.ls39{letter-spacing:4.000000pt;}
.ls5b{letter-spacing:4.053333pt;}
.ls3e{letter-spacing:4.213333pt;}
.ls34{letter-spacing:4.266667pt;}
.ls90{letter-spacing:4.352000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls6{letter-spacing:4.586667pt;}
.ls5e{letter-spacing:4.693333pt;}
.ls87{letter-spacing:4.778667pt;}
.ls84{letter-spacing:4.821333pt;}
.ls5a{letter-spacing:4.906667pt;}
.ls5c{letter-spacing:4.960000pt;}
.ls68{letter-spacing:5.280000pt;}
.ls70{letter-spacing:5.600000pt;}
.ls6a{letter-spacing:5.653333pt;}
.ls2a{letter-spacing:5.760000pt;}
.ls69{letter-spacing:6.293333pt;}
.ls33{letter-spacing:6.986667pt;}
.ls4e{letter-spacing:7.360000pt;}
.ls4d{letter-spacing:7.413333pt;}
.ls6d{letter-spacing:8.266667pt;}
.ls67{letter-spacing:8.480000pt;}
.ws62{word-spacing:-19.733333pt;}
.ws1c{word-spacing:-19.413333pt;}
.ws66{word-spacing:-18.773333pt;}
.ws24{word-spacing:-18.666667pt;}
.ws7c{word-spacing:-18.400000pt;}
.ws7f{word-spacing:-18.186667pt;}
.ws23{word-spacing:-17.653333pt;}
.ws18{word-spacing:-17.066667pt;}
.ws1b{word-spacing:-16.800000pt;}
.ws43{word-spacing:-16.693333pt;}
.ws7d{word-spacing:-16.213333pt;}
.ws1d{word-spacing:-16.160000pt;}
.ws1f{word-spacing:-16.053333pt;}
.ws7b{word-spacing:-15.893333pt;}
.ws21{word-spacing:-15.733333pt;}
.ws1a{word-spacing:-15.680000pt;}
.ws7e{word-spacing:-15.626667pt;}
.ws67{word-spacing:-15.520000pt;}
.ws80{word-spacing:-15.413333pt;}
.ws41{word-spacing:-15.360000pt;}
.ws42{word-spacing:-15.306667pt;}
.ws19{word-spacing:-15.253333pt;}
.ws3{word-spacing:-15.200000pt;}
.ws1e{word-spacing:-15.093333pt;}
.ws44{word-spacing:-14.986667pt;}
.ws4{word-spacing:-14.826667pt;}
.ws8d{word-spacing:-14.421333pt;}
.ws8a{word-spacing:-14.336000pt;}
.ws8b{word-spacing:-13.354667pt;}
.ws8c{word-spacing:-12.928000pt;}
.ws8e{word-spacing:-12.842667pt;}
.ws81{word-spacing:-12.714667pt;}
.ws25{word-spacing:-12.602667pt;}
.ws2{word-spacing:-12.288000pt;}
.ws1{word-spacing:-11.861333pt;}
.ws88{word-spacing:-11.690667pt;}
.ws89{word-spacing:-11.605333pt;}
.ws40{word-spacing:-11.477333pt;}
.ws22{word-spacing:-10.026667pt;}
.ws0{word-spacing:-9.785600pt;}
.ws8f{word-spacing:-9.514667pt;}
.ws20{word-spacing:-8.853333pt;}
.ws3f{word-spacing:-4.213333pt;}
.ws3d{word-spacing:-3.680000pt;}
.ws93{word-spacing:-3.626667pt;}
.ws26{word-spacing:-2.826667pt;}
.ws2d{word-spacing:-2.720000pt;}
.ws2e{word-spacing:-2.666667pt;}
.ws9d{word-spacing:-2.560000pt;}
.ws6{word-spacing:-2.368000pt;}
.wsa0{word-spacing:-2.346667pt;}
.ws28{word-spacing:-2.240000pt;}
.ws15{word-spacing:-1.973333pt;}
.ws3e{word-spacing:-1.653333pt;}
.ws32{word-spacing:-1.440000pt;}
.ws9c{word-spacing:-1.408000pt;}
.ws31{word-spacing:-1.333333pt;}
.ws95{word-spacing:-1.194667pt;}
.ws12{word-spacing:-1.120000pt;}
.ws71{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws97{word-spacing:-0.768000pt;}
.ws6b{word-spacing:-0.746667pt;}
.ws4a{word-spacing:-0.693333pt;}
.ws13{word-spacing:-0.480000pt;}
.ws56{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.373333pt;}
.ws9a{word-spacing:-0.341333pt;}
.ws2a{word-spacing:-0.320000pt;}
.ws4c{word-spacing:-0.266667pt;}
.ws76{word-spacing:-0.128000pt;}
.ws4b{word-spacing:-0.106667pt;}
.ws7a{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:0.042667pt;}
.ws37{word-spacing:0.053333pt;}
.ws29{word-spacing:0.160000pt;}
.ws78{word-spacing:0.170667pt;}
.ws50{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.266667pt;}
.ws72{word-spacing:0.341333pt;}
.ws6a{word-spacing:0.373333pt;}
.ws45{word-spacing:0.384000pt;}
.ws5b{word-spacing:0.426667pt;}
.ws5a{word-spacing:0.480000pt;}
.ws53{word-spacing:0.533333pt;}
.ws99{word-spacing:0.554667pt;}
.ws68{word-spacing:0.586667pt;}
.ws98{word-spacing:0.725333pt;}
.ws47{word-spacing:0.746667pt;}
.wse{word-spacing:0.810667pt;}
.ws2b{word-spacing:0.853333pt;}
.ws96{word-spacing:0.896000pt;}
.ws49{word-spacing:0.906667pt;}
.ws38{word-spacing:1.013333pt;}
.ws92{word-spacing:1.024000pt;}
.ws90{word-spacing:1.066667pt;}
.ws46{word-spacing:1.109333pt;}
.ws6c{word-spacing:1.120000pt;}
.ws5d{word-spacing:1.152000pt;}
.ws54{word-spacing:1.173333pt;}
.ws69{word-spacing:1.280000pt;}
.ws59{word-spacing:1.333333pt;}
.ws91{word-spacing:1.365333pt;}
.ws30{word-spacing:1.386667pt;}
.ws34{word-spacing:1.440000pt;}
.ws61{word-spacing:1.450667pt;}
.ws17{word-spacing:1.546667pt;}
.ws2f{word-spacing:1.706667pt;}
.ws85{word-spacing:1.866667pt;}
.ws75{word-spacing:2.048000pt;}
.ws57{word-spacing:2.080000pt;}
.ws36{word-spacing:2.240000pt;}
.ws9{word-spacing:2.304000pt;}
.ws77{word-spacing:2.346667pt;}
.wsd{word-spacing:2.389333pt;}
.ws4d{word-spacing:2.400000pt;}
.ws9f{word-spacing:2.432000pt;}
.ws82{word-spacing:2.453333pt;}
.ws52{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.645333pt;}
.ws74{word-spacing:2.688000pt;}
.ws9e{word-spacing:2.730667pt;}
.ws3c{word-spacing:2.773333pt;}
.ws65{word-spacing:2.816000pt;}
.ws4f{word-spacing:2.826667pt;}
.ws79{word-spacing:3.029333pt;}
.ws33{word-spacing:3.040000pt;}
.ws8{word-spacing:3.072000pt;}
.ws6d{word-spacing:3.093333pt;}
.ws7{word-spacing:3.114667pt;}
.ws4e{word-spacing:3.200000pt;}
.ws9b{word-spacing:3.285333pt;}
.ws58{word-spacing:3.306667pt;}
.ws6e{word-spacing:3.413333pt;}
.wsc{word-spacing:3.498667pt;}
.ws16{word-spacing:3.573333pt;}
.ws94{word-spacing:3.584000pt;}
.ws84{word-spacing:3.680000pt;}
.ws35{word-spacing:3.786667pt;}
.ws83{word-spacing:3.840000pt;}
.ws55{word-spacing:3.882667pt;}
.ws87{word-spacing:3.893333pt;}
.wsb{word-spacing:3.925333pt;}
.ws39{word-spacing:4.000000pt;}
.ws6f{word-spacing:4.160000pt;}
.ws73{word-spacing:4.213333pt;}
.ws51{word-spacing:4.266667pt;}
.ws70{word-spacing:4.320000pt;}
.ws86{word-spacing:4.373333pt;}
.ws48{word-spacing:4.426667pt;}
.ws3b{word-spacing:4.640000pt;}
.ws11{word-spacing:4.693333pt;}
.ws10{word-spacing:4.853333pt;}
.wsf{word-spacing:4.906667pt;}
.ws60{word-spacing:5.290667pt;}
.ws64{word-spacing:5.418667pt;}
.ws27{word-spacing:7.733333pt;}
.ws5f{word-spacing:749.909333pt;}
.ws63{word-spacing:769.664000pt;}
.ws5e{word-spacing:1512.234667pt;}
._d{margin-left:-2576.112000pt;}
._f{margin-left:-2554.941333pt;}
._e{margin-left:-7.840000pt;}
._b{margin-left:-6.826667pt;}
._2{margin-left:-5.749333pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-3.114667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.060267pt;}
._5{width:0.896000pt;}
._11{width:1.834667pt;}
._8{width:2.752000pt;}
._9{width:4.266667pt;}
._7{width:5.173333pt;}
._6{width:6.080000pt;}
._a{width:7.776000pt;}
._c{width:9.013333pt;}
._10{width:784.384000pt;}
.fs5{font-size:25.600000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y150{bottom:73.795600pt;}
.y162{bottom:73.803333pt;}
.y15c{bottom:73.806000pt;}
.y109{bottom:73.879733pt;}
.y193{bottom:73.981200pt;}
.y92{bottom:74.101200pt;}
.y28{bottom:74.216800pt;}
.y5c{bottom:74.344533pt;}
.y110{bottom:74.434267pt;}
.y137{bottom:75.200533pt;}
.yc8{bottom:81.571333pt;}
.yfb{bottom:81.697200pt;}
.y1a9{bottom:84.263733pt;}
.y14f{bottom:87.790267pt;}
.y15b{bottom:87.800667pt;}
.y108{bottom:87.874400pt;}
.y10f{bottom:88.428933pt;}
.y136{bottom:89.195200pt;}
.y192{bottom:89.981200pt;}
.y91{bottom:90.101200pt;}
.y5b{bottom:90.344533pt;}
.yc7{bottom:97.571333pt;}
.y1a8{bottom:97.597067pt;}
.yfa{bottom:97.697200pt;}
.y14e{bottom:101.784933pt;}
.y107{bottom:101.869067pt;}
.y10e{bottom:102.423600pt;}
.y147{bottom:104.325733pt;}
.y191{bottom:105.981200pt;}
.y90{bottom:106.101200pt;}
.y5a{bottom:106.344533pt;}
.y16{bottom:108.016267pt;}
.y1a7{bottom:110.930400pt;}
.yc6{bottom:113.571333pt;}
.yf9{bottom:113.697200pt;}
.y106{bottom:115.863733pt;}
.y146{bottom:118.320400pt;}
.y190{bottom:121.981200pt;}
.y8f{bottom:122.101200pt;}
.y59{bottom:122.344533pt;}
.y1a6{bottom:124.263733pt;}
.yc5{bottom:129.571333pt;}
.yf8{bottom:129.697200pt;}
.y1a5{bottom:137.597067pt;}
.y18f{bottom:137.981200pt;}
.y8e{bottom:138.101200pt;}
.y58{bottom:138.344533pt;}
.y116{bottom:140.323733pt;}
.y140{bottom:141.283733pt;}
.yc4{bottom:145.571333pt;}
.yf7{bottom:145.697200pt;}
.y1a4{bottom:150.930400pt;}
.y18e{bottom:153.981200pt;}
.y8d{bottom:154.101200pt;}
.y57{bottom:154.344533pt;}
.yc3{bottom:161.571333pt;}
.yf6{bottom:161.697200pt;}
.y1a3{bottom:164.263733pt;}
.y18d{bottom:169.981200pt;}
.y8c{bottom:170.101200pt;}
.y56{bottom:170.344533pt;}
.yc2{bottom:177.571333pt;}
.y1a2{bottom:177.597067pt;}
.y25{bottom:180.561200pt;}
.y18c{bottom:185.981200pt;}
.y8b{bottom:186.101200pt;}
.y55{bottom:186.344533pt;}
.y1a1{bottom:190.930400pt;}
.yf5{bottom:193.318267pt;}
.yc1{bottom:193.571333pt;}
.y24{bottom:196.561200pt;}
.y18b{bottom:201.981200pt;}
.y8a{bottom:202.101200pt;}
.y54{bottom:202.344533pt;}
.y1a0{bottom:204.263733pt;}
.yf4{bottom:206.651600pt;}
.yc0{bottom:209.571333pt;}
.y23{bottom:212.561200pt;}
.y18a{bottom:217.981200pt;}
.y89{bottom:218.101200pt;}
.y53{bottom:218.344533pt;}
.y168{bottom:223.670800pt;}
.ybf{bottom:225.571333pt;}
.y22{bottom:228.561200pt;}
.y139{bottom:228.779200pt;}
.y189{bottom:233.981200pt;}
.y88{bottom:234.101200pt;}
.yf3{bottom:234.234667pt;}
.y52{bottom:234.344533pt;}
.ybe{bottom:241.571333pt;}
.y157{bottom:243.142800pt;}
.y21{bottom:244.561200pt;}
.y188{bottom:249.981200pt;}
.y87{bottom:250.101200pt;}
.yf2{bottom:250.234667pt;}
.y51{bottom:250.344533pt;}
.ybd{bottom:257.571333pt;}
.y145{bottom:259.573067pt;}
.y20{bottom:260.561200pt;}
.y187{bottom:265.981200pt;}
.y86{bottom:266.101200pt;}
.y50{bottom:266.344533pt;}
.y1db{bottom:271.056267pt;}
.y1f5{bottom:271.058933pt;}
.ybc{bottom:273.571333pt;}
.y1f{bottom:276.561200pt;}
.y186{bottom:281.981200pt;}
.y85{bottom:282.101200pt;}
.yf1{bottom:282.101333pt;}
.y4f{bottom:282.344533pt;}
.y1da{bottom:284.389600pt;}
.y1f4{bottom:284.392267pt;}
.ybb{bottom:289.571333pt;}
.y1e{bottom:292.561200pt;}
.y1d9{bottom:297.722933pt;}
.y1f3{bottom:297.725600pt;}
.y185{bottom:297.981200pt;}
.y84{bottom:298.101200pt;}
.yf0{bottom:298.101333pt;}
.y4e{bottom:298.344533pt;}
.yba{bottom:305.571333pt;}
.y167{bottom:306.060133pt;}
.y15f{bottom:307.960667pt;}
.y1d{bottom:308.561200pt;}
.y13f{bottom:310.979733pt;}
.y1d8{bottom:311.056267pt;}
.y1f2{bottom:311.058933pt;}
.y138{bottom:313.248533pt;}
.y184{bottom:313.981200pt;}
.y83{bottom:314.101200pt;}
.yef{bottom:314.101333pt;}
.y4d{bottom:314.344533pt;}
.y10c{bottom:318.249467pt;}
.yb9{bottom:321.571333pt;}
.y1d7{bottom:324.389600pt;}
.y1f1{bottom:324.392267pt;}
.y1c{bottom:324.561200pt;}
.y13b{bottom:327.243200pt;}
.y183{bottom:329.981200pt;}
.y82{bottom:330.101200pt;}
.yee{bottom:330.101333pt;}
.y4c{bottom:330.344533pt;}
.y156{bottom:331.484133pt;}
.y112{bottom:333.838533pt;}
.yb8{bottom:337.571333pt;}
.y1d6{bottom:337.722933pt;}
.y1f0{bottom:337.725600pt;}
.y14d{bottom:338.089067pt;}
.y1b{bottom:340.561200pt;}
.y14a{bottom:344.798800pt;}
.y182{bottom:345.981200pt;}
.y81{bottom:346.101200pt;}
.yed{bottom:346.101333pt;}
.y4b{bottom:346.344533pt;}
.y1d5{bottom:351.056267pt;}
.y1ef{bottom:351.058933pt;}
.yb7{bottom:353.571333pt;}
.y16a{bottom:355.201467pt;}
.y1a{bottom:356.561200pt;}
.y181{bottom:361.981200pt;}
.y80{bottom:362.101200pt;}
.yec{bottom:362.101333pt;}
.y4a{bottom:362.344533pt;}
.y1d4{bottom:364.389600pt;}
.y1ee{bottom:364.392267pt;}
.yb6{bottom:369.571333pt;}
.y19{bottom:372.561200pt;}
.y1d3{bottom:377.722933pt;}
.y1ed{bottom:377.725600pt;}
.y180{bottom:377.981200pt;}
.y7f{bottom:378.101200pt;}
.yeb{bottom:378.101333pt;}
.y49{bottom:378.344533pt;}
.yb5{bottom:385.571333pt;}
.y169{bottom:386.945467pt;}
.y18{bottom:388.561200pt;}
.y1d2{bottom:391.056267pt;}
.y1ec{bottom:391.058933pt;}
.y17f{bottom:393.981200pt;}
.y7e{bottom:394.101200pt;}
.yea{bottom:394.101333pt;}
.y48{bottom:394.344533pt;}
.yb4{bottom:401.571333pt;}
.y1d1{bottom:404.389600pt;}
.y1eb{bottom:404.392267pt;}
.y17e{bottom:409.981200pt;}
.y7d{bottom:410.101200pt;}
.ye9{bottom:410.101333pt;}
.y47{bottom:410.344533pt;}
.yb3{bottom:417.571333pt;}
.y1d0{bottom:417.722933pt;}
.y1ea{bottom:417.725600pt;}
.y17{bottom:420.561200pt;}
.y158{bottom:425.030800pt;}
.y17d{bottom:425.981200pt;}
.y7c{bottom:426.101200pt;}
.ye8{bottom:426.101333pt;}
.y46{bottom:426.344533pt;}
.y1cf{bottom:431.056267pt;}
.y1e9{bottom:431.058933pt;}
.yb2{bottom:433.571333pt;}
.y17c{bottom:441.981200pt;}
.y7b{bottom:442.101200pt;}
.ye7{bottom:442.101333pt;}
.y45{bottom:442.344533pt;}
.y1ce{bottom:444.389600pt;}
.y1e8{bottom:444.392267pt;}
.yb1{bottom:449.571333pt;}
.y161{bottom:452.798133pt;}
.y1cd{bottom:457.722933pt;}
.y1e7{bottom:457.725600pt;}
.y17b{bottom:457.981200pt;}
.y7a{bottom:458.091200pt;}
.y19f{bottom:458.101200pt;}
.ye6{bottom:458.101333pt;}
.y44{bottom:458.344533pt;}
.y13a{bottom:458.389867pt;}
.yb0{bottom:465.571333pt;}
.y160{bottom:466.792800pt;}
.y1cc{bottom:471.056267pt;}
.y1e6{bottom:471.058933pt;}
.y17a{bottom:473.981200pt;}
.y79{bottom:474.091200pt;}
.ye5{bottom:474.104667pt;}
.y43{bottom:474.344533pt;}
.y15a{bottom:475.764533pt;}
.yaf{bottom:481.571333pt;}
.y1cb{bottom:484.389600pt;}
.y1e5{bottom:484.392267pt;}
.y15{bottom:488.300933pt;}
.y179{bottom:489.981200pt;}
.y78{bottom:490.091200pt;}
.y19e{bottom:490.101200pt;}
.ye4{bottom:490.104667pt;}
.y42{bottom:490.344533pt;}
.yae{bottom:497.571333pt;}
.y1ca{bottom:497.722933pt;}
.y1e4{bottom:497.725600pt;}
.y13e{bottom:500.558400pt;}
.y155{bottom:504.870800pt;}
.y178{bottom:505.981200pt;}
.y77{bottom:506.091200pt;}
.y19d{bottom:506.101200pt;}
.ye3{bottom:506.104667pt;}
.y41{bottom:506.344533pt;}
.y10b{bottom:510.153467pt;}
.y1c9{bottom:511.056267pt;}
.y1e3{bottom:511.058933pt;}
.y15e{bottom:512.056667pt;}
.yad{bottom:513.571333pt;}
.y14{bottom:517.506267pt;}
.y177{bottom:521.981200pt;}
.y76{bottom:522.091200pt;}
.ye2{bottom:522.104667pt;}
.y40{bottom:522.344533pt;}
.y1c8{bottom:524.389600pt;}
.y1e2{bottom:524.392267pt;}
.yac{bottom:529.571333pt;}
.y135{bottom:529.697200pt;}
.y13{bottom:530.839600pt;}
.y1c7{bottom:537.722933pt;}
.y1e1{bottom:537.725600pt;}
.y176{bottom:537.981200pt;}
.y75{bottom:538.091200pt;}
.y19c{bottom:538.101200pt;}
.y12f{bottom:538.104533pt;}
.ye1{bottom:538.104667pt;}
.y3f{bottom:538.344533pt;}
.y117{bottom:543.598400pt;}
.y12{bottom:544.172933pt;}
.yab{bottom:545.571333pt;}
.y134{bottom:545.697200pt;}
.y115{bottom:549.081067pt;}
.y1c6{bottom:551.056267pt;}
.y1e0{bottom:551.058933pt;}
.y175{bottom:553.981200pt;}
.y74{bottom:554.091200pt;}
.y19b{bottom:554.101200pt;}
.y12e{bottom:554.104533pt;}
.ye0{bottom:554.104667pt;}
.y3e{bottom:554.344533pt;}
.y11{bottom:557.506267pt;}
.y166{bottom:558.529467pt;}
.yaa{bottom:561.571333pt;}
.y1c5{bottom:564.389600pt;}
.y1df{bottom:564.392267pt;}
.y174{bottom:569.981200pt;}
.y73{bottom:570.091200pt;}
.y19a{bottom:570.101200pt;}
.y12d{bottom:570.104533pt;}
.ydf{bottom:570.104667pt;}
.y3d{bottom:570.344533pt;}
.y10{bottom:570.839600pt;}
.y133{bottom:577.318267pt;}
.ya9{bottom:577.571333pt;}
.y1c4{bottom:577.722933pt;}
.y1de{bottom:577.725600pt;}
.y164{bottom:579.318800pt;}
.yf{bottom:584.172933pt;}
.y173{bottom:585.981200pt;}
.y72{bottom:586.091200pt;}
.y199{bottom:586.101200pt;}
.y12c{bottom:586.104533pt;}
.yde{bottom:586.104667pt;}
.y3c{bottom:586.344533pt;}
.y132{bottom:590.651600pt;}
.y1c3{bottom:591.056267pt;}
.y1dd{bottom:591.058933pt;}
.ya8{bottom:593.571333pt;}
.ye{bottom:597.506267pt;}
.y172{bottom:601.981200pt;}
.y71{bottom:602.091200pt;}
.y198{bottom:602.101200pt;}
.y12b{bottom:602.104533pt;}
.ydd{bottom:602.104667pt;}
.y3b{bottom:602.344533pt;}
.y1c2{bottom:604.389600pt;}
.y1dc{bottom:604.392267pt;}
.ya7{bottom:609.571333pt;}
.yd{bottom:610.839600pt;}
.y1c1{bottom:617.722933pt;}
.y70{bottom:618.091200pt;}
.y197{bottom:618.101200pt;}
.y12a{bottom:618.104533pt;}
.ydc{bottom:618.104667pt;}
.y131{bottom:618.237867pt;}
.y3a{bottom:618.344533pt;}
.y113{bottom:620.697200pt;}
.ya6{bottom:625.571333pt;}
.y1c0{bottom:631.056267pt;}
.y171{bottom:633.981200pt;}
.y6f{bottom:634.091200pt;}
.y196{bottom:634.101200pt;}
.y129{bottom:634.104533pt;}
.ydb{bottom:634.104667pt;}
.y130{bottom:634.237867pt;}
.y39{bottom:634.344533pt;}
.y144{bottom:638.282400pt;}
.ya5{bottom:641.571333pt;}
.y1bf{bottom:644.389600pt;}
.y6e{bottom:650.091200pt;}
.y195{bottom:650.101200pt;}
.y128{bottom:650.104533pt;}
.yda{bottom:650.104667pt;}
.y38{bottom:650.344533pt;}
.yc{bottom:654.136000pt;}
.ya4{bottom:657.571333pt;}
.y1be{bottom:657.722933pt;}
.y6d{bottom:666.091200pt;}
.y194{bottom:666.101200pt;}
.y127{bottom:666.104533pt;}
.yd9{bottom:666.104667pt;}
.y37{bottom:666.344533pt;}
.yb{bottom:666.968000pt;}
.y13d{bottom:669.838400pt;}
.y141{bottom:669.849067pt;}
.y1bd{bottom:671.056267pt;}
.y153{bottom:671.644133pt;}
.ya3{bottom:673.571333pt;}
.y14c{bottom:674.558400pt;}
.y6c{bottom:682.091200pt;}
.y170{bottom:682.101200pt;}
.y126{bottom:682.104533pt;}
.yd8{bottom:682.104667pt;}
.y36{bottom:682.344533pt;}
.y1bc{bottom:684.389600pt;}
.ya2{bottom:689.571333pt;}
.ya{bottom:691.106267pt;}
.y149{bottom:691.945467pt;}
.y1bb{bottom:697.722933pt;}
.y6b{bottom:698.091200pt;}
.y16f{bottom:698.101200pt;}
.y125{bottom:698.104533pt;}
.yd7{bottom:698.104667pt;}
.y35{bottom:698.344533pt;}
.ya1{bottom:705.571333pt;}
.y1ba{bottom:711.056267pt;}
.y6a{bottom:714.091200pt;}
.y16e{bottom:714.101200pt;}
.y124{bottom:714.104533pt;}
.yd6{bottom:714.104667pt;}
.y34{bottom:714.344533pt;}
.ya0{bottom:721.571333pt;}
.y1b9{bottom:724.389600pt;}
.y9{bottom:725.433333pt;}
.y69{bottom:730.091200pt;}
.y16d{bottom:730.101200pt;}
.y123{bottom:730.104533pt;}
.yd5{bottom:730.104667pt;}
.y33{bottom:730.344533pt;}
.y10a{bottom:736.925067pt;}
.y10d{bottom:736.926800pt;}
.y9f{bottom:737.571333pt;}
.y1b8{bottom:737.722933pt;}
.y8{bottom:740.100000pt;}
.y68{bottom:746.091200pt;}
.y16c{bottom:746.101200pt;}
.y122{bottom:746.104533pt;}
.yd4{bottom:746.104667pt;}
.y32{bottom:746.344533pt;}
.y1b7{bottom:751.056267pt;}
.y7{bottom:751.106267pt;}
.y9e{bottom:753.571333pt;}
.y67{bottom:762.091200pt;}
.y16b{bottom:762.101200pt;}
.y121{bottom:762.104533pt;}
.yd3{bottom:762.104667pt;}
.y31{bottom:762.344533pt;}
.y1b6{bottom:764.389600pt;}
.y151{bottom:765.649467pt;}
.y6{bottom:769.433333pt;}
.y1b5{bottom:777.722933pt;}
.y66{bottom:778.091200pt;}
.y105{bottom:778.101200pt;}
.y120{bottom:778.104533pt;}
.yd2{bottom:778.104667pt;}
.y30{bottom:778.344533pt;}
.y5{bottom:783.004267pt;}
.y9d{bottom:785.192267pt;}
.y1b4{bottom:791.056267pt;}
.y65{bottom:794.091200pt;}
.y104{bottom:794.101200pt;}
.y11f{bottom:794.104533pt;}
.yd1{bottom:794.104667pt;}
.y2f{bottom:794.344533pt;}
.y165{bottom:794.369467pt;}
.y163{bottom:794.374000pt;}
.y9c{bottom:798.525600pt;}
.y1b3{bottom:804.389600pt;}
.y154{bottom:805.820133pt;}
.y4{bottom:807.350400pt;}
.y64{bottom:810.091200pt;}
.y103{bottom:810.101200pt;}
.y11e{bottom:810.104533pt;}
.yd0{bottom:810.104667pt;}
.y9b{bottom:811.858933pt;}
.y114{bottom:812.515733pt;}
.y1b2{bottom:817.722933pt;}
.y9a{bottom:825.192267pt;}
.y63{bottom:826.091200pt;}
.y102{bottom:826.101200pt;}
.y11d{bottom:826.104533pt;}
.ycf{bottom:826.104667pt;}
.y2e{bottom:826.344533pt;}
.y1b1{bottom:831.056267pt;}
.y3{bottom:831.355733pt;}
.y99{bottom:838.525600pt;}
.y62{bottom:842.091200pt;}
.y101{bottom:842.101200pt;}
.y11c{bottom:842.104533pt;}
.yce{bottom:842.104667pt;}
.y2d{bottom:842.344533pt;}
.y1b0{bottom:844.389600pt;}
.y98{bottom:851.858933pt;}
.y1af{bottom:857.722933pt;}
.y61{bottom:858.091200pt;}
.y100{bottom:858.101200pt;}
.y11b{bottom:858.104533pt;}
.ycd{bottom:858.104667pt;}
.y2c{bottom:858.344533pt;}
.y97{bottom:865.192267pt;}
.y1ae{bottom:871.056267pt;}
.y2{bottom:871.060800pt;}
.y60{bottom:874.091200pt;}
.yff{bottom:874.101200pt;}
.y11a{bottom:874.104533pt;}
.ycc{bottom:874.104667pt;}
.y96{bottom:878.525600pt;}
.y152{bottom:878.662800pt;}
.y1ad{bottom:884.389600pt;}
.y5f{bottom:890.091200pt;}
.yfe{bottom:890.101200pt;}
.y119{bottom:890.104533pt;}
.ycb{bottom:890.104667pt;}
.y2b{bottom:890.224533pt;}
.y159{bottom:896.799200pt;}
.y1ac{bottom:897.722933pt;}
.y14b{bottom:902.846400pt;}
.y5e{bottom:906.091200pt;}
.yfd{bottom:906.101200pt;}
.y118{bottom:906.104533pt;}
.yca{bottom:906.104667pt;}
.y95{bottom:906.107867pt;}
.y111{bottom:909.460533pt;}
.y1ab{bottom:911.056267pt;}
.y15d{bottom:911.171333pt;}
.y143{bottom:913.429067pt;}
.y13c{bottom:916.830667pt;}
.y142{bottom:916.846400pt;}
.y148{bottom:918.153467pt;}
.y5d{bottom:922.091200pt;}
.yfc{bottom:922.101200pt;}
.y2a{bottom:922.104533pt;}
.yc9{bottom:922.104667pt;}
.y94{bottom:922.107867pt;}
.y1aa{bottom:924.389600pt;}
.y27{bottom:951.795067pt;}
.y93{bottom:965.392400pt;}
.y26{bottom:965.395067pt;}
.h6{height:18.637500pt;}
.h2{height:27.216146pt;}
.h7{height:31.062500pt;}
.h9{height:31.074833pt;}
.he{height:31.083333pt;}
.h11{height:31.093500pt;}
.h8{height:31.104167pt;}
.hd{height:33.048177pt;}
.ha{height:38.828125pt;}
.hc{height:38.854167pt;}
.hb{height:38.880208pt;}
.h10{height:38.893542pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.hf{height:48.469500pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x1f{left:73.700800pt;}
.x1d{left:78.614133pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x29{left:89.763733pt;}
.x10{left:95.275867pt;}
.x12{left:98.289200pt;}
.x3c{left:99.775467pt;}
.x11{left:100.849200pt;}
.x2d{left:102.425200pt;}
.x3{left:111.501867pt;}
.x17{left:113.382533pt;}
.x6{left:117.170133pt;}
.x2e{left:121.891867pt;}
.xf{left:128.982533pt;}
.x35{left:132.283467pt;}
.x25{left:138.150533pt;}
.x4{left:143.608533pt;}
.x39{left:156.464800pt;}
.x3f{left:164.404000pt;}
.xe{left:171.355867pt;}
.x43{left:176.778133pt;}
.x3d{left:181.417333pt;}
.xd{left:187.649200pt;}
.x5{left:189.223467pt;}
.x26{left:235.665200pt;}
.x37{left:244.720800pt;}
.x3a{left:249.446133pt;}
.x1e{left:281.758400pt;}
.x40{left:286.857333pt;}
.x22{left:295.364800pt;}
.x36{left:303.302133pt;}
.x27{left:334.118533pt;}
.x41{left:360.553333pt;}
.x21{left:394.202133pt;}
.xb{left:404.481333pt;}
.x13{left:406.315867pt;}
.x18{left:425.178667pt;}
.x9{left:427.050133pt;}
.x45{left:432.752533pt;}
.x14{left:436.555867pt;}
.x23{left:443.877200pt;}
.x30{left:447.491867pt;}
.x1b{left:451.660800pt;}
.x19{left:455.418667pt;}
.x8{left:457.290133pt;}
.x31{left:477.737333pt;}
.x7{left:488.610133pt;}
.x2b{left:490.574400pt;}
.x20{left:493.604800pt;}
.x33{left:495.868800pt;}
.x2a{left:498.137067pt;}
.x44{left:510.964800pt;}
.x1a{left:527.258133pt;}
.x3e{left:529.129333pt;}
.x24{left:537.623867pt;}
.x16{left:589.770933pt;}
.x42{left:624.361333pt;}
.x2{left:626.078800pt;}
.x3b{left:627.398133pt;}
.x38{left:629.755467pt;}
.x32{left:637.449067pt;}
.x15{left:643.752133pt;}
.x34{left:657.187867pt;}
.x1c{left:662.649733pt;}
.x28{left:668.987867pt;}
.x2c{left:670.862400pt;}
.x2f{left:693.166533pt;}
}




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