
    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_68831f2b7b3131ed1c3e6455.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_615107d8c219fa4f6f146c3f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.072266;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_d4131430b0ad142287e11d82.woff')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_31e2b1c093dafef6dee70016.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_694b3d3cc2c5d066a9b797c1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.072266;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_457a48bc1a23b7765cc27d45.woff')format("woff");}.ff6{font-family:ff6;line-height:0.847000;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_7bd5bfa0385269dc90f762af.woff')format("woff");}.ff7{font-family:ff7;line-height:0.925781;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_41adc910c8a5dd460bc2b7f3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.045000;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_070ef3a4b419b136ca654d2a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_91e3749602a82cb6241030c5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_33f70339534bf771bcf13548.woff')format("woff");}.ffb{font-family:ffb;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_481d423e205ecc324af21d74.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b3a3204297a90529c7bf181c.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bf8973faf27ac6b0b07df382.woff')format("woff");}.ffe{font-family:ffe;line-height:0.838379;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:186.000000px;}
.ls59{letter-spacing:-4.800000px;}
.ls4d{letter-spacing:-4.392000px;}
.ls48{letter-spacing:-3.888000px;}
.ls3b{letter-spacing:-2.808000px;}
.ls4c{letter-spacing:-2.592000px;}
.ls25{letter-spacing:-2.232000px;}
.ls26{letter-spacing:-2.088000px;}
.ls24{letter-spacing:-1.584000px;}
.ls54{letter-spacing:-1.296000px;}
.ls3c{letter-spacing:-1.224000px;}
.ls2c{letter-spacing:-1.152000px;}
.ls35{letter-spacing:-1.080000px;}
.ls36{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls20{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls34{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls33{letter-spacing:-0.480000px;}
.ls1e{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.360000px;}
.ls31{letter-spacing:-0.300000px;}
.ls27{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls38{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.216000px;}
.ls5b{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.288000px;}
.ls4e{letter-spacing:0.300000px;}
.ls45{letter-spacing:0.309600px;}
.ls7{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.936000px;}
.ls16{letter-spacing:1.008000px;}
.ls29{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.224000px;}
.lsd{letter-spacing:1.296000px;}
.ls9{letter-spacing:1.368000px;}
.ls39{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.512000px;}
.ls3a{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.656000px;}
.ls3e{letter-spacing:1.728000px;}
.ls41{letter-spacing:1.872000px;}
.ls2a{letter-spacing:2.016000px;}
.ls3f{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.232000px;}
.ls4f{letter-spacing:2.304000px;}
.ls2e{letter-spacing:2.376000px;}
.ls43{letter-spacing:2.448000px;}
.ls42{letter-spacing:2.520000px;}
.ls46{letter-spacing:2.592000px;}
.ls53{letter-spacing:2.664000px;}
.ls56{letter-spacing:2.928000px;}
.ls5c{letter-spacing:2.976000px;}
.ls5a{letter-spacing:2.990400px;}
.ls58{letter-spacing:3.360000px;}
.ls40{letter-spacing:4.500000px;}
.ls3{letter-spacing:4.560000px;}
.ls57{letter-spacing:4.752000px;}
.ls4a{letter-spacing:5.328000px;}
.ls49{letter-spacing:7.056000px;}
.ls47{letter-spacing:7.200000px;}
.ls52{letter-spacing:7.920000px;}
.ls55{letter-spacing:8.460000px;}
.ls50{letter-spacing:10.728000px;}
.ls2{letter-spacing:10.740000px;}
.ls4{letter-spacing:10.870735px;}
.ls44{letter-spacing:10.944000px;}
.ls51{letter-spacing:11.700000px;}
.ls4b{letter-spacing:11.808000px;}
.ls0{letter-spacing:97.200000px;}
.ls1{letter-spacing:150.360000px;}
.ls32{letter-spacing:187.080000px;}
.ls2f{letter-spacing:188.400000px;}
.ls37{letter-spacing:193.200000px;}
.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;}
}
.ws4{word-spacing:-75.180000px;}
.ws65{word-spacing:-71.712000px;}
.ws3{word-spacing:-48.600000px;}
.ws64{word-spacing:-19.800000px;}
.ws59{word-spacing:-19.656000px;}
.ws55{word-spacing:-19.296000px;}
.ws4c{word-spacing:-18.936000px;}
.ws58{word-spacing:-18.864000px;}
.ws4f{word-spacing:-18.792000px;}
.ws4d{word-spacing:-18.504000px;}
.ws6f{word-spacing:-18.432000px;}
.ws52{word-spacing:-18.360000px;}
.ws5a{word-spacing:-18.288000px;}
.ws45{word-spacing:-18.072000px;}
.ws54{word-spacing:-18.000000px;}
.ws48{word-spacing:-17.928000px;}
.ws4b{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws24{word-spacing:-17.712000px;}
.ws51{word-spacing:-17.640000px;}
.ws66{word-spacing:-17.568000px;}
.ws46{word-spacing:-17.496000px;}
.ws43{word-spacing:-17.424000px;}
.ws63{word-spacing:-17.352000px;}
.ws5b{word-spacing:-17.280000px;}
.ws5f{word-spacing:-17.208000px;}
.ws44{word-spacing:-17.064000px;}
.ws47{word-spacing:-16.992000px;}
.ws60{word-spacing:-16.920000px;}
.ws32{word-spacing:-16.860000px;}
.ws61{word-spacing:-16.848000px;}
.ws3e{word-spacing:-16.800000px;}
.ws6b{word-spacing:-16.776000px;}
.ws50{word-spacing:-16.704000px;}
.ws34{word-spacing:-16.560000px;}
.ws3b{word-spacing:-16.320000px;}
.ws74{word-spacing:-12.336000px;}
.ws75{word-spacing:-11.856000px;}
.ws73{word-spacing:-8.460000px;}
.ws76{word-spacing:-3.360000px;}
.ws70{word-spacing:-2.664000px;}
.ws62{word-spacing:-2.592000px;}
.ws5e{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.376000px;}
.ws71{word-spacing:-2.304000px;}
.ws2f{word-spacing:-2.232000px;}
.ws5c{word-spacing:-2.160000px;}
.ws30{word-spacing:-2.016000px;}
.ws5d{word-spacing:-1.872000px;}
.ws57{word-spacing:-1.728000px;}
.ws2c{word-spacing:-1.656000px;}
.ws4a{word-spacing:-1.584000px;}
.ws56{word-spacing:-1.512000px;}
.ws49{word-spacing:-1.440000px;}
.wsf{word-spacing:-1.368000px;}
.wsc{word-spacing:-1.296000px;}
.ws15{word-spacing:-1.224000px;}
.wsb{word-spacing:-1.152000px;}
.ws2d{word-spacing:-1.080000px;}
.ws1d{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.936000px;}
.ws16{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.ws8{word-spacing:-0.504000px;}
.wse{word-spacing:-0.432000px;}
.wsa{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.ws78{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.216000px;}
.ws11{word-spacing:-0.144000px;}
.ws1f{word-spacing:-0.072000px;}
.ws1{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws18{word-spacing:0.072000px;}
.ws23{word-spacing:0.144000px;}
.ws36{word-spacing:0.180000px;}
.wsd{word-spacing:0.216000px;}
.ws28{word-spacing:0.288000px;}
.ws17{word-spacing:0.360000px;}
.ws7{word-spacing:0.432000px;}
.ws20{word-spacing:0.504000px;}
.ws21{word-spacing:0.576000px;}
.ws12{word-spacing:0.648000px;}
.ws22{word-spacing:0.720000px;}
.ws2b{word-spacing:0.792000px;}
.ws19{word-spacing:0.864000px;}
.ws5{word-spacing:0.900000px;}
.ws1e{word-spacing:0.936000px;}
.ws3d{word-spacing:1.008000px;}
.ws3c{word-spacing:1.080000px;}
.ws2e{word-spacing:1.152000px;}
.ws53{word-spacing:1.224000px;}
.ws72{word-spacing:1.296000px;}
.ws79{word-spacing:1.440000px;}
.ws25{word-spacing:1.584000px;}
.ws6{word-spacing:1.800000px;}
.ws27{word-spacing:2.088000px;}
.ws26{word-spacing:2.232000px;}
.ws6e{word-spacing:2.340000px;}
.ws35{word-spacing:2.400000px;}
.ws69{word-spacing:2.592000px;}
.ws4e{word-spacing:2.808000px;}
.ws14{word-spacing:4.200000px;}
.ws6a{word-spacing:4.392000px;}
.ws77{word-spacing:4.800000px;}
.ws67{word-spacing:7.992000px;}
.ws0{word-spacing:8.376000px;}
.ws68{word-spacing:8.712000px;}
.ws40{word-spacing:17.538000px;}
.ws3a{word-spacing:18.096000px;}
.ws38{word-spacing:20.700000px;}
.ws3f{word-spacing:106.320000px;}
.ws42{word-spacing:107.340000px;}
.ws6c{word-spacing:109.740000px;}
.ws39{word-spacing:132.240000px;}
.ws41{word-spacing:136.320000px;}
.ws6d{word-spacing:139.740000px;}
.ws33{word-spacing:159.360000px;}
.ws37{word-spacing:162.240000px;}
._12{margin-left:-940.386000px;}
._a{margin-left:-20.232000px;}
._1c{margin-left:-16.818000px;}
._7{margin-left:-11.940000px;}
._21{margin-left:-10.022400px;}
._23{margin-left:-8.580000px;}
._f{margin-left:-7.046400px;}
._13{margin-left:-5.964000px;}
._14{margin-left:-4.464000px;}
._3{margin-left:-3.300000px;}
._5{margin-left:-2.124000px;}
._b{margin-left:-1.010400px;}
._e{width:1.044000px;}
._4{width:2.124000px;}
._2{width:3.192000px;}
._1{width:4.248000px;}
._8{width:5.253600px;}
._c{width:7.192800px;}
._6{width:8.652000px;}
._9{width:10.648800px;}
._d{width:11.692800px;}
._16{width:13.039200px;}
._11{width:14.875200px;}
._17{width:16.329600px;}
._15{width:17.820000px;}
._18{width:19.195200px;}
._10{width:21.391200px;}
._20{width:41.544000px;}
._19{width:146.220000px;}
._1f{width:153.180000px;}
._1e{width:154.200000px;}
._22{width:156.600000px;}
._1b{width:183.252000px;}
._1a{width:188.400000px;}
._1d{width:200.292000px;}
._0{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:434.955600px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y45{bottom:117.000000px;}
.y187{bottom:117.078000px;}
.y6a{bottom:118.110000px;}
.y18c{bottom:118.218300px;}
.yb4{bottom:118.808850px;}
.y1dc{bottom:119.244000px;}
.y161{bottom:119.310000px;}
.y22{bottom:119.342550px;}
.y1a7{bottom:119.627700px;}
.y13c{bottom:119.677350px;}
.y8f{bottom:119.864700px;}
.yf8{bottom:120.456000px;}
.yc6{bottom:120.666000px;}
.y11c{bottom:123.300000px;}
.y1db{bottom:134.988000px;}
.y1a6{bottom:135.527700px;}
.y186{bottom:138.984000px;}
.y44{bottom:139.500000px;}
.y18b{bottom:139.962300px;}
.yb3{bottom:141.002850px;}
.y69{bottom:141.204000px;}
.y160{bottom:141.810000px;}
.y13b{bottom:142.483350px;}
.y21{bottom:142.598550px;}
.y8e{bottom:142.670700px;}
.yf7{bottom:142.956000px;}
.yc5{bottom:143.166000px;}
.y11b{bottom:146.250000px;}
.y1da{bottom:150.732000px;}
.y1a5{bottom:151.427700px;}
.y185{bottom:160.890000px;}
.y18a{bottom:161.706300px;}
.y43{bottom:162.000000px;}
.yb2{bottom:163.196850px;}
.y68{bottom:164.298000px;}
.y15f{bottom:164.310000px;}
.y13a{bottom:165.289350px;}
.yf6{bottom:165.456000px;}
.y8d{bottom:165.476700px;}
.yc4{bottom:165.666000px;}
.y20{bottom:165.854550px;}
.y1d9{bottom:166.476000px;}
.y1a4{bottom:167.327700px;}
.y11a{bottom:169.200000px;}
.y1d8{bottom:182.220000px;}
.y184{bottom:182.796000px;}
.y1a3{bottom:183.227700px;}
.y189{bottom:183.450300px;}
.y42{bottom:184.500000px;}
.yb1{bottom:185.246850px;}
.y15e{bottom:186.810000px;}
.y67{bottom:187.392000px;}
.yf5{bottom:187.956000px;}
.y139{bottom:188.095350px;}
.yc3{bottom:188.166000px;}
.y8c{bottom:188.282700px;}
.y1f{bottom:189.110550px;}
.y119{bottom:192.150000px;}
.y1d7{bottom:197.964000px;}
.y1a2{bottom:199.127700px;}
.y183{bottom:204.702000px;}
.y188{bottom:205.200300px;}
.y41{bottom:207.000000px;}
.yb0{bottom:207.296850px;}
.y15d{bottom:209.310000px;}
.yf4{bottom:210.456000px;}
.y66{bottom:210.486000px;}
.yc2{bottom:210.666000px;}
.y138{bottom:210.901350px;}
.y8b{bottom:211.088700px;}
.y1e{bottom:212.366550px;}
.y1d6{bottom:213.708000px;}
.y1a1{bottom:215.027700px;}
.y118{bottom:215.100000px;}
.y182{bottom:226.608000px;}
.yaf{bottom:229.346850px;}
.y1d5{bottom:229.452000px;}
.y40{bottom:229.500000px;}
.y1a0{bottom:230.927700px;}
.y15c{bottom:231.810000px;}
.yf3{bottom:232.956000px;}
.yc1{bottom:233.166000px;}
.y65{bottom:233.580000px;}
.y137{bottom:233.707350px;}
.y8a{bottom:233.894700px;}
.y1d{bottom:235.622550px;}
.y117{bottom:238.050000px;}
.y1d4{bottom:245.196000px;}
.y19f{bottom:246.827700px;}
.y181{bottom:248.514000px;}
.yae{bottom:251.396850px;}
.y3f{bottom:252.000000px;}
.y15b{bottom:254.310000px;}
.yf2{bottom:255.456000px;}
.yc0{bottom:255.666000px;}
.y136{bottom:256.513350px;}
.y64{bottom:256.674000px;}
.y89{bottom:256.700700px;}
.y1c{bottom:258.878550px;}
.y1d3{bottom:260.940000px;}
.y116{bottom:261.000000px;}
.y19e{bottom:262.727700px;}
.y180{bottom:270.420000px;}
.yad{bottom:273.446850px;}
.y3e{bottom:274.500000px;}
.y1d2{bottom:276.684000px;}
.y15a{bottom:276.810000px;}
.yf1{bottom:277.812000px;}
.ybf{bottom:277.860000px;}
.y19d{bottom:278.627700px;}
.y135{bottom:279.319350px;}
.y63{bottom:279.768000px;}
.y1b{bottom:282.134550px;}
.y115{bottom:283.950000px;}
.y17f{bottom:292.326000px;}
.y1d1{bottom:292.428000px;}
.y19c{bottom:294.527700px;}
.yac{bottom:295.496850px;}
.y3d{bottom:297.000000px;}
.y159{bottom:299.310000px;}
.ybe{bottom:300.054000px;}
.yf0{bottom:300.168000px;}
.y134{bottom:302.125350px;}
.y62{bottom:302.862000px;}
.y88{bottom:304.873500px;}
.y1a{bottom:305.390550px;}
.y114{bottom:306.900000px;}
.y1d0{bottom:308.172000px;}
.y19b{bottom:310.427700px;}
.y17e{bottom:314.232000px;}
.yab{bottom:317.546850px;}
.y3c{bottom:319.500000px;}
.y158{bottom:321.810000px;}
.ybd{bottom:322.248000px;}
.yef{bottom:322.524000px;}
.y1cf{bottom:323.916000px;}
.y87{bottom:323.923500px;}
.y133{bottom:324.931350px;}
.y61{bottom:325.956000px;}
.y19a{bottom:326.327700px;}
.y19{bottom:328.646550px;}
.y113{bottom:329.850000px;}
.y17d{bottom:336.138000px;}
.yaa{bottom:339.596850px;}
.y1ce{bottom:339.660000px;}
.y3b{bottom:342.000000px;}
.y199{bottom:342.227700px;}
.y86{bottom:342.973500px;}
.y157{bottom:344.310000px;}
.ybc{bottom:344.442000px;}
.yee{bottom:344.880000px;}
.y132{bottom:347.737350px;}
.y60{bottom:349.050000px;}
.y18{bottom:351.902550px;}
.y112{bottom:352.800000px;}
.y1cd{bottom:355.404000px;}
.y17c{bottom:358.044000px;}
.y198{bottom:358.127700px;}
.ya9{bottom:361.646850px;}
.y85{bottom:362.023500px;}
.y3a{bottom:364.500000px;}
.ybb{bottom:366.636000px;}
.y156{bottom:366.810000px;}
.yed{bottom:367.236000px;}
.y131{bottom:370.543350px;}
.y1cc{bottom:371.148000px;}
.y5f{bottom:372.144000px;}
.y197{bottom:374.027700px;}
.y17{bottom:375.158550px;}
.y111{bottom:375.750000px;}
.y17b{bottom:379.950000px;}
.ya8{bottom:384.002850px;}
.y1f5{bottom:386.244150px;}
.y1cb{bottom:386.892000px;}
.y39{bottom:387.000000px;}
.yba{bottom:388.830000px;}
.y84{bottom:389.008500px;}
.y155{bottom:389.310000px;}
.yec{bottom:389.592000px;}
.y196{bottom:389.927700px;}
.y130{bottom:393.349350px;}
.y5e{bottom:395.238000px;}
.y16{bottom:398.414550px;}
.y110{bottom:398.700000px;}
.y17a{bottom:401.856000px;}
.y1ca{bottom:402.636000px;}
.y1f4{bottom:404.994150px;}
.y195{bottom:405.827700px;}
.ya7{bottom:406.358850px;}
.y83{bottom:408.058500px;}
.y38{bottom:409.500000px;}
.yb9{bottom:411.024000px;}
.y154{bottom:411.810000px;}
.yeb{bottom:411.948000px;}
.y12f{bottom:416.155350px;}
.y5d{bottom:418.332000px;}
.y1c9{bottom:418.380000px;}
.y10f{bottom:421.650000px;}
.y15{bottom:421.670550px;}
.y194{bottom:421.727700px;}
.y1f3{bottom:423.744150px;}
.y179{bottom:423.762000px;}
.y82{bottom:427.108500px;}
.ya6{bottom:428.714850px;}
.y37{bottom:432.000000px;}
.yb8{bottom:433.218000px;}
.y1c8{bottom:434.124000px;}
.yea{bottom:434.304000px;}
.y153{bottom:434.310000px;}
.y193{bottom:437.627700px;}
.y12e{bottom:438.961350px;}
.y5c{bottom:441.426000px;}
.y1f2{bottom:442.494150px;}
.y10e{bottom:444.600000px;}
.y14{bottom:444.926550px;}
.y178{bottom:445.668000px;}
.y81{bottom:446.158500px;}
.y1c7{bottom:449.868000px;}
.ya5{bottom:451.070850px;}
.y192{bottom:453.527700px;}
.y36{bottom:454.500000px;}
.yb7{bottom:455.412000px;}
.ye9{bottom:456.660000px;}
.y152{bottom:456.810000px;}
.y1f1{bottom:461.244150px;}
.y12d{bottom:461.767350px;}
.y5b{bottom:464.520000px;}
.y80{bottom:465.208500px;}
.y1c6{bottom:465.612000px;}
.y10d{bottom:467.550000px;}
.y177{bottom:467.574000px;}
.y13{bottom:468.182550px;}
.y191{bottom:469.427700px;}
.ya4{bottom:473.426850px;}
.y35{bottom:477.000000px;}
.yb6{bottom:477.606000px;}
.ye8{bottom:479.016000px;}
.y151{bottom:479.310000px;}
.y1c5{bottom:481.356000px;}
.y190{bottom:485.327700px;}
.y5a{bottom:487.614000px;}
.y176{bottom:489.480000px;}
.y10c{bottom:490.500000px;}
.y1f0{bottom:491.244150px;}
.y12{bottom:491.438550px;}
.y7f{bottom:492.193500px;}
.ya3{bottom:495.782850px;}
.y1c4{bottom:497.100000px;}
.y34{bottom:499.500000px;}
.yb5{bottom:499.800000px;}
.y18f{bottom:501.227700px;}
.ye7{bottom:501.372000px;}
.y150{bottom:501.810000px;}
.y12c{bottom:509.938500px;}
.y59{bottom:510.708000px;}
.y7e{bottom:511.243500px;}
.y175{bottom:511.386000px;}
.y1c3{bottom:512.700000px;}
.y10b{bottom:513.450000px;}
.y11{bottom:514.694550px;}
.y18e{bottom:517.127700px;}
.ya2{bottom:518.138850px;}
.y33{bottom:522.000000px;}
.ye6{bottom:523.728000px;}
.y14f{bottom:524.310000px;}
.y1c2{bottom:528.300000px;}
.y12b{bottom:528.988500px;}
.y7d{bottom:530.293500px;}
.y1ef{bottom:532.494150px;}
.y174{bottom:533.292000px;}
.y58{bottom:533.802000px;}
.y10a{bottom:536.400000px;}
.y10{bottom:537.950550px;}
.y18d{bottom:539.399700px;}
.ya1{bottom:540.494850px;}
.y1c1{bottom:543.900000px;}
.y32{bottom:544.500000px;}
.ye5{bottom:546.084000px;}
.y14e{bottom:546.810000px;}
.yda{bottom:546.838500px;}
.y7c{bottom:549.343500px;}
.y1ee{bottom:551.244150px;}
.y173{bottom:555.198000px;}
.y12a{bottom:555.973500px;}
.y57{bottom:556.896000px;}
.y109{bottom:559.350000px;}
.y1c0{bottom:559.500000px;}
.yf{bottom:561.206550px;}
.yd{bottom:561.218550px;}
.ya0{bottom:562.850850px;}
.yd9{bottom:565.588500px;}
.y31{bottom:567.000000px;}
.ye4{bottom:568.440000px;}
.y14d{bottom:569.310000px;}
.y1ed{bottom:569.994150px;}
.y129{bottom:575.023500px;}
.y1bf{bottom:575.100000px;}
.y7b{bottom:576.328500px;}
.y172{bottom:577.104000px;}
.y56{bottom:579.990000px;}
.y108{bottom:582.300000px;}
.yd8{bottom:584.338500px;}
.ye{bottom:584.462550px;}
.y1ec{bottom:588.744150px;}
.y30{bottom:589.500000px;}
.y1be{bottom:590.700000px;}
.ye3{bottom:590.796000px;}
.y14c{bottom:591.810000px;}
.y7a{bottom:595.078500px;}
.y171{bottom:599.010000px;}
.y128{bottom:602.008500px;}
.y55{bottom:603.084000px;}
.y107{bottom:605.250000px;}
.y1bd{bottom:606.300000px;}
.y1eb{bottom:607.494150px;}
.y9f{bottom:610.573500px;}
.yd7{bottom:611.323500px;}
.y2f{bottom:612.000000px;}
.ye2{bottom:613.152000px;}
.y79{bottom:613.828500px;}
.y14b{bottom:614.166000px;}
.y170{bottom:620.916000px;}
.y127{bottom:621.058500px;}
.y1bc{bottom:621.900000px;}
.y77{bottom:622.063500px;}
.y54{bottom:626.178000px;}
.y1ea{bottom:626.244150px;}
.y106{bottom:628.200000px;}
.y9e{bottom:629.323500px;}
.yd6{bottom:630.073500px;}
.y78{bottom:632.578500px;}
.y2e{bottom:634.500000px;}
.ye1{bottom:635.508000px;}
.y14a{bottom:636.522000px;}
.y1bb{bottom:637.500000px;}
.y76{bottom:640.813500px;}
.y16f{bottom:642.822000px;}
.y1e9{bottom:644.994150px;}
.y126{bottom:648.043500px;}
.y9d{bottom:648.073500px;}
.yd5{bottom:648.823500px;}
.y53{bottom:649.272000px;}
.y105{bottom:651.150000px;}
.y1ba{bottom:653.100000px;}
.y2d{bottom:657.000000px;}
.ye0{bottom:657.864000px;}
.y149{bottom:658.878000px;}
.y75{bottom:659.563500px;}
.y1e8{bottom:663.744150px;}
.y16e{bottom:664.728000px;}
.y125{bottom:667.093500px;}
.yc{bottom:667.718550px;}
.y1b9{bottom:668.700000px;}
.y52{bottom:672.366000px;}
.y104{bottom:674.100000px;}
.y9c{bottom:675.058500px;}
.yd4{bottom:675.808500px;}
.y2c{bottom:679.500000px;}
.ydf{bottom:680.220000px;}
.y148{bottom:681.234000px;}
.y1e7{bottom:682.494150px;}
.y1b8{bottom:684.300000px;}
.y124{bottom:686.143500px;}
.yb{bottom:686.468550px;}
.y16d{bottom:686.634000px;}
.y9b{bottom:693.808500px;}
.yd3{bottom:694.558500px;}
.y51{bottom:695.460000px;}
.y103{bottom:697.050000px;}
.y74{bottom:699.300000px;}
.y1b7{bottom:699.900000px;}
.y2b{bottom:702.000000px;}
.yde{bottom:702.576000px;}
.y147{bottom:703.590000px;}
.ya{bottom:705.218550px;}
.y1e6{bottom:707.622000px;}
.y16c{bottom:708.540000px;}
.y9a{bottom:712.558500px;}
.y123{bottom:713.128500px;}
.yd2{bottom:713.308500px;}
.y1b6{bottom:715.500000px;}
.y50{bottom:718.554000px;}
.y102{bottom:720.000000px;}
.y2a{bottom:724.500000px;}
.ydd{bottom:724.932000px;}
.y146{bottom:725.946000px;}
.y1e5{bottom:730.122000px;}
.y16b{bottom:730.446000px;}
.y1b5{bottom:731.100000px;}
.y99{bottom:731.308500px;}
.y122{bottom:732.178500px;}
.y120{bottom:740.113500px;}
.yd1{bottom:740.293500px;}
.y4f{bottom:741.648000px;}
.y101{bottom:742.950000px;}
.y73{bottom:744.252000px;}
.y1b4{bottom:746.700000px;}
.y29{bottom:747.000000px;}
.ydc{bottom:747.288000px;}
.y9{bottom:747.354300px;}
.y145{bottom:748.302000px;}
.y121{bottom:751.228500px;}
.y16a{bottom:752.352000px;}
.y98{bottom:758.293500px;}
.yd0{bottom:759.043500px;}
.y11f{bottom:759.163500px;}
.y1b3{bottom:762.300000px;}
.y4e{bottom:764.742000px;}
.y100{bottom:765.900000px;}
.y72{bottom:767.058000px;}
.y46{bottom:769.500000px;}
.ydb{bottom:769.644000px;}
.y8{bottom:769.854300px;}
.y1e4{bottom:770.622000px;}
.y144{bottom:770.658000px;}
.y169{bottom:774.258000px;}
.y97{bottom:777.043500px;}
.y1b2{bottom:777.900000px;}
.y11e{bottom:778.213500px;}
.ycf{bottom:786.028500px;}
.y4d{bottom:787.836000px;}
.yff{bottom:788.850000px;}
.y1e3{bottom:789.372000px;}
.y71{bottom:789.864000px;}
.y28{bottom:792.000000px;}
.y7{bottom:792.354300px;}
.y143{bottom:793.014000px;}
.y1b1{bottom:793.500000px;}
.y168{bottom:796.164000px;}
.y11d{bottom:797.263500px;}
.y96{bottom:804.028500px;}
.yce{bottom:804.778500px;}
.y1e2{bottom:808.122000px;}
.y1b0{bottom:809.100000px;}
.y4c{bottom:810.930000px;}
.yfe{bottom:811.800000px;}
.y70{bottom:812.670000px;}
.yca{bottom:813.013500px;}
.y27{bottom:814.500000px;}
.y142{bottom:815.370000px;}
.y167{bottom:818.070000px;}
.y95{bottom:822.778500px;}
.ycd{bottom:823.528500px;}
.y1af{bottom:824.700000px;}
.y1e1{bottom:826.872000px;}
.yc9{bottom:831.763500px;}
.y4b{bottom:834.024000px;}
.yfd{bottom:834.750000px;}
.y6f{bottom:835.476000px;}
.y26{bottom:837.000000px;}
.y141{bottom:837.726000px;}
.y166{bottom:839.976000px;}
.y1ae{bottom:840.300000px;}
.y94{bottom:841.528500px;}
.ycc{bottom:842.278500px;}
.y1e0{bottom:845.622000px;}
.y92{bottom:849.763500px;}
.yc8{bottom:850.513500px;}
.y1ad{bottom:855.900000px;}
.y4a{bottom:857.118000px;}
.yfc{bottom:857.700000px;}
.y6e{bottom:858.282000px;}
.y6{bottom:859.500000px;}
.y140{bottom:860.082000px;}
.y93{bottom:860.278500px;}
.y165{bottom:861.882000px;}
.y1df{bottom:864.372000px;}
.y91{bottom:868.513500px;}
.ycb{bottom:869.263500px;}
.y1ac{bottom:871.500000px;}
.y49{bottom:880.212000px;}
.yfb{bottom:880.650000px;}
.y6d{bottom:881.088000px;}
.y25{bottom:882.000000px;}
.y13f{bottom:882.438000px;}
.y1de{bottom:883.122000px;}
.y164{bottom:883.788000px;}
.y1ab{bottom:887.100000px;}
.y90{bottom:887.263500px;}
.y5{bottom:889.500000px;}
.y1dd{bottom:901.872000px;}
.y1aa{bottom:902.700000px;}
.y48{bottom:903.306000px;}
.yfa{bottom:903.600000px;}
.y6c{bottom:903.894000px;}
.y24{bottom:904.500000px;}
.y13e{bottom:904.794000px;}
.y163{bottom:905.694000px;}
.yc7{bottom:909.000000px;}
.y1a9{bottom:918.300000px;}
.y4{bottom:919.500000px;}
.y47{bottom:926.400000px;}
.yf9{bottom:926.550000px;}
.y6b{bottom:926.700000px;}
.y23{bottom:927.000000px;}
.y13d{bottom:927.150000px;}
.y162{bottom:927.600000px;}
.y1a8{bottom:933.900000px;}
.hc{height:33.117188px;}
.ha{height:39.888000px;}
.h3{height:39.990234px;}
.hb{height:40.289062px;}
.h2{height:41.396484px;}
.h5{height:42.000000px;}
.h6{height:49.675781px;}
.h9{height:49.860000px;}
.h1{height:50.361328px;}
.h8{height:60.433594px;}
.h4{height:100.722656px;}
.h7{height:304.468920px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x9{left:72.126900px;}
.x5{left:82.382100px;}
.x8{left:112.495950px;}
.x12{left:117.126900px;}
.x4{left:120.020100px;}
.x7{left:127.381950px;}
.x2{left:135.000000px;}
.xb{left:143.346900px;}
.x20{left:147.276900px;}
.x1a{left:168.742050px;}
.x14{left:194.781900px;}
.xc{left:200.346900px;}
.xa{left:202.416900px;}
.x1b{left:204.412050px;}
.x13{left:242.976900px;}
.x15{left:251.421900px;}
.x3{left:256.500000px;}
.x22{left:263.496900px;}
.xd{left:270.861900px;}
.x1c{left:276.667050px;}
.x23{left:321.606900px;}
.x16{left:322.656900px;}
.xe{left:325.461900px;}
.x1d{left:332.467050px;}
.x17{left:376.926900px;}
.x21{left:379.701900px;}
.xf{left:394.986900px;}
.x24{left:437.826900px;}
.x1e{left:462.877050px;}
.x10{left:479.586900px;}
.x25{left:495.936900px;}
.x18{left:503.076900px;}
.x11{left:550.131900px;}
.x1f{left:551.947050px;}
.x26{left:554.046900px;}
.x19{left:593.451900px;}
.x6{left:635.390550px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:165.333333pt;}
.ls59{letter-spacing:-4.266667pt;}
.ls4d{letter-spacing:-3.904000pt;}
.ls48{letter-spacing:-3.456000pt;}
.ls3b{letter-spacing:-2.496000pt;}
.ls4c{letter-spacing:-2.304000pt;}
.ls25{letter-spacing:-1.984000pt;}
.ls26{letter-spacing:-1.856000pt;}
.ls24{letter-spacing:-1.408000pt;}
.ls54{letter-spacing:-1.152000pt;}
.ls3c{letter-spacing:-1.088000pt;}
.ls2c{letter-spacing:-1.024000pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls36{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls34{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls33{letter-spacing:-0.426667pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls31{letter-spacing:-0.266667pt;}
.ls27{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls38{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls5b{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.256000pt;}
.ls4e{letter-spacing:0.266667pt;}
.ls45{letter-spacing:0.275200pt;}
.ls7{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.832000pt;}
.ls16{letter-spacing:0.896000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.088000pt;}
.lsd{letter-spacing:1.152000pt;}
.ls9{letter-spacing:1.216000pt;}
.ls39{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.344000pt;}
.ls3a{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.472000pt;}
.ls3e{letter-spacing:1.536000pt;}
.ls41{letter-spacing:1.664000pt;}
.ls2a{letter-spacing:1.792000pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:1.984000pt;}
.ls4f{letter-spacing:2.048000pt;}
.ls2e{letter-spacing:2.112000pt;}
.ls43{letter-spacing:2.176000pt;}
.ls42{letter-spacing:2.240000pt;}
.ls46{letter-spacing:2.304000pt;}
.ls53{letter-spacing:2.368000pt;}
.ls56{letter-spacing:2.602667pt;}
.ls5c{letter-spacing:2.645333pt;}
.ls5a{letter-spacing:2.658133pt;}
.ls58{letter-spacing:2.986667pt;}
.ls40{letter-spacing:4.000000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls57{letter-spacing:4.224000pt;}
.ls4a{letter-spacing:4.736000pt;}
.ls49{letter-spacing:6.272000pt;}
.ls47{letter-spacing:6.400000pt;}
.ls52{letter-spacing:7.040000pt;}
.ls55{letter-spacing:7.520000pt;}
.ls50{letter-spacing:9.536000pt;}
.ls2{letter-spacing:9.546667pt;}
.ls4{letter-spacing:9.662876pt;}
.ls44{letter-spacing:9.728000pt;}
.ls51{letter-spacing:10.400000pt;}
.ls4b{letter-spacing:10.496000pt;}
.ls0{letter-spacing:86.400000pt;}
.ls1{letter-spacing:133.653333pt;}
.ls32{letter-spacing:166.293333pt;}
.ls2f{letter-spacing:167.466667pt;}
.ls37{letter-spacing:171.733333pt;}
.ws4{word-spacing:-66.826667pt;}
.ws65{word-spacing:-63.744000pt;}
.ws3{word-spacing:-43.200000pt;}
.ws64{word-spacing:-17.600000pt;}
.ws59{word-spacing:-17.472000pt;}
.ws55{word-spacing:-17.152000pt;}
.ws4c{word-spacing:-16.832000pt;}
.ws58{word-spacing:-16.768000pt;}
.ws4f{word-spacing:-16.704000pt;}
.ws4d{word-spacing:-16.448000pt;}
.ws6f{word-spacing:-16.384000pt;}
.ws52{word-spacing:-16.320000pt;}
.ws5a{word-spacing:-16.256000pt;}
.ws45{word-spacing:-16.064000pt;}
.ws54{word-spacing:-16.000000pt;}
.ws48{word-spacing:-15.936000pt;}
.ws4b{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws24{word-spacing:-15.744000pt;}
.ws51{word-spacing:-15.680000pt;}
.ws66{word-spacing:-15.616000pt;}
.ws46{word-spacing:-15.552000pt;}
.ws43{word-spacing:-15.488000pt;}
.ws63{word-spacing:-15.424000pt;}
.ws5b{word-spacing:-15.360000pt;}
.ws5f{word-spacing:-15.296000pt;}
.ws44{word-spacing:-15.168000pt;}
.ws47{word-spacing:-15.104000pt;}
.ws60{word-spacing:-15.040000pt;}
.ws32{word-spacing:-14.986667pt;}
.ws61{word-spacing:-14.976000pt;}
.ws3e{word-spacing:-14.933333pt;}
.ws6b{word-spacing:-14.912000pt;}
.ws50{word-spacing:-14.848000pt;}
.ws34{word-spacing:-14.720000pt;}
.ws3b{word-spacing:-14.506667pt;}
.ws74{word-spacing:-10.965333pt;}
.ws75{word-spacing:-10.538667pt;}
.ws73{word-spacing:-7.520000pt;}
.ws76{word-spacing:-2.986667pt;}
.ws70{word-spacing:-2.368000pt;}
.ws62{word-spacing:-2.304000pt;}
.ws5e{word-spacing:-2.240000pt;}
.ws31{word-spacing:-2.112000pt;}
.ws71{word-spacing:-2.048000pt;}
.ws2f{word-spacing:-1.984000pt;}
.ws5c{word-spacing:-1.920000pt;}
.ws30{word-spacing:-1.792000pt;}
.ws5d{word-spacing:-1.664000pt;}
.ws57{word-spacing:-1.536000pt;}
.ws2c{word-spacing:-1.472000pt;}
.ws4a{word-spacing:-1.408000pt;}
.ws56{word-spacing:-1.344000pt;}
.ws49{word-spacing:-1.280000pt;}
.wsf{word-spacing:-1.216000pt;}
.wsc{word-spacing:-1.152000pt;}
.ws15{word-spacing:-1.088000pt;}
.wsb{word-spacing:-1.024000pt;}
.ws2d{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.832000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws8{word-spacing:-0.448000pt;}
.wse{word-spacing:-0.384000pt;}
.wsa{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws78{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.192000pt;}
.ws11{word-spacing:-0.128000pt;}
.ws1f{word-spacing:-0.064000pt;}
.ws1{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws18{word-spacing:0.064000pt;}
.ws23{word-spacing:0.128000pt;}
.ws36{word-spacing:0.160000pt;}
.wsd{word-spacing:0.192000pt;}
.ws28{word-spacing:0.256000pt;}
.ws17{word-spacing:0.320000pt;}
.ws7{word-spacing:0.384000pt;}
.ws20{word-spacing:0.448000pt;}
.ws21{word-spacing:0.512000pt;}
.ws12{word-spacing:0.576000pt;}
.ws22{word-spacing:0.640000pt;}
.ws2b{word-spacing:0.704000pt;}
.ws19{word-spacing:0.768000pt;}
.ws5{word-spacing:0.800000pt;}
.ws1e{word-spacing:0.832000pt;}
.ws3d{word-spacing:0.896000pt;}
.ws3c{word-spacing:0.960000pt;}
.ws2e{word-spacing:1.024000pt;}
.ws53{word-spacing:1.088000pt;}
.ws72{word-spacing:1.152000pt;}
.ws79{word-spacing:1.280000pt;}
.ws25{word-spacing:1.408000pt;}
.ws6{word-spacing:1.600000pt;}
.ws27{word-spacing:1.856000pt;}
.ws26{word-spacing:1.984000pt;}
.ws6e{word-spacing:2.080000pt;}
.ws35{word-spacing:2.133333pt;}
.ws69{word-spacing:2.304000pt;}
.ws4e{word-spacing:2.496000pt;}
.ws14{word-spacing:3.733333pt;}
.ws6a{word-spacing:3.904000pt;}
.ws77{word-spacing:4.266667pt;}
.ws67{word-spacing:7.104000pt;}
.ws0{word-spacing:7.445333pt;}
.ws68{word-spacing:7.744000pt;}
.ws40{word-spacing:15.589333pt;}
.ws3a{word-spacing:16.085333pt;}
.ws38{word-spacing:18.400000pt;}
.ws3f{word-spacing:94.506667pt;}
.ws42{word-spacing:95.413333pt;}
.ws6c{word-spacing:97.546667pt;}
.ws39{word-spacing:117.546667pt;}
.ws41{word-spacing:121.173333pt;}
.ws6d{word-spacing:124.213333pt;}
.ws33{word-spacing:141.653333pt;}
.ws37{word-spacing:144.213333pt;}
._12{margin-left:-835.898667pt;}
._a{margin-left:-17.984000pt;}
._1c{margin-left:-14.949333pt;}
._7{margin-left:-10.613333pt;}
._21{margin-left:-8.908800pt;}
._23{margin-left:-7.626667pt;}
._f{margin-left:-6.263467pt;}
._13{margin-left:-5.301333pt;}
._14{margin-left:-3.968000pt;}
._3{margin-left:-2.933333pt;}
._5{margin-left:-1.888000pt;}
._b{margin-left:-0.898133pt;}
._e{width:0.928000pt;}
._4{width:1.888000pt;}
._2{width:2.837333pt;}
._1{width:3.776000pt;}
._8{width:4.669867pt;}
._c{width:6.393600pt;}
._6{width:7.690667pt;}
._9{width:9.465600pt;}
._d{width:10.393600pt;}
._16{width:11.590400pt;}
._11{width:13.222400pt;}
._17{width:14.515200pt;}
._15{width:15.840000pt;}
._18{width:17.062400pt;}
._10{width:19.014400pt;}
._20{width:36.928000pt;}
._19{width:129.973333pt;}
._1f{width:136.160000pt;}
._1e{width:137.066667pt;}
._22{width:139.200000pt;}
._1b{width:162.890667pt;}
._1a{width:167.466667pt;}
._1d{width:178.037333pt;}
._0{width:179.168000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:386.627200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y45{bottom:104.000000pt;}
.y187{bottom:104.069333pt;}
.y6a{bottom:104.986667pt;}
.y18c{bottom:105.082933pt;}
.yb4{bottom:105.607867pt;}
.y1dc{bottom:105.994667pt;}
.y161{bottom:106.053333pt;}
.y22{bottom:106.082267pt;}
.y1a7{bottom:106.335733pt;}
.y13c{bottom:106.379867pt;}
.y8f{bottom:106.546400pt;}
.yf8{bottom:107.072000pt;}
.yc6{bottom:107.258667pt;}
.y11c{bottom:109.600000pt;}
.y1db{bottom:119.989333pt;}
.y1a6{bottom:120.469067pt;}
.y186{bottom:123.541333pt;}
.y44{bottom:124.000000pt;}
.y18b{bottom:124.410933pt;}
.yb3{bottom:125.335867pt;}
.y69{bottom:125.514667pt;}
.y160{bottom:126.053333pt;}
.y13b{bottom:126.651867pt;}
.y21{bottom:126.754267pt;}
.y8e{bottom:126.818400pt;}
.yf7{bottom:127.072000pt;}
.yc5{bottom:127.258667pt;}
.y11b{bottom:130.000000pt;}
.y1da{bottom:133.984000pt;}
.y1a5{bottom:134.602400pt;}
.y185{bottom:143.013333pt;}
.y18a{bottom:143.738933pt;}
.y43{bottom:144.000000pt;}
.yb2{bottom:145.063867pt;}
.y68{bottom:146.042667pt;}
.y15f{bottom:146.053333pt;}
.y13a{bottom:146.923867pt;}
.yf6{bottom:147.072000pt;}
.y8d{bottom:147.090400pt;}
.yc4{bottom:147.258667pt;}
.y20{bottom:147.426267pt;}
.y1d9{bottom:147.978667pt;}
.y1a4{bottom:148.735733pt;}
.y11a{bottom:150.400000pt;}
.y1d8{bottom:161.973333pt;}
.y184{bottom:162.485333pt;}
.y1a3{bottom:162.869067pt;}
.y189{bottom:163.066933pt;}
.y42{bottom:164.000000pt;}
.yb1{bottom:164.663867pt;}
.y15e{bottom:166.053333pt;}
.y67{bottom:166.570667pt;}
.yf5{bottom:167.072000pt;}
.y139{bottom:167.195867pt;}
.yc3{bottom:167.258667pt;}
.y8c{bottom:167.362400pt;}
.y1f{bottom:168.098267pt;}
.y119{bottom:170.800000pt;}
.y1d7{bottom:175.968000pt;}
.y1a2{bottom:177.002400pt;}
.y183{bottom:181.957333pt;}
.y188{bottom:182.400267pt;}
.y41{bottom:184.000000pt;}
.yb0{bottom:184.263867pt;}
.y15d{bottom:186.053333pt;}
.yf4{bottom:187.072000pt;}
.y66{bottom:187.098667pt;}
.yc2{bottom:187.258667pt;}
.y138{bottom:187.467867pt;}
.y8b{bottom:187.634400pt;}
.y1e{bottom:188.770267pt;}
.y1d6{bottom:189.962667pt;}
.y1a1{bottom:191.135733pt;}
.y118{bottom:191.200000pt;}
.y182{bottom:201.429333pt;}
.yaf{bottom:203.863867pt;}
.y1d5{bottom:203.957333pt;}
.y40{bottom:204.000000pt;}
.y1a0{bottom:205.269067pt;}
.y15c{bottom:206.053333pt;}
.yf3{bottom:207.072000pt;}
.yc1{bottom:207.258667pt;}
.y65{bottom:207.626667pt;}
.y137{bottom:207.739867pt;}
.y8a{bottom:207.906400pt;}
.y1d{bottom:209.442267pt;}
.y117{bottom:211.600000pt;}
.y1d4{bottom:217.952000pt;}
.y19f{bottom:219.402400pt;}
.y181{bottom:220.901333pt;}
.yae{bottom:223.463867pt;}
.y3f{bottom:224.000000pt;}
.y15b{bottom:226.053333pt;}
.yf2{bottom:227.072000pt;}
.yc0{bottom:227.258667pt;}
.y136{bottom:228.011867pt;}
.y64{bottom:228.154667pt;}
.y89{bottom:228.178400pt;}
.y1c{bottom:230.114267pt;}
.y1d3{bottom:231.946667pt;}
.y116{bottom:232.000000pt;}
.y19e{bottom:233.535733pt;}
.y180{bottom:240.373333pt;}
.yad{bottom:243.063867pt;}
.y3e{bottom:244.000000pt;}
.y1d2{bottom:245.941333pt;}
.y15a{bottom:246.053333pt;}
.yf1{bottom:246.944000pt;}
.ybf{bottom:246.986667pt;}
.y19d{bottom:247.669067pt;}
.y135{bottom:248.283867pt;}
.y63{bottom:248.682667pt;}
.y1b{bottom:250.786267pt;}
.y115{bottom:252.400000pt;}
.y17f{bottom:259.845333pt;}
.y1d1{bottom:259.936000pt;}
.y19c{bottom:261.802400pt;}
.yac{bottom:262.663867pt;}
.y3d{bottom:264.000000pt;}
.y159{bottom:266.053333pt;}
.ybe{bottom:266.714667pt;}
.yf0{bottom:266.816000pt;}
.y134{bottom:268.555867pt;}
.y62{bottom:269.210667pt;}
.y88{bottom:270.998667pt;}
.y1a{bottom:271.458267pt;}
.y114{bottom:272.800000pt;}
.y1d0{bottom:273.930667pt;}
.y19b{bottom:275.935733pt;}
.y17e{bottom:279.317333pt;}
.yab{bottom:282.263867pt;}
.y3c{bottom:284.000000pt;}
.y158{bottom:286.053333pt;}
.ybd{bottom:286.442667pt;}
.yef{bottom:286.688000pt;}
.y1cf{bottom:287.925333pt;}
.y87{bottom:287.932000pt;}
.y133{bottom:288.827867pt;}
.y61{bottom:289.738667pt;}
.y19a{bottom:290.069067pt;}
.y19{bottom:292.130267pt;}
.y113{bottom:293.200000pt;}
.y17d{bottom:298.789333pt;}
.yaa{bottom:301.863867pt;}
.y1ce{bottom:301.920000pt;}
.y3b{bottom:304.000000pt;}
.y199{bottom:304.202400pt;}
.y86{bottom:304.865333pt;}
.y157{bottom:306.053333pt;}
.ybc{bottom:306.170667pt;}
.yee{bottom:306.560000pt;}
.y132{bottom:309.099867pt;}
.y60{bottom:310.266667pt;}
.y18{bottom:312.802267pt;}
.y112{bottom:313.600000pt;}
.y1cd{bottom:315.914667pt;}
.y17c{bottom:318.261333pt;}
.y198{bottom:318.335733pt;}
.ya9{bottom:321.463867pt;}
.y85{bottom:321.798667pt;}
.y3a{bottom:324.000000pt;}
.ybb{bottom:325.898667pt;}
.y156{bottom:326.053333pt;}
.yed{bottom:326.432000pt;}
.y131{bottom:329.371867pt;}
.y1cc{bottom:329.909333pt;}
.y5f{bottom:330.794667pt;}
.y197{bottom:332.469067pt;}
.y17{bottom:333.474267pt;}
.y111{bottom:334.000000pt;}
.y17b{bottom:337.733333pt;}
.ya8{bottom:341.335867pt;}
.y1f5{bottom:343.328133pt;}
.y1cb{bottom:343.904000pt;}
.y39{bottom:344.000000pt;}
.yba{bottom:345.626667pt;}
.y84{bottom:345.785333pt;}
.y155{bottom:346.053333pt;}
.yec{bottom:346.304000pt;}
.y196{bottom:346.602400pt;}
.y130{bottom:349.643867pt;}
.y5e{bottom:351.322667pt;}
.y16{bottom:354.146267pt;}
.y110{bottom:354.400000pt;}
.y17a{bottom:357.205333pt;}
.y1ca{bottom:357.898667pt;}
.y1f4{bottom:359.994800pt;}
.y195{bottom:360.735733pt;}
.ya7{bottom:361.207867pt;}
.y83{bottom:362.718667pt;}
.y38{bottom:364.000000pt;}
.yb9{bottom:365.354667pt;}
.y154{bottom:366.053333pt;}
.yeb{bottom:366.176000pt;}
.y12f{bottom:369.915867pt;}
.y5d{bottom:371.850667pt;}
.y1c9{bottom:371.893333pt;}
.y10f{bottom:374.800000pt;}
.y15{bottom:374.818267pt;}
.y194{bottom:374.869067pt;}
.y1f3{bottom:376.661467pt;}
.y179{bottom:376.677333pt;}
.y82{bottom:379.652000pt;}
.ya6{bottom:381.079867pt;}
.y37{bottom:384.000000pt;}
.yb8{bottom:385.082667pt;}
.y1c8{bottom:385.888000pt;}
.yea{bottom:386.048000pt;}
.y153{bottom:386.053333pt;}
.y193{bottom:389.002400pt;}
.y12e{bottom:390.187867pt;}
.y5c{bottom:392.378667pt;}
.y1f2{bottom:393.328133pt;}
.y10e{bottom:395.200000pt;}
.y14{bottom:395.490267pt;}
.y178{bottom:396.149333pt;}
.y81{bottom:396.585333pt;}
.y1c7{bottom:399.882667pt;}
.ya5{bottom:400.951867pt;}
.y192{bottom:403.135733pt;}
.y36{bottom:404.000000pt;}
.yb7{bottom:404.810667pt;}
.ye9{bottom:405.920000pt;}
.y152{bottom:406.053333pt;}
.y1f1{bottom:409.994800pt;}
.y12d{bottom:410.459867pt;}
.y5b{bottom:412.906667pt;}
.y80{bottom:413.518667pt;}
.y1c6{bottom:413.877333pt;}
.y10d{bottom:415.600000pt;}
.y177{bottom:415.621333pt;}
.y13{bottom:416.162267pt;}
.y191{bottom:417.269067pt;}
.ya4{bottom:420.823867pt;}
.y35{bottom:424.000000pt;}
.yb6{bottom:424.538667pt;}
.ye8{bottom:425.792000pt;}
.y151{bottom:426.053333pt;}
.y1c5{bottom:427.872000pt;}
.y190{bottom:431.402400pt;}
.y5a{bottom:433.434667pt;}
.y176{bottom:435.093333pt;}
.y10c{bottom:436.000000pt;}
.y1f0{bottom:436.661467pt;}
.y12{bottom:436.834267pt;}
.y7f{bottom:437.505333pt;}
.ya3{bottom:440.695867pt;}
.y1c4{bottom:441.866667pt;}
.y34{bottom:444.000000pt;}
.yb5{bottom:444.266667pt;}
.y18f{bottom:445.535733pt;}
.ye7{bottom:445.664000pt;}
.y150{bottom:446.053333pt;}
.y12c{bottom:453.278667pt;}
.y59{bottom:453.962667pt;}
.y7e{bottom:454.438667pt;}
.y175{bottom:454.565333pt;}
.y1c3{bottom:455.733333pt;}
.y10b{bottom:456.400000pt;}
.y11{bottom:457.506267pt;}
.y18e{bottom:459.669067pt;}
.ya2{bottom:460.567867pt;}
.y33{bottom:464.000000pt;}
.ye6{bottom:465.536000pt;}
.y14f{bottom:466.053333pt;}
.y1c2{bottom:469.600000pt;}
.y12b{bottom:470.212000pt;}
.y7d{bottom:471.372000pt;}
.y1ef{bottom:473.328133pt;}
.y174{bottom:474.037333pt;}
.y58{bottom:474.490667pt;}
.y10a{bottom:476.800000pt;}
.y10{bottom:478.178267pt;}
.y18d{bottom:479.466400pt;}
.ya1{bottom:480.439867pt;}
.y1c1{bottom:483.466667pt;}
.y32{bottom:484.000000pt;}
.ye5{bottom:485.408000pt;}
.y14e{bottom:486.053333pt;}
.yda{bottom:486.078667pt;}
.y7c{bottom:488.305333pt;}
.y1ee{bottom:489.994800pt;}
.y173{bottom:493.509333pt;}
.y12a{bottom:494.198667pt;}
.y57{bottom:495.018667pt;}
.y109{bottom:497.200000pt;}
.y1c0{bottom:497.333333pt;}
.yf{bottom:498.850267pt;}
.yd{bottom:498.860933pt;}
.ya0{bottom:500.311867pt;}
.yd9{bottom:502.745333pt;}
.y31{bottom:504.000000pt;}
.ye4{bottom:505.280000pt;}
.y14d{bottom:506.053333pt;}
.y1ed{bottom:506.661467pt;}
.y129{bottom:511.132000pt;}
.y1bf{bottom:511.200000pt;}
.y7b{bottom:512.292000pt;}
.y172{bottom:512.981333pt;}
.y56{bottom:515.546667pt;}
.y108{bottom:517.600000pt;}
.yd8{bottom:519.412000pt;}
.ye{bottom:519.522267pt;}
.y1ec{bottom:523.328133pt;}
.y30{bottom:524.000000pt;}
.y1be{bottom:525.066667pt;}
.ye3{bottom:525.152000pt;}
.y14c{bottom:526.053333pt;}
.y7a{bottom:528.958667pt;}
.y171{bottom:532.453333pt;}
.y128{bottom:535.118667pt;}
.y55{bottom:536.074667pt;}
.y107{bottom:538.000000pt;}
.y1bd{bottom:538.933333pt;}
.y1eb{bottom:539.994800pt;}
.y9f{bottom:542.732000pt;}
.yd7{bottom:543.398667pt;}
.y2f{bottom:544.000000pt;}
.ye2{bottom:545.024000pt;}
.y79{bottom:545.625333pt;}
.y14b{bottom:545.925333pt;}
.y170{bottom:551.925333pt;}
.y127{bottom:552.052000pt;}
.y1bc{bottom:552.800000pt;}
.y77{bottom:552.945333pt;}
.y54{bottom:556.602667pt;}
.y1ea{bottom:556.661467pt;}
.y106{bottom:558.400000pt;}
.y9e{bottom:559.398667pt;}
.yd6{bottom:560.065333pt;}
.y78{bottom:562.292000pt;}
.y2e{bottom:564.000000pt;}
.ye1{bottom:564.896000pt;}
.y14a{bottom:565.797333pt;}
.y1bb{bottom:566.666667pt;}
.y76{bottom:569.612000pt;}
.y16f{bottom:571.397333pt;}
.y1e9{bottom:573.328133pt;}
.y126{bottom:576.038667pt;}
.y9d{bottom:576.065333pt;}
.yd5{bottom:576.732000pt;}
.y53{bottom:577.130667pt;}
.y105{bottom:578.800000pt;}
.y1ba{bottom:580.533333pt;}
.y2d{bottom:584.000000pt;}
.ye0{bottom:584.768000pt;}
.y149{bottom:585.669333pt;}
.y75{bottom:586.278667pt;}
.y1e8{bottom:589.994800pt;}
.y16e{bottom:590.869333pt;}
.y125{bottom:592.972000pt;}
.yc{bottom:593.527600pt;}
.y1b9{bottom:594.400000pt;}
.y52{bottom:597.658667pt;}
.y104{bottom:599.200000pt;}
.y9c{bottom:600.052000pt;}
.yd4{bottom:600.718667pt;}
.y2c{bottom:604.000000pt;}
.ydf{bottom:604.640000pt;}
.y148{bottom:605.541333pt;}
.y1e7{bottom:606.661467pt;}
.y1b8{bottom:608.266667pt;}
.y124{bottom:609.905333pt;}
.yb{bottom:610.194267pt;}
.y16d{bottom:610.341333pt;}
.y9b{bottom:616.718667pt;}
.yd3{bottom:617.385333pt;}
.y51{bottom:618.186667pt;}
.y103{bottom:619.600000pt;}
.y74{bottom:621.600000pt;}
.y1b7{bottom:622.133333pt;}
.y2b{bottom:624.000000pt;}
.yde{bottom:624.512000pt;}
.y147{bottom:625.413333pt;}
.ya{bottom:626.860933pt;}
.y1e6{bottom:628.997333pt;}
.y16c{bottom:629.813333pt;}
.y9a{bottom:633.385333pt;}
.y123{bottom:633.892000pt;}
.yd2{bottom:634.052000pt;}
.y1b6{bottom:636.000000pt;}
.y50{bottom:638.714667pt;}
.y102{bottom:640.000000pt;}
.y2a{bottom:644.000000pt;}
.ydd{bottom:644.384000pt;}
.y146{bottom:645.285333pt;}
.y1e5{bottom:648.997333pt;}
.y16b{bottom:649.285333pt;}
.y1b5{bottom:649.866667pt;}
.y99{bottom:650.052000pt;}
.y122{bottom:650.825333pt;}
.y120{bottom:657.878667pt;}
.yd1{bottom:658.038667pt;}
.y4f{bottom:659.242667pt;}
.y101{bottom:660.400000pt;}
.y73{bottom:661.557333pt;}
.y1b4{bottom:663.733333pt;}
.y29{bottom:664.000000pt;}
.ydc{bottom:664.256000pt;}
.y9{bottom:664.314933pt;}
.y145{bottom:665.157333pt;}
.y121{bottom:667.758667pt;}
.y16a{bottom:668.757333pt;}
.y98{bottom:674.038667pt;}
.yd0{bottom:674.705333pt;}
.y11f{bottom:674.812000pt;}
.y1b3{bottom:677.600000pt;}
.y4e{bottom:679.770667pt;}
.y100{bottom:680.800000pt;}
.y72{bottom:681.829333pt;}
.y46{bottom:684.000000pt;}
.ydb{bottom:684.128000pt;}
.y8{bottom:684.314933pt;}
.y1e4{bottom:684.997333pt;}
.y144{bottom:685.029333pt;}
.y169{bottom:688.229333pt;}
.y97{bottom:690.705333pt;}
.y1b2{bottom:691.466667pt;}
.y11e{bottom:691.745333pt;}
.ycf{bottom:698.692000pt;}
.y4d{bottom:700.298667pt;}
.yff{bottom:701.200000pt;}
.y1e3{bottom:701.664000pt;}
.y71{bottom:702.101333pt;}
.y28{bottom:704.000000pt;}
.y7{bottom:704.314933pt;}
.y143{bottom:704.901333pt;}
.y1b1{bottom:705.333333pt;}
.y168{bottom:707.701333pt;}
.y11d{bottom:708.678667pt;}
.y96{bottom:714.692000pt;}
.yce{bottom:715.358667pt;}
.y1e2{bottom:718.330667pt;}
.y1b0{bottom:719.200000pt;}
.y4c{bottom:720.826667pt;}
.yfe{bottom:721.600000pt;}
.y70{bottom:722.373333pt;}
.yca{bottom:722.678667pt;}
.y27{bottom:724.000000pt;}
.y142{bottom:724.773333pt;}
.y167{bottom:727.173333pt;}
.y95{bottom:731.358667pt;}
.ycd{bottom:732.025333pt;}
.y1af{bottom:733.066667pt;}
.y1e1{bottom:734.997333pt;}
.yc9{bottom:739.345333pt;}
.y4b{bottom:741.354667pt;}
.yfd{bottom:742.000000pt;}
.y6f{bottom:742.645333pt;}
.y26{bottom:744.000000pt;}
.y141{bottom:744.645333pt;}
.y166{bottom:746.645333pt;}
.y1ae{bottom:746.933333pt;}
.y94{bottom:748.025333pt;}
.ycc{bottom:748.692000pt;}
.y1e0{bottom:751.664000pt;}
.y92{bottom:755.345333pt;}
.yc8{bottom:756.012000pt;}
.y1ad{bottom:760.800000pt;}
.y4a{bottom:761.882667pt;}
.yfc{bottom:762.400000pt;}
.y6e{bottom:762.917333pt;}
.y6{bottom:764.000000pt;}
.y140{bottom:764.517333pt;}
.y93{bottom:764.692000pt;}
.y165{bottom:766.117333pt;}
.y1df{bottom:768.330667pt;}
.y91{bottom:772.012000pt;}
.ycb{bottom:772.678667pt;}
.y1ac{bottom:774.666667pt;}
.y49{bottom:782.410667pt;}
.yfb{bottom:782.800000pt;}
.y6d{bottom:783.189333pt;}
.y25{bottom:784.000000pt;}
.y13f{bottom:784.389333pt;}
.y1de{bottom:784.997333pt;}
.y164{bottom:785.589333pt;}
.y1ab{bottom:788.533333pt;}
.y90{bottom:788.678667pt;}
.y5{bottom:790.666667pt;}
.y1dd{bottom:801.664000pt;}
.y1aa{bottom:802.400000pt;}
.y48{bottom:802.938667pt;}
.yfa{bottom:803.200000pt;}
.y6c{bottom:803.461333pt;}
.y24{bottom:804.000000pt;}
.y13e{bottom:804.261333pt;}
.y163{bottom:805.061333pt;}
.yc7{bottom:808.000000pt;}
.y1a9{bottom:816.266667pt;}
.y4{bottom:817.333333pt;}
.y47{bottom:823.466667pt;}
.yf9{bottom:823.600000pt;}
.y6b{bottom:823.733333pt;}
.y23{bottom:824.000000pt;}
.y13d{bottom:824.133333pt;}
.y162{bottom:824.533333pt;}
.y1a8{bottom:830.133333pt;}
.hc{height:29.437500pt;}
.ha{height:35.456000pt;}
.h3{height:35.546875pt;}
.hb{height:35.812500pt;}
.h2{height:36.796875pt;}
.h5{height:37.333333pt;}
.h6{height:44.156250pt;}
.h9{height:44.320000pt;}
.h1{height:44.765625pt;}
.h8{height:53.718750pt;}
.h4{height:89.531250pt;}
.h7{height:270.639040pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x9{left:64.112800pt;}
.x5{left:73.228533pt;}
.x8{left:99.996400pt;}
.x12{left:104.112800pt;}
.x4{left:106.684533pt;}
.x7{left:113.228400pt;}
.x2{left:120.000000pt;}
.xb{left:127.419467pt;}
.x20{left:130.912800pt;}
.x1a{left:149.992933pt;}
.x14{left:173.139467pt;}
.xc{left:178.086133pt;}
.xa{left:179.926133pt;}
.x1b{left:181.699600pt;}
.x13{left:215.979467pt;}
.x15{left:223.486133pt;}
.x3{left:228.000000pt;}
.x22{left:234.219467pt;}
.xd{left:240.766133pt;}
.x1c{left:245.926267pt;}
.x23{left:285.872800pt;}
.x16{left:286.806133pt;}
.xe{left:289.299467pt;}
.x1d{left:295.526267pt;}
.x17{left:335.046133pt;}
.x21{left:337.512800pt;}
.xf{left:351.099467pt;}
.x24{left:389.179467pt;}
.x1e{left:411.446267pt;}
.x10{left:426.299467pt;}
.x25{left:440.832800pt;}
.x18{left:447.179467pt;}
.x11{left:489.006133pt;}
.x1f{left:490.619600pt;}
.x26{left:492.486133pt;}
.x19{left:527.512800pt;}
.x6{left:564.791600pt;}
}




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