
    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_b6ec4cea21c226e6fe6bc033.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_c17fcf9bb01167a9e11948a3.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_f48152aec328cc46ec1ed7a1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8ba05bbab104f66e13ed2c81.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_9d77caadee7efd7cbf0023e4.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_e538b78d7cf4d22d8f6b8a29.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ee5fc5ced4f0c293bc22af5b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_f9964ee13e2543e0cc7df0df.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_83a72823ce0147919e73049e.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4dfc67c521026e1ff08384d5.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;}
.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);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls3b{letter-spacing:-4.440000px;}
.ls3a{letter-spacing:-4.080000px;}
.ls2f{letter-spacing:-1.776000px;}
.ls42{letter-spacing:-1.665000px;}
.ls4{letter-spacing:-0.780000px;}
.ls3c{letter-spacing:-0.480000px;}
.ls56{letter-spacing:-0.300000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls6e{letter-spacing:-0.144000px;}
.ls46{letter-spacing:-0.120000px;}
.ls5{letter-spacing:-0.060000px;}
.ls6f{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls5c{letter-spacing:0.048000px;}
.ls8{letter-spacing:0.060000px;}
.ls65{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.240000px;}
.ls67{letter-spacing:0.288000px;}
.ls4d{letter-spacing:0.300000px;}
.ls60{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.420000px;}
.ls45{letter-spacing:0.432000px;}
.ls43{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.528000px;}
.ls2a{letter-spacing:0.540000px;}
.ls66{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls61{letter-spacing:0.624000px;}
.ls2e{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.780000px;}
.ls49{letter-spacing:0.816000px;}
.ls1d{letter-spacing:0.840000px;}
.ls4a{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls6b{letter-spacing:0.912000px;}
.ls26{letter-spacing:0.960000px;}
.ls40{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.020000px;}
.ls41{letter-spacing:1.056000px;}
.ls4e{letter-spacing:1.080000px;}
.ls57{letter-spacing:1.104000px;}
.ls17{letter-spacing:1.140000px;}
.ls5f{letter-spacing:1.152000px;}
.ls12{letter-spacing:1.200000px;}
.ls58{letter-spacing:1.248000px;}
.ls2c{letter-spacing:1.260000px;}
.ls38{letter-spacing:1.320000px;}
.ls20{letter-spacing:1.380000px;}
.ls32{letter-spacing:1.440000px;}
.ls5a{letter-spacing:1.488000px;}
.ls44{letter-spacing:1.500000px;}
.ls3f{letter-spacing:1.536000px;}
.ls34{letter-spacing:1.560000px;}
.ls62{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.620000px;}
.ls5e{letter-spacing:1.632000px;}
.ls6{letter-spacing:1.680000px;}
.ls6a{letter-spacing:1.728000px;}
.lsd{letter-spacing:1.740000px;}
.ls18{letter-spacing:1.800000px;}
.ls64{letter-spacing:1.824000px;}
.ls22{letter-spacing:1.860000px;}
.ls28{letter-spacing:1.920000px;}
.ls30{letter-spacing:1.980000px;}
.ls2d{letter-spacing:2.040000px;}
.ls69{letter-spacing:2.064000px;}
.ls10{letter-spacing:2.100000px;}
.lse{letter-spacing:2.160000px;}
.ls5b{letter-spacing:2.208000px;}
.ls4c{letter-spacing:2.220000px;}
.ls68{letter-spacing:2.256000px;}
.ls1f{letter-spacing:2.280000px;}
.ls11{letter-spacing:2.340000px;}
.ls59{letter-spacing:2.352000px;}
.ls1b{letter-spacing:2.400000px;}
.ls29{letter-spacing:2.460000px;}
.ls21{letter-spacing:2.520000px;}
.ls4f{letter-spacing:2.580000px;}
.ls63{letter-spacing:2.592000px;}
.ls31{letter-spacing:2.700000px;}
.ls35{letter-spacing:2.760000px;}
.ls6d{letter-spacing:2.784000px;}
.ls48{letter-spacing:2.820000px;}
.ls7{letter-spacing:2.880000px;}
.ls53{letter-spacing:2.940000px;}
.ls6c{letter-spacing:2.976000px;}
.ls1e{letter-spacing:3.000000px;}
.ls70{letter-spacing:3.024000px;}
.ls15{letter-spacing:3.060000px;}
.ls47{letter-spacing:3.120000px;}
.ls39{letter-spacing:3.180000px;}
.ls13{letter-spacing:3.240000px;}
.ls33{letter-spacing:3.360000px;}
.ls1c{letter-spacing:3.600000px;}
.ls16{letter-spacing:3.780000px;}
.ls36{letter-spacing:4.140000px;}
.lsc{letter-spacing:4.560000px;}
.ls54{letter-spacing:5.160000px;}
.ls23{letter-spacing:5.400000px;}
.ls50{letter-spacing:5.880000px;}
.ls4b{letter-spacing:7.200000px;}
.ls55{letter-spacing:7.620000px;}
.ls52{letter-spacing:7.740000px;}
.ls51{letter-spacing:7.800000px;}
.ls37{letter-spacing:7.860000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.537400px;}
.ls3e{letter-spacing:103.008000px;}
.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;}
}
.ws60{word-spacing:-19.500000px;}
.ws36{word-spacing:-18.060000px;}
.ws5f{word-spacing:-17.520000px;}
.ws1{word-spacing:-17.514000px;}
.ws5d{word-spacing:-17.280000px;}
.ws37{word-spacing:-16.860000px;}
.ws2{word-spacing:-16.680000px;}
.ws16{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.140000px;}
.ws21{word-spacing:-15.960000px;}
.ws5e{word-spacing:-15.600000px;}
.ws4e{word-spacing:-15.480000px;}
.ws5c{word-spacing:-15.120000px;}
.ws70{word-spacing:-15.024000px;}
.ws22{word-spacing:-15.000000px;}
.ws71{word-spacing:-14.784000px;}
.ws23{word-spacing:-14.520000px;}
.ws6c{word-spacing:-14.256000px;}
.ws6e{word-spacing:-13.632000px;}
.ws6b{word-spacing:-13.488000px;}
.ws4{word-spacing:-13.344000px;}
.ws6a{word-spacing:-13.104000px;}
.ws3{word-spacing:-12.510000px;}
.ws6d{word-spacing:-12.240000px;}
.ws6f{word-spacing:-12.096000px;}
.ws55{word-spacing:-12.000000px;}
.ws39{word-spacing:-11.250000px;}
.ws18{word-spacing:-10.224000px;}
.ws0{word-spacing:-10.210662px;}
.ws19{word-spacing:-5.400000px;}
.ws11{word-spacing:-3.780000px;}
.wsf{word-spacing:-3.060000px;}
.ws6{word-spacing:-2.886000px;}
.ws56{word-spacing:-2.760000px;}
.ws69{word-spacing:-2.700000px;}
.ws7e{word-spacing:-2.640000px;}
.ws74{word-spacing:-2.352000px;}
.ws2a{word-spacing:-2.280000px;}
.ws24{word-spacing:-2.220000px;}
.ws75{word-spacing:-2.208000px;}
.ws62{word-spacing:-1.920000px;}
.ws15{word-spacing:-1.860000px;}
.ws65{word-spacing:-1.620000px;}
.ws68{word-spacing:-1.560000px;}
.ws73{word-spacing:-1.104000px;}
.ws5b{word-spacing:-0.864000px;}
.ws4c{word-spacing:-0.780000px;}
.ws7c{word-spacing:-0.528000px;}
.ws67{word-spacing:-0.480000px;}
.ws52{word-spacing:-0.432000px;}
.ws28{word-spacing:-0.420000px;}
.ws34{word-spacing:-0.240000px;}
.ws1f{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.120000px;}
.ws10{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws31{word-spacing:0.180000px;}
.ws54{word-spacing:0.192000px;}
.ws1c{word-spacing:0.240000px;}
.ws30{word-spacing:0.480000px;}
.ws4f{word-spacing:0.660000px;}
.ws50{word-spacing:0.720000px;}
.ws1b{word-spacing:0.780000px;}
.ws2b{word-spacing:0.840000px;}
.ws79{word-spacing:0.912000px;}
.ws1e{word-spacing:0.960000px;}
.ws35{word-spacing:1.140000px;}
.ws81{word-spacing:1.296000px;}
.wsa{word-spacing:1.320000px;}
.wse{word-spacing:1.380000px;}
.ws7d{word-spacing:1.536000px;}
.ws2e{word-spacing:1.680000px;}
.ws51{word-spacing:1.776000px;}
.ws7f{word-spacing:1.824000px;}
.wsd{word-spacing:1.920000px;}
.ws25{word-spacing:1.980000px;}
.ws20{word-spacing:2.040000px;}
.ws58{word-spacing:2.064000px;}
.ws1d{word-spacing:2.100000px;}
.wsb{word-spacing:2.220000px;}
.ws27{word-spacing:2.280000px;}
.ws59{word-spacing:2.400000px;}
.ws72{word-spacing:2.448000px;}
.ws26{word-spacing:2.580000px;}
.ws80{word-spacing:2.640000px;}
.ws4b{word-spacing:2.760000px;}
.ws83{word-spacing:2.784000px;}
.ws82{word-spacing:2.880000px;}
.ws76{word-spacing:2.976000px;}
.ws66{word-spacing:3.120000px;}
.ws64{word-spacing:3.180000px;}
.ws77{word-spacing:3.264000px;}
.ws57{word-spacing:3.360000px;}
.ws78{word-spacing:3.408000px;}
.ws84{word-spacing:3.456000px;}
.ws33{word-spacing:3.600000px;}
.ws7b{word-spacing:3.648000px;}
.ws2c{word-spacing:3.660000px;}
.ws7a{word-spacing:3.696000px;}
.ws5a{word-spacing:3.744000px;}
.wsc{word-spacing:3.900000px;}
.ws4d{word-spacing:3.936000px;}
.ws61{word-spacing:3.960000px;}
.ws53{word-spacing:3.984000px;}
.ws2d{word-spacing:4.080000px;}
.ws29{word-spacing:4.140000px;}
.ws63{word-spacing:4.380000px;}
.ws2f{word-spacing:4.440000px;}
.ws32{word-spacing:4.500000px;}
.ws1a{word-spacing:4.560000px;}
.ws4a{word-spacing:4.680000px;}
.ws13{word-spacing:4.800000px;}
.ws14{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws3a{word-spacing:14.040000px;}
.ws41{word-spacing:51.570000px;}
.ws3f{word-spacing:62.820000px;}
.ws47{word-spacing:63.630000px;}
.ws49{word-spacing:74.070000px;}
.ws3c{word-spacing:77.805000px;}
.ws48{word-spacing:78.210000px;}
.ws44{word-spacing:81.990000px;}
.ws43{word-spacing:85.320000px;}
.ws40{word-spacing:89.050800px;}
.ws42{word-spacing:89.055000px;}
.ws3d{word-spacing:92.835000px;}
.ws45{word-spacing:137.340000px;}
.ws3b{word-spacing:144.945000px;}
.ws46{word-spacing:152.145000px;}
.ws3e{word-spacing:189.945000px;}
.ws38{word-spacing:240.750000px;}
.ws17{word-spacing:319.584000px;}
._a{margin-left:-2898.144000px;}
._3b{margin-left:-2874.336000px;}
._97{margin-left:-18.360000px;}
._3{margin-left:-8.220600px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.134000px;}
._c{width:1.260000px;}
._7{width:2.280000px;}
._6{width:4.080000px;}
._8{width:5.430000px;}
._9{width:7.350000px;}
._98{width:8.445000px;}
._b{width:10.080000px;}
._7d{width:17.820000px;}
._7c{width:24.435000px;}
._40{width:29.025000px;}
._3d{width:30.330000px;}
._3e{width:31.545000px;}
._3f{width:32.805000px;}
._80{width:34.110000px;}
._43{width:35.280000px;}
._41{width:49.770000px;}
._7e{width:50.985000px;}
._81{width:52.155000px;}
._56{width:56.610000px;}
._57{width:62.820000px;}
._82{width:69.165000px;}
._42{width:74.295000px;}
._5f{width:77.805000px;}
._5a{width:79.830000px;}
._55{width:82.755000px;}
._46{width:85.320000px;}
._64{width:86.970000px;}
._4d{width:89.055000px;}
._58{width:91.080000px;}
._59{width:96.840000px;}
._45{width:100.305000px;}
._7f{width:102.375000px;}
._47{width:104.085000px;}
._5d{width:105.450000px;}
._67{width:106.680000px;}
._78{width:113.580000px;}
._48{width:117.315000px;}
._5b{width:119.205000px;}
._4a{width:121.095000px;}
._62{width:122.850000px;}
._75{width:130.590000px;}
._49{width:134.325000px;}
._83{width:136.785000px;}
._4e{width:138.105000px;}
._6b{width:144.855000px;}
._60{width:147.195000px;}
._4f{width:148.590000px;}
._6f{width:149.805000px;}
._61{width:151.515000px;}
._63{width:153.870000px;}
._6e{width:155.295000px;}
._4b{width:158.265000px;}
._51{width:159.840000px;}
._74{width:161.550000px;}
._52{width:170.460000px;}
._66{width:171.540000px;}
._73{width:176.370000px;}
._6a{width:180.270000px;}
._68{width:186.360000px;}
._44{width:187.740000px;}
._54{width:189.000000px;}
._6d{width:194.085000px;}
._71{width:201.345000px;}
._3c{width:211.995000px;}
._38{width:219.735000px;}
._6c{width:222.795000px;}
._5e{width:225.315000px;}
._79{width:232.620000px;}
._70{width:240.300000px;}
._77{width:242.820000px;}
._72{width:246.510000px;}
._36{width:247.965000px;}
._7b{width:250.335000px;}
._76{width:257.595000px;}
._2f{width:258.870000px;}
._32{width:260.214000px;}
._5c{width:266.985000px;}
._23{width:269.856000px;}
._65{width:277.830000px;}
._4c{width:282.780000px;}
._2d{width:284.214000px;}
._50{width:290.040000px;}
._53{width:291.510000px;}
._2a{width:294.873000px;}
._2e{width:305.145000px;}
._69{width:308.895000px;}
._2c{width:317.145000px;}
._34{width:320.214000px;}
._10{width:328.176000px;}
._16{width:329.574000px;}
._2b{width:332.838000px;}
._33{width:335.145000px;}
._7a{width:337.770000px;}
._86{width:342.390000px;}
._39{width:344.214000px;}
._37{width:348.528000px;}
._30{width:360.096000px;}
._31{width:361.341000px;}
._1a{width:364.512000px;}
._f{width:367.584000px;}
._1b{width:372.240000px;}
._1d{width:374.208000px;}
._27{width:377.952000px;}
._1e{width:381.312000px;}
._12{width:382.944000px;}
._17{width:388.272000px;}
._35{width:390.528000px;}
._22{width:394.656000px;}
._8d{width:398.928000px;}
._14{width:402.240000px;}
._15{width:409.344000px;}
._24{width:412.272000px;}
._26{width:414.240000px;}
._20{width:420.240000px;}
._90{width:423.696000px;}
._3a{width:426.528000px;}
._19{width:427.968000px;}
._94{width:435.024000px;}
._d{width:436.512000px;}
._8c{width:439.008000px;}
._11{width:441.936000px;}
._29{width:447.840000px;}
._1c{width:449.520000px;}
._e{width:450.864000px;}
._89{width:460.368000px;}
._88{width:463.719000px;}
._13{width:465.504000px;}
._18{width:468.192000px;}
._25{width:480.192000px;}
._1f{width:481.872000px;}
._21{width:484.176000px;}
._87{width:505.632000px;}
._8f{width:516.816000px;}
._8b{width:524.832000px;}
._91{width:530.160000px;}
._93{width:546.144000px;}
._28{width:548.169000px;}
._95{width:552.864000px;}
._92{width:558.144000px;}
._8a{width:560.880000px;}
._8e{width:563.520000px;}
._96{width:566.208000px;}
._85{width:997.296000px;}
._84{width:1177.152000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{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;}
.y2c{bottom:47.777250px;}
.yfc{bottom:82.883250px;}
.y4c{bottom:83.259450px;}
.y12a{bottom:83.770350px;}
.y106{bottom:84.109950px;}
.y8b{bottom:84.169650px;}
.yea{bottom:84.739050px;}
.y29{bottom:87.483300px;}
.yfb{bottom:99.383250px;}
.y105{bottom:99.853950px;}
.ye9{bottom:101.239050px;}
.y151{bottom:101.628600px;}
.y129{bottom:101.770350px;}
.y28{bottom:102.479550px;}
.y8a{bottom:109.681650px;}
.y104{bottom:115.597950px;}
.y27{bottom:117.479550px;}
.ye8{bottom:117.739050px;}
.y150{bottom:119.223600px;}
.y128{bottom:119.770350px;}
.yfa{bottom:124.895250px;}
.y89{bottom:125.929650px;}
.y127{bottom:137.770350px;}
.yf9{bottom:141.143250px;}
.y88{bottom:142.177650px;}
.ye7{bottom:143.115000px;}
.y14f{bottom:155.223600px;}
.y126{bottom:155.770350px;}
.yf8{bottom:157.391250px;}
.y87{bottom:158.425650px;}
.ye6{bottom:158.617500px;}
.yf7{bottom:173.639250px;}
.y125{bottom:173.770350px;}
.ye5{bottom:174.120000px;}
.y86{bottom:174.673650px;}
.y18a{bottom:179.263500px;}
.y1c4{bottom:185.263500px;}
.yf6{bottom:189.887250px;}
.y85{bottom:190.921650px;}
.y14e{bottom:191.223600px;}
.y124{bottom:191.770350px;}
.y189{bottom:194.263500px;}
.y1c3{bottom:200.263500px;}
.ye4{bottom:202.380000px;}
.yf5{bottom:206.135250px;}
.y84{bottom:207.169650px;}
.y188{bottom:209.263500px;}
.y123{bottom:209.770350px;}
.y1c2{bottom:215.263500px;}
.ye3{bottom:217.877700px;}
.yf4{bottom:222.383250px;}
.y83{bottom:223.417650px;}
.y187{bottom:224.263500px;}
.y14d{bottom:227.628600px;}
.y122{bottom:227.770350px;}
.y1c1{bottom:230.263500px;}
.ye2{bottom:233.380200px;}
.yf3{bottom:238.631250px;}
.y186{bottom:239.263500px;}
.y82{bottom:239.665650px;}
.y14c{bottom:245.223600px;}
.y1c0{bottom:245.263500px;}
.y121{bottom:245.770350px;}
.ye1{bottom:248.882700px;}
.y185{bottom:254.263500px;}
.yf2{bottom:254.879250px;}
.y81{bottom:255.913650px;}
.y1bf{bottom:260.263500px;}
.y26{bottom:262.564200px;}
.y120{bottom:263.770350px;}
.ye0{bottom:264.385200px;}
.y184{bottom:269.263500px;}
.yf1{bottom:271.127250px;}
.y80{bottom:272.161650px;}
.y1be{bottom:275.263500px;}
.ydf{bottom:279.887700px;}
.y14b{bottom:281.628600px;}
.y11f{bottom:281.770350px;}
.y183{bottom:284.263500px;}
.yf0{bottom:287.375250px;}
.y7f{bottom:288.409650px;}
.y25{bottom:289.909200px;}
.y1bd{bottom:290.263500px;}
.yde{bottom:295.390200px;}
.y182{bottom:299.263500px;}
.y14a{bottom:299.628600px;}
.y11e{bottom:299.770350px;}
.yef{bottom:303.623250px;}
.y1bc{bottom:305.263500px;}
.y24{bottom:307.909200px;}
.ydd{bottom:310.892700px;}
.y181{bottom:314.263500px;}
.y7e{bottom:317.413650px;}
.y149{bottom:317.628600px;}
.y11d{bottom:317.770350px;}
.y1bb{bottom:320.263500px;}
.y23{bottom:325.909200px;}
.ydc{bottom:326.395200px;}
.y180{bottom:329.263500px;}
.yee{bottom:332.627250px;}
.y1ba{bottom:335.263500px;}
.y148{bottom:335.635350px;}
.y11c{bottom:335.770350px;}
.ydb{bottom:341.897700px;}
.y22{bottom:343.909200px;}
.y17f{bottom:344.263500px;}
.y7d{bottom:346.417650px;}
.y1b9{bottom:350.263500px;}
.y147{bottom:353.635350px;}
.y11b{bottom:353.770350px;}
.yda{bottom:357.395400px;}
.y17e{bottom:359.263500px;}
.yed{bottom:361.631250px;}
.y21{bottom:361.909200px;}
.y1b8{bottom:365.263500px;}
.y146{bottom:371.635350px;}
.y11a{bottom:371.770350px;}
.yd9{bottom:372.897900px;}
.y17d{bottom:374.263500px;}
.y20{bottom:379.909200px;}
.y1b7{bottom:380.263500px;}
.yd8{bottom:388.400400px;}
.y17c{bottom:389.263500px;}
.y145{bottom:389.635350px;}
.y119{bottom:389.770350px;}
.yec{bottom:394.015350px;}
.y1b6{bottom:395.263500px;}
.yba{bottom:395.452500px;}
.y7c{bottom:397.473900px;}
.y1f{bottom:397.909200px;}
.yd7{bottom:403.902900px;}
.y17b{bottom:404.263500px;}
.y144{bottom:407.635350px;}
.y118{bottom:407.770350px;}
.y1b5{bottom:410.263500px;}
.y7b{bottom:413.721900px;}
.y1e{bottom:415.909200px;}
.y17a{bottom:419.263500px;}
.yd6{bottom:419.405400px;}
.y143{bottom:425.230350px;}
.y1b4{bottom:425.263500px;}
.y117{bottom:425.770350px;}
.y7a{bottom:429.969900px;}
.y1d{bottom:433.909200px;}
.y179{bottom:434.263500px;}
.yd5{bottom:434.907900px;}
.y1b3{bottom:440.263500px;}
.yfe{bottom:443.015250px;}
.yb9{bottom:443.650350px;}
.y116{bottom:443.770350px;}
.y9c{bottom:443.785350px;}
.y79{bottom:446.217900px;}
.y178{bottom:449.263500px;}
.yd4{bottom:450.410400px;}
.y1c{bottom:451.909200px;}
.y1b2{bottom:455.263500px;}
.yfd{bottom:458.759250px;}
.y142{bottom:461.635350px;}
.yb8{bottom:461.650350px;}
.y115{bottom:461.770350px;}
.y9b{bottom:461.785350px;}
.y78{bottom:462.465900px;}
.y177{bottom:464.263500px;}
.yd3{bottom:465.912900px;}
.y1b{bottom:469.909200px;}
.y1b1{bottom:470.263500px;}
.y77{bottom:478.713900px;}
.y176{bottom:479.263500px;}
.y141{bottom:479.635350px;}
.yb7{bottom:479.650350px;}
.y114{bottom:479.770350px;}
.y9a{bottom:479.785350px;}
.yd2{bottom:481.415400px;}
.y103{bottom:483.121950px;}
.y1b0{bottom:485.263500px;}
.y1a{bottom:487.909200px;}
.y175{bottom:494.263500px;}
.y76{bottom:494.961900px;}
.yd1{bottom:496.913100px;}
.y140{bottom:497.635350px;}
.yb6{bottom:497.650350px;}
.y113{bottom:497.770350px;}
.y99{bottom:497.785350px;}
.y102{bottom:498.865950px;}
.y1af{bottom:500.263500px;}
.y19{bottom:505.909200px;}
.y174{bottom:509.263500px;}
.y75{bottom:511.209900px;}
.yd0{bottom:512.415600px;}
.y101{bottom:514.609950px;}
.y1ae{bottom:515.263500px;}
.y13f{bottom:515.635350px;}
.y112{bottom:515.770350px;}
.y98{bottom:515.785350px;}
.y18{bottom:523.909200px;}
.y173{bottom:524.263500px;}
.y74{bottom:527.457900px;}
.ycf{bottom:527.918100px;}
.y1ad{bottom:530.263500px;}
.y100{bottom:530.353950px;}
.yb5{bottom:533.245350px;}
.y13e{bottom:533.635350px;}
.y111{bottom:533.770350px;}
.y97{bottom:533.785350px;}
.y172{bottom:539.263500px;}
.y17{bottom:541.909200px;}
.yce{bottom:543.420600px;}
.y73{bottom:543.705900px;}
.y1ac{bottom:545.263500px;}
.y13d{bottom:551.635350px;}
.y110{bottom:551.770350px;}
.y47{bottom:551.772600px;}
.y96{bottom:551.785350px;}
.y171{bottom:554.263500px;}
.ycd{bottom:558.923100px;}
.y16{bottom:559.909200px;}
.y72{bottom:559.953900px;}
.y1ab{bottom:560.263500px;}
.y170{bottom:569.263500px;}
.y13c{bottom:569.635350px;}
.y10f{bottom:569.770350px;}
.y46{bottom:569.772600px;}
.y95{bottom:569.785350px;}
.ycc{bottom:574.425600px;}
.y1aa{bottom:575.263500px;}
.y71{bottom:576.201900px;}
.y15{bottom:577.909200px;}
.y16f{bottom:584.263500px;}
.y13b{bottom:587.230350px;}
.y10e{bottom:587.770350px;}
.y45{bottom:587.772600px;}
.y94{bottom:587.785350px;}
.ycb{bottom:589.928100px;}
.y1a9{bottom:590.263500px;}
.y16e{bottom:599.263500px;}
.y1a8{bottom:605.263500px;}
.yca{bottom:605.430600px;}
.y10d{bottom:605.770350px;}
.y44{bottom:605.772600px;}
.y93{bottom:605.785350px;}
.y70{bottom:607.713900px;}
.y16d{bottom:614.263500px;}
.y1a7{bottom:620.263500px;}
.yc9{bottom:620.933100px;}
.y14{bottom:623.067300px;}
.y13a{bottom:623.635350px;}
.y10c{bottom:623.770350px;}
.y43{bottom:623.772600px;}
.yb4{bottom:623.785350px;}
.y16c{bottom:629.263500px;}
.y1a6{bottom:635.263500px;}
.y13{bottom:635.518050px;}
.yc8{bottom:636.423150px;}
.y4b{bottom:641.367600px;}
.y92{bottom:641.380350px;}
.y139{bottom:641.635350px;}
.y10b{bottom:641.770350px;}
.y42{bottom:641.772600px;}
.yb3{bottom:641.785350px;}
.y6f{bottom:642.610350px;}
.y16b{bottom:644.263500px;}
.y1a5{bottom:650.263500px;}
.yc7{bottom:651.925650px;}
.y16a{bottom:659.263500px;}
.y138{bottom:659.635350px;}
.y10a{bottom:659.770350px;}
.y41{bottom:659.772600px;}
.yb2{bottom:659.785350px;}
.y6e{bottom:662.110350px;}
.y1a4{bottom:665.263500px;}
.y12{bottom:667.233600px;}
.yc6{bottom:667.428150px;}
.y169{bottom:674.263500px;}
.y4a{bottom:677.232600px;}
.y137{bottom:677.635350px;}
.y109{bottom:677.770350px;}
.y40{bottom:677.772600px;}
.yb1{bottom:677.785350px;}
.y1a3{bottom:680.263500px;}
.yc5{bottom:682.930650px;}
.y11{bottom:686.158800px;}
.y168{bottom:689.263500px;}
.y10{bottom:694.233600px;}
.y1a2{bottom:695.263500px;}
.y136{bottom:695.635350px;}
.y108{bottom:695.770350px;}
.y3f{bottom:695.772600px;}
.yb0{bottom:695.785350px;}
.y91{bottom:695.920350px;}
.y167{bottom:704.263500px;}
.y1a1{bottom:710.263500px;}
.yf{bottom:713.158800px;}
.y135{bottom:713.635350px;}
.y60{bottom:713.770350px;}
.y3e{bottom:713.772600px;}
.yaf{bottom:713.785350px;}
.y6d{bottom:713.920350px;}
.yc4{bottom:713.935650px;}
.y166{bottom:719.263500px;}
.ye{bottom:721.233600px;}
.y1a0{bottom:725.263500px;}
.y134{bottom:731.635350px;}
.y5f{bottom:731.770350px;}
.y3d{bottom:731.772600px;}
.yae{bottom:731.785350px;}
.y6c{bottom:731.920350px;}
.y165{bottom:734.263500px;}
.yd{bottom:734.733600px;}
.y19f{bottom:740.263500px;}
.yc3{bottom:744.940650px;}
.yc{bottom:748.233600px;}
.y164{bottom:749.263500px;}
.y133{bottom:749.635350px;}
.y5e{bottom:749.770350px;}
.y3c{bottom:749.772600px;}
.yad{bottom:749.785350px;}
.y6b{bottom:749.920350px;}
.y19e{bottom:755.263500px;}
.yb{bottom:761.733600px;}
.y163{bottom:764.263500px;}
.y132{bottom:767.635350px;}
.y5d{bottom:767.770350px;}
.y3b{bottom:767.772600px;}
.yac{bottom:767.785350px;}
.y6a{bottom:767.920350px;}
.y19d{bottom:770.263500px;}
.yc2{bottom:775.945650px;}
.y162{bottom:779.263500px;}
.ya{bottom:780.658950px;}
.y19c{bottom:785.263500px;}
.y131{bottom:785.635350px;}
.y5c{bottom:785.770350px;}
.y3a{bottom:785.772600px;}
.yab{bottom:785.785350px;}
.y69{bottom:785.920350px;}
.yc1{bottom:791.448150px;}
.y161{bottom:794.263500px;}
.y19b{bottom:800.263500px;}
.y130{bottom:803.635350px;}
.y5b{bottom:803.770350px;}
.y39{bottom:803.772600px;}
.yaa{bottom:803.785350px;}
.y68{bottom:803.920350px;}
.y160{bottom:809.263500px;}
.y9{bottom:809.386200px;}
.yc0{bottom:813.329400px;}
.y19a{bottom:815.263500px;}
.y12f{bottom:821.635350px;}
.y5a{bottom:821.770350px;}
.y38{bottom:821.772600px;}
.ya9{bottom:821.785350px;}
.y67{bottom:821.920350px;}
.y15f{bottom:824.263500px;}
.y199{bottom:830.263500px;}
.y8{bottom:830.380950px;}
.y15e{bottom:839.263500px;}
.y12e{bottom:839.635350px;}
.y59{bottom:839.770350px;}
.y37{bottom:839.772600px;}
.ya8{bottom:839.785350px;}
.y66{bottom:839.920350px;}
.ybf{bottom:841.589400px;}
.y198{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y15d{bottom:854.263500px;}
.y12d{bottom:857.635350px;}
.y58{bottom:857.770350px;}
.y36{bottom:857.772600px;}
.ya7{bottom:857.785350px;}
.y65{bottom:857.920350px;}
.ybe{bottom:858.093150px;}
.y197{bottom:860.263500px;}
.y15c{bottom:869.263500px;}
.y196{bottom:875.263500px;}
.y12c{bottom:875.635350px;}
.y57{bottom:875.770350px;}
.y35{bottom:875.772600px;}
.ya6{bottom:875.785350px;}
.y64{bottom:875.920350px;}
.y15b{bottom:884.263500px;}
.ybd{bottom:889.855350px;}
.y195{bottom:890.263500px;}
.y56{bottom:893.770350px;}
.y34{bottom:893.772600px;}
.ya5{bottom:893.785350px;}
.y63{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y15a{bottom:899.263500px;}
.y194{bottom:905.263500px;}
.ybc{bottom:909.355350px;}
.y12b{bottom:911.230350px;}
.y55{bottom:911.770350px;}
.y33{bottom:911.772600px;}
.ya4{bottom:911.785350px;}
.y62{bottom:911.920350px;}
.y159{bottom:914.263500px;}
.y193{bottom:920.263500px;}
.y158{bottom:929.263500px;}
.y54{bottom:929.770350px;}
.y32{bottom:929.772600px;}
.ya3{bottom:929.785350px;}
.y90{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y192{bottom:935.263500px;}
.y157{bottom:944.263500px;}
.y61{bottom:947.515350px;}
.y53{bottom:947.770350px;}
.y31{bottom:947.772600px;}
.ya2{bottom:947.785350px;}
.y8f{bottom:947.920350px;}
.y191{bottom:950.263500px;}
.y156{bottom:959.263500px;}
.y190{bottom:965.263500px;}
.y52{bottom:965.770350px;}
.y30{bottom:965.772600px;}
.ya1{bottom:965.785350px;}
.y8e{bottom:965.920350px;}
.y4{bottom:970.465200px;}
.y155{bottom:974.263500px;}
.y18f{bottom:980.263500px;}
.y51{bottom:983.770350px;}
.y2f{bottom:983.772600px;}
.ya0{bottom:983.785350px;}
.y154{bottom:989.263500px;}
.y18e{bottom:995.263500px;}
.y8d{bottom:1001.515350px;}
.y50{bottom:1001.770350px;}
.y2e{bottom:1001.772600px;}
.y9f{bottom:1001.785350px;}
.y153{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y18d{bottom:1010.263500px;}
.y4f{bottom:1019.770350px;}
.y49{bottom:1019.772600px;}
.y9e{bottom:1019.785350px;}
.y18c{bottom:1025.263500px;}
.y2d{bottom:1037.367600px;}
.y4e{bottom:1037.770350px;}
.y48{bottom:1037.772600px;}
.y9d{bottom:1037.785350px;}
.y18b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y152{bottom:1132.418700px;}
.y4d{bottom:1132.419450px;}
.ybb{bottom:1132.420500px;}
.yeb{bottom:1132.423050px;}
.y1c5{bottom:1132.423500px;}
.y107{bottom:1132.453950px;}
.y8c{bottom:1132.465650px;}
.yff{bottom:1132.475250px;}
.y2b{bottom:1136.092500px;}
.y2a{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.h15{height:31.245117px;}
.h14{height:31.267090px;}
.h17{height:31.286290px;}
.h16{height:31.316890px;}
.he{height:32.761230px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h13{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h11{height:41.689453px;}
.h18{height:42.023438px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h12{height:52.529297px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x29{left:78.661350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x11{left:99.921300px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x2d{left:123.307350px;}
.x3{left:125.427900px;}
.x8{left:190.553550px;}
.x28{left:197.717550px;}
.x2a{left:203.629350px;}
.x17{left:211.100400px;}
.x2c{left:215.552550px;}
.x15{left:260.061150px;}
.x14{left:288.873150px;}
.x27{left:334.630050px;}
.x1a{left:344.226300px;}
.x1c{left:393.962550px;}
.x1b{left:399.700050px;}
.x6{left:455.041500px;}
.xa{left:457.088550px;}
.x1d{left:458.593800px;}
.x13{left:472.821150px;}
.xf{left:478.360350px;}
.xc{left:491.108550px;}
.x2e{left:503.863350px;}
.x10{left:512.380350px;}
.x1e{left:514.123800px;}
.xb{left:525.278550px;}
.x1f{left:526.307550px;}
.x2b{left:570.710400px;}
.x18{left:579.410400px;}
.x12{left:597.705300px;}
.x20{left:603.707550px;}
.x21{left:652.296300px;}
.x22{left:661.982550px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x23{left:709.558800px;}
.x24{left:712.922550px;}
.xd{left:735.071400px;}
.x19{left:753.246300px;}
.x16{left:756.333150px;}
.x25{left:772.716300px;}
.x26{left:778.960050px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls3b{letter-spacing:-3.946667pt;}
.ls3a{letter-spacing:-3.626667pt;}
.ls2f{letter-spacing:-1.578667pt;}
.ls42{letter-spacing:-1.480000pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls3c{letter-spacing:-0.426667pt;}
.ls56{letter-spacing:-0.266667pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls6e{letter-spacing:-0.128000pt;}
.ls46{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:-0.053333pt;}
.ls6f{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls5c{letter-spacing:0.042667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls65{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.213333pt;}
.ls67{letter-spacing:0.256000pt;}
.ls4d{letter-spacing:0.266667pt;}
.ls60{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.373333pt;}
.ls45{letter-spacing:0.384000pt;}
.ls43{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.469333pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls66{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls61{letter-spacing:0.554667pt;}
.ls2e{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls49{letter-spacing:0.725333pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls4a{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls6b{letter-spacing:0.810667pt;}
.ls26{letter-spacing:0.853333pt;}
.ls40{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.906667pt;}
.ls41{letter-spacing:0.938667pt;}
.ls4e{letter-spacing:0.960000pt;}
.ls57{letter-spacing:0.981333pt;}
.ls17{letter-spacing:1.013333pt;}
.ls5f{letter-spacing:1.024000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls58{letter-spacing:1.109333pt;}
.ls2c{letter-spacing:1.120000pt;}
.ls38{letter-spacing:1.173333pt;}
.ls20{letter-spacing:1.226667pt;}
.ls32{letter-spacing:1.280000pt;}
.ls5a{letter-spacing:1.322667pt;}
.ls44{letter-spacing:1.333333pt;}
.ls3f{letter-spacing:1.365333pt;}
.ls34{letter-spacing:1.386667pt;}
.ls62{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls5e{letter-spacing:1.450667pt;}
.ls6{letter-spacing:1.493333pt;}
.ls6a{letter-spacing:1.536000pt;}
.lsd{letter-spacing:1.546667pt;}
.ls18{letter-spacing:1.600000pt;}
.ls64{letter-spacing:1.621333pt;}
.ls22{letter-spacing:1.653333pt;}
.ls28{letter-spacing:1.706667pt;}
.ls30{letter-spacing:1.760000pt;}
.ls2d{letter-spacing:1.813333pt;}
.ls69{letter-spacing:1.834667pt;}
.ls10{letter-spacing:1.866667pt;}
.lse{letter-spacing:1.920000pt;}
.ls5b{letter-spacing:1.962667pt;}
.ls4c{letter-spacing:1.973333pt;}
.ls68{letter-spacing:2.005333pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls11{letter-spacing:2.080000pt;}
.ls59{letter-spacing:2.090667pt;}
.ls1b{letter-spacing:2.133333pt;}
.ls29{letter-spacing:2.186667pt;}
.ls21{letter-spacing:2.240000pt;}
.ls4f{letter-spacing:2.293333pt;}
.ls63{letter-spacing:2.304000pt;}
.ls31{letter-spacing:2.400000pt;}
.ls35{letter-spacing:2.453333pt;}
.ls6d{letter-spacing:2.474667pt;}
.ls48{letter-spacing:2.506667pt;}
.ls7{letter-spacing:2.560000pt;}
.ls53{letter-spacing:2.613333pt;}
.ls6c{letter-spacing:2.645333pt;}
.ls1e{letter-spacing:2.666667pt;}
.ls70{letter-spacing:2.688000pt;}
.ls15{letter-spacing:2.720000pt;}
.ls47{letter-spacing:2.773333pt;}
.ls39{letter-spacing:2.826667pt;}
.ls13{letter-spacing:2.880000pt;}
.ls33{letter-spacing:2.986667pt;}
.ls1c{letter-spacing:3.200000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls36{letter-spacing:3.680000pt;}
.lsc{letter-spacing:4.053333pt;}
.ls54{letter-spacing:4.586667pt;}
.ls23{letter-spacing:4.800000pt;}
.ls50{letter-spacing:5.226667pt;}
.ls4b{letter-spacing:6.400000pt;}
.ls55{letter-spacing:6.773333pt;}
.ls52{letter-spacing:6.880000pt;}
.ls51{letter-spacing:6.933333pt;}
.ls37{letter-spacing:6.986667pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.922133pt;}
.ls3e{letter-spacing:91.562667pt;}
.ws60{word-spacing:-17.333333pt;}
.ws36{word-spacing:-16.053333pt;}
.ws5f{word-spacing:-15.573333pt;}
.ws1{word-spacing:-15.568000pt;}
.ws5d{word-spacing:-15.360000pt;}
.ws37{word-spacing:-14.986667pt;}
.ws2{word-spacing:-14.826667pt;}
.ws16{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.346667pt;}
.ws21{word-spacing:-14.186667pt;}
.ws5e{word-spacing:-13.866667pt;}
.ws4e{word-spacing:-13.760000pt;}
.ws5c{word-spacing:-13.440000pt;}
.ws70{word-spacing:-13.354667pt;}
.ws22{word-spacing:-13.333333pt;}
.ws71{word-spacing:-13.141333pt;}
.ws23{word-spacing:-12.906667pt;}
.ws6c{word-spacing:-12.672000pt;}
.ws6e{word-spacing:-12.117333pt;}
.ws6b{word-spacing:-11.989333pt;}
.ws4{word-spacing:-11.861333pt;}
.ws6a{word-spacing:-11.648000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws6d{word-spacing:-10.880000pt;}
.ws6f{word-spacing:-10.752000pt;}
.ws55{word-spacing:-10.666667pt;}
.ws39{word-spacing:-10.000000pt;}
.ws18{word-spacing:-9.088000pt;}
.ws0{word-spacing:-9.076144pt;}
.ws19{word-spacing:-4.800000pt;}
.ws11{word-spacing:-3.360000pt;}
.wsf{word-spacing:-2.720000pt;}
.ws6{word-spacing:-2.565333pt;}
.ws56{word-spacing:-2.453333pt;}
.ws69{word-spacing:-2.400000pt;}
.ws7e{word-spacing:-2.346667pt;}
.ws74{word-spacing:-2.090667pt;}
.ws2a{word-spacing:-2.026667pt;}
.ws24{word-spacing:-1.973333pt;}
.ws75{word-spacing:-1.962667pt;}
.ws62{word-spacing:-1.706667pt;}
.ws15{word-spacing:-1.653333pt;}
.ws65{word-spacing:-1.440000pt;}
.ws68{word-spacing:-1.386667pt;}
.ws73{word-spacing:-0.981333pt;}
.ws5b{word-spacing:-0.768000pt;}
.ws4c{word-spacing:-0.693333pt;}
.ws7c{word-spacing:-0.469333pt;}
.ws67{word-spacing:-0.426667pt;}
.ws52{word-spacing:-0.384000pt;}
.ws28{word-spacing:-0.373333pt;}
.ws34{word-spacing:-0.213333pt;}
.ws1f{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.106667pt;}
.ws10{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws31{word-spacing:0.160000pt;}
.ws54{word-spacing:0.170667pt;}
.ws1c{word-spacing:0.213333pt;}
.ws30{word-spacing:0.426667pt;}
.ws4f{word-spacing:0.586667pt;}
.ws50{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.693333pt;}
.ws2b{word-spacing:0.746667pt;}
.ws79{word-spacing:0.810667pt;}
.ws1e{word-spacing:0.853333pt;}
.ws35{word-spacing:1.013333pt;}
.ws81{word-spacing:1.152000pt;}
.wsa{word-spacing:1.173333pt;}
.wse{word-spacing:1.226667pt;}
.ws7d{word-spacing:1.365333pt;}
.ws2e{word-spacing:1.493333pt;}
.ws51{word-spacing:1.578667pt;}
.ws7f{word-spacing:1.621333pt;}
.wsd{word-spacing:1.706667pt;}
.ws25{word-spacing:1.760000pt;}
.ws20{word-spacing:1.813333pt;}
.ws58{word-spacing:1.834667pt;}
.ws1d{word-spacing:1.866667pt;}
.wsb{word-spacing:1.973333pt;}
.ws27{word-spacing:2.026667pt;}
.ws59{word-spacing:2.133333pt;}
.ws72{word-spacing:2.176000pt;}
.ws26{word-spacing:2.293333pt;}
.ws80{word-spacing:2.346667pt;}
.ws4b{word-spacing:2.453333pt;}
.ws83{word-spacing:2.474667pt;}
.ws82{word-spacing:2.560000pt;}
.ws76{word-spacing:2.645333pt;}
.ws66{word-spacing:2.773333pt;}
.ws64{word-spacing:2.826667pt;}
.ws77{word-spacing:2.901333pt;}
.ws57{word-spacing:2.986667pt;}
.ws78{word-spacing:3.029333pt;}
.ws84{word-spacing:3.072000pt;}
.ws33{word-spacing:3.200000pt;}
.ws7b{word-spacing:3.242667pt;}
.ws2c{word-spacing:3.253333pt;}
.ws7a{word-spacing:3.285333pt;}
.ws5a{word-spacing:3.328000pt;}
.wsc{word-spacing:3.466667pt;}
.ws4d{word-spacing:3.498667pt;}
.ws61{word-spacing:3.520000pt;}
.ws53{word-spacing:3.541333pt;}
.ws2d{word-spacing:3.626667pt;}
.ws29{word-spacing:3.680000pt;}
.ws63{word-spacing:3.893333pt;}
.ws2f{word-spacing:3.946667pt;}
.ws32{word-spacing:4.000000pt;}
.ws1a{word-spacing:4.053333pt;}
.ws4a{word-spacing:4.160000pt;}
.ws13{word-spacing:4.266667pt;}
.ws14{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws3a{word-spacing:12.480000pt;}
.ws41{word-spacing:45.840000pt;}
.ws3f{word-spacing:55.840000pt;}
.ws47{word-spacing:56.560000pt;}
.ws49{word-spacing:65.840000pt;}
.ws3c{word-spacing:69.160000pt;}
.ws48{word-spacing:69.520000pt;}
.ws44{word-spacing:72.880000pt;}
.ws43{word-spacing:75.840000pt;}
.ws40{word-spacing:79.156267pt;}
.ws42{word-spacing:79.160000pt;}
.ws3d{word-spacing:82.520000pt;}
.ws45{word-spacing:122.080000pt;}
.ws3b{word-spacing:128.840000pt;}
.ws46{word-spacing:135.240000pt;}
.ws3e{word-spacing:168.840000pt;}
.ws38{word-spacing:214.000000pt;}
.ws17{word-spacing:284.074667pt;}
._a{margin-left:-2576.128000pt;}
._3b{margin-left:-2554.965333pt;}
._97{margin-left:-16.320000pt;}
._3{margin-left:-7.307200pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.008000pt;}
._c{width:1.120000pt;}
._7{width:2.026667pt;}
._6{width:3.626667pt;}
._8{width:4.826667pt;}
._9{width:6.533333pt;}
._98{width:7.506667pt;}
._b{width:8.960000pt;}
._7d{width:15.840000pt;}
._7c{width:21.720000pt;}
._40{width:25.800000pt;}
._3d{width:26.960000pt;}
._3e{width:28.040000pt;}
._3f{width:29.160000pt;}
._80{width:30.320000pt;}
._43{width:31.360000pt;}
._41{width:44.240000pt;}
._7e{width:45.320000pt;}
._81{width:46.360000pt;}
._56{width:50.320000pt;}
._57{width:55.840000pt;}
._82{width:61.480000pt;}
._42{width:66.040000pt;}
._5f{width:69.160000pt;}
._5a{width:70.960000pt;}
._55{width:73.560000pt;}
._46{width:75.840000pt;}
._64{width:77.306667pt;}
._4d{width:79.160000pt;}
._58{width:80.960000pt;}
._59{width:86.080000pt;}
._45{width:89.160000pt;}
._7f{width:91.000000pt;}
._47{width:92.520000pt;}
._5d{width:93.733333pt;}
._67{width:94.826667pt;}
._78{width:100.960000pt;}
._48{width:104.280000pt;}
._5b{width:105.960000pt;}
._4a{width:107.640000pt;}
._62{width:109.200000pt;}
._75{width:116.080000pt;}
._49{width:119.400000pt;}
._83{width:121.586667pt;}
._4e{width:122.760000pt;}
._6b{width:128.760000pt;}
._60{width:130.840000pt;}
._4f{width:132.080000pt;}
._6f{width:133.160000pt;}
._61{width:134.680000pt;}
._63{width:136.773333pt;}
._6e{width:138.040000pt;}
._4b{width:140.680000pt;}
._51{width:142.080000pt;}
._74{width:143.600000pt;}
._52{width:151.520000pt;}
._66{width:152.480000pt;}
._73{width:156.773333pt;}
._6a{width:160.240000pt;}
._68{width:165.653333pt;}
._44{width:166.880000pt;}
._54{width:168.000000pt;}
._6d{width:172.520000pt;}
._71{width:178.973333pt;}
._3c{width:188.440000pt;}
._38{width:195.320000pt;}
._6c{width:198.040000pt;}
._5e{width:200.280000pt;}
._79{width:206.773333pt;}
._70{width:213.600000pt;}
._77{width:215.840000pt;}
._72{width:219.120000pt;}
._36{width:220.413333pt;}
._7b{width:222.520000pt;}
._76{width:228.973333pt;}
._2f{width:230.106667pt;}
._32{width:231.301333pt;}
._5c{width:237.320000pt;}
._23{width:239.872000pt;}
._65{width:246.960000pt;}
._4c{width:251.360000pt;}
._2d{width:252.634667pt;}
._50{width:257.813333pt;}
._53{width:259.120000pt;}
._2a{width:262.109333pt;}
._2e{width:271.240000pt;}
._69{width:274.573333pt;}
._2c{width:281.906667pt;}
._34{width:284.634667pt;}
._10{width:291.712000pt;}
._16{width:292.954667pt;}
._2b{width:295.856000pt;}
._33{width:297.906667pt;}
._7a{width:300.240000pt;}
._86{width:304.346667pt;}
._39{width:305.968000pt;}
._37{width:309.802667pt;}
._30{width:320.085333pt;}
._31{width:321.192000pt;}
._1a{width:324.010667pt;}
._f{width:326.741333pt;}
._1b{width:330.880000pt;}
._1d{width:332.629333pt;}
._27{width:335.957333pt;}
._1e{width:338.944000pt;}
._12{width:340.394667pt;}
._17{width:345.130667pt;}
._35{width:347.136000pt;}
._22{width:350.805333pt;}
._8d{width:354.602667pt;}
._14{width:357.546667pt;}
._15{width:363.861333pt;}
._24{width:366.464000pt;}
._26{width:368.213333pt;}
._20{width:373.546667pt;}
._90{width:376.618667pt;}
._3a{width:379.136000pt;}
._19{width:380.416000pt;}
._94{width:386.688000pt;}
._d{width:388.010667pt;}
._8c{width:390.229333pt;}
._11{width:392.832000pt;}
._29{width:398.080000pt;}
._1c{width:399.573333pt;}
._e{width:400.768000pt;}
._89{width:409.216000pt;}
._88{width:412.194667pt;}
._13{width:413.781333pt;}
._18{width:416.170667pt;}
._25{width:426.837333pt;}
._1f{width:428.330667pt;}
._21{width:430.378667pt;}
._87{width:449.450667pt;}
._8f{width:459.392000pt;}
._8b{width:466.517333pt;}
._91{width:471.253333pt;}
._93{width:485.461333pt;}
._28{width:487.261333pt;}
._95{width:491.434667pt;}
._92{width:496.128000pt;}
._8a{width:498.560000pt;}
._8e{width:500.906667pt;}
._96{width:503.296000pt;}
._85{width:886.485333pt;}
._84{width:1046.357333pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{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;}
.y2c{bottom:42.468667pt;}
.yfc{bottom:73.674000pt;}
.y4c{bottom:74.008400pt;}
.y12a{bottom:74.462533pt;}
.y106{bottom:74.764400pt;}
.y8b{bottom:74.817467pt;}
.yea{bottom:75.323600pt;}
.y29{bottom:77.762933pt;}
.yfb{bottom:88.340667pt;}
.y105{bottom:88.759067pt;}
.ye9{bottom:89.990267pt;}
.y151{bottom:90.336533pt;}
.y129{bottom:90.462533pt;}
.y28{bottom:91.092933pt;}
.y8a{bottom:97.494800pt;}
.y104{bottom:102.753733pt;}
.y27{bottom:104.426267pt;}
.ye8{bottom:104.656933pt;}
.y150{bottom:105.976533pt;}
.y128{bottom:106.462533pt;}
.yfa{bottom:111.018000pt;}
.y89{bottom:111.937467pt;}
.y127{bottom:122.462533pt;}
.yf9{bottom:125.460667pt;}
.y88{bottom:126.380133pt;}
.ye7{bottom:127.213333pt;}
.y14f{bottom:137.976533pt;}
.y126{bottom:138.462533pt;}
.yf8{bottom:139.903333pt;}
.y87{bottom:140.822800pt;}
.ye6{bottom:140.993333pt;}
.yf7{bottom:154.346000pt;}
.y125{bottom:154.462533pt;}
.ye5{bottom:154.773333pt;}
.y86{bottom:155.265467pt;}
.y18a{bottom:159.345333pt;}
.y1c4{bottom:164.678667pt;}
.yf6{bottom:168.788667pt;}
.y85{bottom:169.708133pt;}
.y14e{bottom:169.976533pt;}
.y124{bottom:170.462533pt;}
.y189{bottom:172.678667pt;}
.y1c3{bottom:178.012000pt;}
.ye4{bottom:179.893333pt;}
.yf5{bottom:183.231333pt;}
.y84{bottom:184.150800pt;}
.y188{bottom:186.012000pt;}
.y123{bottom:186.462533pt;}
.y1c2{bottom:191.345333pt;}
.ye3{bottom:193.669067pt;}
.yf4{bottom:197.674000pt;}
.y83{bottom:198.593467pt;}
.y187{bottom:199.345333pt;}
.y14d{bottom:202.336533pt;}
.y122{bottom:202.462533pt;}
.y1c1{bottom:204.678667pt;}
.ye2{bottom:207.449067pt;}
.yf3{bottom:212.116667pt;}
.y186{bottom:212.678667pt;}
.y82{bottom:213.036133pt;}
.y14c{bottom:217.976533pt;}
.y1c0{bottom:218.012000pt;}
.y121{bottom:218.462533pt;}
.ye1{bottom:221.229067pt;}
.y185{bottom:226.012000pt;}
.yf2{bottom:226.559333pt;}
.y81{bottom:227.478800pt;}
.y1bf{bottom:231.345333pt;}
.y26{bottom:233.390400pt;}
.y120{bottom:234.462533pt;}
.ye0{bottom:235.009067pt;}
.y184{bottom:239.345333pt;}
.yf1{bottom:241.002000pt;}
.y80{bottom:241.921467pt;}
.y1be{bottom:244.678667pt;}
.ydf{bottom:248.789067pt;}
.y14b{bottom:250.336533pt;}
.y11f{bottom:250.462533pt;}
.y183{bottom:252.678667pt;}
.yf0{bottom:255.444667pt;}
.y7f{bottom:256.364133pt;}
.y25{bottom:257.697067pt;}
.y1bd{bottom:258.012000pt;}
.yde{bottom:262.569067pt;}
.y182{bottom:266.012000pt;}
.y14a{bottom:266.336533pt;}
.y11e{bottom:266.462533pt;}
.yef{bottom:269.887333pt;}
.y1bc{bottom:271.345333pt;}
.y24{bottom:273.697067pt;}
.ydd{bottom:276.349067pt;}
.y181{bottom:279.345333pt;}
.y7e{bottom:282.145467pt;}
.y149{bottom:282.336533pt;}
.y11d{bottom:282.462533pt;}
.y1bb{bottom:284.678667pt;}
.y23{bottom:289.697067pt;}
.ydc{bottom:290.129067pt;}
.y180{bottom:292.678667pt;}
.yee{bottom:295.668667pt;}
.y1ba{bottom:298.012000pt;}
.y148{bottom:298.342533pt;}
.y11c{bottom:298.462533pt;}
.ydb{bottom:303.909067pt;}
.y22{bottom:305.697067pt;}
.y17f{bottom:306.012000pt;}
.y7d{bottom:307.926800pt;}
.y1b9{bottom:311.345333pt;}
.y147{bottom:314.342533pt;}
.y11b{bottom:314.462533pt;}
.yda{bottom:317.684800pt;}
.y17e{bottom:319.345333pt;}
.yed{bottom:321.450000pt;}
.y21{bottom:321.697067pt;}
.y1b8{bottom:324.678667pt;}
.y146{bottom:330.342533pt;}
.y11a{bottom:330.462533pt;}
.yd9{bottom:331.464800pt;}
.y17d{bottom:332.678667pt;}
.y20{bottom:337.697067pt;}
.y1b7{bottom:338.012000pt;}
.yd8{bottom:345.244800pt;}
.y17c{bottom:346.012000pt;}
.y145{bottom:346.342533pt;}
.y119{bottom:346.462533pt;}
.yec{bottom:350.235867pt;}
.y1b6{bottom:351.345333pt;}
.yba{bottom:351.513333pt;}
.y7c{bottom:353.310133pt;}
.y1f{bottom:353.697067pt;}
.yd7{bottom:359.024800pt;}
.y17b{bottom:359.345333pt;}
.y144{bottom:362.342533pt;}
.y118{bottom:362.462533pt;}
.y1b5{bottom:364.678667pt;}
.y7b{bottom:367.752800pt;}
.y1e{bottom:369.697067pt;}
.y17a{bottom:372.678667pt;}
.yd6{bottom:372.804800pt;}
.y143{bottom:377.982533pt;}
.y1b4{bottom:378.012000pt;}
.y117{bottom:378.462533pt;}
.y7a{bottom:382.195467pt;}
.y1d{bottom:385.697067pt;}
.y179{bottom:386.012000pt;}
.yd5{bottom:386.584800pt;}
.y1b3{bottom:391.345333pt;}
.yfe{bottom:393.791333pt;}
.yb9{bottom:394.355867pt;}
.y116{bottom:394.462533pt;}
.y9c{bottom:394.475867pt;}
.y79{bottom:396.638133pt;}
.y178{bottom:399.345333pt;}
.yd4{bottom:400.364800pt;}
.y1c{bottom:401.697067pt;}
.y1b2{bottom:404.678667pt;}
.yfd{bottom:407.786000pt;}
.y142{bottom:410.342533pt;}
.yb8{bottom:410.355867pt;}
.y115{bottom:410.462533pt;}
.y9b{bottom:410.475867pt;}
.y78{bottom:411.080800pt;}
.y177{bottom:412.678667pt;}
.yd3{bottom:414.144800pt;}
.y1b{bottom:417.697067pt;}
.y1b1{bottom:418.012000pt;}
.y77{bottom:425.523467pt;}
.y176{bottom:426.012000pt;}
.y141{bottom:426.342533pt;}
.yb7{bottom:426.355867pt;}
.y114{bottom:426.462533pt;}
.y9a{bottom:426.475867pt;}
.yd2{bottom:427.924800pt;}
.y103{bottom:429.441733pt;}
.y1b0{bottom:431.345333pt;}
.y1a{bottom:433.697067pt;}
.y175{bottom:439.345333pt;}
.y76{bottom:439.966133pt;}
.yd1{bottom:441.700533pt;}
.y140{bottom:442.342533pt;}
.yb6{bottom:442.355867pt;}
.y113{bottom:442.462533pt;}
.y99{bottom:442.475867pt;}
.y102{bottom:443.436400pt;}
.y1af{bottom:444.678667pt;}
.y19{bottom:449.697067pt;}
.y174{bottom:452.678667pt;}
.y75{bottom:454.408800pt;}
.yd0{bottom:455.480533pt;}
.y101{bottom:457.431067pt;}
.y1ae{bottom:458.012000pt;}
.y13f{bottom:458.342533pt;}
.y112{bottom:458.462533pt;}
.y98{bottom:458.475867pt;}
.y18{bottom:465.697067pt;}
.y173{bottom:466.012000pt;}
.y74{bottom:468.851467pt;}
.ycf{bottom:469.260533pt;}
.y1ad{bottom:471.345333pt;}
.y100{bottom:471.425733pt;}
.yb5{bottom:473.995867pt;}
.y13e{bottom:474.342533pt;}
.y111{bottom:474.462533pt;}
.y97{bottom:474.475867pt;}
.y172{bottom:479.345333pt;}
.y17{bottom:481.697067pt;}
.yce{bottom:483.040533pt;}
.y73{bottom:483.294133pt;}
.y1ac{bottom:484.678667pt;}
.y13d{bottom:490.342533pt;}
.y110{bottom:490.462533pt;}
.y47{bottom:490.464533pt;}
.y96{bottom:490.475867pt;}
.y171{bottom:492.678667pt;}
.ycd{bottom:496.820533pt;}
.y16{bottom:497.697067pt;}
.y72{bottom:497.736800pt;}
.y1ab{bottom:498.012000pt;}
.y170{bottom:506.012000pt;}
.y13c{bottom:506.342533pt;}
.y10f{bottom:506.462533pt;}
.y46{bottom:506.464533pt;}
.y95{bottom:506.475867pt;}
.ycc{bottom:510.600533pt;}
.y1aa{bottom:511.345333pt;}
.y71{bottom:512.179467pt;}
.y15{bottom:513.697067pt;}
.y16f{bottom:519.345333pt;}
.y13b{bottom:521.982533pt;}
.y10e{bottom:522.462533pt;}
.y45{bottom:522.464533pt;}
.y94{bottom:522.475867pt;}
.ycb{bottom:524.380533pt;}
.y1a9{bottom:524.678667pt;}
.y16e{bottom:532.678667pt;}
.y1a8{bottom:538.012000pt;}
.yca{bottom:538.160533pt;}
.y10d{bottom:538.462533pt;}
.y44{bottom:538.464533pt;}
.y93{bottom:538.475867pt;}
.y70{bottom:540.190133pt;}
.y16d{bottom:546.012000pt;}
.y1a7{bottom:551.345333pt;}
.yc9{bottom:551.940533pt;}
.y14{bottom:553.837600pt;}
.y13a{bottom:554.342533pt;}
.y10c{bottom:554.462533pt;}
.y43{bottom:554.464533pt;}
.yb4{bottom:554.475867pt;}
.y16c{bottom:559.345333pt;}
.y1a6{bottom:564.678667pt;}
.y13{bottom:564.904933pt;}
.yc8{bottom:565.709467pt;}
.y4b{bottom:570.104533pt;}
.y92{bottom:570.115867pt;}
.y139{bottom:570.342533pt;}
.y10b{bottom:570.462533pt;}
.y42{bottom:570.464533pt;}
.yb3{bottom:570.475867pt;}
.y6f{bottom:571.209200pt;}
.y16b{bottom:572.678667pt;}
.y1a5{bottom:578.012000pt;}
.yc7{bottom:579.489467pt;}
.y16a{bottom:586.012000pt;}
.y138{bottom:586.342533pt;}
.y10a{bottom:586.462533pt;}
.y41{bottom:586.464533pt;}
.yb2{bottom:586.475867pt;}
.y6e{bottom:588.542533pt;}
.y1a4{bottom:591.345333pt;}
.y12{bottom:593.096533pt;}
.yc6{bottom:593.269467pt;}
.y169{bottom:599.345333pt;}
.y4a{bottom:601.984533pt;}
.y137{bottom:602.342533pt;}
.y109{bottom:602.462533pt;}
.y40{bottom:602.464533pt;}
.yb1{bottom:602.475867pt;}
.y1a3{bottom:604.678667pt;}
.yc5{bottom:607.049467pt;}
.y11{bottom:609.918933pt;}
.y168{bottom:612.678667pt;}
.y10{bottom:617.096533pt;}
.y1a2{bottom:618.012000pt;}
.y136{bottom:618.342533pt;}
.y108{bottom:618.462533pt;}
.y3f{bottom:618.464533pt;}
.yb0{bottom:618.475867pt;}
.y91{bottom:618.595867pt;}
.y167{bottom:626.012000pt;}
.y1a1{bottom:631.345333pt;}
.yf{bottom:633.918933pt;}
.y135{bottom:634.342533pt;}
.y60{bottom:634.462533pt;}
.y3e{bottom:634.464533pt;}
.yaf{bottom:634.475867pt;}
.y6d{bottom:634.595867pt;}
.yc4{bottom:634.609467pt;}
.y166{bottom:639.345333pt;}
.ye{bottom:641.096533pt;}
.y1a0{bottom:644.678667pt;}
.y134{bottom:650.342533pt;}
.y5f{bottom:650.462533pt;}
.y3d{bottom:650.464533pt;}
.yae{bottom:650.475867pt;}
.y6c{bottom:650.595867pt;}
.y165{bottom:652.678667pt;}
.yd{bottom:653.096533pt;}
.y19f{bottom:658.012000pt;}
.yc3{bottom:662.169467pt;}
.yc{bottom:665.096533pt;}
.y164{bottom:666.012000pt;}
.y133{bottom:666.342533pt;}
.y5e{bottom:666.462533pt;}
.y3c{bottom:666.464533pt;}
.yad{bottom:666.475867pt;}
.y6b{bottom:666.595867pt;}
.y19e{bottom:671.345333pt;}
.yb{bottom:677.096533pt;}
.y163{bottom:679.345333pt;}
.y132{bottom:682.342533pt;}
.y5d{bottom:682.462533pt;}
.y3b{bottom:682.464533pt;}
.yac{bottom:682.475867pt;}
.y6a{bottom:682.595867pt;}
.y19d{bottom:684.678667pt;}
.yc2{bottom:689.729467pt;}
.y162{bottom:692.678667pt;}
.ya{bottom:693.919067pt;}
.y19c{bottom:698.012000pt;}
.y131{bottom:698.342533pt;}
.y5c{bottom:698.462533pt;}
.y3a{bottom:698.464533pt;}
.yab{bottom:698.475867pt;}
.y69{bottom:698.595867pt;}
.yc1{bottom:703.509467pt;}
.y161{bottom:706.012000pt;}
.y19b{bottom:711.345333pt;}
.y130{bottom:714.342533pt;}
.y5b{bottom:714.462533pt;}
.y39{bottom:714.464533pt;}
.yaa{bottom:714.475867pt;}
.y68{bottom:714.595867pt;}
.y160{bottom:719.345333pt;}
.y9{bottom:719.454400pt;}
.yc0{bottom:722.959467pt;}
.y19a{bottom:724.678667pt;}
.y12f{bottom:730.342533pt;}
.y5a{bottom:730.462533pt;}
.y38{bottom:730.464533pt;}
.ya9{bottom:730.475867pt;}
.y67{bottom:730.595867pt;}
.y15f{bottom:732.678667pt;}
.y199{bottom:738.012000pt;}
.y8{bottom:738.116400pt;}
.y15e{bottom:746.012000pt;}
.y12e{bottom:746.342533pt;}
.y59{bottom:746.462533pt;}
.y37{bottom:746.464533pt;}
.ya8{bottom:746.475867pt;}
.y66{bottom:746.595867pt;}
.ybf{bottom:748.079467pt;}
.y198{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y15d{bottom:759.345333pt;}
.y12d{bottom:762.342533pt;}
.y58{bottom:762.462533pt;}
.y36{bottom:762.464533pt;}
.ya7{bottom:762.475867pt;}
.y65{bottom:762.595867pt;}
.ybe{bottom:762.749467pt;}
.y197{bottom:764.678667pt;}
.y15c{bottom:772.678667pt;}
.y196{bottom:778.012000pt;}
.y12c{bottom:778.342533pt;}
.y57{bottom:778.462533pt;}
.y35{bottom:778.464533pt;}
.ya6{bottom:778.475867pt;}
.y64{bottom:778.595867pt;}
.y15b{bottom:786.012000pt;}
.ybd{bottom:790.982533pt;}
.y195{bottom:791.345333pt;}
.y56{bottom:794.462533pt;}
.y34{bottom:794.464533pt;}
.ya5{bottom:794.475867pt;}
.y63{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y15a{bottom:799.345333pt;}
.y194{bottom:804.678667pt;}
.ybc{bottom:808.315867pt;}
.y12b{bottom:809.982533pt;}
.y55{bottom:810.462533pt;}
.y33{bottom:810.464533pt;}
.ya4{bottom:810.475867pt;}
.y62{bottom:810.595867pt;}
.y159{bottom:812.678667pt;}
.y193{bottom:818.012000pt;}
.y158{bottom:826.012000pt;}
.y54{bottom:826.462533pt;}
.y32{bottom:826.464533pt;}
.ya3{bottom:826.475867pt;}
.y90{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y192{bottom:831.345333pt;}
.y157{bottom:839.345333pt;}
.y61{bottom:842.235867pt;}
.y53{bottom:842.462533pt;}
.y31{bottom:842.464533pt;}
.ya2{bottom:842.475867pt;}
.y8f{bottom:842.595867pt;}
.y191{bottom:844.678667pt;}
.y156{bottom:852.678667pt;}
.y190{bottom:858.012000pt;}
.y52{bottom:858.462533pt;}
.y30{bottom:858.464533pt;}
.ya1{bottom:858.475867pt;}
.y8e{bottom:858.595867pt;}
.y4{bottom:862.635733pt;}
.y155{bottom:866.012000pt;}
.y18f{bottom:871.345333pt;}
.y51{bottom:874.462533pt;}
.y2f{bottom:874.464533pt;}
.ya0{bottom:874.475867pt;}
.y154{bottom:879.345333pt;}
.y18e{bottom:884.678667pt;}
.y8d{bottom:890.235867pt;}
.y50{bottom:890.462533pt;}
.y2e{bottom:890.464533pt;}
.y9f{bottom:890.475867pt;}
.y153{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y18d{bottom:898.012000pt;}
.y4f{bottom:906.462533pt;}
.y49{bottom:906.464533pt;}
.y9e{bottom:906.475867pt;}
.y18c{bottom:911.345333pt;}
.y2d{bottom:922.104533pt;}
.y4e{bottom:922.462533pt;}
.y48{bottom:922.464533pt;}
.y9d{bottom:922.475867pt;}
.y18b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y152{bottom:1006.594400pt;}
.y4d{bottom:1006.595067pt;}
.ybb{bottom:1006.596000pt;}
.yeb{bottom:1006.598267pt;}
.y1c5{bottom:1006.598667pt;}
.y107{bottom:1006.625733pt;}
.y8c{bottom:1006.636133pt;}
.yff{bottom:1006.644667pt;}
.y2b{bottom:1009.860000pt;}
.y2a{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.h15{height:27.773438pt;}
.h14{height:27.792969pt;}
.h17{height:27.810035pt;}
.h16{height:27.837235pt;}
.he{height:29.121094pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h13{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h11{height:37.057292pt;}
.h18{height:37.354167pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h12{height:46.692708pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x29{left:69.921200pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x11{left:88.818933pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x2d{left:109.606533pt;}
.x3{left:111.491467pt;}
.x8{left:169.380933pt;}
.x28{left:175.748933pt;}
.x2a{left:181.003867pt;}
.x17{left:187.644800pt;}
.x2c{left:191.602267pt;}
.x15{left:231.165467pt;}
.x14{left:256.776133pt;}
.x27{left:297.448933pt;}
.x1a{left:305.978933pt;}
.x1c{left:350.188933pt;}
.x1b{left:355.288933pt;}
.x6{left:404.481333pt;}
.xa{left:406.300933pt;}
.x1d{left:407.638933pt;}
.x13{left:420.285467pt;}
.xf{left:425.209200pt;}
.xc{left:436.540933pt;}
.x2e{left:447.878533pt;}
.x10{left:455.449200pt;}
.x1e{left:456.998933pt;}
.xb{left:466.914267pt;}
.x1f{left:467.828933pt;}
.x2b{left:507.298133pt;}
.x18{left:515.031467pt;}
.x12{left:531.293600pt;}
.x20{left:536.628933pt;}
.x21{left:579.818933pt;}
.x22{left:588.428933pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x23{left:630.718933pt;}
.x24{left:633.708933pt;}
.xd{left:653.396800pt;}
.x19{left:669.552267pt;}
.x16{left:672.296133pt;}
.x25{left:686.858933pt;}
.x26{left:692.408933pt;}
}




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