
    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_6ff891cb72a0a35441d9e510.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0875a0c34c0a1bb63a897c18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025000;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_70d76af1f481ec42823cbc90.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.158000;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_0ff1a6b324c78a6549abafea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.027000;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_10baf09c3877ed017ab075d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994000;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_10baf09c3877ed017ab075d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.994000;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_bccc6e661770332c1947a706.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003000;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_10baf09c3877ed017ab075d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.994000;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_bccc6e661770332c1947a706.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003000;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_10baf09c3877ed017ab075d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.994000;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_bccc6e661770332c1947a706.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.lsc{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.559680px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000132px;}
.ls7{letter-spacing:0.322800px;}
.ls8{letter-spacing:0.323400px;}
.ls6{letter-spacing:0.324000px;}
.lsa{letter-spacing:1.260000px;}
.ls2{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.800000px;}
.ls4{letter-spacing:2.160000px;}
.ls5{letter-spacing:2.520000px;}
.ls1{letter-spacing:4.500000px;}
.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;}
}
.ws5{word-spacing:-20.448000px;}
.ws1{word-spacing:-19.740000px;}
.ws3d{word-spacing:-13.824000px;}
.ws2{word-spacing:-13.632000px;}
.ws10{word-spacing:-13.500000px;}
.wsf{word-spacing:-12.810000px;}
.wsca{word-spacing:-12.192000px;}
.ws4{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.760000px;}
.wsd8{word-spacing:-11.424000px;}
.wse{word-spacing:-10.668000px;}
.wsd0{word-spacing:-6.480000px;}
.wscb{word-spacing:-6.436320px;}
.wsb3{word-spacing:-4.104000px;}
.ws7d{word-spacing:-4.050000px;}
.ws96{word-spacing:-3.996000px;}
.ws20{word-spacing:-3.780000px;}
.ws61{word-spacing:-3.564000px;}
.ws63{word-spacing:-3.510000px;}
.ws4a{word-spacing:-3.348000px;}
.ws90{word-spacing:-3.294000px;}
.wsbf{word-spacing:-3.240000px;}
.wsc6{word-spacing:-3.132000px;}
.ws1d{word-spacing:-3.078000px;}
.ws81{word-spacing:-3.024000px;}
.wscf{word-spacing:-2.916000px;}
.wsbc{word-spacing:-2.700000px;}
.ws46{word-spacing:-2.646000px;}
.ws69{word-spacing:-2.592000px;}
.ws1c{word-spacing:-2.538000px;}
.wsc0{word-spacing:-2.484000px;}
.wsc{word-spacing:-2.322000px;}
.ws9d{word-spacing:-2.268000px;}
.ws82{word-spacing:-2.214000px;}
.wsd1{word-spacing:-2.160000px;}
.ws7c{word-spacing:-2.052000px;}
.wsce{word-spacing:-1.944000px;}
.wsba{word-spacing:-1.890000px;}
.wsa7{word-spacing:-1.836000px;}
.wsa9{word-spacing:-1.728000px;}
.ws18{word-spacing:-1.674000px;}
.ws1e{word-spacing:-1.512000px;}
.ws4b{word-spacing:-1.458000px;}
.ws8d{word-spacing:-1.404000px;}
.wsb8{word-spacing:-1.350000px;}
.ws72{word-spacing:-1.296000px;}
.ws86{word-spacing:-1.188000px;}
.ws9a{word-spacing:-1.134000px;}
.ws4d{word-spacing:-0.972000px;}
.ws53{word-spacing:-0.918000px;}
.ws32{word-spacing:-0.864000px;}
.ws6f{word-spacing:-0.810000px;}
.ws27{word-spacing:-0.756000px;}
.wsa4{word-spacing:-0.702000px;}
.ws34{word-spacing:-0.648000px;}
.ws60{word-spacing:-0.594000px;}
.ws37{word-spacing:-0.486000px;}
.ws83{word-spacing:-0.378000px;}
.wsd9{word-spacing:-0.336000px;}
.ws62{word-spacing:-0.324000px;}
.wsc5{word-spacing:-0.270000px;}
.ws91{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.108000px;}
.ws25{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.054000px;}
.ws5c{word-spacing:0.108000px;}
.wsae{word-spacing:0.162000px;}
.ws79{word-spacing:0.216000px;}
.ws94{word-spacing:0.270000px;}
.ws97{word-spacing:0.324000px;}
.wsb1{word-spacing:0.378000px;}
.wsa3{word-spacing:0.432000px;}
.wsc2{word-spacing:0.486000px;}
.ws6b{word-spacing:0.540000px;}
.ws15{word-spacing:0.594000px;}
.wsb6{word-spacing:0.648000px;}
.ws24{word-spacing:0.702000px;}
.ws2e{word-spacing:0.756000px;}
.wsc3{word-spacing:0.810000px;}
.ws7e{word-spacing:0.864000px;}
.ws30{word-spacing:0.918000px;}
.ws6d{word-spacing:0.972000px;}
.wsd7{word-spacing:1.026000px;}
.ws66{word-spacing:1.080000px;}
.wsb{word-spacing:1.242000px;}
.ws16{word-spacing:1.296000px;}
.ws31{word-spacing:1.350000px;}
.ws9b{word-spacing:1.404000px;}
.ws80{word-spacing:1.512000px;}
.ws4f{word-spacing:1.566000px;}
.ws92{word-spacing:1.674000px;}
.ws3a{word-spacing:1.728000px;}
.wsaf{word-spacing:1.782000px;}
.ws93{word-spacing:1.944000px;}
.ws11{word-spacing:1.998000px;}
.wsab{word-spacing:2.052000px;}
.ws1a{word-spacing:2.106000px;}
.ws7f{word-spacing:2.160000px;}
.ws1b{word-spacing:2.214000px;}
.ws73{word-spacing:2.322000px;}
.ws74{word-spacing:2.376000px;}
.ws3c{word-spacing:2.430000px;}
.ws51{word-spacing:2.484000px;}
.ws12{word-spacing:2.538000px;}
.ws2f{word-spacing:2.592000px;}
.wsd6{word-spacing:2.646000px;}
.ws98{word-spacing:2.700000px;}
.ws8f{word-spacing:2.808000px;}
.ws43{word-spacing:2.862000px;}
.wsbd{word-spacing:2.916000px;}
.ws7a{word-spacing:2.970000px;}
.wsb7{word-spacing:3.024000px;}
.ws1f{word-spacing:3.078000px;}
.wsc4{word-spacing:3.132000px;}
.ws26{word-spacing:3.186000px;}
.ws2b{word-spacing:3.240000px;}
.ws41{word-spacing:3.348000px;}
.ws8c{word-spacing:3.456000px;}
.ws2c{word-spacing:3.510000px;}
.ws65{word-spacing:3.564000px;}
.ws58{word-spacing:3.672000px;}
.ws47{word-spacing:3.780000px;}
.ws19{word-spacing:3.888000px;}
.ws67{word-spacing:3.942000px;}
.ws5a{word-spacing:3.996000px;}
.ws5f{word-spacing:4.104000px;}
.wsa{word-spacing:4.212000px;}
.ws76{word-spacing:4.266000px;}
.ws75{word-spacing:4.374000px;}
.ws17{word-spacing:4.482000px;}
.wscd{word-spacing:4.536000px;}
.wsb5{word-spacing:4.590000px;}
.ws23{word-spacing:4.644000px;}
.wsc9{word-spacing:4.806000px;}
.ws9c{word-spacing:4.860000px;}
.ws9f{word-spacing:4.968000px;}
.ws8e{word-spacing:5.076000px;}
.ws45{word-spacing:5.184000px;}
.ws50{word-spacing:5.238000px;}
.ws42{word-spacing:5.292000px;}
.ws52{word-spacing:5.346000px;}
.ws64{word-spacing:5.400000px;}
.wsa0{word-spacing:5.454000px;}
.ws6a{word-spacing:5.508000px;}
.wsd4{word-spacing:5.562000px;}
.ws55{word-spacing:5.616000px;}
.ws59{word-spacing:5.670000px;}
.wsa6{word-spacing:5.832000px;}
.ws78{word-spacing:5.886000px;}
.wsb2{word-spacing:5.940000px;}
.ws6c{word-spacing:5.994000px;}
.ws21{word-spacing:6.102000px;}
.ws22{word-spacing:6.156000px;}
.wsc1{word-spacing:6.210000px;}
.ws38{word-spacing:6.372000px;}
.ws56{word-spacing:6.426000px;}
.ws84{word-spacing:6.480000px;}
.ws40{word-spacing:6.588000px;}
.ws44{word-spacing:6.804000px;}
.ws5d{word-spacing:6.912000px;}
.wsb0{word-spacing:7.020000px;}
.ws49{word-spacing:7.074000px;}
.ws54{word-spacing:7.128000px;}
.ws57{word-spacing:7.236000px;}
.ws87{word-spacing:7.290000px;}
.ws68{word-spacing:7.344000px;}
.ws71{word-spacing:7.506000px;}
.ws7{word-spacing:7.560000px;}
.ws9e{word-spacing:7.614000px;}
.ws48{word-spacing:7.938000px;}
.ws5e{word-spacing:7.992000px;}
.ws85{word-spacing:8.046000px;}
.ws13{word-spacing:8.100000px;}
.ws14{word-spacing:8.154000px;}
.ws6e{word-spacing:8.208000px;}
.wsaa{word-spacing:8.262000px;}
.wsa2{word-spacing:8.370000px;}
.ws33{word-spacing:8.424000px;}
.ws2d{word-spacing:8.586000px;}
.ws99{word-spacing:8.640000px;}
.wsc7{word-spacing:8.694000px;}
.wsd3{word-spacing:8.748000px;}
.wsd5{word-spacing:8.856000px;}
.ws4e{word-spacing:8.910000px;}
.ws70{word-spacing:9.180000px;}
.ws77{word-spacing:9.288000px;}
.wsa5{word-spacing:9.504000px;}
.wsad{word-spacing:9.612000px;}
.ws95{word-spacing:9.720000px;}
.wsbe{word-spacing:10.044000px;}
.wsc8{word-spacing:10.098000px;}
.wsd2{word-spacing:10.206000px;}
.ws8b{word-spacing:10.368000px;}
.ws8{word-spacing:10.422000px;}
.ws88{word-spacing:10.476000px;}
.ws3f{word-spacing:10.692000px;}
.ws2a{word-spacing:10.908000px;}
.wscc{word-spacing:11.124000px;}
.ws89{word-spacing:11.232000px;}
.ws7b{word-spacing:11.286000px;}
.ws36{word-spacing:11.718000px;}
.wsb9{word-spacing:11.988000px;}
.ws35{word-spacing:12.042000px;}
.ws5b{word-spacing:12.204000px;}
.ws4c{word-spacing:12.366000px;}
.ws8a{word-spacing:12.636000px;}
.ws3e{word-spacing:12.798000px;}
.wsa1{word-spacing:12.852000px;}
.ws3b{word-spacing:13.068000px;}
.ws6{word-spacing:13.122000px;}
.ws29{word-spacing:13.554000px;}
.ws39{word-spacing:13.770000px;}
.ws28{word-spacing:14.526000px;}
.wsbb{word-spacing:16.254000px;}
.wsa8{word-spacing:16.578000px;}
.wsac{word-spacing:17.496000px;}
.wsb4{word-spacing:18.684000px;}
._8{margin-left:-660.216000px;}
._9{margin-left:-659.187000px;}
._4{margin-left:-658.006800px;}
._2{margin-left:-5.658000px;}
._5{margin-left:-4.122000px;}
._1{margin-left:-2.544000px;}
._0{margin-left:-1.248000px;}
._3{width:1.848000px;}
._6{width:5.616000px;}
._a{width:10.692000px;}
._b{width:53.570400px;}
._7{width:65.591400px;}
.fc4{color:rgb(90,87,88);}
.fc1{color:rgb(166,27,17);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.984000px;}
.fs8{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y139{bottom:45.351450px;}
.y138{bottom:63.351450px;}
.y33{bottom:63.783000px;}
.y5{bottom:66.525004px;}
.y199{bottom:68.031450px;}
.ya7{bottom:69.150600px;}
.y7e{bottom:71.642700px;}
.y17c{bottom:74.055150px;}
.yf8{bottom:74.134950px;}
.ycf{bottom:79.252050px;}
.y32{bottom:80.283000px;}
.y137{bottom:81.351450px;}
.y198{bottom:84.531450px;}
.ya6{bottom:88.650600px;}
.y7d{bottom:91.142700px;}
.y17b{bottom:92.055150px;}
.yf7{bottom:93.634950px;}
.y31{bottom:96.783000px;}
.y4{bottom:97.125005px;}
.y136{bottom:99.351450px;}
.y197{bottom:101.031450px;}
.ya5{bottom:108.150600px;}
.y17a{bottom:110.055150px;}
.y7c{bottom:110.642700px;}
.y107{bottom:113.134950px;}
.y30{bottom:113.283000px;}
.y135{bottom:117.351450px;}
.y196{bottom:117.531450px;}
.yce{bottom:121.638750px;}
.ya4{bottom:127.650600px;}
.y179{bottom:128.055150px;}
.y2f{bottom:129.783000px;}
.y7b{bottom:130.142700px;}
.y106{bottom:132.634950px;}
.y134{bottom:135.351450px;}
.y195{bottom:138.283500px;}
.y21{bottom:139.264499px;}
.ycd{bottom:141.138750px;}
.y178{bottom:146.055150px;}
.y2e{bottom:146.283000px;}
.ya3{bottom:147.150600px;}
.y7a{bottom:149.642700px;}
.y105{bottom:152.134950px;}
.y133{bottom:153.351450px;}
.y194{bottom:154.783500px;}
.ycc{bottom:160.638750px;}
.y2d{bottom:162.783000px;}
.y177{bottom:164.055150px;}
.ya2{bottom:166.650600px;}
.y79{bottom:169.142700px;}
.y193{bottom:171.283500px;}
.y132{bottom:171.351450px;}
.y104{bottom:171.634950px;}
.y2c{bottom:179.283000px;}
.yf6{bottom:180.138750px;}
.y176{bottom:182.055150px;}
.ya1{bottom:186.150600px;}
.y192{bottom:187.783500px;}
.y78{bottom:188.642700px;}
.y131{bottom:189.351450px;}
.y2b{bottom:195.783000px;}
.y18{bottom:196.933500px;}
.yf5{bottom:199.638750px;}
.y175{bottom:200.055150px;}
.y191{bottom:204.283500px;}
.ya0{bottom:205.650600px;}
.y130{bottom:207.351450px;}
.y77{bottom:208.142700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yda{bottom:216.646800px;}
.y174{bottom:218.055150px;}
.yf4{bottom:219.138750px;}
.y42{bottom:220.698600px;}
.y190{bottom:220.783500px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y9f{bottom:225.150600px;}
.y12f{bottom:225.351450px;}
.y76{bottom:227.642700px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y173{bottom:236.055150px;}
.yd9{bottom:236.146800px;}
.y18f{bottom:237.283500px;}
.y2a{bottom:237.795000px;}
.y103{bottom:238.638750px;}
.y41{bottom:240.192600px;}
.y12e{bottom:243.351450px;}
.y9e{bottom:244.650600px;}
.ycb{bottom:247.142700px;}
.y18e{bottom:253.783500px;}
.y172{bottom:254.055150px;}
.y29{bottom:254.295000px;}
.y75{bottom:255.646800px;}
.y102{bottom:258.138750px;}
.y40{bottom:259.686600px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y12d{bottom:261.351450px;}
.yca{bottom:266.642700px;}
.y18d{bottom:270.283350px;}
.y28{bottom:270.795000px;}
.y171{bottom:272.055150px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y9d{bottom:272.654550px;}
.y74{bottom:275.146800px;}
.y3f{bottom:279.180600px;}
.y12c{bottom:279.351450px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yf3{bottom:286.142700px;}
.y18c{bottom:286.783350px;}
.y27{bottom:287.295000px;}
.y170{bottom:290.055150px;}
.y9c{bottom:292.154550px;}
.y73{bottom:294.646800px;}
.y3e{bottom:298.674600px;}
.y18b{bottom:303.283350px;}
.yf2{bottom:305.642700px;}
.y12b{bottom:305.855400px;}
.y16f{bottom:308.055150px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y9b{bottom:311.654550px;}
.y72{bottom:314.146800px;}
.y3d{bottom:318.168600px;}
.y18a{bottom:319.783350px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yf1{bottom:325.142700px;}
.y16e{bottom:326.055150px;}
.y9a{bottom:331.154550px;}
.y71{bottom:333.646800px;}
.y189{bottom:336.283350px;}
.y3c{bottom:337.662600px;}
.y16d{bottom:344.055150px;}
.yf0{bottom:344.642700px;}
.yf{bottom:348.133500px;}
.y26{bottom:350.571000px;}
.y99{bottom:350.654550px;}
.y70{bottom:353.146800px;}
.y12a{bottom:353.867100px;}
.y3b{bottom:357.156600px;}
.yc9{bottom:361.650600px;}
.y16c{bottom:362.055150px;}
.y98{bottom:370.154550px;}
.y129{bottom:370.371150px;}
.y25{bottom:371.319000px;}
.yd8{bottom:372.646800px;}
.y3a{bottom:376.650600px;}
.y188{bottom:378.295200px;}
.y16b{bottom:380.055150px;}
.y6f{bottom:381.150600px;}
.ye{bottom:386.785499px;}
.y97{bottom:389.654550px;}
.y128{bottom:391.119150px;}
.y24{bottom:392.067000px;}
.yef{bottom:392.146800px;}
.y187{bottom:394.795200px;}
.y16a{bottom:398.055150px;}
.yc8{bottom:400.650600px;}
.y39{bottom:404.654550px;}
.y127{bottom:407.619150px;}
.yd{bottom:408.044999px;}
.y23{bottom:408.567000px;}
.y96{bottom:409.154550px;}
.y186{bottom:411.295200px;}
.yee{bottom:411.646800px;}
.y169{bottom:416.055150px;}
.yc7{bottom:420.150600px;}
.y95{bottom:428.654550px;}
.yed{bottom:431.146800px;}
.y126{bottom:432.623100px;}
.y6e{bottom:433.414500px;}
.y168{bottom:434.055150px;}
.yc6{bottom:439.650600px;}
.y94{bottom:448.154550px;}
.yec{bottom:450.646800px;}
.y167{bottom:452.055150px;}
.y6d{bottom:452.914500px;}
.y185{bottom:453.307050px;}
.yc5{bottom:459.150600px;}
.y93{bottom:467.654550px;}
.y184{bottom:469.807050px;}
.y166{bottom:470.055150px;}
.y101{bottom:470.146800px;}
.y6c{bottom:472.414500px;}
.yc4{bottom:478.650600px;}
.y125{bottom:484.898850px;}
.y183{bottom:486.307050px;}
.y92{bottom:487.154550px;}
.y165{bottom:488.055150px;}
.y100{bottom:489.646800px;}
.y6b{bottom:491.914500px;}
.yc3{bottom:498.150600px;}
.y182{bottom:502.807050px;}
.yc{bottom:502.864502px;}
.y124{bottom:504.392850px;}
.y164{bottom:506.055150px;}
.y91{bottom:506.654550px;}
.yff{bottom:509.146800px;}
.y6a{bottom:511.414500px;}
.yc2{bottom:517.650600px;}
.y181{bottom:519.307050px;}
.yb{bottom:520.864502px;}
.y123{bottom:523.886850px;}
.y163{bottom:524.055150px;}
.y90{bottom:526.154550px;}
.y69{bottom:530.914500px;}
.y180{bottom:535.807050px;}
.yc1{bottom:537.150600px;}
.ya{bottom:538.864499px;}
.y162{bottom:542.055150px;}
.y8f{bottom:545.654550px;}
.y68{bottom:550.414500px;}
.y122{bottom:551.890800px;}
.y17f{bottom:552.307050px;}
.yc0{bottom:556.650600px;}
.y9{bottom:556.864499px;}
.y161{bottom:560.055150px;}
.y17e{bottom:568.807050px;}
.yeb{bottom:569.914500px;}
.y8e{bottom:573.658500px;}
.ybf{bottom:576.150600px;}
.y160{bottom:578.055150px;}
.y67{bottom:578.418300px;}
.yd7{bottom:584.654550px;}
.y17d{bottom:585.307050px;}
.yea{bottom:589.414500px;}
.y8d{bottom:593.158500px;}
.ybe{bottom:595.650600px;}
.y15f{bottom:596.055150px;}
.y66{bottom:597.918300px;}
.yd6{bottom:604.154550px;}
.y121{bottom:604.260450px;}
.ye9{bottom:608.914500px;}
.y8c{bottom:612.658500px;}
.y15e{bottom:614.055150px;}
.ybd{bottom:615.150600px;}
.y65{bottom:617.418300px;}
.yd5{bottom:623.654550px;}
.y120{bottom:623.754450px;}
.ye8{bottom:628.414500px;}
.y15d{bottom:632.055150px;}
.y8b{bottom:632.158500px;}
.yfe{bottom:634.650600px;}
.y64{bottom:636.918300px;}
.ybc{bottom:643.154550px;}
.y11f{bottom:643.248450px;}
.y8{bottom:645.510000px;}
.ye7{bottom:647.914500px;}
.y15c{bottom:650.055150px;}
.y8a{bottom:651.658500px;}
.yfd{bottom:654.150600px;}
.y63{bottom:656.418300px;}
.ybb{bottom:662.654550px;}
.y11e{bottom:662.742450px;}
.y7{bottom:666.771000px;}
.y15b{bottom:668.055150px;}
.y89{bottom:671.158500px;}
.y62{bottom:675.918300px;}
.yba{bottom:682.154550px;}
.y11d{bottom:682.236450px;}
.y15a{bottom:686.055150px;}
.y88{bottom:690.658500px;}
.y61{bottom:695.418300px;}
.yb9{bottom:701.654550px;}
.y11c{bottom:701.730450px;}
.y159{bottom:704.055150px;}
.y87{bottom:710.158500px;}
.y60{bottom:714.918300px;}
.yb8{bottom:721.154550px;}
.y11b{bottom:721.224450px;}
.y158{bottom:722.055150px;}
.y6{bottom:726.298500px;}
.y86{bottom:729.658500px;}
.ye6{bottom:734.418300px;}
.y157{bottom:740.055150px;}
.yb7{bottom:740.654550px;}
.y5f{bottom:742.922250px;}
.y85{bottom:749.158500px;}
.y11a{bottom:749.223450px;}
.y3{bottom:752.599495px;}
.ye5{bottom:753.918300px;}
.yd4{bottom:757.662450px;}
.y156{bottom:758.055150px;}
.yb6{bottom:760.154550px;}
.y5e{bottom:762.422250px;}
.y84{bottom:768.658500px;}
.y119{bottom:768.717450px;}
.ye4{bottom:773.418300px;}
.y155{bottom:776.055150px;}
.yb5{bottom:779.654550px;}
.y43{bottom:781.240050px;}
.y5d{bottom:781.922250px;}
.y83{bottom:788.158500px;}
.y118{bottom:788.211450px;}
.ye3{bottom:792.918300px;}
.y154{bottom:794.055150px;}
.yb4{bottom:799.154550px;}
.y5c{bottom:801.422250px;}
.y38{bottom:806.244000px;}
.y117{bottom:807.705450px;}
.yd3{bottom:809.926200px;}
.y153{bottom:812.055150px;}
.ye2{bottom:812.418300px;}
.y82{bottom:816.162450px;}
.yb3{bottom:818.654550px;}
.y5b{bottom:820.922400px;}
.y116{bottom:827.199450px;}
.yd2{bottom:829.426200px;}
.y152{bottom:830.055150px;}
.ye1{bottom:831.918300px;}
.y37{bottom:832.747950px;}
.y5a{bottom:840.422400px;}
.yb2{bottom:846.658500px;}
.y115{bottom:846.693450px;}
.y151{bottom:848.055150px;}
.yd1{bottom:848.926200px;}
.ye0{bottom:859.922400px;}
.y150{bottom:866.055150px;}
.yb1{bottom:866.158500px;}
.y59{bottom:868.426200px;}
.y114{bottom:874.692450px;}
.y2{bottom:879.369000px;}
.ydf{bottom:879.422400px;}
.y14f{bottom:884.055150px;}
.yb0{bottom:885.658500px;}
.y58{bottom:887.926200px;}
.y113{bottom:894.186450px;}
.yde{bottom:898.922400px;}
.y14e{bottom:902.055150px;}
.yaf{bottom:905.158500px;}
.y57{bottom:907.426200px;}
.y112{bottom:913.680450px;}
.y22{bottom:914.173200px;}
.y36{bottom:914.200350px;}
.ydd{bottom:918.422400px;}
.y14d{bottom:920.055150px;}
.yae{bottom:924.658500px;}
.y56{bottom:926.926200px;}
.y111{bottom:933.174450px;}
.ydc{bottom:937.922400px;}
.y14c{bottom:938.055150px;}
.yad{bottom:944.158500px;}
.y55{bottom:946.426200px;}
.y110{bottom:952.668450px;}
.y14b{bottom:956.055150px;}
.y35{bottom:956.186850px;}
.ydb{bottom:957.422400px;}
.yac{bottom:963.658500px;}
.y54{bottom:965.926200px;}
.y1{bottom:966.726000px;}
.y10f{bottom:972.162450px;}
.y14a{bottom:974.055150px;}
.y81{bottom:974.430150px;}
.yfc{bottom:976.922400px;}
.y53{bottom:985.426200px;}
.yab{bottom:991.662450px;}
.y149{bottom:992.055150px;}
.y80{bottom:993.930150px;}
.y34{bottom:998.173350px;}
.y10e{bottom:1000.166400px;}
.y52{bottom:1004.926200px;}
.y148{bottom:1010.055150px;}
.y7f{bottom:1013.430150px;}
.yd0{bottom:1024.426200px;}
.y147{bottom:1028.055150px;}
.y51{bottom:1032.930150px;}
.yaa{bottom:1043.926200px;}
.y146{bottom:1046.055150px;}
.y50{bottom:1052.430150px;}
.y10d{bottom:1052.466150px;}
.ya9{bottom:1063.426200px;}
.y145{bottom:1064.055150px;}
.y4f{bottom:1071.930150px;}
.y10c{bottom:1071.960150px;}
.y144{bottom:1082.055150px;}
.ya8{bottom:1082.926200px;}
.y4e{bottom:1091.430150px;}
.y10b{bottom:1091.454150px;}
.y143{bottom:1100.055150px;}
.yfb{bottom:1102.426200px;}
.y4d{bottom:1110.930150px;}
.y10a{bottom:1110.948150px;}
.y142{bottom:1118.055150px;}
.yfa{bottom:1121.926200px;}
.y4c{bottom:1130.430150px;}
.y109{bottom:1130.442150px;}
.y141{bottom:1136.055150px;}
.y48{bottom:1137.168150px;}
.y13d{bottom:1137.180150px;}
.yf9{bottom:1141.426200px;}
.y4b{bottom:1149.930150px;}
.y108{bottom:1149.936150px;}
.y47{bottom:1150.671150px;}
.y13c{bottom:1150.680150px;}
.y140{bottom:1154.055150px;}
.y46{bottom:1164.174150px;}
.y13b{bottom:1164.180150px;}
.y4a{bottom:1169.430150px;}
.y13f{bottom:1172.055150px;}
.y45{bottom:1177.677150px;}
.y13a{bottom:1177.680150px;}
.y49{bottom:1188.930150px;}
.y13e{bottom:1190.055150px;}
.y44{bottom:1191.180150px;}
.h12{height:31.920000px;}
.h7{height:32.130000px;}
.h11{height:32.340000px;}
.h10{height:33.012000px;}
.hc{height:37.536000px;}
.ha{height:37.728000px;}
.h13{height:38.346000px;}
.h14{height:43.807800px;}
.hb{height:43.824000px;}
.h6{height:45.900000px;}
.h9{height:47.160000px;}
.h3{height:48.195000px;}
.hf{height:49.302000px;}
.h2{height:55.080000px;}
.he{height:56.592000px;}
.h5{height:78.030000px;}
.hd{height:104.880000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:63.779550px;}
.x6{left:89.291250px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.x5{left:663.307050px;}
.x7{left:815.418750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.497493pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000117pt;}
.ls7{letter-spacing:0.286933pt;}
.ls8{letter-spacing:0.287467pt;}
.ls6{letter-spacing:0.288000pt;}
.lsa{letter-spacing:1.120000pt;}
.ls2{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.600000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls5{letter-spacing:2.240000pt;}
.ls1{letter-spacing:4.000000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws1{word-spacing:-17.546667pt;}
.ws3d{word-spacing:-12.288000pt;}
.ws2{word-spacing:-12.117333pt;}
.ws10{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.386667pt;}
.wsca{word-spacing:-10.837333pt;}
.ws4{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.453333pt;}
.wsd8{word-spacing:-10.154667pt;}
.wse{word-spacing:-9.482667pt;}
.wsd0{word-spacing:-5.760000pt;}
.wscb{word-spacing:-5.721173pt;}
.wsb3{word-spacing:-3.648000pt;}
.ws7d{word-spacing:-3.600000pt;}
.ws96{word-spacing:-3.552000pt;}
.ws20{word-spacing:-3.360000pt;}
.ws61{word-spacing:-3.168000pt;}
.ws63{word-spacing:-3.120000pt;}
.ws4a{word-spacing:-2.976000pt;}
.ws90{word-spacing:-2.928000pt;}
.wsbf{word-spacing:-2.880000pt;}
.wsc6{word-spacing:-2.784000pt;}
.ws1d{word-spacing:-2.736000pt;}
.ws81{word-spacing:-2.688000pt;}
.wscf{word-spacing:-2.592000pt;}
.wsbc{word-spacing:-2.400000pt;}
.ws46{word-spacing:-2.352000pt;}
.ws69{word-spacing:-2.304000pt;}
.ws1c{word-spacing:-2.256000pt;}
.wsc0{word-spacing:-2.208000pt;}
.wsc{word-spacing:-2.064000pt;}
.ws9d{word-spacing:-2.016000pt;}
.ws82{word-spacing:-1.968000pt;}
.wsd1{word-spacing:-1.920000pt;}
.ws7c{word-spacing:-1.824000pt;}
.wsce{word-spacing:-1.728000pt;}
.wsba{word-spacing:-1.680000pt;}
.wsa7{word-spacing:-1.632000pt;}
.wsa9{word-spacing:-1.536000pt;}
.ws18{word-spacing:-1.488000pt;}
.ws1e{word-spacing:-1.344000pt;}
.ws4b{word-spacing:-1.296000pt;}
.ws8d{word-spacing:-1.248000pt;}
.wsb8{word-spacing:-1.200000pt;}
.ws72{word-spacing:-1.152000pt;}
.ws86{word-spacing:-1.056000pt;}
.ws9a{word-spacing:-1.008000pt;}
.ws4d{word-spacing:-0.864000pt;}
.ws53{word-spacing:-0.816000pt;}
.ws32{word-spacing:-0.768000pt;}
.ws6f{word-spacing:-0.720000pt;}
.ws27{word-spacing:-0.672000pt;}
.wsa4{word-spacing:-0.624000pt;}
.ws34{word-spacing:-0.576000pt;}
.ws60{word-spacing:-0.528000pt;}
.ws37{word-spacing:-0.432000pt;}
.ws83{word-spacing:-0.336000pt;}
.wsd9{word-spacing:-0.298667pt;}
.ws62{word-spacing:-0.288000pt;}
.wsc5{word-spacing:-0.240000pt;}
.ws91{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.096000pt;}
.ws25{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.048000pt;}
.ws5c{word-spacing:0.096000pt;}
.wsae{word-spacing:0.144000pt;}
.ws79{word-spacing:0.192000pt;}
.ws94{word-spacing:0.240000pt;}
.ws97{word-spacing:0.288000pt;}
.wsb1{word-spacing:0.336000pt;}
.wsa3{word-spacing:0.384000pt;}
.wsc2{word-spacing:0.432000pt;}
.ws6b{word-spacing:0.480000pt;}
.ws15{word-spacing:0.528000pt;}
.wsb6{word-spacing:0.576000pt;}
.ws24{word-spacing:0.624000pt;}
.ws2e{word-spacing:0.672000pt;}
.wsc3{word-spacing:0.720000pt;}
.ws7e{word-spacing:0.768000pt;}
.ws30{word-spacing:0.816000pt;}
.ws6d{word-spacing:0.864000pt;}
.wsd7{word-spacing:0.912000pt;}
.ws66{word-spacing:0.960000pt;}
.wsb{word-spacing:1.104000pt;}
.ws16{word-spacing:1.152000pt;}
.ws31{word-spacing:1.200000pt;}
.ws9b{word-spacing:1.248000pt;}
.ws80{word-spacing:1.344000pt;}
.ws4f{word-spacing:1.392000pt;}
.ws92{word-spacing:1.488000pt;}
.ws3a{word-spacing:1.536000pt;}
.wsaf{word-spacing:1.584000pt;}
.ws93{word-spacing:1.728000pt;}
.ws11{word-spacing:1.776000pt;}
.wsab{word-spacing:1.824000pt;}
.ws1a{word-spacing:1.872000pt;}
.ws7f{word-spacing:1.920000pt;}
.ws1b{word-spacing:1.968000pt;}
.ws73{word-spacing:2.064000pt;}
.ws74{word-spacing:2.112000pt;}
.ws3c{word-spacing:2.160000pt;}
.ws51{word-spacing:2.208000pt;}
.ws12{word-spacing:2.256000pt;}
.ws2f{word-spacing:2.304000pt;}
.wsd6{word-spacing:2.352000pt;}
.ws98{word-spacing:2.400000pt;}
.ws8f{word-spacing:2.496000pt;}
.ws43{word-spacing:2.544000pt;}
.wsbd{word-spacing:2.592000pt;}
.ws7a{word-spacing:2.640000pt;}
.wsb7{word-spacing:2.688000pt;}
.ws1f{word-spacing:2.736000pt;}
.wsc4{word-spacing:2.784000pt;}
.ws26{word-spacing:2.832000pt;}
.ws2b{word-spacing:2.880000pt;}
.ws41{word-spacing:2.976000pt;}
.ws8c{word-spacing:3.072000pt;}
.ws2c{word-spacing:3.120000pt;}
.ws65{word-spacing:3.168000pt;}
.ws58{word-spacing:3.264000pt;}
.ws47{word-spacing:3.360000pt;}
.ws19{word-spacing:3.456000pt;}
.ws67{word-spacing:3.504000pt;}
.ws5a{word-spacing:3.552000pt;}
.ws5f{word-spacing:3.648000pt;}
.wsa{word-spacing:3.744000pt;}
.ws76{word-spacing:3.792000pt;}
.ws75{word-spacing:3.888000pt;}
.ws17{word-spacing:3.984000pt;}
.wscd{word-spacing:4.032000pt;}
.wsb5{word-spacing:4.080000pt;}
.ws23{word-spacing:4.128000pt;}
.wsc9{word-spacing:4.272000pt;}
.ws9c{word-spacing:4.320000pt;}
.ws9f{word-spacing:4.416000pt;}
.ws8e{word-spacing:4.512000pt;}
.ws45{word-spacing:4.608000pt;}
.ws50{word-spacing:4.656000pt;}
.ws42{word-spacing:4.704000pt;}
.ws52{word-spacing:4.752000pt;}
.ws64{word-spacing:4.800000pt;}
.wsa0{word-spacing:4.848000pt;}
.ws6a{word-spacing:4.896000pt;}
.wsd4{word-spacing:4.944000pt;}
.ws55{word-spacing:4.992000pt;}
.ws59{word-spacing:5.040000pt;}
.wsa6{word-spacing:5.184000pt;}
.ws78{word-spacing:5.232000pt;}
.wsb2{word-spacing:5.280000pt;}
.ws6c{word-spacing:5.328000pt;}
.ws21{word-spacing:5.424000pt;}
.ws22{word-spacing:5.472000pt;}
.wsc1{word-spacing:5.520000pt;}
.ws38{word-spacing:5.664000pt;}
.ws56{word-spacing:5.712000pt;}
.ws84{word-spacing:5.760000pt;}
.ws40{word-spacing:5.856000pt;}
.ws44{word-spacing:6.048000pt;}
.ws5d{word-spacing:6.144000pt;}
.wsb0{word-spacing:6.240000pt;}
.ws49{word-spacing:6.288000pt;}
.ws54{word-spacing:6.336000pt;}
.ws57{word-spacing:6.432000pt;}
.ws87{word-spacing:6.480000pt;}
.ws68{word-spacing:6.528000pt;}
.ws71{word-spacing:6.672000pt;}
.ws7{word-spacing:6.720000pt;}
.ws9e{word-spacing:6.768000pt;}
.ws48{word-spacing:7.056000pt;}
.ws5e{word-spacing:7.104000pt;}
.ws85{word-spacing:7.152000pt;}
.ws13{word-spacing:7.200000pt;}
.ws14{word-spacing:7.248000pt;}
.ws6e{word-spacing:7.296000pt;}
.wsaa{word-spacing:7.344000pt;}
.wsa2{word-spacing:7.440000pt;}
.ws33{word-spacing:7.488000pt;}
.ws2d{word-spacing:7.632000pt;}
.ws99{word-spacing:7.680000pt;}
.wsc7{word-spacing:7.728000pt;}
.wsd3{word-spacing:7.776000pt;}
.wsd5{word-spacing:7.872000pt;}
.ws4e{word-spacing:7.920000pt;}
.ws70{word-spacing:8.160000pt;}
.ws77{word-spacing:8.256000pt;}
.wsa5{word-spacing:8.448000pt;}
.wsad{word-spacing:8.544000pt;}
.ws95{word-spacing:8.640000pt;}
.wsbe{word-spacing:8.928000pt;}
.wsc8{word-spacing:8.976000pt;}
.wsd2{word-spacing:9.072000pt;}
.ws8b{word-spacing:9.216000pt;}
.ws8{word-spacing:9.264000pt;}
.ws88{word-spacing:9.312000pt;}
.ws3f{word-spacing:9.504000pt;}
.ws2a{word-spacing:9.696000pt;}
.wscc{word-spacing:9.888000pt;}
.ws89{word-spacing:9.984000pt;}
.ws7b{word-spacing:10.032000pt;}
.ws36{word-spacing:10.416000pt;}
.wsb9{word-spacing:10.656000pt;}
.ws35{word-spacing:10.704000pt;}
.ws5b{word-spacing:10.848000pt;}
.ws4c{word-spacing:10.992000pt;}
.ws8a{word-spacing:11.232000pt;}
.ws3e{word-spacing:11.376000pt;}
.wsa1{word-spacing:11.424000pt;}
.ws3b{word-spacing:11.616000pt;}
.ws6{word-spacing:11.664000pt;}
.ws29{word-spacing:12.048000pt;}
.ws39{word-spacing:12.240000pt;}
.ws28{word-spacing:12.912000pt;}
.wsbb{word-spacing:14.448000pt;}
.wsa8{word-spacing:14.736000pt;}
.wsac{word-spacing:15.552000pt;}
.wsb4{word-spacing:16.608000pt;}
._8{margin-left:-586.858667pt;}
._9{margin-left:-585.944000pt;}
._4{margin-left:-584.894933pt;}
._2{margin-left:-5.029333pt;}
._5{margin-left:-3.664000pt;}
._1{margin-left:-2.261333pt;}
._0{margin-left:-1.109333pt;}
._3{width:1.642667pt;}
._6{width:4.992000pt;}
._a{width:9.504000pt;}
._b{width:47.618133pt;}
._7{width:58.303467pt;}
.fs9{font-size:24.874667pt;}
.fs8{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:40.312400pt;}
.y138{bottom:56.312400pt;}
.y33{bottom:56.696000pt;}
.y5{bottom:59.133337pt;}
.y199{bottom:60.472400pt;}
.ya7{bottom:61.467200pt;}
.y7e{bottom:63.682400pt;}
.y17c{bottom:65.826800pt;}
.yf8{bottom:65.897733pt;}
.ycf{bottom:70.446267pt;}
.y32{bottom:71.362667pt;}
.y137{bottom:72.312400pt;}
.y198{bottom:75.139067pt;}
.ya6{bottom:78.800533pt;}
.y7d{bottom:81.015733pt;}
.y17b{bottom:81.826800pt;}
.yf7{bottom:83.231067pt;}
.y31{bottom:86.029333pt;}
.y4{bottom:86.333337pt;}
.y136{bottom:88.312400pt;}
.y197{bottom:89.805733pt;}
.ya5{bottom:96.133867pt;}
.y17a{bottom:97.826800pt;}
.y7c{bottom:98.349067pt;}
.y107{bottom:100.564400pt;}
.y30{bottom:100.696000pt;}
.y135{bottom:104.312400pt;}
.y196{bottom:104.472400pt;}
.yce{bottom:108.123333pt;}
.ya4{bottom:113.467200pt;}
.y179{bottom:113.826800pt;}
.y2f{bottom:115.362667pt;}
.y7b{bottom:115.682400pt;}
.y106{bottom:117.897733pt;}
.y134{bottom:120.312400pt;}
.y195{bottom:122.918667pt;}
.y21{bottom:123.790666pt;}
.ycd{bottom:125.456667pt;}
.y178{bottom:129.826800pt;}
.y2e{bottom:130.029333pt;}
.ya3{bottom:130.800533pt;}
.y7a{bottom:133.015733pt;}
.y105{bottom:135.231067pt;}
.y133{bottom:136.312400pt;}
.y194{bottom:137.585333pt;}
.ycc{bottom:142.790000pt;}
.y2d{bottom:144.696000pt;}
.y177{bottom:145.826800pt;}
.ya2{bottom:148.133867pt;}
.y79{bottom:150.349067pt;}
.y193{bottom:152.252000pt;}
.y132{bottom:152.312400pt;}
.y104{bottom:152.564400pt;}
.y2c{bottom:159.362667pt;}
.yf6{bottom:160.123333pt;}
.y176{bottom:161.826800pt;}
.ya1{bottom:165.467200pt;}
.y192{bottom:166.918667pt;}
.y78{bottom:167.682400pt;}
.y131{bottom:168.312400pt;}
.y2b{bottom:174.029333pt;}
.y18{bottom:175.052000pt;}
.yf5{bottom:177.456667pt;}
.y175{bottom:177.826800pt;}
.y191{bottom:181.585333pt;}
.ya0{bottom:182.800533pt;}
.y130{bottom:184.312400pt;}
.y77{bottom:185.015733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yda{bottom:192.574933pt;}
.y174{bottom:193.826800pt;}
.yf4{bottom:194.790000pt;}
.y42{bottom:196.176533pt;}
.y190{bottom:196.252000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y9f{bottom:200.133867pt;}
.y12f{bottom:200.312400pt;}
.y76{bottom:202.349067pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y173{bottom:209.826800pt;}
.yd9{bottom:209.908267pt;}
.y18f{bottom:210.918667pt;}
.y2a{bottom:211.373333pt;}
.y103{bottom:212.123333pt;}
.y41{bottom:213.504533pt;}
.y12e{bottom:216.312400pt;}
.y9e{bottom:217.467200pt;}
.ycb{bottom:219.682400pt;}
.y18e{bottom:225.585333pt;}
.y172{bottom:225.826800pt;}
.y29{bottom:226.040000pt;}
.y75{bottom:227.241600pt;}
.y102{bottom:229.456667pt;}
.y40{bottom:230.832533pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y12d{bottom:232.312400pt;}
.yca{bottom:237.015733pt;}
.y18d{bottom:240.251867pt;}
.y28{bottom:240.706667pt;}
.y171{bottom:241.826800pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y9d{bottom:242.359600pt;}
.y74{bottom:244.574933pt;}
.y3f{bottom:248.160533pt;}
.y12c{bottom:248.312400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yf3{bottom:254.349067pt;}
.y18c{bottom:254.918533pt;}
.y27{bottom:255.373333pt;}
.y170{bottom:257.826800pt;}
.y9c{bottom:259.692933pt;}
.y73{bottom:261.908267pt;}
.y3e{bottom:265.488533pt;}
.y18b{bottom:269.585200pt;}
.yf2{bottom:271.682400pt;}
.y12b{bottom:271.871467pt;}
.y16f{bottom:273.826800pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y9b{bottom:277.026267pt;}
.y72{bottom:279.241600pt;}
.y3d{bottom:282.816533pt;}
.y18a{bottom:284.251867pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yf1{bottom:289.015733pt;}
.y16e{bottom:289.826800pt;}
.y9a{bottom:294.359600pt;}
.y71{bottom:296.574933pt;}
.y189{bottom:298.918533pt;}
.y3c{bottom:300.144533pt;}
.y16d{bottom:305.826800pt;}
.yf0{bottom:306.349067pt;}
.yf{bottom:309.452000pt;}
.y26{bottom:311.618667pt;}
.y99{bottom:311.692933pt;}
.y70{bottom:313.908267pt;}
.y12a{bottom:314.548533pt;}
.y3b{bottom:317.472533pt;}
.yc9{bottom:321.467200pt;}
.y16c{bottom:321.826800pt;}
.y98{bottom:329.026267pt;}
.y129{bottom:329.218800pt;}
.y25{bottom:330.061333pt;}
.yd8{bottom:331.241600pt;}
.y3a{bottom:334.800533pt;}
.y188{bottom:336.262400pt;}
.y16b{bottom:337.826800pt;}
.y6f{bottom:338.800533pt;}
.ye{bottom:343.809333pt;}
.y97{bottom:346.359600pt;}
.y128{bottom:347.661467pt;}
.y24{bottom:348.504000pt;}
.yef{bottom:348.574933pt;}
.y187{bottom:350.929067pt;}
.y16a{bottom:353.826800pt;}
.yc8{bottom:356.133867pt;}
.y39{bottom:359.692933pt;}
.y127{bottom:362.328133pt;}
.yd{bottom:362.706666pt;}
.y23{bottom:363.170667pt;}
.y96{bottom:363.692933pt;}
.y186{bottom:365.595733pt;}
.yee{bottom:365.908267pt;}
.y169{bottom:369.826800pt;}
.yc7{bottom:373.467200pt;}
.y95{bottom:381.026267pt;}
.yed{bottom:383.241600pt;}
.y126{bottom:384.553867pt;}
.y6e{bottom:385.257333pt;}
.y168{bottom:385.826800pt;}
.yc6{bottom:390.800533pt;}
.y94{bottom:398.359600pt;}
.yec{bottom:400.574933pt;}
.y167{bottom:401.826800pt;}
.y6d{bottom:402.590667pt;}
.y185{bottom:402.939600pt;}
.yc5{bottom:408.133867pt;}
.y93{bottom:415.692933pt;}
.y184{bottom:417.606267pt;}
.y166{bottom:417.826800pt;}
.y101{bottom:417.908267pt;}
.y6c{bottom:419.924000pt;}
.yc4{bottom:425.467200pt;}
.y125{bottom:431.021200pt;}
.y183{bottom:432.272933pt;}
.y92{bottom:433.026267pt;}
.y165{bottom:433.826800pt;}
.y100{bottom:435.241600pt;}
.y6b{bottom:437.257333pt;}
.yc3{bottom:442.800533pt;}
.y182{bottom:446.939600pt;}
.yc{bottom:446.990669pt;}
.y124{bottom:448.349200pt;}
.y164{bottom:449.826800pt;}
.y91{bottom:450.359600pt;}
.yff{bottom:452.574933pt;}
.y6a{bottom:454.590667pt;}
.yc2{bottom:460.133867pt;}
.y181{bottom:461.606267pt;}
.yb{bottom:462.990669pt;}
.y123{bottom:465.677200pt;}
.y163{bottom:465.826800pt;}
.y90{bottom:467.692933pt;}
.y69{bottom:471.924000pt;}
.y180{bottom:476.272933pt;}
.yc1{bottom:477.467200pt;}
.ya{bottom:478.990666pt;}
.y162{bottom:481.826800pt;}
.y8f{bottom:485.026267pt;}
.y68{bottom:489.257333pt;}
.y122{bottom:490.569600pt;}
.y17f{bottom:490.939600pt;}
.yc0{bottom:494.800533pt;}
.y9{bottom:494.990666pt;}
.y161{bottom:497.826800pt;}
.y17e{bottom:505.606267pt;}
.yeb{bottom:506.590667pt;}
.y8e{bottom:509.918667pt;}
.ybf{bottom:512.133867pt;}
.y160{bottom:513.826800pt;}
.y67{bottom:514.149600pt;}
.yd7{bottom:519.692933pt;}
.y17d{bottom:520.272933pt;}
.yea{bottom:523.924000pt;}
.y8d{bottom:527.252000pt;}
.ybe{bottom:529.467200pt;}
.y15f{bottom:529.826800pt;}
.y66{bottom:531.482933pt;}
.yd6{bottom:537.026267pt;}
.y121{bottom:537.120400pt;}
.ye9{bottom:541.257333pt;}
.y8c{bottom:544.585333pt;}
.y15e{bottom:545.826800pt;}
.ybd{bottom:546.800533pt;}
.y65{bottom:548.816267pt;}
.yd5{bottom:554.359600pt;}
.y120{bottom:554.448400pt;}
.ye8{bottom:558.590667pt;}
.y15d{bottom:561.826800pt;}
.y8b{bottom:561.918667pt;}
.yfe{bottom:564.133867pt;}
.y64{bottom:566.149600pt;}
.ybc{bottom:571.692933pt;}
.y11f{bottom:571.776400pt;}
.y8{bottom:573.786667pt;}
.ye7{bottom:575.924000pt;}
.y15c{bottom:577.826800pt;}
.y8a{bottom:579.252000pt;}
.yfd{bottom:581.467200pt;}
.y63{bottom:583.482933pt;}
.ybb{bottom:589.026267pt;}
.y11e{bottom:589.104400pt;}
.y7{bottom:592.685334pt;}
.y15b{bottom:593.826800pt;}
.y89{bottom:596.585333pt;}
.y62{bottom:600.816267pt;}
.yba{bottom:606.359600pt;}
.y11d{bottom:606.432400pt;}
.y15a{bottom:609.826800pt;}
.y88{bottom:613.918667pt;}
.y61{bottom:618.149600pt;}
.yb9{bottom:623.692933pt;}
.y11c{bottom:623.760400pt;}
.y159{bottom:625.826800pt;}
.y87{bottom:631.252000pt;}
.y60{bottom:635.482933pt;}
.yb8{bottom:641.026267pt;}
.y11b{bottom:641.088400pt;}
.y158{bottom:641.826800pt;}
.y6{bottom:645.598667pt;}
.y86{bottom:648.585333pt;}
.ye6{bottom:652.816267pt;}
.y157{bottom:657.826800pt;}
.yb7{bottom:658.359600pt;}
.y5f{bottom:660.375333pt;}
.y85{bottom:665.918667pt;}
.y11a{bottom:665.976400pt;}
.y3{bottom:668.977329pt;}
.ye5{bottom:670.149600pt;}
.yd4{bottom:673.477733pt;}
.y156{bottom:673.826800pt;}
.yb6{bottom:675.692933pt;}
.y5e{bottom:677.708667pt;}
.y84{bottom:683.252000pt;}
.y119{bottom:683.304400pt;}
.ye4{bottom:687.482933pt;}
.y155{bottom:689.826800pt;}
.yb5{bottom:693.026267pt;}
.y43{bottom:694.435600pt;}
.y5d{bottom:695.042000pt;}
.y83{bottom:700.585333pt;}
.y118{bottom:700.632400pt;}
.ye3{bottom:704.816267pt;}
.y154{bottom:705.826800pt;}
.yb4{bottom:710.359600pt;}
.y5c{bottom:712.375333pt;}
.y38{bottom:716.661333pt;}
.y117{bottom:717.960400pt;}
.yd3{bottom:719.934400pt;}
.y153{bottom:721.826800pt;}
.ye2{bottom:722.149600pt;}
.y82{bottom:725.477733pt;}
.yb3{bottom:727.692933pt;}
.y5b{bottom:729.708800pt;}
.y116{bottom:735.288400pt;}
.yd2{bottom:737.267733pt;}
.y152{bottom:737.826800pt;}
.ye1{bottom:739.482933pt;}
.y37{bottom:740.220400pt;}
.y5a{bottom:747.042133pt;}
.yb2{bottom:752.585333pt;}
.y115{bottom:752.616400pt;}
.y151{bottom:753.826800pt;}
.yd1{bottom:754.601067pt;}
.ye0{bottom:764.375467pt;}
.y150{bottom:769.826800pt;}
.yb1{bottom:769.918667pt;}
.y59{bottom:771.934400pt;}
.y114{bottom:777.504400pt;}
.y2{bottom:781.661334pt;}
.ydf{bottom:781.708800pt;}
.y14f{bottom:785.826800pt;}
.yb0{bottom:787.252000pt;}
.y58{bottom:789.267733pt;}
.y113{bottom:794.832400pt;}
.yde{bottom:799.042133pt;}
.y14e{bottom:801.826800pt;}
.yaf{bottom:804.585333pt;}
.y57{bottom:806.601067pt;}
.y112{bottom:812.160400pt;}
.y22{bottom:812.598400pt;}
.y36{bottom:812.622533pt;}
.ydd{bottom:816.375467pt;}
.y14d{bottom:817.826800pt;}
.yae{bottom:821.918667pt;}
.y56{bottom:823.934400pt;}
.y111{bottom:829.488400pt;}
.ydc{bottom:833.708800pt;}
.y14c{bottom:833.826800pt;}
.yad{bottom:839.252000pt;}
.y55{bottom:841.267733pt;}
.y110{bottom:846.816400pt;}
.y14b{bottom:849.826800pt;}
.y35{bottom:849.943867pt;}
.ydb{bottom:851.042133pt;}
.yac{bottom:856.585333pt;}
.y54{bottom:858.601067pt;}
.y1{bottom:859.312000pt;}
.y10f{bottom:864.144400pt;}
.y14a{bottom:865.826800pt;}
.y81{bottom:866.160133pt;}
.yfc{bottom:868.375467pt;}
.y53{bottom:875.934400pt;}
.yab{bottom:881.477733pt;}
.y149{bottom:881.826800pt;}
.y80{bottom:883.493467pt;}
.y34{bottom:887.265200pt;}
.y10e{bottom:889.036800pt;}
.y52{bottom:893.267733pt;}
.y148{bottom:897.826800pt;}
.y7f{bottom:900.826800pt;}
.yd0{bottom:910.601067pt;}
.y147{bottom:913.826800pt;}
.y51{bottom:918.160133pt;}
.yaa{bottom:927.934400pt;}
.y146{bottom:929.826800pt;}
.y50{bottom:935.493467pt;}
.y10d{bottom:935.525467pt;}
.ya9{bottom:945.267733pt;}
.y145{bottom:945.826800pt;}
.y4f{bottom:952.826800pt;}
.y10c{bottom:952.853467pt;}
.y144{bottom:961.826800pt;}
.ya8{bottom:962.601067pt;}
.y4e{bottom:970.160133pt;}
.y10b{bottom:970.181467pt;}
.y143{bottom:977.826800pt;}
.yfb{bottom:979.934400pt;}
.y4d{bottom:987.493467pt;}
.y10a{bottom:987.509467pt;}
.y142{bottom:993.826800pt;}
.yfa{bottom:997.267733pt;}
.y4c{bottom:1004.826800pt;}
.y109{bottom:1004.837467pt;}
.y141{bottom:1009.826800pt;}
.y48{bottom:1010.816133pt;}
.y13d{bottom:1010.826800pt;}
.yf9{bottom:1014.601067pt;}
.y4b{bottom:1022.160133pt;}
.y108{bottom:1022.165467pt;}
.y47{bottom:1022.818800pt;}
.y13c{bottom:1022.826800pt;}
.y140{bottom:1025.826800pt;}
.y46{bottom:1034.821467pt;}
.y13b{bottom:1034.826800pt;}
.y4a{bottom:1039.493467pt;}
.y13f{bottom:1041.826800pt;}
.y45{bottom:1046.824133pt;}
.y13a{bottom:1046.826800pt;}
.y49{bottom:1056.826800pt;}
.y13e{bottom:1057.826800pt;}
.y44{bottom:1058.826800pt;}
.h12{height:28.373333pt;}
.h7{height:28.560000pt;}
.h11{height:28.746667pt;}
.h10{height:29.344000pt;}
.hc{height:33.365333pt;}
.ha{height:33.536000pt;}
.h13{height:34.085333pt;}
.h14{height:38.940267pt;}
.hb{height:38.954667pt;}
.h6{height:40.800000pt;}
.h9{height:41.920000pt;}
.h3{height:42.840000pt;}
.hf{height:43.824000pt;}
.h2{height:48.960000pt;}
.he{height:50.304000pt;}
.h5{height:69.360000pt;}
.hd{height:93.226667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:56.692933pt;}
.x6{left:79.370000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.x5{left:589.606267pt;}
.x7{left:724.816667pt;}
}




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