
    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_4a5cd2185c541bdc41cfeaeb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_009cd53f8464424049552eaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_3eca6c4e20a36754e8328ef5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.160000;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_802fdb018551d4ed8b845d4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.243000;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_856f34311fdba207c57b7503.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_856f34311fdba207c57b7503.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.698000;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_c4835bed338eac9194b5dd70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.169000;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_5bb2ddb3b1be028af548ddc4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.166000;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_a0e7c97ad99e8e70a67c40eb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.034000;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_d58780dbb93ff108cd60c2be.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.184000;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_36f18a657b129cfea15dc5b6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.176000;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_a0e7c97ad99e8e70a67c40eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.034000;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_4039fae62e64fff16e09e55b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.166000;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_a2fae6872dfb5f92206eb811.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.196000;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;}
.m1{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);}
.m2{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);}
.m3{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);}
.v9{vertical-align:-32.547751px;}
.v2{vertical-align:-30.203210px;}
.v3{vertical-align:-25.146356px;}
.v6{vertical-align:-23.491385px;}
.v4{vertical-align:-18.434531px;}
.v7{vertical-align:-11.722707px;}
.v5{vertical-align:-10.067737px;}
.v8{vertical-align:-1.792885px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls37{letter-spacing:-7.740000px;}
.ls2d{letter-spacing:-4.800000px;}
.ls41{letter-spacing:-3.498576px;}
.ls47{letter-spacing:-3.120000px;}
.ls43{letter-spacing:-1.530627px;}
.lsa{letter-spacing:-1.444800px;}
.ls3f{letter-spacing:-1.355698px;}
.ls2e{letter-spacing:-0.900000px;}
.ls40{letter-spacing:-0.743447px;}
.ls2f{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.663000px;}
.ls46{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.558000px;}
.ls4a{letter-spacing:-0.516000px;}
.ls6{letter-spacing:-0.510000px;}
.ls48{letter-spacing:-0.486000px;}
.ls9{letter-spacing:-0.459000px;}
.ls8{letter-spacing:-0.408000px;}
.ls22{letter-spacing:-0.300000px;}
.ls21{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.174929px;}
.ls20{letter-spacing:-0.120000px;}
.ls24{letter-spacing:-0.060000px;}
.ls38{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.051000px;}
.ls4{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000300px;}
.lsf{letter-spacing:0.022200px;}
.ls19{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.051000px;}
.ls16{letter-spacing:0.060000px;}
.ls44{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.102000px;}
.ls39{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.204000px;}
.ls18{letter-spacing:0.210000px;}
.ls45{letter-spacing:0.223200px;}
.ls27{letter-spacing:0.240000px;}
.ls3d{letter-spacing:0.251100px;}
.ls3b{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.309600px;}
.ls35{letter-spacing:0.330000px;}
.ls3c{letter-spacing:0.334800px;}
.lsc{letter-spacing:0.357000px;}
.ls12{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls28{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.570000px;}
.ls30{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.630000px;}
.ls1c{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732600px;}
.ls10{letter-spacing:0.780000px;}
.ls33{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.960000px;}
.ls3a{letter-spacing:0.972000px;}
.ls1e{letter-spacing:1.080000px;}
.ls34{letter-spacing:1.140000px;}
.ls25{letter-spacing:1.200000px;}
.ls29{letter-spacing:1.242000px;}
.ls1d{letter-spacing:1.350000px;}
.ls3e{letter-spacing:1.620000px;}
.ls2a{letter-spacing:1.800000px;}
.ls5{letter-spacing:2.373600px;}
.ls49{letter-spacing:3.354000px;}
.ls31{letter-spacing:5.364000px;}
.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;}
}
.wsae{word-spacing:-14.757600px;}
.ws96{word-spacing:-14.418000px;}
.ws1c{word-spacing:-14.148000px;}
.ws0{word-spacing:-13.777200px;}
.ws58{word-spacing:-13.176000px;}
.ws85{word-spacing:-12.906000px;}
.ws1d{word-spacing:-12.660000px;}
.ws65{word-spacing:-12.600000px;}
.ws72{word-spacing:-12.582000px;}
.wsad{word-spacing:-12.312000px;}
.ws2{word-spacing:-11.713200px;}
.ws64{word-spacing:-11.340000px;}
.ws63{word-spacing:-11.280000px;}
.wsaf{word-spacing:-11.094000px;}
.wsb6{word-spacing:-10.965000px;}
.wsa4{word-spacing:-10.140000px;}
.ws66{word-spacing:-9.654372px;}
.ws59{word-spacing:-9.653994px;}
.ws98{word-spacing:-9.183762px;}
.ws3{word-spacing:-8.901000px;}
.ws9b{word-spacing:-8.877637px;}
.ws99{word-spacing:-8.309118px;}
.ws97{word-spacing:-7.696867px;}
.ws9c{word-spacing:-7.521938px;}
.ws1{word-spacing:-7.345800px;}
.ws9a{word-spacing:-5.553989px;}
.ws2d{word-spacing:-2.160000px;}
.wsb1{word-spacing:-2.100000px;}
.ws61{word-spacing:-2.040000px;}
.ws23{word-spacing:-1.980000px;}
.ws27{word-spacing:-1.920000px;}
.ws22{word-spacing:-1.860000px;}
.ws49{word-spacing:-1.800000px;}
.ws6c{word-spacing:-1.740000px;}
.ws16{word-spacing:-1.683000px;}
.ws50{word-spacing:-1.680000px;}
.ws8{word-spacing:-1.632000px;}
.ws2a{word-spacing:-1.500000px;}
.ws9f{word-spacing:-1.440000px;}
.ws80{word-spacing:-1.380000px;}
.ws75{word-spacing:-1.260000px;}
.ws40{word-spacing:-1.242000px;}
.ws37{word-spacing:-1.200000px;}
.ws19{word-spacing:-1.173000px;}
.ws9e{word-spacing:-1.140000px;}
.ws15{word-spacing:-1.122000px;}
.ws8f{word-spacing:-1.080000px;}
.ws7b{word-spacing:-1.020000px;}
.ws74{word-spacing:-0.960000px;}
.ws57{word-spacing:-0.900000px;}
.ws1a{word-spacing:-0.892800px;}
.ws95{word-spacing:-0.840000px;}
.ws25{word-spacing:-0.780000px;}
.ws18{word-spacing:-0.765000px;}
.ws4{word-spacing:-0.754800px;}
.wsb4{word-spacing:-0.722400px;}
.ws35{word-spacing:-0.660000px;}
.ws33{word-spacing:-0.600000px;}
.wsd{word-spacing:-0.561000px;}
.ws89{word-spacing:-0.480000px;}
.ws84{word-spacing:-0.420000px;}
.wsa{word-spacing:-0.408000px;}
.ws53{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.357000px;}
.wsaa{word-spacing:-0.300000px;}
.ws3d{word-spacing:-0.240000px;}
.ws62{word-spacing:-0.223200px;}
.wsb3{word-spacing:-0.206400px;}
.ws10{word-spacing:-0.204000px;}
.ws4b{word-spacing:-0.180000px;}
.ws7{word-spacing:-0.153000px;}
.ws93{word-spacing:-0.120000px;}
.ws24{word-spacing:-0.060000px;}
.ws5{word-spacing:-0.044400px;}
.ws6{word-spacing:0.000000px;}
.ws4f{word-spacing:0.060000px;}
.ws21{word-spacing:0.120000px;}
.ws5d{word-spacing:0.180000px;}
.ws30{word-spacing:0.240000px;}
.ws79{word-spacing:0.300000px;}
.ws6a{word-spacing:0.360000px;}
.ws13{word-spacing:0.408000px;}
.ws6f{word-spacing:0.420000px;}
.ws56{word-spacing:0.480000px;}
.wsa3{word-spacing:0.502200px;}
.wsb5{word-spacing:0.516000px;}
.ws88{word-spacing:0.540000px;}
.wsa7{word-spacing:0.600000px;}
.ws8e{word-spacing:0.660000px;}
.ws46{word-spacing:0.720000px;}
.ws6b{word-spacing:0.780000px;}
.wsa2{word-spacing:0.837000px;}
.ws8d{word-spacing:0.840000px;}
.ws4e{word-spacing:0.900000px;}
.ws3e{word-spacing:0.960000px;}
.ws51{word-spacing:1.020000px;}
.ws94{word-spacing:1.080000px;}
.wse{word-spacing:1.122000px;}
.ws42{word-spacing:1.200000px;}
.wsb{word-spacing:1.224000px;}
.ws48{word-spacing:1.260000px;}
.ws92{word-spacing:1.380000px;}
.ws1b{word-spacing:1.395000px;}
.ws17{word-spacing:1.428000px;}
.ws87{word-spacing:1.440000px;}
.wsf{word-spacing:1.444800px;}
.ws52{word-spacing:1.500000px;}
.ws7e{word-spacing:1.560000px;}
.ws11{word-spacing:1.581000px;}
.ws5f{word-spacing:1.620000px;}
.ws9{word-spacing:1.632000px;}
.ws6e{word-spacing:1.680000px;}
.ws12{word-spacing:1.683000px;}
.ws8c{word-spacing:1.740000px;}
.wsa1{word-spacing:1.841400px;}
.ws2c{word-spacing:1.860000px;}
.ws20{word-spacing:1.920000px;}
.ws4c{word-spacing:1.980000px;}
.ws90{word-spacing:2.040000px;}
.ws54{word-spacing:2.100000px;}
.ws83{word-spacing:2.160000px;}
.ws7c{word-spacing:2.220000px;}
.wsa9{word-spacing:2.280000px;}
.ws81{word-spacing:2.340000px;}
.wsa0{word-spacing:2.399400px;}
.ws2b{word-spacing:2.400000px;}
.ws2e{word-spacing:2.460000px;}
.wsac{word-spacing:2.511000px;}
.ws4a{word-spacing:2.520000px;}
.ws14{word-spacing:2.550000px;}
.ws26{word-spacing:2.580000px;}
.ws77{word-spacing:2.640000px;}
.ws55{word-spacing:2.700000px;}
.ws44{word-spacing:2.820000px;}
.wsab{word-spacing:2.845800px;}
.ws3f{word-spacing:2.880000px;}
.ws4d{word-spacing:2.940000px;}
.ws70{word-spacing:3.000000px;}
.ws71{word-spacing:3.060000px;}
.ws28{word-spacing:3.120000px;}
.ws32{word-spacing:3.180000px;}
.ws47{word-spacing:3.240000px;}
.ws38{word-spacing:3.300000px;}
.ws6d{word-spacing:3.360000px;}
.ws34{word-spacing:3.420000px;}
.ws45{word-spacing:3.540000px;}
.ws3b{word-spacing:3.600000px;}
.ws31{word-spacing:3.660000px;}
.ws36{word-spacing:3.780000px;}
.ws91{word-spacing:3.840000px;}
.ws29{word-spacing:3.900000px;}
.ws8b{word-spacing:3.960000px;}
.ws7a{word-spacing:4.020000px;}
.ws60{word-spacing:4.080000px;}
.wsb2{word-spacing:4.200000px;}
.ws78{word-spacing:4.260000px;}
.wsa6{word-spacing:4.440000px;}
.ws7d{word-spacing:4.500000px;}
.ws2f{word-spacing:4.560000px;}
.ws5e{word-spacing:4.800000px;}
.ws69{word-spacing:4.920000px;}
.ws3c{word-spacing:5.280000px;}
.wsa8{word-spacing:5.580000px;}
.ws3a{word-spacing:5.760000px;}
.ws39{word-spacing:5.820000px;}
.ws76{word-spacing:6.060000px;}
.ws43{word-spacing:6.120000px;}
.ws1f{word-spacing:6.600000px;}
.ws7f{word-spacing:7.740000px;}
.ws5b{word-spacing:89.368402px;}
.ws5a{word-spacing:228.753686px;}
.ws67{word-spacing:228.762643px;}
.ws9d{word-spacing:1255.014000px;}
.ws1e{word-spacing:1255.284000px;}
.ws5c{word-spacing:1256.256000px;}
.ws86{word-spacing:1256.526000px;}
.ws73{word-spacing:1256.850000px;}
.wsb0{word-spacing:1257.120000px;}
.wsb7{word-spacing:1500.174000px;}
.ws8a{word-spacing:1501.470000px;}
.ws41{word-spacing:1502.280000px;}
.ws68{word-spacing:1502.334000px;}
.ws82{word-spacing:1503.522000px;}
.wsa5{word-spacing:1504.710000px;}
._1f{margin-left:-1256.932800px;}
._9{margin-left:-1255.864200px;}
._8{margin-left:-1254.714000px;}
._19{margin-left:-322.949085px;}
._d{margin-left:-16.200000px;}
._20{margin-left:-13.430400px;}
._27{margin-left:-11.820000px;}
._28{margin-left:-10.200000px;}
._e{margin-left:-8.444400px;}
._b{margin-left:-6.612000px;}
._4{margin-left:-5.406000px;}
._a{margin-left:-3.940800px;}
._0{margin-left:-2.889600px;}
._1{margin-left:-1.449600px;}
._2{width:1.109400px;}
._3{width:2.353800px;}
._5{width:3.895800px;}
._6{width:5.298480px;}
._c{width:6.501600px;}
._21{width:7.509000px;}
._22{width:9.468000px;}
._1d{width:10.500000px;}
._1b{width:11.640000px;}
._1e{width:13.320000px;}
._1c{width:14.400000px;}
._25{width:15.791400px;}
._26{width:22.459200px;}
._2a{width:25.170000px;}
._2b{width:26.880000px;}
._10{width:29.760000px;}
._11{width:31.380000px;}
._24{width:34.484400px;}
._f{width:35.820000px;}
._29{width:48.657000px;}
._12{width:52.005000px;}
._23{width:54.963000px;}
._7{width:58.845000px;}
._16{width:169.542523px;}
._17{width:174.737291px;}
._13{width:257.715668px;}
._14{width:270.679603px;}
._15{width:279.414169px;}
._18{width:444.221638px;}
._1a{width:454.381318px;}
.fc3{color:transparent;}
.fc2{color:rgb(29,113,184);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.200000px;}
.fs4{font-size:34.980000px;}
.fs5{font-size:41.400000px;}
.fs10{font-size:43.732200px;}
.fsa{font-size:45.971400px;}
.fsd{font-size:45.973200px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:51.600000px;}
.fsc{font-size:52.538400px;}
.fsf{font-size:52.540800px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs11{font-size:56.227200px;}
.fsb{font-size:59.106000px;}
.fse{font-size:59.108400px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y6b{bottom:-285.734160px;}
.y6a{bottom:-271.942740px;}
.y69{bottom:-258.151320px;}
.y68{bottom:-244.359900px;}
.y6c{bottom:-193.883303px;}
.y6d{bottom:-165.134850px;}
.y64{bottom:-126.577172px;}
.y0{bottom:0.000000px;}
.y7c{bottom:4.023000px;}
.y7d{bottom:4.023150px;}
.y7e{bottom:45.398700px;}
.y29{bottom:63.773550px;}
.y5c{bottom:63.779550px;}
.y9a{bottom:63.779700px;}
.y56{bottom:64.842450px;}
.yb3{bottom:81.023550px;}
.y28{bottom:81.029700px;}
.y55{bottom:83.442450px;}
.yf0{bottom:86.912850px;}
.yd2{bottom:86.977350px;}
.y9c{bottom:98.279700px;}
.y5b{bottom:98.279850px;}
.y54{bottom:102.042450px;}
.yef{bottom:104.314950px;}
.yd1{bottom:104.379450px;}
.y9b{bottom:115.529700px;}
.y27{bottom:116.442450px;}
.y53{bottom:120.642450px;}
.yee{bottom:121.717050px;}
.yd0{bottom:121.781550px;}
.y62{bottom:124.972500px;}
.y26{bottom:133.692450px;}
.yed{bottom:139.119150px;}
.ycf{bottom:139.183650px;}
.y52{bottom:139.242450px;}
.y60{bottom:143.568390px;}
.y86{bottom:143.897850px;}
.yec{bottom:156.521250px;}
.yce{bottom:156.585750px;}
.y5f{bottom:157.359810px;}
.y51{bottom:157.842450px;}
.y85{bottom:160.400700px;}
.y25{bottom:168.481200px;}
.y5e{bottom:171.151230px;}
.yeb{bottom:173.923350px;}
.ycd{bottom:173.987850px;}
.y50{bottom:176.442450px;}
.y84{bottom:176.903550px;}
.y5d{bottom:184.942650px;}
.y24{bottom:185.731950px;}
.yea{bottom:191.325450px;}
.ycc{bottom:191.389950px;}
.y83{bottom:193.406400px;}
.y63{bottom:194.530950px;}
.y4f{bottom:195.042450px;}
.y23{bottom:202.982700px;}
.y6e{bottom:205.543500px;}
.ye9{bottom:208.727550px;}
.ycb{bottom:208.792050px;}
.y5a{bottom:213.642450px;}
.y82{bottom:216.619200px;}
.y67{bottom:220.155300px;}
.y22{bottom:220.233450px;}
.y7b{bottom:223.358280px;}
.ye8{bottom:226.129650px;}
.yca{bottom:226.194150px;}
.y4e{bottom:232.242450px;}
.y65{bottom:233.150550px;}
.y7a{bottom:237.150240px;}
.y7f{bottom:237.150450px;}
.y21{bottom:237.484200px;}
.ye7{bottom:243.531750px;}
.yc9{bottom:243.596250px;}
.y59{bottom:250.842450px;}
.y79{bottom:250.942200px;}
.y61{bottom:254.106621px;}
.y20{bottom:254.734950px;}
.ye6{bottom:260.933850px;}
.yc8{bottom:260.998350px;}
.y58{bottom:269.442450px;}
.y1f{bottom:271.985700px;}
.ye5{bottom:278.335950px;}
.yc7{bottom:278.400450px;}
.y66{bottom:285.129450px;}
.y4d{bottom:288.042450px;}
.y1e{bottom:289.236450px;}
.yb1{bottom:292.129200px;}
.ye4{bottom:295.738050px;}
.yc6{bottom:295.802550px;}
.y80{bottom:301.420984px;}
.y1d{bottom:306.487200px;}
.y4c{bottom:306.642450px;}
.y72{bottom:308.365020px;}
.ye3{bottom:313.140150px;}
.yc5{bottom:313.204650px;}
.y71{bottom:322.156980px;}
.y1c{bottom:323.737950px;}
.y4b{bottom:325.242450px;}
.y81{bottom:330.170400px;}
.ye2{bottom:330.542250px;}
.yc4{bottom:330.606750px;}
.y70{bottom:335.948940px;}
.y1b{bottom:340.988700px;}
.y4a{bottom:343.842450px;}
.ye1{bottom:347.944350px;}
.yc3{bottom:348.008850px;}
.y6f{bottom:349.740900px;}
.y1a{bottom:358.239450px;}
.y49{bottom:362.442450px;}
.ye0{bottom:365.346450px;}
.yc2{bottom:365.410950px;}
.y75{bottom:368.731200px;}
.y19{bottom:375.490200px;}
.y48{bottom:381.042450px;}
.yb0{bottom:381.490500px;}
.ydf{bottom:382.748550px;}
.yc1{bottom:382.813050px;}
.y78{bottom:384.954900px;}
.y18{bottom:392.740950px;}
.y76{bottom:397.950750px;}
.y47{bottom:399.642450px;}
.yde{bottom:400.150650px;}
.yc0{bottom:400.215150px;}
.yaf{bottom:404.263255px;}
.y17{bottom:409.991700px;}
.yae{bottom:417.382915px;}
.ydd{bottom:417.552750px;}
.ybf{bottom:417.617250px;}
.y46{bottom:418.242450px;}
.y73{bottom:418.907579px;}
.y16{bottom:427.242450px;}
.ydc{bottom:434.954850px;}
.ybe{bottom:435.019350px;}
.y45{bottom:436.842450px;}
.y15{bottom:444.492450px;}
.y77{bottom:449.931750px;}
.ydb{bottom:452.356950px;}
.ybd{bottom:452.421450px;}
.y44{bottom:455.442450px;}
.yda{bottom:469.759050px;}
.ybc{bottom:469.823550px;}
.y43{bottom:474.042450px;}
.y14{bottom:479.292450px;}
.ya4{bottom:483.057746px;}
.yad{bottom:483.068679px;}
.ya8{bottom:483.659064px;}
.y74{bottom:484.307100px;}
.yd9{bottom:487.161150px;}
.ybb{bottom:487.225650px;}
.y42{bottom:492.642450px;}
.ya3{bottom:496.177406px;}
.yac{bottom:496.188339px;}
.y13{bottom:496.542450px;}
.ya7{bottom:496.778724px;}
.ya9{bottom:501.720463px;}
.yd8{bottom:504.563250px;}
.yba{bottom:504.627750px;}
.ya2{bottom:509.297066px;}
.yab{bottom:509.307999px;}
.ya6{bottom:509.898384px;}
.y41{bottom:511.242450px;}
.yd7{bottom:521.965350px;}
.yb9{bottom:522.029850px;}
.ya1{bottom:522.416726px;}
.yaa{bottom:522.427659px;}
.ya5{bottom:523.018044px;}
.y40{bottom:529.842450px;}
.y12{bottom:531.342450px;}
.yd6{bottom:539.367450px;}
.yb8{bottom:539.431950px;}
.y3f{bottom:548.442450px;}
.y11{bottom:548.592450px;}
.y99{bottom:555.461100px;}
.yd5{bottom:556.769550px;}
.yb7{bottom:556.834050px;}
.y10{bottom:565.839450px;}
.y3e{bottom:567.042450px;}
.ya0{bottom:572.183970px;}
.yd4{bottom:574.171650px;}
.yb6{bottom:574.236150px;}
.y98{bottom:582.859650px;}
.yf{bottom:583.090200px;}
.y9f{bottom:585.303630px;}
.y3d{bottom:585.642450px;}
.yd3{bottom:591.573750px;}
.yb5{bottom:591.638250px;}
.y9e{bottom:598.423290px;}
.y97{bottom:599.362500px;}
.ye{bottom:600.340950px;}
.y3c{bottom:604.242450px;}
.y9d{bottom:611.542950px;}
.y96{bottom:615.865350px;}
.yd{bottom:617.591700px;}
.y3b{bottom:622.842450px;}
.yb4{bottom:626.442450px;}
.y95{bottom:632.368200px;}
.yc{bottom:634.842450px;}
.y3a{bottom:641.442450px;}
.yb{bottom:652.092450px;}
.y94{bottom:655.581000px;}
.yb2{bottom:656.751450px;}
.y39{bottom:660.042450px;}
.y104{bottom:661.945200px;}
.ya{bottom:669.341700px;}
.y38{bottom:678.642450px;}
.y93{bottom:678.793800px;}
.y103{bottom:679.195950px;}
.y9{bottom:686.592450px;}
.y92{bottom:695.296650px;}
.y102{bottom:696.446700px;}
.y37{bottom:697.242450px;}
.y8{bottom:703.842450px;}
.y91{bottom:711.799500px;}
.y101{bottom:713.697450px;}
.y36{bottom:715.842450px;}
.y7{bottom:721.091700px;}
.y90{bottom:728.302350px;}
.y100{bottom:730.948200px;}
.y35{bottom:734.442450px;}
.y6{bottom:738.342450px;}
.y8f{bottom:751.515150px;}
.y34{bottom:753.042450px;}
.y5{bottom:755.592450px;}
.y33{bottom:771.642450px;}
.y4{bottom:772.842450px;}
.y8e{bottom:774.727950px;}
.yf8{bottom:782.683500px;}
.y32{bottom:790.242450px;}
.y8d{bottom:791.230800px;}
.yff{bottom:800.072700px;}
.yf7{bottom:800.085600px;}
.y8c{bottom:807.733650px;}
.y31{bottom:808.842450px;}
.yfe{bottom:817.474800px;}
.yf6{bottom:817.487700px;}
.y3{bottom:818.445300px;}
.y8b{bottom:824.236500px;}
.y30{bottom:827.442450px;}
.yfd{bottom:834.876900px;}
.yf5{bottom:834.889800px;}
.y8a{bottom:840.739350px;}
.y2f{bottom:846.042450px;}
.yfc{bottom:852.279000px;}
.yf4{bottom:852.291900px;}
.y89{bottom:857.242200px;}
.y2b{bottom:857.391000px;}
.y2e{bottom:864.642450px;}
.y2a{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.yfb{bottom:869.681100px;}
.yf3{bottom:869.694000px;}
.y88{bottom:873.745050px;}
.y57{bottom:883.242450px;}
.yfa{bottom:887.083200px;}
.yf2{bottom:887.096100px;}
.y1{bottom:895.453200px;}
.y87{bottom:896.957850px;}
.y2d{bottom:901.842450px;}
.yf9{bottom:904.485300px;}
.yf1{bottom:904.498200px;}
.y2c{bottom:955.942350px;}
.ha{height:15.295800px;}
.h18{height:39.358980px;}
.hf{height:41.374260px;}
.h14{height:41.375880px;}
.h1a{height:43.070035px;}
.h11{height:45.275196px;}
.h15{height:45.277034px;}
.h5{height:45.696000px;}
.h6{height:45.699000px;}
.h8{height:45.708000px;}
.h1e{height:46.078800px;}
.h1d{height:46.233600px;}
.h1f{height:46.614000px;}
.h12{height:47.284560px;}
.h16{height:47.286720px;}
.h4{height:48.762000px;}
.h9{height:49.996800px;}
.h1c{height:50.021400px;}
.h1b{height:50.604480px;}
.h17{height:50.666400px;}
.hb{height:50.868000px;}
.he{height:53.880000px;}
.h7{height:54.155460px;}
.hc{height:56.700000px;}
.hd{height:58.620000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h13{height:187.456500px;}
.h10{height:206.869500px;}
.h19{height:303.865500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:517.698000px;}
.w3{width:517.719000px;}
.w4{width:544.719000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x1c{left:9.596159px;}
.x1b{left:12.745200px;}
.x30{left:14.070361px;}
.x1e{left:17.928475px;}
.x1d{left:19.296124px;}
.x2e{left:22.835922px;}
.x8{left:25.310250px;}
.x7{left:28.379400px;}
.x38{left:31.666604px;}
.x3a{left:33.048000px;}
.x5a{left:67.871550px;}
.x21{left:71.151864px;}
.x5{left:72.283500px;}
.x20{left:73.530884px;}
.x1{left:80.787450px;}
.x16{left:85.560000px;}
.x1f{left:87.149911px;}
.x2f{left:88.379100px;}
.x56{left:89.776765px;}
.x33{left:91.765069px;}
.x6{left:93.538500px;}
.x9{left:95.445750px;}
.x4d{left:97.798050px;}
.xb{left:99.629147px;}
.x2{left:102.047550px;}
.x32{left:103.419275px;}
.x3b{left:106.799250px;}
.x31{left:109.970456px;}
.xa{left:113.719381px;}
.x15{left:117.224701px;}
.x19{left:118.606200px;}
.x25{left:134.259103px;}
.x23{left:138.821764px;}
.x24{left:145.016411px;}
.x22{left:151.935106px;}
.x3d{left:167.587040px;}
.x3e{left:175.655336px;}
.xe{left:177.320813px;}
.x3c{left:181.206600px;}
.x4c{left:182.436300px;}
.x34{left:184.722880px;}
.xd{left:188.974563px;}
.xc{left:195.525488px;}
.x58{left:196.527066px;}
.x27{left:200.251048px;}
.x18{left:203.110500px;}
.x17{left:207.967950px;}
.x28{left:218.961408px;}
.x26{left:220.984149px;}
.x40{left:232.880145px;}
.x41{left:239.075033px;}
.x3f{left:245.994000px;}
.x4e{left:254.187971px;}
.x4f{left:259.217174px;}
.x35{left:264.796701px;}
.xf{left:270.274984px;}
.x2b{left:271.989417px;}
.x37{left:274.324646px;}
.x36{left:275.887735px;}
.x10{left:286.387960px;}
.x39{left:290.193450px;}
.x43{left:294.311387px;}
.x44{left:313.022479px;}
.x42{left:315.045300px;}
.x57{left:331.429970px;}
.x2a{left:336.774613px;}
.x29{left:340.233961px;}
.x11{left:350.345670px;}
.x59{left:353.798990px;}
.x13{left:359.873243px;}
.x12{left:361.436270px;}
.x47{left:364.684863px;}
.x48{left:366.052565px;}
.x50{left:372.647568px;}
.x51{left:374.145396px;}
.x1a{left:376.292550px;}
.x52{left:405.851241px;}
.x2c{left:412.650409px;}
.x46{left:430.840297px;}
.x45{left:434.299781px;}
.x4a{left:456.776250px;}
.x14{left:462.240058px;}
.x2d{left:465.529011px;}
.x49{left:506.719064px;}
.x53{left:539.934166px;}
.x54{left:546.931318px;}
.x55{left:548.035556px;}
.x4b{left:559.598550px;}
.x4{left:650.349600px;}
.x3{left:653.418750px;}
@media print{
.v9{vertical-align:-28.931334pt;}
.v2{vertical-align:-26.847298pt;}
.v3{vertical-align:-22.352316pt;}
.v6{vertical-align:-20.881231pt;}
.v4{vertical-align:-16.386250pt;}
.v7{vertical-align:-10.420184pt;}
.v5{vertical-align:-8.949099pt;}
.v8{vertical-align:-1.593675pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls37{letter-spacing:-6.880000pt;}
.ls2d{letter-spacing:-4.266667pt;}
.ls41{letter-spacing:-3.109845pt;}
.ls47{letter-spacing:-2.773333pt;}
.ls43{letter-spacing:-1.360557pt;}
.lsa{letter-spacing:-1.284267pt;}
.ls3f{letter-spacing:-1.205065pt;}
.ls2e{letter-spacing:-0.800000pt;}
.ls40{letter-spacing:-0.660842pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.589333pt;}
.ls46{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.496000pt;}
.ls4a{letter-spacing:-0.458667pt;}
.ls6{letter-spacing:-0.453333pt;}
.ls48{letter-spacing:-0.432000pt;}
.ls9{letter-spacing:-0.408000pt;}
.ls8{letter-spacing:-0.362667pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls21{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.155492pt;}
.ls20{letter-spacing:-0.106667pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls38{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.045333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000267pt;}
.lsf{letter-spacing:0.019733pt;}
.ls19{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.045333pt;}
.ls16{letter-spacing:0.053333pt;}
.ls44{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.090667pt;}
.ls39{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.181333pt;}
.ls18{letter-spacing:0.186667pt;}
.ls45{letter-spacing:0.198400pt;}
.ls27{letter-spacing:0.213333pt;}
.ls3d{letter-spacing:0.223200pt;}
.ls3b{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.275200pt;}
.ls35{letter-spacing:0.293333pt;}
.ls3c{letter-spacing:0.297600pt;}
.lsc{letter-spacing:0.317333pt;}
.ls12{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls28{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.506667pt;}
.ls30{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.560000pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.651200pt;}
.ls10{letter-spacing:0.693333pt;}
.ls33{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.853333pt;}
.ls3a{letter-spacing:0.864000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls34{letter-spacing:1.013333pt;}
.ls25{letter-spacing:1.066667pt;}
.ls29{letter-spacing:1.104000pt;}
.ls1d{letter-spacing:1.200000pt;}
.ls3e{letter-spacing:1.440000pt;}
.ls2a{letter-spacing:1.600000pt;}
.ls5{letter-spacing:2.109867pt;}
.ls49{letter-spacing:2.981333pt;}
.ls31{letter-spacing:4.768000pt;}
.wsae{word-spacing:-13.117867pt;}
.ws96{word-spacing:-12.816000pt;}
.ws1c{word-spacing:-12.576000pt;}
.ws0{word-spacing:-12.246400pt;}
.ws58{word-spacing:-11.712000pt;}
.ws85{word-spacing:-11.472000pt;}
.ws1d{word-spacing:-11.253333pt;}
.ws65{word-spacing:-11.200000pt;}
.ws72{word-spacing:-11.184000pt;}
.wsad{word-spacing:-10.944000pt;}
.ws2{word-spacing:-10.411733pt;}
.ws64{word-spacing:-10.080000pt;}
.ws63{word-spacing:-10.026667pt;}
.wsaf{word-spacing:-9.861333pt;}
.wsb6{word-spacing:-9.746667pt;}
.wsa4{word-spacing:-9.013333pt;}
.ws66{word-spacing:-8.581664pt;}
.ws59{word-spacing:-8.581328pt;}
.ws98{word-spacing:-8.163344pt;}
.ws3{word-spacing:-7.912000pt;}
.ws9b{word-spacing:-7.891233pt;}
.ws99{word-spacing:-7.385883pt;}
.ws97{word-spacing:-6.841660pt;}
.ws9c{word-spacing:-6.686167pt;}
.ws1{word-spacing:-6.529600pt;}
.ws9a{word-spacing:-4.936879pt;}
.ws2d{word-spacing:-1.920000pt;}
.wsb1{word-spacing:-1.866667pt;}
.ws61{word-spacing:-1.813333pt;}
.ws23{word-spacing:-1.760000pt;}
.ws27{word-spacing:-1.706667pt;}
.ws22{word-spacing:-1.653333pt;}
.ws49{word-spacing:-1.600000pt;}
.ws6c{word-spacing:-1.546667pt;}
.ws16{word-spacing:-1.496000pt;}
.ws50{word-spacing:-1.493333pt;}
.ws8{word-spacing:-1.450667pt;}
.ws2a{word-spacing:-1.333333pt;}
.ws9f{word-spacing:-1.280000pt;}
.ws80{word-spacing:-1.226667pt;}
.ws75{word-spacing:-1.120000pt;}
.ws40{word-spacing:-1.104000pt;}
.ws37{word-spacing:-1.066667pt;}
.ws19{word-spacing:-1.042667pt;}
.ws9e{word-spacing:-1.013333pt;}
.ws15{word-spacing:-0.997333pt;}
.ws8f{word-spacing:-0.960000pt;}
.ws7b{word-spacing:-0.906667pt;}
.ws74{word-spacing:-0.853333pt;}
.ws57{word-spacing:-0.800000pt;}
.ws1a{word-spacing:-0.793600pt;}
.ws95{word-spacing:-0.746667pt;}
.ws25{word-spacing:-0.693333pt;}
.ws18{word-spacing:-0.680000pt;}
.ws4{word-spacing:-0.670933pt;}
.wsb4{word-spacing:-0.642133pt;}
.ws35{word-spacing:-0.586667pt;}
.ws33{word-spacing:-0.533333pt;}
.wsd{word-spacing:-0.498667pt;}
.ws89{word-spacing:-0.426667pt;}
.ws84{word-spacing:-0.373333pt;}
.wsa{word-spacing:-0.362667pt;}
.ws53{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.317333pt;}
.wsaa{word-spacing:-0.266667pt;}
.ws3d{word-spacing:-0.213333pt;}
.ws62{word-spacing:-0.198400pt;}
.wsb3{word-spacing:-0.183467pt;}
.ws10{word-spacing:-0.181333pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws7{word-spacing:-0.136000pt;}
.ws93{word-spacing:-0.106667pt;}
.ws24{word-spacing:-0.053333pt;}
.ws5{word-spacing:-0.039467pt;}
.ws6{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.053333pt;}
.ws21{word-spacing:0.106667pt;}
.ws5d{word-spacing:0.160000pt;}
.ws30{word-spacing:0.213333pt;}
.ws79{word-spacing:0.266667pt;}
.ws6a{word-spacing:0.320000pt;}
.ws13{word-spacing:0.362667pt;}
.ws6f{word-spacing:0.373333pt;}
.ws56{word-spacing:0.426667pt;}
.wsa3{word-spacing:0.446400pt;}
.wsb5{word-spacing:0.458667pt;}
.ws88{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.533333pt;}
.ws8e{word-spacing:0.586667pt;}
.ws46{word-spacing:0.640000pt;}
.ws6b{word-spacing:0.693333pt;}
.wsa2{word-spacing:0.744000pt;}
.ws8d{word-spacing:0.746667pt;}
.ws4e{word-spacing:0.800000pt;}
.ws3e{word-spacing:0.853333pt;}
.ws51{word-spacing:0.906667pt;}
.ws94{word-spacing:0.960000pt;}
.wse{word-spacing:0.997333pt;}
.ws42{word-spacing:1.066667pt;}
.wsb{word-spacing:1.088000pt;}
.ws48{word-spacing:1.120000pt;}
.ws92{word-spacing:1.226667pt;}
.ws1b{word-spacing:1.240000pt;}
.ws17{word-spacing:1.269333pt;}
.ws87{word-spacing:1.280000pt;}
.wsf{word-spacing:1.284267pt;}
.ws52{word-spacing:1.333333pt;}
.ws7e{word-spacing:1.386667pt;}
.ws11{word-spacing:1.405333pt;}
.ws5f{word-spacing:1.440000pt;}
.ws9{word-spacing:1.450667pt;}
.ws6e{word-spacing:1.493333pt;}
.ws12{word-spacing:1.496000pt;}
.ws8c{word-spacing:1.546667pt;}
.wsa1{word-spacing:1.636800pt;}
.ws2c{word-spacing:1.653333pt;}
.ws20{word-spacing:1.706667pt;}
.ws4c{word-spacing:1.760000pt;}
.ws90{word-spacing:1.813333pt;}
.ws54{word-spacing:1.866667pt;}
.ws83{word-spacing:1.920000pt;}
.ws7c{word-spacing:1.973333pt;}
.wsa9{word-spacing:2.026667pt;}
.ws81{word-spacing:2.080000pt;}
.wsa0{word-spacing:2.132800pt;}
.ws2b{word-spacing:2.133333pt;}
.ws2e{word-spacing:2.186667pt;}
.wsac{word-spacing:2.232000pt;}
.ws4a{word-spacing:2.240000pt;}
.ws14{word-spacing:2.266667pt;}
.ws26{word-spacing:2.293333pt;}
.ws77{word-spacing:2.346667pt;}
.ws55{word-spacing:2.400000pt;}
.ws44{word-spacing:2.506667pt;}
.wsab{word-spacing:2.529600pt;}
.ws3f{word-spacing:2.560000pt;}
.ws4d{word-spacing:2.613333pt;}
.ws70{word-spacing:2.666667pt;}
.ws71{word-spacing:2.720000pt;}
.ws28{word-spacing:2.773333pt;}
.ws32{word-spacing:2.826667pt;}
.ws47{word-spacing:2.880000pt;}
.ws38{word-spacing:2.933333pt;}
.ws6d{word-spacing:2.986667pt;}
.ws34{word-spacing:3.040000pt;}
.ws45{word-spacing:3.146667pt;}
.ws3b{word-spacing:3.200000pt;}
.ws31{word-spacing:3.253333pt;}
.ws36{word-spacing:3.360000pt;}
.ws91{word-spacing:3.413333pt;}
.ws29{word-spacing:3.466667pt;}
.ws8b{word-spacing:3.520000pt;}
.ws7a{word-spacing:3.573333pt;}
.ws60{word-spacing:3.626667pt;}
.wsb2{word-spacing:3.733333pt;}
.ws78{word-spacing:3.786667pt;}
.wsa6{word-spacing:3.946667pt;}
.ws7d{word-spacing:4.000000pt;}
.ws2f{word-spacing:4.053333pt;}
.ws5e{word-spacing:4.266667pt;}
.ws69{word-spacing:4.373333pt;}
.ws3c{word-spacing:4.693333pt;}
.wsa8{word-spacing:4.960000pt;}
.ws3a{word-spacing:5.120000pt;}
.ws39{word-spacing:5.173333pt;}
.ws76{word-spacing:5.386667pt;}
.ws43{word-spacing:5.440000pt;}
.ws1f{word-spacing:5.866667pt;}
.ws7f{word-spacing:6.880000pt;}
.ws5b{word-spacing:79.438579pt;}
.ws5a{word-spacing:203.336610pt;}
.ws67{word-spacing:203.344572pt;}
.ws9d{word-spacing:1115.568000pt;}
.ws1e{word-spacing:1115.808000pt;}
.ws5c{word-spacing:1116.672000pt;}
.ws86{word-spacing:1116.912000pt;}
.ws73{word-spacing:1117.200000pt;}
.wsb0{word-spacing:1117.440000pt;}
.wsb7{word-spacing:1333.488000pt;}
.ws8a{word-spacing:1334.640000pt;}
.ws41{word-spacing:1335.360000pt;}
.ws68{word-spacing:1335.408000pt;}
.ws82{word-spacing:1336.464000pt;}
.wsa5{word-spacing:1337.520000pt;}
._1f{margin-left:-1117.273600pt;}
._9{margin-left:-1116.323733pt;}
._8{margin-left:-1115.301333pt;}
._19{margin-left:-287.065853pt;}
._d{margin-left:-14.400000pt;}
._20{margin-left:-11.938133pt;}
._27{margin-left:-10.506667pt;}
._28{margin-left:-9.066667pt;}
._e{margin-left:-7.506133pt;}
._b{margin-left:-5.877333pt;}
._4{margin-left:-4.805333pt;}
._a{margin-left:-3.502933pt;}
._0{margin-left:-2.568533pt;}
._1{margin-left:-1.288533pt;}
._2{width:0.986133pt;}
._3{width:2.092267pt;}
._5{width:3.462933pt;}
._6{width:4.709760pt;}
._c{width:5.779200pt;}
._21{width:6.674667pt;}
._22{width:8.416000pt;}
._1d{width:9.333333pt;}
._1b{width:10.346667pt;}
._1e{width:11.840000pt;}
._1c{width:12.800000pt;}
._25{width:14.036800pt;}
._26{width:19.963733pt;}
._2a{width:22.373333pt;}
._2b{width:23.893333pt;}
._10{width:26.453333pt;}
._11{width:27.893333pt;}
._24{width:30.652800pt;}
._f{width:31.840000pt;}
._29{width:43.250667pt;}
._12{width:46.226667pt;}
._23{width:48.856000pt;}
._7{width:52.306667pt;}
._16{width:150.704465pt;}
._17{width:155.322037pt;}
._13{width:229.080594pt;}
._14{width:240.604092pt;}
._15{width:248.368150pt;}
._18{width:394.863678pt;}
._1a{width:403.894505pt;}
.fs7{font-size:19.733333pt;}
.fs4{font-size:31.093333pt;}
.fs5{font-size:36.800000pt;}
.fs10{font-size:38.873067pt;}
.fsa{font-size:40.863467pt;}
.fsd{font-size:40.865067pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:45.866667pt;}
.fsc{font-size:46.700800pt;}
.fsf{font-size:46.702933pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs11{font-size:49.979733pt;}
.fsb{font-size:52.538667pt;}
.fse{font-size:52.540800pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y6b{bottom:-253.985920pt;}
.y6a{bottom:-241.726880pt;}
.y69{bottom:-229.467840pt;}
.y68{bottom:-217.208800pt;}
.y6c{bottom:-172.340714pt;}
.y6d{bottom:-146.786533pt;}
.y64{bottom:-112.513041pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.576000pt;}
.y7d{bottom:3.576133pt;}
.y7e{bottom:40.354400pt;}
.y29{bottom:56.687600pt;}
.y5c{bottom:56.692933pt;}
.y9a{bottom:56.693067pt;}
.y56{bottom:57.637733pt;}
.yb3{bottom:72.020933pt;}
.y28{bottom:72.026400pt;}
.y55{bottom:74.171067pt;}
.yf0{bottom:77.255867pt;}
.yd2{bottom:77.313200pt;}
.y9c{bottom:87.359733pt;}
.y5b{bottom:87.359867pt;}
.y54{bottom:90.704400pt;}
.yef{bottom:92.724400pt;}
.yd1{bottom:92.781733pt;}
.y9b{bottom:102.693067pt;}
.y27{bottom:103.504400pt;}
.y53{bottom:107.237733pt;}
.yee{bottom:108.192933pt;}
.yd0{bottom:108.250267pt;}
.y62{bottom:111.086667pt;}
.y26{bottom:118.837733pt;}
.yed{bottom:123.661467pt;}
.ycf{bottom:123.718800pt;}
.y52{bottom:123.771067pt;}
.y60{bottom:127.616347pt;}
.y86{bottom:127.909200pt;}
.yec{bottom:139.130000pt;}
.yce{bottom:139.187333pt;}
.y5f{bottom:139.875387pt;}
.y51{bottom:140.304400pt;}
.y85{bottom:142.578400pt;}
.y25{bottom:149.761067pt;}
.y5e{bottom:152.134427pt;}
.yeb{bottom:154.598533pt;}
.ycd{bottom:154.655867pt;}
.y50{bottom:156.837733pt;}
.y84{bottom:157.247600pt;}
.y5d{bottom:164.393467pt;}
.y24{bottom:165.095067pt;}
.yea{bottom:170.067067pt;}
.ycc{bottom:170.124400pt;}
.y83{bottom:171.916800pt;}
.y63{bottom:172.916400pt;}
.y4f{bottom:173.371067pt;}
.y23{bottom:180.429067pt;}
.y6e{bottom:182.705333pt;}
.ye9{bottom:185.535600pt;}
.ycb{bottom:185.592933pt;}
.y5a{bottom:189.904400pt;}
.y82{bottom:192.550400pt;}
.y67{bottom:195.693600pt;}
.y22{bottom:195.763067pt;}
.y7b{bottom:198.540693pt;}
.ye8{bottom:201.004133pt;}
.yca{bottom:201.061467pt;}
.y4e{bottom:206.437733pt;}
.y65{bottom:207.244933pt;}
.y7a{bottom:210.800213pt;}
.y7f{bottom:210.800400pt;}
.y21{bottom:211.097067pt;}
.ye7{bottom:216.472667pt;}
.yc9{bottom:216.530000pt;}
.y59{bottom:222.971067pt;}
.y79{bottom:223.059733pt;}
.y61{bottom:225.872552pt;}
.y20{bottom:226.431067pt;}
.ye6{bottom:231.941200pt;}
.yc8{bottom:231.998533pt;}
.y58{bottom:239.504400pt;}
.y1f{bottom:241.765067pt;}
.ye5{bottom:247.409733pt;}
.yc7{bottom:247.467067pt;}
.y66{bottom:253.448400pt;}
.y4d{bottom:256.037733pt;}
.y1e{bottom:257.099067pt;}
.yb1{bottom:259.670400pt;}
.ye4{bottom:262.878267pt;}
.yc6{bottom:262.935600pt;}
.y80{bottom:267.929763pt;}
.y1d{bottom:272.433067pt;}
.y4c{bottom:272.571067pt;}
.y72{bottom:274.102240pt;}
.ye3{bottom:278.346800pt;}
.yc5{bottom:278.404133pt;}
.y71{bottom:286.361760pt;}
.y1c{bottom:287.767067pt;}
.y4b{bottom:289.104400pt;}
.y81{bottom:293.484800pt;}
.ye2{bottom:293.815333pt;}
.yc4{bottom:293.872667pt;}
.y70{bottom:298.621280pt;}
.y1b{bottom:303.101067pt;}
.y4a{bottom:305.637733pt;}
.ye1{bottom:309.283867pt;}
.yc3{bottom:309.341200pt;}
.y6f{bottom:310.880800pt;}
.y1a{bottom:318.435067pt;}
.y49{bottom:322.171067pt;}
.ye0{bottom:324.752400pt;}
.yc2{bottom:324.809733pt;}
.y75{bottom:327.761067pt;}
.y19{bottom:333.769067pt;}
.y48{bottom:338.704400pt;}
.yb0{bottom:339.102667pt;}
.ydf{bottom:340.220933pt;}
.yc1{bottom:340.278267pt;}
.y78{bottom:342.182133pt;}
.y18{bottom:349.103067pt;}
.y76{bottom:353.734000pt;}
.y47{bottom:355.237733pt;}
.yde{bottom:355.689467pt;}
.yc0{bottom:355.746800pt;}
.yaf{bottom:359.345116pt;}
.y17{bottom:364.437067pt;}
.yae{bottom:371.007036pt;}
.ydd{bottom:371.158000pt;}
.ybf{bottom:371.215333pt;}
.y46{bottom:371.771067pt;}
.y73{bottom:372.362293pt;}
.y16{bottom:379.771067pt;}
.ydc{bottom:386.626533pt;}
.ybe{bottom:386.683867pt;}
.y45{bottom:388.304400pt;}
.y15{bottom:395.104400pt;}
.y77{bottom:399.939333pt;}
.ydb{bottom:402.095067pt;}
.ybd{bottom:402.152400pt;}
.y44{bottom:404.837733pt;}
.yda{bottom:417.563600pt;}
.ybc{bottom:417.620933pt;}
.y43{bottom:421.371067pt;}
.y14{bottom:426.037733pt;}
.ya4{bottom:429.384663pt;}
.yad{bottom:429.394382pt;}
.ya8{bottom:429.919168pt;}
.y74{bottom:430.495200pt;}
.yd9{bottom:433.032133pt;}
.ybb{bottom:433.089467pt;}
.y42{bottom:437.904400pt;}
.ya3{bottom:441.046583pt;}
.yac{bottom:441.056302pt;}
.y13{bottom:441.371067pt;}
.ya7{bottom:441.581088pt;}
.ya9{bottom:445.973745pt;}
.yd8{bottom:448.500667pt;}
.yba{bottom:448.558000pt;}
.ya2{bottom:452.708503pt;}
.yab{bottom:452.718222pt;}
.ya6{bottom:453.243008pt;}
.y41{bottom:454.437733pt;}
.yd7{bottom:463.969200pt;}
.yb9{bottom:464.026533pt;}
.ya1{bottom:464.370423pt;}
.yaa{bottom:464.380142pt;}
.ya5{bottom:464.904928pt;}
.y40{bottom:470.971067pt;}
.y12{bottom:472.304400pt;}
.yd6{bottom:479.437733pt;}
.yb8{bottom:479.495067pt;}
.y3f{bottom:487.504400pt;}
.y11{bottom:487.637733pt;}
.y99{bottom:493.743200pt;}
.yd5{bottom:494.906267pt;}
.yb7{bottom:494.963600pt;}
.y10{bottom:502.968400pt;}
.y3e{bottom:504.037733pt;}
.ya0{bottom:508.607973pt;}
.yd4{bottom:510.374800pt;}
.yb6{bottom:510.432133pt;}
.y98{bottom:518.097467pt;}
.yf{bottom:518.302400pt;}
.y9f{bottom:520.269893pt;}
.y3d{bottom:520.571067pt;}
.yd3{bottom:525.843333pt;}
.yb5{bottom:525.900667pt;}
.y9e{bottom:531.931813pt;}
.y97{bottom:532.766667pt;}
.ye{bottom:533.636400pt;}
.y3c{bottom:537.104400pt;}
.y9d{bottom:543.593733pt;}
.y96{bottom:547.435867pt;}
.yd{bottom:548.970400pt;}
.y3b{bottom:553.637733pt;}
.yb4{bottom:556.837733pt;}
.y95{bottom:562.105067pt;}
.yc{bottom:564.304400pt;}
.y3a{bottom:570.171067pt;}
.yb{bottom:579.637733pt;}
.y94{bottom:582.738667pt;}
.yb2{bottom:583.779067pt;}
.y39{bottom:586.704400pt;}
.y104{bottom:588.395733pt;}
.ya{bottom:594.970400pt;}
.y38{bottom:603.237733pt;}
.y93{bottom:603.372267pt;}
.y103{bottom:603.729733pt;}
.y9{bottom:610.304400pt;}
.y92{bottom:618.041467pt;}
.y102{bottom:619.063733pt;}
.y37{bottom:619.771067pt;}
.y8{bottom:625.637733pt;}
.y91{bottom:632.710667pt;}
.y101{bottom:634.397733pt;}
.y36{bottom:636.304400pt;}
.y7{bottom:640.970400pt;}
.y90{bottom:647.379867pt;}
.y100{bottom:649.731733pt;}
.y35{bottom:652.837733pt;}
.y6{bottom:656.304400pt;}
.y8f{bottom:668.013467pt;}
.y34{bottom:669.371067pt;}
.y5{bottom:671.637733pt;}
.y33{bottom:685.904400pt;}
.y4{bottom:686.971067pt;}
.y8e{bottom:688.647067pt;}
.yf8{bottom:695.718667pt;}
.y32{bottom:702.437733pt;}
.y8d{bottom:703.316267pt;}
.yff{bottom:711.175733pt;}
.yf7{bottom:711.187200pt;}
.y8c{bottom:717.985467pt;}
.y31{bottom:718.971067pt;}
.yfe{bottom:726.644267pt;}
.yf6{bottom:726.655733pt;}
.y3{bottom:727.506933pt;}
.y8b{bottom:732.654667pt;}
.y30{bottom:735.504400pt;}
.yfd{bottom:742.112800pt;}
.yf5{bottom:742.124267pt;}
.y8a{bottom:747.323867pt;}
.y2f{bottom:752.037733pt;}
.yfc{bottom:757.581333pt;}
.yf4{bottom:757.592800pt;}
.y89{bottom:761.993067pt;}
.y2b{bottom:762.125333pt;}
.y2e{bottom:768.571067pt;}
.y2a{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.yfb{bottom:773.049867pt;}
.yf3{bottom:773.061333pt;}
.y88{bottom:776.662267pt;}
.y57{bottom:785.104400pt;}
.yfa{bottom:788.518400pt;}
.yf2{bottom:788.529867pt;}
.y1{bottom:795.958400pt;}
.y87{bottom:797.295867pt;}
.y2d{bottom:801.637733pt;}
.yf9{bottom:803.986933pt;}
.yf1{bottom:803.998400pt;}
.y2c{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.h18{height:34.985760pt;}
.hf{height:36.777120pt;}
.h14{height:36.778560pt;}
.h1a{height:38.284476pt;}
.h11{height:40.244619pt;}
.h15{height:40.246253pt;}
.h5{height:40.618667pt;}
.h6{height:40.621333pt;}
.h8{height:40.629333pt;}
.h1e{height:40.958933pt;}
.h1d{height:41.096533pt;}
.h1f{height:41.434667pt;}
.h12{height:42.030720pt;}
.h16{height:42.032640pt;}
.h4{height:43.344000pt;}
.h9{height:44.441600pt;}
.h1c{height:44.463467pt;}
.h1b{height:44.981760pt;}
.h17{height:45.036800pt;}
.hb{height:45.216000pt;}
.he{height:47.893333pt;}
.h7{height:48.138187pt;}
.hc{height:50.400000pt;}
.hd{height:52.106667pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h13{height:166.628000pt;}
.h10{height:183.884000pt;}
.h19{height:270.102667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:460.176000pt;}
.w3{width:460.194667pt;}
.w4{width:484.194667pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:8.529919pt;}
.x1b{left:11.329067pt;}
.x30{left:12.506988pt;}
.x1e{left:15.936423pt;}
.x1d{left:17.152111pt;}
.x2e{left:20.298598pt;}
.x8{left:22.498000pt;}
.x7{left:25.226133pt;}
.x38{left:28.148092pt;}
.x3a{left:29.376000pt;}
.x5a{left:60.330267pt;}
.x21{left:63.246101pt;}
.x5{left:64.252000pt;}
.x20{left:65.360785pt;}
.x1{left:71.811067pt;}
.x16{left:76.053333pt;}
.x1f{left:77.466587pt;}
.x2f{left:78.559200pt;}
.x56{left:79.801569pt;}
.x33{left:81.568950pt;}
.x6{left:83.145333pt;}
.x9{left:84.840667pt;}
.x4d{left:86.931600pt;}
.xb{left:88.559242pt;}
.x2{left:90.708933pt;}
.x32{left:91.928245pt;}
.x3b{left:94.932667pt;}
.x31{left:97.751517pt;}
.xa{left:101.083895pt;}
.x15{left:104.199734pt;}
.x19{left:105.427733pt;}
.x25{left:119.341425pt;}
.x23{left:123.397124pt;}
.x24{left:128.903476pt;}
.x22{left:135.053428pt;}
.x3d{left:148.966257pt;}
.x3e{left:156.138077pt;}
.xe{left:157.618501pt;}
.x3c{left:161.072533pt;}
.x4c{left:162.165600pt;}
.x34{left:164.198115pt;}
.xd{left:167.977390pt;}
.xc{left:173.800434pt;}
.x58{left:174.690725pt;}
.x27{left:178.000931pt;}
.x18{left:180.542667pt;}
.x17{left:184.860400pt;}
.x28{left:194.632362pt;}
.x26{left:196.430355pt;}
.x40{left:207.004573pt;}
.x41{left:212.511141pt;}
.x3f{left:218.661333pt;}
.x4e{left:225.944863pt;}
.x4f{left:230.415266pt;}
.x35{left:235.374845pt;}
.xf{left:240.244430pt;}
.x2b{left:241.768371pt;}
.x37{left:243.844130pt;}
.x36{left:245.233542pt;}
.x10{left:254.567075pt;}
.x39{left:257.949733pt;}
.x43{left:261.610122pt;}
.x44{left:278.242204pt;}
.x42{left:280.040267pt;}
.x57{left:294.604417pt;}
.x2a{left:299.355211pt;}
.x29{left:302.430187pt;}
.x11{left:311.418373pt;}
.x59{left:314.487991pt;}
.x13{left:319.887327pt;}
.x12{left:321.276685pt;}
.x47{left:324.164322pt;}
.x48{left:325.380058pt;}
.x50{left:331.242283pt;}
.x51{left:332.573685pt;}
.x1a{left:334.482267pt;}
.x52{left:360.756659pt;}
.x2c{left:366.800363pt;}
.x46{left:382.969153pt;}
.x45{left:386.044250pt;}
.x4a{left:406.023333pt;}
.x14{left:410.880051pt;}
.x2d{left:413.803566pt;}
.x49{left:450.416946pt;}
.x53{left:479.941481pt;}
.x54{left:486.161172pt;}
.x55{left:487.142717pt;}
.x4b{left:497.420933pt;}
.x4{left:578.088533pt;}
.x3{left:580.816667pt;}
}




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