
    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_8b2d69be65a4287d7adacd52.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_99a028ad7b8fff492fb1084a.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_7188ab0f18d92ac73cda7560.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_8c62b72ad283487b25df7839.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_386c29bb25405dc6b7fc167a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_c5306d252c36028961f4f5bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_b916a09ba9dddf0e37eff32f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_59d45da9054f41c4d41011c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;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_161199f5aeb1571eb3ef56de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.926000;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_20e712fdcb0c92fdd1e586c7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_4ebcd7b2248b00c64720c679.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.328000;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);}
.m2{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,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:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls2d{letter-spacing:-3.849480px;}
.ls2e{letter-spacing:-1.126369px;}
.ls18{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.461938px;}
.ls15{letter-spacing:-0.420000px;}
.ls31{letter-spacing:-0.384948px;}
.ls14{letter-spacing:-0.360000px;}
.ls5d{letter-spacing:-0.357000px;}
.ls6f{letter-spacing:-0.306000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls60{letter-spacing:-0.255000px;}
.ls44{letter-spacing:-0.240000px;}
.ls5e{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.180000px;}
.ls61{letter-spacing:-0.153000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls34{letter-spacing:-0.115484px;}
.ls2f{letter-spacing:-0.102397px;}
.ls6e{letter-spacing:-0.102000px;}
.ls32{letter-spacing:-0.076990px;}
.ls2b{letter-spacing:-0.060000px;}
.ls2c{letter-spacing:-0.051199px;}
.ls30{letter-spacing:-0.038495px;}
.ls0{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.030000px;}
.ls29{letter-spacing:0.038495px;}
.ls4c{letter-spacing:0.051000px;}
.ls2a{letter-spacing:0.051199px;}
.lsc{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.076990px;}
.ls3e{letter-spacing:0.090000px;}
.ls4f{letter-spacing:0.102000px;}
.ls27{letter-spacing:0.115484px;}
.ls1f{letter-spacing:0.120000px;}
.ls45{letter-spacing:0.150000px;}
.ls64{letter-spacing:0.153000px;}
.ls69{letter-spacing:0.178500px;}
.ls12{letter-spacing:0.178791px;}
.ls23{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.204000px;}
.ls42{letter-spacing:0.210000px;}
.ls62{letter-spacing:0.229500px;}
.ls11{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.255000px;}
.ls7{letter-spacing:0.270000px;}
.ls50{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls38{letter-spacing:0.330000px;}
.ls4d{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls56{letter-spacing:0.408000px;}
.lsf{letter-spacing:0.420000px;}
.ls65{letter-spacing:0.433500px;}
.ls10{letter-spacing:0.450000px;}
.ls4e{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.ls67{letter-spacing:0.484500px;}
.ls3d{letter-spacing:0.510000px;}
.lse{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.561000px;}
.ls46{letter-spacing:0.570000px;}
.ls63{letter-spacing:0.586500px;}
.lsa{letter-spacing:0.600000px;}
.ls55{letter-spacing:0.612000px;}
.ls6b{letter-spacing:0.637500px;}
.lsb{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.663000px;}
.ls68{letter-spacing:0.714000px;}
.ls5{letter-spacing:0.720000px;}
.ls35{letter-spacing:0.750000px;}
.ls6a{letter-spacing:0.765000px;}
.ls6{letter-spacing:0.780000px;}
.ls41{letter-spacing:0.810000px;}
.ls58{letter-spacing:0.816000px;}
.ls1d{letter-spacing:0.840000px;}
.ls59{letter-spacing:0.841500px;}
.ls5b{letter-spacing:0.867000px;}
.ls9{letter-spacing:0.900000px;}
.ls51{letter-spacing:0.918000px;}
.ls3c{letter-spacing:0.930000px;}
.ls1e{letter-spacing:0.960000px;}
.ls4b{letter-spacing:0.969000px;}
.ls37{letter-spacing:1.020000px;}
.ls22{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.110000px;}
.ls6c{letter-spacing:1.122000px;}
.ls36{letter-spacing:1.140000px;}
.ls52{letter-spacing:1.173000px;}
.lsd{letter-spacing:1.200000px;}
.ls8{letter-spacing:1.260000px;}
.ls5c{letter-spacing:1.275000px;}
.ls49{letter-spacing:1.290000px;}
.ls26{letter-spacing:1.320000px;}
.ls25{letter-spacing:1.380000px;}
.ls48{letter-spacing:1.410000px;}
.ls21{letter-spacing:1.440000px;}
.ls39{letter-spacing:1.470000px;}
.ls43{letter-spacing:1.500000px;}
.ls5a{letter-spacing:1.555500px;}
.ls47{letter-spacing:1.560000px;}
.ls6d{letter-spacing:1.581000px;}
.ls3a{letter-spacing:1.620000px;}
.ls54{letter-spacing:1.683000px;}
.ls24{letter-spacing:1.740000px;}
.ls4a{letter-spacing:1.800000px;}
.ls3f{letter-spacing:2.040000px;}
.ls5f{letter-spacing:2.346000px;}
.ls1{letter-spacing:3.990000px;}
.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;}
}
.ws3{word-spacing:-15.789000px;}
.ws81{word-spacing:-15.540000px;}
.ws7{word-spacing:-15.300000px;}
.ws49{word-spacing:-15.000000px;}
.ws89{word-spacing:-14.832000px;}
.ws6{word-spacing:-14.544000px;}
.ws8{word-spacing:-14.460000px;}
.ws2b{word-spacing:-14.284409px;}
.ws25{word-spacing:-14.233211px;}
.ws2a{word-spacing:-14.130814px;}
.ws29{word-spacing:-13.106842px;}
.ws9{word-spacing:-13.005000px;}
.ws8a{word-spacing:-12.954000px;}
.ws88{word-spacing:-12.852000px;}
.wsb{word-spacing:-12.750000px;}
.ws48{word-spacing:-12.474000px;}
.ws4{word-spacing:-12.420000px;}
.ws26{word-spacing:-10.817039px;}
.ws27{word-spacing:-10.778544px;}
.ws87{word-spacing:-10.761000px;}
.ws2d{word-spacing:-10.740049px;}
.ws2e{word-spacing:-10.701554px;}
.ws2f{word-spacing:-10.663060px;}
.ws2c{word-spacing:-10.316606px;}
.ws30{word-spacing:-10.239617px;}
.ws2{word-spacing:-9.996000px;}
.wsa{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.694000px;}
.ws28{word-spacing:-6.852074px;}
.ws9c{word-spacing:-1.683000px;}
.ws6d{word-spacing:-1.620000px;}
.ws6f{word-spacing:-1.560000px;}
.wsd{word-spacing:-1.500000px;}
.ws1e{word-spacing:-1.440000px;}
.ws4f{word-spacing:-1.320000px;}
.ws92{word-spacing:-1.275000px;}
.ws20{word-spacing:-1.260000px;}
.ws59{word-spacing:-1.200000px;}
.wsac{word-spacing:-1.173000px;}
.ws58{word-spacing:-1.140000px;}
.ws71{word-spacing:-1.080000px;}
.ws95{word-spacing:-1.071000px;}
.ws1f{word-spacing:-1.020000px;}
.ws91{word-spacing:-0.969000px;}
.ws64{word-spacing:-0.960000px;}
.wsa6{word-spacing:-0.918000px;}
.ws4a{word-spacing:-0.900000px;}
.ws56{word-spacing:-0.840000px;}
.ws33{word-spacing:-0.780000px;}
.ws96{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.ws97{word-spacing:-0.714000px;}
.ws8d{word-spacing:-0.660000px;}
.ws24{word-spacing:-0.612000px;}
.ws1b{word-spacing:-0.600000px;}
.wsa4{word-spacing:-0.561000px;}
.ws80{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.420000px;}
.wsa7{word-spacing:-0.408000px;}
.ws75{word-spacing:-0.360000px;}
.wsab{word-spacing:-0.357000px;}
.ws15{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.255000px;}
.ws74{word-spacing:-0.240000px;}
.ws4e{word-spacing:-0.180000px;}
.ws36{word-spacing:-0.120000px;}
.ws43{word-spacing:-0.115484px;}
.ws46{word-spacing:-0.076990px;}
.ws69{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws42{word-spacing:-0.038495px;}
.ws0{word-spacing:0.000000px;}
.ws44{word-spacing:0.038495px;}
.ws41{word-spacing:0.051199px;}
.ws5a{word-spacing:0.060000px;}
.ws45{word-spacing:0.076990px;}
.ws47{word-spacing:0.115484px;}
.ws5f{word-spacing:0.120000px;}
.wsa3{word-spacing:0.153000px;}
.ws79{word-spacing:0.180000px;}
.ws98{word-spacing:0.204000px;}
.ws65{word-spacing:0.240000px;}
.ws21{word-spacing:0.300000px;}
.ws68{word-spacing:0.360000px;}
.wsae{word-spacing:0.408000px;}
.ws6e{word-spacing:0.420000px;}
.ws7e{word-spacing:0.480000px;}
.ws17{word-spacing:0.540000px;}
.ws3c{word-spacing:0.600000px;}
.ws1d{word-spacing:0.660000px;}
.ws5c{word-spacing:0.780000px;}
.ws4b{word-spacing:0.840000px;}
.ws62{word-spacing:0.900000px;}
.ws54{word-spacing:1.020000px;}
.ws6a{word-spacing:1.080000px;}
.ws4d{word-spacing:1.140000px;}
.ws93{word-spacing:1.173000px;}
.ws1a{word-spacing:1.200000px;}
.ws60{word-spacing:1.260000px;}
.ws94{word-spacing:1.275000px;}
.wsc{word-spacing:1.320000px;}
.wsa8{word-spacing:1.377000px;}
.ws67{word-spacing:1.380000px;}
.ws9e{word-spacing:1.428000px;}
.ws13{word-spacing:1.440000px;}
.wsb4{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.wsaa{word-spacing:1.530000px;}
.wsf{word-spacing:1.560000px;}
.ws34{word-spacing:1.620000px;}
.wsaf{word-spacing:1.632000px;}
.ws78{word-spacing:1.680000px;}
.ws16{word-spacing:1.740000px;}
.ws22{word-spacing:1.800000px;}
.wsad{word-spacing:1.836000px;}
.ws55{word-spacing:1.860000px;}
.ws63{word-spacing:1.920000px;}
.ws3f{word-spacing:1.980000px;}
.wsa2{word-spacing:1.989000px;}
.ws84{word-spacing:2.040000px;}
.wsa9{word-spacing:2.091000px;}
.ws3b{word-spacing:2.100000px;}
.ws32{word-spacing:2.160000px;}
.ws12{word-spacing:2.220000px;}
.wsa5{word-spacing:2.244000px;}
.ws37{word-spacing:2.280000px;}
.ws9f{word-spacing:2.295000px;}
.ws86{word-spacing:2.340000px;}
.ws35{word-spacing:2.400000px;}
.ws51{word-spacing:2.460000px;}
.wsa1{word-spacing:2.499000px;}
.ws18{word-spacing:2.520000px;}
.ws70{word-spacing:2.580000px;}
.ws31{word-spacing:2.640000px;}
.ws61{word-spacing:2.700000px;}
.ws99{word-spacing:2.703000px;}
.ws77{word-spacing:2.760000px;}
.ws7c{word-spacing:2.820000px;}
.ws5d{word-spacing:2.880000px;}
.ws19{word-spacing:2.940000px;}
.ws7a{word-spacing:3.000000px;}
.ws52{word-spacing:3.060000px;}
.ws3a{word-spacing:3.120000px;}
.ws7d{word-spacing:3.180000px;}
.ws83{word-spacing:3.240000px;}
.wsb3{word-spacing:3.264000px;}
.ws38{word-spacing:3.300000px;}
.ws5b{word-spacing:3.360000px;}
.ws57{word-spacing:3.420000px;}
.ws82{word-spacing:3.540000px;}
.ws5e{word-spacing:3.600000px;}
.wsb0{word-spacing:3.621000px;}
.ws1c{word-spacing:3.780000px;}
.ws10{word-spacing:3.900000px;}
.ws9a{word-spacing:3.927000px;}
.ws72{word-spacing:3.960000px;}
.ws6c{word-spacing:4.020000px;}
.wsb2{word-spacing:4.029000px;}
.ws4c{word-spacing:4.140000px;}
.ws8b{word-spacing:4.200000px;}
.ws40{word-spacing:4.260000px;}
.ws8f{word-spacing:4.284000px;}
.ws8c{word-spacing:4.740000px;}
.ws3e{word-spacing:4.800000px;}
.ws85{word-spacing:4.860000px;}
.ws39{word-spacing:4.920000px;}
.ws76{word-spacing:4.980000px;}
.ws6b{word-spacing:5.100000px;}
.ws7f{word-spacing:5.340000px;}
.ws50{word-spacing:5.700000px;}
.ws73{word-spacing:5.820000px;}
.wsa0{word-spacing:5.865000px;}
.wsb1{word-spacing:6.069000px;}
.ws9d{word-spacing:6.375000px;}
.ws3d{word-spacing:6.420000px;}
.ws53{word-spacing:6.540000px;}
.ws8e{word-spacing:6.720000px;}
.ws7b{word-spacing:8.100000px;}
.ws9b{word-spacing:9.690000px;}
.wsb5{word-spacing:13.515000px;}
.wsb6{word-spacing:17.595000px;}
.ws23{word-spacing:72.267000px;}
._9{margin-left:-2959.224073px;}
._5{margin-left:-16.575000px;}
._4{margin-left:-6.624000px;}
._11{margin-left:-5.238000px;}
._1{margin-left:-4.104000px;}
._3{margin-left:-3.091200px;}
._0{margin-left:-1.632000px;}
._2{width:1.728000px;}
._b{width:3.403200px;}
._14{width:7.140000px;}
._12{width:8.721000px;}
._13{width:14.433000px;}
._c{width:15.606000px;}
._6{width:18.360000px;}
._f{width:31.812000px;}
._e{width:33.510000px;}
._10{width:37.680000px;}
._a{width:41.003995px;}
._7{width:54.621000px;}
._d{width:2016.996049px;}
._8{width:2338.350073px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fsc{font-size:38.494800px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fsb{font-size:51.198600px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y22{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y61{bottom:112.944300px;}
.yca{bottom:114.735306px;}
.y60{bottom:127.938300px;}
.y50{bottom:129.138153px;}
.yf8{bottom:133.485294px;}
.yc9{bottom:133.485306px;}
.y21{bottom:139.264499px;}
.y95{bottom:140.442363px;}
.y4f{bottom:147.888153px;}
.y5f{bottom:148.032303px;}
.y136{bottom:148.677306px;}
.y94{bottom:151.990803px;}
.y106{bottom:152.235260px;}
.yf7{bottom:152.235294px;}
.yc8{bottom:152.235306px;}
.yfc{bottom:156.181796px;}
.y135{bottom:163.671306px;}
.y5e{bottom:165.485553px;}
.y4e{bottom:166.638153px;}
.y105{bottom:170.985260px;}
.yf6{bottom:170.985294px;}
.yc7{bottom:170.985306px;}
.yfb{bottom:171.175796px;}
.y134{bottom:178.665306px;}
.y4d{bottom:185.388153px;}
.y5d{bottom:185.579556px;}
.yfa{bottom:186.169796px;}
.y93{bottom:187.501797px;}
.y104{bottom:189.735260px;}
.yc6{bottom:189.735306px;}
.y133{bottom:193.659306px;}
.y18{bottom:196.933500px;}
.y5c{bottom:203.032794px;}
.y4c{bottom:204.138153px;}
.y103{bottom:208.485260px;}
.yc5{bottom:208.485306px;}
.y132{bottom:208.653306px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y4b{bottom:222.888153px;}
.y5b{bottom:223.126808px;}
.y131{bottom:223.647306px;}
.y102{bottom:227.235260px;}
.yc4{bottom:227.235306px;}
.y92{bottom:230.040298px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y130{bottom:238.641306px;}
.y5a{bottom:240.586059px;}
.y4a{bottom:241.638153px;}
.y101{bottom:245.985260px;}
.yc3{bottom:245.985306px;}
.y12f{bottom:253.635306px;}
.y59{bottom:255.580059px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y49{bottom:260.388153px;}
.y100{bottom:264.735260px;}
.yc2{bottom:264.735306px;}
.y12e{bottom:268.629306px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y58{bottom:275.674049px;}
.y85{bottom:278.578789px;}
.y48{bottom:279.138153px;}
.yff{bottom:283.485260px;}
.yc1{bottom:283.485306px;}
.y12d{bottom:283.623306px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y47{bottom:297.888153px;}
.y57{bottom:298.221153px;}
.y12c{bottom:298.617306px;}
.yfe{bottom:302.235260px;}
.yc0{bottom:302.235306px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y12b{bottom:313.611306px;}
.y56{bottom:315.674541px;}
.y46{bottom:316.638153px;}
.yfd{bottom:320.985260px;}
.ybf{bottom:320.985306px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y91{bottom:326.806980px;}
.y12a{bottom:328.605306px;}
.y80{bottom:335.179321px;}
.y45{bottom:335.388153px;}
.y55{bottom:335.768555px;}
.y82{bottom:337.587363px;}
.y97{bottom:337.936866px;}
.y90{bottom:338.355420px;}
.y84{bottom:338.356864px;}
.yf2{bottom:339.735260px;}
.ybe{bottom:339.735306px;}
.y129{bottom:343.599306px;}
.yf{bottom:348.133500px;}
.y81{bottom:349.135803px;}
.y96{bottom:349.485306px;}
.y8f{bottom:349.903860px;}
.y83{bottom:349.905304px;}
.y7f{bottom:350.577300px;}
.y44{bottom:354.138153px;}
.y168{bottom:356.518823px;}
.yf1{bottom:358.485260px;}
.ybd{bottom:358.485306px;}
.y128{bottom:358.593306px;}
.y54{bottom:360.780287px;}
.y8e{bottom:361.452300px;}
.y167{bottom:371.512823px;}
.y43{bottom:372.888153px;}
.y127{bottom:373.587306px;}
.y53{bottom:375.774287px;}
.yf0{bottom:377.235260px;}
.ybc{bottom:377.235306px;}
.y166{bottom:386.506823px;}
.ye{bottom:386.785499px;}
.y126{bottom:388.581306px;}
.y42{bottom:391.638153px;}
.yef{bottom:395.985260px;}
.ybb{bottom:395.985306px;}
.y52{bottom:398.316287px;}
.y87{bottom:399.039322px;}
.y165{bottom:401.500823px;}
.y125{bottom:403.575306px;}
.yd{bottom:408.044999px;}
.y41{bottom:410.388153px;}
.y86{bottom:411.261292px;}
.y51{bottom:413.310287px;}
.yee{bottom:414.735260px;}
.yba{bottom:414.735306px;}
.y164{bottom:416.494823px;}
.y195{bottom:416.686066px;}
.y124{bottom:418.569306px;}
.y40{bottom:429.138153px;}
.y163{bottom:431.488823px;}
.y194{bottom:431.680066px;}
.yed{bottom:433.485260px;}
.yb9{bottom:433.485306px;}
.yf9{bottom:433.491306px;}
.y123{bottom:433.563306px;}
.y162{bottom:446.482823px;}
.y3f{bottom:447.888153px;}
.y122{bottom:448.557306px;}
.y89{bottom:451.795029px;}
.yec{bottom:452.235260px;}
.yb8{bottom:452.235306px;}
.y161{bottom:461.476823px;}
.y193{bottom:461.770065px;}
.y121{bottom:463.551306px;}
.y88{bottom:464.016907px;}
.y3d{bottom:466.638153px;}
.yeb{bottom:470.985260px;}
.yb7{bottom:470.985306px;}
.y160{bottom:476.470823px;}
.y192{bottom:476.764065px;}
.y120{bottom:478.545306px;}
.y3c{bottom:485.388153px;}
.yea{bottom:489.735260px;}
.yb6{bottom:489.735306px;}
.y15f{bottom:491.464823px;}
.y191{bottom:491.758065px;}
.y8b{bottom:491.890045px;}
.y11f{bottom:493.539306px;}
.yc{bottom:502.864502px;}
.y8a{bottom:504.113388px;}
.y3b{bottom:504.138153px;}
.y15e{bottom:506.458823px;}
.y190{bottom:506.752065px;}
.ye9{bottom:508.485260px;}
.yb5{bottom:508.485306px;}
.y11e{bottom:508.533306px;}
.yb{bottom:520.864502px;}
.y15d{bottom:521.452823px;}
.y18f{bottom:521.746065px;}
.y3a{bottom:522.888153px;}
.y11d{bottom:523.527306px;}
.ye8{bottom:527.235260px;}
.yb4{bottom:527.235306px;}
.y15c{bottom:536.446823px;}
.y18e{bottom:536.740065px;}
.y11c{bottom:538.521306px;}
.ya{bottom:538.864499px;}
.y8d{bottom:539.969833px;}
.y39{bottom:541.638153px;}
.ye7{bottom:545.985260px;}
.yb3{bottom:545.985306px;}
.y15b{bottom:551.440823px;}
.y18d{bottom:551.734065px;}
.y8c{bottom:552.191528px;}
.y11b{bottom:553.515306px;}
.y9{bottom:556.864499px;}
.y7e{bottom:557.798862px;}
.y38{bottom:560.388153px;}
.ye6{bottom:564.735260px;}
.yb2{bottom:564.735306px;}
.y15a{bottom:566.434823px;}
.y18c{bottom:566.728065px;}
.y11a{bottom:568.509306px;}
.y7d{bottom:572.792862px;}
.y37{bottom:579.138153px;}
.y159{bottom:581.428823px;}
.y18b{bottom:581.722065px;}
.ye5{bottom:583.485260px;}
.yb1{bottom:583.485306px;}
.y119{bottom:583.503306px;}
.y158{bottom:596.422823px;}
.y18a{bottom:596.716065px;}
.y36{bottom:597.888153px;}
.y118{bottom:598.497306px;}
.ye4{bottom:602.235260px;}
.yb0{bottom:602.235306px;}
.y157{bottom:611.416823px;}
.y189{bottom:611.710065px;}
.y117{bottom:613.491306px;}
.y35{bottom:616.638153px;}
.y79{bottom:619.665344px;}
.ye3{bottom:620.985260px;}
.yaf{bottom:620.985306px;}
.y156{bottom:626.410823px;}
.y188{bottom:626.704065px;}
.y116{bottom:628.485306px;}
.y34{bottom:635.388153px;}
.y78{bottom:638.415344px;}
.ye2{bottom:639.735260px;}
.yae{bottom:639.735306px;}
.y155{bottom:641.404823px;}
.y187{bottom:641.698065px;}
.y8{bottom:645.510000px;}
.y33{bottom:654.138153px;}
.y154{bottom:656.398823px;}
.y186{bottom:656.692065px;}
.y77{bottom:657.165344px;}
.ye1{bottom:658.485260px;}
.yad{bottom:658.485306px;}
.y115{bottom:662.235306px;}
.y7{bottom:666.771000px;}
.y153{bottom:671.392823px;}
.y185{bottom:671.686065px;}
.y32{bottom:672.888153px;}
.y76{bottom:675.915344px;}
.ye0{bottom:677.235260px;}
.yac{bottom:677.235306px;}
.y152{bottom:686.386823px;}
.y184{bottom:686.680065px;}
.y31{bottom:691.638153px;}
.y75{bottom:694.665344px;}
.ydf{bottom:695.985260px;}
.yab{bottom:695.985306px;}
.y151{bottom:701.380823px;}
.y183{bottom:701.674065px;}
.y30{bottom:710.388153px;}
.y74{bottom:713.415344px;}
.yde{bottom:714.735260px;}
.ydb{bottom:714.735306px;}
.y150{bottom:716.374823px;}
.y182{bottom:716.668065px;}
.y114{bottom:718.556510px;}
.y6{bottom:726.298500px;}
.y2f{bottom:729.138153px;}
.y14f{bottom:731.368823px;}
.y181{bottom:731.662065px;}
.y73{bottom:732.165344px;}
.ydd{bottom:733.485260px;}
.yaa{bottom:733.485306px;}
.y113{bottom:733.550510px;}
.y14e{bottom:746.362823px;}
.y180{bottom:746.656065px;}
.y2e{bottom:747.888153px;}
.y112{bottom:748.544510px;}
.y72{bottom:750.915344px;}
.ydc{bottom:752.235260px;}
.yf5{bottom:752.235306px;}
.y3{bottom:752.599495px;}
.y14d{bottom:761.356823px;}
.y17f{bottom:761.650065px;}
.y111{bottom:763.538510px;}
.y2d{bottom:766.638153px;}
.y71{bottom:769.665344px;}
.ya9{bottom:770.985260px;}
.yf4{bottom:770.985306px;}
.y14c{bottom:776.350823px;}
.y17e{bottom:776.644065px;}
.y110{bottom:778.532510px;}
.y2c{bottom:785.388153px;}
.y70{bottom:788.415344px;}
.ya8{bottom:789.735260px;}
.yf3{bottom:789.735306px;}
.y14b{bottom:791.344823px;}
.y17d{bottom:791.638065px;}
.y10f{bottom:793.526510px;}
.y3e{bottom:804.138153px;}
.y14a{bottom:806.338823px;}
.y17c{bottom:806.632065px;}
.y6f{bottom:807.165344px;}
.ya7{bottom:808.485260px;}
.yda{bottom:808.485306px;}
.y10e{bottom:808.520510px;}
.y149{bottom:821.332823px;}
.y17b{bottom:821.626065px;}
.y2b{bottom:822.888153px;}
.y10d{bottom:823.514510px;}
.y6e{bottom:825.915344px;}
.ya6{bottom:827.235260px;}
.yd9{bottom:827.235306px;}
.y148{bottom:836.326823px;}
.y17a{bottom:836.620065px;}
.y10c{bottom:838.508510px;}
.y6d{bottom:844.665344px;}
.ya5{bottom:845.985260px;}
.yd8{bottom:845.985306px;}
.y147{bottom:851.320823px;}
.y179{bottom:851.614065px;}
.y10b{bottom:853.502510px;}
.y6c{bottom:863.415344px;}
.ya4{bottom:864.735260px;}
.yd7{bottom:864.735306px;}
.y146{bottom:866.314823px;}
.y178{bottom:866.608065px;}
.y10a{bottom:868.496510px;}
.y2a{bottom:879.144153px;}
.y2{bottom:879.369000px;}
.y145{bottom:881.308823px;}
.y177{bottom:881.602065px;}
.y6b{bottom:882.165344px;}
.ya3{bottom:883.485260px;}
.yd6{bottom:883.485306px;}
.y109{bottom:883.490510px;}
.y29{bottom:894.138153px;}
.y144{bottom:896.302823px;}
.y176{bottom:896.596065px;}
.y6a{bottom:900.915344px;}
.ya2{bottom:902.235260px;}
.yd5{bottom:902.235306px;}
.y143{bottom:911.296823px;}
.y175{bottom:911.590065px;}
.y108{bottom:913.491260px;}
.y69{bottom:919.665344px;}
.ya1{bottom:920.985260px;}
.yd4{bottom:920.985306px;}
.y142{bottom:926.290823px;}
.y174{bottom:926.584065px;}
.y107{bottom:928.485260px;}
.y28{bottom:936.738190px;}
.y68{bottom:938.415344px;}
.ya0{bottom:939.735260px;}
.yd3{bottom:939.735306px;}
.y141{bottom:941.284823px;}
.y173{bottom:941.578065px;}
.y140{bottom:956.278823px;}
.y172{bottom:956.572065px;}
.y7c{bottom:957.165344px;}
.y9f{bottom:958.485260px;}
.yd2{bottom:958.485306px;}
.y1{bottom:966.726000px;}
.y13f{bottom:971.272823px;}
.y171{bottom:971.566065px;}
.y67{bottom:975.915344px;}
.y9e{bottom:977.235260px;}
.yd1{bottom:977.235306px;}
.y27{bottom:981.424622px;}
.y13e{bottom:986.266823px;}
.y170{bottom:986.560065px;}
.y7b{bottom:994.665344px;}
.y9d{bottom:995.985260px;}
.yd0{bottom:995.985306px;}
.y13d{bottom:1001.260823px;}
.y16f{bottom:1001.554065px;}
.y26{bottom:1008.424622px;}
.y7a{bottom:1013.415344px;}
.y9c{bottom:1014.735260px;}
.ycf{bottom:1014.735306px;}
.y13c{bottom:1016.254823px;}
.y16e{bottom:1016.548065px;}
.y13b{bottom:1031.248823px;}
.y16d{bottom:1031.542065px;}
.y66{bottom:1032.165344px;}
.y9b{bottom:1033.485260px;}
.yce{bottom:1033.485306px;}
.y13a{bottom:1046.242823px;}
.y16c{bottom:1046.536065px;}
.y65{bottom:1050.915344px;}
.y9a{bottom:1052.235260px;}
.ycd{bottom:1052.235306px;}
.y139{bottom:1061.236823px;}
.y16b{bottom:1061.530065px;}
.y64{bottom:1069.665344px;}
.y99{bottom:1070.985260px;}
.ycc{bottom:1070.985306px;}
.y25{bottom:1076.132080px;}
.y138{bottom:1076.230823px;}
.y16a{bottom:1076.524065px;}
.y63{bottom:1088.415344px;}
.y98{bottom:1089.735260px;}
.ycb{bottom:1089.735306px;}
.y137{bottom:1091.224823px;}
.y169{bottom:1091.518065px;}
.y24{bottom:1109.586556px;}
.y23{bottom:1126.582306px;}
.y62{bottom:1127.482361px;}
.h13{height:24.561599px;}
.h18{height:28.024214px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h12{height:35.088000px;}
.h17{height:36.658198px;}
.h11{height:36.855469px;}
.h10{height:41.280000px;}
.hb{height:44.676000px;}
.h16{height:45.186000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h14{height:50.439000px;}
.h19{height:50.439732px;}
.h1b{height:52.173000px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h15{height:59.004000px;}
.h1a{height:61.380000px;}
.he{height:64.866000px;}
.hf{height:71.208000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x7{left:85.181849px;}
.x8{left:93.560398px;}
.xb{left:97.796100px;}
.x1f{left:100.535402px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x9{left:459.230385px;}
.xa{left:476.240385px;}
.x20{left:484.725290px;}
.xe{left:497.984848px;}
.xf{left:505.492972px;}
.x15{left:527.729828px;}
.x14{left:534.134720px;}
.x17{left:541.975204px;}
.x13{left:543.664352px;}
.x16{left:549.103180px;}
.x1c{left:555.158707px;}
.x1b{left:556.795212px;}
.xc{left:559.907867px;}
.x1d{left:563.066053px;}
.xd{left:564.529516px;}
.x12{left:569.209213px;}
.x10{left:630.179855px;}
.x11{left:631.238693px;}
.x1e{left:723.352341px;}
.x5{left:728.220612px;}
.x18{left:766.430832px;}
.x1a{left:767.585928px;}
.x19{left:772.591344px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls2d{letter-spacing:-3.421760pt;}
.ls2e{letter-spacing:-1.001217pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.410611pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls31{letter-spacing:-0.342176pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls5d{letter-spacing:-0.317333pt;}
.ls6f{letter-spacing:-0.272000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls60{letter-spacing:-0.226667pt;}
.ls44{letter-spacing:-0.213333pt;}
.ls5e{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls61{letter-spacing:-0.136000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls34{letter-spacing:-0.102653pt;}
.ls2f{letter-spacing:-0.091020pt;}
.ls6e{letter-spacing:-0.090667pt;}
.ls32{letter-spacing:-0.068435pt;}
.ls2b{letter-spacing:-0.053333pt;}
.ls2c{letter-spacing:-0.045510pt;}
.ls30{letter-spacing:-0.034218pt;}
.ls0{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.026667pt;}
.ls29{letter-spacing:0.034218pt;}
.ls4c{letter-spacing:0.045333pt;}
.ls2a{letter-spacing:0.045510pt;}
.lsc{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.068435pt;}
.ls3e{letter-spacing:0.080000pt;}
.ls4f{letter-spacing:0.090667pt;}
.ls27{letter-spacing:0.102653pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls45{letter-spacing:0.133333pt;}
.ls64{letter-spacing:0.136000pt;}
.ls69{letter-spacing:0.158667pt;}
.ls12{letter-spacing:0.158926pt;}
.ls23{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.181333pt;}
.ls42{letter-spacing:0.186667pt;}
.ls62{letter-spacing:0.204000pt;}
.ls11{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.226667pt;}
.ls7{letter-spacing:0.240000pt;}
.ls50{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls38{letter-spacing:0.293333pt;}
.ls4d{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls56{letter-spacing:0.362667pt;}
.lsf{letter-spacing:0.373333pt;}
.ls65{letter-spacing:0.385333pt;}
.ls10{letter-spacing:0.400000pt;}
.ls4e{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls67{letter-spacing:0.430667pt;}
.ls3d{letter-spacing:0.453333pt;}
.lse{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.498667pt;}
.ls46{letter-spacing:0.506667pt;}
.ls63{letter-spacing:0.521333pt;}
.lsa{letter-spacing:0.533333pt;}
.ls55{letter-spacing:0.544000pt;}
.ls6b{letter-spacing:0.566667pt;}
.lsb{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.589333pt;}
.ls68{letter-spacing:0.634667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls35{letter-spacing:0.666667pt;}
.ls6a{letter-spacing:0.680000pt;}
.ls6{letter-spacing:0.693333pt;}
.ls41{letter-spacing:0.720000pt;}
.ls58{letter-spacing:0.725333pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls59{letter-spacing:0.748000pt;}
.ls5b{letter-spacing:0.770667pt;}
.ls9{letter-spacing:0.800000pt;}
.ls51{letter-spacing:0.816000pt;}
.ls3c{letter-spacing:0.826667pt;}
.ls1e{letter-spacing:0.853333pt;}
.ls4b{letter-spacing:0.861333pt;}
.ls37{letter-spacing:0.906667pt;}
.ls22{letter-spacing:0.960000pt;}
.ls20{letter-spacing:0.986667pt;}
.ls6c{letter-spacing:0.997333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls52{letter-spacing:1.042667pt;}
.lsd{letter-spacing:1.066667pt;}
.ls8{letter-spacing:1.120000pt;}
.ls5c{letter-spacing:1.133333pt;}
.ls49{letter-spacing:1.146667pt;}
.ls26{letter-spacing:1.173333pt;}
.ls25{letter-spacing:1.226667pt;}
.ls48{letter-spacing:1.253333pt;}
.ls21{letter-spacing:1.280000pt;}
.ls39{letter-spacing:1.306667pt;}
.ls43{letter-spacing:1.333333pt;}
.ls5a{letter-spacing:1.382667pt;}
.ls47{letter-spacing:1.386667pt;}
.ls6d{letter-spacing:1.405333pt;}
.ls3a{letter-spacing:1.440000pt;}
.ls54{letter-spacing:1.496000pt;}
.ls24{letter-spacing:1.546667pt;}
.ls4a{letter-spacing:1.600000pt;}
.ls3f{letter-spacing:1.813333pt;}
.ls5f{letter-spacing:2.085333pt;}
.ls1{letter-spacing:3.546667pt;}
.ws3{word-spacing:-14.034667pt;}
.ws81{word-spacing:-13.813333pt;}
.ws7{word-spacing:-13.600000pt;}
.ws49{word-spacing:-13.333333pt;}
.ws89{word-spacing:-13.184000pt;}
.ws6{word-spacing:-12.928000pt;}
.ws8{word-spacing:-12.853333pt;}
.ws2b{word-spacing:-12.697253pt;}
.ws25{word-spacing:-12.651743pt;}
.ws2a{word-spacing:-12.560723pt;}
.ws29{word-spacing:-11.650526pt;}
.ws9{word-spacing:-11.560000pt;}
.ws8a{word-spacing:-11.514667pt;}
.ws88{word-spacing:-11.424000pt;}
.wsb{word-spacing:-11.333333pt;}
.ws48{word-spacing:-11.088000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws26{word-spacing:-9.615146pt;}
.ws27{word-spacing:-9.580928pt;}
.ws87{word-spacing:-9.565333pt;}
.ws2d{word-spacing:-9.546710pt;}
.ws2e{word-spacing:-9.512493pt;}
.ws2f{word-spacing:-9.478275pt;}
.ws2c{word-spacing:-9.170317pt;}
.ws30{word-spacing:-9.101882pt;}
.ws2{word-spacing:-8.885333pt;}
.wsa{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.728000pt;}
.ws28{word-spacing:-6.090733pt;}
.ws9c{word-spacing:-1.496000pt;}
.ws6d{word-spacing:-1.440000pt;}
.ws6f{word-spacing:-1.386667pt;}
.wsd{word-spacing:-1.333333pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws4f{word-spacing:-1.173333pt;}
.ws92{word-spacing:-1.133333pt;}
.ws20{word-spacing:-1.120000pt;}
.ws59{word-spacing:-1.066667pt;}
.wsac{word-spacing:-1.042667pt;}
.ws58{word-spacing:-1.013333pt;}
.ws71{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.952000pt;}
.ws1f{word-spacing:-0.906667pt;}
.ws91{word-spacing:-0.861333pt;}
.ws64{word-spacing:-0.853333pt;}
.wsa6{word-spacing:-0.816000pt;}
.ws4a{word-spacing:-0.800000pt;}
.ws56{word-spacing:-0.746667pt;}
.ws33{word-spacing:-0.693333pt;}
.ws96{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.ws97{word-spacing:-0.634667pt;}
.ws8d{word-spacing:-0.586667pt;}
.ws24{word-spacing:-0.544000pt;}
.ws1b{word-spacing:-0.533333pt;}
.wsa4{word-spacing:-0.498667pt;}
.ws80{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.373333pt;}
.wsa7{word-spacing:-0.362667pt;}
.ws75{word-spacing:-0.320000pt;}
.wsab{word-spacing:-0.317333pt;}
.ws15{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.226667pt;}
.ws74{word-spacing:-0.213333pt;}
.ws4e{word-spacing:-0.160000pt;}
.ws36{word-spacing:-0.106667pt;}
.ws43{word-spacing:-0.102653pt;}
.ws46{word-spacing:-0.068435pt;}
.ws69{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws42{word-spacing:-0.034218pt;}
.ws0{word-spacing:0.000000pt;}
.ws44{word-spacing:0.034218pt;}
.ws41{word-spacing:0.045510pt;}
.ws5a{word-spacing:0.053333pt;}
.ws45{word-spacing:0.068435pt;}
.ws47{word-spacing:0.102653pt;}
.ws5f{word-spacing:0.106667pt;}
.wsa3{word-spacing:0.136000pt;}
.ws79{word-spacing:0.160000pt;}
.ws98{word-spacing:0.181333pt;}
.ws65{word-spacing:0.213333pt;}
.ws21{word-spacing:0.266667pt;}
.ws68{word-spacing:0.320000pt;}
.wsae{word-spacing:0.362667pt;}
.ws6e{word-spacing:0.373333pt;}
.ws7e{word-spacing:0.426667pt;}
.ws17{word-spacing:0.480000pt;}
.ws3c{word-spacing:0.533333pt;}
.ws1d{word-spacing:0.586667pt;}
.ws5c{word-spacing:0.693333pt;}
.ws4b{word-spacing:0.746667pt;}
.ws62{word-spacing:0.800000pt;}
.ws54{word-spacing:0.906667pt;}
.ws6a{word-spacing:0.960000pt;}
.ws4d{word-spacing:1.013333pt;}
.ws93{word-spacing:1.042667pt;}
.ws1a{word-spacing:1.066667pt;}
.ws60{word-spacing:1.120000pt;}
.ws94{word-spacing:1.133333pt;}
.wsc{word-spacing:1.173333pt;}
.wsa8{word-spacing:1.224000pt;}
.ws67{word-spacing:1.226667pt;}
.ws9e{word-spacing:1.269333pt;}
.ws13{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.wsaa{word-spacing:1.360000pt;}
.wsf{word-spacing:1.386667pt;}
.ws34{word-spacing:1.440000pt;}
.wsaf{word-spacing:1.450667pt;}
.ws78{word-spacing:1.493333pt;}
.ws16{word-spacing:1.546667pt;}
.ws22{word-spacing:1.600000pt;}
.wsad{word-spacing:1.632000pt;}
.ws55{word-spacing:1.653333pt;}
.ws63{word-spacing:1.706667pt;}
.ws3f{word-spacing:1.760000pt;}
.wsa2{word-spacing:1.768000pt;}
.ws84{word-spacing:1.813333pt;}
.wsa9{word-spacing:1.858667pt;}
.ws3b{word-spacing:1.866667pt;}
.ws32{word-spacing:1.920000pt;}
.ws12{word-spacing:1.973333pt;}
.wsa5{word-spacing:1.994667pt;}
.ws37{word-spacing:2.026667pt;}
.ws9f{word-spacing:2.040000pt;}
.ws86{word-spacing:2.080000pt;}
.ws35{word-spacing:2.133333pt;}
.ws51{word-spacing:2.186667pt;}
.wsa1{word-spacing:2.221333pt;}
.ws18{word-spacing:2.240000pt;}
.ws70{word-spacing:2.293333pt;}
.ws31{word-spacing:2.346667pt;}
.ws61{word-spacing:2.400000pt;}
.ws99{word-spacing:2.402667pt;}
.ws77{word-spacing:2.453333pt;}
.ws7c{word-spacing:2.506667pt;}
.ws5d{word-spacing:2.560000pt;}
.ws19{word-spacing:2.613333pt;}
.ws7a{word-spacing:2.666667pt;}
.ws52{word-spacing:2.720000pt;}
.ws3a{word-spacing:2.773333pt;}
.ws7d{word-spacing:2.826667pt;}
.ws83{word-spacing:2.880000pt;}
.wsb3{word-spacing:2.901333pt;}
.ws38{word-spacing:2.933333pt;}
.ws5b{word-spacing:2.986667pt;}
.ws57{word-spacing:3.040000pt;}
.ws82{word-spacing:3.146667pt;}
.ws5e{word-spacing:3.200000pt;}
.wsb0{word-spacing:3.218667pt;}
.ws1c{word-spacing:3.360000pt;}
.ws10{word-spacing:3.466667pt;}
.ws9a{word-spacing:3.490667pt;}
.ws72{word-spacing:3.520000pt;}
.ws6c{word-spacing:3.573333pt;}
.wsb2{word-spacing:3.581333pt;}
.ws4c{word-spacing:3.680000pt;}
.ws8b{word-spacing:3.733333pt;}
.ws40{word-spacing:3.786667pt;}
.ws8f{word-spacing:3.808000pt;}
.ws8c{word-spacing:4.213333pt;}
.ws3e{word-spacing:4.266667pt;}
.ws85{word-spacing:4.320000pt;}
.ws39{word-spacing:4.373333pt;}
.ws76{word-spacing:4.426667pt;}
.ws6b{word-spacing:4.533333pt;}
.ws7f{word-spacing:4.746667pt;}
.ws50{word-spacing:5.066667pt;}
.ws73{word-spacing:5.173333pt;}
.wsa0{word-spacing:5.213333pt;}
.wsb1{word-spacing:5.394667pt;}
.ws9d{word-spacing:5.666667pt;}
.ws3d{word-spacing:5.706667pt;}
.ws53{word-spacing:5.813333pt;}
.ws8e{word-spacing:5.973333pt;}
.ws7b{word-spacing:7.200000pt;}
.ws9b{word-spacing:8.613333pt;}
.wsb5{word-spacing:12.013333pt;}
.wsb6{word-spacing:15.640000pt;}
.ws23{word-spacing:64.237333pt;}
._9{margin-left:-2630.421398pt;}
._5{margin-left:-14.733333pt;}
._4{margin-left:-5.888000pt;}
._11{margin-left:-4.656000pt;}
._1{margin-left:-3.648000pt;}
._3{margin-left:-2.747733pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.536000pt;}
._b{width:3.025067pt;}
._14{width:6.346667pt;}
._12{width:7.752000pt;}
._13{width:12.829333pt;}
._c{width:13.872000pt;}
._6{width:16.320000pt;}
._f{width:28.277333pt;}
._e{width:29.786667pt;}
._10{width:33.493333pt;}
._a{width:36.447995pt;}
._7{width:48.552000pt;}
._d{width:1792.885376pt;}
._8{width:2078.533398pt;}
.fs9{font-size:31.733332pt;}
.fsc{font-size:34.217600pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fsb{font-size:45.509867pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y22{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y61{bottom:100.394933pt;}
.yca{bottom:101.986938pt;}
.y60{bottom:113.722933pt;}
.y50{bottom:114.789469pt;}
.yf8{bottom:118.653595pt;}
.yc9{bottom:118.653605pt;}
.y21{bottom:123.790666pt;}
.y95{bottom:124.837656pt;}
.y4f{bottom:131.456136pt;}
.y5f{bottom:131.584269pt;}
.y136{bottom:132.157605pt;}
.y94{bottom:135.102936pt;}
.y106{bottom:135.320231pt;}
.yf7{bottom:135.320262pt;}
.yc8{bottom:135.320272pt;}
.yfc{bottom:138.828263pt;}
.y135{bottom:145.485605pt;}
.y5e{bottom:147.098270pt;}
.y4e{bottom:148.122803pt;}
.y105{bottom:151.986898pt;}
.yf6{bottom:151.986928pt;}
.yc7{bottom:151.986938pt;}
.yfb{bottom:152.156263pt;}
.y134{bottom:158.813605pt;}
.y4d{bottom:164.789469pt;}
.y5d{bottom:164.959605pt;}
.yfa{bottom:165.484263pt;}
.y93{bottom:166.668264pt;}
.y104{bottom:168.653564pt;}
.yc6{bottom:168.653605pt;}
.y133{bottom:172.141605pt;}
.y18{bottom:175.052000pt;}
.y5c{bottom:180.473595pt;}
.y4c{bottom:181.456136pt;}
.y103{bottom:185.320231pt;}
.yc5{bottom:185.320272pt;}
.y132{bottom:185.469605pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y4b{bottom:198.122803pt;}
.y5b{bottom:198.334941pt;}
.y131{bottom:198.797605pt;}
.y102{bottom:201.986898pt;}
.yc4{bottom:201.986938pt;}
.y92{bottom:204.480265pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y130{bottom:212.125605pt;}
.y5a{bottom:213.854274pt;}
.y4a{bottom:214.789469pt;}
.y101{bottom:218.653564pt;}
.yc3{bottom:218.653605pt;}
.y12f{bottom:225.453605pt;}
.y59{bottom:227.182274pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y49{bottom:231.456136pt;}
.y100{bottom:235.320231pt;}
.yc2{bottom:235.320272pt;}
.y12e{bottom:238.781605pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y58{bottom:245.043599pt;}
.y85{bottom:247.625590pt;}
.y48{bottom:248.122803pt;}
.yff{bottom:251.986898pt;}
.yc1{bottom:251.986938pt;}
.y12d{bottom:252.109605pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y47{bottom:264.789469pt;}
.y57{bottom:265.085470pt;}
.y12c{bottom:265.437605pt;}
.yfe{bottom:268.653564pt;}
.yc0{bottom:268.653605pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y12b{bottom:278.765605pt;}
.y56{bottom:280.599592pt;}
.y46{bottom:281.456136pt;}
.yfd{bottom:285.320231pt;}
.ybf{bottom:285.320272pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y91{bottom:290.495093pt;}
.y12a{bottom:292.093605pt;}
.y80{bottom:297.937174pt;}
.y45{bottom:298.122803pt;}
.y55{bottom:298.460937pt;}
.y82{bottom:300.077656pt;}
.y97{bottom:300.388325pt;}
.y90{bottom:300.760373pt;}
.y84{bottom:300.761657pt;}
.yf2{bottom:301.986898pt;}
.ybe{bottom:301.986938pt;}
.y129{bottom:305.421605pt;}
.yf{bottom:309.452000pt;}
.y81{bottom:310.342936pt;}
.y96{bottom:310.653605pt;}
.y8f{bottom:311.025653pt;}
.y83{bottom:311.026937pt;}
.y7f{bottom:311.624267pt;}
.y44{bottom:314.789469pt;}
.y168{bottom:316.905620pt;}
.yf1{bottom:318.653564pt;}
.ybd{bottom:318.653605pt;}
.y128{bottom:318.749605pt;}
.y54{bottom:320.693589pt;}
.y8e{bottom:321.290933pt;}
.y167{bottom:330.233620pt;}
.y43{bottom:331.456136pt;}
.y127{bottom:332.077605pt;}
.y53{bottom:334.021589pt;}
.yf0{bottom:335.320231pt;}
.ybc{bottom:335.320272pt;}
.y166{bottom:343.561620pt;}
.ye{bottom:343.809333pt;}
.y126{bottom:345.405605pt;}
.y42{bottom:348.122803pt;}
.yef{bottom:351.986898pt;}
.ybb{bottom:351.986938pt;}
.y52{bottom:354.058922pt;}
.y87{bottom:354.701619pt;}
.y165{bottom:356.889620pt;}
.y125{bottom:358.733605pt;}
.yd{bottom:362.706666pt;}
.y41{bottom:364.789469pt;}
.y86{bottom:365.565592pt;}
.y51{bottom:367.386922pt;}
.yee{bottom:368.653564pt;}
.yba{bottom:368.653605pt;}
.y164{bottom:370.217620pt;}
.y195{bottom:370.387614pt;}
.y124{bottom:372.061605pt;}
.y40{bottom:381.456136pt;}
.y163{bottom:383.545620pt;}
.y194{bottom:383.715614pt;}
.yed{bottom:385.320231pt;}
.yb9{bottom:385.320272pt;}
.yf9{bottom:385.325605pt;}
.y123{bottom:385.389605pt;}
.y162{bottom:396.873620pt;}
.y3f{bottom:398.122803pt;}
.y122{bottom:398.717605pt;}
.y89{bottom:401.595581pt;}
.yec{bottom:401.986898pt;}
.yb8{bottom:401.986938pt;}
.y161{bottom:410.201620pt;}
.y193{bottom:410.462280pt;}
.y121{bottom:412.045605pt;}
.y88{bottom:412.459473pt;}
.y3d{bottom:414.789469pt;}
.yeb{bottom:418.653564pt;}
.yb7{bottom:418.653605pt;}
.y160{bottom:423.529620pt;}
.y192{bottom:423.790280pt;}
.y120{bottom:425.373605pt;}
.y3c{bottom:431.456136pt;}
.yea{bottom:435.320231pt;}
.yb6{bottom:435.320272pt;}
.y15f{bottom:436.857620pt;}
.y191{bottom:437.118280pt;}
.y8b{bottom:437.235596pt;}
.y11f{bottom:438.701605pt;}
.yc{bottom:446.990669pt;}
.y8a{bottom:448.100789pt;}
.y3b{bottom:448.122803pt;}
.y15e{bottom:450.185620pt;}
.y190{bottom:450.446280pt;}
.ye9{bottom:451.986898pt;}
.yb5{bottom:451.986938pt;}
.y11e{bottom:452.029605pt;}
.yb{bottom:462.990669pt;}
.y15d{bottom:463.513620pt;}
.y18f{bottom:463.774280pt;}
.y3a{bottom:464.789469pt;}
.y11d{bottom:465.357605pt;}
.ye8{bottom:468.653564pt;}
.yb4{bottom:468.653605pt;}
.y15c{bottom:476.841620pt;}
.y18e{bottom:477.102280pt;}
.y11c{bottom:478.685605pt;}
.ya{bottom:478.990666pt;}
.y8d{bottom:479.973185pt;}
.y39{bottom:481.456136pt;}
.ye7{bottom:485.320231pt;}
.yb3{bottom:485.320272pt;}
.y15b{bottom:490.169620pt;}
.y18d{bottom:490.430280pt;}
.y8c{bottom:490.836914pt;}
.y11b{bottom:492.013605pt;}
.y9{bottom:494.990666pt;}
.y7e{bottom:495.821211pt;}
.y38{bottom:498.122803pt;}
.ye6{bottom:501.986898pt;}
.yb2{bottom:501.986938pt;}
.y15a{bottom:503.497620pt;}
.y18c{bottom:503.758280pt;}
.y11a{bottom:505.341605pt;}
.y7d{bottom:509.149211pt;}
.y37{bottom:514.789469pt;}
.y159{bottom:516.825620pt;}
.y18b{bottom:517.086280pt;}
.ye5{bottom:518.653564pt;}
.yb1{bottom:518.653605pt;}
.y119{bottom:518.669605pt;}
.y158{bottom:530.153620pt;}
.y18a{bottom:530.414280pt;}
.y36{bottom:531.456136pt;}
.y118{bottom:531.997605pt;}
.ye4{bottom:535.320231pt;}
.yb0{bottom:535.320272pt;}
.y157{bottom:543.481620pt;}
.y189{bottom:543.742280pt;}
.y117{bottom:545.325605pt;}
.y35{bottom:548.122803pt;}
.y79{bottom:550.813639pt;}
.ye3{bottom:551.986898pt;}
.yaf{bottom:551.986938pt;}
.y156{bottom:556.809620pt;}
.y188{bottom:557.070280pt;}
.y116{bottom:558.653605pt;}
.y34{bottom:564.789469pt;}
.y78{bottom:567.480306pt;}
.ye2{bottom:568.653564pt;}
.yae{bottom:568.653605pt;}
.y155{bottom:570.137620pt;}
.y187{bottom:570.398280pt;}
.y8{bottom:573.786667pt;}
.y33{bottom:581.456136pt;}
.y154{bottom:583.465620pt;}
.y186{bottom:583.726280pt;}
.y77{bottom:584.146973pt;}
.ye1{bottom:585.320231pt;}
.yad{bottom:585.320272pt;}
.y115{bottom:588.653605pt;}
.y7{bottom:592.685334pt;}
.y153{bottom:596.793620pt;}
.y185{bottom:597.054280pt;}
.y32{bottom:598.122803pt;}
.y76{bottom:600.813639pt;}
.ye0{bottom:601.986898pt;}
.yac{bottom:601.986938pt;}
.y152{bottom:610.121620pt;}
.y184{bottom:610.382280pt;}
.y31{bottom:614.789469pt;}
.y75{bottom:617.480306pt;}
.ydf{bottom:618.653564pt;}
.yab{bottom:618.653605pt;}
.y151{bottom:623.449620pt;}
.y183{bottom:623.710280pt;}
.y30{bottom:631.456136pt;}
.y74{bottom:634.146973pt;}
.yde{bottom:635.320231pt;}
.ydb{bottom:635.320272pt;}
.y150{bottom:636.777620pt;}
.y182{bottom:637.038280pt;}
.y114{bottom:638.716898pt;}
.y6{bottom:645.598667pt;}
.y2f{bottom:648.122803pt;}
.y14f{bottom:650.105620pt;}
.y181{bottom:650.366280pt;}
.y73{bottom:650.813639pt;}
.ydd{bottom:651.986898pt;}
.yaa{bottom:651.986938pt;}
.y113{bottom:652.044898pt;}
.y14e{bottom:663.433620pt;}
.y180{bottom:663.694280pt;}
.y2e{bottom:664.789469pt;}
.y112{bottom:665.372898pt;}
.y72{bottom:667.480306pt;}
.ydc{bottom:668.653564pt;}
.yf5{bottom:668.653605pt;}
.y3{bottom:668.977329pt;}
.y14d{bottom:676.761620pt;}
.y17f{bottom:677.022280pt;}
.y111{bottom:678.700898pt;}
.y2d{bottom:681.456136pt;}
.y71{bottom:684.146973pt;}
.ya9{bottom:685.320231pt;}
.yf4{bottom:685.320272pt;}
.y14c{bottom:690.089620pt;}
.y17e{bottom:690.350280pt;}
.y110{bottom:692.028898pt;}
.y2c{bottom:698.122803pt;}
.y70{bottom:700.813639pt;}
.ya8{bottom:701.986898pt;}
.yf3{bottom:701.986938pt;}
.y14b{bottom:703.417620pt;}
.y17d{bottom:703.678280pt;}
.y10f{bottom:705.356898pt;}
.y3e{bottom:714.789469pt;}
.y14a{bottom:716.745620pt;}
.y17c{bottom:717.006280pt;}
.y6f{bottom:717.480306pt;}
.ya7{bottom:718.653564pt;}
.yda{bottom:718.653605pt;}
.y10e{bottom:718.684898pt;}
.y149{bottom:730.073620pt;}
.y17b{bottom:730.334280pt;}
.y2b{bottom:731.456136pt;}
.y10d{bottom:732.012898pt;}
.y6e{bottom:734.146973pt;}
.ya6{bottom:735.320231pt;}
.yd9{bottom:735.320272pt;}
.y148{bottom:743.401620pt;}
.y17a{bottom:743.662280pt;}
.y10c{bottom:745.340898pt;}
.y6d{bottom:750.813639pt;}
.ya5{bottom:751.986898pt;}
.yd8{bottom:751.986938pt;}
.y147{bottom:756.729620pt;}
.y179{bottom:756.990280pt;}
.y10b{bottom:758.668898pt;}
.y6c{bottom:767.480306pt;}
.ya4{bottom:768.653564pt;}
.yd7{bottom:768.653605pt;}
.y146{bottom:770.057620pt;}
.y178{bottom:770.318280pt;}
.y10a{bottom:771.996898pt;}
.y2a{bottom:781.461469pt;}
.y2{bottom:781.661334pt;}
.y145{bottom:783.385620pt;}
.y177{bottom:783.646280pt;}
.y6b{bottom:784.146973pt;}
.ya3{bottom:785.320231pt;}
.yd6{bottom:785.320272pt;}
.y109{bottom:785.324898pt;}
.y29{bottom:794.789469pt;}
.y144{bottom:796.713620pt;}
.y176{bottom:796.974280pt;}
.y6a{bottom:800.813639pt;}
.ya2{bottom:801.986898pt;}
.yd5{bottom:801.986938pt;}
.y143{bottom:810.041620pt;}
.y175{bottom:810.302280pt;}
.y108{bottom:811.992231pt;}
.y69{bottom:817.480306pt;}
.ya1{bottom:818.653564pt;}
.yd4{bottom:818.653605pt;}
.y142{bottom:823.369620pt;}
.y174{bottom:823.630280pt;}
.y107{bottom:825.320231pt;}
.y28{bottom:832.656169pt;}
.y68{bottom:834.146973pt;}
.ya0{bottom:835.320231pt;}
.yd3{bottom:835.320272pt;}
.y141{bottom:836.697620pt;}
.y173{bottom:836.958280pt;}
.y140{bottom:850.025620pt;}
.y172{bottom:850.286280pt;}
.y7c{bottom:850.813639pt;}
.y9f{bottom:851.986898pt;}
.yd2{bottom:851.986938pt;}
.y1{bottom:859.312000pt;}
.y13f{bottom:863.353620pt;}
.y171{bottom:863.614280pt;}
.y67{bottom:867.480306pt;}
.y9e{bottom:868.653564pt;}
.yd1{bottom:868.653605pt;}
.y27{bottom:872.377441pt;}
.y13e{bottom:876.681620pt;}
.y170{bottom:876.942280pt;}
.y7b{bottom:884.146973pt;}
.y9d{bottom:885.320231pt;}
.yd0{bottom:885.320272pt;}
.y13d{bottom:890.009620pt;}
.y16f{bottom:890.270280pt;}
.y26{bottom:896.377441pt;}
.y7a{bottom:900.813639pt;}
.y9c{bottom:901.986898pt;}
.ycf{bottom:901.986938pt;}
.y13c{bottom:903.337620pt;}
.y16e{bottom:903.598280pt;}
.y13b{bottom:916.665620pt;}
.y16d{bottom:916.926280pt;}
.y66{bottom:917.480306pt;}
.y9b{bottom:918.653564pt;}
.yce{bottom:918.653605pt;}
.y13a{bottom:929.993620pt;}
.y16c{bottom:930.254280pt;}
.y65{bottom:934.146973pt;}
.y9a{bottom:935.320231pt;}
.ycd{bottom:935.320272pt;}
.y139{bottom:943.321620pt;}
.y16b{bottom:943.582280pt;}
.y64{bottom:950.813639pt;}
.y99{bottom:951.986898pt;}
.ycc{bottom:951.986938pt;}
.y25{bottom:956.561849pt;}
.y138{bottom:956.649620pt;}
.y16a{bottom:956.910280pt;}
.y63{bottom:967.480306pt;}
.y98{bottom:968.653564pt;}
.ycb{bottom:968.653605pt;}
.y137{bottom:969.977620pt;}
.y169{bottom:970.238280pt;}
.y24{bottom:986.299161pt;}
.y23{bottom:1001.406494pt;}
.y62{bottom:1002.206543pt;}
.h13{height:21.832533pt;}
.h18{height:24.910413pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h12{height:31.189333pt;}
.h17{height:32.585065pt;}
.h11{height:32.760417pt;}
.h10{height:36.693333pt;}
.hb{height:39.712000pt;}
.h16{height:40.165333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h14{height:44.834667pt;}
.h19{height:44.835318pt;}
.h1b{height:46.376000pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h15{height:52.448000pt;}
.h1a{height:54.560000pt;}
.he{height:57.658667pt;}
.hf{height:63.296000pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x7{left:75.717199pt;}
.x8{left:83.164798pt;}
.xb{left:86.929867pt;}
.x1f{left:89.364802pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x9{left:408.204787pt;}
.xa{left:423.324787pt;}
.x20{left:430.866924pt;}
.xe{left:442.653198pt;}
.xf{left:449.327086pt;}
.x15{left:469.093180pt;}
.x14{left:474.786418pt;}
.x17{left:481.755737pt;}
.x13{left:483.257202pt;}
.x16{left:488.091715pt;}
.x1c{left:493.474406pt;}
.x1b{left:494.929077pt;}
.xc{left:497.695882pt;}
.x1d{left:500.503158pt;}
.xd{left:501.804014pt;}
.x12{left:505.963745pt;}
.x10{left:560.159871pt;}
.x11{left:561.101061pt;}
.x1e{left:642.979858pt;}
.x5{left:647.307210pt;}
.x18{left:681.271851pt;}
.x1a{left:682.298603pt;}
.x19{left:686.747861pt;}
}




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