
    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_47b7ecd32a30312ef3a459cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.038574;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_2b13fd0b948a42f04395c32a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145996;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_5260687ba53f64cbc63263f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145996;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_74015e788c9de3e4788d0ece.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.038574;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_0ccaf8cf4fb52fe9680df2ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.975098;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_b7a5f19dea914b053607955b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975098;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_d12993db36947a45303a37fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_8ec484bd0401820bf6653c02.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.038574;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_47b7ecd32a30312ef3a459cd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.038574;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_2b13fd0b948a42f04395c32a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.145996;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_0d1bdd1309d043e4a01fb273.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760254;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_690876f0d2a8de1c964dca27.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.674805;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_47b7ecd32a30312ef3a459cd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.038574;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_2b13fd0b948a42f04395c32a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.145996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_da263cbb9b2749d040bee09f.woff2')format("woff");}.fff{font-family:fff;line-height:1.025879;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_47b7ecd32a30312ef3a459cd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.038574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2b13fd0b948a42f04395c32a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.145996;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:ff12;src:url('chunks/assets/font_ecf81d679bbefa8af7a35134.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.038574;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:ff13;src:url('chunks/assets/font_e4008443bee4a1c94ca4cdb4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.145996;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:ff14;src:url('chunks/assets/font_ecf81d679bbefa8af7a35134.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.038574;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:ff15;src:url('chunks/assets/font_e4008443bee4a1c94ca4cdb4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.145996;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:ff16;src:url('chunks/assets/font_ecf81d679bbefa8af7a35134.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.038574;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:ff17;src:url('chunks/assets/font_e4008443bee4a1c94ca4cdb4.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.145996;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.880000px;}
.ls0{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.007800px;}
.ls15{letter-spacing:0.009600px;}
.ls14{letter-spacing:0.010200px;}
.lsd{letter-spacing:0.015600px;}
.ls10{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.247200px;}
.ls11{letter-spacing:0.879000px;}
.ls5{letter-spacing:0.915000px;}
.ls7{letter-spacing:0.989400px;}
.ls6{letter-spacing:2.745600px;}
.lsc{letter-spacing:2.783400px;}
.lse{letter-spacing:2.784000px;}
.lsa{letter-spacing:5.248800px;}
.ls9{letter-spacing:5.367000px;}
.ls8{letter-spacing:7.674000px;}
.ls12{letter-spacing:10.542000px;}
.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;}
}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws7b{word-spacing:-13.122000px;}
.ws18{word-spacing:-11.664000px;}
.ws17{word-spacing:-9.477000px;}
.wsf{word-spacing:-3.060000px;}
.ws2c{word-spacing:-2.880000px;}
.ws97{word-spacing:-2.820000px;}
.ws8b{word-spacing:-2.460000px;}
.ws8f{word-spacing:-2.400000px;}
.ws40{word-spacing:-2.376000px;}
.ws10{word-spacing:-2.280000px;}
.ws6e{word-spacing:-2.256000px;}
.ws86{word-spacing:-2.220000px;}
.ws16{word-spacing:-2.160000px;}
.ws25{word-spacing:-2.112000px;}
.ws53{word-spacing:-2.106000px;}
.ws2a{word-spacing:-2.100000px;}
.ws3c{word-spacing:-2.040000px;}
.ws5e{word-spacing:-1.980000px;}
.ws55{word-spacing:-1.800000px;}
.ws8d{word-spacing:-1.680000px;}
.ws4a{word-spacing:-1.620000px;}
.ws83{word-spacing:-1.440000px;}
.ws14{word-spacing:-1.380000px;}
.ws26{word-spacing:-1.296000px;}
.ws5c{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.200000px;}
.ws20{word-spacing:-1.140000px;}
.ws75{word-spacing:-1.104000px;}
.ws35{word-spacing:-1.056000px;}
.ws67{word-spacing:-0.960000px;}
.ws4{word-spacing:-0.900000px;}
.ws4d{word-spacing:-0.780000px;}
.ws2d{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.600000px;}
.ws8a{word-spacing:-0.540000px;}
.ws6{word-spacing:-0.480000px;}
.ws1c{word-spacing:-0.420000px;}
.ws21{word-spacing:-0.360000px;}
.ws80{word-spacing:-0.336000px;}
.ws3d{word-spacing:-0.300000px;}
.ws82{word-spacing:-0.240000px;}
.ws6a{word-spacing:-0.180000px;}
.ws1d{word-spacing:-0.120000px;}
.ws7d{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws61{word-spacing:0.060000px;}
.ws5d{word-spacing:0.120000px;}
.ws4b{word-spacing:0.180000px;}
.ws6c{word-spacing:0.240000px;}
.ws32{word-spacing:0.288000px;}
.ws23{word-spacing:0.300000px;}
.ws7a{word-spacing:0.336000px;}
.ws58{word-spacing:0.360000px;}
.ws5f{word-spacing:0.420000px;}
.ws2b{word-spacing:0.540000px;}
.ws49{word-spacing:0.660000px;}
.ws73{word-spacing:0.720000px;}
.ws77{word-spacing:0.816000px;}
.ws38{word-spacing:0.840000px;}
.ws1a{word-spacing:0.900000px;}
.ws29{word-spacing:1.008000px;}
.ws27{word-spacing:1.104000px;}
.ws46{word-spacing:1.140000px;}
.ws52{word-spacing:1.188000px;}
.ws34{word-spacing:1.200000px;}
.ws13{word-spacing:1.242000px;}
.ws9{word-spacing:1.260000px;}
.ws8{word-spacing:1.320000px;}
.ws74{word-spacing:1.344000px;}
.ws0{word-spacing:1.392000px;}
.ws5a{word-spacing:1.440000px;}
.ws59{word-spacing:1.500000px;}
.ws68{word-spacing:1.560000px;}
.ws45{word-spacing:1.620000px;}
.ws62{word-spacing:1.632000px;}
.ws42{word-spacing:1.680000px;}
.ws7{word-spacing:1.800000px;}
.ws39{word-spacing:1.860000px;}
.ws79{word-spacing:1.872000px;}
.ws48{word-spacing:1.920000px;}
.ws95{word-spacing:1.980000px;}
.ws43{word-spacing:2.040000px;}
.ws47{word-spacing:2.064000px;}
.ws11{word-spacing:2.100000px;}
.ws93{word-spacing:2.160000px;}
.ws76{word-spacing:2.256000px;}
.ws65{word-spacing:2.280000px;}
.wse{word-spacing:2.400000px;}
.ws71{word-spacing:2.460000px;}
.ws90{word-spacing:2.520000px;}
.ws6f{word-spacing:2.544000px;}
.ws28{word-spacing:2.736000px;}
.ws63{word-spacing:2.760000px;}
.ws44{word-spacing:2.820000px;}
.wsc{word-spacing:2.880000px;}
.ws19{word-spacing:2.940000px;}
.ws1b{word-spacing:3.060000px;}
.wsd{word-spacing:3.120000px;}
.ws51{word-spacing:3.132000px;}
.ws78{word-spacing:3.168000px;}
.ws64{word-spacing:3.240000px;}
.ws7e{word-spacing:3.264000px;}
.ws8e{word-spacing:3.300000px;}
.ws12{word-spacing:3.402000px;}
.ws96{word-spacing:3.420000px;}
.ws7f{word-spacing:3.456000px;}
.ws3f{word-spacing:3.510000px;}
.ws36{word-spacing:3.600000px;}
.ws92{word-spacing:3.780000px;}
.ws72{word-spacing:3.936000px;}
.ws4e{word-spacing:3.984000px;}
.ws5b{word-spacing:4.020000px;}
.ws5{word-spacing:4.080000px;}
.ws60{word-spacing:4.200000px;}
.ws3b{word-spacing:4.260000px;}
.ws89{word-spacing:4.380000px;}
.ws2f{word-spacing:4.500000px;}
.ws57{word-spacing:4.560000px;}
.ws1e{word-spacing:4.620000px;}
.ws94{word-spacing:4.740000px;}
.ws37{word-spacing:4.920000px;}
.ws8c{word-spacing:5.040000px;}
.ws31{word-spacing:5.100000px;}
.ws4f{word-spacing:5.220000px;}
.ws41{word-spacing:5.340000px;}
.ws50{word-spacing:5.700000px;}
.ws56{word-spacing:5.820000px;}
.ws66{word-spacing:5.880000px;}
.ws69{word-spacing:6.000000px;}
.ws1f{word-spacing:6.060000px;}
.ws15{word-spacing:6.360000px;}
.ws33{word-spacing:6.432000px;}
.ws4c{word-spacing:6.480000px;}
.ws70{word-spacing:6.720000px;}
.ws2e{word-spacing:6.780000px;}
.ws3a{word-spacing:6.840000px;}
.ws84{word-spacing:6.900000px;}
.ws7c{word-spacing:7.440000px;}
.ws6b{word-spacing:7.620000px;}
.ws30{word-spacing:7.680000px;}
.ws81{word-spacing:7.800000px;}
.wsa{word-spacing:7.920000px;}
.ws54{word-spacing:8.100000px;}
.ws6d{word-spacing:8.340000px;}
.ws85{word-spacing:8.580000px;}
.ws3e{word-spacing:8.802000px;}
.ws91{word-spacing:9.420000px;}
.ws88{word-spacing:10.560000px;}
.wsb{word-spacing:10.920000px;}
.ws87{word-spacing:12.120000px;}
._9{margin-left:-14.855400px;}
._d{margin-left:-13.758600px;}
._e{margin-left:-7.078800px;}
._f{margin-left:-4.673400px;}
._0{margin-left:-3.393600px;}
._1{margin-left:-1.776600px;}
._2{width:1.732200px;}
._3{width:3.075600px;}
._6{width:4.650000px;}
._5{width:6.300000px;}
._7{width:7.326000px;}
._b{width:8.436000px;}
._10{width:9.544200px;}
._11{width:10.722600px;}
._a{width:11.976000px;}
._c{width:19.056000px;}
._8{width:534.854400px;}
._4{width:1052.793600px;}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(112,109,110);}
.fc0{color:rgb(163,200,22);}
.fs5{font-size:39.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:171.708600px;}
.y25{bottom:172.458600px;}
.y4c{bottom:200.277900px;}
.yd3{bottom:200.278050px;}
.y9e{bottom:201.230250px;}
.y1ab{bottom:208.333050px;}
.y23{bottom:210.274050px;}
.y76{bottom:216.477900px;}
.yd2{bottom:216.478050px;}
.y186{bottom:216.478200px;}
.y9d{bottom:217.430250px;}
.y1aa{bottom:226.333050px;}
.y22{bottom:228.274050px;}
.y75{bottom:232.677900px;}
.yd1{bottom:232.678050px;}
.y185{bottom:232.678200px;}
.y9c{bottom:233.630250px;}
.y4b{bottom:240.352800px;}
.y1c5{bottom:244.333050px;}
.y14d{bottom:248.877750px;}
.y74{bottom:248.877900px;}
.yd0{bottom:248.878050px;}
.y184{bottom:248.878200px;}
.y9b{bottom:249.830250px;}
.y1a9{bottom:252.837000px;}
.y21{bottom:254.778000px;}
.y4a{bottom:258.352650px;}
.y73{bottom:265.077900px;}
.ycf{bottom:265.078050px;}
.y183{bottom:265.078200px;}
.y9a{bottom:266.030250px;}
.y1a8{bottom:270.837000px;}
.y20{bottom:272.778000px;}
.y49{bottom:276.352650px;}
.y72{bottom:281.277900px;}
.yce{bottom:281.278050px;}
.y182{bottom:281.278200px;}
.y118{bottom:282.081750px;}
.y99{bottom:282.230250px;}
.y1c4{bottom:288.837000px;}
.y1f{bottom:290.778000px;}
.y48{bottom:294.352650px;}
.y1a7{bottom:297.340950px;}
.y71{bottom:297.477900px;}
.ycd{bottom:297.478050px;}
.y98{bottom:298.430250px;}
.y117{bottom:300.081750px;}
.y1c3{bottom:306.837000px;}
.y1e{bottom:308.778000px;}
.y47{bottom:312.352650px;}
.y70{bottom:313.677900px;}
.ycc{bottom:313.678050px;}
.y97{bottom:314.630250px;}
.y1a6{bottom:315.340950px;}
.y116{bottom:318.081750px;}
.y1d{bottom:326.778000px;}
.y14c{bottom:329.877750px;}
.y6f{bottom:329.877900px;}
.y132{bottom:329.878050px;}
.y46{bottom:330.352650px;}
.y96{bottom:330.830400px;}
.y1c2{bottom:333.340950px;}
.y115{bottom:336.081750px;}
.yf2{bottom:341.348850px;}
.y1a5{bottom:341.844900px;}
.y1c{bottom:344.778000px;}
.y6e{bottom:346.077900px;}
.y131{bottom:346.078050px;}
.y95{bottom:347.030400px;}
.y45{bottom:348.352650px;}
.ycb{bottom:351.156750px;}
.y1c1{bottom:351.340950px;}
.y114{bottom:354.081750px;}
.yf1{bottom:359.348850px;}
.y1a4{bottom:359.844900px;}
.y6d{bottom:362.277900px;}
.y16a{bottom:362.278050px;}
.y1b{bottom:362.778000px;}
.y94{bottom:363.230400px;}
.y44{bottom:366.352650px;}
.yca{bottom:369.156750px;}
.y113{bottom:372.081750px;}
.yf0{bottom:377.348850px;}
.y1c0{bottom:377.844900px;}
.y14b{bottom:378.477750px;}
.y6c{bottom:378.477900px;}
.y169{bottom:378.478050px;}
.y93{bottom:379.430400px;}
.y1a{bottom:380.778000px;}
.y43{bottom:384.352650px;}
.y1a3{bottom:386.348850px;}
.yc9{bottom:387.156750px;}
.y112{bottom:390.081750px;}
.y6b{bottom:394.677900px;}
.y168{bottom:394.678050px;}
.y92{bottom:395.630400px;}
.y1bf{bottom:395.844900px;}
.y19{bottom:398.778000px;}
.y42{bottom:402.352650px;}
.yb1{bottom:402.676350px;}
.y1a2{bottom:404.348850px;}
.yc8{bottom:405.156750px;}
.y6a{bottom:410.877900px;}
.y167{bottom:410.878050px;}
.y91{bottom:411.830400px;}
.yef{bottom:412.356600px;}
.y130{bottom:412.852800px;}
.y1be{bottom:413.844900px;}
.y18{bottom:416.778000px;}
.y41{bottom:420.352650px;}
.y181{bottom:420.508650px;}
.yb0{bottom:420.676350px;}
.y111{bottom:425.089650px;}
.y69{bottom:427.077900px;}
.y166{bottom:427.078050px;}
.y90{bottom:428.030400px;}
.yee{bottom:428.556600px;}
.y12f{bottom:429.052800px;}
.y1a1{bottom:430.852650px;}
.y1bd{bottom:431.844900px;}
.y17{bottom:434.778000px;}
.y40{bottom:438.352650px;}
.y180{bottom:438.508650px;}
.yaf{bottom:438.676350px;}
.yc7{bottom:440.164650px;}
.y110{bottom:441.289650px;}
.y68{bottom:443.277900px;}
.y165{bottom:443.278350px;}
.y8f{bottom:444.230400px;}
.yed{bottom:444.756600px;}
.y12e{bottom:445.252800px;}
.y1a0{bottom:448.852650px;}
.y16{bottom:452.778000px;}
.yc6{bottom:456.364650px;}
.y17f{bottom:456.508650px;}
.yae{bottom:456.676350px;}
.y10f{bottom:457.489650px;}
.y1bc{bottom:458.348850px;}
.y67{bottom:459.477900px;}
.y164{bottom:459.478350px;}
.y8e{bottom:460.430400px;}
.yec{bottom:460.956600px;}
.y12d{bottom:461.452800px;}
.y19f{bottom:466.852650px;}
.y14a{bottom:469.276200px;}
.y15{bottom:470.778000px;}
.yc5{bottom:472.564650px;}
.y3f{bottom:473.360550px;}
.y10e{bottom:473.689650px;}
.y17e{bottom:474.508650px;}
.yad{bottom:474.676350px;}
.y66{bottom:475.677900px;}
.y163{bottom:475.678500px;}
.y1bb{bottom:476.348850px;}
.y8d{bottom:476.630400px;}
.y149{bottom:487.276200px;}
.yc4{bottom:488.764650px;}
.y14{bottom:488.778000px;}
.y3e{bottom:489.560550px;}
.y10d{bottom:489.889650px;}
.y65{bottom:491.877900px;}
.y17d{bottom:492.508650px;}
.yac{bottom:492.676350px;}
.y8c{bottom:492.830400px;}
.y19e{bottom:493.356600px;}
.yeb{bottom:494.164500px;}
.y12c{bottom:494.660700px;}
.y1ba{bottom:502.852650px;}
.y148{bottom:505.276200px;}
.y3d{bottom:505.760550px;}
.y10c{bottom:506.089650px;}
.y64{bottom:508.077900px;}
.y8b{bottom:509.030400px;}
.y17c{bottom:510.508650px;}
.yab{bottom:510.676350px;}
.y19d{bottom:511.356600px;}
.yea{bottom:512.164500px;}
.y12b{bottom:512.660700px;}
.y162{bottom:516.260550px;}
.y1b9{bottom:520.852650px;}
.y3c{bottom:521.960550px;}
.yc3{bottom:521.972550px;}
.y10b{bottom:522.289650px;}
.y147{bottom:523.276200px;}
.y17b{bottom:528.508650px;}
.yaa{bottom:528.676350px;}
.ye9{bottom:530.164500px;}
.y12a{bottom:530.660700px;}
.y161{bottom:534.260550px;}
.y19c{bottom:537.860550px;}
.y1b8{bottom:538.852650px;}
.yc2{bottom:539.972550px;}
.y146{bottom:541.276200px;}
.y63{bottom:543.388200px;}
.y17a{bottom:546.508650px;}
.ya9{bottom:546.676350px;}
.y1c8{bottom:547.356600px;}
.y129{bottom:548.660700px;}
.y13{bottom:551.881950px;}
.y160{bottom:552.260550px;}
.y3b{bottom:555.168450px;}
.y10a{bottom:555.497550px;}
.y19b{bottom:555.860550px;}
.yc1{bottom:557.972550px;}
.y62{bottom:561.388200px;}
.y179{bottom:564.508650px;}
.ye8{bottom:565.172400px;}
.y1b7{bottom:565.356600px;}
.y128{bottom:566.660700px;}
.y145{bottom:567.780150px;}
.y12{bottom:569.881950px;}
.y15f{bottom:570.260550px;}
.y3a{bottom:573.168450px;}
.y109{bottom:573.497550px;}
.y19a{bottom:573.860550px;}
.yc0{bottom:575.972550px;}
.y61{bottom:579.388200px;}
.ye7{bottom:581.372400px;}
.ya8{bottom:581.684250px;}
.y178{bottom:582.508650px;}
.y127{bottom:584.660700px;}
.y144{bottom:585.780150px;}
.y11{bottom:587.881950px;}
.y15e{bottom:588.260550px;}
.y39{bottom:591.168450px;}
.y108{bottom:591.497550px;}
.y199{bottom:591.860550px;}
.y60{bottom:597.388200px;}
.ye6{bottom:597.572400px;}
.ya7{bottom:597.884250px;}
.y8a{bottom:598.513050px;}
.y177{bottom:600.508650px;}
.ybf{bottom:602.476500px;}
.y126{bottom:602.660700px;}
.y143{bottom:603.780150px;}
.y38{bottom:609.168450px;}
.y107{bottom:609.497550px;}
.y1b6{bottom:609.860550px;}
.ye5{bottom:613.772400px;}
.ya6{bottom:614.084250px;}
.y15d{bottom:614.764500px;}
.y5f{bottom:615.388200px;}
.y89{bottom:616.513050px;}
.y198{bottom:618.364500px;}
.y176{bottom:618.508650px;}
.ybe{bottom:620.476500px;}
.y142{bottom:621.780150px;}
.y37{bottom:627.168450px;}
.y106{bottom:627.497550px;}
.ye4{bottom:629.972400px;}
.ya5{bottom:630.284250px;}
.y15c{bottom:632.764500px;}
.y5e{bottom:633.388200px;}
.y88{bottom:634.513050px;}
.y197{bottom:636.364500px;}
.y175{bottom:636.508650px;}
.y10{bottom:636.637800px;}
.y125{bottom:637.668600px;}
.ybd{bottom:638.476350px;}
.y141{bottom:639.780150px;}
.y36{bottom:645.168450px;}
.y105{bottom:645.497550px;}
.ye3{bottom:646.172400px;}
.ya4{bottom:646.484250px;}
.y15b{bottom:650.764500px;}
.y5d{bottom:651.388200px;}
.y87{bottom:652.513050px;}
.y124{bottom:653.868600px;}
.y1b5{bottom:654.364500px;}
.y174{bottom:654.508650px;}
.yf{bottom:654.637800px;}
.ybc{bottom:656.476350px;}
.y140{bottom:657.780150px;}
.ye2{bottom:662.372400px;}
.ya3{bottom:662.684250px;}
.y196{bottom:662.868450px;}
.y104{bottom:663.497550px;}
.y5c{bottom:669.388200px;}
.y86{bottom:670.513050px;}
.y173{bottom:672.508650px;}
.ye{bottom:672.637800px;}
.ybb{bottom:674.476350px;}
.y13f{bottom:675.780150px;}
.ye1{bottom:678.572400px;}
.y35{bottom:680.176350px;}
.y195{bottom:680.868450px;}
.y103{bottom:681.497550px;}
.y15a{bottom:685.772250px;}
.y123{bottom:687.076500px;}
.y5b{bottom:687.388200px;}
.y85{bottom:688.513050px;}
.y172{bottom:690.508650px;}
.yd{bottom:690.637800px;}
.yba{bottom:692.476350px;}
.y13e{bottom:693.780150px;}
.ya2{bottom:695.892000px;}
.y1b4{bottom:698.868450px;}
.y102{bottom:699.497550px;}
.y159{bottom:701.972250px;}
.y122{bottom:705.076500px;}
.y5a{bottom:705.388200px;}
.y84{bottom:706.513050px;}
.y194{bottom:707.372400px;}
.y171{bottom:708.508650px;}
.yc{bottom:708.637800px;}
.yb9{bottom:710.476350px;}
.y13d{bottom:711.780150px;}
.ye0{bottom:711.780300px;}
.ya1{bottom:713.892000px;}
.y101{bottom:717.497550px;}
.y158{bottom:718.172400px;}
.y121{bottom:723.076500px;}
.y59{bottom:723.388200px;}
.y193{bottom:725.372400px;}
.y170{bottom:726.508650px;}
.y13c{bottom:729.780150px;}
.ydf{bottom:729.780300px;}
.ya0{bottom:731.892000px;}
.y157{bottom:734.372250px;}
.y100{bottom:735.497550px;}
.y120{bottom:741.076500px;}
.y58{bottom:741.388200px;}
.y83{bottom:741.520950px;}
.y1b3{bottom:743.372400px;}
.y16f{bottom:744.508650px;}
.yb8{bottom:745.484250px;}
.y13b{bottom:747.780150px;}
.yde{bottom:747.780300px;}
.yb{bottom:748.889850px;}
.y34{bottom:749.892000px;}
.y192{bottom:751.876350px;}
.yff{bottom:753.497550px;}
.y82{bottom:757.720950px;}
.y11f{bottom:759.076500px;}
.y57{bottom:759.388200px;}
.y1b2{bottom:761.372400px;}
.yb7{bottom:761.684400px;}
.y13a{bottom:765.780150px;}
.ydd{bottom:765.780300px;}
.ya{bottom:766.889850px;}
.y156{bottom:767.580150px;}
.y33{bottom:767.892000px;}
.y191{bottom:769.876350px;}
.yfe{bottom:771.497550px;}
.y81{bottom:773.920950px;}
.y56{bottom:777.388200px;}
.yb6{bottom:777.884250px;}
.y16e{bottom:779.516550px;}
.y139{bottom:783.780150px;}
.ydc{bottom:783.780300px;}
.y9{bottom:784.889850px;}
.y155{bottom:785.580150px;}
.y11e{bottom:785.580300px;}
.y9f{bottom:785.892000px;}
.y190{bottom:787.876350px;}
.yfd{bottom:789.497550px;}
.yb5{bottom:794.084250px;}
.y32{bottom:794.396100px;}
.y138{bottom:801.780150px;}
.ydb{bottom:801.780300px;}
.y8{bottom:802.889850px;}
.y154{bottom:803.580150px;}
.y11d{bottom:803.580300px;}
.y55{bottom:803.892000px;}
.y18f{bottom:805.876350px;}
.y80{bottom:807.128700px;}
.yb4{bottom:810.284400px;}
.y31{bottom:812.396100px;}
.y137{bottom:819.780150px;}
.yda{bottom:819.780300px;}
.y7{bottom:820.889850px;}
.y153{bottom:821.580150px;}
.y11c{bottom:821.580300px;}
.y54{bottom:821.892000px;}
.y18e{bottom:823.876350px;}
.yfc{bottom:824.505300px;}
.y7f{bottom:825.128700px;}
.yb3{bottom:826.484250px;}
.y30{bottom:830.396100px;}
.y16d{bottom:831.232200px;}
.y1b1{bottom:832.380300px;}
.y136{bottom:837.780150px;}
.yd9{bottom:837.780300px;}
.y6{bottom:838.889850px;}
.y152{bottom:839.580150px;}
.y11b{bottom:839.580300px;}
.y53{bottom:839.892000px;}
.yfb{bottom:840.705300px;}
.y18d{bottom:841.876350px;}
.yb2{bottom:842.684250px;}
.y7e{bottom:843.128700px;}
.y16c{bottom:847.432200px;}
.y2f{bottom:848.396100px;}
.y1c7{bottom:850.380300px;}
.yd8{bottom:855.780300px;}
.yfa{bottom:856.905300px;}
.y11a{bottom:857.580300px;}
.y52{bottom:857.892000px;}
.y1b0{bottom:858.884250px;}
.y7d{bottom:861.128700px;}
.y16b{bottom:863.632200px;}
.y2e{bottom:866.396100px;}
.y18c{bottom:868.380300px;}
.y5{bottom:871.889850px;}
.y135{bottom:872.788050px;}
.yd7{bottom:873.780300px;}
.y151{bottom:874.588050px;}
.y51{bottom:875.892000px;}
.y1c6{bottom:876.884250px;}
.y7c{bottom:879.128700px;}
.y2d{bottom:884.396100px;}
.y1af{bottom:885.388200px;}
.y134{bottom:888.988050px;}
.yf9{bottom:890.113200px;}
.y150{bottom:890.788050px;}
.y119{bottom:892.588200px;}
.y50{bottom:893.892000px;}
.y18b{bottom:894.884250px;}
.y7b{bottom:897.128700px;}
.y2c{bottom:902.396100px;}
.y1ae{bottom:903.388200px;}
.y4{bottom:904.889850px;}
.y133{bottom:905.188050px;}
.y14f{bottom:906.988050px;}
.yf8{bottom:908.113200px;}
.yd6{bottom:908.788200px;}
.y4f{bottom:911.892000px;}
.y18a{bottom:912.884250px;}
.y2b{bottom:920.396100px;}
.y1ad{bottom:921.388200px;}
.y14e{bottom:923.188050px;}
.yd5{bottom:924.988200px;}
.yf7{bottom:926.113200px;}
.y4e{bottom:929.892000px;}
.y189{bottom:930.884250px;}
.y7a{bottom:932.136600px;}
.y2a{bottom:938.396100px;}
.yd4{bottom:941.188050px;}
.yf6{bottom:944.113200px;}
.y4d{bottom:947.892000px;}
.y3{bottom:954.897600px;}
.y29{bottom:956.396100px;}
.y188{bottom:957.388200px;}
.y1ac{bottom:965.892000px;}
.y28{bottom:974.396100px;}
.y79{bottom:975.348450px;}
.y187{bottom:975.388200px;}
.yf5{bottom:979.121100px;}
.y27{bottom:992.396100px;}
.y78{bottom:993.348450px;}
.y2{bottom:993.897600px;}
.yf4{bottom:995.321100px;}
.y26{bottom:1010.396100px;}
.y77{bottom:1011.348450px;}
.yf3{bottom:1011.521100px;}
.y24{bottom:1043.362200px;}
.hb{height:39.000000px;}
.h9{height:43.875000px;}
.h2{height:44.156250px;}
.h7{height:45.703125px;}
.h6{height:48.750000px;}
.h8{height:49.675781px;}
.ha{height:53.876953px;}
.h5{height:55.195312px;}
.h4{height:110.390625px;}
.h3{height:132.468750px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:162.097800px;}
.x4{left:163.275600px;}
.x2{left:176.456700px;}
.x8{left:180.000000px;}
.x3{left:197.716650px;}
.x9{left:201.259950px;}
.x6{left:206.220600px;}
.xb{left:209.763900px;}
.x5{left:227.480400px;}
.xa{left:231.023700px;}
.xd{left:261.168750px;}
.xc{left:262.346550px;}
.x1{left:350.879550px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.560000pt;}
.ls0{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.006933pt;}
.ls15{letter-spacing:0.008533pt;}
.ls14{letter-spacing:0.009067pt;}
.lsd{letter-spacing:0.013867pt;}
.ls10{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.219733pt;}
.ls11{letter-spacing:0.781333pt;}
.ls5{letter-spacing:0.813333pt;}
.ls7{letter-spacing:0.879467pt;}
.ls6{letter-spacing:2.440533pt;}
.lsc{letter-spacing:2.474133pt;}
.lse{letter-spacing:2.474667pt;}
.lsa{letter-spacing:4.665600pt;}
.ls9{letter-spacing:4.770667pt;}
.ls8{letter-spacing:6.821333pt;}
.ls12{letter-spacing:9.370667pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws7b{word-spacing:-11.664000pt;}
.ws18{word-spacing:-10.368000pt;}
.ws17{word-spacing:-8.424000pt;}
.wsf{word-spacing:-2.720000pt;}
.ws2c{word-spacing:-2.560000pt;}
.ws97{word-spacing:-2.506667pt;}
.ws8b{word-spacing:-2.186667pt;}
.ws8f{word-spacing:-2.133333pt;}
.ws40{word-spacing:-2.112000pt;}
.ws10{word-spacing:-2.026667pt;}
.ws6e{word-spacing:-2.005333pt;}
.ws86{word-spacing:-1.973333pt;}
.ws16{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.877333pt;}
.ws53{word-spacing:-1.872000pt;}
.ws2a{word-spacing:-1.866667pt;}
.ws3c{word-spacing:-1.813333pt;}
.ws5e{word-spacing:-1.760000pt;}
.ws55{word-spacing:-1.600000pt;}
.ws8d{word-spacing:-1.493333pt;}
.ws4a{word-spacing:-1.440000pt;}
.ws83{word-spacing:-1.280000pt;}
.ws14{word-spacing:-1.226667pt;}
.ws26{word-spacing:-1.152000pt;}
.ws5c{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.066667pt;}
.ws20{word-spacing:-1.013333pt;}
.ws75{word-spacing:-0.981333pt;}
.ws35{word-spacing:-0.938667pt;}
.ws67{word-spacing:-0.853333pt;}
.ws4{word-spacing:-0.800000pt;}
.ws4d{word-spacing:-0.693333pt;}
.ws2d{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.533333pt;}
.ws8a{word-spacing:-0.480000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws1c{word-spacing:-0.373333pt;}
.ws21{word-spacing:-0.320000pt;}
.ws80{word-spacing:-0.298667pt;}
.ws3d{word-spacing:-0.266667pt;}
.ws82{word-spacing:-0.213333pt;}
.ws6a{word-spacing:-0.160000pt;}
.ws1d{word-spacing:-0.106667pt;}
.ws7d{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws61{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.106667pt;}
.ws4b{word-spacing:0.160000pt;}
.ws6c{word-spacing:0.213333pt;}
.ws32{word-spacing:0.256000pt;}
.ws23{word-spacing:0.266667pt;}
.ws7a{word-spacing:0.298667pt;}
.ws58{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.373333pt;}
.ws2b{word-spacing:0.480000pt;}
.ws49{word-spacing:0.586667pt;}
.ws73{word-spacing:0.640000pt;}
.ws77{word-spacing:0.725333pt;}
.ws38{word-spacing:0.746667pt;}
.ws1a{word-spacing:0.800000pt;}
.ws29{word-spacing:0.896000pt;}
.ws27{word-spacing:0.981333pt;}
.ws46{word-spacing:1.013333pt;}
.ws52{word-spacing:1.056000pt;}
.ws34{word-spacing:1.066667pt;}
.ws13{word-spacing:1.104000pt;}
.ws9{word-spacing:1.120000pt;}
.ws8{word-spacing:1.173333pt;}
.ws74{word-spacing:1.194667pt;}
.ws0{word-spacing:1.237333pt;}
.ws5a{word-spacing:1.280000pt;}
.ws59{word-spacing:1.333333pt;}
.ws68{word-spacing:1.386667pt;}
.ws45{word-spacing:1.440000pt;}
.ws62{word-spacing:1.450667pt;}
.ws42{word-spacing:1.493333pt;}
.ws7{word-spacing:1.600000pt;}
.ws39{word-spacing:1.653333pt;}
.ws79{word-spacing:1.664000pt;}
.ws48{word-spacing:1.706667pt;}
.ws95{word-spacing:1.760000pt;}
.ws43{word-spacing:1.813333pt;}
.ws47{word-spacing:1.834667pt;}
.ws11{word-spacing:1.866667pt;}
.ws93{word-spacing:1.920000pt;}
.ws76{word-spacing:2.005333pt;}
.ws65{word-spacing:2.026667pt;}
.wse{word-spacing:2.133333pt;}
.ws71{word-spacing:2.186667pt;}
.ws90{word-spacing:2.240000pt;}
.ws6f{word-spacing:2.261333pt;}
.ws28{word-spacing:2.432000pt;}
.ws63{word-spacing:2.453333pt;}
.ws44{word-spacing:2.506667pt;}
.wsc{word-spacing:2.560000pt;}
.ws19{word-spacing:2.613333pt;}
.ws1b{word-spacing:2.720000pt;}
.wsd{word-spacing:2.773333pt;}
.ws51{word-spacing:2.784000pt;}
.ws78{word-spacing:2.816000pt;}
.ws64{word-spacing:2.880000pt;}
.ws7e{word-spacing:2.901333pt;}
.ws8e{word-spacing:2.933333pt;}
.ws12{word-spacing:3.024000pt;}
.ws96{word-spacing:3.040000pt;}
.ws7f{word-spacing:3.072000pt;}
.ws3f{word-spacing:3.120000pt;}
.ws36{word-spacing:3.200000pt;}
.ws92{word-spacing:3.360000pt;}
.ws72{word-spacing:3.498667pt;}
.ws4e{word-spacing:3.541333pt;}
.ws5b{word-spacing:3.573333pt;}
.ws5{word-spacing:3.626667pt;}
.ws60{word-spacing:3.733333pt;}
.ws3b{word-spacing:3.786667pt;}
.ws89{word-spacing:3.893333pt;}
.ws2f{word-spacing:4.000000pt;}
.ws57{word-spacing:4.053333pt;}
.ws1e{word-spacing:4.106667pt;}
.ws94{word-spacing:4.213333pt;}
.ws37{word-spacing:4.373333pt;}
.ws8c{word-spacing:4.480000pt;}
.ws31{word-spacing:4.533333pt;}
.ws4f{word-spacing:4.640000pt;}
.ws41{word-spacing:4.746667pt;}
.ws50{word-spacing:5.066667pt;}
.ws56{word-spacing:5.173333pt;}
.ws66{word-spacing:5.226667pt;}
.ws69{word-spacing:5.333333pt;}
.ws1f{word-spacing:5.386667pt;}
.ws15{word-spacing:5.653333pt;}
.ws33{word-spacing:5.717333pt;}
.ws4c{word-spacing:5.760000pt;}
.ws70{word-spacing:5.973333pt;}
.ws2e{word-spacing:6.026667pt;}
.ws3a{word-spacing:6.080000pt;}
.ws84{word-spacing:6.133333pt;}
.ws7c{word-spacing:6.613333pt;}
.ws6b{word-spacing:6.773333pt;}
.ws30{word-spacing:6.826667pt;}
.ws81{word-spacing:6.933333pt;}
.wsa{word-spacing:7.040000pt;}
.ws54{word-spacing:7.200000pt;}
.ws6d{word-spacing:7.413333pt;}
.ws85{word-spacing:7.626667pt;}
.ws3e{word-spacing:7.824000pt;}
.ws91{word-spacing:8.373333pt;}
.ws88{word-spacing:9.386667pt;}
.wsb{word-spacing:9.706667pt;}
.ws87{word-spacing:10.773333pt;}
._9{margin-left:-13.204800pt;}
._d{margin-left:-12.229867pt;}
._e{margin-left:-6.292267pt;}
._f{margin-left:-4.154133pt;}
._0{margin-left:-3.016533pt;}
._1{margin-left:-1.579200pt;}
._2{width:1.539733pt;}
._3{width:2.733867pt;}
._6{width:4.133333pt;}
._5{width:5.600000pt;}
._7{width:6.512000pt;}
._b{width:7.498667pt;}
._10{width:8.483733pt;}
._11{width:9.531200pt;}
._a{width:10.645333pt;}
._c{width:16.938667pt;}
._8{width:475.426133pt;}
._4{width:935.816533pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:152.629867pt;}
.y25{bottom:153.296533pt;}
.y4c{bottom:178.024800pt;}
.yd3{bottom:178.024933pt;}
.y9e{bottom:178.871333pt;}
.y1ab{bottom:185.184933pt;}
.y23{bottom:186.910267pt;}
.y76{bottom:192.424800pt;}
.yd2{bottom:192.424933pt;}
.y186{bottom:192.425067pt;}
.y9d{bottom:193.271333pt;}
.y1aa{bottom:201.184933pt;}
.y22{bottom:202.910267pt;}
.y75{bottom:206.824800pt;}
.yd1{bottom:206.824933pt;}
.y185{bottom:206.825067pt;}
.y9c{bottom:207.671333pt;}
.y4b{bottom:213.646933pt;}
.y1c5{bottom:217.184933pt;}
.y14d{bottom:221.224667pt;}
.y74{bottom:221.224800pt;}
.yd0{bottom:221.224933pt;}
.y184{bottom:221.225067pt;}
.y9b{bottom:222.071333pt;}
.y1a9{bottom:224.744000pt;}
.y21{bottom:226.469333pt;}
.y4a{bottom:229.646800pt;}
.y73{bottom:235.624800pt;}
.ycf{bottom:235.624933pt;}
.y183{bottom:235.625067pt;}
.y9a{bottom:236.471333pt;}
.y1a8{bottom:240.744000pt;}
.y20{bottom:242.469333pt;}
.y49{bottom:245.646800pt;}
.y72{bottom:250.024800pt;}
.yce{bottom:250.024933pt;}
.y182{bottom:250.025067pt;}
.y118{bottom:250.739333pt;}
.y99{bottom:250.871333pt;}
.y1c4{bottom:256.744000pt;}
.y1f{bottom:258.469333pt;}
.y48{bottom:261.646800pt;}
.y1a7{bottom:264.303067pt;}
.y71{bottom:264.424800pt;}
.ycd{bottom:264.424933pt;}
.y98{bottom:265.271333pt;}
.y117{bottom:266.739333pt;}
.y1c3{bottom:272.744000pt;}
.y1e{bottom:274.469333pt;}
.y47{bottom:277.646800pt;}
.y70{bottom:278.824800pt;}
.ycc{bottom:278.824933pt;}
.y97{bottom:279.671333pt;}
.y1a6{bottom:280.303067pt;}
.y116{bottom:282.739333pt;}
.y1d{bottom:290.469333pt;}
.y14c{bottom:293.224667pt;}
.y6f{bottom:293.224800pt;}
.y132{bottom:293.224933pt;}
.y46{bottom:293.646800pt;}
.y96{bottom:294.071467pt;}
.y1c2{bottom:296.303067pt;}
.y115{bottom:298.739333pt;}
.yf2{bottom:303.421200pt;}
.y1a5{bottom:303.862133pt;}
.y1c{bottom:306.469333pt;}
.y6e{bottom:307.624800pt;}
.y131{bottom:307.624933pt;}
.y95{bottom:308.471467pt;}
.y45{bottom:309.646800pt;}
.ycb{bottom:312.139333pt;}
.y1c1{bottom:312.303067pt;}
.y114{bottom:314.739333pt;}
.yf1{bottom:319.421200pt;}
.y1a4{bottom:319.862133pt;}
.y6d{bottom:322.024800pt;}
.y16a{bottom:322.024933pt;}
.y1b{bottom:322.469333pt;}
.y94{bottom:322.871467pt;}
.y44{bottom:325.646800pt;}
.yca{bottom:328.139333pt;}
.y113{bottom:330.739333pt;}
.yf0{bottom:335.421200pt;}
.y1c0{bottom:335.862133pt;}
.y14b{bottom:336.424667pt;}
.y6c{bottom:336.424800pt;}
.y169{bottom:336.424933pt;}
.y93{bottom:337.271467pt;}
.y1a{bottom:338.469333pt;}
.y43{bottom:341.646800pt;}
.y1a3{bottom:343.421200pt;}
.yc9{bottom:344.139333pt;}
.y112{bottom:346.739333pt;}
.y6b{bottom:350.824800pt;}
.y168{bottom:350.824933pt;}
.y92{bottom:351.671467pt;}
.y1bf{bottom:351.862133pt;}
.y19{bottom:354.469333pt;}
.y42{bottom:357.646800pt;}
.yb1{bottom:357.934533pt;}
.y1a2{bottom:359.421200pt;}
.yc8{bottom:360.139333pt;}
.y6a{bottom:365.224800pt;}
.y167{bottom:365.224933pt;}
.y91{bottom:366.071467pt;}
.yef{bottom:366.539200pt;}
.y130{bottom:366.980267pt;}
.y1be{bottom:367.862133pt;}
.y18{bottom:370.469333pt;}
.y41{bottom:373.646800pt;}
.y181{bottom:373.785467pt;}
.yb0{bottom:373.934533pt;}
.y111{bottom:377.857467pt;}
.y69{bottom:379.624800pt;}
.y166{bottom:379.624933pt;}
.y90{bottom:380.471467pt;}
.yee{bottom:380.939200pt;}
.y12f{bottom:381.380267pt;}
.y1a1{bottom:382.980133pt;}
.y1bd{bottom:383.862133pt;}
.y17{bottom:386.469333pt;}
.y40{bottom:389.646800pt;}
.y180{bottom:389.785467pt;}
.yaf{bottom:389.934533pt;}
.yc7{bottom:391.257467pt;}
.y110{bottom:392.257467pt;}
.y68{bottom:394.024800pt;}
.y165{bottom:394.025200pt;}
.y8f{bottom:394.871467pt;}
.yed{bottom:395.339200pt;}
.y12e{bottom:395.780267pt;}
.y1a0{bottom:398.980133pt;}
.y16{bottom:402.469333pt;}
.yc6{bottom:405.657467pt;}
.y17f{bottom:405.785467pt;}
.yae{bottom:405.934533pt;}
.y10f{bottom:406.657467pt;}
.y1bc{bottom:407.421200pt;}
.y67{bottom:408.424800pt;}
.y164{bottom:408.425200pt;}
.y8e{bottom:409.271467pt;}
.yec{bottom:409.739200pt;}
.y12d{bottom:410.180267pt;}
.y19f{bottom:414.980133pt;}
.y14a{bottom:417.134400pt;}
.y15{bottom:418.469333pt;}
.yc5{bottom:420.057467pt;}
.y3f{bottom:420.764933pt;}
.y10e{bottom:421.057467pt;}
.y17e{bottom:421.785467pt;}
.yad{bottom:421.934533pt;}
.y66{bottom:422.824800pt;}
.y163{bottom:422.825333pt;}
.y1bb{bottom:423.421200pt;}
.y8d{bottom:423.671467pt;}
.y149{bottom:433.134400pt;}
.yc4{bottom:434.457467pt;}
.y14{bottom:434.469333pt;}
.y3e{bottom:435.164933pt;}
.y10d{bottom:435.457467pt;}
.y65{bottom:437.224800pt;}
.y17d{bottom:437.785467pt;}
.yac{bottom:437.934533pt;}
.y8c{bottom:438.071467pt;}
.y19e{bottom:438.539200pt;}
.yeb{bottom:439.257333pt;}
.y12c{bottom:439.698400pt;}
.y1ba{bottom:446.980133pt;}
.y148{bottom:449.134400pt;}
.y3d{bottom:449.564933pt;}
.y10c{bottom:449.857467pt;}
.y64{bottom:451.624800pt;}
.y8b{bottom:452.471467pt;}
.y17c{bottom:453.785467pt;}
.yab{bottom:453.934533pt;}
.y19d{bottom:454.539200pt;}
.yea{bottom:455.257333pt;}
.y12b{bottom:455.698400pt;}
.y162{bottom:458.898267pt;}
.y1b9{bottom:462.980133pt;}
.y3c{bottom:463.964933pt;}
.yc3{bottom:463.975600pt;}
.y10b{bottom:464.257467pt;}
.y147{bottom:465.134400pt;}
.y17b{bottom:469.785467pt;}
.yaa{bottom:469.934533pt;}
.ye9{bottom:471.257333pt;}
.y12a{bottom:471.698400pt;}
.y161{bottom:474.898267pt;}
.y19c{bottom:478.098267pt;}
.y1b8{bottom:478.980133pt;}
.yc2{bottom:479.975600pt;}
.y146{bottom:481.134400pt;}
.y63{bottom:483.011733pt;}
.y17a{bottom:485.785467pt;}
.ya9{bottom:485.934533pt;}
.y1c8{bottom:486.539200pt;}
.y129{bottom:487.698400pt;}
.y13{bottom:490.561733pt;}
.y160{bottom:490.898267pt;}
.y3b{bottom:493.483067pt;}
.y10a{bottom:493.775600pt;}
.y19b{bottom:494.098267pt;}
.yc1{bottom:495.975600pt;}
.y62{bottom:499.011733pt;}
.y179{bottom:501.785467pt;}
.ye8{bottom:502.375467pt;}
.y1b7{bottom:502.539200pt;}
.y128{bottom:503.698400pt;}
.y145{bottom:504.693467pt;}
.y12{bottom:506.561733pt;}
.y15f{bottom:506.898267pt;}
.y3a{bottom:509.483067pt;}
.y109{bottom:509.775600pt;}
.y19a{bottom:510.098267pt;}
.yc0{bottom:511.975600pt;}
.y61{bottom:515.011733pt;}
.ye7{bottom:516.775467pt;}
.ya8{bottom:517.052667pt;}
.y178{bottom:517.785467pt;}
.y127{bottom:519.698400pt;}
.y144{bottom:520.693467pt;}
.y11{bottom:522.561733pt;}
.y15e{bottom:522.898267pt;}
.y39{bottom:525.483067pt;}
.y108{bottom:525.775600pt;}
.y199{bottom:526.098267pt;}
.y60{bottom:531.011733pt;}
.ye6{bottom:531.175467pt;}
.ya7{bottom:531.452667pt;}
.y8a{bottom:532.011600pt;}
.y177{bottom:533.785467pt;}
.ybf{bottom:535.534667pt;}
.y126{bottom:535.698400pt;}
.y143{bottom:536.693467pt;}
.y38{bottom:541.483067pt;}
.y107{bottom:541.775600pt;}
.y1b6{bottom:542.098267pt;}
.ye5{bottom:545.575467pt;}
.ya6{bottom:545.852667pt;}
.y15d{bottom:546.457333pt;}
.y5f{bottom:547.011733pt;}
.y89{bottom:548.011600pt;}
.y198{bottom:549.657333pt;}
.y176{bottom:549.785467pt;}
.ybe{bottom:551.534667pt;}
.y142{bottom:552.693467pt;}
.y37{bottom:557.483067pt;}
.y106{bottom:557.775600pt;}
.ye4{bottom:559.975467pt;}
.ya5{bottom:560.252667pt;}
.y15c{bottom:562.457333pt;}
.y5e{bottom:563.011733pt;}
.y88{bottom:564.011600pt;}
.y197{bottom:565.657333pt;}
.y175{bottom:565.785467pt;}
.y10{bottom:565.900267pt;}
.y125{bottom:566.816533pt;}
.ybd{bottom:567.534533pt;}
.y141{bottom:568.693467pt;}
.y36{bottom:573.483067pt;}
.y105{bottom:573.775600pt;}
.ye3{bottom:574.375467pt;}
.ya4{bottom:574.652667pt;}
.y15b{bottom:578.457333pt;}
.y5d{bottom:579.011733pt;}
.y87{bottom:580.011600pt;}
.y124{bottom:581.216533pt;}
.y1b5{bottom:581.657333pt;}
.y174{bottom:581.785467pt;}
.yf{bottom:581.900267pt;}
.ybc{bottom:583.534533pt;}
.y140{bottom:584.693467pt;}
.ye2{bottom:588.775467pt;}
.ya3{bottom:589.052667pt;}
.y196{bottom:589.216400pt;}
.y104{bottom:589.775600pt;}
.y5c{bottom:595.011733pt;}
.y86{bottom:596.011600pt;}
.y173{bottom:597.785467pt;}
.ye{bottom:597.900267pt;}
.ybb{bottom:599.534533pt;}
.y13f{bottom:600.693467pt;}
.ye1{bottom:603.175467pt;}
.y35{bottom:604.601200pt;}
.y195{bottom:605.216400pt;}
.y103{bottom:605.775600pt;}
.y15a{bottom:609.575333pt;}
.y123{bottom:610.734667pt;}
.y5b{bottom:611.011733pt;}
.y85{bottom:612.011600pt;}
.y172{bottom:613.785467pt;}
.yd{bottom:613.900267pt;}
.yba{bottom:615.534533pt;}
.y13e{bottom:616.693467pt;}
.ya2{bottom:618.570667pt;}
.y1b4{bottom:621.216400pt;}
.y102{bottom:621.775600pt;}
.y159{bottom:623.975333pt;}
.y122{bottom:626.734667pt;}
.y5a{bottom:627.011733pt;}
.y84{bottom:628.011600pt;}
.y194{bottom:628.775467pt;}
.y171{bottom:629.785467pt;}
.yc{bottom:629.900267pt;}
.yb9{bottom:631.534533pt;}
.y13d{bottom:632.693467pt;}
.ye0{bottom:632.693600pt;}
.ya1{bottom:634.570667pt;}
.y101{bottom:637.775600pt;}
.y158{bottom:638.375467pt;}
.y121{bottom:642.734667pt;}
.y59{bottom:643.011733pt;}
.y193{bottom:644.775467pt;}
.y170{bottom:645.785467pt;}
.y13c{bottom:648.693467pt;}
.ydf{bottom:648.693600pt;}
.ya0{bottom:650.570667pt;}
.y157{bottom:652.775333pt;}
.y100{bottom:653.775600pt;}
.y120{bottom:658.734667pt;}
.y58{bottom:659.011733pt;}
.y83{bottom:659.129733pt;}
.y1b3{bottom:660.775467pt;}
.y16f{bottom:661.785467pt;}
.yb8{bottom:662.652667pt;}
.y13b{bottom:664.693467pt;}
.yde{bottom:664.693600pt;}
.yb{bottom:665.679867pt;}
.y34{bottom:666.570667pt;}
.y192{bottom:668.334533pt;}
.yff{bottom:669.775600pt;}
.y82{bottom:673.529733pt;}
.y11f{bottom:674.734667pt;}
.y57{bottom:675.011733pt;}
.y1b2{bottom:676.775467pt;}
.yb7{bottom:677.052800pt;}
.y13a{bottom:680.693467pt;}
.ydd{bottom:680.693600pt;}
.ya{bottom:681.679867pt;}
.y156{bottom:682.293467pt;}
.y33{bottom:682.570667pt;}
.y191{bottom:684.334533pt;}
.yfe{bottom:685.775600pt;}
.y81{bottom:687.929733pt;}
.y56{bottom:691.011733pt;}
.yb6{bottom:691.452667pt;}
.y16e{bottom:692.903600pt;}
.y139{bottom:696.693467pt;}
.ydc{bottom:696.693600pt;}
.y9{bottom:697.679867pt;}
.y155{bottom:698.293467pt;}
.y11e{bottom:698.293600pt;}
.y9f{bottom:698.570667pt;}
.y190{bottom:700.334533pt;}
.yfd{bottom:701.775600pt;}
.yb5{bottom:705.852667pt;}
.y32{bottom:706.129867pt;}
.y138{bottom:712.693467pt;}
.ydb{bottom:712.693600pt;}
.y8{bottom:713.679867pt;}
.y154{bottom:714.293467pt;}
.y11d{bottom:714.293600pt;}
.y55{bottom:714.570667pt;}
.y18f{bottom:716.334533pt;}
.y80{bottom:717.447733pt;}
.yb4{bottom:720.252800pt;}
.y31{bottom:722.129867pt;}
.y137{bottom:728.693467pt;}
.yda{bottom:728.693600pt;}
.y7{bottom:729.679867pt;}
.y153{bottom:730.293467pt;}
.y11c{bottom:730.293600pt;}
.y54{bottom:730.570667pt;}
.y18e{bottom:732.334533pt;}
.yfc{bottom:732.893600pt;}
.y7f{bottom:733.447733pt;}
.yb3{bottom:734.652667pt;}
.y30{bottom:738.129867pt;}
.y16d{bottom:738.873067pt;}
.y1b1{bottom:739.893600pt;}
.y136{bottom:744.693467pt;}
.yd9{bottom:744.693600pt;}
.y6{bottom:745.679867pt;}
.y152{bottom:746.293467pt;}
.y11b{bottom:746.293600pt;}
.y53{bottom:746.570667pt;}
.yfb{bottom:747.293600pt;}
.y18d{bottom:748.334533pt;}
.yb2{bottom:749.052667pt;}
.y7e{bottom:749.447733pt;}
.y16c{bottom:753.273067pt;}
.y2f{bottom:754.129867pt;}
.y1c7{bottom:755.893600pt;}
.yd8{bottom:760.693600pt;}
.yfa{bottom:761.693600pt;}
.y11a{bottom:762.293600pt;}
.y52{bottom:762.570667pt;}
.y1b0{bottom:763.452667pt;}
.y7d{bottom:765.447733pt;}
.y16b{bottom:767.673067pt;}
.y2e{bottom:770.129867pt;}
.y18c{bottom:771.893600pt;}
.y5{bottom:775.013200pt;}
.y135{bottom:775.811600pt;}
.yd7{bottom:776.693600pt;}
.y151{bottom:777.411600pt;}
.y51{bottom:778.570667pt;}
.y1c6{bottom:779.452667pt;}
.y7c{bottom:781.447733pt;}
.y2d{bottom:786.129867pt;}
.y1af{bottom:787.011733pt;}
.y134{bottom:790.211600pt;}
.yf9{bottom:791.211733pt;}
.y150{bottom:791.811600pt;}
.y119{bottom:793.411733pt;}
.y50{bottom:794.570667pt;}
.y18b{bottom:795.452667pt;}
.y7b{bottom:797.447733pt;}
.y2c{bottom:802.129867pt;}
.y1ae{bottom:803.011733pt;}
.y4{bottom:804.346533pt;}
.y133{bottom:804.611600pt;}
.y14f{bottom:806.211600pt;}
.yf8{bottom:807.211733pt;}
.yd6{bottom:807.811733pt;}
.y4f{bottom:810.570667pt;}
.y18a{bottom:811.452667pt;}
.y2b{bottom:818.129867pt;}
.y1ad{bottom:819.011733pt;}
.y14e{bottom:820.611600pt;}
.yd5{bottom:822.211733pt;}
.yf7{bottom:823.211733pt;}
.y4e{bottom:826.570667pt;}
.y189{bottom:827.452667pt;}
.y7a{bottom:828.565867pt;}
.y2a{bottom:834.129867pt;}
.yd4{bottom:836.611600pt;}
.yf6{bottom:839.211733pt;}
.y4d{bottom:842.570667pt;}
.y3{bottom:848.797867pt;}
.y29{bottom:850.129867pt;}
.y188{bottom:851.011733pt;}
.y1ac{bottom:858.570667pt;}
.y28{bottom:866.129867pt;}
.y79{bottom:866.976400pt;}
.y187{bottom:867.011733pt;}
.yf5{bottom:870.329867pt;}
.y27{bottom:882.129867pt;}
.y78{bottom:882.976400pt;}
.y2{bottom:883.464533pt;}
.yf4{bottom:884.729867pt;}
.y26{bottom:898.129867pt;}
.y77{bottom:898.976400pt;}
.yf3{bottom:899.129867pt;}
.y24{bottom:927.433067pt;}
.hb{height:34.666667pt;}
.h9{height:39.000000pt;}
.h2{height:39.250000pt;}
.h7{height:40.625000pt;}
.h6{height:43.333333pt;}
.h8{height:44.156250pt;}
.ha{height:47.890625pt;}
.h5{height:49.062500pt;}
.h4{height:98.125000pt;}
.h3{height:117.750000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:144.086933pt;}
.x4{left:145.133867pt;}
.x2{left:156.850400pt;}
.x8{left:160.000000pt;}
.x3{left:175.748133pt;}
.x9{left:178.897733pt;}
.x6{left:183.307200pt;}
.xb{left:186.456800pt;}
.x5{left:202.204800pt;}
.xa{left:205.354400pt;}
.xd{left:232.150000pt;}
.xc{left:233.196933pt;}
.x1{left:311.892933pt;}
}




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