
    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_e27fb7937a7f26e0fb8656b7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002000;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_5ba2a9f1f7723a0b54c0911c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_072a918fb80c7349097b8008.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_907cdb9ba8e5713f5a714486.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_ef7f85c166454921d9912148.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_d9a79de969d46890878ee681.woff')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_c892a1b671a108aac1ed0a9e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.707000;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_d09d40dad25fe9a95df58381.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_e07269857532684563de315a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.887000;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_8e333bfe6c2b229d62a32843.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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_434b1e741a3f0c489bf60adb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.002000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c01c30ca8ead9b7e625dae0b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9ccfbb73e8331ede0ce80e63.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc56bf61e7b351149c11817c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.901000;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:fff;src:url('chunks/assets/font_3f2ee82b12d62d9f4f9b8cbd.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_58fbfc604f7f981eb56cd106.woff')format("woff");}.ff10{font-family:ff10;line-height:0.528000;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:ff11;src:url('chunks/assets/font_dbd3671608a2304d3a084d95.woff')format("woff");}.ff11{font-family:ff11;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-26.028000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.880823px;}
.ls0{letter-spacing:2.991113px;}
.ls4{letter-spacing:9.962338px;}
.ls10{letter-spacing:17.216316px;}
.ls8{letter-spacing:18.263781px;}
.ls5{letter-spacing:18.569781px;}
.lsa{letter-spacing:19.820823px;}
.lsf{letter-spacing:19.922316px;}
.ls1{letter-spacing:23.118305px;}
.ls9{letter-spacing:23.124305px;}
.lsc{letter-spacing:25.772316px;}
.lsd{letter-spacing:25.778316px;}
.ls11{letter-spacing:26.738316px;}
.ls6{letter-spacing:29.890178px;}
.lsb{letter-spacing:29.890893px;}
.ls3{letter-spacing:30.190893px;}
.lse{letter-spacing:30.548316px;}
.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;}
}
.ws37{word-spacing:-34.364992px;}
.ws60{word-spacing:-19.959073px;}
.ws1{word-spacing:-16.196248px;}
.ws25{word-spacing:-15.829597px;}
.ws4b{word-spacing:-15.743520px;}
.ws47{word-spacing:-15.525343px;}
.ws2b{word-spacing:-14.070444px;}
.ws12{word-spacing:-14.041288px;}
.ws17{word-spacing:-13.981513px;}
.ws57{word-spacing:-13.323981px;}
.ws3c{word-spacing:-13.204430px;}
.ws1f{word-spacing:-12.965328px;}
.ws61{word-spacing:-12.666450px;}
.ws6c{word-spacing:-12.653753px;}
.ws2a{word-spacing:-12.307796px;}
.ws4d{word-spacing:-12.221732px;}
.ws2f{word-spacing:-12.188245px;}
.ws3d{word-spacing:-11.951913px;}
.ws3f{word-spacing:-11.949142px;}
.ws30{word-spacing:-11.829591px;}
.ws1d{word-spacing:-11.710040px;}
.ws6d{word-spacing:-11.656242px;}
.ws41{word-spacing:-11.590489px;}
.ws3e{word-spacing:-11.547611px;}
.ws58{word-spacing:-11.470938px;}
.ws5b{word-spacing:-11.351386px;}
.ws52{word-spacing:-11.172060px;}
.ws27{word-spacing:-10.997732px;}
.ws46{word-spacing:-10.992733px;}
.ws54{word-spacing:-10.932957px;}
.ws29{word-spacing:-10.693855px;}
.ws2e{word-spacing:-10.634079px;}
.ws34{word-spacing:-10.574304px;}
.ws6{word-spacing:-10.533727px;}
.wsf{word-spacing:-10.514528px;}
.ws62{word-spacing:-10.454752px;}
.ws5f{word-spacing:-10.335201px;}
.ws31{word-spacing:-10.275426px;}
.wsa{word-spacing:-10.049541px;}
.ws0{word-spacing:-9.976548px;}
.ws44{word-spacing:-9.960381px;}
.ws42{word-spacing:-9.957611px;}
.ws6a{word-spacing:-9.953753px;}
.ws59{word-spacing:-9.916772px;}
.ws51{word-spacing:-9.856996px;}
.ws1b{word-spacing:-9.797221px;}
.ws18{word-spacing:-9.773894px;}
.ws39{word-spacing:-9.617894px;}
.ws2c{word-spacing:-9.558118px;}
.ws23{word-spacing:-9.378792px;}
.ws53{word-spacing:-9.319016px;}
.ws3{word-spacing:-9.242565px;}
.ws50{word-spacing:-9.222444px;}
.ws35{word-spacing:-9.199465px;}
.wsd{word-spacing:-9.188767px;}
.ws6b{word-spacing:-9.145667px;}
.ws63{word-spacing:-9.079914px;}
.ws11{word-spacing:-8.960362px;}
.ws55{word-spacing:-8.900587px;}
.ws36{word-spacing:-8.781036px;}
.ws20{word-spacing:-8.422382px;}
.ws3a{word-spacing:-8.362606px;}
.ws24{word-spacing:-8.123504px;}
.ws2d{word-spacing:-8.003953px;}
.ws26{word-spacing:-7.927227px;}
.ws5{word-spacing:-7.897605px;}
.ws10{word-spacing:-7.764850px;}
.ws4c{word-spacing:-7.705075px;}
.ws65{word-spacing:-7.645299px;}
.ws7{word-spacing:-7.467218px;}
.ws21{word-spacing:-7.286646px;}
.ws5c{word-spacing:-7.167094px;}
.ws3b{word-spacing:-7.107319px;}
.ws8{word-spacing:-6.821637px;}
.wsb{word-spacing:-6.552645px;}
.ws28{word-spacing:-6.509563px;}
.ws5d{word-spacing:-6.270460px;}
.ws5e{word-spacing:-6.031358px;}
.ws4a{word-spacing:-5.254275px;}
.ws22{word-spacing:-5.015173px;}
.wsc{word-spacing:-4.992492px;}
.ws4f{word-spacing:-4.716295px;}
.ws40{word-spacing:-3.998988px;}
.ws49{word-spacing:-3.247227px;}
.ws9{word-spacing:-3.217144px;}
.ws6e{word-spacing:-3.162129px;}
.ws6f{word-spacing:-2.929004px;}
.ws48{word-spacing:-2.803476px;}
.ws15{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws33{word-spacing:0.000000px;}
.ws38{word-spacing:0.125529px;}
.ws67{word-spacing:0.537980px;}
.ws68{word-spacing:0.663509px;}
.ws66{word-spacing:0.676654px;}
.ws70{word-spacing:0.783060px;}
.ws1e{word-spacing:9.862974px;}
.ws16{word-spacing:9.870566px;}
.ws14{word-spacing:9.930342px;}
.ws69{word-spacing:10.520506px;}
.ws13{word-spacing:16.557841px;}
.ws19{word-spacing:16.856719px;}
.ws78{word-spacing:16.880672px;}
.ws43{word-spacing:19.855800px;}
.ws1a{word-spacing:20.037163px;}
.ws1c{word-spacing:20.038963px;}
.ws64{word-spacing:22.171800px;}
.ws2{word-spacing:23.312640px;}
.ws45{word-spacing:25.387549px;}
.ws56{word-spacing:26.827469px;}
.ws32{word-spacing:31.322414px;}
.ws4e{word-spacing:37.365728px;}
.ws8a{word-spacing:41.848898px;}
.wse{word-spacing:47.351068px;}
.ws8d{word-spacing:58.944719px;}
.ws8c{word-spacing:68.449040px;}
.ws74{word-spacing:96.151710px;}
.ws76{word-spacing:97.729785px;}
.ws8b{word-spacing:108.259589px;}
.ws86{word-spacing:109.753979px;}
.ws8e{word-spacing:118.182339px;}
.ws75{word-spacing:127.985537px;}
.ws77{word-spacing:128.164864px;}
.ws73{word-spacing:141.435047px;}
.ws5a{word-spacing:178.735022px;}
.ws89{word-spacing:189.933648px;}
.ws80{word-spacing:208.323944px;}
.ws7b{word-spacing:219.980186px;}
.ws84{word-spacing:228.109667px;}
.ws88{word-spacing:234.445881px;}
.ws82{word-spacing:239.706134px;}
.ws7f{word-spacing:244.727284px;}
.ws7a{word-spacing:256.323750px;}
.ws85{word-spacing:262.865858px;}
.ws83{word-spacing:268.018515px;}
.ws7d{word-spacing:271.267650px;}
.ws81{word-spacing:279.471520px;}
.ws7e{word-spacing:287.110841px;}
.ws79{word-spacing:299.508301px;}
.ws87{word-spacing:304.864194px;}
.ws7c{word-spacing:316.693786px;}
.ws71{word-spacing:326.440529px;}
.ws72{word-spacing:404.516097px;}
._2{margin-left:-8.056807px;}
._4{margin-left:-6.336278px;}
._0{margin-left:-4.961375px;}
._7{margin-left:-2.845349px;}
._1{margin-left:-1.673717px;}
._5{width:1.506355px;}
._b{width:2.845349px;}
._15{width:5.714527px;}
._46{width:7.013841px;}
._28{width:9.982525px;}
._19{width:18.091454px;}
._d{width:19.911050px;}
._44{width:20.945653px;}
._11{width:22.804199px;}
._6{width:24.655895px;}
._e{width:26.074177px;}
._27{width:27.185882px;}
._10{width:28.453186px;}
._8{width:30.348264px;}
._9{width:31.794854px;}
._c{width:32.972201px;}
._45{width:34.119902px;}
._18{width:35.148053px;}
._a{width:36.337786px;}
._13{width:37.371766px;}
._f{width:41.938541px;}
._3{width:43.072931px;}
._1a{width:47.222774px;}
._17{width:58.766366px;}
._14{width:59.792385px;}
._23{width:71.790496px;}
._5d{width:75.078154px;}
._25{width:76.512768px;}
._29{width:80.697600px;}
._65{width:81.713245px;}
._1d{width:83.207635px;}
._4b{width:86.471363px;}
._54{width:89.842727px;}
._1e{width:91.456668px;}
._12{width:94.684920px;}
._47{width:110.046880px;}
._49{width:112.557455px;}
._53{width:116.084215px;}
._6c{width:121.882448px;}
._48{width:138.798943px;}
._52{width:142.325704px;}
._43{width:151.232268px;}
._26{width:153.623292px;}
._2b{width:157.652137px;}
._2d{width:161.991876px;}
._ad{width:164.382900px;}
._4d{width:184.168624px;}
._38{width:187.037852px;}
._50{width:191.102593px;}
._1f{width:196.888861px;}
._4a{width:209.668874px;}
._20{width:211.187195px;}
._42{width:214.654180px;}
._4f{width:217.344082px;}
._2f{width:218.539594px;}
._95{width:221.647925px;}
._31{width:225.234461px;}
._41{width:229.956733px;}
._90{width:233.244391px;}
._40{width:234.918108px;}
._89{width:238.205766px;}
._24{width:239.580605px;}
._3e{width:246.681936px;}
._7b{width:250.029370px;}
._3c{width:252.169376px;}
._3f{width:261.458474px;}
._51{width:265.463440px;}
._7f{width:271.261673px;}
._35{width:285.141527px;}
._1c{width:291.824479px;}
._2e{width:295.124052px;}
._21{width:296.989061px;}
._a4{width:301.555937px;}
._6b{width:302.643863px;}
._4c{width:307.306360px;}
._9d{width:327.797425px;}
._22{width:331.575253px;}
._3d{width:337.851691px;}
._4e{width:340.541593px;}
._85{width:346.220275px;}
._37{width:348.862316px;}
._2c{width:350.536033px;}
._76{width:356.262576px;}
._97{width:373.717051px;}
._72{width:384.835313px;}
._77{width:406.294753px;}
._55{width:407.765263px;}
._5b{width:429.427910px;}
._68{width:430.444096px;}
._58{width:431.937946px;}
._6f{width:434.628388px;}
._a0{width:442.494887px;}
._3a{width:445.567322px;}
._9c{width:446.918231px;}
._1b{width:454.689109px;}
._71{width:463.021798px;}
._a3{width:465.891026px;}
._ae{width:468.102724px;}
._ac{width:470.433972px;}
._6a{width:472.645669px;}
._9f{width:475.072589px;}
._a1{width:482.687970px;}
._30{width:484.062809px;}
._33{width:488.031878px;}
._ab{width:490.339247px;}
._69{width:494.392022px;}
._70{width:499.365362px;}
._a6{width:502.413918px;}
._39{width:504.984319px;}
._aa{width:506.956864px;}
._6e{width:512.814872px;}
._81{width:514.476624px;}
._a2{width:519.210862px;}
._5f{width:522.797398px;}
._8e{width:526.802363px;}
._94{width:535.888254px;}
._82{width:537.263093px;}
._a9{width:539.534566px;}
._5e{width:543.204757px;}
._78{width:544.543751px;}
._8b{width:546.886964px;}
._6d{width:549.158437px;}
._79{width:554.526276px;}
._a8{width:559.439840px;}
._60{width:562.966601px;}
._63{width:566.254259px;}
._86{width:572.578507px;}
._88{width:579.046237px;}
._84{width:580.421076px;}
._80{width:582.274120px;}
._8f{width:590.822030px;}
._a7{width:591.897991px;}
._64{width:596.680039px;}
._5c{width:611.564164px;}
._8c{width:613.297656px;}
._9b{width:619.095889px;}
._8d{width:622.921528px;}
._9e{width:625.611430px;}
._96{width:628.002454px;}
._87{width:629.006674px;}
._98{width:633.083380px;}
._61{width:636.012384px;}
._9a{width:640.340107px;}
._67{width:641.452504px;}
._92{width:643.448438px;}
._7a{width:648.792397px;}
._7d{width:652.044160px;}
._62{width:654.781922px;}
._75{width:665.063326px;}
._91{width:671.220212px;}
._74{width:673.671012px;}
._59{width:675.344729px;}
._5a{width:678.512836px;}
._99{width:688.017156px;}
._83{width:700.091827px;}
._7e{width:702.423076px;}
._93{width:705.890060px;}
._66{width:707.026337px;}
._8a{width:709.596148px;}
._56{width:738.886256px;}
._a5{width:741.695645px;}
._2a{width:745.640834px;}
._7c{width:751.845532px;}
._73{width:754.846277px;}
._16{width:756.639545px;}
._32{width:758.193710px;}
._57{width:788.388823px;}
._34{width:806.193517px;}
._36{width:817.371554px;}
._3b{width:985.938746px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2e{bottom:40.207500px;}
.y2d{bottom:85.039500px;}
.y123{bottom:94.008000px;}
.y144{bottom:95.800500px;}
.y5c{bottom:101.898000px;}
.yf1{bottom:102.402000px;}
.y2c{bottom:110.449500px;}
.yd0{bottom:112.296000px;}
.y122{bottom:116.125500px;}
.y143{bottom:117.918000px;}
.y5b{bottom:119.830500px;}
.yf0{bottom:124.519500px;}
.y2b{bottom:128.382000px;}
.ycf{bottom:134.413500px;}
.y121{bottom:137.644500px;}
.y5a{bottom:137.763000px;}
.y142{bottom:139.437000px;}
.yef{bottom:146.038500px;}
.y2a{bottom:146.314500px;}
.yce{bottom:155.932500px;}
.y120{bottom:159.163500px;}
.y141{bottom:160.956000px;}
.y59{bottom:165.345000px;}
.yee{bottom:167.557500px;}
.ycd{bottom:177.451500px;}
.y11f{bottom:180.682500px;}
.y140{bottom:182.476500px;}
.y29{bottom:184.189500px;}
.yed{bottom:189.076500px;}
.ycc{bottom:198.970500px;}
.y28{bottom:202.123500px;}
.y11e{bottom:202.201500px;}
.y13f{bottom:203.995500px;}
.y58{bottom:207.172500px;}
.yec{bottom:210.597000px;}
.y27{bottom:220.056000px;}
.ycb{bottom:220.489500px;}
.y11d{bottom:223.720500px;}
.y57{bottom:225.105000px;}
.y13e{bottom:225.514500px;}
.yeb{bottom:232.116000px;}
.y26{bottom:237.988500px;}
.yca{bottom:242.008500px;}
.y56{bottom:243.037500px;}
.y11c{bottom:245.241000px;}
.y13d{bottom:247.033500px;}
.yea{bottom:253.635000px;}
.y55{bottom:260.970000px;}
.yc9{bottom:263.529000px;}
.y25{bottom:265.638000px;}
.y11b{bottom:266.760000px;}
.y9b{bottom:267.973500px;}
.y13c{bottom:268.552500px;}
.ye9{bottom:275.154000px;}
.y54{bottom:278.904000px;}
.y24{bottom:283.570500px;}
.yc8{bottom:285.048000px;}
.y9a{bottom:285.906000px;}
.y11a{bottom:288.279000px;}
.y13b{bottom:290.071500px;}
.ye8{bottom:296.673000px;}
.y53{bottom:296.836500px;}
.y23{bottom:301.503000px;}
.yc7{bottom:306.567000px;}
.y119{bottom:309.798000px;}
.y99{bottom:309.817500px;}
.y13a{bottom:311.590500px;}
.y52{bottom:314.769000px;}
.ye7{bottom:318.192000px;}
.yc6{bottom:328.086000px;}
.y22{bottom:329.152500px;}
.y118{bottom:331.317000px;}
.y51{bottom:332.701500px;}
.y139{bottom:333.111000px;}
.y98{bottom:333.727500px;}
.ye6{bottom:339.711000px;}
.y7d{bottom:344.130000px;}
.yc5{bottom:349.605000px;}
.y50{bottom:350.634000px;}
.y117{bottom:352.836000px;}
.y21{bottom:354.562500px;}
.y138{bottom:354.630000px;}
.y97{bottom:357.637500px;}
.ye5{bottom:361.231500px;}
.y7c{bottom:362.064000px;}
.y4f{bottom:368.566500px;}
.yc4{bottom:371.124000px;}
.y116{bottom:374.355000px;}
.y137{bottom:376.149000px;}
.y7b{bottom:379.996500px;}
.y96{bottom:381.547500px;}
.ye4{bottom:382.750500px;}
.y20{bottom:387.289500px;}
.yc3{bottom:392.643000px;}
.y115{bottom:395.875500px;}
.y136{bottom:397.668000px;}
.y4e{bottom:401.295000px;}
.ye3{bottom:404.269500px;}
.y95{bottom:405.459000px;}
.y7a{bottom:407.578500px;}
.yc2{bottom:414.163500px;}
.y114{bottom:417.394500px;}
.y135{bottom:419.187000px;}
.y94{bottom:423.391500px;}
.ye2{bottom:425.788500px;}
.yc1{bottom:435.682500px;}
.y1f{bottom:435.739500px;}
.y113{bottom:438.913500px;}
.y134{bottom:440.706000px;}
.ye1{bottom:447.307500px;}
.y79{bottom:453.141000px;}
.y1e{bottom:453.672000px;}
.y4d{bottom:454.443000px;}
.y93{bottom:456.118500px;}
.yc0{bottom:457.201500px;}
.y112{bottom:460.432500px;}
.y133{bottom:462.225000px;}
.ye0{bottom:468.826500px;}
.y1d{bottom:471.606000px;}
.y155{bottom:472.921500px;}
.ybf{bottom:478.720500px;}
.y111{bottom:481.951500px;}
.y132{bottom:483.745500px;}
.y78{bottom:487.837500px;}
.y4c{bottom:489.141000px;}
.y1c{bottom:489.538500px;}
.ydf{bottom:490.345500px;}
.y154{bottom:494.440500px;}
.ybe{bottom:500.239500px;}
.y110{bottom:503.470500px;}
.y131{bottom:505.264500px;}
.y92{bottom:505.533000px;}
.y1b{bottom:507.471000px;}
.y77{bottom:509.356500px;}
.y4b{bottom:510.660000px;}
.yde{bottom:511.866000px;}
.yb0{bottom:515.410500px;}
.y153{bottom:515.959500px;}
.ybd{bottom:521.758500px;}
.y91{bottom:523.465500px;}
.y10f{bottom:524.989500px;}
.y1a{bottom:525.403500px;}
.y130{bottom:526.783500px;}
.y76{bottom:530.875500px;}
.y4a{bottom:532.179000px;}
.ydd{bottom:533.385000px;}
.y152{bottom:537.478500px;}
.ybc{bottom:543.277500px;}
.y19{bottom:543.336000px;}
.y10e{bottom:546.510000px;}
.y12f{bottom:548.302500px;}
.y75{bottom:552.396000px;}
.y90{bottom:553.353000px;}
.y49{bottom:553.698000px;}
.ydc{bottom:554.904000px;}
.y151{bottom:558.999000px;}
.y18{bottom:561.268500px;}
.ybb{bottom:564.798000px;}
.y10d{bottom:568.029000px;}
.y12e{bottom:569.821500px;}
.y8f{bottom:571.285500px;}
.y74{bottom:573.915000px;}
.y48{bottom:575.217000px;}
.ydb{bottom:576.423000px;}
.y17{bottom:579.202500px;}
.y150{bottom:580.518000px;}
.yba{bottom:586.317000px;}
.y8e{bottom:589.218000px;}
.y10c{bottom:589.548000px;}
.y12d{bottom:591.340500px;}
.y73{bottom:595.434000px;}
.y47{bottom:596.736000px;}
.y16{bottom:597.135000px;}
.yda{bottom:597.942000px;}
.y14f{bottom:602.037000px;}
.yb9{bottom:607.836000px;}
.y10b{bottom:611.067000px;}
.y12c{bottom:612.859500px;}
.y15{bottom:615.067500px;}
.y72{bottom:616.953000px;}
.y46{bottom:618.256500px;}
.yd9{bottom:619.461000px;}
.y14e{bottom:623.556000px;}
.y8d{bottom:628.057500px;}
.yb8{bottom:629.355000px;}
.y10a{bottom:632.586000px;}
.y14{bottom:633.000000px;}
.y12b{bottom:634.380000px;}
.y71{bottom:639.070500px;}
.y45{bottom:639.775500px;}
.yd8{bottom:640.980000px;}
.y14d{bottom:645.075000px;}
.yb7{bottom:650.874000px;}
.y13{bottom:650.932500px;}
.y109{bottom:654.105000px;}
.y12a{bottom:655.899000px;}
.y8c{bottom:657.945000px;}
.y44{bottom:661.294500px;}
.yd7{bottom:662.500500px;}
.y14c{bottom:666.594000px;}
.yb6{bottom:672.393000px;}
.y108{bottom:675.624000px;}
.y70{bottom:677.064000px;}
.y129{bottom:677.418000px;}
.y43{bottom:682.813500px;}
.y12{bottom:683.661000px;}
.yd6{bottom:684.019500px;}
.yaf{bottom:687.637500px;}
.y14b{bottom:688.113000px;}
.yb5{bottom:693.912000px;}
.y6f{bottom:694.996500px;}
.y8b{bottom:696.784500px;}
.y107{bottom:697.144500px;}
.y128{bottom:698.937000px;}
.y42{bottom:704.931000px;}
.yd5{bottom:705.538500px;}
.y14a{bottom:709.633500px;}
.y6e{bottom:712.929000px;}
.y8a{bottom:714.717000px;}
.yb4{bottom:715.432500px;}
.y106{bottom:718.663500px;}
.y127{bottom:720.456000px;}
.yae{bottom:722.335500px;}
.yd4{bottom:727.057500px;}
.y149{bottom:731.152500px;}
.y11{bottom:732.111000px;}
.y89{bottom:732.649500px;}
.yb3{bottom:737.548500px;}
.y41{bottom:740.019000px;}
.y105{bottom:740.182500px;}
.y126{bottom:742.573500px;}
.yad{bottom:743.854500px;}
.y10{bottom:748.548000px;}
.yd3{bottom:748.576500px;}
.y148{bottom:752.671500px;}
.y6d{bottom:755.503500px;}
.y40{bottom:757.951500px;}
.y88{bottom:760.231500px;}
.y104{bottom:761.701500px;}
.yf{bottom:764.986500px;}
.yac{bottom:765.373500px;}
.yd2{bottom:770.694000px;}
.y147{bottom:774.190500px;}
.yb2{bottom:774.877500px;}
.y125{bottom:780.765000px;}
.ye{bottom:781.425000px;}
.y103{bottom:783.220500px;}
.yab{bottom:786.892500px;}
.y6c{bottom:790.200000px;}
.y3f{bottom:790.680000px;}
.yb1{bottom:792.810000px;}
.y146{bottom:795.709500px;}
.yd{bottom:797.863500px;}
.y102{bottom:804.739500px;}
.y87{bottom:804.964500px;}
.yd1{bottom:807.874500px;}
.yaa{bottom:808.413000px;}
.y6b{bottom:811.719000px;}
.yc{bottom:814.302000px;}
.y145{bottom:817.228500px;}
.y101{bottom:826.258500px;}
.ya9{bottom:829.932000px;}
.yb{bottom:830.740500px;}
.y6a{bottom:833.238000px;}
.y86{bottom:838.747500px;}
.y3e{bottom:840.093000px;}
.ya{bottom:847.179000px;}
.y100{bottom:847.779000px;}
.ya8{bottom:851.451000px;}
.y69{bottom:854.757000px;}
.y3d{bottom:858.025500px;}
.y85{bottom:860.268000px;}
.y9{bottom:863.617500px;}
.yff{bottom:869.298000px;}
.ya7{bottom:872.970000px;}
.y3c{bottom:875.958000px;}
.y68{bottom:876.277500px;}
.y8{bottom:881.446500px;}
.y84{bottom:881.787000px;}
.yfe{bottom:890.817000px;}
.y3b{bottom:893.890500px;}
.ya6{bottom:894.489000px;}
.y67{bottom:898.393500px;}
.y83{bottom:903.306000px;}
.yfd{bottom:912.336000px;}
.ya5{bottom:916.008000px;}
.y82{bottom:924.825000px;}
.y7{bottom:929.643000px;}
.y3a{bottom:932.730000px;}
.yfc{bottom:933.855000px;}
.y66{bottom:937.216500px;}
.ya4{bottom:937.527000px;}
.y81{bottom:946.344000px;}
.y39{bottom:950.662500px;}
.y65{bottom:955.150500px;}
.yfb{bottom:955.374000px;}
.ya3{bottom:959.047500px;}
.y6{bottom:965.170500px;}
.y80{bottom:967.863000px;}
.y38{bottom:968.595000px;}
.yfa{bottom:976.894500px;}
.ya2{bottom:980.566500px;}
.y37{bottom:986.527500px;}
.y7f{bottom:989.382000px;}
.y64{bottom:997.723500px;}
.yf9{bottom:998.413500px;}
.ya1{bottom:1002.085500px;}
.y36{bottom:1004.461500px;}
.y5{bottom:1005.286500px;}
.y7e{bottom:1010.902500px;}
.yf8{bottom:1019.932500px;}
.y35{bottom:1022.394000px;}
.ya0{bottom:1023.604500px;}
.y4{bottom:1023.885000px;}
.y63{bottom:1032.421500px;}
.y34{bottom:1040.326500px;}
.yf7{bottom:1041.451500px;}
.y9f{bottom:1045.123500px;}
.y62{bottom:1053.940500px;}
.yf6{bottom:1062.970500px;}
.y9e{bottom:1066.642500px;}
.y3{bottom:1067.217000px;}
.y61{bottom:1075.459500px;}
.y33{bottom:1079.164500px;}
.yf5{bottom:1084.489500px;}
.y9d{bottom:1088.161500px;}
.y60{bottom:1096.978500px;}
.y32{bottom:1097.098500px;}
.y2{bottom:1100.094000px;}
.yf4{bottom:1106.607000px;}
.y9c{bottom:1110.279000px;}
.y5f{bottom:1118.497500px;}
.y31{bottom:1126.986000px;}
.y5e{bottom:1140.016500px;}
.y124{bottom:1140.615000px;}
.yf3{bottom:1144.798500px;}
.y30{bottom:1144.918500px;}
.y5d{bottom:1162.134000px;}
.yf2{bottom:1162.732500px;}
.y2f{bottom:1162.851000px;}
.y1{bottom:1220.535000px;}
.h5{height:33.665702px;}
.hf{height:33.713523px;}
.h8{height:37.712678px;}
.h6{height:40.402598px;}
.ha{height:41.544042px;}
.hb{height:44.891476px;}
.h2{height:44.951251px;}
.hc{height:50.283571px;}
.h7{height:51.287808px;}
.h4{height:59.699702px;}
.h9{height:60.426194px;}
.h3{height:72.614557px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x1a{left:40.207500px;}
.xb{left:85.039500px;}
.xc{left:107.457000px;}
.x2{left:109.467000px;}
.x1d{left:110.836500px;}
.x21{left:111.874500px;}
.xe{left:115.756500px;}
.xa{left:122.400000px;}
.xd{left:126.933000px;}
.x18{left:139.312500px;}
.x9{left:143.128500px;}
.x12{left:153.246000px;}
.xf{left:194.665500px;}
.x14{left:203.632500px;}
.x13{left:225.340500px;}
.x1c{left:227.967000px;}
.x20{left:233.632500px;}
.x10{left:268.107000px;}
.x5{left:269.206500px;}
.x15{left:270.597000px;}
.x6{left:279.078000px;}
.x11{left:282.549000px;}
.x3{left:310.708500px;}
.x1f{left:319.588500px;}
.x1{left:377.503500px;}
.x4{left:389.746500px;}
.x7{left:405.495000px;}
.x17{left:412.927500px;}
.x8{left:416.023500px;}
.x1b{left:504.549000px;}
.x22{left:648.049500px;}
.x1e{left:649.087500px;}
.x19{left:990.532500px;}
.x16{left:1220.535000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.671842pt;}
.ls0{letter-spacing:2.658767pt;}
.ls4{letter-spacing:8.855412pt;}
.ls10{letter-spacing:15.303392pt;}
.ls8{letter-spacing:16.234472pt;}
.ls5{letter-spacing:16.506472pt;}
.lsa{letter-spacing:17.618509pt;}
.lsf{letter-spacing:17.708725pt;}
.ls1{letter-spacing:20.549605pt;}
.ls9{letter-spacing:20.554938pt;}
.lsc{letter-spacing:22.908725pt;}
.lsd{letter-spacing:22.914059pt;}
.ls11{letter-spacing:23.767392pt;}
.ls6{letter-spacing:26.569047pt;}
.lsb{letter-spacing:26.569682pt;}
.ls3{letter-spacing:26.836349pt;}
.lse{letter-spacing:27.154059pt;}
.ws37{word-spacing:-30.546660pt;}
.ws60{word-spacing:-17.741398pt;}
.ws1{word-spacing:-14.396665pt;}
.ws25{word-spacing:-14.070753pt;}
.ws4b{word-spacing:-13.994240pt;}
.ws47{word-spacing:-13.800305pt;}
.ws2b{word-spacing:-12.507062pt;}
.ws12{word-spacing:-12.481145pt;}
.ws17{word-spacing:-12.428011pt;}
.ws57{word-spacing:-11.843539pt;}
.ws3c{word-spacing:-11.737271pt;}
.ws1f{word-spacing:-11.524736pt;}
.ws61{word-spacing:-11.259066pt;}
.ws6c{word-spacing:-11.247781pt;}
.ws2a{word-spacing:-10.940263pt;}
.ws4d{word-spacing:-10.863761pt;}
.ws2f{word-spacing:-10.833995pt;}
.ws3d{word-spacing:-10.623923pt;}
.ws3f{word-spacing:-10.621460pt;}
.ws30{word-spacing:-10.515192pt;}
.ws1d{word-spacing:-10.408924pt;}
.ws6d{word-spacing:-10.361104pt;}
.ws41{word-spacing:-10.302657pt;}
.ws3e{word-spacing:-10.264543pt;}
.ws58{word-spacing:-10.196389pt;}
.ws5b{word-spacing:-10.090121pt;}
.ws52{word-spacing:-9.930720pt;}
.ws27{word-spacing:-9.775761pt;}
.ws46{word-spacing:-9.771318pt;}
.ws54{word-spacing:-9.718184pt;}
.ws29{word-spacing:-9.505649pt;}
.ws2e{word-spacing:-9.452515pt;}
.ws34{word-spacing:-9.399381pt;}
.ws6{word-spacing:-9.363313pt;}
.wsf{word-spacing:-9.346247pt;}
.ws62{word-spacing:-9.293113pt;}
.ws5f{word-spacing:-9.186846pt;}
.ws31{word-spacing:-9.133712pt;}
.wsa{word-spacing:-8.932925pt;}
.ws0{word-spacing:-8.868042pt;}
.ws44{word-spacing:-8.853672pt;}
.ws42{word-spacing:-8.851210pt;}
.ws6a{word-spacing:-8.847781pt;}
.ws59{word-spacing:-8.814908pt;}
.ws51{word-spacing:-8.761775pt;}
.ws1b{word-spacing:-8.708641pt;}
.ws18{word-spacing:-8.687905pt;}
.ws39{word-spacing:-8.549239pt;}
.ws2c{word-spacing:-8.496105pt;}
.ws23{word-spacing:-8.336704pt;}
.ws53{word-spacing:-8.283570pt;}
.ws3{word-spacing:-8.215613pt;}
.ws50{word-spacing:-8.197728pt;}
.ws35{word-spacing:-8.177302pt;}
.wsd{word-spacing:-8.167793pt;}
.ws6b{word-spacing:-8.129482pt;}
.ws63{word-spacing:-8.071034pt;}
.ws11{word-spacing:-7.964767pt;}
.ws55{word-spacing:-7.911633pt;}
.ws36{word-spacing:-7.805365pt;}
.ws20{word-spacing:-7.486562pt;}
.ws3a{word-spacing:-7.433428pt;}
.ws24{word-spacing:-7.220892pt;}
.ws2d{word-spacing:-7.114625pt;}
.ws26{word-spacing:-7.046424pt;}
.ws5{word-spacing:-7.020093pt;}
.ws10{word-spacing:-6.902089pt;}
.ws4c{word-spacing:-6.848955pt;}
.ws65{word-spacing:-6.795822pt;}
.ws7{word-spacing:-6.637527pt;}
.ws21{word-spacing:-6.477018pt;}
.ws5c{word-spacing:-6.370751pt;}
.ws3b{word-spacing:-6.317617pt;}
.ws8{word-spacing:-6.063677pt;}
.wsb{word-spacing:-5.824573pt;}
.ws28{word-spacing:-5.786278pt;}
.ws5d{word-spacing:-5.573743pt;}
.ws5e{word-spacing:-5.361207pt;}
.ws4a{word-spacing:-4.670467pt;}
.ws22{word-spacing:-4.457931pt;}
.wsc{word-spacing:-4.437770pt;}
.ws4f{word-spacing:-4.192262pt;}
.ws40{word-spacing:-3.554656pt;}
.ws49{word-spacing:-2.886424pt;}
.ws9{word-spacing:-2.859684pt;}
.ws6e{word-spacing:-2.810782pt;}
.ws6f{word-spacing:-2.603559pt;}
.ws48{word-spacing:-2.491978pt;}
.ws15{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws33{word-spacing:0.000000pt;}
.ws38{word-spacing:0.111581pt;}
.ws67{word-spacing:0.478205pt;}
.ws68{word-spacing:0.589786pt;}
.ws66{word-spacing:0.601471pt;}
.ws70{word-spacing:0.696054pt;}
.ws1e{word-spacing:8.767088pt;}
.ws16{word-spacing:8.773837pt;}
.ws14{word-spacing:8.826970pt;}
.ws69{word-spacing:9.351561pt;}
.ws13{word-spacing:14.718081pt;}
.ws19{word-spacing:14.983750pt;}
.ws78{word-spacing:15.005042pt;}
.ws43{word-spacing:17.649600pt;}
.ws1a{word-spacing:17.810811pt;}
.ws1c{word-spacing:17.812411pt;}
.ws64{word-spacing:19.708266pt;}
.ws2{word-spacing:20.722347pt;}
.ws45{word-spacing:22.566710pt;}
.ws56{word-spacing:23.846639pt;}
.ws32{word-spacing:27.842146pt;}
.ws4e{word-spacing:33.213980pt;}
.ws8a{word-spacing:37.199020pt;}
.wse{word-spacing:42.089838pt;}
.ws8d{word-spacing:52.395306pt;}
.ws8c{word-spacing:60.843591pt;}
.ws74{word-spacing:85.468186pt;}
.ws76{word-spacing:86.870920pt;}
.ws8b{word-spacing:96.230746pt;}
.ws86{word-spacing:97.559093pt;}
.ws8e{word-spacing:105.050968pt;}
.ws75{word-spacing:113.764922pt;}
.ws77{word-spacing:113.924324pt;}
.ws73{word-spacing:125.720042pt;}
.ws5a{word-spacing:158.875575pt;}
.ws89{word-spacing:168.829910pt;}
.ws80{word-spacing:185.176839pt;}
.ws7b{word-spacing:195.537943pt;}
.ws84{word-spacing:202.764149pt;}
.ws88{word-spacing:208.396338pt;}
.ws82{word-spacing:213.072119pt;}
.ws7f{word-spacing:217.535364pt;}
.ws7a{word-spacing:227.843334pt;}
.ws85{word-spacing:233.658540pt;}
.ws83{word-spacing:238.238680pt;}
.ws7d{word-spacing:241.126800pt;}
.ws81{word-spacing:248.419129pt;}
.ws7e{word-spacing:255.209637pt;}
.ws79{word-spacing:266.229601pt;}
.ws87{word-spacing:270.990395pt;}
.ws7c{word-spacing:281.505587pt;}
.ws71{word-spacing:290.169359pt;}
.ws72{word-spacing:359.569864pt;}
._2{margin-left:-7.161606pt;}
._4{margin-left:-5.632247pt;}
._0{margin-left:-4.410111pt;}
._7{margin-left:-2.529199pt;}
._1{margin-left:-1.487748pt;}
._5{width:1.338982pt;}
._b{width:2.529199pt;}
._15{width:5.079580pt;}
._46{width:6.234525pt;}
._28{width:8.873356pt;}
._19{width:16.081292pt;}
._d{width:17.698711pt;}
._44{width:18.618358pt;}
._11{width:20.270399pt;}
._6{width:21.916351pt;}
._e{width:23.177046pt;}
._27{width:24.165229pt;}
._10{width:25.291721pt;}
._8{width:26.976235pt;}
._9{width:28.262093pt;}
._c{width:29.308623pt;}
._45{width:30.328802pt;}
._18{width:31.242714pt;}
._a{width:32.300254pt;}
._13{width:33.219347pt;}
._f{width:37.278703pt;}
._3{width:38.287050pt;}
._1a{width:41.975799pt;}
._17{width:52.236769pt;}
._14{width:53.148787pt;}
._23{width:63.813774pt;}
._5d{width:66.736137pt;}
._25{width:68.011349pt;}
._29{width:71.731200pt;}
._65{width:72.633996pt;}
._1d{width:73.962342pt;}
._4b{width:76.863434pt;}
._54{width:79.860202pt;}
._1e{width:81.294816pt;}
._12{width:84.164373pt;}
._47{width:97.819449pt;}
._49{width:100.051071pt;}
._53{width:103.185969pt;}
._6c{width:108.339954pt;}
._48{width:123.376838pt;}
._52{width:126.511737pt;}
._43{width:134.428683pt;}
._26{width:136.554037pt;}
._2b{width:140.135233pt;}
._2d{width:143.992779pt;}
._ad{width:146.118133pt;}
._4d{width:163.705443pt;}
._38{width:166.255869pt;}
._50{width:169.868972pt;}
._1f{width:175.012321pt;}
._4a{width:186.372333pt;}
._20{width:187.721951pt;}
._42{width:190.803715pt;}
._4f{width:193.194739pt;}
._2f{width:194.257417pt;}
._95{width:197.020378pt;}
._31{width:200.208410pt;}
._41{width:204.405985pt;}
._90{width:207.328348pt;}
._40{width:208.816096pt;}
._89{width:211.738459pt;}
._24{width:212.960538pt;}
._3e{width:219.272832pt;}
._7b{width:222.248329pt;}
._3c{width:224.150557pt;}
._3f{width:232.407533pt;}
._51{width:235.967502pt;}
._7f{width:241.121487pt;}
._35{width:253.459135pt;}
._1c{width:259.399537pt;}
._2e{width:262.332491pt;}
._21{width:263.990276pt;}
._a4{width:268.049722pt;}
._6b{width:269.016767pt;}
._4c{width:273.161209pt;}
._9d{width:291.375489pt;}
._22{width:294.733558pt;}
._3d{width:300.312614pt;}
._4e{width:302.703638pt;}
._85{width:307.751356pt;}
._37{width:310.099837pt;}
._2c{width:311.587585pt;}
._76{width:316.677845pt;}
._97{width:332.192934pt;}
._72{width:342.075834pt;}
._77{width:361.150892pt;}
._55{width:362.458012pt;}
._5b{width:381.713698pt;}
._68{width:382.616974pt;}
._58{width:383.944841pt;}
._6f{width:386.336345pt;}
._a0{width:393.328788pt;}
._3a{width:396.059842pt;}
._9c{width:397.260650pt;}
._1b{width:404.168097pt;}
._71{width:411.574931pt;}
._a3{width:414.125357pt;}
._ae{width:416.091310pt;}
._ac{width:418.163531pt;}
._6a{width:420.129484pt;}
._9f{width:422.286746pt;}
._a1{width:429.055973pt;}
._30{width:430.278052pt;}
._33{width:433.806114pt;}
._ab{width:435.857108pt;}
._69{width:439.459575pt;}
._70{width:443.880322pt;}
._a6{width:446.590149pt;}
._39{width:448.874950pt;}
._aa{width:450.628323pt;}
._6e{width:455.835442pt;}
._81{width:457.312555pt;}
._a2{width:461.520766pt;}
._5f{width:464.708798pt;}
._8e{width:468.268767pt;}
._94{width:476.345115pt;}
._82{width:477.567194pt;}
._a9{width:479.586281pt;}
._5e{width:482.848673pt;}
._78{width:484.038890pt;}
._8b{width:486.121746pt;}
._6d{width:488.140833pt;}
._79{width:492.912245pt;}
._a8{width:497.279858pt;}
._60{width:500.414756pt;}
._63{width:503.337119pt;}
._86{width:508.958673pt;}
._88{width:514.707766pt;}
._84{width:515.929845pt;}
._80{width:517.576995pt;}
._8f{width:525.175138pt;}
._a7{width:526.131548pt;}
._64{width:530.382257pt;}
._5c{width:543.612590pt;}
._8c{width:545.153472pt;}
._9b{width:550.307457pt;}
._8d{width:553.708025pt;}
._9e{width:556.099049pt;}
._96{width:558.224403pt;}
._87{width:559.117043pt;}
._98{width:562.740782pt;}
._61{width:565.344341pt;}
._9a{width:569.191206pt;}
._67{width:570.180003pt;}
._92{width:571.954167pt;}
._7a{width:576.704353pt;}
._7d{width:579.594809pt;}
._62{width:582.028375pt;}
._75{width:591.167401pt;}
._91{width:596.640189pt;}
._74{width:598.818677pt;}
._59{width:600.306426pt;}
._5a{width:603.122521pt;}
._99{width:611.570805pt;}
._83{width:622.303846pt;}
._7e{width:624.376067pt;}
._93{width:627.457831pt;}
._66{width:628.467855pt;}
._8a{width:630.752131pt;}
._56{width:656.787783pt;}
._a5{width:659.285018pt;}
._2a{width:662.791853pt;}
._7c{width:668.307139pt;}
._73{width:670.974468pt;}
._16{width:672.568484pt;}
._32{width:673.949965pt;}
._57{width:700.790065pt;}
._34{width:716.616460pt;}
._36{width:726.552493pt;}
._3b{width:876.389997pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:35.740000pt;}
.y2d{bottom:75.590667pt;}
.y123{bottom:83.562667pt;}
.y144{bottom:85.156000pt;}
.y5c{bottom:90.576000pt;}
.yf1{bottom:91.024000pt;}
.y2c{bottom:98.177333pt;}
.yd0{bottom:99.818667pt;}
.y122{bottom:103.222667pt;}
.y143{bottom:104.816000pt;}
.y5b{bottom:106.516000pt;}
.yf0{bottom:110.684000pt;}
.y2b{bottom:114.117333pt;}
.ycf{bottom:119.478667pt;}
.y121{bottom:122.350667pt;}
.y5a{bottom:122.456000pt;}
.y142{bottom:123.944000pt;}
.yef{bottom:129.812000pt;}
.y2a{bottom:130.057333pt;}
.yce{bottom:138.606667pt;}
.y120{bottom:141.478667pt;}
.y141{bottom:143.072000pt;}
.y59{bottom:146.973333pt;}
.yee{bottom:148.940000pt;}
.ycd{bottom:157.734667pt;}
.y11f{bottom:160.606667pt;}
.y140{bottom:162.201333pt;}
.y29{bottom:163.724000pt;}
.yed{bottom:168.068000pt;}
.ycc{bottom:176.862667pt;}
.y28{bottom:179.665333pt;}
.y11e{bottom:179.734667pt;}
.y13f{bottom:181.329333pt;}
.y58{bottom:184.153333pt;}
.yec{bottom:187.197333pt;}
.y27{bottom:195.605333pt;}
.ycb{bottom:195.990667pt;}
.y11d{bottom:198.862667pt;}
.y57{bottom:200.093333pt;}
.y13e{bottom:200.457333pt;}
.yeb{bottom:206.325333pt;}
.y26{bottom:211.545333pt;}
.yca{bottom:215.118667pt;}
.y56{bottom:216.033333pt;}
.y11c{bottom:217.992000pt;}
.y13d{bottom:219.585333pt;}
.yea{bottom:225.453333pt;}
.y55{bottom:231.973333pt;}
.yc9{bottom:234.248000pt;}
.y25{bottom:236.122667pt;}
.y11b{bottom:237.120000pt;}
.y9b{bottom:238.198667pt;}
.y13c{bottom:238.713333pt;}
.ye9{bottom:244.581333pt;}
.y54{bottom:247.914667pt;}
.y24{bottom:252.062667pt;}
.yc8{bottom:253.376000pt;}
.y9a{bottom:254.138667pt;}
.y11a{bottom:256.248000pt;}
.y13b{bottom:257.841333pt;}
.ye8{bottom:263.709333pt;}
.y53{bottom:263.854667pt;}
.y23{bottom:268.002667pt;}
.yc7{bottom:272.504000pt;}
.y119{bottom:275.376000pt;}
.y99{bottom:275.393333pt;}
.y13a{bottom:276.969333pt;}
.y52{bottom:279.794667pt;}
.ye7{bottom:282.837333pt;}
.yc6{bottom:291.632000pt;}
.y22{bottom:292.580000pt;}
.y118{bottom:294.504000pt;}
.y51{bottom:295.734667pt;}
.y139{bottom:296.098667pt;}
.y98{bottom:296.646667pt;}
.ye6{bottom:301.965333pt;}
.y7d{bottom:305.893333pt;}
.yc5{bottom:310.760000pt;}
.y50{bottom:311.674667pt;}
.y117{bottom:313.632000pt;}
.y21{bottom:315.166667pt;}
.y138{bottom:315.226667pt;}
.y97{bottom:317.900000pt;}
.ye5{bottom:321.094667pt;}
.y7c{bottom:321.834667pt;}
.y4f{bottom:327.614667pt;}
.yc4{bottom:329.888000pt;}
.y116{bottom:332.760000pt;}
.y137{bottom:334.354667pt;}
.y7b{bottom:337.774667pt;}
.y96{bottom:339.153333pt;}
.ye4{bottom:340.222667pt;}
.y20{bottom:344.257333pt;}
.yc3{bottom:349.016000pt;}
.y115{bottom:351.889333pt;}
.y136{bottom:353.482667pt;}
.y4e{bottom:356.706667pt;}
.ye3{bottom:359.350667pt;}
.y95{bottom:360.408000pt;}
.y7a{bottom:362.292000pt;}
.yc2{bottom:368.145333pt;}
.y114{bottom:371.017333pt;}
.y135{bottom:372.610667pt;}
.y94{bottom:376.348000pt;}
.ye2{bottom:378.478667pt;}
.yc1{bottom:387.273333pt;}
.y1f{bottom:387.324000pt;}
.y113{bottom:390.145333pt;}
.y134{bottom:391.738667pt;}
.ye1{bottom:397.606667pt;}
.y79{bottom:402.792000pt;}
.y1e{bottom:403.264000pt;}
.y4d{bottom:403.949333pt;}
.y93{bottom:405.438667pt;}
.yc0{bottom:406.401333pt;}
.y112{bottom:409.273333pt;}
.y133{bottom:410.866667pt;}
.ye0{bottom:416.734667pt;}
.y1d{bottom:419.205333pt;}
.y155{bottom:420.374667pt;}
.ybf{bottom:425.529333pt;}
.y111{bottom:428.401333pt;}
.y132{bottom:429.996000pt;}
.y78{bottom:433.633333pt;}
.y4c{bottom:434.792000pt;}
.y1c{bottom:435.145333pt;}
.ydf{bottom:435.862667pt;}
.y154{bottom:439.502667pt;}
.ybe{bottom:444.657333pt;}
.y110{bottom:447.529333pt;}
.y131{bottom:449.124000pt;}
.y92{bottom:449.362667pt;}
.y1b{bottom:451.085333pt;}
.y77{bottom:452.761333pt;}
.y4b{bottom:453.920000pt;}
.yde{bottom:454.992000pt;}
.yb0{bottom:458.142667pt;}
.y153{bottom:458.630667pt;}
.ybd{bottom:463.785333pt;}
.y91{bottom:465.302667pt;}
.y10f{bottom:466.657333pt;}
.y1a{bottom:467.025333pt;}
.y130{bottom:468.252000pt;}
.y76{bottom:471.889333pt;}
.y4a{bottom:473.048000pt;}
.ydd{bottom:474.120000pt;}
.y152{bottom:477.758667pt;}
.ybc{bottom:482.913333pt;}
.y19{bottom:482.965333pt;}
.y10e{bottom:485.786667pt;}
.y12f{bottom:487.380000pt;}
.y75{bottom:491.018667pt;}
.y90{bottom:491.869333pt;}
.y49{bottom:492.176000pt;}
.ydc{bottom:493.248000pt;}
.y151{bottom:496.888000pt;}
.y18{bottom:498.905333pt;}
.ybb{bottom:502.042667pt;}
.y10d{bottom:504.914667pt;}
.y12e{bottom:506.508000pt;}
.y8f{bottom:507.809333pt;}
.y74{bottom:510.146667pt;}
.y48{bottom:511.304000pt;}
.ydb{bottom:512.376000pt;}
.y17{bottom:514.846667pt;}
.y150{bottom:516.016000pt;}
.yba{bottom:521.170667pt;}
.y8e{bottom:523.749333pt;}
.y10c{bottom:524.042667pt;}
.y12d{bottom:525.636000pt;}
.y73{bottom:529.274667pt;}
.y47{bottom:530.432000pt;}
.y16{bottom:530.786667pt;}
.yda{bottom:531.504000pt;}
.y14f{bottom:535.144000pt;}
.yb9{bottom:540.298667pt;}
.y10b{bottom:543.170667pt;}
.y12c{bottom:544.764000pt;}
.y15{bottom:546.726667pt;}
.y72{bottom:548.402667pt;}
.y46{bottom:549.561333pt;}
.yd9{bottom:550.632000pt;}
.y14e{bottom:554.272000pt;}
.y8d{bottom:558.273333pt;}
.yb8{bottom:559.426667pt;}
.y10a{bottom:562.298667pt;}
.y14{bottom:562.666667pt;}
.y12b{bottom:563.893333pt;}
.y71{bottom:568.062667pt;}
.y45{bottom:568.689333pt;}
.yd8{bottom:569.760000pt;}
.y14d{bottom:573.400000pt;}
.yb7{bottom:578.554667pt;}
.y13{bottom:578.606667pt;}
.y109{bottom:581.426667pt;}
.y12a{bottom:583.021333pt;}
.y8c{bottom:584.840000pt;}
.y44{bottom:587.817333pt;}
.yd7{bottom:588.889333pt;}
.y14c{bottom:592.528000pt;}
.yb6{bottom:597.682667pt;}
.y108{bottom:600.554667pt;}
.y70{bottom:601.834667pt;}
.y129{bottom:602.149333pt;}
.y43{bottom:606.945333pt;}
.y12{bottom:607.698667pt;}
.yd6{bottom:608.017333pt;}
.yaf{bottom:611.233333pt;}
.y14b{bottom:611.656000pt;}
.yb5{bottom:616.810667pt;}
.y6f{bottom:617.774667pt;}
.y8b{bottom:619.364000pt;}
.y107{bottom:619.684000pt;}
.y128{bottom:621.277333pt;}
.y42{bottom:626.605333pt;}
.yd5{bottom:627.145333pt;}
.y14a{bottom:630.785333pt;}
.y6e{bottom:633.714667pt;}
.y8a{bottom:635.304000pt;}
.yb4{bottom:635.940000pt;}
.y106{bottom:638.812000pt;}
.y127{bottom:640.405333pt;}
.yae{bottom:642.076000pt;}
.yd4{bottom:646.273333pt;}
.y149{bottom:649.913333pt;}
.y11{bottom:650.765333pt;}
.y89{bottom:651.244000pt;}
.yb3{bottom:655.598667pt;}
.y41{bottom:657.794667pt;}
.y105{bottom:657.940000pt;}
.y126{bottom:660.065333pt;}
.yad{bottom:661.204000pt;}
.y10{bottom:665.376000pt;}
.yd3{bottom:665.401333pt;}
.y148{bottom:669.041333pt;}
.y6d{bottom:671.558667pt;}
.y40{bottom:673.734667pt;}
.y88{bottom:675.761333pt;}
.y104{bottom:677.068000pt;}
.yf{bottom:679.988000pt;}
.yac{bottom:680.332000pt;}
.yd2{bottom:685.061333pt;}
.y147{bottom:688.169333pt;}
.yb2{bottom:688.780000pt;}
.y125{bottom:694.013333pt;}
.ye{bottom:694.600000pt;}
.y103{bottom:696.196000pt;}
.yab{bottom:699.460000pt;}
.y6c{bottom:702.400000pt;}
.y3f{bottom:702.826667pt;}
.yb1{bottom:704.720000pt;}
.y146{bottom:707.297333pt;}
.yd{bottom:709.212000pt;}
.y102{bottom:715.324000pt;}
.y87{bottom:715.524000pt;}
.yd1{bottom:718.110667pt;}
.yaa{bottom:718.589333pt;}
.y6b{bottom:721.528000pt;}
.yc{bottom:723.824000pt;}
.y145{bottom:726.425333pt;}
.y101{bottom:734.452000pt;}
.ya9{bottom:737.717333pt;}
.yb{bottom:738.436000pt;}
.y6a{bottom:740.656000pt;}
.y86{bottom:745.553333pt;}
.y3e{bottom:746.749333pt;}
.ya{bottom:753.048000pt;}
.y100{bottom:753.581333pt;}
.ya8{bottom:756.845333pt;}
.y69{bottom:759.784000pt;}
.y3d{bottom:762.689333pt;}
.y85{bottom:764.682667pt;}
.y9{bottom:767.660000pt;}
.yff{bottom:772.709333pt;}
.ya7{bottom:775.973333pt;}
.y3c{bottom:778.629333pt;}
.y68{bottom:778.913333pt;}
.y8{bottom:783.508000pt;}
.y84{bottom:783.810667pt;}
.yfe{bottom:791.837333pt;}
.y3b{bottom:794.569333pt;}
.ya6{bottom:795.101333pt;}
.y67{bottom:798.572000pt;}
.y83{bottom:802.938667pt;}
.yfd{bottom:810.965333pt;}
.ya5{bottom:814.229333pt;}
.y82{bottom:822.066667pt;}
.y7{bottom:826.349333pt;}
.y3a{bottom:829.093333pt;}
.yfc{bottom:830.093333pt;}
.y66{bottom:833.081333pt;}
.ya4{bottom:833.357333pt;}
.y81{bottom:841.194667pt;}
.y39{bottom:845.033333pt;}
.y65{bottom:849.022667pt;}
.yfb{bottom:849.221333pt;}
.ya3{bottom:852.486667pt;}
.y6{bottom:857.929333pt;}
.y80{bottom:860.322667pt;}
.y38{bottom:860.973333pt;}
.yfa{bottom:868.350667pt;}
.ya2{bottom:871.614667pt;}
.y37{bottom:876.913333pt;}
.y7f{bottom:879.450667pt;}
.y64{bottom:886.865333pt;}
.yf9{bottom:887.478667pt;}
.ya1{bottom:890.742667pt;}
.y36{bottom:892.854667pt;}
.y5{bottom:893.588000pt;}
.y7e{bottom:898.580000pt;}
.yf8{bottom:906.606667pt;}
.y35{bottom:908.794667pt;}
.ya0{bottom:909.870667pt;}
.y4{bottom:910.120000pt;}
.y63{bottom:917.708000pt;}
.y34{bottom:924.734667pt;}
.yf7{bottom:925.734667pt;}
.y9f{bottom:928.998667pt;}
.y62{bottom:936.836000pt;}
.yf6{bottom:944.862667pt;}
.y9e{bottom:948.126667pt;}
.y3{bottom:948.637333pt;}
.y61{bottom:955.964000pt;}
.y33{bottom:959.257333pt;}
.yf5{bottom:963.990667pt;}
.y9d{bottom:967.254667pt;}
.y60{bottom:975.092000pt;}
.y32{bottom:975.198667pt;}
.y2{bottom:977.861333pt;}
.yf4{bottom:983.650667pt;}
.y9c{bottom:986.914667pt;}
.y5f{bottom:994.220000pt;}
.y31{bottom:1001.765333pt;}
.y5e{bottom:1013.348000pt;}
.y124{bottom:1013.880000pt;}
.yf3{bottom:1017.598667pt;}
.y30{bottom:1017.705333pt;}
.y5d{bottom:1033.008000pt;}
.yf2{bottom:1033.540000pt;}
.y2f{bottom:1033.645333pt;}
.y1{bottom:1084.920000pt;}
.h5{height:29.925069pt;}
.hf{height:29.967576pt;}
.h8{height:33.522381pt;}
.h6{height:35.913421pt;}
.ha{height:36.928037pt;}
.hb{height:39.903534pt;}
.h2{height:39.956668pt;}
.hc{height:44.696508pt;}
.h7{height:45.589163pt;}
.h4{height:53.066402pt;}
.h9{height:53.712173pt;}
.h3{height:64.546273pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1a{left:35.740000pt;}
.xb{left:75.590667pt;}
.xc{left:95.517333pt;}
.x2{left:97.304000pt;}
.x1d{left:98.521333pt;}
.x21{left:99.444000pt;}
.xe{left:102.894667pt;}
.xa{left:108.800000pt;}
.xd{left:112.829333pt;}
.x18{left:123.833333pt;}
.x9{left:127.225333pt;}
.x12{left:136.218667pt;}
.xf{left:173.036000pt;}
.x14{left:181.006667pt;}
.x13{left:200.302667pt;}
.x1c{left:202.637333pt;}
.x20{left:207.673333pt;}
.x10{left:238.317333pt;}
.x5{left:239.294667pt;}
.x15{left:240.530667pt;}
.x6{left:248.069333pt;}
.x11{left:251.154667pt;}
.x3{left:276.185333pt;}
.x1f{left:284.078667pt;}
.x1{left:335.558667pt;}
.x4{left:346.441333pt;}
.x7{left:360.440000pt;}
.x17{left:367.046667pt;}
.x8{left:369.798667pt;}
.x1b{left:448.488000pt;}
.x22{left:576.044000pt;}
.x1e{left:576.966667pt;}
.x19{left:880.473333pt;}
.x16{left:1084.920000pt;}
}




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