
    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_d4886289641020514e5e60d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.266113;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_3d6d3cfe34825f6e9c116b4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_f13b2b7a9c71f4b777f2b905.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.266113;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_e7dfae98a31731283cedacfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_0d9500cebba3ac2a921601bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.244141;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_0c617f5984f8ba87a6fd701f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732422;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_d00bddf295dc763bc63406f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.263184;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_9fd5f88434169a8931bb093b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0fc46e2a6c137bd1810acff8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_11776f65c7b6708f19448ae3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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.243169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243169,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243170,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);}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.799400px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls17{letter-spacing:0.000840px;}
.ls16{letter-spacing:0.001200px;}
.ls11{letter-spacing:0.001800px;}
.ls4{letter-spacing:0.002100px;}
.ls14{letter-spacing:0.002400px;}
.lsa{letter-spacing:0.002619px;}
.ls18{letter-spacing:0.003000px;}
.ls3{letter-spacing:0.003600px;}
.ls8{letter-spacing:0.004200px;}
.ls6{letter-spacing:0.006000px;}
.ls9{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.007200px;}
.ls7{letter-spacing:0.007800px;}
.ls19{letter-spacing:0.009000px;}
.ls5{letter-spacing:0.009600px;}
.ls13{letter-spacing:0.010800px;}
.ls1a{letter-spacing:8.503200px;}
.lsb{letter-spacing:13.012800px;}
.ls12{letter-spacing:17.116800px;}
.lsf{letter-spacing:20.337600px;}
.lse{letter-spacing:28.940400px;}
.lsd{letter-spacing:31.386000px;}
.lsc{letter-spacing:31.386600px;}
.ls10{letter-spacing:42.389400px;}
.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;}
}
.ws0{word-spacing:-20.202000px;}
.ws7{word-spacing:-18.648000px;}
.ws5{word-spacing:-18.486229px;}
.ws3{word-spacing:-16.317000px;}
.wsa{word-spacing:-15.540000px;}
.ws14{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.141400px;}
.wsb{word-spacing:-13.986000px;}
.ws8{word-spacing:-13.053600px;}
.ws6{word-spacing:-12.940313px;}
.ws31{word-spacing:-12.432000px;}
.ws4{word-spacing:-11.421900px;}
.ws9{word-spacing:-10.878000px;}
.ws57{word-spacing:-9.790200px;}
.ws72{word-spacing:-9.013200px;}
.ws30{word-spacing:-8.702400px;}
.ws73{word-spacing:-7.210560px;}
.wse1{word-spacing:-6.180000px;}
.wsbe{word-spacing:-6.000000px;}
.wsdd{word-spacing:-5.040000px;}
.ws12{word-spacing:-4.860000px;}
.wsea{word-spacing:-4.740000px;}
.wsc9{word-spacing:-4.080000px;}
.ws9e{word-spacing:-3.900000px;}
.wsc{word-spacing:-3.420000px;}
.ws24{word-spacing:-3.300000px;}
.ws27{word-spacing:-3.060000px;}
.ws3c{word-spacing:-3.000000px;}
.ws97{word-spacing:-2.940000px;}
.ws21{word-spacing:-2.880000px;}
.ws7a{word-spacing:-2.820000px;}
.ws4a{word-spacing:-2.700000px;}
.ws26{word-spacing:-2.640000px;}
.wsbb{word-spacing:-2.544000px;}
.wsae{word-spacing:-2.460000px;}
.wse7{word-spacing:-2.400000px;}
.wscf{word-spacing:-2.352000px;}
.ws50{word-spacing:-2.304000px;}
.ws36{word-spacing:-2.160000px;}
.ws1f{word-spacing:-2.100000px;}
.ws56{word-spacing:-2.064000px;}
.ws55{word-spacing:-2.016000px;}
.ws46{word-spacing:-1.980000px;}
.ws4e{word-spacing:-1.968000px;}
.wsaf{word-spacing:-1.920000px;}
.ws4d{word-spacing:-1.872000px;}
.wsc4{word-spacing:-1.800000px;}
.ws54{word-spacing:-1.776000px;}
.wsc0{word-spacing:-1.740000px;}
.ws6d{word-spacing:-1.680000px;}
.ws8c{word-spacing:-1.632000px;}
.ws47{word-spacing:-1.620000px;}
.ws75{word-spacing:-1.560000px;}
.wsd8{word-spacing:-1.500000px;}
.ws35{word-spacing:-1.380000px;}
.ws87{word-spacing:-1.296000px;}
.ws25{word-spacing:-1.260000px;}
.wsda{word-spacing:-1.200000px;}
.ws6b{word-spacing:-1.140000px;}
.ws8b{word-spacing:-1.104000px;}
.ws78{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.056000px;}
.wsf{word-spacing:-1.020000px;}
.ws92{word-spacing:-0.960000px;}
.wsb0{word-spacing:-0.900000px;}
.ws2b{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.840000px;}
.ws45{word-spacing:-0.720000px;}
.ws7f{word-spacing:-0.624000px;}
.ws3b{word-spacing:-0.600000px;}
.wsa3{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.540000px;}
.ws88{word-spacing:-0.528000px;}
.wsa2{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.420000px;}
.wsbf{word-spacing:-0.360000px;}
.wsca{word-spacing:-0.336000px;}
.ws94{word-spacing:-0.300000px;}
.ws5c{word-spacing:-0.240000px;}
.ws64{word-spacing:-0.180000px;}
.ws66{word-spacing:-0.120000px;}
.ws90{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws96{word-spacing:0.060000px;}
.ws7e{word-spacing:0.096000px;}
.ws5e{word-spacing:0.120000px;}
.ws20{word-spacing:0.180000px;}
.ws61{word-spacing:0.240000px;}
.ws82{word-spacing:0.288000px;}
.ws5f{word-spacing:0.300000px;}
.ws9b{word-spacing:0.360000px;}
.ws6e{word-spacing:0.384000px;}
.ws3e{word-spacing:0.420000px;}
.ws2f{word-spacing:0.432000px;}
.ws71{word-spacing:0.480000px;}
.ws74{word-spacing:0.540000px;}
.ws70{word-spacing:0.576000px;}
.ws13{word-spacing:0.600000px;}
.ws83{word-spacing:0.624000px;}
.wsad{word-spacing:0.660000px;}
.ws86{word-spacing:0.672000px;}
.ws49{word-spacing:0.720000px;}
.wsb8{word-spacing:0.780000px;}
.wsc8{word-spacing:0.840000px;}
.ws51{word-spacing:0.864000px;}
.ws28{word-spacing:0.900000px;}
.wsaa{word-spacing:0.912000px;}
.ws4f{word-spacing:0.960000px;}
.ws4c{word-spacing:1.008000px;}
.wsce{word-spacing:1.056000px;}
.ws4b{word-spacing:1.080000px;}
.ws33{word-spacing:1.140000px;}
.wsa5{word-spacing:1.152000px;}
.ws34{word-spacing:1.200000px;}
.ws81{word-spacing:1.248000px;}
.ws32{word-spacing:1.260000px;}
.wsa9{word-spacing:1.344000px;}
.ws23{word-spacing:1.380000px;}
.wsa6{word-spacing:1.440000px;}
.ws99{word-spacing:1.500000px;}
.wsa1{word-spacing:1.536000px;}
.ws9a{word-spacing:1.560000px;}
.wsd6{word-spacing:1.620000px;}
.ws17{word-spacing:1.680000px;}
.ws68{word-spacing:1.740000px;}
.ws6f{word-spacing:1.776000px;}
.wsc5{word-spacing:1.800000px;}
.wsab{word-spacing:1.824000px;}
.ws69{word-spacing:1.860000px;}
.ws60{word-spacing:1.920000px;}
.wsa7{word-spacing:2.064000px;}
.ws5a{word-spacing:2.100000px;}
.wsb6{word-spacing:2.160000px;}
.wsba{word-spacing:2.220000px;}
.ws15{word-spacing:2.280000px;}
.wsbd{word-spacing:2.400000px;}
.ws95{word-spacing:2.460000px;}
.ws6c{word-spacing:2.520000px;}
.ws91{word-spacing:2.580000px;}
.ws76{word-spacing:2.640000px;}
.ws53{word-spacing:2.688000px;}
.wsd2{word-spacing:2.700000px;}
.ws8a{word-spacing:2.736000px;}
.ws77{word-spacing:2.760000px;}
.ws85{word-spacing:2.832000px;}
.wsc7{word-spacing:2.940000px;}
.wsbc{word-spacing:2.976000px;}
.ws9c{word-spacing:3.000000px;}
.wsa8{word-spacing:3.024000px;}
.ws58{word-spacing:3.060000px;}
.ws7c{word-spacing:3.072000px;}
.ws48{word-spacing:3.180000px;}
.wsa4{word-spacing:3.216000px;}
.wsd3{word-spacing:3.300000px;}
.wsc6{word-spacing:3.420000px;}
.ws89{word-spacing:3.456000px;}
.wsb4{word-spacing:3.480000px;}
.ws2c{word-spacing:3.504000px;}
.wscb{word-spacing:3.648000px;}
.wse4{word-spacing:3.660000px;}
.ws93{word-spacing:3.720000px;}
.wsed{word-spacing:3.780000px;}
.ws6a{word-spacing:4.020000px;}
.ws62{word-spacing:4.080000px;}
.ws79{word-spacing:4.140000px;}
.ws2e{word-spacing:4.272000px;}
.ws2a{word-spacing:4.320000px;}
.ws8e{word-spacing:4.380000px;}
.ws98{word-spacing:4.440000px;}
.ws65{word-spacing:4.560000px;}
.ws84{word-spacing:4.608000px;}
.ws37{word-spacing:4.620000px;}
.ws59{word-spacing:4.740000px;}
.ws38{word-spacing:4.800000px;}
.ws5b{word-spacing:4.860000px;}
.ws19{word-spacing:4.980000px;}
.ws29{word-spacing:5.040000px;}
.wsc3{word-spacing:5.220000px;}
.ws22{word-spacing:5.400000px;}
.ws63{word-spacing:5.520000px;}
.ws11{word-spacing:5.580000px;}
.wsb5{word-spacing:5.640000px;}
.wsd7{word-spacing:5.700000px;}
.ws52{word-spacing:5.712000px;}
.ws1d{word-spacing:5.820000px;}
.wsd4{word-spacing:6.060000px;}
.wsec{word-spacing:6.180000px;}
.ws9f{word-spacing:6.240000px;}
.wsd5{word-spacing:6.300000px;}
.wsb2{word-spacing:6.360000px;}
.wsc2{word-spacing:6.480000px;}
.wsa0{word-spacing:6.720000px;}
.wsb3{word-spacing:6.780000px;}
.wsac{word-spacing:6.840000px;}
.wsdc{word-spacing:7.080000px;}
.ws18{word-spacing:7.200000px;}
.ws7d{word-spacing:7.248000px;}
.wse5{word-spacing:7.320000px;}
.wscd{word-spacing:7.392000px;}
.wsd1{word-spacing:7.500000px;}
.wse{word-spacing:7.560000px;}
.ws80{word-spacing:7.584000px;}
.ws42{word-spacing:7.620000px;}
.ws67{word-spacing:7.740000px;}
.ws41{word-spacing:7.920000px;}
.ws5d{word-spacing:8.040000px;}
.ws40{word-spacing:8.100000px;}
.ws39{word-spacing:8.220000px;}
.wsb7{word-spacing:8.340000px;}
.ws2d{word-spacing:8.400000px;}
.wsdb{word-spacing:8.520000px;}
.ws1a{word-spacing:8.640000px;}
.ws3f{word-spacing:8.940000px;}
.wsc1{word-spacing:9.000000px;}
.wsd9{word-spacing:9.060000px;}
.wscc{word-spacing:9.168000px;}
.ws7b{word-spacing:9.240000px;}
.wsb1{word-spacing:9.420000px;}
.wsee{word-spacing:9.600000px;}
.wsd0{word-spacing:9.660000px;}
.ws44{word-spacing:9.720000px;}
.ws3d{word-spacing:9.780000px;}
.ws9d{word-spacing:10.020000px;}
.wse0{word-spacing:10.260000px;}
.ws43{word-spacing:10.740000px;}
.wse2{word-spacing:10.980000px;}
.wsef{word-spacing:11.040000px;}
.wsd{word-spacing:12.000000px;}
.ws16{word-spacing:12.300000px;}
.wseb{word-spacing:12.600000px;}
.wsdf{word-spacing:13.380000px;}
.wsde{word-spacing:13.500000px;}
.wse9{word-spacing:13.920000px;}
.ws1b{word-spacing:14.880000px;}
.wse3{word-spacing:15.240000px;}
.wse6{word-spacing:15.960000px;}
.wsb9{word-spacing:17.160000px;}
.ws3a{word-spacing:17.820000px;}
.wse8{word-spacing:18.960000px;}
.ws8f{word-spacing:20.100000px;}
._c{margin-left:-8.442000px;}
._8{margin-left:-6.576000px;}
._0{margin-left:-3.969000px;}
._7{margin-left:-2.851200px;}
._a{margin-left:-1.666800px;}
._d{width:1.158000px;}
._9{width:5.580000px;}
._e{width:6.587400px;}
._b{width:8.580000px;}
._1{width:13.028700px;}
._6{width:17.927100px;}
._4{width:20.353800px;}
._3{width:28.934700px;}
._2{width:31.389000px;}
._5{width:42.415800px;}
.fc2{color:transparent;}
.fc1{color:rgb(147,100,204);}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:27.840000px;}
.fs1a{font-size:33.600000px;}
.fs18{font-size:34.800000px;}
.fs1b{font-size:37.800000px;}
.fs17{font-size:41.760000px;}
.fs15{font-size:42.000000px;}
.fsb{font-size:44.100000px;}
.fs0{font-size:48.000000px;}
.fs12{font-size:49.962600px;}
.fs14{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:54.600000px;}
.fs16{font-size:60.000000px;}
.fse{font-size:62.104800px;}
.fsa{font-size:63.000000px;}
.fs11{font-size:71.375400px;}
.fs9{font-size:71.400000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fsd{font-size:81.213600px;}
.fs13{font-size:90.000000px;}
.fs10{font-size:96.000000px;}
.fs8{font-size:102.000000px;}
.fsf{font-size:108.000000px;}
.fsc{font-size:109.877400px;}
.fs3{font-size:120.000000px;}
.fs2{font-size:144.000000px;}
.fs1{font-size:183.636600px;}
.y0{bottom:0.000000px;}
.y30{bottom:50.519100px;}
.y1{bottom:54.621300px;}
.y2f{bottom:73.019100px;}
.y9{bottom:73.369950px;}
.y159{bottom:86.929200px;}
.y145{bottom:89.870100px;}
.y132{bottom:90.001200px;}
.y14b{bottom:92.159100px;}
.yaf{bottom:92.723100px;}
.yd1{bottom:92.725500px;}
.y10c{bottom:92.825250px;}
.yf6{bottom:93.122850px;}
.y118{bottom:93.555150px;}
.ya2{bottom:93.758100px;}
.y2e{bottom:95.519100px;}
.y8{bottom:97.369950px;}
.y158{bottom:101.329200px;}
.y45{bottom:102.877800px;}
.y144{bottom:104.270100px;}
.y131{bottom:104.401200px;}
.y14a{bottom:106.559100px;}
.y10b{bottom:107.225250px;}
.yd0{bottom:110.725500px;}
.yf5{bottom:111.482850px;}
.ya1{bottom:111.758100px;}
.y117{bottom:111.915150px;}
.y157{bottom:115.729200px;}
.y2d{bottom:118.019100px;}
.y143{bottom:118.670100px;}
.y130{bottom:118.801200px;}
.y44{bottom:120.877800px;}
.y149{bottom:120.959100px;}
.y10a{bottom:121.625250px;}
.yf4{bottom:121.922850px;}
.y116{bottom:122.355150px;}
.ycf{bottom:128.725500px;}
.ya0{bottom:129.758100px;}
.y142{bottom:133.070100px;}
.y12f{bottom:133.201200px;}
.y156{bottom:134.089200px;}
.y109{bottom:136.025250px;}
.yf3{bottom:136.322850px;}
.y43{bottom:138.877800px;}
.y148{bottom:139.319100px;}
.y2c{bottom:140.519100px;}
.y115{bottom:140.715150px;}
.y80{bottom:143.460900px;}
.y75{bottom:144.435900px;}
.y155{bottom:144.529200px;}
.y15a{bottom:146.725500px;}
.y141{bottom:147.470100px;}
.y12e{bottom:147.601200px;}
.y108{bottom:150.425250px;}
.yf2{bottom:150.722850px;}
.y114{bottom:151.155150px;}
.y147{bottom:153.719100px;}
.y154{bottom:158.929200px;}
.y140{bottom:161.870100px;}
.y12d{bottom:162.001200px;}
.y74{bottom:162.435900px;}
.y2b{bottom:163.019100px;}
.yae{bottom:164.723100px;}
.yce{bottom:164.725500px;}
.y107{bottom:164.825250px;}
.yf1{bottom:165.122850px;}
.y113{bottom:165.555150px;}
.y9f{bottom:165.758100px;}
.y153{bottom:173.329200px;}
.y13f{bottom:176.270100px;}
.y12c{bottom:176.401200px;}
.y106{bottom:179.225250px;}
.ycd{bottom:182.725500px;}
.yf0{bottom:183.482850px;}
.y9e{bottom:183.758100px;}
.y112{bottom:183.915150px;}
.y2a{bottom:185.519100px;}
.y152{bottom:187.729200px;}
.y13e{bottom:190.670100px;}
.y12b{bottom:190.801200px;}
.y111{bottom:194.355150px;}
.y7f{bottom:197.460900px;}
.y105{bottom:197.585250px;}
.y73{bottom:198.435900px;}
.y146{bottom:200.725500px;}
.y13d{bottom:205.070100px;}
.y12a{bottom:205.201200px;}
.y151{bottom:206.089200px;}
.y29{bottom:208.019100px;}
.y104{bottom:208.025250px;}
.y110{bottom:212.715150px;}
.yef{bottom:212.836050px;}
.y72{bottom:216.435900px;}
.yad{bottom:218.723100px;}
.ycc{bottom:218.725500px;}
.y13c{bottom:219.470100px;}
.y129{bottom:219.601200px;}
.y9d{bottom:219.758100px;}
.y150{bottom:220.489200px;}
.y103{bottom:222.425250px;}
.y28{bottom:230.519100px;}
.yee{bottom:230.836050px;}
.y14f{bottom:230.929200px;}
.ycb{bottom:236.725500px;}
.y102{bottom:236.825250px;}
.y9c{bottom:237.758100px;}
.y13b{bottom:237.830100px;}
.y128{bottom:237.961200px;}
.y14e{bottom:245.329200px;}
.y13a{bottom:248.270100px;}
.yed{bottom:248.836050px;}
.y101{bottom:251.225250px;}
.y7e{bottom:251.460900px;}
.y127{bottom:252.361200px;}
.y71{bottom:252.435900px;}
.y27{bottom:253.019100px;}
.yca{bottom:254.725500px;}
.y9b{bottom:255.758100px;}
.y14d{bottom:259.729200px;}
.y139{bottom:262.670100px;}
.y126{bottom:262.801200px;}
.yec{bottom:266.836050px;}
.y100{bottom:269.585250px;}
.y70{bottom:270.435900px;}
.y10f{bottom:272.725500px;}
.y26{bottom:275.519100px;}
.y138{bottom:277.070100px;}
.y125{bottom:277.201200px;}
.y14c{bottom:278.089200px;}
.yeb{bottom:284.836050px;}
.yac{bottom:290.723100px;}
.yc9{bottom:290.725500px;}
.y137{bottom:291.470100px;}
.y124{bottom:291.601200px;}
.y9a{bottom:291.758100px;}
.y25{bottom:298.019100px;}
.yea{bottom:302.836050px;}
.y7d{bottom:305.460900px;}
.y123{bottom:306.001200px;}
.y6f{bottom:306.435900px;}
.yc8{bottom:308.725500px;}
.y99{bottom:309.758100px;}
.y136{bottom:309.830100px;}
.y135{bottom:320.270100px;}
.y24{bottom:320.519100px;}
.ye9{bottom:320.836050px;}
.y122{bottom:324.361200px;}
.y6e{bottom:324.435900px;}
.y10e{bottom:326.725500px;}
.y98{bottom:327.758100px;}
.y134{bottom:334.670100px;}
.y121{bottom:334.801200px;}
.ye8{bottom:338.836050px;}
.y6d{bottom:342.435900px;}
.y23{bottom:343.019100px;}
.yc7{bottom:344.725500px;}
.y120{bottom:349.201200px;}
.y133{bottom:353.030100px;}
.ye7{bottom:356.836050px;}
.yab{bottom:362.723100px;}
.yc6{bottom:362.725500px;}
.y11f{bottom:363.601200px;}
.y97{bottom:363.758100px;}
.y22{bottom:365.519100px;}
.ye6{bottom:374.836050px;}
.y7c{bottom:377.460900px;}
.y11e{bottom:378.001200px;}
.y6c{bottom:378.435900px;}
.yc5{bottom:380.725500px;}
.y96{bottom:381.758100px;}
.y21{bottom:388.019100px;}
.y11d{bottom:392.401200px;}
.ye5{bottom:392.836050px;}
.y6b{bottom:396.435900px;}
.yff{bottom:398.725500px;}
.y95{bottom:399.758100px;}
.y11c{bottom:406.801200px;}
.y20{bottom:410.519100px;}
.ye4{bottom:410.836050px;}
.y6a{bottom:414.435900px;}
.yc4{bottom:416.725500px;}
.y11b{bottom:421.201200px;}
.ye3{bottom:428.836050px;}
.y1f{bottom:433.019100px;}
.yaa{bottom:434.723100px;}
.yc3{bottom:434.725500px;}
.y11a{bottom:435.601200px;}
.y94{bottom:435.758100px;}
.ye2{bottom:446.836050px;}
.y7b{bottom:449.460900px;}
.y69{bottom:450.435900px;}
.yfe{bottom:452.725500px;}
.y93{bottom:453.758100px;}
.y119{bottom:453.961200px;}
.y1e{bottom:455.519100px;}
.ye1{bottom:464.836050px;}
.y68{bottom:468.435900px;}
.yc2{bottom:470.725500px;}
.y92{bottom:471.758100px;}
.y1d{bottom:478.019100px;}
.y67{bottom:486.435900px;}
.yc1{bottom:488.725500px;}
.y1c{bottom:500.519100px;}
.ye0{bottom:500.836050px;}
.y66{bottom:504.435900px;}
.ya9{bottom:506.723100px;}
.yfd{bottom:506.725500px;}
.y91{bottom:507.758100px;}
.ydf{bottom:518.836050px;}
.y31{bottom:523.012350px;}
.y1b{bottom:523.019100px;}
.yc0{bottom:524.725500px;}
.y90{bottom:525.758100px;}
.yde{bottom:536.836050px;}
.y7a{bottom:539.460900px;}
.y65{bottom:540.435900px;}
.ybf{bottom:542.725500px;}
.y8f{bottom:543.758100px;}
.y1a{bottom:545.519100px;}
.ydd{bottom:554.836050px;}
.y64{bottom:558.435900px;}
.ybe{bottom:560.725500px;}
.y3f{bottom:563.164800px;}
.y19{bottom:568.019100px;}
.ydc{bottom:572.836050px;}
.ya8{bottom:578.723100px;}
.yfc{bottom:578.725500px;}
.y8e{bottom:579.758100px;}
.y3e{bottom:582.064800px;}
.y18{bottom:590.519100px;}
.ydb{bottom:590.836050px;}
.y79{bottom:593.460900px;}
.y63{bottom:594.435900px;}
.ybd{bottom:596.725500px;}
.y8d{bottom:597.758100px;}
.y3d{bottom:600.964800px;}
.yda{bottom:608.836050px;}
.y62{bottom:612.435900px;}
.y17{bottom:613.019100px;}
.ybc{bottom:614.725500px;}
.y3c{bottom:619.867950px;}
.yd9{bottom:626.836050px;}
.y61{bottom:630.435900px;}
.ya7{bottom:632.723100px;}
.yfb{bottom:632.725500px;}
.y8c{bottom:633.758100px;}
.y16{bottom:635.519100px;}
.y57{bottom:636.285300px;}
.y3b{bottom:638.764800px;}
.yd8{bottom:644.835900px;}
.y7{bottom:649.835700px;}
.y56{bottom:650.685300px;}
.ybb{bottom:650.725500px;}
.y8b{bottom:651.758100px;}
.y3a{bottom:657.664800px;}
.y15{bottom:658.019100px;}
.yd7{bottom:662.835900px;}
.y42{bottom:664.477800px;}
.y78{bottom:665.460900px;}
.y60{bottom:666.435900px;}
.yba{bottom:668.725500px;}
.y6{bottom:673.838700px;}
.y55{bottom:679.485300px;}
.y14{bottom:680.519100px;}
.y5f{bottom:684.435900px;}
.y41{bottom:686.077800px;}
.yb9{bottom:686.725500px;}
.y8a{bottom:687.758100px;}
.y54{bottom:693.885300px;}
.y5{bottom:698.467500px;}
.y5e{bottom:702.435900px;}
.y13{bottom:703.019100px;}
.ya6{bottom:704.723100px;}
.yfa{bottom:704.725500px;}
.y89{bottom:705.758100px;}
.y53{bottom:722.685300px;}
.yb8{bottom:722.725500px;}
.y88{bottom:723.758100px;}
.y12{bottom:725.519100px;}
.y40{bottom:729.277800px;}
.yd6{bottom:734.835900px;}
.y5d{bottom:738.435900px;}
.y39{bottom:739.194180px;}
.yb7{bottom:740.725500px;}
.y4{bottom:741.183300px;}
.y11{bottom:748.019100px;}
.y52{bottom:751.485300px;}
.ya5{bottom:758.723100px;}
.yb6{bottom:758.725500px;}
.y87{bottom:759.758100px;}
.y38{bottom:760.606800px;}
.y10{bottom:770.519100px;}
.y77{bottom:773.460900px;}
.y5c{bottom:774.435900px;}
.yf9{bottom:776.725500px;}
.y86{bottom:777.758100px;}
.y51{bottom:780.285300px;}
.y3{bottom:781.959600px;}
.y4a{bottom:782.673480px;}
.yd5{bottom:788.835900px;}
.y5b{bottom:792.435900px;}
.yf{bottom:793.019100px;}
.y50{bottom:794.685300px;}
.yb5{bottom:794.725500px;}
.y49{bottom:804.086100px;}
.yd4{bottom:806.835900px;}
.y4f{bottom:809.085300px;}
.ya4{bottom:812.723100px;}
.yb4{bottom:812.725500px;}
.y85{bottom:813.758100px;}
.ye{bottom:815.519100px;}
.y4e{bottom:823.485300px;}
.yd3{bottom:824.835900px;}
.y37{bottom:824.844450px;}
.y48{bottom:825.498600px;}
.y76{bottom:827.460900px;}
.y5a{bottom:828.435900px;}
.yb3{bottom:830.725500px;}
.y84{bottom:831.758100px;}
.y2{bottom:831.760050px;}
.y4d{bottom:837.885300px;}
.yd{bottom:838.019100px;}
.y59{bottom:846.435900px;}
.yf8{bottom:848.725500px;}
.y34{bottom:850.213500px;}
.y36{bottom:853.644450px;}
.y47{bottom:854.298600px;}
.yc{bottom:860.519100px;}
.y4c{bottom:866.685300px;}
.ya3{bottom:866.723100px;}
.yb2{bottom:866.725500px;}
.y83{bottom:867.758100px;}
.y33{bottom:868.844850px;}
.yd2{bottom:878.835900px;}
.y4b{bottom:881.085300px;}
.yb{bottom:883.019100px;}
.yb1{bottom:884.725500px;}
.y82{bottom:885.758100px;}
.y35{bottom:886.044450px;}
.y46{bottom:886.698600px;}
.y32{bottom:893.209050px;}
.y58{bottom:900.435900px;}
.yb0{bottom:902.725500px;}
.y81{bottom:903.758100px;}
.ya{bottom:920.223750px;}
.y10d{bottom:954.893850px;}
.yf7{bottom:956.038650px;}
.h20{height:31.738125px;}
.h1e{height:41.660156px;}
.h18{height:43.212891px;}
.h1a{height:46.664062px;}
.h2{height:47.578125px;}
.h1d{height:52.646484px;}
.h1c{height:52.880859px;}
.h7{height:53.525391px;}
.h1b{height:58.330078px;}
.h17{height:59.472656px;}
.h1f{height:59.473256px;}
.hf{height:61.558957px;}
.h15{height:62.433689px;}
.hb{height:62.446289px;}
.hc{height:62.473289px;}
.h13{height:69.388878px;}
.h19{height:70.748077px;}
.h14{height:70.748557px;}
.ha{height:70.772461px;}
.h6{height:71.367188px;}
.h8{height:77.314453px;}
.he{height:80.499809px;}
.h16{height:89.208984px;}
.h12{height:95.156250px;}
.h9{height:101.103516px;}
.h11{height:107.050781px;}
.hd{height:108.911681px;}
.h4{height:110.460938px;}
.h5{height:118.945312px;}
.h3{height:140.865771px;}
.h10{height:142.734375px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:42.519750px;}
.xc{left:64.101450px;}
.x2a{left:85.039350px;}
.xd{left:90.788700px;}
.x30{left:94.216050px;}
.xe{left:97.207500px;}
.x2b{left:106.299150px;}
.x4{left:135.166350px;}
.x5{left:141.003150px;}
.x3{left:145.805400px;}
.x1a{left:147.177000px;}
.x35{left:150.237150px;}
.x18{left:154.514273px;}
.x26{left:159.909000px;}
.x19{left:170.078700px;}
.x16{left:179.255250px;}
.x31{left:180.513000px;}
.xf{left:205.855800px;}
.x17{left:207.628650px;}
.x10{left:212.274600px;}
.x2{left:221.560500px;}
.x8{left:231.140100px;}
.x14{left:244.494000px;}
.x21{left:252.441000px;}
.x15{left:256.115550px;}
.x1b{left:257.754150px;}
.x7{left:259.515450px;}
.x28{left:261.537000px;}
.x1e{left:275.517000px;}
.x13{left:281.068050px;}
.x20{left:282.105000px;}
.x23{left:284.649000px;}
.x24{left:289.149000px;}
.x1f{left:295.617000px;}
.x6{left:305.388450px;}
.x9{left:308.481900px;}
.x1d{left:312.767100px;}
.x1c{left:314.364450px;}
.x34{left:316.991700px;}
.x11{left:319.659750px;}
.x29{left:322.733100px;}
.x22{left:328.725000px;}
.x27{left:336.849000px;}
.x12{left:342.708600px;}
.x25{left:344.073000px;}
.x2f{left:354.828300px;}
.x2e{left:356.198700px;}
.x1{left:357.942600px;}
.xa{left:359.313000px;}
.x33{left:414.206700px;}
.x32{left:498.671700px;}
.x2d{left:614.440050px;}
.x2c{left:622.225050px;}
@media print{
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.599467pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls17{letter-spacing:0.000747pt;}
.ls16{letter-spacing:0.001067pt;}
.ls11{letter-spacing:0.001600pt;}
.ls4{letter-spacing:0.001867pt;}
.ls14{letter-spacing:0.002133pt;}
.lsa{letter-spacing:0.002328pt;}
.ls18{letter-spacing:0.002667pt;}
.ls3{letter-spacing:0.003200pt;}
.ls8{letter-spacing:0.003733pt;}
.ls6{letter-spacing:0.005333pt;}
.ls9{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.006400pt;}
.ls7{letter-spacing:0.006933pt;}
.ls19{letter-spacing:0.008000pt;}
.ls5{letter-spacing:0.008533pt;}
.ls13{letter-spacing:0.009600pt;}
.ls1a{letter-spacing:7.558400pt;}
.lsb{letter-spacing:11.566933pt;}
.ls12{letter-spacing:15.214933pt;}
.lsf{letter-spacing:18.077867pt;}
.lse{letter-spacing:25.724800pt;}
.lsd{letter-spacing:27.898667pt;}
.lsc{letter-spacing:27.899200pt;}
.ls10{letter-spacing:37.679467pt;}
.ws0{word-spacing:-17.957333pt;}
.ws7{word-spacing:-16.576000pt;}
.ws5{word-spacing:-16.432203pt;}
.ws3{word-spacing:-14.504000pt;}
.wsa{word-spacing:-13.813333pt;}
.ws14{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.570133pt;}
.wsb{word-spacing:-12.432000pt;}
.ws8{word-spacing:-11.603200pt;}
.ws6{word-spacing:-11.502501pt;}
.ws31{word-spacing:-11.050667pt;}
.ws4{word-spacing:-10.152800pt;}
.ws9{word-spacing:-9.669333pt;}
.ws57{word-spacing:-8.702400pt;}
.ws72{word-spacing:-8.011733pt;}
.ws30{word-spacing:-7.735467pt;}
.ws73{word-spacing:-6.409387pt;}
.wse1{word-spacing:-5.493333pt;}
.wsbe{word-spacing:-5.333333pt;}
.wsdd{word-spacing:-4.480000pt;}
.ws12{word-spacing:-4.320000pt;}
.wsea{word-spacing:-4.213333pt;}
.wsc9{word-spacing:-3.626667pt;}
.ws9e{word-spacing:-3.466667pt;}
.wsc{word-spacing:-3.040000pt;}
.ws24{word-spacing:-2.933333pt;}
.ws27{word-spacing:-2.720000pt;}
.ws3c{word-spacing:-2.666667pt;}
.ws97{word-spacing:-2.613333pt;}
.ws21{word-spacing:-2.560000pt;}
.ws7a{word-spacing:-2.506667pt;}
.ws4a{word-spacing:-2.400000pt;}
.ws26{word-spacing:-2.346667pt;}
.wsbb{word-spacing:-2.261333pt;}
.wsae{word-spacing:-2.186667pt;}
.wse7{word-spacing:-2.133333pt;}
.wscf{word-spacing:-2.090667pt;}
.ws50{word-spacing:-2.048000pt;}
.ws36{word-spacing:-1.920000pt;}
.ws1f{word-spacing:-1.866667pt;}
.ws56{word-spacing:-1.834667pt;}
.ws55{word-spacing:-1.792000pt;}
.ws46{word-spacing:-1.760000pt;}
.ws4e{word-spacing:-1.749333pt;}
.wsaf{word-spacing:-1.706667pt;}
.ws4d{word-spacing:-1.664000pt;}
.wsc4{word-spacing:-1.600000pt;}
.ws54{word-spacing:-1.578667pt;}
.wsc0{word-spacing:-1.546667pt;}
.ws6d{word-spacing:-1.493333pt;}
.ws8c{word-spacing:-1.450667pt;}
.ws47{word-spacing:-1.440000pt;}
.ws75{word-spacing:-1.386667pt;}
.wsd8{word-spacing:-1.333333pt;}
.ws35{word-spacing:-1.226667pt;}
.ws87{word-spacing:-1.152000pt;}
.ws25{word-spacing:-1.120000pt;}
.wsda{word-spacing:-1.066667pt;}
.ws6b{word-spacing:-1.013333pt;}
.ws8b{word-spacing:-0.981333pt;}
.ws78{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.938667pt;}
.wsf{word-spacing:-0.906667pt;}
.ws92{word-spacing:-0.853333pt;}
.wsb0{word-spacing:-0.800000pt;}
.ws2b{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.746667pt;}
.ws45{word-spacing:-0.640000pt;}
.ws7f{word-spacing:-0.554667pt;}
.ws3b{word-spacing:-0.533333pt;}
.wsa3{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws88{word-spacing:-0.469333pt;}
.wsa2{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.373333pt;}
.wsbf{word-spacing:-0.320000pt;}
.wsca{word-spacing:-0.298667pt;}
.ws94{word-spacing:-0.266667pt;}
.ws5c{word-spacing:-0.213333pt;}
.ws64{word-spacing:-0.160000pt;}
.ws66{word-spacing:-0.106667pt;}
.ws90{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws96{word-spacing:0.053333pt;}
.ws7e{word-spacing:0.085333pt;}
.ws5e{word-spacing:0.106667pt;}
.ws20{word-spacing:0.160000pt;}
.ws61{word-spacing:0.213333pt;}
.ws82{word-spacing:0.256000pt;}
.ws5f{word-spacing:0.266667pt;}
.ws9b{word-spacing:0.320000pt;}
.ws6e{word-spacing:0.341333pt;}
.ws3e{word-spacing:0.373333pt;}
.ws2f{word-spacing:0.384000pt;}
.ws71{word-spacing:0.426667pt;}
.ws74{word-spacing:0.480000pt;}
.ws70{word-spacing:0.512000pt;}
.ws13{word-spacing:0.533333pt;}
.ws83{word-spacing:0.554667pt;}
.wsad{word-spacing:0.586667pt;}
.ws86{word-spacing:0.597333pt;}
.ws49{word-spacing:0.640000pt;}
.wsb8{word-spacing:0.693333pt;}
.wsc8{word-spacing:0.746667pt;}
.ws51{word-spacing:0.768000pt;}
.ws28{word-spacing:0.800000pt;}
.wsaa{word-spacing:0.810667pt;}
.ws4f{word-spacing:0.853333pt;}
.ws4c{word-spacing:0.896000pt;}
.wsce{word-spacing:0.938667pt;}
.ws4b{word-spacing:0.960000pt;}
.ws33{word-spacing:1.013333pt;}
.wsa5{word-spacing:1.024000pt;}
.ws34{word-spacing:1.066667pt;}
.ws81{word-spacing:1.109333pt;}
.ws32{word-spacing:1.120000pt;}
.wsa9{word-spacing:1.194667pt;}
.ws23{word-spacing:1.226667pt;}
.wsa6{word-spacing:1.280000pt;}
.ws99{word-spacing:1.333333pt;}
.wsa1{word-spacing:1.365333pt;}
.ws9a{word-spacing:1.386667pt;}
.wsd6{word-spacing:1.440000pt;}
.ws17{word-spacing:1.493333pt;}
.ws68{word-spacing:1.546667pt;}
.ws6f{word-spacing:1.578667pt;}
.wsc5{word-spacing:1.600000pt;}
.wsab{word-spacing:1.621333pt;}
.ws69{word-spacing:1.653333pt;}
.ws60{word-spacing:1.706667pt;}
.wsa7{word-spacing:1.834667pt;}
.ws5a{word-spacing:1.866667pt;}
.wsb6{word-spacing:1.920000pt;}
.wsba{word-spacing:1.973333pt;}
.ws15{word-spacing:2.026667pt;}
.wsbd{word-spacing:2.133333pt;}
.ws95{word-spacing:2.186667pt;}
.ws6c{word-spacing:2.240000pt;}
.ws91{word-spacing:2.293333pt;}
.ws76{word-spacing:2.346667pt;}
.ws53{word-spacing:2.389333pt;}
.wsd2{word-spacing:2.400000pt;}
.ws8a{word-spacing:2.432000pt;}
.ws77{word-spacing:2.453333pt;}
.ws85{word-spacing:2.517333pt;}
.wsc7{word-spacing:2.613333pt;}
.wsbc{word-spacing:2.645333pt;}
.ws9c{word-spacing:2.666667pt;}
.wsa8{word-spacing:2.688000pt;}
.ws58{word-spacing:2.720000pt;}
.ws7c{word-spacing:2.730667pt;}
.ws48{word-spacing:2.826667pt;}
.wsa4{word-spacing:2.858667pt;}
.wsd3{word-spacing:2.933333pt;}
.wsc6{word-spacing:3.040000pt;}
.ws89{word-spacing:3.072000pt;}
.wsb4{word-spacing:3.093333pt;}
.ws2c{word-spacing:3.114667pt;}
.wscb{word-spacing:3.242667pt;}
.wse4{word-spacing:3.253333pt;}
.ws93{word-spacing:3.306667pt;}
.wsed{word-spacing:3.360000pt;}
.ws6a{word-spacing:3.573333pt;}
.ws62{word-spacing:3.626667pt;}
.ws79{word-spacing:3.680000pt;}
.ws2e{word-spacing:3.797333pt;}
.ws2a{word-spacing:3.840000pt;}
.ws8e{word-spacing:3.893333pt;}
.ws98{word-spacing:3.946667pt;}
.ws65{word-spacing:4.053333pt;}
.ws84{word-spacing:4.096000pt;}
.ws37{word-spacing:4.106667pt;}
.ws59{word-spacing:4.213333pt;}
.ws38{word-spacing:4.266667pt;}
.ws5b{word-spacing:4.320000pt;}
.ws19{word-spacing:4.426667pt;}
.ws29{word-spacing:4.480000pt;}
.wsc3{word-spacing:4.640000pt;}
.ws22{word-spacing:4.800000pt;}
.ws63{word-spacing:4.906667pt;}
.ws11{word-spacing:4.960000pt;}
.wsb5{word-spacing:5.013333pt;}
.wsd7{word-spacing:5.066667pt;}
.ws52{word-spacing:5.077333pt;}
.ws1d{word-spacing:5.173333pt;}
.wsd4{word-spacing:5.386667pt;}
.wsec{word-spacing:5.493333pt;}
.ws9f{word-spacing:5.546667pt;}
.wsd5{word-spacing:5.600000pt;}
.wsb2{word-spacing:5.653333pt;}
.wsc2{word-spacing:5.760000pt;}
.wsa0{word-spacing:5.973333pt;}
.wsb3{word-spacing:6.026667pt;}
.wsac{word-spacing:6.080000pt;}
.wsdc{word-spacing:6.293333pt;}
.ws18{word-spacing:6.400000pt;}
.ws7d{word-spacing:6.442667pt;}
.wse5{word-spacing:6.506667pt;}
.wscd{word-spacing:6.570667pt;}
.wsd1{word-spacing:6.666667pt;}
.wse{word-spacing:6.720000pt;}
.ws80{word-spacing:6.741333pt;}
.ws42{word-spacing:6.773333pt;}
.ws67{word-spacing:6.880000pt;}
.ws41{word-spacing:7.040000pt;}
.ws5d{word-spacing:7.146667pt;}
.ws40{word-spacing:7.200000pt;}
.ws39{word-spacing:7.306667pt;}
.wsb7{word-spacing:7.413333pt;}
.ws2d{word-spacing:7.466667pt;}
.wsdb{word-spacing:7.573333pt;}
.ws1a{word-spacing:7.680000pt;}
.ws3f{word-spacing:7.946667pt;}
.wsc1{word-spacing:8.000000pt;}
.wsd9{word-spacing:8.053333pt;}
.wscc{word-spacing:8.149333pt;}
.ws7b{word-spacing:8.213333pt;}
.wsb1{word-spacing:8.373333pt;}
.wsee{word-spacing:8.533333pt;}
.wsd0{word-spacing:8.586667pt;}
.ws44{word-spacing:8.640000pt;}
.ws3d{word-spacing:8.693333pt;}
.ws9d{word-spacing:8.906667pt;}
.wse0{word-spacing:9.120000pt;}
.ws43{word-spacing:9.546667pt;}
.wse2{word-spacing:9.760000pt;}
.wsef{word-spacing:9.813333pt;}
.wsd{word-spacing:10.666667pt;}
.ws16{word-spacing:10.933333pt;}
.wseb{word-spacing:11.200000pt;}
.wsdf{word-spacing:11.893333pt;}
.wsde{word-spacing:12.000000pt;}
.wse9{word-spacing:12.373333pt;}
.ws1b{word-spacing:13.226667pt;}
.wse3{word-spacing:13.546667pt;}
.wse6{word-spacing:14.186667pt;}
.wsb9{word-spacing:15.253333pt;}
.ws3a{word-spacing:15.840000pt;}
.wse8{word-spacing:16.853333pt;}
.ws8f{word-spacing:17.866667pt;}
._c{margin-left:-7.504000pt;}
._8{margin-left:-5.845333pt;}
._0{margin-left:-3.528000pt;}
._7{margin-left:-2.534400pt;}
._a{margin-left:-1.481600pt;}
._d{width:1.029333pt;}
._9{width:4.960000pt;}
._e{width:5.855467pt;}
._b{width:7.626667pt;}
._1{width:11.581067pt;}
._6{width:15.935200pt;}
._4{width:18.092267pt;}
._3{width:25.719733pt;}
._2{width:27.901333pt;}
._5{width:37.702933pt;}
.fs19{font-size:24.746667pt;}
.fs1a{font-size:29.866667pt;}
.fs18{font-size:30.933333pt;}
.fs1b{font-size:33.600000pt;}
.fs17{font-size:37.120000pt;}
.fs15{font-size:37.333333pt;}
.fsb{font-size:39.200000pt;}
.fs0{font-size:42.666667pt;}
.fs12{font-size:44.411200pt;}
.fs14{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:48.533333pt;}
.fs16{font-size:53.333333pt;}
.fse{font-size:55.204267pt;}
.fsa{font-size:56.000000pt;}
.fs11{font-size:63.444800pt;}
.fs9{font-size:63.466667pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fsd{font-size:72.189867pt;}
.fs13{font-size:80.000000pt;}
.fs10{font-size:85.333333pt;}
.fs8{font-size:90.666667pt;}
.fsf{font-size:96.000000pt;}
.fsc{font-size:97.668800pt;}
.fs3{font-size:106.666667pt;}
.fs2{font-size:128.000000pt;}
.fs1{font-size:163.232533pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:44.905867pt;}
.y1{bottom:48.552267pt;}
.y2f{bottom:64.905867pt;}
.y9{bottom:65.217733pt;}
.y159{bottom:77.270400pt;}
.y145{bottom:79.884533pt;}
.y132{bottom:80.001067pt;}
.y14b{bottom:81.919200pt;}
.yaf{bottom:82.420533pt;}
.yd1{bottom:82.422667pt;}
.y10c{bottom:82.511333pt;}
.yf6{bottom:82.775867pt;}
.y118{bottom:83.160133pt;}
.ya2{bottom:83.340533pt;}
.y2e{bottom:84.905867pt;}
.y8{bottom:86.551067pt;}
.y158{bottom:90.070400pt;}
.y45{bottom:91.446933pt;}
.y144{bottom:92.684533pt;}
.y131{bottom:92.801067pt;}
.y14a{bottom:94.719200pt;}
.y10b{bottom:95.311333pt;}
.yd0{bottom:98.422667pt;}
.yf5{bottom:99.095867pt;}
.ya1{bottom:99.340533pt;}
.y117{bottom:99.480133pt;}
.y157{bottom:102.870400pt;}
.y2d{bottom:104.905867pt;}
.y143{bottom:105.484533pt;}
.y130{bottom:105.601067pt;}
.y44{bottom:107.446933pt;}
.y149{bottom:107.519200pt;}
.y10a{bottom:108.111333pt;}
.yf4{bottom:108.375867pt;}
.y116{bottom:108.760133pt;}
.ycf{bottom:114.422667pt;}
.ya0{bottom:115.340533pt;}
.y142{bottom:118.284533pt;}
.y12f{bottom:118.401067pt;}
.y156{bottom:119.190400pt;}
.y109{bottom:120.911333pt;}
.yf3{bottom:121.175867pt;}
.y43{bottom:123.446933pt;}
.y148{bottom:123.839200pt;}
.y2c{bottom:124.905867pt;}
.y115{bottom:125.080133pt;}
.y80{bottom:127.520800pt;}
.y75{bottom:128.387467pt;}
.y155{bottom:128.470400pt;}
.y15a{bottom:130.422667pt;}
.y141{bottom:131.084533pt;}
.y12e{bottom:131.201067pt;}
.y108{bottom:133.711333pt;}
.yf2{bottom:133.975867pt;}
.y114{bottom:134.360133pt;}
.y147{bottom:136.639200pt;}
.y154{bottom:141.270400pt;}
.y140{bottom:143.884533pt;}
.y12d{bottom:144.001067pt;}
.y74{bottom:144.387467pt;}
.y2b{bottom:144.905867pt;}
.yae{bottom:146.420533pt;}
.yce{bottom:146.422667pt;}
.y107{bottom:146.511333pt;}
.yf1{bottom:146.775867pt;}
.y113{bottom:147.160133pt;}
.y9f{bottom:147.340533pt;}
.y153{bottom:154.070400pt;}
.y13f{bottom:156.684533pt;}
.y12c{bottom:156.801067pt;}
.y106{bottom:159.311333pt;}
.ycd{bottom:162.422667pt;}
.yf0{bottom:163.095867pt;}
.y9e{bottom:163.340533pt;}
.y112{bottom:163.480133pt;}
.y2a{bottom:164.905867pt;}
.y152{bottom:166.870400pt;}
.y13e{bottom:169.484533pt;}
.y12b{bottom:169.601067pt;}
.y111{bottom:172.760133pt;}
.y7f{bottom:175.520800pt;}
.y105{bottom:175.631333pt;}
.y73{bottom:176.387467pt;}
.y146{bottom:178.422667pt;}
.y13d{bottom:182.284533pt;}
.y12a{bottom:182.401067pt;}
.y151{bottom:183.190400pt;}
.y29{bottom:184.905867pt;}
.y104{bottom:184.911333pt;}
.y110{bottom:189.080133pt;}
.yef{bottom:189.187600pt;}
.y72{bottom:192.387467pt;}
.yad{bottom:194.420533pt;}
.ycc{bottom:194.422667pt;}
.y13c{bottom:195.084533pt;}
.y129{bottom:195.201067pt;}
.y9d{bottom:195.340533pt;}
.y150{bottom:195.990400pt;}
.y103{bottom:197.711333pt;}
.y28{bottom:204.905867pt;}
.yee{bottom:205.187600pt;}
.y14f{bottom:205.270400pt;}
.ycb{bottom:210.422667pt;}
.y102{bottom:210.511333pt;}
.y9c{bottom:211.340533pt;}
.y13b{bottom:211.404533pt;}
.y128{bottom:211.521067pt;}
.y14e{bottom:218.070400pt;}
.y13a{bottom:220.684533pt;}
.yed{bottom:221.187600pt;}
.y101{bottom:223.311333pt;}
.y7e{bottom:223.520800pt;}
.y127{bottom:224.321067pt;}
.y71{bottom:224.387467pt;}
.y27{bottom:224.905867pt;}
.yca{bottom:226.422667pt;}
.y9b{bottom:227.340533pt;}
.y14d{bottom:230.870400pt;}
.y139{bottom:233.484533pt;}
.y126{bottom:233.601067pt;}
.yec{bottom:237.187600pt;}
.y100{bottom:239.631333pt;}
.y70{bottom:240.387467pt;}
.y10f{bottom:242.422667pt;}
.y26{bottom:244.905867pt;}
.y138{bottom:246.284533pt;}
.y125{bottom:246.401067pt;}
.y14c{bottom:247.190400pt;}
.yeb{bottom:253.187600pt;}
.yac{bottom:258.420533pt;}
.yc9{bottom:258.422667pt;}
.y137{bottom:259.084533pt;}
.y124{bottom:259.201067pt;}
.y9a{bottom:259.340533pt;}
.y25{bottom:264.905867pt;}
.yea{bottom:269.187600pt;}
.y7d{bottom:271.520800pt;}
.y123{bottom:272.001067pt;}
.y6f{bottom:272.387467pt;}
.yc8{bottom:274.422667pt;}
.y99{bottom:275.340533pt;}
.y136{bottom:275.404533pt;}
.y135{bottom:284.684533pt;}
.y24{bottom:284.905867pt;}
.ye9{bottom:285.187600pt;}
.y122{bottom:288.321067pt;}
.y6e{bottom:288.387467pt;}
.y10e{bottom:290.422667pt;}
.y98{bottom:291.340533pt;}
.y134{bottom:297.484533pt;}
.y121{bottom:297.601067pt;}
.ye8{bottom:301.187600pt;}
.y6d{bottom:304.387467pt;}
.y23{bottom:304.905867pt;}
.yc7{bottom:306.422667pt;}
.y120{bottom:310.401067pt;}
.y133{bottom:313.804533pt;}
.ye7{bottom:317.187600pt;}
.yab{bottom:322.420533pt;}
.yc6{bottom:322.422667pt;}
.y11f{bottom:323.201067pt;}
.y97{bottom:323.340533pt;}
.y22{bottom:324.905867pt;}
.ye6{bottom:333.187600pt;}
.y7c{bottom:335.520800pt;}
.y11e{bottom:336.001067pt;}
.y6c{bottom:336.387467pt;}
.yc5{bottom:338.422667pt;}
.y96{bottom:339.340533pt;}
.y21{bottom:344.905867pt;}
.y11d{bottom:348.801067pt;}
.ye5{bottom:349.187600pt;}
.y6b{bottom:352.387467pt;}
.yff{bottom:354.422667pt;}
.y95{bottom:355.340533pt;}
.y11c{bottom:361.601067pt;}
.y20{bottom:364.905867pt;}
.ye4{bottom:365.187600pt;}
.y6a{bottom:368.387467pt;}
.yc4{bottom:370.422667pt;}
.y11b{bottom:374.401067pt;}
.ye3{bottom:381.187600pt;}
.y1f{bottom:384.905867pt;}
.yaa{bottom:386.420533pt;}
.yc3{bottom:386.422667pt;}
.y11a{bottom:387.201067pt;}
.y94{bottom:387.340533pt;}
.ye2{bottom:397.187600pt;}
.y7b{bottom:399.520800pt;}
.y69{bottom:400.387467pt;}
.yfe{bottom:402.422667pt;}
.y93{bottom:403.340533pt;}
.y119{bottom:403.521067pt;}
.y1e{bottom:404.905867pt;}
.ye1{bottom:413.187600pt;}
.y68{bottom:416.387467pt;}
.yc2{bottom:418.422667pt;}
.y92{bottom:419.340533pt;}
.y1d{bottom:424.905867pt;}
.y67{bottom:432.387467pt;}
.yc1{bottom:434.422667pt;}
.y1c{bottom:444.905867pt;}
.ye0{bottom:445.187600pt;}
.y66{bottom:448.387467pt;}
.ya9{bottom:450.420533pt;}
.yfd{bottom:450.422667pt;}
.y91{bottom:451.340533pt;}
.ydf{bottom:461.187600pt;}
.y31{bottom:464.899867pt;}
.y1b{bottom:464.905867pt;}
.yc0{bottom:466.422667pt;}
.y90{bottom:467.340533pt;}
.yde{bottom:477.187600pt;}
.y7a{bottom:479.520800pt;}
.y65{bottom:480.387467pt;}
.ybf{bottom:482.422667pt;}
.y8f{bottom:483.340533pt;}
.y1a{bottom:484.905867pt;}
.ydd{bottom:493.187600pt;}
.y64{bottom:496.387467pt;}
.ybe{bottom:498.422667pt;}
.y3f{bottom:500.590933pt;}
.y19{bottom:504.905867pt;}
.ydc{bottom:509.187600pt;}
.ya8{bottom:514.420533pt;}
.yfc{bottom:514.422667pt;}
.y8e{bottom:515.340533pt;}
.y3e{bottom:517.390933pt;}
.y18{bottom:524.905867pt;}
.ydb{bottom:525.187600pt;}
.y79{bottom:527.520800pt;}
.y63{bottom:528.387467pt;}
.ybd{bottom:530.422667pt;}
.y8d{bottom:531.340533pt;}
.y3d{bottom:534.190933pt;}
.yda{bottom:541.187600pt;}
.y62{bottom:544.387467pt;}
.y17{bottom:544.905867pt;}
.ybc{bottom:546.422667pt;}
.y3c{bottom:550.993733pt;}
.yd9{bottom:557.187600pt;}
.y61{bottom:560.387467pt;}
.ya7{bottom:562.420533pt;}
.yfb{bottom:562.422667pt;}
.y8c{bottom:563.340533pt;}
.y16{bottom:564.905867pt;}
.y57{bottom:565.586933pt;}
.y3b{bottom:567.790933pt;}
.yd8{bottom:573.187467pt;}
.y7{bottom:577.631733pt;}
.y56{bottom:578.386933pt;}
.ybb{bottom:578.422667pt;}
.y8b{bottom:579.340533pt;}
.y3a{bottom:584.590933pt;}
.y15{bottom:584.905867pt;}
.yd7{bottom:589.187467pt;}
.y42{bottom:590.646933pt;}
.y78{bottom:591.520800pt;}
.y60{bottom:592.387467pt;}
.yba{bottom:594.422667pt;}
.y6{bottom:598.967733pt;}
.y55{bottom:603.986933pt;}
.y14{bottom:604.905867pt;}
.y5f{bottom:608.387467pt;}
.y41{bottom:609.846933pt;}
.yb9{bottom:610.422667pt;}
.y8a{bottom:611.340533pt;}
.y54{bottom:616.786933pt;}
.y5{bottom:620.860000pt;}
.y5e{bottom:624.387467pt;}
.y13{bottom:624.905867pt;}
.ya6{bottom:626.420533pt;}
.yfa{bottom:626.422667pt;}
.y89{bottom:627.340533pt;}
.y53{bottom:642.386933pt;}
.yb8{bottom:642.422667pt;}
.y88{bottom:643.340533pt;}
.y12{bottom:644.905867pt;}
.y40{bottom:648.246933pt;}
.yd6{bottom:653.187467pt;}
.y5d{bottom:656.387467pt;}
.y39{bottom:657.061493pt;}
.yb7{bottom:658.422667pt;}
.y4{bottom:658.829600pt;}
.y11{bottom:664.905867pt;}
.y52{bottom:667.986933pt;}
.ya5{bottom:674.420533pt;}
.yb6{bottom:674.422667pt;}
.y87{bottom:675.340533pt;}
.y38{bottom:676.094933pt;}
.y10{bottom:684.905867pt;}
.y77{bottom:687.520800pt;}
.y5c{bottom:688.387467pt;}
.yf9{bottom:690.422667pt;}
.y86{bottom:691.340533pt;}
.y51{bottom:693.586933pt;}
.y3{bottom:695.075200pt;}
.y4a{bottom:695.709760pt;}
.yd5{bottom:701.187467pt;}
.y5b{bottom:704.387467pt;}
.yf{bottom:704.905867pt;}
.y50{bottom:706.386933pt;}
.yb5{bottom:706.422667pt;}
.y49{bottom:714.743200pt;}
.yd4{bottom:717.187467pt;}
.y4f{bottom:719.186933pt;}
.ya4{bottom:722.420533pt;}
.yb4{bottom:722.422667pt;}
.y85{bottom:723.340533pt;}
.ye{bottom:724.905867pt;}
.y4e{bottom:731.986933pt;}
.yd3{bottom:733.187467pt;}
.y37{bottom:733.195067pt;}
.y48{bottom:733.776533pt;}
.y76{bottom:735.520800pt;}
.y5a{bottom:736.387467pt;}
.yb3{bottom:738.422667pt;}
.y84{bottom:739.340533pt;}
.y2{bottom:739.342267pt;}
.y4d{bottom:744.786933pt;}
.yd{bottom:744.905867pt;}
.y59{bottom:752.387467pt;}
.yf8{bottom:754.422667pt;}
.y34{bottom:755.745333pt;}
.y36{bottom:758.795067pt;}
.y47{bottom:759.376533pt;}
.yc{bottom:764.905867pt;}
.y4c{bottom:770.386933pt;}
.ya3{bottom:770.420533pt;}
.yb2{bottom:770.422667pt;}
.y83{bottom:771.340533pt;}
.y33{bottom:772.306533pt;}
.yd2{bottom:781.187467pt;}
.y4b{bottom:783.186933pt;}
.yb{bottom:784.905867pt;}
.yb1{bottom:786.422667pt;}
.y82{bottom:787.340533pt;}
.y35{bottom:787.595067pt;}
.y46{bottom:788.176533pt;}
.y32{bottom:793.963600pt;}
.y58{bottom:800.387467pt;}
.yb0{bottom:802.422667pt;}
.y81{bottom:803.340533pt;}
.ya{bottom:817.976667pt;}
.y10d{bottom:848.794533pt;}
.yf7{bottom:849.812133pt;}
.h20{height:28.211667pt;}
.h1e{height:37.031250pt;}
.h18{height:38.411458pt;}
.h1a{height:41.479167pt;}
.h2{height:42.291667pt;}
.h1d{height:46.796875pt;}
.h1c{height:47.005208pt;}
.h7{height:47.578125pt;}
.h1b{height:51.848958pt;}
.h17{height:52.864583pt;}
.h1f{height:52.865117pt;}
.hf{height:54.719073pt;}
.h15{height:55.496612pt;}
.hb{height:55.507812pt;}
.hc{height:55.531813pt;}
.h13{height:61.679002pt;}
.h19{height:62.887180pt;}
.h14{height:62.887606pt;}
.ha{height:62.908854pt;}
.h6{height:63.437500pt;}
.h8{height:68.723958pt;}
.he{height:71.555385pt;}
.h16{height:79.296875pt;}
.h12{height:84.583333pt;}
.h9{height:89.869792pt;}
.h11{height:95.156250pt;}
.hd{height:96.810383pt;}
.h4{height:98.187500pt;}
.h5{height:105.729167pt;}
.h3{height:125.214018pt;}
.h10{height:126.875000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:37.795333pt;}
.xc{left:56.979067pt;}
.x2a{left:75.590533pt;}
.xd{left:80.701067pt;}
.x30{left:83.747600pt;}
.xe{left:86.406667pt;}
.x2b{left:94.488133pt;}
.x4{left:120.147867pt;}
.x5{left:125.336133pt;}
.x3{left:129.604800pt;}
.x1a{left:130.824000pt;}
.x35{left:133.544133pt;}
.x18{left:137.346021pt;}
.x26{left:142.141333pt;}
.x19{left:151.181067pt;}
.x16{left:159.338000pt;}
.x31{left:160.456000pt;}
.xf{left:182.982933pt;}
.x17{left:184.558800pt;}
.x10{left:188.688533pt;}
.x2{left:196.942667pt;}
.x8{left:205.457867pt;}
.x14{left:217.328000pt;}
.x21{left:224.392000pt;}
.x15{left:227.658267pt;}
.x1b{left:229.114800pt;}
.x7{left:230.680400pt;}
.x28{left:232.477333pt;}
.x1e{left:244.904000pt;}
.x13{left:249.838267pt;}
.x20{left:250.760000pt;}
.x23{left:253.021333pt;}
.x24{left:257.021333pt;}
.x1f{left:262.770667pt;}
.x6{left:271.456400pt;}
.x9{left:274.206133pt;}
.x1d{left:278.015200pt;}
.x1c{left:279.435067pt;}
.x34{left:281.770400pt;}
.x11{left:284.142000pt;}
.x29{left:286.873867pt;}
.x22{left:292.200000pt;}
.x27{left:299.421333pt;}
.x12{left:304.629867pt;}
.x25{left:305.842667pt;}
.x2f{left:315.402933pt;}
.x2e{left:316.621067pt;}
.x1{left:318.171200pt;}
.xa{left:319.389333pt;}
.x33{left:368.183733pt;}
.x32{left:443.263733pt;}
.x2d{left:546.168933pt;}
.x2c{left:553.088933pt;}
}




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