
    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_a4b3f4d4ac395727cca2ec8f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.814000;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_0574604cad1aaf959534262b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a1a2f647412183a5e2d3476f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2cd680f37a73087370fb11bf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_977df2cdba8f0dea3155992c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_788f24275f3623c8c9144c8a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_3cb0850a7bf36d89a3592883.woff')format("woff");}.ff7{font-family:ff7;line-height:1.127000;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_18271f55f78fba1b23550b0c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_16e78e754b7a180f2aca3494.woff')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_1c741f53b17fdb56f4d9920e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_41e785189ddf86574241696c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_3cb0850a7bf36d89a3592883.woff')format("woff");}.ffc{font-family:ffc;line-height:1.127000;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_8b3fae4a217b4e390461e8b2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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_3cb0850a7bf36d89a3592883.woff')format("woff");}.ffe{font-family:ffe;line-height:1.127000;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);}
.v4{vertical-align:-17.982000px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v3{vertical-align:21.978000px;}
.ls8{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.003000px;}
.ls4{letter-spacing:0.540000px;}
.ls6{letter-spacing:7.299000px;}
.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;}
}
.wscd{word-spacing:-14.040000px;}
.ws4{word-spacing:-13.500000px;}
.ws40{word-spacing:-12.960000px;}
.wsaa{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.000000px;}
.ws2{word-spacing:-10.008000px;}
.wsaf{word-spacing:-7.938000px;}
.wsca{word-spacing:-4.212000px;}
.ws8d{word-spacing:-3.996000px;}
.wsb3{word-spacing:-3.618000px;}
.wsd2{word-spacing:-3.564000px;}
.wsbc{word-spacing:-3.024000px;}
.wscb{word-spacing:-2.970000px;}
.ws69{word-spacing:-2.916000px;}
.ws29{word-spacing:-2.592000px;}
.ws9{word-spacing:-2.538000px;}
.ws50{word-spacing:-2.484000px;}
.ws68{word-spacing:-2.376000px;}
.wsa2{word-spacing:-2.268000px;}
.ws34{word-spacing:-2.106000px;}
.ws9a{word-spacing:-2.052000px;}
.ws2f{word-spacing:-1.998000px;}
.wsae{word-spacing:-1.944000px;}
.ws57{word-spacing:-1.890000px;}
.ws79{word-spacing:-1.836000px;}
.ws67{word-spacing:-1.782000px;}
.ws5f{word-spacing:-1.728000px;}
.ws3b{word-spacing:-1.674000px;}
.ws3d{word-spacing:-1.566000px;}
.ws12{word-spacing:-1.512000px;}
.ws1d{word-spacing:-1.404000px;}
.ws19{word-spacing:-1.350000px;}
.ws71{word-spacing:-1.296000px;}
.ws36{word-spacing:-1.242000px;}
.ws2a{word-spacing:-1.188000px;}
.ws9e{word-spacing:-1.026000px;}
.ws1e{word-spacing:-0.972000px;}
.ws23{word-spacing:-0.864000px;}
.ws70{word-spacing:-0.810000px;}
.ws5c{word-spacing:-0.756000px;}
.ws72{word-spacing:-0.702000px;}
.ws14{word-spacing:-0.648000px;}
.wsbf{word-spacing:-0.594000px;}
.ws74{word-spacing:-0.540000px;}
.ws56{word-spacing:-0.486000px;}
.ws63{word-spacing:-0.432000px;}
.ws6a{word-spacing:-0.378000px;}
.ws2c{word-spacing:-0.324000px;}
.wsa4{word-spacing:-0.270000px;}
.ws21{word-spacing:-0.216000px;}
.ws58{word-spacing:-0.162000px;}
.wsb4{word-spacing:-0.108000px;}
.wsa6{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.108000px;}
.ws15{word-spacing:0.162000px;}
.ws6c{word-spacing:0.216000px;}
.ws8{word-spacing:0.270000px;}
.ws30{word-spacing:0.324000px;}
.ws3f{word-spacing:0.378000px;}
.ws5e{word-spacing:0.432000px;}
.ws60{word-spacing:0.486000px;}
.ws61{word-spacing:0.540000px;}
.ws43{word-spacing:0.594000px;}
.ws32{word-spacing:0.648000px;}
.ws82{word-spacing:0.702000px;}
.ws4f{word-spacing:0.756000px;}
.ws78{word-spacing:0.810000px;}
.ws64{word-spacing:0.864000px;}
.ws42{word-spacing:0.918000px;}
.ws51{word-spacing:0.972000px;}
.ws5a{word-spacing:1.026000px;}
.ws4b{word-spacing:1.080000px;}
.ws6b{word-spacing:1.134000px;}
.ws9b{word-spacing:1.188000px;}
.wsa1{word-spacing:1.242000px;}
.ws7d{word-spacing:1.296000px;}
.ws9f{word-spacing:1.350000px;}
.ws22{word-spacing:1.404000px;}
.ws93{word-spacing:1.458000px;}
.ws4a{word-spacing:1.512000px;}
.ws2d{word-spacing:1.620000px;}
.ws59{word-spacing:1.782000px;}
.ws47{word-spacing:1.836000px;}
.ws1c{word-spacing:1.890000px;}
.ws44{word-spacing:1.998000px;}
.ws6{word-spacing:2.052000px;}
.ws13{word-spacing:2.106000px;}
.wsa7{word-spacing:2.160000px;}
.ws10{word-spacing:2.214000px;}
.ws85{word-spacing:2.268000px;}
.ws86{word-spacing:2.322000px;}
.wse{word-spacing:2.376000px;}
.ws1a{word-spacing:2.430000px;}
.wsd{word-spacing:2.484000px;}
.ws3e{word-spacing:2.538000px;}
.wsa8{word-spacing:2.592000px;}
.ws84{word-spacing:2.646000px;}
.wsc4{word-spacing:2.700000px;}
.ws8e{word-spacing:2.808000px;}
.wsbe{word-spacing:2.862000px;}
.ws24{word-spacing:2.970000px;}
.ws62{word-spacing:3.078000px;}
.wsa{word-spacing:3.132000px;}
.ws49{word-spacing:3.186000px;}
.ws80{word-spacing:3.240000px;}
.ws7c{word-spacing:3.294000px;}
.ws7f{word-spacing:3.348000px;}
.ws9c{word-spacing:3.402000px;}
.wsa9{word-spacing:3.456000px;}
.ws66{word-spacing:3.510000px;}
.wsb{word-spacing:3.564000px;}
.ws25{word-spacing:3.618000px;}
.ws8b{word-spacing:3.672000px;}
.ws91{word-spacing:3.780000px;}
.ws5d{word-spacing:3.834000px;}
.ws7{word-spacing:3.888000px;}
.ws28{word-spacing:3.942000px;}
.ws75{word-spacing:3.996000px;}
.ws2e{word-spacing:4.050000px;}
.wsc{word-spacing:4.104000px;}
.ws45{word-spacing:4.158000px;}
.ws6d{word-spacing:4.212000px;}
.ws5b{word-spacing:4.266000px;}
.ws54{word-spacing:4.320000px;}
.ws99{word-spacing:4.374000px;}
.ws26{word-spacing:4.482000px;}
.ws4e{word-spacing:4.536000px;}
.ws98{word-spacing:4.590000px;}
.ws96{word-spacing:4.644000px;}
.ws8f{word-spacing:4.698000px;}
.ws73{word-spacing:4.806000px;}
.ws4c{word-spacing:4.860000px;}
.ws6f{word-spacing:4.914000px;}
.ws41{word-spacing:4.968000px;}
.ws81{word-spacing:5.022000px;}
.ws33{word-spacing:5.076000px;}
.ws48{word-spacing:5.130000px;}
.ws7a{word-spacing:5.184000px;}
.ws95{word-spacing:5.238000px;}
.ws8c{word-spacing:5.292000px;}
.ws2b{word-spacing:5.346000px;}
.ws17{word-spacing:5.400000px;}
.ws18{word-spacing:5.454000px;}
.ws3a{word-spacing:5.508000px;}
.ws89{word-spacing:5.670000px;}
.ws35{word-spacing:5.778000px;}
.ws3c{word-spacing:5.832000px;}
.ws9d{word-spacing:5.886000px;}
.wsa3{word-spacing:5.940000px;}
.ws31{word-spacing:5.994000px;}
.ws37{word-spacing:6.102000px;}
.ws7e{word-spacing:6.156000px;}
.ws16{word-spacing:6.210000px;}
.wsa0{word-spacing:6.264000px;}
.ws87{word-spacing:6.318000px;}
.ws92{word-spacing:6.372000px;}
.ws11{word-spacing:6.480000px;}
.ws53{word-spacing:6.588000px;}
.ws55{word-spacing:6.642000px;}
.ws7b{word-spacing:6.696000px;}
.wsa5{word-spacing:6.858000px;}
.ws39{word-spacing:6.966000px;}
.ws76{word-spacing:7.074000px;}
.ws83{word-spacing:7.182000px;}
.ws46{word-spacing:7.236000px;}
.ws27{word-spacing:7.290000px;}
.wsf{word-spacing:7.452000px;}
.ws94{word-spacing:7.506000px;}
.ws6e{word-spacing:7.614000px;}
.ws97{word-spacing:7.668000px;}
.ws4d{word-spacing:7.722000px;}
.ws20{word-spacing:7.830000px;}
.ws5{word-spacing:7.884000px;}
.ws1f{word-spacing:7.992000px;}
.ws52{word-spacing:8.100000px;}
.ws77{word-spacing:8.154000px;}
.wsc9{word-spacing:8.964000px;}
.ws65{word-spacing:9.450000px;}
.wsb6{word-spacing:9.558000px;}
.ws90{word-spacing:9.828000px;}
.ws88{word-spacing:10.206000px;}
.ws38{word-spacing:10.422000px;}
.ws8a{word-spacing:10.638000px;}
.wscc{word-spacing:11.070000px;}
.wsd1{word-spacing:11.718000px;}
.wsd5{word-spacing:11.826000px;}
.wscf{word-spacing:12.096000px;}
.wsbb{word-spacing:12.420000px;}
.wsad{word-spacing:12.528000px;}
.wsd0{word-spacing:15.120000px;}
.wsb9{word-spacing:15.336000px;}
.wsc6{word-spacing:15.768000px;}
.wsd4{word-spacing:15.822000px;}
.wsb0{word-spacing:16.470000px;}
.wsc5{word-spacing:16.632000px;}
.wsc8{word-spacing:17.442000px;}
.wsc7{word-spacing:18.468000px;}
.wsc2{word-spacing:18.792000px;}
.wsac{word-spacing:19.062000px;}
.wsab{word-spacing:20.790000px;}
.wsb5{word-spacing:22.626000px;}
.wsc1{word-spacing:23.166000px;}
.wsb2{word-spacing:23.382000px;}
.wsce{word-spacing:25.704000px;}
.wsb7{word-spacing:33.588000px;}
.wsd3{word-spacing:34.560000px;}
.wsb8{word-spacing:36.612000px;}
.wsb1{word-spacing:37.584000px;}
.wsc3{word-spacing:38.502000px;}
.wsd6{word-spacing:45.792000px;}
.wsc0{word-spacing:53.838000px;}
.wsba{word-spacing:54.162000px;}
.wsbd{word-spacing:54.540000px;}
._0{margin-left:-32.928000px;}
._10{margin-left:-6.627000px;}
._2{margin-left:-5.529600px;}
._8{margin-left:-3.672000px;}
._3{margin-left:-2.592000px;}
._1{margin-left:-1.008000px;}
._7{width:1.372800px;}
._5{width:2.851200px;}
._6{width:4.564800px;}
._9{width:5.899200px;}
._a{width:7.414200px;}
._c{width:8.420400px;}
._b{width:9.478200px;}
._d{width:11.145600px;}
._e{width:12.252600px;}
._11{width:14.931000px;}
._12{width:16.409400px;}
._f{width:19.618200px;}
._14{width:34.538400px;}
._13{width:54.519600px;}
._4{width:71.910000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:transparent;}
.fc1{color:rgb(39,91,155);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:38.478000px;}
.fs8{font-size:44.100000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:96.000000px;}
.fs2{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:42.246900px;}
.y1{bottom:42.247500px;}
.y16{bottom:104.319000px;}
.y6d{bottom:104.875950px;}
.y110{bottom:105.868050px;}
.ya1{bottom:106.085550px;}
.y146{bottom:106.190400px;}
.yee{bottom:107.922000px;}
.y16b{bottom:109.836600px;}
.y194{bottom:112.142250px;}
.y116{bottom:114.372000px;}
.y15{bottom:118.719000px;}
.y6c{bottom:122.875950px;}
.y10f{bottom:123.868050px;}
.ya0{bottom:124.085550px;}
.yed{bottom:126.072000px;}
.y16a{bottom:127.836600px;}
.y193{bottom:130.142250px;}
.y115{bottom:132.372000px;}
.y14{bottom:133.119000px;}
.y145{bottom:136.946400px;}
.y6b{bottom:140.875950px;}
.y10e{bottom:141.868050px;}
.y9f{bottom:142.085550px;}
.yec{bottom:144.222000px;}
.y169{bottom:145.836600px;}
.y13{bottom:147.519000px;}
.y114{bottom:150.372000px;}
.y192{bottom:156.946200px;}
.y6a{bottom:158.875950px;}
.y10d{bottom:159.868050px;}
.y9e{bottom:160.085550px;}
.yeb{bottom:162.372000px;}
.y168{bottom:163.836600px;}
.y113{bottom:168.372000px;}
.y191{bottom:175.246200px;}
.y69{bottom:176.875950px;}
.y10c{bottom:177.868050px;}
.y9d{bottom:178.085550px;}
.y144{bottom:180.458250px;}
.yea{bottom:180.522000px;}
.y167{bottom:181.836600px;}
.y112{bottom:186.372000px;}
.y190{bottom:193.546200px;}
.y68{bottom:194.875950px;}
.y10b{bottom:195.868050px;}
.y9c{bottom:196.085550px;}
.y143{bottom:198.458250px;}
.ye9{bottom:198.672000px;}
.y111{bottom:204.372000px;}
.y166{bottom:208.340550px;}
.y18f{bottom:211.846200px;}
.y67{bottom:212.875950px;}
.y9b{bottom:214.085550px;}
.y142{bottom:216.458250px;}
.ye8{bottom:216.822000px;}
.y10a{bottom:222.372000px;}
.y165{bottom:226.340550px;}
.y66{bottom:230.875950px;}
.y9a{bottom:232.085550px;}
.y141{bottom:234.458250px;}
.ye7{bottom:234.972000px;}
.y18e{bottom:238.650150px;}
.y109{bottom:240.372000px;}
.y164{bottom:244.340550px;}
.y65{bottom:248.875950px;}
.y99{bottom:250.085550px;}
.y140{bottom:252.458250px;}
.ye6{bottom:253.122000px;}
.y36{bottom:255.361500px;}
.y18d{bottom:256.950150px;}
.y108{bottom:258.372000px;}
.y163{bottom:262.340550px;}
.y64{bottom:266.875950px;}
.y98{bottom:268.085550px;}
.y35{bottom:269.761500px;}
.ye5{bottom:271.272000px;}
.y18c{bottom:275.250150px;}
.y107{bottom:276.372000px;}
.y13f{bottom:283.214100px;}
.y34{bottom:284.161500px;}
.y63{bottom:284.875950px;}
.y97{bottom:286.085550px;}
.y162{bottom:288.844350px;}
.ye4{bottom:289.422000px;}
.y106{bottom:294.372000px;}
.y33{bottom:298.561500px;}
.y18b{bottom:302.054100px;}
.y62{bottom:302.875950px;}
.y96{bottom:304.085550px;}
.y161{bottom:306.844500px;}
.ye3{bottom:307.572000px;}
.y12{bottom:309.495000px;}
.y105{bottom:312.372000px;}
.y32{bottom:312.961500px;}
.y18a{bottom:320.354100px;}
.y61{bottom:320.875950px;}
.y95{bottom:322.085550px;}
.y11{bottom:323.895000px;}
.y160{bottom:324.844500px;}
.ye2{bottom:325.722000px;}
.y13e{bottom:326.725950px;}
.y31{bottom:327.361500px;}
.y104{bottom:330.372000px;}
.y10{bottom:338.295000px;}
.y60{bottom:338.875950px;}
.y94{bottom:340.085550px;}
.y30{bottom:341.761500px;}
.y15f{bottom:342.844500px;}
.ye1{bottom:343.872000px;}
.y13d{bottom:344.725950px;}
.y189{bottom:347.158050px;}
.y103{bottom:348.372000px;}
.yf{bottom:352.695000px;}
.y2f{bottom:356.161500px;}
.y5f{bottom:356.875950px;}
.y93{bottom:358.085550px;}
.ye0{bottom:362.022000px;}
.y13c{bottom:362.575950px;}
.y188{bottom:365.458050px;}
.y102{bottom:366.372000px;}
.ye{bottom:367.095000px;}
.y15e{bottom:369.348300px;}
.y2e{bottom:370.561500px;}
.yc3{bottom:374.875950px;}
.y92{bottom:376.085550px;}
.y13b{bottom:380.425950px;}
.yd{bottom:381.495000px;}
.y5e{bottom:383.379900px;}
.y101{bottom:384.372000px;}
.y2d{bottom:384.961500px;}
.y15d{bottom:387.348300px;}
.ydf{bottom:388.675950px;}
.y187{bottom:392.262000px;}
.yc2{bottom:392.875950px;}
.y91{bottom:394.085550px;}
.y13a{bottom:398.275950px;}
.y2c{bottom:399.361500px;}
.y5d{bottom:401.379900px;}
.y100{bottom:402.372000px;}
.yde{bottom:406.825950px;}
.y186{bottom:410.562000px;}
.yc1{bottom:410.875950px;}
.y90{bottom:412.085550px;}
.y15c{bottom:413.852250px;}
.y139{bottom:416.125950px;}
.y5c{bottom:419.379900px;}
.yff{bottom:420.372000px;}
.ydd{bottom:424.975950px;}
.yc0{bottom:428.875950px;}
.y8f{bottom:430.085550px;}
.y15b{bottom:431.852250px;}
.y138{bottom:433.975950px;}
.y4{bottom:434.733000px;}
.y185{bottom:437.365950px;}
.y5b{bottom:437.379900px;}
.yfe{bottom:438.372000px;}
.ydc{bottom:443.125950px;}
.ybf{bottom:446.875950px;}
.y8e{bottom:448.085550px;}
.y137{bottom:451.825950px;}
.y5a{bottom:455.379900px;}
.y184{bottom:455.665950px;}
.yfd{bottom:456.372000px;}
.y15a{bottom:458.356200px;}
.ydb{bottom:461.275950px;}
.ybe{bottom:464.875950px;}
.y8d{bottom:466.085550px;}
.y136{bottom:469.675950px;}
.y59{bottom:473.379900px;}
.y183{bottom:473.965950px;}
.yfc{bottom:474.372000px;}
.y2b{bottom:475.117500px;}
.y159{bottom:476.356200px;}
.yda{bottom:479.425950px;}
.ybd{bottom:482.875950px;}
.y8c{bottom:484.085550px;}
.y135{bottom:487.525950px;}
.y58{bottom:491.379900px;}
.y182{bottom:492.265800px;}
.yfb{bottom:492.372000px;}
.yd9{bottom:497.575950px;}
.ybc{bottom:500.875950px;}
.y8b{bottom:502.085550px;}
.y158{bottom:502.860150px;}
.y134{bottom:505.375950px;}
.y57{bottom:509.379900px;}
.yfa{bottom:510.372000px;}
.yd8{bottom:515.725950px;}
.ybb{bottom:518.875950px;}
.y181{bottom:519.069750px;}
.y157{bottom:520.860150px;}
.y56{bottom:527.379900px;}
.y8a{bottom:528.589500px;}
.y133{bottom:531.729900px;}
.y2a{bottom:531.817500px;}
.yd7{bottom:533.875950px;}
.yba{bottom:536.875950px;}
.y180{bottom:537.369900px;}
.y55{bottom:545.379900px;}
.y29{bottom:546.217500px;}
.y89{bottom:546.589500px;}
.y156{bottom:547.364100px;}
.y132{bottom:549.579900px;}
.yd6{bottom:552.025950px;}
.yb9{bottom:554.875950px;}
.y28{bottom:560.617500px;}
.y54{bottom:563.379900px;}
.y17f{bottom:564.173700px;}
.y88{bottom:564.589500px;}
.y155{bottom:565.364100px;}
.y131{bottom:567.429900px;}
.yb8{bottom:572.875950px;}
.y27{bottom:575.017500px;}
.yc{bottom:575.758500px;}
.yd5{bottom:578.679900px;}
.y17e{bottom:582.473700px;}
.y87{bottom:582.589500px;}
.y130{bottom:585.279900px;}
.y26{bottom:589.417500px;}
.y53{bottom:589.883850px;}
.yb{bottom:590.158500px;}
.yb7{bottom:590.875950px;}
.y154{bottom:591.868050px;}
.yd4{bottom:596.829900px;}
.y86{bottom:600.589500px;}
.y17d{bottom:600.773700px;}
.y12f{bottom:603.129900px;}
.y25{bottom:603.817500px;}
.ya{bottom:604.558500px;}
.y52{bottom:607.883850px;}
.yb6{bottom:608.875950px;}
.y153{bottom:609.868050px;}
.yd3{bottom:614.979900px;}
.y24{bottom:618.217500px;}
.y85{bottom:618.589500px;}
.y9{bottom:618.958500px;}
.y17c{bottom:619.073850px;}
.y12e{bottom:620.979900px;}
.y51{bottom:625.883850px;}
.yf9{bottom:626.875950px;}
.y152{bottom:627.868050px;}
.y23{bottom:632.617500px;}
.yd2{bottom:633.129900px;}
.y8{bottom:633.358500px;}
.yb5{bottom:635.379900px;}
.y84{bottom:636.589500px;}
.y12d{bottom:638.829900px;}
.y50{bottom:643.883850px;}
.yf8{bottom:644.875950px;}
.y151{bottom:645.868050px;}
.y17b{bottom:645.877650px;}
.y22{bottom:647.017500px;}
.y7{bottom:647.758500px;}
.yd1{bottom:651.279900px;}
.yb4{bottom:653.379900px;}
.y83{bottom:654.589500px;}
.y12c{bottom:656.679900px;}
.y21{bottom:661.417500px;}
.y4f{bottom:661.883850px;}
.yf7{bottom:662.875950px;}
.y150{bottom:663.868050px;}
.y17a{bottom:664.177650px;}
.yd0{bottom:669.429900px;}
.yb3{bottom:671.379900px;}
.y82{bottom:672.589500px;}
.y12b{bottom:674.529900px;}
.y20{bottom:675.817500px;}
.y4e{bottom:679.883850px;}
.yf6{bottom:680.875950px;}
.y179{bottom:682.477650px;}
.ycf{bottom:687.579900px;}
.y6{bottom:688.422000px;}
.yb2{bottom:689.379750px;}
.y1f{bottom:690.217500px;}
.y14f{bottom:690.372000px;}
.y81{bottom:690.589500px;}
.y12a{bottom:692.379750px;}
.y4d{bottom:697.883850px;}
.yf5{bottom:698.875950px;}
.y178{bottom:700.777650px;}
.y5{bottom:702.822000px;}
.y1e{bottom:704.617500px;}
.yce{bottom:705.729900px;}
.yb1{bottom:707.379750px;}
.y14e{bottom:708.372000px;}
.y80{bottom:708.589500px;}
.y1a6{bottom:709.350900px;}
.y129{bottom:710.229900px;}
.y4c{bottom:715.883850px;}
.yf4{bottom:716.875950px;}
.y1b1{bottom:717.868050px;}
.ycd{bottom:723.879750px;}
.yb0{bottom:725.379750px;}
.y14d{bottom:726.372000px;}
.y7f{bottom:726.589500px;}
.y1a5{bottom:727.350900px;}
.y128{bottom:728.079900px;}
.y177{bottom:731.833650px;}
.y4b{bottom:733.883850px;}
.yf3{bottom:734.875950px;}
.y1b0{bottom:735.868050px;}
.y3{bottom:737.397000px;}
.ycc{bottom:742.029900px;}
.yaf{bottom:743.379750px;}
.y14c{bottom:744.372000px;}
.y7e{bottom:744.589500px;}
.y1a4{bottom:745.350900px;}
.y127{bottom:745.929900px;}
.y4a{bottom:751.883850px;}
.yf2{bottom:752.875950px;}
.y1af{bottom:753.868050px;}
.ycb{bottom:760.179900px;}
.yae{bottom:761.379750px;}
.y14b{bottom:762.372000px;}
.y7d{bottom:762.589500px;}
.y1a3{bottom:763.350900px;}
.y126{bottom:763.779900px;}
.y49{bottom:769.883850px;}
.yf1{bottom:770.875950px;}
.y1ae{bottom:771.868050px;}
.y176{bottom:775.345500px;}
.yca{bottom:778.329900px;}
.yad{bottom:779.379750px;}
.y7c{bottom:780.589500px;}
.y1a2{bottom:781.350900px;}
.y125{bottom:781.629750px;}
.y48{bottom:787.883850px;}
.y14a{bottom:788.875950px;}
.y175{bottom:793.345500px;}
.yc9{bottom:796.479900px;}
.yac{bottom:797.379750px;}
.y1ad{bottom:798.372000px;}
.y7b{bottom:798.589500px;}
.y1a1{bottom:799.350900px;}
.y124{bottom:799.479900px;}
.y47{bottom:805.883850px;}
.y149{bottom:806.875950px;}
.y174{bottom:811.345500px;}
.y1d{bottom:811.372500px;}
.yc8{bottom:814.629750px;}
.yab{bottom:815.379750px;}
.y1ac{bottom:816.372000px;}
.y7a{bottom:816.589500px;}
.y123{bottom:817.329900px;}
.y1a0{bottom:817.350900px;}
.y46{bottom:823.883850px;}
.y148{bottom:824.875950px;}
.y1c{bottom:827.572500px;}
.y173{bottom:829.345500px;}
.yc7{bottom:832.779900px;}
.yaa{bottom:833.379750px;}
.y1ab{bottom:834.372000px;}
.y79{bottom:834.589500px;}
.y122{bottom:835.179900px;}
.y45{bottom:841.883850px;}
.y147{bottom:842.875950px;}
.y19f{bottom:843.854850px;}
.y172{bottom:847.345500px;}
.yc6{bottom:850.929900px;}
.ya9{bottom:851.379750px;}
.y1aa{bottom:852.372000px;}
.y78{bottom:852.589500px;}
.y121{bottom:853.029900px;}
.y1b{bottom:856.285500px;}
.y44{bottom:859.883850px;}
.y19e{bottom:861.854850px;}
.y171{bottom:865.345500px;}
.yc5{bottom:869.079900px;}
.ya8{bottom:869.379750px;}
.y77{bottom:870.589500px;}
.y120{bottom:870.879750px;}
.y43{bottom:877.883850px;}
.y1a9{bottom:878.875950px;}
.y19d{bottom:879.854850px;}
.y170{bottom:883.345500px;}
.yc4{bottom:887.229900px;}
.ya7{bottom:887.379750px;}
.y76{bottom:888.589500px;}
.y11f{bottom:888.729900px;}
.y1a{bottom:895.794000px;}
.y42{bottom:895.883850px;}
.y1a8{bottom:896.875950px;}
.y19c{bottom:897.854850px;}
.y16f{bottom:901.345500px;}
.ya6{bottom:905.379750px;}
.y11e{bottom:906.579900px;}
.y75{bottom:906.589500px;}
.y41{bottom:913.883850px;}
.y1a7{bottom:914.875950px;}
.y16e{bottom:919.345500px;}
.ya5{bottom:923.379750px;}
.y19b{bottom:924.358800px;}
.y11d{bottom:924.429900px;}
.y74{bottom:924.589500px;}
.y40{bottom:931.883850px;}
.y2{bottom:936.325500px;}
.y16d{bottom:937.345500px;}
.ya4{bottom:941.379750px;}
.y11c{bottom:942.279900px;}
.y3f{bottom:949.883850px;}
.y19a{bottom:950.862750px;}
.y73{bottom:951.093450px;}
.y16c{bottom:955.345500px;}
.ya3{bottom:959.379750px;}
.y11b{bottom:960.129750px;}
.y3e{bottom:967.883850px;}
.y72{bottom:973.345500px;}
.y199{bottom:977.366700px;}
.ya2{bottom:977.379750px;}
.y11a{bottom:977.979900px;}
.y3d{bottom:985.883850px;}
.y71{bottom:991.345500px;}
.y19{bottom:993.742500px;}
.y198{bottom:995.366700px;}
.yf0{bottom:995.379750px;}
.y119{bottom:995.829900px;}
.y3c{bottom:1003.883850px;}
.y70{bottom:1009.345500px;}
.yef{bottom:1013.379750px;}
.y197{bottom:1021.870650px;}
.y3b{bottom:1021.883850px;}
.y118{bottom:1022.183850px;}
.y18{bottom:1024.021500px;}
.y6f{bottom:1027.345500px;}
.y196{bottom:1039.870650px;}
.y3a{bottom:1039.883850px;}
.y117{bottom:1040.033700px;}
.y195{bottom:1057.870650px;}
.y39{bottom:1057.883850px;}
.y6e{bottom:1058.101350px;}
.y17{bottom:1064.286000px;}
.y38{bottom:1108.994850px;}
.ha{height:26.532000px;}
.hd{height:29.399836px;}
.h5{height:32.531250px;}
.he{height:33.351562px;}
.h14{height:36.966797px;}
.h13{height:37.520508px;}
.h2{height:37.632000px;}
.h10{height:40.351500px;}
.h3{height:42.117188px;}
.h7{height:42.234375px;}
.h6{height:42.632812px;}
.h8{height:43.920000px;}
.h11{height:47.381836px;}
.h12{height:47.513672px;}
.h4{height:47.961914px;}
.hc{height:57.911133px;}
.hf{height:58.620117px;}
.hb{height:65.718750px;}
.h9{height:85.500000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:63.779550px;}
.xe{left:77.042100px;}
.x14{left:84.598350px;}
.x13{left:86.220000px;}
.x5{left:89.292000px;}
.x2{left:90.556500px;}
.x15{left:92.442600px;}
.x3{left:97.795500px;}
.x1b{left:102.369150px;}
.x9{left:112.566000px;}
.x21{left:115.125000px;}
.x12{left:135.388200px;}
.x1e{left:149.744100px;}
.xa{left:191.194500px;}
.x11{left:204.980100px;}
.x1f{left:208.750650px;}
.x16{left:242.841000px;}
.xd{left:276.378000px;}
.x4{left:286.299000px;}
.x18{left:298.479750px;}
.x8{left:304.921500px;}
.x7{left:306.171000px;}
.x6{left:353.416500px;}
.xc{left:370.542000px;}
.xb{left:371.908500px;}
.x10{left:446.456700px;}
.xf{left:459.212550px;}
.x19{left:472.290300px;}
.x1a{left:485.046300px;}
.x20{left:497.802150px;}
.x1c{left:569.514300px;}
.x1d{left:588.591000px;}
.x1{left:807.318000px;}
@media print{
.v4{vertical-align:-15.984000pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v3{vertical-align:19.536000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.002667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls6{letter-spacing:6.488000pt;}
.wscd{word-spacing:-12.480000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws40{word-spacing:-11.520000pt;}
.wsaa{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws2{word-spacing:-8.896000pt;}
.wsaf{word-spacing:-7.056000pt;}
.wsca{word-spacing:-3.744000pt;}
.ws8d{word-spacing:-3.552000pt;}
.wsb3{word-spacing:-3.216000pt;}
.wsd2{word-spacing:-3.168000pt;}
.wsbc{word-spacing:-2.688000pt;}
.wscb{word-spacing:-2.640000pt;}
.ws69{word-spacing:-2.592000pt;}
.ws29{word-spacing:-2.304000pt;}
.ws9{word-spacing:-2.256000pt;}
.ws50{word-spacing:-2.208000pt;}
.ws68{word-spacing:-2.112000pt;}
.wsa2{word-spacing:-2.016000pt;}
.ws34{word-spacing:-1.872000pt;}
.ws9a{word-spacing:-1.824000pt;}
.ws2f{word-spacing:-1.776000pt;}
.wsae{word-spacing:-1.728000pt;}
.ws57{word-spacing:-1.680000pt;}
.ws79{word-spacing:-1.632000pt;}
.ws67{word-spacing:-1.584000pt;}
.ws5f{word-spacing:-1.536000pt;}
.ws3b{word-spacing:-1.488000pt;}
.ws3d{word-spacing:-1.392000pt;}
.ws12{word-spacing:-1.344000pt;}
.ws1d{word-spacing:-1.248000pt;}
.ws19{word-spacing:-1.200000pt;}
.ws71{word-spacing:-1.152000pt;}
.ws36{word-spacing:-1.104000pt;}
.ws2a{word-spacing:-1.056000pt;}
.ws9e{word-spacing:-0.912000pt;}
.ws1e{word-spacing:-0.864000pt;}
.ws23{word-spacing:-0.768000pt;}
.ws70{word-spacing:-0.720000pt;}
.ws5c{word-spacing:-0.672000pt;}
.ws72{word-spacing:-0.624000pt;}
.ws14{word-spacing:-0.576000pt;}
.wsbf{word-spacing:-0.528000pt;}
.ws74{word-spacing:-0.480000pt;}
.ws56{word-spacing:-0.432000pt;}
.ws63{word-spacing:-0.384000pt;}
.ws6a{word-spacing:-0.336000pt;}
.ws2c{word-spacing:-0.288000pt;}
.wsa4{word-spacing:-0.240000pt;}
.ws21{word-spacing:-0.192000pt;}
.ws58{word-spacing:-0.144000pt;}
.wsb4{word-spacing:-0.096000pt;}
.wsa6{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.096000pt;}
.ws15{word-spacing:0.144000pt;}
.ws6c{word-spacing:0.192000pt;}
.ws8{word-spacing:0.240000pt;}
.ws30{word-spacing:0.288000pt;}
.ws3f{word-spacing:0.336000pt;}
.ws5e{word-spacing:0.384000pt;}
.ws60{word-spacing:0.432000pt;}
.ws61{word-spacing:0.480000pt;}
.ws43{word-spacing:0.528000pt;}
.ws32{word-spacing:0.576000pt;}
.ws82{word-spacing:0.624000pt;}
.ws4f{word-spacing:0.672000pt;}
.ws78{word-spacing:0.720000pt;}
.ws64{word-spacing:0.768000pt;}
.ws42{word-spacing:0.816000pt;}
.ws51{word-spacing:0.864000pt;}
.ws5a{word-spacing:0.912000pt;}
.ws4b{word-spacing:0.960000pt;}
.ws6b{word-spacing:1.008000pt;}
.ws9b{word-spacing:1.056000pt;}
.wsa1{word-spacing:1.104000pt;}
.ws7d{word-spacing:1.152000pt;}
.ws9f{word-spacing:1.200000pt;}
.ws22{word-spacing:1.248000pt;}
.ws93{word-spacing:1.296000pt;}
.ws4a{word-spacing:1.344000pt;}
.ws2d{word-spacing:1.440000pt;}
.ws59{word-spacing:1.584000pt;}
.ws47{word-spacing:1.632000pt;}
.ws1c{word-spacing:1.680000pt;}
.ws44{word-spacing:1.776000pt;}
.ws6{word-spacing:1.824000pt;}
.ws13{word-spacing:1.872000pt;}
.wsa7{word-spacing:1.920000pt;}
.ws10{word-spacing:1.968000pt;}
.ws85{word-spacing:2.016000pt;}
.ws86{word-spacing:2.064000pt;}
.wse{word-spacing:2.112000pt;}
.ws1a{word-spacing:2.160000pt;}
.wsd{word-spacing:2.208000pt;}
.ws3e{word-spacing:2.256000pt;}
.wsa8{word-spacing:2.304000pt;}
.ws84{word-spacing:2.352000pt;}
.wsc4{word-spacing:2.400000pt;}
.ws8e{word-spacing:2.496000pt;}
.wsbe{word-spacing:2.544000pt;}
.ws24{word-spacing:2.640000pt;}
.ws62{word-spacing:2.736000pt;}
.wsa{word-spacing:2.784000pt;}
.ws49{word-spacing:2.832000pt;}
.ws80{word-spacing:2.880000pt;}
.ws7c{word-spacing:2.928000pt;}
.ws7f{word-spacing:2.976000pt;}
.ws9c{word-spacing:3.024000pt;}
.wsa9{word-spacing:3.072000pt;}
.ws66{word-spacing:3.120000pt;}
.wsb{word-spacing:3.168000pt;}
.ws25{word-spacing:3.216000pt;}
.ws8b{word-spacing:3.264000pt;}
.ws91{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.408000pt;}
.ws7{word-spacing:3.456000pt;}
.ws28{word-spacing:3.504000pt;}
.ws75{word-spacing:3.552000pt;}
.ws2e{word-spacing:3.600000pt;}
.wsc{word-spacing:3.648000pt;}
.ws45{word-spacing:3.696000pt;}
.ws6d{word-spacing:3.744000pt;}
.ws5b{word-spacing:3.792000pt;}
.ws54{word-spacing:3.840000pt;}
.ws99{word-spacing:3.888000pt;}
.ws26{word-spacing:3.984000pt;}
.ws4e{word-spacing:4.032000pt;}
.ws98{word-spacing:4.080000pt;}
.ws96{word-spacing:4.128000pt;}
.ws8f{word-spacing:4.176000pt;}
.ws73{word-spacing:4.272000pt;}
.ws4c{word-spacing:4.320000pt;}
.ws6f{word-spacing:4.368000pt;}
.ws41{word-spacing:4.416000pt;}
.ws81{word-spacing:4.464000pt;}
.ws33{word-spacing:4.512000pt;}
.ws48{word-spacing:4.560000pt;}
.ws7a{word-spacing:4.608000pt;}
.ws95{word-spacing:4.656000pt;}
.ws8c{word-spacing:4.704000pt;}
.ws2b{word-spacing:4.752000pt;}
.ws17{word-spacing:4.800000pt;}
.ws18{word-spacing:4.848000pt;}
.ws3a{word-spacing:4.896000pt;}
.ws89{word-spacing:5.040000pt;}
.ws35{word-spacing:5.136000pt;}
.ws3c{word-spacing:5.184000pt;}
.ws9d{word-spacing:5.232000pt;}
.wsa3{word-spacing:5.280000pt;}
.ws31{word-spacing:5.328000pt;}
.ws37{word-spacing:5.424000pt;}
.ws7e{word-spacing:5.472000pt;}
.ws16{word-spacing:5.520000pt;}
.wsa0{word-spacing:5.568000pt;}
.ws87{word-spacing:5.616000pt;}
.ws92{word-spacing:5.664000pt;}
.ws11{word-spacing:5.760000pt;}
.ws53{word-spacing:5.856000pt;}
.ws55{word-spacing:5.904000pt;}
.ws7b{word-spacing:5.952000pt;}
.wsa5{word-spacing:6.096000pt;}
.ws39{word-spacing:6.192000pt;}
.ws76{word-spacing:6.288000pt;}
.ws83{word-spacing:6.384000pt;}
.ws46{word-spacing:6.432000pt;}
.ws27{word-spacing:6.480000pt;}
.wsf{word-spacing:6.624000pt;}
.ws94{word-spacing:6.672000pt;}
.ws6e{word-spacing:6.768000pt;}
.ws97{word-spacing:6.816000pt;}
.ws4d{word-spacing:6.864000pt;}
.ws20{word-spacing:6.960000pt;}
.ws5{word-spacing:7.008000pt;}
.ws1f{word-spacing:7.104000pt;}
.ws52{word-spacing:7.200000pt;}
.ws77{word-spacing:7.248000pt;}
.wsc9{word-spacing:7.968000pt;}
.ws65{word-spacing:8.400000pt;}
.wsb6{word-spacing:8.496000pt;}
.ws90{word-spacing:8.736000pt;}
.ws88{word-spacing:9.072000pt;}
.ws38{word-spacing:9.264000pt;}
.ws8a{word-spacing:9.456000pt;}
.wscc{word-spacing:9.840000pt;}
.wsd1{word-spacing:10.416000pt;}
.wsd5{word-spacing:10.512000pt;}
.wscf{word-spacing:10.752000pt;}
.wsbb{word-spacing:11.040000pt;}
.wsad{word-spacing:11.136000pt;}
.wsd0{word-spacing:13.440000pt;}
.wsb9{word-spacing:13.632000pt;}
.wsc6{word-spacing:14.016000pt;}
.wsd4{word-spacing:14.064000pt;}
.wsb0{word-spacing:14.640000pt;}
.wsc5{word-spacing:14.784000pt;}
.wsc8{word-spacing:15.504000pt;}
.wsc7{word-spacing:16.416000pt;}
.wsc2{word-spacing:16.704000pt;}
.wsac{word-spacing:16.944000pt;}
.wsab{word-spacing:18.480000pt;}
.wsb5{word-spacing:20.112000pt;}
.wsc1{word-spacing:20.592000pt;}
.wsb2{word-spacing:20.784000pt;}
.wsce{word-spacing:22.848000pt;}
.wsb7{word-spacing:29.856000pt;}
.wsd3{word-spacing:30.720000pt;}
.wsb8{word-spacing:32.544000pt;}
.wsb1{word-spacing:33.408000pt;}
.wsc3{word-spacing:34.224000pt;}
.wsd6{word-spacing:40.704000pt;}
.wsc0{word-spacing:47.856000pt;}
.wsba{word-spacing:48.144000pt;}
.wsbd{word-spacing:48.480000pt;}
._0{margin-left:-29.269333pt;}
._10{margin-left:-5.890667pt;}
._2{margin-left:-4.915200pt;}
._8{margin-left:-3.264000pt;}
._3{margin-left:-2.304000pt;}
._1{margin-left:-0.896000pt;}
._7{width:1.220267pt;}
._5{width:2.534400pt;}
._6{width:4.057600pt;}
._9{width:5.243733pt;}
._a{width:6.590400pt;}
._c{width:7.484800pt;}
._b{width:8.425067pt;}
._d{width:9.907200pt;}
._e{width:10.891200pt;}
._11{width:13.272000pt;}
._12{width:14.586133pt;}
._f{width:17.438400pt;}
._14{width:30.700800pt;}
._13{width:48.461867pt;}
._4{width:63.920000pt;}
.fs7{font-size:27.984000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:34.202667pt;}
.fs8{font-size:39.200000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:85.333333pt;}
.fs2{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:37.552800pt;}
.y1{bottom:37.553333pt;}
.y16{bottom:92.728000pt;}
.y6d{bottom:93.223067pt;}
.y110{bottom:94.104933pt;}
.ya1{bottom:94.298267pt;}
.y146{bottom:94.391467pt;}
.yee{bottom:95.930667pt;}
.y16b{bottom:97.632533pt;}
.y194{bottom:99.682000pt;}
.y116{bottom:101.664000pt;}
.y15{bottom:105.528000pt;}
.y6c{bottom:109.223067pt;}
.y10f{bottom:110.104933pt;}
.ya0{bottom:110.298267pt;}
.yed{bottom:112.064000pt;}
.y16a{bottom:113.632533pt;}
.y193{bottom:115.682000pt;}
.y115{bottom:117.664000pt;}
.y14{bottom:118.328000pt;}
.y145{bottom:121.730133pt;}
.y6b{bottom:125.223067pt;}
.y10e{bottom:126.104933pt;}
.y9f{bottom:126.298267pt;}
.yec{bottom:128.197333pt;}
.y169{bottom:129.632533pt;}
.y13{bottom:131.128000pt;}
.y114{bottom:133.664000pt;}
.y192{bottom:139.507733pt;}
.y6a{bottom:141.223067pt;}
.y10d{bottom:142.104933pt;}
.y9e{bottom:142.298267pt;}
.yeb{bottom:144.330667pt;}
.y168{bottom:145.632533pt;}
.y113{bottom:149.664000pt;}
.y191{bottom:155.774400pt;}
.y69{bottom:157.223067pt;}
.y10c{bottom:158.104933pt;}
.y9d{bottom:158.298267pt;}
.y144{bottom:160.407333pt;}
.yea{bottom:160.464000pt;}
.y167{bottom:161.632533pt;}
.y112{bottom:165.664000pt;}
.y190{bottom:172.041067pt;}
.y68{bottom:173.223067pt;}
.y10b{bottom:174.104933pt;}
.y9c{bottom:174.298267pt;}
.y143{bottom:176.407333pt;}
.ye9{bottom:176.597333pt;}
.y111{bottom:181.664000pt;}
.y166{bottom:185.191600pt;}
.y18f{bottom:188.307733pt;}
.y67{bottom:189.223067pt;}
.y9b{bottom:190.298267pt;}
.y142{bottom:192.407333pt;}
.ye8{bottom:192.730667pt;}
.y10a{bottom:197.664000pt;}
.y165{bottom:201.191600pt;}
.y66{bottom:205.223067pt;}
.y9a{bottom:206.298267pt;}
.y141{bottom:208.407333pt;}
.ye7{bottom:208.864000pt;}
.y18e{bottom:212.133467pt;}
.y109{bottom:213.664000pt;}
.y164{bottom:217.191600pt;}
.y65{bottom:221.223067pt;}
.y99{bottom:222.298267pt;}
.y140{bottom:224.407333pt;}
.ye6{bottom:224.997333pt;}
.y36{bottom:226.988000pt;}
.y18d{bottom:228.400133pt;}
.y108{bottom:229.664000pt;}
.y163{bottom:233.191600pt;}
.y64{bottom:237.223067pt;}
.y98{bottom:238.298267pt;}
.y35{bottom:239.788000pt;}
.ye5{bottom:241.130667pt;}
.y18c{bottom:244.666800pt;}
.y107{bottom:245.664000pt;}
.y13f{bottom:251.745867pt;}
.y34{bottom:252.588000pt;}
.y63{bottom:253.223067pt;}
.y97{bottom:254.298267pt;}
.y162{bottom:256.750533pt;}
.ye4{bottom:257.264000pt;}
.y106{bottom:261.664000pt;}
.y33{bottom:265.388000pt;}
.y18b{bottom:268.492533pt;}
.y62{bottom:269.223067pt;}
.y96{bottom:270.298267pt;}
.y161{bottom:272.750667pt;}
.ye3{bottom:273.397333pt;}
.y12{bottom:275.106667pt;}
.y105{bottom:277.664000pt;}
.y32{bottom:278.188000pt;}
.y18a{bottom:284.759200pt;}
.y61{bottom:285.223067pt;}
.y95{bottom:286.298267pt;}
.y11{bottom:287.906667pt;}
.y160{bottom:288.750667pt;}
.ye2{bottom:289.530667pt;}
.y13e{bottom:290.423067pt;}
.y31{bottom:290.988000pt;}
.y104{bottom:293.664000pt;}
.y10{bottom:300.706667pt;}
.y60{bottom:301.223067pt;}
.y94{bottom:302.298267pt;}
.y30{bottom:303.788000pt;}
.y15f{bottom:304.750667pt;}
.ye1{bottom:305.664000pt;}
.y13d{bottom:306.423067pt;}
.y189{bottom:308.584933pt;}
.y103{bottom:309.664000pt;}
.yf{bottom:313.506667pt;}
.y2f{bottom:316.588000pt;}
.y5f{bottom:317.223067pt;}
.y93{bottom:318.298267pt;}
.ye0{bottom:321.797333pt;}
.y13c{bottom:322.289733pt;}
.y188{bottom:324.851600pt;}
.y102{bottom:325.664000pt;}
.ye{bottom:326.306667pt;}
.y15e{bottom:328.309600pt;}
.y2e{bottom:329.388000pt;}
.yc3{bottom:333.223067pt;}
.y92{bottom:334.298267pt;}
.y13b{bottom:338.156400pt;}
.yd{bottom:339.106667pt;}
.y5e{bottom:340.782133pt;}
.y101{bottom:341.664000pt;}
.y2d{bottom:342.188000pt;}
.y15d{bottom:344.309600pt;}
.ydf{bottom:345.489733pt;}
.y187{bottom:348.677333pt;}
.yc2{bottom:349.223067pt;}
.y91{bottom:350.298267pt;}
.y13a{bottom:354.023067pt;}
.y2c{bottom:354.988000pt;}
.y5d{bottom:356.782133pt;}
.y100{bottom:357.664000pt;}
.yde{bottom:361.623067pt;}
.y186{bottom:364.944000pt;}
.yc1{bottom:365.223067pt;}
.y90{bottom:366.298267pt;}
.y15c{bottom:367.868667pt;}
.y139{bottom:369.889733pt;}
.y5c{bottom:372.782133pt;}
.yff{bottom:373.664000pt;}
.ydd{bottom:377.756400pt;}
.yc0{bottom:381.223067pt;}
.y8f{bottom:382.298267pt;}
.y15b{bottom:383.868667pt;}
.y138{bottom:385.756400pt;}
.y4{bottom:386.429333pt;}
.y185{bottom:388.769733pt;}
.y5b{bottom:388.782133pt;}
.yfe{bottom:389.664000pt;}
.ydc{bottom:393.889733pt;}
.ybf{bottom:397.223067pt;}
.y8e{bottom:398.298267pt;}
.y137{bottom:401.623067pt;}
.y5a{bottom:404.782133pt;}
.y184{bottom:405.036400pt;}
.yfd{bottom:405.664000pt;}
.y15a{bottom:407.427733pt;}
.ydb{bottom:410.023067pt;}
.ybe{bottom:413.223067pt;}
.y8d{bottom:414.298267pt;}
.y136{bottom:417.489733pt;}
.y59{bottom:420.782133pt;}
.y183{bottom:421.303067pt;}
.yfc{bottom:421.664000pt;}
.y2b{bottom:422.326667pt;}
.y159{bottom:423.427733pt;}
.yda{bottom:426.156400pt;}
.ybd{bottom:429.223067pt;}
.y8c{bottom:430.298267pt;}
.y135{bottom:433.356400pt;}
.y58{bottom:436.782133pt;}
.y182{bottom:437.569600pt;}
.yfb{bottom:437.664000pt;}
.yd9{bottom:442.289733pt;}
.ybc{bottom:445.223067pt;}
.y8b{bottom:446.298267pt;}
.y158{bottom:446.986800pt;}
.y134{bottom:449.223067pt;}
.y57{bottom:452.782133pt;}
.yfa{bottom:453.664000pt;}
.yd8{bottom:458.423067pt;}
.ybb{bottom:461.223067pt;}
.y181{bottom:461.395333pt;}
.y157{bottom:462.986800pt;}
.y56{bottom:468.782133pt;}
.y8a{bottom:469.857333pt;}
.y133{bottom:472.648800pt;}
.y2a{bottom:472.726667pt;}
.yd7{bottom:474.556400pt;}
.yba{bottom:477.223067pt;}
.y180{bottom:477.662133pt;}
.y55{bottom:484.782133pt;}
.y29{bottom:485.526667pt;}
.y89{bottom:485.857333pt;}
.y156{bottom:486.545867pt;}
.y132{bottom:488.515467pt;}
.yd6{bottom:490.689733pt;}
.yb9{bottom:493.223067pt;}
.y28{bottom:498.326667pt;}
.y54{bottom:500.782133pt;}
.y17f{bottom:501.487733pt;}
.y88{bottom:501.857333pt;}
.y155{bottom:502.545867pt;}
.y131{bottom:504.382133pt;}
.yb8{bottom:509.223067pt;}
.y27{bottom:511.126667pt;}
.yc{bottom:511.785333pt;}
.yd5{bottom:514.382133pt;}
.y17e{bottom:517.754400pt;}
.y87{bottom:517.857333pt;}
.y130{bottom:520.248800pt;}
.y26{bottom:523.926667pt;}
.y53{bottom:524.341200pt;}
.yb{bottom:524.585333pt;}
.yb7{bottom:525.223067pt;}
.y154{bottom:526.104933pt;}
.yd4{bottom:530.515467pt;}
.y86{bottom:533.857333pt;}
.y17d{bottom:534.021067pt;}
.y12f{bottom:536.115467pt;}
.y25{bottom:536.726667pt;}
.ya{bottom:537.385333pt;}
.y52{bottom:540.341200pt;}
.yb6{bottom:541.223067pt;}
.y153{bottom:542.104933pt;}
.yd3{bottom:546.648800pt;}
.y24{bottom:549.526667pt;}
.y85{bottom:549.857333pt;}
.y9{bottom:550.185333pt;}
.y17c{bottom:550.287867pt;}
.y12e{bottom:551.982133pt;}
.y51{bottom:556.341200pt;}
.yf9{bottom:557.223067pt;}
.y152{bottom:558.104933pt;}
.y23{bottom:562.326667pt;}
.yd2{bottom:562.782133pt;}
.y8{bottom:562.985333pt;}
.yb5{bottom:564.782133pt;}
.y84{bottom:565.857333pt;}
.y12d{bottom:567.848800pt;}
.y50{bottom:572.341200pt;}
.yf8{bottom:573.223067pt;}
.y151{bottom:574.104933pt;}
.y17b{bottom:574.113467pt;}
.y22{bottom:575.126667pt;}
.y7{bottom:575.785333pt;}
.yd1{bottom:578.915467pt;}
.yb4{bottom:580.782133pt;}
.y83{bottom:581.857333pt;}
.y12c{bottom:583.715467pt;}
.y21{bottom:587.926667pt;}
.y4f{bottom:588.341200pt;}
.yf7{bottom:589.223067pt;}
.y150{bottom:590.104933pt;}
.y17a{bottom:590.380133pt;}
.yd0{bottom:595.048800pt;}
.yb3{bottom:596.782133pt;}
.y82{bottom:597.857333pt;}
.y12b{bottom:599.582133pt;}
.y20{bottom:600.726667pt;}
.y4e{bottom:604.341200pt;}
.yf6{bottom:605.223067pt;}
.y179{bottom:606.646800pt;}
.ycf{bottom:611.182133pt;}
.y6{bottom:611.930667pt;}
.yb2{bottom:612.782000pt;}
.y1f{bottom:613.526667pt;}
.y14f{bottom:613.664000pt;}
.y81{bottom:613.857333pt;}
.y12a{bottom:615.448667pt;}
.y4d{bottom:620.341200pt;}
.yf5{bottom:621.223067pt;}
.y178{bottom:622.913467pt;}
.y5{bottom:624.730667pt;}
.y1e{bottom:626.326667pt;}
.yce{bottom:627.315467pt;}
.yb1{bottom:628.782000pt;}
.y14e{bottom:629.664000pt;}
.y80{bottom:629.857333pt;}
.y1a6{bottom:630.534133pt;}
.y129{bottom:631.315467pt;}
.y4c{bottom:636.341200pt;}
.yf4{bottom:637.223067pt;}
.y1b1{bottom:638.104933pt;}
.ycd{bottom:643.448667pt;}
.yb0{bottom:644.782000pt;}
.y14d{bottom:645.664000pt;}
.y7f{bottom:645.857333pt;}
.y1a5{bottom:646.534133pt;}
.y128{bottom:647.182133pt;}
.y177{bottom:650.518800pt;}
.y4b{bottom:652.341200pt;}
.yf3{bottom:653.223067pt;}
.y1b0{bottom:654.104933pt;}
.y3{bottom:655.464000pt;}
.ycc{bottom:659.582133pt;}
.yaf{bottom:660.782000pt;}
.y14c{bottom:661.664000pt;}
.y7e{bottom:661.857333pt;}
.y1a4{bottom:662.534133pt;}
.y127{bottom:663.048800pt;}
.y4a{bottom:668.341200pt;}
.yf2{bottom:669.223067pt;}
.y1af{bottom:670.104933pt;}
.ycb{bottom:675.715467pt;}
.yae{bottom:676.782000pt;}
.y14b{bottom:677.664000pt;}
.y7d{bottom:677.857333pt;}
.y1a3{bottom:678.534133pt;}
.y126{bottom:678.915467pt;}
.y49{bottom:684.341200pt;}
.yf1{bottom:685.223067pt;}
.y1ae{bottom:686.104933pt;}
.y176{bottom:689.196000pt;}
.yca{bottom:691.848800pt;}
.yad{bottom:692.782000pt;}
.y7c{bottom:693.857333pt;}
.y1a2{bottom:694.534133pt;}
.y125{bottom:694.782000pt;}
.y48{bottom:700.341200pt;}
.y14a{bottom:701.223067pt;}
.y175{bottom:705.196000pt;}
.yc9{bottom:707.982133pt;}
.yac{bottom:708.782000pt;}
.y1ad{bottom:709.664000pt;}
.y7b{bottom:709.857333pt;}
.y1a1{bottom:710.534133pt;}
.y124{bottom:710.648800pt;}
.y47{bottom:716.341200pt;}
.y149{bottom:717.223067pt;}
.y174{bottom:721.196000pt;}
.y1d{bottom:721.220000pt;}
.yc8{bottom:724.115333pt;}
.yab{bottom:724.782000pt;}
.y1ac{bottom:725.664000pt;}
.y7a{bottom:725.857333pt;}
.y123{bottom:726.515467pt;}
.y1a0{bottom:726.534133pt;}
.y46{bottom:732.341200pt;}
.y148{bottom:733.223067pt;}
.y1c{bottom:735.620000pt;}
.y173{bottom:737.196000pt;}
.yc7{bottom:740.248800pt;}
.yaa{bottom:740.782000pt;}
.y1ab{bottom:741.664000pt;}
.y79{bottom:741.857333pt;}
.y122{bottom:742.382133pt;}
.y45{bottom:748.341200pt;}
.y147{bottom:749.223067pt;}
.y19f{bottom:750.093200pt;}
.y172{bottom:753.196000pt;}
.yc6{bottom:756.382133pt;}
.ya9{bottom:756.782000pt;}
.y1aa{bottom:757.664000pt;}
.y78{bottom:757.857333pt;}
.y121{bottom:758.248800pt;}
.y1b{bottom:761.142667pt;}
.y44{bottom:764.341200pt;}
.y19e{bottom:766.093200pt;}
.y171{bottom:769.196000pt;}
.yc5{bottom:772.515467pt;}
.ya8{bottom:772.782000pt;}
.y77{bottom:773.857333pt;}
.y120{bottom:774.115333pt;}
.y43{bottom:780.341200pt;}
.y1a9{bottom:781.223067pt;}
.y19d{bottom:782.093200pt;}
.y170{bottom:785.196000pt;}
.yc4{bottom:788.648800pt;}
.ya7{bottom:788.782000pt;}
.y76{bottom:789.857333pt;}
.y11f{bottom:789.982133pt;}
.y1a{bottom:796.261333pt;}
.y42{bottom:796.341200pt;}
.y1a8{bottom:797.223067pt;}
.y19c{bottom:798.093200pt;}
.y16f{bottom:801.196000pt;}
.ya6{bottom:804.782000pt;}
.y11e{bottom:805.848800pt;}
.y75{bottom:805.857333pt;}
.y41{bottom:812.341200pt;}
.y1a7{bottom:813.223067pt;}
.y16e{bottom:817.196000pt;}
.ya5{bottom:820.782000pt;}
.y19b{bottom:821.652267pt;}
.y11d{bottom:821.715467pt;}
.y74{bottom:821.857333pt;}
.y40{bottom:828.341200pt;}
.y2{bottom:832.289333pt;}
.y16d{bottom:833.196000pt;}
.ya4{bottom:836.782000pt;}
.y11c{bottom:837.582133pt;}
.y3f{bottom:844.341200pt;}
.y19a{bottom:845.211333pt;}
.y73{bottom:845.416400pt;}
.y16c{bottom:849.196000pt;}
.ya3{bottom:852.782000pt;}
.y11b{bottom:853.448667pt;}
.y3e{bottom:860.341200pt;}
.y72{bottom:865.196000pt;}
.y199{bottom:868.770400pt;}
.ya2{bottom:868.782000pt;}
.y11a{bottom:869.315467pt;}
.y3d{bottom:876.341200pt;}
.y71{bottom:881.196000pt;}
.y19{bottom:883.326667pt;}
.y198{bottom:884.770400pt;}
.yf0{bottom:884.782000pt;}
.y119{bottom:885.182133pt;}
.y3c{bottom:892.341200pt;}
.y70{bottom:897.196000pt;}
.yef{bottom:900.782000pt;}
.y197{bottom:908.329467pt;}
.y3b{bottom:908.341200pt;}
.y118{bottom:908.607867pt;}
.y18{bottom:910.241333pt;}
.y6f{bottom:913.196000pt;}
.y196{bottom:924.329467pt;}
.y3a{bottom:924.341200pt;}
.y117{bottom:924.474400pt;}
.y195{bottom:940.329467pt;}
.y39{bottom:940.341200pt;}
.y6e{bottom:940.534533pt;}
.y17{bottom:946.032000pt;}
.y38{bottom:985.773200pt;}
.ha{height:23.584000pt;}
.hd{height:26.133188pt;}
.h5{height:28.916667pt;}
.he{height:29.645833pt;}
.h14{height:32.859375pt;}
.h13{height:33.351562pt;}
.h2{height:33.450667pt;}
.h10{height:35.868000pt;}
.h3{height:37.437500pt;}
.h7{height:37.541667pt;}
.h6{height:37.895833pt;}
.h8{height:39.040000pt;}
.h11{height:42.117188pt;}
.h12{height:42.234375pt;}
.h4{height:42.632812pt;}
.hc{height:51.476562pt;}
.hf{height:52.106771pt;}
.hb{height:58.416667pt;}
.h9{height:76.000000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:56.692933pt;}
.xe{left:68.481867pt;}
.x14{left:75.198533pt;}
.x13{left:76.640000pt;}
.x5{left:79.370667pt;}
.x2{left:80.494667pt;}
.x15{left:82.171200pt;}
.x3{left:86.929333pt;}
.x1b{left:90.994800pt;}
.x9{left:100.058667pt;}
.x21{left:102.333333pt;}
.x12{left:120.345067pt;}
.x1e{left:133.105867pt;}
.xa{left:169.950667pt;}
.x11{left:182.204533pt;}
.x1f{left:185.556133pt;}
.x16{left:215.858667pt;}
.xd{left:245.669333pt;}
.x4{left:254.488000pt;}
.x18{left:265.315333pt;}
.x8{left:271.041333pt;}
.x7{left:272.152000pt;}
.x6{left:314.148000pt;}
.xc{left:329.370667pt;}
.xb{left:330.585333pt;}
.x10{left:396.850400pt;}
.xf{left:408.188933pt;}
.x19{left:419.813600pt;}
.x1a{left:431.152267pt;}
.x20{left:442.490800pt;}
.x1c{left:506.234933pt;}
.x1d{left:523.192000pt;}
.x1{left:717.616000pt;}
}




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