
    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_c5e5c06e5431de833a05087d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.060547;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_a6a91d554bd6c332b6fb41d7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899902;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_aaaac4d7497718b893495654.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e5c9e6f3a74d4a36e60cf149.woff')format("woff");}.ff4{font-family:ff4;line-height:1.026000;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_eb0c1c45feb8b1ee82385494.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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_eeaf890abd0597c06219fd8b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_eb8307008fc8de217d7cfa0b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_9c243fba6a50ad5d42db7cb8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c6723c43bdedba8bb0cd3f40.woff')format("woff");}.ff9{font-family:ff9;line-height:1.019043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_154f63efcd82500d2259da17.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5ddc205ea1d4febc142abb6d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.678711;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:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls4a{letter-spacing:-4.968000px;}
.ls4d{letter-spacing:-4.248000px;}
.ls2d{letter-spacing:-4.032000px;}
.ls1e{letter-spacing:-3.600000px;}
.ls48{letter-spacing:-3.456000px;}
.ls61{letter-spacing:-3.360000px;}
.ls1c{letter-spacing:-3.312000px;}
.ls33{letter-spacing:-3.180000px;}
.ls6{letter-spacing:-3.044400px;}
.ls1f{letter-spacing:-2.793000px;}
.ls28{letter-spacing:-2.592000px;}
.ls3a{letter-spacing:-2.520000px;}
.ls17{letter-spacing:-2.448000px;}
.ls2a{letter-spacing:-2.400000px;}
.ls42{letter-spacing:-2.304000px;}
.ls47{letter-spacing:-2.232000px;}
.ls20{letter-spacing:-2.109000px;}
.ls3f{letter-spacing:-2.088000px;}
.ls29{letter-spacing:-1.944000px;}
.ls3d{letter-spacing:-1.800000px;}
.ls49{letter-spacing:-1.728000px;}
.ls44{letter-spacing:-1.680000px;}
.ls4c{letter-spacing:-1.656000px;}
.ls40{letter-spacing:-1.584000px;}
.ls14{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls27{letter-spacing:-1.296000px;}
.ls57{letter-spacing:-1.248000px;}
.ls15{letter-spacing:-1.224000px;}
.ls31{letter-spacing:-1.200000px;}
.ls3e{letter-spacing:-1.122000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-1.056000px;}
.ls25{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.936000px;}
.ls45{letter-spacing:-0.924000px;}
.ls26{letter-spacing:-0.864000px;}
.ls30{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.792000px;}
.ls37{letter-spacing:-0.741000px;}
.ls19{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.600000px;}
.ls4e{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.540000px;}
.ls5e{letter-spacing:-0.528000px;}
.ls43{letter-spacing:-0.504000px;}
.ls21{letter-spacing:-0.480000px;}
.ls4f{letter-spacing:-0.432000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.342000px;}
.lsd{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls39{letter-spacing:-0.240000px;}
.ls22{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls59{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.120000px;}
.ls54{letter-spacing:0.144000px;}
.ls53{letter-spacing:0.192000px;}
.ls5b{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.394800px;}
.ls38{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.504000px;}
.ls5c{letter-spacing:0.720000px;}
.ls5a{letter-spacing:0.816000px;}
.ls32{letter-spacing:0.840000px;}
.ls52{letter-spacing:0.960000px;}
.ls13{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.152000px;}
.ls23{letter-spacing:1.260000px;}
.ls58{letter-spacing:1.344000px;}
.ls35{letter-spacing:1.584000px;}
.ls51{letter-spacing:1.632000px;}
.ls41{letter-spacing:2.282400px;}
.ls7{letter-spacing:2.376000px;}
.ls60{letter-spacing:3.780000px;}
.ls3b{letter-spacing:4.260000px;}
.ls5f{letter-spacing:4.704000px;}
.ls50{letter-spacing:4.752000px;}
.lsf{letter-spacing:5.568000px;}
.lsc{letter-spacing:5.664000px;}
.ls11{letter-spacing:6.000000px;}
.ls3c{letter-spacing:8.928000px;}
.ls5{letter-spacing:10.560000px;}
.ls8{letter-spacing:10.824000px;}
.ls9{letter-spacing:10.962000px;}
.lse{letter-spacing:12.474000px;}
.lsb{letter-spacing:49.248000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-28.128000px;}
.wsc{word-spacing:-27.648000px;}
.ws4{word-spacing:-26.136000px;}
.ws13{word-spacing:-21.240000px;}
.wsa5{word-spacing:-20.640000px;}
.ws57{word-spacing:-20.232000px;}
.ws8c{word-spacing:-20.160000px;}
.ws59{word-spacing:-19.944000px;}
.ws40{word-spacing:-19.872000px;}
.ws5b{word-spacing:-19.584000px;}
.ws7c{word-spacing:-19.440000px;}
.ws91{word-spacing:-19.368000px;}
.ws8b{word-spacing:-19.296000px;}
.ws41{word-spacing:-19.224000px;}
.wsa{word-spacing:-18.546000px;}
.ws67{word-spacing:-18.144000px;}
.ws3b{word-spacing:-18.120000px;}
.ws66{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.784000px;}
.ws47{word-spacing:-17.700000px;}
.ws65{word-spacing:-17.136000px;}
.ws2f{word-spacing:-17.064000px;}
.ws2e{word-spacing:-16.992000px;}
.ws51{word-spacing:-16.980000px;}
.ws50{word-spacing:-16.860000px;}
.ws2a{word-spacing:-16.848000px;}
.ws37{word-spacing:-16.680000px;}
.wsb{word-spacing:-16.560000px;}
.ws2c{word-spacing:-16.488000px;}
.ws49{word-spacing:-16.380000px;}
.ws2b{word-spacing:-16.272000px;}
.ws81{word-spacing:-16.128000px;}
.ws80{word-spacing:-15.984000px;}
.ws30{word-spacing:-15.840000px;}
.ws5a{word-spacing:-15.696000px;}
.ws4e{word-spacing:-15.675000px;}
.ws1{word-spacing:-15.228000px;}
.ws2d{word-spacing:-15.192000px;}
.ws38{word-spacing:-15.120000px;}
.ws9d{word-spacing:-14.832000px;}
.ws95{word-spacing:-14.448000px;}
.ws3{word-spacing:-14.443200px;}
.ws56{word-spacing:-14.340000px;}
.ws9e{word-spacing:-14.304000px;}
.wsa3{word-spacing:-14.208000px;}
.ws3a{word-spacing:-14.160000px;}
.ws22{word-spacing:-13.908000px;}
.ws9f{word-spacing:-13.776000px;}
.ws4a{word-spacing:-13.680000px;}
.ws98{word-spacing:-13.632000px;}
.ws9a{word-spacing:-13.584000px;}
.ws9c{word-spacing:-13.344000px;}
.wsa4{word-spacing:-13.200000px;}
.ws99{word-spacing:-12.432000px;}
.ws9b{word-spacing:-12.240000px;}
.ws96{word-spacing:-12.048000px;}
.ws97{word-spacing:-12.000000px;}
.ws5c{word-spacing:-11.795256px;}
.ws10{word-spacing:-6.000000px;}
.wsd{word-spacing:-5.664000px;}
.wsa0{word-spacing:-4.752000px;}
.ws58{word-spacing:-4.260000px;}
.ws8f{word-spacing:-3.168000px;}
.ws7{word-spacing:-2.376000px;}
.ws63{word-spacing:-1.800000px;}
.ws52{word-spacing:-1.584000px;}
.ws6{word-spacing:-1.320000px;}
.ws74{word-spacing:-1.296000px;}
.ws28{word-spacing:-1.260000px;}
.ws1b{word-spacing:-1.008000px;}
.ws4d{word-spacing:-0.840000px;}
.wse{word-spacing:-0.768000px;}
.ws18{word-spacing:-0.720000px;}
.wsaa{word-spacing:-0.624000px;}
.ws44{word-spacing:-0.504000px;}
.wsa7{word-spacing:-0.480000px;}
.ws6c{word-spacing:-0.432000px;}
.ws54{word-spacing:-0.420000px;}
.ws6f{word-spacing:-0.360000px;}
.wsa8{word-spacing:-0.288000px;}
.ws8{word-spacing:-0.264000px;}
.wsa6{word-spacing:-0.192000px;}
.ws3e{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wsa2{word-spacing:0.048000px;}
.ws12{word-spacing:0.072000px;}
.ws46{word-spacing:0.144000px;}
.ws27{word-spacing:0.180000px;}
.ws55{word-spacing:0.240000px;}
.ws1c{word-spacing:0.288000px;}
.ws25{word-spacing:0.300000px;}
.ws1f{word-spacing:0.360000px;}
.ws26{word-spacing:0.480000px;}
.ws6a{word-spacing:0.504000px;}
.wsa9{word-spacing:0.528000px;}
.ws72{word-spacing:0.576000px;}
.wsf{word-spacing:0.600000px;}
.ws19{word-spacing:0.648000px;}
.ws9{word-spacing:0.660000px;}
.ws1a{word-spacing:0.720000px;}
.ws53{word-spacing:0.741000px;}
.ws17{word-spacing:0.792000px;}
.ws45{word-spacing:0.864000px;}
.ws6e{word-spacing:0.924000px;}
.ws29{word-spacing:0.936000px;}
.ws4c{word-spacing:0.960000px;}
.ws31{word-spacing:1.008000px;}
.wsa1{word-spacing:1.056000px;}
.ws76{word-spacing:1.080000px;}
.ws5e{word-spacing:1.122000px;}
.ws7a{word-spacing:1.152000px;}
.ws4b{word-spacing:1.200000px;}
.ws16{word-spacing:1.224000px;}
.ws34{word-spacing:1.296000px;}
.ws32{word-spacing:1.368000px;}
.ws1d{word-spacing:1.440000px;}
.ws60{word-spacing:1.584000px;}
.ws73{word-spacing:1.656000px;}
.ws6d{word-spacing:1.680000px;}
.ws7b{word-spacing:1.728000px;}
.ws5d{word-spacing:1.800000px;}
.ws83{word-spacing:1.872000px;}
.ws33{word-spacing:2.232000px;}
.ws11{word-spacing:2.376000px;}
.ws3d{word-spacing:2.400000px;}
.ws90{word-spacing:2.448000px;}
.ws8e{word-spacing:2.736000px;}
.ws68{word-spacing:3.096000px;}
.ws69{word-spacing:3.168000px;}
.ws1e{word-spacing:3.312000px;}
.wsab{word-spacing:3.360000px;}
.ws75{word-spacing:3.456000px;}
.ws20{word-spacing:3.600000px;}
.ws8d{word-spacing:3.816000px;}
.ws3f{word-spacing:4.032000px;}
.ws88{word-spacing:4.680000px;}
.ws79{word-spacing:4.752000px;}
.ws7e{word-spacing:4.968000px;}
.ws93{word-spacing:5.040000px;}
.ws71{word-spacing:5.184000px;}
.ws62{word-spacing:5.688000px;}
.ws61{word-spacing:5.760000px;}
.ws78{word-spacing:6.192000px;}
.ws82{word-spacing:6.480000px;}
.ws8a{word-spacing:7.416000px;}
.ws77{word-spacing:8.352000px;}
.ws7f{word-spacing:8.424000px;}
.ws89{word-spacing:8.712000px;}
.ws70{word-spacing:9.144000px;}
.ws15{word-spacing:9.792000px;}
.ws86{word-spacing:9.864000px;}
.ws7d{word-spacing:10.296000px;}
.ws85{word-spacing:10.584000px;}
.ws87{word-spacing:10.656000px;}
.ws84{word-spacing:10.872000px;}
.ws92{word-spacing:10.944000px;}
.ws5f{word-spacing:11.592000px;}
.ws64{word-spacing:14.112000px;}
.ws94{word-spacing:699.504000px;}
.ws0{word-spacing:700.524000px;}
.ws6b{word-spacing:700.920000px;}
.ws35{word-spacing:702.000000px;}
.ws4f{word-spacing:716.763600px;}
.ws23{word-spacing:976.266000px;}
.ws43{word-spacing:1055.178000px;}
.ws21{word-spacing:1089.007800px;}
.ws24{word-spacing:1122.228000px;}
.ws48{word-spacing:1123.492800px;}
.ws42{word-spacing:1124.689800px;}
.ws3c{word-spacing:1175.400000px;}
.ws36{word-spacing:1219.480800px;}
.ws39{word-spacing:1320.600000px;}
._25{margin-left:-867.331800px;}
._15{margin-left:-865.107600px;}
._a{margin-left:-862.784400px;}
._2e{margin-left:-861.583200px;}
._1d{margin-left:-860.401800px;}
._37{margin-left:-585.754560px;}
._39{margin-left:-579.157200px;}
._36{margin-left:-557.980800px;}
._35{margin-left:-444.710760px;}
._23{margin-left:-204.736200px;}
._22{margin-left:-187.380000px;}
._38{margin-left:-118.542600px;}
._1e{margin-left:-71.928000px;}
._10{margin-left:-60.984000px;}
._16{margin-left:-59.544000px;}
._4{margin-left:-12.156000px;}
._7{margin-left:-9.774000px;}
._6{margin-left:-8.486400px;}
._18{margin-left:-6.370200px;}
._0{margin-left:-5.367600px;}
._c{margin-left:-4.259640px;}
._5{margin-left:-2.964000px;}
._2{margin-left:-1.598400px;}
._1{width:1.182600px;}
._3{width:2.511000px;}
._8{width:3.537240px;}
._9{width:4.902960px;}
._b{width:6.554400px;}
._d{width:8.240400px;}
._12{width:9.977400px;}
._13{width:11.205000px;}
._17{width:12.241800px;}
._26{width:13.980600px;}
._e{width:15.103800px;}
._f{width:16.455600px;}
._32{width:17.857800px;}
._14{width:19.056600px;}
._31{width:27.198000px;}
._34{width:31.577400px;}
._33{width:34.358400px;}
._1f{width:38.304000px;}
._11{width:49.248000px;}
._1a{width:61.970400px;}
._2c{width:96.470400px;}
._28{width:97.670400px;}
._1b{width:110.241600px;}
._24{width:205.629600px;}
._2f{width:273.780000px;}
._30{width:278.340000px;}
._1c{width:314.716800px;}
._2d{width:349.216800px;}
._29{width:350.416800px;}
._27{width:739.857600px;}
._19{width:897.493200px;}
._2a{width:931.993200px;}
._2b{width:936.318600px;}
._21{width:961.692120px;}
._20{width:1027.993200px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:41.976000px;}
.fsa{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:70.800000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.524900px;}
.y4{bottom:55.899900px;}
.y1{bottom:72.000000px;}
.y3{bottom:72.396900px;}
.y6b{bottom:117.000000px;}
.y18a{bottom:117.000150px;}
.yaa{bottom:117.644100px;}
.y132{bottom:117.741750px;}
.y26{bottom:119.250000px;}
.y140{bottom:120.000000px;}
.y88{bottom:120.344100px;}
.y49{bottom:124.500000px;}
.yeb{bottom:130.546500px;}
.y1b7{bottom:132.000000px;}
.y19f{bottom:133.500000px;}
.y1d1{bottom:135.750000px;}
.y15f{bottom:136.500000px;}
.y25{bottom:138.000000px;}
.y6a{bottom:139.500000px;}
.ya9{bottom:140.144100px;}
.y131{bottom:140.241750px;}
.y13f{bottom:142.500000px;}
.y87{bottom:142.844100px;}
.y166{bottom:145.500000px;}
.y48{bottom:147.000000px;}
.yea{bottom:152.521500px;}
.y1d0{bottom:154.500000px;}
.y19e{bottom:156.000000px;}
.y24{bottom:156.750000px;}
.y15e{bottom:159.000000px;}
.yc3{bottom:159.047550px;}
.y69{bottom:162.000000px;}
.ya8{bottom:162.644100px;}
.y130{bottom:162.741750px;}
.y13b{bottom:165.000000px;}
.y86{bottom:165.344100px;}
.y165{bottom:168.000000px;}
.y47{bottom:169.500000px;}
.ye9{bottom:170.521500px;}
.y1cf{bottom:173.250000px;}
.y189{bottom:174.648000px;}
.y23{bottom:175.500000px;}
.y1b6{bottom:177.000000px;}
.y19d{bottom:178.500000px;}
.yc2{bottom:181.022550px;}
.y15d{bottom:181.500000px;}
.y68{bottom:184.500000px;}
.ya7{bottom:185.144100px;}
.y12f{bottom:185.241750px;}
.y13a{bottom:187.500000px;}
.y85{bottom:187.844100px;}
.ye8{bottom:188.521500px;}
.y164{bottom:190.500000px;}
.y46{bottom:192.000000px;}
.y22{bottom:194.250000px;}
.y188{bottom:197.148000px;}
.y19c{bottom:201.000000px;}
.yc1{bottom:202.997550px;}
.y15c{bottom:204.000000px;}
.ye7{bottom:206.521500px;}
.y67{bottom:207.000000px;}
.ya6{bottom:207.644100px;}
.y12e{bottom:207.741750px;}
.y139{bottom:210.000000px;}
.y1ce{bottom:210.750000px;}
.y21{bottom:213.000000px;}
.y84{bottom:213.344100px;}
.y45{bottom:214.500000px;}
.y187{bottom:219.648000px;}
.y1b5{bottom:222.000000px;}
.y19b{bottom:223.500000px;}
.ye6{bottom:224.521500px;}
.yc0{bottom:224.973150px;}
.y15b{bottom:226.500000px;}
.y66{bottom:229.500000px;}
.ya5{bottom:230.144100px;}
.y12d{bottom:230.241750px;}
.y20{bottom:231.750000px;}
.y138{bottom:232.500000px;}
.y163{bottom:235.500000px;}
.y44{bottom:237.000000px;}
.y10b{bottom:241.322550px;}
.y186{bottom:241.842000px;}
.ye5{bottom:242.521500px;}
.y19a{bottom:246.000000px;}
.y1cd{bottom:248.250000px;}
.y15a{bottom:249.000000px;}
.y1f{bottom:250.500000px;}
.y65{bottom:252.000000px;}
.y83{bottom:252.344100px;}
.ya4{bottom:252.644100px;}
.y12c{bottom:252.741750px;}
.y137{bottom:255.000000px;}
.ybf{bottom:258.000000px;}
.y43{bottom:259.500000px;}
.ye4{bottom:260.521500px;}
.y10a{bottom:263.297550px;}
.y185{bottom:264.036000px;}
.y1b4{bottom:267.000000px;}
.y199{bottom:268.500000px;}
.y1e{bottom:269.250000px;}
.y159{bottom:271.500000px;}
.y64{bottom:274.500000px;}
.y82{bottom:274.844100px;}
.y12b{bottom:275.241750px;}
.y136{bottom:277.500000px;}
.ye3{bottom:278.521500px;}
.y162{bottom:280.500000px;}
.y42{bottom:282.000000px;}
.y109{bottom:285.272550px;}
.y1cc{bottom:285.750000px;}
.y184{bottom:286.230000px;}
.y1d{bottom:288.000000px;}
.y198{bottom:291.000000px;}
.y158{bottom:294.000000px;}
.ye2{bottom:296.521500px;}
.y63{bottom:297.000000px;}
.y81{bottom:297.344100px;}
.ya3{bottom:297.644100px;}
.y12a{bottom:297.741750px;}
.ybe{bottom:300.000000px;}
.y18c{bottom:303.000000px;}
.y1cb{bottom:304.500000px;}
.y161{bottom:306.000000px;}
.y1c{bottom:306.750000px;}
.y108{bottom:307.247550px;}
.y183{bottom:308.424000px;}
.y41{bottom:310.500000px;}
.y1b3{bottom:312.000000px;}
.y197{bottom:313.500000px;}
.ye1{bottom:314.521500px;}
.ya2{bottom:315.644100px;}
.y157{bottom:316.500000px;}
.y62{bottom:319.500000px;}
.y80{bottom:319.844100px;}
.y129{bottom:320.241750px;}
.ybd{bottom:322.500000px;}
.y1ca{bottom:323.250000px;}
.y107{bottom:325.247550px;}
.y1b{bottom:325.500000px;}
.y1b2{bottom:327.000000px;}
.y182{bottom:330.618000px;}
.ye0{bottom:332.521500px;}
.ya1{bottom:333.644100px;}
.y196{bottom:336.000000px;}
.y156{bottom:339.000000px;}
.y61{bottom:342.000000px;}
.y7f{bottom:342.344100px;}
.y128{bottom:342.741750px;}
.y1a{bottom:344.250000px;}
.ybc{bottom:345.000000px;}
.y106{bottom:347.222550px;}
.y167{bottom:348.000000px;}
.ydf{bottom:350.521500px;}
.ya0{bottom:351.644100px;}
.y181{bottom:352.812000px;}
.y1b1{bottom:357.000000px;}
.y195{bottom:358.500000px;}
.y1c9{bottom:360.750000px;}
.y155{bottom:361.500000px;}
.y19{bottom:363.000000px;}
.y60{bottom:364.500000px;}
.y7e{bottom:364.844100px;}
.y105{bottom:365.222550px;}
.y127{bottom:365.241750px;}
.ybb{bottom:367.500000px;}
.yde{bottom:368.521500px;}
.y9f{bottom:369.644100px;}
.y1b0{bottom:372.000000px;}
.y103{bottom:373.172550px;}
.y180{bottom:375.006000px;}
.y1c8{bottom:379.500000px;}
.y194{bottom:381.000000px;}
.y18{bottom:381.750000px;}
.y154{bottom:384.000000px;}
.ydd{bottom:386.521500px;}
.y5f{bottom:387.000000px;}
.y104{bottom:387.197550px;}
.y7d{bottom:387.344100px;}
.y9e{bottom:387.644100px;}
.y126{bottom:387.741750px;}
.yba{bottom:390.000000px;}
.y102{bottom:391.172550px;}
.y17f{bottom:397.200000px;}
.y1c7{bottom:398.250000px;}
.y17{bottom:400.500000px;}
.y1af{bottom:402.000000px;}
.y193{bottom:403.500000px;}
.ydc{bottom:404.521500px;}
.y9d{bottom:405.644100px;}
.y153{bottom:406.500000px;}
.y101{bottom:409.172550px;}
.y5e{bottom:409.500000px;}
.y125{bottom:410.241750px;}
.yb9{bottom:412.500000px;}
.y1ae{bottom:417.000000px;}
.y16{bottom:419.250000px;}
.y17e{bottom:422.400000px;}
.ydb{bottom:422.521500px;}
.y9c{bottom:423.644100px;}
.y192{bottom:426.000000px;}
.y100{bottom:427.172550px;}
.y40{bottom:428.250000px;}
.y152{bottom:429.000000px;}
.y5d{bottom:432.000000px;}
.y7c{bottom:432.647550px;}
.y124{bottom:432.741750px;}
.yb8{bottom:435.000000px;}
.y1c6{bottom:435.750000px;}
.y15{bottom:438.000000px;}
.yda{bottom:440.521500px;}
.y9b{bottom:441.644100px;}
.y3f{bottom:447.000000px;}
.y191{bottom:448.500000px;}
.yff{bottom:449.147550px;}
.y151{bottom:451.500000px;}
.y5c{bottom:454.500000px;}
.y7b{bottom:454.622550px;}
.y123{bottom:455.241750px;}
.y14{bottom:456.750000px;}
.yb7{bottom:457.500000px;}
.y9a{bottom:459.644100px;}
.y17d{bottom:461.208000px;}
.y1ad{bottom:462.000000px;}
.yd9{bottom:462.496500px;}
.y3e{bottom:465.750000px;}
.y190{bottom:471.000000px;}
.yfe{bottom:471.122550px;}
.y1c5{bottom:473.250000px;}
.y150{bottom:474.000000px;}
.y13{bottom:475.500000px;}
.y7a{bottom:476.597550px;}
.y5b{bottom:477.000000px;}
.y122{bottom:477.741750px;}
.yb6{bottom:480.000000px;}
.yd8{bottom:480.496500px;}
.y134{bottom:483.000000px;}
.y17c{bottom:483.402000px;}
.y3d{bottom:484.500000px;}
.y1ac{bottom:492.000000px;}
.yfd{bottom:493.097550px;}
.y18f{bottom:493.500000px;}
.y12{bottom:494.250000px;}
.y79{bottom:494.597550px;}
.y99{bottom:495.644100px;}
.y5a{bottom:499.500000px;}
.y121{bottom:500.241750px;}
.yd7{bottom:502.471500px;}
.yb5{bottom:502.500000px;}
.y3c{bottom:503.250000px;}
.y133{bottom:505.500000px;}
.y17b{bottom:505.596000px;}
.y1ab{bottom:507.000000px;}
.y1c4{bottom:510.750000px;}
.y78{bottom:512.597550px;}
.y11{bottom:513.000000px;}
.yfc{bottom:515.072550px;}
.y18e{bottom:516.000000px;}
.y3b{bottom:522.000000px;}
.yd6{bottom:524.446500px;}
.yb4{bottom:525.000000px;}
.y17a{bottom:527.790000px;}
.y77{bottom:530.597550px;}
.yfb{bottom:533.072550px;}
.y98{bottom:536.444700px;}
.y1aa{bottom:537.000000px;}
.y14f{bottom:538.500000px;}
.y120{bottom:539.549400px;}
.y3a{bottom:540.750000px;}
.y10{bottom:540.753000px;}
.y1c3{bottom:543.000000px;}
.y59{bottom:544.500000px;}
.yd5{bottom:546.422100px;}
.yb3{bottom:547.500000px;}
.y76{bottom:548.597550px;}
.y179{bottom:549.984000px;}
.y13e{bottom:550.494000px;}
.y1a9{bottom:552.000000px;}
.yfa{bottom:555.047550px;}
.y97{bottom:558.419700px;}
.y39{bottom:559.500000px;}
.y14e{bottom:561.000000px;}
.y11f{bottom:561.524400px;}
.yf7{bottom:562.997550px;}
.y75{bottom:566.597550px;}
.y58{bottom:567.000000px;}
.yb2{bottom:570.000000px;}
.y178{bottom:572.178000px;}
.y13d{bottom:573.000000px;}
.yf9{bottom:573.047550px;}
.y96{bottom:576.419700px;}
.y38{bottom:578.250000px;}
.yd4{bottom:579.448800px;}
.yf6{bottom:580.997550px;}
.y1a8{bottom:582.000000px;}
.y11e{bottom:583.499400px;}
.y14d{bottom:583.500000px;}
.yf{bottom:584.250000px;}
.y74{bottom:584.597550px;}
.y1d7{bottom:585.750000px;}
.y57{bottom:589.500000px;}
.y1c2{bottom:591.000000px;}
.yb1{bottom:592.500000px;}
.y177{bottom:594.372000px;}
.y95{bottom:594.419700px;}
.yf8{bottom:595.022550px;}
.y18b{bottom:595.500000px;}
.y37{bottom:597.000000px;}
.yd3{bottom:598.948800px;}
.yf5{bottom:598.997550px;}
.ye{bottom:603.750000px;}
.y1d6{bottom:604.500000px;}
.y11d{bottom:605.474400px;}
.y14c{bottom:606.000000px;}
.y73{bottom:606.572550px;}
.y56{bottom:612.000000px;}
.y94{bottom:612.419700px;}
.yb0{bottom:615.000000px;}
.y36{bottom:615.750000px;}
.y176{bottom:616.566000px;}
.yf4{bottom:616.997550px;}
.y13c{bottom:618.000000px;}
.y1d5{bottom:623.250000px;}
.y11c{bottom:623.474400px;}
.y1a7{bottom:627.000000px;}
.y14b{bottom:628.500000px;}
.y72{bottom:628.547550px;}
.yd{bottom:629.250000px;}
.y35{bottom:634.500000px;}
.yf3{bottom:634.997550px;}
.yaf{bottom:637.500000px;}
.y175{bottom:638.760000px;}
.yd2{bottom:640.948800px;}
.y1a6{bottom:642.000000px;}
.y11b{bottom:645.449400px;}
.y1c1{bottom:649.500000px;}
.y71{bottom:650.522550px;}
.y14a{bottom:651.000000px;}
.y34{bottom:653.250000px;}
.y118{bottom:653.399400px;}
.yf2{bottom:656.975400px;}
.y55{bottom:657.000000px;}
.yae{bottom:660.000000px;}
.y1d4{bottom:660.750000px;}
.y174{bottom:660.954000px;}
.yd1{bottom:663.448800px;}
.y11a{bottom:663.449400px;}
.y1c0{bottom:664.500000px;}
.y117{bottom:671.399400px;}
.y33{bottom:672.000000px;}
.y70{bottom:672.497550px;}
.y149{bottom:673.500000px;}
.yf1{bottom:674.973150px;}
.yc{bottom:677.250000px;}
.y54{bottom:679.500000px;}
.yad{bottom:682.500000px;}
.y173{bottom:683.148000px;}
.y119{bottom:685.424400px;}
.y6d{bottom:685.500000px;}
.yd0{bottom:685.948800px;}
.y1a5{bottom:687.000000px;}
.y116{bottom:689.399400px;}
.y32{bottom:690.750000px;}
.y6f{bottom:694.473150px;}
.y1bf{bottom:694.500000px;}
.y148{bottom:696.000000px;}
.yb{bottom:696.750000px;}
.y53{bottom:702.000000px;}
.yac{bottom:705.000000px;}
.y172{bottom:705.342000px;}
.y115{bottom:707.399400px;}
.y6c{bottom:708.000000px;}
.y31{bottom:709.500000px;}
.y93{bottom:711.119700px;}
.y1a4{bottom:717.000000px;}
.y147{bottom:718.500000px;}
.ya{bottom:722.250000px;}
.y52{bottom:724.500000px;}
.y114{bottom:725.399400px;}
.y6e{bottom:727.500000px;}
.y171{bottom:727.536000px;}
.y30{bottom:728.250000px;}
.y92{bottom:729.119700px;}
.yab{bottom:730.500000px;}
.ycf{bottom:731.249400px;}
.y1a3{bottom:732.000000px;}
.y1be{bottom:739.500000px;}
.y146{bottom:741.000000px;}
.y2f{bottom:747.000000px;}
.y91{bottom:747.119700px;}
.y113{bottom:747.374400px;}
.y170{bottom:749.730000px;}
.yf0{bottom:750.000000px;}
.yce{bottom:753.224400px;}
.y1bd{bottom:754.500000px;}
.y1a2{bottom:762.000000px;}
.y145{bottom:763.500000px;}
.y2e{bottom:765.750000px;}
.y90{bottom:769.095300px;}
.y112{bottom:769.349400px;}
.y51{bottom:769.500000px;}
.ycd{bottom:771.224400px;}
.y16f{bottom:771.924000px;}
.yef{bottom:772.500000px;}
.y1a1{bottom:777.000000px;}
.y2d{bottom:784.500000px;}
.y144{bottom:786.000000px;}
.ycc{bottom:789.224400px;}
.y9{bottom:789.750000px;}
.y8f{bottom:791.070900px;}
.y111{bottom:791.324400px;}
.y50{bottom:792.000000px;}
.y16e{bottom:794.118000px;}
.yee{bottom:795.000000px;}
.y135{bottom:798.000000px;}
.y1a0{bottom:799.500000px;}
.y2c{bottom:803.250000px;}
.ycb{bottom:807.224400px;}
.y143{bottom:808.500000px;}
.y8e{bottom:809.070900px;}
.y110{bottom:813.299400px;}
.y8{bottom:813.750000px;}
.y4f{bottom:814.500000px;}
.y16d{bottom:816.312000px;}
.yed{bottom:817.500000px;}
.y1d3{bottom:818.250000px;}
.y160{bottom:820.500000px;}
.yca{bottom:825.224400px;}
.y1bc{bottom:829.500000px;}
.y2b{bottom:831.000000px;}
.y8d{bottom:831.047550px;}
.y10f{bottom:831.299400px;}
.y4e{bottom:837.000000px;}
.y16c{bottom:838.506000px;}
.yec{bottom:843.000000px;}
.yc9{bottom:843.224400px;}
.y1bb{bottom:844.500000px;}
.y7{bottom:846.750000px;}
.y8c{bottom:853.022550px;}
.y10e{bottom:853.274400px;}
.y142{bottom:853.500000px;}
.y1d2{bottom:855.750000px;}
.y4d{bottom:859.500000px;}
.y16b{bottom:860.700000px;}
.yc8{bottom:861.224400px;}
.y10d{bottom:871.274400px;}
.y2a{bottom:874.500000px;}
.y8b{bottom:874.997550px;}
.y141{bottom:876.000000px;}
.y6{bottom:876.750000px;}
.yc7{bottom:879.224400px;}
.y4c{bottom:882.000000px;}
.y16a{bottom:882.912000px;}
.y1ba{bottom:889.500000px;}
.y10c{bottom:893.249400px;}
.y29{bottom:893.250000px;}
.y8a{bottom:896.973150px;}
.yc6{bottom:897.224400px;}
.y18d{bottom:898.500000px;}
.y4b{bottom:904.500000px;}
.y169{bottom:905.106000px;}
.y28{bottom:912.000000px;}
.yc5{bottom:915.224400px;}
.y1b9{bottom:919.500000px;}
.y4a{bottom:927.000000px;}
.y168{bottom:927.300000px;}
.y5{bottom:929.250000px;}
.y89{bottom:930.000000px;}
.y27{bottom:930.750000px;}
.yc4{bottom:933.224400px;}
.y1b8{bottom:934.500000px;}
.h2{height:35.991211px;}
.h13{height:39.072000px;}
.h15{height:39.504000px;}
.h14{height:39.726562px;}
.h11{height:40.757812px;}
.he{height:43.989258px;}
.h3{height:44.692383px;}
.hf{height:46.992188px;}
.h10{height:47.175293px;}
.hd{height:48.399902px;}
.hc{height:48.840000px;}
.h9{height:49.658203px;}
.h8{height:50.947266px;}
.h6{height:54.318000px;}
.h1{height:54.624023px;}
.h7{height:55.450781px;}
.h12{height:56.390625px;}
.hb{height:59.589844px;}
.ha{height:61.136719px;}
.h5{height:81.515625px;}
.h4{height:99.316406px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:66.982500px;}
.x5{left:69.164850px;}
.xe{left:73.800000px;}
.x13{left:75.000000px;}
.x1c{left:82.500000px;}
.xd{left:90.007350px;}
.x17{left:91.800000px;}
.x3{left:98.852400px;}
.xc{left:100.195350px;}
.x8{left:112.620000px;}
.x6{left:117.000000px;}
.x15{left:118.800000px;}
.x1d{left:127.500000px;}
.xa{left:135.000000px;}
.x1e{left:136.500000px;}
.x4{left:144.360900px;}
.xb{left:157.500000px;}
.x9{left:162.000000px;}
.x10{left:170.428650px;}
.x11{left:180.004650px;}
.x1a{left:184.500000px;}
.x18{left:229.494000px;}
.x2{left:263.250000px;}
.xf{left:390.375000px;}
.x16{left:399.300000px;}
.x12{left:423.000000px;}
.x1b{left:445.500000px;}
.x19{left:490.497000px;}
.x7{left:636.503250px;}
.x14{left:637.640100px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls4a{letter-spacing:-4.416000pt;}
.ls4d{letter-spacing:-3.776000pt;}
.ls2d{letter-spacing:-3.584000pt;}
.ls1e{letter-spacing:-3.200000pt;}
.ls48{letter-spacing:-3.072000pt;}
.ls61{letter-spacing:-2.986667pt;}
.ls1c{letter-spacing:-2.944000pt;}
.ls33{letter-spacing:-2.826667pt;}
.ls6{letter-spacing:-2.706133pt;}
.ls1f{letter-spacing:-2.482667pt;}
.ls28{letter-spacing:-2.304000pt;}
.ls3a{letter-spacing:-2.240000pt;}
.ls17{letter-spacing:-2.176000pt;}
.ls2a{letter-spacing:-2.133333pt;}
.ls42{letter-spacing:-2.048000pt;}
.ls47{letter-spacing:-1.984000pt;}
.ls20{letter-spacing:-1.874667pt;}
.ls3f{letter-spacing:-1.856000pt;}
.ls29{letter-spacing:-1.728000pt;}
.ls3d{letter-spacing:-1.600000pt;}
.ls49{letter-spacing:-1.536000pt;}
.ls44{letter-spacing:-1.493333pt;}
.ls4c{letter-spacing:-1.472000pt;}
.ls40{letter-spacing:-1.408000pt;}
.ls14{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls27{letter-spacing:-1.152000pt;}
.ls57{letter-spacing:-1.109333pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls31{letter-spacing:-1.066667pt;}
.ls3e{letter-spacing:-0.997333pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.938667pt;}
.ls25{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls45{letter-spacing:-0.821333pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls30{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.704000pt;}
.ls37{letter-spacing:-0.658667pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls4e{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls5e{letter-spacing:-0.469333pt;}
.ls43{letter-spacing:-0.448000pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls4f{letter-spacing:-0.384000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.304000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls22{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls59{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls54{letter-spacing:0.128000pt;}
.ls53{letter-spacing:0.170667pt;}
.ls5b{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.350933pt;}
.ls38{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls5c{letter-spacing:0.640000pt;}
.ls5a{letter-spacing:0.725333pt;}
.ls32{letter-spacing:0.746667pt;}
.ls52{letter-spacing:0.853333pt;}
.ls13{letter-spacing:0.896000pt;}
.ls4{letter-spacing:1.024000pt;}
.ls23{letter-spacing:1.120000pt;}
.ls58{letter-spacing:1.194667pt;}
.ls35{letter-spacing:1.408000pt;}
.ls51{letter-spacing:1.450667pt;}
.ls41{letter-spacing:2.028800pt;}
.ls7{letter-spacing:2.112000pt;}
.ls60{letter-spacing:3.360000pt;}
.ls3b{letter-spacing:3.786667pt;}
.ls5f{letter-spacing:4.181333pt;}
.ls50{letter-spacing:4.224000pt;}
.lsf{letter-spacing:4.949333pt;}
.lsc{letter-spacing:5.034667pt;}
.ls11{letter-spacing:5.333333pt;}
.ls3c{letter-spacing:7.936000pt;}
.ls5{letter-spacing:9.386667pt;}
.ls8{letter-spacing:9.621333pt;}
.ls9{letter-spacing:9.744000pt;}
.lse{letter-spacing:11.088000pt;}
.lsb{letter-spacing:43.776000pt;}
.ws2{word-spacing:-25.002667pt;}
.wsc{word-spacing:-24.576000pt;}
.ws4{word-spacing:-23.232000pt;}
.ws13{word-spacing:-18.880000pt;}
.wsa5{word-spacing:-18.346667pt;}
.ws57{word-spacing:-17.984000pt;}
.ws8c{word-spacing:-17.920000pt;}
.ws59{word-spacing:-17.728000pt;}
.ws40{word-spacing:-17.664000pt;}
.ws5b{word-spacing:-17.408000pt;}
.ws7c{word-spacing:-17.280000pt;}
.ws91{word-spacing:-17.216000pt;}
.ws8b{word-spacing:-17.152000pt;}
.ws41{word-spacing:-17.088000pt;}
.wsa{word-spacing:-16.485333pt;}
.ws67{word-spacing:-16.128000pt;}
.ws3b{word-spacing:-16.106667pt;}
.ws66{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.808000pt;}
.ws47{word-spacing:-15.733333pt;}
.ws65{word-spacing:-15.232000pt;}
.ws2f{word-spacing:-15.168000pt;}
.ws2e{word-spacing:-15.104000pt;}
.ws51{word-spacing:-15.093333pt;}
.ws50{word-spacing:-14.986667pt;}
.ws2a{word-spacing:-14.976000pt;}
.ws37{word-spacing:-14.826667pt;}
.wsb{word-spacing:-14.720000pt;}
.ws2c{word-spacing:-14.656000pt;}
.ws49{word-spacing:-14.560000pt;}
.ws2b{word-spacing:-14.464000pt;}
.ws81{word-spacing:-14.336000pt;}
.ws80{word-spacing:-14.208000pt;}
.ws30{word-spacing:-14.080000pt;}
.ws5a{word-spacing:-13.952000pt;}
.ws4e{word-spacing:-13.933333pt;}
.ws1{word-spacing:-13.536000pt;}
.ws2d{word-spacing:-13.504000pt;}
.ws38{word-spacing:-13.440000pt;}
.ws9d{word-spacing:-13.184000pt;}
.ws95{word-spacing:-12.842667pt;}
.ws3{word-spacing:-12.838400pt;}
.ws56{word-spacing:-12.746667pt;}
.ws9e{word-spacing:-12.714667pt;}
.wsa3{word-spacing:-12.629333pt;}
.ws3a{word-spacing:-12.586667pt;}
.ws22{word-spacing:-12.362667pt;}
.ws9f{word-spacing:-12.245333pt;}
.ws4a{word-spacing:-12.160000pt;}
.ws98{word-spacing:-12.117333pt;}
.ws9a{word-spacing:-12.074667pt;}
.ws9c{word-spacing:-11.861333pt;}
.wsa4{word-spacing:-11.733333pt;}
.ws99{word-spacing:-11.050667pt;}
.ws9b{word-spacing:-10.880000pt;}
.ws96{word-spacing:-10.709333pt;}
.ws97{word-spacing:-10.666667pt;}
.ws5c{word-spacing:-10.484672pt;}
.ws10{word-spacing:-5.333333pt;}
.wsd{word-spacing:-5.034667pt;}
.wsa0{word-spacing:-4.224000pt;}
.ws58{word-spacing:-3.786667pt;}
.ws8f{word-spacing:-2.816000pt;}
.ws7{word-spacing:-2.112000pt;}
.ws63{word-spacing:-1.600000pt;}
.ws52{word-spacing:-1.408000pt;}
.ws6{word-spacing:-1.173333pt;}
.ws74{word-spacing:-1.152000pt;}
.ws28{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-0.896000pt;}
.ws4d{word-spacing:-0.746667pt;}
.wse{word-spacing:-0.682667pt;}
.ws18{word-spacing:-0.640000pt;}
.wsaa{word-spacing:-0.554667pt;}
.ws44{word-spacing:-0.448000pt;}
.wsa7{word-spacing:-0.426667pt;}
.ws6c{word-spacing:-0.384000pt;}
.ws54{word-spacing:-0.373333pt;}
.ws6f{word-spacing:-0.320000pt;}
.wsa8{word-spacing:-0.256000pt;}
.ws8{word-spacing:-0.234667pt;}
.wsa6{word-spacing:-0.170667pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.042667pt;}
.ws12{word-spacing:0.064000pt;}
.ws46{word-spacing:0.128000pt;}
.ws27{word-spacing:0.160000pt;}
.ws55{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.256000pt;}
.ws25{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.320000pt;}
.ws26{word-spacing:0.426667pt;}
.ws6a{word-spacing:0.448000pt;}
.wsa9{word-spacing:0.469333pt;}
.ws72{word-spacing:0.512000pt;}
.wsf{word-spacing:0.533333pt;}
.ws19{word-spacing:0.576000pt;}
.ws9{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.640000pt;}
.ws53{word-spacing:0.658667pt;}
.ws17{word-spacing:0.704000pt;}
.ws45{word-spacing:0.768000pt;}
.ws6e{word-spacing:0.821333pt;}
.ws29{word-spacing:0.832000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws31{word-spacing:0.896000pt;}
.wsa1{word-spacing:0.938667pt;}
.ws76{word-spacing:0.960000pt;}
.ws5e{word-spacing:0.997333pt;}
.ws7a{word-spacing:1.024000pt;}
.ws4b{word-spacing:1.066667pt;}
.ws16{word-spacing:1.088000pt;}
.ws34{word-spacing:1.152000pt;}
.ws32{word-spacing:1.216000pt;}
.ws1d{word-spacing:1.280000pt;}
.ws60{word-spacing:1.408000pt;}
.ws73{word-spacing:1.472000pt;}
.ws6d{word-spacing:1.493333pt;}
.ws7b{word-spacing:1.536000pt;}
.ws5d{word-spacing:1.600000pt;}
.ws83{word-spacing:1.664000pt;}
.ws33{word-spacing:1.984000pt;}
.ws11{word-spacing:2.112000pt;}
.ws3d{word-spacing:2.133333pt;}
.ws90{word-spacing:2.176000pt;}
.ws8e{word-spacing:2.432000pt;}
.ws68{word-spacing:2.752000pt;}
.ws69{word-spacing:2.816000pt;}
.ws1e{word-spacing:2.944000pt;}
.wsab{word-spacing:2.986667pt;}
.ws75{word-spacing:3.072000pt;}
.ws20{word-spacing:3.200000pt;}
.ws8d{word-spacing:3.392000pt;}
.ws3f{word-spacing:3.584000pt;}
.ws88{word-spacing:4.160000pt;}
.ws79{word-spacing:4.224000pt;}
.ws7e{word-spacing:4.416000pt;}
.ws93{word-spacing:4.480000pt;}
.ws71{word-spacing:4.608000pt;}
.ws62{word-spacing:5.056000pt;}
.ws61{word-spacing:5.120000pt;}
.ws78{word-spacing:5.504000pt;}
.ws82{word-spacing:5.760000pt;}
.ws8a{word-spacing:6.592000pt;}
.ws77{word-spacing:7.424000pt;}
.ws7f{word-spacing:7.488000pt;}
.ws89{word-spacing:7.744000pt;}
.ws70{word-spacing:8.128000pt;}
.ws15{word-spacing:8.704000pt;}
.ws86{word-spacing:8.768000pt;}
.ws7d{word-spacing:9.152000pt;}
.ws85{word-spacing:9.408000pt;}
.ws87{word-spacing:9.472000pt;}
.ws84{word-spacing:9.664000pt;}
.ws92{word-spacing:9.728000pt;}
.ws5f{word-spacing:10.304000pt;}
.ws64{word-spacing:12.544000pt;}
.ws94{word-spacing:621.781333pt;}
.ws0{word-spacing:622.688000pt;}
.ws6b{word-spacing:623.040000pt;}
.ws35{word-spacing:624.000000pt;}
.ws4f{word-spacing:637.123200pt;}
.ws23{word-spacing:867.792000pt;}
.ws43{word-spacing:937.936000pt;}
.ws21{word-spacing:968.006933pt;}
.ws24{word-spacing:997.536000pt;}
.ws48{word-spacing:998.660267pt;}
.ws42{word-spacing:999.724267pt;}
.ws3c{word-spacing:1044.800000pt;}
.ws36{word-spacing:1083.982933pt;}
.ws39{word-spacing:1173.866667pt;}
._25{margin-left:-770.961600pt;}
._15{margin-left:-768.984533pt;}
._a{margin-left:-766.919467pt;}
._2e{margin-left:-765.851733pt;}
._1d{margin-left:-764.801600pt;}
._37{margin-left:-520.670720pt;}
._39{margin-left:-514.806400pt;}
._36{margin-left:-495.982933pt;}
._35{margin-left:-395.298453pt;}
._23{margin-left:-181.987733pt;}
._22{margin-left:-166.560000pt;}
._38{margin-left:-105.371200pt;}
._1e{margin-left:-63.936000pt;}
._10{margin-left:-54.208000pt;}
._16{margin-left:-52.928000pt;}
._4{margin-left:-10.805333pt;}
._7{margin-left:-8.688000pt;}
._6{margin-left:-7.543467pt;}
._18{margin-left:-5.662400pt;}
._0{margin-left:-4.771200pt;}
._c{margin-left:-3.786347pt;}
._5{margin-left:-2.634667pt;}
._2{margin-left:-1.420800pt;}
._1{width:1.051200pt;}
._3{width:2.232000pt;}
._8{width:3.144213pt;}
._9{width:4.358187pt;}
._b{width:5.826133pt;}
._d{width:7.324800pt;}
._12{width:8.868800pt;}
._13{width:9.960000pt;}
._17{width:10.881600pt;}
._26{width:12.427200pt;}
._e{width:13.425600pt;}
._f{width:14.627200pt;}
._32{width:15.873600pt;}
._14{width:16.939200pt;}
._31{width:24.176000pt;}
._34{width:28.068800pt;}
._33{width:30.540800pt;}
._1f{width:34.048000pt;}
._11{width:43.776000pt;}
._1a{width:55.084800pt;}
._2c{width:85.751467pt;}
._28{width:86.818133pt;}
._1b{width:97.992533pt;}
._24{width:182.781867pt;}
._2f{width:243.360000pt;}
._30{width:247.413333pt;}
._1c{width:279.748267pt;}
._2d{width:310.414933pt;}
._29{width:311.481600pt;}
._27{width:657.651200pt;}
._19{width:797.771733pt;}
._2a{width:828.438400pt;}
._2b{width:832.283200pt;}
._21{width:854.837440pt;}
._20{width:913.771733pt;}
.fs9{font-size:37.312000pt;}
.fsa{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:62.933333pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.355467pt;}
.y4{bottom:49.688800pt;}
.y1{bottom:64.000000pt;}
.y3{bottom:64.352800pt;}
.y6b{bottom:104.000000pt;}
.y18a{bottom:104.000133pt;}
.yaa{bottom:104.572533pt;}
.y132{bottom:104.659333pt;}
.y26{bottom:106.000000pt;}
.y140{bottom:106.666667pt;}
.y88{bottom:106.972533pt;}
.y49{bottom:110.666667pt;}
.yeb{bottom:116.041333pt;}
.y1b7{bottom:117.333333pt;}
.y19f{bottom:118.666667pt;}
.y1d1{bottom:120.666667pt;}
.y15f{bottom:121.333333pt;}
.y25{bottom:122.666667pt;}
.y6a{bottom:124.000000pt;}
.ya9{bottom:124.572533pt;}
.y131{bottom:124.659333pt;}
.y13f{bottom:126.666667pt;}
.y87{bottom:126.972533pt;}
.y166{bottom:129.333333pt;}
.y48{bottom:130.666667pt;}
.yea{bottom:135.574667pt;}
.y1d0{bottom:137.333333pt;}
.y19e{bottom:138.666667pt;}
.y24{bottom:139.333333pt;}
.y15e{bottom:141.333333pt;}
.yc3{bottom:141.375600pt;}
.y69{bottom:144.000000pt;}
.ya8{bottom:144.572533pt;}
.y130{bottom:144.659333pt;}
.y13b{bottom:146.666667pt;}
.y86{bottom:146.972533pt;}
.y165{bottom:149.333333pt;}
.y47{bottom:150.666667pt;}
.ye9{bottom:151.574667pt;}
.y1cf{bottom:154.000000pt;}
.y189{bottom:155.242667pt;}
.y23{bottom:156.000000pt;}
.y1b6{bottom:157.333333pt;}
.y19d{bottom:158.666667pt;}
.yc2{bottom:160.908933pt;}
.y15d{bottom:161.333333pt;}
.y68{bottom:164.000000pt;}
.ya7{bottom:164.572533pt;}
.y12f{bottom:164.659333pt;}
.y13a{bottom:166.666667pt;}
.y85{bottom:166.972533pt;}
.ye8{bottom:167.574667pt;}
.y164{bottom:169.333333pt;}
.y46{bottom:170.666667pt;}
.y22{bottom:172.666667pt;}
.y188{bottom:175.242667pt;}
.y19c{bottom:178.666667pt;}
.yc1{bottom:180.442267pt;}
.y15c{bottom:181.333333pt;}
.ye7{bottom:183.574667pt;}
.y67{bottom:184.000000pt;}
.ya6{bottom:184.572533pt;}
.y12e{bottom:184.659333pt;}
.y139{bottom:186.666667pt;}
.y1ce{bottom:187.333333pt;}
.y21{bottom:189.333333pt;}
.y84{bottom:189.639200pt;}
.y45{bottom:190.666667pt;}
.y187{bottom:195.242667pt;}
.y1b5{bottom:197.333333pt;}
.y19b{bottom:198.666667pt;}
.ye6{bottom:199.574667pt;}
.yc0{bottom:199.976133pt;}
.y15b{bottom:201.333333pt;}
.y66{bottom:204.000000pt;}
.ya5{bottom:204.572533pt;}
.y12d{bottom:204.659333pt;}
.y20{bottom:206.000000pt;}
.y138{bottom:206.666667pt;}
.y163{bottom:209.333333pt;}
.y44{bottom:210.666667pt;}
.y10b{bottom:214.508933pt;}
.y186{bottom:214.970667pt;}
.ye5{bottom:215.574667pt;}
.y19a{bottom:218.666667pt;}
.y1cd{bottom:220.666667pt;}
.y15a{bottom:221.333333pt;}
.y1f{bottom:222.666667pt;}
.y65{bottom:224.000000pt;}
.y83{bottom:224.305867pt;}
.ya4{bottom:224.572533pt;}
.y12c{bottom:224.659333pt;}
.y137{bottom:226.666667pt;}
.ybf{bottom:229.333333pt;}
.y43{bottom:230.666667pt;}
.ye4{bottom:231.574667pt;}
.y10a{bottom:234.042267pt;}
.y185{bottom:234.698667pt;}
.y1b4{bottom:237.333333pt;}
.y199{bottom:238.666667pt;}
.y1e{bottom:239.333333pt;}
.y159{bottom:241.333333pt;}
.y64{bottom:244.000000pt;}
.y82{bottom:244.305867pt;}
.y12b{bottom:244.659333pt;}
.y136{bottom:246.666667pt;}
.ye3{bottom:247.574667pt;}
.y162{bottom:249.333333pt;}
.y42{bottom:250.666667pt;}
.y109{bottom:253.575600pt;}
.y1cc{bottom:254.000000pt;}
.y184{bottom:254.426667pt;}
.y1d{bottom:256.000000pt;}
.y198{bottom:258.666667pt;}
.y158{bottom:261.333333pt;}
.ye2{bottom:263.574667pt;}
.y63{bottom:264.000000pt;}
.y81{bottom:264.305867pt;}
.ya3{bottom:264.572533pt;}
.y12a{bottom:264.659333pt;}
.ybe{bottom:266.666667pt;}
.y18c{bottom:269.333333pt;}
.y1cb{bottom:270.666667pt;}
.y161{bottom:272.000000pt;}
.y1c{bottom:272.666667pt;}
.y108{bottom:273.108933pt;}
.y183{bottom:274.154667pt;}
.y41{bottom:276.000000pt;}
.y1b3{bottom:277.333333pt;}
.y197{bottom:278.666667pt;}
.ye1{bottom:279.574667pt;}
.ya2{bottom:280.572533pt;}
.y157{bottom:281.333333pt;}
.y62{bottom:284.000000pt;}
.y80{bottom:284.305867pt;}
.y129{bottom:284.659333pt;}
.ybd{bottom:286.666667pt;}
.y1ca{bottom:287.333333pt;}
.y107{bottom:289.108933pt;}
.y1b{bottom:289.333333pt;}
.y1b2{bottom:290.666667pt;}
.y182{bottom:293.882667pt;}
.ye0{bottom:295.574667pt;}
.ya1{bottom:296.572533pt;}
.y196{bottom:298.666667pt;}
.y156{bottom:301.333333pt;}
.y61{bottom:304.000000pt;}
.y7f{bottom:304.305867pt;}
.y128{bottom:304.659333pt;}
.y1a{bottom:306.000000pt;}
.ybc{bottom:306.666667pt;}
.y106{bottom:308.642267pt;}
.y167{bottom:309.333333pt;}
.ydf{bottom:311.574667pt;}
.ya0{bottom:312.572533pt;}
.y181{bottom:313.610667pt;}
.y1b1{bottom:317.333333pt;}
.y195{bottom:318.666667pt;}
.y1c9{bottom:320.666667pt;}
.y155{bottom:321.333333pt;}
.y19{bottom:322.666667pt;}
.y60{bottom:324.000000pt;}
.y7e{bottom:324.305867pt;}
.y105{bottom:324.642267pt;}
.y127{bottom:324.659333pt;}
.ybb{bottom:326.666667pt;}
.yde{bottom:327.574667pt;}
.y9f{bottom:328.572533pt;}
.y1b0{bottom:330.666667pt;}
.y103{bottom:331.708933pt;}
.y180{bottom:333.338667pt;}
.y1c8{bottom:337.333333pt;}
.y194{bottom:338.666667pt;}
.y18{bottom:339.333333pt;}
.y154{bottom:341.333333pt;}
.ydd{bottom:343.574667pt;}
.y5f{bottom:344.000000pt;}
.y104{bottom:344.175600pt;}
.y7d{bottom:344.305867pt;}
.y9e{bottom:344.572533pt;}
.y126{bottom:344.659333pt;}
.yba{bottom:346.666667pt;}
.y102{bottom:347.708933pt;}
.y17f{bottom:353.066667pt;}
.y1c7{bottom:354.000000pt;}
.y17{bottom:356.000000pt;}
.y1af{bottom:357.333333pt;}
.y193{bottom:358.666667pt;}
.ydc{bottom:359.574667pt;}
.y9d{bottom:360.572533pt;}
.y153{bottom:361.333333pt;}
.y101{bottom:363.708933pt;}
.y5e{bottom:364.000000pt;}
.y125{bottom:364.659333pt;}
.yb9{bottom:366.666667pt;}
.y1ae{bottom:370.666667pt;}
.y16{bottom:372.666667pt;}
.y17e{bottom:375.466667pt;}
.ydb{bottom:375.574667pt;}
.y9c{bottom:376.572533pt;}
.y192{bottom:378.666667pt;}
.y100{bottom:379.708933pt;}
.y40{bottom:380.666667pt;}
.y152{bottom:381.333333pt;}
.y5d{bottom:384.000000pt;}
.y7c{bottom:384.575600pt;}
.y124{bottom:384.659333pt;}
.yb8{bottom:386.666667pt;}
.y1c6{bottom:387.333333pt;}
.y15{bottom:389.333333pt;}
.yda{bottom:391.574667pt;}
.y9b{bottom:392.572533pt;}
.y3f{bottom:397.333333pt;}
.y191{bottom:398.666667pt;}
.yff{bottom:399.242267pt;}
.y151{bottom:401.333333pt;}
.y5c{bottom:404.000000pt;}
.y7b{bottom:404.108933pt;}
.y123{bottom:404.659333pt;}
.y14{bottom:406.000000pt;}
.yb7{bottom:406.666667pt;}
.y9a{bottom:408.572533pt;}
.y17d{bottom:409.962667pt;}
.y1ad{bottom:410.666667pt;}
.yd9{bottom:411.108000pt;}
.y3e{bottom:414.000000pt;}
.y190{bottom:418.666667pt;}
.yfe{bottom:418.775600pt;}
.y1c5{bottom:420.666667pt;}
.y150{bottom:421.333333pt;}
.y13{bottom:422.666667pt;}
.y7a{bottom:423.642267pt;}
.y5b{bottom:424.000000pt;}
.y122{bottom:424.659333pt;}
.yb6{bottom:426.666667pt;}
.yd8{bottom:427.108000pt;}
.y134{bottom:429.333333pt;}
.y17c{bottom:429.690667pt;}
.y3d{bottom:430.666667pt;}
.y1ac{bottom:437.333333pt;}
.yfd{bottom:438.308933pt;}
.y18f{bottom:438.666667pt;}
.y12{bottom:439.333333pt;}
.y79{bottom:439.642267pt;}
.y99{bottom:440.572533pt;}
.y5a{bottom:444.000000pt;}
.y121{bottom:444.659333pt;}
.yd7{bottom:446.641333pt;}
.yb5{bottom:446.666667pt;}
.y3c{bottom:447.333333pt;}
.y133{bottom:449.333333pt;}
.y17b{bottom:449.418667pt;}
.y1ab{bottom:450.666667pt;}
.y1c4{bottom:454.000000pt;}
.y78{bottom:455.642267pt;}
.y11{bottom:456.000000pt;}
.yfc{bottom:457.842267pt;}
.y18e{bottom:458.666667pt;}
.y3b{bottom:464.000000pt;}
.yd6{bottom:466.174667pt;}
.yb4{bottom:466.666667pt;}
.y17a{bottom:469.146667pt;}
.y77{bottom:471.642267pt;}
.yfb{bottom:473.842267pt;}
.y98{bottom:476.839733pt;}
.y1aa{bottom:477.333333pt;}
.y14f{bottom:478.666667pt;}
.y120{bottom:479.599467pt;}
.y3a{bottom:480.666667pt;}
.y10{bottom:480.669333pt;}
.y1c3{bottom:482.666667pt;}
.y59{bottom:484.000000pt;}
.yd5{bottom:485.708533pt;}
.yb3{bottom:486.666667pt;}
.y76{bottom:487.642267pt;}
.y179{bottom:488.874667pt;}
.y13e{bottom:489.328000pt;}
.y1a9{bottom:490.666667pt;}
.yfa{bottom:493.375600pt;}
.y97{bottom:496.373067pt;}
.y39{bottom:497.333333pt;}
.y14e{bottom:498.666667pt;}
.y11f{bottom:499.132800pt;}
.yf7{bottom:500.442267pt;}
.y75{bottom:503.642267pt;}
.y58{bottom:504.000000pt;}
.yb2{bottom:506.666667pt;}
.y178{bottom:508.602667pt;}
.y13d{bottom:509.333333pt;}
.yf9{bottom:509.375600pt;}
.y96{bottom:512.373067pt;}
.y38{bottom:514.000000pt;}
.yd4{bottom:515.065600pt;}
.yf6{bottom:516.442267pt;}
.y1a8{bottom:517.333333pt;}
.y11e{bottom:518.666133pt;}
.y14d{bottom:518.666667pt;}
.yf{bottom:519.333333pt;}
.y74{bottom:519.642267pt;}
.y1d7{bottom:520.666667pt;}
.y57{bottom:524.000000pt;}
.y1c2{bottom:525.333333pt;}
.yb1{bottom:526.666667pt;}
.y177{bottom:528.330667pt;}
.y95{bottom:528.373067pt;}
.yf8{bottom:528.908933pt;}
.y18b{bottom:529.333333pt;}
.y37{bottom:530.666667pt;}
.yd3{bottom:532.398933pt;}
.yf5{bottom:532.442267pt;}
.ye{bottom:536.666667pt;}
.y1d6{bottom:537.333333pt;}
.y11d{bottom:538.199467pt;}
.y14c{bottom:538.666667pt;}
.y73{bottom:539.175600pt;}
.y56{bottom:544.000000pt;}
.y94{bottom:544.373067pt;}
.yb0{bottom:546.666667pt;}
.y36{bottom:547.333333pt;}
.y176{bottom:548.058667pt;}
.yf4{bottom:548.442267pt;}
.y13c{bottom:549.333333pt;}
.y1d5{bottom:554.000000pt;}
.y11c{bottom:554.199467pt;}
.y1a7{bottom:557.333333pt;}
.y14b{bottom:558.666667pt;}
.y72{bottom:558.708933pt;}
.yd{bottom:559.333333pt;}
.y35{bottom:564.000000pt;}
.yf3{bottom:564.442267pt;}
.yaf{bottom:566.666667pt;}
.y175{bottom:567.786667pt;}
.yd2{bottom:569.732267pt;}
.y1a6{bottom:570.666667pt;}
.y11b{bottom:573.732800pt;}
.y1c1{bottom:577.333333pt;}
.y71{bottom:578.242267pt;}
.y14a{bottom:578.666667pt;}
.y34{bottom:580.666667pt;}
.y118{bottom:580.799467pt;}
.yf2{bottom:583.978133pt;}
.y55{bottom:584.000000pt;}
.yae{bottom:586.666667pt;}
.y1d4{bottom:587.333333pt;}
.y174{bottom:587.514667pt;}
.yd1{bottom:589.732267pt;}
.y11a{bottom:589.732800pt;}
.y1c0{bottom:590.666667pt;}
.y117{bottom:596.799467pt;}
.y33{bottom:597.333333pt;}
.y70{bottom:597.775600pt;}
.y149{bottom:598.666667pt;}
.yf1{bottom:599.976133pt;}
.yc{bottom:602.000000pt;}
.y54{bottom:604.000000pt;}
.yad{bottom:606.666667pt;}
.y173{bottom:607.242667pt;}
.y119{bottom:609.266133pt;}
.y6d{bottom:609.333333pt;}
.yd0{bottom:609.732267pt;}
.y1a5{bottom:610.666667pt;}
.y116{bottom:612.799467pt;}
.y32{bottom:614.000000pt;}
.y6f{bottom:617.309467pt;}
.y1bf{bottom:617.333333pt;}
.y148{bottom:618.666667pt;}
.yb{bottom:619.333333pt;}
.y53{bottom:624.000000pt;}
.yac{bottom:626.666667pt;}
.y172{bottom:626.970667pt;}
.y115{bottom:628.799467pt;}
.y6c{bottom:629.333333pt;}
.y31{bottom:630.666667pt;}
.y93{bottom:632.106400pt;}
.y1a4{bottom:637.333333pt;}
.y147{bottom:638.666667pt;}
.ya{bottom:642.000000pt;}
.y52{bottom:644.000000pt;}
.y114{bottom:644.799467pt;}
.y6e{bottom:646.666667pt;}
.y171{bottom:646.698667pt;}
.y30{bottom:647.333333pt;}
.y92{bottom:648.106400pt;}
.yab{bottom:649.333333pt;}
.ycf{bottom:649.999467pt;}
.y1a3{bottom:650.666667pt;}
.y1be{bottom:657.333333pt;}
.y146{bottom:658.666667pt;}
.y2f{bottom:664.000000pt;}
.y91{bottom:664.106400pt;}
.y113{bottom:664.332800pt;}
.y170{bottom:666.426667pt;}
.yf0{bottom:666.666667pt;}
.yce{bottom:669.532800pt;}
.y1bd{bottom:670.666667pt;}
.y1a2{bottom:677.333333pt;}
.y145{bottom:678.666667pt;}
.y2e{bottom:680.666667pt;}
.y90{bottom:683.640267pt;}
.y112{bottom:683.866133pt;}
.y51{bottom:684.000000pt;}
.ycd{bottom:685.532800pt;}
.y16f{bottom:686.154667pt;}
.yef{bottom:686.666667pt;}
.y1a1{bottom:690.666667pt;}
.y2d{bottom:697.333333pt;}
.y144{bottom:698.666667pt;}
.ycc{bottom:701.532800pt;}
.y9{bottom:702.000000pt;}
.y8f{bottom:703.174133pt;}
.y111{bottom:703.399467pt;}
.y50{bottom:704.000000pt;}
.y16e{bottom:705.882667pt;}
.yee{bottom:706.666667pt;}
.y135{bottom:709.333333pt;}
.y1a0{bottom:710.666667pt;}
.y2c{bottom:714.000000pt;}
.ycb{bottom:717.532800pt;}
.y143{bottom:718.666667pt;}
.y8e{bottom:719.174133pt;}
.y110{bottom:722.932800pt;}
.y8{bottom:723.333333pt;}
.y4f{bottom:724.000000pt;}
.y16d{bottom:725.610667pt;}
.yed{bottom:726.666667pt;}
.y1d3{bottom:727.333333pt;}
.y160{bottom:729.333333pt;}
.yca{bottom:733.532800pt;}
.y1bc{bottom:737.333333pt;}
.y2b{bottom:738.666667pt;}
.y8d{bottom:738.708933pt;}
.y10f{bottom:738.932800pt;}
.y4e{bottom:744.000000pt;}
.y16c{bottom:745.338667pt;}
.yec{bottom:749.333333pt;}
.yc9{bottom:749.532800pt;}
.y1bb{bottom:750.666667pt;}
.y7{bottom:752.666667pt;}
.y8c{bottom:758.242267pt;}
.y10e{bottom:758.466133pt;}
.y142{bottom:758.666667pt;}
.y1d2{bottom:760.666667pt;}
.y4d{bottom:764.000000pt;}
.y16b{bottom:765.066667pt;}
.yc8{bottom:765.532800pt;}
.y10d{bottom:774.466133pt;}
.y2a{bottom:777.333333pt;}
.y8b{bottom:777.775600pt;}
.y141{bottom:778.666667pt;}
.y6{bottom:779.333333pt;}
.yc7{bottom:781.532800pt;}
.y4c{bottom:784.000000pt;}
.y16a{bottom:784.810667pt;}
.y1ba{bottom:790.666667pt;}
.y10c{bottom:793.999467pt;}
.y29{bottom:794.000000pt;}
.y8a{bottom:797.309467pt;}
.yc6{bottom:797.532800pt;}
.y18d{bottom:798.666667pt;}
.y4b{bottom:804.000000pt;}
.y169{bottom:804.538667pt;}
.y28{bottom:810.666667pt;}
.yc5{bottom:813.532800pt;}
.y1b9{bottom:817.333333pt;}
.y4a{bottom:824.000000pt;}
.y168{bottom:824.266667pt;}
.y5{bottom:826.000000pt;}
.y89{bottom:826.666667pt;}
.y27{bottom:827.333333pt;}
.yc4{bottom:829.532800pt;}
.y1b8{bottom:830.666667pt;}
.h2{height:31.992188pt;}
.h13{height:34.730667pt;}
.h15{height:35.114667pt;}
.h14{height:35.312500pt;}
.h11{height:36.229167pt;}
.he{height:39.101562pt;}
.h3{height:39.726562pt;}
.hf{height:41.770833pt;}
.h10{height:41.933594pt;}
.hd{height:43.022135pt;}
.hc{height:43.413333pt;}
.h9{height:44.140625pt;}
.h8{height:45.286458pt;}
.h6{height:48.282667pt;}
.h1{height:48.554688pt;}
.h7{height:49.289583pt;}
.h12{height:50.125000pt;}
.hb{height:52.968750pt;}
.ha{height:54.343750pt;}
.h5{height:72.458333pt;}
.h4{height:88.281250pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.540000pt;}
.x5{left:61.479867pt;}
.xe{left:65.600000pt;}
.x13{left:66.666667pt;}
.x1c{left:73.333333pt;}
.xd{left:80.006533pt;}
.x17{left:81.600000pt;}
.x3{left:87.868800pt;}
.xc{left:89.062533pt;}
.x8{left:100.106667pt;}
.x6{left:104.000000pt;}
.x15{left:105.600000pt;}
.x1d{left:113.333333pt;}
.xa{left:120.000000pt;}
.x1e{left:121.333333pt;}
.x4{left:128.320800pt;}
.xb{left:140.000000pt;}
.x9{left:144.000000pt;}
.x10{left:151.492133pt;}
.x11{left:160.004133pt;}
.x1a{left:164.000000pt;}
.x18{left:203.994667pt;}
.x2{left:234.000000pt;}
.xf{left:347.000000pt;}
.x16{left:354.933333pt;}
.x12{left:376.000000pt;}
.x1b{left:396.000000pt;}
.x19{left:435.997333pt;}
.x7{left:565.780667pt;}
.x14{left:566.791200pt;}
}




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