
    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_7469a8ac3891f17d4f7c80c0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c3f52041012fb47f35dc5af6.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_f3614f273a0046b126d441db.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da3929ce1c727d7d8395f014.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_91bd2c8d0df2ea01b5afb3b8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_851d4f2d5e44ce53cc93fbb6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3f4c3c2664c62dc8937686e6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5455ab04cea3103a7a216af6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a83e12413f1e2b124846f7f6.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.620000px;}
.ls3c{letter-spacing:-1.776000px;}
.lsb{letter-spacing:-0.780000px;}
.ls29{letter-spacing:-0.240000px;}
.ls5e{letter-spacing:-0.192000px;}
.ls6c{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.060000px;}
.ls5f{letter-spacing:-0.048000px;}
.lsa{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.048000px;}
.ls1e{letter-spacing:0.060000px;}
.ls48{letter-spacing:0.096000px;}
.ls30{letter-spacing:0.120000px;}
.ls6b{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.180000px;}
.ls63{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls4f{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.300000px;}
.lse{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.480000px;}
.ls42{letter-spacing:0.528000px;}
.ls19{letter-spacing:0.540000px;}
.ls49{letter-spacing:0.576000px;}
.ls2e{letter-spacing:0.600000px;}
.ls59{letter-spacing:0.624000px;}
.ls1d{letter-spacing:0.660000px;}
.ls17{letter-spacing:0.720000px;}
.ls6a{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.780000px;}
.ls31{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.900000px;}
.ls58{letter-spacing:0.912000px;}
.ls1b{letter-spacing:0.960000px;}
.ls4b{letter-spacing:1.008000px;}
.ls26{letter-spacing:1.020000px;}
.ls3e{letter-spacing:1.056000px;}
.ls20{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.140000px;}
.ls9{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.260000px;}
.ls22{letter-spacing:1.320000px;}
.ls62{letter-spacing:1.344000px;}
.ls1f{letter-spacing:1.380000px;}
.ls68{letter-spacing:1.392000px;}
.ls1a{letter-spacing:1.440000px;}
.ls60{letter-spacing:1.488000px;}
.ls16{letter-spacing:1.500000px;}
.ls52{letter-spacing:1.536000px;}
.ls13{letter-spacing:1.560000px;}
.ls69{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.620000px;}
.ls50{letter-spacing:1.632000px;}
.ls2f{letter-spacing:1.680000px;}
.ls18{letter-spacing:1.740000px;}
.ls4e{letter-spacing:1.776000px;}
.ls2c{letter-spacing:1.800000px;}
.ls25{letter-spacing:1.860000px;}
.ls57{letter-spacing:1.872000px;}
.ls11{letter-spacing:1.920000px;}
.ls67{letter-spacing:1.968000px;}
.ls8{letter-spacing:1.980000px;}
.ls2{letter-spacing:2.040000px;}
.ls61{letter-spacing:2.064000px;}
.ls21{letter-spacing:2.100000px;}
.ls2b{letter-spacing:2.160000px;}
.ls64{letter-spacing:2.208000px;}
.ls3d{letter-spacing:2.220000px;}
.ls5{letter-spacing:2.280000px;}
.ls2a{letter-spacing:2.340000px;}
.ls1c{letter-spacing:2.400000px;}
.ls66{letter-spacing:2.448000px;}
.ls23{letter-spacing:2.520000px;}
.ls43{letter-spacing:2.580000px;}
.ls3f{letter-spacing:2.640000px;}
.ls37{letter-spacing:2.700000px;}
.ls38{letter-spacing:2.760000px;}
.ls51{letter-spacing:2.832000px;}
.ls3a{letter-spacing:2.880000px;}
.ls54{letter-spacing:2.928000px;}
.ls39{letter-spacing:2.940000px;}
.ls7{letter-spacing:3.000000px;}
.ls40{letter-spacing:3.060000px;}
.ls65{letter-spacing:3.072000px;}
.ls35{letter-spacing:3.120000px;}
.ls4a{letter-spacing:3.168000px;}
.ls32{letter-spacing:3.180000px;}
.ls0{letter-spacing:3.240000px;}
.ls36{letter-spacing:3.360000px;}
.ls12{letter-spacing:3.420000px;}
.ls33{letter-spacing:3.480000px;}
.ls56{letter-spacing:3.504000px;}
.ls44{letter-spacing:3.780000px;}
.ls15{letter-spacing:3.900000px;}
.ls5a{letter-spacing:3.984000px;}
.ls4d{letter-spacing:4.032000px;}
.ls3{letter-spacing:4.260000px;}
.ls55{letter-spacing:4.272000px;}
.ls45{letter-spacing:4.620000px;}
.ls5c{letter-spacing:5.088000px;}
.ls5d{letter-spacing:5.136000px;}
.ls5b{letter-spacing:6.960000px;}
.ls41{letter-spacing:7.260000px;}
.ls34{letter-spacing:7.560000px;}
.ls47{letter-spacing:8.160000px;}
.ls46{letter-spacing:9.600000px;}
.ls3b{letter-spacing:169.824000px;}
.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;}
}
.ws5e{word-spacing:-21.300000px;}
.ws65{word-spacing:-17.136000px;}
.ws38{word-spacing:-16.680000px;}
.ws63{word-spacing:-15.120000px;}
.ws83{word-spacing:-14.832000px;}
.ws87{word-spacing:-13.632000px;}
.ws0{word-spacing:-13.344000px;}
.ws60{word-spacing:-13.008000px;}
.ws86{word-spacing:-12.864000px;}
.ws64{word-spacing:-12.624000px;}
.ws84{word-spacing:-12.528000px;}
.ws85{word-spacing:-12.480000px;}
.ws5f{word-spacing:-12.096000px;}
.ws61{word-spacing:-12.000000px;}
.ws62{word-spacing:-11.952000px;}
.ws81{word-spacing:-5.136000px;}
.ws80{word-spacing:-3.984000px;}
.ws7a{word-spacing:-3.504000px;}
.ws70{word-spacing:-3.168000px;}
.ws91{word-spacing:-3.120000px;}
.ws58{word-spacing:-3.060000px;}
.ws27{word-spacing:-3.000000px;}
.ws2{word-spacing:-2.886000px;}
.ws8c{word-spacing:-2.832000px;}
.ws1b{word-spacing:-2.520000px;}
.ws20{word-spacing:-2.460000px;}
.ws9b{word-spacing:-2.400000px;}
.ws1c{word-spacing:-2.340000px;}
.ws23{word-spacing:-2.220000px;}
.ws8e{word-spacing:-2.208000px;}
.ws30{word-spacing:-2.160000px;}
.ws8b{word-spacing:-2.064000px;}
.ws51{word-spacing:-2.040000px;}
.ws9{word-spacing:-1.980000px;}
.ws96{word-spacing:-1.968000px;}
.ws24{word-spacing:-1.920000px;}
.ws6c{word-spacing:-1.860000px;}
.ws73{word-spacing:-1.776000px;}
.ws1a{word-spacing:-1.740000px;}
.ws76{word-spacing:-1.632000px;}
.ws26{word-spacing:-1.620000px;}
.ws77{word-spacing:-1.584000px;}
.ws10{word-spacing:-1.560000px;}
.ws88{word-spacing:-1.488000px;}
.ws15{word-spacing:-1.440000px;}
.ws97{word-spacing:-1.392000px;}
.ws6a{word-spacing:-1.320000px;}
.wsa{word-spacing:-1.260000px;}
.ws19{word-spacing:-1.200000px;}
.wsb{word-spacing:-1.140000px;}
.ws5c{word-spacing:-1.080000px;}
.ws55{word-spacing:-1.020000px;}
.ws72{word-spacing:-1.008000px;}
.ws7f{word-spacing:-0.960000px;}
.ws7b{word-spacing:-0.912000px;}
.ws8{word-spacing:-0.900000px;}
.ws45{word-spacing:-0.864000px;}
.ws2a{word-spacing:-0.840000px;}
.ws99{word-spacing:-0.816000px;}
.ws56{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.624000px;}
.ws4f{word-spacing:-0.540000px;}
.ws74{word-spacing:-0.528000px;}
.wsc{word-spacing:-0.480000px;}
.ws2e{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.360000px;}
.ws28{word-spacing:-0.300000px;}
.ws7d{word-spacing:-0.288000px;}
.ws1d{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.192000px;}
.ws21{word-spacing:-0.180000px;}
.ws6e{word-spacing:-0.096000px;}
.ws1f{word-spacing:-0.060000px;}
.ws8a{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws82{word-spacing:0.048000px;}
.ws17{word-spacing:0.060000px;}
.ws67{word-spacing:0.120000px;}
.ws94{word-spacing:0.144000px;}
.ws78{word-spacing:0.192000px;}
.ws9c{word-spacing:0.336000px;}
.ws50{word-spacing:0.360000px;}
.ws43{word-spacing:0.420000px;}
.ws2d{word-spacing:0.540000px;}
.ws31{word-spacing:0.840000px;}
.ws75{word-spacing:0.960000px;}
.ws7c{word-spacing:1.104000px;}
.ws41{word-spacing:1.200000px;}
.ws57{word-spacing:1.260000px;}
.ws79{word-spacing:1.296000px;}
.ws5a{word-spacing:1.320000px;}
.ws44{word-spacing:1.380000px;}
.ws11{word-spacing:1.440000px;}
.ws93{word-spacing:1.488000px;}
.ws7{word-spacing:1.620000px;}
.ws8f{word-spacing:1.632000px;}
.ws4e{word-spacing:1.740000px;}
.ws14{word-spacing:1.800000px;}
.ws9a{word-spacing:1.824000px;}
.ws92{word-spacing:1.872000px;}
.ws2f{word-spacing:1.920000px;}
.ws7e{word-spacing:1.968000px;}
.ws29{word-spacing:1.980000px;}
.ws5b{word-spacing:2.040000px;}
.ws54{word-spacing:2.100000px;}
.ws34{word-spacing:2.160000px;}
.ws22{word-spacing:2.280000px;}
.ws2c{word-spacing:2.340000px;}
.ws36{word-spacing:2.520000px;}
.ws6d{word-spacing:2.544000px;}
.ws2b{word-spacing:2.580000px;}
.ws1e{word-spacing:2.640000px;}
.wsd{word-spacing:3.000000px;}
.ws4d{word-spacing:3.060000px;}
.ws90{word-spacing:3.072000px;}
.wsf{word-spacing:3.120000px;}
.ws98{word-spacing:3.168000px;}
.ws5{word-spacing:3.180000px;}
.ws95{word-spacing:3.312000px;}
.ws4b{word-spacing:3.420000px;}
.ws4c{word-spacing:3.480000px;}
.ws5d{word-spacing:3.504000px;}
.ws32{word-spacing:3.720000px;}
.ws12{word-spacing:3.780000px;}
.ws89{word-spacing:3.792000px;}
.ws13{word-spacing:3.840000px;}
.ws16{word-spacing:3.900000px;}
.ws53{word-spacing:3.936000px;}
.ws66{word-spacing:3.960000px;}
.ws71{word-spacing:3.984000px;}
.ws52{word-spacing:4.200000px;}
.ws4{word-spacing:4.260000px;}
.ws25{word-spacing:4.320000px;}
.ws33{word-spacing:4.380000px;}
.ws35{word-spacing:4.440000px;}
.wse{word-spacing:4.500000px;}
.ws42{word-spacing:4.620000px;}
.ws18{word-spacing:4.680000px;}
.ws68{word-spacing:4.740000px;}
.ws40{word-spacing:4.860000px;}
.ws6{word-spacing:4.920000px;}
.ws3{word-spacing:4.980000px;}
.ws69{word-spacing:5.460000px;}
.ws6b{word-spacing:5.520000px;}
.ws3f{word-spacing:100.080000px;}
.ws3b{word-spacing:152.448000px;}
.ws3d{word-spacing:159.120000px;}
.ws3a{word-spacing:166.752000px;}
.ws3c{word-spacing:248.592000px;}
.ws3e{word-spacing:252.624000px;}
.ws47{word-spacing:376.176000px;}
.ws49{word-spacing:402.240000px;}
.ws48{word-spacing:414.240000px;}
.ws4a{word-spacing:415.104000px;}
.ws46{word-spacing:770.736000px;}
.ws39{word-spacing:844.560000px;}
._b{margin-left:-2898.144000px;}
._d{margin-left:-2874.336000px;}
._2{margin-left:-9.368400px;}
._e{margin-left:-7.560000px;}
._f{margin-left:-6.420000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.170000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._5{width:1.020000px;}
._9{width:2.400000px;}
._c{width:3.480000px;}
._6{width:4.800000px;}
._7{width:5.850000px;}
._8{width:6.900000px;}
._a{width:7.980000px;}
._1a{width:112.080000px;}
._19{width:113.088000px;}
._2c{width:120.096000px;}
._2b{width:121.104000px;}
._15{width:147.120000px;}
._18{width:151.104000px;}
._2f{width:160.518000px;}
._1e{width:171.120000px;}
._21{width:175.104000px;}
._25{width:183.120000px;}
._12{width:188.208000px;}
._16{width:195.120000px;}
._26{width:201.120000px;}
._1f{width:207.120000px;}
._32{width:219.120000px;}
._14{width:220.176000px;}
._17{width:224.160000px;}
._2e{width:245.040000px;}
._27{width:249.072000px;}
._1d{width:256.176000px;}
._20{width:260.160000px;}
._24{width:280.176000px;}
._31{width:292.176000px;}
._2a{width:311.040000px;}
._11{width:346.926000px;}
._1b{width:380.352000px;}
._2d{width:392.352000px;}
._33{width:398.208000px;}
._38{width:402.240000px;}
._3c{width:415.104000px;}
._36{width:418.224000px;}
._3b{width:426.240000px;}
._34{width:432.192000px;}
._29{width:446.304000px;}
._10{width:517.950000px;}
._1c{width:532.368000px;}
._13{width:541.632000px;}
._22{width:581.232000px;}
._30{width:592.320000px;}
._37{width:601.824000px;}
._3e{width:632.730000px;}
._3a{width:640.698000px;}
._23{width:644.208000px;}
._28{width:820.896000px;}
._35{width:833.904000px;}
._39{width:932.496000px;}
._3d{width:940.464000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs6{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;}
.y2e{bottom:47.777250px;}
.y102{bottom:83.236050px;}
.y124{bottom:83.635350px;}
.y64{bottom:83.770350px;}
.yc5{bottom:83.935350px;}
.y21{bottom:88.026750px;}
.y15e{bottom:92.121900px;}
.yfc{bottom:92.363550px;}
.ye8{bottom:92.375400px;}
.y101{bottom:98.980050px;}
.y123{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.yc4{bottom:101.935350px;}
.y20{bottom:103.023000px;}
.y15d{bottom:107.121900px;}
.yfb{bottom:108.611550px;}
.ye7{bottom:108.623400px;}
.y100{bottom:114.724050px;}
.y122{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.yc3{bottom:119.935350px;}
.y15c{bottom:122.121900px;}
.yfa{bottom:124.859550px;}
.ye6{bottom:124.871400px;}
.y15b{bottom:137.121900px;}
.y121{bottom:137.230350px;}
.y61{bottom:137.770350px;}
.y92{bottom:137.920350px;}
.yc2{bottom:137.935350px;}
.yf9{bottom:141.107550px;}
.ye5{bottom:141.119400px;}
.y15a{bottom:152.121900px;}
.y60{bottom:155.770350px;}
.y91{bottom:155.920350px;}
.yc1{bottom:155.935350px;}
.yf8{bottom:157.355550px;}
.ye4{bottom:157.367400px;}
.y29{bottom:163.922250px;}
.y159{bottom:167.121900px;}
.y120{bottom:173.230350px;}
.y66{bottom:173.365350px;}
.yf7{bottom:173.603550px;}
.y5f{bottom:173.770350px;}
.y90{bottom:173.920350px;}
.yc0{bottom:173.935350px;}
.y28{bottom:181.922250px;}
.y158{bottom:182.121900px;}
.ye3{bottom:186.371400px;}
.yf6{bottom:189.851550px;}
.y5e{bottom:191.770350px;}
.y8f{bottom:191.920350px;}
.ybf{bottom:191.935350px;}
.y157{bottom:197.121900px;}
.y27{bottom:199.922250px;}
.yf5{bottom:206.099550px;}
.y65{bottom:209.230350px;}
.y11f{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y8e{bottom:209.920350px;}
.ybe{bottom:209.935350px;}
.y156{bottom:212.121900px;}
.ye2{bottom:215.375400px;}
.y26{bottom:217.922250px;}
.yf4{bottom:222.347550px;}
.y155{bottom:227.121900px;}
.y11e{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y8d{bottom:227.920350px;}
.ybd{bottom:227.935350px;}
.y25{bottom:235.922250px;}
.yf3{bottom:238.595550px;}
.y154{bottom:242.121900px;}
.y11d{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y8c{bottom:245.920350px;}
.ybc{bottom:245.935350px;}
.ye1{bottom:247.766550px;}
.y24{bottom:253.922250px;}
.y153{bottom:257.121900px;}
.y11c{bottom:263.230350px;}
.y5a{bottom:263.770350px;}
.y8b{bottom:263.920350px;}
.ybb{bottom:263.935350px;}
.ye0{bottom:267.266550px;}
.yf2{bottom:270.107550px;}
.y23{bottom:271.922250px;}
.y152{bottom:272.121900px;}
.y59{bottom:281.770350px;}
.y8a{bottom:281.920350px;}
.yba{bottom:281.935350px;}
.ydf{bottom:286.766550px;}
.y151{bottom:287.121900px;}
.y2b{bottom:289.922250px;}
.y11b{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y89{bottom:299.920350px;}
.yb9{bottom:299.935350px;}
.y150{bottom:302.121900px;}
.yf1{bottom:305.005350px;}
.y22{bottom:307.517250px;}
.y2a{bottom:307.922250px;}
.y14f{bottom:317.121900px;}
.y11a{bottom:317.230350px;}
.y57{bottom:317.770350px;}
.y88{bottom:317.920350px;}
.yb8{bottom:317.935350px;}
.yf0{bottom:324.505350px;}
.y14e{bottom:332.121900px;}
.y56{bottom:335.770350px;}
.y87{bottom:335.920350px;}
.yb7{bottom:335.935350px;}
.yde{bottom:341.646900px;}
.y14d{bottom:347.121900px;}
.y119{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y86{bottom:353.920350px;}
.yb6{bottom:353.935350px;}
.ydd{bottom:357.894900px;}
.y14c{bottom:362.121900px;}
.yff{bottom:370.703550px;}
.y118{bottom:371.230350px;}
.y54{bottom:371.770350px;}
.y85{bottom:371.920350px;}
.yb5{bottom:371.935350px;}
.ydc{bottom:374.142900px;}
.y14b{bottom:377.121900px;}
.y1f{bottom:381.508650px;}
.yfe{bottom:386.447550px;}
.y53{bottom:389.770350px;}
.y84{bottom:389.920350px;}
.yb4{bottom:389.935350px;}
.ydb{bottom:390.390900px;}
.y14a{bottom:392.121900px;}
.y1e{bottom:399.514200px;}
.yfd{bottom:402.191550px;}
.yda{bottom:406.638900px;}
.y149{bottom:407.121900px;}
.y117{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y83{bottom:407.920350px;}
.yb3{bottom:407.935350px;}
.y148{bottom:422.121900px;}
.y116{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y82{bottom:425.920350px;}
.yb2{bottom:425.935350px;}
.y1d{bottom:426.859200px;}
.yd9{bottom:435.642900px;}
.y147{bottom:437.121900px;}
.y188{bottom:440.263500px;}
.y115{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y81{bottom:443.920350px;}
.yb1{bottom:443.935350px;}
.y1c{bottom:444.859200px;}
.y146{bottom:452.121900px;}
.y187{bottom:455.263500px;}
.y114{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y80{bottom:461.920350px;}
.yb0{bottom:461.935350px;}
.y1b{bottom:462.859200px;}
.yd8{bottom:464.646900px;}
.y145{bottom:467.121900px;}
.y186{bottom:470.263500px;}
.y113{bottom:479.230350px;}
.y4e{bottom:479.770350px;}
.y7f{bottom:479.920350px;}
.yaf{bottom:479.935350px;}
.y1a{bottom:480.859200px;}
.y144{bottom:482.121900px;}
.y185{bottom:485.263500px;}
.yd7{bottom:497.050350px;}
.y143{bottom:497.121900px;}
.y4d{bottom:497.770350px;}
.y7e{bottom:497.920350px;}
.yae{bottom:497.935350px;}
.y19{bottom:498.859200px;}
.y184{bottom:500.263500px;}
.y142{bottom:512.121900px;}
.y183{bottom:515.263500px;}
.y112{bottom:515.635350px;}
.y4c{bottom:515.770350px;}
.y7d{bottom:515.920350px;}
.yad{bottom:515.935350px;}
.yd6{bottom:516.550350px;}
.y18{bottom:516.859200px;}
.y141{bottom:527.121900px;}
.y182{bottom:530.263500px;}
.y111{bottom:533.635350px;}
.y4b{bottom:533.770350px;}
.y7c{bottom:533.920350px;}
.yac{bottom:533.935350px;}
.y17{bottom:534.859200px;}
.yd5{bottom:536.050350px;}
.y140{bottom:542.121900px;}
.y181{bottom:545.263500px;}
.y110{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y7b{bottom:551.920350px;}
.yab{bottom:551.935350px;}
.y16{bottom:552.859200px;}
.y13f{bottom:557.121900px;}
.y180{bottom:560.263500px;}
.y10f{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.y7a{bottom:569.920350px;}
.yaa{bottom:569.935350px;}
.y15{bottom:570.859200px;}
.y13e{bottom:572.121900px;}
.y17f{bottom:575.263500px;}
.y13d{bottom:587.121900px;}
.y10e{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.y79{bottom:587.920350px;}
.ya9{bottom:587.935350px;}
.yd4{bottom:588.070350px;}
.y14{bottom:588.859200px;}
.y17e{bottom:590.263500px;}
.y13c{bottom:602.121900px;}
.y17d{bottom:605.263500px;}
.y10d{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.y78{bottom:605.920350px;}
.ya8{bottom:605.935350px;}
.yd3{bottom:606.070350px;}
.y13{bottom:606.859200px;}
.y13b{bottom:617.121900px;}
.y17c{bottom:620.263500px;}
.y10c{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.y77{bottom:623.920350px;}
.yd2{bottom:624.070350px;}
.y12{bottom:624.859200px;}
.y13a{bottom:632.121900px;}
.y17b{bottom:635.263500px;}
.ya7{bottom:641.530350px;}
.y10b{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.y76{bottom:641.920350px;}
.yd1{bottom:642.070350px;}
.y11{bottom:642.859200px;}
.y139{bottom:647.121900px;}
.y17a{bottom:650.263500px;}
.y10a{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.y75{bottom:659.920350px;}
.yd0{bottom:660.070350px;}
.y10{bottom:660.859200px;}
.y138{bottom:662.121900px;}
.y179{bottom:665.263500px;}
.y137{bottom:677.121900px;}
.y109{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.ya6{bottom:677.785350px;}
.y74{bottom:677.920350px;}
.ycf{bottom:678.070350px;}
.yf{bottom:678.859200px;}
.y178{bottom:680.263500px;}
.y136{bottom:692.121900px;}
.y177{bottom:695.263500px;}
.y108{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.ya5{bottom:695.785350px;}
.y73{bottom:695.920350px;}
.yce{bottom:696.070350px;}
.ye{bottom:696.859200px;}
.y135{bottom:707.121900px;}
.y176{bottom:710.263500px;}
.y107{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.ya4{bottom:713.785350px;}
.y72{bottom:713.920350px;}
.yd{bottom:714.859200px;}
.y134{bottom:722.121900px;}
.y175{bottom:725.263500px;}
.y106{bottom:731.635350px;}
.ycd{bottom:731.665350px;}
.y40{bottom:731.770350px;}
.ya3{bottom:731.785350px;}
.y71{bottom:731.920350px;}
.yc{bottom:732.859200px;}
.y133{bottom:737.121900px;}
.y174{bottom:740.263500px;}
.y105{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.ya2{bottom:749.785350px;}
.y70{bottom:749.920350px;}
.yb{bottom:750.859200px;}
.y132{bottom:752.121900px;}
.y173{bottom:755.263500px;}
.y131{bottom:767.121900px;}
.y104{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.ya1{bottom:767.785350px;}
.y6f{bottom:767.920350px;}
.y172{bottom:770.263500px;}
.y130{bottom:782.121900px;}
.y171{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.ya0{bottom:785.785350px;}
.y6e{bottom:785.920350px;}
.ya{bottom:796.017450px;}
.y12f{bottom:797.121900px;}
.y170{bottom:800.263500px;}
.y103{bottom:803.230350px;}
.yef{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.y9f{bottom:803.785350px;}
.y6d{bottom:803.920350px;}
.y9{bottom:808.468200px;}
.y12e{bottom:812.121900px;}
.y16f{bottom:815.263500px;}
.yee{bottom:821.635350px;}
.y3b{bottom:821.770350px;}
.y9e{bottom:821.785350px;}
.y6c{bottom:821.920350px;}
.y12d{bottom:827.121900px;}
.y16e{bottom:830.263500px;}
.yed{bottom:839.635350px;}
.y3a{bottom:839.770350px;}
.y9d{bottom:839.785350px;}
.y6b{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.y12c{bottom:842.121900px;}
.y16d{bottom:845.263500px;}
.y7{bottom:853.683600px;}
.y12b{bottom:857.121900px;}
.yec{bottom:857.635350px;}
.y39{bottom:857.770350px;}
.y9c{bottom:857.785350px;}
.y6a{bottom:857.920350px;}
.y16c{bottom:860.263500px;}
.y12a{bottom:872.121900px;}
.y16b{bottom:875.263500px;}
.yeb{bottom:875.635350px;}
.y38{bottom:875.770350px;}
.y9b{bottom:875.785350px;}
.y69{bottom:875.920350px;}
.y129{bottom:887.121900px;}
.y6{bottom:887.830950px;}
.y16a{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y9a{bottom:893.785350px;}
.yc8{bottom:893.920350px;}
.y128{bottom:902.121900px;}
.y169{bottom:905.263500px;}
.yea{bottom:911.230350px;}
.y68{bottom:911.515350px;}
.y36{bottom:911.770350px;}
.y99{bottom:911.785350px;}
.yc7{bottom:911.920350px;}
.y127{bottom:917.121900px;}
.y168{bottom:920.263500px;}
.y35{bottom:929.770350px;}
.y98{bottom:929.785350px;}
.ycc{bottom:929.920350px;}
.y126{bottom:932.121900px;}
.y5{bottom:934.004400px;}
.y167{bottom:935.263500px;}
.yc6{bottom:947.515350px;}
.y34{bottom:947.770350px;}
.y97{bottom:947.785350px;}
.ycb{bottom:947.920350px;}
.y166{bottom:950.263500px;}
.y125{bottom:965.230350px;}
.y165{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y96{bottom:965.785350px;}
.yca{bottom:965.920350px;}
.y4{bottom:970.465200px;}
.y164{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.y95{bottom:983.785350px;}
.y163{bottom:995.263500px;}
.yc9{bottom:1001.515350px;}
.y31{bottom:1001.770350px;}
.y94{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y162{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.y161{bottom:1025.263500px;}
.y93{bottom:1037.380350px;}
.y2f{bottom:1037.770350px;}
.y160{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y15f{bottom:1132.413900px;}
.y67{bottom:1132.418700px;}
.y189{bottom:1132.423500px;}
.ye9{bottom:1132.439400px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.h7{height:28.393066px;}
.h2{height:30.577148px;}
.ha{height:32.761230px;}
.h6{height:32.805176px;}
.he{height:33.328125px;}
.hd{height:34.945312px;}
.hb{height:41.660156px;}
.hf{height:42.117188px;}
.h8{height:43.681641px;}
.h9{height:43.740234px;}
.h5{height:45.865723px;}
.hc{height:52.646484px;}
.h10{height:54.266484px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:76.535400px;}
.x17{left:78.661350px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x1a{left:99.921300px;}
.x1e{left:102.047250px;}
.x4{left:106.299150px;}
.xd{left:110.555400px;}
.x3{left:125.436600px;}
.x7{left:131.816400px;}
.x5{left:191.338650px;}
.x1b{left:211.390350px;}
.x6{left:212.876400px;}
.x19{left:220.135350px;}
.x18{left:292.069350px;}
.xb{left:455.041500px;}
.xe{left:457.085400px;}
.x13{left:478.345350px;}
.x8{left:480.476400px;}
.x1f{left:482.603250px;}
.xf{left:491.105400px;}
.x1d{left:503.858400px;}
.x14{left:512.365350px;}
.x9{left:514.496400px;}
.x10{left:525.275400px;}
.x16{left:591.650400px;}
.x1c{left:596.095350px;}
.x12{left:663.492300px;}
.x2{left:693.365400px;}
.x11{left:735.065400px;}
.x15{left:756.325200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.440000pt;}
.ls3c{letter-spacing:-1.578667pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls29{letter-spacing:-0.213333pt;}
.ls5e{letter-spacing:-0.170667pt;}
.ls6c{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.053333pt;}
.ls5f{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.042667pt;}
.ls1e{letter-spacing:0.053333pt;}
.ls48{letter-spacing:0.085333pt;}
.ls30{letter-spacing:0.106667pt;}
.ls6b{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.160000pt;}
.ls63{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls4f{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls42{letter-spacing:0.469333pt;}
.ls19{letter-spacing:0.480000pt;}
.ls49{letter-spacing:0.512000pt;}
.ls2e{letter-spacing:0.533333pt;}
.ls59{letter-spacing:0.554667pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls6a{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls31{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls58{letter-spacing:0.810667pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls4b{letter-spacing:0.896000pt;}
.ls26{letter-spacing:0.906667pt;}
.ls3e{letter-spacing:0.938667pt;}
.ls20{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.013333pt;}
.ls9{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.120000pt;}
.ls22{letter-spacing:1.173333pt;}
.ls62{letter-spacing:1.194667pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls68{letter-spacing:1.237333pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls60{letter-spacing:1.322667pt;}
.ls16{letter-spacing:1.333333pt;}
.ls52{letter-spacing:1.365333pt;}
.ls13{letter-spacing:1.386667pt;}
.ls69{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.440000pt;}
.ls50{letter-spacing:1.450667pt;}
.ls2f{letter-spacing:1.493333pt;}
.ls18{letter-spacing:1.546667pt;}
.ls4e{letter-spacing:1.578667pt;}
.ls2c{letter-spacing:1.600000pt;}
.ls25{letter-spacing:1.653333pt;}
.ls57{letter-spacing:1.664000pt;}
.ls11{letter-spacing:1.706667pt;}
.ls67{letter-spacing:1.749333pt;}
.ls8{letter-spacing:1.760000pt;}
.ls2{letter-spacing:1.813333pt;}
.ls61{letter-spacing:1.834667pt;}
.ls21{letter-spacing:1.866667pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls64{letter-spacing:1.962667pt;}
.ls3d{letter-spacing:1.973333pt;}
.ls5{letter-spacing:2.026667pt;}
.ls2a{letter-spacing:2.080000pt;}
.ls1c{letter-spacing:2.133333pt;}
.ls66{letter-spacing:2.176000pt;}
.ls23{letter-spacing:2.240000pt;}
.ls43{letter-spacing:2.293333pt;}
.ls3f{letter-spacing:2.346667pt;}
.ls37{letter-spacing:2.400000pt;}
.ls38{letter-spacing:2.453333pt;}
.ls51{letter-spacing:2.517333pt;}
.ls3a{letter-spacing:2.560000pt;}
.ls54{letter-spacing:2.602667pt;}
.ls39{letter-spacing:2.613333pt;}
.ls7{letter-spacing:2.666667pt;}
.ls40{letter-spacing:2.720000pt;}
.ls65{letter-spacing:2.730667pt;}
.ls35{letter-spacing:2.773333pt;}
.ls4a{letter-spacing:2.816000pt;}
.ls32{letter-spacing:2.826667pt;}
.ls0{letter-spacing:2.880000pt;}
.ls36{letter-spacing:2.986667pt;}
.ls12{letter-spacing:3.040000pt;}
.ls33{letter-spacing:3.093333pt;}
.ls56{letter-spacing:3.114667pt;}
.ls44{letter-spacing:3.360000pt;}
.ls15{letter-spacing:3.466667pt;}
.ls5a{letter-spacing:3.541333pt;}
.ls4d{letter-spacing:3.584000pt;}
.ls3{letter-spacing:3.786667pt;}
.ls55{letter-spacing:3.797333pt;}
.ls45{letter-spacing:4.106667pt;}
.ls5c{letter-spacing:4.522667pt;}
.ls5d{letter-spacing:4.565333pt;}
.ls5b{letter-spacing:6.186667pt;}
.ls41{letter-spacing:6.453333pt;}
.ls34{letter-spacing:6.720000pt;}
.ls47{letter-spacing:7.253333pt;}
.ls46{letter-spacing:8.533333pt;}
.ls3b{letter-spacing:150.954667pt;}
.ws5e{word-spacing:-18.933333pt;}
.ws65{word-spacing:-15.232000pt;}
.ws38{word-spacing:-14.826667pt;}
.ws63{word-spacing:-13.440000pt;}
.ws83{word-spacing:-13.184000pt;}
.ws87{word-spacing:-12.117333pt;}
.ws0{word-spacing:-11.861333pt;}
.ws60{word-spacing:-11.562667pt;}
.ws86{word-spacing:-11.434667pt;}
.ws64{word-spacing:-11.221333pt;}
.ws84{word-spacing:-11.136000pt;}
.ws85{word-spacing:-11.093333pt;}
.ws5f{word-spacing:-10.752000pt;}
.ws61{word-spacing:-10.666667pt;}
.ws62{word-spacing:-10.624000pt;}
.ws81{word-spacing:-4.565333pt;}
.ws80{word-spacing:-3.541333pt;}
.ws7a{word-spacing:-3.114667pt;}
.ws70{word-spacing:-2.816000pt;}
.ws91{word-spacing:-2.773333pt;}
.ws58{word-spacing:-2.720000pt;}
.ws27{word-spacing:-2.666667pt;}
.ws2{word-spacing:-2.565333pt;}
.ws8c{word-spacing:-2.517333pt;}
.ws1b{word-spacing:-2.240000pt;}
.ws20{word-spacing:-2.186667pt;}
.ws9b{word-spacing:-2.133333pt;}
.ws1c{word-spacing:-2.080000pt;}
.ws23{word-spacing:-1.973333pt;}
.ws8e{word-spacing:-1.962667pt;}
.ws30{word-spacing:-1.920000pt;}
.ws8b{word-spacing:-1.834667pt;}
.ws51{word-spacing:-1.813333pt;}
.ws9{word-spacing:-1.760000pt;}
.ws96{word-spacing:-1.749333pt;}
.ws24{word-spacing:-1.706667pt;}
.ws6c{word-spacing:-1.653333pt;}
.ws73{word-spacing:-1.578667pt;}
.ws1a{word-spacing:-1.546667pt;}
.ws76{word-spacing:-1.450667pt;}
.ws26{word-spacing:-1.440000pt;}
.ws77{word-spacing:-1.408000pt;}
.ws10{word-spacing:-1.386667pt;}
.ws88{word-spacing:-1.322667pt;}
.ws15{word-spacing:-1.280000pt;}
.ws97{word-spacing:-1.237333pt;}
.ws6a{word-spacing:-1.173333pt;}
.wsa{word-spacing:-1.120000pt;}
.ws19{word-spacing:-1.066667pt;}
.wsb{word-spacing:-1.013333pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws55{word-spacing:-0.906667pt;}
.ws72{word-spacing:-0.896000pt;}
.ws7f{word-spacing:-0.853333pt;}
.ws7b{word-spacing:-0.810667pt;}
.ws8{word-spacing:-0.800000pt;}
.ws45{word-spacing:-0.768000pt;}
.ws2a{word-spacing:-0.746667pt;}
.ws99{word-spacing:-0.725333pt;}
.ws56{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.554667pt;}
.ws4f{word-spacing:-0.480000pt;}
.ws74{word-spacing:-0.469333pt;}
.wsc{word-spacing:-0.426667pt;}
.ws2e{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.320000pt;}
.ws28{word-spacing:-0.266667pt;}
.ws7d{word-spacing:-0.256000pt;}
.ws1d{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.170667pt;}
.ws21{word-spacing:-0.160000pt;}
.ws6e{word-spacing:-0.085333pt;}
.ws1f{word-spacing:-0.053333pt;}
.ws8a{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws82{word-spacing:0.042667pt;}
.ws17{word-spacing:0.053333pt;}
.ws67{word-spacing:0.106667pt;}
.ws94{word-spacing:0.128000pt;}
.ws78{word-spacing:0.170667pt;}
.ws9c{word-spacing:0.298667pt;}
.ws50{word-spacing:0.320000pt;}
.ws43{word-spacing:0.373333pt;}
.ws2d{word-spacing:0.480000pt;}
.ws31{word-spacing:0.746667pt;}
.ws75{word-spacing:0.853333pt;}
.ws7c{word-spacing:0.981333pt;}
.ws41{word-spacing:1.066667pt;}
.ws57{word-spacing:1.120000pt;}
.ws79{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.173333pt;}
.ws44{word-spacing:1.226667pt;}
.ws11{word-spacing:1.280000pt;}
.ws93{word-spacing:1.322667pt;}
.ws7{word-spacing:1.440000pt;}
.ws8f{word-spacing:1.450667pt;}
.ws4e{word-spacing:1.546667pt;}
.ws14{word-spacing:1.600000pt;}
.ws9a{word-spacing:1.621333pt;}
.ws92{word-spacing:1.664000pt;}
.ws2f{word-spacing:1.706667pt;}
.ws7e{word-spacing:1.749333pt;}
.ws29{word-spacing:1.760000pt;}
.ws5b{word-spacing:1.813333pt;}
.ws54{word-spacing:1.866667pt;}
.ws34{word-spacing:1.920000pt;}
.ws22{word-spacing:2.026667pt;}
.ws2c{word-spacing:2.080000pt;}
.ws36{word-spacing:2.240000pt;}
.ws6d{word-spacing:2.261333pt;}
.ws2b{word-spacing:2.293333pt;}
.ws1e{word-spacing:2.346667pt;}
.wsd{word-spacing:2.666667pt;}
.ws4d{word-spacing:2.720000pt;}
.ws90{word-spacing:2.730667pt;}
.wsf{word-spacing:2.773333pt;}
.ws98{word-spacing:2.816000pt;}
.ws5{word-spacing:2.826667pt;}
.ws95{word-spacing:2.944000pt;}
.ws4b{word-spacing:3.040000pt;}
.ws4c{word-spacing:3.093333pt;}
.ws5d{word-spacing:3.114667pt;}
.ws32{word-spacing:3.306667pt;}
.ws12{word-spacing:3.360000pt;}
.ws89{word-spacing:3.370667pt;}
.ws13{word-spacing:3.413333pt;}
.ws16{word-spacing:3.466667pt;}
.ws53{word-spacing:3.498667pt;}
.ws66{word-spacing:3.520000pt;}
.ws71{word-spacing:3.541333pt;}
.ws52{word-spacing:3.733333pt;}
.ws4{word-spacing:3.786667pt;}
.ws25{word-spacing:3.840000pt;}
.ws33{word-spacing:3.893333pt;}
.ws35{word-spacing:3.946667pt;}
.wse{word-spacing:4.000000pt;}
.ws42{word-spacing:4.106667pt;}
.ws18{word-spacing:4.160000pt;}
.ws68{word-spacing:4.213333pt;}
.ws40{word-spacing:4.320000pt;}
.ws6{word-spacing:4.373333pt;}
.ws3{word-spacing:4.426667pt;}
.ws69{word-spacing:4.853333pt;}
.ws6b{word-spacing:4.906667pt;}
.ws3f{word-spacing:88.960000pt;}
.ws3b{word-spacing:135.509333pt;}
.ws3d{word-spacing:141.440000pt;}
.ws3a{word-spacing:148.224000pt;}
.ws3c{word-spacing:220.970667pt;}
.ws3e{word-spacing:224.554667pt;}
.ws47{word-spacing:334.378667pt;}
.ws49{word-spacing:357.546667pt;}
.ws48{word-spacing:368.213333pt;}
.ws4a{word-spacing:368.981333pt;}
.ws46{word-spacing:685.098667pt;}
.ws39{word-spacing:750.720000pt;}
._b{margin-left:-2576.128000pt;}
._d{margin-left:-2554.965333pt;}
._2{margin-left:-8.327467pt;}
._e{margin-left:-6.720000pt;}
._f{margin-left:-5.706667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.706667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._5{width:0.906667pt;}
._9{width:2.133333pt;}
._c{width:3.093333pt;}
._6{width:4.266667pt;}
._7{width:5.200000pt;}
._8{width:6.133333pt;}
._a{width:7.093333pt;}
._1a{width:99.626667pt;}
._19{width:100.522667pt;}
._2c{width:106.752000pt;}
._2b{width:107.648000pt;}
._15{width:130.773333pt;}
._18{width:134.314667pt;}
._2f{width:142.682667pt;}
._1e{width:152.106667pt;}
._21{width:155.648000pt;}
._25{width:162.773333pt;}
._12{width:167.296000pt;}
._16{width:173.440000pt;}
._26{width:178.773333pt;}
._1f{width:184.106667pt;}
._32{width:194.773333pt;}
._14{width:195.712000pt;}
._17{width:199.253333pt;}
._2e{width:217.813333pt;}
._27{width:221.397333pt;}
._1d{width:227.712000pt;}
._20{width:231.253333pt;}
._24{width:249.045333pt;}
._31{width:259.712000pt;}
._2a{width:276.480000pt;}
._11{width:308.378667pt;}
._1b{width:338.090667pt;}
._2d{width:348.757333pt;}
._33{width:353.962667pt;}
._38{width:357.546667pt;}
._3c{width:368.981333pt;}
._36{width:371.754667pt;}
._3b{width:378.880000pt;}
._34{width:384.170667pt;}
._29{width:396.714667pt;}
._10{width:460.400000pt;}
._1c{width:473.216000pt;}
._13{width:481.450667pt;}
._22{width:516.650667pt;}
._30{width:526.506667pt;}
._37{width:534.954667pt;}
._3e{width:562.426667pt;}
._3a{width:569.509333pt;}
._23{width:572.629333pt;}
._28{width:729.685333pt;}
._35{width:741.248000pt;}
._39{width:828.885333pt;}
._3d{width:835.968000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{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;}
.y2e{bottom:42.468667pt;}
.y102{bottom:73.987600pt;}
.y124{bottom:74.342533pt;}
.y64{bottom:74.462533pt;}
.yc5{bottom:74.609200pt;}
.y21{bottom:78.246000pt;}
.y15e{bottom:81.886133pt;}
.yfc{bottom:82.100933pt;}
.ye8{bottom:82.111467pt;}
.y101{bottom:87.982267pt;}
.y123{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.yc4{bottom:90.609200pt;}
.y20{bottom:91.576000pt;}
.y15d{bottom:95.219467pt;}
.yfb{bottom:96.543600pt;}
.ye7{bottom:96.554133pt;}
.y100{bottom:101.976933pt;}
.y122{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.yc3{bottom:106.609200pt;}
.y15c{bottom:108.552800pt;}
.yfa{bottom:110.986267pt;}
.ye6{bottom:110.996800pt;}
.y15b{bottom:121.886133pt;}
.y121{bottom:121.982533pt;}
.y61{bottom:122.462533pt;}
.y92{bottom:122.595867pt;}
.yc2{bottom:122.609200pt;}
.yf9{bottom:125.428933pt;}
.ye5{bottom:125.439467pt;}
.y15a{bottom:135.219467pt;}
.y60{bottom:138.462533pt;}
.y91{bottom:138.595867pt;}
.yc1{bottom:138.609200pt;}
.yf8{bottom:139.871600pt;}
.ye4{bottom:139.882133pt;}
.y29{bottom:145.708667pt;}
.y159{bottom:148.552800pt;}
.y120{bottom:153.982533pt;}
.y66{bottom:154.102533pt;}
.yf7{bottom:154.314267pt;}
.y5f{bottom:154.462533pt;}
.y90{bottom:154.595867pt;}
.yc0{bottom:154.609200pt;}
.y28{bottom:161.708667pt;}
.y158{bottom:161.886133pt;}
.ye3{bottom:165.663467pt;}
.yf6{bottom:168.756933pt;}
.y5e{bottom:170.462533pt;}
.y8f{bottom:170.595867pt;}
.ybf{bottom:170.609200pt;}
.y157{bottom:175.219467pt;}
.y27{bottom:177.708667pt;}
.yf5{bottom:183.199600pt;}
.y65{bottom:185.982533pt;}
.y11f{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y8e{bottom:186.595867pt;}
.ybe{bottom:186.609200pt;}
.y156{bottom:188.552800pt;}
.ye2{bottom:191.444800pt;}
.y26{bottom:193.708667pt;}
.yf4{bottom:197.642267pt;}
.y155{bottom:201.886133pt;}
.y11e{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y8d{bottom:202.595867pt;}
.ybd{bottom:202.609200pt;}
.y25{bottom:209.708667pt;}
.yf3{bottom:212.084933pt;}
.y154{bottom:215.219467pt;}
.y11d{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y8c{bottom:218.595867pt;}
.ybc{bottom:218.609200pt;}
.ye1{bottom:220.236933pt;}
.y24{bottom:225.708667pt;}
.y153{bottom:228.552800pt;}
.y11c{bottom:233.982533pt;}
.y5a{bottom:234.462533pt;}
.y8b{bottom:234.595867pt;}
.ybb{bottom:234.609200pt;}
.ye0{bottom:237.570267pt;}
.yf2{bottom:240.095600pt;}
.y23{bottom:241.708667pt;}
.y152{bottom:241.886133pt;}
.y59{bottom:250.462533pt;}
.y8a{bottom:250.595867pt;}
.yba{bottom:250.609200pt;}
.ydf{bottom:254.903600pt;}
.y151{bottom:255.219467pt;}
.y2b{bottom:257.708667pt;}
.y11b{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y89{bottom:266.595867pt;}
.yb9{bottom:266.609200pt;}
.y150{bottom:268.552800pt;}
.yf1{bottom:271.115867pt;}
.y22{bottom:273.348667pt;}
.y2a{bottom:273.708667pt;}
.y14f{bottom:281.886133pt;}
.y11a{bottom:281.982533pt;}
.y57{bottom:282.462533pt;}
.y88{bottom:282.595867pt;}
.yb8{bottom:282.609200pt;}
.yf0{bottom:288.449200pt;}
.y14e{bottom:295.219467pt;}
.y56{bottom:298.462533pt;}
.y87{bottom:298.595867pt;}
.yb7{bottom:298.609200pt;}
.yde{bottom:303.686133pt;}
.y14d{bottom:308.552800pt;}
.y119{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y86{bottom:314.595867pt;}
.yb6{bottom:314.609200pt;}
.ydd{bottom:318.128800pt;}
.y14c{bottom:321.886133pt;}
.yff{bottom:329.514267pt;}
.y118{bottom:329.982533pt;}
.y54{bottom:330.462533pt;}
.y85{bottom:330.595867pt;}
.yb5{bottom:330.609200pt;}
.ydc{bottom:332.571467pt;}
.y14b{bottom:335.219467pt;}
.y1f{bottom:339.118800pt;}
.yfe{bottom:343.508933pt;}
.y53{bottom:346.462533pt;}
.y84{bottom:346.595867pt;}
.yb4{bottom:346.609200pt;}
.ydb{bottom:347.014133pt;}
.y14a{bottom:348.552800pt;}
.y1e{bottom:355.123733pt;}
.yfd{bottom:357.503600pt;}
.yda{bottom:361.456800pt;}
.y149{bottom:361.886133pt;}
.y117{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y83{bottom:362.595867pt;}
.yb3{bottom:362.609200pt;}
.y148{bottom:375.219467pt;}
.y116{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y82{bottom:378.595867pt;}
.yb2{bottom:378.609200pt;}
.y1d{bottom:379.430400pt;}
.yd9{bottom:387.238133pt;}
.y147{bottom:388.552800pt;}
.y188{bottom:391.345333pt;}
.y115{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y81{bottom:394.595867pt;}
.yb1{bottom:394.609200pt;}
.y1c{bottom:395.430400pt;}
.y146{bottom:401.886133pt;}
.y187{bottom:404.678667pt;}
.y114{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y80{bottom:410.595867pt;}
.yb0{bottom:410.609200pt;}
.y1b{bottom:411.430400pt;}
.yd8{bottom:413.019467pt;}
.y145{bottom:415.219467pt;}
.y186{bottom:418.012000pt;}
.y113{bottom:425.982533pt;}
.y4e{bottom:426.462533pt;}
.y7f{bottom:426.595867pt;}
.yaf{bottom:426.609200pt;}
.y1a{bottom:427.430400pt;}
.y144{bottom:428.552800pt;}
.y185{bottom:431.345333pt;}
.yd7{bottom:441.822533pt;}
.y143{bottom:441.886133pt;}
.y4d{bottom:442.462533pt;}
.y7e{bottom:442.595867pt;}
.yae{bottom:442.609200pt;}
.y19{bottom:443.430400pt;}
.y184{bottom:444.678667pt;}
.y142{bottom:455.219467pt;}
.y183{bottom:458.012000pt;}
.y112{bottom:458.342533pt;}
.y4c{bottom:458.462533pt;}
.y7d{bottom:458.595867pt;}
.yad{bottom:458.609200pt;}
.yd6{bottom:459.155867pt;}
.y18{bottom:459.430400pt;}
.y141{bottom:468.552800pt;}
.y182{bottom:471.345333pt;}
.y111{bottom:474.342533pt;}
.y4b{bottom:474.462533pt;}
.y7c{bottom:474.595867pt;}
.yac{bottom:474.609200pt;}
.y17{bottom:475.430400pt;}
.yd5{bottom:476.489200pt;}
.y140{bottom:481.886133pt;}
.y181{bottom:484.678667pt;}
.y110{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y7b{bottom:490.595867pt;}
.yab{bottom:490.609200pt;}
.y16{bottom:491.430400pt;}
.y13f{bottom:495.219467pt;}
.y180{bottom:498.012000pt;}
.y10f{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.y7a{bottom:506.595867pt;}
.yaa{bottom:506.609200pt;}
.y15{bottom:507.430400pt;}
.y13e{bottom:508.552800pt;}
.y17f{bottom:511.345333pt;}
.y13d{bottom:521.886133pt;}
.y10e{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.y79{bottom:522.595867pt;}
.ya9{bottom:522.609200pt;}
.yd4{bottom:522.729200pt;}
.y14{bottom:523.430400pt;}
.y17e{bottom:524.678667pt;}
.y13c{bottom:535.219467pt;}
.y17d{bottom:538.012000pt;}
.y10d{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.y78{bottom:538.595867pt;}
.ya8{bottom:538.609200pt;}
.yd3{bottom:538.729200pt;}
.y13{bottom:539.430400pt;}
.y13b{bottom:548.552800pt;}
.y17c{bottom:551.345333pt;}
.y10c{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.y77{bottom:554.595867pt;}
.yd2{bottom:554.729200pt;}
.y12{bottom:555.430400pt;}
.y13a{bottom:561.886133pt;}
.y17b{bottom:564.678667pt;}
.ya7{bottom:570.249200pt;}
.y10b{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.y76{bottom:570.595867pt;}
.yd1{bottom:570.729200pt;}
.y11{bottom:571.430400pt;}
.y139{bottom:575.219467pt;}
.y17a{bottom:578.012000pt;}
.y10a{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.y75{bottom:586.595867pt;}
.yd0{bottom:586.729200pt;}
.y10{bottom:587.430400pt;}
.y138{bottom:588.552800pt;}
.y179{bottom:591.345333pt;}
.y137{bottom:601.886133pt;}
.y109{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.ya6{bottom:602.475867pt;}
.y74{bottom:602.595867pt;}
.ycf{bottom:602.729200pt;}
.yf{bottom:603.430400pt;}
.y178{bottom:604.678667pt;}
.y136{bottom:615.219467pt;}
.y177{bottom:618.012000pt;}
.y108{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.ya5{bottom:618.475867pt;}
.y73{bottom:618.595867pt;}
.yce{bottom:618.729200pt;}
.ye{bottom:619.430400pt;}
.y135{bottom:628.552800pt;}
.y176{bottom:631.345333pt;}
.y107{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.ya4{bottom:634.475867pt;}
.y72{bottom:634.595867pt;}
.yd{bottom:635.430400pt;}
.y134{bottom:641.886133pt;}
.y175{bottom:644.678667pt;}
.y106{bottom:650.342533pt;}
.ycd{bottom:650.369200pt;}
.y40{bottom:650.462533pt;}
.ya3{bottom:650.475867pt;}
.y71{bottom:650.595867pt;}
.yc{bottom:651.430400pt;}
.y133{bottom:655.219467pt;}
.y174{bottom:658.012000pt;}
.y105{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.ya2{bottom:666.475867pt;}
.y70{bottom:666.595867pt;}
.yb{bottom:667.430400pt;}
.y132{bottom:668.552800pt;}
.y173{bottom:671.345333pt;}
.y131{bottom:681.886133pt;}
.y104{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.ya1{bottom:682.475867pt;}
.y6f{bottom:682.595867pt;}
.y172{bottom:684.678667pt;}
.y130{bottom:695.219467pt;}
.y171{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.ya0{bottom:698.475867pt;}
.y6e{bottom:698.595867pt;}
.ya{bottom:707.571067pt;}
.y12f{bottom:708.552800pt;}
.y170{bottom:711.345333pt;}
.y103{bottom:713.982533pt;}
.yef{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.y9f{bottom:714.475867pt;}
.y6d{bottom:714.595867pt;}
.y9{bottom:718.638400pt;}
.y12e{bottom:721.886133pt;}
.y16f{bottom:724.678667pt;}
.yee{bottom:730.342533pt;}
.y3b{bottom:730.462533pt;}
.y9e{bottom:730.475867pt;}
.y6c{bottom:730.595867pt;}
.y12d{bottom:735.219467pt;}
.y16e{bottom:738.012000pt;}
.yed{bottom:746.342533pt;}
.y3a{bottom:746.462533pt;}
.y9d{bottom:746.475867pt;}
.y6b{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.y12c{bottom:748.552800pt;}
.y16d{bottom:751.345333pt;}
.y7{bottom:758.829867pt;}
.y12b{bottom:761.886133pt;}
.yec{bottom:762.342533pt;}
.y39{bottom:762.462533pt;}
.y9c{bottom:762.475867pt;}
.y6a{bottom:762.595867pt;}
.y16c{bottom:764.678667pt;}
.y12a{bottom:775.219467pt;}
.y16b{bottom:778.012000pt;}
.yeb{bottom:778.342533pt;}
.y38{bottom:778.462533pt;}
.y9b{bottom:778.475867pt;}
.y69{bottom:778.595867pt;}
.y129{bottom:788.552800pt;}
.y6{bottom:789.183067pt;}
.y16a{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y9a{bottom:794.475867pt;}
.yc8{bottom:794.595867pt;}
.y128{bottom:801.886133pt;}
.y169{bottom:804.678667pt;}
.yea{bottom:809.982533pt;}
.y68{bottom:810.235867pt;}
.y36{bottom:810.462533pt;}
.y99{bottom:810.475867pt;}
.yc7{bottom:810.595867pt;}
.y127{bottom:815.219467pt;}
.y168{bottom:818.012000pt;}
.y35{bottom:826.462533pt;}
.y98{bottom:826.475867pt;}
.ycc{bottom:826.595867pt;}
.y126{bottom:828.552800pt;}
.y5{bottom:830.226133pt;}
.y167{bottom:831.345333pt;}
.yc6{bottom:842.235867pt;}
.y34{bottom:842.462533pt;}
.y97{bottom:842.475867pt;}
.ycb{bottom:842.595867pt;}
.y166{bottom:844.678667pt;}
.y125{bottom:857.982533pt;}
.y165{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y96{bottom:858.475867pt;}
.yca{bottom:858.595867pt;}
.y4{bottom:862.635733pt;}
.y164{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.y95{bottom:874.475867pt;}
.y163{bottom:884.678667pt;}
.yc9{bottom:890.235867pt;}
.y31{bottom:890.462533pt;}
.y94{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y162{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.y161{bottom:911.345333pt;}
.y93{bottom:922.115867pt;}
.y2f{bottom:922.462533pt;}
.y160{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y15f{bottom:1006.590133pt;}
.y67{bottom:1006.594400pt;}
.y189{bottom:1006.598667pt;}
.ye9{bottom:1006.612800pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:25.238281pt;}
.h2{height:27.179688pt;}
.ha{height:29.121094pt;}
.h6{height:29.160156pt;}
.he{height:29.625000pt;}
.hd{height:31.062500pt;}
.hb{height:37.031250pt;}
.hf{height:37.437500pt;}
.h8{height:38.828125pt;}
.h9{height:38.880208pt;}
.h5{height:40.769531pt;}
.hc{height:46.796875pt;}
.h10{height:48.236875pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:68.031467pt;}
.x17{left:69.921200pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1a{left:88.818933pt;}
.x1e{left:90.708667pt;}
.x4{left:94.488133pt;}
.xd{left:98.271467pt;}
.x3{left:111.499200pt;}
.x7{left:117.170133pt;}
.x5{left:170.078800pt;}
.x1b{left:187.902533pt;}
.x6{left:189.223467pt;}
.x19{left:195.675867pt;}
.x18{left:259.617200pt;}
.xb{left:404.481333pt;}
.xe{left:406.298133pt;}
.x13{left:425.195867pt;}
.x8{left:427.090133pt;}
.x1f{left:428.980667pt;}
.xf{left:436.538133pt;}
.x1d{left:447.874133pt;}
.x14{left:455.435867pt;}
.x9{left:457.330133pt;}
.x10{left:466.911467pt;}
.x16{left:525.911467pt;}
.x1c{left:529.862533pt;}
.x12{left:589.770933pt;}
.x2{left:616.324800pt;}
.x11{left:653.391467pt;}
.x15{left:672.289067pt;}
}




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