
    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_61b3553650fbefe6d338ed3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_ea1bd0cf5deb58901ec356a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946777;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_5580f4ca59aa9683c7f4965f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_421ebcf70ebbfda282927283.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_f0eea8a47840f98295652976.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.072754;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_d32e2ed8cd98b92ccc0ac7e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_22184d3f8a30d11fde1bda01.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.955078;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_8168d5eb55ba9306ed66a3ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971191;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_84da92b49c00b066b028dbdf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.072754;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;}
.m7{transform:matrix(0.000000,-0.252379,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252379,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252379,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.252319,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252319,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252319,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.176242,-0.177298,0.175627,0.177919,0,0);-ms-transform:matrix(0.176242,-0.177298,0.175627,0.177919,0,0);-webkit-transform:matrix(0.176242,-0.177298,0.175627,0.177919,0,0);}
.m2{transform:matrix(0.176263,-0.177278,0.175648,0.177898,0,0);-ms-transform:matrix(0.176263,-0.177278,0.175648,0.177898,0,0);-webkit-transform:matrix(0.176263,-0.177278,0.175648,0.177898,0,0);}
.m6{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247702,0.000000,0.000000,0.250000,0,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);}
.vf{vertical-align:-23.760000px;}
.v15{vertical-align:-21.600000px;}
.v11{vertical-align:-20.160000px;}
.v2{vertical-align:-18.000000px;}
.vd{vertical-align:-13.680000px;}
.v5{vertical-align:-12.240000px;}
.v6{vertical-align:-10.800000px;}
.v17{vertical-align:-8.640000px;}
.v3{vertical-align:-5.760000px;}
.v12{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:2.160000px;}
.v9{vertical-align:12.240000px;}
.v4{vertical-align:20.880000px;}
.v13{vertical-align:22.320000px;}
.v1{vertical-align:23.760000px;}
.v10{vertical-align:34.560000px;}
.ve{vertical-align:37.440000px;}
.v7{vertical-align:40.320000px;}
.vc{vertical-align:42.480000px;}
.va{vertical-align:46.080000px;}
.vb{vertical-align:52.560000px;}
.v16{vertical-align:76.320000px;}
.v8{vertical-align:86.400000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.325200px;}
.ls35{letter-spacing:-0.269400px;}
.ls5{letter-spacing:-0.223800px;}
.ls2d{letter-spacing:-0.200400px;}
.ls31{letter-spacing:-0.107400px;}
.ls2c{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.012960px;}
.ls73{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.017280px;}
.lse{letter-spacing:0.053280px;}
.ls2a{letter-spacing:0.120960px;}
.ls9{letter-spacing:0.144720px;}
.ls5c{letter-spacing:0.161462px;}
.ls2{letter-spacing:0.178560px;}
.ls8{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.186209px;}
.ls4f{letter-spacing:0.188297px;}
.ls43{letter-spacing:0.188311px;}
.lsa{letter-spacing:0.197280px;}
.ls2e{letter-spacing:0.205800px;}
.ls77{letter-spacing:0.206400px;}
.ls2f{letter-spacing:0.229200px;}
.ls33{letter-spacing:0.233280px;}
.ls34{letter-spacing:0.253440px;}
.ls75{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls72{letter-spacing:0.314640px;}
.ls2b{letter-spacing:0.326160px;}
.ls76{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.399600px;}
.lsb{letter-spacing:0.504000px;}
.ls48{letter-spacing:0.536028px;}
.ls6b{letter-spacing:0.610560px;}
.ls29{letter-spacing:0.678240px;}
.ls45{letter-spacing:0.698241px;}
.ls50{letter-spacing:0.860361px;}
.ls37{letter-spacing:0.860461px;}
.ls4e{letter-spacing:0.862361px;}
.ls66{letter-spacing:0.883359px;}
.ls5f{letter-spacing:0.885049px;}
.ls47{letter-spacing:0.885152px;}
.ls3c{letter-spacing:0.885902px;}
.ls38{letter-spacing:0.902664px;}
.ls54{letter-spacing:0.927997px;}
.ls41{letter-spacing:0.933509px;}
.ls6a{letter-spacing:0.946657px;}
.ls57{letter-spacing:0.975354px;}
.ls5a{letter-spacing:0.986148px;}
.ls56{letter-spacing:0.994350px;}
.ls25{letter-spacing:1.041120px;}
.ls3f{letter-spacing:1.059873px;}
.ls69{letter-spacing:1.160835px;}
.ls63{letter-spacing:1.179825px;}
.ls4c{letter-spacing:1.179962px;}
.ls51{letter-spacing:1.181935px;}
.ls3d{letter-spacing:1.182072px;}
.ls64{letter-spacing:1.224133px;}
.ls39{letter-spacing:1.224275px;}
.ls5e{letter-spacing:1.228176px;}
.ls68{letter-spacing:1.245232px;}
.ls65{letter-spacing:1.255106px;}
.ls53{letter-spacing:1.262328px;}
.ls3e{letter-spacing:1.262475px;}
.ls46{letter-spacing:1.278962px;}
.ls3b{letter-spacing:1.304678px;}
.ls55{letter-spacing:1.315075px;}
.ls59{letter-spacing:1.358169px;}
.ls36{letter-spacing:1.412210px;}
.ls5d{letter-spacing:1.713670px;}
.ls61{letter-spacing:1.715773px;}
.ls62{letter-spacing:1.715780px;}
.ls4a{letter-spacing:1.715979px;}
.ls40{letter-spacing:1.718090px;}
.ls44{letter-spacing:1.766623px;}
.ls49{letter-spacing:1.768726px;}
.ls58{letter-spacing:1.781187px;}
.ls5b{letter-spacing:2.117081px;}
.ls60{letter-spacing:2.169032px;}
.ls28{letter-spacing:2.460960px;}
.ls67{letter-spacing:2.465788px;}
.ls4d{letter-spacing:2.466075px;}
.ls3a{letter-spacing:2.898736px;}
.ls52{letter-spacing:2.940597px;}
.ls10{letter-spacing:3.180960px;}
.ls42{letter-spacing:3.699940px;}
.ls70{letter-spacing:3.816000px;}
.ls71{letter-spacing:4.500000px;}
.ls13{letter-spacing:8.130000px;}
.ls6e{letter-spacing:10.036080px;}
.ls24{letter-spacing:10.092960px;}
.lsc{letter-spacing:10.180080px;}
.lsd{letter-spacing:10.900080px;}
.ls22{letter-spacing:11.168640px;}
.ls15{letter-spacing:12.959280px;}
.ls17{letter-spacing:13.679280px;}
.ls27{letter-spacing:15.420960px;}
.ls12{letter-spacing:16.559280px;}
.ls23{letter-spacing:17.279280px;}
.ls1a{letter-spacing:17.485920px;}
.ls1e{letter-spacing:17.508960px;}
.ls14{letter-spacing:17.799840px;}
.ls6c{letter-spacing:20.376000px;}
.ls6f{letter-spacing:21.060000px;}
.ls6d{letter-spacing:23.836080px;}
.ls21{letter-spacing:32.628960px;}
.ls19{letter-spacing:33.348960px;}
.ls1d{letter-spacing:34.068960px;}
.ls20{letter-spacing:45.565920px;}
.ls1f{letter-spacing:45.879840px;}
.ls16{letter-spacing:46.599840px;}
.ls18{letter-spacing:47.005920px;}
.ls1c{letter-spacing:47.725920px;}
.ls1b{letter-spacing:48.039840px;}
.ls11{letter-spacing:57.690000px;}
.ls74{letter-spacing:64.026720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws4{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.199800px;}
.ws1e{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws16{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.wse{word-spacing:-13.040400px;}
.ws15{word-spacing:-13.039800px;}
.ws2{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.ws11{word-spacing:-9.416400px;}
.ws10{word-spacing:-9.393000px;}
.ws13{word-spacing:-9.187200px;}
.ws1b{word-spacing:-9.129445px;}
.wsf{word-spacing:-8.986800px;}
.ws14{word-spacing:-8.862000px;}
.ws1a{word-spacing:-8.427195px;}
.ws19{word-spacing:-8.388676px;}
.ws1c{word-spacing:-8.387701px;}
.ws5{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
.ws12{word-spacing:12.110400px;}
.ws17{word-spacing:162.473760px;}
._1d{margin-left:-14.629440px;}
._25{margin-left:-13.341600px;}
._20{margin-left:-12.038640px;}
._1a{margin-left:-9.126000px;}
._13{margin-left:-8.053200px;}
._15{margin-left:-6.613200px;}
._17{margin-left:-4.631760px;}
._5{margin-left:-2.923920px;}
._0{margin-left:-1.495440px;}
._1{width:1.038000px;}
._2{width:2.140560px;}
._4{width:3.672000px;}
._3{width:5.076000px;}
._1c{width:6.084240px;}
._9{width:7.926000px;}
._8{width:9.083520px;}
._a{width:10.137120px;}
._6{width:11.571360px;}
._7{width:12.840240px;}
._26{width:13.932480px;}
._24{width:15.438480px;}
._1f{width:16.559280px;}
._23{width:17.665440px;}
._2a{width:18.805680px;}
._29{width:19.918800px;}
._22{width:21.522960px;}
._28{width:23.664960px;}
._2b{width:26.895120px;}
._27{width:27.972000px;}
._21{width:29.520000px;}
._2c{width:30.567840px;}
._1e{width:31.680000px;}
._19{width:108.360000px;}
._18{width:109.800000px;}
._16{width:122.040000px;}
._1b{width:126.360000px;}
._14{width:127.800000px;}
._c{width:139.410720px;}
._e{width:142.217280px;}
._d{width:148.671360px;}
._b{width:151.110720px;}
._11{width:152.274960px;}
._12{width:156.411360px;}
._f{width:168.620400px;}
._10{width:171.070560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:12.240000px;}
.fsd{font-size:26.797768px;}
.fs9{font-size:26.800883px;}
.fsa{font-size:26.923945px;}
.fse{font-size:28.892622px;}
.fsc{font-size:28.899433px;}
.fsb{font-size:29.167557px;}
.fs5{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y101{bottom:2.520000px;}
.y60{bottom:2.880000px;}
.y77{bottom:3.285000px;}
.yad{bottom:3.600000px;}
.y71{bottom:5.040000px;}
.y110{bottom:5.220000px;}
.y114{bottom:5.610000px;}
.yd5{bottom:5.760000px;}
.y112{bottom:5.940000px;}
.y116{bottom:6.330000px;}
.yf6{bottom:6.603275px;}
.y61{bottom:6.660000px;}
.y64{bottom:6.705000px;}
.yba{bottom:6.840000px;}
.ybc{bottom:7.020000px;}
.yc0{bottom:7.065000px;}
.y111{bottom:7.920000px;}
.y92{bottom:8.100000px;}
.y9f{bottom:8.130000px;}
.y115{bottom:8.310000px;}
.y7d{bottom:10.080000px;}
.y5f{bottom:10.440000px;}
.y7e{bottom:11.340000px;}
.y6e{bottom:11.520000px;}
.y78{bottom:13.185000px;}
.y76{bottom:13.365000px;}
.y72{bottom:14.400000px;}
.y70{bottom:15.120000px;}
.yac{bottom:16.380000px;}
.yb0{bottom:16.560000px;}
.y4{bottom:18.000000px;}
.yb8{bottom:18.360000px;}
.y8c{bottom:18.900000px;}
.y8a{bottom:19.080000px;}
.yf2{bottom:19.555709px;}
.yae{bottom:20.880000px;}
.yb1{bottom:21.060000px;}
.y6d{bottom:21.600000px;}
.y5d{bottom:22.140000px;}
.y90{bottom:31.320000px;}
.y9d{bottom:31.350000px;}
.ye4{bottom:32.490059px;}
.ye6{bottom:33.615285px;}
.ye5{bottom:37.569375px;}
.y8b{bottom:41.400000px;}
.yb{bottom:44.856000px;}
.y33{bottom:47.016000px;}
.yd1{bottom:53.820000px;}
.ya{bottom:57.456000px;}
.yf0{bottom:58.395463px;}
.yef{bottom:58.395474px;}
.yee{bottom:58.395485px;}
.y32{bottom:65.916000px;}
.y9{bottom:72.396000px;}
.yed{bottom:81.468237px;}
.y8{bottom:87.516000px;}
.y6b{bottom:89.856000px;}
.y12b{bottom:90.396000px;}
.yfc{bottom:90.468722px;}
.yec{bottom:97.232179px;}
.y3{bottom:97.950000px;}
.yfe{bottom:101.175033px;}
.yf3{bottom:101.736161px;}
.y7{bottom:102.456000px;}
.yb5{bottom:103.176000px;}
.y9b{bottom:105.696000px;}
.y6a{bottom:107.856000px;}
.y12a{bottom:108.396000px;}
.yfb{bottom:111.873866px;}
.yeb{bottom:112.996121px;}
.y17d{bottom:113.256000px;}
.y6{bottom:117.396000px;}
.y14b{bottom:118.476000px;}
.yb4{bottom:121.176000px;}
.y9a{bottom:123.696000px;}
.ye2{bottom:125.316000px;}
.y69{bottom:125.856000px;}
.y129{bottom:126.396000px;}
.yea{bottom:128.183972px;}
.y17c{bottom:130.536000px;}
.yfa{bottom:133.825174px;}
.y14a{bottom:135.756000px;}
.yb3{bottom:139.176000px;}
.y99{bottom:141.696000px;}
.ye1{bottom:143.316000px;}
.y68{bottom:143.856000px;}
.ye9{bottom:143.947914px;}
.y128{bottom:144.396000px;}
.y17b{bottom:147.816000px;}
.y2f{bottom:149.796000px;}
.y149{bottom:153.030000px;}
.yb2{bottom:153.570000px;}
.yf9{bottom:155.215354px;}
.ye8{bottom:159.150728px;}
.y98{bottom:159.690000px;}
.ye0{bottom:161.310000px;}
.y67{bottom:161.850000px;}
.y127{bottom:162.390000px;}
.y17a{bottom:165.090000px;}
.y2e{bottom:167.790000px;}
.y148{bottom:170.130000px;}
.ye7{bottom:174.914670px;}
.yf8{bottom:176.598052px;}
.y97{bottom:177.690000px;}
.ydf{bottom:179.310000px;}
.y126{bottom:180.390000px;}
.y179{bottom:182.190000px;}
.yfd{bottom:183.346567px;}
.yff{bottom:183.346600px;}
.yf1{bottom:185.037431px;}
.yf4{bottom:185.037465px;}
.y2d{bottom:185.790000px;}
.y147{bottom:187.410000px;}
.y96{bottom:195.690000px;}
.yde{bottom:197.310000px;}
.y66{bottom:197.850000px;}
.y125{bottom:198.390000px;}
.yf5{bottom:199.110514px;}
.y178{bottom:199.470000px;}
.y2c{bottom:203.790000px;}
.y146{bottom:204.690000px;}
.ydd{bottom:215.310000px;}
.y124{bottom:216.390000px;}
.y177{bottom:216.750000px;}
.y2b{bottom:221.790000px;}
.y145{bottom:221.970000px;}
.y65{bottom:230.970000px;}
.y95{bottom:231.690000px;}
.ydc{bottom:233.310000px;}
.y176{bottom:234.030000px;}
.y144{bottom:239.250000px;}
.y2a{bottom:239.790000px;}
.ydb{bottom:251.310000px;}
.y123{bottom:252.390000px;}
.y63{bottom:253.470000px;}
.y143{bottom:256.530000px;}
.y29{bottom:257.790000px;}
.y94{bottom:264.855000px;}
.y175{bottom:268.635000px;}
.yda{bottom:269.355000px;}
.y142{bottom:273.675000px;}
.y28{bottom:275.835000px;}
.y62{bottom:276.015000px;}
.yd9{bottom:284.475000px;}
.y174{bottom:285.735000px;}
.y93{bottom:287.355000px;}
.y122{bottom:288.435000px;}
.y141{bottom:290.955000px;}
.y27{bottom:293.835000px;}
.y5c{bottom:299.235000px;}
.y173{bottom:303.015000px;}
.y121{bottom:306.435000px;}
.yd8{bottom:306.975000px;}
.y8f{bottom:310.575000px;}
.y26{bottom:311.835000px;}
.y172{bottom:320.295000px;}
.y5e{bottom:322.455000px;}
.y120{bottom:324.435000px;}
.y140{bottom:326.595000px;}
.yd7{bottom:329.475000px;}
.y25{bottom:329.835000px;}
.y91{bottom:333.795000px;}
.y171{bottom:337.575000px;}
.yaf{bottom:340.995000px;}
.y11f{bottom:342.435000px;}
.y24{bottom:347.835000px;}
.yd6{bottom:351.975000px;}
.y170{bottom:354.855000px;}
.y5b{bottom:356.835000px;}
.y11e{bottom:357.555000px;}
.y8e{bottom:360.795000px;}
.y13f{bottom:362.595000px;}
.y23{bottom:365.835000px;}
.y16f{bottom:372.135000px;}
.yd4{bottom:374.475000px;}
.y5a{bottom:374.835000px;}
.y11d{bottom:375.555000px;}
.y8d{bottom:378.795000px;}
.y13e{bottom:380.595000px;}
.y22{bottom:383.835000px;}
.y16e{bottom:389.235000px;}
.y59{bottom:392.835000px;}
.y89{bottom:393.195000px;}
.y11c{bottom:394.275000px;}
.yd0{bottom:397.695000px;}
.y16d{bottom:406.515000px;}
.y58{bottom:410.835000px;}
.y11b{bottom:416.595000px;}
.y21{bottom:419.835000px;}
.yd3{bottom:420.195000px;}
.y16c{bottom:423.795000px;}
.y57{bottom:428.835000px;}
.y11a{bottom:434.595000px;}
.y16b{bottom:441.075000px;}
.yd2{bottom:443.415000px;}
.y88{bottom:445.575000px;}
.y56{bottom:446.835000px;}
.y119{bottom:452.595000px;}
.y16a{bottom:458.355000px;}
.y87{bottom:463.575000px;}
.y20{bottom:466.455000px;}
.ycf{bottom:470.235000px;}
.y118{bottom:470.595000px;}
.y169{bottom:475.635000px;}
.y86{bottom:481.575000px;}
.y55{bottom:482.835000px;}
.yce{bottom:488.235000px;}
.y117{bottom:488.595000px;}
.y168{bottom:492.735000px;}
.y85{bottom:499.575000px;}
.y1f{bottom:499.755000px;}
.y113{bottom:502.995000px;}
.ycd{bottom:506.265000px;}
.y167{bottom:510.045000px;}
.y1e{bottom:516.345000px;}
.y84{bottom:517.605000px;}
.y53{bottom:519.405000px;}
.y54{bottom:522.105000px;}
.y10f{bottom:523.365000px;}
.ycc{bottom:524.265000px;}
.y13d{bottom:524.625000px;}
.y166{bottom:527.325000px;}
.yab{bottom:528.585000px;}
.y1d{bottom:532.725000px;}
.y83{bottom:535.605000px;}
.y51{bottom:537.405000px;}
.y52{bottom:540.105000px;}
.ycb{bottom:542.265000px;}
.y165{bottom:544.605000px;}
.y10e{bottom:546.765000px;}
.y1c{bottom:549.285000px;}
.y82{bottom:553.605000px;}
.y4f{bottom:555.225000px;}
.y50{bottom:557.925000px;}
.yca{bottom:560.265000px;}
.y13c{bottom:560.625000px;}
.y164{bottom:561.885000px;}
.y10d{bottom:564.765000px;}
.y1b{bottom:565.845000px;}
.y81{bottom:571.605000px;}
.y4d{bottom:573.225000px;}
.y4e{bottom:575.925000px;}
.yc9{bottom:578.265000px;}
.y13b{bottom:578.625000px;}
.y163{bottom:578.985000px;}
.y1a{bottom:582.225000px;}
.y10c{bottom:582.765000px;}
.y4b{bottom:591.045000px;}
.y4c{bottom:593.745000px;}
.yc8{bottom:596.265000px;}
.y13a{bottom:596.625000px;}
.y19{bottom:598.785000px;}
.y10b{bottom:600.765000px;}
.y80{bottom:607.605000px;}
.y49{bottom:609.045000px;}
.y4a{bottom:611.745000px;}
.y162{bottom:613.545000px;}
.yc7{bottom:614.265000px;}
.y139{bottom:614.625000px;}
.y18{bottom:615.345000px;}
.y10a{bottom:618.765000px;}
.y48{bottom:626.865000px;}
.y161{bottom:630.825000px;}
.y17{bottom:631.725000px;}
.yc6{bottom:632.265000px;}
.y138{bottom:632.625000px;}
.y109{bottom:636.765000px;}
.y7f{bottom:643.605000px;}
.y47{bottom:643.965000px;}
.y160{bottom:648.105000px;}
.y16{bottom:648.285000px;}
.yc5{bottom:650.265000px;}
.y137{bottom:650.625000px;}
.y108{bottom:654.765000px;}
.y7c{bottom:658.005000px;}
.y46{bottom:661.425000px;}
.y15{bottom:664.845000px;}
.y15f{bottom:665.385000px;}
.yc4{bottom:668.265000px;}
.y136{bottom:668.625000px;}
.y107{bottom:672.765000px;}
.y45{bottom:678.885000px;}
.y14{bottom:681.225000px;}
.y15e{bottom:682.485000px;}
.yc3{bottom:686.265000px;}
.y135{bottom:686.625000px;}
.y106{bottom:690.765000px;}
.y7b{bottom:695.265000px;}
.y44{bottom:696.165000px;}
.y15d{bottom:699.765000px;}
.yc2{bottom:704.265000px;}
.y134{bottom:704.625000px;}
.y105{bottom:708.765000px;}
.y7a{bottom:713.265000px;}
.y43{bottom:713.445000px;}
.y13{bottom:714.345000px;}
.y15c{bottom:717.045000px;}
.yc1{bottom:719.385000px;}
.yaa{bottom:719.565000px;}
.y133{bottom:722.625000px;}
.y104{bottom:726.765000px;}
.y42{bottom:730.545000px;}
.y79{bottom:731.265000px;}
.y15b{bottom:734.325000px;}
.ya9{bottom:734.865000px;}
.y132{bottom:740.625000px;}
.ybf{bottom:741.885000px;}
.y103{bottom:744.765000px;}
.y75{bottom:745.665000px;}
.y41{bottom:748.590000px;}
.y15a{bottom:751.650000px;}
.y12{bottom:754.710000px;}
.ya8{bottom:757.410000px;}
.y131{bottom:758.670000px;}
.y102{bottom:762.810000px;}
.ybe{bottom:764.430000px;}
.y40{bottom:766.230000px;}
.y159{bottom:768.930000px;}
.y130{bottom:776.670000px;}
.y100{bottom:777.210000px;}
.y11{bottom:778.110000px;}
.ya7{bottom:779.910000px;}
.y74{bottom:782.610000px;}
.y3f{bottom:783.510000px;}
.y158{bottom:786.030000px;}
.ybd{bottom:786.930000px;}
.ye3{bottom:791.025000px;}
.yf7{bottom:791.070000px;}
.y12f{bottom:794.670000px;}
.y10{bottom:797.550000px;}
.y3e{bottom:800.790000px;}
.ya6{bottom:802.410000px;}
.y157{bottom:803.310000px;}
.yf{bottom:807.990000px;}
.ybb{bottom:809.430000px;}
.y12e{bottom:812.670000px;}
.y3d{bottom:818.070000px;}
.y156{bottom:820.590000px;}
.y73{bottom:822.210000px;}
.ya5{bottom:824.910000px;}
.ye{bottom:827.610000px;}
.y12d{bottom:830.670000px;}
.yb7{bottom:832.830000px;}
.y155{bottom:837.870000px;}
.y3c{bottom:846.690000px;}
.ya4{bottom:847.410000px;}
.y12c{bottom:848.670000px;}
.yd{bottom:851.550000px;}
.y154{bottom:855.150000px;}
.yb9{bottom:856.050000px;}
.y6f{bottom:861.810000px;}
.y3b{bottom:866.670000px;}
.ya3{bottom:869.910000px;}
.y153{bottom:872.250000px;}
.y3a{bottom:884.670000px;}
.yb6{bottom:885.030000px;}
.yc{bottom:886.110000px;}
.y152{bottom:889.530000px;}
.ya2{bottom:892.410000px;}
.y6c{bottom:901.410000px;}
.y39{bottom:902.670000px;}
.y5{bottom:904.830000px;}
.y151{bottom:906.810000px;}
.ya1{bottom:914.910000px;}
.y38{bottom:920.670000px;}
.y150{bottom:924.090000px;}
.ya0{bottom:937.410000px;}
.y37{bottom:938.670000px;}
.y2{bottom:940.110000px;}
.y14f{bottom:941.370000px;}
.y36{bottom:956.670000px;}
.y14e{bottom:958.650000px;}
.y9c{bottom:960.630000px;}
.y35{bottom:974.670000px;}
.y14d{bottom:975.750000px;}
.y9e{bottom:983.850000px;}
.y34{bottom:992.700000px;}
.y14c{bottom:993.060000px;}
.y31{bottom:1040.220000px;}
.y1{bottom:1072.980000px;}
.y30{bottom:1076.220000px;}
.h7{height:8.946914px;}
.h3c{height:13.860000px;}
.h3f{height:18.000000px;}
.h3d{height:19.800000px;}
.h3e{height:20.376000px;}
.h39{height:20.490871px;}
.h30{height:20.493254px;}
.h2f{height:20.587352px;}
.h3a{height:20.662947px;}
.h38{height:20.683972px;}
.h31{height:20.686377px;}
.h2c{height:20.970867px;}
.h35{height:20.972958px;}
.h2e{height:20.995871px;}
.h3b{height:22.092698px;}
.h33{height:22.097906px;}
.ha{height:22.104141px;}
.h32{height:22.302927px;}
.h36{height:22.447033px;}
.h2d{height:22.449966px;}
.h14{height:22.500000px;}
.h37{height:22.517454px;}
.h15{height:22.536000px;}
.h13{height:30.060000px;}
.h16{height:33.660000px;}
.h8{height:34.847578px;}
.h5{height:35.261367px;}
.h1c{height:36.936000px;}
.h18{height:39.600000px;}
.h6{height:40.254961px;}
.h29{height:41.338477px;}
.hc{height:45.061523px;}
.h23{height:45.720000px;}
.h24{height:45.756000px;}
.hb{height:46.274414px;}
.h1f{height:48.780000px;}
.he{height:49.868086px;}
.hd{height:51.210352px;}
.h12{height:53.280000px;}
.h11{height:53.324297px;}
.h26{height:53.709961px;}
.hf{height:59.439023px;}
.h9{height:64.888594px;}
.h3{height:65.884219px;}
.h2a{height:68.220000px;}
.h21{height:73.630547px;}
.h10{height:105.367852px;}
.h20{height:107.527852px;}
.h4{height:110.376000px;}
.h1d{height:145.687852px;}
.h1e{height:147.847852px;}
.h19{height:151.447852px;}
.h1b{height:152.167852px;}
.h22{height:181.687852px;}
.h25{height:187.380000px;}
.h28{height:187.410000px;}
.h27{height:187.590000px;}
.h17{height:191.767852px;}
.h1a{height:192.487852px;}
.h2b{height:216.004242px;}
.h34{height:216.030000px;}
.h1{height:1105.500000px;}
.h2{height:1105.739908px;}
.h0{height:1105.740000px;}
.w8{width:4.140000px;}
.wa{width:4.320000px;}
.w5{width:4.500000px;}
.w2a{width:31.500000px;}
.w32{width:45.360000px;}
.w2d{width:48.600000px;}
.w31{width:49.140000px;}
.w13{width:51.696000px;}
.w27{width:53.496000px;}
.w30{width:57.276000px;}
.w16{width:60.120000px;}
.w2c{width:60.876000px;}
.w33{width:64.296000px;}
.w2f{width:65.160000px;}
.w3c{width:66.600000px;}
.w3d{width:66.816000px;}
.w2b{width:69.300000px;}
.w43{width:69.696000px;}
.w2e{width:69.876000px;}
.w41{width:70.056000px;}
.w40{width:70.200000px;}
.w22{width:73.116000px;}
.w35{width:73.836000px;}
.w1b{width:75.996000px;}
.w1f{width:76.140000px;}
.w15{width:76.176000px;}
.w20{width:77.436000px;}
.w7{width:78.696000px;}
.w4{width:78.876000px;}
.w3f{width:80.676000px;}
.w3e{width:80.820000px;}
.wd{width:81.036000px;}
.w53{width:84.636000px;}
.w42{width:84.780000px;}
.w11{width:86.436000px;}
.w10{width:86.616000px;}
.w23{width:102.816000px;}
.w21{width:105.660000px;}
.w52{width:107.136000px;}
.w50{width:110.556000px;}
.w4e{width:111.636000px;}
.w4f{width:114.696000px;}
.w19{width:118.836000px;}
.wf{width:121.680000px;}
.w18{width:125.676000px;}
.w38{width:133.416000px;}
.w51{width:134.820000px;}
.we{width:135.756000px;}
.w14{width:137.016000px;}
.w1a{width:138.456000px;}
.w3a{width:140.256000px;}
.w26{width:143.136000px;}
.w25{width:144.396000px;}
.wc{width:151.950000px;}
.w1e{width:152.310000px;}
.w3b{width:154.470000px;}
.w39{width:161.490000px;}
.w1c{width:228.450000px;}
.w4d{width:247.890000px;}
.w29{width:281.235000px;}
.w4a{width:292.035000px;}
.w48{width:292.575000px;}
.w37{width:294.735000px;}
.w36{width:294.915000px;}
.w24{width:304.455000px;}
.w49{width:311.295000px;}
.w4b{width:312.015000px;}
.w46{width:320.689080px;}
.w44{width:320.764643px;}
.w28{width:328.755000px;}
.w45{width:331.665000px;}
.w47{width:331.815000px;}
.w1d{width:359.025000px;}
.w4c{width:359.745000px;}
.w34{width:382.245000px;}
.w17{width:382.965000px;}
.w12{width:611.790000px;}
.w3{width:677.310000px;}
.wb{width:721.224000px;}
.w9{width:721.584000px;}
.w6{width:725.004000px;}
.w1{width:807.750000px;}
.w2{width:808.019988px;}
.w0{width:808.020000px;}
.x10{left:-1.980000px;}
.x0{left:0.000000px;}
.x48{left:8.100000px;}
.x56{left:9.360000px;}
.x4f{left:11.340000px;}
.x5b{left:12.780000px;}
.x53{left:13.860000px;}
.x54{left:15.300000px;}
.x4d{left:17.460000px;}
.x59{left:19.260000px;}
.x50{left:20.880000px;}
.x5c{left:22.356000px;}
.x5d{left:24.300000px;}
.x14{left:25.956000px;}
.x20{left:29.205000px;}
.x16{left:30.825000px;}
.x41{left:32.445000px;}
.x22{left:34.425000px;}
.x23{left:35.460000px;}
.x1f{left:38.340000px;}
.x1d{left:40.365000px;}
.x44{left:42.120000px;}
.x43{left:43.956000px;}
.x1b{left:47.700000px;}
.x3d{left:50.754000px;}
.x19{left:55.260000px;}
.x18{left:56.880000px;}
.x45{left:58.320000px;}
.x21{left:59.580000px;}
.x24{left:67.680000px;}
.x25{left:70.560000px;}
.x1{left:72.359988px;}
.xf{left:75.059988px;}
.xd{left:78.155988px;}
.x2{left:80.496000px;}
.x11{left:83.016000px;}
.x6{left:84.095988px;}
.x13{left:86.436000px;}
.x12{left:87.515988px;}
.x5{left:90.395988px;}
.x7f{left:99.395988px;}
.x30{left:101.550000px;}
.x4b{left:103.320000px;}
.x67{left:106.419939px;}
.x6b{left:109.729921px;}
.x64{left:111.979636px;}
.x8{left:125.675988px;}
.x31{left:128.910000px;}
.xa{left:131.615988px;}
.x47{left:134.145000px;}
.x4a{left:136.305000px;}
.x5e{left:146.196000px;}
.x3b{left:148.356000px;}
.x4c{left:157.350000px;}
.x6d{left:162.638316px;}
.x34{left:165.090000px;}
.x3c{left:170.670000px;}
.x6c{left:179.357924px;}
.x66{left:181.068087px;}
.x7a{left:183.990000px;}
.x46{left:188.130000px;}
.x3{left:197.319000px;}
.x2a{left:207.975000px;}
.x2e{left:209.775000px;}
.x36{left:212.970000px;}
.x15{left:224.310000px;}
.x4e{left:226.650000px;}
.x32{left:229.215000px;}
.x6e{left:236.735233px;}
.x68{left:237.902973px;}
.x70{left:243.615000px;}
.x6f{left:256.934988px;}
.x9{left:263.774988px;}
.x65{left:267.984622px;}
.x26{left:275.295000px;}
.x5f{left:279.615000px;}
.x27{left:284.655000px;}
.x71{left:286.095000px;}
.x2b{left:287.715000px;}
.x37{left:289.155000px;}
.x33{left:294.915000px;}
.x7b{left:298.695000px;}
.x3e{left:300.675000px;}
.x17{left:305.355000px;}
.x75{left:308.055000px;}
.x7{left:315.614988px;}
.x28{left:325.155000px;}
.x69{left:328.935000px;}
.x49{left:332.535000px;}
.x2c{left:334.905000px;}
.x51{left:336.135000px;}
.x38{left:349.275000px;}
.x77{left:353.265000px;}
.x76{left:357.225000px;}
.x61{left:360.435000px;}
.x72{left:364.755000px;}
.x73{left:368.715000px;}
.x74{left:372.855000px;}
.x35{left:377.385000px;}
.x2f{left:381.165000px;}
.x2d{left:382.605000px;}
.x52{left:384.735000px;}
.xe{left:396.614988px;}
.xb{left:404.024988px;}
.x7c{left:409.245000px;}
.x6a{left:412.139959px;}
.x78{left:431.925000px;}
.x79{left:436.245000px;}
.x1a{left:441.105000px;}
.x3f{left:454.245000px;}
.x39{left:474.945000px;}
.x62{left:511.305000px;}
.x55{left:519.765000px;}
.x7d{left:544.065000px;}
.x40{left:559.905000px;}
.x1c{left:562.785000px;}
.x57{left:577.050000px;}
.x60{left:581.370000px;}
.x3a{left:593.790000px;}
.x58{left:626.190000px;}
.x42{left:633.030000px;}
.x1e{left:649.410000px;}
.x7e{left:651.210000px;}
.x63{left:666.150000px;}
.x5a{left:671.550000px;}
.x4{left:676.224000px;}
.x29{left:684.150000px;}
.xc{left:735.839988px;}
@media print{
.vf{vertical-align:-21.120000pt;}
.v15{vertical-align:-19.200000pt;}
.v11{vertical-align:-17.920000pt;}
.v2{vertical-align:-16.000000pt;}
.vd{vertical-align:-12.160000pt;}
.v5{vertical-align:-10.880000pt;}
.v6{vertical-align:-9.600000pt;}
.v17{vertical-align:-7.680000pt;}
.v3{vertical-align:-5.120000pt;}
.v12{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.920000pt;}
.v9{vertical-align:10.880000pt;}
.v4{vertical-align:18.560000pt;}
.v13{vertical-align:19.840000pt;}
.v1{vertical-align:21.120000pt;}
.v10{vertical-align:30.720000pt;}
.ve{vertical-align:33.280000pt;}
.v7{vertical-align:35.840000pt;}
.vc{vertical-align:37.760000pt;}
.va{vertical-align:40.960000pt;}
.vb{vertical-align:46.720000pt;}
.v16{vertical-align:67.840000pt;}
.v8{vertical-align:76.800000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.289067pt;}
.ls35{letter-spacing:-0.239467pt;}
.ls5{letter-spacing:-0.198933pt;}
.ls2d{letter-spacing:-0.178133pt;}
.ls31{letter-spacing:-0.095467pt;}
.ls2c{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.011520pt;}
.ls73{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.015360pt;}
.lse{letter-spacing:0.047360pt;}
.ls2a{letter-spacing:0.107520pt;}
.ls9{letter-spacing:0.128640pt;}
.ls5c{letter-spacing:0.143522pt;}
.ls2{letter-spacing:0.158720pt;}
.ls8{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.165519pt;}
.ls4f{letter-spacing:0.167375pt;}
.ls43{letter-spacing:0.167388pt;}
.lsa{letter-spacing:0.175360pt;}
.ls2e{letter-spacing:0.182933pt;}
.ls77{letter-spacing:0.183467pt;}
.ls2f{letter-spacing:0.203733pt;}
.ls33{letter-spacing:0.207360pt;}
.ls34{letter-spacing:0.225280pt;}
.ls75{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls72{letter-spacing:0.279680pt;}
.ls2b{letter-spacing:0.289920pt;}
.ls76{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.355200pt;}
.lsb{letter-spacing:0.448000pt;}
.ls48{letter-spacing:0.476469pt;}
.ls6b{letter-spacing:0.542720pt;}
.ls29{letter-spacing:0.602880pt;}
.ls45{letter-spacing:0.620659pt;}
.ls50{letter-spacing:0.764766pt;}
.ls37{letter-spacing:0.764855pt;}
.ls4e{letter-spacing:0.766543pt;}
.ls66{letter-spacing:0.785208pt;}
.ls5f{letter-spacing:0.786710pt;}
.ls47{letter-spacing:0.786802pt;}
.ls3c{letter-spacing:0.787468pt;}
.ls38{letter-spacing:0.802368pt;}
.ls54{letter-spacing:0.824886pt;}
.ls41{letter-spacing:0.829786pt;}
.ls6a{letter-spacing:0.841473pt;}
.ls57{letter-spacing:0.866981pt;}
.ls5a{letter-spacing:0.876576pt;}
.ls56{letter-spacing:0.883867pt;}
.ls25{letter-spacing:0.925440pt;}
.ls3f{letter-spacing:0.942109pt;}
.ls69{letter-spacing:1.031854pt;}
.ls63{letter-spacing:1.048733pt;}
.ls4c{letter-spacing:1.048855pt;}
.ls51{letter-spacing:1.050608pt;}
.ls3d{letter-spacing:1.050731pt;}
.ls64{letter-spacing:1.088118pt;}
.ls39{letter-spacing:1.088244pt;}
.ls5e{letter-spacing:1.091712pt;}
.ls68{letter-spacing:1.106873pt;}
.ls65{letter-spacing:1.115650pt;}
.ls53{letter-spacing:1.122069pt;}
.ls3e{letter-spacing:1.122200pt;}
.ls46{letter-spacing:1.136855pt;}
.ls3b{letter-spacing:1.159713pt;}
.ls55{letter-spacing:1.168956pt;}
.ls59{letter-spacing:1.207261pt;}
.ls36{letter-spacing:1.255297pt;}
.ls5d{letter-spacing:1.523262pt;}
.ls61{letter-spacing:1.525131pt;}
.ls62{letter-spacing:1.525138pt;}
.ls4a{letter-spacing:1.525315pt;}
.ls40{letter-spacing:1.527191pt;}
.ls44{letter-spacing:1.570332pt;}
.ls49{letter-spacing:1.572201pt;}
.ls58{letter-spacing:1.583277pt;}
.ls5b{letter-spacing:1.881850pt;}
.ls60{letter-spacing:1.928028pt;}
.ls28{letter-spacing:2.187520pt;}
.ls67{letter-spacing:2.191812pt;}
.ls4d{letter-spacing:2.192066pt;}
.ls3a{letter-spacing:2.576654pt;}
.ls52{letter-spacing:2.613864pt;}
.ls10{letter-spacing:2.827520pt;}
.ls42{letter-spacing:3.288835pt;}
.ls70{letter-spacing:3.392000pt;}
.ls71{letter-spacing:4.000000pt;}
.ls13{letter-spacing:7.226667pt;}
.ls6e{letter-spacing:8.920960pt;}
.ls24{letter-spacing:8.971520pt;}
.lsc{letter-spacing:9.048960pt;}
.lsd{letter-spacing:9.688960pt;}
.ls22{letter-spacing:9.927680pt;}
.ls15{letter-spacing:11.519360pt;}
.ls17{letter-spacing:12.159360pt;}
.ls27{letter-spacing:13.707520pt;}
.ls12{letter-spacing:14.719360pt;}
.ls23{letter-spacing:15.359360pt;}
.ls1a{letter-spacing:15.543040pt;}
.ls1e{letter-spacing:15.563520pt;}
.ls14{letter-spacing:15.822080pt;}
.ls6c{letter-spacing:18.112000pt;}
.ls6f{letter-spacing:18.720000pt;}
.ls6d{letter-spacing:21.187627pt;}
.ls21{letter-spacing:29.003520pt;}
.ls19{letter-spacing:29.643520pt;}
.ls1d{letter-spacing:30.283520pt;}
.ls20{letter-spacing:40.503040pt;}
.ls1f{letter-spacing:40.782080pt;}
.ls16{letter-spacing:41.422080pt;}
.ls18{letter-spacing:41.783040pt;}
.ls1c{letter-spacing:42.423040pt;}
.ls1b{letter-spacing:42.702080pt;}
.ls11{letter-spacing:51.280000pt;}
.ls74{letter-spacing:56.912640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.510933pt;}
.ws1e{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws16{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.591467pt;}
.ws15{word-spacing:-11.590933pt;}
.ws2{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.ws11{word-spacing:-8.370133pt;}
.ws10{word-spacing:-8.349333pt;}
.ws13{word-spacing:-8.166400pt;}
.ws1b{word-spacing:-8.115063pt;}
.wsf{word-spacing:-7.988267pt;}
.ws14{word-spacing:-7.877333pt;}
.ws1a{word-spacing:-7.490840pt;}
.ws19{word-spacing:-7.456601pt;}
.ws1c{word-spacing:-7.455734pt;}
.ws5{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
.ws12{word-spacing:10.764800pt;}
.ws17{word-spacing:144.421120pt;}
._1d{margin-left:-13.003947pt;}
._25{margin-left:-11.859200pt;}
._20{margin-left:-10.701013pt;}
._1a{margin-left:-8.112000pt;}
._13{margin-left:-7.158400pt;}
._15{margin-left:-5.878400pt;}
._17{margin-left:-4.117120pt;}
._5{margin-left:-2.599040pt;}
._0{margin-left:-1.329280pt;}
._1{width:0.922667pt;}
._2{width:1.902720pt;}
._4{width:3.264000pt;}
._3{width:4.512000pt;}
._1c{width:5.408213pt;}
._9{width:7.045333pt;}
._8{width:8.074240pt;}
._a{width:9.010773pt;}
._6{width:10.285653pt;}
._7{width:11.413547pt;}
._26{width:12.384427pt;}
._24{width:13.723093pt;}
._1f{width:14.719360pt;}
._23{width:15.702613pt;}
._2a{width:16.716160pt;}
._29{width:17.705600pt;}
._22{width:19.131520pt;}
._28{width:21.035520pt;}
._2b{width:23.906773pt;}
._27{width:24.864000pt;}
._21{width:26.240000pt;}
._2c{width:27.171413pt;}
._1e{width:28.160000pt;}
._19{width:96.320000pt;}
._18{width:97.600000pt;}
._16{width:108.480000pt;}
._1b{width:112.320000pt;}
._14{width:113.600000pt;}
._c{width:123.920640pt;}
._e{width:126.415360pt;}
._d{width:132.152320pt;}
._b{width:134.320640pt;}
._11{width:135.355520pt;}
._12{width:139.032320pt;}
._f{width:149.884800pt;}
._10{width:152.062720pt;}
.fs2{font-size:10.880000pt;}
.fsd{font-size:23.820238pt;}
.fs9{font-size:23.823007pt;}
.fsa{font-size:23.932395pt;}
.fse{font-size:25.682330pt;}
.fsc{font-size:25.688385pt;}
.fsb{font-size:25.926717pt;}
.fs5{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:2.240000pt;}
.y60{bottom:2.560000pt;}
.y77{bottom:2.920000pt;}
.yad{bottom:3.200000pt;}
.y71{bottom:4.480000pt;}
.y110{bottom:4.640000pt;}
.y114{bottom:4.986667pt;}
.yd5{bottom:5.120000pt;}
.y112{bottom:5.280000pt;}
.y116{bottom:5.626667pt;}
.yf6{bottom:5.869578pt;}
.y61{bottom:5.920000pt;}
.y64{bottom:5.960000pt;}
.yba{bottom:6.080000pt;}
.ybc{bottom:6.240000pt;}
.yc0{bottom:6.280000pt;}
.y111{bottom:7.040000pt;}
.y92{bottom:7.200000pt;}
.y9f{bottom:7.226667pt;}
.y115{bottom:7.386667pt;}
.y7d{bottom:8.960000pt;}
.y5f{bottom:9.280000pt;}
.y7e{bottom:10.080000pt;}
.y6e{bottom:10.240000pt;}
.y78{bottom:11.720000pt;}
.y76{bottom:11.880000pt;}
.y72{bottom:12.800000pt;}
.y70{bottom:13.440000pt;}
.yac{bottom:14.560000pt;}
.yb0{bottom:14.720000pt;}
.y4{bottom:16.000000pt;}
.yb8{bottom:16.320000pt;}
.y8c{bottom:16.800000pt;}
.y8a{bottom:16.960000pt;}
.yf2{bottom:17.382853pt;}
.yae{bottom:18.560000pt;}
.yb1{bottom:18.720000pt;}
.y6d{bottom:19.200000pt;}
.y5d{bottom:19.680000pt;}
.y90{bottom:27.840000pt;}
.y9d{bottom:27.866667pt;}
.ye4{bottom:28.880052pt;}
.ye6{bottom:29.880253pt;}
.ye5{bottom:33.395000pt;}
.y8b{bottom:36.800000pt;}
.yb{bottom:39.872000pt;}
.y33{bottom:41.792000pt;}
.yd1{bottom:47.840000pt;}
.ya{bottom:51.072000pt;}
.yf0{bottom:51.907078pt;}
.yef{bottom:51.907088pt;}
.yee{bottom:51.907098pt;}
.y32{bottom:58.592000pt;}
.y9{bottom:64.352000pt;}
.yed{bottom:72.416211pt;}
.y8{bottom:77.792000pt;}
.y6b{bottom:79.872000pt;}
.y12b{bottom:80.352000pt;}
.yfc{bottom:80.416642pt;}
.yec{bottom:86.428603pt;}
.y3{bottom:87.066667pt;}
.yfe{bottom:89.933363pt;}
.yf3{bottom:90.432143pt;}
.y7{bottom:91.072000pt;}
.yb5{bottom:91.712000pt;}
.y9b{bottom:93.952000pt;}
.y6a{bottom:95.872000pt;}
.y12a{bottom:96.352000pt;}
.yfb{bottom:99.443436pt;}
.yeb{bottom:100.440996pt;}
.y17d{bottom:100.672000pt;}
.y6{bottom:104.352000pt;}
.y14b{bottom:105.312000pt;}
.yb4{bottom:107.712000pt;}
.y9a{bottom:109.952000pt;}
.ye2{bottom:111.392000pt;}
.y69{bottom:111.872000pt;}
.y129{bottom:112.352000pt;}
.yea{bottom:113.941308pt;}
.y17c{bottom:116.032000pt;}
.yfa{bottom:118.955710pt;}
.y14a{bottom:120.672000pt;}
.yb3{bottom:123.712000pt;}
.y99{bottom:125.952000pt;}
.ye1{bottom:127.392000pt;}
.y68{bottom:127.872000pt;}
.ye9{bottom:127.953701pt;}
.y128{bottom:128.352000pt;}
.y17b{bottom:131.392000pt;}
.y2f{bottom:133.152000pt;}
.y149{bottom:136.026667pt;}
.yb2{bottom:136.506667pt;}
.yf9{bottom:137.969203pt;}
.ye8{bottom:141.467314pt;}
.y98{bottom:141.946667pt;}
.ye0{bottom:143.386667pt;}
.y67{bottom:143.866667pt;}
.y127{bottom:144.346667pt;}
.y17a{bottom:146.746667pt;}
.y2e{bottom:149.146667pt;}
.y148{bottom:151.226667pt;}
.ye7{bottom:155.479707pt;}
.yf8{bottom:156.976047pt;}
.y97{bottom:157.946667pt;}
.ydf{bottom:159.386667pt;}
.y126{bottom:160.346667pt;}
.y179{bottom:161.946667pt;}
.yfd{bottom:162.974726pt;}
.yff{bottom:162.974756pt;}
.yf1{bottom:164.477717pt;}
.yf4{bottom:164.477746pt;}
.y2d{bottom:165.146667pt;}
.y147{bottom:166.586667pt;}
.y96{bottom:173.946667pt;}
.yde{bottom:175.386667pt;}
.y66{bottom:175.866667pt;}
.y125{bottom:176.346667pt;}
.yf5{bottom:176.987124pt;}
.y178{bottom:177.306667pt;}
.y2c{bottom:181.146667pt;}
.y146{bottom:181.946667pt;}
.ydd{bottom:191.386667pt;}
.y124{bottom:192.346667pt;}
.y177{bottom:192.666667pt;}
.y2b{bottom:197.146667pt;}
.y145{bottom:197.306667pt;}
.y65{bottom:205.306667pt;}
.y95{bottom:205.946667pt;}
.ydc{bottom:207.386667pt;}
.y176{bottom:208.026667pt;}
.y144{bottom:212.666667pt;}
.y2a{bottom:213.146667pt;}
.ydb{bottom:223.386667pt;}
.y123{bottom:224.346667pt;}
.y63{bottom:225.306667pt;}
.y143{bottom:228.026667pt;}
.y29{bottom:229.146667pt;}
.y94{bottom:235.426667pt;}
.y175{bottom:238.786667pt;}
.yda{bottom:239.426667pt;}
.y142{bottom:243.266667pt;}
.y28{bottom:245.186667pt;}
.y62{bottom:245.346667pt;}
.yd9{bottom:252.866667pt;}
.y174{bottom:253.986667pt;}
.y93{bottom:255.426667pt;}
.y122{bottom:256.386667pt;}
.y141{bottom:258.626667pt;}
.y27{bottom:261.186667pt;}
.y5c{bottom:265.986667pt;}
.y173{bottom:269.346667pt;}
.y121{bottom:272.386667pt;}
.yd8{bottom:272.866667pt;}
.y8f{bottom:276.066667pt;}
.y26{bottom:277.186667pt;}
.y172{bottom:284.706667pt;}
.y5e{bottom:286.626667pt;}
.y120{bottom:288.386667pt;}
.y140{bottom:290.306667pt;}
.yd7{bottom:292.866667pt;}
.y25{bottom:293.186667pt;}
.y91{bottom:296.706667pt;}
.y171{bottom:300.066667pt;}
.yaf{bottom:303.106667pt;}
.y11f{bottom:304.386667pt;}
.y24{bottom:309.186667pt;}
.yd6{bottom:312.866667pt;}
.y170{bottom:315.426667pt;}
.y5b{bottom:317.186667pt;}
.y11e{bottom:317.826667pt;}
.y8e{bottom:320.706667pt;}
.y13f{bottom:322.306667pt;}
.y23{bottom:325.186667pt;}
.y16f{bottom:330.786667pt;}
.yd4{bottom:332.866667pt;}
.y5a{bottom:333.186667pt;}
.y11d{bottom:333.826667pt;}
.y8d{bottom:336.706667pt;}
.y13e{bottom:338.306667pt;}
.y22{bottom:341.186667pt;}
.y16e{bottom:345.986667pt;}
.y59{bottom:349.186667pt;}
.y89{bottom:349.506667pt;}
.y11c{bottom:350.466667pt;}
.yd0{bottom:353.506667pt;}
.y16d{bottom:361.346667pt;}
.y58{bottom:365.186667pt;}
.y11b{bottom:370.306667pt;}
.y21{bottom:373.186667pt;}
.yd3{bottom:373.506667pt;}
.y16c{bottom:376.706667pt;}
.y57{bottom:381.186667pt;}
.y11a{bottom:386.306667pt;}
.y16b{bottom:392.066667pt;}
.yd2{bottom:394.146667pt;}
.y88{bottom:396.066667pt;}
.y56{bottom:397.186667pt;}
.y119{bottom:402.306667pt;}
.y16a{bottom:407.426667pt;}
.y87{bottom:412.066667pt;}
.y20{bottom:414.626667pt;}
.ycf{bottom:417.986667pt;}
.y118{bottom:418.306667pt;}
.y169{bottom:422.786667pt;}
.y86{bottom:428.066667pt;}
.y55{bottom:429.186667pt;}
.yce{bottom:433.986667pt;}
.y117{bottom:434.306667pt;}
.y168{bottom:437.986667pt;}
.y85{bottom:444.066667pt;}
.y1f{bottom:444.226667pt;}
.y113{bottom:447.106667pt;}
.ycd{bottom:450.013333pt;}
.y167{bottom:453.373333pt;}
.y1e{bottom:458.973333pt;}
.y84{bottom:460.093333pt;}
.y53{bottom:461.693333pt;}
.y54{bottom:464.093333pt;}
.y10f{bottom:465.213333pt;}
.ycc{bottom:466.013333pt;}
.y13d{bottom:466.333333pt;}
.y166{bottom:468.733333pt;}
.yab{bottom:469.853333pt;}
.y1d{bottom:473.533333pt;}
.y83{bottom:476.093333pt;}
.y51{bottom:477.693333pt;}
.y52{bottom:480.093333pt;}
.ycb{bottom:482.013333pt;}
.y165{bottom:484.093333pt;}
.y10e{bottom:486.013333pt;}
.y1c{bottom:488.253333pt;}
.y82{bottom:492.093333pt;}
.y4f{bottom:493.533333pt;}
.y50{bottom:495.933333pt;}
.yca{bottom:498.013333pt;}
.y13c{bottom:498.333333pt;}
.y164{bottom:499.453333pt;}
.y10d{bottom:502.013333pt;}
.y1b{bottom:502.973333pt;}
.y81{bottom:508.093333pt;}
.y4d{bottom:509.533333pt;}
.y4e{bottom:511.933333pt;}
.yc9{bottom:514.013333pt;}
.y13b{bottom:514.333333pt;}
.y163{bottom:514.653333pt;}
.y1a{bottom:517.533333pt;}
.y10c{bottom:518.013333pt;}
.y4b{bottom:525.373333pt;}
.y4c{bottom:527.773333pt;}
.yc8{bottom:530.013333pt;}
.y13a{bottom:530.333333pt;}
.y19{bottom:532.253333pt;}
.y10b{bottom:534.013333pt;}
.y80{bottom:540.093333pt;}
.y49{bottom:541.373333pt;}
.y4a{bottom:543.773333pt;}
.y162{bottom:545.373333pt;}
.yc7{bottom:546.013333pt;}
.y139{bottom:546.333333pt;}
.y18{bottom:546.973333pt;}
.y10a{bottom:550.013333pt;}
.y48{bottom:557.213333pt;}
.y161{bottom:560.733333pt;}
.y17{bottom:561.533333pt;}
.yc6{bottom:562.013333pt;}
.y138{bottom:562.333333pt;}
.y109{bottom:566.013333pt;}
.y7f{bottom:572.093333pt;}
.y47{bottom:572.413333pt;}
.y160{bottom:576.093333pt;}
.y16{bottom:576.253333pt;}
.yc5{bottom:578.013333pt;}
.y137{bottom:578.333333pt;}
.y108{bottom:582.013333pt;}
.y7c{bottom:584.893333pt;}
.y46{bottom:587.933333pt;}
.y15{bottom:590.973333pt;}
.y15f{bottom:591.453333pt;}
.yc4{bottom:594.013333pt;}
.y136{bottom:594.333333pt;}
.y107{bottom:598.013333pt;}
.y45{bottom:603.453333pt;}
.y14{bottom:605.533333pt;}
.y15e{bottom:606.653333pt;}
.yc3{bottom:610.013333pt;}
.y135{bottom:610.333333pt;}
.y106{bottom:614.013333pt;}
.y7b{bottom:618.013333pt;}
.y44{bottom:618.813333pt;}
.y15d{bottom:622.013333pt;}
.yc2{bottom:626.013333pt;}
.y134{bottom:626.333333pt;}
.y105{bottom:630.013333pt;}
.y7a{bottom:634.013333pt;}
.y43{bottom:634.173333pt;}
.y13{bottom:634.973333pt;}
.y15c{bottom:637.373333pt;}
.yc1{bottom:639.453333pt;}
.yaa{bottom:639.613333pt;}
.y133{bottom:642.333333pt;}
.y104{bottom:646.013333pt;}
.y42{bottom:649.373333pt;}
.y79{bottom:650.013333pt;}
.y15b{bottom:652.733333pt;}
.ya9{bottom:653.213333pt;}
.y132{bottom:658.333333pt;}
.ybf{bottom:659.453333pt;}
.y103{bottom:662.013333pt;}
.y75{bottom:662.813333pt;}
.y41{bottom:665.413333pt;}
.y15a{bottom:668.133333pt;}
.y12{bottom:670.853333pt;}
.ya8{bottom:673.253333pt;}
.y131{bottom:674.373333pt;}
.y102{bottom:678.053333pt;}
.ybe{bottom:679.493333pt;}
.y40{bottom:681.093333pt;}
.y159{bottom:683.493333pt;}
.y130{bottom:690.373333pt;}
.y100{bottom:690.853333pt;}
.y11{bottom:691.653333pt;}
.ya7{bottom:693.253333pt;}
.y74{bottom:695.653333pt;}
.y3f{bottom:696.453333pt;}
.y158{bottom:698.693333pt;}
.ybd{bottom:699.493333pt;}
.ye3{bottom:703.133333pt;}
.yf7{bottom:703.173333pt;}
.y12f{bottom:706.373333pt;}
.y10{bottom:708.933333pt;}
.y3e{bottom:711.813333pt;}
.ya6{bottom:713.253333pt;}
.y157{bottom:714.053333pt;}
.yf{bottom:718.213333pt;}
.ybb{bottom:719.493333pt;}
.y12e{bottom:722.373333pt;}
.y3d{bottom:727.173333pt;}
.y156{bottom:729.413333pt;}
.y73{bottom:730.853333pt;}
.ya5{bottom:733.253333pt;}
.ye{bottom:735.653333pt;}
.y12d{bottom:738.373333pt;}
.yb7{bottom:740.293333pt;}
.y155{bottom:744.773333pt;}
.y3c{bottom:752.613333pt;}
.ya4{bottom:753.253333pt;}
.y12c{bottom:754.373333pt;}
.yd{bottom:756.933333pt;}
.y154{bottom:760.133333pt;}
.yb9{bottom:760.933333pt;}
.y6f{bottom:766.053333pt;}
.y3b{bottom:770.373333pt;}
.ya3{bottom:773.253333pt;}
.y153{bottom:775.333333pt;}
.y3a{bottom:786.373333pt;}
.yb6{bottom:786.693333pt;}
.yc{bottom:787.653333pt;}
.y152{bottom:790.693333pt;}
.ya2{bottom:793.253333pt;}
.y6c{bottom:801.253333pt;}
.y39{bottom:802.373333pt;}
.y5{bottom:804.293333pt;}
.y151{bottom:806.053333pt;}
.ya1{bottom:813.253333pt;}
.y38{bottom:818.373333pt;}
.y150{bottom:821.413333pt;}
.ya0{bottom:833.253333pt;}
.y37{bottom:834.373333pt;}
.y2{bottom:835.653333pt;}
.y14f{bottom:836.773333pt;}
.y36{bottom:850.373333pt;}
.y14e{bottom:852.133333pt;}
.y9c{bottom:853.893333pt;}
.y35{bottom:866.373333pt;}
.y14d{bottom:867.333333pt;}
.y9e{bottom:874.533333pt;}
.y34{bottom:882.400000pt;}
.y14c{bottom:882.720000pt;}
.y31{bottom:924.640000pt;}
.y1{bottom:953.760000pt;}
.y30{bottom:956.640000pt;}
.h7{height:7.952812pt;}
.h3c{height:12.320000pt;}
.h3f{height:16.000000pt;}
.h3d{height:17.600000pt;}
.h3e{height:18.112000pt;}
.h39{height:18.214108pt;}
.h30{height:18.216225pt;}
.h2f{height:18.299869pt;}
.h3a{height:18.367064pt;}
.h38{height:18.385753pt;}
.h31{height:18.387891pt;}
.h2c{height:18.640771pt;}
.h35{height:18.642629pt;}
.h2e{height:18.662997pt;}
.h3b{height:19.637954pt;}
.h33{height:19.642583pt;}
.ha{height:19.648125pt;}
.h32{height:19.824824pt;}
.h36{height:19.952918pt;}
.h2d{height:19.955525pt;}
.h14{height:20.000000pt;}
.h37{height:20.015515pt;}
.h15{height:20.032000pt;}
.h13{height:26.720000pt;}
.h16{height:29.920000pt;}
.h8{height:30.975625pt;}
.h5{height:31.343437pt;}
.h1c{height:32.832000pt;}
.h18{height:35.200000pt;}
.h6{height:35.782187pt;}
.h29{height:36.745312pt;}
.hc{height:40.054688pt;}
.h23{height:40.640000pt;}
.h24{height:40.672000pt;}
.hb{height:41.132812pt;}
.h1f{height:43.360000pt;}
.he{height:44.327188pt;}
.hd{height:45.520312pt;}
.h12{height:47.360000pt;}
.h11{height:47.399375pt;}
.h26{height:47.742188pt;}
.hf{height:52.834688pt;}
.h9{height:57.678750pt;}
.h3{height:58.563750pt;}
.h2a{height:60.640000pt;}
.h21{height:65.449375pt;}
.h10{height:93.660313pt;}
.h20{height:95.580312pt;}
.h4{height:98.112000pt;}
.h1d{height:129.500312pt;}
.h1e{height:131.420312pt;}
.h19{height:134.620312pt;}
.h1b{height:135.260312pt;}
.h22{height:161.500313pt;}
.h25{height:166.560000pt;}
.h28{height:166.586667pt;}
.h27{height:166.746667pt;}
.h17{height:170.460313pt;}
.h1a{height:171.100312pt;}
.h2b{height:192.003771pt;}
.h34{height:192.026667pt;}
.h1{height:982.666667pt;}
.h2{height:982.879919pt;}
.h0{height:982.880000pt;}
.w8{width:3.680000pt;}
.wa{width:3.840000pt;}
.w5{width:4.000000pt;}
.w2a{width:28.000000pt;}
.w32{width:40.320000pt;}
.w2d{width:43.200000pt;}
.w31{width:43.680000pt;}
.w13{width:45.952000pt;}
.w27{width:47.552000pt;}
.w30{width:50.912000pt;}
.w16{width:53.440000pt;}
.w2c{width:54.112000pt;}
.w33{width:57.152000pt;}
.w2f{width:57.920000pt;}
.w3c{width:59.200000pt;}
.w3d{width:59.392000pt;}
.w2b{width:61.600000pt;}
.w43{width:61.952000pt;}
.w2e{width:62.112000pt;}
.w41{width:62.272000pt;}
.w40{width:62.400000pt;}
.w22{width:64.992000pt;}
.w35{width:65.632000pt;}
.w1b{width:67.552000pt;}
.w1f{width:67.680000pt;}
.w15{width:67.712000pt;}
.w20{width:68.832000pt;}
.w7{width:69.952000pt;}
.w4{width:70.112000pt;}
.w3f{width:71.712000pt;}
.w3e{width:71.840000pt;}
.wd{width:72.032000pt;}
.w53{width:75.232000pt;}
.w42{width:75.360000pt;}
.w11{width:76.832000pt;}
.w10{width:76.992000pt;}
.w23{width:91.392000pt;}
.w21{width:93.920000pt;}
.w52{width:95.232000pt;}
.w50{width:98.272000pt;}
.w4e{width:99.232000pt;}
.w4f{width:101.952000pt;}
.w19{width:105.632000pt;}
.wf{width:108.160000pt;}
.w18{width:111.712000pt;}
.w38{width:118.592000pt;}
.w51{width:119.840000pt;}
.we{width:120.672000pt;}
.w14{width:121.792000pt;}
.w1a{width:123.072000pt;}
.w3a{width:124.672000pt;}
.w26{width:127.232000pt;}
.w25{width:128.352000pt;}
.wc{width:135.066667pt;}
.w1e{width:135.386667pt;}
.w3b{width:137.306667pt;}
.w39{width:143.546667pt;}
.w1c{width:203.066667pt;}
.w4d{width:220.346667pt;}
.w29{width:249.986667pt;}
.w4a{width:259.586667pt;}
.w48{width:260.066667pt;}
.w37{width:261.986667pt;}
.w36{width:262.146667pt;}
.w24{width:270.626667pt;}
.w49{width:276.706667pt;}
.w4b{width:277.346667pt;}
.w46{width:285.056960pt;}
.w44{width:285.124127pt;}
.w28{width:292.226667pt;}
.w45{width:294.813333pt;}
.w47{width:294.946667pt;}
.w1d{width:319.133333pt;}
.w4c{width:319.773333pt;}
.w34{width:339.773333pt;}
.w17{width:340.413333pt;}
.w12{width:543.813333pt;}
.w3{width:602.053333pt;}
.wb{width:641.088000pt;}
.w9{width:641.408000pt;}
.w6{width:644.448000pt;}
.w1{width:718.000000pt;}
.w2{width:718.239989pt;}
.w0{width:718.240000pt;}
.x10{left:-1.760000pt;}
.x0{left:0.000000pt;}
.x48{left:7.200000pt;}
.x56{left:8.320000pt;}
.x4f{left:10.080000pt;}
.x5b{left:11.360000pt;}
.x53{left:12.320000pt;}
.x54{left:13.600000pt;}
.x4d{left:15.520000pt;}
.x59{left:17.120000pt;}
.x50{left:18.560000pt;}
.x5c{left:19.872000pt;}
.x5d{left:21.600000pt;}
.x14{left:23.072000pt;}
.x20{left:25.960000pt;}
.x16{left:27.400000pt;}
.x41{left:28.840000pt;}
.x22{left:30.600000pt;}
.x23{left:31.520000pt;}
.x1f{left:34.080000pt;}
.x1d{left:35.880000pt;}
.x44{left:37.440000pt;}
.x43{left:39.072000pt;}
.x1b{left:42.400000pt;}
.x3d{left:45.114667pt;}
.x19{left:49.120000pt;}
.x18{left:50.560000pt;}
.x45{left:51.840000pt;}
.x21{left:52.960000pt;}
.x24{left:60.160000pt;}
.x25{left:62.720000pt;}
.x1{left:64.319989pt;}
.xf{left:66.719989pt;}
.xd{left:69.471989pt;}
.x2{left:71.552000pt;}
.x11{left:73.792000pt;}
.x6{left:74.751989pt;}
.x13{left:76.832000pt;}
.x12{left:77.791989pt;}
.x5{left:80.351989pt;}
.x7f{left:88.351989pt;}
.x30{left:90.266667pt;}
.x4b{left:91.840000pt;}
.x67{left:94.595501pt;}
.x6b{left:97.537708pt;}
.x64{left:99.537454pt;}
.x8{left:111.711989pt;}
.x31{left:114.586667pt;}
.xa{left:116.991989pt;}
.x47{left:119.240000pt;}
.x4a{left:121.160000pt;}
.x5e{left:129.952000pt;}
.x3b{left:131.872000pt;}
.x4c{left:139.866667pt;}
.x6d{left:144.567392pt;}
.x34{left:146.746667pt;}
.x3c{left:151.706667pt;}
.x6c{left:159.429266pt;}
.x66{left:160.949411pt;}
.x7a{left:163.546667pt;}
.x46{left:167.226667pt;}
.x3{left:175.394667pt;}
.x2a{left:184.866667pt;}
.x2e{left:186.466667pt;}
.x36{left:189.306667pt;}
.x15{left:199.386667pt;}
.x4e{left:201.466667pt;}
.x32{left:203.746667pt;}
.x6e{left:210.431318pt;}
.x68{left:211.469310pt;}
.x70{left:216.546667pt;}
.x6f{left:228.386656pt;}
.x9{left:234.466656pt;}
.x65{left:238.208553pt;}
.x26{left:244.706667pt;}
.x5f{left:248.546667pt;}
.x27{left:253.026667pt;}
.x71{left:254.306667pt;}
.x2b{left:255.746667pt;}
.x37{left:257.026667pt;}
.x33{left:262.146667pt;}
.x7b{left:265.506667pt;}
.x3e{left:267.266667pt;}
.x17{left:271.426667pt;}
.x75{left:273.826667pt;}
.x7{left:280.546656pt;}
.x28{left:289.026667pt;}
.x69{left:292.386667pt;}
.x49{left:295.586667pt;}
.x2c{left:297.693333pt;}
.x51{left:298.786667pt;}
.x38{left:310.466667pt;}
.x77{left:314.013333pt;}
.x76{left:317.533333pt;}
.x61{left:320.386667pt;}
.x72{left:324.226667pt;}
.x73{left:327.746667pt;}
.x74{left:331.426667pt;}
.x35{left:335.453333pt;}
.x2f{left:338.813333pt;}
.x2d{left:340.093333pt;}
.x52{left:341.986667pt;}
.xe{left:352.546656pt;}
.xb{left:359.133323pt;}
.x7c{left:363.773333pt;}
.x6a{left:366.346630pt;}
.x78{left:383.933333pt;}
.x79{left:387.773333pt;}
.x1a{left:392.093333pt;}
.x3f{left:403.773333pt;}
.x39{left:422.173333pt;}
.x62{left:454.493333pt;}
.x55{left:462.013333pt;}
.x7d{left:483.613333pt;}
.x40{left:497.693333pt;}
.x1c{left:500.253333pt;}
.x57{left:512.933333pt;}
.x60{left:516.773333pt;}
.x3a{left:527.813333pt;}
.x58{left:556.613333pt;}
.x42{left:562.693333pt;}
.x1e{left:577.253333pt;}
.x7e{left:578.853333pt;}
.x63{left:592.133333pt;}
.x5a{left:596.933333pt;}
.x4{left:601.088000pt;}
.x29{left:608.133333pt;}
.xc{left:654.079989pt;}
}




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