
    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_1116159cf4791772e5a97dec.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_43da88601c8dce4387c29123.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_31da112d245fa1efb808f0e7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_813642f82057fdd3c1a5f918.woff')format("woff");}.ff5{font-family:ff5;line-height:0.905762;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_6d059bd3d4abc61b5da9112b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1939244f122386ad4bf60b1b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0ebbbf4acdf316ca51381ed3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_1116159cf4791772e5a97dec.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_43da88601c8dce4387c29123.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3b3d5de8282a13fa79e50a8a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b0526e562562fa33a87ab6b3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_43da88601c8dce4387c29123.woff')format("woff");}.ffd{font-family:ffd;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6f4379c89f91d65d7a618e8b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700195;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_ebfac0928f2d04c57381d7d4.woff')format("woff");}.fff{font-family:fff;line-height:0.881836;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_5cc014449b4be8cb8ec23cb0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-15.984000px;}
.v4{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.579400px;}
.v2{vertical-align:27.971400px;}
.v1{vertical-align:35.964600px;}
.ls4{letter-spacing:-2.520000px;}
.lsb{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.420000px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.009600px;}
.ls0{letter-spacing:0.165000px;}
.ls9{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.618000px;}
.lsf{letter-spacing:1.236000px;}
.ls1{letter-spacing:1.755000px;}
.lsd{letter-spacing:1.854000px;}
.lsa{letter-spacing:1.980000px;}
.ls7{letter-spacing:2.772000px;}
.lse{letter-spacing:5.503800px;}
.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;}
}
.ws89{word-spacing:-17.304000px;}
.ws0{word-spacing:-16.665000px;}
.wsb{word-spacing:-16.500000px;}
.wsc{word-spacing:-15.450000px;}
.ws45{word-spacing:-9.007350px;}
.wsae{word-spacing:-5.685600px;}
.ws59{word-spacing:-5.438400px;}
.wsa1{word-spacing:-5.129400px;}
.ws33{word-spacing:-5.005800px;}
.ws48{word-spacing:-4.820400px;}
.ws28{word-spacing:-4.387800px;}
.wsbc{word-spacing:-4.320000px;}
.wsc4{word-spacing:-4.202400px;}
.ws8d{word-spacing:-4.140600px;}
.ws62{word-spacing:-3.769800px;}
.ws92{word-spacing:-3.708000px;}
.ws2b{word-spacing:-3.584400px;}
.ws3b{word-spacing:-3.399000px;}
.ws2c{word-spacing:-3.366000px;}
.ws78{word-spacing:-3.275400px;}
.ws5e{word-spacing:-3.090000px;}
.ws4c{word-spacing:-2.966400px;}
.ws34{word-spacing:-2.904600px;}
.wsb7{word-spacing:-2.842800px;}
.ws70{word-spacing:-2.533800px;}
.ws11{word-spacing:-2.472000px;}
.ws17{word-spacing:-2.224800px;}
.ws60{word-spacing:-2.163000px;}
.ws1b{word-spacing:-2.101200px;}
.ws74{word-spacing:-2.039400px;}
.ws8a{word-spacing:-1.854000px;}
.wsd5{word-spacing:-1.730400px;}
.ws50{word-spacing:-1.566000px;}
.wsa4{word-spacing:-1.545000px;}
.ws3c{word-spacing:-1.483200px;}
.wsa5{word-spacing:-1.248000px;}
.ws9d{word-spacing:-1.236000px;}
.ws12{word-spacing:-1.174200px;}
.wsd7{word-spacing:-1.112400px;}
.wse{word-spacing:-1.050600px;}
.ws8f{word-spacing:-0.927000px;}
.ws43{word-spacing:-0.803400px;}
.ws4d{word-spacing:-0.741600px;}
.ws4{word-spacing:-0.618000px;}
.ws5a{word-spacing:-0.556200px;}
.wsd1{word-spacing:-0.494400px;}
.ws8e{word-spacing:-0.370800px;}
.ws3e{word-spacing:-0.185400px;}
.ws80{word-spacing:-0.123600px;}
.ws1{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws86{word-spacing:0.123600px;}
.ws3d{word-spacing:0.309000px;}
.ws73{word-spacing:0.370800px;}
.wsc2{word-spacing:0.432600px;}
.ws98{word-spacing:0.494400px;}
.ws29{word-spacing:0.556200px;}
.wsb5{word-spacing:0.679800px;}
.ws32{word-spacing:0.803400px;}
.ws1c{word-spacing:0.865200px;}
.ws6e{word-spacing:1.050600px;}
.ws3{word-spacing:1.080000px;}
.ws2e{word-spacing:1.112400px;}
.wsbb{word-spacing:1.152000px;}
.wsac{word-spacing:1.236000px;}
.wsca{word-spacing:1.421400px;}
.ws96{word-spacing:1.483200px;}
.ws1d{word-spacing:1.730400px;}
.ws97{word-spacing:1.792200px;}
.wsb8{word-spacing:1.854000px;}
.ws38{word-spacing:1.915800px;}
.wsbe{word-spacing:1.920000px;}
.ws55{word-spacing:2.106000px;}
.ws79{word-spacing:2.224800px;}
.wsd2{word-spacing:2.286600px;}
.wsa6{word-spacing:2.304000px;}
.ws93{word-spacing:2.410200px;}
.ws94{word-spacing:2.533800px;}
.wsb0{word-spacing:2.657400px;}
.wsa7{word-spacing:2.688000px;}
.ws6{word-spacing:2.719200px;}
.ws67{word-spacing:2.781000px;}
.ws7b{word-spacing:2.842800px;}
.ws6a{word-spacing:3.028200px;}
.ws35{word-spacing:3.090000px;}
.ws23{word-spacing:3.213600px;}
.wscb{word-spacing:3.275400px;}
.ws84{word-spacing:3.337200px;}
.ws27{word-spacing:3.460800px;}
.ws1e{word-spacing:3.584400px;}
.ws3a{word-spacing:3.646200px;}
.ws56{word-spacing:3.672000px;}
.wsc6{word-spacing:3.708000px;}
.wsb3{word-spacing:3.893400px;}
.ws64{word-spacing:3.955200px;}
.wsc5{word-spacing:4.078800px;}
.wsa9{word-spacing:4.080000px;}
.wsb2{word-spacing:4.140600px;}
.wsab{word-spacing:4.202400px;}
.wsbd{word-spacing:4.224000px;}
.wsb6{word-spacing:4.264200px;}
.ws7a{word-spacing:4.326000px;}
.wscf{word-spacing:4.387800px;}
.ws4f{word-spacing:4.416000px;}
.ws2a{word-spacing:4.449600px;}
.wsd0{word-spacing:4.511400px;}
.ws16{word-spacing:4.573200px;}
.ws30{word-spacing:4.696800px;}
.ws31{word-spacing:4.820400px;}
.wsbf{word-spacing:4.848000px;}
.ws9a{word-spacing:4.882200px;}
.ws7f{word-spacing:5.005800px;}
.ws68{word-spacing:5.129400px;}
.ws26{word-spacing:5.191200px;}
.ws9e{word-spacing:5.253000px;}
.ws10{word-spacing:5.314800px;}
.ws5f{word-spacing:5.438400px;}
.wsa3{word-spacing:5.500200px;}
.ws47{word-spacing:5.623800px;}
.ws5{word-spacing:5.685600px;}
.ws49{word-spacing:5.747400px;}
.wsb1{word-spacing:5.932800px;}
.ws41{word-spacing:5.994600px;}
.ws66{word-spacing:6.056400px;}
.ws2f{word-spacing:6.118200px;}
.ws5d{word-spacing:6.180000px;}
.ws37{word-spacing:6.241800px;}
.ws39{word-spacing:6.303600px;}
.ws6c{word-spacing:6.427200px;}
.wsb4{word-spacing:6.550800px;}
.ws24{word-spacing:6.736200px;}
.wsa8{word-spacing:6.816000px;}
.ws9f{word-spacing:6.921600px;}
.ws9{word-spacing:6.996000px;}
.ws5b{word-spacing:7.045200px;}
.wsba{word-spacing:7.168800px;}
.ws36{word-spacing:7.292400px;}
.ws6f{word-spacing:7.416000px;}
.wsad{word-spacing:7.539600px;}
.ws8b{word-spacing:7.601400px;}
.ws72{word-spacing:7.725000px;}
.ws46{word-spacing:7.848600px;}
.ws91{word-spacing:8.034000px;}
.ws15{word-spacing:8.157600px;}
.ws7{word-spacing:8.219400px;}
.ws18{word-spacing:8.281200px;}
.ws6b{word-spacing:8.343000px;}
.ws9b{word-spacing:8.528400px;}
.ws4a{word-spacing:8.590200px;}
.ws9c{word-spacing:8.652000px;}
.ws1a{word-spacing:8.775600px;}
.ws22{word-spacing:8.899200px;}
.ws14{word-spacing:8.961000px;}
.ws20{word-spacing:9.022800px;}
.wsb9{word-spacing:9.084600px;}
.ws21{word-spacing:9.146400px;}
.wsc9{word-spacing:9.270000px;}
.ws90{word-spacing:9.455400px;}
.wscd{word-spacing:9.579000px;}
.ws58{word-spacing:9.702600px;}
.ws40{word-spacing:9.764400px;}
.wsf{word-spacing:9.826200px;}
.ws81{word-spacing:9.888000px;}
.ws99{word-spacing:9.949800px;}
.wscc{word-spacing:10.135200px;}
.ws71{word-spacing:10.444200px;}
.ws7d{word-spacing:10.506000px;}
.ws44{word-spacing:10.567800px;}
.wsaa{word-spacing:10.629600px;}
.ws3f{word-spacing:10.691400px;}
.wsc1{word-spacing:10.876800px;}
.ws95{word-spacing:10.938600px;}
.wsaf{word-spacing:11.124000px;}
.wsc0{word-spacing:11.136000px;}
.wsc7{word-spacing:11.309400px;}
.ws77{word-spacing:11.803800px;}
.ws8c{word-spacing:11.927400px;}
.ws13{word-spacing:12.051000px;}
.wsd8{word-spacing:12.174600px;}
.wsd9{word-spacing:12.236400px;}
.wsa2{word-spacing:12.421800px;}
.ws1f{word-spacing:12.607200px;}
.ws25{word-spacing:12.854400px;}
.ws7c{word-spacing:12.916200px;}
.wsd6{word-spacing:13.101600px;}
.ws65{word-spacing:13.163400px;}
.ws7e{word-spacing:13.719600px;}
.ws85{word-spacing:13.966800px;}
.ws76{word-spacing:14.152200px;}
.ws83{word-spacing:14.584800px;}
.ws61{word-spacing:14.708400px;}
.wsc3{word-spacing:14.832000px;}
.wsa0{word-spacing:14.893800px;}
.ws8{word-spacing:14.928000px;}
.ws75{word-spacing:15.450000px;}
.ws19{word-spacing:15.759000px;}
.ws52{word-spacing:15.822000px;}
.ws42{word-spacing:15.882600px;}
.ws82{word-spacing:16.006200px;}
.wsd4{word-spacing:16.068000px;}
.wsce{word-spacing:16.191600px;}
.ws4e{word-spacing:16.377000px;}
.ws2d{word-spacing:16.686000px;}
.ws6d{word-spacing:16.809600px;}
.wsc8{word-spacing:16.871400px;}
.ws4b{word-spacing:16.995000px;}
.wsd{word-spacing:17.242200px;}
.ws5c{word-spacing:20.085000px;}
.ws88{word-spacing:21.073800px;}
.ws87{word-spacing:22.062600px;}
.wsd3{word-spacing:22.557000px;}
.ws63{word-spacing:22.770000px;}
.ws51{word-spacing:28.026000px;}
.ws57{word-spacing:41.472000px;}
.ws69{word-spacing:41.591400px;}
.ws54{word-spacing:55.566000px;}
.ws53{word-spacing:124.632000px;}
.wsa{word-spacing:434.210400px;}
._17{margin-left:-14.945340px;}
._3{margin-left:-9.276180px;}
._11{margin-left:-6.391500px;}
._16{margin-left:-5.283900px;}
._c{margin-left:-4.239480px;}
._a{margin-left:-3.011040px;}
._0{margin-left:-1.549800px;}
._1{width:1.080000px;}
._2{width:2.399340px;}
._9{width:3.459480px;}
._d{width:4.499040px;}
._f{width:5.555820px;}
._4{width:6.933960px;}
._8{width:8.837400px;}
._e{width:10.246440px;}
._12{width:12.236400px;}
._5{width:13.299360px;}
._b{width:14.363040px;}
._6{width:16.562400px;}
._10{width:18.317520px;}
._7{width:20.332200px;}
._1a{width:21.370440px;}
._1d{width:22.550820px;}
._1c{width:24.522240px;}
._1b{width:25.548120px;}
._19{width:26.660520px;}
._15{width:27.686400px;}
._13{width:30.704400px;}
._14{width:49.707000px;}
._18{width:111.294600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:27.984000px;}
.fsb{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fsd{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fsa{font-size:60.000000px;}
.fs7{font-size:61.800000px;}
.fs2{font-size:62.964000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y22{bottom:76.500000px;}
.y133{bottom:76.500150px;}
.y45{bottom:76.588650px;}
.ydd{bottom:82.844550px;}
.yae{bottom:88.488300px;}
.y82{bottom:90.000000px;}
.y132{bottom:90.000150px;}
.y6d{bottom:90.116100px;}
.y122{bottom:91.361100px;}
.yfc{bottom:91.376100px;}
.y153{bottom:91.916100px;}
.y7c{bottom:92.636100px;}
.y184{bottom:93.729750px;}
.y21{bottom:93.996000px;}
.y44{bottom:95.128650px;}
.ydc{bottom:100.844550px;}
.y20{bottom:103.500000px;}
.y131{bottom:103.500150px;}
.yad{bottom:107.028300px;}
.y15c{bottom:107.496000px;}
.y6c{bottom:108.656100px;}
.y121{bottom:109.901100px;}
.yfb{bottom:109.916100px;}
.y152{bottom:110.456100px;}
.y7b{bottom:111.176100px;}
.y183{bottom:112.269750px;}
.y43{bottom:113.668650px;}
.y81{bottom:117.000000px;}
.y130{bottom:117.000150px;}
.y1f{bottom:120.996000px;}
.yac{bottom:125.568300px;}
.y6b{bottom:127.196100px;}
.y120{bottom:128.441100px;}
.yfa{bottom:128.456100px;}
.y151{bottom:128.996100px;}
.y7a{bottom:129.716100px;}
.y80{bottom:130.500000px;}
.y12f{bottom:130.500150px;}
.y182{bottom:130.809750px;}
.y42{bottom:132.208650px;}
.ydb{bottom:137.407050px;}
.y7f{bottom:144.000000px;}
.y12e{bottom:144.000150px;}
.yab{bottom:144.108300px;}
.y6a{bottom:145.736100px;}
.y11f{bottom:146.981100px;}
.yf9{bottom:146.996100px;}
.y150{bottom:147.536100px;}
.y79{bottom:148.256100px;}
.y181{bottom:149.349750px;}
.y41{bottom:150.748650px;}
.yda{bottom:151.807050px;}
.y1e{bottom:155.044050px;}
.y7e{bottom:157.500000px;}
.y12d{bottom:157.500150px;}
.y7d{bottom:161.496000px;}
.yaa{bottom:162.648300px;}
.y69{bottom:164.276100px;}
.yf8{bottom:165.536100px;}
.y14f{bottom:166.076100px;}
.yd9{bottom:166.207050px;}
.y78{bottom:166.796100px;}
.y180{bottom:167.889750px;}
.y40{bottom:169.288650px;}
.y15b{bottom:171.000000px;}
.y12c{bottom:171.000150px;}
.yd8{bottom:180.607050px;}
.ya9{bottom:181.188300px;}
.y68{bottom:182.816100px;}
.y11e{bottom:184.061100px;}
.yf7{bottom:184.076100px;}
.y15a{bottom:184.500000px;}
.y12b{bottom:184.500150px;}
.y14e{bottom:184.616100px;}
.y77{bottom:185.336100px;}
.y17f{bottom:186.429750px;}
.y3f{bottom:187.828650px;}
.y1d{bottom:191.584050px;}
.yd7{bottom:195.007050px;}
.y159{bottom:198.000000px;}
.y12a{bottom:198.000150px;}
.ya8{bottom:199.728300px;}
.y67{bottom:201.356100px;}
.yf6{bottom:202.616100px;}
.y14d{bottom:203.156100px;}
.y76{bottom:203.876100px;}
.y17e{bottom:204.969750px;}
.y3e{bottom:206.368650px;}
.yd6{bottom:209.407050px;}
.y1c{bottom:210.124050px;}
.y158{bottom:211.500000px;}
.y129{bottom:215.496150px;}
.ya7{bottom:218.268300px;}
.y66{bottom:219.896100px;}
.yf5{bottom:221.156100px;}
.y14c{bottom:221.696100px;}
.y75{bottom:222.416100px;}
.y17d{bottom:223.509750px;}
.yd5{bottom:223.807050px;}
.y3d{bottom:224.908650px;}
.y157{bottom:225.000000px;}
.y1b{bottom:228.664050px;}
.ya6{bottom:236.808300px;}
.yd4{bottom:238.207050px;}
.y65{bottom:238.436100px;}
.y156{bottom:238.500000px;}
.yf4{bottom:239.696100px;}
.y14b{bottom:240.236100px;}
.y11d{bottom:240.941100px;}
.y74{bottom:240.956100px;}
.y128{bottom:241.524750px;}
.y17c{bottom:242.049750px;}
.y15d{bottom:242.496000px;}
.y3c{bottom:243.448650px;}
.y1a{bottom:247.204050px;}
.y155{bottom:252.000000px;}
.yd3{bottom:252.607050px;}
.ya5{bottom:255.348300px;}
.y64{bottom:256.976100px;}
.yf3{bottom:258.236100px;}
.y14a{bottom:258.776100px;}
.y11c{bottom:259.481100px;}
.y73{bottom:259.496100px;}
.y127{bottom:260.064900px;}
.y17b{bottom:260.589750px;}
.y3b{bottom:261.988650px;}
.y19{bottom:265.744050px;}
.yd2{bottom:267.007050px;}
.y154{bottom:269.496000px;}
.ya4{bottom:273.888300px;}
.yb3{bottom:275.516100px;}
.yf2{bottom:276.776100px;}
.y149{bottom:277.316100px;}
.y11b{bottom:278.021100px;}
.y72{bottom:278.036100px;}
.y126{bottom:278.604750px;}
.y17a{bottom:279.129750px;}
.y3a{bottom:280.528650px;}
.yd1{bottom:281.407050px;}
.y18{bottom:284.284050px;}
.ya3{bottom:292.428300px;}
.y63{bottom:294.056100px;}
.yf1{bottom:295.316100px;}
.yd0{bottom:295.807050px;}
.y148{bottom:295.856100px;}
.y11a{bottom:296.561100px;}
.y71{bottom:296.576100px;}
.y125{bottom:297.144900px;}
.y179{bottom:297.669750px;}
.y39{bottom:299.068650px;}
.y17{bottom:302.824050px;}
.ycf{bottom:310.207050px;}
.ya2{bottom:310.968300px;}
.yb2{bottom:312.596100px;}
.y62{bottom:313.856100px;}
.y147{bottom:314.396100px;}
.y119{bottom:315.101100px;}
.y70{bottom:315.116100px;}
.y124{bottom:315.684750px;}
.y178{bottom:316.209750px;}
.y38{bottom:317.608650px;}
.y16{bottom:321.364050px;}
.yce{bottom:324.607050px;}
.ya1{bottom:329.508300px;}
.yb1{bottom:331.136100px;}
.yf0{bottom:332.396100px;}
.y146{bottom:332.936100px;}
.y118{bottom:333.641100px;}
.y6f{bottom:333.656100px;}
.y177{bottom:334.749750px;}
.y37{bottom:336.148650px;}
.ycd{bottom:339.007050px;}
.y15{bottom:339.904050px;}
.ya0{bottom:348.048300px;}
.yef{bottom:350.936100px;}
.y145{bottom:351.476100px;}
.y117{bottom:352.181100px;}
.y6e{bottom:352.196100px;}
.y123{bottom:352.764750px;}
.y176{bottom:353.289750px;}
.ycc{bottom:353.407050px;}
.y36{bottom:354.688650px;}
.y14{bottom:358.444050px;}
.y9f{bottom:366.588300px;}
.ycb{bottom:367.807050px;}
.yb0{bottom:368.216100px;}
.yee{bottom:369.476100px;}
.y144{bottom:370.016100px;}
.y116{bottom:370.721100px;}
.y61{bottom:370.736100px;}
.y175{bottom:371.829750px;}
.y35{bottom:373.228650px;}
.y13{bottom:376.984050px;}
.yca{bottom:382.207050px;}
.y9e{bottom:385.128300px;}
.yaf{bottom:388.016100px;}
.y143{bottom:388.556100px;}
.y115{bottom:389.261100px;}
.y60{bottom:389.276100px;}
.y174{bottom:390.369750px;}
.y12{bottom:395.524050px;}
.yed{bottom:406.556100px;}
.y142{bottom:407.096100px;}
.y114{bottom:407.801100px;}
.y5f{bottom:407.816100px;}
.y173{bottom:408.909750px;}
.y34{bottom:410.308650px;}
.y11{bottom:414.064050px;}
.y9d{bottom:422.208300px;}
.yec{bottom:425.096100px;}
.y141{bottom:425.636100px;}
.y113{bottom:426.341100px;}
.y5e{bottom:426.356100px;}
.y172{bottom:427.449750px;}
.y10{bottom:432.604050px;}
.y9c{bottom:440.208300px;}
.yeb{bottom:443.636100px;}
.y140{bottom:444.176100px;}
.y112{bottom:444.881100px;}
.y5d{bottom:444.896100px;}
.y171{bottom:445.989750px;}
.yf{bottom:451.144050px;}
.yc9{bottom:461.975400px;}
.yea{bottom:462.176100px;}
.y13f{bottom:462.716100px;}
.y111{bottom:463.421100px;}
.y5c{bottom:463.436100px;}
.y170{bottom:464.529750px;}
.y33{bottom:466.108650px;}
.yc8{bottom:476.375400px;}
.ye{bottom:477.184050px;}
.y9b{bottom:477.716250px;}
.ye9{bottom:480.716100px;}
.y13e{bottom:481.256100px;}
.y110{bottom:481.961100px;}
.y5b{bottom:481.976100px;}
.y16f{bottom:483.069750px;}
.yc7{bottom:490.775400px;}
.y98{bottom:494.146950px;}
.ye8{bottom:499.256100px;}
.y13d{bottom:499.796100px;}
.y10f{bottom:500.501100px;}
.y5a{bottom:500.516100px;}
.y16e{bottom:501.609750px;}
.yc6{bottom:505.175400px;}
.y9a{bottom:510.116250px;}
.y97{bottom:510.346950px;}
.ye7{bottom:517.796100px;}
.y13c{bottom:518.336100px;}
.y10e{bottom:519.041100px;}
.y59{bottom:519.056100px;}
.yc5{bottom:519.575400px;}
.y16d{bottom:520.149750px;}
.yc2{bottom:526.100400px;}
.y99{bottom:526.316250px;}
.y96{bottom:526.546950px;}
.yc4{bottom:533.975400px;}
.yd{bottom:535.984050px;}
.y32{bottom:536.308650px;}
.ye6{bottom:536.336100px;}
.y13b{bottom:536.876100px;}
.y10d{bottom:537.581100px;}
.y58{bottom:537.596100px;}
.y16c{bottom:538.689750px;}
.yc1{bottom:540.500400px;}
.yc3{bottom:548.375400px;}
.ye5{bottom:554.876100px;}
.yc0{bottom:554.900400px;}
.y13a{bottom:555.416100px;}
.y10c{bottom:556.121100px;}
.y57{bottom:556.136100px;}
.y16b{bottom:557.229750px;}
.yc{bottom:557.584050px;}
.ybf{bottom:569.300400px;}
.y95{bottom:572.379450px;}
.y31{bottom:573.388650px;}
.ye4{bottom:573.416100px;}
.y139{bottom:573.956100px;}
.y10b{bottom:574.661100px;}
.y56{bottom:574.676100px;}
.y16a{bottom:575.769750px;}
.ybe{bottom:583.700400px;}
.y94{bottom:588.579450px;}
.y30{bottom:591.928650px;}
.ye3{bottom:591.956100px;}
.y138{bottom:592.496100px;}
.y10a{bottom:593.201100px;}
.y55{bottom:593.216100px;}
.yb{bottom:593.284050px;}
.y169{bottom:594.309750px;}
.ybd{bottom:598.100400px;}
.y93{bottom:604.779450px;}
.y2f{bottom:610.468650px;}
.ye2{bottom:610.496100px;}
.y137{bottom:611.036100px;}
.y109{bottom:611.741100px;}
.y54{bottom:611.756100px;}
.ybc{bottom:612.500400px;}
.y168{bottom:612.849750px;}
.ya{bottom:618.835950px;}
.y92{bottom:620.979450px;}
.ybb{bottom:626.900400px;}
.y2e{bottom:629.008650px;}
.ye1{bottom:629.036100px;}
.y136{bottom:629.576100px;}
.y108{bottom:630.281100px;}
.y53{bottom:630.296100px;}
.y167{bottom:631.389750px;}
.y91{bottom:637.179450px;}
.yba{bottom:641.300400px;}
.y9{bottom:645.536100px;}
.y2d{bottom:647.548650px;}
.ye0{bottom:647.576100px;}
.y135{bottom:648.116100px;}
.y107{bottom:648.821100px;}
.y52{bottom:648.836100px;}
.y166{bottom:649.929750px;}
.y90{bottom:653.379450px;}
.yb9{bottom:655.700400px;}
.y2c{bottom:666.088650px;}
.ydf{bottom:666.116100px;}
.y106{bottom:667.361100px;}
.y51{bottom:667.376100px;}
.y165{bottom:668.469750px;}
.y8f{bottom:669.579450px;}
.yb8{bottom:670.100400px;}
.yb7{bottom:684.500400px;}
.y2b{bottom:684.628650px;}
.y134{bottom:685.196100px;}
.y8e{bottom:685.779450px;}
.y105{bottom:685.901100px;}
.y50{bottom:685.916100px;}
.y8d{bottom:685.996950px;}
.y164{bottom:687.009750px;}
.y8{bottom:688.735950px;}
.yb6{bottom:698.900400px;}
.y2a{bottom:703.168650px;}
.yde{bottom:703.196100px;}
.y104{bottom:704.441100px;}
.y4f{bottom:704.456100px;}
.y163{bottom:705.549750px;}
.y8c{bottom:708.654450px;}
.yb5{bottom:713.300400px;}
.y7{bottom:715.735950px;}
.y29{bottom:721.708650px;}
.y103{bottom:722.981100px;}
.y4e{bottom:722.996100px;}
.y162{bottom:724.089750px;}
.y8b{bottom:724.854450px;}
.y89{bottom:725.071950px;}
.yb4{bottom:727.700400px;}
.y28{bottom:740.248650px;}
.y8a{bottom:741.054450px;}
.y88{bottom:741.271950px;}
.y102{bottom:741.521100px;}
.y4d{bottom:741.536100px;}
.y161{bottom:742.629750px;}
.y6{bottom:742.735950px;}
.y27{bottom:758.788650px;}
.y101{bottom:760.061100px;}
.y4c{bottom:760.076100px;}
.y160{bottom:761.169750px;}
.y87{bottom:762.789900px;}
.y26{bottom:777.328650px;}
.y100{bottom:778.601100px;}
.y4b{bottom:778.616100px;}
.y15f{bottom:779.709750px;}
.y86{bottom:780.789900px;}
.y25{bottom:795.868650px;}
.y5{bottom:796.735950px;}
.yff{bottom:797.141100px;}
.y4a{bottom:797.156100px;}
.y15e{bottom:798.249900px;}
.y85{bottom:798.789900px;}
.yfe{bottom:815.681100px;}
.y49{bottom:815.696100px;}
.y84{bottom:816.789900px;}
.y4{bottom:823.735950px;}
.y24{bottom:832.948650px;}
.yfd{bottom:834.220950px;}
.y48{bottom:834.236100px;}
.y83{bottom:834.789900px;}
.y3{bottom:850.735950px;}
.y47{bottom:893.470500px;}
.y46{bottom:905.470500px;}
.y23{bottom:906.525150px;}
.h12{height:24.554320px;}
.hc{height:26.133187px;}
.h18{height:32.859375px;}
.h19{height:35.958984px;}
.h2{height:36.852539px;}
.h14{height:36.966797px;}
.h8{height:37.098633px;}
.h16{height:37.494141px;}
.h15{height:40.189453px;}
.h13{height:41.074219px;}
.h11{height:41.660156px;}
.hd{height:42.117188px;}
.ha{height:42.457324px;}
.hb{height:42.608203px;}
.hf{height:45.181641px;}
.h7{height:45.342773px;}
.h9{height:45.503906px;}
.he{height:47.381836px;}
.h17{height:52.646484px;}
.h10{height:54.225879px;}
.h6{height:57.708984px;}
.h5{height:61.615738px;}
.h3{height:74.197266px;}
.h4{height:79.221606px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x10{left:45.182850px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.xe{left:59.990850px;}
.xd{left:62.462850px;}
.x19{left:64.210050px;}
.x28{left:69.094500px;}
.xf{left:75.470700px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.x7{left:85.062900px;}
.x1d{left:87.535050px;}
.x4{left:90.694500px;}
.xb{left:99.104850px;}
.x3{left:106.662900px;}
.x17{left:114.348450px;}
.x18{left:123.130200px;}
.x25{left:135.247200px;}
.x14{left:144.571050px;}
.x9{left:152.863200px;}
.x15{left:159.801750px;}
.xa{left:161.165250px;}
.x22{left:166.171050px;}
.x23{left:181.401750px;}
.x26{left:196.624200px;}
.x1a{left:214.697700px;}
.x27{left:218.329500px;}
.x1e{left:238.022700px;}
.x1f{left:261.047700px;}
.x24{left:270.177600px;}
.xc{left:273.773850px;}
.x16{left:295.373850px;}
.x13{left:332.282850px;}
.x11{left:339.107850px;}
.x1b{left:351.139350px;}
.x12{left:362.132850px;}
.x20{left:374.464350px;}
.x21{left:397.489350px;}
.x1c{left:498.174150px;}
.x8{left:541.222350px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v4{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.292800pt;}
.v2{vertical-align:24.863467pt;}
.v1{vertical-align:31.968533pt;}
.ls4{letter-spacing:-2.240000pt;}
.lsb{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.008533pt;}
.ls0{letter-spacing:0.146667pt;}
.ls9{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.549333pt;}
.lsf{letter-spacing:1.098667pt;}
.ls1{letter-spacing:1.560000pt;}
.lsd{letter-spacing:1.648000pt;}
.lsa{letter-spacing:1.760000pt;}
.ls7{letter-spacing:2.464000pt;}
.lse{letter-spacing:4.892267pt;}
.ws89{word-spacing:-15.381333pt;}
.ws0{word-spacing:-14.813333pt;}
.wsb{word-spacing:-14.666667pt;}
.wsc{word-spacing:-13.733333pt;}
.ws45{word-spacing:-8.006533pt;}
.wsae{word-spacing:-5.053867pt;}
.ws59{word-spacing:-4.834133pt;}
.wsa1{word-spacing:-4.559467pt;}
.ws33{word-spacing:-4.449600pt;}
.ws48{word-spacing:-4.284800pt;}
.ws28{word-spacing:-3.900267pt;}
.wsbc{word-spacing:-3.840000pt;}
.wsc4{word-spacing:-3.735467pt;}
.ws8d{word-spacing:-3.680533pt;}
.ws62{word-spacing:-3.350933pt;}
.ws92{word-spacing:-3.296000pt;}
.ws2b{word-spacing:-3.186133pt;}
.ws3b{word-spacing:-3.021333pt;}
.ws2c{word-spacing:-2.992000pt;}
.ws78{word-spacing:-2.911467pt;}
.ws5e{word-spacing:-2.746667pt;}
.ws4c{word-spacing:-2.636800pt;}
.ws34{word-spacing:-2.581867pt;}
.wsb7{word-spacing:-2.526933pt;}
.ws70{word-spacing:-2.252267pt;}
.ws11{word-spacing:-2.197333pt;}
.ws17{word-spacing:-1.977600pt;}
.ws60{word-spacing:-1.922667pt;}
.ws1b{word-spacing:-1.867733pt;}
.ws74{word-spacing:-1.812800pt;}
.ws8a{word-spacing:-1.648000pt;}
.wsd5{word-spacing:-1.538133pt;}
.ws50{word-spacing:-1.392000pt;}
.wsa4{word-spacing:-1.373333pt;}
.ws3c{word-spacing:-1.318400pt;}
.wsa5{word-spacing:-1.109333pt;}
.ws9d{word-spacing:-1.098667pt;}
.ws12{word-spacing:-1.043733pt;}
.wsd7{word-spacing:-0.988800pt;}
.wse{word-spacing:-0.933867pt;}
.ws8f{word-spacing:-0.824000pt;}
.ws43{word-spacing:-0.714133pt;}
.ws4d{word-spacing:-0.659200pt;}
.ws4{word-spacing:-0.549333pt;}
.ws5a{word-spacing:-0.494400pt;}
.wsd1{word-spacing:-0.439467pt;}
.ws8e{word-spacing:-0.329600pt;}
.ws3e{word-spacing:-0.164800pt;}
.ws80{word-spacing:-0.109867pt;}
.ws1{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws86{word-spacing:0.109867pt;}
.ws3d{word-spacing:0.274667pt;}
.ws73{word-spacing:0.329600pt;}
.wsc2{word-spacing:0.384533pt;}
.ws98{word-spacing:0.439467pt;}
.ws29{word-spacing:0.494400pt;}
.wsb5{word-spacing:0.604267pt;}
.ws32{word-spacing:0.714133pt;}
.ws1c{word-spacing:0.769067pt;}
.ws6e{word-spacing:0.933867pt;}
.ws3{word-spacing:0.960000pt;}
.ws2e{word-spacing:0.988800pt;}
.wsbb{word-spacing:1.024000pt;}
.wsac{word-spacing:1.098667pt;}
.wsca{word-spacing:1.263467pt;}
.ws96{word-spacing:1.318400pt;}
.ws1d{word-spacing:1.538133pt;}
.ws97{word-spacing:1.593067pt;}
.wsb8{word-spacing:1.648000pt;}
.ws38{word-spacing:1.702933pt;}
.wsbe{word-spacing:1.706667pt;}
.ws55{word-spacing:1.872000pt;}
.ws79{word-spacing:1.977600pt;}
.wsd2{word-spacing:2.032533pt;}
.wsa6{word-spacing:2.048000pt;}
.ws93{word-spacing:2.142400pt;}
.ws94{word-spacing:2.252267pt;}
.wsb0{word-spacing:2.362133pt;}
.wsa7{word-spacing:2.389333pt;}
.ws6{word-spacing:2.417067pt;}
.ws67{word-spacing:2.472000pt;}
.ws7b{word-spacing:2.526933pt;}
.ws6a{word-spacing:2.691733pt;}
.ws35{word-spacing:2.746667pt;}
.ws23{word-spacing:2.856533pt;}
.wscb{word-spacing:2.911467pt;}
.ws84{word-spacing:2.966400pt;}
.ws27{word-spacing:3.076267pt;}
.ws1e{word-spacing:3.186133pt;}
.ws3a{word-spacing:3.241067pt;}
.ws56{word-spacing:3.264000pt;}
.wsc6{word-spacing:3.296000pt;}
.wsb3{word-spacing:3.460800pt;}
.ws64{word-spacing:3.515733pt;}
.wsc5{word-spacing:3.625600pt;}
.wsa9{word-spacing:3.626667pt;}
.wsb2{word-spacing:3.680533pt;}
.wsab{word-spacing:3.735467pt;}
.wsbd{word-spacing:3.754667pt;}
.wsb6{word-spacing:3.790400pt;}
.ws7a{word-spacing:3.845333pt;}
.wscf{word-spacing:3.900267pt;}
.ws4f{word-spacing:3.925333pt;}
.ws2a{word-spacing:3.955200pt;}
.wsd0{word-spacing:4.010133pt;}
.ws16{word-spacing:4.065067pt;}
.ws30{word-spacing:4.174933pt;}
.ws31{word-spacing:4.284800pt;}
.wsbf{word-spacing:4.309333pt;}
.ws9a{word-spacing:4.339733pt;}
.ws7f{word-spacing:4.449600pt;}
.ws68{word-spacing:4.559467pt;}
.ws26{word-spacing:4.614400pt;}
.ws9e{word-spacing:4.669333pt;}
.ws10{word-spacing:4.724267pt;}
.ws5f{word-spacing:4.834133pt;}
.wsa3{word-spacing:4.889067pt;}
.ws47{word-spacing:4.998933pt;}
.ws5{word-spacing:5.053867pt;}
.ws49{word-spacing:5.108800pt;}
.wsb1{word-spacing:5.273600pt;}
.ws41{word-spacing:5.328533pt;}
.ws66{word-spacing:5.383467pt;}
.ws2f{word-spacing:5.438400pt;}
.ws5d{word-spacing:5.493333pt;}
.ws37{word-spacing:5.548267pt;}
.ws39{word-spacing:5.603200pt;}
.ws6c{word-spacing:5.713067pt;}
.wsb4{word-spacing:5.822933pt;}
.ws24{word-spacing:5.987733pt;}
.wsa8{word-spacing:6.058667pt;}
.ws9f{word-spacing:6.152533pt;}
.ws9{word-spacing:6.218667pt;}
.ws5b{word-spacing:6.262400pt;}
.wsba{word-spacing:6.372267pt;}
.ws36{word-spacing:6.482133pt;}
.ws6f{word-spacing:6.592000pt;}
.wsad{word-spacing:6.701867pt;}
.ws8b{word-spacing:6.756800pt;}
.ws72{word-spacing:6.866667pt;}
.ws46{word-spacing:6.976533pt;}
.ws91{word-spacing:7.141333pt;}
.ws15{word-spacing:7.251200pt;}
.ws7{word-spacing:7.306133pt;}
.ws18{word-spacing:7.361067pt;}
.ws6b{word-spacing:7.416000pt;}
.ws9b{word-spacing:7.580800pt;}
.ws4a{word-spacing:7.635733pt;}
.ws9c{word-spacing:7.690667pt;}
.ws1a{word-spacing:7.800533pt;}
.ws22{word-spacing:7.910400pt;}
.ws14{word-spacing:7.965333pt;}
.ws20{word-spacing:8.020267pt;}
.wsb9{word-spacing:8.075200pt;}
.ws21{word-spacing:8.130133pt;}
.wsc9{word-spacing:8.240000pt;}
.ws90{word-spacing:8.404800pt;}
.wscd{word-spacing:8.514667pt;}
.ws58{word-spacing:8.624533pt;}
.ws40{word-spacing:8.679467pt;}
.wsf{word-spacing:8.734400pt;}
.ws81{word-spacing:8.789333pt;}
.ws99{word-spacing:8.844267pt;}
.wscc{word-spacing:9.009067pt;}
.ws71{word-spacing:9.283733pt;}
.ws7d{word-spacing:9.338667pt;}
.ws44{word-spacing:9.393600pt;}
.wsaa{word-spacing:9.448533pt;}
.ws3f{word-spacing:9.503467pt;}
.wsc1{word-spacing:9.668267pt;}
.ws95{word-spacing:9.723200pt;}
.wsaf{word-spacing:9.888000pt;}
.wsc0{word-spacing:9.898667pt;}
.wsc7{word-spacing:10.052800pt;}
.ws77{word-spacing:10.492267pt;}
.ws8c{word-spacing:10.602133pt;}
.ws13{word-spacing:10.712000pt;}
.wsd8{word-spacing:10.821867pt;}
.wsd9{word-spacing:10.876800pt;}
.wsa2{word-spacing:11.041600pt;}
.ws1f{word-spacing:11.206400pt;}
.ws25{word-spacing:11.426133pt;}
.ws7c{word-spacing:11.481067pt;}
.wsd6{word-spacing:11.645867pt;}
.ws65{word-spacing:11.700800pt;}
.ws7e{word-spacing:12.195200pt;}
.ws85{word-spacing:12.414933pt;}
.ws76{word-spacing:12.579733pt;}
.ws83{word-spacing:12.964267pt;}
.ws61{word-spacing:13.074133pt;}
.wsc3{word-spacing:13.184000pt;}
.wsa0{word-spacing:13.238933pt;}
.ws8{word-spacing:13.269333pt;}
.ws75{word-spacing:13.733333pt;}
.ws19{word-spacing:14.008000pt;}
.ws52{word-spacing:14.064000pt;}
.ws42{word-spacing:14.117867pt;}
.ws82{word-spacing:14.227733pt;}
.wsd4{word-spacing:14.282667pt;}
.wsce{word-spacing:14.392533pt;}
.ws4e{word-spacing:14.557333pt;}
.ws2d{word-spacing:14.832000pt;}
.ws6d{word-spacing:14.941867pt;}
.wsc8{word-spacing:14.996800pt;}
.ws4b{word-spacing:15.106667pt;}
.wsd{word-spacing:15.326400pt;}
.ws5c{word-spacing:17.853333pt;}
.ws88{word-spacing:18.732267pt;}
.ws87{word-spacing:19.611200pt;}
.wsd3{word-spacing:20.050667pt;}
.ws63{word-spacing:20.240000pt;}
.ws51{word-spacing:24.912000pt;}
.ws57{word-spacing:36.864000pt;}
.ws69{word-spacing:36.970133pt;}
.ws54{word-spacing:49.392000pt;}
.ws53{word-spacing:110.784000pt;}
.wsa{word-spacing:385.964800pt;}
._17{margin-left:-13.284747pt;}
._3{margin-left:-8.245493pt;}
._11{margin-left:-5.681333pt;}
._16{margin-left:-4.696800pt;}
._c{margin-left:-3.768427pt;}
._a{margin-left:-2.676480pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.960000pt;}
._2{width:2.132747pt;}
._9{width:3.075093pt;}
._d{width:3.999147pt;}
._f{width:4.938507pt;}
._4{width:6.163520pt;}
._8{width:7.855467pt;}
._e{width:9.107947pt;}
._12{width:10.876800pt;}
._5{width:11.821653pt;}
._b{width:12.767147pt;}
._6{width:14.722133pt;}
._10{width:16.282240pt;}
._7{width:18.073067pt;}
._1a{width:18.995947pt;}
._1d{width:20.045173pt;}
._1c{width:21.797547pt;}
._1b{width:22.709440pt;}
._19{width:23.698240pt;}
._15{width:24.610133pt;}
._13{width:27.292800pt;}
._14{width:44.184000pt;}
._18{width:98.928533pt;}
.fs8{font-size:24.874667pt;}
.fsb{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fsd{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fsa{font-size:53.333333pt;}
.fs7{font-size:54.933333pt;}
.fs2{font-size:55.968000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y22{bottom:68.000000pt;}
.y133{bottom:68.000133pt;}
.y45{bottom:68.078800pt;}
.ydd{bottom:73.639600pt;}
.yae{bottom:78.656267pt;}
.y82{bottom:80.000000pt;}
.y132{bottom:80.000133pt;}
.y6d{bottom:80.103200pt;}
.y122{bottom:81.209867pt;}
.yfc{bottom:81.223200pt;}
.y153{bottom:81.703200pt;}
.y7c{bottom:82.343200pt;}
.y184{bottom:83.315333pt;}
.y21{bottom:83.552000pt;}
.y44{bottom:84.558800pt;}
.ydc{bottom:89.639600pt;}
.y20{bottom:92.000000pt;}
.y131{bottom:92.000133pt;}
.yad{bottom:95.136267pt;}
.y15c{bottom:95.552000pt;}
.y6c{bottom:96.583200pt;}
.y121{bottom:97.689867pt;}
.yfb{bottom:97.703200pt;}
.y152{bottom:98.183200pt;}
.y7b{bottom:98.823200pt;}
.y183{bottom:99.795333pt;}
.y43{bottom:101.038800pt;}
.y81{bottom:104.000000pt;}
.y130{bottom:104.000133pt;}
.y1f{bottom:107.552000pt;}
.yac{bottom:111.616267pt;}
.y6b{bottom:113.063200pt;}
.y120{bottom:114.169867pt;}
.yfa{bottom:114.183200pt;}
.y151{bottom:114.663200pt;}
.y7a{bottom:115.303200pt;}
.y80{bottom:116.000000pt;}
.y12f{bottom:116.000133pt;}
.y182{bottom:116.275333pt;}
.y42{bottom:117.518800pt;}
.ydb{bottom:122.139600pt;}
.y7f{bottom:128.000000pt;}
.y12e{bottom:128.000133pt;}
.yab{bottom:128.096267pt;}
.y6a{bottom:129.543200pt;}
.y11f{bottom:130.649867pt;}
.yf9{bottom:130.663200pt;}
.y150{bottom:131.143200pt;}
.y79{bottom:131.783200pt;}
.y181{bottom:132.755333pt;}
.y41{bottom:133.998800pt;}
.yda{bottom:134.939600pt;}
.y1e{bottom:137.816933pt;}
.y7e{bottom:140.000000pt;}
.y12d{bottom:140.000133pt;}
.y7d{bottom:143.552000pt;}
.yaa{bottom:144.576267pt;}
.y69{bottom:146.023200pt;}
.yf8{bottom:147.143200pt;}
.y14f{bottom:147.623200pt;}
.yd9{bottom:147.739600pt;}
.y78{bottom:148.263200pt;}
.y180{bottom:149.235333pt;}
.y40{bottom:150.478800pt;}
.y15b{bottom:152.000000pt;}
.y12c{bottom:152.000133pt;}
.yd8{bottom:160.539600pt;}
.ya9{bottom:161.056267pt;}
.y68{bottom:162.503200pt;}
.y11e{bottom:163.609867pt;}
.yf7{bottom:163.623200pt;}
.y15a{bottom:164.000000pt;}
.y12b{bottom:164.000133pt;}
.y14e{bottom:164.103200pt;}
.y77{bottom:164.743200pt;}
.y17f{bottom:165.715333pt;}
.y3f{bottom:166.958800pt;}
.y1d{bottom:170.296933pt;}
.yd7{bottom:173.339600pt;}
.y159{bottom:176.000000pt;}
.y12a{bottom:176.000133pt;}
.ya8{bottom:177.536267pt;}
.y67{bottom:178.983200pt;}
.yf6{bottom:180.103200pt;}
.y14d{bottom:180.583200pt;}
.y76{bottom:181.223200pt;}
.y17e{bottom:182.195333pt;}
.y3e{bottom:183.438800pt;}
.yd6{bottom:186.139600pt;}
.y1c{bottom:186.776933pt;}
.y158{bottom:188.000000pt;}
.y129{bottom:191.552133pt;}
.ya7{bottom:194.016267pt;}
.y66{bottom:195.463200pt;}
.yf5{bottom:196.583200pt;}
.y14c{bottom:197.063200pt;}
.y75{bottom:197.703200pt;}
.y17d{bottom:198.675333pt;}
.yd5{bottom:198.939600pt;}
.y3d{bottom:199.918800pt;}
.y157{bottom:200.000000pt;}
.y1b{bottom:203.256933pt;}
.ya6{bottom:210.496267pt;}
.yd4{bottom:211.739600pt;}
.y65{bottom:211.943200pt;}
.y156{bottom:212.000000pt;}
.yf4{bottom:213.063200pt;}
.y14b{bottom:213.543200pt;}
.y11d{bottom:214.169867pt;}
.y74{bottom:214.183200pt;}
.y128{bottom:214.688667pt;}
.y17c{bottom:215.155333pt;}
.y15d{bottom:215.552000pt;}
.y3c{bottom:216.398800pt;}
.y1a{bottom:219.736933pt;}
.y155{bottom:224.000000pt;}
.yd3{bottom:224.539600pt;}
.ya5{bottom:226.976267pt;}
.y64{bottom:228.423200pt;}
.yf3{bottom:229.543200pt;}
.y14a{bottom:230.023200pt;}
.y11c{bottom:230.649867pt;}
.y73{bottom:230.663200pt;}
.y127{bottom:231.168800pt;}
.y17b{bottom:231.635333pt;}
.y3b{bottom:232.878800pt;}
.y19{bottom:236.216933pt;}
.yd2{bottom:237.339600pt;}
.y154{bottom:239.552000pt;}
.ya4{bottom:243.456267pt;}
.yb3{bottom:244.903200pt;}
.yf2{bottom:246.023200pt;}
.y149{bottom:246.503200pt;}
.y11b{bottom:247.129867pt;}
.y72{bottom:247.143200pt;}
.y126{bottom:247.648667pt;}
.y17a{bottom:248.115333pt;}
.y3a{bottom:249.358800pt;}
.yd1{bottom:250.139600pt;}
.y18{bottom:252.696933pt;}
.ya3{bottom:259.936267pt;}
.y63{bottom:261.383200pt;}
.yf1{bottom:262.503200pt;}
.yd0{bottom:262.939600pt;}
.y148{bottom:262.983200pt;}
.y11a{bottom:263.609867pt;}
.y71{bottom:263.623200pt;}
.y125{bottom:264.128800pt;}
.y179{bottom:264.595333pt;}
.y39{bottom:265.838800pt;}
.y17{bottom:269.176933pt;}
.ycf{bottom:275.739600pt;}
.ya2{bottom:276.416267pt;}
.yb2{bottom:277.863200pt;}
.y62{bottom:278.983200pt;}
.y147{bottom:279.463200pt;}
.y119{bottom:280.089867pt;}
.y70{bottom:280.103200pt;}
.y124{bottom:280.608667pt;}
.y178{bottom:281.075333pt;}
.y38{bottom:282.318800pt;}
.y16{bottom:285.656933pt;}
.yce{bottom:288.539600pt;}
.ya1{bottom:292.896267pt;}
.yb1{bottom:294.343200pt;}
.yf0{bottom:295.463200pt;}
.y146{bottom:295.943200pt;}
.y118{bottom:296.569867pt;}
.y6f{bottom:296.583200pt;}
.y177{bottom:297.555333pt;}
.y37{bottom:298.798800pt;}
.ycd{bottom:301.339600pt;}
.y15{bottom:302.136933pt;}
.ya0{bottom:309.376267pt;}
.yef{bottom:311.943200pt;}
.y145{bottom:312.423200pt;}
.y117{bottom:313.049867pt;}
.y6e{bottom:313.063200pt;}
.y123{bottom:313.568667pt;}
.y176{bottom:314.035333pt;}
.ycc{bottom:314.139600pt;}
.y36{bottom:315.278800pt;}
.y14{bottom:318.616933pt;}
.y9f{bottom:325.856267pt;}
.ycb{bottom:326.939600pt;}
.yb0{bottom:327.303200pt;}
.yee{bottom:328.423200pt;}
.y144{bottom:328.903200pt;}
.y116{bottom:329.529867pt;}
.y61{bottom:329.543200pt;}
.y175{bottom:330.515333pt;}
.y35{bottom:331.758800pt;}
.y13{bottom:335.096933pt;}
.yca{bottom:339.739600pt;}
.y9e{bottom:342.336267pt;}
.yaf{bottom:344.903200pt;}
.y143{bottom:345.383200pt;}
.y115{bottom:346.009867pt;}
.y60{bottom:346.023200pt;}
.y174{bottom:346.995333pt;}
.y12{bottom:351.576933pt;}
.yed{bottom:361.383200pt;}
.y142{bottom:361.863200pt;}
.y114{bottom:362.489867pt;}
.y5f{bottom:362.503200pt;}
.y173{bottom:363.475333pt;}
.y34{bottom:364.718800pt;}
.y11{bottom:368.056933pt;}
.y9d{bottom:375.296267pt;}
.yec{bottom:377.863200pt;}
.y141{bottom:378.343200pt;}
.y113{bottom:378.969867pt;}
.y5e{bottom:378.983200pt;}
.y172{bottom:379.955333pt;}
.y10{bottom:384.536933pt;}
.y9c{bottom:391.296267pt;}
.yeb{bottom:394.343200pt;}
.y140{bottom:394.823200pt;}
.y112{bottom:395.449867pt;}
.y5d{bottom:395.463200pt;}
.y171{bottom:396.435333pt;}
.yf{bottom:401.016933pt;}
.yc9{bottom:410.644800pt;}
.yea{bottom:410.823200pt;}
.y13f{bottom:411.303200pt;}
.y111{bottom:411.929867pt;}
.y5c{bottom:411.943200pt;}
.y170{bottom:412.915333pt;}
.y33{bottom:414.318800pt;}
.yc8{bottom:423.444800pt;}
.ye{bottom:424.163600pt;}
.y9b{bottom:424.636667pt;}
.ye9{bottom:427.303200pt;}
.y13e{bottom:427.783200pt;}
.y110{bottom:428.409867pt;}
.y5b{bottom:428.423200pt;}
.y16f{bottom:429.395333pt;}
.yc7{bottom:436.244800pt;}
.y98{bottom:439.241733pt;}
.ye8{bottom:443.783200pt;}
.y13d{bottom:444.263200pt;}
.y10f{bottom:444.889867pt;}
.y5a{bottom:444.903200pt;}
.y16e{bottom:445.875333pt;}
.yc6{bottom:449.044800pt;}
.y9a{bottom:453.436667pt;}
.y97{bottom:453.641733pt;}
.ye7{bottom:460.263200pt;}
.y13c{bottom:460.743200pt;}
.y10e{bottom:461.369867pt;}
.y59{bottom:461.383200pt;}
.yc5{bottom:461.844800pt;}
.y16d{bottom:462.355333pt;}
.yc2{bottom:467.644800pt;}
.y99{bottom:467.836667pt;}
.y96{bottom:468.041733pt;}
.yc4{bottom:474.644800pt;}
.yd{bottom:476.430267pt;}
.y32{bottom:476.718800pt;}
.ye6{bottom:476.743200pt;}
.y13b{bottom:477.223200pt;}
.y10d{bottom:477.849867pt;}
.y58{bottom:477.863200pt;}
.y16c{bottom:478.835333pt;}
.yc1{bottom:480.444800pt;}
.yc3{bottom:487.444800pt;}
.ye5{bottom:493.223200pt;}
.yc0{bottom:493.244800pt;}
.y13a{bottom:493.703200pt;}
.y10c{bottom:494.329867pt;}
.y57{bottom:494.343200pt;}
.y16b{bottom:495.315333pt;}
.yc{bottom:495.630267pt;}
.ybf{bottom:506.044800pt;}
.y95{bottom:508.781733pt;}
.y31{bottom:509.678800pt;}
.ye4{bottom:509.703200pt;}
.y139{bottom:510.183200pt;}
.y10b{bottom:510.809867pt;}
.y56{bottom:510.823200pt;}
.y16a{bottom:511.795333pt;}
.ybe{bottom:518.844800pt;}
.y94{bottom:523.181733pt;}
.y30{bottom:526.158800pt;}
.ye3{bottom:526.183200pt;}
.y138{bottom:526.663200pt;}
.y10a{bottom:527.289867pt;}
.y55{bottom:527.303200pt;}
.yb{bottom:527.363600pt;}
.y169{bottom:528.275333pt;}
.ybd{bottom:531.644800pt;}
.y93{bottom:537.581733pt;}
.y2f{bottom:542.638800pt;}
.ye2{bottom:542.663200pt;}
.y137{bottom:543.143200pt;}
.y109{bottom:543.769867pt;}
.y54{bottom:543.783200pt;}
.ybc{bottom:544.444800pt;}
.y168{bottom:544.755333pt;}
.ya{bottom:550.076400pt;}
.y92{bottom:551.981733pt;}
.ybb{bottom:557.244800pt;}
.y2e{bottom:559.118800pt;}
.ye1{bottom:559.143200pt;}
.y136{bottom:559.623200pt;}
.y108{bottom:560.249867pt;}
.y53{bottom:560.263200pt;}
.y167{bottom:561.235333pt;}
.y91{bottom:566.381733pt;}
.yba{bottom:570.044800pt;}
.y9{bottom:573.809867pt;}
.y2d{bottom:575.598800pt;}
.ye0{bottom:575.623200pt;}
.y135{bottom:576.103200pt;}
.y107{bottom:576.729867pt;}
.y52{bottom:576.743200pt;}
.y166{bottom:577.715333pt;}
.y90{bottom:580.781733pt;}
.yb9{bottom:582.844800pt;}
.y2c{bottom:592.078800pt;}
.ydf{bottom:592.103200pt;}
.y106{bottom:593.209867pt;}
.y51{bottom:593.223200pt;}
.y165{bottom:594.195333pt;}
.y8f{bottom:595.181733pt;}
.yb8{bottom:595.644800pt;}
.yb7{bottom:608.444800pt;}
.y2b{bottom:608.558800pt;}
.y134{bottom:609.063200pt;}
.y8e{bottom:609.581733pt;}
.y105{bottom:609.689867pt;}
.y50{bottom:609.703200pt;}
.y8d{bottom:609.775067pt;}
.y164{bottom:610.675333pt;}
.y8{bottom:612.209733pt;}
.yb6{bottom:621.244800pt;}
.y2a{bottom:625.038800pt;}
.yde{bottom:625.063200pt;}
.y104{bottom:626.169867pt;}
.y4f{bottom:626.183200pt;}
.y163{bottom:627.155333pt;}
.y8c{bottom:629.915067pt;}
.yb5{bottom:634.044800pt;}
.y7{bottom:636.209733pt;}
.y29{bottom:641.518800pt;}
.y103{bottom:642.649867pt;}
.y4e{bottom:642.663200pt;}
.y162{bottom:643.635333pt;}
.y8b{bottom:644.315067pt;}
.y89{bottom:644.508400pt;}
.yb4{bottom:646.844800pt;}
.y28{bottom:657.998800pt;}
.y8a{bottom:658.715067pt;}
.y88{bottom:658.908400pt;}
.y102{bottom:659.129867pt;}
.y4d{bottom:659.143200pt;}
.y161{bottom:660.115333pt;}
.y6{bottom:660.209733pt;}
.y27{bottom:674.478800pt;}
.y101{bottom:675.609867pt;}
.y4c{bottom:675.623200pt;}
.y160{bottom:676.595333pt;}
.y87{bottom:678.035467pt;}
.y26{bottom:690.958800pt;}
.y100{bottom:692.089867pt;}
.y4b{bottom:692.103200pt;}
.y15f{bottom:693.075333pt;}
.y86{bottom:694.035467pt;}
.y25{bottom:707.438800pt;}
.y5{bottom:708.209733pt;}
.yff{bottom:708.569867pt;}
.y4a{bottom:708.583200pt;}
.y15e{bottom:709.555467pt;}
.y85{bottom:710.035467pt;}
.yfe{bottom:725.049867pt;}
.y49{bottom:725.063200pt;}
.y84{bottom:726.035467pt;}
.y4{bottom:732.209733pt;}
.y24{bottom:740.398800pt;}
.yfd{bottom:741.529733pt;}
.y48{bottom:741.543200pt;}
.y83{bottom:742.035467pt;}
.y3{bottom:756.209733pt;}
.y47{bottom:794.196000pt;}
.y46{bottom:804.862667pt;}
.y23{bottom:805.800133pt;}
.h12{height:21.826062pt;}
.hc{height:23.229500pt;}
.h18{height:29.208333pt;}
.h19{height:31.963542pt;}
.h2{height:32.757812pt;}
.h14{height:32.859375pt;}
.h8{height:32.976562pt;}
.h16{height:33.328125pt;}
.h15{height:35.723958pt;}
.h13{height:36.510417pt;}
.h11{height:37.031250pt;}
.hd{height:37.437500pt;}
.ha{height:37.739844pt;}
.hb{height:37.873958pt;}
.hf{height:40.161458pt;}
.h7{height:40.304688pt;}
.h9{height:40.447917pt;}
.he{height:42.117188pt;}
.h17{height:46.796875pt;}
.h10{height:48.200781pt;}
.h6{height:51.296875pt;}
.h5{height:54.769545pt;}
.h3{height:65.953125pt;}
.h4{height:70.419205pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x10{left:40.162533pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.xe{left:53.325200pt;}
.xd{left:55.522533pt;}
.x19{left:57.075600pt;}
.x28{left:61.417333pt;}
.xf{left:67.085067pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.x7{left:75.611467pt;}
.x1d{left:77.808933pt;}
.x4{left:80.617333pt;}
.xb{left:88.093200pt;}
.x3{left:94.811467pt;}
.x17{left:101.643067pt;}
.x18{left:109.449067pt;}
.x25{left:120.219733pt;}
.x14{left:128.507600pt;}
.x9{left:135.878400pt;}
.x15{left:142.046000pt;}
.xa{left:143.258000pt;}
.x22{left:147.707600pt;}
.x23{left:161.246000pt;}
.x26{left:174.777067pt;}
.x1a{left:190.842400pt;}
.x27{left:194.070667pt;}
.x1e{left:211.575733pt;}
.x1f{left:232.042400pt;}
.x24{left:240.157867pt;}
.xc{left:243.354533pt;}
.x16{left:262.554533pt;}
.x13{left:295.362533pt;}
.x11{left:301.429200pt;}
.x1b{left:312.123867pt;}
.x12{left:321.895867pt;}
.x20{left:332.857200pt;}
.x21{left:353.323867pt;}
.x1c{left:442.821467pt;}
.x8{left:481.086533pt;}
}




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