
    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_913f8b27e75b38764b620368.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c55b953eaaed0ee4e42c366d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.185000;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_454933077f865eb22ae7a5a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.355000;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_194bd4290d7edf63dacc13a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_fc6b2c82700ed80d5c13265c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b71308a3aacc21bffba305ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.349000;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_071a8868840c1c23e4ba906a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;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_8859c628506cb421f9eb3710.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.392000;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_d822c830dff769323effd444.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_46445386cabbe351f1c4050d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.362000;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_78f192443a6cd4876c6486c6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dd637188a17e49fe182f42c0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f73122a073f1c10a677960e8.woff2')format("woff");}.fff{font-family:fff;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_006085c4301d247331b65a9c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_da897548a15fd59328b244d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2f1e66e4cb3902199ad66330.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.930000;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;}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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);}
.v1{vertical-align:-19.980011px;}
.v2{vertical-align:-5.205688px;}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-2.234008px;}
.ls1{letter-spacing:-0.858000px;}
.ls13{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.600000px;}
.ls28{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.480000px;}
.ls20{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.lsf{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000005px;}
.ls5{letter-spacing:0.000018px;}
.ls8{letter-spacing:0.000044px;}
.ls14{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.161982px;}
.ls1c{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.240000px;}
.ls1e{letter-spacing:0.299997px;}
.ls6{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.420000px;}
.ls25{letter-spacing:0.431982px;}
.ls16{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.483034px;}
.ls23{letter-spacing:0.485998px;}
.ls3{letter-spacing:0.540000px;}
.lse{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.780000px;}
.ls26{letter-spacing:0.809983px;}
.ls18{letter-spacing:0.840000px;}
.ls19{letter-spacing:1.140000px;}
.ls1f{letter-spacing:14.699988px;}
.ls1d{letter-spacing:16.380003px;}
.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:-32.400000px;}
.ws85{word-spacing:-16.344000px;}
.ws30{word-spacing:-15.525000px;}
.ws4a{word-spacing:-14.904000px;}
.ws2{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.740000px;}
.ws7{word-spacing:-13.620000px;}
.ws6{word-spacing:-13.500000px;}
.ws4b{word-spacing:-13.140000px;}
.ws84{word-spacing:-13.020000px;}
.ws91{word-spacing:-12.366000px;}
.ws86{word-spacing:-12.258000px;}
.ws92{word-spacing:-11.664000px;}
.ws8{word-spacing:-11.178000px;}
.ws2f{word-spacing:-10.855511px;}
.ws4{word-spacing:-9.996000px;}
.wsa{word-spacing:-8.010420px;}
.ws16{word-spacing:-3.780000px;}
.ws21{word-spacing:-3.600000px;}
.ws66{word-spacing:-3.540000px;}
.ws6d{word-spacing:-3.510000px;}
.ws1e{word-spacing:-3.480000px;}
.ws18{word-spacing:-3.420000px;}
.ws15{word-spacing:-3.360000px;}
.wsf{word-spacing:-3.300000px;}
.ws4e{word-spacing:-3.240000px;}
.ws22{word-spacing:-3.120000px;}
.ws1a{word-spacing:-3.059994px;}
.ws27{word-spacing:-3.000000px;}
.ws19{word-spacing:-2.940000px;}
.ws54{word-spacing:-2.820000px;}
.ws79{word-spacing:-2.760000px;}
.ws4f{word-spacing:-2.700000px;}
.ws52{word-spacing:-2.640000px;}
.ws67{word-spacing:-2.580000px;}
.ws2c{word-spacing:-2.520000px;}
.ws49{word-spacing:-2.460000px;}
.ws75{word-spacing:-2.400000px;}
.ws65{word-spacing:-2.160000px;}
.ws1d{word-spacing:-2.100000px;}
.ws5e{word-spacing:-2.040000px;}
.ws5{word-spacing:-1.989000px;}
.ws31{word-spacing:-1.980000px;}
.ws50{word-spacing:-1.920000px;}
.ws3a{word-spacing:-1.860000px;}
.ws83{word-spacing:-1.740000px;}
.wsd{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.440000px;}
.ws13{word-spacing:-1.320000px;}
.ws63{word-spacing:-1.260000px;}
.ws64{word-spacing:-1.200000px;}
.ws6c{word-spacing:-1.140000px;}
.wse{word-spacing:-0.900000px;}
.ws68{word-spacing:-0.720000px;}
.ws3b{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.600000px;}
.ws10{word-spacing:-0.540000px;}
.ws8f{word-spacing:-0.523286px;}
.ws2a{word-spacing:-0.480000px;}
.wsb{word-spacing:-0.420000px;}
.ws7a{word-spacing:-0.360000px;}
.ws62{word-spacing:-0.240000px;}
.ws34{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.120000px;}
.ws8d{word-spacing:-0.108000px;}
.ws36{word-spacing:-0.060000px;}
.ws90{word-spacing:-0.040253px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.060000px;}
.ws35{word-spacing:0.180000px;}
.ws8e{word-spacing:0.216000px;}
.ws3f{word-spacing:0.240000px;}
.ws77{word-spacing:0.300000px;}
.ws1b{word-spacing:0.360000px;}
.ws82{word-spacing:0.420000px;}
.ws28{word-spacing:0.480000px;}
.ws94{word-spacing:0.540000px;}
.ws2d{word-spacing:0.600000px;}
.ws96{word-spacing:0.648000px;}
.ws2b{word-spacing:0.660000px;}
.ws95{word-spacing:0.702000px;}
.ws7b{word-spacing:0.720000px;}
.ws14{word-spacing:0.780000px;}
.ws4d{word-spacing:0.900000px;}
.ws53{word-spacing:0.960000px;}
.ws7d{word-spacing:1.080000px;}
.ws5c{word-spacing:1.140000px;}
.ws8b{word-spacing:1.200000px;}
.ws55{word-spacing:1.260000px;}
.ws61{word-spacing:1.320000px;}
.ws4c{word-spacing:1.380000px;}
.ws5b{word-spacing:1.500000px;}
.ws39{word-spacing:1.560000px;}
.ws1f{word-spacing:1.620000px;}
.ws88{word-spacing:1.680000px;}
.ws56{word-spacing:1.740000px;}
.ws7f{word-spacing:1.800000px;}
.ws69{word-spacing:1.920000px;}
.ws17{word-spacing:2.160000px;}
.ws93{word-spacing:2.234008px;}
.ws6a{word-spacing:2.280000px;}
.ws76{word-spacing:2.340000px;}
.ws51{word-spacing:2.460000px;}
.ws5d{word-spacing:2.520000px;}
.ws78{word-spacing:2.640000px;}
.ws8c{word-spacing:2.700000px;}
.ws20{word-spacing:2.880000px;}
.ws71{word-spacing:2.940000px;}
.ws81{word-spacing:3.120000px;}
.ws89{word-spacing:3.240000px;}
.ws73{word-spacing:3.300000px;}
.ws6b{word-spacing:3.540000px;}
.ws59{word-spacing:3.600000px;}
.ws74{word-spacing:3.660000px;}
.ws60{word-spacing:3.780000px;}
.ws3e{word-spacing:3.840000px;}
.wsc{word-spacing:3.960000px;}
.ws11{word-spacing:4.080000px;}
.ws32{word-spacing:4.140000px;}
.ws33{word-spacing:4.200000px;}
.ws26{word-spacing:4.259994px;}
.ws57{word-spacing:4.260000px;}
.ws38{word-spacing:4.320000px;}
.ws45{word-spacing:4.380000px;}
.ws5f{word-spacing:4.440000px;}
.ws5a{word-spacing:4.500000px;}
.ws12{word-spacing:4.620000px;}
.ws87{word-spacing:4.680000px;}
.ws23{word-spacing:4.860000px;}
.ws25{word-spacing:4.980000px;}
.ws58{word-spacing:5.040000px;}
.ws29{word-spacing:5.220000px;}
.ws7c{word-spacing:5.520000px;}
.ws3c{word-spacing:5.580000px;}
.ws80{word-spacing:5.640000px;}
.ws7e{word-spacing:5.820000px;}
.ws70{word-spacing:5.880000px;}
.ws48{word-spacing:6.540000px;}
.ws40{word-spacing:6.900000px;}
.ws41{word-spacing:6.960000px;}
.ws47{word-spacing:7.020000px;}
.ws6e{word-spacing:7.440000px;}
.ws72{word-spacing:8.100000px;}
.ws6f{word-spacing:8.160000px;}
.ws43{word-spacing:8.400000px;}
.ws1c{word-spacing:9.300000px;}
.ws42{word-spacing:9.900000px;}
.ws46{word-spacing:12.960000px;}
.ws44{word-spacing:16.680000px;}
.ws3{word-spacing:16.860000px;}
.ws2e{word-spacing:1167.580694px;}
._2{margin-left:-2976.360038px;}
._a{margin-left:-631.991198px;}
._c{margin-left:-17.167473px;}
._6{margin-left:-6.552000px;}
._9{margin-left:-4.980000px;}
._4{margin-left:-3.528000px;}
._7{margin-left:-2.268000px;}
._8{margin-left:-1.008000px;}
._0{width:1.020000px;}
._3{width:3.024000px;}
._5{width:4.032000px;}
._1{width:47.399919px;}
._b{width:52.296000px;}
.fc8{color:transparent;}
.fc7{color:rgb(216,132,52);}
.fc4{color:rgb(62,62,61);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(217,112,0);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(1,1,1);}
.fc1{color:rgb(103,103,103);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:34.980000px;}
.fsb{font-size:39.048600px;}
.fs10{font-size:40.252799px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:60.378599px;}
.fsc{font-size:62.478000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:75.000000px;}
.fse{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.169945px;}
.y97{bottom:3.822441px;}
.y155{bottom:16.821752px;}
.y21{bottom:27.042449px;}
.y99{bottom:32.654995px;}
.y98{bottom:48.274498px;}
.y96{bottom:49.576503px;}
.y9c{bottom:77.564518px;}
.y154{bottom:85.039500px;}
.yef{bottom:85.092422px;}
.y124{bottom:85.092448px;}
.y11b{bottom:85.092595px;}
.ydd{bottom:85.092599px;}
.y5a{bottom:85.092602px;}
.y2c{bottom:85.116453px;}
.y156{bottom:91.306800px;}
.y8e{bottom:96.348450px;}
.y4{bottom:97.125005px;}
.y94{bottom:97.848003px;}
.y152{bottom:97.925109px;}
.y2b{bottom:100.110453px;}
.y153{bottom:101.861252px;}
.yee{bottom:107.442422px;}
.y123{bottom:107.442448px;}
.y11a{bottom:107.442595px;}
.ydc{bottom:107.442599px;}
.y59{bottom:107.442604px;}
.y92{bottom:108.799507px;}
.y2a{bottom:115.104453px;}
.y151{bottom:115.920609px;}
.yed{bottom:129.792422px;}
.y122{bottom:129.792448px;}
.y58{bottom:129.792595px;}
.ydb{bottom:129.792599px;}
.y29{bottom:130.098453px;}
.y150{bottom:133.916109px;}
.y20{bottom:139.264499px;}
.y28{bottom:145.092453px;}
.y93{bottom:151.753647px;}
.yec{bottom:152.142422px;}
.y119{bottom:152.142448px;}
.y57{bottom:152.142597px;}
.yda{bottom:152.142599px;}
.y91{bottom:153.055206px;}
.y14f{bottom:158.297109px;}
.yeb{bottom:174.492422px;}
.y121{bottom:174.492448px;}
.y56{bottom:174.492599px;}
.y14e{bottom:176.292609px;}
.y9b{bottom:180.389259px;}
.y14d{bottom:194.288109px;}
.yea{bottom:196.842422px;}
.y120{bottom:196.842448px;}
.y55{bottom:196.842590px;}
.y118{bottom:196.842595px;}
.yd9{bottom:196.842599px;}
.y17{bottom:196.933500px;}
.y90{bottom:207.072761px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y14c{bottom:212.283609px;}
.ye9{bottom:219.192422px;}
.y11f{bottom:219.192448px;}
.yd8{bottom:219.192599px;}
.y54{bottom:219.192604px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y14b{bottom:230.279106px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.ye8{bottom:241.542422px;}
.y11e{bottom:241.542448px;}
.y53{bottom:241.542595px;}
.yd7{bottom:241.542599px;}
.y8f{bottom:251.979011px;}
.y14a{bottom:254.660106px;}
.y7b{bottom:257.093399px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ye7{bottom:263.892422px;}
.y52{bottom:263.892448px;}
.yd6{bottom:263.892599px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y149{bottom:272.655606px;}
.y9a{bottom:280.416447px;}
.y7a{bottom:282.083405px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.ye6{bottom:286.242422px;}
.y51{bottom:286.242439px;}
.y117{bottom:286.242448px;}
.yd5{bottom:286.242599px;}
.y148{bottom:290.651106px;}
.ye5{bottom:308.592422px;}
.y116{bottom:308.592448px;}
.y50{bottom:308.592453px;}
.yd4{bottom:308.592599px;}
.y147{bottom:308.646606px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y79{bottom:319.568550px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.ye4{bottom:330.942422px;}
.y115{bottom:330.942448px;}
.yd3{bottom:330.942599px;}
.y4f{bottom:330.942604px;}
.y146{bottom:333.024605px;}
.y78{bottom:339.563553px;}
.ye{bottom:348.133500px;}
.ye3{bottom:353.292422px;}
.y11d{bottom:353.292448px;}
.y114{bottom:353.292590px;}
.y4e{bottom:353.292595px;}
.yd2{bottom:353.292599px;}
.y77{bottom:359.558556px;}
.ye2{bottom:375.642422px;}
.y11c{bottom:375.642448px;}
.y113{bottom:375.642590px;}
.yd1{bottom:375.642599px;}
.y4d{bottom:375.642609px;}
.y76{bottom:379.553558px;}
.yd{bottom:386.785499px;}
.ye1{bottom:397.992422px;}
.y4c{bottom:397.992599px;}
.y75{bottom:399.548538px;}
.yc{bottom:408.044999px;}
.y74{bottom:419.543564px;}
.yd0{bottom:420.336581px;}
.ye0{bottom:420.342422px;}
.y4b{bottom:420.342590px;}
.y112{bottom:420.342599px;}
.y145{bottom:420.342618px;}
.y9d{bottom:426.933746px;}
.y73{bottom:439.538544px;}
.ydf{bottom:442.692422px;}
.y4a{bottom:442.692581px;}
.y144{bottom:442.692590px;}
.y111{bottom:442.692599px;}
.y72{bottom:459.533569px;}
.yde{bottom:465.042422px;}
.y143{bottom:465.042590px;}
.y110{bottom:465.042599px;}
.y49{bottom:465.042618px;}
.y26{bottom:473.444550px;}
.y71{bottom:479.528549px;}
.ycf{bottom:487.392422px;}
.y8d{bottom:487.392471px;}
.y142{bottom:487.392590px;}
.y48{bottom:487.392609px;}
.y10f{bottom:487.392618px;}
.y70{bottom:499.523529px;}
.yb{bottom:502.864502px;}
.yce{bottom:509.742422px;}
.y8c{bottom:509.742462px;}
.y141{bottom:509.742581px;}
.y47{bottom:509.742599px;}
.y10e{bottom:509.742618px;}
.y6f{bottom:519.518555px;}
.ya{bottom:520.864502px;}
.ycd{bottom:532.092422px;}
.y8b{bottom:532.092453px;}
.y140{bottom:532.092581px;}
.y46{bottom:532.092590px;}
.y10d{bottom:532.092618px;}
.y25{bottom:538.326148px;}
.y9{bottom:538.864499px;}
.y6e{bottom:539.513535px;}
.ycc{bottom:554.442422px;}
.y8a{bottom:554.442444px;}
.y45{bottom:554.442581px;}
.y10c{bottom:554.442618px;}
.y8{bottom:556.864499px;}
.y6d{bottom:559.508560px;}
.y13f{bottom:576.792407px;}
.ycb{bottom:576.792422px;}
.y89{bottom:576.792435px;}
.y44{bottom:576.792618px;}
.y24{bottom:577.314148px;}
.y6c{bottom:579.503540px;}
.y13e{bottom:599.142407px;}
.yca{bottom:599.142422px;}
.y88{bottom:599.142471px;}
.y43{bottom:599.142609px;}
.y10b{bottom:599.142645px;}
.y6b{bottom:599.498566px;}
.y6a{bottom:619.493546px;}
.y13d{bottom:621.492407px;}
.yc9{bottom:621.492422px;}
.y87{bottom:621.492462px;}
.y42{bottom:621.492599px;}
.y10a{bottom:621.492645px;}
.yb2{bottom:627.441467px;}
.y69{bottom:639.488571px;}
.y13c{bottom:643.842407px;}
.yc8{bottom:643.842422px;}
.y86{bottom:643.842453px;}
.y41{bottom:643.842590px;}
.y109{bottom:643.842645px;}
.y7{bottom:645.510000px;}
.yb1{bottom:649.791458px;}
.y16d{bottom:657.231568px;}
.y68{bottom:659.483550px;}
.y13b{bottom:666.192407px;}
.yc7{bottom:666.192422px;}
.y85{bottom:666.192444px;}
.y40{bottom:666.192581px;}
.y108{bottom:666.192645px;}
.y6{bottom:666.771000px;}
.yb0{bottom:672.141449px;}
.y16c{bottom:675.227068px;}
.y67{bottom:679.478531px;}
.y13a{bottom:688.542416px;}
.yc6{bottom:688.542422px;}
.y84{bottom:688.542435px;}
.y3f{bottom:688.542618px;}
.y107{bottom:688.542645px;}
.y23{bottom:688.588641px;}
.y16b{bottom:693.222569px;}
.yaf{bottom:694.491440px;}
.y66{bottom:699.473557px;}
.yc5{bottom:710.892422px;}
.y83{bottom:710.892471px;}
.y3e{bottom:710.892609px;}
.y106{bottom:710.892645px;}
.yae{bottom:716.841431px;}
.y16a{bottom:717.603569px;}
.y65{bottom:719.468536px;}
.y5{bottom:726.298500px;}
.y139{bottom:733.242409px;}
.yc4{bottom:733.242422px;}
.y3d{bottom:733.242462px;}
.y105{bottom:733.242645px;}
.y169{bottom:735.599069px;}
.yad{bottom:739.191467px;}
.y64{bottom:739.463562px;}
.y3{bottom:752.599495px;}
.y168{bottom:753.594557px;}
.yc3{bottom:755.592422px;}
.y3c{bottom:755.592453px;}
.y104{bottom:755.592645px;}
.y63{bottom:759.458542px;}
.y22{bottom:760.597641px;}
.yac{bottom:761.541458px;}
.yc2{bottom:777.942422px;}
.y82{bottom:777.942444px;}
.y3b{bottom:777.942627px;}
.y103{bottom:777.942645px;}
.y167{bottom:777.975557px;}
.y62{bottom:779.453522px;}
.yab{bottom:783.891449px;}
.y138{bottom:795.342407px;}
.y166{bottom:795.971057px;}
.y61{bottom:799.448547px;}
.yc1{bottom:800.292422px;}
.y81{bottom:800.292480px;}
.y3a{bottom:800.292572px;}
.y102{bottom:800.292645px;}
.yaa{bottom:806.241486px;}
.y137{bottom:813.342407px;}
.y165{bottom:813.966562px;}
.y60{bottom:819.443573px;}
.yc0{bottom:822.642422px;}
.y80{bottom:822.642426px;}
.y39{bottom:822.642609px;}
.y101{bottom:822.642645px;}
.ya9{bottom:828.591431px;}
.y136{bottom:831.342407px;}
.y164{bottom:838.347562px;}
.y5f{bottom:839.438507px;}
.y12d{bottom:839.873423px;}
.ybf{bottom:844.992422px;}
.y38{bottom:844.992645px;}
.ya8{bottom:850.941467px;}
.y163{bottom:856.343062px;}
.y5e{bottom:859.433533px;}
.y37{bottom:867.342407px;}
.ybe{bottom:867.342422px;}
.y100{bottom:867.342645px;}
.yf7{bottom:867.387407px;}
.y12c{bottom:869.865923px;}
.ya7{bottom:873.291412px;}
.y162{bottom:874.338562px;}
.y2{bottom:879.369000px;}
.y5d{bottom:879.428558px;}
.y135{bottom:889.692407px;}
.ybd{bottom:889.692422px;}
.y36{bottom:889.692444px;}
.yff{bottom:889.692645px;}
.y161{bottom:892.334057px;}
.ya6{bottom:895.641449px;}
.yf6{bottom:897.379907px;}
.y5c{bottom:899.423584px;}
.y12b{bottom:899.858423px;}
.y134{bottom:912.042407px;}
.ybc{bottom:912.042422px;}
.y35{bottom:912.042480px;}
.yfe{bottom:912.042645px;}
.y160{bottom:916.715057px;}
.ya5{bottom:917.991486px;}
.yf5{bottom:927.372407px;}
.y12a{bottom:929.850923px;}
.y133{bottom:934.392407px;}
.ybb{bottom:934.392422px;}
.y34{bottom:934.392426px;}
.yfd{bottom:934.392645px;}
.y15f{bottom:934.710557px;}
.ya4{bottom:940.341431px;}
.y15e{bottom:952.706057px;}
.y132{bottom:956.742407px;}
.yba{bottom:956.742422px;}
.y7f{bottom:956.742462px;}
.y33{bottom:956.742645px;}
.yf4{bottom:957.364907px;}
.y129{bottom:959.843423px;}
.ya3{bottom:962.691467px;}
.y1{bottom:966.726000px;}
.y15d{bottom:977.087057px;}
.y7e{bottom:979.092407px;}
.yb9{bottom:979.092422px;}
.y32{bottom:979.092590px;}
.yfc{bottom:979.092645px;}
.ya2{bottom:985.041412px;}
.yf3{bottom:987.357407px;}
.y128{bottom:989.835923px;}
.y15c{bottom:995.082557px;}
.yb8{bottom:1001.442422px;}
.y131{bottom:1001.442426px;}
.y7d{bottom:1001.442444px;}
.y31{bottom:1001.442627px;}
.yfb{bottom:1001.442645px;}
.ya1{bottom:1007.391449px;}
.y15b{bottom:1013.078057px;}
.yf2{bottom:1017.349907px;}
.y127{bottom:1019.828423px;}
.y130{bottom:1023.792407px;}
.yb7{bottom:1023.792422px;}
.y7c{bottom:1023.792480px;}
.y30{bottom:1023.792572px;}
.yfa{bottom:1023.792645px;}
.ya0{bottom:1029.741486px;}
.y15a{bottom:1031.073557px;}
.y12f{bottom:1046.142407px;}
.yb6{bottom:1046.142422px;}
.y2f{bottom:1046.142426px;}
.yf9{bottom:1046.142645px;}
.yf1{bottom:1047.342407px;}
.y126{bottom:1049.820923px;}
.y9f{bottom:1052.091431px;}
.y159{bottom:1055.454557px;}
.y12e{bottom:1068.492407px;}
.yb5{bottom:1068.492422px;}
.y2e{bottom:1068.492462px;}
.yf8{bottom:1068.492645px;}
.y158{bottom:1073.450057px;}
.y9e{bottom:1074.441467px;}
.yf0{bottom:1081.594482px;}
.y125{bottom:1084.072815px;}
.y2d{bottom:1090.842407px;}
.yb4{bottom:1090.842422px;}
.y157{bottom:1091.445557px;}
.yb3{bottom:1147.431427px;}
.y27{bottom:1147.436279px;}
.y5b{bottom:1147.437561px;}
.h18{height:28.427381px;}
.h2c{height:29.022268px;}
.h7{height:32.130000px;}
.h2b{height:33.963000px;}
.h19{height:39.048750px;}
.h15{height:40.139989px;}
.h2a{height:43.532970px;}
.he{height:44.676000px;}
.h6{height:45.900000px;}
.hd{height:46.596000px;}
.h3{height:48.195000px;}
.h24{height:52.560000px;}
.h28{height:53.406000px;}
.h30{height:53.406080px;}
.h2d{height:53.406085px;}
.h2e{height:53.406114px;}
.h31{height:53.406172px;}
.h2f{height:53.406229px;}
.h29{height:54.108000px;}
.h2{height:55.080000px;}
.ha{height:56.100000px;}
.h1e{height:56.100229px;}
.h22{height:56.100275px;}
.hf{height:59.340000px;}
.h23{height:59.340073px;}
.h26{height:59.340110px;}
.h11{height:59.340549px;}
.h21{height:59.340604px;}
.h12{height:59.340641px;}
.h10{height:59.340732px;}
.h14{height:60.120000px;}
.h25{height:61.440000px;}
.h13{height:61.920000px;}
.h1b{height:64.152000px;}
.h16{height:69.984000px;}
.h27{height:71.208000px;}
.h1c{height:72.900000px;}
.h5{height:78.030000px;}
.h20{height:78.840000px;}
.h1d{height:89.010000px;}
.h1f{height:90.372000px;}
.h4{height:119.055004px;}
.hc{height:143.280000px;}
.hb{height:250.740000px;}
.h1a{height:288.793510px;}
.h17{height:302.293050px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:446.457000px;}
.w5{width:511.103989px;}
.w4{width:538.104000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:67.945049px;}
.x1b{left:77.811000px;}
.x9{left:80.787449px;}
.x1c{left:86.764950px;}
.xa{left:93.543303px;}
.x1d{left:99.520798px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:112.400100px;}
.x13{left:115.051491px;}
.x6{left:131.811000px;}
.xf{left:171.027000px;}
.x15{left:184.526997px;}
.x4{left:203.484001px;}
.x12{left:278.983208px;}
.x18{left:280.721706px;}
.x19{left:287.941185px;}
.x1a{left:292.783226px;}
.x10{left:295.801217px;}
.x1f{left:342.787651px;}
.xe{left:365.685905px;}
.xd{left:378.435905px;}
.x16{left:449.461224px;}
.x3{left:454.959000px;}
.x14{left:470.443184px;}
.x17{left:486.359719px;}
.x5{left:513.090912px;}
.xc{left:575.666382px;}
.x1e{left:580.947464px;}
.xb{left:730.473312px;}
.x8{left:802.922424px;}
@media print{
.v1{vertical-align:-17.760010pt;}
.v2{vertical-align:-4.627279pt;}
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-1.985785pt;}
.ls1{letter-spacing:-0.762667pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls28{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls20{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000005pt;}
.ls5{letter-spacing:0.000016pt;}
.ls8{letter-spacing:0.000039pt;}
.ls14{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.143984pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.213333pt;}
.ls1e{letter-spacing:0.266664pt;}
.ls6{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.373333pt;}
.ls25{letter-spacing:0.383984pt;}
.ls16{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.429363pt;}
.ls23{letter-spacing:0.431998pt;}
.ls3{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls26{letter-spacing:0.719985pt;}
.ls18{letter-spacing:0.746667pt;}
.ls19{letter-spacing:1.013333pt;}
.ls1f{letter-spacing:13.066656pt;}
.ls1d{letter-spacing:14.560002pt;}
.ws1{word-spacing:-28.800000pt;}
.ws85{word-spacing:-14.528000pt;}
.ws30{word-spacing:-13.800000pt;}
.ws4a{word-spacing:-13.248000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.213333pt;}
.ws7{word-spacing:-12.106667pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4b{word-spacing:-11.680000pt;}
.ws84{word-spacing:-11.573333pt;}
.ws91{word-spacing:-10.992000pt;}
.ws86{word-spacing:-10.896000pt;}
.ws92{word-spacing:-10.368000pt;}
.ws8{word-spacing:-9.936000pt;}
.ws2f{word-spacing:-9.649343pt;}
.ws4{word-spacing:-8.885333pt;}
.wsa{word-spacing:-7.120373pt;}
.ws16{word-spacing:-3.360000pt;}
.ws21{word-spacing:-3.200000pt;}
.ws66{word-spacing:-3.146667pt;}
.ws6d{word-spacing:-3.120000pt;}
.ws1e{word-spacing:-3.093333pt;}
.ws18{word-spacing:-3.040000pt;}
.ws15{word-spacing:-2.986667pt;}
.wsf{word-spacing:-2.933333pt;}
.ws4e{word-spacing:-2.880000pt;}
.ws22{word-spacing:-2.773333pt;}
.ws1a{word-spacing:-2.719995pt;}
.ws27{word-spacing:-2.666667pt;}
.ws19{word-spacing:-2.613333pt;}
.ws54{word-spacing:-2.506667pt;}
.ws79{word-spacing:-2.453333pt;}
.ws4f{word-spacing:-2.400000pt;}
.ws52{word-spacing:-2.346667pt;}
.ws67{word-spacing:-2.293333pt;}
.ws2c{word-spacing:-2.240000pt;}
.ws49{word-spacing:-2.186667pt;}
.ws75{word-spacing:-2.133333pt;}
.ws65{word-spacing:-1.920000pt;}
.ws1d{word-spacing:-1.866667pt;}
.ws5e{word-spacing:-1.813333pt;}
.ws5{word-spacing:-1.768000pt;}
.ws31{word-spacing:-1.760000pt;}
.ws50{word-spacing:-1.706667pt;}
.ws3a{word-spacing:-1.653333pt;}
.ws83{word-spacing:-1.546667pt;}
.wsd{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.280000pt;}
.ws13{word-spacing:-1.173333pt;}
.ws63{word-spacing:-1.120000pt;}
.ws64{word-spacing:-1.066667pt;}
.ws6c{word-spacing:-1.013333pt;}
.wse{word-spacing:-0.800000pt;}
.ws68{word-spacing:-0.640000pt;}
.ws3b{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.533333pt;}
.ws10{word-spacing:-0.480000pt;}
.ws8f{word-spacing:-0.465143pt;}
.ws2a{word-spacing:-0.426667pt;}
.wsb{word-spacing:-0.373333pt;}
.ws7a{word-spacing:-0.320000pt;}
.ws62{word-spacing:-0.213333pt;}
.ws34{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.106667pt;}
.ws8d{word-spacing:-0.096000pt;}
.ws36{word-spacing:-0.053333pt;}
.ws90{word-spacing:-0.035780pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.053333pt;}
.ws35{word-spacing:0.160000pt;}
.ws8e{word-spacing:0.192000pt;}
.ws3f{word-spacing:0.213333pt;}
.ws77{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.320000pt;}
.ws82{word-spacing:0.373333pt;}
.ws28{word-spacing:0.426667pt;}
.ws94{word-spacing:0.480000pt;}
.ws2d{word-spacing:0.533333pt;}
.ws96{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.586667pt;}
.ws95{word-spacing:0.624000pt;}
.ws7b{word-spacing:0.640000pt;}
.ws14{word-spacing:0.693333pt;}
.ws4d{word-spacing:0.800000pt;}
.ws53{word-spacing:0.853333pt;}
.ws7d{word-spacing:0.960000pt;}
.ws5c{word-spacing:1.013333pt;}
.ws8b{word-spacing:1.066667pt;}
.ws55{word-spacing:1.120000pt;}
.ws61{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.226667pt;}
.ws5b{word-spacing:1.333333pt;}
.ws39{word-spacing:1.386667pt;}
.ws1f{word-spacing:1.440000pt;}
.ws88{word-spacing:1.493333pt;}
.ws56{word-spacing:1.546667pt;}
.ws7f{word-spacing:1.600000pt;}
.ws69{word-spacing:1.706667pt;}
.ws17{word-spacing:1.920000pt;}
.ws93{word-spacing:1.985785pt;}
.ws6a{word-spacing:2.026667pt;}
.ws76{word-spacing:2.080000pt;}
.ws51{word-spacing:2.186667pt;}
.ws5d{word-spacing:2.240000pt;}
.ws78{word-spacing:2.346667pt;}
.ws8c{word-spacing:2.400000pt;}
.ws20{word-spacing:2.560000pt;}
.ws71{word-spacing:2.613333pt;}
.ws81{word-spacing:2.773333pt;}
.ws89{word-spacing:2.880000pt;}
.ws73{word-spacing:2.933333pt;}
.ws6b{word-spacing:3.146667pt;}
.ws59{word-spacing:3.200000pt;}
.ws74{word-spacing:3.253333pt;}
.ws60{word-spacing:3.360000pt;}
.ws3e{word-spacing:3.413333pt;}
.wsc{word-spacing:3.520000pt;}
.ws11{word-spacing:3.626667pt;}
.ws32{word-spacing:3.680000pt;}
.ws33{word-spacing:3.733333pt;}
.ws26{word-spacing:3.786661pt;}
.ws57{word-spacing:3.786667pt;}
.ws38{word-spacing:3.840000pt;}
.ws45{word-spacing:3.893333pt;}
.ws5f{word-spacing:3.946667pt;}
.ws5a{word-spacing:4.000000pt;}
.ws12{word-spacing:4.106667pt;}
.ws87{word-spacing:4.160000pt;}
.ws23{word-spacing:4.320000pt;}
.ws25{word-spacing:4.426667pt;}
.ws58{word-spacing:4.480000pt;}
.ws29{word-spacing:4.640000pt;}
.ws7c{word-spacing:4.906667pt;}
.ws3c{word-spacing:4.960000pt;}
.ws80{word-spacing:5.013333pt;}
.ws7e{word-spacing:5.173333pt;}
.ws70{word-spacing:5.226667pt;}
.ws48{word-spacing:5.813333pt;}
.ws40{word-spacing:6.133333pt;}
.ws41{word-spacing:6.186667pt;}
.ws47{word-spacing:6.240000pt;}
.ws6e{word-spacing:6.613333pt;}
.ws72{word-spacing:7.200000pt;}
.ws6f{word-spacing:7.253333pt;}
.ws43{word-spacing:7.466667pt;}
.ws1c{word-spacing:8.266667pt;}
.ws42{word-spacing:8.800000pt;}
.ws46{word-spacing:11.520000pt;}
.ws44{word-spacing:14.826667pt;}
.ws3{word-spacing:14.986667pt;}
.ws2e{word-spacing:1037.849506pt;}
._2{margin-left:-2645.653368pt;}
._a{margin-left:-561.769954pt;}
._c{margin-left:-15.259976pt;}
._6{margin-left:-5.824000pt;}
._9{margin-left:-4.426667pt;}
._4{margin-left:-3.136000pt;}
._7{margin-left:-2.016000pt;}
._8{margin-left:-0.896000pt;}
._0{width:0.906667pt;}
._3{width:2.688000pt;}
._5{width:3.584000pt;}
._1{width:42.133262pt;}
._b{width:46.485333pt;}
.fsa{font-size:31.093333pt;}
.fsb{font-size:34.709867pt;}
.fs10{font-size:35.780266pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:53.669866pt;}
.fsc{font-size:55.536000pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:66.666667pt;}
.fse{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:2.817729pt;}
.y97{bottom:3.397725pt;}
.y155{bottom:14.952668pt;}
.y21{bottom:24.037732pt;}
.y99{bottom:29.026662pt;}
.y98{bottom:42.910665pt;}
.y96{bottom:44.068003pt;}
.y9c{bottom:68.946238pt;}
.y154{bottom:75.590667pt;}
.yef{bottom:75.637708pt;}
.y124{bottom:75.637732pt;}
.y11b{bottom:75.637862pt;}
.ydd{bottom:75.637866pt;}
.y5a{bottom:75.637868pt;}
.y2c{bottom:75.659069pt;}
.y156{bottom:81.161600pt;}
.y8e{bottom:85.643067pt;}
.y4{bottom:86.333337pt;}
.y94{bottom:86.976003pt;}
.y152{bottom:87.044541pt;}
.y2b{bottom:88.987069pt;}
.y153{bottom:90.543335pt;}
.yee{bottom:95.504375pt;}
.y123{bottom:95.504399pt;}
.y11a{bottom:95.504529pt;}
.ydc{bottom:95.504533pt;}
.y59{bottom:95.504537pt;}
.y92{bottom:96.710673pt;}
.y2a{bottom:102.315069pt;}
.y151{bottom:103.040541pt;}
.yed{bottom:115.371041pt;}
.y122{bottom:115.371065pt;}
.y58{bottom:115.371195pt;}
.ydb{bottom:115.371200pt;}
.y29{bottom:115.643069pt;}
.y150{bottom:119.036541pt;}
.y20{bottom:123.790666pt;}
.y28{bottom:128.971069pt;}
.y93{bottom:134.892130pt;}
.yec{bottom:135.237708pt;}
.y119{bottom:135.237732pt;}
.y57{bottom:135.237864pt;}
.yda{bottom:135.237866pt;}
.y91{bottom:136.049072pt;}
.y14f{bottom:140.708541pt;}
.yeb{bottom:155.104375pt;}
.y121{bottom:155.104399pt;}
.y56{bottom:155.104533pt;}
.y14e{bottom:156.704541pt;}
.y9b{bottom:160.346008pt;}
.y14d{bottom:172.700541pt;}
.yea{bottom:174.971041pt;}
.y120{bottom:174.971065pt;}
.y55{bottom:174.971191pt;}
.y118{bottom:174.971195pt;}
.yd9{bottom:174.971200pt;}
.y17{bottom:175.052000pt;}
.y90{bottom:184.064677pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y14c{bottom:188.696541pt;}
.ye9{bottom:194.837708pt;}
.y11f{bottom:194.837732pt;}
.yd8{bottom:194.837866pt;}
.y54{bottom:194.837870pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y14b{bottom:204.692539pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.ye8{bottom:214.704375pt;}
.y11e{bottom:214.704399pt;}
.y53{bottom:214.704529pt;}
.yd7{bottom:214.704533pt;}
.y8f{bottom:223.981343pt;}
.y14a{bottom:226.364539pt;}
.y7b{bottom:228.527466pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ye7{bottom:234.571041pt;}
.y52{bottom:234.571065pt;}
.yd6{bottom:234.571200pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y149{bottom:242.360539pt;}
.y9a{bottom:249.259064pt;}
.y7a{bottom:250.740804pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.ye6{bottom:254.437708pt;}
.y51{bottom:254.437724pt;}
.y117{bottom:254.437732pt;}
.yd5{bottom:254.437866pt;}
.y148{bottom:258.356539pt;}
.ye5{bottom:274.304375pt;}
.y116{bottom:274.304399pt;}
.y50{bottom:274.304403pt;}
.yd4{bottom:274.304533pt;}
.y147{bottom:274.352539pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y79{bottom:284.060933pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.ye4{bottom:294.171041pt;}
.y115{bottom:294.171065pt;}
.yd3{bottom:294.171200pt;}
.y4f{bottom:294.171204pt;}
.y146{bottom:296.021871pt;}
.y78{bottom:301.834269pt;}
.ye{bottom:309.452000pt;}
.ye3{bottom:314.037708pt;}
.y11d{bottom:314.037732pt;}
.y114{bottom:314.037858pt;}
.y4e{bottom:314.037862pt;}
.yd2{bottom:314.037866pt;}
.y77{bottom:319.607605pt;}
.ye2{bottom:333.904375pt;}
.y11c{bottom:333.904399pt;}
.y113{bottom:333.904525pt;}
.yd1{bottom:333.904533pt;}
.y4d{bottom:333.904541pt;}
.y76{bottom:337.380941pt;}
.yd{bottom:343.809333pt;}
.ye1{bottom:353.771041pt;}
.y4c{bottom:353.771200pt;}
.y75{bottom:355.154256pt;}
.yc{bottom:362.706666pt;}
.y74{bottom:372.927612pt;}
.yd0{bottom:373.632517pt;}
.ye0{bottom:373.637708pt;}
.y4b{bottom:373.637858pt;}
.y112{bottom:373.637866pt;}
.y145{bottom:373.637882pt;}
.y9d{bottom:379.496663pt;}
.y73{bottom:390.700928pt;}
.ydf{bottom:393.504375pt;}
.y4a{bottom:393.504517pt;}
.y144{bottom:393.504525pt;}
.y111{bottom:393.504533pt;}
.y72{bottom:408.474284pt;}
.yde{bottom:413.371041pt;}
.y143{bottom:413.371191pt;}
.y110{bottom:413.371200pt;}
.y49{bottom:413.371216pt;}
.y26{bottom:420.839600pt;}
.y71{bottom:426.247599pt;}
.ycf{bottom:433.237708pt;}
.y8d{bottom:433.237752pt;}
.y142{bottom:433.237858pt;}
.y48{bottom:433.237874pt;}
.y10f{bottom:433.237882pt;}
.y70{bottom:444.020915pt;}
.yb{bottom:446.990669pt;}
.yce{bottom:453.104375pt;}
.y8c{bottom:453.104411pt;}
.y141{bottom:453.104517pt;}
.y47{bottom:453.104533pt;}
.y10e{bottom:453.104549pt;}
.y6f{bottom:461.794271pt;}
.ya{bottom:462.990669pt;}
.ycd{bottom:472.971041pt;}
.y8b{bottom:472.971069pt;}
.y140{bottom:472.971183pt;}
.y46{bottom:472.971191pt;}
.y10d{bottom:472.971216pt;}
.y25{bottom:478.512132pt;}
.y9{bottom:478.990666pt;}
.y6e{bottom:479.567586pt;}
.ycc{bottom:492.837708pt;}
.y8a{bottom:492.837728pt;}
.y45{bottom:492.837850pt;}
.y10c{bottom:492.837882pt;}
.y8{bottom:494.990666pt;}
.y6d{bottom:497.340942pt;}
.y13f{bottom:512.704362pt;}
.ycb{bottom:512.704375pt;}
.y89{bottom:512.704386pt;}
.y44{bottom:512.704549pt;}
.y24{bottom:513.168132pt;}
.y6c{bottom:515.114258pt;}
.y13e{bottom:532.571029pt;}
.yca{bottom:532.571041pt;}
.y88{bottom:532.571086pt;}
.y43{bottom:532.571208pt;}
.y10b{bottom:532.571240pt;}
.y6b{bottom:532.887614pt;}
.y6a{bottom:550.660929pt;}
.y13d{bottom:552.437695pt;}
.yc9{bottom:552.437708pt;}
.y87{bottom:552.437744pt;}
.y42{bottom:552.437866pt;}
.y10a{bottom:552.437907pt;}
.yb2{bottom:557.725749pt;}
.y69{bottom:568.434285pt;}
.y13c{bottom:572.304362pt;}
.yc8{bottom:572.304375pt;}
.y86{bottom:572.304403pt;}
.y41{bottom:572.304525pt;}
.y109{bottom:572.304574pt;}
.y7{bottom:573.786667pt;}
.yb1{bottom:577.592407pt;}
.y16d{bottom:584.205838pt;}
.y68{bottom:586.207600pt;}
.y13b{bottom:592.171029pt;}
.yc7{bottom:592.171041pt;}
.y85{bottom:592.171061pt;}
.y40{bottom:592.171183pt;}
.y108{bottom:592.171240pt;}
.y6{bottom:592.685334pt;}
.yb0{bottom:597.459066pt;}
.y16c{bottom:600.201838pt;}
.y67{bottom:603.980916pt;}
.y13a{bottom:612.037703pt;}
.yc6{bottom:612.037708pt;}
.y84{bottom:612.037720pt;}
.y3f{bottom:612.037882pt;}
.y107{bottom:612.037907pt;}
.y23{bottom:612.078792pt;}
.y16b{bottom:616.197839pt;}
.yaf{bottom:617.325724pt;}
.y66{bottom:621.754272pt;}
.yc5{bottom:631.904375pt;}
.y83{bottom:631.904419pt;}
.y3e{bottom:631.904541pt;}
.y106{bottom:631.904574pt;}
.yae{bottom:637.192383pt;}
.y16a{bottom:637.869839pt;}
.y65{bottom:639.527588pt;}
.y5{bottom:645.598667pt;}
.y139{bottom:651.771030pt;}
.yc4{bottom:651.771041pt;}
.y3d{bottom:651.771077pt;}
.y105{bottom:651.771240pt;}
.y169{bottom:653.865839pt;}
.yad{bottom:657.059082pt;}
.y64{bottom:657.300944pt;}
.y3{bottom:668.977329pt;}
.y168{bottom:669.861828pt;}
.yc3{bottom:671.637708pt;}
.y3c{bottom:671.637736pt;}
.y104{bottom:671.637907pt;}
.y63{bottom:675.074259pt;}
.y22{bottom:676.086792pt;}
.yac{bottom:676.925741pt;}
.yc2{bottom:691.504375pt;}
.y82{bottom:691.504395pt;}
.y3b{bottom:691.504557pt;}
.y103{bottom:691.504574pt;}
.y167{bottom:691.533828pt;}
.y62{bottom:692.847575pt;}
.yab{bottom:696.792399pt;}
.y138{bottom:706.971029pt;}
.y166{bottom:707.529828pt;}
.y61{bottom:710.620931pt;}
.yc1{bottom:711.371041pt;}
.y81{bottom:711.371094pt;}
.y3a{bottom:711.371175pt;}
.y102{bottom:711.371240pt;}
.yaa{bottom:716.659098pt;}
.y137{bottom:722.971029pt;}
.y165{bottom:723.525833pt;}
.y60{bottom:728.394287pt;}
.yc0{bottom:731.237708pt;}
.y80{bottom:731.237712pt;}
.y39{bottom:731.237874pt;}
.y101{bottom:731.237907pt;}
.ya9{bottom:736.525716pt;}
.y136{bottom:738.971029pt;}
.y164{bottom:745.197833pt;}
.y5f{bottom:746.167562pt;}
.y12d{bottom:746.554154pt;}
.ybf{bottom:751.104375pt;}
.y38{bottom:751.104574pt;}
.ya8{bottom:756.392415pt;}
.y163{bottom:761.193833pt;}
.y5e{bottom:763.940918pt;}
.y37{bottom:770.971029pt;}
.ybe{bottom:770.971041pt;}
.y100{bottom:770.971240pt;}
.yf7{bottom:771.011029pt;}
.y12c{bottom:773.214154pt;}
.ya7{bottom:776.259033pt;}
.y162{bottom:777.189833pt;}
.y2{bottom:781.661334pt;}
.y5d{bottom:781.714274pt;}
.y135{bottom:790.837695pt;}
.ybd{bottom:790.837708pt;}
.y36{bottom:790.837728pt;}
.yff{bottom:790.837907pt;}
.y161{bottom:793.185828pt;}
.ya6{bottom:796.125732pt;}
.yf6{bottom:797.671029pt;}
.y5c{bottom:799.487630pt;}
.y12b{bottom:799.874154pt;}
.y134{bottom:810.704362pt;}
.ybc{bottom:810.704375pt;}
.y35{bottom:810.704427pt;}
.yfe{bottom:810.704574pt;}
.y160{bottom:814.857828pt;}
.ya5{bottom:815.992432pt;}
.yf5{bottom:824.331029pt;}
.y12a{bottom:826.534154pt;}
.y133{bottom:830.571029pt;}
.ybb{bottom:830.571041pt;}
.y34{bottom:830.571045pt;}
.yfd{bottom:830.571240pt;}
.y15f{bottom:830.853828pt;}
.ya4{bottom:835.859049pt;}
.y15e{bottom:846.849828pt;}
.y132{bottom:850.437695pt;}
.yba{bottom:850.437708pt;}
.y7f{bottom:850.437744pt;}
.y33{bottom:850.437907pt;}
.yf4{bottom:850.991029pt;}
.y129{bottom:853.194154pt;}
.ya3{bottom:855.725749pt;}
.y1{bottom:859.312000pt;}
.y15d{bottom:868.521828pt;}
.y7e{bottom:870.304362pt;}
.yb9{bottom:870.304375pt;}
.y32{bottom:870.304525pt;}
.yfc{bottom:870.304574pt;}
.ya2{bottom:875.592367pt;}
.yf3{bottom:877.651029pt;}
.y128{bottom:879.854154pt;}
.y15c{bottom:884.517828pt;}
.yb8{bottom:890.171041pt;}
.y131{bottom:890.171045pt;}
.y7d{bottom:890.171061pt;}
.y31{bottom:890.171224pt;}
.yfb{bottom:890.171240pt;}
.ya1{bottom:895.459066pt;}
.y15b{bottom:900.513828pt;}
.yf2{bottom:904.311029pt;}
.y127{bottom:906.514154pt;}
.y130{bottom:910.037695pt;}
.yb7{bottom:910.037708pt;}
.y7c{bottom:910.037760pt;}
.y30{bottom:910.037842pt;}
.yfa{bottom:910.037907pt;}
.ya0{bottom:915.325765pt;}
.y15a{bottom:916.509828pt;}
.y12f{bottom:929.904362pt;}
.yb6{bottom:929.904375pt;}
.y2f{bottom:929.904378pt;}
.yf9{bottom:929.904574pt;}
.yf1{bottom:930.971029pt;}
.y126{bottom:933.174154pt;}
.y9f{bottom:935.192383pt;}
.y159{bottom:938.181828pt;}
.y12e{bottom:949.771029pt;}
.yb5{bottom:949.771041pt;}
.y2e{bottom:949.771077pt;}
.yf8{bottom:949.771240pt;}
.y158{bottom:954.177828pt;}
.y9e{bottom:955.059082pt;}
.yf0{bottom:961.417318pt;}
.y125{bottom:963.620280pt;}
.y2d{bottom:969.637695pt;}
.yb4{bottom:969.637708pt;}
.y157{bottom:970.173828pt;}
.yb3{bottom:1019.939046pt;}
.y27{bottom:1019.943359pt;}
.y5b{bottom:1019.944499pt;}
.h18{height:25.268783pt;}
.h2c{height:25.797572pt;}
.h7{height:28.560000pt;}
.h2b{height:30.189333pt;}
.h19{height:34.710000pt;}
.h15{height:35.679990pt;}
.h2a{height:38.695973pt;}
.he{height:39.712000pt;}
.h6{height:40.800000pt;}
.hd{height:41.418667pt;}
.h3{height:42.840000pt;}
.h24{height:46.720000pt;}
.h28{height:47.472000pt;}
.h30{height:47.472071pt;}
.h2d{height:47.472076pt;}
.h2e{height:47.472102pt;}
.h31{height:47.472153pt;}
.h2f{height:47.472203pt;}
.h29{height:48.096000pt;}
.h2{height:48.960000pt;}
.ha{height:49.866667pt;}
.h1e{height:49.866870pt;}
.h22{height:49.866911pt;}
.hf{height:52.746667pt;}
.h23{height:52.746732pt;}
.h26{height:52.746764pt;}
.h11{height:52.747155pt;}
.h21{height:52.747204pt;}
.h12{height:52.747236pt;}
.h10{height:52.747318pt;}
.h14{height:53.440000pt;}
.h25{height:54.613333pt;}
.h13{height:55.040000pt;}
.h1b{height:57.024000pt;}
.h16{height:62.208000pt;}
.h27{height:63.296000pt;}
.h1c{height:64.800000pt;}
.h5{height:69.360000pt;}
.h20{height:70.080000pt;}
.h1d{height:79.120000pt;}
.h1f{height:80.330667pt;}
.h4{height:105.826671pt;}
.hc{height:127.360000pt;}
.hb{height:222.880000pt;}
.h1a{height:256.705343pt;}
.h17{height:268.704933pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:396.850667pt;}
.w5{width:454.314657pt;}
.w4{width:478.314667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:60.395599pt;}
.x1b{left:69.165333pt;}
.x9{left:71.811066pt;}
.x1c{left:77.124400pt;}
.xa{left:83.149602pt;}
.x1d{left:88.462931pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:99.911200pt;}
.x13{left:102.267992pt;}
.x6{left:117.165333pt;}
.xf{left:152.024000pt;}
.x15{left:164.023997pt;}
.x4{left:180.874667pt;}
.x12{left:247.985074pt;}
.x18{left:249.530406pt;}
.x19{left:255.947720pt;}
.x1a{left:260.251757pt;}
.x10{left:262.934415pt;}
.x1f{left:304.700134pt;}
.xe{left:325.054138pt;}
.xd{left:336.387472pt;}
.x16{left:399.521088pt;}
.x3{left:404.408000pt;}
.x14{left:418.171719pt;}
.x17{left:432.319750pt;}
.x5{left:456.080811pt;}
.xc{left:511.703451pt;}
.x1e{left:516.397746pt;}
.xb{left:649.309611pt;}
.x8{left:713.708822pt;}
}




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