
    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_a63ebbea0b9a990b438102ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_be04c3c38251b461aabf5f22.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_f7d5f4f3e24a634b3c2f7c43.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_aa8f432af80af81e1e549b0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_c0841d3607a14573e95a6f9a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_8c00e949eecc2d3f6d98c2e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_20931eb0a733833feb84d8c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_5df8cfefce4fc2ef744d2300.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_a26c84f8f571f6dd826e9a39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.920000;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_b44644927de2c05ae2b2ba16.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_bd65b57294ce1ffe301fb6b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.653000;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_d81994bee32b93e93bc240c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m2{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);}
.v3{vertical-align:-33.012000px;}
.v2{vertical-align:-18.895920px;}
.v5{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.394000px;}
.v1{vertical-align:18.912000px;}
.ls12{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.344000px;}
.ls14{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-0.630000px;}
.ls13{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.399000px;}
.lsf{letter-spacing:-0.288000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012120px;}
.ls0{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.575700px;}
.ls6{letter-spacing:0.581400px;}
.ls4{letter-spacing:0.621300px;}
.lsa{letter-spacing:0.855000px;}
.lsd{letter-spacing:1.026000px;}
.ls7{letter-spacing:14.400000px;}
.ls1{letter-spacing:23.998680px;}
.lsb{letter-spacing:214.452000px;}
.lsc{letter-spacing:809.256000px;}
.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;}
}
.ws3{word-spacing:-12.939000px;}
.ws0{word-spacing:-10.896000px;}
.ws70{word-spacing:-10.608000px;}
.ws75{word-spacing:-10.416000px;}
.ws73{word-spacing:-10.320000px;}
.ws74{word-spacing:-9.696000px;}
.ws71{word-spacing:-9.552000px;}
.ws76{word-spacing:-9.534000px;}
.ws72{word-spacing:-9.456000px;}
.ws1{word-spacing:-9.324000px;}
.ws4c{word-spacing:-9.000000px;}
.ws50{word-spacing:-6.605280px;}
.ws2{word-spacing:-6.153840px;}
.ws61{word-spacing:-3.534000px;}
.ws51{word-spacing:-3.477000px;}
.ws48{word-spacing:-3.306000px;}
.ws7d{word-spacing:-3.192000px;}
.ws31{word-spacing:-2.679000px;}
.ws8d{word-spacing:-2.109000px;}
.ws9b{word-spacing:-2.052000px;}
.ws92{word-spacing:-1.824000px;}
.ws5a{word-spacing:-1.767000px;}
.ws53{word-spacing:-1.710000px;}
.ws22{word-spacing:-1.596000px;}
.wse8{word-spacing:-1.428000px;}
.ws3e{word-spacing:-1.425000px;}
.ws79{word-spacing:-1.368000px;}
.wsc7{word-spacing:-1.218000px;}
.ws97{word-spacing:-1.197000px;}
.ws6a{word-spacing:-1.176000px;}
.ws42{word-spacing:-1.140000px;}
.wsa{word-spacing:-1.134000px;}
.ws82{word-spacing:-1.026000px;}
.wsd9{word-spacing:-0.924000px;}
.ws69{word-spacing:-0.912000px;}
.wsbf{word-spacing:-0.882000px;}
.ws65{word-spacing:-0.855000px;}
.wscd{word-spacing:-0.798000px;}
.wsdf{word-spacing:-0.756000px;}
.ws9e{word-spacing:-0.684000px;}
.ws45{word-spacing:-0.627000px;}
.ws21{word-spacing:-0.570000px;}
.wse5{word-spacing:-0.546000px;}
.wsb{word-spacing:-0.504000px;}
.wsb5{word-spacing:-0.432000px;}
.ws23{word-spacing:-0.399000px;}
.wsac{word-spacing:-0.384000px;}
.wsab{word-spacing:-0.336000px;}
.ws6b{word-spacing:-0.324000px;}
.wsb4{word-spacing:-0.288000px;}
.ws37{word-spacing:-0.285000px;}
.ws5{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.228000px;}
.wsc3{word-spacing:-0.210000px;}
.wsa5{word-spacing:-0.171000px;}
.wsd8{word-spacing:-0.168000px;}
.ws24{word-spacing:-0.114000px;}
.wse3{word-spacing:-0.084000px;}
.wsa4{word-spacing:-0.057000px;}
.ws4a{word-spacing:-0.051000px;}
.ws6f{word-spacing:-0.048000px;}
.wsd1{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.wscb{word-spacing:0.210000px;}
.ws1d{word-spacing:0.228000px;}
.wsd6{word-spacing:0.252000px;}
.ws2a{word-spacing:0.285000px;}
.ws2d{word-spacing:0.342000px;}
.ws89{word-spacing:0.399000px;}
.wse0{word-spacing:0.420000px;}
.wsae{word-spacing:0.432000px;}
.wsb6{word-spacing:0.528000px;}
.ws7{word-spacing:0.546000px;}
.ws49{word-spacing:0.570000px;}
.ws6c{word-spacing:0.612000px;}
.wse6{word-spacing:0.630000px;}
.wsc4{word-spacing:0.672000px;}
.ws36{word-spacing:0.684000px;}
.wsdd{word-spacing:0.756000px;}
.wsad{word-spacing:0.816000px;}
.ws93{word-spacing:0.855000px;}
.wse2{word-spacing:0.966000px;}
.ws29{word-spacing:1.026000px;}
.wscf{word-spacing:1.050000px;}
.ws6d{word-spacing:1.080000px;}
.ws9{word-spacing:1.176000px;}
.wsde{word-spacing:1.218000px;}
.ws98{word-spacing:1.311000px;}
.ws6e{word-spacing:1.368000px;}
.ws64{word-spacing:1.425000px;}
.wsb7{word-spacing:1.440000px;}
.ws86{word-spacing:1.482000px;}
.wsba{word-spacing:1.584000px;}
.ws1a{word-spacing:1.710000px;}
.ws2c{word-spacing:1.767000px;}
.wsc2{word-spacing:1.806000px;}
.ws68{word-spacing:1.824000px;}
.ws67{word-spacing:1.872000px;}
.wsce{word-spacing:1.890000px;}
.ws2f{word-spacing:2.052000px;}
.wsc6{word-spacing:2.058000px;}
.ws16{word-spacing:2.166000px;}
.ws66{word-spacing:2.223000px;}
.wsd0{word-spacing:2.268000px;}
.ws2b{word-spacing:2.280000px;}
.wsdc{word-spacing:2.310000px;}
.ws44{word-spacing:2.337000px;}
.ws8a{word-spacing:2.451000px;}
.wsbe{word-spacing:2.604000px;}
.wsd2{word-spacing:2.646000px;}
.ws8{word-spacing:2.730000px;}
.ws83{word-spacing:2.736000px;}
.wsda{word-spacing:2.856000px;}
.ws2e{word-spacing:2.964000px;}
.ws94{word-spacing:3.135000px;}
.wsd{word-spacing:3.150000px;}
.wsb1{word-spacing:3.264000px;}
.wse4{word-spacing:3.276000px;}
.wse1{word-spacing:3.360000px;}
.ws1e{word-spacing:3.363000px;}
.wsc0{word-spacing:3.402000px;}
.ws35{word-spacing:3.420000px;}
.ws1c{word-spacing:3.477000px;}
.ws12{word-spacing:3.534000px;}
.wsa9{word-spacing:3.591000px;}
.wsc8{word-spacing:3.738000px;}
.ws81{word-spacing:3.762000px;}
.ws58{word-spacing:3.990000px;}
.ws9a{word-spacing:4.047000px;}
.wsca{word-spacing:4.158000px;}
.ws46{word-spacing:4.161000px;}
.ws43{word-spacing:4.218000px;}
.ws7e{word-spacing:4.332000px;}
.wscc{word-spacing:4.368000px;}
.ws9d{word-spacing:4.389000px;}
.ws5c{word-spacing:4.446000px;}
.wse7{word-spacing:4.494000px;}
.ws77{word-spacing:4.503000px;}
.ws9f{word-spacing:4.617000px;}
.ws1f{word-spacing:4.674000px;}
.ws5e{word-spacing:4.788000px;}
.ws7f{word-spacing:4.845000px;}
.wsc1{word-spacing:4.914000px;}
.ws80{word-spacing:5.016000px;}
.wsa8{word-spacing:5.130000px;}
.wsb0{word-spacing:5.184000px;}
.ws39{word-spacing:5.244000px;}
.wsd4{word-spacing:5.250000px;}
.wsc{word-spacing:5.376000px;}
.ws99{word-spacing:5.415000px;}
.wsd7{word-spacing:5.418000px;}
.ws1b{word-spacing:5.643000px;}
.ws3a{word-spacing:5.700000px;}
.ws28{word-spacing:5.757000px;}
.ws32{word-spacing:5.814000px;}
.ws84{word-spacing:5.871000px;}
.wsc9{word-spacing:5.922000px;}
.ws88{word-spacing:5.985000px;}
.ws27{word-spacing:6.099000px;}
.ws56{word-spacing:6.156000px;}
.wsc5{word-spacing:6.174000px;}
.wsd3{word-spacing:6.216000px;}
.ws5f{word-spacing:6.441000px;}
.wsa3{word-spacing:6.498000px;}
.ws91{word-spacing:6.555000px;}
.ws38{word-spacing:6.612000px;}
.ws96{word-spacing:6.669000px;}
.ws52{word-spacing:6.726000px;}
.wsdb{word-spacing:6.846000px;}
.wsa0{word-spacing:6.897000px;}
.ws17{word-spacing:7.011000px;}
.ws10{word-spacing:7.125000px;}
.wse{word-spacing:7.353000px;}
.ws62{word-spacing:7.410000px;}
.wsb3{word-spacing:7.584000px;}
.ws3b{word-spacing:7.638000px;}
.ws25{word-spacing:7.866000px;}
.ws30{word-spacing:7.923000px;}
.wsb8{word-spacing:7.968000px;}
.ws5b{word-spacing:8.151000px;}
.wsa2{word-spacing:8.208000px;}
.wsb9{word-spacing:8.256000px;}
.wsa6{word-spacing:8.265000px;}
.ws55{word-spacing:8.322000px;}
.wsaf{word-spacing:8.496000px;}
.ws15{word-spacing:8.550000px;}
.ws8c{word-spacing:8.607000px;}
.wsaa{word-spacing:8.721000px;}
.ws90{word-spacing:8.892000px;}
.wsb2{word-spacing:9.024000px;}
.ws7c{word-spacing:9.063000px;}
.ws26{word-spacing:9.177000px;}
.ws40{word-spacing:9.405000px;}
.ws7b{word-spacing:9.462000px;}
.ws59{word-spacing:9.519000px;}
.wsd5{word-spacing:9.912000px;}
.wsa1{word-spacing:9.918000px;}
.ws11{word-spacing:10.260000px;}
.ws7a{word-spacing:10.374000px;}
.ws41{word-spacing:10.431000px;}
.ws78{word-spacing:10.659000px;}
.ws33{word-spacing:10.944000px;}
.ws5d{word-spacing:11.001000px;}
.ws3d{word-spacing:11.058000px;}
.ws57{word-spacing:11.286000px;}
.ws8f{word-spacing:11.514000px;}
.ws3c{word-spacing:11.799000px;}
.ws54{word-spacing:12.027000px;}
.ws63{word-spacing:12.255000px;}
.ws8e{word-spacing:12.540000px;}
.ws20{word-spacing:12.768000px;}
.ws6{word-spacing:13.104000px;}
.ws34{word-spacing:13.224000px;}
.ws85{word-spacing:13.281000px;}
.ws8b{word-spacing:13.338000px;}
.ws19{word-spacing:13.452000px;}
.ws9c{word-spacing:13.965000px;}
.ws18{word-spacing:14.250000px;}
.wsbb{word-spacing:14.364000px;}
.ws60{word-spacing:14.706000px;}
.ws13{word-spacing:15.162000px;}
.wsa7{word-spacing:15.504000px;}
.ws87{word-spacing:16.701000px;}
.ws14{word-spacing:16.815000px;}
.wsbd{word-spacing:18.102000px;}
.ws47{word-spacing:18.411000px;}
.ws95{word-spacing:19.266000px;}
.wsf{word-spacing:20.919000px;}
.wsbc{word-spacing:28.266000px;}
.ws4d{word-spacing:144.900000px;}
.ws4b{word-spacing:248.309400px;}
.ws4f{word-spacing:875.406000px;}
.ws4e{word-spacing:911.866200px;}
._9{margin-left:-12.694800px;}
._18{margin-left:-9.126600px;}
._7{margin-left:-8.003700px;}
._13{margin-left:-6.981000px;}
._5{margin-left:-5.586000px;}
._2{margin-left:-4.149000px;}
._0{margin-left:-2.400000px;}
._3{margin-left:-1.170000px;}
._1{width:1.171800px;}
._4{width:2.779200px;}
._8{width:3.828000px;}
._a{width:5.092200px;}
._1b{width:6.804000px;}
._19{width:9.120000px;}
._1d{width:11.508000px;}
._1c{width:12.936000px;}
._1a{width:29.700000px;}
._b{width:35.472000px;}
._c{width:37.941000px;}
._6{width:44.773200px;}
._f{width:834.288000px;}
._12{width:965.034000px;}
._10{width:971.964000px;}
._d{width:992.451000px;}
._16{width:1001.280000px;}
._11{width:1024.464000px;}
._14{width:1056.720000px;}
._17{width:1073.772000px;}
._e{width:1119.132000px;}
._15{width:1138.998000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(102,102,102);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:0.600000px;}
.fsb{font-size:23.760000px;}
.fs4{font-size:27.720000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:36.000503px;}
.fs3{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:1.623600px;}
.yb1{bottom:36.629100px;}
.y66{bottom:66.286650px;}
.y3{bottom:66.297450px;}
.y144{bottom:106.742400px;}
.y10d{bottom:106.919250px;}
.ydb{bottom:109.573950px;}
.y63{bottom:113.024400px;}
.yf{bottom:114.243150px;}
.y7e{bottom:114.333750px;}
.y143{bottom:120.245400px;}
.yda{bottom:125.620950px;}
.y10c{bottom:126.413250px;}
.ye{bottom:127.746150px;}
.y62{bottom:132.518400px;}
.y7d{bottom:133.827750px;}
.yd9{bottom:136.573950px;}
.y142{bottom:136.745250px;}
.yd{bottom:141.249150px;}
.y10b{bottom:145.907250px;}
.yd8{bottom:148.570950px;}
.y61{bottom:152.012400px;}
.y7c{bottom:153.321750px;}
.yc{bottom:154.752150px;}
.yd7{bottom:160.567950px;}
.y10a{bottom:165.401250px;}
.yb{bottom:168.255150px;}
.y141{bottom:169.745250px;}
.y60{bottom:171.506400px;}
.y7b{bottom:172.815750px;}
.yd6{bottom:175.570950px;}
.ya{bottom:181.758150px;}
.y140{bottom:184.745250px;}
.y109{bottom:184.895250px;}
.y5f{bottom:191.000400px;}
.y7a{bottom:192.309750px;}
.y9{bottom:195.261150px;}
.yd5{bottom:196.954500px;}
.y13f{bottom:199.745250px;}
.y108{bottom:204.389250px;}
.y8{bottom:208.761150px;}
.y5e{bottom:210.494400px;}
.y79{bottom:211.803750px;}
.yd4{bottom:213.555000px;}
.y13e{bottom:214.745250px;}
.y107{bottom:223.883250px;}
.y7{bottom:226.758150px;}
.y13d{bottom:229.745250px;}
.y5d{bottom:229.988400px;}
.yd3{bottom:230.155500px;}
.y78{bottom:231.297750px;}
.y6{bottom:240.261150px;}
.y106{bottom:243.377250px;}
.y13c{bottom:244.745250px;}
.yd2{bottom:246.756000px;}
.y5c{bottom:249.482400px;}
.y77{bottom:250.791750px;}
.y5{bottom:253.764150px;}
.y13b{bottom:259.745250px;}
.y105{bottom:262.871250px;}
.yd1{bottom:263.955000px;}
.y4{bottom:267.264150px;}
.y5b{bottom:268.976400px;}
.y76{bottom:270.285750px;}
.y13a{bottom:274.745250px;}
.yd0{bottom:281.154000px;}
.y104{bottom:282.365250px;}
.y5a{bottom:288.470400px;}
.y139{bottom:289.745250px;}
.y75{bottom:289.779750px;}
.ycf{bottom:298.353000px;}
.y103{bottom:301.859250px;}
.y138{bottom:304.745250px;}
.y59{bottom:307.964400px;}
.y74{bottom:309.273750px;}
.y34{bottom:312.459300px;}
.yce{bottom:314.959500px;}
.y137{bottom:319.745250px;}
.y102{bottom:321.353250px;}
.y58{bottom:327.458400px;}
.y73{bottom:328.767750px;}
.ycd{bottom:331.560000px;}
.y33{bottom:331.953300px;}
.y136{bottom:334.745250px;}
.y101{bottom:340.847250px;}
.y57{bottom:346.952400px;}
.ycc{bottom:348.160500px;}
.y72{bottom:348.261750px;}
.y135{bottom:349.745250px;}
.y32{bottom:351.447300px;}
.y100{bottom:360.341250px;}
.y134{bottom:364.745250px;}
.ycb{bottom:364.761000px;}
.y56{bottom:366.446400px;}
.y71{bottom:367.755750px;}
.y31{bottom:370.941300px;}
.y133{bottom:379.745250px;}
.yff{bottom:379.835250px;}
.yca{bottom:381.361500px;}
.y55{bottom:385.940400px;}
.y70{bottom:387.249750px;}
.y30{bottom:390.435300px;}
.y132{bottom:394.745250px;}
.yc9{bottom:397.962000px;}
.yfe{bottom:399.329250px;}
.y54{bottom:405.434400px;}
.y6f{bottom:406.743750px;}
.y8e{bottom:406.936950px;}
.y131{bottom:409.745250px;}
.y2f{bottom:409.929300px;}
.yfd{bottom:418.823250px;}
.yc8{bottom:419.067000px;}
.y53{bottom:424.928400px;}
.y6e{bottom:426.237750px;}
.y130{bottom:427.745250px;}
.y2e{bottom:429.423300px;}
.yfc{bottom:438.317250px;}
.y52{bottom:444.422400px;}
.y6d{bottom:445.731750px;}
.y2d{bottom:448.917300px;}
.yc7{bottom:453.294000px;}
.yfb{bottom:457.811250px;}
.y12f{bottom:461.117250px;}
.y51{bottom:463.916400px;}
.y6c{bottom:465.225750px;}
.y2c{bottom:468.411300px;}
.yfa{bottom:477.305250px;}
.y12e{bottom:480.611250px;}
.y50{bottom:483.410400px;}
.y6b{bottom:484.719750px;}
.y2b{bottom:487.905300px;}
.y83{bottom:491.232000px;}
.yf9{bottom:496.799250px;}
.y12d{bottom:500.105250px;}
.y4f{bottom:502.904400px;}
.y6a{bottom:504.213750px;}
.y2a{bottom:507.399300px;}
.y82{bottom:510.726000px;}
.yf8{bottom:516.293250px;}
.y12c{bottom:519.599250px;}
.y4e{bottom:522.398400px;}
.y69{bottom:523.707750px;}
.y29{bottom:526.893300px;}
.y81{bottom:530.220000px;}
.yf7{bottom:535.787250px;}
.y12b{bottom:539.093250px;}
.y4d{bottom:541.892400px;}
.y68{bottom:543.201750px;}
.y28{bottom:546.387300px;}
.y80{bottom:549.714000px;}
.yf6{bottom:555.281250px;}
.y12a{bottom:558.587250px;}
.y4c{bottom:561.386400px;}
.y27{bottom:565.881300px;}
.y7f{bottom:569.208000px;}
.y67{bottom:570.201750px;}
.yf5{bottom:574.775250px;}
.y129{bottom:578.081250px;}
.y4b{bottom:580.880400px;}
.y26{bottom:585.375300px;}
.yf4{bottom:594.269250px;}
.y128{bottom:597.575250px;}
.y4a{bottom:600.374400px;}
.yf3{bottom:613.763250px;}
.yc6{bottom:616.557600px;}
.y127{bottom:617.069250px;}
.y49{bottom:619.868400px;}
.yc5{bottom:631.557600px;}
.y18c{bottom:633.198600px;}
.yf2{bottom:633.257250px;}
.y168{bottom:633.303600px;}
.y25{bottom:635.620800px;}
.y126{bottom:636.563250px;}
.y48{bottom:639.362400px;}
.yc4{bottom:646.557600px;}
.y18b{bottom:646.701600px;}
.y167{bottom:646.806600px;}
.yf1{bottom:652.751250px;}
.y24{bottom:653.618550px;}
.y125{bottom:656.057250px;}
.y47{bottom:658.856400px;}
.y18a{bottom:660.204600px;}
.y166{bottom:660.309600px;}
.yc3{bottom:661.557600px;}
.y23{bottom:671.616300px;}
.yf0{bottom:672.245250px;}
.y189{bottom:673.707600px;}
.y165{bottom:673.812600px;}
.y124{bottom:675.551250px;}
.y46{bottom:678.350400px;}
.y188{bottom:687.210600px;}
.y164{bottom:687.315600px;}
.y22{bottom:689.614050px;}
.y123{bottom:695.045250px;}
.y8d{bottom:695.308500px;}
.ybb{bottom:698.858250px;}
.yef{bottom:699.245250px;}
.y187{bottom:700.713600px;}
.y163{bottom:700.818600px;}
.y45{bottom:705.350400px;}
.y21{bottom:707.611800px;}
.y186{bottom:714.216600px;}
.y162{bottom:714.321600px;}
.y122{bottom:714.539250px;}
.y20{bottom:725.609550px;}
.y185{bottom:727.719600px;}
.y161{bottom:727.824600px;}
.ya6{bottom:732.504750px;}
.y121{bottom:734.033250px;}
.yb8{bottom:734.958114px;}
.yb5{bottom:736.854601px;}
.yb7{bottom:737.198260px;}
.yb9{bottom:739.247484px;}
.yb3{bottom:740.978505px;}
.y184{bottom:741.222600px;}
.y160{bottom:741.327600px;}
.ya5{bottom:743.322750px;}
.y1f{bottom:743.607300px;}
.y44{bottom:744.547800px;}
.yb4{bottom:747.660758px;}
.yee{bottom:753.353400px;}
.y120{bottom:753.527250px;}
.y183{bottom:754.725600px;}
.y15f{bottom:754.830600px;}
.yb6{bottom:757.722321px;}
.y1e{bottom:761.605050px;}
.y43{bottom:764.041800px;}
.y182{bottom:768.228600px;}
.y15e{bottom:768.333600px;}
.yed{bottom:772.847400px;}
.y11f{bottom:773.021250px;}
.yb2{bottom:773.906100px;}
.y1d{bottom:779.602800px;}
.y181{bottom:781.731600px;}
.y15d{bottom:781.836600px;}
.y42{bottom:783.535800px;}
.yec{bottom:792.341400px;}
.y11e{bottom:792.515250px;}
.y180{bottom:795.234600px;}
.yb0{bottom:795.243750px;}
.y15c{bottom:795.339600px;}
.ya3{bottom:796.845750px;}
.y41{bottom:803.029800px;}
.ya2{bottom:807.663750px;}
.y17f{bottom:808.737600px;}
.y15b{bottom:808.842600px;}
.y1c{bottom:810.349800px;}
.yeb{bottom:811.835400px;}
.y11d{bottom:812.009250px;}
.yaf{bottom:821.388750px;}
.y17e{bottom:822.240600px;}
.y15a{bottom:822.345600px;}
.y40{bottom:822.523800px;}
.y1b{bottom:823.849800px;}
.yea{bottom:831.329400px;}
.y11c{bottom:831.503250px;}
.y17d{bottom:835.743600px;}
.y159{bottom:835.848600px;}
.y1a{bottom:837.349800px;}
.ya4{bottom:838.974750px;}
.y3f{bottom:842.017800px;}
.yae{bottom:847.542750px;}
.y17c{bottom:849.246600px;}
.y158{bottom:849.351600px;}
.ye9{bottom:850.823400px;}
.y19{bottom:850.849800px;}
.y11b{bottom:850.997250px;}
.y3e{bottom:861.511800px;}
.y17b{bottom:862.749600px;}
.y157{bottom:862.854600px;}
.y18{bottom:864.349800px;}
.ya1{bottom:866.379750px;}
.ybe{bottom:868.191600px;}
.ye8{bottom:870.317400px;}
.y11a{bottom:870.491250px;}
.yad{bottom:873.687750px;}
.y17a{bottom:876.252600px;}
.y156{bottom:876.357600px;}
.ya0{bottom:877.170750px;}
.ybd{bottom:879.954600px;}
.y3d{bottom:881.005800px;}
.y17{bottom:882.576780px;}
.y179{bottom:889.755600px;}
.ye7{bottom:889.811400px;}
.y155{bottom:889.860600px;}
.y119{bottom:889.985250px;}
.ybc{bottom:891.888600px;}
.y16{bottom:897.349800px;}
.y8f{bottom:899.496600px;}
.y3c{bottom:900.499800px;}
.y178{bottom:903.258600px;}
.y154{bottom:903.363600px;}
.yac{bottom:904.908750px;}
.ye6{bottom:909.305400px;}
.y118{bottom:909.479250px;}
.y15{bottom:910.849800px;}
.y9f{bottom:912.693750px;}
.y177{bottom:916.761600px;}
.y153{bottom:916.866600px;}
.y3b{bottom:919.993800px;}
.y9e{bottom:923.493750px;}
.y14{bottom:924.352800px;}
.ye5{bottom:928.799400px;}
.y117{bottom:928.973250px;}
.y176{bottom:930.264600px;}
.y152{bottom:930.369600px;}
.y3a{bottom:939.487800px;}
.y65{bottom:941.625000px;}
.y175{bottom:943.767600px;}
.y151{bottom:943.872600px;}
.y97{bottom:946.731750px;}
.ye4{bottom:948.293400px;}
.y116{bottom:948.467250px;}
.y13{bottom:949.852800px;}
.y94{bottom:951.134550px;}
.y174{bottom:957.270600px;}
.y150{bottom:957.375600px;}
.y89{bottom:957.385650px;}
.y96{bottom:957.540750px;}
.y39{bottom:958.981800px;}
.y93{bottom:963.734550px;}
.ye3{bottom:967.787400px;}
.y115{bottom:967.961250px;}
.y88{bottom:970.006650px;}
.y173{bottom:970.773600px;}
.y14f{bottom:970.878600px;}
.y92{bottom:976.334550px;}
.y12{bottom:976.852800px;}
.y38{bottom:978.475800px;}
.y9d{bottom:978.609750px;}
.y87{bottom:982.606650px;}
.y85{bottom:982.607550px;}
.y172{bottom:984.276600px;}
.y14e{bottom:984.381600px;}
.ye2{bottom:987.281400px;}
.y114{bottom:987.455250px;}
.y91{bottom:988.945050px;}
.yab{bottom:989.139750px;}
.y9c{bottom:989.427750px;}
.yc2{bottom:989.889600px;}
.y171{bottom:997.779600px;}
.y14d{bottom:997.884600px;}
.y37{bottom:997.969800px;}
.yaa{bottom:998.319750px;}
.yc1{bottom:999.042600px;}
.y90{bottom:1001.545050px;}
.y11{bottom:1003.852800px;}
.ye1{bottom:1006.775400px;}
.y113{bottom:1006.949250px;}
.y86{bottom:1007.134650px;}
.ya9{bottom:1007.472750px;}
.yc0{bottom:1008.222600px;}
.y170{bottom:1011.282600px;}
.y14c{bottom:1011.387600px;}
.y8c{bottom:1014.127650px;}
.y36{bottom:1017.463800px;}
.ya8{bottom:1018.245750px;}
.y8a{bottom:1019.377650px;}
.y84{bottom:1019.380800px;}
.y16f{bottom:1024.785600px;}
.y14b{bottom:1024.890600px;}
.ye0{bottom:1026.269400px;}
.y112{bottom:1026.443250px;}
.ya7{bottom:1026.876750px;}
.ybf{bottom:1027.617600px;}
.y10{bottom:1030.852800px;}
.y95{bottom:1032.814050px;}
.y9b{bottom:1035.876750px;}
.y35{bottom:1036.957800px;}
.y16e{bottom:1038.288600px;}
.y14a{bottom:1038.393600px;}
.ydf{bottom:1045.763400px;}
.y111{bottom:1045.937250px;}
.y9a{bottom:1046.649750px;}
.y16d{bottom:1051.791600px;}
.y149{bottom:1051.896600px;}
.y8b{bottom:1057.975650px;}
.yde{bottom:1065.257400px;}
.y16c{bottom:1065.294600px;}
.y148{bottom:1065.399600px;}
.y110{bottom:1065.431250px;}
.y16b{bottom:1078.797600px;}
.y147{bottom:1078.902600px;}
.ydd{bottom:1084.751400px;}
.y10f{bottom:1084.925250px;}
.y99{bottom:1086.285750px;}
.y16a{bottom:1092.300600px;}
.y146{bottom:1092.405600px;}
.y98{bottom:1097.085750px;}
.y1{bottom:1099.948050px;}
.ydc{bottom:1104.245400px;}
.y10e{bottom:1104.419250px;}
.y169{bottom:1105.803600px;}
.y145{bottom:1105.908600px;}
.y2{bottom:1132.132050px;}
.y64{bottom:1199.642400px;}
.h5{height:0.445800px;}
.h1c{height:17.511120px;}
.ha{height:20.595960px;}
.h14{height:24.264000px;}
.h15{height:24.264339px;}
.h1b{height:26.532000px;}
.h10{height:28.308000px;}
.h1e{height:30.072000px;}
.h18{height:30.954000px;}
.h6{height:31.206000px;}
.h1a{height:33.348000px;}
.h4{height:34.368000px;}
.hf{height:34.945312px;}
.h17{height:35.232000px;}
.h1d{height:35.616000px;}
.h16{height:35.664000px;}
.hd{height:37.842000px;}
.h9{height:39.246480px;}
.h7{height:39.258480px;}
.h19{height:39.311640px;}
.hb{height:39.507960px;}
.h12{height:40.440000px;}
.hc{height:40.812000px;}
.h13{height:43.047000px;}
.he{height:51.552000px;}
.h3{height:52.992000px;}
.h2{height:53.064000px;}
.h8{height:64.440000px;}
.h11{height:419.401500px;}
.h1{height:1173.750000px;}
.h0{height:1173.960000px;}
.w1{width:724.875000px;}
.w0{width:891.000000px;}
.x8{left:-826.500000px;}
.x0{left:0.000000px;}
.xf{left:5.289150px;}
.x2{left:73.644000px;}
.x33{left:76.197000px;}
.x32{left:81.153000px;}
.xe{left:83.062500px;}
.x4{left:84.150000px;}
.x1{left:85.650000px;}
.x5{left:87.900000px;}
.x31{left:93.900000px;}
.x21{left:96.945300px;}
.x22{left:101.463300px;}
.xa{left:102.725400px;}
.x24{left:119.704765px;}
.x23{left:130.320000px;}
.x25{left:145.848282px;}
.x26{left:153.510598px;}
.xc{left:157.097250px;}
.xb{left:167.670750px;}
.x28{left:192.980436px;}
.x27{left:194.119601px;}
.x29{left:212.238052px;}
.x2a{left:235.174088px;}
.x20{left:312.252300px;}
.xd{left:383.991750px;}
.x11{left:418.953300px;}
.x10{left:449.283300px;}
.x6{left:458.998500px;}
.x2c{left:460.350000px;}
.x34{left:461.547000px;}
.x2f{left:466.500150px;}
.x2e{left:471.744000px;}
.x7{left:473.250000px;}
.x30{left:479.247150px;}
.x2b{left:542.224800px;}
.x1f{left:554.640300px;}
.x1d{left:558.150300px;}
.x12{left:563.037300px;}
.x13{left:579.453300px;}
.x3{left:668.348400px;}
.x1e{left:706.776300px;}
.x19{left:709.179300px;}
.x16{left:716.352300px;}
.x18{left:717.450300px;}
.x1c{left:720.051300px;}
.x1a{left:721.176300px;}
.x17{left:726.477300px;}
.x1b{left:735.000300px;}
.x15{left:737.493300px;}
.x14{left:739.743300px;}
.x2d{left:762.231300px;}
.x9{left:857.745000px;}
@media print{
.v3{vertical-align:-29.344000pt;}
.v2{vertical-align:-16.796373pt;}
.v5{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.128000pt;}
.v1{vertical-align:16.810667pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.194667pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-0.560000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.354667pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010773pt;}
.ls0{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.511733pt;}
.ls6{letter-spacing:0.516800pt;}
.ls4{letter-spacing:0.552267pt;}
.lsa{letter-spacing:0.760000pt;}
.lsd{letter-spacing:0.912000pt;}
.ls7{letter-spacing:12.800000pt;}
.ls1{letter-spacing:21.332160pt;}
.lsb{letter-spacing:190.624000pt;}
.lsc{letter-spacing:719.338667pt;}
.ws3{word-spacing:-11.501333pt;}
.ws0{word-spacing:-9.685333pt;}
.ws70{word-spacing:-9.429333pt;}
.ws75{word-spacing:-9.258667pt;}
.ws73{word-spacing:-9.173333pt;}
.ws74{word-spacing:-8.618667pt;}
.ws71{word-spacing:-8.490667pt;}
.ws76{word-spacing:-8.474667pt;}
.ws72{word-spacing:-8.405333pt;}
.ws1{word-spacing:-8.288000pt;}
.ws4c{word-spacing:-8.000000pt;}
.ws50{word-spacing:-5.871360pt;}
.ws2{word-spacing:-5.470080pt;}
.ws61{word-spacing:-3.141333pt;}
.ws51{word-spacing:-3.090667pt;}
.ws48{word-spacing:-2.938667pt;}
.ws7d{word-spacing:-2.837333pt;}
.ws31{word-spacing:-2.381333pt;}
.ws8d{word-spacing:-1.874667pt;}
.ws9b{word-spacing:-1.824000pt;}
.ws92{word-spacing:-1.621333pt;}
.ws5a{word-spacing:-1.570667pt;}
.ws53{word-spacing:-1.520000pt;}
.ws22{word-spacing:-1.418667pt;}
.wse8{word-spacing:-1.269333pt;}
.ws3e{word-spacing:-1.266667pt;}
.ws79{word-spacing:-1.216000pt;}
.wsc7{word-spacing:-1.082667pt;}
.ws97{word-spacing:-1.064000pt;}
.ws6a{word-spacing:-1.045333pt;}
.ws42{word-spacing:-1.013333pt;}
.wsa{word-spacing:-1.008000pt;}
.ws82{word-spacing:-0.912000pt;}
.wsd9{word-spacing:-0.821333pt;}
.ws69{word-spacing:-0.810667pt;}
.wsbf{word-spacing:-0.784000pt;}
.ws65{word-spacing:-0.760000pt;}
.wscd{word-spacing:-0.709333pt;}
.wsdf{word-spacing:-0.672000pt;}
.ws9e{word-spacing:-0.608000pt;}
.ws45{word-spacing:-0.557333pt;}
.ws21{word-spacing:-0.506667pt;}
.wse5{word-spacing:-0.485333pt;}
.wsb{word-spacing:-0.448000pt;}
.wsb5{word-spacing:-0.384000pt;}
.ws23{word-spacing:-0.354667pt;}
.wsac{word-spacing:-0.341333pt;}
.wsab{word-spacing:-0.298667pt;}
.ws6b{word-spacing:-0.288000pt;}
.wsb4{word-spacing:-0.256000pt;}
.ws37{word-spacing:-0.253333pt;}
.ws5{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.202667pt;}
.wsc3{word-spacing:-0.186667pt;}
.wsa5{word-spacing:-0.152000pt;}
.wsd8{word-spacing:-0.149333pt;}
.ws24{word-spacing:-0.101333pt;}
.wse3{word-spacing:-0.074667pt;}
.wsa4{word-spacing:-0.050667pt;}
.ws4a{word-spacing:-0.045333pt;}
.ws6f{word-spacing:-0.042667pt;}
.wsd1{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.wscb{word-spacing:0.186667pt;}
.ws1d{word-spacing:0.202667pt;}
.wsd6{word-spacing:0.224000pt;}
.ws2a{word-spacing:0.253333pt;}
.ws2d{word-spacing:0.304000pt;}
.ws89{word-spacing:0.354667pt;}
.wse0{word-spacing:0.373333pt;}
.wsae{word-spacing:0.384000pt;}
.wsb6{word-spacing:0.469333pt;}
.ws7{word-spacing:0.485333pt;}
.ws49{word-spacing:0.506667pt;}
.ws6c{word-spacing:0.544000pt;}
.wse6{word-spacing:0.560000pt;}
.wsc4{word-spacing:0.597333pt;}
.ws36{word-spacing:0.608000pt;}
.wsdd{word-spacing:0.672000pt;}
.wsad{word-spacing:0.725333pt;}
.ws93{word-spacing:0.760000pt;}
.wse2{word-spacing:0.858667pt;}
.ws29{word-spacing:0.912000pt;}
.wscf{word-spacing:0.933333pt;}
.ws6d{word-spacing:0.960000pt;}
.ws9{word-spacing:1.045333pt;}
.wsde{word-spacing:1.082667pt;}
.ws98{word-spacing:1.165333pt;}
.ws6e{word-spacing:1.216000pt;}
.ws64{word-spacing:1.266667pt;}
.wsb7{word-spacing:1.280000pt;}
.ws86{word-spacing:1.317333pt;}
.wsba{word-spacing:1.408000pt;}
.ws1a{word-spacing:1.520000pt;}
.ws2c{word-spacing:1.570667pt;}
.wsc2{word-spacing:1.605333pt;}
.ws68{word-spacing:1.621333pt;}
.ws67{word-spacing:1.664000pt;}
.wsce{word-spacing:1.680000pt;}
.ws2f{word-spacing:1.824000pt;}
.wsc6{word-spacing:1.829333pt;}
.ws16{word-spacing:1.925333pt;}
.ws66{word-spacing:1.976000pt;}
.wsd0{word-spacing:2.016000pt;}
.ws2b{word-spacing:2.026667pt;}
.wsdc{word-spacing:2.053333pt;}
.ws44{word-spacing:2.077333pt;}
.ws8a{word-spacing:2.178667pt;}
.wsbe{word-spacing:2.314667pt;}
.wsd2{word-spacing:2.352000pt;}
.ws8{word-spacing:2.426667pt;}
.ws83{word-spacing:2.432000pt;}
.wsda{word-spacing:2.538667pt;}
.ws2e{word-spacing:2.634667pt;}
.ws94{word-spacing:2.786667pt;}
.wsd{word-spacing:2.800000pt;}
.wsb1{word-spacing:2.901333pt;}
.wse4{word-spacing:2.912000pt;}
.wse1{word-spacing:2.986667pt;}
.ws1e{word-spacing:2.989333pt;}
.wsc0{word-spacing:3.024000pt;}
.ws35{word-spacing:3.040000pt;}
.ws1c{word-spacing:3.090667pt;}
.ws12{word-spacing:3.141333pt;}
.wsa9{word-spacing:3.192000pt;}
.wsc8{word-spacing:3.322667pt;}
.ws81{word-spacing:3.344000pt;}
.ws58{word-spacing:3.546667pt;}
.ws9a{word-spacing:3.597333pt;}
.wsca{word-spacing:3.696000pt;}
.ws46{word-spacing:3.698667pt;}
.ws43{word-spacing:3.749333pt;}
.ws7e{word-spacing:3.850667pt;}
.wscc{word-spacing:3.882667pt;}
.ws9d{word-spacing:3.901333pt;}
.ws5c{word-spacing:3.952000pt;}
.wse7{word-spacing:3.994667pt;}
.ws77{word-spacing:4.002667pt;}
.ws9f{word-spacing:4.104000pt;}
.ws1f{word-spacing:4.154667pt;}
.ws5e{word-spacing:4.256000pt;}
.ws7f{word-spacing:4.306667pt;}
.wsc1{word-spacing:4.368000pt;}
.ws80{word-spacing:4.458667pt;}
.wsa8{word-spacing:4.560000pt;}
.wsb0{word-spacing:4.608000pt;}
.ws39{word-spacing:4.661333pt;}
.wsd4{word-spacing:4.666667pt;}
.wsc{word-spacing:4.778667pt;}
.ws99{word-spacing:4.813333pt;}
.wsd7{word-spacing:4.816000pt;}
.ws1b{word-spacing:5.016000pt;}
.ws3a{word-spacing:5.066667pt;}
.ws28{word-spacing:5.117333pt;}
.ws32{word-spacing:5.168000pt;}
.ws84{word-spacing:5.218667pt;}
.wsc9{word-spacing:5.264000pt;}
.ws88{word-spacing:5.320000pt;}
.ws27{word-spacing:5.421333pt;}
.ws56{word-spacing:5.472000pt;}
.wsc5{word-spacing:5.488000pt;}
.wsd3{word-spacing:5.525333pt;}
.ws5f{word-spacing:5.725333pt;}
.wsa3{word-spacing:5.776000pt;}
.ws91{word-spacing:5.826667pt;}
.ws38{word-spacing:5.877333pt;}
.ws96{word-spacing:5.928000pt;}
.ws52{word-spacing:5.978667pt;}
.wsdb{word-spacing:6.085333pt;}
.wsa0{word-spacing:6.130667pt;}
.ws17{word-spacing:6.232000pt;}
.ws10{word-spacing:6.333333pt;}
.wse{word-spacing:6.536000pt;}
.ws62{word-spacing:6.586667pt;}
.wsb3{word-spacing:6.741333pt;}
.ws3b{word-spacing:6.789333pt;}
.ws25{word-spacing:6.992000pt;}
.ws30{word-spacing:7.042667pt;}
.wsb8{word-spacing:7.082667pt;}
.ws5b{word-spacing:7.245333pt;}
.wsa2{word-spacing:7.296000pt;}
.wsb9{word-spacing:7.338667pt;}
.wsa6{word-spacing:7.346667pt;}
.ws55{word-spacing:7.397333pt;}
.wsaf{word-spacing:7.552000pt;}
.ws15{word-spacing:7.600000pt;}
.ws8c{word-spacing:7.650667pt;}
.wsaa{word-spacing:7.752000pt;}
.ws90{word-spacing:7.904000pt;}
.wsb2{word-spacing:8.021333pt;}
.ws7c{word-spacing:8.056000pt;}
.ws26{word-spacing:8.157333pt;}
.ws40{word-spacing:8.360000pt;}
.ws7b{word-spacing:8.410667pt;}
.ws59{word-spacing:8.461333pt;}
.wsd5{word-spacing:8.810667pt;}
.wsa1{word-spacing:8.816000pt;}
.ws11{word-spacing:9.120000pt;}
.ws7a{word-spacing:9.221333pt;}
.ws41{word-spacing:9.272000pt;}
.ws78{word-spacing:9.474667pt;}
.ws33{word-spacing:9.728000pt;}
.ws5d{word-spacing:9.778667pt;}
.ws3d{word-spacing:9.829333pt;}
.ws57{word-spacing:10.032000pt;}
.ws8f{word-spacing:10.234667pt;}
.ws3c{word-spacing:10.488000pt;}
.ws54{word-spacing:10.690667pt;}
.ws63{word-spacing:10.893333pt;}
.ws8e{word-spacing:11.146667pt;}
.ws20{word-spacing:11.349333pt;}
.ws6{word-spacing:11.648000pt;}
.ws34{word-spacing:11.754667pt;}
.ws85{word-spacing:11.805333pt;}
.ws8b{word-spacing:11.856000pt;}
.ws19{word-spacing:11.957333pt;}
.ws9c{word-spacing:12.413333pt;}
.ws18{word-spacing:12.666667pt;}
.wsbb{word-spacing:12.768000pt;}
.ws60{word-spacing:13.072000pt;}
.ws13{word-spacing:13.477333pt;}
.wsa7{word-spacing:13.781333pt;}
.ws87{word-spacing:14.845333pt;}
.ws14{word-spacing:14.946667pt;}
.wsbd{word-spacing:16.090667pt;}
.ws47{word-spacing:16.365333pt;}
.ws95{word-spacing:17.125333pt;}
.wsf{word-spacing:18.594667pt;}
.wsbc{word-spacing:25.125333pt;}
.ws4d{word-spacing:128.800000pt;}
.ws4b{word-spacing:220.719467pt;}
.ws4f{word-spacing:778.138667pt;}
.ws4e{word-spacing:810.547733pt;}
._9{margin-left:-11.284267pt;}
._18{margin-left:-8.112533pt;}
._7{margin-left:-7.114400pt;}
._13{margin-left:-6.205333pt;}
._5{margin-left:-4.965333pt;}
._2{margin-left:-3.688000pt;}
._0{margin-left:-2.133333pt;}
._3{margin-left:-1.040000pt;}
._1{width:1.041600pt;}
._4{width:2.470400pt;}
._8{width:3.402667pt;}
._a{width:4.526400pt;}
._1b{width:6.048000pt;}
._19{width:8.106667pt;}
._1d{width:10.229333pt;}
._1c{width:11.498667pt;}
._1a{width:26.400000pt;}
._b{width:31.530667pt;}
._c{width:33.725333pt;}
._6{width:39.798400pt;}
._f{width:741.589333pt;}
._12{width:857.808000pt;}
._10{width:863.968000pt;}
._d{width:882.178667pt;}
._16{width:890.026667pt;}
._11{width:910.634667pt;}
._14{width:939.306667pt;}
._17{width:954.464000pt;}
._e{width:994.784000pt;}
._15{width:1012.442667pt;}
.fs2{font-size:0.533333pt;}
.fsb{font-size:21.120000pt;}
.fs4{font-size:24.640000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:32.000447pt;}
.fs3{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:1.443200pt;}
.yb1{bottom:32.559200pt;}
.y66{bottom:58.921467pt;}
.y3{bottom:58.931067pt;}
.y144{bottom:94.882133pt;}
.y10d{bottom:95.039333pt;}
.ydb{bottom:97.399067pt;}
.y63{bottom:100.466133pt;}
.yf{bottom:101.549467pt;}
.y7e{bottom:101.630000pt;}
.y143{bottom:106.884800pt;}
.yda{bottom:111.663067pt;}
.y10c{bottom:112.367333pt;}
.ye{bottom:113.552133pt;}
.y62{bottom:117.794133pt;}
.y7d{bottom:118.958000pt;}
.yd9{bottom:121.399067pt;}
.y142{bottom:121.551333pt;}
.yd{bottom:125.554800pt;}
.y10b{bottom:129.695333pt;}
.yd8{bottom:132.063067pt;}
.y61{bottom:135.122133pt;}
.y7c{bottom:136.286000pt;}
.yc{bottom:137.557467pt;}
.yd7{bottom:142.727067pt;}
.y10a{bottom:147.023333pt;}
.yb{bottom:149.560133pt;}
.y141{bottom:150.884667pt;}
.y60{bottom:152.450133pt;}
.y7b{bottom:153.614000pt;}
.yd6{bottom:156.063067pt;}
.ya{bottom:161.562800pt;}
.y140{bottom:164.218000pt;}
.y109{bottom:164.351333pt;}
.y5f{bottom:169.778133pt;}
.y7a{bottom:170.942000pt;}
.y9{bottom:173.565467pt;}
.yd5{bottom:175.070667pt;}
.y13f{bottom:177.551333pt;}
.y108{bottom:181.679333pt;}
.y8{bottom:185.565467pt;}
.y5e{bottom:187.106133pt;}
.y79{bottom:188.270000pt;}
.yd4{bottom:189.826667pt;}
.y13e{bottom:190.884667pt;}
.y107{bottom:199.007333pt;}
.y7{bottom:201.562800pt;}
.y13d{bottom:204.218000pt;}
.y5d{bottom:204.434133pt;}
.yd3{bottom:204.582667pt;}
.y78{bottom:205.598000pt;}
.y6{bottom:213.565467pt;}
.y106{bottom:216.335333pt;}
.y13c{bottom:217.551333pt;}
.yd2{bottom:219.338667pt;}
.y5c{bottom:221.762133pt;}
.y77{bottom:222.926000pt;}
.y5{bottom:225.568133pt;}
.y13b{bottom:230.884667pt;}
.y105{bottom:233.663333pt;}
.yd1{bottom:234.626667pt;}
.y4{bottom:237.568133pt;}
.y5b{bottom:239.090133pt;}
.y76{bottom:240.254000pt;}
.y13a{bottom:244.218000pt;}
.yd0{bottom:249.914667pt;}
.y104{bottom:250.991333pt;}
.y5a{bottom:256.418133pt;}
.y139{bottom:257.551333pt;}
.y75{bottom:257.582000pt;}
.ycf{bottom:265.202667pt;}
.y103{bottom:268.319333pt;}
.y138{bottom:270.884667pt;}
.y59{bottom:273.746133pt;}
.y74{bottom:274.910000pt;}
.y34{bottom:277.741600pt;}
.yce{bottom:279.964000pt;}
.y137{bottom:284.218000pt;}
.y102{bottom:285.647333pt;}
.y58{bottom:291.074133pt;}
.y73{bottom:292.238000pt;}
.ycd{bottom:294.720000pt;}
.y33{bottom:295.069600pt;}
.y136{bottom:297.551333pt;}
.y101{bottom:302.975333pt;}
.y57{bottom:308.402133pt;}
.ycc{bottom:309.476000pt;}
.y72{bottom:309.566000pt;}
.y135{bottom:310.884667pt;}
.y32{bottom:312.397600pt;}
.y100{bottom:320.303333pt;}
.y134{bottom:324.218000pt;}
.ycb{bottom:324.232000pt;}
.y56{bottom:325.730133pt;}
.y71{bottom:326.894000pt;}
.y31{bottom:329.725600pt;}
.y133{bottom:337.551333pt;}
.yff{bottom:337.631333pt;}
.yca{bottom:338.988000pt;}
.y55{bottom:343.058133pt;}
.y70{bottom:344.222000pt;}
.y30{bottom:347.053600pt;}
.y132{bottom:350.884667pt;}
.yc9{bottom:353.744000pt;}
.yfe{bottom:354.959333pt;}
.y54{bottom:360.386133pt;}
.y6f{bottom:361.550000pt;}
.y8e{bottom:361.721733pt;}
.y131{bottom:364.218000pt;}
.y2f{bottom:364.381600pt;}
.yfd{bottom:372.287333pt;}
.yc8{bottom:372.504000pt;}
.y53{bottom:377.714133pt;}
.y6e{bottom:378.878000pt;}
.y130{bottom:380.218000pt;}
.y2e{bottom:381.709600pt;}
.yfc{bottom:389.615333pt;}
.y52{bottom:395.042133pt;}
.y6d{bottom:396.206000pt;}
.y2d{bottom:399.037600pt;}
.yc7{bottom:402.928000pt;}
.yfb{bottom:406.943333pt;}
.y12f{bottom:409.882000pt;}
.y51{bottom:412.370133pt;}
.y6c{bottom:413.534000pt;}
.y2c{bottom:416.365600pt;}
.yfa{bottom:424.271333pt;}
.y12e{bottom:427.210000pt;}
.y50{bottom:429.698133pt;}
.y6b{bottom:430.862000pt;}
.y2b{bottom:433.693600pt;}
.y83{bottom:436.650667pt;}
.yf9{bottom:441.599333pt;}
.y12d{bottom:444.538000pt;}
.y4f{bottom:447.026133pt;}
.y6a{bottom:448.190000pt;}
.y2a{bottom:451.021600pt;}
.y82{bottom:453.978667pt;}
.yf8{bottom:458.927333pt;}
.y12c{bottom:461.866000pt;}
.y4e{bottom:464.354133pt;}
.y69{bottom:465.518000pt;}
.y29{bottom:468.349600pt;}
.y81{bottom:471.306667pt;}
.yf7{bottom:476.255333pt;}
.y12b{bottom:479.194000pt;}
.y4d{bottom:481.682133pt;}
.y68{bottom:482.846000pt;}
.y28{bottom:485.677600pt;}
.y80{bottom:488.634667pt;}
.yf6{bottom:493.583333pt;}
.y12a{bottom:496.522000pt;}
.y4c{bottom:499.010133pt;}
.y27{bottom:503.005600pt;}
.y7f{bottom:505.962667pt;}
.y67{bottom:506.846000pt;}
.yf5{bottom:510.911333pt;}
.y129{bottom:513.850000pt;}
.y4b{bottom:516.338133pt;}
.y26{bottom:520.333600pt;}
.yf4{bottom:528.239333pt;}
.y128{bottom:531.178000pt;}
.y4a{bottom:533.666133pt;}
.yf3{bottom:545.567333pt;}
.yc6{bottom:548.051200pt;}
.y127{bottom:548.506000pt;}
.y49{bottom:550.994133pt;}
.yc5{bottom:561.384533pt;}
.y18c{bottom:562.843200pt;}
.yf2{bottom:562.895333pt;}
.y168{bottom:562.936533pt;}
.y25{bottom:564.996267pt;}
.y126{bottom:565.834000pt;}
.y48{bottom:568.322133pt;}
.yc4{bottom:574.717867pt;}
.y18b{bottom:574.845867pt;}
.y167{bottom:574.939200pt;}
.yf1{bottom:580.223333pt;}
.y24{bottom:580.994267pt;}
.y125{bottom:583.162000pt;}
.y47{bottom:585.650133pt;}
.y18a{bottom:586.848533pt;}
.y166{bottom:586.941867pt;}
.yc3{bottom:588.051200pt;}
.y23{bottom:596.992267pt;}
.yf0{bottom:597.551333pt;}
.y189{bottom:598.851200pt;}
.y165{bottom:598.944533pt;}
.y124{bottom:600.490000pt;}
.y46{bottom:602.978133pt;}
.y188{bottom:610.853867pt;}
.y164{bottom:610.947200pt;}
.y22{bottom:612.990267pt;}
.y123{bottom:617.818000pt;}
.y8d{bottom:618.052000pt;}
.ybb{bottom:621.207333pt;}
.yef{bottom:621.551333pt;}
.y187{bottom:622.856533pt;}
.y163{bottom:622.949867pt;}
.y45{bottom:626.978133pt;}
.y21{bottom:628.988267pt;}
.y186{bottom:634.859200pt;}
.y162{bottom:634.952533pt;}
.y122{bottom:635.146000pt;}
.y20{bottom:644.986267pt;}
.y185{bottom:646.861867pt;}
.y161{bottom:646.955200pt;}
.ya6{bottom:651.115333pt;}
.y121{bottom:652.474000pt;}
.yb8{bottom:653.296101pt;}
.yb5{bottom:654.981867pt;}
.yb7{bottom:655.287342pt;}
.yb9{bottom:657.108874pt;}
.yb3{bottom:658.647560pt;}
.y184{bottom:658.864533pt;}
.y160{bottom:658.957867pt;}
.ya5{bottom:660.731333pt;}
.y1f{bottom:660.984267pt;}
.y44{bottom:661.820267pt;}
.yb4{bottom:664.587340pt;}
.yee{bottom:669.647467pt;}
.y120{bottom:669.802000pt;}
.y183{bottom:670.867200pt;}
.y15f{bottom:670.960533pt;}
.yb6{bottom:673.530952pt;}
.y1e{bottom:676.982267pt;}
.y43{bottom:679.148267pt;}
.y182{bottom:682.869867pt;}
.y15e{bottom:682.963200pt;}
.yed{bottom:686.975467pt;}
.y11f{bottom:687.130000pt;}
.yb2{bottom:687.916533pt;}
.y1d{bottom:692.980267pt;}
.y181{bottom:694.872533pt;}
.y15d{bottom:694.965867pt;}
.y42{bottom:696.476267pt;}
.yec{bottom:704.303467pt;}
.y11e{bottom:704.458000pt;}
.y180{bottom:706.875200pt;}
.yb0{bottom:706.883333pt;}
.y15c{bottom:706.968533pt;}
.ya3{bottom:708.307333pt;}
.y41{bottom:713.804267pt;}
.ya2{bottom:717.923333pt;}
.y17f{bottom:718.877867pt;}
.y15b{bottom:718.971200pt;}
.y1c{bottom:720.310933pt;}
.yeb{bottom:721.631467pt;}
.y11d{bottom:721.786000pt;}
.yaf{bottom:730.123333pt;}
.y17e{bottom:730.880533pt;}
.y15a{bottom:730.973867pt;}
.y40{bottom:731.132267pt;}
.y1b{bottom:732.310933pt;}
.yea{bottom:738.959467pt;}
.y11c{bottom:739.114000pt;}
.y17d{bottom:742.883200pt;}
.y159{bottom:742.976533pt;}
.y1a{bottom:744.310933pt;}
.ya4{bottom:745.755333pt;}
.y3f{bottom:748.460267pt;}
.yae{bottom:753.371333pt;}
.y17c{bottom:754.885867pt;}
.y158{bottom:754.979200pt;}
.ye9{bottom:756.287467pt;}
.y19{bottom:756.310933pt;}
.y11b{bottom:756.442000pt;}
.y3e{bottom:765.788267pt;}
.y17b{bottom:766.888533pt;}
.y157{bottom:766.981867pt;}
.y18{bottom:768.310933pt;}
.ya1{bottom:770.115333pt;}
.ybe{bottom:771.725867pt;}
.ye8{bottom:773.615467pt;}
.y11a{bottom:773.770000pt;}
.yad{bottom:776.611333pt;}
.y17a{bottom:778.891200pt;}
.y156{bottom:778.984533pt;}
.ya0{bottom:779.707333pt;}
.ybd{bottom:782.181867pt;}
.y3d{bottom:783.116267pt;}
.y17{bottom:784.512693pt;}
.y179{bottom:790.893867pt;}
.ye7{bottom:790.943467pt;}
.y155{bottom:790.987200pt;}
.y119{bottom:791.098000pt;}
.ybc{bottom:792.789867pt;}
.y16{bottom:797.644267pt;}
.y8f{bottom:799.552533pt;}
.y3c{bottom:800.444267pt;}
.y178{bottom:802.896533pt;}
.y154{bottom:802.989867pt;}
.yac{bottom:804.363333pt;}
.ye6{bottom:808.271467pt;}
.y118{bottom:808.426000pt;}
.y15{bottom:809.644267pt;}
.y9f{bottom:811.283333pt;}
.y177{bottom:814.899200pt;}
.y153{bottom:814.992533pt;}
.y3b{bottom:817.772267pt;}
.y9e{bottom:820.883333pt;}
.y14{bottom:821.646933pt;}
.ye5{bottom:825.599467pt;}
.y117{bottom:825.754000pt;}
.y176{bottom:826.901867pt;}
.y152{bottom:826.995200pt;}
.y3a{bottom:835.100267pt;}
.y65{bottom:837.000000pt;}
.y175{bottom:838.904533pt;}
.y151{bottom:838.997867pt;}
.y97{bottom:841.539333pt;}
.ye4{bottom:842.927467pt;}
.y116{bottom:843.082000pt;}
.y13{bottom:844.313600pt;}
.y94{bottom:845.452933pt;}
.y174{bottom:850.907200pt;}
.y150{bottom:851.000533pt;}
.y89{bottom:851.009467pt;}
.y96{bottom:851.147333pt;}
.y39{bottom:852.428267pt;}
.y93{bottom:856.652933pt;}
.ye3{bottom:860.255467pt;}
.y115{bottom:860.410000pt;}
.y88{bottom:862.228133pt;}
.y173{bottom:862.909867pt;}
.y14f{bottom:863.003200pt;}
.y92{bottom:867.852933pt;}
.y12{bottom:868.313600pt;}
.y38{bottom:869.756267pt;}
.y9d{bottom:869.875333pt;}
.y87{bottom:873.428133pt;}
.y85{bottom:873.428933pt;}
.y172{bottom:874.912533pt;}
.y14e{bottom:875.005867pt;}
.ye2{bottom:877.583467pt;}
.y114{bottom:877.738000pt;}
.y91{bottom:879.062267pt;}
.yab{bottom:879.235333pt;}
.y9c{bottom:879.491333pt;}
.yc2{bottom:879.901867pt;}
.y171{bottom:886.915200pt;}
.y14d{bottom:887.008533pt;}
.y37{bottom:887.084267pt;}
.yaa{bottom:887.395333pt;}
.yc1{bottom:888.037867pt;}
.y90{bottom:890.262267pt;}
.y11{bottom:892.313600pt;}
.ye1{bottom:894.911467pt;}
.y113{bottom:895.066000pt;}
.y86{bottom:895.230800pt;}
.ya9{bottom:895.531333pt;}
.yc0{bottom:896.197867pt;}
.y170{bottom:898.917867pt;}
.y14c{bottom:899.011200pt;}
.y8c{bottom:901.446800pt;}
.y36{bottom:904.412267pt;}
.ya8{bottom:905.107333pt;}
.y8a{bottom:906.113467pt;}
.y84{bottom:906.116267pt;}
.y16f{bottom:910.920533pt;}
.y14b{bottom:911.013867pt;}
.ye0{bottom:912.239467pt;}
.y112{bottom:912.394000pt;}
.ya7{bottom:912.779333pt;}
.ybf{bottom:913.437867pt;}
.y10{bottom:916.313600pt;}
.y95{bottom:918.056933pt;}
.y9b{bottom:920.779333pt;}
.y35{bottom:921.740267pt;}
.y16e{bottom:922.923200pt;}
.y14a{bottom:923.016533pt;}
.ydf{bottom:929.567467pt;}
.y111{bottom:929.722000pt;}
.y9a{bottom:930.355333pt;}
.y16d{bottom:934.925867pt;}
.y149{bottom:935.019200pt;}
.y8b{bottom:940.422800pt;}
.yde{bottom:946.895467pt;}
.y16c{bottom:946.928533pt;}
.y148{bottom:947.021867pt;}
.y110{bottom:947.050000pt;}
.y16b{bottom:958.931200pt;}
.y147{bottom:959.024533pt;}
.ydd{bottom:964.223467pt;}
.y10f{bottom:964.378000pt;}
.y99{bottom:965.587333pt;}
.y16a{bottom:970.933867pt;}
.y146{bottom:971.027200pt;}
.y98{bottom:975.187333pt;}
.y1{bottom:977.731600pt;}
.ydc{bottom:981.551467pt;}
.y10e{bottom:981.706000pt;}
.y169{bottom:982.936533pt;}
.y145{bottom:983.029867pt;}
.y2{bottom:1006.339600pt;}
.y64{bottom:1066.348800pt;}
.h5{height:0.396267pt;}
.h1c{height:15.565440pt;}
.ha{height:18.307520pt;}
.h14{height:21.568000pt;}
.h15{height:21.568302pt;}
.h1b{height:23.584000pt;}
.h10{height:25.162667pt;}
.h1e{height:26.730667pt;}
.h18{height:27.514667pt;}
.h6{height:27.738667pt;}
.h1a{height:29.642667pt;}
.h4{height:30.549333pt;}
.hf{height:31.062500pt;}
.h17{height:31.317333pt;}
.h1d{height:31.658667pt;}
.h16{height:31.701333pt;}
.hd{height:33.637333pt;}
.h9{height:34.885760pt;}
.h7{height:34.896427pt;}
.h19{height:34.943680pt;}
.hb{height:35.118187pt;}
.h12{height:35.946667pt;}
.hc{height:36.277333pt;}
.h13{height:38.264000pt;}
.he{height:45.824000pt;}
.h3{height:47.104000pt;}
.h2{height:47.168000pt;}
.h8{height:57.280000pt;}
.h11{height:372.801333pt;}
.h1{height:1043.333333pt;}
.h0{height:1043.520000pt;}
.w1{width:644.333333pt;}
.w0{width:792.000000pt;}
.x8{left:-734.666667pt;}
.x0{left:0.000000pt;}
.xf{left:4.701467pt;}
.x2{left:65.461333pt;}
.x33{left:67.730667pt;}
.x32{left:72.136000pt;}
.xe{left:73.833333pt;}
.x4{left:74.800000pt;}
.x1{left:76.133333pt;}
.x5{left:78.133333pt;}
.x31{left:83.466667pt;}
.x21{left:86.173600pt;}
.x22{left:90.189600pt;}
.xa{left:91.311467pt;}
.x24{left:106.404235pt;}
.x23{left:115.840000pt;}
.x25{left:129.642917pt;}
.x26{left:136.453865pt;}
.xc{left:139.642000pt;}
.xb{left:149.040667pt;}
.x28{left:171.538166pt;}
.x27{left:172.550757pt;}
.x29{left:188.656046pt;}
.x2a{left:209.043634pt;}
.x20{left:277.557600pt;}
.xd{left:341.326000pt;}
.x11{left:372.402933pt;}
.x10{left:399.362933pt;}
.x6{left:407.998667pt;}
.x2c{left:409.200000pt;}
.x34{left:410.264000pt;}
.x2f{left:414.666800pt;}
.x2e{left:419.328000pt;}
.x7{left:420.666667pt;}
.x30{left:425.997467pt;}
.x2b{left:481.977600pt;}
.x1f{left:493.013600pt;}
.x1d{left:496.133600pt;}
.x12{left:500.477600pt;}
.x13{left:515.069600pt;}
.x3{left:594.087467pt;}
.x1e{left:628.245600pt;}
.x19{left:630.381600pt;}
.x16{left:636.757600pt;}
.x18{left:637.733600pt;}
.x1c{left:640.045600pt;}
.x1a{left:641.045600pt;}
.x17{left:645.757600pt;}
.x1b{left:653.333600pt;}
.x15{left:655.549600pt;}
.x14{left:657.549600pt;}
.x2d{left:677.538933pt;}
.x9{left:762.440000pt;}
}




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