
    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_d07640d112d0d484c709facb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_6d7a914d042145a3dff533f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912598;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_7b943d09ab83d7d6e2f63b42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_c9a59c0d041077c6d8180556.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.859863;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_f33b07b627f8454afeeedb7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_5fdea8729c21b55f70282aad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_352b7c48f70b80dab3d5d818.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4092ae886fca1e25328613b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_68de1b7f954acb8dbd8ce367.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912598;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_5a20e37cc9bd70cf07ac50eb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_ecd4ac4187e55e8d41fb3fb6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a265f0d3cf6a556e9a0eba33.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4527abc374a26e1471d5ab47.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.972000px;}
.ls12{letter-spacing:-4.416000px;}
.ls1{letter-spacing:-3.996000px;}
.lsa{letter-spacing:-3.735408px;}
.ls11{letter-spacing:-2.640000px;}
.lse{letter-spacing:-0.326848px;}
.lsc{letter-spacing:-0.186770px;}
.lsd{letter-spacing:-0.093385px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.015364px;}
.lsf{letter-spacing:0.093385px;}
.ls8{letter-spacing:0.140078px;}
.ls5{letter-spacing:0.155250px;}
.ls6{letter-spacing:0.155850px;}
.lsb{letter-spacing:0.186770px;}
.ls9{letter-spacing:0.326848px;}
.ls0{letter-spacing:1.890000px;}
.ls3{letter-spacing:3.415800px;}
.ls10{letter-spacing:15.553800px;}
.ls4{letter-spacing:44.357970px;}
.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;}
}
.ws3{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.243000px;}
.ws2f{word-spacing:-12.000000px;}
.ws66{word-spacing:-11.999998px;}
.ws64{word-spacing:-11.859920px;}
.ws67{word-spacing:-11.813228px;}
.ws68{word-spacing:-11.766535px;}
.ws65{word-spacing:-11.486380px;}
.ws0{word-spacing:-11.016000px;}
.ws63{word-spacing:-7.937742px;}
.ws99{word-spacing:-7.584000px;}
.ws7b{word-spacing:-4.608000px;}
.ws86{word-spacing:-4.512000px;}
.ws54{word-spacing:-4.200000px;}
.wsc{word-spacing:-3.840000px;}
.ws9f{word-spacing:-3.792000px;}
.ws18{word-spacing:-3.540000px;}
.ws4a{word-spacing:-3.180000px;}
.wsaa{word-spacing:-3.072000px;}
.wscb{word-spacing:-2.928000px;}
.ws2d{word-spacing:-2.916000px;}
.ws90{word-spacing:-2.880000px;}
.ws8e{word-spacing:-2.736000px;}
.ws4b{word-spacing:-2.700000px;}
.ws96{word-spacing:-2.496000px;}
.wsa5{word-spacing:-2.400000px;}
.ws8a{word-spacing:-2.256000px;}
.wsa4{word-spacing:-2.160000px;}
.wsc7{word-spacing:-2.016000px;}
.ws7d{word-spacing:-1.968000px;}
.ws2c{word-spacing:-1.890000px;}
.wsc2{word-spacing:-1.632000px;}
.ws25{word-spacing:-1.440000px;}
.ws94{word-spacing:-1.392000px;}
.ws69{word-spacing:-0.918000px;}
.wsac{word-spacing:-0.912000px;}
.wsa9{word-spacing:-0.864000px;}
.wsd7{word-spacing:-0.816000px;}
.ws6b{word-spacing:-0.793774px;}
.wsb7{word-spacing:-0.720000px;}
.wsd1{word-spacing:-0.480000px;}
.ws9e{word-spacing:-0.384000px;}
.ws31{word-spacing:-0.300000px;}
.ws6f{word-spacing:-0.280156px;}
.ws6d{word-spacing:-0.186770px;}
.ws17{word-spacing:-0.120000px;}
.ws70{word-spacing:-0.093385px;}
.ws4{word-spacing:0.000000px;}
.ws71{word-spacing:0.046693px;}
.wsd{word-spacing:0.060000px;}
.ws72{word-spacing:0.093385px;}
.ws73{word-spacing:0.186770px;}
.ws8b{word-spacing:0.192000px;}
.ws6a{word-spacing:0.233463px;}
.ws6c{word-spacing:0.326848px;}
.ws5b{word-spacing:0.420000px;}
.ws6e{word-spacing:0.466926px;}
.wsbe{word-spacing:1.056000px;}
.ws5{word-spacing:1.080000px;}
.ws29{word-spacing:1.140000px;}
.ws84{word-spacing:1.344000px;}
.ws3a{word-spacing:1.560000px;}
.wsaf{word-spacing:1.776000px;}
.ws9a{word-spacing:1.824000px;}
.ws7f{word-spacing:1.872000px;}
.wsae{word-spacing:2.256000px;}
.ws42{word-spacing:2.340000px;}
.ws7{word-spacing:2.400000px;}
.ws41{word-spacing:2.580000px;}
.ws8d{word-spacing:2.592000px;}
.ws53{word-spacing:2.640000px;}
.ws9b{word-spacing:2.736000px;}
.ws37{word-spacing:2.784000px;}
.ws36{word-spacing:2.976000px;}
.ws39{word-spacing:3.024000px;}
.ws3d{word-spacing:3.060000px;}
.wsc1{word-spacing:3.120000px;}
.ws45{word-spacing:3.180000px;}
.ws1d{word-spacing:3.240000px;}
.wsb4{word-spacing:3.264000px;}
.ws46{word-spacing:3.300000px;}
.ws48{word-spacing:3.360000px;}
.ws38{word-spacing:3.402000px;}
.ws30{word-spacing:3.564000px;}
.ws2b{word-spacing:3.600000px;}
.ws35{word-spacing:3.648000px;}
.ws33{word-spacing:3.696000px;}
.ws34{word-spacing:3.792000px;}
.wsc9{word-spacing:3.888000px;}
.wsa1{word-spacing:3.936000px;}
.ws97{word-spacing:3.984000px;}
.wsc3{word-spacing:4.032000px;}
.ws82{word-spacing:4.080000px;}
.ws7c{word-spacing:4.224000px;}
.ws27{word-spacing:4.260000px;}
.ws81{word-spacing:4.272000px;}
.wsc5{word-spacing:4.368000px;}
.ws7e{word-spacing:4.416000px;}
.ws8c{word-spacing:4.560000px;}
.ws43{word-spacing:4.680000px;}
.wsc8{word-spacing:4.704000px;}
.wsca{word-spacing:4.752000px;}
.ws32{word-spacing:4.800000px;}
.wsbc{word-spacing:4.944000px;}
.wsce{word-spacing:5.040000px;}
.ws14{word-spacing:5.280000px;}
.ws87{word-spacing:5.472000px;}
.ws83{word-spacing:5.520000px;}
.ws77{word-spacing:5.616000px;}
.ws1f{word-spacing:5.640000px;}
.ws92{word-spacing:5.760000px;}
.wsb1{word-spacing:5.952000px;}
.wscd{word-spacing:6.000000px;}
.ws9d{word-spacing:6.048000px;}
.wsad{word-spacing:6.144000px;}
.wsa{word-spacing:6.180000px;}
.wsb9{word-spacing:6.192000px;}
.ws5d{word-spacing:6.240000px;}
.ws4f{word-spacing:6.360000px;}
.ws3f{word-spacing:6.420000px;}
.wsb{word-spacing:6.600000px;}
.wsf{word-spacing:6.780000px;}
.wsa7{word-spacing:6.816000px;}
.ws56{word-spacing:6.960000px;}
.ws15{word-spacing:7.020000px;}
.ws5c{word-spacing:7.140000px;}
.ws91{word-spacing:7.152000px;}
.wsd6{word-spacing:7.248000px;}
.ws80{word-spacing:7.296000px;}
.wsd3{word-spacing:7.344000px;}
.ws78{word-spacing:7.392000px;}
.wsa8{word-spacing:7.584000px;}
.ws85{word-spacing:7.632000px;}
.ws44{word-spacing:7.680000px;}
.ws62{word-spacing:7.800000px;}
.ws98{word-spacing:7.824000px;}
.wsa3{word-spacing:7.872000px;}
.wsc6{word-spacing:8.016000px;}
.ws57{word-spacing:8.040000px;}
.ws4e{word-spacing:8.160000px;}
.ws24{word-spacing:8.220000px;}
.ws79{word-spacing:8.256000px;}
.ws49{word-spacing:8.580000px;}
.ws5e{word-spacing:8.640000px;}
.wsd4{word-spacing:8.688000px;}
.ws47{word-spacing:8.700000px;}
.ws26{word-spacing:8.940000px;}
.ws95{word-spacing:8.976000px;}
.ws51{word-spacing:9.180000px;}
.wscf{word-spacing:9.216000px;}
.ws4d{word-spacing:9.240000px;}
.ws89{word-spacing:9.264000px;}
.wsa2{word-spacing:9.360000px;}
.wsb3{word-spacing:9.456000px;}
.ws2a{word-spacing:9.480000px;}
.ws55{word-spacing:9.540000px;}
.ws88{word-spacing:9.600000px;}
.ws3b{word-spacing:9.900000px;}
.ws40{word-spacing:10.260000px;}
.ws3c{word-spacing:10.440000px;}
.wscc{word-spacing:10.896000px;}
.ws4c{word-spacing:10.980000px;}
.wsa6{word-spacing:11.232000px;}
.ws1c{word-spacing:11.520000px;}
.wsbd{word-spacing:11.568000px;}
.ws21{word-spacing:11.580000px;}
.ws13{word-spacing:11.640000px;}
.wsd8{word-spacing:11.712000px;}
.ws1a{word-spacing:11.880000px;}
.wsba{word-spacing:11.904000px;}
.ws60{word-spacing:12.360000px;}
.ws19{word-spacing:12.720000px;}
.ws8f{word-spacing:13.152000px;}
.wsbf{word-spacing:13.200000px;}
.ws52{word-spacing:13.260000px;}
.ws1b{word-spacing:13.740000px;}
.ws28{word-spacing:14.100000px;}
.wsd5{word-spacing:14.112000px;}
.ws1e{word-spacing:14.160000px;}
.ws8{word-spacing:14.280000px;}
.ws50{word-spacing:14.340000px;}
.ws7a{word-spacing:14.400000px;}
.wsb5{word-spacing:14.784000px;}
.ws23{word-spacing:14.880000px;}
.ws58{word-spacing:15.000000px;}
.wsb8{word-spacing:15.072000px;}
.wsab{word-spacing:15.552000px;}
.ws22{word-spacing:15.600000px;}
.ws5f{word-spacing:15.660000px;}
.ws3e{word-spacing:16.020000px;}
.ws9c{word-spacing:16.512000px;}
.wsb2{word-spacing:16.704000px;}
.ws93{word-spacing:16.848000px;}
.ws12{word-spacing:16.860000px;}
.wsbb{word-spacing:16.944000px;}
.ws10{word-spacing:17.040000px;}
.ws20{word-spacing:17.340000px;}
.wsc0{word-spacing:17.712000px;}
.ws11{word-spacing:17.940000px;}
.ws9{word-spacing:19.260000px;}
.wsd0{word-spacing:19.296000px;}
.wsb0{word-spacing:19.392000px;}
.wsc4{word-spacing:19.776000px;}
.ws16{word-spacing:19.860000px;}
.wsd2{word-spacing:20.304000px;}
.ws74{word-spacing:20.640000px;}
.wsa0{word-spacing:21.888000px;}
.wsb6{word-spacing:23.136000px;}
.ws75{word-spacing:23.460000px;}
.ws6{word-spacing:28.860000px;}
.wse{word-spacing:29.880000px;}
.ws59{word-spacing:34.440000px;}
.ws5a{word-spacing:35.640000px;}
.ws76{word-spacing:35.880000px;}
.ws61{word-spacing:38.040000px;}
.ws2e{word-spacing:152.893200px;}
._14{margin-left:-2958.442800px;}
._18{margin-left:-9.464400px;}
._12{margin-left:-7.539600px;}
._2{margin-left:-6.216000px;}
._3{margin-left:-4.575600px;}
._5{margin-left:-3.554400px;}
._1{margin-left:-1.824000px;}
._4{width:1.068000px;}
._6{width:2.364000px;}
._0{width:4.006800px;}
._f{width:5.316000px;}
._7{width:6.720000px;}
._a{width:7.830000px;}
._9{width:8.988000px;}
._c{width:10.116000px;}
._d{width:11.238000px;}
._8{width:12.504000px;}
._e{width:13.635600px;}
._16{width:14.964000px;}
._11{width:16.110000px;}
._13{width:17.934000px;}
._b{width:19.338000px;}
._17{width:20.511600px;}
._19{width:22.260000px;}
._10{width:24.438000px;}
._1a{width:25.873800px;}
._1f{width:28.200000px;}
._1b{width:34.408200px;}
._20{width:35.410800px;}
._1c{width:37.999200px;}
._1e{width:44.748000px;}
._1d{width:48.066000px;}
._15{width:628.734000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:46.692600px;}
.fs4{font-size:48.000000px;}
.fs3{font-size:48.972000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.yb2{bottom:-9.481650px;}
.y0{bottom:0.000000px;}
.y86{bottom:2.489250px;}
.y90{bottom:2.489400px;}
.y89{bottom:2.489700px;}
.ya0{bottom:2.489850px;}
.y7d{bottom:2.490150px;}
.ya3{bottom:2.490300px;}
.y82{bottom:2.490450px;}
.y97{bottom:2.490600px;}
.yaa{bottom:2.490750px;}
.ya6{bottom:2.491050px;}
.y80{bottom:2.491200px;}
.y84{bottom:2.645700px;}
.y99{bottom:2.645850px;}
.y92{bottom:2.646150px;}
.y9e{bottom:2.646300px;}
.y96{bottom:3.113100px;}
.y9d{bottom:3.268800px;}
.y8b{bottom:16.498200px;}
.y9c{bottom:16.653900px;}
.y7a{bottom:72.385050px;}
.y47{bottom:72.429600px;}
.y34{bottom:72.759600px;}
.yf9{bottom:74.673000px;}
.y139{bottom:80.467950px;}
.yd3{bottom:80.799600px;}
.y179{bottom:86.673000px;}
.y46{bottom:86.829600px;}
.yf8{bottom:89.073000px;}
.y79{bottom:90.385050px;}
.y33{bottom:90.759600px;}
.yd2{bottom:95.199600px;}
.y138{bottom:100.867950px;}
.y178{bottom:101.073000px;}
.y45{bottom:101.229600px;}
.yf7{bottom:103.473150px;}
.y55{bottom:104.703000px;}
.y78{bottom:108.385050px;}
.y32{bottom:108.759600px;}
.yd1{bottom:109.599600px;}
.y137{bottom:115.267950px;}
.y44{bottom:115.629600px;}
.yf6{bottom:117.873150px;}
.y54{bottom:119.103000px;}
.y177{bottom:121.473150px;}
.yd0{bottom:123.999600px;}
.y77{bottom:126.385050px;}
.y31{bottom:126.759600px;}
.y136{bottom:129.667950px;}
.y43{bottom:130.029600px;}
.yf5{bottom:132.273150px;}
.y53{bottom:133.503000px;}
.y176{bottom:135.873000px;}
.ycf{bottom:138.399600px;}
.y135{bottom:144.067950px;}
.y76{bottom:144.385050px;}
.y30{bottom:144.759600px;}
.yf4{bottom:146.673000px;}
.y52{bottom:147.903000px;}
.y175{bottom:150.273000px;}
.y42{bottom:150.429600px;}
.yce{bottom:158.799600px;}
.y51{bottom:162.303000px;}
.y75{bottom:162.385050px;}
.y2f{bottom:162.759600px;}
.y134{bottom:164.467950px;}
.y41{bottom:164.829600px;}
.yf3{bottom:167.073000px;}
.y174{bottom:170.673000px;}
.ycd{bottom:173.199600px;}
.y133{bottom:178.867950px;}
.y40{bottom:179.229600px;}
.y74{bottom:180.385050px;}
.y2e{bottom:180.759600px;}
.yf2{bottom:181.473150px;}
.y50{bottom:182.703000px;}
.y173{bottom:185.073000px;}
.ycc{bottom:187.599600px;}
.y132{bottom:193.267950px;}
.y3f{bottom:193.629600px;}
.yf1{bottom:195.873150px;}
.y4f{bottom:197.103000px;}
.y73{bottom:198.385050px;}
.y2d{bottom:198.759600px;}
.y172{bottom:199.473150px;}
.ycb{bottom:207.999600px;}
.y3e{bottom:208.029600px;}
.yf0{bottom:210.273150px;}
.y4e{bottom:211.503000px;}
.y131{bottom:213.667950px;}
.y72{bottom:216.385050px;}
.y2c{bottom:216.759600px;}
.y171{bottom:219.873000px;}
.yca{bottom:222.399600px;}
.y3d{bottom:222.429600px;}
.y4d{bottom:225.903000px;}
.y130{bottom:228.067950px;}
.yef{bottom:230.673000px;}
.y170{bottom:234.273000px;}
.y71{bottom:234.385050px;}
.y2b{bottom:234.759600px;}
.yc9{bottom:236.799600px;}
.y3c{bottom:236.829600px;}
.yee{bottom:245.073000px;}
.y4c{bottom:246.303000px;}
.y12f{bottom:248.467950px;}
.y16f{bottom:248.673000px;}
.yc8{bottom:251.199600px;}
.y3b{bottom:251.229600px;}
.y70{bottom:252.385050px;}
.y2a{bottom:252.759600px;}
.yed{bottom:259.473150px;}
.y4b{bottom:260.703000px;}
.y12e{bottom:262.867950px;}
.y16e{bottom:263.073000px;}
.y6f{bottom:270.385050px;}
.y29{bottom:270.759600px;}
.yc7{bottom:271.599600px;}
.y4a{bottom:275.103000px;}
.y12d{bottom:277.267950px;}
.yec{bottom:279.873150px;}
.y16d{bottom:283.473150px;}
.y3a{bottom:283.629600px;}
.yc6{bottom:285.999600px;}
.y6e{bottom:288.385050px;}
.y28{bottom:288.759600px;}
.y49{bottom:289.503000px;}
.yeb{bottom:294.273150px;}
.y12c{bottom:297.667950px;}
.y16c{bottom:297.873000px;}
.yc5{bottom:300.399600px;}
.y39{bottom:301.629600px;}
.y48{bottom:303.903000px;}
.y6d{bottom:306.385050px;}
.y27{bottom:306.759600px;}
.yea{bottom:308.673150px;}
.y12b{bottom:312.067950px;}
.y16b{bottom:318.273000px;}
.yc4{bottom:320.799600px;}
.y6c{bottom:324.385050px;}
.y26{bottom:324.759600px;}
.y12a{bottom:326.467950px;}
.ye9{bottom:329.073000px;}
.y16a{bottom:332.673000px;}
.yc3{bottom:335.199600px;}
.y38{bottom:337.666500px;}
.y6b{bottom:342.385050px;}
.y25{bottom:342.759600px;}
.ye8{bottom:343.473150px;}
.y129{bottom:346.867950px;}
.y169{bottom:347.073000px;}
.yc2{bottom:349.599600px;}
.y37{bottom:353.866500px;}
.ye7{bottom:357.873150px;}
.y6a{bottom:360.385050px;}
.y24{bottom:360.759600px;}
.y128{bottom:361.267950px;}
.y168{bottom:361.473000px;}
.y36{bottom:370.066500px;}
.ye6{bottom:372.273150px;}
.y127{bottom:375.667950px;}
.y69{bottom:378.385050px;}
.yc1{bottom:378.399600px;}
.y23{bottom:378.759600px;}
.y167{bottom:381.873000px;}
.y35{bottom:386.266500px;}
.ye5{bottom:392.673000px;}
.y126{bottom:396.067950px;}
.y166{bottom:396.273000px;}
.y68{bottom:396.385050px;}
.y22{bottom:396.759600px;}
.ye4{bottom:407.073000px;}
.y125{bottom:410.467950px;}
.y165{bottom:410.673000px;}
.yc0{bottom:410.799600px;}
.y67{bottom:414.385050px;}
.y21{bottom:414.759600px;}
.ye3{bottom:421.473150px;}
.y124{bottom:424.867950px;}
.y164{bottom:425.073000px;}
.ybf{bottom:428.799600px;}
.y66{bottom:432.385050px;}
.y20{bottom:432.759600px;}
.ye2{bottom:441.873150px;}
.y123{bottom:445.267950px;}
.y163{bottom:445.473000px;}
.ybe{bottom:446.799600px;}
.y65{bottom:450.385050px;}
.y1f{bottom:450.759600px;}
.ye1{bottom:456.273150px;}
.y122{bottom:459.667950px;}
.y162{bottom:459.873000px;}
.ybd{bottom:464.799600px;}
.y64{bottom:468.385050px;}
.y1e{bottom:468.759600px;}
.ye0{bottom:470.673000px;}
.y161{bottom:474.273000px;}
.y121{bottom:480.067950px;}
.ybc{bottom:482.799600px;}
.y63{bottom:486.385050px;}
.y1d{bottom:486.759600px;}
.y160{bottom:488.673000px;}
.ydf{bottom:491.073000px;}
.y120{bottom:494.467950px;}
.ybb{bottom:500.799600px;}
.y15f{bottom:503.073000px;}
.y62{bottom:504.385050px;}
.y1c{bottom:504.759600px;}
.yde{bottom:505.473150px;}
.y11f{bottom:508.867950px;}
.yba{bottom:518.799600px;}
.ydd{bottom:519.873150px;}
.y61{bottom:522.385050px;}
.y1b{bottom:522.759600px;}
.y11e{bottom:523.267950px;}
.y15e{bottom:523.473000px;}
.yb9{bottom:536.799600px;}
.y11d{bottom:537.667950px;}
.y15d{bottom:537.873000px;}
.ydc{bottom:540.273150px;}
.y60{bottom:540.385050px;}
.y1a{bottom:540.759600px;}
.y15c{bottom:552.273000px;}
.ydb{bottom:554.673000px;}
.yb8{bottom:554.799600px;}
.y11c{bottom:558.067950px;}
.y5f{bottom:558.385050px;}
.y19{bottom:558.759600px;}
.y15b{bottom:566.673000px;}
.yda{bottom:569.073000px;}
.y11b{bottom:572.467950px;}
.yb7{bottom:572.799600px;}
.y5e{bottom:576.385050px;}
.y18{bottom:576.759600px;}
.yd9{bottom:583.473000px;}
.y11a{bottom:586.867950px;}
.y15a{bottom:587.073000px;}
.yb6{bottom:590.799600px;}
.y5d{bottom:594.385050px;}
.y17{bottom:594.759600px;}
.y119{bottom:601.267950px;}
.y159{bottom:601.473000px;}
.yd8{bottom:603.873000px;}
.yb5{bottom:608.799600px;}
.y5c{bottom:612.385050px;}
.y16{bottom:612.759600px;}
.yd7{bottom:618.273000px;}
.y118{bottom:621.667950px;}
.y158{bottom:621.873000px;}
.yb4{bottom:626.799600px;}
.y5b{bottom:630.385050px;}
.y15{bottom:630.759600px;}
.yd6{bottom:632.673000px;}
.y117{bottom:636.067950px;}
.y157{bottom:636.273000px;}
.yd5{bottom:647.073000px;}
.y5a{bottom:648.385050px;}
.y116{bottom:650.467950px;}
.y156{bottom:656.673000px;}
.yb3{bottom:659.199600px;}
.yd4{bottom:661.473000px;}
.y59{bottom:666.385050px;}
.y115{bottom:670.867950px;}
.y155{bottom:671.073000px;}
.y114{bottom:685.267950px;}
.y154{bottom:685.473000px;}
.y14{bottom:685.746150px;}
.yb1{bottom:690.120000px;}
.yb0{bottom:692.311500px;}
.y113{bottom:699.667950px;}
.y153{bottom:699.873000px;}
.y58{bottom:705.676500px;}
.yaf{bottom:706.474500px;}
.y112{bottom:714.067950px;}
.y13{bottom:719.946150px;}
.y152{bottom:720.273000px;}
.yae{bottom:720.483000px;}
.y57{bottom:721.876500px;}
.y111{bottom:734.467950px;}
.yad{bottom:734.490000px;}
.y151{bottom:734.673000px;}
.y12{bottom:737.946150px;}
.y56{bottom:738.076500px;}
.yac{bottom:748.653000px;}
.y110{bottom:748.867950px;}
.y150{bottom:749.073000px;}
.y11{bottom:755.946150px;}
.ya4{bottom:758.147850px;}
.yab{bottom:762.661500px;}
.y10f{bottom:763.267950px;}
.y14f{bottom:769.473150px;}
.y10{bottom:773.946150px;}
.ya9{bottom:776.824500px;}
.y10e{bottom:783.667950px;}
.y14e{bottom:783.873000px;}
.ya8{bottom:790.833000px;}
.y10d{bottom:798.067950px;}
.y14d{bottom:798.273000px;}
.ya7{bottom:804.840000px;}
.yf{bottom:808.146000px;}
.y10c{bottom:812.467950px;}
.y14c{bottom:818.673000px;}
.ya5{bottom:819.003000px;}
.ye{bottom:824.346150px;}
.y10b{bottom:826.867950px;}
.y8d{bottom:828.497850px;}
.ya2{bottom:833.011500px;}
.y14b{bottom:833.073000px;}
.yd{bottom:840.546150px;}
.ya1{bottom:847.174500px;}
.y10a{bottom:847.267950px;}
.y14a{bottom:847.473150px;}
.yc{bottom:856.746150px;}
.y9f{bottom:861.183000px;}
.y109{bottom:861.667950px;}
.y149{bottom:867.873000px;}
.yb{bottom:872.946150px;}
.y9b{bottom:875.190000px;}
.y108{bottom:882.067950px;}
.y148{bottom:882.273000px;}
.y9a{bottom:889.354500px;}
.y107{bottom:896.467950px;}
.y147{bottom:896.673000px;}
.y93{bottom:898.847850px;}
.y98{bottom:903.361500px;}
.ya{bottom:905.346150px;}
.y106{bottom:910.867950px;}
.y146{bottom:911.073000px;}
.y95{bottom:917.524500px;}
.y9{bottom:919.746150px;}
.y105{bottom:931.267950px;}
.y145{bottom:931.473150px;}
.y94{bottom:931.533000px;}
.y8{bottom:934.146000px;}
.y91{bottom:945.540000px;}
.y104{bottom:945.667950px;}
.y144{bottom:945.873000px;}
.y7{bottom:948.546150px;}
.y8e{bottom:955.186547px;}
.y8f{bottom:959.704500px;}
.y103{bottom:960.067950px;}
.y143{bottom:960.273000px;}
.y8c{bottom:973.711500px;}
.y6{bottom:979.146000px;}
.y102{bottom:980.467950px;}
.y142{bottom:980.673000px;}
.y8a{bottom:987.874500px;}
.y101{bottom:994.867950px;}
.y141{bottom:995.073000px;}
.y88{bottom:1001.883000px;}
.y5{bottom:1004.346150px;}
.y100{bottom:1009.267950px;}
.y140{bottom:1009.473150px;}
.y87{bottom:1016.046000px;}
.yff{bottom:1023.667950px;}
.y7e{bottom:1025.540100px;}
.y4{bottom:1029.546150px;}
.y13f{bottom:1029.873000px;}
.y85{bottom:1030.054500px;}
.y83{bottom:1044.061500px;}
.yfe{bottom:1044.067950px;}
.y13e{bottom:1044.273000px;}
.y81{bottom:1058.224500px;}
.yfd{bottom:1058.467950px;}
.y13d{bottom:1058.673000px;}
.y3{bottom:1070.946150px;}
.y7f{bottom:1072.231500px;}
.yfc{bottom:1072.867950px;}
.y13c{bottom:1073.073000px;}
.y7c{bottom:1086.396000px;}
.yfb{bottom:1087.267950px;}
.y13b{bottom:1093.473150px;}
.y2{bottom:1099.746150px;}
.y7b{bottom:1106.639700px;}
.yfa{bottom:1107.667950px;}
.y13a{bottom:1107.873000px;}
.y1{bottom:1164.671700px;}
.hd{height:13.384500px;}
.ha{height:13.386000px;}
.he{height:13.540500px;}
.hf{height:27.393000px;}
.h10{height:27.547500px;}
.h12{height:31.120800px;}
.hc{height:32.443149px;}
.hb{height:32.534346px;}
.h13{height:33.328125px;}
.h4{height:33.351562px;}
.h9{height:33.445312px;}
.h6{height:37.520508px;}
.h5{height:37.625977px;}
.h8{height:41.689453px;}
.h7{height:41.806641px;}
.h1{height:48.410156px;}
.h3{height:62.094580px;}
.h2{height:66.890625px;}
.h11{height:410.284500px;}
.h0{height:1188.000000px;}
.w1{width:65.214000px;}
.w2{width:67.237500px;}
.w4{width:99.144000px;}
.w5{width:192.684000px;}
.w3{width:282.021000px;}
.w6{width:706.795500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:8.248650px;}
.x1f{left:9.338250px;}
.x17{left:11.827800px;}
.x2f{left:16.030200px;}
.x15{left:18.987600px;}
.x36{left:22.101300px;}
.x1a{left:26.147850px;}
.x2b{left:30.817200px;}
.x31{left:32.061900px;}
.x38{left:35.330250px;}
.x34{left:37.820550px;}
.x37{left:40.000050px;}
.x2e{left:43.112400px;}
.x20{left:45.291450px;}
.x12{left:46.500000px;}
.x21{left:48.093450px;}
.x25{left:49.649850px;}
.x32{left:50.894400px;}
.x22{left:52.139700px;}
.x23{left:54.630450px;}
.x35{left:57.276300px;}
.x26{left:61.323000px;}
.x24{left:63.657150px;}
.x1e{left:65.214000px;}
.x1d{left:67.237350px;}
.x3a{left:68.793750px;}
.x29{left:70.972800px;}
.xd{left:72.000000px;}
.x8{left:73.239300px;}
.x5{left:76.039950px;}
.x30{left:79.999950px;}
.x39{left:82.023300px;}
.x4{left:87.729450px;}
.x7{left:94.608450px;}
.x2d{left:96.186150px;}
.xe{left:99.000000px;}
.x2{left:102.468750px;}
.x14{left:108.000000px;}
.x1c{left:115.496700px;}
.x27{left:116.741850px;}
.x18{left:122.801400px;}
.x9{left:155.686500px;}
.x13{left:166.266000px;}
.xb{left:171.558150px;}
.x16{left:173.707500px;}
.x3b{left:181.839900px;}
.x28{left:183.360517px;}
.x2c{left:184.912800px;}
.x33{left:186.469200px;}
.x3c{left:191.635950px;}
.x3{left:240.697200px;}
.x6{left:334.104900px;}
.xa{left:348.393000px;}
.xc{left:404.265000px;}
.xf{left:468.000000px;}
.x10{left:495.000000px;}
.x19{left:522.966000px;}
.x11{left:553.950000px;}
.x1b{left:622.110000px;}
.x1{left:860.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.864000pt;}
.ls12{letter-spacing:-3.925333pt;}
.ls1{letter-spacing:-3.552000pt;}
.lsa{letter-spacing:-3.320363pt;}
.ls11{letter-spacing:-2.346667pt;}
.lse{letter-spacing:-0.290532pt;}
.lsc{letter-spacing:-0.166018pt;}
.lsd{letter-spacing:-0.083009pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.013657pt;}
.lsf{letter-spacing:0.083009pt;}
.ls8{letter-spacing:0.124514pt;}
.ls5{letter-spacing:0.138000pt;}
.ls6{letter-spacing:0.138533pt;}
.lsb{letter-spacing:0.166018pt;}
.ls9{letter-spacing:0.290532pt;}
.ls0{letter-spacing:1.680000pt;}
.ls3{letter-spacing:3.036267pt;}
.ls10{letter-spacing:13.825600pt;}
.ls4{letter-spacing:39.429307pt;}
.ws3{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.882667pt;}
.ws2f{word-spacing:-10.666667pt;}
.ws66{word-spacing:-10.666665pt;}
.ws64{word-spacing:-10.542151pt;}
.ws67{word-spacing:-10.500647pt;}
.ws68{word-spacing:-10.459142pt;}
.ws65{word-spacing:-10.210115pt;}
.ws0{word-spacing:-9.792000pt;}
.ws63{word-spacing:-7.055771pt;}
.ws99{word-spacing:-6.741333pt;}
.ws7b{word-spacing:-4.096000pt;}
.ws86{word-spacing:-4.010667pt;}
.ws54{word-spacing:-3.733333pt;}
.wsc{word-spacing:-3.413333pt;}
.ws9f{word-spacing:-3.370667pt;}
.ws18{word-spacing:-3.146667pt;}
.ws4a{word-spacing:-2.826667pt;}
.wsaa{word-spacing:-2.730667pt;}
.wscb{word-spacing:-2.602667pt;}
.ws2d{word-spacing:-2.592000pt;}
.ws90{word-spacing:-2.560000pt;}
.ws8e{word-spacing:-2.432000pt;}
.ws4b{word-spacing:-2.400000pt;}
.ws96{word-spacing:-2.218667pt;}
.wsa5{word-spacing:-2.133333pt;}
.ws8a{word-spacing:-2.005333pt;}
.wsa4{word-spacing:-1.920000pt;}
.wsc7{word-spacing:-1.792000pt;}
.ws7d{word-spacing:-1.749333pt;}
.ws2c{word-spacing:-1.680000pt;}
.wsc2{word-spacing:-1.450667pt;}
.ws25{word-spacing:-1.280000pt;}
.ws94{word-spacing:-1.237333pt;}
.ws69{word-spacing:-0.816000pt;}
.wsac{word-spacing:-0.810667pt;}
.wsa9{word-spacing:-0.768000pt;}
.wsd7{word-spacing:-0.725333pt;}
.ws6b{word-spacing:-0.705577pt;}
.wsb7{word-spacing:-0.640000pt;}
.wsd1{word-spacing:-0.426667pt;}
.ws9e{word-spacing:-0.341333pt;}
.ws31{word-spacing:-0.266667pt;}
.ws6f{word-spacing:-0.249027pt;}
.ws6d{word-spacing:-0.166018pt;}
.ws17{word-spacing:-0.106667pt;}
.ws70{word-spacing:-0.083009pt;}
.ws4{word-spacing:0.000000pt;}
.ws71{word-spacing:0.041505pt;}
.wsd{word-spacing:0.053333pt;}
.ws72{word-spacing:0.083009pt;}
.ws73{word-spacing:0.166018pt;}
.ws8b{word-spacing:0.170667pt;}
.ws6a{word-spacing:0.207523pt;}
.ws6c{word-spacing:0.290532pt;}
.ws5b{word-spacing:0.373333pt;}
.ws6e{word-spacing:0.415045pt;}
.wsbe{word-spacing:0.938667pt;}
.ws5{word-spacing:0.960000pt;}
.ws29{word-spacing:1.013333pt;}
.ws84{word-spacing:1.194667pt;}
.ws3a{word-spacing:1.386667pt;}
.wsaf{word-spacing:1.578667pt;}
.ws9a{word-spacing:1.621333pt;}
.ws7f{word-spacing:1.664000pt;}
.wsae{word-spacing:2.005333pt;}
.ws42{word-spacing:2.080000pt;}
.ws7{word-spacing:2.133333pt;}
.ws41{word-spacing:2.293333pt;}
.ws8d{word-spacing:2.304000pt;}
.ws53{word-spacing:2.346667pt;}
.ws9b{word-spacing:2.432000pt;}
.ws37{word-spacing:2.474667pt;}
.ws36{word-spacing:2.645333pt;}
.ws39{word-spacing:2.688000pt;}
.ws3d{word-spacing:2.720000pt;}
.wsc1{word-spacing:2.773333pt;}
.ws45{word-spacing:2.826667pt;}
.ws1d{word-spacing:2.880000pt;}
.wsb4{word-spacing:2.901333pt;}
.ws46{word-spacing:2.933333pt;}
.ws48{word-spacing:2.986667pt;}
.ws38{word-spacing:3.024000pt;}
.ws30{word-spacing:3.168000pt;}
.ws2b{word-spacing:3.200000pt;}
.ws35{word-spacing:3.242667pt;}
.ws33{word-spacing:3.285333pt;}
.ws34{word-spacing:3.370667pt;}
.wsc9{word-spacing:3.456000pt;}
.wsa1{word-spacing:3.498667pt;}
.ws97{word-spacing:3.541333pt;}
.wsc3{word-spacing:3.584000pt;}
.ws82{word-spacing:3.626667pt;}
.ws7c{word-spacing:3.754667pt;}
.ws27{word-spacing:3.786667pt;}
.ws81{word-spacing:3.797333pt;}
.wsc5{word-spacing:3.882667pt;}
.ws7e{word-spacing:3.925333pt;}
.ws8c{word-spacing:4.053333pt;}
.ws43{word-spacing:4.160000pt;}
.wsc8{word-spacing:4.181333pt;}
.wsca{word-spacing:4.224000pt;}
.ws32{word-spacing:4.266667pt;}
.wsbc{word-spacing:4.394667pt;}
.wsce{word-spacing:4.480000pt;}
.ws14{word-spacing:4.693333pt;}
.ws87{word-spacing:4.864000pt;}
.ws83{word-spacing:4.906667pt;}
.ws77{word-spacing:4.992000pt;}
.ws1f{word-spacing:5.013333pt;}
.ws92{word-spacing:5.120000pt;}
.wsb1{word-spacing:5.290667pt;}
.wscd{word-spacing:5.333333pt;}
.ws9d{word-spacing:5.376000pt;}
.wsad{word-spacing:5.461333pt;}
.wsa{word-spacing:5.493333pt;}
.wsb9{word-spacing:5.504000pt;}
.ws5d{word-spacing:5.546667pt;}
.ws4f{word-spacing:5.653333pt;}
.ws3f{word-spacing:5.706667pt;}
.wsb{word-spacing:5.866667pt;}
.wsf{word-spacing:6.026667pt;}
.wsa7{word-spacing:6.058667pt;}
.ws56{word-spacing:6.186667pt;}
.ws15{word-spacing:6.240000pt;}
.ws5c{word-spacing:6.346667pt;}
.ws91{word-spacing:6.357333pt;}
.wsd6{word-spacing:6.442667pt;}
.ws80{word-spacing:6.485333pt;}
.wsd3{word-spacing:6.528000pt;}
.ws78{word-spacing:6.570667pt;}
.wsa8{word-spacing:6.741333pt;}
.ws85{word-spacing:6.784000pt;}
.ws44{word-spacing:6.826667pt;}
.ws62{word-spacing:6.933333pt;}
.ws98{word-spacing:6.954667pt;}
.wsa3{word-spacing:6.997333pt;}
.wsc6{word-spacing:7.125333pt;}
.ws57{word-spacing:7.146667pt;}
.ws4e{word-spacing:7.253333pt;}
.ws24{word-spacing:7.306667pt;}
.ws79{word-spacing:7.338667pt;}
.ws49{word-spacing:7.626667pt;}
.ws5e{word-spacing:7.680000pt;}
.wsd4{word-spacing:7.722667pt;}
.ws47{word-spacing:7.733333pt;}
.ws26{word-spacing:7.946667pt;}
.ws95{word-spacing:7.978667pt;}
.ws51{word-spacing:8.160000pt;}
.wscf{word-spacing:8.192000pt;}
.ws4d{word-spacing:8.213333pt;}
.ws89{word-spacing:8.234667pt;}
.wsa2{word-spacing:8.320000pt;}
.wsb3{word-spacing:8.405333pt;}
.ws2a{word-spacing:8.426667pt;}
.ws55{word-spacing:8.480000pt;}
.ws88{word-spacing:8.533333pt;}
.ws3b{word-spacing:8.800000pt;}
.ws40{word-spacing:9.120000pt;}
.ws3c{word-spacing:9.280000pt;}
.wscc{word-spacing:9.685333pt;}
.ws4c{word-spacing:9.760000pt;}
.wsa6{word-spacing:9.984000pt;}
.ws1c{word-spacing:10.240000pt;}
.wsbd{word-spacing:10.282667pt;}
.ws21{word-spacing:10.293333pt;}
.ws13{word-spacing:10.346667pt;}
.wsd8{word-spacing:10.410667pt;}
.ws1a{word-spacing:10.560000pt;}
.wsba{word-spacing:10.581333pt;}
.ws60{word-spacing:10.986667pt;}
.ws19{word-spacing:11.306667pt;}
.ws8f{word-spacing:11.690667pt;}
.wsbf{word-spacing:11.733333pt;}
.ws52{word-spacing:11.786667pt;}
.ws1b{word-spacing:12.213333pt;}
.ws28{word-spacing:12.533333pt;}
.wsd5{word-spacing:12.544000pt;}
.ws1e{word-spacing:12.586667pt;}
.ws8{word-spacing:12.693333pt;}
.ws50{word-spacing:12.746667pt;}
.ws7a{word-spacing:12.800000pt;}
.wsb5{word-spacing:13.141333pt;}
.ws23{word-spacing:13.226667pt;}
.ws58{word-spacing:13.333333pt;}
.wsb8{word-spacing:13.397333pt;}
.wsab{word-spacing:13.824000pt;}
.ws22{word-spacing:13.866667pt;}
.ws5f{word-spacing:13.920000pt;}
.ws3e{word-spacing:14.240000pt;}
.ws9c{word-spacing:14.677333pt;}
.wsb2{word-spacing:14.848000pt;}
.ws93{word-spacing:14.976000pt;}
.ws12{word-spacing:14.986667pt;}
.wsbb{word-spacing:15.061333pt;}
.ws10{word-spacing:15.146667pt;}
.ws20{word-spacing:15.413333pt;}
.wsc0{word-spacing:15.744000pt;}
.ws11{word-spacing:15.946667pt;}
.ws9{word-spacing:17.120000pt;}
.wsd0{word-spacing:17.152000pt;}
.wsb0{word-spacing:17.237333pt;}
.wsc4{word-spacing:17.578667pt;}
.ws16{word-spacing:17.653333pt;}
.wsd2{word-spacing:18.048000pt;}
.ws74{word-spacing:18.346667pt;}
.wsa0{word-spacing:19.456000pt;}
.wsb6{word-spacing:20.565333pt;}
.ws75{word-spacing:20.853333pt;}
.ws6{word-spacing:25.653333pt;}
.wse{word-spacing:26.560000pt;}
.ws59{word-spacing:30.613333pt;}
.ws5a{word-spacing:31.680000pt;}
.ws76{word-spacing:31.893333pt;}
.ws61{word-spacing:33.813333pt;}
.ws2e{word-spacing:135.905067pt;}
._14{margin-left:-2629.726933pt;}
._18{margin-left:-8.412800pt;}
._12{margin-left:-6.701867pt;}
._2{margin-left:-5.525333pt;}
._3{margin-left:-4.067200pt;}
._5{margin-left:-3.159467pt;}
._1{margin-left:-1.621333pt;}
._4{width:0.949333pt;}
._6{width:2.101333pt;}
._0{width:3.561600pt;}
._f{width:4.725333pt;}
._7{width:5.973333pt;}
._a{width:6.960000pt;}
._9{width:7.989333pt;}
._c{width:8.992000pt;}
._d{width:9.989333pt;}
._8{width:11.114667pt;}
._e{width:12.120533pt;}
._16{width:13.301333pt;}
._11{width:14.320000pt;}
._13{width:15.941333pt;}
._b{width:17.189333pt;}
._17{width:18.232533pt;}
._19{width:19.786667pt;}
._10{width:21.722667pt;}
._1a{width:22.998933pt;}
._1f{width:25.066667pt;}
._1b{width:30.585067pt;}
._20{width:31.476267pt;}
._1c{width:33.777067pt;}
._1e{width:39.776000pt;}
._1d{width:42.725333pt;}
._15{width:558.874667pt;}
.fs6{font-size:41.504533pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:43.530667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.yb2{bottom:-8.428133pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:2.212667pt;}
.y90{bottom:2.212800pt;}
.y89{bottom:2.213067pt;}
.ya0{bottom:2.213200pt;}
.y7d{bottom:2.213467pt;}
.ya3{bottom:2.213600pt;}
.y82{bottom:2.213733pt;}
.y97{bottom:2.213867pt;}
.yaa{bottom:2.214000pt;}
.ya6{bottom:2.214267pt;}
.y80{bottom:2.214400pt;}
.y84{bottom:2.351733pt;}
.y99{bottom:2.351867pt;}
.y92{bottom:2.352133pt;}
.y9e{bottom:2.352267pt;}
.y96{bottom:2.767200pt;}
.y9d{bottom:2.905600pt;}
.y8b{bottom:14.665067pt;}
.y9c{bottom:14.803467pt;}
.y7a{bottom:64.342267pt;}
.y47{bottom:64.381867pt;}
.y34{bottom:64.675200pt;}
.yf9{bottom:66.376000pt;}
.y139{bottom:71.527067pt;}
.yd3{bottom:71.821867pt;}
.y179{bottom:77.042667pt;}
.y46{bottom:77.181867pt;}
.yf8{bottom:79.176000pt;}
.y79{bottom:80.342267pt;}
.y33{bottom:80.675200pt;}
.yd2{bottom:84.621867pt;}
.y138{bottom:89.660400pt;}
.y178{bottom:89.842667pt;}
.y45{bottom:89.981867pt;}
.yf7{bottom:91.976133pt;}
.y55{bottom:93.069333pt;}
.y78{bottom:96.342267pt;}
.y32{bottom:96.675200pt;}
.yd1{bottom:97.421867pt;}
.y137{bottom:102.460400pt;}
.y44{bottom:102.781867pt;}
.yf6{bottom:104.776133pt;}
.y54{bottom:105.869333pt;}
.y177{bottom:107.976133pt;}
.yd0{bottom:110.221867pt;}
.y77{bottom:112.342267pt;}
.y31{bottom:112.675200pt;}
.y136{bottom:115.260400pt;}
.y43{bottom:115.581867pt;}
.yf5{bottom:117.576133pt;}
.y53{bottom:118.669333pt;}
.y176{bottom:120.776000pt;}
.ycf{bottom:123.021867pt;}
.y135{bottom:128.060400pt;}
.y76{bottom:128.342267pt;}
.y30{bottom:128.675200pt;}
.yf4{bottom:130.376000pt;}
.y52{bottom:131.469333pt;}
.y175{bottom:133.576000pt;}
.y42{bottom:133.715200pt;}
.yce{bottom:141.155200pt;}
.y51{bottom:144.269333pt;}
.y75{bottom:144.342267pt;}
.y2f{bottom:144.675200pt;}
.y134{bottom:146.193733pt;}
.y41{bottom:146.515200pt;}
.yf3{bottom:148.509333pt;}
.y174{bottom:151.709333pt;}
.ycd{bottom:153.955200pt;}
.y133{bottom:158.993733pt;}
.y40{bottom:159.315200pt;}
.y74{bottom:160.342267pt;}
.y2e{bottom:160.675200pt;}
.yf2{bottom:161.309467pt;}
.y50{bottom:162.402667pt;}
.y173{bottom:164.509333pt;}
.ycc{bottom:166.755200pt;}
.y132{bottom:171.793733pt;}
.y3f{bottom:172.115200pt;}
.yf1{bottom:174.109467pt;}
.y4f{bottom:175.202667pt;}
.y73{bottom:176.342267pt;}
.y2d{bottom:176.675200pt;}
.y172{bottom:177.309467pt;}
.ycb{bottom:184.888533pt;}
.y3e{bottom:184.915200pt;}
.yf0{bottom:186.909467pt;}
.y4e{bottom:188.002667pt;}
.y131{bottom:189.927067pt;}
.y72{bottom:192.342267pt;}
.y2c{bottom:192.675200pt;}
.y171{bottom:195.442667pt;}
.yca{bottom:197.688533pt;}
.y3d{bottom:197.715200pt;}
.y4d{bottom:200.802667pt;}
.y130{bottom:202.727067pt;}
.yef{bottom:205.042667pt;}
.y170{bottom:208.242667pt;}
.y71{bottom:208.342267pt;}
.y2b{bottom:208.675200pt;}
.yc9{bottom:210.488533pt;}
.y3c{bottom:210.515200pt;}
.yee{bottom:217.842667pt;}
.y4c{bottom:218.936000pt;}
.y12f{bottom:220.860400pt;}
.y16f{bottom:221.042667pt;}
.yc8{bottom:223.288533pt;}
.y3b{bottom:223.315200pt;}
.y70{bottom:224.342267pt;}
.y2a{bottom:224.675200pt;}
.yed{bottom:230.642800pt;}
.y4b{bottom:231.736000pt;}
.y12e{bottom:233.660400pt;}
.y16e{bottom:233.842667pt;}
.y6f{bottom:240.342267pt;}
.y29{bottom:240.675200pt;}
.yc7{bottom:241.421867pt;}
.y4a{bottom:244.536000pt;}
.y12d{bottom:246.460400pt;}
.yec{bottom:248.776133pt;}
.y16d{bottom:251.976133pt;}
.y3a{bottom:252.115200pt;}
.yc6{bottom:254.221867pt;}
.y6e{bottom:256.342267pt;}
.y28{bottom:256.675200pt;}
.y49{bottom:257.336000pt;}
.yeb{bottom:261.576133pt;}
.y12c{bottom:264.593733pt;}
.y16c{bottom:264.776000pt;}
.yc5{bottom:267.021867pt;}
.y39{bottom:268.115200pt;}
.y48{bottom:270.136000pt;}
.y6d{bottom:272.342267pt;}
.y27{bottom:272.675200pt;}
.yea{bottom:274.376133pt;}
.y12b{bottom:277.393733pt;}
.y16b{bottom:282.909333pt;}
.yc4{bottom:285.155200pt;}
.y6c{bottom:288.342267pt;}
.y26{bottom:288.675200pt;}
.y12a{bottom:290.193733pt;}
.ye9{bottom:292.509333pt;}
.y16a{bottom:295.709333pt;}
.yc3{bottom:297.955200pt;}
.y38{bottom:300.148000pt;}
.y6b{bottom:304.342267pt;}
.y25{bottom:304.675200pt;}
.ye8{bottom:305.309467pt;}
.y129{bottom:308.327067pt;}
.y169{bottom:308.509333pt;}
.yc2{bottom:310.755200pt;}
.y37{bottom:314.548000pt;}
.ye7{bottom:318.109467pt;}
.y6a{bottom:320.342267pt;}
.y24{bottom:320.675200pt;}
.y128{bottom:321.127067pt;}
.y168{bottom:321.309333pt;}
.y36{bottom:328.948000pt;}
.ye6{bottom:330.909467pt;}
.y127{bottom:333.927067pt;}
.y69{bottom:336.342267pt;}
.yc1{bottom:336.355200pt;}
.y23{bottom:336.675200pt;}
.y167{bottom:339.442667pt;}
.y35{bottom:343.348000pt;}
.ye5{bottom:349.042667pt;}
.y126{bottom:352.060400pt;}
.y166{bottom:352.242667pt;}
.y68{bottom:352.342267pt;}
.y22{bottom:352.675200pt;}
.ye4{bottom:361.842667pt;}
.y125{bottom:364.860400pt;}
.y165{bottom:365.042667pt;}
.yc0{bottom:365.155200pt;}
.y67{bottom:368.342267pt;}
.y21{bottom:368.675200pt;}
.ye3{bottom:374.642800pt;}
.y124{bottom:377.660400pt;}
.y164{bottom:377.842667pt;}
.ybf{bottom:381.155200pt;}
.y66{bottom:384.342267pt;}
.y20{bottom:384.675200pt;}
.ye2{bottom:392.776133pt;}
.y123{bottom:395.793733pt;}
.y163{bottom:395.976000pt;}
.ybe{bottom:397.155200pt;}
.y65{bottom:400.342267pt;}
.y1f{bottom:400.675200pt;}
.ye1{bottom:405.576133pt;}
.y122{bottom:408.593733pt;}
.y162{bottom:408.776000pt;}
.ybd{bottom:413.155200pt;}
.y64{bottom:416.342267pt;}
.y1e{bottom:416.675200pt;}
.ye0{bottom:418.376000pt;}
.y161{bottom:421.576000pt;}
.y121{bottom:426.727067pt;}
.ybc{bottom:429.155200pt;}
.y63{bottom:432.342267pt;}
.y1d{bottom:432.675200pt;}
.y160{bottom:434.376000pt;}
.ydf{bottom:436.509333pt;}
.y120{bottom:439.527067pt;}
.ybb{bottom:445.155200pt;}
.y15f{bottom:447.176000pt;}
.y62{bottom:448.342267pt;}
.y1c{bottom:448.675200pt;}
.yde{bottom:449.309467pt;}
.y11f{bottom:452.327067pt;}
.yba{bottom:461.155200pt;}
.ydd{bottom:462.109467pt;}
.y61{bottom:464.342267pt;}
.y1b{bottom:464.675200pt;}
.y11e{bottom:465.127067pt;}
.y15e{bottom:465.309333pt;}
.yb9{bottom:477.155200pt;}
.y11d{bottom:477.927067pt;}
.y15d{bottom:478.109333pt;}
.ydc{bottom:480.242800pt;}
.y60{bottom:480.342267pt;}
.y1a{bottom:480.675200pt;}
.y15c{bottom:490.909333pt;}
.ydb{bottom:493.042667pt;}
.yb8{bottom:493.155200pt;}
.y11c{bottom:496.060400pt;}
.y5f{bottom:496.342267pt;}
.y19{bottom:496.675200pt;}
.y15b{bottom:503.709333pt;}
.yda{bottom:505.842667pt;}
.y11b{bottom:508.860400pt;}
.yb7{bottom:509.155200pt;}
.y5e{bottom:512.342267pt;}
.y18{bottom:512.675200pt;}
.yd9{bottom:518.642667pt;}
.y11a{bottom:521.660400pt;}
.y15a{bottom:521.842667pt;}
.yb6{bottom:525.155200pt;}
.y5d{bottom:528.342267pt;}
.y17{bottom:528.675200pt;}
.y119{bottom:534.460400pt;}
.y159{bottom:534.642667pt;}
.yd8{bottom:536.776000pt;}
.yb5{bottom:541.155200pt;}
.y5c{bottom:544.342267pt;}
.y16{bottom:544.675200pt;}
.yd7{bottom:549.576000pt;}
.y118{bottom:552.593733pt;}
.y158{bottom:552.776000pt;}
.yb4{bottom:557.155200pt;}
.y5b{bottom:560.342267pt;}
.y15{bottom:560.675200pt;}
.yd6{bottom:562.376000pt;}
.y117{bottom:565.393733pt;}
.y157{bottom:565.576000pt;}
.yd5{bottom:575.176000pt;}
.y5a{bottom:576.342267pt;}
.y116{bottom:578.193733pt;}
.y156{bottom:583.709333pt;}
.yb3{bottom:585.955200pt;}
.yd4{bottom:587.976000pt;}
.y59{bottom:592.342267pt;}
.y115{bottom:596.327067pt;}
.y155{bottom:596.509333pt;}
.y114{bottom:609.127067pt;}
.y154{bottom:609.309333pt;}
.y14{bottom:609.552133pt;}
.yb1{bottom:613.440000pt;}
.yb0{bottom:615.388000pt;}
.y113{bottom:621.927067pt;}
.y153{bottom:622.109333pt;}
.y58{bottom:627.268000pt;}
.yaf{bottom:627.977333pt;}
.y112{bottom:634.727067pt;}
.y13{bottom:639.952133pt;}
.y152{bottom:640.242667pt;}
.yae{bottom:640.429333pt;}
.y57{bottom:641.668000pt;}
.y111{bottom:652.860400pt;}
.yad{bottom:652.880000pt;}
.y151{bottom:653.042667pt;}
.y12{bottom:655.952133pt;}
.y56{bottom:656.068000pt;}
.yac{bottom:665.469333pt;}
.y110{bottom:665.660400pt;}
.y150{bottom:665.842667pt;}
.y11{bottom:671.952133pt;}
.ya4{bottom:673.909200pt;}
.yab{bottom:677.921333pt;}
.y10f{bottom:678.460400pt;}
.y14f{bottom:683.976133pt;}
.y10{bottom:687.952133pt;}
.ya9{bottom:690.510667pt;}
.y10e{bottom:696.593733pt;}
.y14e{bottom:696.776000pt;}
.ya8{bottom:702.962667pt;}
.y10d{bottom:709.393733pt;}
.y14d{bottom:709.576000pt;}
.ya7{bottom:715.413333pt;}
.yf{bottom:718.352000pt;}
.y10c{bottom:722.193733pt;}
.y14c{bottom:727.709333pt;}
.ya5{bottom:728.002667pt;}
.ye{bottom:732.752133pt;}
.y10b{bottom:734.993733pt;}
.y8d{bottom:736.442533pt;}
.ya2{bottom:740.454667pt;}
.y14b{bottom:740.509333pt;}
.yd{bottom:747.152133pt;}
.ya1{bottom:753.044000pt;}
.y10a{bottom:753.127067pt;}
.y14a{bottom:753.309467pt;}
.yc{bottom:761.552133pt;}
.y9f{bottom:765.496000pt;}
.y109{bottom:765.927067pt;}
.y149{bottom:771.442667pt;}
.yb{bottom:775.952133pt;}
.y9b{bottom:777.946667pt;}
.y108{bottom:784.060400pt;}
.y148{bottom:784.242667pt;}
.y9a{bottom:790.537333pt;}
.y107{bottom:796.860400pt;}
.y147{bottom:797.042667pt;}
.y93{bottom:798.975867pt;}
.y98{bottom:802.988000pt;}
.ya{bottom:804.752133pt;}
.y106{bottom:809.660400pt;}
.y146{bottom:809.842667pt;}
.y95{bottom:815.577333pt;}
.y9{bottom:817.552133pt;}
.y105{bottom:827.793733pt;}
.y145{bottom:827.976133pt;}
.y94{bottom:828.029333pt;}
.y8{bottom:830.352000pt;}
.y91{bottom:840.480000pt;}
.y104{bottom:840.593733pt;}
.y144{bottom:840.776000pt;}
.y7{bottom:843.152133pt;}
.y8e{bottom:849.054708pt;}
.y8f{bottom:853.070667pt;}
.y103{bottom:853.393733pt;}
.y143{bottom:853.576000pt;}
.y8c{bottom:865.521333pt;}
.y6{bottom:870.352000pt;}
.y102{bottom:871.527067pt;}
.y142{bottom:871.709333pt;}
.y8a{bottom:878.110667pt;}
.y101{bottom:884.327067pt;}
.y141{bottom:884.509333pt;}
.y88{bottom:890.562667pt;}
.y5{bottom:892.752133pt;}
.y100{bottom:897.127067pt;}
.y140{bottom:897.309467pt;}
.y87{bottom:903.152000pt;}
.yff{bottom:909.927067pt;}
.y7e{bottom:911.591200pt;}
.y4{bottom:915.152133pt;}
.y13f{bottom:915.442667pt;}
.y85{bottom:915.604000pt;}
.y83{bottom:928.054667pt;}
.yfe{bottom:928.060400pt;}
.y13e{bottom:928.242667pt;}
.y81{bottom:940.644000pt;}
.yfd{bottom:940.860400pt;}
.y13d{bottom:941.042667pt;}
.y3{bottom:951.952133pt;}
.y7f{bottom:953.094667pt;}
.yfc{bottom:953.660400pt;}
.y13c{bottom:953.842667pt;}
.y7c{bottom:965.685333pt;}
.yfb{bottom:966.460400pt;}
.y13b{bottom:971.976133pt;}
.y2{bottom:977.552133pt;}
.y7b{bottom:983.679733pt;}
.yfa{bottom:984.593733pt;}
.y13a{bottom:984.776000pt;}
.y1{bottom:1035.263733pt;}
.hd{height:11.897333pt;}
.ha{height:11.898667pt;}
.he{height:12.036000pt;}
.hf{height:24.349333pt;}
.h10{height:24.486667pt;}
.h12{height:27.662934pt;}
.hc{height:28.838355pt;}
.hb{height:28.919418pt;}
.h13{height:29.625000pt;}
.h4{height:29.645833pt;}
.h9{height:29.729167pt;}
.h6{height:33.351562pt;}
.h5{height:33.445312pt;}
.h8{height:37.057292pt;}
.h7{height:37.161458pt;}
.h1{height:43.031250pt;}
.h3{height:55.195182pt;}
.h2{height:59.458333pt;}
.h11{height:364.697333pt;}
.h0{height:1056.000000pt;}
.w1{width:57.968000pt;}
.w2{width:59.766667pt;}
.w4{width:88.128000pt;}
.w5{width:171.274667pt;}
.w3{width:250.685333pt;}
.w6{width:628.262667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:7.332133pt;}
.x1f{left:8.300667pt;}
.x17{left:10.513600pt;}
.x2f{left:14.249067pt;}
.x15{left:16.877867pt;}
.x36{left:19.645600pt;}
.x1a{left:23.242533pt;}
.x2b{left:27.393067pt;}
.x31{left:28.499467pt;}
.x38{left:31.404667pt;}
.x34{left:33.618267pt;}
.x37{left:35.555600pt;}
.x2e{left:38.322133pt;}
.x20{left:40.259067pt;}
.x12{left:41.333333pt;}
.x21{left:42.749733pt;}
.x25{left:44.133200pt;}
.x32{left:45.239467pt;}
.x22{left:46.346400pt;}
.x23{left:48.560400pt;}
.x35{left:50.912267pt;}
.x26{left:54.509333pt;}
.x24{left:56.584133pt;}
.x1e{left:57.968000pt;}
.x1d{left:59.766533pt;}
.x3a{left:61.150000pt;}
.x29{left:63.086933pt;}
.xd{left:64.000000pt;}
.x8{left:65.101600pt;}
.x5{left:67.591067pt;}
.x30{left:71.111067pt;}
.x39{left:72.909600pt;}
.x4{left:77.981733pt;}
.x7{left:84.096400pt;}
.x2d{left:85.498800pt;}
.xe{left:88.000000pt;}
.x2{left:91.083333pt;}
.x14{left:96.000000pt;}
.x1c{left:102.663733pt;}
.x27{left:103.770533pt;}
.x18{left:109.156800pt;}
.x9{left:138.388000pt;}
.x13{left:147.792000pt;}
.xb{left:152.496133pt;}
.x16{left:154.406667pt;}
.x3b{left:161.635467pt;}
.x28{left:162.987126pt;}
.x2c{left:164.366933pt;}
.x33{left:165.750400pt;}
.x3c{left:170.343067pt;}
.x3{left:213.953067pt;}
.x6{left:296.982133pt;}
.xa{left:309.682667pt;}
.xc{left:359.346667pt;}
.xf{left:416.000000pt;}
.x10{left:440.000000pt;}
.x19{left:464.858667pt;}
.x11{left:492.400000pt;}
.x1b{left:552.986667pt;}
.x1{left:764.933333pt;}
}




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