
    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_cb148abc465f923eca0a0a42.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_989194c01978aebd8efa5c58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_989194c01978aebd8efa5c58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_a24e992764ce874882d7bf7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932000;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_f8f7a17def3b53d0cb02298f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_c795b7e42ac3fcab8288d1c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_831ebda5ae6c7c33a0736215.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_f0ce8f3414040030b92e899e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_83cc2ccd5ec03fd387474e60.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_c061d55247a774ba4031e3d5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7545d61c0aa8a72c8c98b3ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861328;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_f0fd3fc7217617c5157fe48f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3e932663c6890fd06dca9351.woff2')format("woff");}.fff{font-family:fff;line-height:1.575000;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:ff10;src:url('chunks/assets/font_fd00cdb0bed9d50d2361cd40.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.575000;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:ff11;src:url('chunks/assets/font_b07858cd56c45f89402aaf88.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ce03e3308cc451c728bd378e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_51d9610bc713e557b6bbbc7c.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.592000;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.760000px;}
.v3{vertical-align:-3.201840px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6b{letter-spacing:-2.031840px;}
.ls62{letter-spacing:-1.314000px;}
.ls6a{letter-spacing:-1.194000px;}
.ls69{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.758160px;}
.ls2{letter-spacing:-0.720000px;}
.ls66{letter-spacing:-0.660000px;}
.ls65{letter-spacing:-0.600000px;}
.ls16{letter-spacing:-0.594000px;}
.ls15{letter-spacing:-0.486000px;}
.ls3{letter-spacing:-0.420000px;}
.ls57{letter-spacing:-0.385920px;}
.lsb{letter-spacing:-0.336960px;}
.ls13{letter-spacing:-0.298800px;}
.ls6d{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.179280px;}
.ls6c{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.119520px;}
.ls12{letter-spacing:-0.084240px;}
.lsf{letter-spacing:-0.072000px;}
.ls61{letter-spacing:-0.066240px;}
.ls67{letter-spacing:-0.060000px;}
.ls14{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.017928px;}
.ls5e{letter-spacing:0.033120px;}
.ls2e{letter-spacing:0.041832px;}
.ls5b{letter-spacing:0.053784px;}
.ls63{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.083664px;}
.ls58{letter-spacing:0.089640px;}
.ls17{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.113544px;}
.ls60{letter-spacing:0.119520px;}
.ls5f{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.149400px;}
.ls49{letter-spacing:0.179280px;}
.ls45{letter-spacing:0.209160px;}
.ls8{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.239040px;}
.ls68{letter-spacing:0.240000px;}
.lse{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.292824px;}
.ls4{letter-spacing:0.336960px;}
.ls9{letter-spacing:0.337680px;}
.ls18{letter-spacing:0.358560px;}
.ls52{letter-spacing:0.370512px;}
.ls33{letter-spacing:0.376488px;}
.ls7{letter-spacing:0.378000px;}
.ls51{letter-spacing:0.406368px;}
.ls59{letter-spacing:0.454176px;}
.ls5c{letter-spacing:0.585648px;}
.ls2c{letter-spacing:0.597600px;}
.ls5a{letter-spacing:0.603576px;}
.ls27{letter-spacing:0.657360px;}
.ls64{letter-spacing:0.714000px;}
.ls5d{letter-spacing:0.723096px;}
.ls4e{letter-spacing:0.729072px;}
.ls42{letter-spacing:0.776880px;}
.ls1d{letter-spacing:0.788832px;}
.ls20{letter-spacing:0.794808px;}
.ls1c{letter-spacing:0.812736px;}
.ls1f{letter-spacing:0.854568px;}
.ls46{letter-spacing:0.860544px;}
.ls34{letter-spacing:0.890424px;}
.ls29{letter-spacing:0.938232px;}
.ls28{letter-spacing:0.956160px;}
.ls39{letter-spacing:1.015920px;}
.ls37{letter-spacing:1.087632px;}
.ls43{letter-spacing:1.332648px;}
.ls2b{letter-spacing:1.374480px;}
.ls47{letter-spacing:1.565712px;}
.ls4d{letter-spacing:1.703160px;}
.ls1{letter-spacing:1.800000px;}
.ls31{letter-spacing:1.960128px;}
.ls2d{letter-spacing:2.091600px;}
.ls3a{letter-spacing:2.235024px;}
.ls4a{letter-spacing:2.312712px;}
.ls40{letter-spacing:2.808720px;}
.ls2a{letter-spacing:3.525840px;}
.ls4b{letter-spacing:3.585600px;}
.ls36{letter-spacing:4.242960px;}
.ls3c{letter-spacing:4.290768px;}
.ls32{letter-spacing:4.410288px;}
.ls3f{letter-spacing:4.518432px;}
.ls3b{letter-spacing:4.679208px;}
.ls35{letter-spacing:4.960080px;}
.ls4f{letter-spacing:5.300712px;}
.ls4c{letter-spacing:5.677200px;}
.ls24{letter-spacing:5.736960px;}
.ls25{letter-spacing:5.934168px;}
.ls3e{letter-spacing:6.454080px;}
.ls48{letter-spacing:7.404264px;}
.ls26{letter-spacing:7.888320px;}
.ls54{letter-spacing:7.924176px;}
.ls3d{letter-spacing:8.605440px;}
.ls55{letter-spacing:8.886312px;}
.ls38{letter-spacing:9.322560px;}
.ls53{letter-spacing:10.081512px;}
.ls50{letter-spacing:12.328488px;}
.ls30{letter-spacing:20.796480px;}
.ls19{letter-spacing:36.692640px;}
.ls1b{letter-spacing:38.126880px;}
.ls23{letter-spacing:49.824000px;}
.ls2f{letter-spacing:62.568720px;}
.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;}
}
.ws63{word-spacing:-28.745040px;}
.ws34{word-spacing:-23.755680px;}
.ws3{word-spacing:-23.418720px;}
.ws7{word-spacing:-23.334480px;}
.ws2{word-spacing:-23.081760px;}
.ws43{word-spacing:-20.304000px;}
.ws35{word-spacing:-20.160000px;}
.ws36{word-spacing:-17.210880px;}
.ws4d{word-spacing:-16.971840px;}
.ws44{word-spacing:-16.852320px;}
.ws5{word-spacing:-16.613280px;}
.ws8{word-spacing:-16.553520px;}
.ws6{word-spacing:-16.493760px;}
.ws4c{word-spacing:-16.374240px;}
.ws28{word-spacing:-16.314480px;}
.wsa{word-spacing:-15.390000px;}
.wsb{word-spacing:-15.228000px;}
.wsc{word-spacing:-15.120000px;}
.ws60{word-spacing:-15.102720px;}
.ws5f{word-spacing:-15.036480px;}
.wsd{word-spacing:-15.012000px;}
.wse{word-spacing:-14.526000px;}
.ws9{word-spacing:-14.418000px;}
.ws62{word-spacing:-13.745280px;}
.ws66{word-spacing:-13.744800px;}
.ws61{word-spacing:-13.625280px;}
.ws64{word-spacing:-13.326480px;}
.ws67{word-spacing:-12.150000px;}
.ws68{word-spacing:-12.042000px;}
.ws4{word-spacing:-11.609280px;}
.ws65{word-spacing:-11.593440px;}
.ws2b{word-spacing:-11.175120px;}
.ws2a{word-spacing:-11.115360px;}
.ws2e{word-spacing:-10.995840px;}
.ws2c{word-spacing:-10.936080px;}
.ws2d{word-spacing:-10.876320px;}
.ws29{word-spacing:-10.808640px;}
.ws1{word-spacing:-10.440000px;}
.ws3d{word-spacing:-4.242960px;}
.ws19{word-spacing:-3.525840px;}
.ws18{word-spacing:-2.808720px;}
.ws77{word-spacing:-2.124000px;}
.ws1a{word-spacing:-2.091600px;}
.ws20{word-spacing:-1.374480px;}
.ws56{word-spacing:-1.195200px;}
.ws37{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.810000px;}
.ws51{word-spacing:-0.717120px;}
.ws75{word-spacing:-0.714000px;}
.ws38{word-spacing:-0.657360px;}
.ws53{word-spacing:-0.478080px;}
.ws5d{word-spacing:-0.418320px;}
.ws54{word-spacing:-0.358560px;}
.wsf{word-spacing:-0.337680px;}
.ws32{word-spacing:-0.298800px;}
.ws46{word-spacing:-0.288000px;}
.ws72{word-spacing:-0.240000px;}
.ws27{word-spacing:-0.216000px;}
.ws80{word-spacing:-0.198000px;}
.ws14{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.126000px;}
.ws6b{word-spacing:-0.120000px;}
.ws83{word-spacing:-0.119520px;}
.ws25{word-spacing:-0.108000px;}
.ws69{word-spacing:-0.066240px;}
.ws70{word-spacing:-0.066000px;}
.ws73{word-spacing:-0.060000px;}
.ws84{word-spacing:-0.059760px;}
.ws78{word-spacing:-0.054000px;}
.ws82{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws71{word-spacing:0.054000px;}
.ws22{word-spacing:0.059760px;}
.ws79{word-spacing:0.060000px;}
.ws6a{word-spacing:0.066240px;}
.ws13{word-spacing:0.072000px;}
.ws85{word-spacing:0.108000px;}
.ws16{word-spacing:0.119520px;}
.ws74{word-spacing:0.120000px;}
.ws15{word-spacing:0.144000px;}
.ws48{word-spacing:0.179280px;}
.ws47{word-spacing:0.216000px;}
.ws5e{word-spacing:0.239040px;}
.ws7b{word-spacing:0.288000px;}
.ws40{word-spacing:0.298800px;}
.ws5b{word-spacing:0.385920px;}
.ws2f{word-spacing:0.421200px;}
.ws10{word-spacing:0.432000px;}
.ws33{word-spacing:0.478080px;}
.ws7e{word-spacing:0.540000px;}
.ws6d{word-spacing:0.588000px;}
.ws23{word-spacing:0.594000px;}
.ws76{word-spacing:0.600000px;}
.ws81{word-spacing:0.606000px;}
.ws7a{word-spacing:0.624000px;}
.ws6c{word-spacing:0.660000px;}
.ws11{word-spacing:0.673920px;}
.ws26{word-spacing:0.702000px;}
.ws6e{word-spacing:0.774000px;}
.ws30{word-spacing:0.776880px;}
.ws7d{word-spacing:0.870000px;}
.ws7c{word-spacing:1.002000px;}
.ws12{word-spacing:1.095120px;}
.ws6f{word-spacing:1.362000px;}
.ws3e{word-spacing:1.434240px;}
.ws31{word-spacing:1.494000px;}
.ws45{word-spacing:1.673280px;}
.ws1e{word-spacing:2.211120px;}
.ws49{word-spacing:2.988000px;}
.ws39{word-spacing:3.705120px;}
.ws21{word-spacing:4.422240px;}
.ws52{word-spacing:4.601520px;}
.ws3c{word-spacing:5.139360px;}
.ws50{word-spacing:5.318640px;}
.ws3a{word-spacing:5.856480px;}
.ws1d{word-spacing:6.573600px;}
.ws41{word-spacing:7.290720px;}
.ws3b{word-spacing:8.007840px;}
.ws4a{word-spacing:8.724960px;}
.ws17{word-spacing:9.442080px;}
.ws59{word-spacing:10.159200px;}
.ws1b{word-spacing:10.876320px;}
.ws1c{word-spacing:11.055600px;}
.ws5c{word-spacing:12.310560px;}
.ws55{word-spacing:13.744800px;}
.ws1f{word-spacing:15.179040px;}
.ws58{word-spacing:16.613280px;}
.ws57{word-spacing:17.330400px;}
.ws5a{word-spacing:18.824400px;}
.ws4f{word-spacing:20.258640px;}
.ws4e{word-spacing:20.975760px;}
.ws3f{word-spacing:22.410000px;}
.ws42{word-spacing:23.127120px;}
.ws4b{word-spacing:81.452880px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._0{margin-left:-5.220000px;}
._5{margin-left:-3.894000px;}
._10{margin-left:-2.823840px;}
._4{margin-left:-1.800000px;}
._6{width:1.544400px;}
._7{width:2.594160px;}
._c{width:4.183200px;}
._d{width:5.456880px;}
._e{width:6.588720px;}
._f{width:8.316000px;}
._b{width:10.036080px;}
._11{width:11.792232px;}
._8{width:15.546960px;}
._a{width:57.198960px;}
._9{width:847.396800px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs10{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fsb{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:4.140000px;}
.y2c{bottom:23.943960px;}
.y6{bottom:35.925007px;}
.y2b{bottom:37.620000px;}
.y5{bottom:66.525004px;}
.y49{bottom:92.515500px;}
.y141{bottom:96.234480px;}
.y4{bottom:97.125005px;}
.ye4{bottom:99.243360px;}
.y14b{bottom:105.170400px;}
.y9b{bottom:105.188040px;}
.yc3{bottom:105.298560px;}
.y120{bottom:108.000000px;}
.y48{bottom:114.480000px;}
.y140{bottom:120.168360px;}
.ye3{bottom:123.356520px;}
.y188{bottom:125.937000px;}
.y14a{bottom:129.104280px;}
.y9a{bottom:129.121920px;}
.yc2{bottom:129.232440px;}
.y11f{bottom:130.140000px;}
.y47{bottom:131.575500px;}
.y19c{bottom:136.980000px;}
.y22{bottom:139.264499px;}
.y13f{bottom:144.102240px;}
.y11e{bottom:144.360000px;}
.ye2{bottom:147.290400px;}
.y187{bottom:150.050160px;}
.y149{bottom:153.038160px;}
.y99{bottom:153.055800px;}
.yc1{bottom:153.166320px;}
.y46{bottom:153.540000px;}
.y19b{bottom:153.544500px;}
.y73{bottom:156.060000px;}
.yfa{bottom:156.314160px;}
.y45{bottom:167.760000px;}
.y13e{bottom:168.215400px;}
.y19a{bottom:169.920000px;}
.ye1{bottom:171.224280px;}
.y186{bottom:173.984040px;}
.y72{bottom:176.040000px;}
.y148{bottom:177.151320px;}
.y98{bottom:177.168960px;}
.yc0{bottom:177.279480px;}
.yf9{bottom:180.248040px;}
.y199{bottom:186.480000px;}
.y13d{bottom:192.149280px;}
.ye0{bottom:195.337440px;}
.y19{bottom:196.933500px;}
.y185{bottom:197.917920px;}
.y11d{bottom:198.154800px;}
.y71{bottom:199.260000px;}
.y147{bottom:201.085200px;}
.y97{bottom:201.102840px;}
.ybf{bottom:201.213360px;}
.y198{bottom:203.044500px;}
.yf8{bottom:204.361200px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y13c{bottom:216.083160px;}
.ydf{bottom:219.271320px;}
.y197{bottom:219.420000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y11c{bottom:222.267960px;}
.y70{bottom:222.480000px;}
.y146{bottom:225.019080px;}
.y96{bottom:225.036720px;}
.ybe{bottom:225.147240px;}
.yf7{bottom:228.295080px;}
.y184{bottom:231.039900px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y13b{bottom:240.196320px;}
.yde{bottom:243.205200px;}
.y6f{bottom:245.700000px;}
.y11b{bottom:246.201840px;}
.y167{bottom:247.479840px;}
.y145{bottom:249.132240px;}
.y95{bottom:249.149880px;}
.ybd{bottom:249.260400px;}
.yf6{bottom:252.228960px;}
.y196{bottom:254.332440px;}
.y183{bottom:254.973780px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y13a{bottom:264.130200px;}
.ydd{bottom:267.318360px;}
.y6c{bottom:269.100000px;}
.y166{bottom:269.979480px;}
.y11a{bottom:270.135720px;}
.y195{bottom:272.335200px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y144{bottom:273.066120px;}
.y94{bottom:273.083760px;}
.ybc{bottom:273.194280px;}
.yf5{bottom:276.342120px;}
.y44{bottom:276.909840px;}
.y182{bottom:278.907660px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y139{bottom:288.064080px;}
.ydc{bottom:291.252240px;}
.y6e{bottom:292.320000px;}
.y165{bottom:294.092640px;}
.y119{bottom:294.248880px;}
.y143{bottom:297.000000px;}
.y93{bottom:297.017640px;}
.ybb{bottom:297.128160px;}
.y43{bottom:299.409480px;}
.yf4{bottom:300.276000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y181{bottom:312.029640px;}
.y138{bottom:312.177240px;}
.y194{bottom:313.016700px;}
.ydb{bottom:315.186120px;}
.y164{bottom:318.026520px;}
.y118{bottom:318.182760px;}
.y92{bottom:321.130800px;}
.yba{bottom:321.241320px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y42{bottom:323.343360px;}
.yf3{bottom:324.209880px;}
.y142{bottom:330.120000px;}
.y180{bottom:335.963520px;}
.y137{bottom:336.111120px;}
.y6b{bottom:336.824280px;}
.yda{bottom:339.299280px;}
.y163{bottom:341.960400px;}
.y117{bottom:342.116640px;}
.y91{bottom:345.064680px;}
.yb9{bottom:345.175200px;}
.y41{bottom:347.277240px;}
.y10{bottom:348.133500px;}
.yf2{bottom:348.323040px;}
.y193{bottom:351.717000px;}
.y17f{bottom:359.897400px;}
.y136{bottom:360.045000px;}
.yd9{bottom:363.233160px;}
.y162{bottom:366.073560px;}
.y116{bottom:366.229800px;}
.y90{bottom:368.998560px;}
.yb8{bottom:369.109080px;}
.y192{bottom:369.720000px;}
.y40{bottom:371.390400px;}
.yf1{bottom:372.256920px;}
.y6a{bottom:373.546800px;}
.y135{bottom:384.158160px;}
.yf{bottom:386.785499px;}
.yd8{bottom:387.167040px;}
.y161{bottom:390.007440px;}
.y115{bottom:390.163680px;}
.y17e{bottom:393.019380px;}
.y8f{bottom:393.111720px;}
.yb7{bottom:393.222240px;}
.y3f{bottom:395.324280px;}
.yf0{bottom:396.190800px;}
.y69{bottom:397.480680px;}
.ye{bottom:408.044999px;}
.y134{bottom:408.092040px;}
.yd7{bottom:411.280200px;}
.y191{bottom:411.289500px;}
.y160{bottom:413.941320px;}
.y114{bottom:414.097560px;}
.y17d{bottom:416.953260px;}
.y8e{bottom:417.045600px;}
.yb6{bottom:417.156120px;}
.y3e{bottom:419.258160px;}
.yef{bottom:420.303960px;}
.y68{bottom:421.593840px;}
.y190{bottom:429.292500px;}
.y133{bottom:432.025920px;}
.yd6{bottom:435.214080px;}
.y15f{bottom:438.054480px;}
.y113{bottom:438.210720px;}
.y17c{bottom:440.887140px;}
.y8d{bottom:440.979480px;}
.yb5{bottom:441.090000px;}
.y3d{bottom:443.371320px;}
.yee{bottom:444.237840px;}
.y18f{bottom:447.295500px;}
.y132{bottom:456.139080px;}
.yd5{bottom:459.147960px;}
.y67{bottom:461.558340px;}
.y15e{bottom:461.988360px;}
.y112{bottom:462.144600px;}
.y8c{bottom:465.092640px;}
.yb4{bottom:465.203160px;}
.y3c{bottom:467.305200px;}
.yed{bottom:468.171720px;}
.y17b{bottom:474.009120px;}
.y131{bottom:480.072960px;}
.y66{bottom:481.353840px;}
.yd4{bottom:483.261120px;}
.y15d{bottom:485.922240px;}
.y111{bottom:486.078480px;}
.y8b{bottom:489.026520px;}
.yb3{bottom:489.137040px;}
.y3b{bottom:491.239080px;}
.yec{bottom:492.284880px;}
.y18e{bottom:495.540000px;}
.y17a{bottom:497.943000px;}
.y65{bottom:501.328620px;}
.yd{bottom:502.864502px;}
.y130{bottom:504.006840px;}
.yd3{bottom:507.195000px;}
.y15c{bottom:510.035400px;}
.y110{bottom:510.191640px;}
.y8a{bottom:512.960400px;}
.yb2{bottom:513.070920px;}
.y3a{bottom:515.352240px;}
.yeb{bottom:516.218760px;}
.yc{bottom:520.864502px;}
.y64{bottom:521.124120px;}
.y179{bottom:521.876880px;}
.y12f{bottom:528.120000px;}
.yd2{bottom:531.128880px;}
.y15b{bottom:533.969280px;}
.y10f{bottom:534.125520px;}
.y89{bottom:537.073560px;}
.yb1{bottom:537.184080px;}
.yb{bottom:538.864499px;}
.y39{bottom:539.286120px;}
.y63{bottom:539.843940px;}
.yea{bottom:540.152640px;}
.y178{bottom:554.998860px;}
.yd1{bottom:555.242040px;}
.ya{bottom:556.864499px;}
.y15a{bottom:557.903160px;}
.y10e{bottom:558.059400px;}
.y88{bottom:561.007440px;}
.y12e{bottom:561.060000px;}
.yb0{bottom:561.117960px;}
.y38{bottom:563.220000px;}
.ye9{bottom:564.265800px;}
.y177{bottom:578.932740px;}
.yd0{bottom:579.175920px;}
.y62{bottom:579.987720px;}
.y159{bottom:582.016320px;}
.y10d{bottom:582.172560px;}
.y87{bottom:584.941320px;}
.yaf{bottom:585.051840px;}
.ye8{bottom:588.199680px;}
.y61{bottom:599.783220px;}
.y176{bottom:602.866620px;}
.y12d{bottom:603.109800px;}
.y37{bottom:605.160000px;}
.y158{bottom:605.950200px;}
.y10c{bottom:606.106440px;}
.y86{bottom:609.054480px;}
.yae{bottom:609.165000px;}
.ye7{bottom:612.133560px;}
.y60{bottom:619.578720px;}
.ycf{bottom:624.175200px;}
.y12c{bottom:627.222960px;}
.y157{bottom:629.884080px;}
.y10b{bottom:630.040320px;}
.y85{bottom:632.988360px;}
.yad{bottom:633.098880px;}
.y175{bottom:635.988600px;}
.ye6{bottom:636.246720px;}
.y5f{bottom:639.374220px;}
.y9{bottom:645.510000px;}
.y12b{bottom:651.156840px;}
.y156{bottom:653.997240px;}
.y10a{bottom:654.153480px;}
.y84{bottom:656.922240px;}
.yac{bottom:657.032760px;}
.y5e{bottom:659.349000px;}
.y174{bottom:659.922480px;}
.ye5{bottom:660.180600px;}
.y36{bottom:665.460000px;}
.y8{bottom:666.771000px;}
.y29{bottom:670.535400px;}
.y12a{bottom:675.090720px;}
.y155{bottom:677.931120px;}
.y5d{bottom:679.144500px;}
.y83{bottom:681.035400px;}
.yab{bottom:681.145920px;}
.yce{bottom:684.114480px;}
.y173{bottom:692.865180px;}
.y5c{bottom:699.020460px;}
.y109{bottom:699.152760px;}
.y129{bottom:699.203880px;}
.y154{bottom:701.865000px;}
.y82{bottom:704.969280px;}
.yaa{bottom:705.079800px;}
.ycd{bottom:708.227640px;}
.y172{bottom:716.978340px;}
.y5b{bottom:718.815960px;}
.y108{bottom:723.086640px;}
.y128{bottom:723.137760px;}
.y28{bottom:724.529400px;}
.y153{bottom:725.978160px;}
.y7{bottom:726.298500px;}
.y81{bottom:728.903160px;}
.ya9{bottom:729.013680px;}
.ycc{bottom:732.161520px;}
.y5a{bottom:738.611460px;}
.y127{bottom:747.071640px;}
.y107{bottom:747.199800px;}
.y152{bottom:749.912040px;}
.y171{bottom:749.921040px;}
.y27{bottom:751.535400px;}
.y3{bottom:752.599495px;}
.y80{bottom:753.016320px;}
.ya8{bottom:753.126840px;}
.ycb{bottom:756.095400px;}
.y59{bottom:758.586240px;}
.y35{bottom:760.500000px;}
.y126{bottom:771.184800px;}
.y151{bottom:773.845920px;}
.y170{bottom:773.854920px;}
.y7f{bottom:776.950200px;}
.ya7{bottom:777.060720px;}
.y58{bottom:778.381740px;}
.yca{bottom:780.208560px;}
.y125{bottom:795.118680px;}
.y150{bottom:797.959080px;}
.y57{bottom:798.177240px;}
.y7e{bottom:800.884080px;}
.y34{bottom:803.169360px;}
.yc9{bottom:804.142440px;}
.y26{bottom:805.535400px;}
.y16f{bottom:806.976900px;}
.y106{bottom:807.139080px;}
.y56{bottom:817.972740px;}
.y124{bottom:819.052560px;}
.y14f{bottom:821.892960px;}
.ya6{bottom:822.060000px;}
.y7d{bottom:824.997240px;}
.y33{bottom:827.472600px;}
.yc8{bottom:828.076320px;}
.y16e{bottom:830.910780px;}
.y105{bottom:831.072960px;}
.y55{bottom:837.768240px;}
.y123{bottom:843.165720px;}
.y14e{bottom:845.826840px;}
.y7c{bottom:848.931120px;}
.y25{bottom:850.535400px;}
.y32{bottom:851.586300px;}
.yc7{bottom:852.189480px;}
.y104{bottom:855.006840px;}
.y54{bottom:857.563740px;}
.y16d{bottom:863.853480px;}
.y122{bottom:867.099600px;}
.y14d{bottom:869.940000px;}
.y7b{bottom:872.865000px;}
.y31{bottom:875.700000px;}
.yc6{bottom:876.123360px;}
.y53{bottom:877.538520px;}
.y103{bottom:879.171120px;}
.y2{bottom:879.369000px;}
.ya5{bottom:882.000000px;}
.y16c{bottom:887.966640px;}
.y24{bottom:895.535400px;}
.y7a{bottom:896.978160px;}
.y52{bottom:897.334020px;}
.yc5{bottom:900.057240px;}
.y102{bottom:903.105000px;}
.ya4{bottom:906.300000px;}
.y14c{bottom:911.700000px;}
.y16b{bottom:911.900520px;}
.y121{bottom:912.098880px;}
.y51{bottom:917.129520px;}
.y30{bottom:918.909000px;}
.y79{bottom:920.912040px;}
.yc4{bottom:924.170400px;}
.y101{bottom:927.038880px;}
.y18d{bottom:930.086640px;}
.y16a{bottom:944.843220px;}
.y78{bottom:944.845920px;}
.ya3{bottom:948.104280px;}
.y100{bottom:951.152040px;}
.y2f{bottom:952.200000px;}
.y50{bottom:953.852040px;}
.y18c{bottom:963.029340px;}
.y1{bottom:966.726000px;}
.y169{bottom:968.956380px;}
.y77{bottom:968.959080px;}
.ya2{bottom:972.038160px;}
.y2a{bottom:972.212700px;}
.yff{bottom:975.085920px;}
.y4f{bottom:977.965200px;}
.y2e{bottom:985.140000px;}
.y18b{bottom:987.142500px;}
.y168{bottom:992.890260px;}
.y76{bottom:992.892960px;}
.ya1{bottom:996.151320px;}
.yfe{bottom:999.019800px;}
.y4e{bottom:1001.899080px;}
.y18a{bottom:1011.076380px;}
.y75{bottom:1016.826840px;}
.y2d{bottom:1018.080000px;}
.ya0{bottom:1020.085200px;}
.y23{bottom:1023.023400px;}
.yfd{bottom:1023.132960px;}
.y4d{bottom:1025.832960px;}
.y189{bottom:1035.010260px;}
.y74{bottom:1040.940000px;}
.y9f{bottom:1044.019080px;}
.yfc{bottom:1047.066840px;}
.y4c{bottom:1049.946120px;}
.y9e{bottom:1068.132240px;}
.yfb{bottom:1071.000720px;}
.y4b{bottom:1073.880000px;}
.y9d{bottom:1092.066120px;}
.y4a{bottom:1115.640000px;}
.y9c{bottom:1116.000000px;}
.h19{height:22.500000px;}
.h7{height:32.130000px;}
.hf{height:35.120039px;}
.h14{height:35.907891px;}
.h18{height:40.472227px;}
.h17{height:45.720000px;}
.h6{height:45.900000px;}
.h15{height:46.432617px;}
.h3{height:48.195000px;}
.hd{height:48.906000px;}
.h13{height:51.385430px;}
.h16{height:52.260820px;}
.hc{height:53.064000px;}
.h2{height:55.080000px;}
.h20{height:57.618000px;}
.h1a{height:59.463411px;}
.hb{height:61.908000px;}
.h12{height:62.964844px;}
.h1d{height:63.763920px;}
.h1e{height:63.764160px;}
.h1f{height:64.779840px;}
.h1c{height:70.678080px;}
.h11{height:73.668867px;}
.h5{height:78.030000px;}
.h10{height:94.447266px;}
.h4{height:119.055004px;}
.ha{height:131.904000px;}
.h9{height:239.076000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1b{height:1264.500000px;}
.w7{width:87.838500px;}
.w8{width:88.200000px;}
.w9{width:90.540000px;}
.wa{width:90.720000px;}
.wb{width:147.778500px;}
.w5{width:148.140000px;}
.w6{width:449.280000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.wc{width:895.500000px;}
.x0{left:0.000000px;}
.xf{left:4.860000px;}
.x12{left:52.560000px;}
.x15{left:55.260000px;}
.x18{left:59.580000px;}
.x19{left:61.920000px;}
.x5{left:77.983650px;}
.x6{left:82.656900px;}
.x7{left:83.692800px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1c{left:117.000000px;}
.xa{left:127.620000px;}
.xc{left:144.720000px;}
.xd{left:154.422360px;}
.x11{left:165.780000px;}
.x1a{left:170.100000px;}
.xe{left:181.075320px;}
.x4{left:203.484001px;}
.x1d{left:231.306000px;}
.x10{left:276.840000px;}
.xb{left:343.620000px;}
.x13{left:365.040000px;}
.x1b{left:412.200000px;}
.x8{left:414.900000px;}
.x9{left:446.400720px;}
.x14{left:453.600000px;}
.x3{left:454.959000px;}
.x16{left:544.500000px;}
.x17{left:635.580000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-2.846080pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6b{letter-spacing:-1.806080pt;}
.ls62{letter-spacing:-1.168000pt;}
.ls6a{letter-spacing:-1.061333pt;}
.ls69{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.673920pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls66{letter-spacing:-0.586667pt;}
.ls65{letter-spacing:-0.533333pt;}
.ls16{letter-spacing:-0.528000pt;}
.ls15{letter-spacing:-0.432000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls57{letter-spacing:-0.343040pt;}
.lsb{letter-spacing:-0.299520pt;}
.ls13{letter-spacing:-0.265600pt;}
.ls6d{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.159360pt;}
.ls6c{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.106240pt;}
.ls12{letter-spacing:-0.074880pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls61{letter-spacing:-0.058880pt;}
.ls67{letter-spacing:-0.053333pt;}
.ls14{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.015936pt;}
.ls5e{letter-spacing:0.029440pt;}
.ls2e{letter-spacing:0.037184pt;}
.ls5b{letter-spacing:0.047808pt;}
.ls63{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.074368pt;}
.ls58{letter-spacing:0.079680pt;}
.ls17{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.100928pt;}
.ls60{letter-spacing:0.106240pt;}
.ls5f{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.132800pt;}
.ls49{letter-spacing:0.159360pt;}
.ls45{letter-spacing:0.185920pt;}
.ls8{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.212480pt;}
.ls68{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.260288pt;}
.ls4{letter-spacing:0.299520pt;}
.ls9{letter-spacing:0.300160pt;}
.ls18{letter-spacing:0.318720pt;}
.ls52{letter-spacing:0.329344pt;}
.ls33{letter-spacing:0.334656pt;}
.ls7{letter-spacing:0.336000pt;}
.ls51{letter-spacing:0.361216pt;}
.ls59{letter-spacing:0.403712pt;}
.ls5c{letter-spacing:0.520576pt;}
.ls2c{letter-spacing:0.531200pt;}
.ls5a{letter-spacing:0.536512pt;}
.ls27{letter-spacing:0.584320pt;}
.ls64{letter-spacing:0.634667pt;}
.ls5d{letter-spacing:0.642752pt;}
.ls4e{letter-spacing:0.648064pt;}
.ls42{letter-spacing:0.690560pt;}
.ls1d{letter-spacing:0.701184pt;}
.ls20{letter-spacing:0.706496pt;}
.ls1c{letter-spacing:0.722432pt;}
.ls1f{letter-spacing:0.759616pt;}
.ls46{letter-spacing:0.764928pt;}
.ls34{letter-spacing:0.791488pt;}
.ls29{letter-spacing:0.833984pt;}
.ls28{letter-spacing:0.849920pt;}
.ls39{letter-spacing:0.903040pt;}
.ls37{letter-spacing:0.966784pt;}
.ls43{letter-spacing:1.184576pt;}
.ls2b{letter-spacing:1.221760pt;}
.ls47{letter-spacing:1.391744pt;}
.ls4d{letter-spacing:1.513920pt;}
.ls1{letter-spacing:1.600000pt;}
.ls31{letter-spacing:1.742336pt;}
.ls2d{letter-spacing:1.859200pt;}
.ls3a{letter-spacing:1.986688pt;}
.ls4a{letter-spacing:2.055744pt;}
.ls40{letter-spacing:2.496640pt;}
.ls2a{letter-spacing:3.134080pt;}
.ls4b{letter-spacing:3.187200pt;}
.ls36{letter-spacing:3.771520pt;}
.ls3c{letter-spacing:3.814016pt;}
.ls32{letter-spacing:3.920256pt;}
.ls3f{letter-spacing:4.016384pt;}
.ls3b{letter-spacing:4.159296pt;}
.ls35{letter-spacing:4.408960pt;}
.ls4f{letter-spacing:4.711744pt;}
.ls4c{letter-spacing:5.046400pt;}
.ls24{letter-spacing:5.099520pt;}
.ls25{letter-spacing:5.274816pt;}
.ls3e{letter-spacing:5.736960pt;}
.ls48{letter-spacing:6.581568pt;}
.ls26{letter-spacing:7.011840pt;}
.ls54{letter-spacing:7.043712pt;}
.ls3d{letter-spacing:7.649280pt;}
.ls55{letter-spacing:7.898944pt;}
.ls38{letter-spacing:8.286720pt;}
.ls53{letter-spacing:8.961344pt;}
.ls50{letter-spacing:10.958656pt;}
.ls30{letter-spacing:18.485760pt;}
.ls19{letter-spacing:32.615680pt;}
.ls1b{letter-spacing:33.890560pt;}
.ls23{letter-spacing:44.288000pt;}
.ls2f{letter-spacing:55.616640pt;}
.ws63{word-spacing:-25.551147pt;}
.ws34{word-spacing:-21.116160pt;}
.ws3{word-spacing:-20.816640pt;}
.ws7{word-spacing:-20.741760pt;}
.ws2{word-spacing:-20.517120pt;}
.ws43{word-spacing:-18.048000pt;}
.ws35{word-spacing:-17.920000pt;}
.ws36{word-spacing:-15.298560pt;}
.ws4d{word-spacing:-15.086080pt;}
.ws44{word-spacing:-14.979840pt;}
.ws5{word-spacing:-14.767360pt;}
.ws8{word-spacing:-14.714240pt;}
.ws6{word-spacing:-14.661120pt;}
.ws4c{word-spacing:-14.554880pt;}
.ws28{word-spacing:-14.501760pt;}
.wsa{word-spacing:-13.680000pt;}
.wsb{word-spacing:-13.536000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws60{word-spacing:-13.424640pt;}
.ws5f{word-spacing:-13.365760pt;}
.wsd{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.912000pt;}
.ws9{word-spacing:-12.816000pt;}
.ws62{word-spacing:-12.218027pt;}
.ws66{word-spacing:-12.217600pt;}
.ws61{word-spacing:-12.111360pt;}
.ws64{word-spacing:-11.845760pt;}
.ws67{word-spacing:-10.800000pt;}
.ws68{word-spacing:-10.704000pt;}
.ws4{word-spacing:-10.319360pt;}
.ws65{word-spacing:-10.305280pt;}
.ws2b{word-spacing:-9.933440pt;}
.ws2a{word-spacing:-9.880320pt;}
.ws2e{word-spacing:-9.774080pt;}
.ws2c{word-spacing:-9.720960pt;}
.ws2d{word-spacing:-9.667840pt;}
.ws29{word-spacing:-9.607680pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3d{word-spacing:-3.771520pt;}
.ws19{word-spacing:-3.134080pt;}
.ws18{word-spacing:-2.496640pt;}
.ws77{word-spacing:-1.888000pt;}
.ws1a{word-spacing:-1.859200pt;}
.ws20{word-spacing:-1.221760pt;}
.ws56{word-spacing:-1.062400pt;}
.ws37{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.720000pt;}
.ws51{word-spacing:-0.637440pt;}
.ws75{word-spacing:-0.634667pt;}
.ws38{word-spacing:-0.584320pt;}
.ws53{word-spacing:-0.424960pt;}
.ws5d{word-spacing:-0.371840pt;}
.ws54{word-spacing:-0.318720pt;}
.wsf{word-spacing:-0.300160pt;}
.ws32{word-spacing:-0.265600pt;}
.ws46{word-spacing:-0.256000pt;}
.ws72{word-spacing:-0.213333pt;}
.ws27{word-spacing:-0.192000pt;}
.ws80{word-spacing:-0.176000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.112000pt;}
.ws6b{word-spacing:-0.106667pt;}
.ws83{word-spacing:-0.106240pt;}
.ws25{word-spacing:-0.096000pt;}
.ws69{word-spacing:-0.058880pt;}
.ws70{word-spacing:-0.058667pt;}
.ws73{word-spacing:-0.053333pt;}
.ws84{word-spacing:-0.053120pt;}
.ws78{word-spacing:-0.048000pt;}
.ws82{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws71{word-spacing:0.048000pt;}
.ws22{word-spacing:0.053120pt;}
.ws79{word-spacing:0.053333pt;}
.ws6a{word-spacing:0.058880pt;}
.ws13{word-spacing:0.064000pt;}
.ws85{word-spacing:0.096000pt;}
.ws16{word-spacing:0.106240pt;}
.ws74{word-spacing:0.106667pt;}
.ws15{word-spacing:0.128000pt;}
.ws48{word-spacing:0.159360pt;}
.ws47{word-spacing:0.192000pt;}
.ws5e{word-spacing:0.212480pt;}
.ws7b{word-spacing:0.256000pt;}
.ws40{word-spacing:0.265600pt;}
.ws5b{word-spacing:0.343040pt;}
.ws2f{word-spacing:0.374400pt;}
.ws10{word-spacing:0.384000pt;}
.ws33{word-spacing:0.424960pt;}
.ws7e{word-spacing:0.480000pt;}
.ws6d{word-spacing:0.522667pt;}
.ws23{word-spacing:0.528000pt;}
.ws76{word-spacing:0.533333pt;}
.ws81{word-spacing:0.538667pt;}
.ws7a{word-spacing:0.554667pt;}
.ws6c{word-spacing:0.586667pt;}
.ws11{word-spacing:0.599040pt;}
.ws26{word-spacing:0.624000pt;}
.ws6e{word-spacing:0.688000pt;}
.ws30{word-spacing:0.690560pt;}
.ws7d{word-spacing:0.773333pt;}
.ws7c{word-spacing:0.890667pt;}
.ws12{word-spacing:0.973440pt;}
.ws6f{word-spacing:1.210667pt;}
.ws3e{word-spacing:1.274880pt;}
.ws31{word-spacing:1.328000pt;}
.ws45{word-spacing:1.487360pt;}
.ws1e{word-spacing:1.965440pt;}
.ws49{word-spacing:2.656000pt;}
.ws39{word-spacing:3.293440pt;}
.ws21{word-spacing:3.930880pt;}
.ws52{word-spacing:4.090240pt;}
.ws3c{word-spacing:4.568320pt;}
.ws50{word-spacing:4.727680pt;}
.ws3a{word-spacing:5.205760pt;}
.ws1d{word-spacing:5.843200pt;}
.ws41{word-spacing:6.480640pt;}
.ws3b{word-spacing:7.118080pt;}
.ws4a{word-spacing:7.755520pt;}
.ws17{word-spacing:8.392960pt;}
.ws59{word-spacing:9.030400pt;}
.ws1b{word-spacing:9.667840pt;}
.ws1c{word-spacing:9.827200pt;}
.ws5c{word-spacing:10.942720pt;}
.ws55{word-spacing:12.217600pt;}
.ws1f{word-spacing:13.492480pt;}
.ws58{word-spacing:14.767360pt;}
.ws57{word-spacing:15.404800pt;}
.ws5a{word-spacing:16.732800pt;}
.ws4f{word-spacing:18.007680pt;}
.ws4e{word-spacing:18.645120pt;}
.ws3f{word-spacing:19.920000pt;}
.ws42{word-spacing:20.557440pt;}
.ws4b{word-spacing:72.402560pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._0{margin-left:-4.640000pt;}
._5{margin-left:-3.461333pt;}
._10{margin-left:-2.510080pt;}
._4{margin-left:-1.600000pt;}
._6{width:1.372800pt;}
._7{width:2.305920pt;}
._c{width:3.718400pt;}
._d{width:4.850560pt;}
._e{width:5.856640pt;}
._f{width:7.392000pt;}
._b{width:8.920960pt;}
._11{width:10.481984pt;}
._8{width:13.819520pt;}
._a{width:50.843520pt;}
._9{width:753.241600pt;}
.fsf{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs10{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fsb{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:3.680000pt;}
.y2c{bottom:21.283520pt;}
.y6{bottom:31.933340pt;}
.y2b{bottom:33.440000pt;}
.y5{bottom:59.133337pt;}
.y49{bottom:82.236000pt;}
.y141{bottom:85.541760pt;}
.y4{bottom:86.333337pt;}
.ye4{bottom:88.216320pt;}
.y14b{bottom:93.484800pt;}
.y9b{bottom:93.500480pt;}
.yc3{bottom:93.598720pt;}
.y120{bottom:96.000000pt;}
.y48{bottom:101.760000pt;}
.y140{bottom:106.816320pt;}
.ye3{bottom:109.650240pt;}
.y188{bottom:111.944000pt;}
.y14a{bottom:114.759360pt;}
.y9a{bottom:114.775040pt;}
.yc2{bottom:114.873280pt;}
.y11f{bottom:115.680000pt;}
.y47{bottom:116.956000pt;}
.y19c{bottom:121.760000pt;}
.y22{bottom:123.790666pt;}
.y13f{bottom:128.090880pt;}
.y11e{bottom:128.320000pt;}
.ye2{bottom:130.924800pt;}
.y187{bottom:133.377920pt;}
.y149{bottom:136.033920pt;}
.y99{bottom:136.049600pt;}
.yc1{bottom:136.147840pt;}
.y46{bottom:136.480000pt;}
.y19b{bottom:136.484000pt;}
.y73{bottom:138.720000pt;}
.yfa{bottom:138.945920pt;}
.y45{bottom:149.120000pt;}
.y13e{bottom:149.524800pt;}
.y19a{bottom:151.040000pt;}
.ye1{bottom:152.199360pt;}
.y186{bottom:154.652480pt;}
.y72{bottom:156.480000pt;}
.y148{bottom:157.467840pt;}
.y98{bottom:157.483520pt;}
.yc0{bottom:157.581760pt;}
.yf9{bottom:160.220480pt;}
.y199{bottom:165.760000pt;}
.y13d{bottom:170.799360pt;}
.ye0{bottom:173.633280pt;}
.y19{bottom:175.052000pt;}
.y185{bottom:175.927040pt;}
.y11d{bottom:176.137600pt;}
.y71{bottom:177.120000pt;}
.y147{bottom:178.742400pt;}
.y97{bottom:178.758080pt;}
.ybf{bottom:178.856320pt;}
.y198{bottom:180.484000pt;}
.yf8{bottom:181.654400pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y13c{bottom:192.073920pt;}
.ydf{bottom:194.907840pt;}
.y197{bottom:195.040000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y11c{bottom:197.571520pt;}
.y70{bottom:197.760000pt;}
.y146{bottom:200.016960pt;}
.y96{bottom:200.032640pt;}
.ybe{bottom:200.130880pt;}
.yf7{bottom:202.928960pt;}
.y184{bottom:205.368800pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y13b{bottom:213.507840pt;}
.yde{bottom:216.182400pt;}
.y6f{bottom:218.400000pt;}
.y11b{bottom:218.846080pt;}
.y167{bottom:219.982080pt;}
.y145{bottom:221.450880pt;}
.y95{bottom:221.466560pt;}
.ybd{bottom:221.564800pt;}
.yf6{bottom:224.203520pt;}
.y196{bottom:226.073280pt;}
.y183{bottom:226.643360pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y13a{bottom:234.782400pt;}
.ydd{bottom:237.616320pt;}
.y6c{bottom:239.200000pt;}
.y166{bottom:239.981760pt;}
.y11a{bottom:240.120640pt;}
.y195{bottom:242.075733pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y144{bottom:242.725440pt;}
.y94{bottom:242.741120pt;}
.ybc{bottom:242.839360pt;}
.yf5{bottom:245.637440pt;}
.y44{bottom:246.142080pt;}
.y182{bottom:247.917920pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y139{bottom:256.056960pt;}
.ydc{bottom:258.890880pt;}
.y6e{bottom:259.840000pt;}
.y165{bottom:261.415680pt;}
.y119{bottom:261.554560pt;}
.y143{bottom:264.000000pt;}
.y93{bottom:264.015680pt;}
.ybb{bottom:264.113920pt;}
.y43{bottom:266.141760pt;}
.yf4{bottom:266.912000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y181{bottom:277.359680pt;}
.y138{bottom:277.490880pt;}
.y194{bottom:278.237067pt;}
.ydb{bottom:280.165440pt;}
.y164{bottom:282.690240pt;}
.y118{bottom:282.829120pt;}
.y92{bottom:285.449600pt;}
.yba{bottom:285.547840pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y42{bottom:287.416320pt;}
.yf3{bottom:288.186560pt;}
.y142{bottom:293.440000pt;}
.y180{bottom:298.634240pt;}
.y137{bottom:298.765440pt;}
.y6b{bottom:299.399360pt;}
.yda{bottom:301.599360pt;}
.y163{bottom:303.964800pt;}
.y117{bottom:304.103680pt;}
.y91{bottom:306.724160pt;}
.yb9{bottom:306.822400pt;}
.y41{bottom:308.690880pt;}
.y10{bottom:309.452000pt;}
.yf2{bottom:309.620480pt;}
.y193{bottom:312.637333pt;}
.y17f{bottom:319.908800pt;}
.y136{bottom:320.040000pt;}
.yd9{bottom:322.873920pt;}
.y162{bottom:325.398720pt;}
.y116{bottom:325.537600pt;}
.y90{bottom:327.998720pt;}
.yb8{bottom:328.096960pt;}
.y192{bottom:328.640000pt;}
.y40{bottom:330.124800pt;}
.yf1{bottom:330.895040pt;}
.y6a{bottom:332.041600pt;}
.y135{bottom:341.473920pt;}
.yf{bottom:343.809333pt;}
.yd8{bottom:344.148480pt;}
.y161{bottom:346.673280pt;}
.y115{bottom:346.812160pt;}
.y17e{bottom:349.350560pt;}
.y8f{bottom:349.432640pt;}
.yb7{bottom:349.530880pt;}
.y3f{bottom:351.399360pt;}
.yf0{bottom:352.169600pt;}
.y69{bottom:353.316160pt;}
.ye{bottom:362.706666pt;}
.y134{bottom:362.748480pt;}
.yd7{bottom:365.582400pt;}
.y191{bottom:365.590667pt;}
.y160{bottom:367.947840pt;}
.y114{bottom:368.086720pt;}
.y17d{bottom:370.625120pt;}
.y8e{bottom:370.707200pt;}
.yb6{bottom:370.805440pt;}
.y3e{bottom:372.673920pt;}
.yef{bottom:373.603520pt;}
.y68{bottom:374.750080pt;}
.y190{bottom:381.593333pt;}
.y133{bottom:384.023040pt;}
.yd6{bottom:386.856960pt;}
.y15f{bottom:389.381760pt;}
.y113{bottom:389.520640pt;}
.y17c{bottom:391.899680pt;}
.y8d{bottom:391.981760pt;}
.yb5{bottom:392.080000pt;}
.y3d{bottom:394.107840pt;}
.yee{bottom:394.878080pt;}
.y18f{bottom:397.596000pt;}
.y132{bottom:405.456960pt;}
.yd5{bottom:408.131520pt;}
.y67{bottom:410.274080pt;}
.y15e{bottom:410.656320pt;}
.y112{bottom:410.795200pt;}
.y8c{bottom:413.415680pt;}
.yb4{bottom:413.513920pt;}
.y3c{bottom:415.382400pt;}
.yed{bottom:416.152640pt;}
.y17b{bottom:421.341440pt;}
.y131{bottom:426.731520pt;}
.y66{bottom:427.870080pt;}
.yd4{bottom:429.565440pt;}
.y15d{bottom:431.930880pt;}
.y111{bottom:432.069760pt;}
.y8b{bottom:434.690240pt;}
.yb3{bottom:434.788480pt;}
.y3b{bottom:436.656960pt;}
.yec{bottom:437.586560pt;}
.y18e{bottom:440.480000pt;}
.y17a{bottom:442.616000pt;}
.y65{bottom:445.625440pt;}
.yd{bottom:446.990669pt;}
.y130{bottom:448.006080pt;}
.yd3{bottom:450.840000pt;}
.y15c{bottom:453.364800pt;}
.y110{bottom:453.503680pt;}
.y8a{bottom:455.964800pt;}
.yb2{bottom:456.063040pt;}
.y3a{bottom:458.090880pt;}
.yeb{bottom:458.861120pt;}
.yc{bottom:462.990669pt;}
.y64{bottom:463.221440pt;}
.y179{bottom:463.890560pt;}
.y12f{bottom:469.440000pt;}
.yd2{bottom:472.114560pt;}
.y15b{bottom:474.639360pt;}
.y10f{bottom:474.778240pt;}
.y89{bottom:477.398720pt;}
.yb1{bottom:477.496960pt;}
.yb{bottom:478.990666pt;}
.y39{bottom:479.365440pt;}
.y63{bottom:479.861280pt;}
.yea{bottom:480.135680pt;}
.y178{bottom:493.332320pt;}
.yd1{bottom:493.548480pt;}
.ya{bottom:494.990666pt;}
.y15a{bottom:495.913920pt;}
.y10e{bottom:496.052800pt;}
.y88{bottom:498.673280pt;}
.y12e{bottom:498.720000pt;}
.yb0{bottom:498.771520pt;}
.y38{bottom:500.640000pt;}
.ye9{bottom:501.569600pt;}
.y177{bottom:514.606880pt;}
.yd0{bottom:514.823040pt;}
.y62{bottom:515.544640pt;}
.y159{bottom:517.347840pt;}
.y10d{bottom:517.486720pt;}
.y87{bottom:519.947840pt;}
.yaf{bottom:520.046080pt;}
.ye8{bottom:522.844160pt;}
.y61{bottom:533.140640pt;}
.y176{bottom:535.881440pt;}
.y12d{bottom:536.097600pt;}
.y37{bottom:537.920000pt;}
.y158{bottom:538.622400pt;}
.y10c{bottom:538.761280pt;}
.y86{bottom:541.381760pt;}
.yae{bottom:541.480000pt;}
.ye7{bottom:544.118720pt;}
.y60{bottom:550.736640pt;}
.ycf{bottom:554.822400pt;}
.y12c{bottom:557.531520pt;}
.y157{bottom:559.896960pt;}
.y10b{bottom:560.035840pt;}
.y85{bottom:562.656320pt;}
.yad{bottom:562.754560pt;}
.y175{bottom:565.323200pt;}
.ye6{bottom:565.552640pt;}
.y5f{bottom:568.332640pt;}
.y9{bottom:573.786667pt;}
.y12b{bottom:578.806080pt;}
.y156{bottom:581.330880pt;}
.y10a{bottom:581.469760pt;}
.y84{bottom:583.930880pt;}
.yac{bottom:584.029120pt;}
.y5e{bottom:586.088000pt;}
.y174{bottom:586.597760pt;}
.ye5{bottom:586.827200pt;}
.y36{bottom:591.520000pt;}
.y8{bottom:592.685334pt;}
.y29{bottom:596.031467pt;}
.y12a{bottom:600.080640pt;}
.y155{bottom:602.605440pt;}
.y5d{bottom:603.684000pt;}
.y83{bottom:605.364800pt;}
.yab{bottom:605.463040pt;}
.yce{bottom:608.101760pt;}
.y173{bottom:615.880160pt;}
.y5c{bottom:621.351520pt;}
.y109{bottom:621.469120pt;}
.y129{bottom:621.514560pt;}
.y154{bottom:623.880000pt;}
.y82{bottom:626.639360pt;}
.yaa{bottom:626.737600pt;}
.ycd{bottom:629.535680pt;}
.y172{bottom:637.314080pt;}
.y5b{bottom:638.947520pt;}
.y108{bottom:642.743680pt;}
.y128{bottom:642.789120pt;}
.y28{bottom:644.026133pt;}
.y153{bottom:645.313920pt;}
.y7{bottom:645.598667pt;}
.y81{bottom:647.913920pt;}
.ya9{bottom:648.012160pt;}
.ycc{bottom:650.810240pt;}
.y5a{bottom:656.543520pt;}
.y127{bottom:664.063680pt;}
.y107{bottom:664.177600pt;}
.y152{bottom:666.588480pt;}
.y171{bottom:666.596480pt;}
.y27{bottom:668.031467pt;}
.y3{bottom:668.977329pt;}
.y80{bottom:669.347840pt;}
.ya8{bottom:669.446080pt;}
.ycb{bottom:672.084800pt;}
.y59{bottom:674.298880pt;}
.y35{bottom:676.000000pt;}
.y126{bottom:685.497600pt;}
.y151{bottom:687.863040pt;}
.y170{bottom:687.871040pt;}
.y7f{bottom:690.622400pt;}
.ya7{bottom:690.720640pt;}
.y58{bottom:691.894880pt;}
.yca{bottom:693.518720pt;}
.y125{bottom:706.772160pt;}
.y150{bottom:709.296960pt;}
.y57{bottom:709.490880pt;}
.y7e{bottom:711.896960pt;}
.y34{bottom:713.928320pt;}
.yc9{bottom:714.793280pt;}
.y26{bottom:716.031467pt;}
.y16f{bottom:717.312800pt;}
.y106{bottom:717.456960pt;}
.y56{bottom:727.086880pt;}
.y124{bottom:728.046720pt;}
.y14f{bottom:730.571520pt;}
.ya6{bottom:730.720000pt;}
.y7d{bottom:733.330880pt;}
.y33{bottom:735.531200pt;}
.yc8{bottom:736.067840pt;}
.y16e{bottom:738.587360pt;}
.y105{bottom:738.731520pt;}
.y55{bottom:744.682880pt;}
.y123{bottom:749.480640pt;}
.y14e{bottom:751.846080pt;}
.y7c{bottom:754.605440pt;}
.y25{bottom:756.031467pt;}
.y32{bottom:756.965600pt;}
.yc7{bottom:757.501760pt;}
.y104{bottom:760.006080pt;}
.y54{bottom:762.278880pt;}
.y16d{bottom:767.869760pt;}
.y122{bottom:770.755200pt;}
.y14d{bottom:773.280000pt;}
.y7b{bottom:775.880000pt;}
.y31{bottom:778.400000pt;}
.yc6{bottom:778.776320pt;}
.y53{bottom:780.034240pt;}
.y103{bottom:781.485440pt;}
.y2{bottom:781.661334pt;}
.ya5{bottom:784.000000pt;}
.y16c{bottom:789.303680pt;}
.y24{bottom:796.031467pt;}
.y7a{bottom:797.313920pt;}
.y52{bottom:797.630240pt;}
.yc5{bottom:800.050880pt;}
.y102{bottom:802.760000pt;}
.ya4{bottom:805.600000pt;}
.y14c{bottom:810.400000pt;}
.y16b{bottom:810.578240pt;}
.y121{bottom:810.754560pt;}
.y51{bottom:815.226240pt;}
.y30{bottom:816.808000pt;}
.y79{bottom:818.588480pt;}
.yc4{bottom:821.484800pt;}
.y101{bottom:824.034560pt;}
.y18d{bottom:826.743680pt;}
.y16a{bottom:839.860640pt;}
.y78{bottom:839.863040pt;}
.ya3{bottom:842.759360pt;}
.y100{bottom:845.468480pt;}
.y2f{bottom:846.400000pt;}
.y50{bottom:847.868480pt;}
.y18c{bottom:856.026080pt;}
.y1{bottom:859.312000pt;}
.y169{bottom:861.294560pt;}
.y77{bottom:861.296960pt;}
.ya2{bottom:864.033920pt;}
.y2a{bottom:864.189067pt;}
.yff{bottom:866.743040pt;}
.y4f{bottom:869.302400pt;}
.y2e{bottom:875.680000pt;}
.y18b{bottom:877.460000pt;}
.y168{bottom:882.569120pt;}
.y76{bottom:882.571520pt;}
.ya1{bottom:885.467840pt;}
.yfe{bottom:888.017600pt;}
.y4e{bottom:890.576960pt;}
.y18a{bottom:898.734560pt;}
.y75{bottom:903.846080pt;}
.y2d{bottom:904.960000pt;}
.ya0{bottom:906.742400pt;}
.y23{bottom:909.354133pt;}
.yfd{bottom:909.451520pt;}
.y4d{bottom:911.851520pt;}
.y189{bottom:920.009120pt;}
.y74{bottom:925.280000pt;}
.y9f{bottom:928.016960pt;}
.yfc{bottom:930.726080pt;}
.y4c{bottom:933.285440pt;}
.y9e{bottom:949.450880pt;}
.yfb{bottom:952.000640pt;}
.y4b{bottom:954.560000pt;}
.y9d{bottom:970.725440pt;}
.y4a{bottom:991.680000pt;}
.y9c{bottom:992.000000pt;}
.h19{height:20.000000pt;}
.h7{height:28.560000pt;}
.hf{height:31.217812pt;}
.h14{height:31.918125pt;}
.h18{height:35.975313pt;}
.h17{height:40.640000pt;}
.h6{height:40.800000pt;}
.h15{height:41.273438pt;}
.h3{height:42.840000pt;}
.hd{height:43.472000pt;}
.h13{height:45.675938pt;}
.h16{height:46.454062pt;}
.hc{height:47.168000pt;}
.h2{height:48.960000pt;}
.h20{height:51.216000pt;}
.h1a{height:52.856365pt;}
.hb{height:55.029333pt;}
.h12{height:55.968750pt;}
.h1d{height:56.679040pt;}
.h1e{height:56.679253pt;}
.h1f{height:57.582080pt;}
.h1c{height:62.824960pt;}
.h11{height:65.483437pt;}
.h5{height:69.360000pt;}
.h10{height:83.953125pt;}
.h4{height:105.826671pt;}
.ha{height:117.248000pt;}
.h9{height:212.512000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1b{height:1124.000000pt;}
.w7{width:78.078667pt;}
.w8{width:78.400000pt;}
.w9{width:80.480000pt;}
.wa{width:80.640000pt;}
.wb{width:131.358667pt;}
.w5{width:131.680000pt;}
.w6{width:399.360000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.wc{width:796.000000pt;}
.x0{left:0.000000pt;}
.xf{left:4.320000pt;}
.x12{left:46.720000pt;}
.x15{left:49.120000pt;}
.x18{left:52.960000pt;}
.x19{left:55.040000pt;}
.x5{left:69.318800pt;}
.x6{left:73.472800pt;}
.x7{left:74.393600pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1c{left:104.000000pt;}
.xa{left:113.440000pt;}
.xc{left:128.640000pt;}
.xd{left:137.264320pt;}
.x11{left:147.360000pt;}
.x1a{left:151.200000pt;}
.xe{left:160.955840pt;}
.x4{left:180.874667pt;}
.x1d{left:205.605333pt;}
.x10{left:246.080000pt;}
.xb{left:305.440000pt;}
.x13{left:324.480000pt;}
.x1b{left:366.400000pt;}
.x8{left:368.800000pt;}
.x9{left:396.800640pt;}
.x14{left:403.200000pt;}
.x3{left:404.408000pt;}
.x16{left:484.000000pt;}
.x17{left:564.960000pt;}
}




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