
    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_51100e7a891505516e4091d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.062000;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_3fe1291fac02ed4a2a60ee14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.042000;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_6e038b17b3e1cdd8ed44fcd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049000;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_ff33b83268ae1b3209c548b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.042000;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_95ba9bfce615dc605d3aa08e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_e5c5ca539eb476a3f2887f4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.042000;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_e9434f858f6e2aca54388044.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_1b87e2728aba380484e2b3d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049000;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_806db3139bccb93377b197a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8fcca28cd3d65f1b96c3bf01.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls23{letter-spacing:-11.460000px;}
.lsf{letter-spacing:-1.728000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls50{letter-spacing:-0.590400px;}
.ls44{letter-spacing:-0.490800px;}
.ls8{letter-spacing:-0.450000px;}
.ls5f{letter-spacing:-0.432000px;}
.ls68{letter-spacing:-0.360000px;}
.ls6a{letter-spacing:-0.348600px;}
.ls14{letter-spacing:-0.288000px;}
.ls45{letter-spacing:-0.230400px;}
.ls64{letter-spacing:-0.224400px;}
.ls6b{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.184200px;}
.ls5{letter-spacing:-0.144000px;}
.ls5e{letter-spacing:-0.097200px;}
.ls4{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.000001px;}
.ls16{letter-spacing:0.000003px;}
.ls11{letter-spacing:0.010080px;}
.ls60{letter-spacing:0.030240px;}
.ls1e{letter-spacing:0.066960px;}
.ls12{letter-spacing:0.072000px;}
.ls3c{letter-spacing:0.115200px;}
.ls31{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.123000px;}
.lsb{letter-spacing:0.129600px;}
.ls24{letter-spacing:0.138240px;}
.ls13{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.168480px;}
.ls48{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.219000px;}
.ls1{letter-spacing:0.228960px;}
.ls2e{letter-spacing:0.229200px;}
.ls6f{letter-spacing:0.235200px;}
.ls3e{letter-spacing:0.237600px;}
.ls19{letter-spacing:0.288000px;}
.ls61{letter-spacing:0.290880px;}
.ls10{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.368400px;}
.lsd{letter-spacing:0.371520px;}
.ls3{letter-spacing:0.374400px;}
.ls1a{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.485280px;}
.ls3d{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.535800px;}
.ls52{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.720000px;}
.ls75{letter-spacing:0.750240px;}
.ls5c{letter-spacing:0.792000px;}
.ls3b{letter-spacing:0.835200px;}
.ls42{letter-spacing:0.846000px;}
.ls36{letter-spacing:0.948000px;}
.ls51{letter-spacing:1.010880px;}
.ls56{letter-spacing:1.440000px;}
.ls63{letter-spacing:1.554000px;}
.ls35{letter-spacing:2.160000px;}
.ls69{letter-spacing:2.880000px;}
.ls29{letter-spacing:3.600000px;}
.ls28{letter-spacing:4.320000px;}
.ls33{letter-spacing:5.040000px;}
.ls3f{letter-spacing:5.760000px;}
.ls2b{letter-spacing:6.480000px;}
.ls62{letter-spacing:7.200000px;}
.ls4b{letter-spacing:7.920000px;}
.ls5a{letter-spacing:8.100000px;}
.ls5b{letter-spacing:8.640000px;}
.ls32{letter-spacing:9.360000px;}
.ls71{letter-spacing:10.080000px;}
.ls59{letter-spacing:10.800000px;}
.ls1c{letter-spacing:11.304000px;}
.ls55{letter-spacing:11.520000px;}
.ls54{letter-spacing:12.240000px;}
.ls65{letter-spacing:12.960000px;}
.ls39{letter-spacing:13.680000px;}
.ls1d{letter-spacing:14.400000px;}
.ls74{letter-spacing:15.096000px;}
.ls34{letter-spacing:15.120000px;}
.ls40{letter-spacing:15.300000px;}
.ls4f{letter-spacing:16.560000px;}
.ls30{letter-spacing:17.280000px;}
.ls20{letter-spacing:18.000000px;}
.ls6c{letter-spacing:18.840000px;}
.ls67{letter-spacing:19.440000px;}
.ls73{letter-spacing:20.160000px;}
.ls2a{letter-spacing:20.880000px;}
.ls4e{letter-spacing:21.600000px;}
.ls57{letter-spacing:22.320000px;}
.ls58{letter-spacing:22.500000px;}
.ls72{letter-spacing:23.940000px;}
.ls21{letter-spacing:25.200000px;}
.ls6e{letter-spacing:25.920000px;}
.ls47{letter-spacing:28.080000px;}
.ls41{letter-spacing:30.240000px;}
.ls49{letter-spacing:30.960000px;}
.ls70{letter-spacing:33.120000px;}
.ls2f{letter-spacing:34.560000px;}
.ls4c{letter-spacing:35.280000px;}
.ls1f{letter-spacing:38.160000px;}
.ls4a{letter-spacing:40.320000px;}
.ls27{letter-spacing:41.040000px;}
.ls66{letter-spacing:47.520000px;}
.ls53{letter-spacing:48.420000px;}
.ls46{letter-spacing:53.280000px;}
.ls37{letter-spacing:57.000000px;}
.ls38{letter-spacing:62.640000px;}
.ls3a{letter-spacing:64.026720px;}
.ls2c{letter-spacing:99.360000px;}
.ls0{letter-spacing:131.940000px;}
.ls6d{letter-spacing:844.104000px;}
.ls25{letter-spacing:844.164000px;}
.lsc{letter-spacing:844.284000px;}
.lse{letter-spacing:847.686720px;}
.ls43{letter-spacing:847.848000px;}
.ls4d{letter-spacing:847.908000px;}
.ls22{letter-spacing:848.028000px;}
.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;}
}
.ws1f{word-spacing:-72.000000px;}
.ws15{word-spacing:-59.760000px;}
.ws4{word-spacing:-15.785280px;}
.wsf{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.408000px;}
.ws1b{word-spacing:-15.336000px;}
.wse{word-spacing:-15.264000px;}
.ws20{word-spacing:-15.192000px;}
.wsd{word-spacing:-15.120003px;}
.ws2{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.976000px;}
.wsc{word-spacing:-14.832000px;}
.ws26{word-spacing:-14.760000px;}
.ws21{word-spacing:-14.688000px;}
.ws1{word-spacing:-14.616000px;}
.ws0{word-spacing:-14.472000px;}
.ws10{word-spacing:-14.400000px;}
.ws14{word-spacing:-13.497600px;}
.ws17{word-spacing:-13.395600px;}
.wsa{word-spacing:-13.392000px;}
.ws8{word-spacing:-12.924000px;}
.ws12{word-spacing:-12.918000px;}
.ws13{word-spacing:-12.778800px;}
.ws1a{word-spacing:-12.679200px;}
.ws27{word-spacing:-12.559680px;}
.ws3{word-spacing:-12.549600px;}
.ws1e{word-spacing:-12.452400px;}
.ws24{word-spacing:-12.201000px;}
.ws7{word-spacing:-12.131280px;}
.ws6{word-spacing:-12.071520px;}
.ws19{word-spacing:-12.058800px;}
.ws1c{word-spacing:-11.959200px;}
.ws5{word-spacing:-10.890000px;}
.ws22{word-spacing:-10.031280px;}
.ws16{word-spacing:-8.477280px;}
.ws25{word-spacing:-8.435520px;}
.ws23{word-spacing:-8.252880px;}
.ws1d{word-spacing:-7.560000px;}
.ws11{word-spacing:-3.156000px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-13.464000px;}
._e{margin-left:-11.760000px;}
._11{margin-left:-9.960000px;}
._a{margin-left:-8.616000px;}
._10{margin-left:-7.476000px;}
._6{margin-left:-6.264000px;}
._b{margin-left:-4.806000px;}
._7{margin-left:-3.611760px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.536000px;}
._5{width:1.008000px;}
._4{width:2.100000px;}
._d{width:3.167760px;}
._1e{width:4.248000px;}
._1d{width:5.400000px;}
._1f{width:6.432000px;}
._13{width:7.488000px;}
._14{width:8.568000px;}
._28{width:9.864000px;}
._15{width:11.016000px;}
._16{width:12.828000px;}
._17{width:14.112000px;}
._1c{width:16.296000px;}
._1b{width:17.424000px;}
._22{width:18.576000px;}
._27{width:20.304000px;}
._23{width:21.816000px;}
._25{width:22.824000px;}
._24{width:23.904000px;}
._26{width:25.392000px;}
._2b{width:26.424000px;}
._2e{width:27.864000px;}
._33{width:28.872000px;}
._34{width:29.880000px;}
._3c{width:31.332000px;}
._38{width:32.544000px;}
._32{width:34.176000px;}
._3e{width:35.592000px;}
._35{width:36.612000px;}
._20{width:37.632000px;}
._18{width:39.672000px;}
._19{width:40.752000px;}
._1a{width:42.096000px;}
._21{width:43.560000px;}
._42{width:44.568000px;}
._2f{width:46.080000px;}
._43{width:47.160000px;}
._29{width:48.240000px;}
._2a{width:49.608000px;}
._39{width:50.616000px;}
._40{width:52.200000px;}
._3f{width:53.496000px;}
._48{width:55.512000px;}
._37{width:57.144000px;}
._4d{width:60.384000px;}
._3b{width:61.512000px;}
._3a{width:63.120000px;}
._3d{width:64.800000px;}
._4a{width:70.416000px;}
._4b{width:71.448000px;}
._44{width:78.552000px;}
._45{width:79.704000px;}
._49{width:95.904000px;}
._2d{width:98.568000px;}
._2c{width:99.768000px;}
._2{width:475.164000px;}
._8{width:549.238080px;}
._4c{width:847.956000px;}
._3{width:1265.340000px;}
._46{width:1451.510400px;}
._47{width:1453.670400px;}
._30{width:1456.550400px;}
._36{width:1457.990400px;}
._41{width:1460.150400px;}
._31{width:1463.750400px;}
._12{width:1484.630400px;}
._c{width:1486.070400px;}
._9{width:1491.110400px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,29,53);}
.fc4{color:rgb(51,51,51);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y11{bottom:5.400000px;}
.y1e{bottom:5.760000px;}
.y10{bottom:27.000000px;}
.y1d{bottom:28.800000px;}
.y57{bottom:41.034000px;}
.yf{bottom:48.600000px;}
.y1c{bottom:50.400000px;}
.y5{bottom:57.600000px;}
.y56{bottom:59.034000px;}
.ye{bottom:70.200000px;}
.y7e{bottom:70.245000px;}
.y1b{bottom:72.000000px;}
.y55{bottom:77.034000px;}
.y4{bottom:79.056000px;}
.yd{bottom:91.800000px;}
.y7d{bottom:91.845000px;}
.y1a{bottom:93.600000px;}
.y54{bottom:95.034000px;}
.y53{bottom:113.034000px;}
.yc{bottom:113.400000px;}
.y7c{bottom:113.445000px;}
.y58{bottom:114.156000px;}
.y19{bottom:115.200000px;}
.y15b{bottom:120.636000px;}
.y19a{bottom:121.356000px;}
.y9{bottom:124.920000px;}
.y15{bottom:129.285000px;}
.y1f{bottom:130.356000px;}
.y52{bottom:131.034000px;}
.y7b{bottom:135.045000px;}
.yb{bottom:135.360000px;}
.y8{bottom:137.160000px;}
.y18{bottom:137.205000px;}
.y14{bottom:141.525000px;}
.y15a{bottom:142.236000px;}
.y199{bottom:142.956000px;}
.y51{bottom:149.934000px;}
.yad{bottom:154.110000px;}
.y7a{bottom:156.645000px;}
.yc9{bottom:157.710000px;}
.ya{bottom:158.760000px;}
.y17{bottom:160.605000px;}
.y159{bottom:163.830000px;}
.y198{bottom:164.550000px;}
.y50{bottom:171.534000px;}
.yac{bottom:172.110000px;}
.yc8{bottom:175.710000px;}
.y79{bottom:178.245000px;}
.y16{bottom:184.005000px;}
.y158{bottom:185.430000px;}
.y13{bottom:185.445000px;}
.y197{bottom:186.150000px;}
.y39{bottom:187.734000px;}
.y160{bottom:189.930000px;}
.y4f{bottom:193.134000px;}
.y82{bottom:195.330000px;}
.yab{bottom:198.210000px;}
.y78{bottom:199.845000px;}
.yc7{bottom:201.810000px;}
.y157{bottom:207.030000px;}
.y196{bottom:207.750000px;}
.y38{bottom:207.939000px;}
.y15f{bottom:212.970000px;}
.y4e{bottom:214.779000px;}
.y81{bottom:216.930000px;}
.y77{bottom:221.445000px;}
.y88{bottom:223.230000px;}
.y37{bottom:224.139000px;}
.yaa{bottom:227.550000px;}
.y156{bottom:228.630000px;}
.y195{bottom:229.350000px;}
.yc6{bottom:231.150000px;}
.y1a2{bottom:231.330000px;}
.y15e{bottom:234.750000px;}
.y4d{bottom:236.379000px;}
.y80{bottom:238.530000px;}
.y36{bottom:240.339000px;}
.y87{bottom:241.230000px;}
.y76{bottom:243.045000px;}
.y155{bottom:250.230000px;}
.y194{bottom:250.950000px;}
.y1a1{bottom:252.930000px;}
.y83{bottom:254.730000px;}
.y35{bottom:256.539000px;}
.ya9{bottom:257.430000px;}
.y4c{bottom:257.979000px;}
.y7f{bottom:260.130000px;}
.yc5{bottom:261.030000px;}
.y75{bottom:264.645000px;}
.y15d{bottom:270.030000px;}
.y154{bottom:271.830000px;}
.y193{bottom:272.550000px;}
.y34{bottom:272.739000px;}
.y1a0{bottom:274.530000px;}
.y5a{bottom:276.330000px;}
.ya8{bottom:278.130000px;}
.y4b{bottom:279.579000px;}
.yc4{bottom:281.730000px;}
.y74{bottom:286.245000px;}
.y33{bottom:288.939000px;}
.y184{bottom:291.810000px;}
.y15c{bottom:293.250000px;}
.y153{bottom:293.430000px;}
.y192{bottom:294.150000px;}
.y19f{bottom:296.130000px;}
.ya7{bottom:297.030000px;}
.yc3{bottom:299.730000px;}
.y4a{bottom:300.279000px;}
.y32{bottom:305.139000px;}
.y73{bottom:307.845000px;}
.y183{bottom:313.410000px;}
.y152{bottom:315.030000px;}
.y191{bottom:315.750000px;}
.y188{bottom:315.930000px;}
.y19e{bottom:317.730000px;}
.y49{bottom:318.279000px;}
.yc2{bottom:318.630000px;}
.y31{bottom:321.339000px;}
.y1a3{bottom:323.850000px;}
.ya6{bottom:326.190000px;}
.y86{bottom:329.445000px;}
.y72{bottom:329.475000px;}
.y182{bottom:335.010000px;}
.y48{bottom:336.279000px;}
.y14e{bottom:336.675000px;}
.y30{bottom:337.539000px;}
.y187{bottom:337.575000px;}
.y190{bottom:337.935000px;}
.y19d{bottom:339.375000px;}
.yeb{bottom:344.775000px;}
.ya5{bottom:347.835000px;}
.y71{bottom:351.075000px;}
.y2f{bottom:353.739000px;}
.y47{bottom:355.179000px;}
.y1c5{bottom:356.475000px;}
.y181{bottom:356.655000px;}
.y14d{bottom:358.275000px;}
.y186{bottom:359.175000px;}
.y18f{bottom:359.535000px;}
.y19c{bottom:360.975000px;}
.yea{bottom:366.375000px;}
.yc1{bottom:369.435000px;}
.y2e{bottom:369.939000px;}
.y70{bottom:372.675000px;}
.y46{bottom:375.879000px;}
.ya4{bottom:376.815000px;}
.y1c4{bottom:378.075000px;}
.y180{bottom:378.255000px;}
.y14c{bottom:379.875000px;}
.y12b{bottom:380.775000px;}
.y18e{bottom:381.855000px;}
.y19b{bottom:382.575000px;}
.y2d{bottom:386.139000px;}
.ye9{bottom:387.975000px;}
.y6f{bottom:394.275000px;}
.y45{bottom:394.779000px;}
.yc0{bottom:398.415000px;}
.y1c3{bottom:399.675000px;}
.y17f{bottom:399.855000px;}
.y14b{bottom:401.475000px;}
.y2c{bottom:402.339000px;}
.y12a{bottom:402.375000px;}
.y1fa{bottom:403.275000px;}
.y18d{bottom:404.175000px;}
.ya3{bottom:405.975000px;}
.ye8{bottom:409.575000px;}
.y44{bottom:415.479000px;}
.y151{bottom:415.515000px;}
.y6e{bottom:415.875000px;}
.y12e{bottom:416.415000px;}
.y2b{bottom:418.539000px;}
.y1c2{bottom:421.275000px;}
.y17e{bottom:421.455000px;}
.y14a{bottom:423.075000px;}
.y129{bottom:423.975000px;}
.y1f9{bottom:424.875000px;}
.y109{bottom:425.775000px;}
.ybf{bottom:427.575000px;}
.ye7{bottom:431.175000px;}
.y43{bottom:433.479000px;}
.y2a{bottom:434.739000px;}
.ya2{bottom:435.135000px;}
.y6d{bottom:437.475000px;}
.y1c1{bottom:442.875000px;}
.y17d{bottom:443.055000px;}
.y149{bottom:444.675000px;}
.y128{bottom:445.575000px;}
.y1f8{bottom:446.475000px;}
.y108{bottom:447.375000px;}
.ybe{bottom:449.175000px;}
.y150{bottom:450.795000px;}
.y29{bottom:450.939000px;}
.y42{bottom:451.479000px;}
.y12d{bottom:451.695000px;}
.ye6{bottom:452.775000px;}
.y6c{bottom:459.075000px;}
.ya1{bottom:464.115000px;}
.y1c0{bottom:464.475000px;}
.y17c{bottom:464.655000px;}
.y148{bottom:466.275000px;}
.y28{bottom:467.139000px;}
.y127{bottom:467.175000px;}
.y1f7{bottom:468.075000px;}
.y107{bottom:468.975000px;}
.y41{bottom:469.479000px;}
.y14f{bottom:474.015000px;}
.ye5{bottom:474.375000px;}
.y12c{bottom:474.915000px;}
.ybd{bottom:478.335000px;}
.y6b{bottom:480.675000px;}
.y27{bottom:483.369000px;}
.y1bf{bottom:486.075000px;}
.y17b{bottom:486.255000px;}
.y40{bottom:487.509000px;}
.y147{bottom:487.875000px;}
.y126{bottom:488.775000px;}
.y1f6{bottom:489.675000px;}
.y106{bottom:490.575000px;}
.ya0{bottom:493.275000px;}
.ye4{bottom:495.975000px;}
.y26{bottom:499.569000px;}
.y6a{bottom:502.275000px;}
.y3f{bottom:505.509000px;}
.ybc{bottom:507.315000px;}
.y1be{bottom:507.675000px;}
.y17a{bottom:507.855000px;}
.y146{bottom:509.475000px;}
.y125{bottom:510.375000px;}
.y1f5{bottom:511.275000px;}
.y105{bottom:512.175000px;}
.y9f{bottom:514.875000px;}
.y25{bottom:515.769000px;}
.ye3{bottom:517.575000px;}
.y3e{bottom:523.509000px;}
.y69{bottom:523.875000px;}
.y1bd{bottom:529.275000px;}
.y179{bottom:529.455000px;}
.y145{bottom:531.075000px;}
.y24{bottom:531.969000px;}
.y124{bottom:531.975000px;}
.y1f4{bottom:532.875000px;}
.y104{bottom:533.775000px;}
.ybb{bottom:536.475000px;}
.ye2{bottom:539.175000px;}
.y3d{bottom:541.509000px;}
.y9e{bottom:544.035000px;}
.y68{bottom:545.475000px;}
.y23{bottom:548.169000px;}
.y1bc{bottom:550.875000px;}
.y178{bottom:551.055000px;}
.y144{bottom:552.675000px;}
.y123{bottom:553.575000px;}
.y1f3{bottom:554.475000px;}
.y103{bottom:555.375000px;}
.yba{bottom:558.075000px;}
.y3c{bottom:559.509000px;}
.ye1{bottom:560.775000px;}
.y22{bottom:564.369000px;}
.y9d{bottom:565.635000px;}
.y67{bottom:567.075000px;}
.y1bb{bottom:572.475000px;}
.y177{bottom:572.655000px;}
.y143{bottom:574.275000px;}
.y122{bottom:575.175000px;}
.y1f2{bottom:576.075000px;}
.y102{bottom:576.975000px;}
.y3b{bottom:577.509000px;}
.y1db{bottom:577.875000px;}
.y21{bottom:580.569000px;}
.ye0{bottom:582.375000px;}
.yb9{bottom:587.235000px;}
.y66{bottom:588.675000px;}
.y1ba{bottom:594.075000px;}
.y176{bottom:594.255000px;}
.y9c{bottom:594.615000px;}
.y142{bottom:595.875000px;}
.y3a{bottom:596.769000px;}
.y121{bottom:596.775000px;}
.y1f1{bottom:597.675000px;}
.y20{bottom:598.209000px;}
.y101{bottom:598.575000px;}
.y1da{bottom:599.475000px;}
.ydf{bottom:604.005000px;}
.yb8{bottom:608.865000px;}
.y85{bottom:610.275000px;}
.y65{bottom:610.320000px;}
.y1b9{bottom:615.705000px;}
.y175{bottom:615.885000px;}
.y9b{bottom:616.245000px;}
.y141{bottom:617.505000px;}
.y120{bottom:618.405000px;}
.y1f0{bottom:619.305000px;}
.y100{bottom:620.205000px;}
.y1d9{bottom:621.105000px;}
.yde{bottom:625.605000px;}
.y64{bottom:631.920000px;}
.y1b8{bottom:637.305000px;}
.y174{bottom:637.485000px;}
.yb7{bottom:637.845000px;}
.y140{bottom:639.105000px;}
.y11f{bottom:640.005000px;}
.y1ef{bottom:640.905000px;}
.yff{bottom:641.805000px;}
.y1d8{bottom:642.705000px;}
.y9a{bottom:645.405000px;}
.ydd{bottom:647.205000px;}
.y63{bottom:653.520000px;}
.y1b7{bottom:658.905000px;}
.y173{bottom:659.085000px;}
.yb6{bottom:659.445000px;}
.y13f{bottom:660.705000px;}
.y11e{bottom:661.605000px;}
.y1ee{bottom:662.505000px;}
.yfe{bottom:663.405000px;}
.y1d7{bottom:664.305000px;}
.ydc{bottom:668.805000px;}
.y99{bottom:674.565000px;}
.y62{bottom:675.120000px;}
.y1b6{bottom:680.505000px;}
.y172{bottom:680.685000px;}
.y13e{bottom:682.305000px;}
.y11d{bottom:683.205000px;}
.y1ed{bottom:684.105000px;}
.yfd{bottom:685.005000px;}
.y1d6{bottom:685.905000px;}
.yb5{bottom:688.605000px;}
.ydb{bottom:690.765000px;}
.y98{bottom:696.165000px;}
.y61{bottom:696.720000px;}
.y1b5{bottom:702.105000px;}
.y171{bottom:702.285000px;}
.y13d{bottom:703.905000px;}
.y11c{bottom:704.805000px;}
.y1ec{bottom:705.705000px;}
.yfc{bottom:706.605000px;}
.y1d5{bottom:707.505000px;}
.yda{bottom:713.805000px;}
.yb4{bottom:717.765000px;}
.y60{bottom:718.320000px;}
.y1b4{bottom:723.705000px;}
.y170{bottom:723.885000px;}
.y97{bottom:725.145000px;}
.y13c{bottom:725.505000px;}
.y11b{bottom:726.405000px;}
.y1eb{bottom:727.305000px;}
.yfb{bottom:728.205000px;}
.y1d4{bottom:729.105000px;}
.yd9{bottom:735.405000px;}
.yb3{bottom:739.365000px;}
.y5f{bottom:739.920000px;}
.y1b3{bottom:745.305000px;}
.y12{bottom:745.485000px;}
.y13b{bottom:747.105000px;}
.y11a{bottom:748.005000px;}
.y1ea{bottom:748.905000px;}
.yfa{bottom:749.805000px;}
.y1d3{bottom:750.705000px;}
.y96{bottom:754.305000px;}
.yd8{bottom:757.005000px;}
.y5e{bottom:761.520000px;}
.y1b2{bottom:766.905000px;}
.y16f{bottom:767.085000px;}
.yb2{bottom:768.345000px;}
.y13a{bottom:768.705000px;}
.y119{bottom:769.605000px;}
.y1e9{bottom:770.505000px;}
.yf9{bottom:771.405000px;}
.y1d2{bottom:772.305000px;}
.yd7{bottom:778.605000px;}
.y5d{bottom:783.120000px;}
.y95{bottom:783.465000px;}
.y1b1{bottom:788.505000px;}
.y16e{bottom:788.685000px;}
.y139{bottom:790.305000px;}
.y118{bottom:791.205000px;}
.y1e8{bottom:792.105000px;}
.yf8{bottom:793.005000px;}
.y1d1{bottom:793.905000px;}
.yb1{bottom:797.505000px;}
.yd6{bottom:800.205000px;}
.y5c{bottom:804.720000px;}
.y94{bottom:805.065000px;}
.y1b0{bottom:810.105000px;}
.y16d{bottom:810.285000px;}
.y138{bottom:811.905000px;}
.y117{bottom:812.805000px;}
.y1e7{bottom:813.705000px;}
.yf7{bottom:814.605000px;}
.y1d0{bottom:815.505000px;}
.yd5{bottom:821.805000px;}
.y5b{bottom:826.320000px;}
.yb0{bottom:826.665000px;}
.y1af{bottom:831.705000px;}
.y16c{bottom:831.885000px;}
.y137{bottom:833.505000px;}
.y93{bottom:834.045000px;}
.y116{bottom:834.405000px;}
.y1e6{bottom:835.305000px;}
.yf6{bottom:836.205000px;}
.y1cf{bottom:837.105000px;}
.yd4{bottom:843.405000px;}
.y84{bottom:847.920000px;}
.y1ae{bottom:853.305000px;}
.y16b{bottom:853.485000px;}
.y136{bottom:855.105000px;}
.yaf{bottom:855.645000px;}
.y115{bottom:856.005000px;}
.y1e5{bottom:856.905000px;}
.yf5{bottom:857.805000px;}
.y1ce{bottom:858.705000px;}
.y92{bottom:863.205000px;}
.yd3{bottom:865.005000px;}
.y1ad{bottom:874.950000px;}
.y16a{bottom:875.130000px;}
.y135{bottom:876.750000px;}
.y114{bottom:877.650000px;}
.y1e4{bottom:878.550000px;}
.yf4{bottom:879.450000px;}
.y1cd{bottom:880.350000px;}
.y91{bottom:884.850000px;}
.yd2{bottom:886.650000px;}
.y1ac{bottom:896.550000px;}
.y169{bottom:896.730000px;}
.y134{bottom:898.350000px;}
.y113{bottom:899.250000px;}
.y1e3{bottom:900.150000px;}
.yf3{bottom:901.050000px;}
.y1cc{bottom:901.950000px;}
.yae{bottom:906.450000px;}
.yd1{bottom:908.250000px;}
.y90{bottom:914.010000px;}
.y1ab{bottom:918.150000px;}
.y168{bottom:918.330000px;}
.y133{bottom:919.950000px;}
.y112{bottom:920.850000px;}
.y1e2{bottom:921.750000px;}
.yf2{bottom:922.650000px;}
.y1cb{bottom:923.550000px;}
.yd0{bottom:929.850000px;}
.y8f{bottom:935.610000px;}
.y1aa{bottom:939.750000px;}
.y167{bottom:939.930000px;}
.y132{bottom:941.550000px;}
.y111{bottom:942.450000px;}
.y1e1{bottom:943.350000px;}
.yf1{bottom:944.250000px;}
.y1ca{bottom:945.150000px;}
.y7{bottom:947.850000px;}
.ycf{bottom:951.450000px;}
.y1a9{bottom:961.350000px;}
.y166{bottom:961.530000px;}
.y131{bottom:963.150000px;}
.y110{bottom:964.050000px;}
.y8e{bottom:964.590000px;}
.y1e0{bottom:964.950000px;}
.yf0{bottom:965.850000px;}
.y1c9{bottom:966.750000px;}
.yce{bottom:973.050000px;}
.y18c{bottom:976.650000px;}
.y1fd{bottom:979.170000px;}
.y1a8{bottom:982.950000px;}
.y165{bottom:983.130000px;}
.y130{bottom:984.750000px;}
.y10f{bottom:985.650000px;}
.y1df{bottom:986.550000px;}
.yef{bottom:987.450000px;}
.y8d{bottom:993.750000px;}
.ycd{bottom:994.650000px;}
.y1c8{bottom:999.150000px;}
.y18b{bottom:1002.570000px;}
.y164{bottom:1004.730000px;}
.y12f{bottom:1006.350000px;}
.y1de{bottom:1008.150000px;}
.yee{bottom:1009.050000px;}
.y1a7{bottom:1015.350000px;}
.ycc{bottom:1016.250000px;}
.y10e{bottom:1018.050000px;}
.y1dd{bottom:1019.850000px;}
.y1fc{bottom:1020.570000px;}
.y8c{bottom:1022.910000px;}
.y18a{bottom:1023.270000px;}
.y1c7{bottom:1025.070000px;}
.y163{bottom:1025.430000px;}
.y1fb{bottom:1029.750000px;}
.y1a6{bottom:1034.250000px;}
.ycb{bottom:1037.850000px;}
.y10d{bottom:1038.750000px;}
.y1dc{bottom:1040.550000px;}
.yed{bottom:1041.450000px;}
.y189{bottom:1043.970000px;}
.y185{bottom:1044.150000px;}
.y1c6{bottom:1045.770000px;}
.y162{bottom:1049.370000px;}
.y8b{bottom:1051.890000px;}
.y1a5{bottom:1055.850000px;}
.y10c{bottom:1057.650000px;}
.yca{bottom:1059.450000px;}
.yec{bottom:1062.150000px;}
.y161{bottom:1067.370000px;}
.y1a4{bottom:1077.810000px;}
.y10b{bottom:1079.250000px;}
.y8a{bottom:1081.050000px;}
.y10a{bottom:1101.210000px;}
.y89{bottom:1102.650000px;}
.y59{bottom:1124.610000px;}
.y6{bottom:1128.750000px;}
.y3{bottom:1147.680000px;}
.y2{bottom:1169.280000px;}
.y1{bottom:1193.580000px;}
.h11{height:30.420000px;}
.h7{height:45.630000px;}
.h5{height:50.497200px;}
.hb{height:51.632640px;}
.hc{height:51.692400px;}
.h12{height:59.439023px;}
.h4{height:60.840000px;}
.hf{height:60.855469px;}
.h3{height:62.208000px;}
.h2{height:62.280000px;}
.h8{height:67.262400px;}
.h10{height:71.613281px;}
.h6{height:176.400000px;}
.h9{height:201.630000px;}
.ha{height:614.415000px;}
.hd{height:842.505000px;}
.he{height:864.105000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:202.215000px;}
.w5{width:361.155000px;}
.w4{width:531.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.136000px;}
.x1{left:84.959987px;}
.x8{left:111.995987px;}
.x5{left:188.130000px;}
.x2{left:189.210000px;}
.x6{left:190.290000px;}
.x4{left:287.175000px;}
.x7{left:446.115000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls23{letter-spacing:-10.186667pt;}
.lsf{letter-spacing:-1.536000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls50{letter-spacing:-0.524800pt;}
.ls44{letter-spacing:-0.436267pt;}
.ls8{letter-spacing:-0.400000pt;}
.ls5f{letter-spacing:-0.384000pt;}
.ls68{letter-spacing:-0.320000pt;}
.ls6a{letter-spacing:-0.309867pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls45{letter-spacing:-0.204800pt;}
.ls64{letter-spacing:-0.199467pt;}
.ls6b{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.163733pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls5e{letter-spacing:-0.086400pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.000001pt;}
.ls16{letter-spacing:0.000003pt;}
.ls11{letter-spacing:0.008960pt;}
.ls60{letter-spacing:0.026880pt;}
.ls1e{letter-spacing:0.059520pt;}
.ls12{letter-spacing:0.064000pt;}
.ls3c{letter-spacing:0.102400pt;}
.ls31{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.109333pt;}
.lsb{letter-spacing:0.115200pt;}
.ls24{letter-spacing:0.122880pt;}
.ls13{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.149760pt;}
.ls48{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.194667pt;}
.ls1{letter-spacing:0.203520pt;}
.ls2e{letter-spacing:0.203733pt;}
.ls6f{letter-spacing:0.209067pt;}
.ls3e{letter-spacing:0.211200pt;}
.ls19{letter-spacing:0.256000pt;}
.ls61{letter-spacing:0.258560pt;}
.ls10{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.327467pt;}
.lsd{letter-spacing:0.330240pt;}
.ls3{letter-spacing:0.332800pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.431360pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.476267pt;}
.ls52{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls75{letter-spacing:0.666880pt;}
.ls5c{letter-spacing:0.704000pt;}
.ls3b{letter-spacing:0.742400pt;}
.ls42{letter-spacing:0.752000pt;}
.ls36{letter-spacing:0.842667pt;}
.ls51{letter-spacing:0.898560pt;}
.ls56{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.381333pt;}
.ls35{letter-spacing:1.920000pt;}
.ls69{letter-spacing:2.560000pt;}
.ls29{letter-spacing:3.200000pt;}
.ls28{letter-spacing:3.840000pt;}
.ls33{letter-spacing:4.480000pt;}
.ls3f{letter-spacing:5.120000pt;}
.ls2b{letter-spacing:5.760000pt;}
.ls62{letter-spacing:6.400000pt;}
.ls4b{letter-spacing:7.040000pt;}
.ls5a{letter-spacing:7.200000pt;}
.ls5b{letter-spacing:7.680000pt;}
.ls32{letter-spacing:8.320000pt;}
.ls71{letter-spacing:8.960000pt;}
.ls59{letter-spacing:9.600000pt;}
.ls1c{letter-spacing:10.048000pt;}
.ls55{letter-spacing:10.240000pt;}
.ls54{letter-spacing:10.880000pt;}
.ls65{letter-spacing:11.520000pt;}
.ls39{letter-spacing:12.160000pt;}
.ls1d{letter-spacing:12.800000pt;}
.ls74{letter-spacing:13.418667pt;}
.ls34{letter-spacing:13.440000pt;}
.ls40{letter-spacing:13.600000pt;}
.ls4f{letter-spacing:14.720000pt;}
.ls30{letter-spacing:15.360000pt;}
.ls20{letter-spacing:16.000000pt;}
.ls6c{letter-spacing:16.746667pt;}
.ls67{letter-spacing:17.280000pt;}
.ls73{letter-spacing:17.920000pt;}
.ls2a{letter-spacing:18.560000pt;}
.ls4e{letter-spacing:19.200000pt;}
.ls57{letter-spacing:19.840000pt;}
.ls58{letter-spacing:20.000000pt;}
.ls72{letter-spacing:21.280000pt;}
.ls21{letter-spacing:22.400000pt;}
.ls6e{letter-spacing:23.040000pt;}
.ls47{letter-spacing:24.960000pt;}
.ls41{letter-spacing:26.880000pt;}
.ls49{letter-spacing:27.520000pt;}
.ls70{letter-spacing:29.440000pt;}
.ls2f{letter-spacing:30.720000pt;}
.ls4c{letter-spacing:31.360000pt;}
.ls1f{letter-spacing:33.920000pt;}
.ls4a{letter-spacing:35.840000pt;}
.ls27{letter-spacing:36.480000pt;}
.ls66{letter-spacing:42.240000pt;}
.ls53{letter-spacing:43.040000pt;}
.ls46{letter-spacing:47.360000pt;}
.ls37{letter-spacing:50.666667pt;}
.ls38{letter-spacing:55.680000pt;}
.ls3a{letter-spacing:56.912640pt;}
.ls2c{letter-spacing:88.320000pt;}
.ls0{letter-spacing:117.280000pt;}
.ls6d{letter-spacing:750.314667pt;}
.ls25{letter-spacing:750.368000pt;}
.lsc{letter-spacing:750.474667pt;}
.lse{letter-spacing:753.499307pt;}
.ls43{letter-spacing:753.642667pt;}
.ls4d{letter-spacing:753.696000pt;}
.ls22{letter-spacing:753.802667pt;}
.ws1f{word-spacing:-64.000000pt;}
.ws15{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.031360pt;}
.wsf{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.696000pt;}
.ws1b{word-spacing:-13.632000pt;}
.wse{word-spacing:-13.568000pt;}
.ws20{word-spacing:-13.504000pt;}
.wsd{word-spacing:-13.440003pt;}
.ws2{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.312000pt;}
.wsc{word-spacing:-13.184000pt;}
.ws26{word-spacing:-13.120000pt;}
.ws21{word-spacing:-13.056000pt;}
.ws1{word-spacing:-12.992000pt;}
.ws0{word-spacing:-12.864000pt;}
.ws10{word-spacing:-12.800000pt;}
.ws14{word-spacing:-11.997867pt;}
.ws17{word-spacing:-11.907200pt;}
.wsa{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.488000pt;}
.ws12{word-spacing:-11.482667pt;}
.ws13{word-spacing:-11.358933pt;}
.ws1a{word-spacing:-11.270400pt;}
.ws27{word-spacing:-11.164160pt;}
.ws3{word-spacing:-11.155200pt;}
.ws1e{word-spacing:-11.068800pt;}
.ws24{word-spacing:-10.845333pt;}
.ws7{word-spacing:-10.783360pt;}
.ws6{word-spacing:-10.730240pt;}
.ws19{word-spacing:-10.718933pt;}
.ws1c{word-spacing:-10.630400pt;}
.ws5{word-spacing:-9.680000pt;}
.ws22{word-spacing:-8.916693pt;}
.ws16{word-spacing:-7.535360pt;}
.ws25{word-spacing:-7.498240pt;}
.ws23{word-spacing:-7.335893pt;}
.ws1d{word-spacing:-6.720000pt;}
.ws11{word-spacing:-2.805333pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-11.968000pt;}
._e{margin-left:-10.453333pt;}
._11{margin-left:-8.853333pt;}
._a{margin-left:-7.658667pt;}
._10{margin-left:-6.645333pt;}
._6{margin-left:-5.568000pt;}
._b{margin-left:-4.272000pt;}
._7{margin-left:-3.210453pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.365333pt;}
._5{width:0.896000pt;}
._4{width:1.866667pt;}
._d{width:2.815787pt;}
._1e{width:3.776000pt;}
._1d{width:4.800000pt;}
._1f{width:5.717333pt;}
._13{width:6.656000pt;}
._14{width:7.616000pt;}
._28{width:8.768000pt;}
._15{width:9.792000pt;}
._16{width:11.402667pt;}
._17{width:12.544000pt;}
._1c{width:14.485333pt;}
._1b{width:15.488000pt;}
._22{width:16.512000pt;}
._27{width:18.048000pt;}
._23{width:19.392000pt;}
._25{width:20.288000pt;}
._24{width:21.248000pt;}
._26{width:22.570667pt;}
._2b{width:23.488000pt;}
._2e{width:24.768000pt;}
._33{width:25.664000pt;}
._34{width:26.560000pt;}
._3c{width:27.850667pt;}
._38{width:28.928000pt;}
._32{width:30.378667pt;}
._3e{width:31.637333pt;}
._35{width:32.544000pt;}
._20{width:33.450667pt;}
._18{width:35.264000pt;}
._19{width:36.224000pt;}
._1a{width:37.418667pt;}
._21{width:38.720000pt;}
._42{width:39.616000pt;}
._2f{width:40.960000pt;}
._43{width:41.920000pt;}
._29{width:42.880000pt;}
._2a{width:44.096000pt;}
._39{width:44.992000pt;}
._40{width:46.400000pt;}
._3f{width:47.552000pt;}
._48{width:49.344000pt;}
._37{width:50.794667pt;}
._4d{width:53.674667pt;}
._3b{width:54.677333pt;}
._3a{width:56.106667pt;}
._3d{width:57.600000pt;}
._4a{width:62.592000pt;}
._4b{width:63.509333pt;}
._44{width:69.824000pt;}
._45{width:70.848000pt;}
._49{width:85.248000pt;}
._2d{width:87.616000pt;}
._2c{width:88.682667pt;}
._2{width:422.368000pt;}
._8{width:488.211627pt;}
._4c{width:753.738667pt;}
._3{width:1124.746667pt;}
._46{width:1290.231467pt;}
._47{width:1292.151467pt;}
._30{width:1294.711467pt;}
._36{width:1295.991467pt;}
._41{width:1297.911467pt;}
._31{width:1301.111467pt;}
._12{width:1319.671467pt;}
._c{width:1320.951467pt;}
._9{width:1325.431467pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:4.800000pt;}
.y1e{bottom:5.120000pt;}
.y10{bottom:24.000000pt;}
.y1d{bottom:25.600000pt;}
.y57{bottom:36.474667pt;}
.yf{bottom:43.200000pt;}
.y1c{bottom:44.800000pt;}
.y5{bottom:51.200000pt;}
.y56{bottom:52.474667pt;}
.ye{bottom:62.400000pt;}
.y7e{bottom:62.440000pt;}
.y1b{bottom:64.000000pt;}
.y55{bottom:68.474667pt;}
.y4{bottom:70.272000pt;}
.yd{bottom:81.600000pt;}
.y7d{bottom:81.640000pt;}
.y1a{bottom:83.200000pt;}
.y54{bottom:84.474667pt;}
.y53{bottom:100.474667pt;}
.yc{bottom:100.800000pt;}
.y7c{bottom:100.840000pt;}
.y58{bottom:101.472000pt;}
.y19{bottom:102.400000pt;}
.y15b{bottom:107.232000pt;}
.y19a{bottom:107.872000pt;}
.y9{bottom:111.040000pt;}
.y15{bottom:114.920000pt;}
.y1f{bottom:115.872000pt;}
.y52{bottom:116.474667pt;}
.y7b{bottom:120.040000pt;}
.yb{bottom:120.320000pt;}
.y8{bottom:121.920000pt;}
.y18{bottom:121.960000pt;}
.y14{bottom:125.800000pt;}
.y15a{bottom:126.432000pt;}
.y199{bottom:127.072000pt;}
.y51{bottom:133.274667pt;}
.yad{bottom:136.986667pt;}
.y7a{bottom:139.240000pt;}
.yc9{bottom:140.186667pt;}
.ya{bottom:141.120000pt;}
.y17{bottom:142.760000pt;}
.y159{bottom:145.626667pt;}
.y198{bottom:146.266667pt;}
.y50{bottom:152.474667pt;}
.yac{bottom:152.986667pt;}
.yc8{bottom:156.186667pt;}
.y79{bottom:158.440000pt;}
.y16{bottom:163.560000pt;}
.y158{bottom:164.826667pt;}
.y13{bottom:164.840000pt;}
.y197{bottom:165.466667pt;}
.y39{bottom:166.874667pt;}
.y160{bottom:168.826667pt;}
.y4f{bottom:171.674667pt;}
.y82{bottom:173.626667pt;}
.yab{bottom:176.186667pt;}
.y78{bottom:177.640000pt;}
.yc7{bottom:179.386667pt;}
.y157{bottom:184.026667pt;}
.y196{bottom:184.666667pt;}
.y38{bottom:184.834667pt;}
.y15f{bottom:189.306667pt;}
.y4e{bottom:190.914667pt;}
.y81{bottom:192.826667pt;}
.y77{bottom:196.840000pt;}
.y88{bottom:198.426667pt;}
.y37{bottom:199.234667pt;}
.yaa{bottom:202.266667pt;}
.y156{bottom:203.226667pt;}
.y195{bottom:203.866667pt;}
.yc6{bottom:205.466667pt;}
.y1a2{bottom:205.626667pt;}
.y15e{bottom:208.666667pt;}
.y4d{bottom:210.114667pt;}
.y80{bottom:212.026667pt;}
.y36{bottom:213.634667pt;}
.y87{bottom:214.426667pt;}
.y76{bottom:216.040000pt;}
.y155{bottom:222.426667pt;}
.y194{bottom:223.066667pt;}
.y1a1{bottom:224.826667pt;}
.y83{bottom:226.426667pt;}
.y35{bottom:228.034667pt;}
.ya9{bottom:228.826667pt;}
.y4c{bottom:229.314667pt;}
.y7f{bottom:231.226667pt;}
.yc5{bottom:232.026667pt;}
.y75{bottom:235.240000pt;}
.y15d{bottom:240.026667pt;}
.y154{bottom:241.626667pt;}
.y193{bottom:242.266667pt;}
.y34{bottom:242.434667pt;}
.y1a0{bottom:244.026667pt;}
.y5a{bottom:245.626667pt;}
.ya8{bottom:247.226667pt;}
.y4b{bottom:248.514667pt;}
.yc4{bottom:250.426667pt;}
.y74{bottom:254.440000pt;}
.y33{bottom:256.834667pt;}
.y184{bottom:259.386667pt;}
.y15c{bottom:260.666667pt;}
.y153{bottom:260.826667pt;}
.y192{bottom:261.466667pt;}
.y19f{bottom:263.226667pt;}
.ya7{bottom:264.026667pt;}
.yc3{bottom:266.426667pt;}
.y4a{bottom:266.914667pt;}
.y32{bottom:271.234667pt;}
.y73{bottom:273.640000pt;}
.y183{bottom:278.586667pt;}
.y152{bottom:280.026667pt;}
.y191{bottom:280.666667pt;}
.y188{bottom:280.826667pt;}
.y19e{bottom:282.426667pt;}
.y49{bottom:282.914667pt;}
.yc2{bottom:283.226667pt;}
.y31{bottom:285.634667pt;}
.y1a3{bottom:287.866667pt;}
.ya6{bottom:289.946667pt;}
.y86{bottom:292.840000pt;}
.y72{bottom:292.866667pt;}
.y182{bottom:297.786667pt;}
.y48{bottom:298.914667pt;}
.y14e{bottom:299.266667pt;}
.y30{bottom:300.034667pt;}
.y187{bottom:300.066667pt;}
.y190{bottom:300.386667pt;}
.y19d{bottom:301.666667pt;}
.yeb{bottom:306.466667pt;}
.ya5{bottom:309.186667pt;}
.y71{bottom:312.066667pt;}
.y2f{bottom:314.434667pt;}
.y47{bottom:315.714667pt;}
.y1c5{bottom:316.866667pt;}
.y181{bottom:317.026667pt;}
.y14d{bottom:318.466667pt;}
.y186{bottom:319.266667pt;}
.y18f{bottom:319.586667pt;}
.y19c{bottom:320.866667pt;}
.yea{bottom:325.666667pt;}
.yc1{bottom:328.386667pt;}
.y2e{bottom:328.834667pt;}
.y70{bottom:331.266667pt;}
.y46{bottom:334.114667pt;}
.ya4{bottom:334.946667pt;}
.y1c4{bottom:336.066667pt;}
.y180{bottom:336.226667pt;}
.y14c{bottom:337.666667pt;}
.y12b{bottom:338.466667pt;}
.y18e{bottom:339.426667pt;}
.y19b{bottom:340.066667pt;}
.y2d{bottom:343.234667pt;}
.ye9{bottom:344.866667pt;}
.y6f{bottom:350.466667pt;}
.y45{bottom:350.914667pt;}
.yc0{bottom:354.146667pt;}
.y1c3{bottom:355.266667pt;}
.y17f{bottom:355.426667pt;}
.y14b{bottom:356.866667pt;}
.y2c{bottom:357.634667pt;}
.y12a{bottom:357.666667pt;}
.y1fa{bottom:358.466667pt;}
.y18d{bottom:359.266667pt;}
.ya3{bottom:360.866667pt;}
.ye8{bottom:364.066667pt;}
.y44{bottom:369.314667pt;}
.y151{bottom:369.346667pt;}
.y6e{bottom:369.666667pt;}
.y12e{bottom:370.146667pt;}
.y2b{bottom:372.034667pt;}
.y1c2{bottom:374.466667pt;}
.y17e{bottom:374.626667pt;}
.y14a{bottom:376.066667pt;}
.y129{bottom:376.866667pt;}
.y1f9{bottom:377.666667pt;}
.y109{bottom:378.466667pt;}
.ybf{bottom:380.066667pt;}
.ye7{bottom:383.266667pt;}
.y43{bottom:385.314667pt;}
.y2a{bottom:386.434667pt;}
.ya2{bottom:386.786667pt;}
.y6d{bottom:388.866667pt;}
.y1c1{bottom:393.666667pt;}
.y17d{bottom:393.826667pt;}
.y149{bottom:395.266667pt;}
.y128{bottom:396.066667pt;}
.y1f8{bottom:396.866667pt;}
.y108{bottom:397.666667pt;}
.ybe{bottom:399.266667pt;}
.y150{bottom:400.706667pt;}
.y29{bottom:400.834667pt;}
.y42{bottom:401.314667pt;}
.y12d{bottom:401.506667pt;}
.ye6{bottom:402.466667pt;}
.y6c{bottom:408.066667pt;}
.ya1{bottom:412.546667pt;}
.y1c0{bottom:412.866667pt;}
.y17c{bottom:413.026667pt;}
.y148{bottom:414.466667pt;}
.y28{bottom:415.234667pt;}
.y127{bottom:415.266667pt;}
.y1f7{bottom:416.066667pt;}
.y107{bottom:416.866667pt;}
.y41{bottom:417.314667pt;}
.y14f{bottom:421.346667pt;}
.ye5{bottom:421.666667pt;}
.y12c{bottom:422.146667pt;}
.ybd{bottom:425.186667pt;}
.y6b{bottom:427.266667pt;}
.y27{bottom:429.661333pt;}
.y1bf{bottom:432.066667pt;}
.y17b{bottom:432.226667pt;}
.y40{bottom:433.341333pt;}
.y147{bottom:433.666667pt;}
.y126{bottom:434.466667pt;}
.y1f6{bottom:435.266667pt;}
.y106{bottom:436.066667pt;}
.ya0{bottom:438.466667pt;}
.ye4{bottom:440.866667pt;}
.y26{bottom:444.061333pt;}
.y6a{bottom:446.466667pt;}
.y3f{bottom:449.341333pt;}
.ybc{bottom:450.946667pt;}
.y1be{bottom:451.266667pt;}
.y17a{bottom:451.426667pt;}
.y146{bottom:452.866667pt;}
.y125{bottom:453.666667pt;}
.y1f5{bottom:454.466667pt;}
.y105{bottom:455.266667pt;}
.y9f{bottom:457.666667pt;}
.y25{bottom:458.461333pt;}
.ye3{bottom:460.066667pt;}
.y3e{bottom:465.341333pt;}
.y69{bottom:465.666667pt;}
.y1bd{bottom:470.466667pt;}
.y179{bottom:470.626667pt;}
.y145{bottom:472.066667pt;}
.y24{bottom:472.861333pt;}
.y124{bottom:472.866667pt;}
.y1f4{bottom:473.666667pt;}
.y104{bottom:474.466667pt;}
.ybb{bottom:476.866667pt;}
.ye2{bottom:479.266667pt;}
.y3d{bottom:481.341333pt;}
.y9e{bottom:483.586667pt;}
.y68{bottom:484.866667pt;}
.y23{bottom:487.261333pt;}
.y1bc{bottom:489.666667pt;}
.y178{bottom:489.826667pt;}
.y144{bottom:491.266667pt;}
.y123{bottom:492.066667pt;}
.y1f3{bottom:492.866667pt;}
.y103{bottom:493.666667pt;}
.yba{bottom:496.066667pt;}
.y3c{bottom:497.341333pt;}
.ye1{bottom:498.466667pt;}
.y22{bottom:501.661333pt;}
.y9d{bottom:502.786667pt;}
.y67{bottom:504.066667pt;}
.y1bb{bottom:508.866667pt;}
.y177{bottom:509.026667pt;}
.y143{bottom:510.466667pt;}
.y122{bottom:511.266667pt;}
.y1f2{bottom:512.066667pt;}
.y102{bottom:512.866667pt;}
.y3b{bottom:513.341333pt;}
.y1db{bottom:513.666667pt;}
.y21{bottom:516.061333pt;}
.ye0{bottom:517.666667pt;}
.yb9{bottom:521.986667pt;}
.y66{bottom:523.266667pt;}
.y1ba{bottom:528.066667pt;}
.y176{bottom:528.226667pt;}
.y9c{bottom:528.546667pt;}
.y142{bottom:529.666667pt;}
.y3a{bottom:530.461333pt;}
.y121{bottom:530.466667pt;}
.y1f1{bottom:531.266667pt;}
.y20{bottom:531.741333pt;}
.y101{bottom:532.066667pt;}
.y1da{bottom:532.866667pt;}
.ydf{bottom:536.893333pt;}
.yb8{bottom:541.213333pt;}
.y85{bottom:542.466667pt;}
.y65{bottom:542.506667pt;}
.y1b9{bottom:547.293333pt;}
.y175{bottom:547.453333pt;}
.y9b{bottom:547.773333pt;}
.y141{bottom:548.893333pt;}
.y120{bottom:549.693333pt;}
.y1f0{bottom:550.493333pt;}
.y100{bottom:551.293333pt;}
.y1d9{bottom:552.093333pt;}
.yde{bottom:556.093333pt;}
.y64{bottom:561.706667pt;}
.y1b8{bottom:566.493333pt;}
.y174{bottom:566.653333pt;}
.yb7{bottom:566.973333pt;}
.y140{bottom:568.093333pt;}
.y11f{bottom:568.893333pt;}
.y1ef{bottom:569.693333pt;}
.yff{bottom:570.493333pt;}
.y1d8{bottom:571.293333pt;}
.y9a{bottom:573.693333pt;}
.ydd{bottom:575.293333pt;}
.y63{bottom:580.906667pt;}
.y1b7{bottom:585.693333pt;}
.y173{bottom:585.853333pt;}
.yb6{bottom:586.173333pt;}
.y13f{bottom:587.293333pt;}
.y11e{bottom:588.093333pt;}
.y1ee{bottom:588.893333pt;}
.yfe{bottom:589.693333pt;}
.y1d7{bottom:590.493333pt;}
.ydc{bottom:594.493333pt;}
.y99{bottom:599.613333pt;}
.y62{bottom:600.106667pt;}
.y1b6{bottom:604.893333pt;}
.y172{bottom:605.053333pt;}
.y13e{bottom:606.493333pt;}
.y11d{bottom:607.293333pt;}
.y1ed{bottom:608.093333pt;}
.yfd{bottom:608.893333pt;}
.y1d6{bottom:609.693333pt;}
.yb5{bottom:612.093333pt;}
.ydb{bottom:614.013333pt;}
.y98{bottom:618.813333pt;}
.y61{bottom:619.306667pt;}
.y1b5{bottom:624.093333pt;}
.y171{bottom:624.253333pt;}
.y13d{bottom:625.693333pt;}
.y11c{bottom:626.493333pt;}
.y1ec{bottom:627.293333pt;}
.yfc{bottom:628.093333pt;}
.y1d5{bottom:628.893333pt;}
.yda{bottom:634.493333pt;}
.yb4{bottom:638.013333pt;}
.y60{bottom:638.506667pt;}
.y1b4{bottom:643.293333pt;}
.y170{bottom:643.453333pt;}
.y97{bottom:644.573333pt;}
.y13c{bottom:644.893333pt;}
.y11b{bottom:645.693333pt;}
.y1eb{bottom:646.493333pt;}
.yfb{bottom:647.293333pt;}
.y1d4{bottom:648.093333pt;}
.yd9{bottom:653.693333pt;}
.yb3{bottom:657.213333pt;}
.y5f{bottom:657.706667pt;}
.y1b3{bottom:662.493333pt;}
.y12{bottom:662.653333pt;}
.y13b{bottom:664.093333pt;}
.y11a{bottom:664.893333pt;}
.y1ea{bottom:665.693333pt;}
.yfa{bottom:666.493333pt;}
.y1d3{bottom:667.293333pt;}
.y96{bottom:670.493333pt;}
.yd8{bottom:672.893333pt;}
.y5e{bottom:676.906667pt;}
.y1b2{bottom:681.693333pt;}
.y16f{bottom:681.853333pt;}
.yb2{bottom:682.973333pt;}
.y13a{bottom:683.293333pt;}
.y119{bottom:684.093333pt;}
.y1e9{bottom:684.893333pt;}
.yf9{bottom:685.693333pt;}
.y1d2{bottom:686.493333pt;}
.yd7{bottom:692.093333pt;}
.y5d{bottom:696.106667pt;}
.y95{bottom:696.413333pt;}
.y1b1{bottom:700.893333pt;}
.y16e{bottom:701.053333pt;}
.y139{bottom:702.493333pt;}
.y118{bottom:703.293333pt;}
.y1e8{bottom:704.093333pt;}
.yf8{bottom:704.893333pt;}
.y1d1{bottom:705.693333pt;}
.yb1{bottom:708.893333pt;}
.yd6{bottom:711.293333pt;}
.y5c{bottom:715.306667pt;}
.y94{bottom:715.613333pt;}
.y1b0{bottom:720.093333pt;}
.y16d{bottom:720.253333pt;}
.y138{bottom:721.693333pt;}
.y117{bottom:722.493333pt;}
.y1e7{bottom:723.293333pt;}
.yf7{bottom:724.093333pt;}
.y1d0{bottom:724.893333pt;}
.yd5{bottom:730.493333pt;}
.y5b{bottom:734.506667pt;}
.yb0{bottom:734.813333pt;}
.y1af{bottom:739.293333pt;}
.y16c{bottom:739.453333pt;}
.y137{bottom:740.893333pt;}
.y93{bottom:741.373333pt;}
.y116{bottom:741.693333pt;}
.y1e6{bottom:742.493333pt;}
.yf6{bottom:743.293333pt;}
.y1cf{bottom:744.093333pt;}
.yd4{bottom:749.693333pt;}
.y84{bottom:753.706667pt;}
.y1ae{bottom:758.493333pt;}
.y16b{bottom:758.653333pt;}
.y136{bottom:760.093333pt;}
.yaf{bottom:760.573333pt;}
.y115{bottom:760.893333pt;}
.y1e5{bottom:761.693333pt;}
.yf5{bottom:762.493333pt;}
.y1ce{bottom:763.293333pt;}
.y92{bottom:767.293333pt;}
.yd3{bottom:768.893333pt;}
.y1ad{bottom:777.733333pt;}
.y16a{bottom:777.893333pt;}
.y135{bottom:779.333333pt;}
.y114{bottom:780.133333pt;}
.y1e4{bottom:780.933333pt;}
.yf4{bottom:781.733333pt;}
.y1cd{bottom:782.533333pt;}
.y91{bottom:786.533333pt;}
.yd2{bottom:788.133333pt;}
.y1ac{bottom:796.933333pt;}
.y169{bottom:797.093333pt;}
.y134{bottom:798.533333pt;}
.y113{bottom:799.333333pt;}
.y1e3{bottom:800.133333pt;}
.yf3{bottom:800.933333pt;}
.y1cc{bottom:801.733333pt;}
.yae{bottom:805.733333pt;}
.yd1{bottom:807.333333pt;}
.y90{bottom:812.453333pt;}
.y1ab{bottom:816.133333pt;}
.y168{bottom:816.293333pt;}
.y133{bottom:817.733333pt;}
.y112{bottom:818.533333pt;}
.y1e2{bottom:819.333333pt;}
.yf2{bottom:820.133333pt;}
.y1cb{bottom:820.933333pt;}
.yd0{bottom:826.533333pt;}
.y8f{bottom:831.653333pt;}
.y1aa{bottom:835.333333pt;}
.y167{bottom:835.493333pt;}
.y132{bottom:836.933333pt;}
.y111{bottom:837.733333pt;}
.y1e1{bottom:838.533333pt;}
.yf1{bottom:839.333333pt;}
.y1ca{bottom:840.133333pt;}
.y7{bottom:842.533333pt;}
.ycf{bottom:845.733333pt;}
.y1a9{bottom:854.533333pt;}
.y166{bottom:854.693333pt;}
.y131{bottom:856.133333pt;}
.y110{bottom:856.933333pt;}
.y8e{bottom:857.413333pt;}
.y1e0{bottom:857.733333pt;}
.yf0{bottom:858.533333pt;}
.y1c9{bottom:859.333333pt;}
.yce{bottom:864.933333pt;}
.y18c{bottom:868.133333pt;}
.y1fd{bottom:870.373333pt;}
.y1a8{bottom:873.733333pt;}
.y165{bottom:873.893333pt;}
.y130{bottom:875.333333pt;}
.y10f{bottom:876.133333pt;}
.y1df{bottom:876.933333pt;}
.yef{bottom:877.733333pt;}
.y8d{bottom:883.333333pt;}
.ycd{bottom:884.133333pt;}
.y1c8{bottom:888.133333pt;}
.y18b{bottom:891.173333pt;}
.y164{bottom:893.093333pt;}
.y12f{bottom:894.533333pt;}
.y1de{bottom:896.133333pt;}
.yee{bottom:896.933333pt;}
.y1a7{bottom:902.533333pt;}
.ycc{bottom:903.333333pt;}
.y10e{bottom:904.933333pt;}
.y1dd{bottom:906.533333pt;}
.y1fc{bottom:907.173333pt;}
.y8c{bottom:909.253333pt;}
.y18a{bottom:909.573333pt;}
.y1c7{bottom:911.173333pt;}
.y163{bottom:911.493333pt;}
.y1fb{bottom:915.333333pt;}
.y1a6{bottom:919.333333pt;}
.ycb{bottom:922.533333pt;}
.y10d{bottom:923.333333pt;}
.y1dc{bottom:924.933333pt;}
.yed{bottom:925.733333pt;}
.y189{bottom:927.973333pt;}
.y185{bottom:928.133333pt;}
.y1c6{bottom:929.573333pt;}
.y162{bottom:932.773333pt;}
.y8b{bottom:935.013333pt;}
.y1a5{bottom:938.533333pt;}
.y10c{bottom:940.133333pt;}
.yca{bottom:941.733333pt;}
.yec{bottom:944.133333pt;}
.y161{bottom:948.773333pt;}
.y1a4{bottom:958.053333pt;}
.y10b{bottom:959.333333pt;}
.y8a{bottom:960.933333pt;}
.y10a{bottom:978.853333pt;}
.y89{bottom:980.133333pt;}
.y59{bottom:999.653333pt;}
.y6{bottom:1003.333333pt;}
.y3{bottom:1020.160000pt;}
.y2{bottom:1039.360000pt;}
.y1{bottom:1060.960000pt;}
.h11{height:27.040000pt;}
.h7{height:40.560000pt;}
.h5{height:44.886400pt;}
.hb{height:45.895680pt;}
.hc{height:45.948800pt;}
.h12{height:52.834688pt;}
.h4{height:54.080000pt;}
.hf{height:54.093750pt;}
.h3{height:55.296000pt;}
.h2{height:55.360000pt;}
.h8{height:59.788800pt;}
.h10{height:63.656250pt;}
.h6{height:156.800000pt;}
.h9{height:179.226667pt;}
.ha{height:546.146667pt;}
.hd{height:748.893333pt;}
.he{height:768.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:179.746667pt;}
.w5{width:321.026667pt;}
.w4{width:472.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.232000pt;}
.x1{left:75.519988pt;}
.x8{left:99.551988pt;}
.x5{left:167.226667pt;}
.x2{left:168.186667pt;}
.x6{left:169.146667pt;}
.x4{left:255.266667pt;}
.x7{left:396.546667pt;}
}




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