
    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_65b79724c33453b42b5ec272.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_376e67106fdcc2be681623b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_6d016bde7658ce66ffd54ae6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766000;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_52d8a82ffd2ae0c65b2656c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052000;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_81942247540d34ce7e9313e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.898000;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_207a9b8e19f8fd55351546d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_b0e276f81ea9085bdb44bc90.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_acca5ea04822a9b1572bbedf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.883000;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_8f837708dcdc89270150b932.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.400000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-83.922000px;}
.v2{vertical-align:-34.188000px;}
.v10{vertical-align:-25.050000px;}
.v3{vertical-align:-17.358000px;}
.v6{vertical-align:-8.964000px;}
.v12{vertical-align:-7.176000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.542000px;}
.v7{vertical-align:8.964000px;}
.v8{vertical-align:17.364000px;}
.v5{vertical-align:21.696000px;}
.vf{vertical-align:24.690000px;}
.v1{vertical-align:34.188000px;}
.vb{vertical-align:41.904000px;}
.ve{vertical-align:75.378000px;}
.vd{vertical-align:83.928000px;}
.v9{vertical-align:92.886000px;}
.v11{vertical-align:121.884000px;}
.vc{vertical-align:126.366000px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.001032px;}
.ls18{letter-spacing:0.001710px;}
.ls5e{letter-spacing:0.001932px;}
.ls26{letter-spacing:0.002298px;}
.ls2f{letter-spacing:0.002616px;}
.ls9{letter-spacing:0.002982px;}
.ls45{letter-spacing:0.003634px;}
.ls43{letter-spacing:0.004178px;}
.ls1e{letter-spacing:0.004200px;}
.ls33{letter-spacing:0.004766px;}
.ls6{letter-spacing:0.656725px;}
.ls25{letter-spacing:0.662725px;}
.ls49{letter-spacing:1.199108px;}
.ls29{letter-spacing:2.388492px;}
.ls4a{letter-spacing:2.389283px;}
.ls32{letter-spacing:2.394492px;}
.ls54{letter-spacing:2.988600px;}
.lsd{letter-spacing:2.989200px;}
.ls8{letter-spacing:2.994600px;}
.ls3d{letter-spacing:3.234017px;}
.ls47{letter-spacing:3.528017px;}
.ls42{letter-spacing:4.057702px;}
.ls3b{letter-spacing:4.063702px;}
.ls5d{letter-spacing:4.245468px;}
.ls4c{letter-spacing:4.992925px;}
.ls5c{letter-spacing:6.873468px;}
.ls3e{letter-spacing:7.051702px;}
.ls28{letter-spacing:7.171470px;}
.ls37{letter-spacing:7.177470px;}
.ls1{letter-spacing:8.367600px;}
.ls19{letter-spacing:9.958766px;}
.ls2b{letter-spacing:12.354492px;}
.ls30{letter-spacing:12.954600px;}
.ls59{letter-spacing:13.045032px;}
.ls39{letter-spacing:13.279032px;}
.ls27{letter-spacing:13.282200px;}
.ls13{letter-spacing:13.285032px;}
.ls4b{letter-spacing:13.285930px;}
.ls4f{letter-spacing:13.288200px;}
.ls11{letter-spacing:13.368600px;}
.ls51{letter-spacing:15.900310px;}
.ls38{letter-spacing:15.976200px;}
.ls12{letter-spacing:16.150200px;}
.ls1d{letter-spacing:16.603032px;}
.ls2e{letter-spacing:16.609032px;}
.ls5b{letter-spacing:16.633032px;}
.ls50{letter-spacing:17.407930px;}
.ls58{letter-spacing:17.527032px;}
.ls1c{letter-spacing:17.800200px;}
.ls5a{letter-spacing:17.821032px;}
.ls16{letter-spacing:17.826600px;}
.ls3{letter-spacing:18.773400px;}
.ls2a{letter-spacing:18.781151px;}
.ls36{letter-spacing:18.996492px;}
.ls17{letter-spacing:19.474200px;}
.lse{letter-spacing:19.566600px;}
.ls7{letter-spacing:19.921032px;}
.ls22{letter-spacing:20.010600px;}
.ls52{letter-spacing:20.034600px;}
.ls3c{letter-spacing:20.335702px;}
.ls53{letter-spacing:20.400600px;}
.ls46{letter-spacing:20.821702px;}
.ls4d{letter-spacing:20.892600px;}
.ls10{letter-spacing:21.145032px;}
.ls57{letter-spacing:21.865032px;}
.ls2d{letter-spacing:22.099151px;}
.ls35{letter-spacing:22.320492px;}
.ls21{letter-spacing:22.908600px;}
.ls4{letter-spacing:22.914600px;}
.ls2c{letter-spacing:22.915151px;}
.lsf{letter-spacing:23.124017px;}
.ls56{letter-spacing:23.511292px;}
.ls4e{letter-spacing:23.773032px;}
.ls23{letter-spacing:23.779032px;}
.ls55{letter-spacing:24.060600px;}
.ls40{letter-spacing:25.123032px;}
.ls24{letter-spacing:26.360640px;}
.ls2{letter-spacing:26.900600px;}
.ls48{letter-spacing:29.695032px;}
.ls1f{letter-spacing:48.961470px;}
.ls1a{letter-spacing:48.967470px;}
.ls14{letter-spacing:50.158200px;}
.ls5{letter-spacing:392.910600px;}
.lsa{letter-spacing:404.845151px;}
.lsb{letter-spacing:425.787479px;}
.lsc{letter-spacing:434.574492px;}
.ls20{letter-spacing:1562.845470px;}
.ls1b{letter-spacing:1725.397470px;}
.ls3a{letter-spacing:1793.197470px;}
.ls3f{letter-spacing:1859.016600px;}
.ls44{letter-spacing:1896.497701px;}
.ls34{letter-spacing:1968.704725px;}
.ls41{letter-spacing:1974.323701px;}
.ls15{letter-spacing:2023.321470px;}
.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;}
}
.ws58{word-spacing:-65.693384px;}
.ws8{word-spacing:-64.904742px;}
.ws53{word-spacing:-52.423201px;}
.ws50{word-spacing:-49.075768px;}
.ws61{word-spacing:-45.985237px;}
.ws52{word-spacing:-42.082022px;}
.ws4a{word-spacing:-41.424491px;}
.ws24{word-spacing:-14.943900px;}
.ws12{word-spacing:-13.449600px;}
.ws5{word-spacing:-11.955150px;}
.ws68{word-spacing:-6.874194px;}
.ws60{word-spacing:-6.754643px;}
.ws6b{word-spacing:-5.917784px;}
.ws7{word-spacing:-5.487426px;}
.ws62{word-spacing:-5.260253px;}
.ws54{word-spacing:-4.983300px;}
.ws87{word-spacing:-3.969110px;}
.ws63{word-spacing:-3.885414px;}
.ws13{word-spacing:-3.586545px;}
.ws5d{word-spacing:-2.294365px;}
.ws51{word-spacing:-1.659300px;}
.ws56{word-spacing:-1.396043px;}
.ws8a{word-spacing:-0.956410px;}
.ws43{word-spacing:-0.896634px;}
.ws7d{word-spacing:-0.657532px;}
.ws69{word-spacing:-0.485839px;}
.ws4c{word-spacing:-0.119551px;}
.ws3{word-spacing:-0.095641px;}
.ws22{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053200px;}
.ws14{word-spacing:-0.000109px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:0.119551px;}
.ws47{word-spacing:0.298878px;}
.ws82{word-spacing:0.612898px;}
.ws8b{word-spacing:0.836858px;}
.ws70{word-spacing:0.896634px;}
.ws6f{word-spacing:0.956410px;}
.ws7c{word-spacing:1.016185px;}
.ws32{word-spacing:1.255288px;}
.ws1e{word-spacing:1.340063px;}
.ws81{word-spacing:1.451186px;}
.ws46{word-spacing:1.613941px;}
.ws6{word-spacing:2.008474px;}
.ws33{word-spacing:2.032370px;}
.ws71{word-spacing:2.092146px;}
.ws37{word-spacing:2.151922px;}
.ws48{word-spacing:2.271473px;}
.ws2e{word-spacing:2.331248px;}
.ws72{word-spacing:2.450800px;}
.ws30{word-spacing:2.630126px;}
.ws67{word-spacing:2.689902px;}
.ws65{word-spacing:2.869229px;}
.ws64{word-spacing:2.890309px;}
.ws39{word-spacing:3.048556px;}
.ws9{word-spacing:3.120307px;}
.ws55{word-spacing:3.323680px;}
.ws88{word-spacing:3.347434px;}
.ws4b{word-spacing:3.426644px;}
.ws29{word-spacing:3.646312px;}
.ws49{word-spacing:3.765863px;}
.ws92{word-spacing:3.873469px;}
.ws1a{word-spacing:3.885414px;}
.ws20{word-spacing:4.160392px;}
.ws76{word-spacing:4.244068px;}
.wsa{word-spacing:4.250074px;}
.ws19{word-spacing:4.363619px;}
.ws7f{word-spacing:4.374745px;}
.ws80{word-spacing:4.400825px;}
.ws2d{word-spacing:4.423394px;}
.ws36{word-spacing:4.483170px;}
.ws78{word-spacing:4.722272px;}
.ws77{word-spacing:4.727086px;}
.ws5b{word-spacing:4.954284px;}
.ws23{word-spacing:4.961375px;}
.ws5c{word-spacing:4.978500px;}
.ws5f{word-spacing:5.021150px;}
.wsb{word-spacing:5.218445px;}
.wsd{word-spacing:5.433638px;}
.ws4d{word-spacing:5.439580px;}
.ws73{word-spacing:6.097111px;}
.ws17{word-spacing:6.276438px;}
.ws11{word-spacing:6.455808px;}
.ws6a{word-spacing:6.515540px;}
.ws3a{word-spacing:6.575316px;}
.ws31{word-spacing:6.754643px;}
.ws1f{word-spacing:6.838346px;}
.ws34{word-spacing:7.053521px;}
.ws2f{word-spacing:7.113296px;}
.ws28{word-spacing:7.173072px;}
.ws89{word-spacing:7.412174px;}
.ws7e{word-spacing:7.423001px;}
.ws1d{word-spacing:7.460014px;}
.ws83{word-spacing:7.651277px;}
.ws4f{word-spacing:7.890379px;}
.ws3b{word-spacing:7.938220px;}
.ws6d{word-spacing:7.950155px;}
.ws4{word-spacing:7.986040px;}
.wsc{word-spacing:8.015962px;}
.ws6c{word-spacing:8.069706px;}
.ws2c{word-spacing:8.129482px;}
.ws10{word-spacing:8.338752px;}
.ws41{word-spacing:8.428360px;}
.ws45{word-spacing:8.488135px;}
.ws57{word-spacing:8.516700px;}
.ws7b{word-spacing:8.906564px;}
.ws1b{word-spacing:8.966340px;}
.ws2b{word-spacing:9.026116px;}
.ws79{word-spacing:9.085891px;}
.ws6e{word-spacing:9.145667px;}
.ws44{word-spacing:9.205442px;}
.ws42{word-spacing:9.504320px;}
.ws8d{word-spacing:9.516299px;}
.ws2a{word-spacing:9.623872px;}
.ws16{word-spacing:9.743423px;}
.ws74{word-spacing:9.803198px;}
.wse{word-spacing:10.114099px;}
.ws93{word-spacing:10.281429px;}
.ws94{word-spacing:10.329250px;}
.wsf{word-spacing:10.598285px;}
.ws7a{word-spacing:10.640057px;}
.ws27{word-spacing:10.699832px;}
.ws90{word-spacing:10.759635px;}
.ws8e{word-spacing:11.046559px;}
.ws66{word-spacing:12.453998px;}
.ws1c{word-spacing:12.732203px;}
.ws59{word-spacing:13.730700px;}
.ws8f{word-spacing:14.154898px;}
.ws4e{word-spacing:15.357998px;}
.ws75{word-spacing:15.541656px;}
.ws8c{word-spacing:17.932725px;}
.ws91{word-spacing:18.267469px;}
.ws38{word-spacing:19.845499px;}
.ws35{word-spacing:19.893370px;}
.ws1{word-spacing:19.896875px;}
.ws15{word-spacing:29.828024px;}
.ws5e{word-spacing:117.224700px;}
.ws3c{word-spacing:143.031415px;}
.ws84{word-spacing:172.154160px;}
.ws85{word-spacing:178.141037px;}
.ws86{word-spacing:196.064460px;}
.ws3f{word-spacing:220.070401px;}
.ws3d{word-spacing:227.626056px;}
.ws3e{word-spacing:249.336608px;}
.ws40{word-spacing:251.536356px;}
.ws26{word-spacing:345.723998px;}
.ws25{word-spacing:390.152248px;}
.ws21{word-spacing:422.083950px;}
.ws5a{word-spacing:640.533277px;}
._3a{margin-left:-17.938693px;}
._6{margin-left:-8.705020px;}
._5{margin-left:-6.121080px;}
._4{margin-left:-4.782115px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.099891px;}
._9{width:1.966613px;}
._3{width:3.634366px;}
._1b{width:4.943924px;}
._1d{width:6.542328px;}
._8{width:8.392550px;}
._1c{width:9.982525px;}
._b{width:17.119757px;}
._19{width:18.255556px;}
._1a{width:19.501858px;}
._7{width:20.957448px;}
._11{width:23.177396px;}
._10{width:25.584024px;}
._1e{width:27.606100px;}
._12{width:29.887800px;}
._a{width:39.223025px;}
._14{width:86.603107px;}
._38{width:99.236692px;}
._34{width:166.511329px;}
._13{width:186.882905px;}
._25{width:190.852015px;}
._33{width:198.407669px;}
._23{width:200.751254px;}
._2a{width:202.711523px;}
._2d{width:204.863506px;}
._26{width:207.732686px;}
._32{width:210.195439px;}
._30{width:211.578644px;}
._31{width:216.005650px;}
._2c{width:218.635783px;}
._22{width:219.758896px;}
._2b{width:221.405193px;}
._28{width:223.943870px;}
._24{width:227.502904px;}
._2e{width:229.299777px;}
._27{width:230.642939px;}
._37{width:243.550316px;}
._2f{width:245.315493px;}
._29{width:254.553239px;}
._17{width:264.152107px;}
._39{width:274.155500px;}
._15{width:282.100802px;}
._16{width:306.011402px;}
._18{width:326.949442px;}
._e{width:417.114137px;}
._f{width:427.036886px;}
._d{width:430.384320px;}
._c{width:433.731754px;}
._36{width:493.317310px;}
._35{width:505.320280px;}
._21{width:894.826067px;}
._1f{width:1232.622772px;}
._20{width:2031.644200px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:35.865600px;}
.fse{font-size:40.647600px;}
.fsf{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.200200px;}
.fsc{font-size:53.798400px;}
.fsb{font-size:59.058000px;}
.fsd{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.708400px;}
.fs6{font-size:95.641200px;}
.fs9{font-size:101.619000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y4b{bottom:53.050500px;}
.y5{bottom:66.525004px;}
.y4a{bottom:67.995000px;}
.y90{bottom:84.283500px;}
.y49{bottom:87.421500px;}
.yc9{bottom:88.170000px;}
.yd2{bottom:93.549000px;}
.y8f{bottom:94.894500px;}
.y4{bottom:97.125005px;}
.y48{bottom:102.366000px;}
.yc8{bottom:106.474500px;}
.yef{bottom:107.574000px;}
.yd1{bottom:116.862000px;}
.y47{bottom:117.310500px;}
.yc7{bottom:124.780500px;}
.y68{bottom:126.622500px;}
.yea{bottom:129.220500px;}
.y8e{bottom:129.402000px;}
.y22{bottom:139.264499px;}
.yc6{bottom:143.086500px;}
.yd0{bottom:144.310500px;}
.y46{bottom:144.957000px;}
.y8d{bottom:152.784000px;}
.yee{bottom:158.383500px;}
.yc5{bottom:161.392500px;}
.ycf{bottom:162.426000px;}
.y8c{bottom:163.393500px;}
.y45{bottom:163.717500px;}
.yc4{bottom:179.698500px;}
.ye9{bottom:180.028500px;}
.yce{bottom:180.541500px;}
.y44{bottom:191.983500px;}
.y8b{bottom:193.132500px;}
.y19{bottom:196.933500px;}
.yc3{bottom:198.003000px;}
.y8a{bottom:203.742000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y43{bottom:210.216000px;}
.yc2{bottom:216.309000px;}
.ycd{bottom:217.687500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y42{bottom:228.448500px;}
.yc1{bottom:234.615000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y89{bottom:238.251000px;}
.y41{bottom:246.681000px;}
.yc0{bottom:252.921000px;}
.y88{bottom:256.501500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y40{bottom:264.913500px;}
.ycc{bottom:268.497000px;}
.ybf{bottom:271.227000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y87{bottom:274.753500px;}
.y3f{bottom:283.146000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ybe{bottom:289.531500px;}
.y86{bottom:293.004000px;}
.y3e{bottom:301.377000px;}
.ybd{bottom:307.837500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y85{bottom:316.386000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ybc{bottom:326.143500px;}
.y84{bottom:326.997000px;}
.y3d{bottom:330.373500px;}
.ybb{bottom:344.449500px;}
.y10{bottom:348.133500px;}
.y83{bottom:361.504500px;}
.yba{bottom:362.755500px;}
.yed{bottom:378.517500px;}
.y82{bottom:379.756500px;}
.yb9{bottom:381.061500px;}
.yf{bottom:386.785499px;}
.y3c{bottom:393.477000px;}
.y81{bottom:398.007000px;}
.ye8{bottom:398.149500px;}
.yb8{bottom:399.366000px;}
.ye{bottom:408.044999px;}
.y80{bottom:416.259000px;}
.y10e{bottom:422.110500px;}
.yb7{bottom:428.877000px;}
.y7f{bottom:434.511000px;}
.y10d{bottom:437.053500px;}
.y3b{bottom:437.296500px;}
.y10c{bottom:451.998000px;}
.y7e{bottom:452.761500px;}
.y67{bottom:458.925000px;}
.yb6{bottom:461.805000px;}
.y3a{bottom:462.700500px;}
.y10b{bottom:466.942500px;}
.y7d{bottom:471.013500px;}
.yb5{bottom:472.416000px;}
.y66{bottom:477.315000px;}
.y39{bottom:479.139000px;}
.y38{bottom:479.572500px;}
.y10a{bottom:481.885500px;}
.y7c{bottom:489.264000px;}
.y65{bottom:495.706500px;}
.y109{bottom:496.830000px;}
.yb4{bottom:497.790000px;}
.yd{bottom:502.864502px;}
.yb3{bottom:508.399500px;}
.y108{bottom:511.774500px;}
.y37{bottom:512.016000px;}
.y64{bottom:514.096500px;}
.yc{bottom:520.864502px;}
.y107{bottom:526.717500px;}
.y7b{bottom:527.361000px;}
.y36{bottom:528.454500px;}
.ycb{bottom:529.966500px;}
.y63{bottom:532.488000px;}
.yb{bottom:538.864499px;}
.y106{bottom:541.662000px;}
.yb2{bottom:541.836000px;}
.y35{bottom:544.893000px;}
.y62{bottom:550.879500px;}
.y105{bottom:556.606500px;}
.ya{bottom:556.864499px;}
.yb1{bottom:560.142000px;}
.y34{bottom:561.331500px;}
.y7a{bottom:567.051000px;}
.y61{bottom:569.269500px;}
.y104{bottom:571.549500px;}
.y33{bottom:577.768500px;}
.yb0{bottom:578.448000px;}
.y79{bottom:585.301500px;}
.y103{bottom:586.494000px;}
.y60{bottom:587.661000px;}
.y32{bottom:594.207000px;}
.y102{bottom:601.438500px;}
.y78{bottom:603.553500px;}
.yec{bottom:604.329000px;}
.y5f{bottom:606.052500px;}
.y31{bottom:610.645500px;}
.y101{bottom:616.381500px;}
.yaf{bottom:616.923000px;}
.y77{bottom:621.805500px;}
.y5e{bottom:624.442500px;}
.y30{bottom:627.084000px;}
.y100{bottom:631.326000px;}
.y5d{bottom:642.834000px;}
.y2f{bottom:643.522500px;}
.ye7{bottom:644.884500px;}
.y9{bottom:645.510000px;}
.yff{bottom:646.269000px;}
.yae{bottom:657.264000px;}
.yfe{bottom:661.213500px;}
.y5c{bottom:661.224000px;}
.y8{bottom:666.771000px;}
.ye6{bottom:667.155000px;}
.y2e{bottom:668.928000px;}
.yad{bottom:675.570000px;}
.yfd{bottom:676.158000px;}
.y5b{bottom:679.615500px;}
.ye5{bottom:682.098000px;}
.y76{bottom:687.813000px;}
.ye4{bottom:697.042500px;}
.yab{bottom:697.291500px;}
.y5a{bottom:698.007000px;}
.yfc{bottom:700.068000px;}
.y75{bottom:702.757500px;}
.ya8{bottom:704.691000px;}
.yac{bottom:715.204500px;}
.ya7{bottom:715.302000px;}
.y59{bottom:716.397000px;}
.y74{bottom:717.700500px;}
.ye3{bottom:718.053000px;}
.y7{bottom:726.298500px;}
.yaa{bottom:729.498000px;}
.y2d{bottom:731.671500px;}
.ye2{bottom:732.997500px;}
.ya9{bottom:734.148000px;}
.yfb{bottom:735.933000px;}
.y73{bottom:738.712500px;}
.ya5{bottom:746.868000px;}
.ye1{bottom:752.113500px;}
.y3{bottom:752.599495px;}
.y2c{bottom:753.192000px;}
.y72{bottom:753.655500px;}
.yfa{bottom:753.867000px;}
.ya2{bottom:754.267500px;}
.ya6{bottom:764.781000px;}
.ya1{bottom:764.878500px;}
.y71{bottom:772.771500px;}
.y58{bottom:774.354000px;}
.yca{bottom:778.012500px;}
.ya4{bottom:779.074500px;}
.y2b{bottom:779.494500px;}
.yf9{bottom:780.765000px;}
.ya3{bottom:783.724500px;}
.y57{bottom:793.782000px;}
.ye0{bottom:796.530000px;}
.y9f{bottom:799.243500px;}
.y9c{bottom:806.643000px;}
.ydf{bottom:811.473000px;}
.y56{bottom:813.208500px;}
.yf8{bottom:816.631500px;}
.y2a{bottom:817.026000px;}
.ya0{bottom:817.155000px;}
.y97{bottom:817.252500px;}
.yeb{bottom:819.783000px;}
.y9a{bottom:821.526000px;}
.y70{bottom:825.322500px;}
.yde{bottom:826.417500px;}
.y9b{bottom:827.728500px;}
.y99{bottom:830.493000px;}
.y9e{bottom:831.450000px;}
.y55{bottom:832.636500px;}
.yf7{bottom:834.564000px;}
.y9d{bottom:836.098500px;}
.y98{bottom:839.458500px;}
.ydd{bottom:841.362000px;}
.y6f{bottom:843.573000px;}
.y29{bottom:846.913500px;}
.y54{bottom:852.063000px;}
.ydc{bottom:856.305000px;}
.yf6{bottom:861.463500px;}
.y6e{bottom:861.825000px;}
.y96{bottom:861.865500px;}
.ydb{bottom:871.249500px;}
.y53{bottom:871.491000px;}
.y2{bottom:879.369000px;}
.y95{bottom:880.171500px;}
.y28{bottom:883.563000px;}
.yda{bottom:886.192500px;}
.y52{bottom:890.917500px;}
.yf5{bottom:897.328500px;}
.y6d{bottom:899.920500px;}
.yd9{bottom:901.137000px;}
.y27{bottom:901.495500px;}
.y94{bottom:903.663000px;}
.y51{bottom:910.344000px;}
.y93{bottom:914.272500px;}
.yf4{bottom:915.261000px;}
.yd8{bottom:916.081500px;}
.y6c{bottom:928.732500px;}
.y50{bottom:929.772000px;}
.yd7{bottom:931.024500px;}
.yf3{bottom:933.193500px;}
.y26{bottom:941.653500px;}
.yd6{bottom:945.969000px;}
.y92{bottom:948.889500px;}
.y4f{bottom:949.198500px;}
.yf2{bottom:951.126000px;}
.y25{bottom:956.596500px;}
.yd5{bottom:960.913500px;}
.y1{bottom:966.726000px;}
.y6b{bottom:968.422500px;}
.y4e{bottom:968.626500px;}
.yf1{bottom:969.060000px;}
.y91{bottom:976.906500px;}
.yd4{bottom:981.924000px;}
.y6a{bottom:986.673000px;}
.yf0{bottom:986.992500px;}
.y4d{bottom:995.524500px;}
.yd3{bottom:1001.040000px;}
.y69{bottom:1004.925000px;}
.y24{bottom:1009.275000px;}
.y23{bottom:1035.292500px;}
.y4c{bottom:1037.802000px;}
.h23{height:2.749678px;}
.h15{height:28.006196px;}
.h24{height:28.704161px;}
.h7{height:32.130000px;}
.h10{height:32.804932px;}
.h25{height:34.896895px;}
.h11{height:37.174694px;}
.ha{height:38.782946px;}
.hc{height:39.882380px;}
.h2f{height:40.290380px;}
.h2e{height:40.356380px;}
.h19{height:41.006062px;}
.h2c{height:41.185388px;}
.h13{height:41.304940px;}
.h16{height:41.424380px;}
.h1b{height:42.069398px;}
.h1a{height:42.075398px;}
.h12{height:44.867866px;}
.h6{height:45.900000px;}
.h2d{height:47.269910px;}
.h3{height:48.195000px;}
.h14{height:49.852850px;}
.h28{height:50.242850px;}
.h2{height:55.080000px;}
.h17{height:56.592895px;}
.h18{height:56.598895px;}
.h21{height:59.586895px;}
.h26{height:59.814895px;}
.hd{height:59.823821px;}
.hb{height:72.113465px;}
.hf{height:74.878962px;}
.h5{height:78.030000px;}
.h29{height:83.089388px;}
.he{height:84.750246px;}
.h1c{height:86.671678px;}
.h1e{height:86.677678px;}
.h27{height:91.750850px;}
.h1f{height:91.756850px;}
.h2a{height:92.290850px;}
.h2b{height:92.296850px;}
.h4{height:119.055004px;}
.h22{height:124.633678px;}
.h1d{height:129.115678px;}
.h20{height:134.200850px;}
.h9{height:1113.750000px;}
.h8{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:55.666500px;}
.x11{left:59.406000px;}
.x15{left:61.644000px;}
.xa{left:63.159000px;}
.x9{left:64.888500px;}
.x12{left:66.063000px;}
.x3d{left:69.606000px;}
.x10{left:73.599000px;}
.x13{left:78.082500px;}
.x16{left:79.815000px;}
.x3c{left:84.807000px;}
.x1e{left:91.486500px;}
.x1c{left:92.667000px;}
.x3b{left:96.015000px;}
.x24{left:97.509000px;}
.x26{left:98.719500px;}
.x1{left:102.045000px;}
.x35{left:103.399500px;}
.x2{left:106.297500px;}
.x14{left:110.791500px;}
.x3e{left:126.799500px;}
.x21{left:133.218000px;}
.x39{left:140.757000px;}
.x34{left:143.584500px;}
.x3a{left:146.298000px;}
.x33{left:153.490500px;}
.xb{left:155.059500px;}
.xd{left:156.588000px;}
.x38{left:158.848500px;}
.x19{left:160.527000px;}
.x31{left:161.952000px;}
.x27{left:163.674000px;}
.x1a{left:167.326500px;}
.x2d{left:169.123500px;}
.x2e{left:171.003000px;}
.x32{left:173.901000px;}
.x2c{left:176.845500px;}
.x30{left:178.624500px;}
.x28{left:180.628500px;}
.x18{left:182.109000px;}
.xc{left:184.701000px;}
.x2f{left:187.755000px;}
.x1d{left:192.084000px;}
.x2a{left:194.599500px;}
.x29{left:200.442000px;}
.x4{left:203.484001px;}
.x2b{left:216.357000px;}
.x25{left:229.443000px;}
.x5{left:254.913000px;}
.x1f{left:266.565000px;}
.x22{left:274.324500px;}
.xe{left:282.750000px;}
.x7{left:295.593000px;}
.x17{left:304.686000px;}
.x20{left:307.204500px;}
.x6{left:311.635500px;}
.x36{left:339.762000px;}
.x3{left:454.959000px;}
.x37{left:484.020000px;}
.x23{left:519.004500px;}
.x1b{left:538.465500px;}
.x8{left:612.810000px;}
@media print{
.va{vertical-align:-74.597333pt;}
.v2{vertical-align:-30.389333pt;}
.v10{vertical-align:-22.266667pt;}
.v3{vertical-align:-15.429333pt;}
.v6{vertical-align:-7.968000pt;}
.v12{vertical-align:-6.378667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.370667pt;}
.v7{vertical-align:7.968000pt;}
.v8{vertical-align:15.434667pt;}
.v5{vertical-align:19.285333pt;}
.vf{vertical-align:21.946667pt;}
.v1{vertical-align:30.389333pt;}
.vb{vertical-align:37.248000pt;}
.ve{vertical-align:67.002667pt;}
.vd{vertical-align:74.602667pt;}
.v9{vertical-align:82.565333pt;}
.v11{vertical-align:108.341333pt;}
.vc{vertical-align:112.325333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000917pt;}
.ls18{letter-spacing:0.001520pt;}
.ls5e{letter-spacing:0.001717pt;}
.ls26{letter-spacing:0.002043pt;}
.ls2f{letter-spacing:0.002325pt;}
.ls9{letter-spacing:0.002651pt;}
.ls45{letter-spacing:0.003230pt;}
.ls43{letter-spacing:0.003714pt;}
.ls1e{letter-spacing:0.003733pt;}
.ls33{letter-spacing:0.004237pt;}
.ls6{letter-spacing:0.583756pt;}
.ls25{letter-spacing:0.589089pt;}
.ls49{letter-spacing:1.065874pt;}
.ls29{letter-spacing:2.123104pt;}
.ls4a{letter-spacing:2.123807pt;}
.ls32{letter-spacing:2.128437pt;}
.ls54{letter-spacing:2.656533pt;}
.lsd{letter-spacing:2.657067pt;}
.ls8{letter-spacing:2.661867pt;}
.ls3d{letter-spacing:2.874682pt;}
.ls47{letter-spacing:3.136015pt;}
.ls42{letter-spacing:3.606846pt;}
.ls3b{letter-spacing:3.612179pt;}
.ls5d{letter-spacing:3.773749pt;}
.ls4c{letter-spacing:4.438156pt;}
.ls5c{letter-spacing:6.109749pt;}
.ls3e{letter-spacing:6.268179pt;}
.ls28{letter-spacing:6.374640pt;}
.ls37{letter-spacing:6.379973pt;}
.ls1{letter-spacing:7.437867pt;}
.ls19{letter-spacing:8.852237pt;}
.ls2b{letter-spacing:10.981771pt;}
.ls30{letter-spacing:11.515200pt;}
.ls59{letter-spacing:11.595584pt;}
.ls39{letter-spacing:11.803584pt;}
.ls27{letter-spacing:11.806400pt;}
.ls13{letter-spacing:11.808917pt;}
.ls4b{letter-spacing:11.809715pt;}
.ls4f{letter-spacing:11.811733pt;}
.ls11{letter-spacing:11.883200pt;}
.ls51{letter-spacing:14.133609pt;}
.ls38{letter-spacing:14.201067pt;}
.ls12{letter-spacing:14.355733pt;}
.ls1d{letter-spacing:14.758251pt;}
.ls2e{letter-spacing:14.763584pt;}
.ls5b{letter-spacing:14.784917pt;}
.ls50{letter-spacing:15.473715pt;}
.ls58{letter-spacing:15.579584pt;}
.ls1c{letter-spacing:15.822400pt;}
.ls5a{letter-spacing:15.840917pt;}
.ls16{letter-spacing:15.845867pt;}
.ls3{letter-spacing:16.687467pt;}
.ls2a{letter-spacing:16.694356pt;}
.ls36{letter-spacing:16.885771pt;}
.ls17{letter-spacing:17.310400pt;}
.lse{letter-spacing:17.392533pt;}
.ls7{letter-spacing:17.707584pt;}
.ls22{letter-spacing:17.787200pt;}
.ls52{letter-spacing:17.808533pt;}
.ls3c{letter-spacing:18.076179pt;}
.ls53{letter-spacing:18.133867pt;}
.ls46{letter-spacing:18.508179pt;}
.ls4d{letter-spacing:18.571200pt;}
.ls10{letter-spacing:18.795584pt;}
.ls57{letter-spacing:19.435584pt;}
.ls2d{letter-spacing:19.643690pt;}
.ls35{letter-spacing:19.840437pt;}
.ls21{letter-spacing:20.363200pt;}
.ls4{letter-spacing:20.368533pt;}
.ls2c{letter-spacing:20.369023pt;}
.lsf{letter-spacing:20.554682pt;}
.ls56{letter-spacing:20.898926pt;}
.ls4e{letter-spacing:21.131584pt;}
.ls23{letter-spacing:21.136917pt;}
.ls55{letter-spacing:21.387200pt;}
.ls40{letter-spacing:22.331584pt;}
.ls24{letter-spacing:23.431680pt;}
.ls2{letter-spacing:23.911645pt;}
.ls48{letter-spacing:26.395584pt;}
.ls1f{letter-spacing:43.521307pt;}
.ls1a{letter-spacing:43.526640pt;}
.ls14{letter-spacing:44.585067pt;}
.ls5{letter-spacing:349.253867pt;}
.lsa{letter-spacing:359.862356pt;}
.lsb{letter-spacing:378.477759pt;}
.lsc{letter-spacing:386.288437pt;}
.ls20{letter-spacing:1389.195973pt;}
.ls1b{letter-spacing:1533.686640pt;}
.ls3a{letter-spacing:1593.953307pt;}
.ls3f{letter-spacing:1652.459200pt;}
.ls44{letter-spacing:1685.775734pt;}
.ls34{letter-spacing:1749.959756pt;}
.ls41{letter-spacing:1754.954401pt;}
.ls15{letter-spacing:1798.507973pt;}
.ws58{word-spacing:-58.394119pt;}
.ws8{word-spacing:-57.693104pt;}
.ws53{word-spacing:-46.598401pt;}
.ws50{word-spacing:-43.622905pt;}
.ws61{word-spacing:-40.875766pt;}
.ws52{word-spacing:-37.406242pt;}
.ws4a{word-spacing:-36.821770pt;}
.ws24{word-spacing:-13.283467pt;}
.ws12{word-spacing:-11.955200pt;}
.ws5{word-spacing:-10.626800pt;}
.ws68{word-spacing:-6.110395pt;}
.ws60{word-spacing:-6.004127pt;}
.ws6b{word-spacing:-5.260253pt;}
.ws7{word-spacing:-4.877712pt;}
.ws62{word-spacing:-4.675780pt;}
.ws54{word-spacing:-4.429600pt;}
.ws87{word-spacing:-3.528098pt;}
.ws63{word-spacing:-3.453701pt;}
.ws13{word-spacing:-3.188040pt;}
.ws5d{word-spacing:-2.039436pt;}
.ws51{word-spacing:-1.474933pt;}
.ws56{word-spacing:-1.240927pt;}
.ws8a{word-spacing:-0.850142pt;}
.ws43{word-spacing:-0.797008pt;}
.ws7d{word-spacing:-0.584473pt;}
.ws69{word-spacing:-0.431857pt;}
.ws4c{word-spacing:-0.106268pt;}
.ws3{word-spacing:-0.085014pt;}
.ws22{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047289pt;}
.ws14{word-spacing:-0.000097pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.106268pt;}
.ws47{word-spacing:0.265669pt;}
.ws82{word-spacing:0.544798pt;}
.ws8b{word-spacing:0.743874pt;}
.ws70{word-spacing:0.797008pt;}
.ws6f{word-spacing:0.850142pt;}
.ws7c{word-spacing:0.903276pt;}
.ws32{word-spacing:1.115811pt;}
.ws1e{word-spacing:1.191167pt;}
.ws81{word-spacing:1.289943pt;}
.ws46{word-spacing:1.434614pt;}
.ws6{word-spacing:1.785310pt;}
.ws33{word-spacing:1.806551pt;}
.ws71{word-spacing:1.859685pt;}
.ws37{word-spacing:1.912819pt;}
.ws48{word-spacing:2.019087pt;}
.ws2e{word-spacing:2.072221pt;}
.ws72{word-spacing:2.178489pt;}
.ws30{word-spacing:2.337890pt;}
.ws67{word-spacing:2.391024pt;}
.ws65{word-spacing:2.550426pt;}
.ws64{word-spacing:2.569164pt;}
.ws39{word-spacing:2.709827pt;}
.ws9{word-spacing:2.773606pt;}
.ws55{word-spacing:2.954382pt;}
.ws88{word-spacing:2.975497pt;}
.ws4b{word-spacing:3.045906pt;}
.ws29{word-spacing:3.241166pt;}
.ws49{word-spacing:3.347434pt;}
.ws92{word-spacing:3.443083pt;}
.ws1a{word-spacing:3.453701pt;}
.ws20{word-spacing:3.698126pt;}
.ws76{word-spacing:3.772505pt;}
.wsa{word-spacing:3.777843pt;}
.ws19{word-spacing:3.878772pt;}
.ws7f{word-spacing:3.888662pt;}
.ws80{word-spacing:3.911844pt;}
.ws2d{word-spacing:3.931906pt;}
.ws36{word-spacing:3.985040pt;}
.ws78{word-spacing:4.197575pt;}
.ws77{word-spacing:4.201854pt;}
.ws5b{word-spacing:4.403808pt;}
.ws23{word-spacing:4.410111pt;}
.ws5c{word-spacing:4.425333pt;}
.ws5f{word-spacing:4.463245pt;}
.wsb{word-spacing:4.638618pt;}
.wsd{word-spacing:4.829901pt;}
.ws4d{word-spacing:4.835182pt;}
.ws73{word-spacing:5.419654pt;}
.ws17{word-spacing:5.579056pt;}
.ws11{word-spacing:5.738496pt;}
.ws6a{word-spacing:5.791591pt;}
.ws3a{word-spacing:5.844725pt;}
.ws31{word-spacing:6.004127pt;}
.ws1f{word-spacing:6.078530pt;}
.ws34{word-spacing:6.269796pt;}
.ws2f{word-spacing:6.322930pt;}
.ws28{word-spacing:6.376064pt;}
.ws89{word-spacing:6.588599pt;}
.ws7e{word-spacing:6.598223pt;}
.ws1d{word-spacing:6.631123pt;}
.ws83{word-spacing:6.801135pt;}
.ws4f{word-spacing:7.013670pt;}
.ws3b{word-spacing:7.056195pt;}
.ws6d{word-spacing:7.066804pt;}
.ws4{word-spacing:7.098702pt;}
.wsc{word-spacing:7.125299pt;}
.ws6c{word-spacing:7.173072pt;}
.ws2c{word-spacing:7.226206pt;}
.ws10{word-spacing:7.412224pt;}
.ws41{word-spacing:7.491875pt;}
.ws45{word-spacing:7.545009pt;}
.ws57{word-spacing:7.570400pt;}
.ws7b{word-spacing:7.916946pt;}
.ws1b{word-spacing:7.970080pt;}
.ws2b{word-spacing:8.023214pt;}
.ws79{word-spacing:8.076348pt;}
.ws6e{word-spacing:8.129482pt;}
.ws44{word-spacing:8.182615pt;}
.ws42{word-spacing:8.448285pt;}
.ws8d{word-spacing:8.458933pt;}
.ws2a{word-spacing:8.554553pt;}
.ws16{word-spacing:8.660820pt;}
.ws74{word-spacing:8.713954pt;}
.wse{word-spacing:8.990310pt;}
.ws93{word-spacing:9.139048pt;}
.ws94{word-spacing:9.181555pt;}
.wsf{word-spacing:9.420698pt;}
.ws7a{word-spacing:9.457828pt;}
.ws27{word-spacing:9.510962pt;}
.ws90{word-spacing:9.564120pt;}
.ws8e{word-spacing:9.819163pt;}
.ws66{word-spacing:11.070221pt;}
.ws1c{word-spacing:11.317514pt;}
.ws59{word-spacing:12.205067pt;}
.ws8f{word-spacing:12.582131pt;}
.ws4e{word-spacing:13.651554pt;}
.ws75{word-spacing:13.814805pt;}
.ws8c{word-spacing:15.940200pt;}
.ws91{word-spacing:16.237750pt;}
.ws38{word-spacing:17.640444pt;}
.ws35{word-spacing:17.682995pt;}
.ws1{word-spacing:17.686111pt;}
.ws15{word-spacing:26.513799pt;}
.ws5e{word-spacing:104.199733pt;}
.ws3c{word-spacing:127.139035pt;}
.ws84{word-spacing:153.025920pt;}
.ws85{word-spacing:158.347588pt;}
.ws86{word-spacing:174.279520pt;}
.ws3f{word-spacing:195.618134pt;}
.ws3d{word-spacing:202.334272pt;}
.ws3e{word-spacing:221.632541pt;}
.ws40{word-spacing:223.587872pt;}
.ws26{word-spacing:307.310221pt;}
.ws25{word-spacing:346.801998pt;}
.ws21{word-spacing:375.185733pt;}
.ws5a{word-spacing:569.362913pt;}
._3a{margin-left:-15.945505pt;}
._6{margin-left:-7.737795pt;}
._5{margin-left:-5.440960pt;}
._4{margin-left:-4.250769pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.977681pt;}
._9{width:1.748100pt;}
._3{width:3.230547pt;}
._1b{width:4.394599pt;}
._1d{width:5.815403pt;}
._8{width:7.460045pt;}
._1c{width:8.873356pt;}
._b{width:15.217562pt;}
._19{width:16.227161pt;}
._1a{width:17.334985pt;}
._7{width:18.628843pt;}
._11{width:20.602130pt;}
._10{width:22.741355pt;}
._1e{width:24.538755pt;}
._12{width:26.566933pt;}
._a{width:34.864911pt;}
._14{width:76.980539pt;}
._38{width:88.210393pt;}
._34{width:148.010070pt;}
._13{width:166.118138pt;}
._25{width:169.646235pt;}
._33{width:176.362373pt;}
._23{width:178.445559pt;}
._2a{width:180.188021pt;}
._2d{width:182.100894pt;}
._26{width:184.651277pt;}
._32{width:186.840390pt;}
._30{width:188.069906pt;}
._31{width:192.005022pt;}
._2c{width:194.342918pt;}
._22{width:195.341241pt;}
._2b{width:196.804616pt;}
._28{width:199.061218pt;}
._24{width:202.224803pt;}
._2e{width:203.822024pt;}
._27{width:205.015946pt;}
._37{width:216.489170pt;}
._2f{width:218.058216pt;}
._29{width:226.269546pt;}
._17{width:234.801873pt;}
._39{width:243.693778pt;}
._15{width:250.756269pt;}
._16{width:272.010135pt;}
._18{width:290.621726pt;}
._e{width:370.768122pt;}
._f{width:379.588343pt;}
._d{width:382.563840pt;}
._c{width:385.539337pt;}
._36{width:438.504275pt;}
._35{width:449.173582pt;}
._21{width:795.400948pt;}
._1f{width:1095.664686pt;}
._20{width:1805.905955pt;}
.fs10{font-size:31.880533pt;}
.fse{font-size:36.131200pt;}
.fsf{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.289067pt;}
.fsc{font-size:47.820800pt;}
.fsb{font-size:52.496000pt;}
.fsd{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.074133pt;}
.fs6{font-size:85.014400pt;}
.fs9{font-size:90.328000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y4b{bottom:47.156000pt;}
.y5{bottom:59.133337pt;}
.y4a{bottom:60.440000pt;}
.y90{bottom:74.918667pt;}
.y49{bottom:77.708000pt;}
.yc9{bottom:78.373333pt;}
.yd2{bottom:83.154667pt;}
.y8f{bottom:84.350667pt;}
.y4{bottom:86.333337pt;}
.y48{bottom:90.992000pt;}
.yc8{bottom:94.644000pt;}
.yef{bottom:95.621333pt;}
.yd1{bottom:103.877333pt;}
.y47{bottom:104.276000pt;}
.yc7{bottom:110.916000pt;}
.y68{bottom:112.553333pt;}
.yea{bottom:114.862667pt;}
.y8e{bottom:115.024000pt;}
.y22{bottom:123.790666pt;}
.yc6{bottom:127.188000pt;}
.yd0{bottom:128.276000pt;}
.y46{bottom:128.850667pt;}
.y8d{bottom:135.808000pt;}
.yee{bottom:140.785333pt;}
.yc5{bottom:143.460000pt;}
.ycf{bottom:144.378667pt;}
.y8c{bottom:145.238667pt;}
.y45{bottom:145.526667pt;}
.yc4{bottom:159.732000pt;}
.ye9{bottom:160.025333pt;}
.yce{bottom:160.481333pt;}
.y44{bottom:170.652000pt;}
.y8b{bottom:171.673333pt;}
.y19{bottom:175.052000pt;}
.yc3{bottom:176.002667pt;}
.y8a{bottom:181.104000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y43{bottom:186.858667pt;}
.yc2{bottom:192.274667pt;}
.ycd{bottom:193.500000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y42{bottom:203.065333pt;}
.yc1{bottom:208.546667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y89{bottom:211.778667pt;}
.y41{bottom:219.272000pt;}
.yc0{bottom:224.818667pt;}
.y88{bottom:228.001333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y40{bottom:235.478667pt;}
.ycc{bottom:238.664000pt;}
.ybf{bottom:241.090667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y87{bottom:244.225333pt;}
.y3f{bottom:251.685333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ybe{bottom:257.361333pt;}
.y86{bottom:260.448000pt;}
.y3e{bottom:267.890667pt;}
.ybd{bottom:273.633333pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y85{bottom:281.232000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ybc{bottom:289.905333pt;}
.y84{bottom:290.664000pt;}
.y3d{bottom:293.665333pt;}
.ybb{bottom:306.177333pt;}
.y10{bottom:309.452000pt;}
.y83{bottom:321.337333pt;}
.yba{bottom:322.449333pt;}
.yed{bottom:336.460000pt;}
.y82{bottom:337.561333pt;}
.yb9{bottom:338.721333pt;}
.yf{bottom:343.809333pt;}
.y3c{bottom:349.757333pt;}
.y81{bottom:353.784000pt;}
.ye8{bottom:353.910667pt;}
.yb8{bottom:354.992000pt;}
.ye{bottom:362.706666pt;}
.y80{bottom:370.008000pt;}
.y10e{bottom:375.209333pt;}
.yb7{bottom:381.224000pt;}
.y7f{bottom:386.232000pt;}
.y10d{bottom:388.492000pt;}
.y3b{bottom:388.708000pt;}
.y10c{bottom:401.776000pt;}
.y7e{bottom:402.454667pt;}
.y67{bottom:407.933333pt;}
.yb6{bottom:410.493333pt;}
.y3a{bottom:411.289333pt;}
.y10b{bottom:415.060000pt;}
.y7d{bottom:418.678667pt;}
.yb5{bottom:419.925333pt;}
.y66{bottom:424.280000pt;}
.y39{bottom:425.901333pt;}
.y38{bottom:426.286667pt;}
.y10a{bottom:428.342667pt;}
.y7c{bottom:434.901333pt;}
.y65{bottom:440.628000pt;}
.y109{bottom:441.626667pt;}
.yb4{bottom:442.480000pt;}
.yd{bottom:446.990669pt;}
.yb3{bottom:451.910667pt;}
.y108{bottom:454.910667pt;}
.y37{bottom:455.125333pt;}
.y64{bottom:456.974667pt;}
.yc{bottom:462.990669pt;}
.y107{bottom:468.193333pt;}
.y7b{bottom:468.765333pt;}
.y36{bottom:469.737333pt;}
.ycb{bottom:471.081333pt;}
.y63{bottom:473.322667pt;}
.yb{bottom:478.990666pt;}
.y106{bottom:481.477333pt;}
.yb2{bottom:481.632000pt;}
.y35{bottom:484.349333pt;}
.y62{bottom:489.670667pt;}
.y105{bottom:494.761333pt;}
.ya{bottom:494.990666pt;}
.yb1{bottom:497.904000pt;}
.y34{bottom:498.961333pt;}
.y7a{bottom:504.045333pt;}
.y61{bottom:506.017333pt;}
.y104{bottom:508.044000pt;}
.y33{bottom:513.572000pt;}
.yb0{bottom:514.176000pt;}
.y79{bottom:520.268000pt;}
.y103{bottom:521.328000pt;}
.y60{bottom:522.365333pt;}
.y32{bottom:528.184000pt;}
.y102{bottom:534.612000pt;}
.y78{bottom:536.492000pt;}
.yec{bottom:537.181333pt;}
.y5f{bottom:538.713333pt;}
.y31{bottom:542.796000pt;}
.y101{bottom:547.894667pt;}
.yaf{bottom:548.376000pt;}
.y77{bottom:552.716000pt;}
.y5e{bottom:555.060000pt;}
.y30{bottom:557.408000pt;}
.y100{bottom:561.178667pt;}
.y5d{bottom:571.408000pt;}
.y2f{bottom:572.020000pt;}
.ye7{bottom:573.230667pt;}
.y9{bottom:573.786667pt;}
.yff{bottom:574.461333pt;}
.yae{bottom:584.234667pt;}
.yfe{bottom:587.745333pt;}
.y5c{bottom:587.754667pt;}
.y8{bottom:592.685334pt;}
.ye6{bottom:593.026667pt;}
.y2e{bottom:594.602667pt;}
.yad{bottom:600.506667pt;}
.yfd{bottom:601.029333pt;}
.y5b{bottom:604.102667pt;}
.ye5{bottom:606.309333pt;}
.y76{bottom:611.389333pt;}
.ye4{bottom:619.593333pt;}
.yab{bottom:619.814667pt;}
.y5a{bottom:620.450667pt;}
.yfc{bottom:622.282667pt;}
.y75{bottom:624.673333pt;}
.ya8{bottom:626.392000pt;}
.yac{bottom:635.737333pt;}
.ya7{bottom:635.824000pt;}
.y59{bottom:636.797333pt;}
.y74{bottom:637.956000pt;}
.ye3{bottom:638.269333pt;}
.y7{bottom:645.598667pt;}
.yaa{bottom:648.442667pt;}
.y2d{bottom:650.374667pt;}
.ye2{bottom:651.553333pt;}
.ya9{bottom:652.576000pt;}
.yfb{bottom:654.162667pt;}
.y73{bottom:656.633333pt;}
.ya5{bottom:663.882667pt;}
.ye1{bottom:668.545333pt;}
.y3{bottom:668.977329pt;}
.y2c{bottom:669.504000pt;}
.y72{bottom:669.916000pt;}
.yfa{bottom:670.104000pt;}
.ya2{bottom:670.460000pt;}
.ya6{bottom:679.805333pt;}
.ya1{bottom:679.892000pt;}
.y71{bottom:686.908000pt;}
.y58{bottom:688.314667pt;}
.yca{bottom:691.566667pt;}
.ya4{bottom:692.510667pt;}
.y2b{bottom:692.884000pt;}
.yf9{bottom:694.013333pt;}
.ya3{bottom:696.644000pt;}
.y57{bottom:705.584000pt;}
.ye0{bottom:708.026667pt;}
.y9f{bottom:710.438667pt;}
.y9c{bottom:717.016000pt;}
.ydf{bottom:721.309333pt;}
.y56{bottom:722.852000pt;}
.yf8{bottom:725.894667pt;}
.y2a{bottom:726.245333pt;}
.ya0{bottom:726.360000pt;}
.y97{bottom:726.446667pt;}
.yeb{bottom:728.696000pt;}
.y9a{bottom:730.245333pt;}
.y70{bottom:733.620000pt;}
.yde{bottom:734.593333pt;}
.y9b{bottom:735.758667pt;}
.y99{bottom:738.216000pt;}
.y9e{bottom:739.066667pt;}
.y55{bottom:740.121333pt;}
.yf7{bottom:741.834667pt;}
.y9d{bottom:743.198667pt;}
.y98{bottom:746.185333pt;}
.ydd{bottom:747.877333pt;}
.y6f{bottom:749.842667pt;}
.y29{bottom:752.812000pt;}
.y54{bottom:757.389333pt;}
.ydc{bottom:761.160000pt;}
.yf6{bottom:765.745333pt;}
.y6e{bottom:766.066667pt;}
.y96{bottom:766.102667pt;}
.ydb{bottom:774.444000pt;}
.y53{bottom:774.658667pt;}
.y2{bottom:781.661334pt;}
.y95{bottom:782.374667pt;}
.y28{bottom:785.389333pt;}
.yda{bottom:787.726667pt;}
.y52{bottom:791.926667pt;}
.yf5{bottom:797.625333pt;}
.y6d{bottom:799.929333pt;}
.yd9{bottom:801.010667pt;}
.y27{bottom:801.329333pt;}
.y94{bottom:803.256000pt;}
.y51{bottom:809.194667pt;}
.y93{bottom:812.686667pt;}
.yf4{bottom:813.565333pt;}
.yd8{bottom:814.294667pt;}
.y6c{bottom:825.540000pt;}
.y50{bottom:826.464000pt;}
.yd7{bottom:827.577333pt;}
.yf3{bottom:829.505333pt;}
.y26{bottom:837.025333pt;}
.yd6{bottom:840.861333pt;}
.y92{bottom:843.457333pt;}
.y4f{bottom:843.732000pt;}
.yf2{bottom:845.445333pt;}
.y25{bottom:850.308000pt;}
.yd5{bottom:854.145333pt;}
.y1{bottom:859.312000pt;}
.y6b{bottom:860.820000pt;}
.y4e{bottom:861.001333pt;}
.yf1{bottom:861.386667pt;}
.y91{bottom:868.361333pt;}
.yd4{bottom:872.821333pt;}
.y6a{bottom:877.042667pt;}
.yf0{bottom:877.326667pt;}
.y4d{bottom:884.910667pt;}
.yd3{bottom:889.813333pt;}
.y69{bottom:893.266667pt;}
.y24{bottom:897.133333pt;}
.y23{bottom:920.260000pt;}
.y4c{bottom:922.490667pt;}
.h23{height:2.444158pt;}
.h15{height:24.894397pt;}
.h24{height:25.514810pt;}
.h7{height:28.560000pt;}
.h10{height:29.159939pt;}
.h25{height:31.019462pt;}
.h11{height:33.044173pt;}
.ha{height:34.473730pt;}
.hc{height:35.451005pt;}
.h2f{height:35.813671pt;}
.h2e{height:35.872338pt;}
.h19{height:36.449833pt;}
.h2c{height:36.609234pt;}
.h13{height:36.715502pt;}
.h16{height:36.821671pt;}
.h1b{height:37.395021pt;}
.h1a{height:37.400354pt;}
.h12{height:39.882547pt;}
.h6{height:40.800000pt;}
.h2d{height:42.017698pt;}
.h3{height:42.840000pt;}
.h14{height:44.313645pt;}
.h28{height:44.660311pt;}
.h2{height:48.960000pt;}
.h17{height:50.304796pt;}
.h18{height:50.310129pt;}
.h21{height:52.966129pt;}
.h26{height:53.168796pt;}
.hd{height:53.176730pt;}
.hb{height:64.100858pt;}
.hf{height:66.559077pt;}
.h5{height:69.360000pt;}
.h29{height:73.857234pt;}
.he{height:75.333552pt;}
.h1c{height:77.041491pt;}
.h1e{height:77.046825pt;}
.h27{height:81.556311pt;}
.h1f{height:81.561645pt;}
.h2a{height:82.036311pt;}
.h2b{height:82.041645pt;}
.h4{height:105.826671pt;}
.h22{height:110.785491pt;}
.h1d{height:114.769491pt;}
.h20{height:119.289645pt;}
.h9{height:990.000000pt;}
.h8{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:49.481333pt;}
.x11{left:52.805333pt;}
.x15{left:54.794667pt;}
.xa{left:56.141333pt;}
.x9{left:57.678667pt;}
.x12{left:58.722667pt;}
.x3d{left:61.872000pt;}
.x10{left:65.421333pt;}
.x13{left:69.406667pt;}
.x16{left:70.946667pt;}
.x3c{left:75.384000pt;}
.x1e{left:81.321333pt;}
.x1c{left:82.370667pt;}
.x3b{left:85.346667pt;}
.x24{left:86.674667pt;}
.x26{left:87.750667pt;}
.x1{left:90.706667pt;}
.x35{left:91.910667pt;}
.x2{left:94.486667pt;}
.x14{left:98.481333pt;}
.x3e{left:112.710667pt;}
.x21{left:118.416000pt;}
.x39{left:125.117333pt;}
.x34{left:127.630667pt;}
.x3a{left:130.042667pt;}
.x33{left:136.436000pt;}
.xb{left:137.830667pt;}
.xd{left:139.189333pt;}
.x38{left:141.198667pt;}
.x19{left:142.690667pt;}
.x31{left:143.957333pt;}
.x27{left:145.488000pt;}
.x1a{left:148.734667pt;}
.x2d{left:150.332000pt;}
.x2e{left:152.002667pt;}
.x32{left:154.578667pt;}
.x2c{left:157.196000pt;}
.x30{left:158.777333pt;}
.x28{left:160.558667pt;}
.x18{left:161.874667pt;}
.xc{left:164.178667pt;}
.x2f{left:166.893333pt;}
.x1d{left:170.741333pt;}
.x2a{left:172.977333pt;}
.x29{left:178.170667pt;}
.x4{left:180.874667pt;}
.x2b{left:192.317333pt;}
.x25{left:203.949333pt;}
.x5{left:226.589333pt;}
.x1f{left:236.946667pt;}
.x22{left:243.844000pt;}
.xe{left:251.333333pt;}
.x7{left:262.749333pt;}
.x17{left:270.832000pt;}
.x20{left:273.070667pt;}
.x6{left:277.009333pt;}
.x36{left:302.010667pt;}
.x3{left:404.408000pt;}
.x37{left:430.240000pt;}
.x23{left:461.337333pt;}
.x1b{left:478.636000pt;}
.x8{left:544.720000pt;}
}




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