
    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_9acda437d2f2ed670ec2f549.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_def96a6b8a4098be08e34d1b.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_3b6b335ceac5caf6e30fb987.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d15a845e97bec2dfe9f1ac57.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_136ed0b89a3e1560f48e87a7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_55c7a19e7285300cfd45ab23.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_8b3fcb3b4bf913c128669e0d.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_e7c4974ed1d32083ca8d3dda.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5c0a931238dac3d4ec71cde7.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_fb343518852da1f938bc2dbd.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_147ce6ce0702465651905698.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_07d5558314f0526564819c9a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4d49634bbc4198dfe6af90ad.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d933d5fbbc1790f3739eddb9.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-28.263000px;}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-11.730000px;}
.v6{vertical-align:-9.357600px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.620000px;}
.v9{vertical-align:13.868400px;}
.v8{vertical-align:15.236400px;}
.v7{vertical-align:22.610400px;}
.v4{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls81{letter-spacing:-6.192000px;}
.ls82{letter-spacing:-5.616000px;}
.lse{letter-spacing:-0.780000px;}
.ls83{letter-spacing:-0.528000px;}
.ls4f{letter-spacing:-0.360000px;}
.ls85{letter-spacing:-0.336000px;}
.ls66{letter-spacing:-0.300000px;}
.ls91{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.120000px;}
.ls80{letter-spacing:-0.096000px;}
.ls31{letter-spacing:-0.060000px;}
.ls90{letter-spacing:-0.048000px;}
.lsd{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls79{letter-spacing:0.048000px;}
.ls5c{letter-spacing:0.053633px;}
.ls9{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.069960px;}
.ls42{letter-spacing:0.072000px;}
.ls3e{letter-spacing:0.075960px;}
.ls3f{letter-spacing:0.078660px;}
.ls41{letter-spacing:0.081720px;}
.ls5a{letter-spacing:0.091568px;}
.ls5d{letter-spacing:0.096000px;}
.ls50{letter-spacing:0.100598px;}
.ls7{letter-spacing:0.120000px;}
.ls5b{letter-spacing:0.122441px;}
.ls51{letter-spacing:0.134515px;}
.ls71{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls58{letter-spacing:0.190613px;}
.ls64{letter-spacing:0.192000px;}
.ls47{letter-spacing:0.198060px;}
.ls4e{letter-spacing:0.207518px;}
.ls49{letter-spacing:0.209880px;}
.ls6{letter-spacing:0.240000px;}
.ls70{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls76{letter-spacing:0.336000px;}
.ls3d{letter-spacing:0.337260px;}
.ls8{letter-spacing:0.360000px;}
.ls6c{letter-spacing:0.384000px;}
.ls59{letter-spacing:0.419760px;}
.ls1b{letter-spacing:0.420000px;}
.ls6a{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.480000px;}
.ls6f{letter-spacing:0.528000px;}
.ls2d{letter-spacing:0.540000px;}
.ls6d{letter-spacing:0.576000px;}
.ls3c{letter-spacing:0.580860px;}
.ls26{letter-spacing:0.600000px;}
.ls84{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls69{letter-spacing:0.672000px;}
.ls12{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.768000px;}
.lsb{letter-spacing:0.780000px;}
.ls7d{letter-spacing:0.816000px;}
.ls18{letter-spacing:0.840000px;}
.ls89{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls7b{letter-spacing:0.912000px;}
.lsc{letter-spacing:0.960000px;}
.ls65{letter-spacing:1.008000px;}
.ls3b{letter-spacing:1.020000px;}
.ls78{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls43{letter-spacing:1.095060px;}
.ls7a{letter-spacing:1.104000px;}
.ls14{letter-spacing:1.140000px;}
.ls74{letter-spacing:1.152000px;}
.ls21{letter-spacing:1.200000px;}
.ls67{letter-spacing:1.248000px;}
.ls1a{letter-spacing:1.260000px;}
.ls7c{letter-spacing:1.296000px;}
.ls13{letter-spacing:1.320000px;}
.ls6e{letter-spacing:1.344000px;}
.ls30{letter-spacing:1.380000px;}
.ls77{letter-spacing:1.392000px;}
.ls20{letter-spacing:1.440000px;}
.ls8e{letter-spacing:1.488000px;}
.ls2b{letter-spacing:1.500000px;}
.ls4b{letter-spacing:1.525800px;}
.ls8b{letter-spacing:1.536000px;}
.ls37{letter-spacing:1.560000px;}
.ls22{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.632000px;}
.ls5{letter-spacing:1.680000px;}
.ls63{letter-spacing:1.728000px;}
.ls15{letter-spacing:1.740000px;}
.ls28{letter-spacing:1.800000px;}
.ls87{letter-spacing:1.824000px;}
.ls2f{letter-spacing:1.860000px;}
.ls4{letter-spacing:1.920000px;}
.ls75{letter-spacing:1.968000px;}
.ls2a{letter-spacing:1.980000px;}
.ls2{letter-spacing:2.040000px;}
.ls8c{letter-spacing:2.064000px;}
.ls17{letter-spacing:2.100000px;}
.ls33{letter-spacing:2.160000px;}
.ls73{letter-spacing:2.208000px;}
.ls36{letter-spacing:2.220000px;}
.ls72{letter-spacing:2.256000px;}
.ls48{letter-spacing:2.280000px;}
.ls8a{letter-spacing:2.304000px;}
.ls34{letter-spacing:2.340000px;}
.ls54{letter-spacing:2.400000px;}
.ls8d{letter-spacing:2.448000px;}
.ls3a{letter-spacing:2.460000px;}
.ls8f{letter-spacing:2.496000px;}
.ls1f{letter-spacing:2.520000px;}
.ls4d{letter-spacing:2.580000px;}
.ls7e{letter-spacing:2.592000px;}
.ls4a{letter-spacing:2.629800px;}
.ls23{letter-spacing:2.640000px;}
.ls86{letter-spacing:2.688000px;}
.ls29{letter-spacing:2.700000px;}
.ls4c{letter-spacing:2.760000px;}
.ls88{letter-spacing:2.784000px;}
.ls56{letter-spacing:2.820000px;}
.ls46{letter-spacing:2.880000px;}
.ls1c{letter-spacing:2.940000px;}
.ls7f{letter-spacing:2.976000px;}
.ls24{letter-spacing:3.000000px;}
.ls16{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.180000px;}
.ls1d{letter-spacing:3.240000px;}
.ls57{letter-spacing:3.300000px;}
.ls3{letter-spacing:3.420000px;}
.ls55{letter-spacing:3.540000px;}
.ls45{letter-spacing:3.600000px;}
.ls32{letter-spacing:3.660000px;}
.ls62{letter-spacing:3.720000px;}
.ls44{letter-spacing:3.840000px;}
.ls25{letter-spacing:3.900000px;}
.ls35{letter-spacing:4.080000px;}
.ls52{letter-spacing:4.260000px;}
.ls5f{letter-spacing:4.440000px;}
.ls39{letter-spacing:5.700000px;}
.ls60{letter-spacing:5.820000px;}
.ls38{letter-spacing:6.120000px;}
.ls61{letter-spacing:6.660000px;}
.ls5e{letter-spacing:8.160000px;}
.ls0{letter-spacing:59.532876px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws39{word-spacing:-19.260000px;}
.ws27{word-spacing:-16.680000px;}
.ws92{word-spacing:-16.080000px;}
.ws3{word-spacing:-15.960000px;}
.ws8c{word-spacing:-15.600000px;}
.ws4c{word-spacing:-15.540000px;}
.ws12{word-spacing:-15.360000px;}
.ws2{word-spacing:-15.000000px;}
.ws13{word-spacing:-14.940000px;}
.ws66{word-spacing:-14.256000px;}
.ws6c{word-spacing:-14.208000px;}
.ws8d{word-spacing:-13.824000px;}
.ws91{word-spacing:-13.536000px;}
.ws95{word-spacing:-13.488000px;}
.ws68{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.344000px;}
.ws69{word-spacing:-13.296000px;}
.ws5a{word-spacing:-13.248000px;}
.ws96{word-spacing:-13.200000px;}
.ws6b{word-spacing:-13.152000px;}
.ws6a{word-spacing:-13.008000px;}
.ws8f{word-spacing:-12.912000px;}
.ws62{word-spacing:-12.768000px;}
.ws94{word-spacing:-12.624000px;}
.ws32{word-spacing:-12.574800px;}
.wsab{word-spacing:-12.528000px;}
.ws4{word-spacing:-12.510000px;}
.ws67{word-spacing:-12.480000px;}
.ws63{word-spacing:-12.432000px;}
.ws93{word-spacing:-12.240000px;}
.ws90{word-spacing:-12.144000px;}
.ws97{word-spacing:-12.096000px;}
.ws8e{word-spacing:-12.048000px;}
.ws3e{word-spacing:-12.000000px;}
.ws3c{word-spacing:-11.446050px;}
.ws1{word-spacing:-10.210662px;}
.ws3a{word-spacing:-9.164760px;}
.ws29{word-spacing:-8.954880px;}
.ws28{word-spacing:-8.745000px;}
.ws33{word-spacing:-8.407200px;}
.ws3b{word-spacing:-7.652550px;}
.ws2a{word-spacing:-6.996000px;}
.ws65{word-spacing:-6.384000px;}
.ws64{word-spacing:-5.808000px;}
.ws50{word-spacing:-4.440000px;}
.wsa3{word-spacing:-4.128000px;}
.ws7{word-spacing:-2.886000px;}
.ws98{word-spacing:-2.688000px;}
.ws36{word-spacing:-2.640000px;}
.ws60{word-spacing:-2.400000px;}
.wsa8{word-spacing:-2.256000px;}
.ws21{word-spacing:-2.220000px;}
.ws89{word-spacing:-2.208000px;}
.ws73{word-spacing:-1.968000px;}
.ws83{word-spacing:-1.392000px;}
.wsac{word-spacing:-1.344000px;}
.ws7b{word-spacing:-1.296000px;}
.ws5e{word-spacing:-1.248000px;}
.wsaa{word-spacing:-1.200000px;}
.ws86{word-spacing:-1.152000px;}
.ws79{word-spacing:-1.104000px;}
.ws7c{word-spacing:-0.960000px;}
.ws9a{word-spacing:-0.864000px;}
.ws16{word-spacing:-0.840000px;}
.ws85{word-spacing:-0.816000px;}
.ws8b{word-spacing:-0.768000px;}
.ws84{word-spacing:-0.720000px;}
.ws7d{word-spacing:-0.624000px;}
.ws4d{word-spacing:-0.600000px;}
.wsa6{word-spacing:-0.528000px;}
.ws77{word-spacing:-0.480000px;}
.ws44{word-spacing:-0.420000px;}
.ws9e{word-spacing:-0.288000px;}
.ws52{word-spacing:-0.240000px;}
.ws99{word-spacing:-0.192000px;}
.wsa2{word-spacing:-0.144000px;}
.ws38{word-spacing:-0.134515px;}
.ws48{word-spacing:-0.122441px;}
.ws5b{word-spacing:-0.120000px;}
.ws37{word-spacing:-0.100598px;}
.ws4b{word-spacing:-0.096000px;}
.ws47{word-spacing:-0.091568px;}
.ws1e{word-spacing:-0.060000px;}
.ws49{word-spacing:-0.053633px;}
.ws82{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws9d{word-spacing:0.048000px;}
.ws56{word-spacing:0.060000px;}
.wsa4{word-spacing:0.096000px;}
.ws8{word-spacing:0.120000px;}
.ws6e{word-spacing:0.144000px;}
.wsd{word-spacing:0.180000px;}
.ws72{word-spacing:0.192000px;}
.ws7a{word-spacing:0.240000px;}
.ws9b{word-spacing:0.288000px;}
.ws42{word-spacing:0.300000px;}
.ws71{word-spacing:0.336000px;}
.ws2b{word-spacing:0.420000px;}
.ws20{word-spacing:0.480000px;}
.ws87{word-spacing:0.528000px;}
.ws55{word-spacing:0.540000px;}
.wsa5{word-spacing:0.576000px;}
.wsa0{word-spacing:0.624000px;}
.ws75{word-spacing:0.672000px;}
.ws6f{word-spacing:0.864000px;}
.ws4e{word-spacing:1.020000px;}
.ws53{word-spacing:1.080000px;}
.ws76{word-spacing:1.104000px;}
.ws43{word-spacing:1.140000px;}
.wsf{word-spacing:1.200000px;}
.ws80{word-spacing:1.344000px;}
.ws7e{word-spacing:1.392000px;}
.ws5c{word-spacing:1.560000px;}
.ws2d{word-spacing:1.620000px;}
.ws6d{word-spacing:1.632000px;}
.ws59{word-spacing:1.800000px;}
.ws5f{word-spacing:1.872000px;}
.ws4f{word-spacing:1.920000px;}
.ws23{word-spacing:1.980000px;}
.wsa1{word-spacing:2.016000px;}
.ws9c{word-spacing:2.064000px;}
.ws11{word-spacing:2.100000px;}
.ws10{word-spacing:2.160000px;}
.ws17{word-spacing:2.220000px;}
.ws74{word-spacing:2.256000px;}
.ws22{word-spacing:2.400000px;}
.ws70{word-spacing:2.448000px;}
.ws35{word-spacing:2.520000px;}
.wsa7{word-spacing:2.544000px;}
.ws1d{word-spacing:2.580000px;}
.ws88{word-spacing:2.592000px;}
.wsc{word-spacing:2.640000px;}
.ws2e{word-spacing:2.820000px;}
.ws78{word-spacing:2.832000px;}
.ws24{word-spacing:2.880000px;}
.ws2c{word-spacing:2.903340px;}
.ws7f{word-spacing:3.024000px;}
.ws18{word-spacing:3.060000px;}
.ws9f{word-spacing:3.072000px;}
.ws14{word-spacing:3.180000px;}
.ws81{word-spacing:3.216000px;}
.ws3f{word-spacing:3.240000px;}
.ws54{word-spacing:3.360000px;}
.wsb{word-spacing:3.600000px;}
.ws1b{word-spacing:3.660000px;}
.ws58{word-spacing:3.720000px;}
.ws45{word-spacing:3.780000px;}
.ws15{word-spacing:3.840000px;}
.ws8a{word-spacing:3.888000px;}
.ws4a{word-spacing:3.936000px;}
.ws46{word-spacing:3.960000px;}
.ws61{word-spacing:3.984000px;}
.ws1a{word-spacing:4.020000px;}
.ws1f{word-spacing:4.080000px;}
.ws19{word-spacing:4.200000px;}
.ws51{word-spacing:4.260000px;}
.ws25{word-spacing:4.320000px;}
.ws26{word-spacing:4.440000px;}
.ws1c{word-spacing:4.500000px;}
.ws57{word-spacing:4.560000px;}
.wse{word-spacing:4.680000px;}
.ws41{word-spacing:4.800000px;}
.ws40{word-spacing:4.860000px;}
.wsa{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.wsa9{word-spacing:5.472000px;}
.ws5d{word-spacing:5.520000px;}
.ws34{word-spacing:20.019082px;}
.ws3d{word-spacing:209.737420px;}
.ws31{word-spacing:271.536000px;}
.ws2f{word-spacing:284.256000px;}
.ws30{word-spacing:426.672000px;}
._9{margin-left:-2898.096000px;}
._a{margin-left:-2874.288000px;}
._b{margin-left:-6.720000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.570000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._5{width:1.020000px;}
._8{width:2.052000px;}
._7{width:3.096000px;}
._6{width:4.860000px;}
._2a{width:5.880000px;}
._2c{width:8.256000px;}
._29{width:44.816587px;}
._28{width:57.693182px;}
._2{width:59.540814px;}
._27{width:70.267982px;}
._22{width:202.128000px;}
._16{width:233.280000px;}
._1a{width:251.856000px;}
._f{width:254.160000px;}
._2b{width:255.704757px;}
._d{width:261.743208px;}
._1c{width:266.160000px;}
._14{width:267.840000px;}
._13{width:304.848000px;}
._10{width:312.192000px;}
._21{width:319.200000px;}
._1d{width:324.192000px;}
._26{width:328.512000px;}
._e{width:348.624000px;}
._24{width:363.168000px;}
._18{width:372.528000px;}
._20{width:411.744000px;}
._25{width:414.732000px;}
._1e{width:446.448000px;}
._11{width:461.088000px;}
._23{width:502.290000px;}
._17{width:523.392000px;}
._1f{width:529.602000px;}
._15{width:660.672000px;}
._19{width:676.800000px;}
._1b{width:684.672000px;}
._12{width:735.360000px;}
._c{width:916.704000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fs10{font-size:30.610200px;}
.fse{font-size:33.628800px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsf{font-size:45.784200px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:50.299200px;}
.fs11{font-size:53.632800px;}
.fs12{font-size:59.290200px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsd{font-size:67.257600px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y125{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y108{bottom:83.779200px;}
.y74{bottom:83.790900px;}
.y6c{bottom:83.920350px;}
.y72{bottom:84.192750px;}
.y2c{bottom:88.026750px;}
.y135{bottom:92.121900px;}
.yb6{bottom:92.155050px;}
.y176{bottom:95.263500px;}
.yf6{bottom:99.523200px;}
.y71{bottom:99.936750px;}
.y124{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y6b{bottom:101.920350px;}
.y2b{bottom:103.023000px;}
.y134{bottom:107.121900px;}
.yb5{bottom:108.403050px;}
.y175{bottom:110.263500px;}
.y70{bottom:115.680750px;}
.y123{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y6a{bottom:119.920350px;}
.y133{bottom:122.121900px;}
.y103{bottom:122.355000px;}
.yb4{bottom:124.651050px;}
.y174{bottom:125.263500px;}
.y112{bottom:126.084000px;}
.y107{bottom:126.466350px;}
.y106{bottom:131.602200px;}
.y132{bottom:137.121900px;}
.y122{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y69{bottom:137.920350px;}
.y173{bottom:140.263500px;}
.yb3{bottom:140.899050px;}
.y105{bottom:143.087550px;}
.y110{bottom:147.185100px;}
.y131{bottom:152.121900px;}
.y172{bottom:155.263500px;}
.y121{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.yf9{bottom:156.570132px;}
.yb2{bottom:157.147050px;}
.y28{bottom:164.487000px;}
.y130{bottom:167.121900px;}
.y171{bottom:170.263500px;}
.y109{bottom:173.095200px;}
.yb1{bottom:173.395050px;}
.y68{bottom:173.515350px;}
.y120{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y12f{bottom:182.121900px;}
.y27{bottom:182.487000px;}
.y170{bottom:185.263500px;}
.yfa{bottom:185.414178px;}
.yb0{bottom:189.643050px;}
.y11f{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y12e{bottom:197.121900px;}
.y16f{bottom:200.263500px;}
.y26{bottom:200.487000px;}
.yaf{bottom:205.891050px;}
.y11e{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y12d{bottom:212.121900px;}
.yfb{bottom:214.189548px;}
.y16e{bottom:215.263500px;}
.y25{bottom:218.487000px;}
.yae{bottom:222.139050px;}
.y10a{bottom:223.303200px;}
.y11d{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y16d{bottom:230.263500px;}
.y24{bottom:236.487000px;}
.yad{bottom:238.387050px;}
.yfc{bottom:243.033594px;}
.y12c{bottom:245.230350px;}
.y16c{bottom:245.263500px;}
.y11c{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y23{bottom:254.487000px;}
.yac{bottom:254.635050px;}
.y16b{bottom:260.263500px;}
.y11b{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.yab{bottom:270.883050px;}
.yfd{bottom:271.877640px;}
.y22{bottom:272.487000px;}
.y10b{bottom:273.571200px;}
.y111{bottom:274.400850px;}
.y16a{bottom:275.263500px;}
.y11a{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.yaa{bottom:287.131050px;}
.y169{bottom:290.263500px;}
.y21{bottom:290.487000px;}
.y119{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.yfe{bottom:300.653010px;}
.ya9{bottom:303.379050px;}
.y168{bottom:305.263500px;}
.y20{bottom:308.487000px;}
.y12b{bottom:317.365350px;}
.y118{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y167{bottom:320.263500px;}
.y104{bottom:322.449600px;}
.y10c{bottom:323.779200px;}
.y2a{bottom:326.487000px;}
.yff{bottom:329.497056px;}
.ya8{bottom:334.891050px;}
.y166{bottom:335.263500px;}
.y117{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y1f{bottom:344.084100px;}
.y29{bottom:344.487000px;}
.y165{bottom:350.263500px;}
.y12a{bottom:353.365350px;}
.y116{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y100{bottom:358.341102px;}
.y164{bottom:365.263500px;}
.ya7{bottom:369.790350px;}
.y115{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y10d{bottom:373.987200px;}
.y163{bottom:380.263500px;}
.y101{bottom:387.116471px;}
.y114{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y162{bottom:395.263500px;}
.yf8{bottom:400.073400px;}
.y53{bottom:407.770350px;}
.y161{bottom:410.263500px;}
.yf7{bottom:413.220450px;}
.yb7{bottom:415.495050px;}
.y102{bottom:415.960517px;}
.y1e{bottom:417.514200px;}
.y10e{bottom:424.255200px;}
.y113{bottom:425.230350px;}
.y160{bottom:425.263500px;}
.y129{bottom:425.365350px;}
.y52{bottom:425.770350px;}
.ya6{bottom:425.920350px;}
.y92{bottom:426.062100px;}
.yd3{bottom:438.378000px;}
.y15f{bottom:440.263500px;}
.yd2{bottom:443.533800px;}
.y51{bottom:443.770350px;}
.ya5{bottom:443.920350px;}
.y91{bottom:444.062100px;}
.y1d{bottom:444.859200px;}
.yd4{bottom:447.793800px;}
.y15e{bottom:455.263500px;}
.y50{bottom:461.770350px;}
.ya4{bottom:461.920350px;}
.y90{bottom:462.062100px;}
.y1c{bottom:462.859200px;}
.y15d{bottom:470.263500px;}
.yd0{bottom:473.225677px;}
.y10f{bottom:474.463200px;}
.y128{bottom:479.365350px;}
.y4f{bottom:479.770350px;}
.ya3{bottom:479.920350px;}
.y8f{bottom:480.062100px;}
.y1b{bottom:480.859200px;}
.y15c{bottom:485.263500px;}
.yc3{bottom:488.013642px;}
.y6e{bottom:495.275250px;}
.y4e{bottom:497.770350px;}
.yf3{bottom:497.772600px;}
.ya2{bottom:497.920350px;}
.y8e{bottom:498.062100px;}
.y1a{bottom:498.859200px;}
.y15b{bottom:500.263500px;}
.yc4{bottom:503.530945px;}
.yd1{bottom:507.270600px;}
.y15a{bottom:515.263500px;}
.y67{bottom:515.365350px;}
.y4d{bottom:515.770350px;}
.yf2{bottom:515.772600px;}
.y8d{bottom:516.062100px;}
.y19{bottom:516.859200px;}
.yc5{bottom:518.985374px;}
.y159{bottom:530.263500px;}
.ya1{bottom:533.515350px;}
.y4c{bottom:533.770350px;}
.yf1{bottom:533.772600px;}
.y8c{bottom:534.062100px;}
.yc6{bottom:534.502678px;}
.y18{bottom:534.859200px;}
.y158{bottom:545.263500px;}
.yc7{bottom:549.957107px;}
.y66{bottom:551.230350px;}
.y4b{bottom:551.770350px;}
.yf0{bottom:551.772600px;}
.y17{bottom:552.859200px;}
.y157{bottom:560.263500px;}
.yc8{bottom:565.411536px;}
.y8b{bottom:569.657100px;}
.y4a{bottom:569.770350px;}
.yef{bottom:569.772600px;}
.y16{bottom:570.859200px;}
.y156{bottom:575.263500px;}
.yc9{bottom:580.928839px;}
.y49{bottom:587.770350px;}
.yee{bottom:587.772600px;}
.y15{bottom:588.859200px;}
.y155{bottom:590.263500px;}
.yca{bottom:596.383268px;}
.y154{bottom:605.263500px;}
.y48{bottom:605.770350px;}
.yed{bottom:605.772600px;}
.y8a{bottom:605.912100px;}
.y14{bottom:606.859200px;}
.ycb{bottom:611.900572px;}
.y153{bottom:620.263500px;}
.y47{bottom:623.770350px;}
.yec{bottom:623.772600px;}
.y89{bottom:623.912100px;}
.y13{bottom:624.859200px;}
.ycc{bottom:627.355001px;}
.y152{bottom:635.263500px;}
.y6f{bottom:636.964350px;}
.yc2{bottom:638.408250px;}
.y127{bottom:641.365350px;}
.y46{bottom:641.770350px;}
.yeb{bottom:641.772600px;}
.y88{bottom:641.912100px;}
.y12{bottom:642.859200px;}
.ycd{bottom:642.872304px;}
.y151{bottom:650.263500px;}
.yc1{bottom:652.850850px;}
.yce{bottom:658.326733px;}
.y45{bottom:659.770350px;}
.yea{bottom:659.772600px;}
.y87{bottom:659.912100px;}
.y11{bottom:660.859200px;}
.y150{bottom:665.263500px;}
.ycf{bottom:673.781162px;}
.y44{bottom:677.770350px;}
.ye9{bottom:677.772600px;}
.y86{bottom:677.912100px;}
.y10{bottom:678.859200px;}
.yd5{bottom:679.018950px;}
.y14f{bottom:680.263500px;}
.y14e{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.ye8{bottom:695.772600px;}
.y85{bottom:695.912100px;}
.yf{bottom:696.859200px;}
.yc0{bottom:699.557400px;}
.y14d{bottom:710.263500px;}
.y42{bottom:713.770350px;}
.ye7{bottom:713.772600px;}
.y84{bottom:713.912100px;}
.ybe{bottom:720.609826px;}
.y14c{bottom:725.263500px;}
.ybd{bottom:726.934950px;}
.y82{bottom:728.991060px;}
.y41{bottom:731.770350px;}
.ye6{bottom:731.772600px;}
.ya0{bottom:731.777100px;}
.y81{bottom:731.912100px;}
.y83{bottom:738.977850px;}
.y14b{bottom:740.263500px;}
.ye{bottom:742.017300px;}
.yb8{bottom:746.263950px;}
.y40{bottom:749.770350px;}
.ye5{bottom:749.772600px;}
.y9f{bottom:749.777100px;}
.y80{bottom:749.912100px;}
.yd{bottom:754.468050px;}
.y14a{bottom:755.263500px;}
.ybf{bottom:757.617750px;}
.y3f{bottom:767.770350px;}
.ye4{bottom:767.772600px;}
.y9e{bottom:767.777100px;}
.y7f{bottom:767.912100px;}
.y149{bottom:770.263500px;}
.yb9{bottom:778.669210px;}
.y148{bottom:785.263500px;}
.y3e{bottom:785.770350px;}
.ye3{bottom:785.772600px;}
.y9d{bottom:785.777100px;}
.y7e{bottom:785.912100px;}
.yc{bottom:786.183600px;}
.y147{bottom:800.263500px;}
.y3d{bottom:803.770350px;}
.ye2{bottom:803.772600px;}
.y9c{bottom:803.777100px;}
.y7d{bottom:803.920350px;}
.yb{bottom:805.108950px;}
.yba{bottom:811.149918px;}
.ya{bottom:813.183600px;}
.y146{bottom:815.263500px;}
.y3c{bottom:821.770350px;}
.ye1{bottom:821.772600px;}
.y9b{bottom:821.777100px;}
.y7c{bottom:821.920350px;}
.y145{bottom:830.263500px;}
.y9{bottom:832.108950px;}
.y3b{bottom:839.770350px;}
.ye0{bottom:839.772600px;}
.y9a{bottom:839.777100px;}
.y7b{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.ybb{bottom:843.555178px;}
.y144{bottom:845.263500px;}
.y3a{bottom:857.770350px;}
.ydf{bottom:857.772600px;}
.y99{bottom:857.777100px;}
.y7a{bottom:857.920350px;}
.y7{bottom:859.108950px;}
.y143{bottom:860.263500px;}
.y142{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.yde{bottom:875.772600px;}
.y98{bottom:875.777100px;}
.y79{bottom:875.920350px;}
.ybc{bottom:876.035886px;}
.y6{bottom:887.830950px;}
.y141{bottom:890.263500px;}
.y38{bottom:893.770350px;}
.ydd{bottom:893.772600px;}
.y97{bottom:893.777100px;}
.y78{bottom:893.920350px;}
.y140{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.ydc{bottom:911.772600px;}
.y96{bottom:911.777100px;}
.y77{bottom:911.920350px;}
.y13f{bottom:920.263500px;}
.y36{bottom:929.770350px;}
.ydb{bottom:929.772600px;}
.y5{bottom:934.004400px;}
.y13e{bottom:935.263500px;}
.y95{bottom:947.372100px;}
.y76{bottom:947.515350px;}
.y35{bottom:947.770350px;}
.yda{bottom:947.772600px;}
.y13d{bottom:950.263500px;}
.y13c{bottom:965.263500px;}
.y126{bottom:965.365350px;}
.y34{bottom:965.770350px;}
.yd9{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y13b{bottom:980.263500px;}
.y94{bottom:983.237100px;}
.y33{bottom:983.770350px;}
.yd8{bottom:983.772600px;}
.y13a{bottom:995.263500px;}
.y32{bottom:1001.770350px;}
.yd7{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y139{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.yf5{bottom:1019.772600px;}
.y138{bottom:1025.263500px;}
.yd6{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.yf4{bottom:1037.772600px;}
.y93{bottom:1037.777100px;}
.y137{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y136{bottom:1132.413900px;}
.y6d{bottom:1132.418700px;}
.y75{bottom:1132.422900px;}
.y177{bottom:1132.423500px;}
.y73{bottom:1132.428750px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h12{height:24.304951px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.h1c{height:31.811971px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h10{height:33.351562px;}
.h15{height:34.949102px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h1b{height:35.137108px;}
.h1e{height:37.265368px;}
.h17{height:38.602505px;}
.h1f{height:41.196267px;}
.hc{height:41.689453px;}
.h14{height:42.054361px;}
.h9{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h19{height:45.582787px;}
.h16{height:46.732209px;}
.h13{height:52.540951px;}
.h1a{height:52.558951px;}
.h11{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1d{height:331.968000px;}
.h18{height:461.764500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:338.032500px;}
.w2{width:358.135500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:11.143050px;}
.x3c{left:21.362850px;}
.xa{left:76.535400px;}
.x18{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x4f{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x3b{left:119.158140px;}
.x52{left:123.307050px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x3d{left:134.427300px;}
.x39{left:172.691250px;}
.x3a{left:185.053050px;}
.x11{left:210.269850px;}
.x4e{left:211.390350px;}
.x5{left:212.876400px;}
.x38{left:220.137450px;}
.x3f{left:242.477550px;}
.x37{left:256.759500px;}
.x2f{left:287.083050px;}
.x1b{left:294.290026px;}
.x1a{left:300.615150px;}
.x19{left:322.472700px;}
.x35{left:324.019350px;}
.x1c{left:325.765500px;}
.x33{left:336.909451px;}
.x1d{left:340.779811px;}
.x32{left:343.234576px;}
.x34{left:353.508187px;}
.x1e{left:355.794122px;}
.x1f{left:370.808434px;}
.x13{left:372.441645px;}
.x14{left:376.831635px;}
.x20{left:385.822745px;}
.x31{left:387.921000px;}
.x21{left:400.837056px;}
.x30{left:403.873500px;}
.x22{left:415.851367px;}
.x23{left:430.865678px;}
.x36{left:432.543900px;}
.x24{left:445.879990px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x25{left:460.894301px;}
.x26{left:475.845738px;}
.x15{left:478.340100px;}
.x7{left:480.471000px;}
.x50{left:482.603400px;}
.xd{left:491.105400px;}
.x41{left:503.857950px;}
.x27{left:505.874360px;}
.x40{left:509.113950px;}
.x17{left:512.360100px;}
.x28{left:520.888672px;}
.xe{left:525.290400px;}
.x42{left:526.806300px;}
.x29{left:535.902983px;}
.x2a{left:550.917294px;}
.x2b{left:565.931605px;}
.x43{left:574.326300px;}
.x2c{left:580.945916px;}
.x2d{left:595.960228px;}
.x44{left:598.110300px;}
.x2e{left:610.974539px;}
.x16{left:612.905100px;}
.x4d{left:615.621300px;}
.x45{left:621.894300px;}
.x46{left:645.618300px;}
.x10{left:663.492300px;}
.x47{left:669.402300px;}
.x2{left:693.365400px;}
.x48{left:716.970300px;}
.x51{left:721.751400px;}
.xf{left:728.391600px;}
.x49{left:740.694300px;}
.x53{left:743.858250px;}
.x12{left:749.649150px;}
.x4a{left:764.478300px;}
.x4b{left:788.262300px;}
.x4c{left:812.046300px;}
@media print{
.v5{vertical-align:-25.122667pt;}
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-10.426667pt;}
.v6{vertical-align:-8.317867pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.440000pt;}
.v9{vertical-align:12.327467pt;}
.v8{vertical-align:13.543467pt;}
.v7{vertical-align:20.098133pt;}
.v4{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls81{letter-spacing:-5.504000pt;}
.ls82{letter-spacing:-4.992000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls83{letter-spacing:-0.469333pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls85{letter-spacing:-0.298667pt;}
.ls66{letter-spacing:-0.266667pt;}
.ls91{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls80{letter-spacing:-0.085333pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls90{letter-spacing:-0.042667pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls79{letter-spacing:0.042667pt;}
.ls5c{letter-spacing:0.047674pt;}
.ls9{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.062187pt;}
.ls42{letter-spacing:0.064000pt;}
.ls3e{letter-spacing:0.067520pt;}
.ls3f{letter-spacing:0.069920pt;}
.ls41{letter-spacing:0.072640pt;}
.ls5a{letter-spacing:0.081394pt;}
.ls5d{letter-spacing:0.085333pt;}
.ls50{letter-spacing:0.089421pt;}
.ls7{letter-spacing:0.106667pt;}
.ls5b{letter-spacing:0.108836pt;}
.ls51{letter-spacing:0.119569pt;}
.ls71{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls58{letter-spacing:0.169434pt;}
.ls64{letter-spacing:0.170667pt;}
.ls47{letter-spacing:0.176053pt;}
.ls4e{letter-spacing:0.184461pt;}
.ls49{letter-spacing:0.186560pt;}
.ls6{letter-spacing:0.213333pt;}
.ls70{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls76{letter-spacing:0.298667pt;}
.ls3d{letter-spacing:0.299787pt;}
.ls8{letter-spacing:0.320000pt;}
.ls6c{letter-spacing:0.341333pt;}
.ls59{letter-spacing:0.373120pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls6a{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.426667pt;}
.ls6f{letter-spacing:0.469333pt;}
.ls2d{letter-spacing:0.480000pt;}
.ls6d{letter-spacing:0.512000pt;}
.ls3c{letter-spacing:0.516320pt;}
.ls26{letter-spacing:0.533333pt;}
.ls84{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls69{letter-spacing:0.597333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.682667pt;}
.lsb{letter-spacing:0.693333pt;}
.ls7d{letter-spacing:0.725333pt;}
.ls18{letter-spacing:0.746667pt;}
.ls89{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls7b{letter-spacing:0.810667pt;}
.lsc{letter-spacing:0.853333pt;}
.ls65{letter-spacing:0.896000pt;}
.ls3b{letter-spacing:0.906667pt;}
.ls78{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls43{letter-spacing:0.973387pt;}
.ls7a{letter-spacing:0.981333pt;}
.ls14{letter-spacing:1.013333pt;}
.ls74{letter-spacing:1.024000pt;}
.ls21{letter-spacing:1.066667pt;}
.ls67{letter-spacing:1.109333pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls7c{letter-spacing:1.152000pt;}
.ls13{letter-spacing:1.173333pt;}
.ls6e{letter-spacing:1.194667pt;}
.ls30{letter-spacing:1.226667pt;}
.ls77{letter-spacing:1.237333pt;}
.ls20{letter-spacing:1.280000pt;}
.ls8e{letter-spacing:1.322667pt;}
.ls2b{letter-spacing:1.333333pt;}
.ls4b{letter-spacing:1.356267pt;}
.ls8b{letter-spacing:1.365333pt;}
.ls37{letter-spacing:1.386667pt;}
.ls22{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.450667pt;}
.ls5{letter-spacing:1.493333pt;}
.ls63{letter-spacing:1.536000pt;}
.ls15{letter-spacing:1.546667pt;}
.ls28{letter-spacing:1.600000pt;}
.ls87{letter-spacing:1.621333pt;}
.ls2f{letter-spacing:1.653333pt;}
.ls4{letter-spacing:1.706667pt;}
.ls75{letter-spacing:1.749333pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls2{letter-spacing:1.813333pt;}
.ls8c{letter-spacing:1.834667pt;}
.ls17{letter-spacing:1.866667pt;}
.ls33{letter-spacing:1.920000pt;}
.ls73{letter-spacing:1.962667pt;}
.ls36{letter-spacing:1.973333pt;}
.ls72{letter-spacing:2.005333pt;}
.ls48{letter-spacing:2.026667pt;}
.ls8a{letter-spacing:2.048000pt;}
.ls34{letter-spacing:2.080000pt;}
.ls54{letter-spacing:2.133333pt;}
.ls8d{letter-spacing:2.176000pt;}
.ls3a{letter-spacing:2.186667pt;}
.ls8f{letter-spacing:2.218667pt;}
.ls1f{letter-spacing:2.240000pt;}
.ls4d{letter-spacing:2.293333pt;}
.ls7e{letter-spacing:2.304000pt;}
.ls4a{letter-spacing:2.337600pt;}
.ls23{letter-spacing:2.346667pt;}
.ls86{letter-spacing:2.389333pt;}
.ls29{letter-spacing:2.400000pt;}
.ls4c{letter-spacing:2.453333pt;}
.ls88{letter-spacing:2.474667pt;}
.ls56{letter-spacing:2.506667pt;}
.ls46{letter-spacing:2.560000pt;}
.ls1c{letter-spacing:2.613333pt;}
.ls7f{letter-spacing:2.645333pt;}
.ls24{letter-spacing:2.666667pt;}
.ls16{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.826667pt;}
.ls1d{letter-spacing:2.880000pt;}
.ls57{letter-spacing:2.933333pt;}
.ls3{letter-spacing:3.040000pt;}
.ls55{letter-spacing:3.146667pt;}
.ls45{letter-spacing:3.200000pt;}
.ls32{letter-spacing:3.253333pt;}
.ls62{letter-spacing:3.306667pt;}
.ls44{letter-spacing:3.413333pt;}
.ls25{letter-spacing:3.466667pt;}
.ls35{letter-spacing:3.626667pt;}
.ls52{letter-spacing:3.786667pt;}
.ls5f{letter-spacing:3.946667pt;}
.ls39{letter-spacing:5.066667pt;}
.ls60{letter-spacing:5.173333pt;}
.ls38{letter-spacing:5.440000pt;}
.ls61{letter-spacing:5.920000pt;}
.ls5e{letter-spacing:7.253333pt;}
.ls0{letter-spacing:52.918112pt;}
.ws0{word-spacing:-31.284267pt;}
.ws39{word-spacing:-17.120000pt;}
.ws27{word-spacing:-14.826667pt;}
.ws92{word-spacing:-14.293333pt;}
.ws3{word-spacing:-14.186667pt;}
.ws8c{word-spacing:-13.866667pt;}
.ws4c{word-spacing:-13.813333pt;}
.ws12{word-spacing:-13.653333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws13{word-spacing:-13.280000pt;}
.ws66{word-spacing:-12.672000pt;}
.ws6c{word-spacing:-12.629333pt;}
.ws8d{word-spacing:-12.288000pt;}
.ws91{word-spacing:-12.032000pt;}
.ws95{word-spacing:-11.989333pt;}
.ws68{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.861333pt;}
.ws69{word-spacing:-11.818667pt;}
.ws5a{word-spacing:-11.776000pt;}
.ws96{word-spacing:-11.733333pt;}
.ws6b{word-spacing:-11.690667pt;}
.ws6a{word-spacing:-11.562667pt;}
.ws8f{word-spacing:-11.477333pt;}
.ws62{word-spacing:-11.349333pt;}
.ws94{word-spacing:-11.221333pt;}
.ws32{word-spacing:-11.177600pt;}
.wsab{word-spacing:-11.136000pt;}
.ws4{word-spacing:-11.120000pt;}
.ws67{word-spacing:-11.093333pt;}
.ws63{word-spacing:-11.050667pt;}
.ws93{word-spacing:-10.880000pt;}
.ws90{word-spacing:-10.794667pt;}
.ws97{word-spacing:-10.752000pt;}
.ws8e{word-spacing:-10.709333pt;}
.ws3e{word-spacing:-10.666667pt;}
.ws3c{word-spacing:-10.174267pt;}
.ws1{word-spacing:-9.076144pt;}
.ws3a{word-spacing:-8.146453pt;}
.ws29{word-spacing:-7.959893pt;}
.ws28{word-spacing:-7.773333pt;}
.ws33{word-spacing:-7.473067pt;}
.ws3b{word-spacing:-6.802267pt;}
.ws2a{word-spacing:-6.218667pt;}
.ws65{word-spacing:-5.674667pt;}
.ws64{word-spacing:-5.162667pt;}
.ws50{word-spacing:-3.946667pt;}
.wsa3{word-spacing:-3.669333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws98{word-spacing:-2.389333pt;}
.ws36{word-spacing:-2.346667pt;}
.ws60{word-spacing:-2.133333pt;}
.wsa8{word-spacing:-2.005333pt;}
.ws21{word-spacing:-1.973333pt;}
.ws89{word-spacing:-1.962667pt;}
.ws73{word-spacing:-1.749333pt;}
.ws83{word-spacing:-1.237333pt;}
.wsac{word-spacing:-1.194667pt;}
.ws7b{word-spacing:-1.152000pt;}
.ws5e{word-spacing:-1.109333pt;}
.wsaa{word-spacing:-1.066667pt;}
.ws86{word-spacing:-1.024000pt;}
.ws79{word-spacing:-0.981333pt;}
.ws7c{word-spacing:-0.853333pt;}
.ws9a{word-spacing:-0.768000pt;}
.ws16{word-spacing:-0.746667pt;}
.ws85{word-spacing:-0.725333pt;}
.ws8b{word-spacing:-0.682667pt;}
.ws84{word-spacing:-0.640000pt;}
.ws7d{word-spacing:-0.554667pt;}
.ws4d{word-spacing:-0.533333pt;}
.wsa6{word-spacing:-0.469333pt;}
.ws77{word-spacing:-0.426667pt;}
.ws44{word-spacing:-0.373333pt;}
.ws9e{word-spacing:-0.256000pt;}
.ws52{word-spacing:-0.213333pt;}
.ws99{word-spacing:-0.170667pt;}
.wsa2{word-spacing:-0.128000pt;}
.ws38{word-spacing:-0.119569pt;}
.ws48{word-spacing:-0.108836pt;}
.ws5b{word-spacing:-0.106667pt;}
.ws37{word-spacing:-0.089421pt;}
.ws4b{word-spacing:-0.085333pt;}
.ws47{word-spacing:-0.081394pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws49{word-spacing:-0.047674pt;}
.ws82{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.042667pt;}
.ws56{word-spacing:0.053333pt;}
.wsa4{word-spacing:0.085333pt;}
.ws8{word-spacing:0.106667pt;}
.ws6e{word-spacing:0.128000pt;}
.wsd{word-spacing:0.160000pt;}
.ws72{word-spacing:0.170667pt;}
.ws7a{word-spacing:0.213333pt;}
.ws9b{word-spacing:0.256000pt;}
.ws42{word-spacing:0.266667pt;}
.ws71{word-spacing:0.298667pt;}
.ws2b{word-spacing:0.373333pt;}
.ws20{word-spacing:0.426667pt;}
.ws87{word-spacing:0.469333pt;}
.ws55{word-spacing:0.480000pt;}
.wsa5{word-spacing:0.512000pt;}
.wsa0{word-spacing:0.554667pt;}
.ws75{word-spacing:0.597333pt;}
.ws6f{word-spacing:0.768000pt;}
.ws4e{word-spacing:0.906667pt;}
.ws53{word-spacing:0.960000pt;}
.ws76{word-spacing:0.981333pt;}
.ws43{word-spacing:1.013333pt;}
.wsf{word-spacing:1.066667pt;}
.ws80{word-spacing:1.194667pt;}
.ws7e{word-spacing:1.237333pt;}
.ws5c{word-spacing:1.386667pt;}
.ws2d{word-spacing:1.440000pt;}
.ws6d{word-spacing:1.450667pt;}
.ws59{word-spacing:1.600000pt;}
.ws5f{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.706667pt;}
.ws23{word-spacing:1.760000pt;}
.wsa1{word-spacing:1.792000pt;}
.ws9c{word-spacing:1.834667pt;}
.ws11{word-spacing:1.866667pt;}
.ws10{word-spacing:1.920000pt;}
.ws17{word-spacing:1.973333pt;}
.ws74{word-spacing:2.005333pt;}
.ws22{word-spacing:2.133333pt;}
.ws70{word-spacing:2.176000pt;}
.ws35{word-spacing:2.240000pt;}
.wsa7{word-spacing:2.261333pt;}
.ws1d{word-spacing:2.293333pt;}
.ws88{word-spacing:2.304000pt;}
.wsc{word-spacing:2.346667pt;}
.ws2e{word-spacing:2.506667pt;}
.ws78{word-spacing:2.517333pt;}
.ws24{word-spacing:2.560000pt;}
.ws2c{word-spacing:2.580747pt;}
.ws7f{word-spacing:2.688000pt;}
.ws18{word-spacing:2.720000pt;}
.ws9f{word-spacing:2.730667pt;}
.ws14{word-spacing:2.826667pt;}
.ws81{word-spacing:2.858667pt;}
.ws3f{word-spacing:2.880000pt;}
.ws54{word-spacing:2.986667pt;}
.wsb{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.253333pt;}
.ws58{word-spacing:3.306667pt;}
.ws45{word-spacing:3.360000pt;}
.ws15{word-spacing:3.413333pt;}
.ws8a{word-spacing:3.456000pt;}
.ws4a{word-spacing:3.498667pt;}
.ws46{word-spacing:3.520000pt;}
.ws61{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.573333pt;}
.ws1f{word-spacing:3.626667pt;}
.ws19{word-spacing:3.733333pt;}
.ws51{word-spacing:3.786667pt;}
.ws25{word-spacing:3.840000pt;}
.ws26{word-spacing:3.946667pt;}
.ws1c{word-spacing:4.000000pt;}
.ws57{word-spacing:4.053333pt;}
.wse{word-spacing:4.160000pt;}
.ws41{word-spacing:4.266667pt;}
.ws40{word-spacing:4.320000pt;}
.wsa{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.wsa9{word-spacing:4.864000pt;}
.ws5d{word-spacing:4.906667pt;}
.ws34{word-spacing:17.794739pt;}
.ws3d{word-spacing:186.433262pt;}
.ws31{word-spacing:241.365333pt;}
.ws2f{word-spacing:252.672000pt;}
.ws30{word-spacing:379.264000pt;}
._9{margin-left:-2576.085333pt;}
._a{margin-left:-2554.922667pt;}
._b{margin-left:-5.973333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.173333pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._5{width:0.906667pt;}
._8{width:1.824000pt;}
._7{width:2.752000pt;}
._6{width:4.320000pt;}
._2a{width:5.226667pt;}
._2c{width:7.338667pt;}
._29{width:39.836966pt;}
._28{width:51.282829pt;}
._2{width:52.925168pt;}
._27{width:62.460429pt;}
._22{width:179.669333pt;}
._16{width:207.360000pt;}
._1a{width:223.872000pt;}
._f{width:225.920000pt;}
._2b{width:227.293117pt;}
._d{width:232.660629pt;}
._1c{width:236.586667pt;}
._14{width:238.080000pt;}
._13{width:270.976000pt;}
._10{width:277.504000pt;}
._21{width:283.733333pt;}
._1d{width:288.170667pt;}
._26{width:292.010667pt;}
._e{width:309.888000pt;}
._24{width:322.816000pt;}
._18{width:331.136000pt;}
._20{width:365.994667pt;}
._25{width:368.650667pt;}
._1e{width:396.842667pt;}
._11{width:409.856000pt;}
._23{width:446.480000pt;}
._17{width:465.237333pt;}
._1f{width:470.757333pt;}
._15{width:587.264000pt;}
._19{width:601.600000pt;}
._1b{width:608.597333pt;}
._12{width:653.653333pt;}
._c{width:814.848000pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fs10{font-size:27.209067pt;}
.fse{font-size:29.892267pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsf{font-size:40.697067pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:44.710400pt;}
.fs11{font-size:47.673600pt;}
.fs12{font-size:52.702400pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsd{font-size:59.784533pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y125{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y108{bottom:74.470400pt;}
.y74{bottom:74.480800pt;}
.y6c{bottom:74.595867pt;}
.y72{bottom:74.838000pt;}
.y2c{bottom:78.246000pt;}
.y135{bottom:81.886133pt;}
.yb6{bottom:81.915600pt;}
.y176{bottom:84.678667pt;}
.yf6{bottom:88.465067pt;}
.y71{bottom:88.832667pt;}
.y124{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y6b{bottom:90.595867pt;}
.y2b{bottom:91.576000pt;}
.y134{bottom:95.219467pt;}
.yb5{bottom:96.358267pt;}
.y175{bottom:98.012000pt;}
.y70{bottom:102.827333pt;}
.y123{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y6a{bottom:106.595867pt;}
.y133{bottom:108.552800pt;}
.y103{bottom:108.760000pt;}
.yb4{bottom:110.800933pt;}
.y174{bottom:111.345333pt;}
.y112{bottom:112.074667pt;}
.y107{bottom:112.414533pt;}
.y106{bottom:116.979733pt;}
.y132{bottom:121.886133pt;}
.y122{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y69{bottom:122.595867pt;}
.y173{bottom:124.678667pt;}
.yb3{bottom:125.243600pt;}
.y105{bottom:127.188933pt;}
.y110{bottom:130.831200pt;}
.y131{bottom:135.219467pt;}
.y172{bottom:138.012000pt;}
.y121{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.yf9{bottom:139.173451pt;}
.yb2{bottom:139.686267pt;}
.y28{bottom:146.210667pt;}
.y130{bottom:148.552800pt;}
.y171{bottom:151.345333pt;}
.y109{bottom:153.862400pt;}
.yb1{bottom:154.128933pt;}
.y68{bottom:154.235867pt;}
.y120{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y12f{bottom:161.886133pt;}
.y27{bottom:162.210667pt;}
.y170{bottom:164.678667pt;}
.yfa{bottom:164.812603pt;}
.yb0{bottom:168.571600pt;}
.y11f{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y12e{bottom:175.219467pt;}
.y16f{bottom:178.012000pt;}
.y26{bottom:178.210667pt;}
.yaf{bottom:183.014267pt;}
.y11e{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y12d{bottom:188.552800pt;}
.yfb{bottom:190.390709pt;}
.y16e{bottom:191.345333pt;}
.y25{bottom:194.210667pt;}
.yae{bottom:197.456933pt;}
.y10a{bottom:198.491733pt;}
.y11d{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y16d{bottom:204.678667pt;}
.y24{bottom:210.210667pt;}
.yad{bottom:211.899600pt;}
.yfc{bottom:216.029861pt;}
.y12c{bottom:217.982533pt;}
.y16c{bottom:218.012000pt;}
.y11c{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y23{bottom:226.210667pt;}
.yac{bottom:226.342267pt;}
.y16b{bottom:231.345333pt;}
.y11b{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.yab{bottom:240.784933pt;}
.yfd{bottom:241.669013pt;}
.y22{bottom:242.210667pt;}
.y10b{bottom:243.174400pt;}
.y111{bottom:243.911867pt;}
.y16a{bottom:244.678667pt;}
.y11a{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.yaa{bottom:255.227600pt;}
.y169{bottom:258.012000pt;}
.y21{bottom:258.210667pt;}
.y119{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.yfe{bottom:267.247120pt;}
.ya9{bottom:269.670267pt;}
.y168{bottom:271.345333pt;}
.y20{bottom:274.210667pt;}
.y12b{bottom:282.102533pt;}
.y118{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y167{bottom:284.678667pt;}
.y104{bottom:286.621867pt;}
.y10c{bottom:287.803733pt;}
.y2a{bottom:290.210667pt;}
.yff{bottom:292.886272pt;}
.ya8{bottom:297.680933pt;}
.y166{bottom:298.012000pt;}
.y117{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y1f{bottom:305.852533pt;}
.y29{bottom:306.210667pt;}
.y165{bottom:311.345333pt;}
.y12a{bottom:314.102533pt;}
.y116{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y100{bottom:318.525424pt;}
.y164{bottom:324.678667pt;}
.ya7{bottom:328.702533pt;}
.y115{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y10d{bottom:332.433067pt;}
.y163{bottom:338.012000pt;}
.y101{bottom:344.103530pt;}
.y114{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y162{bottom:351.345333pt;}
.yf8{bottom:355.620800pt;}
.y53{bottom:362.462533pt;}
.y161{bottom:364.678667pt;}
.yf7{bottom:367.307067pt;}
.yb7{bottom:369.328933pt;}
.y102{bottom:369.742682pt;}
.y1e{bottom:371.123733pt;}
.y10e{bottom:377.115733pt;}
.y113{bottom:377.982533pt;}
.y160{bottom:378.012000pt;}
.y129{bottom:378.102533pt;}
.y52{bottom:378.462533pt;}
.ya6{bottom:378.595867pt;}
.y92{bottom:378.721867pt;}
.yd3{bottom:389.669333pt;}
.y15f{bottom:391.345333pt;}
.yd2{bottom:394.252267pt;}
.y51{bottom:394.462533pt;}
.ya5{bottom:394.595867pt;}
.y91{bottom:394.721867pt;}
.y1d{bottom:395.430400pt;}
.yd4{bottom:398.038933pt;}
.y15e{bottom:404.678667pt;}
.y50{bottom:410.462533pt;}
.ya4{bottom:410.595867pt;}
.y90{bottom:410.721867pt;}
.y1c{bottom:411.430400pt;}
.y15d{bottom:418.012000pt;}
.yd0{bottom:420.645046pt;}
.y10f{bottom:421.745067pt;}
.y128{bottom:426.102533pt;}
.y4f{bottom:426.462533pt;}
.ya3{bottom:426.595867pt;}
.y8f{bottom:426.721867pt;}
.y1b{bottom:427.430400pt;}
.y15c{bottom:431.345333pt;}
.yc3{bottom:433.789904pt;}
.y6e{bottom:440.244667pt;}
.y4e{bottom:442.462533pt;}
.yf3{bottom:442.464533pt;}
.ya2{bottom:442.595867pt;}
.y8e{bottom:442.721867pt;}
.y1a{bottom:443.430400pt;}
.y15b{bottom:444.678667pt;}
.yc4{bottom:447.583062pt;}
.yd1{bottom:450.907200pt;}
.y15a{bottom:458.012000pt;}
.y67{bottom:458.102533pt;}
.y4d{bottom:458.462533pt;}
.yf2{bottom:458.464533pt;}
.y8d{bottom:458.721867pt;}
.y19{bottom:459.430400pt;}
.yc5{bottom:461.320333pt;}
.y159{bottom:471.345333pt;}
.ya1{bottom:474.235867pt;}
.y4c{bottom:474.462533pt;}
.yf1{bottom:474.464533pt;}
.y8c{bottom:474.721867pt;}
.yc6{bottom:475.113491pt;}
.y18{bottom:475.430400pt;}
.y158{bottom:484.678667pt;}
.yc7{bottom:488.850762pt;}
.y66{bottom:489.982533pt;}
.y4b{bottom:490.462533pt;}
.yf0{bottom:490.464533pt;}
.y17{bottom:491.430400pt;}
.y157{bottom:498.012000pt;}
.yc8{bottom:502.588032pt;}
.y8b{bottom:506.361867pt;}
.y4a{bottom:506.462533pt;}
.yef{bottom:506.464533pt;}
.y16{bottom:507.430400pt;}
.y156{bottom:511.345333pt;}
.yc9{bottom:516.381190pt;}
.y49{bottom:522.462533pt;}
.yee{bottom:522.464533pt;}
.y15{bottom:523.430400pt;}
.y155{bottom:524.678667pt;}
.yca{bottom:530.118461pt;}
.y154{bottom:538.012000pt;}
.y48{bottom:538.462533pt;}
.yed{bottom:538.464533pt;}
.y8a{bottom:538.588533pt;}
.y14{bottom:539.430400pt;}
.ycb{bottom:543.911619pt;}
.y153{bottom:551.345333pt;}
.y47{bottom:554.462533pt;}
.yec{bottom:554.464533pt;}
.y89{bottom:554.588533pt;}
.y13{bottom:555.430400pt;}
.ycc{bottom:557.648890pt;}
.y152{bottom:564.678667pt;}
.y6f{bottom:566.190533pt;}
.yc2{bottom:567.474000pt;}
.y127{bottom:570.102533pt;}
.y46{bottom:570.462533pt;}
.yeb{bottom:570.464533pt;}
.y88{bottom:570.588533pt;}
.y12{bottom:571.430400pt;}
.ycd{bottom:571.442048pt;}
.y151{bottom:578.012000pt;}
.yc1{bottom:580.311867pt;}
.yce{bottom:585.179318pt;}
.y45{bottom:586.462533pt;}
.yea{bottom:586.464533pt;}
.y87{bottom:586.588533pt;}
.y11{bottom:587.430400pt;}
.y150{bottom:591.345333pt;}
.ycf{bottom:598.916589pt;}
.y44{bottom:602.462533pt;}
.ye9{bottom:602.464533pt;}
.y86{bottom:602.588533pt;}
.y10{bottom:603.430400pt;}
.yd5{bottom:603.572400pt;}
.y14f{bottom:604.678667pt;}
.y14e{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.ye8{bottom:618.464533pt;}
.y85{bottom:618.588533pt;}
.yf{bottom:619.430400pt;}
.yc0{bottom:621.828800pt;}
.y14d{bottom:631.345333pt;}
.y42{bottom:634.462533pt;}
.ye7{bottom:634.464533pt;}
.y84{bottom:634.588533pt;}
.ybe{bottom:640.542067pt;}
.y14c{bottom:644.678667pt;}
.ybd{bottom:646.164400pt;}
.y82{bottom:647.992053pt;}
.y41{bottom:650.462533pt;}
.ye6{bottom:650.464533pt;}
.ya0{bottom:650.468533pt;}
.y81{bottom:650.588533pt;}
.y83{bottom:656.869200pt;}
.y14b{bottom:658.012000pt;}
.ye{bottom:659.570933pt;}
.yb8{bottom:663.345733pt;}
.y40{bottom:666.462533pt;}
.ye5{bottom:666.464533pt;}
.y9f{bottom:666.468533pt;}
.y80{bottom:666.588533pt;}
.yd{bottom:670.638267pt;}
.y14a{bottom:671.345333pt;}
.ybf{bottom:673.438000pt;}
.y3f{bottom:682.462533pt;}
.ye4{bottom:682.464533pt;}
.y9e{bottom:682.468533pt;}
.y7f{bottom:682.588533pt;}
.y149{bottom:684.678667pt;}
.yb9{bottom:692.150409pt;}
.y148{bottom:698.012000pt;}
.y3e{bottom:698.462533pt;}
.ye3{bottom:698.464533pt;}
.y9d{bottom:698.468533pt;}
.y7e{bottom:698.588533pt;}
.yc{bottom:698.829867pt;}
.y147{bottom:711.345333pt;}
.y3d{bottom:714.462533pt;}
.ye2{bottom:714.464533pt;}
.y9c{bottom:714.468533pt;}
.y7d{bottom:714.595867pt;}
.yb{bottom:715.652400pt;}
.yba{bottom:721.022149pt;}
.ya{bottom:722.829867pt;}
.y146{bottom:724.678667pt;}
.y3c{bottom:730.462533pt;}
.ye1{bottom:730.464533pt;}
.y9b{bottom:730.468533pt;}
.y7c{bottom:730.595867pt;}
.y145{bottom:738.012000pt;}
.y9{bottom:739.652400pt;}
.y3b{bottom:746.462533pt;}
.ye0{bottom:746.464533pt;}
.y9a{bottom:746.468533pt;}
.y7b{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.ybb{bottom:749.826825pt;}
.y144{bottom:751.345333pt;}
.y3a{bottom:762.462533pt;}
.ydf{bottom:762.464533pt;}
.y99{bottom:762.468533pt;}
.y7a{bottom:762.595867pt;}
.y7{bottom:763.652400pt;}
.y143{bottom:764.678667pt;}
.y142{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.yde{bottom:778.464533pt;}
.y98{bottom:778.468533pt;}
.y79{bottom:778.595867pt;}
.ybc{bottom:778.698565pt;}
.y6{bottom:789.183067pt;}
.y141{bottom:791.345333pt;}
.y38{bottom:794.462533pt;}
.ydd{bottom:794.464533pt;}
.y97{bottom:794.468533pt;}
.y78{bottom:794.595867pt;}
.y140{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.ydc{bottom:810.464533pt;}
.y96{bottom:810.468533pt;}
.y77{bottom:810.595867pt;}
.y13f{bottom:818.012000pt;}
.y36{bottom:826.462533pt;}
.ydb{bottom:826.464533pt;}
.y5{bottom:830.226133pt;}
.y13e{bottom:831.345333pt;}
.y95{bottom:842.108533pt;}
.y76{bottom:842.235867pt;}
.y35{bottom:842.462533pt;}
.yda{bottom:842.464533pt;}
.y13d{bottom:844.678667pt;}
.y13c{bottom:858.012000pt;}
.y126{bottom:858.102533pt;}
.y34{bottom:858.462533pt;}
.yd9{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y13b{bottom:871.345333pt;}
.y94{bottom:873.988533pt;}
.y33{bottom:874.462533pt;}
.yd8{bottom:874.464533pt;}
.y13a{bottom:884.678667pt;}
.y32{bottom:890.462533pt;}
.yd7{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y139{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.yf5{bottom:906.464533pt;}
.y138{bottom:911.345333pt;}
.yd6{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.yf4{bottom:922.464533pt;}
.y93{bottom:922.468533pt;}
.y137{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y136{bottom:1006.590133pt;}
.y6d{bottom:1006.594400pt;}
.y75{bottom:1006.598133pt;}
.y177{bottom:1006.598667pt;}
.y73{bottom:1006.603333pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h12{height:21.604401pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.h1c{height:28.277308pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h10{height:29.645833pt;}
.h15{height:31.065869pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h1b{height:31.232985pt;}
.h1e{height:33.124772pt;}
.h17{height:34.313338pt;}
.h1f{height:36.618904pt;}
.hc{height:37.057292pt;}
.h14{height:37.381654pt;}
.h9{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h19{height:40.518033pt;}
.h16{height:41.539742pt;}
.h13{height:46.703068pt;}
.h1a{height:46.719068pt;}
.h11{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1d{height:295.082667pt;}
.h18{height:410.457333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:300.473333pt;}
.w2{width:318.342667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:9.904933pt;}
.x3c{left:18.989200pt;}
.xa{left:68.031467pt;}
.x18{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4f{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x3b{left:105.918347pt;}
.x52{left:109.606267pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x3d{left:119.490933pt;}
.x39{left:153.503333pt;}
.x3a{left:164.491600pt;}
.x11{left:186.906533pt;}
.x4e{left:187.902533pt;}
.x5{left:189.223467pt;}
.x38{left:195.677733pt;}
.x3f{left:215.535600pt;}
.x37{left:228.230667pt;}
.x2f{left:255.184933pt;}
.x1b{left:261.591134pt;}
.x1a{left:267.213467pt;}
.x19{left:286.642400pt;}
.x35{left:288.017200pt;}
.x1c{left:289.569333pt;}
.x33{left:299.475068pt;}
.x1d{left:302.915388pt;}
.x32{left:305.097401pt;}
.x34{left:314.229500pt;}
.x1e{left:316.261442pt;}
.x1f{left:329.607497pt;}
.x13{left:331.059240pt;}
.x14{left:334.961453pt;}
.x20{left:342.953551pt;}
.x31{left:344.818667pt;}
.x21{left:356.299605pt;}
.x30{left:358.998667pt;}
.x22{left:369.645660pt;}
.x23{left:382.991714pt;}
.x36{left:384.483467pt;}
.x24{left:396.337769pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x25{left:409.683823pt;}
.x26{left:422.973989pt;}
.x15{left:425.191200pt;}
.x7{left:427.085333pt;}
.x50{left:428.980800pt;}
.xd{left:436.538133pt;}
.x41{left:447.873733pt;}
.x27{left:449.666098pt;}
.x40{left:452.545733pt;}
.x17{left:455.431200pt;}
.x28{left:463.012153pt;}
.xe{left:466.924800pt;}
.x42{left:468.272267pt;}
.x29{left:476.358207pt;}
.x2a{left:489.704261pt;}
.x2b{left:503.050316pt;}
.x43{left:510.512267pt;}
.x2c{left:516.396370pt;}
.x2d{left:529.742425pt;}
.x44{left:531.653600pt;}
.x2e{left:543.088479pt;}
.x16{left:544.804533pt;}
.x4d{left:547.218933pt;}
.x45{left:552.794933pt;}
.x46{left:573.882933pt;}
.x10{left:589.770933pt;}
.x47{left:595.024267pt;}
.x2{left:616.324800pt;}
.x48{left:637.306933pt;}
.x51{left:641.556800pt;}
.xf{left:647.459200pt;}
.x49{left:658.394933pt;}
.x53{left:661.207333pt;}
.x12{left:666.354800pt;}
.x4a{left:679.536267pt;}
.x4b{left:700.677600pt;}
.x4c{left:721.818933pt;}
}




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