
    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_3133171dd8785de701a32dc8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_4c0a2a3b717aff6d33eba955.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_55d252a3ae2eb17f0408c205.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_170209fea85039f3b7e0a990.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_09d2a95897e18be2c34ff112.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_d7c829d44cb95bb6c00d1c8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_e28d223a635696063daf0d2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141000;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_33b982a2bfe9699315fbf5af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.744000;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_a6cbc022a1ddc27432dff266.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.158000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_33b0d6a722f406a70bcc3d39.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;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_4192ee2c1a26a120e82384cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.145067;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_31bfc31b7dce0d772375d149.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744000;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_5b252b112e6bb669d9e3b2c0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.888672;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_33b0d6a722f406a70bcc3d39.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011000;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_f0f4392aeb3ddd372dda406e.woff2')format("woff");}.fff{font-family:fff;line-height:1.158000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5557d495be3d2084566a3427.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_96dd57cf17dba63d08457319.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.010000;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);}
.v1{vertical-align:-18.018000px;}
.v4{vertical-align:-16.200000px;}
.v2{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.077800px;}
.ls5{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.026400px;}
.ls8{letter-spacing:0.033000px;}
.ls3{letter-spacing:0.054000px;}
.ls7{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.081000px;}
.lsf{letter-spacing:0.099000px;}
.ls2{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.132000px;}
.ls25{letter-spacing:0.165000px;}
.ls19{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.198000px;}
.ls10{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.297000px;}
.ls9{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.345600px;}
.ls11{letter-spacing:0.396000px;}
.ls15{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.528000px;}
.ls14{letter-spacing:0.561000px;}
.lsd{letter-spacing:0.594000px;}
.ls18{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.726000px;}
.ls22{letter-spacing:0.756000px;}
.ls1b{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.858000px;}
.ls1c{letter-spacing:0.924000px;}
.ls12{letter-spacing:0.990000px;}
.ls16{letter-spacing:1.122000px;}
.ls24{letter-spacing:1.452000px;}
.ls1e{letter-spacing:3.630000px;}
.ls20{letter-spacing:4.422000px;}
.ls26{letter-spacing:4.884000px;}
.ls1d{letter-spacing:7.326000px;}
.ls1f{letter-spacing:8.118000px;}
.ls27{letter-spacing:2038.568400px;}
.lse{letter-spacing:2071.568400px;}
.ls23{letter-spacing:2134.018800px;}
.ls6{letter-spacing:2167.018800px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws1{word-spacing:-22.680000px;}
.ws2{word-spacing:-17.010000px;}
.ws1a{word-spacing:-16.500000px;}
.ws9c{word-spacing:-15.312000px;}
.ws1e{word-spacing:-14.586000px;}
.ws1d{word-spacing:-14.190000px;}
.ws85{word-spacing:-14.058000px;}
.ws1b{word-spacing:-13.926000px;}
.ws1c{word-spacing:-13.893000px;}
.ws9a{word-spacing:-13.860000px;}
.ws3d{word-spacing:-12.750000px;}
.ws0{word-spacing:-10.656000px;}
.ws8c{word-spacing:-9.009000px;}
.ws8d{word-spacing:-7.371000px;}
.ws99{word-spacing:-1.452000px;}
.ws89{word-spacing:-0.990000px;}
.ws87{word-spacing:-0.792000px;}
.ws8f{word-spacing:-0.660000px;}
.ws9b{word-spacing:-0.528000px;}
.ws80{word-spacing:-0.480000px;}
.ws31{word-spacing:-0.330000px;}
.ws68{word-spacing:-0.264000px;}
.ws77{word-spacing:-0.198000px;}
.ws81{word-spacing:-0.180000px;}
.ws4c{word-spacing:-0.132000px;}
.ws90{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws4d{word-spacing:0.066000px;}
.ws45{word-spacing:0.132000px;}
.ws38{word-spacing:0.198000px;}
.ws24{word-spacing:0.264000px;}
.wsa{word-spacing:0.324000px;}
.ws67{word-spacing:0.330000px;}
.ws4{word-spacing:0.432000px;}
.ws29{word-spacing:0.462000px;}
.ws46{word-spacing:0.528000px;}
.ws16{word-spacing:0.594000px;}
.ws7c{word-spacing:0.600000px;}
.ws78{word-spacing:0.660000px;}
.ws95{word-spacing:0.726000px;}
.ws82{word-spacing:0.780000px;}
.ws4f{word-spacing:0.792000px;}
.ws19{word-spacing:0.810000px;}
.ws2b{word-spacing:0.924000px;}
.ws20{word-spacing:0.990000px;}
.ws75{word-spacing:1.056000px;}
.ws3a{word-spacing:1.122000px;}
.ws4b{word-spacing:1.188000px;}
.ws53{word-spacing:1.254000px;}
.ws8{word-spacing:1.296000px;}
.ws63{word-spacing:1.320000px;}
.ws28{word-spacing:1.386000px;}
.ws72{word-spacing:1.452000px;}
.ws34{word-spacing:1.518000px;}
.ws47{word-spacing:1.584000px;}
.ws11{word-spacing:1.620000px;}
.ws5{word-spacing:1.632000px;}
.ws2c{word-spacing:1.650000px;}
.ws62{word-spacing:1.716000px;}
.ws69{word-spacing:1.848000px;}
.ws61{word-spacing:1.914000px;}
.ws4e{word-spacing:1.980000px;}
.ws41{word-spacing:2.046000px;}
.ws44{word-spacing:2.112000px;}
.wsf{word-spacing:2.160000px;}
.ws23{word-spacing:2.178000px;}
.ws40{word-spacing:2.244000px;}
.ws8b{word-spacing:2.310000px;}
.wsd{word-spacing:2.322000px;}
.ws83{word-spacing:2.340000px;}
.ws97{word-spacing:2.376000px;}
.ws3b{word-spacing:2.442000px;}
.ws5d{word-spacing:2.574000px;}
.ws59{word-spacing:2.640000px;}
.ws49{word-spacing:2.706000px;}
.ws18{word-spacing:2.754000px;}
.ws32{word-spacing:2.772000px;}
.ws22{word-spacing:2.838000px;}
.ws7e{word-spacing:2.880000px;}
.ws70{word-spacing:2.904000px;}
.ws52{word-spacing:3.036000px;}
.ws96{word-spacing:3.102000px;}
.ws88{word-spacing:3.168000px;}
.ws48{word-spacing:3.234000px;}
.ws65{word-spacing:3.300000px;}
.ws42{word-spacing:3.366000px;}
.wse{word-spacing:3.402000px;}
.ws26{word-spacing:3.432000px;}
.ws2a{word-spacing:3.498000px;}
.ws5b{word-spacing:3.564000px;}
.ws17{word-spacing:3.618000px;}
.ws36{word-spacing:3.630000px;}
.ws86{word-spacing:3.696000px;}
.ws64{word-spacing:3.762000px;}
.ws79{word-spacing:3.828000px;}
.ws10{word-spacing:3.834000px;}
.wsc{word-spacing:3.888000px;}
.ws5e{word-spacing:3.894000px;}
.ws14{word-spacing:3.942000px;}
.ws73{word-spacing:3.960000px;}
.ws93{word-spacing:4.026000px;}
.ws6a{word-spacing:4.092000px;}
.ws2f{word-spacing:4.158000px;}
.ws33{word-spacing:4.224000px;}
.ws7f{word-spacing:4.260000px;}
.ws66{word-spacing:4.290000px;}
.ws15{word-spacing:4.320000px;}
.ws6d{word-spacing:4.356000px;}
.ws55{word-spacing:4.422000px;}
.ws60{word-spacing:4.488000px;}
.ws92{word-spacing:4.554000px;}
.ws6f{word-spacing:4.620000px;}
.ws5f{word-spacing:4.686000px;}
.ws54{word-spacing:4.752000px;}
.ws57{word-spacing:4.818000px;}
.ws56{word-spacing:4.884000px;}
.ws71{word-spacing:4.950000px;}
.ws8e{word-spacing:5.016000px;}
.ws76{word-spacing:5.082000px;}
.ws27{word-spacing:5.148000px;}
.ws51{word-spacing:5.214000px;}
.ws12{word-spacing:5.238000px;}
.ws39{word-spacing:5.280000px;}
.ws13{word-spacing:5.292000px;}
.ws25{word-spacing:5.346000px;}
.ws84{word-spacing:5.412000px;}
.ws5c{word-spacing:5.478000px;}
.ws9{word-spacing:5.508000px;}
.ws3f{word-spacing:5.544000px;}
.ws98{word-spacing:5.610000px;}
.wsb{word-spacing:5.670000px;}
.ws4a{word-spacing:5.676000px;}
.ws7b{word-spacing:5.700000px;}
.ws3e{word-spacing:5.808000px;}
.ws30{word-spacing:5.874000px;}
.ws7a{word-spacing:5.880000px;}
.ws2e{word-spacing:5.940000px;}
.ws43{word-spacing:6.006000px;}
.ws74{word-spacing:6.072000px;}
.ws37{word-spacing:6.138000px;}
.ws6b{word-spacing:6.204000px;}
.ws5a{word-spacing:6.270000px;}
.ws7d{word-spacing:6.300000px;}
.ws35{word-spacing:6.336000px;}
.ws6e{word-spacing:6.402000px;}
.ws94{word-spacing:6.468000px;}
.ws8a{word-spacing:6.534000px;}
.ws2d{word-spacing:6.600000px;}
.ws91{word-spacing:6.666000px;}
.ws50{word-spacing:6.732000px;}
.ws3c{word-spacing:6.798000px;}
.ws58{word-spacing:6.864000px;}
.ws21{word-spacing:6.930000px;}
.ws6{word-spacing:10.656000px;}
.ws1f{word-spacing:12.750000px;}
.ws7{word-spacing:13.344000px;}
.ws6c{word-spacing:84.708000px;}
._9{margin-left:-84.708000px;}
._2{margin-left:-24.000000px;}
._3{margin-left:-22.703400px;}
._a{margin-left:-19.338000px;}
._6{margin-left:-15.660000px;}
._d{margin-left:-13.860000px;}
._8{margin-left:-1.023000px;}
._1{width:1.008000px;}
._5{width:5.238000px;}
._c{width:7.656000px;}
._e{width:8.667600px;}
._0{width:13.344000px;}
._4{width:14.364000px;}
._b{width:47.358000px;}
._7{width:84.708000px;}
.fc2{color:rgb(96,138,150);}
.fc1{color:rgb(157,194,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:35.100000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.ya0{bottom:138.068850px;}
.y152{bottom:138.191700px;}
.y180{bottom:138.407250px;}
.yc9{bottom:138.412650px;}
.y136{bottom:138.563850px;}
.y191{bottom:138.594450px;}
.y113{bottom:138.802350px;}
.yf0{bottom:138.827850px;}
.y9{bottom:140.316450px;}
.y73{bottom:142.430100px;}
.y8{bottom:153.108450px;}
.y151{bottom:158.225700px;}
.y9f{bottom:158.858850px;}
.y17f{bottom:159.197250px;}
.yc8{bottom:159.202650px;}
.y135{bottom:159.353850px;}
.y190{bottom:159.384450px;}
.y112{bottom:159.592350px;}
.yef{bottom:159.617850px;}
.y72{bottom:163.220100px;}
.y7{bottom:172.269300px;}
.y9e{bottom:179.648850px;}
.y17e{bottom:179.987250px;}
.y134{bottom:180.143850px;}
.yee{bottom:180.407850px;}
.y71{bottom:184.010100px;}
.y18f{bottom:190.569450px;}
.y111{bottom:190.777350px;}
.y6{bottom:191.445300px;}
.y17d{bottom:200.777250px;}
.y133{bottom:200.933850px;}
.yed{bottom:201.197850px;}
.y61{bottom:204.800100px;}
.yc7{bottom:207.391350px;}
.y5{bottom:210.621300px;}
.y18e{bottom:211.359450px;}
.y110{bottom:211.567350px;}
.y150{bottom:211.663800px;}
.y9d{bottom:213.622350px;}
.y132{bottom:221.723850px;}
.yec{bottom:221.987850px;}
.y4{bottom:223.413300px;}
.y60{bottom:225.590100px;}
.y18d{bottom:232.149450px;}
.y10f{bottom:232.357350px;}
.y14f{bottom:232.453800px;}
.y9c{bottom:234.412350px;}
.y131{bottom:242.513850px;}
.y3{bottom:242.589300px;}
.yeb{bottom:242.777850px;}
.y5f{bottom:246.380100px;}
.y17c{bottom:248.966100px;}
.y10e{bottom:253.147350px;}
.y14e{bottom:253.243800px;}
.y9b{bottom:255.202350px;}
.y2{bottom:255.381300px;}
.y70{bottom:256.775100px;}
.y130{bottom:263.303850px;}
.y18c{bottom:263.334450px;}
.yea{bottom:263.567850px;}
.y5e{bottom:267.170100px;}
.y10d{bottom:273.937350px;}
.y14d{bottom:274.033800px;}
.y9a{bottom:275.992350px;}
.y6f{bottom:277.565100px;}
.y12f{bottom:284.093850px;}
.ye9{bottom:284.357850px;}
.y5d{bottom:287.960100px;}
.y18b{bottom:294.519450px;}
.y10c{bottom:294.727350px;}
.y99{bottom:296.782350px;}
.y6e{bottom:298.355100px;}
.y12e{bottom:304.883850px;}
.y169{bottom:305.147850px;}
.yc6{bottom:305.149350px;}
.y14c{bottom:305.218800px;}
.y5c{bottom:308.750100px;}
.y10b{bottom:315.517350px;}
.ye8{bottom:315.542850px;}
.y98{bottom:317.572350px;}
.y6d{bottom:319.145100px;}
.y12d{bottom:325.673850px;}
.y18a{bottom:325.704450px;}
.y168{bottom:325.937850px;}
.yc5{bottom:325.939350px;}
.y14b{bottom:326.008800px;}
.y5b{bottom:329.540100px;}
.y10a{bottom:336.307350px;}
.ye7{bottom:336.332850px;}
.y97{bottom:338.362350px;}
.y6c{bottom:339.935100px;}
.y12c{bottom:346.463850px;}
.y189{bottom:346.494450px;}
.y167{bottom:346.727850px;}
.yc4{bottom:346.729350px;}
.y14a{bottom:346.798800px;}
.y5a{bottom:350.330100px;}
.y109{bottom:357.097350px;}
.ye6{bottom:357.122850px;}
.y96{bottom:359.152350px;}
.y6b{bottom:360.725100px;}
.y12b{bottom:367.253850px;}
.yc3{bottom:367.519350px;}
.y149{bottom:367.588800px;}
.y59{bottom:371.120100px;}
.y188{bottom:377.679450px;}
.y108{bottom:377.887350px;}
.ye5{bottom:377.912850px;}
.y95{bottom:379.942350px;}
.y6a{bottom:381.515100px;}
.y12a{bottom:388.043850px;}
.yc2{bottom:388.309350px;}
.y148{bottom:388.378800px;}
.y58{bottom:391.910100px;}
.y107{bottom:398.677350px;}
.ye4{bottom:398.702850px;}
.y19c{bottom:398.704350px;}
.y19e{bottom:400.205850px;}
.y94{bottom:400.732350px;}
.y19d{bottom:403.208850px;}
.y129{bottom:408.833850px;}
.y187{bottom:408.864450px;}
.yc1{bottom:409.099350px;}
.y147{bottom:409.168800px;}
.y57{bottom:412.700100px;}
.y106{bottom:419.467350px;}
.ye3{bottom:419.492850px;}
.y93{bottom:421.522350px;}
.y128{bottom:429.623850px;}
.yc0{bottom:429.889350px;}
.y146{bottom:429.958800px;}
.y19b{bottom:431.390850px;}
.y56{bottom:433.490100px;}
.y19a{bottom:434.393850px;}
.y2a{bottom:436.977300px;}
.y36{bottom:437.004300px;}
.y186{bottom:440.049450px;}
.ye2{bottom:440.282850px;}
.y92{bottom:442.312350px;}
.y127{bottom:450.413850px;}
.y105{bottom:450.652350px;}
.ybf{bottom:450.679350px;}
.y145{bottom:450.748800px;}
.y29{bottom:452.961300px;}
.y35{bottom:452.988300px;}
.y69{bottom:454.280100px;}
.ye1{bottom:461.072850px;}
.y199{bottom:461.074350px;}
.y91{bottom:463.102350px;}
.y55{bottom:464.675100px;}
.y28{bottom:468.945300px;}
.y34{bottom:468.972300px;}
.y126{bottom:471.203850px;}
.y185{bottom:471.234450px;}
.y104{bottom:471.442350px;}
.ybe{bottom:471.469350px;}
.y144{bottom:471.538800px;}
.y68{bottom:475.070100px;}
.y166{bottom:481.862850px;}
.y196{bottom:481.864350px;}
.y198{bottom:483.365850px;}
.y90{bottom:483.892350px;}
.y27{bottom:484.929300px;}
.y33{bottom:484.956300px;}
.y54{bottom:485.465100px;}
.y197{bottom:486.368850px;}
.y103{bottom:492.232350px;}
.ye0{bottom:492.257850px;}
.ybd{bottom:492.259350px;}
.y143{bottom:492.328800px;}
.y67{bottom:495.860100px;}
.y26{bottom:500.913300px;}
.y32{bottom:500.940300px;}
.y184{bottom:502.419450px;}
.y165{bottom:502.652850px;}
.y8f{bottom:504.682350px;}
.y53{bottom:506.255100px;}
.y125{bottom:507.718350px;}
.y102{bottom:513.022350px;}
.ydf{bottom:513.047850px;}
.ybc{bottom:513.049350px;}
.y142{bottom:513.118800px;}
.y66{bottom:516.650100px;}
.y31{bottom:516.924300px;}
.y183{bottom:523.209450px;}
.y164{bottom:523.442850px;}
.y25{bottom:524.889300px;}
.y8e{bottom:525.472350px;}
.y52{bottom:527.045100px;}
.y124{bottom:528.508350px;}
.y30{bottom:532.908300px;}
.y101{bottom:533.812350px;}
.yde{bottom:533.837850px;}
.ybb{bottom:533.839350px;}
.y141{bottom:533.908800px;}
.y65{bottom:537.440100px;}
.y182{bottom:543.999450px;}
.y163{bottom:544.232850px;}
.y195{bottom:544.234350px;}
.y8d{bottom:546.262350px;}
.y51{bottom:547.835100px;}
.y2f{bottom:548.892300px;}
.y123{bottom:549.298350px;}
.y100{bottom:554.602350px;}
.ydd{bottom:554.627850px;}
.y17b{bottom:554.629350px;}
.y140{bottom:554.698800px;}
.y64{bottom:558.230100px;}
.y2e{bottom:564.876300px;}
.y162{bottom:565.022850px;}
.yba{bottom:565.024350px;}
.y8c{bottom:567.052350px;}
.y50{bottom:568.625100px;}
.y122{bottom:570.088350px;}
.yff{bottom:575.392350px;}
.ydc{bottom:575.417850px;}
.y17a{bottom:575.419350px;}
.y13f{bottom:575.488800px;}
.y2d{bottom:580.860300px;}
.y161{bottom:585.812850px;}
.yb9{bottom:585.814350px;}
.y4f{bottom:589.415100px;}
.y181{bottom:590.062200px;}
.y121{bottom:590.878350px;}
.yfe{bottom:596.182350px;}
.ydb{bottom:596.207850px;}
.y179{bottom:596.209350px;}
.y2c{bottom:596.844300px;}
.y8b{bottom:601.025850px;}
.y160{bottom:606.602850px;}
.yb8{bottom:606.604350px;}
.y4e{bottom:610.205100px;}
.y120{bottom:611.668350px;}
.y2b{bottom:612.828300px;}
.yda{bottom:616.997850px;}
.y178{bottom:616.999350px;}
.y8a{bottom:621.815850px;}
.y15f{bottom:627.392850px;}
.yb7{bottom:627.394350px;}
.y4d{bottom:630.995100px;}
.y11f{bottom:632.458350px;}
.yfd{bottom:637.775250px;}
.yd9{bottom:637.787850px;}
.y177{bottom:637.789350px;}
.y89{bottom:642.605850px;}
.yb6{bottom:648.184350px;}
.y4c{bottom:651.785100px;}
.y11e{bottom:653.248350px;}
.yfc{bottom:655.370250px;}
.y17{bottom:657.189300px;}
.y24{bottom:657.229800px;}
.yd8{bottom:658.577850px;}
.y174{bottom:658.579350px;}
.y176{bottom:660.080850px;}
.y175{bottom:663.083850px;}
.y88{bottom:663.395850px;}
.yb5{bottom:668.974350px;}
.y4b{bottom:672.575100px;}
.yfb{bottom:672.965250px;}
.y16{bottom:673.173300px;}
.y23{bottom:673.213800px;}
.y11d{bottom:674.038350px;}
.yd7{bottom:679.367850px;}
.y173{bottom:679.369350px;}
.y87{bottom:684.185850px;}
.y15{bottom:689.157300px;}
.y22{bottom:689.197800px;}
.yb4{bottom:689.764350px;}
.yfa{bottom:690.560250px;}
.y4a{bottom:693.365100px;}
.y11c{bottom:694.828350px;}
.yd6{bottom:700.157850px;}
.y172{bottom:700.159350px;}
.y86{bottom:704.975850px;}
.y14{bottom:705.141300px;}
.y21{bottom:705.181800px;}
.yf9{bottom:708.155250px;}
.yb3{bottom:710.554350px;}
.y13e{bottom:712.055850px;}
.y49{bottom:714.155100px;}
.y13d{bottom:715.058850px;}
.y11b{bottom:715.618350px;}
.yd5{bottom:720.947850px;}
.y13{bottom:721.125300px;}
.y20{bottom:721.165800px;}
.yf8{bottom:725.750250px;}
.y85{bottom:725.765850px;}
.yb2{bottom:731.344350px;}
.y48{bottom:734.945100px;}
.y11a{bottom:736.408350px;}
.y1f{bottom:737.149800px;}
.yd4{bottom:741.737850px;}
.yf7{bottom:743.345250px;}
.y12{bottom:745.101300px;}
.yb1{bottom:752.134350px;}
.y1e{bottom:753.133800px;}
.y47{bottom:755.735100px;}
.y119{bottom:757.198350px;}
.y84{bottom:759.739350px;}
.yf6{bottom:760.940250px;}
.yd3{bottom:762.527850px;}
.y1d{bottom:769.117800px;}
.yb0{bottom:772.924350px;}
.y13c{bottom:774.425850px;}
.y46{bottom:776.525100px;}
.y13b{bottom:777.428850px;}
.y118{bottom:777.988350px;}
.yf5{bottom:778.535250px;}
.y83{bottom:780.529350px;}
.yd2{bottom:783.317850px;}
.y194{bottom:783.319350px;}
.y15e{bottom:784.819350px;}
.y1c{bottom:785.101800px;}
.y15d{bottom:787.822350px;}
.y13a{bottom:793.714350px;}
.yf4{bottom:796.130250px;}
.y45{bottom:797.315100px;}
.y117{bottom:798.778350px;}
.y1b{bottom:801.085800px;}
.y82{bottom:801.319350px;}
.yd1{bottom:804.107850px;}
.yaf{bottom:804.109350px;}
.yf3{bottom:813.725250px;}
.y171{bottom:814.504350px;}
.y1a{bottom:817.069800px;}
.y44{bottom:818.105100px;}
.y116{bottom:819.568350px;}
.y81{bottom:822.109350px;}
.yd0{bottom:824.897850px;}
.yae{bottom:824.899350px;}
.yf2{bottom:831.320250px;}
.y19{bottom:833.053800px;}
.y170{bottom:835.294350px;}
.y63{bottom:838.895100px;}
.y115{bottom:840.358350px;}
.y80{bottom:842.899350px;}
.ycf{bottom:845.687850px;}
.yad{bottom:845.689350px;}
.y139{bottom:847.190850px;}
.yf1{bottom:848.915250px;}
.y18{bottom:849.037800px;}
.y43{bottom:849.290100px;}
.y138{bottom:850.193850px;}
.y16f{bottom:856.084350px;}
.y62{bottom:859.685100px;}
.y114{bottom:861.148350px;}
.y7f{bottom:863.689350px;}
.y15c{bottom:866.477850px;}
.yac{bottom:866.479350px;}
.y42{bottom:870.080100px;}
.yce{bottom:876.872850px;}
.y16e{bottom:876.874350px;}
.y7e{bottom:884.479350px;}
.y15b{bottom:887.267850px;}
.yab{bottom:887.269350px;}
.y41{bottom:890.870100px;}
.ycd{bottom:897.662850px;}
.y16d{bottom:897.664350px;}
.y7d{bottom:905.269350px;}
.y15a{bottom:908.057850px;}
.yaa{bottom:908.059350px;}
.y40{bottom:911.660100px;}
.ycc{bottom:918.452850px;}
.y16c{bottom:918.454350px;}
.y7c{bottom:926.059350px;}
.y159{bottom:928.847850px;}
.ya9{bottom:928.849350px;}
.y3f{bottom:932.450100px;}
.ycb{bottom:939.242850px;}
.y16b{bottom:939.244350px;}
.y7b{bottom:946.849350px;}
.y158{bottom:949.637850px;}
.ya8{bottom:949.639350px;}
.y3e{bottom:953.240100px;}
.y11{bottom:955.521300px;}
.yca{bottom:960.032850px;}
.y16a{bottom:960.034350px;}
.y157{bottom:970.427850px;}
.ya7{bottom:970.429350px;}
.y3d{bottom:974.030100px;}
.y10{bottom:976.299150px;}
.y7a{bottom:980.822850px;}
.y137{bottom:980.824350px;}
.y156{bottom:991.217850px;}
.y3c{bottom:994.820100px;}
.y79{bottom:1001.612850px;}
.ya6{bottom:1001.614350px;}
.y155{bottom:1012.007850px;}
.y3b{bottom:1015.610100px;}
.yf{bottom:1020.693150px;}
.y78{bottom:1022.402850px;}
.ya5{bottom:1022.404350px;}
.y154{bottom:1032.797850px;}
.y193{bottom:1032.799350px;}
.y3a{bottom:1036.400100px;}
.y77{bottom:1043.192850px;}
.ya4{bottom:1043.194350px;}
.y153{bottom:1053.587850px;}
.y192{bottom:1053.589350px;}
.y39{bottom:1057.190100px;}
.y76{bottom:1063.982850px;}
.ya3{bottom:1063.984350px;}
.ye{bottom:1065.078000px;}
.y75{bottom:1084.772850px;}
.ya2{bottom:1084.774350px;}
.yd{bottom:1097.478000px;}
.y38{bottom:1103.253000px;}
.y74{bottom:1105.562850px;}
.ya1{bottom:1105.564350px;}
.yc{bottom:1162.740450px;}
.y37{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.h15{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.hc{height:40.545000px;}
.ha{height:42.930000px;}
.h12{height:43.989258px;}
.h2{height:45.342773px;}
.h13{height:46.464000px;}
.h8{height:47.700000px;}
.h10{height:48.042000px;}
.hb{height:50.868000px;}
.h9{height:50.976000px;}
.hf{height:52.470000px;}
.h14{height:54.183300px;}
.h16{height:56.166000px;}
.h11{height:56.520000px;}
.he{height:62.172000px;}
.h7{height:66.780000px;}
.hd{height:73.632000px;}
.h6{height:79.128000px;}
.h5{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xe{left:86.980500px;}
.x1d{left:90.041550px;}
.xb{left:93.730800px;}
.x1e{left:103.835550px;}
.x16{left:108.245700px;}
.x2{left:110.551350px;}
.x1b{left:136.057350px;}
.x1c{left:137.990550px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.xf{left:155.011950px;}
.x10{left:200.080050px;}
.x12{left:211.333050px;}
.x11{left:213.874050px;}
.x19{left:224.302050px;}
.x13{left:225.655050px;}
.x8{left:227.861850px;}
.x1a{left:238.096050px;}
.xc{left:242.554800px;}
.x6{left:438.506400px;}
.x7{left:516.528150px;}
.xa{left:550.282050px;}
.x9{left:551.618850px;}
.x17{left:571.343850px;}
.x18{left:585.137850px;}
.xd{left:657.132450px;}
.x14{left:673.465050px;}
.x15{left:687.259050px;}
.x5{left:733.915650px;}
@media print{
.v1{vertical-align:-16.016000pt;}
.v4{vertical-align:-14.400000pt;}
.v2{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.846933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.023467pt;}
.ls8{letter-spacing:0.029333pt;}
.ls3{letter-spacing:0.048000pt;}
.ls7{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.072000pt;}
.lsf{letter-spacing:0.088000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.117333pt;}
.ls25{letter-spacing:0.146667pt;}
.ls19{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.176000pt;}
.ls10{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.264000pt;}
.ls9{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.307200pt;}
.ls11{letter-spacing:0.352000pt;}
.ls15{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.469333pt;}
.ls14{letter-spacing:0.498667pt;}
.lsd{letter-spacing:0.528000pt;}
.ls18{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.645333pt;}
.ls22{letter-spacing:0.672000pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.762667pt;}
.ls1c{letter-spacing:0.821333pt;}
.ls12{letter-spacing:0.880000pt;}
.ls16{letter-spacing:0.997333pt;}
.ls24{letter-spacing:1.290667pt;}
.ls1e{letter-spacing:3.226667pt;}
.ls20{letter-spacing:3.930667pt;}
.ls26{letter-spacing:4.341333pt;}
.ls1d{letter-spacing:6.512000pt;}
.ls1f{letter-spacing:7.216000pt;}
.ls27{letter-spacing:1812.060800pt;}
.lse{letter-spacing:1841.394133pt;}
.ls23{letter-spacing:1896.905600pt;}
.ls6{letter-spacing:1926.238933pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws1{word-spacing:-20.160000pt;}
.ws2{word-spacing:-15.120000pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws9c{word-spacing:-13.610667pt;}
.ws1e{word-spacing:-12.965333pt;}
.ws1d{word-spacing:-12.613333pt;}
.ws85{word-spacing:-12.496000pt;}
.ws1b{word-spacing:-12.378667pt;}
.ws1c{word-spacing:-12.349333pt;}
.ws9a{word-spacing:-12.320000pt;}
.ws3d{word-spacing:-11.333333pt;}
.ws0{word-spacing:-9.472000pt;}
.ws8c{word-spacing:-8.008000pt;}
.ws8d{word-spacing:-6.552000pt;}
.ws99{word-spacing:-1.290667pt;}
.ws89{word-spacing:-0.880000pt;}
.ws87{word-spacing:-0.704000pt;}
.ws8f{word-spacing:-0.586667pt;}
.ws9b{word-spacing:-0.469333pt;}
.ws80{word-spacing:-0.426667pt;}
.ws31{word-spacing:-0.293333pt;}
.ws68{word-spacing:-0.234667pt;}
.ws77{word-spacing:-0.176000pt;}
.ws81{word-spacing:-0.160000pt;}
.ws4c{word-spacing:-0.117333pt;}
.ws90{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.058667pt;}
.ws45{word-spacing:0.117333pt;}
.ws38{word-spacing:0.176000pt;}
.ws24{word-spacing:0.234667pt;}
.wsa{word-spacing:0.288000pt;}
.ws67{word-spacing:0.293333pt;}
.ws4{word-spacing:0.384000pt;}
.ws29{word-spacing:0.410667pt;}
.ws46{word-spacing:0.469333pt;}
.ws16{word-spacing:0.528000pt;}
.ws7c{word-spacing:0.533333pt;}
.ws78{word-spacing:0.586667pt;}
.ws95{word-spacing:0.645333pt;}
.ws82{word-spacing:0.693333pt;}
.ws4f{word-spacing:0.704000pt;}
.ws19{word-spacing:0.720000pt;}
.ws2b{word-spacing:0.821333pt;}
.ws20{word-spacing:0.880000pt;}
.ws75{word-spacing:0.938667pt;}
.ws3a{word-spacing:0.997333pt;}
.ws4b{word-spacing:1.056000pt;}
.ws53{word-spacing:1.114667pt;}
.ws8{word-spacing:1.152000pt;}
.ws63{word-spacing:1.173333pt;}
.ws28{word-spacing:1.232000pt;}
.ws72{word-spacing:1.290667pt;}
.ws34{word-spacing:1.349333pt;}
.ws47{word-spacing:1.408000pt;}
.ws11{word-spacing:1.440000pt;}
.ws5{word-spacing:1.450667pt;}
.ws2c{word-spacing:1.466667pt;}
.ws62{word-spacing:1.525333pt;}
.ws69{word-spacing:1.642667pt;}
.ws61{word-spacing:1.701333pt;}
.ws4e{word-spacing:1.760000pt;}
.ws41{word-spacing:1.818667pt;}
.ws44{word-spacing:1.877333pt;}
.wsf{word-spacing:1.920000pt;}
.ws23{word-spacing:1.936000pt;}
.ws40{word-spacing:1.994667pt;}
.ws8b{word-spacing:2.053333pt;}
.wsd{word-spacing:2.064000pt;}
.ws83{word-spacing:2.080000pt;}
.ws97{word-spacing:2.112000pt;}
.ws3b{word-spacing:2.170667pt;}
.ws5d{word-spacing:2.288000pt;}
.ws59{word-spacing:2.346667pt;}
.ws49{word-spacing:2.405333pt;}
.ws18{word-spacing:2.448000pt;}
.ws32{word-spacing:2.464000pt;}
.ws22{word-spacing:2.522667pt;}
.ws7e{word-spacing:2.560000pt;}
.ws70{word-spacing:2.581333pt;}
.ws52{word-spacing:2.698667pt;}
.ws96{word-spacing:2.757333pt;}
.ws88{word-spacing:2.816000pt;}
.ws48{word-spacing:2.874667pt;}
.ws65{word-spacing:2.933333pt;}
.ws42{word-spacing:2.992000pt;}
.wse{word-spacing:3.024000pt;}
.ws26{word-spacing:3.050667pt;}
.ws2a{word-spacing:3.109333pt;}
.ws5b{word-spacing:3.168000pt;}
.ws17{word-spacing:3.216000pt;}
.ws36{word-spacing:3.226667pt;}
.ws86{word-spacing:3.285333pt;}
.ws64{word-spacing:3.344000pt;}
.ws79{word-spacing:3.402667pt;}
.ws10{word-spacing:3.408000pt;}
.wsc{word-spacing:3.456000pt;}
.ws5e{word-spacing:3.461333pt;}
.ws14{word-spacing:3.504000pt;}
.ws73{word-spacing:3.520000pt;}
.ws93{word-spacing:3.578667pt;}
.ws6a{word-spacing:3.637333pt;}
.ws2f{word-spacing:3.696000pt;}
.ws33{word-spacing:3.754667pt;}
.ws7f{word-spacing:3.786667pt;}
.ws66{word-spacing:3.813333pt;}
.ws15{word-spacing:3.840000pt;}
.ws6d{word-spacing:3.872000pt;}
.ws55{word-spacing:3.930667pt;}
.ws60{word-spacing:3.989333pt;}
.ws92{word-spacing:4.048000pt;}
.ws6f{word-spacing:4.106667pt;}
.ws5f{word-spacing:4.165333pt;}
.ws54{word-spacing:4.224000pt;}
.ws57{word-spacing:4.282667pt;}
.ws56{word-spacing:4.341333pt;}
.ws71{word-spacing:4.400000pt;}
.ws8e{word-spacing:4.458667pt;}
.ws76{word-spacing:4.517333pt;}
.ws27{word-spacing:4.576000pt;}
.ws51{word-spacing:4.634667pt;}
.ws12{word-spacing:4.656000pt;}
.ws39{word-spacing:4.693333pt;}
.ws13{word-spacing:4.704000pt;}
.ws25{word-spacing:4.752000pt;}
.ws84{word-spacing:4.810667pt;}
.ws5c{word-spacing:4.869333pt;}
.ws9{word-spacing:4.896000pt;}
.ws3f{word-spacing:4.928000pt;}
.ws98{word-spacing:4.986667pt;}
.wsb{word-spacing:5.040000pt;}
.ws4a{word-spacing:5.045333pt;}
.ws7b{word-spacing:5.066667pt;}
.ws3e{word-spacing:5.162667pt;}
.ws30{word-spacing:5.221333pt;}
.ws7a{word-spacing:5.226667pt;}
.ws2e{word-spacing:5.280000pt;}
.ws43{word-spacing:5.338667pt;}
.ws74{word-spacing:5.397333pt;}
.ws37{word-spacing:5.456000pt;}
.ws6b{word-spacing:5.514667pt;}
.ws5a{word-spacing:5.573333pt;}
.ws7d{word-spacing:5.600000pt;}
.ws35{word-spacing:5.632000pt;}
.ws6e{word-spacing:5.690667pt;}
.ws94{word-spacing:5.749333pt;}
.ws8a{word-spacing:5.808000pt;}
.ws2d{word-spacing:5.866667pt;}
.ws91{word-spacing:5.925333pt;}
.ws50{word-spacing:5.984000pt;}
.ws3c{word-spacing:6.042667pt;}
.ws58{word-spacing:6.101333pt;}
.ws21{word-spacing:6.160000pt;}
.ws6{word-spacing:9.472000pt;}
.ws1f{word-spacing:11.333333pt;}
.ws7{word-spacing:11.861333pt;}
.ws6c{word-spacing:75.296000pt;}
._9{margin-left:-75.296000pt;}
._2{margin-left:-21.333333pt;}
._3{margin-left:-20.180800pt;}
._a{margin-left:-17.189333pt;}
._6{margin-left:-13.920000pt;}
._d{margin-left:-12.320000pt;}
._8{margin-left:-0.909333pt;}
._1{width:0.896000pt;}
._5{width:4.656000pt;}
._c{width:6.805333pt;}
._e{width:7.704533pt;}
._0{width:11.861333pt;}
._4{width:12.768000pt;}
._b{width:42.096000pt;}
._7{width:75.296000pt;}
.fsb{font-size:31.200000pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.ya0{bottom:122.727867pt;}
.y152{bottom:122.837067pt;}
.y180{bottom:123.028667pt;}
.yc9{bottom:123.033467pt;}
.y136{bottom:123.167867pt;}
.y191{bottom:123.195067pt;}
.y113{bottom:123.379867pt;}
.yf0{bottom:123.402533pt;}
.y9{bottom:124.725733pt;}
.y73{bottom:126.604533pt;}
.y8{bottom:136.096400pt;}
.y151{bottom:140.645067pt;}
.y9f{bottom:141.207867pt;}
.y17f{bottom:141.508667pt;}
.yc8{bottom:141.513467pt;}
.y135{bottom:141.647867pt;}
.y190{bottom:141.675067pt;}
.y112{bottom:141.859867pt;}
.yef{bottom:141.882533pt;}
.y72{bottom:145.084533pt;}
.y7{bottom:153.128267pt;}
.y9e{bottom:159.687867pt;}
.y17e{bottom:159.988667pt;}
.y134{bottom:160.127867pt;}
.yee{bottom:160.362533pt;}
.y71{bottom:163.564533pt;}
.y18f{bottom:169.395067pt;}
.y111{bottom:169.579867pt;}
.y6{bottom:170.173600pt;}
.y17d{bottom:178.468667pt;}
.y133{bottom:178.607867pt;}
.yed{bottom:178.842533pt;}
.y61{bottom:182.044533pt;}
.yc7{bottom:184.347867pt;}
.y5{bottom:187.218933pt;}
.y18e{bottom:187.875067pt;}
.y110{bottom:188.059867pt;}
.y150{bottom:188.145600pt;}
.y9d{bottom:189.886533pt;}
.y132{bottom:197.087867pt;}
.yec{bottom:197.322533pt;}
.y4{bottom:198.589600pt;}
.y60{bottom:200.524533pt;}
.y18d{bottom:206.355067pt;}
.y10f{bottom:206.539867pt;}
.y14f{bottom:206.625600pt;}
.y9c{bottom:208.366533pt;}
.y131{bottom:215.567867pt;}
.y3{bottom:215.634933pt;}
.yeb{bottom:215.802533pt;}
.y5f{bottom:219.004533pt;}
.y17c{bottom:221.303200pt;}
.y10e{bottom:225.019867pt;}
.y14e{bottom:225.105600pt;}
.y9b{bottom:226.846533pt;}
.y2{bottom:227.005600pt;}
.y70{bottom:228.244533pt;}
.y130{bottom:234.047867pt;}
.y18c{bottom:234.075067pt;}
.yea{bottom:234.282533pt;}
.y5e{bottom:237.484533pt;}
.y10d{bottom:243.499867pt;}
.y14d{bottom:243.585600pt;}
.y9a{bottom:245.326533pt;}
.y6f{bottom:246.724533pt;}
.y12f{bottom:252.527867pt;}
.ye9{bottom:252.762533pt;}
.y5d{bottom:255.964533pt;}
.y18b{bottom:261.795067pt;}
.y10c{bottom:261.979867pt;}
.y99{bottom:263.806533pt;}
.y6e{bottom:265.204533pt;}
.y12e{bottom:271.007867pt;}
.y169{bottom:271.242533pt;}
.yc6{bottom:271.243867pt;}
.y14c{bottom:271.305600pt;}
.y5c{bottom:274.444533pt;}
.y10b{bottom:280.459867pt;}
.ye8{bottom:280.482533pt;}
.y98{bottom:282.286533pt;}
.y6d{bottom:283.684533pt;}
.y12d{bottom:289.487867pt;}
.y18a{bottom:289.515067pt;}
.y168{bottom:289.722533pt;}
.yc5{bottom:289.723867pt;}
.y14b{bottom:289.785600pt;}
.y5b{bottom:292.924533pt;}
.y10a{bottom:298.939867pt;}
.ye7{bottom:298.962533pt;}
.y97{bottom:300.766533pt;}
.y6c{bottom:302.164533pt;}
.y12c{bottom:307.967867pt;}
.y189{bottom:307.995067pt;}
.y167{bottom:308.202533pt;}
.yc4{bottom:308.203867pt;}
.y14a{bottom:308.265600pt;}
.y5a{bottom:311.404533pt;}
.y109{bottom:317.419867pt;}
.ye6{bottom:317.442533pt;}
.y96{bottom:319.246533pt;}
.y6b{bottom:320.644533pt;}
.y12b{bottom:326.447867pt;}
.yc3{bottom:326.683867pt;}
.y149{bottom:326.745600pt;}
.y59{bottom:329.884533pt;}
.y188{bottom:335.715067pt;}
.y108{bottom:335.899867pt;}
.ye5{bottom:335.922533pt;}
.y95{bottom:337.726533pt;}
.y6a{bottom:339.124533pt;}
.y12a{bottom:344.927867pt;}
.yc2{bottom:345.163867pt;}
.y148{bottom:345.225600pt;}
.y58{bottom:348.364533pt;}
.y107{bottom:354.379867pt;}
.ye4{bottom:354.402533pt;}
.y19c{bottom:354.403867pt;}
.y19e{bottom:355.738533pt;}
.y94{bottom:356.206533pt;}
.y19d{bottom:358.407867pt;}
.y129{bottom:363.407867pt;}
.y187{bottom:363.435067pt;}
.yc1{bottom:363.643867pt;}
.y147{bottom:363.705600pt;}
.y57{bottom:366.844533pt;}
.y106{bottom:372.859867pt;}
.ye3{bottom:372.882533pt;}
.y93{bottom:374.686533pt;}
.y128{bottom:381.887867pt;}
.yc0{bottom:382.123867pt;}
.y146{bottom:382.185600pt;}
.y19b{bottom:383.458533pt;}
.y56{bottom:385.324533pt;}
.y19a{bottom:386.127867pt;}
.y2a{bottom:388.424267pt;}
.y36{bottom:388.448267pt;}
.y186{bottom:391.155067pt;}
.ye2{bottom:391.362533pt;}
.y92{bottom:393.166533pt;}
.y127{bottom:400.367867pt;}
.y105{bottom:400.579867pt;}
.ybf{bottom:400.603867pt;}
.y145{bottom:400.665600pt;}
.y29{bottom:402.632267pt;}
.y35{bottom:402.656267pt;}
.y69{bottom:403.804533pt;}
.ye1{bottom:409.842533pt;}
.y199{bottom:409.843867pt;}
.y91{bottom:411.646533pt;}
.y55{bottom:413.044533pt;}
.y28{bottom:416.840267pt;}
.y34{bottom:416.864267pt;}
.y126{bottom:418.847867pt;}
.y185{bottom:418.875067pt;}
.y104{bottom:419.059867pt;}
.ybe{bottom:419.083867pt;}
.y144{bottom:419.145600pt;}
.y68{bottom:422.284533pt;}
.y166{bottom:428.322533pt;}
.y196{bottom:428.323867pt;}
.y198{bottom:429.658533pt;}
.y90{bottom:430.126533pt;}
.y27{bottom:431.048267pt;}
.y33{bottom:431.072267pt;}
.y54{bottom:431.524533pt;}
.y197{bottom:432.327867pt;}
.y103{bottom:437.539867pt;}
.ye0{bottom:437.562533pt;}
.ybd{bottom:437.563867pt;}
.y143{bottom:437.625600pt;}
.y67{bottom:440.764533pt;}
.y26{bottom:445.256267pt;}
.y32{bottom:445.280267pt;}
.y184{bottom:446.595067pt;}
.y165{bottom:446.802533pt;}
.y8f{bottom:448.606533pt;}
.y53{bottom:450.004533pt;}
.y125{bottom:451.305200pt;}
.y102{bottom:456.019867pt;}
.ydf{bottom:456.042533pt;}
.ybc{bottom:456.043867pt;}
.y142{bottom:456.105600pt;}
.y66{bottom:459.244533pt;}
.y31{bottom:459.488267pt;}
.y183{bottom:465.075067pt;}
.y164{bottom:465.282533pt;}
.y25{bottom:466.568267pt;}
.y8e{bottom:467.086533pt;}
.y52{bottom:468.484533pt;}
.y124{bottom:469.785200pt;}
.y30{bottom:473.696267pt;}
.y101{bottom:474.499867pt;}
.yde{bottom:474.522533pt;}
.ybb{bottom:474.523867pt;}
.y141{bottom:474.585600pt;}
.y65{bottom:477.724533pt;}
.y182{bottom:483.555067pt;}
.y163{bottom:483.762533pt;}
.y195{bottom:483.763867pt;}
.y8d{bottom:485.566533pt;}
.y51{bottom:486.964533pt;}
.y2f{bottom:487.904267pt;}
.y123{bottom:488.265200pt;}
.y100{bottom:492.979867pt;}
.ydd{bottom:493.002533pt;}
.y17b{bottom:493.003867pt;}
.y140{bottom:493.065600pt;}
.y64{bottom:496.204533pt;}
.y2e{bottom:502.112267pt;}
.y162{bottom:502.242533pt;}
.yba{bottom:502.243867pt;}
.y8c{bottom:504.046533pt;}
.y50{bottom:505.444533pt;}
.y122{bottom:506.745200pt;}
.yff{bottom:511.459867pt;}
.ydc{bottom:511.482533pt;}
.y17a{bottom:511.483867pt;}
.y13f{bottom:511.545600pt;}
.y2d{bottom:516.320267pt;}
.y161{bottom:520.722533pt;}
.yb9{bottom:520.723867pt;}
.y4f{bottom:523.924533pt;}
.y181{bottom:524.499733pt;}
.y121{bottom:525.225200pt;}
.yfe{bottom:529.939867pt;}
.ydb{bottom:529.962533pt;}
.y179{bottom:529.963867pt;}
.y2c{bottom:530.528267pt;}
.y8b{bottom:534.245200pt;}
.y160{bottom:539.202533pt;}
.yb8{bottom:539.203867pt;}
.y4e{bottom:542.404533pt;}
.y120{bottom:543.705200pt;}
.y2b{bottom:544.736267pt;}
.yda{bottom:548.442533pt;}
.y178{bottom:548.443867pt;}
.y8a{bottom:552.725200pt;}
.y15f{bottom:557.682533pt;}
.yb7{bottom:557.683867pt;}
.y4d{bottom:560.884533pt;}
.y11f{bottom:562.185200pt;}
.yfd{bottom:566.911333pt;}
.yd9{bottom:566.922533pt;}
.y177{bottom:566.923867pt;}
.y89{bottom:571.205200pt;}
.yb6{bottom:576.163867pt;}
.y4c{bottom:579.364533pt;}
.y11e{bottom:580.665200pt;}
.yfc{bottom:582.551333pt;}
.y17{bottom:584.168267pt;}
.y24{bottom:584.204267pt;}
.yd8{bottom:585.402533pt;}
.y174{bottom:585.403867pt;}
.y176{bottom:586.738533pt;}
.y175{bottom:589.407867pt;}
.y88{bottom:589.685200pt;}
.yb5{bottom:594.643867pt;}
.y4b{bottom:597.844533pt;}
.yfb{bottom:598.191333pt;}
.y16{bottom:598.376267pt;}
.y23{bottom:598.412267pt;}
.y11d{bottom:599.145200pt;}
.yd7{bottom:603.882533pt;}
.y173{bottom:603.883867pt;}
.y87{bottom:608.165200pt;}
.y15{bottom:612.584267pt;}
.y22{bottom:612.620267pt;}
.yb4{bottom:613.123867pt;}
.yfa{bottom:613.831333pt;}
.y4a{bottom:616.324533pt;}
.y11c{bottom:617.625200pt;}
.yd6{bottom:622.362533pt;}
.y172{bottom:622.363867pt;}
.y86{bottom:626.645200pt;}
.y14{bottom:626.792267pt;}
.y21{bottom:626.828267pt;}
.yf9{bottom:629.471333pt;}
.yb3{bottom:631.603867pt;}
.y13e{bottom:632.938533pt;}
.y49{bottom:634.804533pt;}
.y13d{bottom:635.607867pt;}
.y11b{bottom:636.105200pt;}
.yd5{bottom:640.842533pt;}
.y13{bottom:641.000267pt;}
.y20{bottom:641.036267pt;}
.yf8{bottom:645.111333pt;}
.y85{bottom:645.125200pt;}
.yb2{bottom:650.083867pt;}
.y48{bottom:653.284533pt;}
.y11a{bottom:654.585200pt;}
.y1f{bottom:655.244267pt;}
.yd4{bottom:659.322533pt;}
.yf7{bottom:660.751333pt;}
.y12{bottom:662.312267pt;}
.yb1{bottom:668.563867pt;}
.y1e{bottom:669.452267pt;}
.y47{bottom:671.764533pt;}
.y119{bottom:673.065200pt;}
.y84{bottom:675.323867pt;}
.yf6{bottom:676.391333pt;}
.yd3{bottom:677.802533pt;}
.y1d{bottom:683.660267pt;}
.yb0{bottom:687.043867pt;}
.y13c{bottom:688.378533pt;}
.y46{bottom:690.244533pt;}
.y13b{bottom:691.047867pt;}
.y118{bottom:691.545200pt;}
.yf5{bottom:692.031333pt;}
.y83{bottom:693.803867pt;}
.yd2{bottom:696.282533pt;}
.y194{bottom:696.283867pt;}
.y15e{bottom:697.617200pt;}
.y1c{bottom:697.868267pt;}
.y15d{bottom:700.286533pt;}
.y13a{bottom:705.523867pt;}
.yf4{bottom:707.671333pt;}
.y45{bottom:708.724533pt;}
.y117{bottom:710.025200pt;}
.y1b{bottom:712.076267pt;}
.y82{bottom:712.283867pt;}
.yd1{bottom:714.762533pt;}
.yaf{bottom:714.763867pt;}
.yf3{bottom:723.311333pt;}
.y171{bottom:724.003867pt;}
.y1a{bottom:726.284267pt;}
.y44{bottom:727.204533pt;}
.y116{bottom:728.505200pt;}
.y81{bottom:730.763867pt;}
.yd0{bottom:733.242533pt;}
.yae{bottom:733.243867pt;}
.yf2{bottom:738.951333pt;}
.y19{bottom:740.492267pt;}
.y170{bottom:742.483867pt;}
.y63{bottom:745.684533pt;}
.y115{bottom:746.985200pt;}
.y80{bottom:749.243867pt;}
.ycf{bottom:751.722533pt;}
.yad{bottom:751.723867pt;}
.y139{bottom:753.058533pt;}
.yf1{bottom:754.591333pt;}
.y18{bottom:754.700267pt;}
.y43{bottom:754.924533pt;}
.y138{bottom:755.727867pt;}
.y16f{bottom:760.963867pt;}
.y62{bottom:764.164533pt;}
.y114{bottom:765.465200pt;}
.y7f{bottom:767.723867pt;}
.y15c{bottom:770.202533pt;}
.yac{bottom:770.203867pt;}
.y42{bottom:773.404533pt;}
.yce{bottom:779.442533pt;}
.y16e{bottom:779.443867pt;}
.y7e{bottom:786.203867pt;}
.y15b{bottom:788.682533pt;}
.yab{bottom:788.683867pt;}
.y41{bottom:791.884533pt;}
.ycd{bottom:797.922533pt;}
.y16d{bottom:797.923867pt;}
.y7d{bottom:804.683867pt;}
.y15a{bottom:807.162533pt;}
.yaa{bottom:807.163867pt;}
.y40{bottom:810.364533pt;}
.ycc{bottom:816.402533pt;}
.y16c{bottom:816.403867pt;}
.y7c{bottom:823.163867pt;}
.y159{bottom:825.642533pt;}
.ya9{bottom:825.643867pt;}
.y3f{bottom:828.844533pt;}
.ycb{bottom:834.882533pt;}
.y16b{bottom:834.883867pt;}
.y7b{bottom:841.643867pt;}
.y158{bottom:844.122533pt;}
.ya8{bottom:844.123867pt;}
.y3e{bottom:847.324533pt;}
.y11{bottom:849.352267pt;}
.yca{bottom:853.362533pt;}
.y16a{bottom:853.363867pt;}
.y157{bottom:862.602533pt;}
.ya7{bottom:862.603867pt;}
.y3d{bottom:865.804533pt;}
.y10{bottom:867.821467pt;}
.y7a{bottom:871.842533pt;}
.y137{bottom:871.843867pt;}
.y156{bottom:881.082533pt;}
.y3c{bottom:884.284533pt;}
.y79{bottom:890.322533pt;}
.ya6{bottom:890.323867pt;}
.y155{bottom:899.562533pt;}
.y3b{bottom:902.764533pt;}
.yf{bottom:907.282800pt;}
.y78{bottom:908.802533pt;}
.ya5{bottom:908.803867pt;}
.y154{bottom:918.042533pt;}
.y193{bottom:918.043867pt;}
.y3a{bottom:921.244533pt;}
.y77{bottom:927.282533pt;}
.ya4{bottom:927.283867pt;}
.y153{bottom:936.522533pt;}
.y192{bottom:936.523867pt;}
.y39{bottom:939.724533pt;}
.y76{bottom:945.762533pt;}
.ya3{bottom:945.763867pt;}
.ye{bottom:946.736000pt;}
.y75{bottom:964.242533pt;}
.ya2{bottom:964.243867pt;}
.yd{bottom:975.536000pt;}
.y38{bottom:980.669333pt;}
.y74{bottom:982.722533pt;}
.ya1{bottom:982.723867pt;}
.yc{bottom:1033.547067pt;}
.y37{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.h15{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.hc{height:36.040000pt;}
.ha{height:38.160000pt;}
.h12{height:39.101562pt;}
.h2{height:40.304688pt;}
.h13{height:41.301333pt;}
.h8{height:42.400000pt;}
.h10{height:42.704000pt;}
.hb{height:45.216000pt;}
.h9{height:45.312000pt;}
.hf{height:46.640000pt;}
.h14{height:48.162933pt;}
.h16{height:49.925333pt;}
.h11{height:50.240000pt;}
.he{height:55.264000pt;}
.h7{height:59.360000pt;}
.hd{height:65.450667pt;}
.h6{height:70.336000pt;}
.h5{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xe{left:77.316000pt;}
.x1d{left:80.036933pt;}
.xb{left:83.316267pt;}
.x1e{left:92.298267pt;}
.x16{left:96.218400pt;}
.x2{left:98.267867pt;}
.x1b{left:120.939867pt;}
.x1c{left:122.658267pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.xf{left:137.788400pt;}
.x10{left:177.848933pt;}
.x12{left:187.851600pt;}
.x11{left:190.110267pt;}
.x19{left:199.379600pt;}
.x13{left:200.582267pt;}
.x8{left:202.543867pt;}
.x1a{left:211.640933pt;}
.xc{left:215.604267pt;}
.x6{left:389.783467pt;}
.x7{left:459.136133pt;}
.xa{left:489.139600pt;}
.x9{left:490.327867pt;}
.x17{left:507.861200pt;}
.x18{left:520.122533pt;}
.xd{left:584.117733pt;}
.x14{left:598.635600pt;}
.x15{left:610.896933pt;}
.x5{left:652.369467pt;}
}




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