
    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_e7447e0bedfaac0418d5788a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_a8479854d7b3f683769560ee.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_90c3e506a486872e1b46d561.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_c651259c73e0a90e371af96c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_fcc11f404e961088a7f1035b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.731445;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_fce95a0ea95a059abf0ae16a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_90dc45166ec5aeeb841fd617.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_f4b5077ac7a378eb3b568676.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ed59f16c19b58e2c77afe1b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d71fd5ae7ee70d9be038f1dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a704399ad5de484a9a097ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_c7a30f679f9979cfdd23df2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;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_a8207b5ef2e6dfe2e8c09584.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_88a2ae536c7f3359db0c91ae.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893066;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_335a3539bef3b7462da14394.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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;}
.m2{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);}
.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);}
.v5{vertical-align:-19.945800px;}
.v2{vertical-align:-15.442800px;}
.v3{vertical-align:-13.387200px;}
.v8{vertical-align:-3.253200px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v6{vertical-align:15.940800px;}
.v4{vertical-align:19.945200px;}
.v1{vertical-align:21.619200px;}
.ls13{letter-spacing:-0.780000px;}
.ls41{letter-spacing:-0.420000px;}
.ls42{letter-spacing:-0.252000px;}
.ls62{letter-spacing:-0.144000px;}
.ls46{letter-spacing:-0.120000px;}
.ls60{letter-spacing:-0.096000px;}
.ls30{letter-spacing:-0.060000px;}
.ls61{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003600px;}
.ls0{letter-spacing:0.004200px;}
.ls4e{letter-spacing:0.048000px;}
.ls2c{letter-spacing:0.060000px;}
.ls3f{letter-spacing:0.072000px;}
.ls5e{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.120000px;}
.ls5a{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.240000px;}
.ls5d{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.336000px;}
.ls1d{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.420000px;}
.ls3d{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.480000px;}
.ls4f{letter-spacing:0.528000px;}
.lse{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.600000px;}
.ls2e{letter-spacing:0.612000px;}
.ls45{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.660000px;}
.ls3c{letter-spacing:0.684000px;}
.ls1c{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.756000px;}
.ls52{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.780000px;}
.ls9{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.900000px;}
.ls55{letter-spacing:0.912000px;}
.lsb{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.020000px;}
.ls2d{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.116000px;}
.ls32{letter-spacing:1.140000px;}
.ls2{letter-spacing:1.200000px;}
.ls35{letter-spacing:1.202400px;}
.ls36{letter-spacing:1.260000px;}
.ls5c{letter-spacing:1.296000px;}
.lsd{letter-spacing:1.320000px;}
.ls28{letter-spacing:1.380000px;}
.ls5b{letter-spacing:1.392000px;}
.ls25{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.500000px;}
.ls37{letter-spacing:1.560000px;}
.ls3a{letter-spacing:1.620000px;}
.ls4d{letter-spacing:1.632000px;}
.lsf{letter-spacing:1.680000px;}
.ls59{letter-spacing:1.728000px;}
.ls24{letter-spacing:1.740000px;}
.ls22{letter-spacing:1.800000px;}
.ls57{letter-spacing:1.814400px;}
.ls34{letter-spacing:1.860000px;}
.ls20{letter-spacing:1.920000px;}
.ls6{letter-spacing:1.980000px;}
.ls39{letter-spacing:2.040000px;}
.ls31{letter-spacing:2.100000px;}
.ls51{letter-spacing:2.112000px;}
.ls7{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.220000px;}
.ls8{letter-spacing:2.280000px;}
.lsc{letter-spacing:2.340000px;}
.ls21{letter-spacing:2.400000px;}
.ls54{letter-spacing:2.448000px;}
.ls1f{letter-spacing:2.460000px;}
.ls56{letter-spacing:2.496000px;}
.ls47{letter-spacing:2.520000px;}
.ls5f{letter-spacing:2.544000px;}
.ls49{letter-spacing:2.580000px;}
.ls48{letter-spacing:2.640000px;}
.ls27{letter-spacing:2.700000px;}
.ls18{letter-spacing:2.760000px;}
.ls2b{letter-spacing:2.820000px;}
.ls19{letter-spacing:3.000000px;}
.ls58{letter-spacing:3.024000px;}
.ls43{letter-spacing:3.240000px;}
.ls4{letter-spacing:3.300000px;}
.ls15{letter-spacing:3.540000px;}
.ls14{letter-spacing:3.900000px;}
.ls1e{letter-spacing:3.960000px;}
.ls23{letter-spacing:4.620000px;}
.ls38{letter-spacing:5.040000px;}
.ls4a{letter-spacing:5.100000px;}
.ls4b{letter-spacing:5.160000px;}
.ls44{letter-spacing:5.340000px;}
.ls33{letter-spacing:5.640000px;}
.ls4c{letter-spacing:7.200000px;}
.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:-35.194800px;}
.ws30{word-spacing:-18.540000px;}
.ws3{word-spacing:-17.514000px;}
.ws36{word-spacing:-17.400000px;}
.ws2f{word-spacing:-17.100000px;}
.ws4{word-spacing:-16.680000px;}
.ws5b{word-spacing:-16.380000px;}
.ws3b{word-spacing:-16.260000px;}
.ws34{word-spacing:-16.140000px;}
.ws5{word-spacing:-16.020000px;}
.ws6{word-spacing:-15.780000px;}
.ws5a{word-spacing:-15.420000px;}
.ws5c{word-spacing:-15.240000px;}
.ws13{word-spacing:-15.180000px;}
.ws6e{word-spacing:-15.024000px;}
.wsf{word-spacing:-15.000000px;}
.ws71{word-spacing:-14.544000px;}
.ws74{word-spacing:-14.160000px;}
.ws6b{word-spacing:-13.632000px;}
.ws70{word-spacing:-13.392000px;}
.ws14{word-spacing:-13.344000px;}
.ws6d{word-spacing:-12.720000px;}
.ws6f{word-spacing:-12.528000px;}
.ws6c{word-spacing:-12.336000px;}
.ws57{word-spacing:-12.000000px;}
.ws73{word-spacing:-11.904000px;}
.ws72{word-spacing:-11.856000px;}
.ws2{word-spacing:-10.508400px;}
.ws31{word-spacing:-10.260000px;}
.ws38{word-spacing:-10.116000px;}
.ws12{word-spacing:-9.900000px;}
.ws3a{word-spacing:-9.756000px;}
.ws32{word-spacing:-9.720000px;}
.ws35{word-spacing:-9.684000px;}
.ws11{word-spacing:-9.612000px;}
.ws33{word-spacing:-9.576000px;}
.ws37{word-spacing:-9.468000px;}
.ws39{word-spacing:-9.072000px;}
.ws10{word-spacing:-9.000000px;}
.ws3c{word-spacing:-8.748000px;}
.ws3d{word-spacing:-7.200000px;}
.ws45{word-spacing:-3.540000px;}
.ws8{word-spacing:-2.886000px;}
.ws89{word-spacing:-2.544000px;}
.ws85{word-spacing:-2.496000px;}
.ws84{word-spacing:-2.448000px;}
.ws53{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.220000px;}
.ws3e{word-spacing:-2.160000px;}
.wsa{word-spacing:-2.106000px;}
.ws86{word-spacing:-1.920000px;}
.ws4c{word-spacing:-1.860000px;}
.ws2a{word-spacing:-1.800000px;}
.ws2b{word-spacing:-1.380000px;}
.ws50{word-spacing:-1.260000px;}
.ws9{word-spacing:-1.197000px;}
.ws24{word-spacing:-1.020000px;}
.ws4a{word-spacing:-0.780000px;}
.ws82{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.660000px;}
.ws7a{word-spacing:-0.528000px;}
.ws5f{word-spacing:-0.420000px;}
.ws25{word-spacing:-0.360000px;}
.ws81{word-spacing:-0.336000px;}
.ws1b{word-spacing:-0.240000px;}
.ws27{word-spacing:-0.180000px;}
.ws0{word-spacing:-0.126600px;}
.ws16{word-spacing:-0.120000px;}
.ws2d{word-spacing:-0.060000px;}
.ws7b{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws1e{word-spacing:0.060000px;}
.ws55{word-spacing:0.120000px;}
.ws59{word-spacing:0.192000px;}
.ws63{word-spacing:0.240000px;}
.ws7d{word-spacing:0.336000px;}
.ws78{word-spacing:0.384000px;}
.ws43{word-spacing:0.420000px;}
.ws7e{word-spacing:0.432000px;}
.ws8e{word-spacing:0.480000px;}
.ws69{word-spacing:0.528000px;}
.ws21{word-spacing:0.600000px;}
.ws8c{word-spacing:0.624000px;}
.ws60{word-spacing:0.660000px;}
.ws2e{word-spacing:0.780000px;}
.ws2c{word-spacing:0.840000px;}
.ws15{word-spacing:0.960000px;}
.ws29{word-spacing:1.020000px;}
.ws8a{word-spacing:1.056000px;}
.ws83{word-spacing:1.152000px;}
.wse{word-spacing:1.320000px;}
.ws7f{word-spacing:1.440000px;}
.ws1c{word-spacing:1.560000px;}
.ws87{word-spacing:1.680000px;}
.ws66{word-spacing:1.740000px;}
.ws8f{word-spacing:1.776000px;}
.ws22{word-spacing:1.860000px;}
.ws3f{word-spacing:1.920000px;}
.ws88{word-spacing:2.160000px;}
.ws67{word-spacing:2.340000px;}
.ws75{word-spacing:2.400000px;}
.ws1a{word-spacing:2.460000px;}
.ws8d{word-spacing:2.496000px;}
.ws5e{word-spacing:2.580000px;}
.ws52{word-spacing:2.760000px;}
.ws68{word-spacing:2.832000px;}
.ws56{word-spacing:2.940000px;}
.ws42{word-spacing:3.000000px;}
.ws65{word-spacing:3.240000px;}
.ws8b{word-spacing:3.360000px;}
.ws19{word-spacing:3.420000px;}
.ws80{word-spacing:3.456000px;}
.ws44{word-spacing:3.480000px;}
.ws64{word-spacing:3.780000px;}
.ws28{word-spacing:3.840000px;}
.ws23{word-spacing:3.900000px;}
.ws79{word-spacing:3.936000px;}
.ws18{word-spacing:3.960000px;}
.ws6a{word-spacing:3.984000px;}
.ws7c{word-spacing:4.032000px;}
.ws61{word-spacing:4.200000px;}
.ws54{word-spacing:4.260000px;}
.ws26{word-spacing:4.320000px;}
.ws41{word-spacing:4.380000px;}
.ws62{word-spacing:4.440000px;}
.ws1f{word-spacing:4.500000px;}
.ws40{word-spacing:4.560000px;}
.ws4f{word-spacing:4.620000px;}
.wsd{word-spacing:4.740000px;}
.ws17{word-spacing:4.860000px;}
.wsb{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws4e{word-spacing:5.040000px;}
.ws76{word-spacing:5.460000px;}
.ws77{word-spacing:5.520000px;}
.ws4b{word-spacing:5.700000px;}
.ws48{word-spacing:5.940000px;}
.ws49{word-spacing:6.060000px;}
.ws47{word-spacing:6.180000px;}
.ws51{word-spacing:6.540000px;}
.ws4d{word-spacing:6.780000px;}
.ws46{word-spacing:7.080000px;}
.ws5d{word-spacing:171.984000px;}
.ws58{word-spacing:1163.400000px;}
._9{margin-left:-2898.144000px;}
._1b{margin-left:-2874.336000px;}
._1e{margin-left:-1682.064000px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.132200px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.041600px;}
._5{width:1.020000px;}
._7{width:3.096000px;}
._6{width:5.040000px;}
._8{width:6.480000px;}
._a{width:8.280000px;}
._d{width:198.864000px;}
._c{width:257.424000px;}
._1a{width:434.112000px;}
._18{width:458.112000px;}
._17{width:465.600000px;}
._10{width:470.598000px;}
._15{width:473.088000px;}
._16{width:474.864000px;}
._19{width:477.600000px;}
._f{width:486.864000px;}
._14{width:497.088000px;}
._12{width:509.088000px;}
._11{width:532.752000px;}
._13{width:536.640000px;}
._e{width:548.640000px;}
._b{width:868.944000px;}
._1c{width:998.760000px;}
._1d{width:1063.356600px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.400000px;}
.fs5{font-size:27.000000px;}
.fsc{font-size:28.800000px;}
.fsb{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.ye3{bottom:83.224350px;}
.ydf{bottom:83.635350px;}
.y61{bottom:83.770350px;}
.y90{bottom:84.053850px;}
.yc7{bottom:84.948600px;}
.y1f{bottom:88.026000px;}
.yc4{bottom:88.107750px;}
.ye2{bottom:98.968350px;}
.yc6{bottom:100.692600px;}
.yde{bottom:101.635350px;}
.y60{bottom:101.770350px;}
.y8f{bottom:102.053850px;}
.y1e{bottom:103.023000px;}
.yc3{bottom:104.355750px;}
.ye1{bottom:114.712350px;}
.ydd{bottom:119.230350px;}
.y5f{bottom:119.770350px;}
.y8e{bottom:120.053850px;}
.yc2{bottom:120.603750px;}
.y15f{bottom:125.263500px;}
.y121{bottom:128.121900px;}
.ye0{bottom:130.456350px;}
.yc1{bottom:136.851750px;}
.y5e{bottom:137.770350px;}
.y8d{bottom:138.053850px;}
.y15e{bottom:140.263500px;}
.y120{bottom:143.121900px;}
.yc0{bottom:153.099750px;}
.yf5{bottom:153.448500px;}
.y15d{bottom:155.263500px;}
.ydc{bottom:155.635350px;}
.y5d{bottom:155.770350px;}
.y8c{bottom:156.053850px;}
.yef{bottom:157.141350px;}
.y11f{bottom:158.121900px;}
.y2a{bottom:163.497000px;}
.ycb{bottom:168.618300px;}
.ybf{bottom:169.347750px;}
.y15c{bottom:170.263500px;}
.y11e{bottom:173.121900px;}
.ydb{bottom:173.635350px;}
.y5c{bottom:173.770350px;}
.y8b{bottom:174.053850px;}
.yff{bottom:176.474700px;}
.y29{bottom:181.497000px;}
.y15b{bottom:185.263500px;}
.ybe{bottom:185.595750px;}
.yf7{bottom:186.145350px;}
.y11d{bottom:188.121900px;}
.yda{bottom:191.635350px;}
.y5b{bottom:191.770350px;}
.y8a{bottom:192.053850px;}
.y28{bottom:199.497000px;}
.y15a{bottom:200.263500px;}
.ybd{bottom:201.843750px;}
.y11c{bottom:203.121900px;}
.yd9{bottom:209.635350px;}
.y5a{bottom:209.770350px;}
.y89{bottom:210.053850px;}
.y159{bottom:215.263500px;}
.y27{bottom:217.497000px;}
.y100{bottom:218.118000px;}
.y11b{bottom:218.121900px;}
.yd8{bottom:227.635350px;}
.y59{bottom:227.770350px;}
.y88{bottom:228.053850px;}
.y158{bottom:230.263500px;}
.ybc{bottom:230.851650px;}
.yea{bottom:231.745350px;}
.y11a{bottom:233.121900px;}
.y26{bottom:235.497000px;}
.yf8{bottom:244.141350px;}
.y157{bottom:245.263500px;}
.y101{bottom:245.372850px;}
.yd7{bottom:245.635350px;}
.y58{bottom:245.770350px;}
.y87{bottom:246.053850px;}
.y119{bottom:248.121900px;}
.y25{bottom:253.497000px;}
.ye9{bottom:258.998100px;}
.ybb{bottom:259.855650px;}
.y156{bottom:260.263500px;}
.y118{bottom:263.121900px;}
.yd6{bottom:263.635350px;}
.y57{bottom:263.770350px;}
.y86{bottom:264.053850px;}
.y24{bottom:271.497000px;}
.ye8{bottom:272.623350px;}
.y155{bottom:275.263500px;}
.y117{bottom:278.121900px;}
.yd5{bottom:281.635350px;}
.y56{bottom:281.770350px;}
.y85{bottom:282.053850px;}
.y23{bottom:289.497000px;}
.y154{bottom:290.263500px;}
.yba{bottom:292.240350px;}
.y116{bottom:293.121900px;}
.yee{bottom:293.281350px;}
.yd4{bottom:299.635350px;}
.y55{bottom:299.770350px;}
.y84{bottom:300.070350px;}
.yf9{bottom:302.137350px;}
.y153{bottom:305.263500px;}
.y22{bottom:307.497000px;}
.y115{bottom:308.121900px;}
.yb9{bottom:311.740350px;}
.yd3{bottom:317.635350px;}
.y54{bottom:317.770350px;}
.y83{bottom:318.070350px;}
.y152{bottom:320.263500px;}
.y114{bottom:323.121900px;}
.y21{bottom:325.497000px;}
.y151{bottom:335.263500px;}
.yd2{bottom:335.635350px;}
.y53{bottom:335.770350px;}
.y82{bottom:336.070350px;}
.y113{bottom:338.121900px;}
.y2c{bottom:343.497000px;}
.y150{bottom:350.263500px;}
.y112{bottom:353.121900px;}
.yb0{bottom:353.493600px;}
.yd1{bottom:353.635350px;}
.y52{bottom:353.770350px;}
.y81{bottom:354.070350px;}
.yfa{bottom:360.133350px;}
.y20{bottom:361.092000px;}
.y2b{bottom:361.497000px;}
.y14f{bottom:365.263500px;}
.y111{bottom:368.121900px;}
.yaf{bottom:371.493600px;}
.yd0{bottom:371.635350px;}
.y51{bottom:371.770350px;}
.y80{bottom:372.070350px;}
.y14e{bottom:380.263500px;}
.y110{bottom:383.121900px;}
.yae{bottom:389.493600px;}
.ycf{bottom:389.635350px;}
.yb8{bottom:389.770350px;}
.y14d{bottom:395.263500px;}
.y10f{bottom:398.121900px;}
.yca{bottom:404.077350px;}
.y50{bottom:407.365350px;}
.y7f{bottom:407.665350px;}
.yb7{bottom:407.770350px;}
.y14c{bottom:410.263500px;}
.y10e{bottom:413.121900px;}
.yfb{bottom:418.129350px;}
.yad{bottom:425.088600px;}
.yce{bottom:425.230350px;}
.y14b{bottom:425.263500px;}
.yb6{bottom:425.770350px;}
.y10d{bottom:428.121900px;}
.yfd{bottom:435.901200px;}
.y14a{bottom:440.263500px;}
.y1d{bottom:442.264200px;}
.ycc{bottom:442.678650px;}
.y10c{bottom:443.121900px;}
.y4f{bottom:443.230350px;}
.yb5{bottom:443.770350px;}
.y7e{bottom:443.920350px;}
.y149{bottom:455.263500px;}
.y10b{bottom:458.121900px;}
.yec{bottom:461.425350px;}
.yb4{bottom:461.770350px;}
.y7d{bottom:461.920350px;}
.y1c{bottom:469.609200px;}
.y148{bottom:470.263500px;}
.y10a{bottom:473.121900px;}
.yfc{bottom:476.125350px;}
.yac{bottom:479.628600px;}
.yb3{bottom:479.770350px;}
.y7c{bottom:479.920350px;}
.y147{bottom:485.263500px;}
.y1b{bottom:487.609200px;}
.y109{bottom:488.121900px;}
.yfe{bottom:497.438700px;}
.yab{bottom:497.628600px;}
.y4e{bottom:497.770350px;}
.y7b{bottom:497.920350px;}
.y146{bottom:500.263500px;}
.y108{bottom:503.121900px;}
.y1a{bottom:505.609200px;}
.yf0{bottom:507.517350px;}
.y145{bottom:515.263500px;}
.yaa{bottom:515.628600px;}
.y4d{bottom:515.770350px;}
.y7a{bottom:515.920350px;}
.y107{bottom:518.121900px;}
.y19{bottom:523.609200px;}
.y144{bottom:530.263500px;}
.ya9{bottom:533.628600px;}
.y4c{bottom:533.770350px;}
.y79{bottom:533.920350px;}
.y18{bottom:541.609200px;}
.ye7{bottom:543.349200px;}
.y143{bottom:545.263500px;}
.y106{bottom:551.230350px;}
.ya8{bottom:551.628600px;}
.y4b{bottom:551.770350px;}
.y78{bottom:551.920350px;}
.ye6{bottom:557.043300px;}
.y17{bottom:559.609200px;}
.y142{bottom:560.263500px;}
.yf1{bottom:565.513350px;}
.ya7{bottom:569.628600px;}
.y4a{bottom:569.770350px;}
.y77{bottom:569.920350px;}
.ye5{bottom:570.735900px;}
.y141{bottom:575.263500px;}
.y16{bottom:577.609200px;}
.ye4{bottom:585.229050px;}
.ya6{bottom:587.628600px;}
.y49{bottom:587.770350px;}
.y76{bottom:587.920350px;}
.y140{bottom:590.263500px;}
.y15{bottom:595.609200px;}
.y13f{bottom:605.263500px;}
.ya5{bottom:605.628600px;}
.y48{bottom:605.770350px;}
.yed{bottom:605.785350px;}
.y75{bottom:605.920350px;}
.y14{bottom:613.609200px;}
.y13e{bottom:620.263500px;}
.y105{bottom:623.365350px;}
.yf2{bottom:623.509350px;}
.ya4{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.y74{bottom:623.920350px;}
.y13{bottom:631.609200px;}
.y13d{bottom:635.263500px;}
.ya3{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y73{bottom:641.920350px;}
.yf6{bottom:644.048850px;}
.y13c{bottom:650.263500px;}
.ya2{bottom:659.635350px;}
.y45{bottom:659.770350px;}
.y72{bottom:659.920350px;}
.y13b{bottom:665.263500px;}
.y12{bottom:676.765500px;}
.y104{bottom:677.365350px;}
.ya1{bottom:677.635350px;}
.y44{bottom:677.770350px;}
.y71{bottom:677.920350px;}
.y13a{bottom:680.263500px;}
.yf3{bottom:681.505350px;}
.y11{bottom:689.217000px;}
.y139{bottom:695.263500px;}
.ya0{bottom:695.635350px;}
.y43{bottom:695.770350px;}
.y70{bottom:695.920350px;}
.y10{bottom:703.814850px;}
.y138{bottom:710.263500px;}
.y9f{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.y6f{bottom:713.920350px;}
.yc9{bottom:716.392350px;}
.y137{bottom:725.263500px;}
.y103{bottom:731.365350px;}
.y9e{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.y6e{bottom:731.920350px;}
.yf4{bottom:739.501350px;}
.y136{bottom:740.263500px;}
.yf{bottom:742.044150px;}
.y9d{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.y6d{bottom:749.920350px;}
.ye{bottom:751.683600px;}
.y135{bottom:755.263500px;}
.ycd{bottom:763.459950px;}
.y9c{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.y6c{bottom:767.920350px;}
.yd{bottom:769.044300px;}
.y134{bottom:770.265900px;}
.yc{bottom:778.683600px;}
.yeb{bottom:782.977350px;}
.y133{bottom:785.265900px;}
.y9b{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.y6b{bottom:785.920350px;}
.yb{bottom:796.044300px;}
.y132{bottom:800.265900px;}
.y9a{bottom:803.635350px;}
.y3d{bottom:803.770350px;}
.y6a{bottom:803.920350px;}
.ya{bottom:805.683600px;}
.y131{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.y99{bottom:821.635350px;}
.y3c{bottom:821.770350px;}
.y69{bottom:821.920350px;}
.y130{bottom:830.265900px;}
.y8{bottom:836.544300px;}
.y98{bottom:839.635350px;}
.y3b{bottom:839.770350px;}
.y68{bottom:839.920350px;}
.y12f{bottom:845.265900px;}
.y102{bottom:857.365350px;}
.y97{bottom:857.635350px;}
.y3a{bottom:857.770350px;}
.y67{bottom:857.920350px;}
.y12e{bottom:860.265900px;}
.y7{bottom:866.836200px;}
.y12d{bottom:875.265900px;}
.y96{bottom:875.635350px;}
.y39{bottom:875.770350px;}
.y66{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y12c{bottom:890.265900px;}
.y95{bottom:893.635350px;}
.y38{bottom:893.770350px;}
.y65{bottom:893.920350px;}
.y12b{bottom:905.265900px;}
.y94{bottom:911.635350px;}
.y37{bottom:911.770350px;}
.y64{bottom:911.920350px;}
.y12a{bottom:920.265900px;}
.y93{bottom:929.635350px;}
.y36{bottom:929.770350px;}
.y63{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y129{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y128{bottom:950.265900px;}
.y92{bottom:965.230350px;}
.y127{bottom:965.265900px;}
.y62{bottom:965.515350px;}
.y34{bottom:965.770350px;}
.y4{bottom:970.465200px;}
.y126{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y125{bottom:995.265900px;}
.y32{bottom:1001.770350px;}
.y3{bottom:1006.926000px;}
.y124{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.yb2{bottom:1019.778600px;}
.y123{bottom:1025.265900px;}
.yc8{bottom:1029.757350px;}
.y30{bottom:1037.770350px;}
.yb1{bottom:1037.778600px;}
.y122{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y91{bottom:1132.418700px;}
.y160{bottom:1132.423500px;}
.yc5{bottom:1132.455750px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h9{height:17.047266px;}
.h7{height:19.683105px;}
.ha{height:28.412109px;}
.h2{height:30.597656px;}
.h1a{height:32.507812px;}
.h1b{height:32.531250px;}
.he{height:32.783203px;}
.h8{height:32.805176px;}
.h1d{height:33.328125px;}
.h18{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h19{height:35.951738px;}
.h12{height:41.660156px;}
.hf{height:41.689453px;}
.hd{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.h16{height:44.925872px;}
.h14{height:44.932472px;}
.h13{height:44.958872px;}
.h15{height:44.959472px;}
.h17{height:44.984672px;}
.h6{height:49.117634px;}
.h5{height:49.138634px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1c{height:654.001500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:338.032500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:9.973350px;}
.x26{left:17.043450px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x17{left:99.925050px;}
.x2d{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x29{left:113.626950px;}
.x28{left:118.462950px;}
.x25{left:119.674950px;}
.x27{left:123.298950px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.x2b{left:136.274700px;}
.x19{left:140.808750px;}
.xd{left:144.725400px;}
.x21{left:151.090950px;}
.x2c{left:194.285400px;}
.x5{left:212.876400px;}
.x13{left:220.145250px;}
.x24{left:222.706950px;}
.x12{left:232.360350px;}
.x22{left:254.278950px;}
.x23{left:268.414950px;}
.x1f{left:289.714800px;}
.x1a{left:300.742500px;}
.x20{left:303.586950px;}
.x1b{left:341.701050px;}
.x16{left:350.641050px;}
.x1d{left:369.226950px;}
.xa{left:455.041500px;}
.xe{left:457.103100px;}
.x14{left:478.370250px;}
.x7{left:480.476400px;}
.x2e{left:482.603400px;}
.xf{left:491.101500px;}
.x15{left:512.349300px;}
.x8{left:514.496400px;}
.x1c{left:525.028500px;}
.x1e{left:591.910350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x10{left:735.065400px;}
.x18{left:756.258450px;}
@media print{
.v5{vertical-align:-17.729600pt;}
.v2{vertical-align:-13.726933pt;}
.v3{vertical-align:-11.899733pt;}
.v8{vertical-align:-2.891733pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v6{vertical-align:14.169600pt;}
.v4{vertical-align:17.729067pt;}
.v1{vertical-align:19.217067pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls41{letter-spacing:-0.373333pt;}
.ls42{letter-spacing:-0.224000pt;}
.ls62{letter-spacing:-0.128000pt;}
.ls46{letter-spacing:-0.106667pt;}
.ls60{letter-spacing:-0.085333pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls61{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003200pt;}
.ls0{letter-spacing:0.003733pt;}
.ls4e{letter-spacing:0.042667pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls3f{letter-spacing:0.064000pt;}
.ls5e{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls5a{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.213333pt;}
.ls5d{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.298667pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.373333pt;}
.ls3d{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls4f{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls2e{letter-spacing:0.544000pt;}
.ls45{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.586667pt;}
.ls3c{letter-spacing:0.608000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.672000pt;}
.ls52{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.693333pt;}
.ls9{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.800000pt;}
.ls55{letter-spacing:0.810667pt;}
.lsb{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.906667pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:0.992000pt;}
.ls32{letter-spacing:1.013333pt;}
.ls2{letter-spacing:1.066667pt;}
.ls35{letter-spacing:1.068800pt;}
.ls36{letter-spacing:1.120000pt;}
.ls5c{letter-spacing:1.152000pt;}
.lsd{letter-spacing:1.173333pt;}
.ls28{letter-spacing:1.226667pt;}
.ls5b{letter-spacing:1.237333pt;}
.ls25{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.333333pt;}
.ls37{letter-spacing:1.386667pt;}
.ls3a{letter-spacing:1.440000pt;}
.ls4d{letter-spacing:1.450667pt;}
.lsf{letter-spacing:1.493333pt;}
.ls59{letter-spacing:1.536000pt;}
.ls24{letter-spacing:1.546667pt;}
.ls22{letter-spacing:1.600000pt;}
.ls57{letter-spacing:1.612800pt;}
.ls34{letter-spacing:1.653333pt;}
.ls20{letter-spacing:1.706667pt;}
.ls6{letter-spacing:1.760000pt;}
.ls39{letter-spacing:1.813333pt;}
.ls31{letter-spacing:1.866667pt;}
.ls51{letter-spacing:1.877333pt;}
.ls7{letter-spacing:1.920000pt;}
.ls29{letter-spacing:1.973333pt;}
.ls8{letter-spacing:2.026667pt;}
.lsc{letter-spacing:2.080000pt;}
.ls21{letter-spacing:2.133333pt;}
.ls54{letter-spacing:2.176000pt;}
.ls1f{letter-spacing:2.186667pt;}
.ls56{letter-spacing:2.218667pt;}
.ls47{letter-spacing:2.240000pt;}
.ls5f{letter-spacing:2.261333pt;}
.ls49{letter-spacing:2.293333pt;}
.ls48{letter-spacing:2.346667pt;}
.ls27{letter-spacing:2.400000pt;}
.ls18{letter-spacing:2.453333pt;}
.ls2b{letter-spacing:2.506667pt;}
.ls19{letter-spacing:2.666667pt;}
.ls58{letter-spacing:2.688000pt;}
.ls43{letter-spacing:2.880000pt;}
.ls4{letter-spacing:2.933333pt;}
.ls15{letter-spacing:3.146667pt;}
.ls14{letter-spacing:3.466667pt;}
.ls1e{letter-spacing:3.520000pt;}
.ls23{letter-spacing:4.106667pt;}
.ls38{letter-spacing:4.480000pt;}
.ls4a{letter-spacing:4.533333pt;}
.ls4b{letter-spacing:4.586667pt;}
.ls44{letter-spacing:4.746667pt;}
.ls33{letter-spacing:5.013333pt;}
.ls4c{letter-spacing:6.400000pt;}
.ws1{word-spacing:-31.284267pt;}
.ws30{word-spacing:-16.480000pt;}
.ws3{word-spacing:-15.568000pt;}
.ws36{word-spacing:-15.466667pt;}
.ws2f{word-spacing:-15.200000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws5b{word-spacing:-14.560000pt;}
.ws3b{word-spacing:-14.453333pt;}
.ws34{word-spacing:-14.346667pt;}
.ws5{word-spacing:-14.240000pt;}
.ws6{word-spacing:-14.026667pt;}
.ws5a{word-spacing:-13.706667pt;}
.ws5c{word-spacing:-13.546667pt;}
.ws13{word-spacing:-13.493333pt;}
.ws6e{word-spacing:-13.354667pt;}
.wsf{word-spacing:-13.333333pt;}
.ws71{word-spacing:-12.928000pt;}
.ws74{word-spacing:-12.586667pt;}
.ws6b{word-spacing:-12.117333pt;}
.ws70{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.861333pt;}
.ws6d{word-spacing:-11.306667pt;}
.ws6f{word-spacing:-11.136000pt;}
.ws6c{word-spacing:-10.965333pt;}
.ws57{word-spacing:-10.666667pt;}
.ws73{word-spacing:-10.581333pt;}
.ws72{word-spacing:-10.538667pt;}
.ws2{word-spacing:-9.340800pt;}
.ws31{word-spacing:-9.120000pt;}
.ws38{word-spacing:-8.992000pt;}
.ws12{word-spacing:-8.800000pt;}
.ws3a{word-spacing:-8.672000pt;}
.ws32{word-spacing:-8.640000pt;}
.ws35{word-spacing:-8.608000pt;}
.ws11{word-spacing:-8.544000pt;}
.ws33{word-spacing:-8.512000pt;}
.ws37{word-spacing:-8.416000pt;}
.ws39{word-spacing:-8.064000pt;}
.ws10{word-spacing:-8.000000pt;}
.ws3c{word-spacing:-7.776000pt;}
.ws3d{word-spacing:-6.400000pt;}
.ws45{word-spacing:-3.146667pt;}
.ws8{word-spacing:-2.565333pt;}
.ws89{word-spacing:-2.261333pt;}
.ws85{word-spacing:-2.218667pt;}
.ws84{word-spacing:-2.176000pt;}
.ws53{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws3e{word-spacing:-1.920000pt;}
.wsa{word-spacing:-1.872000pt;}
.ws86{word-spacing:-1.706667pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws2b{word-spacing:-1.226667pt;}
.ws50{word-spacing:-1.120000pt;}
.ws9{word-spacing:-1.064000pt;}
.ws24{word-spacing:-0.906667pt;}
.ws4a{word-spacing:-0.693333pt;}
.ws82{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.586667pt;}
.ws7a{word-spacing:-0.469333pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws25{word-spacing:-0.320000pt;}
.ws81{word-spacing:-0.298667pt;}
.ws1b{word-spacing:-0.213333pt;}
.ws27{word-spacing:-0.160000pt;}
.ws0{word-spacing:-0.112533pt;}
.ws16{word-spacing:-0.106667pt;}
.ws2d{word-spacing:-0.053333pt;}
.ws7b{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.053333pt;}
.ws55{word-spacing:0.106667pt;}
.ws59{word-spacing:0.170667pt;}
.ws63{word-spacing:0.213333pt;}
.ws7d{word-spacing:0.298667pt;}
.ws78{word-spacing:0.341333pt;}
.ws43{word-spacing:0.373333pt;}
.ws7e{word-spacing:0.384000pt;}
.ws8e{word-spacing:0.426667pt;}
.ws69{word-spacing:0.469333pt;}
.ws21{word-spacing:0.533333pt;}
.ws8c{word-spacing:0.554667pt;}
.ws60{word-spacing:0.586667pt;}
.ws2e{word-spacing:0.693333pt;}
.ws2c{word-spacing:0.746667pt;}
.ws15{word-spacing:0.853333pt;}
.ws29{word-spacing:0.906667pt;}
.ws8a{word-spacing:0.938667pt;}
.ws83{word-spacing:1.024000pt;}
.wse{word-spacing:1.173333pt;}
.ws7f{word-spacing:1.280000pt;}
.ws1c{word-spacing:1.386667pt;}
.ws87{word-spacing:1.493333pt;}
.ws66{word-spacing:1.546667pt;}
.ws8f{word-spacing:1.578667pt;}
.ws22{word-spacing:1.653333pt;}
.ws3f{word-spacing:1.706667pt;}
.ws88{word-spacing:1.920000pt;}
.ws67{word-spacing:2.080000pt;}
.ws75{word-spacing:2.133333pt;}
.ws1a{word-spacing:2.186667pt;}
.ws8d{word-spacing:2.218667pt;}
.ws5e{word-spacing:2.293333pt;}
.ws52{word-spacing:2.453333pt;}
.ws68{word-spacing:2.517333pt;}
.ws56{word-spacing:2.613333pt;}
.ws42{word-spacing:2.666667pt;}
.ws65{word-spacing:2.880000pt;}
.ws8b{word-spacing:2.986667pt;}
.ws19{word-spacing:3.040000pt;}
.ws80{word-spacing:3.072000pt;}
.ws44{word-spacing:3.093333pt;}
.ws64{word-spacing:3.360000pt;}
.ws28{word-spacing:3.413333pt;}
.ws23{word-spacing:3.466667pt;}
.ws79{word-spacing:3.498667pt;}
.ws18{word-spacing:3.520000pt;}
.ws6a{word-spacing:3.541333pt;}
.ws7c{word-spacing:3.584000pt;}
.ws61{word-spacing:3.733333pt;}
.ws54{word-spacing:3.786667pt;}
.ws26{word-spacing:3.840000pt;}
.ws41{word-spacing:3.893333pt;}
.ws62{word-spacing:3.946667pt;}
.ws1f{word-spacing:4.000000pt;}
.ws40{word-spacing:4.053333pt;}
.ws4f{word-spacing:4.106667pt;}
.wsd{word-spacing:4.213333pt;}
.ws17{word-spacing:4.320000pt;}
.wsb{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws4e{word-spacing:4.480000pt;}
.ws76{word-spacing:4.853333pt;}
.ws77{word-spacing:4.906667pt;}
.ws4b{word-spacing:5.066667pt;}
.ws48{word-spacing:5.280000pt;}
.ws49{word-spacing:5.386667pt;}
.ws47{word-spacing:5.493333pt;}
.ws51{word-spacing:5.813333pt;}
.ws4d{word-spacing:6.026667pt;}
.ws46{word-spacing:6.293333pt;}
.ws5d{word-spacing:152.874667pt;}
.ws58{word-spacing:1034.133333pt;}
._9{margin-left:-2576.128000pt;}
._1b{margin-left:-2554.965333pt;}
._1e{margin-left:-1495.168000pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.673067pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.925867pt;}
._5{width:0.906667pt;}
._7{width:2.752000pt;}
._6{width:4.480000pt;}
._8{width:5.760000pt;}
._a{width:7.360000pt;}
._d{width:176.768000pt;}
._c{width:228.821333pt;}
._1a{width:385.877333pt;}
._18{width:407.210667pt;}
._17{width:413.866667pt;}
._10{width:418.309333pt;}
._15{width:420.522667pt;}
._16{width:422.101333pt;}
._19{width:424.533333pt;}
._f{width:432.768000pt;}
._14{width:441.856000pt;}
._12{width:452.522667pt;}
._11{width:473.557333pt;}
._13{width:477.013333pt;}
._e{width:487.680000pt;}
._b{width:772.394667pt;}
._1c{width:887.786667pt;}
._1d{width:945.205867pt;}
.fs7{font-size:20.800000pt;}
.fs5{font-size:24.000000pt;}
.fsc{font-size:25.600000pt;}
.fsb{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.ye3{bottom:73.977200pt;}
.ydf{bottom:74.342533pt;}
.y61{bottom:74.462533pt;}
.y90{bottom:74.714533pt;}
.yc7{bottom:75.509867pt;}
.y1f{bottom:78.245333pt;}
.yc4{bottom:78.318000pt;}
.ye2{bottom:87.971867pt;}
.yc6{bottom:89.504533pt;}
.yde{bottom:90.342533pt;}
.y60{bottom:90.462533pt;}
.y8f{bottom:90.714533pt;}
.y1e{bottom:91.576000pt;}
.yc3{bottom:92.760667pt;}
.ye1{bottom:101.966533pt;}
.ydd{bottom:105.982533pt;}
.y5f{bottom:106.462533pt;}
.y8e{bottom:106.714533pt;}
.yc2{bottom:107.203333pt;}
.y15f{bottom:111.345333pt;}
.y121{bottom:113.886133pt;}
.ye0{bottom:115.961200pt;}
.yc1{bottom:121.646000pt;}
.y5e{bottom:122.462533pt;}
.y8d{bottom:122.714533pt;}
.y15e{bottom:124.678667pt;}
.y120{bottom:127.219467pt;}
.yc0{bottom:136.088667pt;}
.yf5{bottom:136.398667pt;}
.y15d{bottom:138.012000pt;}
.ydc{bottom:138.342533pt;}
.y5d{bottom:138.462533pt;}
.y8c{bottom:138.714533pt;}
.yef{bottom:139.681200pt;}
.y11f{bottom:140.552800pt;}
.y2a{bottom:145.330667pt;}
.ycb{bottom:149.882933pt;}
.ybf{bottom:150.531333pt;}
.y15c{bottom:151.345333pt;}
.y11e{bottom:153.886133pt;}
.ydb{bottom:154.342533pt;}
.y5c{bottom:154.462533pt;}
.y8b{bottom:154.714533pt;}
.yff{bottom:156.866400pt;}
.y29{bottom:161.330667pt;}
.y15b{bottom:164.678667pt;}
.ybe{bottom:164.974000pt;}
.yf7{bottom:165.462533pt;}
.y11d{bottom:167.219467pt;}
.yda{bottom:170.342533pt;}
.y5b{bottom:170.462533pt;}
.y8a{bottom:170.714533pt;}
.y28{bottom:177.330667pt;}
.y15a{bottom:178.012000pt;}
.ybd{bottom:179.416667pt;}
.y11c{bottom:180.552800pt;}
.yd9{bottom:186.342533pt;}
.y5a{bottom:186.462533pt;}
.y89{bottom:186.714533pt;}
.y159{bottom:191.345333pt;}
.y27{bottom:193.330667pt;}
.y100{bottom:193.882667pt;}
.y11b{bottom:193.886133pt;}
.yd8{bottom:202.342533pt;}
.y59{bottom:202.462533pt;}
.y88{bottom:202.714533pt;}
.y158{bottom:204.678667pt;}
.ybc{bottom:205.201467pt;}
.yea{bottom:205.995867pt;}
.y11a{bottom:207.219467pt;}
.y26{bottom:209.330667pt;}
.yf8{bottom:217.014533pt;}
.y157{bottom:218.012000pt;}
.y101{bottom:218.109200pt;}
.yd7{bottom:218.342533pt;}
.y58{bottom:218.462533pt;}
.y87{bottom:218.714533pt;}
.y119{bottom:220.552800pt;}
.y25{bottom:225.330667pt;}
.ye9{bottom:230.220533pt;}
.ybb{bottom:230.982800pt;}
.y156{bottom:231.345333pt;}
.y118{bottom:233.886133pt;}
.yd6{bottom:234.342533pt;}
.y57{bottom:234.462533pt;}
.y86{bottom:234.714533pt;}
.y24{bottom:241.330667pt;}
.ye8{bottom:242.331867pt;}
.y155{bottom:244.678667pt;}
.y117{bottom:247.219467pt;}
.yd5{bottom:250.342533pt;}
.y56{bottom:250.462533pt;}
.y85{bottom:250.714533pt;}
.y23{bottom:257.330667pt;}
.y154{bottom:258.012000pt;}
.yba{bottom:259.769200pt;}
.y116{bottom:260.552800pt;}
.yee{bottom:260.694533pt;}
.yd4{bottom:266.342533pt;}
.y55{bottom:266.462533pt;}
.y84{bottom:266.729200pt;}
.yf9{bottom:268.566533pt;}
.y153{bottom:271.345333pt;}
.y22{bottom:273.330667pt;}
.y115{bottom:273.886133pt;}
.yb9{bottom:277.102533pt;}
.yd3{bottom:282.342533pt;}
.y54{bottom:282.462533pt;}
.y83{bottom:282.729200pt;}
.y152{bottom:284.678667pt;}
.y114{bottom:287.219467pt;}
.y21{bottom:289.330667pt;}
.y151{bottom:298.012000pt;}
.yd2{bottom:298.342533pt;}
.y53{bottom:298.462533pt;}
.y82{bottom:298.729200pt;}
.y113{bottom:300.552800pt;}
.y2c{bottom:305.330667pt;}
.y150{bottom:311.345333pt;}
.y112{bottom:313.886133pt;}
.yb0{bottom:314.216533pt;}
.yd1{bottom:314.342533pt;}
.y52{bottom:314.462533pt;}
.y81{bottom:314.729200pt;}
.yfa{bottom:320.118533pt;}
.y20{bottom:320.970667pt;}
.y2b{bottom:321.330667pt;}
.y14f{bottom:324.678667pt;}
.y111{bottom:327.219467pt;}
.yaf{bottom:330.216533pt;}
.yd0{bottom:330.342533pt;}
.y51{bottom:330.462533pt;}
.y80{bottom:330.729200pt;}
.y14e{bottom:338.012000pt;}
.y110{bottom:340.552800pt;}
.yae{bottom:346.216533pt;}
.ycf{bottom:346.342533pt;}
.yb8{bottom:346.462533pt;}
.y14d{bottom:351.345333pt;}
.y10f{bottom:353.886133pt;}
.yca{bottom:359.179867pt;}
.y50{bottom:362.102533pt;}
.y7f{bottom:362.369200pt;}
.yb7{bottom:362.462533pt;}
.y14c{bottom:364.678667pt;}
.y10e{bottom:367.219467pt;}
.yfb{bottom:371.670533pt;}
.yad{bottom:377.856533pt;}
.yce{bottom:377.982533pt;}
.y14b{bottom:378.012000pt;}
.yb6{bottom:378.462533pt;}
.y10d{bottom:380.552800pt;}
.yfd{bottom:387.467733pt;}
.y14a{bottom:391.345333pt;}
.y1d{bottom:393.123733pt;}
.ycc{bottom:393.492133pt;}
.y10c{bottom:393.886133pt;}
.y4f{bottom:393.982533pt;}
.yb5{bottom:394.462533pt;}
.y7e{bottom:394.595867pt;}
.y149{bottom:404.678667pt;}
.y10b{bottom:407.219467pt;}
.yec{bottom:410.155867pt;}
.yb4{bottom:410.462533pt;}
.y7d{bottom:410.595867pt;}
.y1c{bottom:417.430400pt;}
.y148{bottom:418.012000pt;}
.y10a{bottom:420.552800pt;}
.yfc{bottom:423.222533pt;}
.yac{bottom:426.336533pt;}
.yb3{bottom:426.462533pt;}
.y7c{bottom:426.595867pt;}
.y147{bottom:431.345333pt;}
.y1b{bottom:433.430400pt;}
.y109{bottom:433.886133pt;}
.yfe{bottom:442.167733pt;}
.yab{bottom:442.336533pt;}
.y4e{bottom:442.462533pt;}
.y7b{bottom:442.595867pt;}
.y146{bottom:444.678667pt;}
.y108{bottom:447.219467pt;}
.y1a{bottom:449.430400pt;}
.yf0{bottom:451.126533pt;}
.y145{bottom:458.012000pt;}
.yaa{bottom:458.336533pt;}
.y4d{bottom:458.462533pt;}
.y7a{bottom:458.595867pt;}
.y107{bottom:460.552800pt;}
.y19{bottom:465.430400pt;}
.y144{bottom:471.345333pt;}
.ya9{bottom:474.336533pt;}
.y4c{bottom:474.462533pt;}
.y79{bottom:474.595867pt;}
.y18{bottom:481.430400pt;}
.ye7{bottom:482.977067pt;}
.y143{bottom:484.678667pt;}
.y106{bottom:489.982533pt;}
.ya8{bottom:490.336533pt;}
.y4b{bottom:490.462533pt;}
.y78{bottom:490.595867pt;}
.ye6{bottom:495.149600pt;}
.y17{bottom:497.430400pt;}
.y142{bottom:498.012000pt;}
.yf1{bottom:502.678533pt;}
.ya7{bottom:506.336533pt;}
.y4a{bottom:506.462533pt;}
.y77{bottom:506.595867pt;}
.ye5{bottom:507.320800pt;}
.y141{bottom:511.345333pt;}
.y16{bottom:513.430400pt;}
.ye4{bottom:520.203600pt;}
.ya6{bottom:522.336533pt;}
.y49{bottom:522.462533pt;}
.y76{bottom:522.595867pt;}
.y140{bottom:524.678667pt;}
.y15{bottom:529.430400pt;}
.y13f{bottom:538.012000pt;}
.ya5{bottom:538.336533pt;}
.y48{bottom:538.462533pt;}
.yed{bottom:538.475867pt;}
.y75{bottom:538.595867pt;}
.y14{bottom:545.430400pt;}
.y13e{bottom:551.345333pt;}
.y105{bottom:554.102533pt;}
.yf2{bottom:554.230533pt;}
.ya4{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.y74{bottom:554.595867pt;}
.y13{bottom:561.430400pt;}
.y13d{bottom:564.678667pt;}
.ya3{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y73{bottom:570.595867pt;}
.yf6{bottom:572.487867pt;}
.y13c{bottom:578.012000pt;}
.ya2{bottom:586.342533pt;}
.y45{bottom:586.462533pt;}
.y72{bottom:586.595867pt;}
.y13b{bottom:591.345333pt;}
.y12{bottom:601.569333pt;}
.y104{bottom:602.102533pt;}
.ya1{bottom:602.342533pt;}
.y44{bottom:602.462533pt;}
.y71{bottom:602.595867pt;}
.y13a{bottom:604.678667pt;}
.yf3{bottom:605.782533pt;}
.y11{bottom:612.637333pt;}
.y139{bottom:618.012000pt;}
.ya0{bottom:618.342533pt;}
.y43{bottom:618.462533pt;}
.y70{bottom:618.595867pt;}
.y10{bottom:625.613200pt;}
.y138{bottom:631.345333pt;}
.y9f{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.y6f{bottom:634.595867pt;}
.yc9{bottom:636.793200pt;}
.y137{bottom:644.678667pt;}
.y103{bottom:650.102533pt;}
.y9e{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.y6e{bottom:650.595867pt;}
.yf4{bottom:657.334533pt;}
.y136{bottom:658.012000pt;}
.yf{bottom:659.594800pt;}
.y9d{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.y6d{bottom:666.595867pt;}
.ye{bottom:668.163200pt;}
.y135{bottom:671.345333pt;}
.ycd{bottom:678.631067pt;}
.y9c{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.y6c{bottom:682.595867pt;}
.yd{bottom:683.594933pt;}
.y134{bottom:684.680800pt;}
.yc{bottom:692.163200pt;}
.yeb{bottom:695.979867pt;}
.y133{bottom:698.014133pt;}
.y9b{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.y6b{bottom:698.595867pt;}
.yb{bottom:707.594933pt;}
.y132{bottom:711.347467pt;}
.y9a{bottom:714.342533pt;}
.y3d{bottom:714.462533pt;}
.y6a{bottom:714.595867pt;}
.ya{bottom:716.163200pt;}
.y131{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.y99{bottom:730.342533pt;}
.y3c{bottom:730.462533pt;}
.y69{bottom:730.595867pt;}
.y130{bottom:738.014133pt;}
.y8{bottom:743.594933pt;}
.y98{bottom:746.342533pt;}
.y3b{bottom:746.462533pt;}
.y68{bottom:746.595867pt;}
.y12f{bottom:751.347467pt;}
.y102{bottom:762.102533pt;}
.y97{bottom:762.342533pt;}
.y3a{bottom:762.462533pt;}
.y67{bottom:762.595867pt;}
.y12e{bottom:764.680800pt;}
.y7{bottom:770.521067pt;}
.y12d{bottom:778.014133pt;}
.y96{bottom:778.342533pt;}
.y39{bottom:778.462533pt;}
.y66{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y12c{bottom:791.347467pt;}
.y95{bottom:794.342533pt;}
.y38{bottom:794.462533pt;}
.y65{bottom:794.595867pt;}
.y12b{bottom:804.680800pt;}
.y94{bottom:810.342533pt;}
.y37{bottom:810.462533pt;}
.y64{bottom:810.595867pt;}
.y12a{bottom:818.014133pt;}
.y93{bottom:826.342533pt;}
.y36{bottom:826.462533pt;}
.y63{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y129{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y128{bottom:844.680800pt;}
.y92{bottom:857.982533pt;}
.y127{bottom:858.014133pt;}
.y62{bottom:858.235867pt;}
.y34{bottom:858.462533pt;}
.y4{bottom:862.635733pt;}
.y126{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y125{bottom:884.680800pt;}
.y32{bottom:890.462533pt;}
.y3{bottom:895.045333pt;}
.y124{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.yb2{bottom:906.469867pt;}
.y123{bottom:911.347467pt;}
.yc8{bottom:915.339867pt;}
.y30{bottom:922.462533pt;}
.yb1{bottom:922.469867pt;}
.y122{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y91{bottom:1006.594400pt;}
.y160{bottom:1006.598667pt;}
.yc5{bottom:1006.627333pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h9{height:15.153125pt;}
.h7{height:17.496094pt;}
.ha{height:25.255208pt;}
.h2{height:27.197917pt;}
.h1a{height:28.895833pt;}
.h1b{height:28.916667pt;}
.he{height:29.140625pt;}
.h8{height:29.160156pt;}
.h1d{height:29.625000pt;}
.h18{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h19{height:31.957100pt;}
.h12{height:37.031250pt;}
.hf{height:37.057292pt;}
.hd{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.h16{height:39.934108pt;}
.h14{height:39.939975pt;}
.h13{height:39.963442pt;}
.h15{height:39.963975pt;}
.h17{height:39.986375pt;}
.h6{height:43.660119pt;}
.h5{height:43.678785pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1c{height:581.334667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:300.473333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:8.865200pt;}
.x26{left:15.149733pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x17{left:88.822267pt;}
.x2d{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x29{left:101.001733pt;}
.x28{left:105.300400pt;}
.x25{left:106.377733pt;}
.x27{left:109.599067pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.x2b{left:121.133067pt;}
.x19{left:125.163333pt;}
.xd{left:128.644800pt;}
.x21{left:134.303067pt;}
.x2c{left:172.698133pt;}
.x5{left:189.223467pt;}
.x13{left:195.684667pt;}
.x24{left:197.961733pt;}
.x12{left:206.542533pt;}
.x22{left:226.025733pt;}
.x23{left:238.591067pt;}
.x1f{left:257.524267pt;}
.x1a{left:267.326667pt;}
.x20{left:269.855067pt;}
.x1b{left:303.734267pt;}
.x16{left:311.680933pt;}
.x1d{left:328.201733pt;}
.xa{left:404.481333pt;}
.xe{left:406.313867pt;}
.x14{left:425.218000pt;}
.x7{left:427.090133pt;}
.x2e{left:428.980800pt;}
.xf{left:436.534667pt;}
.x15{left:455.421600pt;}
.x8{left:457.330133pt;}
.x1c{left:466.692000pt;}
.x1e{left:526.142533pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x10{left:653.391467pt;}
.x18{left:672.229733pt;}
}




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