
    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_b2f4e2ae7b587f68f10b6774.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_7e09afc0f4a804241d2192bd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_99560051b4633c68d5440fd0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_4370d20f9260751eb1aa6fa8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853516;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_ac794a9993c78fc77c1703bf.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_b0903d2c7147036cdcc0771d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_3a7c84f0e3349f9669429f79.woff')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_c0acdd503692f1c944521ee0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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);}
.v3{vertical-align:-112.620000px;}
.va{vertical-align:-72.600000px;}
.ve{vertical-align:-45.180000px;}
.v12{vertical-align:-42.000000px;}
.v6{vertical-align:-38.850000px;}
.v4{vertical-align:-36.150000px;}
.vf{vertical-align:-31.440000px;}
.v11{vertical-align:-29.400000px;}
.v1{vertical-align:-6.780000px;}
.v5{vertical-align:-1.080000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.900000px;}
.v10{vertical-align:29.400000px;}
.vc{vertical-align:41.100000px;}
.vd{vertical-align:45.180000px;}
.vb{vertical-align:48.900000px;}
.v2{vertical-align:52.800000px;}
.v9{vertical-align:77.400000px;}
.v8{vertical-align:101.580000px;}
.ls4f{letter-spacing:-6.780000px;}
.ls51{letter-spacing:-6.660000px;}
.ls1a{letter-spacing:-3.342000px;}
.ls50{letter-spacing:-3.288000px;}
.ls3b{letter-spacing:-3.138000px;}
.ls37{letter-spacing:-2.994000px;}
.ls41{letter-spacing:-2.844000px;}
.ls3d{letter-spacing:-2.766000px;}
.ls3e{letter-spacing:-1.914000px;}
.ls43{letter-spacing:-1.842000px;}
.ls5c{letter-spacing:-1.824000px;}
.ls3f{letter-spacing:-1.764000px;}
.ls1c{letter-spacing:-1.752000px;}
.ls31{letter-spacing:-1.728000px;}
.lsa{letter-spacing:-1.686000px;}
.ls1b{letter-spacing:-1.656000px;}
.ls11{letter-spacing:-1.620000px;}
.lsf{letter-spacing:-1.548000px;}
.lsc{letter-spacing:-1.506000px;}
.ls64{letter-spacing:-1.470000px;}
.ls9{letter-spacing:-1.158000px;}
.ls8{letter-spacing:-1.086000px;}
.ls19{letter-spacing:-1.008000px;}
.ls45{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.504000px;}
.ls3c{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.001800px;}
.ls55{letter-spacing:0.006450px;}
.ls63{letter-spacing:0.138600px;}
.ls2b{letter-spacing:0.141600px;}
.ls16{letter-spacing:0.170100px;}
.lse{letter-spacing:0.213000px;}
.ls15{letter-spacing:0.217050px;}
.ls14{letter-spacing:0.234600px;}
.ls21{letter-spacing:0.247200px;}
.ls10{letter-spacing:0.288600px;}
.ls4d{letter-spacing:0.289350px;}
.ls5e{letter-spacing:0.363000px;}
.ls4b{letter-spacing:0.424650px;}
.lsb{letter-spacing:0.454200px;}
.ls2f{letter-spacing:0.469200px;}
.ls39{letter-spacing:0.532800px;}
.ls44{letter-spacing:0.606000px;}
.ls3a{letter-spacing:0.684000px;}
.ls30{letter-spacing:0.746400px;}
.ls4a{letter-spacing:0.792450px;}
.ls5d{letter-spacing:0.822000px;}
.ls1d{letter-spacing:0.888000px;}
.ls2{letter-spacing:1.008000px;}
.ls33{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.098000px;}
.ls54{letter-spacing:1.143600px;}
.ls1f{letter-spacing:1.203600px;}
.ls22{letter-spacing:1.248000px;}
.ls38{letter-spacing:1.320000px;}
.lsd{letter-spacing:1.470000px;}
.ls52{letter-spacing:1.512000px;}
.ls62{letter-spacing:1.728000px;}
.ls7{letter-spacing:1.950000px;}
.ls25{letter-spacing:2.172000px;}
.ls42{letter-spacing:2.178000px;}
.ls28{letter-spacing:2.244000px;}
.ls32{letter-spacing:2.286000px;}
.ls53{letter-spacing:2.472000px;}
.ls48{letter-spacing:3.268200px;}
.ls4e{letter-spacing:3.862200px;}
.ls18{letter-spacing:4.911000px;}
.ls5f{letter-spacing:5.981550px;}
.ls5a{letter-spacing:6.161550px;}
.ls6{letter-spacing:15.122100px;}
.ls60{letter-spacing:22.622100px;}
.ls4c{letter-spacing:32.437050px;}
.ls2e{letter-spacing:33.823200px;}
.ls1{letter-spacing:49.672500px;}
.ls3{letter-spacing:49.740000px;}
.ls59{letter-spacing:57.547500px;}
.ls46{letter-spacing:57.645000px;}
.ls49{letter-spacing:57.697500px;}
.ls40{letter-spacing:76.620000px;}
.ls5b{letter-spacing:82.708200px;}
.ls29{letter-spacing:84.547500px;}
.ls58{letter-spacing:84.697500px;}
.ls57{letter-spacing:97.147500px;}
.ls56{letter-spacing:97.267500px;}
.ls20{letter-spacing:97.297500px;}
.ls12{letter-spacing:111.495000px;}
.ls17{letter-spacing:111.547500px;}
.ls5{letter-spacing:111.645000px;}
.ls2a{letter-spacing:111.667500px;}
.ls61{letter-spacing:111.675000px;}
.ls4{letter-spacing:111.697500px;}
.ls36{letter-spacing:111.727500px;}
.ls27{letter-spacing:157.740000px;}
.ls26{letter-spacing:157.770000px;}
.ls2d{letter-spacing:157.800000px;}
.ls34{letter-spacing:157.822500px;}
.ls2c{letter-spacing:157.852500px;}
.ls24{letter-spacing:157.972500px;}
.ls35{letter-spacing:165.727500px;}
.ls13{letter-spacing:171.808200px;}
.sc_{text-shadow:none;}
.sc8{text-shadow:-0.015em 0 rgb(91,155,213),0 0.015em rgb(91,155,213),0.015em 0 rgb(91,155,213),0 -0.015em  rgb(91,155,213);}
.sc7{text-shadow:-0.015em 0 rgb(255,255,0),0 0.015em rgb(255,255,0),0.015em 0 rgb(255,255,0),0 -0.015em  rgb(255,255,0);}
.sc6{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc5{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc4{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc3{text-shadow:-0.015em 0 rgb(31,31,31),0 0.015em rgb(31,31,31),0.015em 0 rgb(31,31,31),0 -0.015em  rgb(31,31,31);}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc8{-webkit-text-stroke:0.015em rgb(91,155,213);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(255,255,0);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(31,31,31);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws1{word-spacing:-166.650000px;}
.ws56{word-spacing:-144.150000px;}
.ws14{word-spacing:-115.234800px;}
.ws55{word-spacing:-106.122000px;}
.ws15{word-spacing:-103.650000px;}
.ws1e{word-spacing:-54.002700px;}
.ws21{word-spacing:-53.968800px;}
.ws29{word-spacing:-39.982800px;}
.ws2a{word-spacing:-38.776800px;}
.ws2{word-spacing:-38.670900px;}
.ws17{word-spacing:-37.944000px;}
.ws16{word-spacing:-37.696800px;}
.ws5d{word-spacing:-37.662900px;}
.ws28{word-spacing:-35.968800px;}
.ws3{word-spacing:-34.527900px;}
.ws60{word-spacing:-34.339800px;}
.wsb{word-spacing:-34.047900px;}
.ws2e{word-spacing:-33.897900px;}
.ws5b{word-spacing:-33.399900px;}
.ws30{word-spacing:-33.261900px;}
.ws2f{word-spacing:-33.110700px;}
.ws9{word-spacing:-33.066000px;}
.ws5c{word-spacing:-32.940900px;}
.wse{word-spacing:-32.900400px;}
.wsc{word-spacing:-32.790900px;}
.ws61{word-spacing:-32.750400px;}
.ws6{word-spacing:-32.611800px;}
.ws5{word-spacing:-32.577900px;}
.ws32{word-spacing:-32.540400px;}
.ws4b{word-spacing:-31.641900px;}
.ws10{word-spacing:-31.603800px;}
.ws4{word-spacing:-31.491900px;}
.ws7{word-spacing:-31.453800px;}
.ws62{word-spacing:-31.141800px;}
.wsa{word-spacing:-31.071900px;}
.wsd{word-spacing:-31.029900px;}
.wsf{word-spacing:-30.991800px;}
.ws8{word-spacing:-30.925800px;}
.ws12{word-spacing:-30.921900px;}
.ws13{word-spacing:-30.825900px;}
.ws5a{word-spacing:-30.753900px;}
.ws31{word-spacing:-29.439900px;}
.ws4e{word-spacing:-29.289900px;}
.ws11{word-spacing:-29.269800px;}
.ws5f{word-spacing:-27.526800px;}
.ws26{word-spacing:-27.492900px;}
.ws54{word-spacing:-25.917900px;}
.ws4d{word-spacing:-25.831800px;}
.ws18{word-spacing:-25.458900px;}
.ws19{word-spacing:-24.441900px;}
.ws52{word-spacing:-22.902900px;}
.ws38{word-spacing:-22.527900px;}
.ws24{word-spacing:-5.306400px;}
.ws1b{word-spacing:-5.048550px;}
.ws3a{word-spacing:-4.949700px;}
.ws36{word-spacing:-4.283700px;}
.ws57{word-spacing:-4.189200px;}
.ws2b{word-spacing:-3.938400px;}
.ws65{word-spacing:-3.891600px;}
.ws63{word-spacing:-3.433200px;}
.ws33{word-spacing:-3.234000px;}
.ws1d{word-spacing:-3.168750px;}
.ws2c{word-spacing:-2.716800px;}
.ws1c{word-spacing:-1.721400px;}
.ws42{word-spacing:-1.640550px;}
.ws35{word-spacing:-1.508400px;}
.ws58{word-spacing:-1.291200px;}
.ws4a{word-spacing:-1.143000px;}
.ws3d{word-spacing:-1.095600px;}
.ws1f{word-spacing:-0.759000px;}
.ws50{word-spacing:-0.599850px;}
.ws22{word-spacing:-0.516000px;}
.ws53{word-spacing:-0.505500px;}
.ws4c{word-spacing:-0.232200px;}
.ws51{word-spacing:-0.227400px;}
.ws23{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:0.215850px;}
.ws1a{word-spacing:0.330900px;}
.ws3b{word-spacing:0.604950px;}
.ws48{word-spacing:1.159500px;}
.ws59{word-spacing:2.836800px;}
.ws49{word-spacing:4.499700px;}
.ws34{word-spacing:5.353200px;}
.ws64{word-spacing:5.413200px;}
.ws37{word-spacing:5.610300px;}
.ws2d{word-spacing:5.940300px;}
.ws3c{word-spacing:6.779400px;}
.ws4f{word-spacing:14.751900px;}
.ws45{word-spacing:14.909550px;}
.ws47{word-spacing:16.056600px;}
.ws44{word-spacing:16.290900px;}
.ws43{word-spacing:20.044200px;}
.ws46{word-spacing:22.676850px;}
.ws40{word-spacing:35.414100px;}
.ws3f{word-spacing:35.532600px;}
.ws3e{word-spacing:35.600700px;}
.ws41{word-spacing:42.015900px;}
.ws20{word-spacing:1590.340500px;}
.ws5e{word-spacing:2242.143000px;}
.ws25{word-spacing:2341.724550px;}
.ws27{word-spacing:4606.680600px;}
._23{margin-left:-21.959400px;}
._35{margin-left:-20.629500px;}
._7{margin-left:-11.499300px;}
._0{margin-left:-8.596800px;}
._b{margin-left:-7.499400px;}
._4{margin-left:-6.208800px;}
._5{margin-left:-4.298400px;}
._2{margin-left:-2.865600px;}
._1{margin-left:-1.432800px;}
._3{width:1.432800px;}
._6{width:3.136200px;}
._8{width:4.414950px;}
._34{width:5.900550px;}
._11{width:7.164150px;}
._32{width:8.421600px;}
._1e{width:10.331400px;}
._10{width:13.157700px;}
._d{width:14.252250px;}
._e{width:15.958800px;}
._13{width:17.375250px;}
._3c{width:19.074450px;}
._3d{width:20.186250px;}
._2e{width:21.959850px;}
._40{width:23.049900px;}
._24{width:31.184250px;}
._2c{width:33.286500px;}
._1c{width:34.503600px;}
._14{width:39.136650px;}
._15{width:40.166100px;}
._1b{width:41.721900px;}
._29{width:43.266300px;}
._2d{width:49.970250px;}
._20{width:51.273600px;}
._1a{width:52.833600px;}
._1f{width:53.950800px;}
._2f{width:54.952800px;}
._30{width:56.573400px;}
._39{width:61.665450px;}
._33{width:62.818650px;}
._2a{width:69.313200px;}
._2b{width:70.892100px;}
._3f{width:82.015200px;}
._3b{width:92.852700px;}
._3a{width:94.209600px;}
._9{width:98.683650px;}
._a{width:100.187550px;}
._22{width:102.517950px;}
._21{width:103.742400px;}
._38{width:132.895350px;}
._f{width:171.307200px;}
._3e{width:188.374950px;}
._26{width:233.868750px;}
._31{width:407.858100px;}
._1d{width:544.491300px;}
._36{width:700.212150px;}
._17{width:785.359500px;}
._18{width:852.490650px;}
._19{width:886.910100px;}
._27{width:939.688650px;}
._37{width:949.099950px;}
._16{width:1142.958900px;}
._12{width:1149.443400px;}
._c{width:1215.816000px;}
._28{width:1234.174950px;}
._25{width:2751.614400px;}
.fc12{color:rgb(102,51,0);}
.fc10{color:rgb(255,255,0);}
.fcf{color:rgb(0,176,80);}
.fc11{color:transparent;}
.fce{color:rgb(112,48,160);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc6{color:rgb(31,31,31);}
.fc3{color:rgb(137,137,137);}
.fc1{color:rgb(255,141,136);}
.fc5{color:rgb(0,112,192);}
.fc9{color:rgb(0,176,240);}
.fc13{color:rgb(47,85,151);}
.fc8{color:rgb(91,155,213);}
.fc4{color:rgb(255,0,0);}
.fca{color:rgb(84,130,53);}
.fcd{color:rgb(251,166,255);}
.fcb{color:rgb(143,170,220);}
.fc7{color:rgb(68,114,196);}
.fcc{color:rgb(255,192,0);}
.fs6{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fs10{font-size:85.500000px;}
.fsc{font-size:85.650000px;}
.fs12{font-size:94.500000px;}
.fsa{font-size:94.650000px;}
.fse{font-size:103.650000px;}
.fs4{font-size:108.150000px;}
.fsf{font-size:112.650000px;}
.fs3{font-size:121.650000px;}
.fs11{font-size:121.800000px;}
.fs7{font-size:144.150000px;}
.fsb{font-size:144.300000px;}
.fs8{font-size:166.650000px;}
.fs9{font-size:166.800000px;}
.fs2{font-size:193.800000px;}
.fsd{font-size:216.300000px;}
.fs0{font-size:238.800000px;}
.fs1{font-size:238.950000px;}
.fs14{font-size:265.800000px;}
.fs13{font-size:265.950000px;}
.y0{bottom:0.000000px;}
.y12{bottom:0.600030px;}
.y9{bottom:0.787530px;}
.ye2{bottom:0.900000px;}
.ydf{bottom:1.050000px;}
.ye4{bottom:1.470000px;}
.ye6{bottom:1.545000px;}
.y28{bottom:12.787500px;}
.y4d{bottom:15.187500px;}
.yf{bottom:20.062500px;}
.y18{bottom:20.512500px;}
.y8{bottom:22.200000px;}
.y61{bottom:25.987500px;}
.yd7{bottom:28.687500px;}
.y53{bottom:29.550000px;}
.yd9{bottom:30.375000px;}
.yb{bottom:30.525000px;}
.yb3{bottom:32.212500px;}
.yb9{bottom:35.812500px;}
.y57{bottom:37.350000px;}
.y3c{bottom:39.112500px;}
.y33{bottom:41.550000px;}
.y7{bottom:43.612500px;}
.y85{bottom:44.850000px;}
.yd6{bottom:61.387500px;}
.y96{bottom:65.100000px;}
.y4c{bottom:65.887500px;}
.y52{bottom:73.462500px;}
.y7e{bottom:75.525000px;}
.y6f{bottom:76.800000px;}
.y56{bottom:80.175000px;}
.y34{bottom:82.125000px;}
.y2c{bottom:82.387500px;}
.ya2{bottom:82.950000px;}
.y27{bottom:84.862500px;}
.y37{bottom:84.900000px;}
.yb8{bottom:86.475000px;}
.y38{bottom:90.487500px;}
.yd5{bottom:94.050000px;}
.yaa{bottom:97.012500px;}
.y95{bottom:109.050000px;}
.yb2{bottom:112.237500px;}
.y4e{bottom:114.862500px;}
.ya1{bottom:115.612500px;}
.y51{bottom:116.287500px;}
.y7f{bottom:124.875000px;}
.y7d{bottom:126.225000px;}
.y4a{bottom:127.387500px;}
.y6e{bottom:127.500000px;}
.yf0{bottom:132.337500px;}
.y2b{bottom:133.087500px;}
.y47{bottom:136.612500px;}
.y3d{bottom:138.150000px;}
.y3b{bottom:138.525000px;}
.y80{bottom:140.850000px;}
.yb1{bottom:144.900000px;}
.y84{bottom:146.212500px;}
.ya9{bottom:147.675000px;}
.ya0{bottom:148.275000px;}
.y3a{bottom:153.075000px;}
.y6a{bottom:153.675000px;}
.y26{bottom:156.975000px;}
.yf8{bottom:170.055000px;}
.yef{bottom:175.155000px;}
.y69{bottom:178.470000px;}
.y35{bottom:179.220000px;}
.y9f{bottom:179.850000px;}
.y36{bottom:181.050000px;}
.y94{bottom:181.155000px;}
.yc6{bottom:183.300000px;}
.ya{bottom:183.900000px;}
.y39{bottom:185.745000px;}
.ye5{bottom:190.125000px;}
.y83{bottom:193.695000px;}
.yc0{bottom:196.200000px;}
.y25{bottom:200.925000px;}
.y66{bottom:202.650000px;}
.y65{bottom:204.300000px;}
.y68{bottom:205.500000px;}
.y9e{bottom:212.505000px;}
.y49{bottom:213.570000px;}
.y82{bottom:216.075000px;}
.y93{bottom:223.950000px;}
.yb7{bottom:225.750000px;}
.yc5{bottom:227.250000px;}
.y92{bottom:228.405000px;}
.y46{bottom:229.095000px;}
.ydc{bottom:230.370000px;}
.y64{bottom:231.345000px;}
.y42{bottom:233.175000px;}
.y6{bottom:233.670000px;}
.ybf{bottom:234.525000px;}
.yf7{bottom:235.425000px;}
.y67{bottom:238.155000px;}
.y54{bottom:244.275000px;}
.y9d{bottom:245.175000px;}
.yba{bottom:252.870000px;}
.y45{bottom:256.125000px;}
.y41{bottom:260.220000px;}
.y5{bottom:266.325000px;}
.yf6{bottom:266.970000px;}
.yc4{bottom:270.030000px;}
.y24{bottom:273.000000px;}
.ydb{bottom:273.195000px;}
.y9c{bottom:277.845000px;}
.y60{bottom:286.845000px;}
.yde{bottom:286.875000px;}
.yd3{bottom:299.100000px;}
.yee{bottom:301.350000px;}
.y78{bottom:301.950000px;}
.y8e{bottom:306.825000px;}
.y9b{bottom:310.500000px;}
.y4{bottom:311.400000px;}
.y23{bottom:315.825000px;}
.y7a{bottom:317.595000px;}
.yd8{bottom:329.445000px;}
.yf5{bottom:332.280000px;}
.y5f{bottom:337.530000px;}
.yd2{bottom:343.050000px;}
.y8d{bottom:349.605000px;}
.y79{bottom:357.405000px;}
.ye1{bottom:364.500000px;}
.yf4{bottom:364.980000px;}
.y3{bottom:367.050000px;}
.y76{bottom:368.100000px;}
.y22{bottom:374.250000px;}
.y14{bottom:376.500000px;}
.yd1{bottom:385.845000px;}
.y7b{bottom:386.970000px;}
.y5e{bottom:388.245000px;}
.y8c{bottom:393.570000px;}
.y29{bottom:402.405000px;}
.y99{bottom:410.220000px;}
.yf3{bottom:429.195000px;}
.y8b{bottom:436.350000px;}
.yd0{bottom:437.250000px;}
.y98{bottom:438.375000px;}
.y91{bottom:452.130000px;}
.yed{bottom:454.320000px;}
.y75{bottom:454.845000px;}
.y97{bottom:467.655000px;}
.ye3{bottom:480.375000px;}
.ycf{bottom:481.155000px;}
.y5d{bottom:488.475000px;}
.ya7{bottom:489.780000px;}
.yf2{bottom:494.505000px;}
.yec{bottom:497.100000px;}
.ya6{bottom:497.130000px;}
.y9a{bottom:502.800000px;}
.ybe{bottom:504.900000px;}
.y20{bottom:505.320000px;}
.ycb{bottom:510.975000px;}
.y8a{bottom:523.125000px;}
.yce{bottom:523.995000px;}
.yc3{bottom:530.280000px;}
.y55{bottom:532.500000px;}
.y5c{bottom:539.175000px;}
.yeb{bottom:541.050000px;}
.y74{bottom:541.575000px;}
.ybd{bottom:543.195000px;}
.y1f{bottom:549.225000px;}
.yca{bottom:550.425000px;}
.ya5{bottom:551.205000px;}
.yf1{bottom:559.875000px;}
.yaf{bottom:561.030000px;}
.ye0{bottom:561.375000px;}
.y1c{bottom:561.600000px;}
.y89{bottom:565.920000px;}
.ycd{bottom:567.900000px;}
.yc2{bottom:573.075000px;}
.yea{bottom:584.955000px;}
.yc9{bottom:589.845000px;}
.y1e{bottom:592.050000px;}
.yae{bottom:593.700000px;}
.y11{bottom:598.125000px;}
.ya4{bottom:605.280000px;}
.ycc{bottom:610.725000px;}
.y40{bottom:611.505000px;}
.y32{bottom:619.125000px;}
.y17{bottom:622.845000px;}
.y44{bottom:624.825000px;}
.yad{bottom:626.400000px;}
.y73{bottom:628.320000px;}
.y2e{bottom:628.620000px;}
.ye9{bottom:628.905000px;}
.y3f{bottom:638.550000px;}
.ye{bottom:639.075000px;}
.yd{bottom:641.325000px;}
.y88{bottom:642.525000px;}
.y10{bottom:643.155000px;}
.yc8{bottom:643.905000px;}
.ya3{bottom:644.745000px;}
.y50{bottom:645.030000px;}
.y1b{bottom:646.695000px;}
.yb6{bottom:649.155000px;}
.ybc{bottom:651.345000px;}
.y31{bottom:651.780000px;}
.y43{bottom:651.870000px;}
.yac{bottom:659.070000px;}
.yd4{bottom:664.380000px;}
.y72{bottom:671.130000px;}
.ye8{bottom:671.745000px;}
.y1d{bottom:678.780000px;}
.y16{bottom:679.155000px;}
.y2d{bottom:679.320000px;}
.y5a{bottom:683.820000px;}
.y30{bottom:684.450000px;}
.y87{bottom:685.350000px;}
.yc1{bottom:687.030000px;}
.y2{bottom:687.120000px;}
.yc7{bottom:700.245000px;}
.y1a{bottom:700.275000px;}
.y70{bottom:711.120000px;}
.y63{bottom:711.375000px;}
.y90{bottom:711.495000px;}
.yf9{bottom:712.050000px;}
.y77{bottom:713.250000px;}
.yb0{bottom:714.495000px;}
.y59{bottom:716.475000px;}
.y2f{bottom:717.120000px;}
.yc{bottom:719.070000px;}
.y7c{bottom:721.320000px;}
.y6c{bottom:723.780000px;}
.ya8{bottom:724.650000px;}
.y81{bottom:731.850000px;}
.y5b{bottom:733.125000px;}
.y15{bottom:736.725000px;}
.y71{bottom:737.595000px;}
.y6d{bottom:737.850000px;}
.y48{bottom:739.530000px;}
.yab{bottom:741.630000px;}
.yda{bottom:741.945000px;}
.y62{bottom:744.075000px;}
.ybb{bottom:746.025000px;}
.ye7{bottom:746.700000px;}
.y4f{bottom:747.975000px;}
.y13{bottom:748.425000px;}
.y58{bottom:749.130000px;}
.y1{bottom:751.320000px;}
.y21{bottom:751.725000px;}
.y3e{bottom:753.150000px;}
.y4b{bottom:754.725000px;}
.y6b{bottom:756.450000px;}
.y2a{bottom:757.500000px;}
.y86{bottom:758.280000px;}
.y19{bottom:758.880000px;}
.yb5{bottom:761.880000px;}
.ydd{bottom:761.970000px;}
.yb4{bottom:762.525000px;}
.y8f{bottom:768.150000px;}
.h1f{height:20.250000px;}
.h1e{height:21.375000px;}
.h20{height:22.500000px;}
.h7{height:71.613281px;}
.h6{height:71.762476px;}
.he{height:85.189966px;}
.h13{height:94.141626px;}
.h19{height:96.760986px;}
.hc{height:96.914575px;}
.h5{height:107.569116px;}
.h14{height:110.737573px;}
.h4{height:120.996606px;}
.h18{height:121.145801px;}
.h10{height:143.375757px;}
.hd{height:143.524951px;}
.h8{height:147.598901px;}
.h11{height:147.752490px;}
.h17{height:148.669116px;}
.h1d{height:161.795801px;}
.h12{height:165.754907px;}
.ha{height:165.904102px;}
.h9{height:170.637231px;}
.h1a{height:172.775757px;}
.hb{height:184.526367px;}
.h16{height:184.969116px;}
.h3{height:198.436816px;}
.hf{height:205.949707px;}
.h15{height:209.149116px;}
.h1{height:227.373047px;}
.h2{height:227.515869px;}
.h1c{height:253.081055px;}
.h1b{height:253.223877px;}
.h0{height:810.000000px;}
.w3{width:15.750000px;}
.w6{width:24.750000px;}
.w5{width:39.375000px;}
.w7{width:65.250000px;}
.w8{width:82.125000px;}
.w4{width:111.375000px;}
.w2{width:113.625000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8b{left:1.875000px;}
.x6{left:9.599979px;}
.x24{left:20.174979px;}
.x3e{left:31.387479px;}
.x72{left:37.574979px;}
.xc{left:39.599979px;}
.x35{left:47.324979px;}
.x18{left:53.174979px;}
.x3f{left:65.137479px;}
.xd{left:66.599979px;}
.x13{left:68.024979px;}
.x65{left:75.074979px;}
.x53{left:76.537479px;}
.x91{left:77.774979px;}
.x5f{left:79.012479px;}
.x54{left:84.862479px;}
.x6f{left:89.699979px;}
.x19{left:93.712479px;}
.x98{left:98.062479px;}
.x7c{left:99.187479px;}
.x73{left:106.162479px;}
.x77{left:109.874979px;}
.x37{left:111.224979px;}
.x60{left:112.762479px;}
.x66{left:115.612479px;}
.x10{left:117.187479px;}
.x3d{left:118.874979px;}
.x99{left:131.812479px;}
.x80{left:136.912479px;}
.x81{left:143.662479px;}
.x38{left:147.974979px;}
.x57{left:161.174979px;}
.x20{left:165.599979px;}
.x9{left:178.949979px;}
.x16{left:182.924979px;}
.x21{left:201.494979px;}
.x88{left:208.949979px;}
.x9b{left:240.404979px;}
.x64{left:244.994979px;}
.xf{left:249.224979px;}
.x11{left:255.344979px;}
.x6a{left:269.924979px;}
.x7d{left:277.799979px;}
.x59{left:282.029979px;}
.x9a{left:289.994979px;}
.x3b{left:291.224979px;}
.x2e{left:298.199979px;}
.x4a{left:306.899979px;}
.x12{left:316.244979px;}
.x74{left:318.119979px;}
.x1{left:319.319979px;}
.x87{left:326.519979px;}
.x3a{left:345.644979px;}
.x8{left:346.874979px;}
.x1b{left:352.049979px;}
.x70{left:353.249979px;}
.x5e{left:359.969979px;}
.x1e{left:362.369979px;}
.x2{left:364.274979px;}
.x1d{left:383.279979px;}
.x56{left:386.624979px;}
.x1c{left:392.549979px;}
.x36{left:393.629979px;}
.x58{left:405.569979px;}
.x86{left:413.219979px;}
.x39{left:416.999979px;}
.x5{left:438.869979px;}
.x3c{left:460.274979px;}
.x47{left:463.619979px;}
.x7a{left:474.254979px;}
.x7b{left:482.144979px;}
.x71{left:491.099979px;}
.x55{left:497.474979px;}
.x6c{left:499.274979px;}
.x3{left:503.774979px;}
.x6b{left:511.724979px;}
.x4{left:513.374979px;}
.x15{left:539.249979px;}
.x7e{left:553.574979px;}
.x22{left:556.049979px;}
.x42{left:557.549979px;}
.x2c{left:591.374979px;}
.x2d{left:600.374979px;}
.x6e{left:605.249979px;}
.x17{left:608.624979px;}
.x41{left:615.749979px;}
.x23{left:622.349979px;}
.x26{left:631.919979px;}
.x28{left:640.199979px;}
.x5d{left:689.744979px;}
.x31{left:691.499979px;}
.x4d{left:701.879979px;}
.xb{left:718.874979px;}
.x2f{left:729.599979px;}
.x5b{left:735.149979px;}
.x30{left:752.069979px;}
.x48{left:764.024979px;}
.x75{left:776.369979px;}
.x82{left:777.419979px;}
.x5c{left:780.524979px;}
.x83{left:781.619979px;}
.x43{left:802.499979px;}
.x76{left:810.149979px;}
.x49{left:818.069979px;}
.x5a{left:820.829979px;}
.x84{left:822.149979px;}
.x25{left:842.294979px;}
.x7f{left:857.549979px;}
.x2b{left:890.099979px;}
.x27{left:904.874979px;}
.xa{left:937.124979px;}
.x6d{left:970.499979px;}
.x67{left:1010.474979px;}
.x14{left:1018.319979px;}
.x50{left:1020.494979px;}
.x40{left:1022.474979px;}
.x90{left:1035.000000px;}
.x85{left:1037.624979px;}
.x45{left:1045.049979px;}
.x4e{left:1047.044979px;}
.x44{left:1059.029979px;}
.x8c{left:1060.875000px;}
.x78{left:1061.924979px;}
.x97{left:1071.419979px;}
.x8d{left:1076.625000px;}
.x63{left:1086.944979px;}
.x93{left:1101.569979px;}
.x1a{left:1107.494979px;}
.x46{left:1111.274979px;}
.x4b{left:1112.504979px;}
.x51{left:1115.579979px;}
.x95{left:1116.824979px;}
.x92{left:1124.519979px;}
.x4f{left:1133.474979px;}
.x69{left:1145.744979px;}
.x2a{left:1149.899979px;}
.x29{left:1153.904979px;}
.x96{left:1162.199979px;}
.x68{left:1185.149979px;}
.x34{left:1190.399979px;}
.x8e{left:1199.250000px;}
.x94{left:1202.504979px;}
.x4c{left:1211.669979px;}
.x32{left:1213.694979px;}
.x52{left:1214.729979px;}
.x33{left:1222.274979px;}
.x62{left:1227.779979px;}
.x8f{left:1229.625000px;}
.x8a{left:1253.250000px;}
.x61{left:1254.374979px;}
.x89{left:1271.699979px;}
.x1f{left:1312.694979px;}
.x7{left:1321.874979px;}
.xe{left:1335.569979px;}
.x79{left:1370.099979px;}
@media print{
.v3{vertical-align:-100.106667pt;}
.va{vertical-align:-64.533333pt;}
.ve{vertical-align:-40.160000pt;}
.v12{vertical-align:-37.333333pt;}
.v6{vertical-align:-34.533333pt;}
.v4{vertical-align:-32.133333pt;}
.vf{vertical-align:-27.946667pt;}
.v11{vertical-align:-26.133333pt;}
.v1{vertical-align:-6.026667pt;}
.v5{vertical-align:-0.960000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.466667pt;}
.v10{vertical-align:26.133333pt;}
.vc{vertical-align:36.533333pt;}
.vd{vertical-align:40.160000pt;}
.vb{vertical-align:43.466667pt;}
.v2{vertical-align:46.933333pt;}
.v9{vertical-align:68.800000pt;}
.v8{vertical-align:90.293333pt;}
.ls4f{letter-spacing:-6.026667pt;}
.ls51{letter-spacing:-5.920000pt;}
.ls1a{letter-spacing:-2.970667pt;}
.ls50{letter-spacing:-2.922667pt;}
.ls3b{letter-spacing:-2.789333pt;}
.ls37{letter-spacing:-2.661333pt;}
.ls41{letter-spacing:-2.528000pt;}
.ls3d{letter-spacing:-2.458667pt;}
.ls3e{letter-spacing:-1.701333pt;}
.ls43{letter-spacing:-1.637333pt;}
.ls5c{letter-spacing:-1.621333pt;}
.ls3f{letter-spacing:-1.568000pt;}
.ls1c{letter-spacing:-1.557333pt;}
.ls31{letter-spacing:-1.536000pt;}
.lsa{letter-spacing:-1.498667pt;}
.ls1b{letter-spacing:-1.472000pt;}
.ls11{letter-spacing:-1.440000pt;}
.lsf{letter-spacing:-1.376000pt;}
.lsc{letter-spacing:-1.338667pt;}
.ls64{letter-spacing:-1.306667pt;}
.ls9{letter-spacing:-1.029333pt;}
.ls8{letter-spacing:-0.965333pt;}
.ls19{letter-spacing:-0.896000pt;}
.ls45{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls3c{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.001600pt;}
.ls55{letter-spacing:0.005733pt;}
.ls63{letter-spacing:0.123200pt;}
.ls2b{letter-spacing:0.125867pt;}
.ls16{letter-spacing:0.151200pt;}
.lse{letter-spacing:0.189333pt;}
.ls15{letter-spacing:0.192933pt;}
.ls14{letter-spacing:0.208533pt;}
.ls21{letter-spacing:0.219733pt;}
.ls10{letter-spacing:0.256533pt;}
.ls4d{letter-spacing:0.257200pt;}
.ls5e{letter-spacing:0.322667pt;}
.ls4b{letter-spacing:0.377467pt;}
.lsb{letter-spacing:0.403733pt;}
.ls2f{letter-spacing:0.417067pt;}
.ls39{letter-spacing:0.473600pt;}
.ls44{letter-spacing:0.538667pt;}
.ls3a{letter-spacing:0.608000pt;}
.ls30{letter-spacing:0.663467pt;}
.ls4a{letter-spacing:0.704400pt;}
.ls5d{letter-spacing:0.730667pt;}
.ls1d{letter-spacing:0.789333pt;}
.ls2{letter-spacing:0.896000pt;}
.ls33{letter-spacing:0.960000pt;}
.ls23{letter-spacing:0.976000pt;}
.ls54{letter-spacing:1.016533pt;}
.ls1f{letter-spacing:1.069867pt;}
.ls22{letter-spacing:1.109333pt;}
.ls38{letter-spacing:1.173333pt;}
.lsd{letter-spacing:1.306667pt;}
.ls52{letter-spacing:1.344000pt;}
.ls62{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.733333pt;}
.ls25{letter-spacing:1.930667pt;}
.ls42{letter-spacing:1.936000pt;}
.ls28{letter-spacing:1.994667pt;}
.ls32{letter-spacing:2.032000pt;}
.ls53{letter-spacing:2.197333pt;}
.ls48{letter-spacing:2.905067pt;}
.ls4e{letter-spacing:3.433067pt;}
.ls18{letter-spacing:4.365333pt;}
.ls5f{letter-spacing:5.316933pt;}
.ls5a{letter-spacing:5.476933pt;}
.ls6{letter-spacing:13.441867pt;}
.ls60{letter-spacing:20.108533pt;}
.ls4c{letter-spacing:28.832933pt;}
.ls2e{letter-spacing:30.065067pt;}
.ls1{letter-spacing:44.153333pt;}
.ls3{letter-spacing:44.213333pt;}
.ls59{letter-spacing:51.153333pt;}
.ls46{letter-spacing:51.240000pt;}
.ls49{letter-spacing:51.286667pt;}
.ls40{letter-spacing:68.106667pt;}
.ls5b{letter-spacing:73.518400pt;}
.ls29{letter-spacing:75.153333pt;}
.ls58{letter-spacing:75.286667pt;}
.ls57{letter-spacing:86.353333pt;}
.ls56{letter-spacing:86.460000pt;}
.ls20{letter-spacing:86.486667pt;}
.ls12{letter-spacing:99.106667pt;}
.ls17{letter-spacing:99.153333pt;}
.ls5{letter-spacing:99.240000pt;}
.ls2a{letter-spacing:99.260000pt;}
.ls61{letter-spacing:99.266667pt;}
.ls4{letter-spacing:99.286667pt;}
.ls36{letter-spacing:99.313333pt;}
.ls27{letter-spacing:140.213333pt;}
.ls26{letter-spacing:140.240000pt;}
.ls2d{letter-spacing:140.266667pt;}
.ls34{letter-spacing:140.286667pt;}
.ls2c{letter-spacing:140.313333pt;}
.ls24{letter-spacing:140.420000pt;}
.ls35{letter-spacing:147.313333pt;}
.ls13{letter-spacing:152.718400pt;}
.ws1{word-spacing:-148.133333pt;}
.ws56{word-spacing:-128.133333pt;}
.ws14{word-spacing:-102.430933pt;}
.ws55{word-spacing:-94.330667pt;}
.ws15{word-spacing:-92.133333pt;}
.ws1e{word-spacing:-48.002400pt;}
.ws21{word-spacing:-47.972267pt;}
.ws29{word-spacing:-35.540267pt;}
.ws2a{word-spacing:-34.468267pt;}
.ws2{word-spacing:-34.374133pt;}
.ws17{word-spacing:-33.728000pt;}
.ws16{word-spacing:-33.508267pt;}
.ws5d{word-spacing:-33.478133pt;}
.ws28{word-spacing:-31.972267pt;}
.ws3{word-spacing:-30.691467pt;}
.ws60{word-spacing:-30.524267pt;}
.wsb{word-spacing:-30.264800pt;}
.ws2e{word-spacing:-30.131467pt;}
.ws5b{word-spacing:-29.688800pt;}
.ws30{word-spacing:-29.566133pt;}
.ws2f{word-spacing:-29.431733pt;}
.ws9{word-spacing:-29.392000pt;}
.ws5c{word-spacing:-29.280800pt;}
.wse{word-spacing:-29.244800pt;}
.wsc{word-spacing:-29.147467pt;}
.ws61{word-spacing:-29.111467pt;}
.ws6{word-spacing:-28.988267pt;}
.ws5{word-spacing:-28.958133pt;}
.ws32{word-spacing:-28.924800pt;}
.ws4b{word-spacing:-28.126133pt;}
.ws10{word-spacing:-28.092267pt;}
.ws4{word-spacing:-27.992800pt;}
.ws7{word-spacing:-27.958933pt;}
.ws62{word-spacing:-27.681600pt;}
.wsa{word-spacing:-27.619467pt;}
.wsd{word-spacing:-27.582133pt;}
.wsf{word-spacing:-27.548267pt;}
.ws8{word-spacing:-27.489600pt;}
.ws12{word-spacing:-27.486133pt;}
.ws13{word-spacing:-27.400800pt;}
.ws5a{word-spacing:-27.336800pt;}
.ws31{word-spacing:-26.168800pt;}
.ws4e{word-spacing:-26.035467pt;}
.ws11{word-spacing:-26.017600pt;}
.ws5f{word-spacing:-24.468267pt;}
.ws26{word-spacing:-24.438133pt;}
.ws54{word-spacing:-23.038133pt;}
.ws4d{word-spacing:-22.961600pt;}
.ws18{word-spacing:-22.630133pt;}
.ws19{word-spacing:-21.726133pt;}
.ws52{word-spacing:-20.358133pt;}
.ws38{word-spacing:-20.024800pt;}
.ws24{word-spacing:-4.716800pt;}
.ws1b{word-spacing:-4.487600pt;}
.ws3a{word-spacing:-4.399733pt;}
.ws36{word-spacing:-3.807733pt;}
.ws57{word-spacing:-3.723733pt;}
.ws2b{word-spacing:-3.500800pt;}
.ws65{word-spacing:-3.459200pt;}
.ws63{word-spacing:-3.051733pt;}
.ws33{word-spacing:-2.874667pt;}
.ws1d{word-spacing:-2.816667pt;}
.ws2c{word-spacing:-2.414933pt;}
.ws1c{word-spacing:-1.530133pt;}
.ws42{word-spacing:-1.458267pt;}
.ws35{word-spacing:-1.340800pt;}
.ws58{word-spacing:-1.147733pt;}
.ws4a{word-spacing:-1.016000pt;}
.ws3d{word-spacing:-0.973867pt;}
.ws1f{word-spacing:-0.674667pt;}
.ws50{word-spacing:-0.533200pt;}
.ws22{word-spacing:-0.458667pt;}
.ws53{word-spacing:-0.449333pt;}
.ws4c{word-spacing:-0.206400pt;}
.ws51{word-spacing:-0.202133pt;}
.ws23{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:0.191867pt;}
.ws1a{word-spacing:0.294133pt;}
.ws3b{word-spacing:0.537733pt;}
.ws48{word-spacing:1.030667pt;}
.ws59{word-spacing:2.521600pt;}
.ws49{word-spacing:3.999733pt;}
.ws34{word-spacing:4.758400pt;}
.ws64{word-spacing:4.811733pt;}
.ws37{word-spacing:4.986933pt;}
.ws2d{word-spacing:5.280267pt;}
.ws3c{word-spacing:6.026133pt;}
.ws4f{word-spacing:13.112800pt;}
.ws45{word-spacing:13.252933pt;}
.ws47{word-spacing:14.272533pt;}
.ws44{word-spacing:14.480800pt;}
.ws43{word-spacing:17.817067pt;}
.ws46{word-spacing:20.157200pt;}
.ws40{word-spacing:31.479200pt;}
.ws3f{word-spacing:31.584533pt;}
.ws3e{word-spacing:31.645067pt;}
.ws41{word-spacing:37.347467pt;}
.ws20{word-spacing:1413.636000pt;}
.ws5e{word-spacing:1993.016000pt;}
.ws25{word-spacing:2081.532933pt;}
.ws27{word-spacing:4094.827200pt;}
._23{margin-left:-19.519467pt;}
._35{margin-left:-18.337333pt;}
._7{margin-left:-10.221600pt;}
._0{margin-left:-7.641600pt;}
._b{margin-left:-6.666133pt;}
._4{margin-left:-5.518933pt;}
._5{margin-left:-3.820800pt;}
._2{margin-left:-2.547200pt;}
._1{margin-left:-1.273600pt;}
._3{width:1.273600pt;}
._6{width:2.787733pt;}
._8{width:3.924400pt;}
._34{width:5.244933pt;}
._11{width:6.368133pt;}
._32{width:7.485867pt;}
._1e{width:9.183467pt;}
._10{width:11.695733pt;}
._d{width:12.668667pt;}
._e{width:14.185600pt;}
._13{width:15.444667pt;}
._3c{width:16.955067pt;}
._3d{width:17.943333pt;}
._2e{width:19.519867pt;}
._40{width:20.488800pt;}
._24{width:27.719333pt;}
._2c{width:29.588000pt;}
._1c{width:30.669867pt;}
._14{width:34.788133pt;}
._15{width:35.703200pt;}
._1b{width:37.086133pt;}
._29{width:38.458933pt;}
._2d{width:44.418000pt;}
._20{width:45.576533pt;}
._1a{width:46.963200pt;}
._1f{width:47.956267pt;}
._2f{width:48.846933pt;}
._30{width:50.287467pt;}
._39{width:54.813733pt;}
._33{width:55.838800pt;}
._2a{width:61.611733pt;}
._2b{width:63.015200pt;}
._3f{width:72.902400pt;}
._3b{width:82.535733pt;}
._3a{width:83.741867pt;}
._9{width:87.718800pt;}
._a{width:89.055600pt;}
._22{width:91.127067pt;}
._21{width:92.215467pt;}
._38{width:118.129200pt;}
._f{width:152.273067pt;}
._3e{width:167.444400pt;}
._26{width:207.883333pt;}
._31{width:362.540533pt;}
._1d{width:483.992267pt;}
._36{width:622.410800pt;}
._17{width:698.097333pt;}
._18{width:757.769467pt;}
._19{width:788.364533pt;}
._27{width:835.278800pt;}
._37{width:843.644400pt;}
._16{width:1015.963467pt;}
._12{width:1021.727467pt;}
._c{width:1080.725333pt;}
._28{width:1097.044400pt;}
._25{width:2445.879467pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fs10{font-size:76.000000pt;}
.fsc{font-size:76.133333pt;}
.fs12{font-size:84.000000pt;}
.fsa{font-size:84.133333pt;}
.fse{font-size:92.133333pt;}
.fs4{font-size:96.133333pt;}
.fsf{font-size:100.133333pt;}
.fs3{font-size:108.133333pt;}
.fs11{font-size:108.266667pt;}
.fs7{font-size:128.133333pt;}
.fsb{font-size:128.266667pt;}
.fs8{font-size:148.133333pt;}
.fs9{font-size:148.266667pt;}
.fs2{font-size:172.266667pt;}
.fsd{font-size:192.266667pt;}
.fs0{font-size:212.266667pt;}
.fs1{font-size:212.400000pt;}
.fs14{font-size:236.266667pt;}
.fs13{font-size:236.400000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:0.533360pt;}
.y9{bottom:0.700027pt;}
.ye2{bottom:0.800000pt;}
.ydf{bottom:0.933333pt;}
.ye4{bottom:1.306667pt;}
.ye6{bottom:1.373333pt;}
.y28{bottom:11.366667pt;}
.y4d{bottom:13.500000pt;}
.yf{bottom:17.833333pt;}
.y18{bottom:18.233333pt;}
.y8{bottom:19.733333pt;}
.y61{bottom:23.100000pt;}
.yd7{bottom:25.500000pt;}
.y53{bottom:26.266667pt;}
.yd9{bottom:27.000000pt;}
.yb{bottom:27.133333pt;}
.yb3{bottom:28.633333pt;}
.yb9{bottom:31.833333pt;}
.y57{bottom:33.200000pt;}
.y3c{bottom:34.766667pt;}
.y33{bottom:36.933333pt;}
.y7{bottom:38.766667pt;}
.y85{bottom:39.866667pt;}
.yd6{bottom:54.566667pt;}
.y96{bottom:57.866667pt;}
.y4c{bottom:58.566667pt;}
.y52{bottom:65.300000pt;}
.y7e{bottom:67.133333pt;}
.y6f{bottom:68.266667pt;}
.y56{bottom:71.266667pt;}
.y34{bottom:73.000000pt;}
.y2c{bottom:73.233333pt;}
.ya2{bottom:73.733333pt;}
.y27{bottom:75.433333pt;}
.y37{bottom:75.466667pt;}
.yb8{bottom:76.866667pt;}
.y38{bottom:80.433333pt;}
.yd5{bottom:83.600000pt;}
.yaa{bottom:86.233333pt;}
.y95{bottom:96.933333pt;}
.yb2{bottom:99.766667pt;}
.y4e{bottom:102.100000pt;}
.ya1{bottom:102.766667pt;}
.y51{bottom:103.366667pt;}
.y7f{bottom:111.000000pt;}
.y7d{bottom:112.200000pt;}
.y4a{bottom:113.233333pt;}
.y6e{bottom:113.333333pt;}
.yf0{bottom:117.633333pt;}
.y2b{bottom:118.300000pt;}
.y47{bottom:121.433333pt;}
.y3d{bottom:122.800000pt;}
.y3b{bottom:123.133333pt;}
.y80{bottom:125.200000pt;}
.yb1{bottom:128.800000pt;}
.y84{bottom:129.966667pt;}
.ya9{bottom:131.266667pt;}
.ya0{bottom:131.800000pt;}
.y3a{bottom:136.066667pt;}
.y6a{bottom:136.600000pt;}
.y26{bottom:139.533333pt;}
.yf8{bottom:151.160000pt;}
.yef{bottom:155.693333pt;}
.y69{bottom:158.640000pt;}
.y35{bottom:159.306667pt;}
.y9f{bottom:159.866667pt;}
.y36{bottom:160.933333pt;}
.y94{bottom:161.026667pt;}
.yc6{bottom:162.933333pt;}
.ya{bottom:163.466667pt;}
.y39{bottom:165.106667pt;}
.ye5{bottom:169.000000pt;}
.y83{bottom:172.173333pt;}
.yc0{bottom:174.400000pt;}
.y25{bottom:178.600000pt;}
.y66{bottom:180.133333pt;}
.y65{bottom:181.600000pt;}
.y68{bottom:182.666667pt;}
.y9e{bottom:188.893333pt;}
.y49{bottom:189.840000pt;}
.y82{bottom:192.066667pt;}
.y93{bottom:199.066667pt;}
.yb7{bottom:200.666667pt;}
.yc5{bottom:202.000000pt;}
.y92{bottom:203.026667pt;}
.y46{bottom:203.640000pt;}
.ydc{bottom:204.773333pt;}
.y64{bottom:205.640000pt;}
.y42{bottom:207.266667pt;}
.y6{bottom:207.706667pt;}
.ybf{bottom:208.466667pt;}
.yf7{bottom:209.266667pt;}
.y67{bottom:211.693333pt;}
.y54{bottom:217.133333pt;}
.y9d{bottom:217.933333pt;}
.yba{bottom:224.773333pt;}
.y45{bottom:227.666667pt;}
.y41{bottom:231.306667pt;}
.y5{bottom:236.733333pt;}
.yf6{bottom:237.306667pt;}
.yc4{bottom:240.026667pt;}
.y24{bottom:242.666667pt;}
.ydb{bottom:242.840000pt;}
.y9c{bottom:246.973333pt;}
.y60{bottom:254.973333pt;}
.yde{bottom:255.000000pt;}
.yd3{bottom:265.866667pt;}
.yee{bottom:267.866667pt;}
.y78{bottom:268.400000pt;}
.y8e{bottom:272.733333pt;}
.y9b{bottom:276.000000pt;}
.y4{bottom:276.800000pt;}
.y23{bottom:280.733333pt;}
.y7a{bottom:282.306667pt;}
.yd8{bottom:292.840000pt;}
.yf5{bottom:295.360000pt;}
.y5f{bottom:300.026667pt;}
.yd2{bottom:304.933333pt;}
.y8d{bottom:310.760000pt;}
.y79{bottom:317.693333pt;}
.ye1{bottom:324.000000pt;}
.yf4{bottom:324.426667pt;}
.y3{bottom:326.266667pt;}
.y76{bottom:327.200000pt;}
.y22{bottom:332.666667pt;}
.y14{bottom:334.666667pt;}
.yd1{bottom:342.973333pt;}
.y7b{bottom:343.973333pt;}
.y5e{bottom:345.106667pt;}
.y8c{bottom:349.840000pt;}
.y29{bottom:357.693333pt;}
.y99{bottom:364.640000pt;}
.yf3{bottom:381.506667pt;}
.y8b{bottom:387.866667pt;}
.yd0{bottom:388.666667pt;}
.y98{bottom:389.666667pt;}
.y91{bottom:401.893333pt;}
.yed{bottom:403.840000pt;}
.y75{bottom:404.306667pt;}
.y97{bottom:415.693333pt;}
.ye3{bottom:427.000000pt;}
.ycf{bottom:427.693333pt;}
.y5d{bottom:434.200000pt;}
.ya7{bottom:435.360000pt;}
.yf2{bottom:439.560000pt;}
.yec{bottom:441.866667pt;}
.ya6{bottom:441.893333pt;}
.y9a{bottom:446.933333pt;}
.ybe{bottom:448.800000pt;}
.y20{bottom:449.173333pt;}
.ycb{bottom:454.200000pt;}
.y8a{bottom:465.000000pt;}
.yce{bottom:465.773333pt;}
.yc3{bottom:471.360000pt;}
.y55{bottom:473.333333pt;}
.y5c{bottom:479.266667pt;}
.yeb{bottom:480.933333pt;}
.y74{bottom:481.400000pt;}
.ybd{bottom:482.840000pt;}
.y1f{bottom:488.200000pt;}
.yca{bottom:489.266667pt;}
.ya5{bottom:489.960000pt;}
.yf1{bottom:497.666667pt;}
.yaf{bottom:498.693333pt;}
.ye0{bottom:499.000000pt;}
.y1c{bottom:499.200000pt;}
.y89{bottom:503.040000pt;}
.ycd{bottom:504.800000pt;}
.yc2{bottom:509.400000pt;}
.yea{bottom:519.960000pt;}
.yc9{bottom:524.306667pt;}
.y1e{bottom:526.266667pt;}
.yae{bottom:527.733333pt;}
.y11{bottom:531.666667pt;}
.ya4{bottom:538.026667pt;}
.ycc{bottom:542.866667pt;}
.y40{bottom:543.560000pt;}
.y32{bottom:550.333333pt;}
.y17{bottom:553.640000pt;}
.y44{bottom:555.400000pt;}
.yad{bottom:556.800000pt;}
.y73{bottom:558.506667pt;}
.y2e{bottom:558.773333pt;}
.ye9{bottom:559.026667pt;}
.y3f{bottom:567.600000pt;}
.ye{bottom:568.066667pt;}
.yd{bottom:570.066667pt;}
.y88{bottom:571.133333pt;}
.y10{bottom:571.693333pt;}
.yc8{bottom:572.360000pt;}
.ya3{bottom:573.106667pt;}
.y50{bottom:573.360000pt;}
.y1b{bottom:574.840000pt;}
.yb6{bottom:577.026667pt;}
.ybc{bottom:578.973333pt;}
.y31{bottom:579.360000pt;}
.y43{bottom:579.440000pt;}
.yac{bottom:585.840000pt;}
.yd4{bottom:590.560000pt;}
.y72{bottom:596.560000pt;}
.ye8{bottom:597.106667pt;}
.y1d{bottom:603.360000pt;}
.y16{bottom:603.693333pt;}
.y2d{bottom:603.840000pt;}
.y5a{bottom:607.840000pt;}
.y30{bottom:608.400000pt;}
.y87{bottom:609.200000pt;}
.yc1{bottom:610.693333pt;}
.y2{bottom:610.773333pt;}
.yc7{bottom:622.440000pt;}
.y1a{bottom:622.466667pt;}
.y70{bottom:632.106667pt;}
.y63{bottom:632.333333pt;}
.y90{bottom:632.440000pt;}
.yf9{bottom:632.933333pt;}
.y77{bottom:634.000000pt;}
.yb0{bottom:635.106667pt;}
.y59{bottom:636.866667pt;}
.y2f{bottom:637.440000pt;}
.yc{bottom:639.173333pt;}
.y7c{bottom:641.173333pt;}
.y6c{bottom:643.360000pt;}
.ya8{bottom:644.133333pt;}
.y81{bottom:650.533333pt;}
.y5b{bottom:651.666667pt;}
.y15{bottom:654.866667pt;}
.y71{bottom:655.640000pt;}
.y6d{bottom:655.866667pt;}
.y48{bottom:657.360000pt;}
.yab{bottom:659.226667pt;}
.yda{bottom:659.506667pt;}
.y62{bottom:661.400000pt;}
.ybb{bottom:663.133333pt;}
.ye7{bottom:663.733333pt;}
.y4f{bottom:664.866667pt;}
.y13{bottom:665.266667pt;}
.y58{bottom:665.893333pt;}
.y1{bottom:667.840000pt;}
.y21{bottom:668.200000pt;}
.y3e{bottom:669.466667pt;}
.y4b{bottom:670.866667pt;}
.y6b{bottom:672.400000pt;}
.y2a{bottom:673.333333pt;}
.y86{bottom:674.026667pt;}
.y19{bottom:674.560000pt;}
.yb5{bottom:677.226667pt;}
.ydd{bottom:677.306667pt;}
.yb4{bottom:677.800000pt;}
.y8f{bottom:682.800000pt;}
.h1f{height:18.000000pt;}
.h1e{height:19.000000pt;}
.h20{height:20.000000pt;}
.h7{height:63.656250pt;}
.h6{height:63.788867pt;}
.he{height:75.724414pt;}
.h13{height:83.681445pt;}
.h19{height:86.009766pt;}
.hc{height:86.146289pt;}
.h5{height:95.616992pt;}
.h14{height:98.433398pt;}
.h4{height:107.552539pt;}
.h18{height:107.685156pt;}
.h10{height:127.445117pt;}
.hd{height:127.577734pt;}
.h8{height:131.199023pt;}
.h11{height:131.335547pt;}
.h17{height:132.150326pt;}
.h1d{height:143.818490pt;}
.h12{height:147.337695pt;}
.ha{height:147.470313pt;}
.h9{height:151.677539pt;}
.h1a{height:153.578451pt;}
.hb{height:164.023437pt;}
.h16{height:164.416992pt;}
.h3{height:176.388281pt;}
.hf{height:183.066406pt;}
.h15{height:185.910326pt;}
.h1{height:202.109375pt;}
.h2{height:202.236328pt;}
.h1c{height:224.960937pt;}
.h1b{height:225.087891pt;}
.h0{height:720.000000pt;}
.w3{width:14.000000pt;}
.w6{width:22.000000pt;}
.w5{width:35.000000pt;}
.w7{width:58.000000pt;}
.w8{width:73.000000pt;}
.w4{width:99.000000pt;}
.w2{width:101.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8b{left:1.666667pt;}
.x6{left:8.533314pt;}
.x24{left:17.933314pt;}
.x3e{left:27.899981pt;}
.x72{left:33.399981pt;}
.xc{left:35.199981pt;}
.x35{left:42.066648pt;}
.x18{left:47.266648pt;}
.x3f{left:57.899981pt;}
.xd{left:59.199981pt;}
.x13{left:60.466648pt;}
.x65{left:66.733314pt;}
.x53{left:68.033314pt;}
.x91{left:69.133314pt;}
.x5f{left:70.233314pt;}
.x54{left:75.433314pt;}
.x6f{left:79.733314pt;}
.x19{left:83.299981pt;}
.x98{left:87.166648pt;}
.x7c{left:88.166648pt;}
.x73{left:94.366648pt;}
.x77{left:97.666648pt;}
.x37{left:98.866648pt;}
.x60{left:100.233314pt;}
.x66{left:102.766648pt;}
.x10{left:104.166648pt;}
.x3d{left:105.666648pt;}
.x99{left:117.166648pt;}
.x80{left:121.699981pt;}
.x81{left:127.699981pt;}
.x38{left:131.533314pt;}
.x57{left:143.266648pt;}
.x20{left:147.199981pt;}
.x9{left:159.066648pt;}
.x16{left:162.599981pt;}
.x21{left:179.106648pt;}
.x88{left:185.733314pt;}
.x9b{left:213.693314pt;}
.x64{left:217.773314pt;}
.xf{left:221.533314pt;}
.x11{left:226.973314pt;}
.x6a{left:239.933314pt;}
.x7d{left:246.933314pt;}
.x59{left:250.693314pt;}
.x9a{left:257.773314pt;}
.x3b{left:258.866648pt;}
.x2e{left:265.066648pt;}
.x4a{left:272.799981pt;}
.x12{left:281.106648pt;}
.x74{left:282.773314pt;}
.x1{left:283.839981pt;}
.x87{left:290.239981pt;}
.x3a{left:307.239981pt;}
.x8{left:308.333314pt;}
.x1b{left:312.933314pt;}
.x70{left:313.999981pt;}
.x5e{left:319.973314pt;}
.x1e{left:322.106648pt;}
.x2{left:323.799981pt;}
.x1d{left:340.693314pt;}
.x56{left:343.666648pt;}
.x1c{left:348.933314pt;}
.x36{left:349.893314pt;}
.x58{left:360.506648pt;}
.x86{left:367.306648pt;}
.x39{left:370.666648pt;}
.x5{left:390.106648pt;}
.x3c{left:409.133314pt;}
.x47{left:412.106648pt;}
.x7a{left:421.559981pt;}
.x7b{left:428.573314pt;}
.x71{left:436.533314pt;}
.x55{left:442.199981pt;}
.x6c{left:443.799981pt;}
.x3{left:447.799981pt;}
.x6b{left:454.866648pt;}
.x4{left:456.333314pt;}
.x15{left:479.333314pt;}
.x7e{left:492.066648pt;}
.x22{left:494.266648pt;}
.x42{left:495.599981pt;}
.x2c{left:525.666648pt;}
.x2d{left:533.666648pt;}
.x6e{left:537.999981pt;}
.x17{left:540.999981pt;}
.x41{left:547.333314pt;}
.x23{left:553.199981pt;}
.x26{left:561.706648pt;}
.x28{left:569.066648pt;}
.x5d{left:613.106648pt;}
.x31{left:614.666648pt;}
.x4d{left:623.893314pt;}
.xb{left:638.999981pt;}
.x2f{left:648.533314pt;}
.x5b{left:653.466648pt;}
.x30{left:668.506648pt;}
.x48{left:679.133314pt;}
.x75{left:690.106648pt;}
.x82{left:691.039981pt;}
.x5c{left:693.799981pt;}
.x83{left:694.773314pt;}
.x43{left:713.333314pt;}
.x76{left:720.133314pt;}
.x49{left:727.173314pt;}
.x5a{left:729.626648pt;}
.x84{left:730.799981pt;}
.x25{left:748.706648pt;}
.x7f{left:762.266648pt;}
.x2b{left:791.199981pt;}
.x27{left:804.333314pt;}
.xa{left:832.999981pt;}
.x6d{left:862.666648pt;}
.x67{left:898.199981pt;}
.x14{left:905.173314pt;}
.x50{left:907.106648pt;}
.x40{left:908.866648pt;}
.x90{left:920.000000pt;}
.x85{left:922.333314pt;}
.x45{left:928.933314pt;}
.x4e{left:930.706648pt;}
.x44{left:941.359981pt;}
.x8c{left:943.000000pt;}
.x78{left:943.933314pt;}
.x97{left:952.373314pt;}
.x8d{left:957.000000pt;}
.x63{left:966.173314pt;}
.x93{left:979.173314pt;}
.x1a{left:984.439981pt;}
.x46{left:987.799981pt;}
.x4b{left:988.893314pt;}
.x51{left:991.626648pt;}
.x95{left:992.733314pt;}
.x92{left:999.573314pt;}
.x4f{left:1007.533314pt;}
.x69{left:1018.439981pt;}
.x2a{left:1022.133314pt;}
.x29{left:1025.693314pt;}
.x96{left:1033.066648pt;}
.x68{left:1053.466648pt;}
.x34{left:1058.133314pt;}
.x8e{left:1066.000000pt;}
.x94{left:1068.893314pt;}
.x4c{left:1077.039981pt;}
.x32{left:1078.839981pt;}
.x52{left:1079.759981pt;}
.x33{left:1086.466648pt;}
.x62{left:1091.359981pt;}
.x8f{left:1093.000000pt;}
.x8a{left:1114.000000pt;}
.x61{left:1114.999981pt;}
.x89{left:1130.399981pt;}
.x1f{left:1166.839981pt;}
.x7{left:1174.999981pt;}
.xe{left:1187.173314pt;}
.x79{left:1217.866648pt;}
}




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