
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_84acc53e36f8a9f0163a51b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_30665be4b5d3a93188a96d28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_fb8188f4466bb463b2ac633d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;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_9bed97c60f67a2dd8b00a716.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_4394c85016ef6a61afaaa248.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.963000;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_8c0c5b56af7a456dfe15755e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953000;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_1a4a8fac3269cdc4ecfcbd30.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.968000;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_fb1d29ec4463387b0ef224f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.968000;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_2e1bbff18b9696d2a4471903.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.886000;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_06982f9ea0bb162b697ed511.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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_f399d8d40823830f9cf8f91f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.886000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-1.066800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.252200px;}
.v1{vertical-align:77.400000px;}
.ls1{letter-spacing:-8.316864px;}
.ls12{letter-spacing:-1.197000px;}
.lsb{letter-spacing:-1.071000px;}
.ls1c{letter-spacing:-0.945000px;}
.ls4{letter-spacing:-0.693000px;}
.ls16{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.567000px;}
.lse{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.441000px;}
.ls1a{letter-spacing:-0.432000px;}
.lsf{letter-spacing:-0.378000px;}
.ls15{letter-spacing:-0.315000px;}
.ls14{letter-spacing:-0.252000px;}
.ls5{letter-spacing:-0.189000px;}
.ls7{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.126000px;}
.ls19{letter-spacing:0.189000px;}
.ls6{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.315000px;}
.lsd{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.441000px;}
.ls8{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.882000px;}
.ls17{letter-spacing:1.008000px;}
.ls10{letter-spacing:1.386000px;}
.ls18{letter-spacing:1.575000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws85{word-spacing:-13.980000px;}
.ws86{word-spacing:-13.005000px;}
.ws4f{word-spacing:-12.663000px;}
.ws4d{word-spacing:-12.285000px;}
.ws4e{word-spacing:-12.033000px;}
.ws7{word-spacing:-11.970000px;}
.wsa8{word-spacing:-2.580000px;}
.ws12{word-spacing:-2.100000px;}
.ws9{word-spacing:-2.040000px;}
.ws8a{word-spacing:-2.016000px;}
.ws87{word-spacing:-1.575000px;}
.ws3e{word-spacing:-1.386000px;}
.ws14{word-spacing:-1.260000px;}
.wsd{word-spacing:-0.960000px;}
.ws4a{word-spacing:-0.945000px;}
.ws23{word-spacing:-0.882000px;}
.ws95{word-spacing:-0.756000px;}
.ws34{word-spacing:-0.693000px;}
.ws19{word-spacing:-0.567000px;}
.ws20{word-spacing:-0.504000px;}
.ws92{word-spacing:-0.441000px;}
.ws2a{word-spacing:-0.378000px;}
.ws18{word-spacing:-0.315000px;}
.ws1b{word-spacing:-0.252000px;}
.ws2e{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws44{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws1d{word-spacing:0.126000px;}
.ws49{word-spacing:0.189000px;}
.ws7e{word-spacing:0.252000px;}
.ws60{word-spacing:0.315000px;}
.ws52{word-spacing:0.378000px;}
.wsa1{word-spacing:0.432000px;}
.ws56{word-spacing:0.441000px;}
.ws31{word-spacing:0.504000px;}
.ws6c{word-spacing:0.567000px;}
.ws7b{word-spacing:0.630000px;}
.ws2f{word-spacing:0.693000px;}
.ws71{word-spacing:0.756000px;}
.ws24{word-spacing:0.882000px;}
.ws9e{word-spacing:0.945000px;}
.ws21{word-spacing:1.008000px;}
.ws27{word-spacing:1.071000px;}
.wsaf{word-spacing:1.134000px;}
.ws50{word-spacing:1.323000px;}
.wsb{word-spacing:1.380000px;}
.ws98{word-spacing:1.449000px;}
.ws67{word-spacing:1.575000px;}
.ws1c{word-spacing:1.638000px;}
.wsf{word-spacing:1.680000px;}
.wsac{word-spacing:1.764000px;}
.ws2c{word-spacing:2.016000px;}
.ws35{word-spacing:2.205000px;}
.ws16{word-spacing:2.268000px;}
.ws64{word-spacing:2.520000px;}
.ws9a{word-spacing:3.087000px;}
.ws5c{word-spacing:3.276000px;}
.ws79{word-spacing:3.465000px;}
.ws1e{word-spacing:3.528000px;}
.ws15{word-spacing:3.780000px;}
.wsa5{word-spacing:3.900000px;}
.ws3d{word-spacing:3.906000px;}
.ws74{word-spacing:3.969000px;}
.ws9b{word-spacing:4.032000px;}
.ws8e{word-spacing:4.284000px;}
.ws68{word-spacing:4.410000px;}
.ws2b{word-spacing:4.536000px;}
.ws70{word-spacing:4.788000px;}
.ws13{word-spacing:4.800000px;}
.wsa{word-spacing:5.280000px;}
.ws75{word-spacing:5.355000px;}
.ws11{word-spacing:5.880000px;}
.wsa7{word-spacing:5.940000px;}
.ws48{word-spacing:6.867000px;}
.wse{word-spacing:6.900000px;}
.wsa6{word-spacing:6.960000px;}
.ws57{word-spacing:6.993000px;}
.ws42{word-spacing:7.182000px;}
.ws59{word-spacing:7.371000px;}
.wsa4{word-spacing:7.560000px;}
.ws39{word-spacing:7.623000px;}
.ws76{word-spacing:7.686000px;}
.ws10{word-spacing:7.800000px;}
.ws63{word-spacing:7.875000px;}
.ws1f{word-spacing:8.127000px;}
.ws3b{word-spacing:8.190000px;}
.wsa2{word-spacing:8.220000px;}
.ws6e{word-spacing:8.442000px;}
.ws6b{word-spacing:8.505000px;}
.wsc{word-spacing:8.580000px;}
.ws46{word-spacing:8.946000px;}
.ws4b{word-spacing:9.198000px;}
.ws7d{word-spacing:9.261000px;}
.ws65{word-spacing:9.639000px;}
.ws38{word-spacing:9.891000px;}
.ws6a{word-spacing:10.269000px;}
.ws8f{word-spacing:10.395000px;}
.ws55{word-spacing:10.458000px;}
.ws5a{word-spacing:10.584000px;}
.ws6f{word-spacing:10.836000px;}
.ws7a{word-spacing:11.151000px;}
.ws7c{word-spacing:11.277000px;}
.ws62{word-spacing:11.718000px;}
.ws78{word-spacing:11.781000px;}
.ws8d{word-spacing:12.033000px;}
.ws43{word-spacing:12.159000px;}
.ws69{word-spacing:12.348000px;}
.ws99{word-spacing:12.411000px;}
.ws94{word-spacing:12.474000px;}
.ws3f{word-spacing:12.852000px;}
.ws41{word-spacing:12.978000px;}
.ws7f{word-spacing:13.104000px;}
.ws6d{word-spacing:13.545000px;}
.ws5d{word-spacing:13.671000px;}
.ws5b{word-spacing:13.734000px;}
.wsab{word-spacing:14.112000px;}
.ws83{word-spacing:14.175000px;}
.ws32{word-spacing:14.238000px;}
.ws66{word-spacing:14.301000px;}
.wsa3{word-spacing:14.820000px;}
.ws58{word-spacing:14.868000px;}
.ws9d{word-spacing:15.120000px;}
.ws91{word-spacing:15.246000px;}
.ws8c{word-spacing:15.372000px;}
.ws72{word-spacing:15.435000px;}
.ws90{word-spacing:15.750000px;}
.ws3c{word-spacing:15.813000px;}
.ws89{word-spacing:16.002000px;}
.wsa9{word-spacing:16.569000px;}
.ws53{word-spacing:16.884000px;}
.ws5f{word-spacing:17.199000px;}
.wsb0{word-spacing:18.018000px;}
.ws33{word-spacing:18.396000px;}
.ws61{word-spacing:18.459000px;}
.ws29{word-spacing:18.585000px;}
.ws37{word-spacing:18.900000px;}
.ws36{word-spacing:19.215000px;}
.ws30{word-spacing:19.278000px;}
.ws22{word-spacing:19.467000px;}
.ws81{word-spacing:19.656000px;}
.ws8b{word-spacing:20.475000px;}
.ws80{word-spacing:20.727000px;}
.ws73{word-spacing:20.790000px;}
.ws3a{word-spacing:21.168000px;}
.ws88{word-spacing:21.798000px;}
.ws25{word-spacing:22.806000px;}
.ws9c{word-spacing:23.184000px;}
.ws82{word-spacing:23.499000px;}
.ws96{word-spacing:24.696000px;}
.ws5e{word-spacing:24.885000px;}
.ws26{word-spacing:25.389000px;}
.wsaa{word-spacing:25.830000px;}
.ws28{word-spacing:26.145000px;}
.ws40{word-spacing:27.153000px;}
.ws47{word-spacing:27.909000px;}
.ws45{word-spacing:28.224000px;}
.ws54{word-spacing:29.799000px;}
.ws1a{word-spacing:30.051000px;}
.ws51{word-spacing:30.996000px;}
.ws2d{word-spacing:31.437000px;}
.ws93{word-spacing:32.697000px;}
.wsad{word-spacing:34.398000px;}
.ws77{word-spacing:36.225000px;}
.ws17{word-spacing:38.241000px;}
.wsae{word-spacing:38.997000px;}
.ws97{word-spacing:52.164000px;}
.ws8{word-spacing:137.530200px;}
.ws6{word-spacing:137.530800px;}
.wsa0{word-spacing:503.997600px;}
.ws4c{word-spacing:6221.232000px;}
.ws84{word-spacing:6224.256000px;}
.ws9f{word-spacing:6225.120000px;}
.ws5{word-spacing:6227.424000px;}
._20{margin-left:-15.636000px;}
._27{margin-left:-13.586100px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.016098px;}
._5{width:1.046702px;}
._6{width:2.786398px;}
._9{width:4.106686px;}
._b{width:5.619600px;}
._f{width:6.702151px;}
._a{width:7.832647px;}
._8{width:8.887519px;}
._7{width:9.926995px;}
._c{width:11.547900px;}
._10{width:14.533198px;}
._14{width:15.719402px;}
._13{width:17.666100px;}
._d{width:18.693898px;}
._e{width:19.845590px;}
._16{width:21.105000px;}
._1c{width:22.707898px;}
._1b{width:23.992205px;}
._23{width:25.782300px;}
._24{width:27.476098px;}
._22{width:29.276098px;}
._1f{width:30.573307px;}
._1a{width:31.751690px;}
._19{width:32.804100px;}
._12{width:34.774195px;}
._11{width:35.844300px;}
._26{width:37.170000px;}
._28{width:40.459805px;}
._17{width:41.823895px;}
._21{width:44.052290px;}
._29{width:48.326398px;}
._18{width:51.771600px;}
._15{width:55.497602px;}
._1d{width:62.269200px;}
._1e{width:63.550800px;}
._25{width:666.425707px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y1d8{bottom:32.834700px;}
.y97{bottom:33.013050px;}
.ya{bottom:41.220000px;}
.y1d7{bottom:47.834700px;}
.y96{bottom:48.013050px;}
.y95{bottom:63.013050px;}
.yb3{bottom:95.866200px;}
.y12e{bottom:95.887200px;}
.y93{bottom:95.929200px;}
.y35{bottom:95.944950px;}
.y1b8{bottom:95.965800px;}
.ydc{bottom:96.039450px;}
.y4c{bottom:96.055200px;}
.y7c{bottom:96.065700px;}
.y1d5{bottom:96.091800px;}
.y142{bottom:116.849700px;}
.y12d{bottom:116.881950px;}
.y92{bottom:116.923950px;}
.y34{bottom:116.939700px;}
.y1b7{bottom:116.960550px;}
.ydb{bottom:117.034200px;}
.y4b{bottom:117.049950px;}
.y7b{bottom:117.060450px;}
.y1d4{bottom:117.086550px;}
.y105{bottom:117.191700px;}
.y141{bottom:137.848950px;}
.yb2{bottom:137.871450px;}
.y12c{bottom:137.876700px;}
.y33{bottom:137.934450px;}
.y1b6{bottom:137.955300px;}
.yda{bottom:138.028950px;}
.y4a{bottom:138.044700px;}
.y7a{bottom:138.055200px;}
.y1d3{bottom:138.081300px;}
.y104{bottom:138.186450px;}
.y140{bottom:158.848200px;}
.yb1{bottom:158.866200px;}
.y12b{bottom:158.871450px;}
.y32{bottom:158.929200px;}
.y1b5{bottom:158.950050px;}
.yd9{bottom:159.023700px;}
.y49{bottom:159.039450px;}
.y79{bottom:159.049950px;}
.y1d2{bottom:159.076050px;}
.y103{bottom:159.181200px;}
.y13f{bottom:179.847450px;}
.yb0{bottom:179.860950px;}
.y12a{bottom:179.866200px;}
.y166{bottom:179.885700px;}
.y31{bottom:179.923950px;}
.y1b4{bottom:179.944800px;}
.y48{bottom:180.034200px;}
.y78{bottom:180.044700px;}
.y1d1{bottom:180.070800px;}
.y102{bottom:180.175950px;}
.y13e{bottom:200.846700px;}
.yaf{bottom:200.855700px;}
.y129{bottom:200.860950px;}
.y165{bottom:200.884950px;}
.y30{bottom:200.918700px;}
.y188{bottom:200.923200px;}
.y1b3{bottom:200.939550px;}
.y47{bottom:201.028950px;}
.y77{bottom:201.039450px;}
.y1d0{bottom:201.065550px;}
.y101{bottom:201.170700px;}
.y13d{bottom:221.845950px;}
.yae{bottom:221.850450px;}
.y128{bottom:221.855700px;}
.y164{bottom:221.884200px;}
.y2f{bottom:221.913450px;}
.y187{bottom:221.922450px;}
.y1b2{bottom:221.934300px;}
.yd8{bottom:222.023700px;}
.y76{bottom:222.034200px;}
.y1cf{bottom:222.060300px;}
.y100{bottom:222.165450px;}
.yad{bottom:242.845200px;}
.y127{bottom:242.850450px;}
.y163{bottom:242.883450px;}
.y2e{bottom:242.908200px;}
.y186{bottom:242.921700px;}
.y1b1{bottom:242.929050px;}
.yd7{bottom:243.018450px;}
.y75{bottom:243.028950px;}
.y46{bottom:243.034200px;}
.y1ce{bottom:243.055050px;}
.yff{bottom:243.160200px;}
.yac{bottom:263.839950px;}
.y126{bottom:263.845200px;}
.y162{bottom:263.882700px;}
.y2d{bottom:263.902950px;}
.y185{bottom:263.920950px;}
.y1b0{bottom:263.923800px;}
.yd6{bottom:264.013200px;}
.y74{bottom:264.023700px;}
.y45{bottom:264.028950px;}
.yab{bottom:284.834700px;}
.y125{bottom:284.839950px;}
.y13c{bottom:284.843700px;}
.y2c{bottom:284.897700px;}
.y184{bottom:284.920200px;}
.yd5{bottom:285.007950px;}
.y73{bottom:285.018450px;}
.y44{bottom:285.023700px;}
.y1cd{bottom:285.060300px;}
.yfe{bottom:285.165450px;}
.yaa{bottom:305.829450px;}
.y124{bottom:305.834700px;}
.y13b{bottom:305.842950px;}
.y161{bottom:305.881200px;}
.y2b{bottom:305.892450px;}
.y1af{bottom:305.929050px;}
.yd4{bottom:306.002700px;}
.y72{bottom:306.013200px;}
.y43{bottom:306.018450px;}
.y1cc{bottom:306.055050px;}
.y13a{bottom:326.842200px;}
.y160{bottom:326.880450px;}
.y2a{bottom:326.887200px;}
.y183{bottom:326.918700px;}
.y1ae{bottom:326.923800px;}
.yd3{bottom:326.997450px;}
.y71{bottom:327.007950px;}
.y42{bottom:327.013200px;}
.y1cb{bottom:327.049800px;}
.yfd{bottom:327.170700px;}
.ya9{bottom:347.834700px;}
.y139{bottom:347.841450px;}
.y15f{bottom:347.879700px;}
.y29{bottom:347.881950px;}
.y182{bottom:347.917950px;}
.y1ad{bottom:347.918550px;}
.y70{bottom:348.002700px;}
.y41{bottom:348.007950px;}
.y1ca{bottom:348.044550px;}
.yfc{bottom:348.165450px;}
.y7{bottom:352.018200px;}
.y138{bottom:368.840700px;}
.y28{bottom:368.876700px;}
.y1ac{bottom:368.913300px;}
.y181{bottom:368.917200px;}
.y6f{bottom:368.997450px;}
.y40{bottom:369.002700px;}
.y1c9{bottom:369.039300px;}
.yfb{bottom:369.160200px;}
.y9{bottom:381.914100px;}
.ya8{bottom:389.834700px;}
.y137{bottom:389.839950px;}
.y27{bottom:389.871450px;}
.y15e{bottom:389.878200px;}
.y1ab{bottom:389.908050px;}
.y6e{bottom:389.992200px;}
.y3f{bottom:389.997450px;}
.y1c8{bottom:390.034050px;}
.yfa{bottom:390.154950px;}
.y136{bottom:410.839200px;}
.y26{bottom:410.866200px;}
.y15d{bottom:410.877450px;}
.y1aa{bottom:410.902800px;}
.y180{bottom:410.915700px;}
.y6d{bottom:410.986950px;}
.y3e{bottom:410.992200px;}
.yd2{bottom:411.007950px;}
.y1c7{bottom:411.028800px;}
.yf9{bottom:411.149700px;}
.y123{bottom:411.307200px;}
.y25{bottom:431.860950px;}
.y15c{bottom:431.876700px;}
.y1a9{bottom:431.897550px;}
.y17f{bottom:431.914950px;}
.y6c{bottom:431.981700px;}
.y3d{bottom:431.986950px;}
.yd1{bottom:432.002700px;}
.y1c6{bottom:432.023550px;}
.yf8{bottom:432.144450px;}
.y122{bottom:432.301950px;}
.y6{bottom:445.018200px;}
.y135{bottom:452.837700px;}
.y24{bottom:452.855700px;}
.y15b{bottom:452.875950px;}
.y1a8{bottom:452.892300px;}
.ya7{bottom:452.960700px;}
.y6b{bottom:452.976450px;}
.y3c{bottom:452.981700px;}
.yd0{bottom:452.997450px;}
.y1c5{bottom:453.018300px;}
.yf7{bottom:453.139200px;}
.y121{bottom:453.296700px;}
.y134{bottom:473.836950px;}
.y23{bottom:473.850450px;}
.y1a7{bottom:473.887050px;}
.y17e{bottom:473.913450px;}
.ya6{bottom:473.955450px;}
.y6a{bottom:473.971200px;}
.y3b{bottom:473.976450px;}
.ycf{bottom:473.992200px;}
.y1c4{bottom:474.013050px;}
.yf6{bottom:474.133950px;}
.y120{bottom:474.291450px;}
.y22{bottom:494.845200px;}
.y15a{bottom:494.874450px;}
.y1a6{bottom:494.881800px;}
.y17d{bottom:494.912700px;}
.ya5{bottom:494.950200px;}
.y69{bottom:494.965950px;}
.y3a{bottom:494.971200px;}
.yce{bottom:494.986950px;}
.y1c3{bottom:495.007800px;}
.yf5{bottom:495.128700px;}
.y11f{bottom:495.286200px;}
.y133{bottom:515.835450px;}
.y21{bottom:515.839950px;}
.y159{bottom:515.873700px;}
.y1a5{bottom:515.876550px;}
.y17c{bottom:515.911950px;}
.ya4{bottom:515.944950px;}
.y68{bottom:515.960700px;}
.y39{bottom:515.965950px;}
.ycd{bottom:515.981700px;}
.y1c2{bottom:516.002550px;}
.yf4{bottom:516.123450px;}
.y11e{bottom:516.280950px;}
.y20{bottom:536.834700px;}
.y1a4{bottom:536.871300px;}
.y17b{bottom:536.911200px;}
.ya3{bottom:536.939700px;}
.y67{bottom:536.955450px;}
.y38{bottom:536.960700px;}
.ycc{bottom:536.976450px;}
.y1c1{bottom:536.997300px;}
.yf3{bottom:537.118200px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y1a3{bottom:557.866050px;}
.y158{bottom:557.872200px;}
.ya2{bottom:557.934450px;}
.y66{bottom:557.950200px;}
.y37{bottom:557.955450px;}
.ycb{bottom:557.971200px;}
.y1c0{bottom:557.992050px;}
.yf2{bottom:558.112950px;}
.y11d{bottom:558.286200px;}
.y1f{bottom:578.834700px;}
.y1a2{bottom:578.860800px;}
.y157{bottom:578.871450px;}
.y17a{bottom:578.909700px;}
.ya1{bottom:578.929200px;}
.y65{bottom:578.944950px;}
.y36{bottom:578.950200px;}
.yca{bottom:578.965950px;}
.y1bf{bottom:578.986800px;}
.y11c{bottom:579.280950px;}
.y1a1{bottom:599.855550px;}
.y156{bottom:599.870700px;}
.y179{bottom:599.908950px;}
.ya0{bottom:599.923950px;}
.y64{bottom:599.939700px;}
.yc9{bottom:599.960700px;}
.y1be{bottom:599.981550px;}
.yf1{bottom:600.118200px;}
.y11b{bottom:600.275700px;}
.y1a0{bottom:620.850300px;}
.y155{bottom:620.869950px;}
.y178{bottom:620.908200px;}
.y63{bottom:620.934450px;}
.yc8{bottom:620.955450px;}
.yf0{bottom:621.112950px;}
.y11a{bottom:621.270450px;}
.y4{bottom:631.018200px;}
.y1e{bottom:641.834700px;}
.y19f{bottom:641.845050px;}
.y177{bottom:641.907450px;}
.y62{bottom:641.929200px;}
.yc7{bottom:641.950200px;}
.y1bd{bottom:641.986800px;}
.yef{bottom:642.107700px;}
.y91{bottom:642.165450px;}
.y119{bottom:642.265200px;}
.y1d{bottom:662.834700px;}
.y19e{bottom:662.839800px;}
.y154{bottom:662.868450px;}
.y61{bottom:662.923950px;}
.yc6{bottom:662.944950px;}
.y1bc{bottom:662.981550px;}
.yee{bottom:663.102450px;}
.y90{bottom:663.160200px;}
.y118{bottom:663.259950px;}
.y19d{bottom:683.834550px;}
.y1c{bottom:683.834700px;}
.y19a{bottom:683.848950px;}
.y153{bottom:683.867700px;}
.y176{bottom:683.905950px;}
.y60{bottom:683.918700px;}
.y1bb{bottom:683.976300px;}
.yed{bottom:684.097200px;}
.y8f{bottom:684.154950px;}
.y117{bottom:684.254700px;}
.y1b{bottom:704.834700px;}
.y199{bottom:704.848200px;}
.y152{bottom:704.866950px;}
.y175{bottom:704.905200px;}
.y5f{bottom:704.913450px;}
.yc5{bottom:704.950200px;}
.y1ba{bottom:704.971050px;}
.yec{bottom:705.091950px;}
.y8e{bottom:705.149700px;}
.y116{bottom:705.249450px;}
.y1a{bottom:725.834700px;}
.y198{bottom:725.847450px;}
.y151{bottom:725.866200px;}
.y174{bottom:725.904450px;}
.y5e{bottom:725.908200px;}
.yc4{bottom:725.944950px;}
.y1b9{bottom:725.965800px;}
.yeb{bottom:726.086700px;}
.y8d{bottom:726.144450px;}
.y115{bottom:726.244200px;}
.y19{bottom:746.834700px;}
.y197{bottom:746.846700px;}
.y5d{bottom:746.902950px;}
.yc3{bottom:746.939700px;}
.yea{bottom:747.081450px;}
.y8c{bottom:747.139200px;}
.y114{bottom:747.238950px;}
.y3{bottom:751.738650px;}
.y18{bottom:767.834700px;}
.y196{bottom:767.845950px;}
.y150{bottom:767.864700px;}
.y5c{bottom:767.897700px;}
.y173{bottom:767.902950px;}
.yc2{bottom:767.934450px;}
.ye9{bottom:768.076200px;}
.y8b{bottom:768.133950px;}
.y113{bottom:768.233700px;}
.y17{bottom:788.834700px;}
.y195{bottom:788.845200px;}
.y14f{bottom:788.863950px;}
.y5b{bottom:788.892450px;}
.y172{bottom:788.902200px;}
.yc1{bottom:788.929200px;}
.ye8{bottom:789.070950px;}
.y8a{bottom:789.128700px;}
.y112{bottom:789.228450px;}
.y2{bottom:791.931000px;}
.y16{bottom:809.834700px;}
.y194{bottom:809.844450px;}
.y14e{bottom:809.863200px;}
.y9f{bottom:809.887200px;}
.yc0{bottom:809.923950px;}
.y89{bottom:810.123450px;}
.y15{bottom:830.834700px;}
.y14d{bottom:830.862450px;}
.y9e{bottom:830.881950px;}
.y5a{bottom:830.897700px;}
.y171{bottom:830.900700px;}
.ybf{bottom:830.918700px;}
.ye7{bottom:831.076200px;}
.y88{bottom:831.118200px;}
.y111{bottom:831.233700px;}
.y14{bottom:851.834700px;}
.y193{bottom:851.842950px;}
.y9d{bottom:851.876700px;}
.y59{bottom:851.892450px;}
.y170{bottom:851.899950px;}
.ybe{bottom:851.913450px;}
.ye6{bottom:852.070950px;}
.y87{bottom:852.112950px;}
.y1{bottom:859.112850px;}
.y13{bottom:872.834700px;}
.y192{bottom:872.842200px;}
.y14c{bottom:872.860950px;}
.y9c{bottom:872.871450px;}
.y58{bottom:872.887200px;}
.y16f{bottom:872.899200px;}
.ybd{bottom:872.908200px;}
.ye5{bottom:873.065700px;}
.y86{bottom:873.107700px;}
.y110{bottom:873.238950px;}
.y12{bottom:893.834700px;}
.y191{bottom:893.841450px;}
.y14b{bottom:893.860200px;}
.y9b{bottom:893.866200px;}
.y57{bottom:893.881950px;}
.ye4{bottom:894.060450px;}
.y85{bottom:894.102450px;}
.y10f{bottom:894.233700px;}
.y11{bottom:914.834700px;}
.y190{bottom:914.840700px;}
.y14a{bottom:914.859450px;}
.y9a{bottom:914.860950px;}
.y56{bottom:914.876700px;}
.y16e{bottom:914.897700px;}
.ybc{bottom:914.913450px;}
.y84{bottom:915.097200px;}
.y10e{bottom:915.228450px;}
.y10{bottom:935.834700px;}
.y18f{bottom:935.839950px;}
.y99{bottom:935.855700px;}
.y149{bottom:935.858700px;}
.y55{bottom:935.871450px;}
.y16d{bottom:935.896950px;}
.ybb{bottom:935.908200px;}
.ye3{bottom:936.065700px;}
.y83{bottom:936.091950px;}
.y10d{bottom:936.223200px;}
.yf{bottom:956.834700px;}
.y18e{bottom:956.839200px;}
.y98{bottom:956.850450px;}
.y148{bottom:956.857950px;}
.y54{bottom:956.866200px;}
.y16c{bottom:956.896200px;}
.yba{bottom:956.902950px;}
.y82{bottom:957.086700px;}
.y10c{bottom:957.217950px;}
.y19c{bottom:977.834700px;}
.y18d{bottom:977.838450px;}
.y53{bottom:977.860950px;}
.yb9{bottom:977.897700px;}
.ye2{bottom:978.070950px;}
.y81{bottom:978.081450px;}
.y10b{bottom:978.212700px;}
.y18c{bottom:998.837700px;}
.y52{bottom:998.855700px;}
.y147{bottom:998.856450px;}
.yb8{bottom:998.892450px;}
.y16b{bottom:998.894700px;}
.ye1{bottom:999.065700px;}
.y80{bottom:999.076200px;}
.y10a{bottom:999.207450px;}
.ye{bottom:1007.834700px;}
.y18b{bottom:1019.836950px;}
.y51{bottom:1019.850450px;}
.y146{bottom:1019.855700px;}
.yb7{bottom:1019.887200px;}
.y16a{bottom:1019.893950px;}
.ye0{bottom:1020.060450px;}
.y132{bottom:1020.070950px;}
.y109{bottom:1020.202200px;}
.yd{bottom:1034.834700px;}
.y18a{bottom:1040.836200px;}
.y50{bottom:1040.845200px;}
.y145{bottom:1040.854950px;}
.yb6{bottom:1040.881950px;}
.y169{bottom:1040.893200px;}
.ydf{bottom:1041.055200px;}
.y131{bottom:1041.065700px;}
.y7f{bottom:1041.081450px;}
.y108{bottom:1041.196950px;}
.yc{bottom:1061.834700px;}
.y189{bottom:1061.835450px;}
.y4f{bottom:1061.839950px;}
.y144{bottom:1061.854200px;}
.yb5{bottom:1061.876700px;}
.y168{bottom:1061.892450px;}
.yde{bottom:1062.049950px;}
.y130{bottom:1062.060450px;}
.y7e{bottom:1062.076200px;}
.y107{bottom:1062.191700px;}
.y4e{bottom:1082.834700px;}
.y143{bottom:1082.853450px;}
.yb4{bottom:1082.871450px;}
.y167{bottom:1082.891700px;}
.ydd{bottom:1083.044700px;}
.y12f{bottom:1083.055200px;}
.y7d{bottom:1083.070950px;}
.y106{bottom:1083.186450px;}
.yb{bottom:1091.331300px;}
.y19b{bottom:1091.331600px;}
.y1d6{bottom:1187.038800px;}
.y94{bottom:1187.834700px;}
.y4d{bottom:1188.101400px;}
.h12{height:37.740000px;}
.hb{height:43.800000px;}
.h8{height:44.400000px;}
.hf{height:44.793000px;}
.h11{height:46.614000px;}
.hc{height:50.526000px;}
.h7{height:51.768000px;}
.he{height:53.280000px;}
.ha{height:54.840000px;}
.h9{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h10{height:129.613200px;}
.hd{height:130.680000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.xe{left:86.633850px;}
.xd{left:133.676100px;}
.xb{left:141.296100px;}
.xc{left:165.176100px;}
.x2{left:223.228350px;}
.x5{left:467.717100px;}
.x6{left:643.847250px;}
.xf{left:645.441750px;}
.x9{left:974.763750px;}
.x7{left:977.952750px;}
.x11{left:985.644750px;}
.x12{left:993.804750px;}
.x8{left:1360.630500px;}
.xa{left:1533.571500px;}
.x10{left:1535.166000px;}
@media print{
.v2{vertical-align:-0.948267pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.779733pt;}
.v1{vertical-align:68.800000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls12{letter-spacing:-1.064000pt;}
.lsb{letter-spacing:-0.952000pt;}
.ls1c{letter-spacing:-0.840000pt;}
.ls4{letter-spacing:-0.616000pt;}
.ls16{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.504000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.392000pt;}
.ls1a{letter-spacing:-0.384000pt;}
.lsf{letter-spacing:-0.336000pt;}
.ls15{letter-spacing:-0.280000pt;}
.ls14{letter-spacing:-0.224000pt;}
.ls5{letter-spacing:-0.168000pt;}
.ls7{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.112000pt;}
.ls19{letter-spacing:0.168000pt;}
.ls6{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.280000pt;}
.lsd{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.392000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.784000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls10{letter-spacing:1.232000pt;}
.ls18{letter-spacing:1.400000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws85{word-spacing:-12.426667pt;}
.ws86{word-spacing:-11.560000pt;}
.ws4f{word-spacing:-11.256000pt;}
.ws4d{word-spacing:-10.920000pt;}
.ws4e{word-spacing:-10.696000pt;}
.ws7{word-spacing:-10.640000pt;}
.wsa8{word-spacing:-2.293333pt;}
.ws12{word-spacing:-1.866667pt;}
.ws9{word-spacing:-1.813333pt;}
.ws8a{word-spacing:-1.792000pt;}
.ws87{word-spacing:-1.400000pt;}
.ws3e{word-spacing:-1.232000pt;}
.ws14{word-spacing:-1.120000pt;}
.wsd{word-spacing:-0.853333pt;}
.ws4a{word-spacing:-0.840000pt;}
.ws23{word-spacing:-0.784000pt;}
.ws95{word-spacing:-0.672000pt;}
.ws34{word-spacing:-0.616000pt;}
.ws19{word-spacing:-0.504000pt;}
.ws20{word-spacing:-0.448000pt;}
.ws92{word-spacing:-0.392000pt;}
.ws2a{word-spacing:-0.336000pt;}
.ws18{word-spacing:-0.280000pt;}
.ws1b{word-spacing:-0.224000pt;}
.ws2e{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws44{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws1d{word-spacing:0.112000pt;}
.ws49{word-spacing:0.168000pt;}
.ws7e{word-spacing:0.224000pt;}
.ws60{word-spacing:0.280000pt;}
.ws52{word-spacing:0.336000pt;}
.wsa1{word-spacing:0.384000pt;}
.ws56{word-spacing:0.392000pt;}
.ws31{word-spacing:0.448000pt;}
.ws6c{word-spacing:0.504000pt;}
.ws7b{word-spacing:0.560000pt;}
.ws2f{word-spacing:0.616000pt;}
.ws71{word-spacing:0.672000pt;}
.ws24{word-spacing:0.784000pt;}
.ws9e{word-spacing:0.840000pt;}
.ws21{word-spacing:0.896000pt;}
.ws27{word-spacing:0.952000pt;}
.wsaf{word-spacing:1.008000pt;}
.ws50{word-spacing:1.176000pt;}
.wsb{word-spacing:1.226667pt;}
.ws98{word-spacing:1.288000pt;}
.ws67{word-spacing:1.400000pt;}
.ws1c{word-spacing:1.456000pt;}
.wsf{word-spacing:1.493333pt;}
.wsac{word-spacing:1.568000pt;}
.ws2c{word-spacing:1.792000pt;}
.ws35{word-spacing:1.960000pt;}
.ws16{word-spacing:2.016000pt;}
.ws64{word-spacing:2.240000pt;}
.ws9a{word-spacing:2.744000pt;}
.ws5c{word-spacing:2.912000pt;}
.ws79{word-spacing:3.080000pt;}
.ws1e{word-spacing:3.136000pt;}
.ws15{word-spacing:3.360000pt;}
.wsa5{word-spacing:3.466667pt;}
.ws3d{word-spacing:3.472000pt;}
.ws74{word-spacing:3.528000pt;}
.ws9b{word-spacing:3.584000pt;}
.ws8e{word-spacing:3.808000pt;}
.ws68{word-spacing:3.920000pt;}
.ws2b{word-spacing:4.032000pt;}
.ws70{word-spacing:4.256000pt;}
.ws13{word-spacing:4.266667pt;}
.wsa{word-spacing:4.693333pt;}
.ws75{word-spacing:4.760000pt;}
.ws11{word-spacing:5.226667pt;}
.wsa7{word-spacing:5.280000pt;}
.ws48{word-spacing:6.104000pt;}
.wse{word-spacing:6.133333pt;}
.wsa6{word-spacing:6.186667pt;}
.ws57{word-spacing:6.216000pt;}
.ws42{word-spacing:6.384000pt;}
.ws59{word-spacing:6.552000pt;}
.wsa4{word-spacing:6.720000pt;}
.ws39{word-spacing:6.776000pt;}
.ws76{word-spacing:6.832000pt;}
.ws10{word-spacing:6.933333pt;}
.ws63{word-spacing:7.000000pt;}
.ws1f{word-spacing:7.224000pt;}
.ws3b{word-spacing:7.280000pt;}
.wsa2{word-spacing:7.306667pt;}
.ws6e{word-spacing:7.504000pt;}
.ws6b{word-spacing:7.560000pt;}
.wsc{word-spacing:7.626667pt;}
.ws46{word-spacing:7.952000pt;}
.ws4b{word-spacing:8.176000pt;}
.ws7d{word-spacing:8.232000pt;}
.ws65{word-spacing:8.568000pt;}
.ws38{word-spacing:8.792000pt;}
.ws6a{word-spacing:9.128000pt;}
.ws8f{word-spacing:9.240000pt;}
.ws55{word-spacing:9.296000pt;}
.ws5a{word-spacing:9.408000pt;}
.ws6f{word-spacing:9.632000pt;}
.ws7a{word-spacing:9.912000pt;}
.ws7c{word-spacing:10.024000pt;}
.ws62{word-spacing:10.416000pt;}
.ws78{word-spacing:10.472000pt;}
.ws8d{word-spacing:10.696000pt;}
.ws43{word-spacing:10.808000pt;}
.ws69{word-spacing:10.976000pt;}
.ws99{word-spacing:11.032000pt;}
.ws94{word-spacing:11.088000pt;}
.ws3f{word-spacing:11.424000pt;}
.ws41{word-spacing:11.536000pt;}
.ws7f{word-spacing:11.648000pt;}
.ws6d{word-spacing:12.040000pt;}
.ws5d{word-spacing:12.152000pt;}
.ws5b{word-spacing:12.208000pt;}
.wsab{word-spacing:12.544000pt;}
.ws83{word-spacing:12.600000pt;}
.ws32{word-spacing:12.656000pt;}
.ws66{word-spacing:12.712000pt;}
.wsa3{word-spacing:13.173333pt;}
.ws58{word-spacing:13.216000pt;}
.ws9d{word-spacing:13.440000pt;}
.ws91{word-spacing:13.552000pt;}
.ws8c{word-spacing:13.664000pt;}
.ws72{word-spacing:13.720000pt;}
.ws90{word-spacing:14.000000pt;}
.ws3c{word-spacing:14.056000pt;}
.ws89{word-spacing:14.224000pt;}
.wsa9{word-spacing:14.728000pt;}
.ws53{word-spacing:15.008000pt;}
.ws5f{word-spacing:15.288000pt;}
.wsb0{word-spacing:16.016000pt;}
.ws33{word-spacing:16.352000pt;}
.ws61{word-spacing:16.408000pt;}
.ws29{word-spacing:16.520000pt;}
.ws37{word-spacing:16.800000pt;}
.ws36{word-spacing:17.080000pt;}
.ws30{word-spacing:17.136000pt;}
.ws22{word-spacing:17.304000pt;}
.ws81{word-spacing:17.472000pt;}
.ws8b{word-spacing:18.200000pt;}
.ws80{word-spacing:18.424000pt;}
.ws73{word-spacing:18.480000pt;}
.ws3a{word-spacing:18.816000pt;}
.ws88{word-spacing:19.376000pt;}
.ws25{word-spacing:20.272000pt;}
.ws9c{word-spacing:20.608000pt;}
.ws82{word-spacing:20.888000pt;}
.ws96{word-spacing:21.952000pt;}
.ws5e{word-spacing:22.120000pt;}
.ws26{word-spacing:22.568000pt;}
.wsaa{word-spacing:22.960000pt;}
.ws28{word-spacing:23.240000pt;}
.ws40{word-spacing:24.136000pt;}
.ws47{word-spacing:24.808000pt;}
.ws45{word-spacing:25.088000pt;}
.ws54{word-spacing:26.488000pt;}
.ws1a{word-spacing:26.712000pt;}
.ws51{word-spacing:27.552000pt;}
.ws2d{word-spacing:27.944000pt;}
.ws93{word-spacing:29.064000pt;}
.wsad{word-spacing:30.576000pt;}
.ws77{word-spacing:32.200000pt;}
.ws17{word-spacing:33.992000pt;}
.wsae{word-spacing:34.664000pt;}
.ws97{word-spacing:46.368000pt;}
.ws8{word-spacing:122.249067pt;}
.ws6{word-spacing:122.249600pt;}
.wsa0{word-spacing:447.997867pt;}
.ws4c{word-spacing:5529.984000pt;}
.ws84{word-spacing:5532.672000pt;}
.ws9f{word-spacing:5533.440000pt;}
.ws5{word-spacing:5535.488000pt;}
._20{margin-left:-13.898667pt;}
._27{margin-left:-12.076533pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.903198pt;}
._5{width:0.930402pt;}
._6{width:2.476798pt;}
._9{width:3.650387pt;}
._b{width:4.995200pt;}
._f{width:5.957468pt;}
._a{width:6.962353pt;}
._8{width:7.900017pt;}
._7{width:8.823996pt;}
._c{width:10.264800pt;}
._10{width:12.918398pt;}
._14{width:13.972802pt;}
._13{width:15.703200pt;}
._d{width:16.616798pt;}
._e{width:17.640525pt;}
._16{width:18.760000pt;}
._1c{width:20.184798pt;}
._1b{width:21.326404pt;}
._23{width:22.917600pt;}
._24{width:24.423198pt;}
._22{width:26.023198pt;}
._1f{width:27.176273pt;}
._1a{width:28.223725pt;}
._19{width:29.159200pt;}
._12{width:30.910396pt;}
._11{width:31.861600pt;}
._26{width:33.040000pt;}
._28{width:35.964271pt;}
._17{width:37.176796pt;}
._21{width:39.157591pt;}
._29{width:42.956798pt;}
._18{width:46.019200pt;}
._15{width:49.331202pt;}
._1d{width:55.350400pt;}
._1e{width:56.489600pt;}
._25{width:592.378406pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y1d8{bottom:29.186400pt;}
.y97{bottom:29.344933pt;}
.ya{bottom:36.640000pt;}
.y1d7{bottom:42.519733pt;}
.y96{bottom:42.678267pt;}
.y95{bottom:56.011600pt;}
.yb3{bottom:85.214400pt;}
.y12e{bottom:85.233067pt;}
.y93{bottom:85.270400pt;}
.y35{bottom:85.284400pt;}
.y1b8{bottom:85.302933pt;}
.ydc{bottom:85.368400pt;}
.y4c{bottom:85.382400pt;}
.y7c{bottom:85.391733pt;}
.y1d5{bottom:85.414933pt;}
.y142{bottom:103.866400pt;}
.y12d{bottom:103.895067pt;}
.y92{bottom:103.932400pt;}
.y34{bottom:103.946400pt;}
.y1b7{bottom:103.964933pt;}
.ydb{bottom:104.030400pt;}
.y4b{bottom:104.044400pt;}
.y7b{bottom:104.053733pt;}
.y1d4{bottom:104.076933pt;}
.y105{bottom:104.170400pt;}
.y141{bottom:122.532400pt;}
.yb2{bottom:122.552400pt;}
.y12c{bottom:122.557067pt;}
.y33{bottom:122.608400pt;}
.y1b6{bottom:122.626933pt;}
.yda{bottom:122.692400pt;}
.y4a{bottom:122.706400pt;}
.y7a{bottom:122.715733pt;}
.y1d3{bottom:122.738933pt;}
.y104{bottom:122.832400pt;}
.y140{bottom:141.198400pt;}
.yb1{bottom:141.214400pt;}
.y12b{bottom:141.219067pt;}
.y32{bottom:141.270400pt;}
.y1b5{bottom:141.288933pt;}
.yd9{bottom:141.354400pt;}
.y49{bottom:141.368400pt;}
.y79{bottom:141.377733pt;}
.y1d2{bottom:141.400933pt;}
.y103{bottom:141.494400pt;}
.y13f{bottom:159.864400pt;}
.yb0{bottom:159.876400pt;}
.y12a{bottom:159.881067pt;}
.y166{bottom:159.898400pt;}
.y31{bottom:159.932400pt;}
.y1b4{bottom:159.950933pt;}
.y48{bottom:160.030400pt;}
.y78{bottom:160.039733pt;}
.y1d1{bottom:160.062933pt;}
.y102{bottom:160.156400pt;}
.y13e{bottom:178.530400pt;}
.yaf{bottom:178.538400pt;}
.y129{bottom:178.543067pt;}
.y165{bottom:178.564400pt;}
.y30{bottom:178.594400pt;}
.y188{bottom:178.598400pt;}
.y1b3{bottom:178.612933pt;}
.y47{bottom:178.692400pt;}
.y77{bottom:178.701733pt;}
.y1d0{bottom:178.724933pt;}
.y101{bottom:178.818400pt;}
.y13d{bottom:197.196400pt;}
.yae{bottom:197.200400pt;}
.y128{bottom:197.205067pt;}
.y164{bottom:197.230400pt;}
.y2f{bottom:197.256400pt;}
.y187{bottom:197.264400pt;}
.y1b2{bottom:197.274933pt;}
.yd8{bottom:197.354400pt;}
.y76{bottom:197.363733pt;}
.y1cf{bottom:197.386933pt;}
.y100{bottom:197.480400pt;}
.yad{bottom:215.862400pt;}
.y127{bottom:215.867067pt;}
.y163{bottom:215.896400pt;}
.y2e{bottom:215.918400pt;}
.y186{bottom:215.930400pt;}
.y1b1{bottom:215.936933pt;}
.yd7{bottom:216.016400pt;}
.y75{bottom:216.025733pt;}
.y46{bottom:216.030400pt;}
.y1ce{bottom:216.048933pt;}
.yff{bottom:216.142400pt;}
.yac{bottom:234.524400pt;}
.y126{bottom:234.529067pt;}
.y162{bottom:234.562400pt;}
.y2d{bottom:234.580400pt;}
.y185{bottom:234.596400pt;}
.y1b0{bottom:234.598933pt;}
.yd6{bottom:234.678400pt;}
.y74{bottom:234.687733pt;}
.y45{bottom:234.692400pt;}
.yab{bottom:253.186400pt;}
.y125{bottom:253.191067pt;}
.y13c{bottom:253.194400pt;}
.y2c{bottom:253.242400pt;}
.y184{bottom:253.262400pt;}
.yd5{bottom:253.340400pt;}
.y73{bottom:253.349733pt;}
.y44{bottom:253.354400pt;}
.y1cd{bottom:253.386933pt;}
.yfe{bottom:253.480400pt;}
.yaa{bottom:271.848400pt;}
.y124{bottom:271.853067pt;}
.y13b{bottom:271.860400pt;}
.y161{bottom:271.894400pt;}
.y2b{bottom:271.904400pt;}
.y1af{bottom:271.936933pt;}
.yd4{bottom:272.002400pt;}
.y72{bottom:272.011733pt;}
.y43{bottom:272.016400pt;}
.y1cc{bottom:272.048933pt;}
.y13a{bottom:290.526400pt;}
.y160{bottom:290.560400pt;}
.y2a{bottom:290.566400pt;}
.y183{bottom:290.594400pt;}
.y1ae{bottom:290.598933pt;}
.yd3{bottom:290.664400pt;}
.y71{bottom:290.673733pt;}
.y42{bottom:290.678400pt;}
.y1cb{bottom:290.710933pt;}
.yfd{bottom:290.818400pt;}
.ya9{bottom:309.186400pt;}
.y139{bottom:309.192400pt;}
.y15f{bottom:309.226400pt;}
.y29{bottom:309.228400pt;}
.y182{bottom:309.260400pt;}
.y1ad{bottom:309.260933pt;}
.y70{bottom:309.335733pt;}
.y41{bottom:309.340400pt;}
.y1ca{bottom:309.372933pt;}
.yfc{bottom:309.480400pt;}
.y7{bottom:312.905067pt;}
.y138{bottom:327.858400pt;}
.y28{bottom:327.890400pt;}
.y1ac{bottom:327.922933pt;}
.y181{bottom:327.926400pt;}
.y6f{bottom:327.997733pt;}
.y40{bottom:328.002400pt;}
.y1c9{bottom:328.034933pt;}
.yfb{bottom:328.142400pt;}
.y9{bottom:339.479200pt;}
.ya8{bottom:346.519733pt;}
.y137{bottom:346.524400pt;}
.y27{bottom:346.552400pt;}
.y15e{bottom:346.558400pt;}
.y1ab{bottom:346.584933pt;}
.y6e{bottom:346.659733pt;}
.y3f{bottom:346.664400pt;}
.y1c8{bottom:346.696933pt;}
.yfa{bottom:346.804400pt;}
.y136{bottom:365.190400pt;}
.y26{bottom:365.214400pt;}
.y15d{bottom:365.224400pt;}
.y1aa{bottom:365.246933pt;}
.y180{bottom:365.258400pt;}
.y6d{bottom:365.321733pt;}
.y3e{bottom:365.326400pt;}
.yd2{bottom:365.340400pt;}
.y1c7{bottom:365.358933pt;}
.yf9{bottom:365.466400pt;}
.y123{bottom:365.606400pt;}
.y25{bottom:383.876400pt;}
.y15c{bottom:383.890400pt;}
.y1a9{bottom:383.908933pt;}
.y17f{bottom:383.924400pt;}
.y6c{bottom:383.983733pt;}
.y3d{bottom:383.988400pt;}
.yd1{bottom:384.002400pt;}
.y1c6{bottom:384.020933pt;}
.yf8{bottom:384.128400pt;}
.y122{bottom:384.268400pt;}
.y6{bottom:395.571733pt;}
.y135{bottom:402.522400pt;}
.y24{bottom:402.538400pt;}
.y15b{bottom:402.556400pt;}
.y1a8{bottom:402.570933pt;}
.ya7{bottom:402.631733pt;}
.y6b{bottom:402.645733pt;}
.y3c{bottom:402.650400pt;}
.yd0{bottom:402.664400pt;}
.y1c5{bottom:402.682933pt;}
.yf7{bottom:402.790400pt;}
.y121{bottom:402.930400pt;}
.y134{bottom:421.188400pt;}
.y23{bottom:421.200400pt;}
.y1a7{bottom:421.232933pt;}
.y17e{bottom:421.256400pt;}
.ya6{bottom:421.293733pt;}
.y6a{bottom:421.307733pt;}
.y3b{bottom:421.312400pt;}
.ycf{bottom:421.326400pt;}
.y1c4{bottom:421.344933pt;}
.yf6{bottom:421.452400pt;}
.y120{bottom:421.592400pt;}
.y22{bottom:439.862400pt;}
.y15a{bottom:439.888400pt;}
.y1a6{bottom:439.894933pt;}
.y17d{bottom:439.922400pt;}
.ya5{bottom:439.955733pt;}
.y69{bottom:439.969733pt;}
.y3a{bottom:439.974400pt;}
.yce{bottom:439.988400pt;}
.y1c3{bottom:440.006933pt;}
.yf5{bottom:440.114400pt;}
.y11f{bottom:440.254400pt;}
.y133{bottom:458.520400pt;}
.y21{bottom:458.524400pt;}
.y159{bottom:458.554400pt;}
.y1a5{bottom:458.556933pt;}
.y17c{bottom:458.588400pt;}
.ya4{bottom:458.617733pt;}
.y68{bottom:458.631733pt;}
.y39{bottom:458.636400pt;}
.ycd{bottom:458.650400pt;}
.y1c2{bottom:458.668933pt;}
.yf4{bottom:458.776400pt;}
.y11e{bottom:458.916400pt;}
.y20{bottom:477.186400pt;}
.y1a4{bottom:477.218933pt;}
.y17b{bottom:477.254400pt;}
.ya3{bottom:477.279733pt;}
.y67{bottom:477.293733pt;}
.y38{bottom:477.298400pt;}
.ycc{bottom:477.312400pt;}
.y1c1{bottom:477.330933pt;}
.yf3{bottom:477.438400pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y1a3{bottom:495.880933pt;}
.y158{bottom:495.886400pt;}
.ya2{bottom:495.941733pt;}
.y66{bottom:495.955733pt;}
.y37{bottom:495.960400pt;}
.ycb{bottom:495.974400pt;}
.y1c0{bottom:495.992933pt;}
.yf2{bottom:496.100400pt;}
.y11d{bottom:496.254400pt;}
.y1f{bottom:514.519733pt;}
.y1a2{bottom:514.542933pt;}
.y157{bottom:514.552400pt;}
.y17a{bottom:514.586400pt;}
.ya1{bottom:514.603733pt;}
.y65{bottom:514.617733pt;}
.y36{bottom:514.622400pt;}
.yca{bottom:514.636400pt;}
.y1bf{bottom:514.654933pt;}
.y11c{bottom:514.916400pt;}
.y1a1{bottom:533.204933pt;}
.y156{bottom:533.218400pt;}
.y179{bottom:533.252400pt;}
.ya0{bottom:533.265733pt;}
.y64{bottom:533.279733pt;}
.yc9{bottom:533.298400pt;}
.y1be{bottom:533.316933pt;}
.yf1{bottom:533.438400pt;}
.y11b{bottom:533.578400pt;}
.y1a0{bottom:551.866933pt;}
.y155{bottom:551.884400pt;}
.y178{bottom:551.918400pt;}
.y63{bottom:551.941733pt;}
.yc8{bottom:551.960400pt;}
.yf0{bottom:552.100400pt;}
.y11a{bottom:552.240400pt;}
.y4{bottom:560.905067pt;}
.y1e{bottom:570.519733pt;}
.y19f{bottom:570.528933pt;}
.y177{bottom:570.584400pt;}
.y62{bottom:570.603733pt;}
.yc7{bottom:570.622400pt;}
.y1bd{bottom:570.654933pt;}
.yef{bottom:570.762400pt;}
.y91{bottom:570.813733pt;}
.y119{bottom:570.902400pt;}
.y1d{bottom:589.186400pt;}
.y19e{bottom:589.190933pt;}
.y154{bottom:589.216400pt;}
.y61{bottom:589.265733pt;}
.yc6{bottom:589.284400pt;}
.y1bc{bottom:589.316933pt;}
.yee{bottom:589.424400pt;}
.y90{bottom:589.475733pt;}
.y118{bottom:589.564400pt;}
.y19d{bottom:607.852933pt;}
.y1c{bottom:607.853067pt;}
.y19a{bottom:607.865733pt;}
.y153{bottom:607.882400pt;}
.y176{bottom:607.916400pt;}
.y60{bottom:607.927733pt;}
.y1bb{bottom:607.978933pt;}
.yed{bottom:608.086400pt;}
.y8f{bottom:608.137733pt;}
.y117{bottom:608.226400pt;}
.y1b{bottom:626.519733pt;}
.y199{bottom:626.531733pt;}
.y152{bottom:626.548400pt;}
.y175{bottom:626.582400pt;}
.y5f{bottom:626.589733pt;}
.yc5{bottom:626.622400pt;}
.y1ba{bottom:626.640933pt;}
.yec{bottom:626.748400pt;}
.y8e{bottom:626.799733pt;}
.y116{bottom:626.888400pt;}
.y1a{bottom:645.186400pt;}
.y198{bottom:645.197733pt;}
.y151{bottom:645.214400pt;}
.y174{bottom:645.248400pt;}
.y5e{bottom:645.251733pt;}
.yc4{bottom:645.284400pt;}
.y1b9{bottom:645.302933pt;}
.yeb{bottom:645.410400pt;}
.y8d{bottom:645.461733pt;}
.y115{bottom:645.550400pt;}
.y19{bottom:663.853067pt;}
.y197{bottom:663.863733pt;}
.y5d{bottom:663.913733pt;}
.yc3{bottom:663.946400pt;}
.yea{bottom:664.072400pt;}
.y8c{bottom:664.123733pt;}
.y114{bottom:664.212400pt;}
.y3{bottom:668.212133pt;}
.y18{bottom:682.519733pt;}
.y196{bottom:682.529733pt;}
.y150{bottom:682.546400pt;}
.y5c{bottom:682.575733pt;}
.y173{bottom:682.580400pt;}
.yc2{bottom:682.608400pt;}
.ye9{bottom:682.734400pt;}
.y8b{bottom:682.785733pt;}
.y113{bottom:682.874400pt;}
.y17{bottom:701.186400pt;}
.y195{bottom:701.195733pt;}
.y14f{bottom:701.212400pt;}
.y5b{bottom:701.237733pt;}
.y172{bottom:701.246400pt;}
.yc1{bottom:701.270400pt;}
.ye8{bottom:701.396400pt;}
.y8a{bottom:701.447733pt;}
.y112{bottom:701.536400pt;}
.y2{bottom:703.938667pt;}
.y16{bottom:719.853067pt;}
.y194{bottom:719.861733pt;}
.y14e{bottom:719.878400pt;}
.y9f{bottom:719.899733pt;}
.yc0{bottom:719.932400pt;}
.y89{bottom:720.109733pt;}
.y15{bottom:738.519733pt;}
.y14d{bottom:738.544400pt;}
.y9e{bottom:738.561733pt;}
.y5a{bottom:738.575733pt;}
.y171{bottom:738.578400pt;}
.ybf{bottom:738.594400pt;}
.ye7{bottom:738.734400pt;}
.y88{bottom:738.771733pt;}
.y111{bottom:738.874400pt;}
.y14{bottom:757.186400pt;}
.y193{bottom:757.193733pt;}
.y9d{bottom:757.223733pt;}
.y59{bottom:757.237733pt;}
.y170{bottom:757.244400pt;}
.ybe{bottom:757.256400pt;}
.ye6{bottom:757.396400pt;}
.y87{bottom:757.433733pt;}
.y1{bottom:763.655867pt;}
.y13{bottom:775.853067pt;}
.y192{bottom:775.859733pt;}
.y14c{bottom:775.876400pt;}
.y9c{bottom:775.885733pt;}
.y58{bottom:775.899733pt;}
.y16f{bottom:775.910400pt;}
.ybd{bottom:775.918400pt;}
.ye5{bottom:776.058400pt;}
.y86{bottom:776.095733pt;}
.y110{bottom:776.212400pt;}
.y12{bottom:794.519733pt;}
.y191{bottom:794.525733pt;}
.y14b{bottom:794.542400pt;}
.y9b{bottom:794.547733pt;}
.y57{bottom:794.561733pt;}
.ye4{bottom:794.720400pt;}
.y85{bottom:794.757733pt;}
.y10f{bottom:794.874400pt;}
.y11{bottom:813.186400pt;}
.y190{bottom:813.191733pt;}
.y14a{bottom:813.208400pt;}
.y9a{bottom:813.209733pt;}
.y56{bottom:813.223733pt;}
.y16e{bottom:813.242400pt;}
.ybc{bottom:813.256400pt;}
.y84{bottom:813.419733pt;}
.y10e{bottom:813.536400pt;}
.y10{bottom:831.853067pt;}
.y18f{bottom:831.857733pt;}
.y99{bottom:831.871733pt;}
.y149{bottom:831.874400pt;}
.y55{bottom:831.885733pt;}
.y16d{bottom:831.908400pt;}
.ybb{bottom:831.918400pt;}
.ye3{bottom:832.058400pt;}
.y83{bottom:832.081733pt;}
.y10d{bottom:832.198400pt;}
.yf{bottom:850.519733pt;}
.y18e{bottom:850.523733pt;}
.y98{bottom:850.533733pt;}
.y148{bottom:850.540400pt;}
.y54{bottom:850.547733pt;}
.y16c{bottom:850.574400pt;}
.yba{bottom:850.580400pt;}
.y82{bottom:850.743733pt;}
.y10c{bottom:850.860400pt;}
.y19c{bottom:869.186400pt;}
.y18d{bottom:869.189733pt;}
.y53{bottom:869.209733pt;}
.yb9{bottom:869.242400pt;}
.ye2{bottom:869.396400pt;}
.y81{bottom:869.405733pt;}
.y10b{bottom:869.522400pt;}
.y18c{bottom:887.855733pt;}
.y52{bottom:887.871733pt;}
.y147{bottom:887.872400pt;}
.yb8{bottom:887.904400pt;}
.y16b{bottom:887.906400pt;}
.ye1{bottom:888.058400pt;}
.y80{bottom:888.067733pt;}
.y10a{bottom:888.184400pt;}
.ye{bottom:895.853067pt;}
.y18b{bottom:906.521733pt;}
.y51{bottom:906.533733pt;}
.y146{bottom:906.538400pt;}
.yb7{bottom:906.566400pt;}
.y16a{bottom:906.572400pt;}
.ye0{bottom:906.720400pt;}
.y132{bottom:906.729733pt;}
.y109{bottom:906.846400pt;}
.yd{bottom:919.853067pt;}
.y18a{bottom:925.187733pt;}
.y50{bottom:925.195733pt;}
.y145{bottom:925.204400pt;}
.yb6{bottom:925.228400pt;}
.y169{bottom:925.238400pt;}
.ydf{bottom:925.382400pt;}
.y131{bottom:925.391733pt;}
.y7f{bottom:925.405733pt;}
.y108{bottom:925.508400pt;}
.yc{bottom:943.853067pt;}
.y189{bottom:943.853733pt;}
.y4f{bottom:943.857733pt;}
.y144{bottom:943.870400pt;}
.yb5{bottom:943.890400pt;}
.y168{bottom:943.904400pt;}
.yde{bottom:944.044400pt;}
.y130{bottom:944.053733pt;}
.y7e{bottom:944.067733pt;}
.y107{bottom:944.170400pt;}
.y4e{bottom:962.519733pt;}
.y143{bottom:962.536400pt;}
.yb4{bottom:962.552400pt;}
.y167{bottom:962.570400pt;}
.ydd{bottom:962.706400pt;}
.y12f{bottom:962.715733pt;}
.y7d{bottom:962.729733pt;}
.y106{bottom:962.832400pt;}
.yb{bottom:970.072267pt;}
.y19b{bottom:970.072533pt;}
.y1d6{bottom:1055.145600pt;}
.y94{bottom:1055.853067pt;}
.y4d{bottom:1056.090133pt;}
.h12{height:33.546667pt;}
.hb{height:38.933333pt;}
.h8{height:39.466667pt;}
.hf{height:39.816000pt;}
.h11{height:41.434667pt;}
.hc{height:44.912000pt;}
.h7{height:46.016000pt;}
.he{height:47.360000pt;}
.ha{height:48.746667pt;}
.h9{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h10{height:115.211733pt;}
.hd{height:116.160000pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.xe{left:77.007867pt;}
.xd{left:118.823200pt;}
.xb{left:125.596533pt;}
.xc{left:146.823200pt;}
.x2{left:198.425200pt;}
.x5{left:415.748533pt;}
.x6{left:572.308667pt;}
.xf{left:573.726000pt;}
.x9{left:866.456667pt;}
.x7{left:869.291333pt;}
.x11{left:876.128667pt;}
.x12{left:883.382000pt;}
.x8{left:1209.449333pt;}
.xa{left:1363.174667pt;}
.x10{left:1364.592000pt;}
}




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