
    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_cc188b5fcbfd25371fadacef.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b55678465f6295dec62855f4.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_594ba5d85e1ad4f6e25970d1.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_ea93f4d60908529caf493524.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_c8059d9096589ffd6ba6cbd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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_0e4b285364282afefc4e835e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0e33ca4c0335e17543b95f83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_38120b5fbf2d3e1c97f6a42c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.810000;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_dd3342fb09fb7fd4b1d6c519.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_ac9a2da4af7bd2b6fa003564.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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-37.440000px;}
.v7{vertical-align:-35.712000px;}
.v2{vertical-align:-16.471800px;}
.v5{vertical-align:-3.404400px;}
.v4{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:22.655400px;}
.ls1a{letter-spacing:-0.720000px;}
.ls54{letter-spacing:-0.420000px;}
.ls68{letter-spacing:-0.336000px;}
.ls67{letter-spacing:-0.300000px;}
.ls93{letter-spacing:-0.288000px;}
.ls52{letter-spacing:-0.240000px;}
.ls51{letter-spacing:-0.180000px;}
.ls53{letter-spacing:-0.120000px;}
.ls5c{letter-spacing:-0.060000px;}
.ls19{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls55{letter-spacing:0.005400px;}
.ls4f{letter-spacing:0.006000px;}
.ls5d{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.060000px;}
.ls60{letter-spacing:0.096000px;}
.ls18{letter-spacing:0.120000px;}
.ls38{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.240000px;}
.ls74{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.336000px;}
.ls3c{letter-spacing:0.360000px;}
.ls37{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.432000px;}
.ls44{letter-spacing:0.480000px;}
.ls78{letter-spacing:0.528000px;}
.ls40{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.576000px;}
.ls25{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.624000px;}
.ls2a{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.780000px;}
.ls7d{letter-spacing:0.816000px;}
.ls1c{letter-spacing:0.840000px;}
.ls8d{letter-spacing:0.864000px;}
.ls47{letter-spacing:0.900000px;}
.ls10{letter-spacing:0.960000px;}
.ls5{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls8f{letter-spacing:1.056000px;}
.ls4d{letter-spacing:1.080000px;}
.ls8b{letter-spacing:1.104000px;}
.ls36{letter-spacing:1.140000px;}
.ls82{letter-spacing:1.152000px;}
.ls20{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.248000px;}
.ls3d{letter-spacing:1.260000px;}
.ls73{letter-spacing:1.296000px;}
.ls7{letter-spacing:1.320000px;}
.ls80{letter-spacing:1.344000px;}
.ls23{letter-spacing:1.380000px;}
.ls87{letter-spacing:1.392000px;}
.ls24{letter-spacing:1.440000px;}
.ls86{letter-spacing:1.488000px;}
.ls45{letter-spacing:1.500000px;}
.ls17{letter-spacing:1.560000px;}
.ls28{letter-spacing:1.620000px;}
.ls3e{letter-spacing:1.680000px;}
.ls7f{letter-spacing:1.728000px;}
.ls31{letter-spacing:1.740000px;}
.ls30{letter-spacing:1.800000px;}
.ls2d{letter-spacing:1.860000px;}
.ls71{letter-spacing:1.872000px;}
.ls3a{letter-spacing:1.920000px;}
.ls13{letter-spacing:1.980000px;}
.ls79{letter-spacing:2.016000px;}
.ls27{letter-spacing:2.040000px;}
.ls5a{letter-spacing:2.100000px;}
.ls85{letter-spacing:2.112000px;}
.lsc{letter-spacing:2.160000px;}
.ls2b{letter-spacing:2.220000px;}
.ls12{letter-spacing:2.280000px;}
.ls22{letter-spacing:2.340000px;}
.ls81{letter-spacing:2.352000px;}
.ls32{letter-spacing:2.400000px;}
.ls16{letter-spacing:2.460000px;}
.ls34{letter-spacing:2.520000px;}
.lse{letter-spacing:2.580000px;}
.ls7b{letter-spacing:2.592000px;}
.ls33{letter-spacing:2.640000px;}
.ls56{letter-spacing:2.700000px;}
.ls8e{letter-spacing:2.736000px;}
.ls2f{letter-spacing:2.760000px;}
.ls42{letter-spacing:2.820000px;}
.ls5f{letter-spacing:2.832000px;}
.ls39{letter-spacing:2.880000px;}
.ls89{letter-spacing:2.928000px;}
.ls48{letter-spacing:2.940000px;}
.ls7a{letter-spacing:2.976000px;}
.ls8{letter-spacing:3.000000px;}
.ls1b{letter-spacing:3.060000px;}
.ls7e{letter-spacing:3.072000px;}
.ls69{letter-spacing:3.120000px;}
.ls50{letter-spacing:3.180000px;}
.ls8a{letter-spacing:3.216000px;}
.ls6c{letter-spacing:3.240000px;}
.lsa{letter-spacing:3.300000px;}
.lsb{letter-spacing:3.360000px;}
.ls6{letter-spacing:3.420000px;}
.ls75{letter-spacing:3.456000px;}
.ls91{letter-spacing:3.480000px;}
.ls11{letter-spacing:3.540000px;}
.ls57{letter-spacing:3.600000px;}
.ls58{letter-spacing:3.660000px;}
.ls83{letter-spacing:3.696000px;}
.ls1f{letter-spacing:3.720000px;}
.ls70{letter-spacing:3.744000px;}
.ls4a{letter-spacing:3.780000px;}
.ls43{letter-spacing:3.840000px;}
.ls4b{letter-spacing:3.900000px;}
.ls92{letter-spacing:3.936000px;}
.ls76{letter-spacing:3.984000px;}
.ls64{letter-spacing:4.020000px;}
.ls29{letter-spacing:4.140000px;}
.ls88{letter-spacing:4.176000px;}
.ls62{letter-spacing:4.200000px;}
.ls4e{letter-spacing:4.260000px;}
.ls5b{letter-spacing:4.320000px;}
.ls1d{letter-spacing:4.380000px;}
.ls59{letter-spacing:4.440000px;}
.ls5e{letter-spacing:4.464000px;}
.ls41{letter-spacing:4.560000px;}
.ls63{letter-spacing:4.740000px;}
.ls66{letter-spacing:4.800000px;}
.ls2e{letter-spacing:4.860000px;}
.ls3f{letter-spacing:4.920000px;}
.ls6e{letter-spacing:4.980000px;}
.ls4c{letter-spacing:5.220000px;}
.ls65{letter-spacing:5.280000px;}
.lsd{letter-spacing:5.340000px;}
.ls84{letter-spacing:5.520000px;}
.ls14{letter-spacing:5.580000px;}
.ls72{letter-spacing:5.712000px;}
.ls6a{letter-spacing:5.760000px;}
.ls8c{letter-spacing:5.856000px;}
.ls35{letter-spacing:5.880000px;}
.ls46{letter-spacing:5.940000px;}
.ls90{letter-spacing:6.096000px;}
.ls49{letter-spacing:6.120000px;}
.ls1e{letter-spacing:6.420000px;}
.ls3b{letter-spacing:6.480000px;}
.ls6b{letter-spacing:6.540000px;}
.ls61{letter-spacing:7.500000px;}
.ls2c{letter-spacing:7.680000px;}
.ls6d{letter-spacing:11.940000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5e{word-spacing:-60.000000px;}
.ws3f{word-spacing:-22.620000px;}
.ws21{word-spacing:-21.540000px;}
.ws3b{word-spacing:-20.520000px;}
.ws40{word-spacing:-20.460000px;}
.ws83{word-spacing:-20.040000px;}
.ws84{word-spacing:-19.800000px;}
.ws22{word-spacing:-19.200000px;}
.ws41{word-spacing:-18.900000px;}
.ws4{word-spacing:-18.840000px;}
.ws87{word-spacing:-18.780000px;}
.ws86{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.660000px;}
.ws20{word-spacing:-18.540000px;}
.ws74{word-spacing:-18.480000px;}
.ws88{word-spacing:-18.240000px;}
.ws3e{word-spacing:-18.180000px;}
.ws39{word-spacing:-18.060000px;}
.ws3{word-spacing:-18.000000px;}
.ws82{word-spacing:-17.700000px;}
.ws5d{word-spacing:-17.640000px;}
.ws85{word-spacing:-17.520000px;}
.ws8a{word-spacing:-17.340000px;}
.ws99{word-spacing:-17.328000px;}
.ws3c{word-spacing:-17.160000px;}
.ws3a{word-spacing:-16.860000px;}
.ws5c{word-spacing:-16.800000px;}
.ws9d{word-spacing:-16.704000px;}
.ws5{word-spacing:-16.680000px;}
.ws89{word-spacing:-16.560000px;}
.ws3d{word-spacing:-16.440000px;}
.ws9a{word-spacing:-15.360000px;}
.ws9b{word-spacing:-14.592000px;}
.ws23{word-spacing:-14.178000px;}
.ws1{word-spacing:-13.776000px;}
.ws9c{word-spacing:-13.680000px;}
.ws70{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.344000px;}
.ws0{word-spacing:-11.008800px;}
.wsc0{word-spacing:-6.096000px;}
.wsbd{word-spacing:-5.856000px;}
.ws6d{word-spacing:-5.340000px;}
.ws7f{word-spacing:-5.280000px;}
.ws8b{word-spacing:-4.980000px;}
.ws77{word-spacing:-4.740000px;}
.ws96{word-spacing:-4.260000px;}
.ws75{word-spacing:-4.200000px;}
.wsba{word-spacing:-4.176000px;}
.ws7e{word-spacing:-4.020000px;}
.wsa9{word-spacing:-3.936000px;}
.wsa4{word-spacing:-3.840000px;}
.wsb7{word-spacing:-3.696000px;}
.ws68{word-spacing:-3.600000px;}
.ws1a{word-spacing:-3.540000px;}
.ws9e{word-spacing:-3.480000px;}
.wsa7{word-spacing:-3.456000px;}
.ws27{word-spacing:-3.420000px;}
.ws13{word-spacing:-3.360000px;}
.ws2f{word-spacing:-3.300000px;}
.ws91{word-spacing:-3.240000px;}
.ws92{word-spacing:-3.180000px;}
.wsb1{word-spacing:-3.072000px;}
.ws24{word-spacing:-3.060000px;}
.ws53{word-spacing:-3.000000px;}
.wsaf{word-spacing:-2.976000px;}
.wsbb{word-spacing:-2.928000px;}
.ws45{word-spacing:-2.820000px;}
.ws78{word-spacing:-2.760000px;}
.wsbe{word-spacing:-2.736000px;}
.ws61{word-spacing:-2.700000px;}
.ws8{word-spacing:-2.664000px;}
.wse{word-spacing:-2.640000px;}
.ws17{word-spacing:-2.580000px;}
.ws31{word-spacing:-2.520000px;}
.ws34{word-spacing:-2.400000px;}
.wsb5{word-spacing:-2.352000px;}
.ws97{word-spacing:-2.340000px;}
.ws66{word-spacing:-2.280000px;}
.ws26{word-spacing:-2.220000px;}
.ws16{word-spacing:-2.160000px;}
.ws8d{word-spacing:-2.100000px;}
.ws6e{word-spacing:-2.040000px;}
.wsae{word-spacing:-2.016000px;}
.ws1c{word-spacing:-1.980000px;}
.ws33{word-spacing:-1.920000px;}
.wsa2{word-spacing:-1.872000px;}
.ws51{word-spacing:-1.800000px;}
.ws44{word-spacing:-1.740000px;}
.wsb2{word-spacing:-1.728000px;}
.ws37{word-spacing:-1.680000px;}
.ws79{word-spacing:-1.620000px;}
.ws2c{word-spacing:-1.560000px;}
.ws7d{word-spacing:-1.500000px;}
.ws8c{word-spacing:-1.440000px;}
.wsb8{word-spacing:-1.392000px;}
.wsb4{word-spacing:-1.344000px;}
.ws2a{word-spacing:-1.320000px;}
.wsa3{word-spacing:-1.296000px;}
.ws6a{word-spacing:-1.260000px;}
.wsac{word-spacing:-1.200000px;}
.wsb6{word-spacing:-1.152000px;}
.ws54{word-spacing:-1.140000px;}
.wsbc{word-spacing:-1.104000px;}
.ws67{word-spacing:-1.080000px;}
.wsbf{word-spacing:-1.056000px;}
.ws18{word-spacing:-1.020000px;}
.wsb3{word-spacing:-1.008000px;}
.ws64{word-spacing:-0.960000px;}
.ws2d{word-spacing:-0.840000px;}
.wsb0{word-spacing:-0.816000px;}
.ws2e{word-spacing:-0.780000px;}
.ws6b{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.660000px;}
.wsab{word-spacing:-0.624000px;}
.ws2b{word-spacing:-0.600000px;}
.wsa6{word-spacing:-0.576000px;}
.ws65{word-spacing:-0.540000px;}
.wsad{word-spacing:-0.528000px;}
.ws60{word-spacing:-0.480000px;}
.ws12{word-spacing:-0.432000px;}
.ws6c{word-spacing:-0.420000px;}
.ws42{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.300000px;}
.ws36{word-spacing:-0.240000px;}
.ws9f{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.180000px;}
.ws1e{word-spacing:-0.120000px;}
.wsaa{word-spacing:-0.096000px;}
.ws28{word-spacing:-0.060000px;}
.ws56{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws50{word-spacing:0.120000px;}
.ws49{word-spacing:0.180000px;}
.ws7b{word-spacing:0.240000px;}
.ws7a{word-spacing:0.300000px;}
.ws81{word-spacing:0.336000px;}
.ws4e{word-spacing:0.420000px;}
.wsb9{word-spacing:0.624000px;}
.ws59{word-spacing:0.672000px;}
.wsf{word-spacing:0.768000px;}
.ws1b{word-spacing:0.960000px;}
.ws4a{word-spacing:1.020000px;}
.wsa5{word-spacing:1.440000px;}
.ws95{word-spacing:1.560000px;}
.ws90{word-spacing:1.620000px;}
.wsa{word-spacing:1.728000px;}
.ws5f{word-spacing:1.860000px;}
.ws47{word-spacing:1.920000px;}
.ws5b{word-spacing:2.064000px;}
.ws48{word-spacing:2.100000px;}
.wsa0{word-spacing:2.112000px;}
.ws4f{word-spacing:2.280000px;}
.wsa8{word-spacing:2.352000px;}
.ws4b{word-spacing:2.400000px;}
.ws52{word-spacing:2.460000px;}
.ws25{word-spacing:2.580000px;}
.ws63{word-spacing:2.700000px;}
.ws55{word-spacing:2.820000px;}
.ws72{word-spacing:2.880000px;}
.ws6f{word-spacing:3.060000px;}
.ws7c{word-spacing:3.120000px;}
.ws98{word-spacing:3.480000px;}
.ws11{word-spacing:3.504000px;}
.ws43{word-spacing:3.540000px;}
.ws76{word-spacing:3.600000px;}
.wsa1{word-spacing:3.888000px;}
.ws29{word-spacing:3.900000px;}
.ws35{word-spacing:4.020000px;}
.ws73{word-spacing:4.032000px;}
.ws46{word-spacing:4.140000px;}
.ws93{word-spacing:4.260000px;}
.wsd{word-spacing:4.314000px;}
.wsb{word-spacing:4.320000px;}
.ws9{word-spacing:4.368000px;}
.ws4d{word-spacing:4.380000px;}
.wsc{word-spacing:4.416000px;}
.ws94{word-spacing:4.440000px;}
.ws71{word-spacing:4.464000px;}
.ws4c{word-spacing:4.500000px;}
.ws1d{word-spacing:4.560000px;}
.ws1f{word-spacing:4.620000px;}
.ws80{word-spacing:4.800000px;}
.ws69{word-spacing:4.920000px;}
.ws38{word-spacing:4.980000px;}
.ws62{word-spacing:5.160000px;}
.ws8f{word-spacing:5.400000px;}
.ws14{word-spacing:5.460000px;}
.ws15{word-spacing:5.520000px;}
.ws8e{word-spacing:5.940000px;}
.ws57{word-spacing:453.312000px;}
.ws58{word-spacing:599.568000px;}
.ws5a{word-spacing:954.336000px;}
._d{margin-left:-2898.126000px;}
._e{margin-left:-2874.309000px;}
._12{margin-left:-12.540000px;}
._c{margin-left:-7.680000px;}
._2{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.990000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.194000px;}
._7{width:1.344000px;}
._6{width:2.928000px;}
._5{width:4.752000px;}
._a{width:6.540000px;}
._9{width:7.560000px;}
._8{width:8.700000px;}
._b{width:9.900000px;}
._11{width:11.460000px;}
._10{width:696.288000px;}
._f{width:816.096000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:62.116583px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.y88{bottom:82.936650px;}
.y5f{bottom:83.228850px;}
.yd1{bottom:83.363850px;}
.y11e{bottom:83.407800px;}
.y2b{bottom:83.493900px;}
.y13a{bottom:83.513850px;}
.yd4{bottom:83.738550px;}
.y13e{bottom:85.878450px;}
.y9c{bottom:85.913850px;}
.y85{bottom:88.450950px;}
.y10f{bottom:88.455600px;}
.y112{bottom:99.148950px;}
.y11d{bottom:99.151800px;}
.yd3{bottom:99.482550px;}
.y5e{bottom:101.228850px;}
.yd0{bottom:101.363850px;}
.y139{bottom:101.513850px;}
.y13d{bottom:101.622450px;}
.y9b{bottom:103.913850px;}
.y84{bottom:106.450950px;}
.y10e{bottom:106.455600px;}
.y111{bottom:114.892950px;}
.y11c{bottom:114.895800px;}
.yd2{bottom:115.226550px;}
.y13c{bottom:117.366450px;}
.y5d{bottom:119.228850px;}
.ycf{bottom:119.363850px;}
.y138{bottom:119.513850px;}
.y1a{bottom:121.513200px;}
.y9a{bottom:121.913850px;}
.y83{bottom:124.450950px;}
.y10d{bottom:124.455600px;}
.y110{bottom:130.639800px;}
.y13b{bottom:133.110450px;}
.ye5{bottom:137.036100px;}
.y5c{bottom:137.228850px;}
.yce{bottom:137.363850px;}
.y137{bottom:137.513850px;}
.y99{bottom:139.913850px;}
.y82{bottom:142.450950px;}
.y10c{bottom:142.455600px;}
.y5b{bottom:155.228850px;}
.ycd{bottom:155.363850px;}
.y154{bottom:155.513850px;}
.y98{bottom:157.913850px;}
.y81{bottom:160.450950px;}
.y5a{bottom:173.228850px;}
.ycc{bottom:173.363850px;}
.y136{bottom:173.513850px;}
.y130{bottom:175.778850px;}
.y97{bottom:175.913850px;}
.y10b{bottom:176.055600px;}
.y80{bottom:178.450950px;}
.y27{bottom:179.603850px;}
.y59{bottom:191.228850px;}
.ycb{bottom:191.363850px;}
.y153{bottom:191.513850px;}
.y96{bottom:193.913850px;}
.y10a{bottom:194.055600px;}
.y7f{bottom:196.450950px;}
.y26{bottom:197.603850px;}
.y188{bottom:205.796700px;}
.y58{bottom:209.228850px;}
.yca{bottom:209.363850px;}
.y152{bottom:209.513850px;}
.y95{bottom:211.913850px;}
.y7e{bottom:214.450950px;}
.y1c0{bottom:214.938300px;}
.y25{bottom:215.603850px;}
.y187{bottom:220.796700px;}
.ye4{bottom:227.036100px;}
.y57{bottom:227.228850px;}
.yc9{bottom:227.363850px;}
.y151{bottom:227.513850px;}
.y109{bottom:229.905600px;}
.y12f{bottom:229.913850px;}
.y1bf{bottom:229.938300px;}
.y24{bottom:233.603850px;}
.y186{bottom:235.796700px;}
.y1be{bottom:244.938300px;}
.y56{bottom:245.228850px;}
.yc8{bottom:245.363850px;}
.y135{bottom:245.378850px;}
.y94{bottom:245.513850px;}
.y108{bottom:247.905600px;}
.y12e{bottom:247.913850px;}
.y7d{bottom:249.328500px;}
.y185{bottom:250.796700px;}
.y23{bottom:251.603850px;}
.y1bd{bottom:259.938300px;}
.y55{bottom:263.228850px;}
.yc7{bottom:263.363850px;}
.y134{bottom:263.378850px;}
.y93{bottom:263.513850px;}
.y119{bottom:263.764950px;}
.y7c{bottom:264.934500px;}
.y184{bottom:265.796700px;}
.y107{bottom:265.905600px;}
.y12d{bottom:265.913850px;}
.y22{bottom:269.603850px;}
.y143{bottom:269.905800px;}
.y14b{bottom:271.189800px;}
.y1bc{bottom:274.938300px;}
.y183{bottom:280.796700px;}
.y54{bottom:281.228850px;}
.yc6{bottom:281.363850px;}
.y133{bottom:281.378850px;}
.y92{bottom:281.513850px;}
.y7b{bottom:281.648850px;}
.y106{bottom:283.905600px;}
.y12c{bottom:283.913850px;}
.y21{bottom:287.603850px;}
.y1bb{bottom:289.938300px;}
.y182{bottom:295.796700px;}
.y53{bottom:299.228850px;}
.yc5{bottom:299.363850px;}
.y132{bottom:299.378850px;}
.y150{bottom:299.513850px;}
.y105{bottom:301.905600px;}
.y12b{bottom:301.913850px;}
.y1ba{bottom:304.938300px;}
.y20{bottom:305.603850px;}
.y181{bottom:310.796700px;}
.y52{bottom:317.228850px;}
.y91{bottom:317.363850px;}
.y131{bottom:317.378850px;}
.y7a{bottom:317.498850px;}
.y14f{bottom:317.513850px;}
.y104{bottom:319.905600px;}
.y12a{bottom:319.913850px;}
.y1b9{bottom:319.938300px;}
.y1f{bottom:323.603850px;}
.y180{bottom:325.796700px;}
.y1b8{bottom:334.938300px;}
.y51{bottom:335.228850px;}
.y90{bottom:335.363850px;}
.yc4{bottom:335.378850px;}
.y79{bottom:335.498850px;}
.y14e{bottom:335.513850px;}
.y102{bottom:337.577850px;}
.y103{bottom:337.905600px;}
.y101{bottom:337.913850px;}
.yda{bottom:340.473900px;}
.y17f{bottom:340.796700px;}
.y1e{bottom:341.603850px;}
.y1b7{bottom:349.938300px;}
.y50{bottom:353.228850px;}
.y8f{bottom:353.363850px;}
.yc3{bottom:353.378850px;}
.y78{bottom:353.498850px;}
.y14d{bottom:353.513850px;}
.y17e{bottom:355.796700px;}
.y100{bottom:355.913850px;}
.y1d{bottom:359.603850px;}
.y1b6{bottom:364.938300px;}
.y127{bottom:368.656050px;}
.y17d{bottom:370.796700px;}
.y4f{bottom:371.228850px;}
.y8e{bottom:371.363850px;}
.yc2{bottom:371.378850px;}
.y77{bottom:371.498850px;}
.y124{bottom:371.956050px;}
.y122{bottom:373.444050px;}
.yff{bottom:373.913850px;}
.y1c{bottom:377.603850px;}
.y1b5{bottom:379.938300px;}
.y17c{bottom:385.796700px;}
.y4e{bottom:389.228850px;}
.y8d{bottom:389.363850px;}
.yc1{bottom:389.378850px;}
.ydf{bottom:389.381550px;}
.y14c{bottom:389.513850px;}
.yfe{bottom:391.913850px;}
.y1b4{bottom:394.938300px;}
.y28{bottom:395.603850px;}
.y17b{bottom:400.796700px;}
.y4d{bottom:407.228850px;}
.y76{bottom:407.363850px;}
.yc0{bottom:407.378850px;}
.yde{bottom:409.793550px;}
.y146{bottom:409.801800px;}
.yfd{bottom:409.913850px;}
.y1b3{bottom:409.938300px;}
.y14a{bottom:410.017800px;}
.y142{bottom:410.221800px;}
.y1b{bottom:413.603850px;}
.y17a{bottom:415.796700px;}
.y1b2{bottom:424.938300px;}
.y4c{bottom:425.228850px;}
.y8c{bottom:425.363850px;}
.ybf{bottom:425.378850px;}
.yfc{bottom:427.913850px;}
.y179{bottom:430.796700px;}
.y118{bottom:432.988950px;}
.y1b1{bottom:439.938300px;}
.y4b{bottom:443.228850px;}
.y8b{bottom:443.363850px;}
.ybe{bottom:443.378850px;}
.y178{bottom:445.796700px;}
.yfb{bottom:445.913850px;}
.y1b0{bottom:454.940700px;}
.y177{bottom:460.797000px;}
.y4a{bottom:461.228850px;}
.y8a{bottom:461.363850px;}
.ybd{bottom:461.378850px;}
.yfa{bottom:463.913850px;}
.y1af{bottom:469.940700px;}
.y176{bottom:475.797000px;}
.y49{bottom:479.228850px;}
.y89{bottom:479.363850px;}
.ybc{bottom:479.378850px;}
.yf9{bottom:481.913850px;}
.y1ae{bottom:484.940700px;}
.y19{bottom:489.338550px;}
.y175{bottom:490.797000px;}
.y48{bottom:497.228850px;}
.y75{bottom:497.363850px;}
.ybb{bottom:497.378850px;}
.yf8{bottom:499.913850px;}
.y1ad{bottom:499.940700px;}
.y174{bottom:505.796700px;}
.y1ac{bottom:514.940700px;}
.y47{bottom:515.228850px;}
.y74{bottom:515.363850px;}
.yba{bottom:515.378850px;}
.yf7{bottom:517.913850px;}
.y173{bottom:520.796700px;}
.y18{bottom:522.194550px;}
.y1ab{bottom:529.940700px;}
.y46{bottom:533.228850px;}
.y73{bottom:533.363850px;}
.yb9{bottom:533.378850px;}
.y172{bottom:535.796700px;}
.yf6{bottom:535.913850px;}
.y17{bottom:537.194550px;}
.y1aa{bottom:544.940700px;}
.y171{bottom:550.796700px;}
.y45{bottom:551.228850px;}
.y72{bottom:551.363850px;}
.yb8{bottom:551.378850px;}
.y16{bottom:552.194550px;}
.yf5{bottom:553.913850px;}
.y1a9{bottom:559.940700px;}
.yd9{bottom:562.425900px;}
.y126{bottom:565.420050px;}
.y170{bottom:565.796700px;}
.y15{bottom:567.194550px;}
.y44{bottom:569.228850px;}
.y71{bottom:569.363850px;}
.yb7{bottom:569.378850px;}
.yf4{bottom:571.913850px;}
.y123{bottom:574.348050px;}
.y1a8{bottom:574.940700px;}
.y121{bottom:575.836050px;}
.ydb{bottom:576.033900px;}
.y16f{bottom:580.796700px;}
.y14{bottom:582.194550px;}
.y43{bottom:587.228850px;}
.y70{bottom:587.363850px;}
.yb6{bottom:587.378850px;}
.yf3{bottom:589.913850px;}
.y1a7{bottom:589.940700px;}
.y141{bottom:591.361800px;}
.y16e{bottom:595.796700px;}
.y13{bottom:597.194550px;}
.y149{bottom:602.845800px;}
.y117{bottom:603.064950px;}
.y1a6{bottom:604.940700px;}
.y42{bottom:605.228850px;}
.y6f{bottom:605.363850px;}
.yb5{bottom:605.378850px;}
.yf2{bottom:607.913850px;}
.y16d{bottom:610.796700px;}
.y12{bottom:612.194550px;}
.y1a5{bottom:619.940700px;}
.y41{bottom:623.228850px;}
.y6e{bottom:623.363850px;}
.yb4{bottom:623.378850px;}
.y16c{bottom:625.796700px;}
.yf1{bottom:625.913850px;}
.y11{bottom:627.194550px;}
.y1a4{bottom:634.940700px;}
.y116{bottom:638.776950px;}
.y16b{bottom:640.796700px;}
.y40{bottom:641.228850px;}
.y6d{bottom:641.363850px;}
.yb3{bottom:641.378850px;}
.y10{bottom:642.194550px;}
.yf0{bottom:643.913850px;}
.y1a3{bottom:649.940700px;}
.y16a{bottom:655.796700px;}
.yf{bottom:657.194550px;}
.ye3{bottom:659.036100px;}
.y3f{bottom:659.228850px;}
.y6c{bottom:659.363850px;}
.yb2{bottom:659.378850px;}
.yef{bottom:661.913850px;}
.y1a2{bottom:664.940700px;}
.y169{bottom:670.796700px;}
.ye{bottom:672.194550px;}
.y3e{bottom:677.228850px;}
.y6b{bottom:677.363850px;}
.yb1{bottom:677.378850px;}
.yee{bottom:679.913850px;}
.y1a1{bottom:679.940700px;}
.y168{bottom:685.796700px;}
.yd{bottom:687.194550px;}
.y1a0{bottom:694.940700px;}
.y3d{bottom:695.228850px;}
.y6a{bottom:695.363850px;}
.yb0{bottom:695.378850px;}
.yed{bottom:697.913850px;}
.y167{bottom:700.796700px;}
.y115{bottom:709.780950px;}
.y19f{bottom:709.940700px;}
.ydd{bottom:709.985550px;}
.y3c{bottom:713.228850px;}
.y69{bottom:713.363850px;}
.yaf{bottom:713.378850px;}
.y166{bottom:715.796700px;}
.yec{bottom:715.913850px;}
.ye0{bottom:718.481550px;}
.y19e{bottom:724.940700px;}
.y165{bottom:730.796700px;}
.y3b{bottom:731.228850px;}
.y68{bottom:731.363850px;}
.yae{bottom:731.378850px;}
.y129{bottom:731.513850px;}
.yeb{bottom:733.913850px;}
.yc{bottom:735.938550px;}
.y19d{bottom:739.940700px;}
.y164{bottom:745.796700px;}
.y3a{bottom:749.228850px;}
.y67{bottom:749.363850px;}
.yad{bottom:749.378850px;}
.y128{bottom:749.513850px;}
.yb{bottom:750.303000px;}
.yea{bottom:751.913850px;}
.y19c{bottom:754.940700px;}
.y163{bottom:760.796700px;}
.y39{bottom:767.228850px;}
.y66{bottom:767.363850px;}
.yac{bottom:767.378850px;}
.y19b{bottom:769.940700px;}
.y162{bottom:775.796700px;}
.ya{bottom:777.494550px;}
.yd7{bottom:783.957900px;}
.y19a{bottom:784.940700px;}
.y38{bottom:785.228850px;}
.y65{bottom:785.363850px;}
.yab{bottom:785.378850px;}
.ye9{bottom:785.513850px;}
.y140{bottom:788.221800px;}
.y120{bottom:788.224050px;}
.y145{bottom:789.073800px;}
.y161{bottom:790.796700px;}
.yd8{bottom:794.157900px;}
.yd6{bottom:794.589900px;}
.y148{bottom:798.865800px;}
.y199{bottom:799.940700px;}
.y125{bottom:800.980050px;}
.y37{bottom:803.228850px;}
.y64{bottom:803.363850px;}
.yaa{bottom:803.378850px;}
.ye8{bottom:803.513850px;}
.y160{bottom:805.796700px;}
.y9{bottom:811.994550px;}
.y198{bottom:814.940700px;}
.y15f{bottom:820.796700px;}
.y63{bottom:821.363850px;}
.ya9{bottom:821.378850px;}
.y197{bottom:829.940700px;}
.y8{bottom:832.612500px;}
.y15e{bottom:835.796700px;}
.y36{bottom:839.228850px;}
.y62{bottom:839.363850px;}
.ya8{bottom:839.378850px;}
.y196{bottom:844.940700px;}
.y7{bottom:844.994550px;}
.y11a{bottom:849.688950px;}
.y15d{bottom:850.796700px;}
.ye7{bottom:857.036100px;}
.y61{bottom:857.363850px;}
.ya7{bottom:857.378850px;}
.y195{bottom:859.940700px;}
.y6{bottom:865.612500px;}
.y15c{bottom:865.796700px;}
.y194{bottom:874.940700px;}
.y60{bottom:875.363850px;}
.ya6{bottom:875.378850px;}
.y15b{bottom:880.796700px;}
.y5{bottom:880.879800px;}
.y114{bottom:889.216950px;}
.y193{bottom:889.940700px;}
.y35{bottom:893.363850px;}
.ya5{bottom:893.378850px;}
.y15a{bottom:895.796700px;}
.y192{bottom:904.940700px;}
.y4{bottom:908.269200px;}
.y34{bottom:911.363850px;}
.ya4{bottom:911.378850px;}
.y191{bottom:919.940700px;}
.y159{bottom:929.232600px;}
.y33{bottom:929.363850px;}
.ya3{bottom:929.378850px;}
.y190{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.ye6{bottom:947.036100px;}
.y32{bottom:947.363850px;}
.ya2{bottom:947.378850px;}
.y113{bottom:949.804950px;}
.y18f{bottom:949.940700px;}
.y18e{bottom:964.940700px;}
.ye2{bottom:965.036100px;}
.y31{bottom:965.363850px;}
.ya1{bottom:965.378850px;}
.y18d{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y144{bottom:980.833800px;}
.y13f{bottom:980.836050px;}
.y30{bottom:983.363850px;}
.y158{bottom:983.367600px;}
.ya0{bottom:983.378850px;}
.y147{bottom:983.821800px;}
.yd5{bottom:987.213900px;}
.y11f{bottom:993.592050px;}
.y18c{bottom:994.940700px;}
.ye1{bottom:997.409550px;}
.ydc{bottom:997.418700px;}
.y2f{bottom:1001.363850px;}
.y157{bottom:1001.367600px;}
.y9f{bottom:1001.378850px;}
.y18b{bottom:1009.940700px;}
.y87{bottom:1012.300650px;}
.y11b{bottom:1012.324950px;}
.y2e{bottom:1019.363850px;}
.y156{bottom:1019.367600px;}
.y9e{bottom:1019.378850px;}
.y18a{bottom:1024.940700px;}
.y2d{bottom:1037.363850px;}
.y155{bottom:1037.367600px;}
.y9d{bottom:1037.378850px;}
.y189{bottom:1039.940700px;}
.y2a{bottom:1070.769450px;}
.y86{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:30.618164px;}
.h9{height:34.947787px;}
.h8{height:34.968750px;}
.h11{height:34.980788px;}
.h7{height:34.992188px;}
.hd{height:37.179199px;}
.he{height:39.339844px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.hc{height:43.740234px;}
.hf{height:45.720000px;}
.h10{height:48.699401px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1c{left:87.020400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x46{left:100.949700px;}
.xc{left:110.555400px;}
.x3{left:125.427600px;}
.x51{left:127.555200px;}
.x6{left:131.816400px;}
.x44{left:143.372400px;}
.xd{left:144.725400px;}
.x45{left:159.899700px;}
.x4{left:161.559600px;}
.x1a{left:166.899750px;}
.x1d{left:183.845400px;}
.x47{left:198.929700px;}
.x1e{left:211.355400px;}
.x5{left:212.876400px;}
.x50{left:215.545350px;}
.x27{left:219.397500px;}
.x2b{left:220.981500px;}
.x2d{left:223.450200px;}
.x4b{left:224.921400px;}
.x2c{left:237.628350px;}
.x2e{left:240.223650px;}
.x26{left:281.905500px;}
.x38{left:284.022750px;}
.x22{left:344.838150px;}
.x3d{left:346.535400px;}
.x49{left:352.700850px;}
.x39{left:354.606750px;}
.x1f{left:358.866150px;}
.x24{left:360.138150px;}
.x23{left:367.794150px;}
.x4a{left:369.917400px;}
.x3e{left:373.103400px;}
.xa{left:455.041500px;}
.xe{left:457.085400px;}
.x16{left:459.873750px;}
.x14{left:469.025400px;}
.x15{left:472.085400px;}
.x2f{left:478.341750px;}
.x7{left:480.461400px;}
.xf{left:491.105400px;}
.x3b{left:494.502750px;}
.x13{left:495.665400px;}
.x21{left:497.058150px;}
.x4c{left:505.553400px;}
.x52{left:508.075200px;}
.x3f{left:510.863400px;}
.x30{left:512.361750px;}
.x8{left:514.481400px;}
.x4d{left:515.765400px;}
.x40{left:517.667400px;}
.x12{left:521.510400px;}
.x41{left:522.767400px;}
.x42{left:524.675400px;}
.x11{left:528.350400px;}
.x17{left:575.082750px;}
.x10{left:591.680400px;}
.x33{left:602.398800px;}
.x35{left:607.358850px;}
.x34{left:619.433850px;}
.x19{left:663.492300px;}
.x3c{left:694.770750px;}
.x4f{left:696.053400px;}
.x3a{left:699.870750px;}
.x2{left:704.338650px;}
.x20{left:712.206150px;}
.x29{left:714.757500px;}
.x28{left:716.029500px;}
.x48{left:717.130200px;}
.x25{left:718.590150px;}
.x43{left:721.547400px;}
.x18{left:724.221150px;}
.x4e{left:725.813400px;}
.x2a{left:731.761500px;}
.x53{left:738.390000px;}
.x31{left:739.487550px;}
.x1b{left:745.480950px;}
.x32{left:757.344000px;}
.x36{left:767.493000px;}
.x37{left:783.992400px;}
@media print{
.v6{vertical-align:-33.280000pt;}
.v7{vertical-align:-31.744000pt;}
.v2{vertical-align:-14.641600pt;}
.v5{vertical-align:-3.026133pt;}
.v4{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:20.138133pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls54{letter-spacing:-0.373333pt;}
.ls68{letter-spacing:-0.298667pt;}
.ls67{letter-spacing:-0.266667pt;}
.ls93{letter-spacing:-0.256000pt;}
.ls52{letter-spacing:-0.213333pt;}
.ls51{letter-spacing:-0.160000pt;}
.ls53{letter-spacing:-0.106667pt;}
.ls5c{letter-spacing:-0.053333pt;}
.ls19{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls55{letter-spacing:0.004800pt;}
.ls4f{letter-spacing:0.005333pt;}
.ls5d{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.053333pt;}
.ls60{letter-spacing:0.085333pt;}
.ls18{letter-spacing:0.106667pt;}
.ls38{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.213333pt;}
.ls74{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.298667pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls37{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.384000pt;}
.ls44{letter-spacing:0.426667pt;}
.ls78{letter-spacing:0.469333pt;}
.ls40{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls25{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.554667pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.693333pt;}
.ls7d{letter-spacing:0.725333pt;}
.ls1c{letter-spacing:0.746667pt;}
.ls8d{letter-spacing:0.768000pt;}
.ls47{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.853333pt;}
.ls5{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls8f{letter-spacing:0.938667pt;}
.ls4d{letter-spacing:0.960000pt;}
.ls8b{letter-spacing:0.981333pt;}
.ls36{letter-spacing:1.013333pt;}
.ls82{letter-spacing:1.024000pt;}
.ls20{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.109333pt;}
.ls3d{letter-spacing:1.120000pt;}
.ls73{letter-spacing:1.152000pt;}
.ls7{letter-spacing:1.173333pt;}
.ls80{letter-spacing:1.194667pt;}
.ls23{letter-spacing:1.226667pt;}
.ls87{letter-spacing:1.237333pt;}
.ls24{letter-spacing:1.280000pt;}
.ls86{letter-spacing:1.322667pt;}
.ls45{letter-spacing:1.333333pt;}
.ls17{letter-spacing:1.386667pt;}
.ls28{letter-spacing:1.440000pt;}
.ls3e{letter-spacing:1.493333pt;}
.ls7f{letter-spacing:1.536000pt;}
.ls31{letter-spacing:1.546667pt;}
.ls30{letter-spacing:1.600000pt;}
.ls2d{letter-spacing:1.653333pt;}
.ls71{letter-spacing:1.664000pt;}
.ls3a{letter-spacing:1.706667pt;}
.ls13{letter-spacing:1.760000pt;}
.ls79{letter-spacing:1.792000pt;}
.ls27{letter-spacing:1.813333pt;}
.ls5a{letter-spacing:1.866667pt;}
.ls85{letter-spacing:1.877333pt;}
.lsc{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:1.973333pt;}
.ls12{letter-spacing:2.026667pt;}
.ls22{letter-spacing:2.080000pt;}
.ls81{letter-spacing:2.090667pt;}
.ls32{letter-spacing:2.133333pt;}
.ls16{letter-spacing:2.186667pt;}
.ls34{letter-spacing:2.240000pt;}
.lse{letter-spacing:2.293333pt;}
.ls7b{letter-spacing:2.304000pt;}
.ls33{letter-spacing:2.346667pt;}
.ls56{letter-spacing:2.400000pt;}
.ls8e{letter-spacing:2.432000pt;}
.ls2f{letter-spacing:2.453333pt;}
.ls42{letter-spacing:2.506667pt;}
.ls5f{letter-spacing:2.517333pt;}
.ls39{letter-spacing:2.560000pt;}
.ls89{letter-spacing:2.602667pt;}
.ls48{letter-spacing:2.613333pt;}
.ls7a{letter-spacing:2.645333pt;}
.ls8{letter-spacing:2.666667pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls7e{letter-spacing:2.730667pt;}
.ls69{letter-spacing:2.773333pt;}
.ls50{letter-spacing:2.826667pt;}
.ls8a{letter-spacing:2.858667pt;}
.ls6c{letter-spacing:2.880000pt;}
.lsa{letter-spacing:2.933333pt;}
.lsb{letter-spacing:2.986667pt;}
.ls6{letter-spacing:3.040000pt;}
.ls75{letter-spacing:3.072000pt;}
.ls91{letter-spacing:3.093333pt;}
.ls11{letter-spacing:3.146667pt;}
.ls57{letter-spacing:3.200000pt;}
.ls58{letter-spacing:3.253333pt;}
.ls83{letter-spacing:3.285333pt;}
.ls1f{letter-spacing:3.306667pt;}
.ls70{letter-spacing:3.328000pt;}
.ls4a{letter-spacing:3.360000pt;}
.ls43{letter-spacing:3.413333pt;}
.ls4b{letter-spacing:3.466667pt;}
.ls92{letter-spacing:3.498667pt;}
.ls76{letter-spacing:3.541333pt;}
.ls64{letter-spacing:3.573333pt;}
.ls29{letter-spacing:3.680000pt;}
.ls88{letter-spacing:3.712000pt;}
.ls62{letter-spacing:3.733333pt;}
.ls4e{letter-spacing:3.786667pt;}
.ls5b{letter-spacing:3.840000pt;}
.ls1d{letter-spacing:3.893333pt;}
.ls59{letter-spacing:3.946667pt;}
.ls5e{letter-spacing:3.968000pt;}
.ls41{letter-spacing:4.053333pt;}
.ls63{letter-spacing:4.213333pt;}
.ls66{letter-spacing:4.266667pt;}
.ls2e{letter-spacing:4.320000pt;}
.ls3f{letter-spacing:4.373333pt;}
.ls6e{letter-spacing:4.426667pt;}
.ls4c{letter-spacing:4.640000pt;}
.ls65{letter-spacing:4.693333pt;}
.lsd{letter-spacing:4.746667pt;}
.ls84{letter-spacing:4.906667pt;}
.ls14{letter-spacing:4.960000pt;}
.ls72{letter-spacing:5.077333pt;}
.ls6a{letter-spacing:5.120000pt;}
.ls8c{letter-spacing:5.205333pt;}
.ls35{letter-spacing:5.226667pt;}
.ls46{letter-spacing:5.280000pt;}
.ls90{letter-spacing:5.418667pt;}
.ls49{letter-spacing:5.440000pt;}
.ls1e{letter-spacing:5.706667pt;}
.ls3b{letter-spacing:5.760000pt;}
.ls6b{letter-spacing:5.813333pt;}
.ls61{letter-spacing:6.666667pt;}
.ls2c{letter-spacing:6.826667pt;}
.ls6d{letter-spacing:10.613333pt;}
.ws5e{word-spacing:-53.333333pt;}
.ws3f{word-spacing:-20.106667pt;}
.ws21{word-spacing:-19.146667pt;}
.ws3b{word-spacing:-18.240000pt;}
.ws40{word-spacing:-18.186667pt;}
.ws83{word-spacing:-17.813333pt;}
.ws84{word-spacing:-17.600000pt;}
.ws22{word-spacing:-17.066667pt;}
.ws41{word-spacing:-16.800000pt;}
.ws4{word-spacing:-16.746667pt;}
.ws87{word-spacing:-16.693333pt;}
.ws86{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.586667pt;}
.ws20{word-spacing:-16.480000pt;}
.ws74{word-spacing:-16.426667pt;}
.ws88{word-spacing:-16.213333pt;}
.ws3e{word-spacing:-16.160000pt;}
.ws39{word-spacing:-16.053333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws82{word-spacing:-15.733333pt;}
.ws5d{word-spacing:-15.680000pt;}
.ws85{word-spacing:-15.573333pt;}
.ws8a{word-spacing:-15.413333pt;}
.ws99{word-spacing:-15.402667pt;}
.ws3c{word-spacing:-15.253333pt;}
.ws3a{word-spacing:-14.986667pt;}
.ws5c{word-spacing:-14.933333pt;}
.ws9d{word-spacing:-14.848000pt;}
.ws5{word-spacing:-14.826667pt;}
.ws89{word-spacing:-14.720000pt;}
.ws3d{word-spacing:-14.613333pt;}
.ws9a{word-spacing:-13.653333pt;}
.ws9b{word-spacing:-12.970667pt;}
.ws23{word-spacing:-12.602667pt;}
.ws1{word-spacing:-12.245333pt;}
.ws9c{word-spacing:-12.160000pt;}
.ws70{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws0{word-spacing:-9.785600pt;}
.wsc0{word-spacing:-5.418667pt;}
.wsbd{word-spacing:-5.205333pt;}
.ws6d{word-spacing:-4.746667pt;}
.ws7f{word-spacing:-4.693333pt;}
.ws8b{word-spacing:-4.426667pt;}
.ws77{word-spacing:-4.213333pt;}
.ws96{word-spacing:-3.786667pt;}
.ws75{word-spacing:-3.733333pt;}
.wsba{word-spacing:-3.712000pt;}
.ws7e{word-spacing:-3.573333pt;}
.wsa9{word-spacing:-3.498667pt;}
.wsa4{word-spacing:-3.413333pt;}
.wsb7{word-spacing:-3.285333pt;}
.ws68{word-spacing:-3.200000pt;}
.ws1a{word-spacing:-3.146667pt;}
.ws9e{word-spacing:-3.093333pt;}
.wsa7{word-spacing:-3.072000pt;}
.ws27{word-spacing:-3.040000pt;}
.ws13{word-spacing:-2.986667pt;}
.ws2f{word-spacing:-2.933333pt;}
.ws91{word-spacing:-2.880000pt;}
.ws92{word-spacing:-2.826667pt;}
.wsb1{word-spacing:-2.730667pt;}
.ws24{word-spacing:-2.720000pt;}
.ws53{word-spacing:-2.666667pt;}
.wsaf{word-spacing:-2.645333pt;}
.wsbb{word-spacing:-2.602667pt;}
.ws45{word-spacing:-2.506667pt;}
.ws78{word-spacing:-2.453333pt;}
.wsbe{word-spacing:-2.432000pt;}
.ws61{word-spacing:-2.400000pt;}
.ws8{word-spacing:-2.368000pt;}
.wse{word-spacing:-2.346667pt;}
.ws17{word-spacing:-2.293333pt;}
.ws31{word-spacing:-2.240000pt;}
.ws34{word-spacing:-2.133333pt;}
.wsb5{word-spacing:-2.090667pt;}
.ws97{word-spacing:-2.080000pt;}
.ws66{word-spacing:-2.026667pt;}
.ws26{word-spacing:-1.973333pt;}
.ws16{word-spacing:-1.920000pt;}
.ws8d{word-spacing:-1.866667pt;}
.ws6e{word-spacing:-1.813333pt;}
.wsae{word-spacing:-1.792000pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws33{word-spacing:-1.706667pt;}
.wsa2{word-spacing:-1.664000pt;}
.ws51{word-spacing:-1.600000pt;}
.ws44{word-spacing:-1.546667pt;}
.wsb2{word-spacing:-1.536000pt;}
.ws37{word-spacing:-1.493333pt;}
.ws79{word-spacing:-1.440000pt;}
.ws2c{word-spacing:-1.386667pt;}
.ws7d{word-spacing:-1.333333pt;}
.ws8c{word-spacing:-1.280000pt;}
.wsb8{word-spacing:-1.237333pt;}
.wsb4{word-spacing:-1.194667pt;}
.ws2a{word-spacing:-1.173333pt;}
.wsa3{word-spacing:-1.152000pt;}
.ws6a{word-spacing:-1.120000pt;}
.wsac{word-spacing:-1.066667pt;}
.wsb6{word-spacing:-1.024000pt;}
.ws54{word-spacing:-1.013333pt;}
.wsbc{word-spacing:-0.981333pt;}
.ws67{word-spacing:-0.960000pt;}
.wsbf{word-spacing:-0.938667pt;}
.ws18{word-spacing:-0.906667pt;}
.wsb3{word-spacing:-0.896000pt;}
.ws64{word-spacing:-0.853333pt;}
.ws2d{word-spacing:-0.746667pt;}
.wsb0{word-spacing:-0.725333pt;}
.ws2e{word-spacing:-0.693333pt;}
.ws6b{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.586667pt;}
.wsab{word-spacing:-0.554667pt;}
.ws2b{word-spacing:-0.533333pt;}
.wsa6{word-spacing:-0.512000pt;}
.ws65{word-spacing:-0.480000pt;}
.wsad{word-spacing:-0.469333pt;}
.ws60{word-spacing:-0.426667pt;}
.ws12{word-spacing:-0.384000pt;}
.ws6c{word-spacing:-0.373333pt;}
.ws42{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.266667pt;}
.ws36{word-spacing:-0.213333pt;}
.ws9f{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.160000pt;}
.ws1e{word-spacing:-0.106667pt;}
.wsaa{word-spacing:-0.085333pt;}
.ws28{word-spacing:-0.053333pt;}
.ws56{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws50{word-spacing:0.106667pt;}
.ws49{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.213333pt;}
.ws7a{word-spacing:0.266667pt;}
.ws81{word-spacing:0.298667pt;}
.ws4e{word-spacing:0.373333pt;}
.wsb9{word-spacing:0.554667pt;}
.ws59{word-spacing:0.597333pt;}
.wsf{word-spacing:0.682667pt;}
.ws1b{word-spacing:0.853333pt;}
.ws4a{word-spacing:0.906667pt;}
.wsa5{word-spacing:1.280000pt;}
.ws95{word-spacing:1.386667pt;}
.ws90{word-spacing:1.440000pt;}
.wsa{word-spacing:1.536000pt;}
.ws5f{word-spacing:1.653333pt;}
.ws47{word-spacing:1.706667pt;}
.ws5b{word-spacing:1.834667pt;}
.ws48{word-spacing:1.866667pt;}
.wsa0{word-spacing:1.877333pt;}
.ws4f{word-spacing:2.026667pt;}
.wsa8{word-spacing:2.090667pt;}
.ws4b{word-spacing:2.133333pt;}
.ws52{word-spacing:2.186667pt;}
.ws25{word-spacing:2.293333pt;}
.ws63{word-spacing:2.400000pt;}
.ws55{word-spacing:2.506667pt;}
.ws72{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.720000pt;}
.ws7c{word-spacing:2.773333pt;}
.ws98{word-spacing:3.093333pt;}
.ws11{word-spacing:3.114667pt;}
.ws43{word-spacing:3.146667pt;}
.ws76{word-spacing:3.200000pt;}
.wsa1{word-spacing:3.456000pt;}
.ws29{word-spacing:3.466667pt;}
.ws35{word-spacing:3.573333pt;}
.ws73{word-spacing:3.584000pt;}
.ws46{word-spacing:3.680000pt;}
.ws93{word-spacing:3.786667pt;}
.wsd{word-spacing:3.834667pt;}
.wsb{word-spacing:3.840000pt;}
.ws9{word-spacing:3.882667pt;}
.ws4d{word-spacing:3.893333pt;}
.wsc{word-spacing:3.925333pt;}
.ws94{word-spacing:3.946667pt;}
.ws71{word-spacing:3.968000pt;}
.ws4c{word-spacing:4.000000pt;}
.ws1d{word-spacing:4.053333pt;}
.ws1f{word-spacing:4.106667pt;}
.ws80{word-spacing:4.266667pt;}
.ws69{word-spacing:4.373333pt;}
.ws38{word-spacing:4.426667pt;}
.ws62{word-spacing:4.586667pt;}
.ws8f{word-spacing:4.800000pt;}
.ws14{word-spacing:4.853333pt;}
.ws15{word-spacing:4.906667pt;}
.ws8e{word-spacing:5.280000pt;}
.ws57{word-spacing:402.944000pt;}
.ws58{word-spacing:532.949333pt;}
.ws5a{word-spacing:848.298667pt;}
._d{margin-left:-2576.112000pt;}
._e{margin-left:-2554.941333pt;}
._12{margin-left:-11.146667pt;}
._c{margin-left:-6.826667pt;}
._2{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.546667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-1.061333pt;}
._7{width:1.194667pt;}
._6{width:2.602667pt;}
._5{width:4.224000pt;}
._a{width:5.813333pt;}
._9{width:6.720000pt;}
._8{width:7.733333pt;}
._b{width:8.800000pt;}
._11{width:10.186667pt;}
._10{width:618.922667pt;}
._f{width:725.418667pt;}
.fs5{font-size:25.600000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:55.214741pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.y88{bottom:73.721467pt;}
.y5f{bottom:73.981200pt;}
.yd1{bottom:74.101200pt;}
.y11e{bottom:74.140267pt;}
.y2b{bottom:74.216800pt;}
.y13a{bottom:74.234533pt;}
.yd4{bottom:74.434267pt;}
.y13e{bottom:76.336400pt;}
.y9c{bottom:76.367867pt;}
.y85{bottom:78.623067pt;}
.y10f{bottom:78.627200pt;}
.y112{bottom:88.132400pt;}
.y11d{bottom:88.134933pt;}
.yd3{bottom:88.428933pt;}
.y5e{bottom:89.981200pt;}
.yd0{bottom:90.101200pt;}
.y139{bottom:90.234533pt;}
.y13d{bottom:90.331067pt;}
.y9b{bottom:92.367867pt;}
.y84{bottom:94.623067pt;}
.y10e{bottom:94.627200pt;}
.y111{bottom:102.127067pt;}
.y11c{bottom:102.129600pt;}
.yd2{bottom:102.423600pt;}
.y13c{bottom:104.325733pt;}
.y5d{bottom:105.981200pt;}
.ycf{bottom:106.101200pt;}
.y138{bottom:106.234533pt;}
.y1a{bottom:108.011733pt;}
.y9a{bottom:108.367867pt;}
.y83{bottom:110.623067pt;}
.y10d{bottom:110.627200pt;}
.y110{bottom:116.124267pt;}
.y13b{bottom:118.320400pt;}
.ye5{bottom:121.809867pt;}
.y5c{bottom:121.981200pt;}
.yce{bottom:122.101200pt;}
.y137{bottom:122.234533pt;}
.y99{bottom:124.367867pt;}
.y82{bottom:126.623067pt;}
.y10c{bottom:126.627200pt;}
.y5b{bottom:137.981200pt;}
.ycd{bottom:138.101200pt;}
.y154{bottom:138.234533pt;}
.y98{bottom:140.367867pt;}
.y81{bottom:142.623067pt;}
.y5a{bottom:153.981200pt;}
.ycc{bottom:154.101200pt;}
.y136{bottom:154.234533pt;}
.y130{bottom:156.247867pt;}
.y97{bottom:156.367867pt;}
.y10b{bottom:156.493867pt;}
.y80{bottom:158.623067pt;}
.y27{bottom:159.647867pt;}
.y59{bottom:169.981200pt;}
.ycb{bottom:170.101200pt;}
.y153{bottom:170.234533pt;}
.y96{bottom:172.367867pt;}
.y10a{bottom:172.493867pt;}
.y7f{bottom:174.623067pt;}
.y26{bottom:175.647867pt;}
.y188{bottom:182.930400pt;}
.y58{bottom:185.981200pt;}
.yca{bottom:186.101200pt;}
.y152{bottom:186.234533pt;}
.y95{bottom:188.367867pt;}
.y7e{bottom:190.623067pt;}
.y1c0{bottom:191.056267pt;}
.y25{bottom:191.647867pt;}
.y187{bottom:196.263733pt;}
.ye4{bottom:201.809867pt;}
.y57{bottom:201.981200pt;}
.yc9{bottom:202.101200pt;}
.y151{bottom:202.234533pt;}
.y109{bottom:204.360533pt;}
.y12f{bottom:204.367867pt;}
.y1bf{bottom:204.389600pt;}
.y24{bottom:207.647867pt;}
.y186{bottom:209.597067pt;}
.y1be{bottom:217.722933pt;}
.y56{bottom:217.981200pt;}
.yc8{bottom:218.101200pt;}
.y135{bottom:218.114533pt;}
.y94{bottom:218.234533pt;}
.y108{bottom:220.360533pt;}
.y12e{bottom:220.367867pt;}
.y7d{bottom:221.625333pt;}
.y185{bottom:222.930400pt;}
.y23{bottom:223.647867pt;}
.y1bd{bottom:231.056267pt;}
.y55{bottom:233.981200pt;}
.yc7{bottom:234.101200pt;}
.y134{bottom:234.114533pt;}
.y93{bottom:234.234533pt;}
.y119{bottom:234.457733pt;}
.y7c{bottom:235.497333pt;}
.y184{bottom:236.263733pt;}
.y107{bottom:236.360533pt;}
.y12d{bottom:236.367867pt;}
.y22{bottom:239.647867pt;}
.y143{bottom:239.916267pt;}
.y14b{bottom:241.057600pt;}
.y1bc{bottom:244.389600pt;}
.y183{bottom:249.597067pt;}
.y54{bottom:249.981200pt;}
.yc6{bottom:250.101200pt;}
.y133{bottom:250.114533pt;}
.y92{bottom:250.234533pt;}
.y7b{bottom:250.354533pt;}
.y106{bottom:252.360533pt;}
.y12c{bottom:252.367867pt;}
.y21{bottom:255.647867pt;}
.y1bb{bottom:257.722933pt;}
.y182{bottom:262.930400pt;}
.y53{bottom:265.981200pt;}
.yc5{bottom:266.101200pt;}
.y132{bottom:266.114533pt;}
.y150{bottom:266.234533pt;}
.y105{bottom:268.360533pt;}
.y12b{bottom:268.367867pt;}
.y1ba{bottom:271.056267pt;}
.y20{bottom:271.647867pt;}
.y181{bottom:276.263733pt;}
.y52{bottom:281.981200pt;}
.y91{bottom:282.101200pt;}
.y131{bottom:282.114533pt;}
.y7a{bottom:282.221200pt;}
.y14f{bottom:282.234533pt;}
.y104{bottom:284.360533pt;}
.y12a{bottom:284.367867pt;}
.y1b9{bottom:284.389600pt;}
.y1f{bottom:287.647867pt;}
.y180{bottom:289.597067pt;}
.y1b8{bottom:297.722933pt;}
.y51{bottom:297.981200pt;}
.y90{bottom:298.101200pt;}
.yc4{bottom:298.114533pt;}
.y79{bottom:298.221200pt;}
.y14e{bottom:298.234533pt;}
.y102{bottom:300.069200pt;}
.y103{bottom:300.360533pt;}
.y101{bottom:300.367867pt;}
.yda{bottom:302.643467pt;}
.y17f{bottom:302.930400pt;}
.y1e{bottom:303.647867pt;}
.y1b7{bottom:311.056267pt;}
.y50{bottom:313.981200pt;}
.y8f{bottom:314.101200pt;}
.yc3{bottom:314.114533pt;}
.y78{bottom:314.221200pt;}
.y14d{bottom:314.234533pt;}
.y17e{bottom:316.263733pt;}
.y100{bottom:316.367867pt;}
.y1d{bottom:319.647867pt;}
.y1b6{bottom:324.389600pt;}
.y127{bottom:327.694267pt;}
.y17d{bottom:329.597067pt;}
.y4f{bottom:329.981200pt;}
.y8e{bottom:330.101200pt;}
.yc2{bottom:330.114533pt;}
.y77{bottom:330.221200pt;}
.y124{bottom:330.627600pt;}
.y122{bottom:331.950267pt;}
.yff{bottom:332.367867pt;}
.y1c{bottom:335.647867pt;}
.y1b5{bottom:337.722933pt;}
.y17c{bottom:342.930400pt;}
.y4e{bottom:345.981200pt;}
.y8d{bottom:346.101200pt;}
.yc1{bottom:346.114533pt;}
.ydf{bottom:346.116933pt;}
.y14c{bottom:346.234533pt;}
.yfe{bottom:348.367867pt;}
.y1b4{bottom:351.056267pt;}
.y28{bottom:351.647867pt;}
.y17b{bottom:356.263733pt;}
.y4d{bottom:361.981200pt;}
.y76{bottom:362.101200pt;}
.yc0{bottom:362.114533pt;}
.yde{bottom:364.260933pt;}
.y146{bottom:364.268267pt;}
.yfd{bottom:364.367867pt;}
.y1b3{bottom:364.389600pt;}
.y14a{bottom:364.460267pt;}
.y142{bottom:364.641600pt;}
.y1b{bottom:367.647867pt;}
.y17a{bottom:369.597067pt;}
.y1b2{bottom:377.722933pt;}
.y4c{bottom:377.981200pt;}
.y8c{bottom:378.101200pt;}
.ybf{bottom:378.114533pt;}
.yfc{bottom:380.367867pt;}
.y179{bottom:382.930400pt;}
.y118{bottom:384.879067pt;}
.y1b1{bottom:391.056267pt;}
.y4b{bottom:393.981200pt;}
.y8b{bottom:394.101200pt;}
.ybe{bottom:394.114533pt;}
.y178{bottom:396.263733pt;}
.yfb{bottom:396.367867pt;}
.y1b0{bottom:404.391733pt;}
.y177{bottom:409.597333pt;}
.y4a{bottom:409.981200pt;}
.y8a{bottom:410.101200pt;}
.ybd{bottom:410.114533pt;}
.yfa{bottom:412.367867pt;}
.y1af{bottom:417.725067pt;}
.y176{bottom:422.930667pt;}
.y49{bottom:425.981200pt;}
.y89{bottom:426.101200pt;}
.ybc{bottom:426.114533pt;}
.yf9{bottom:428.367867pt;}
.y1ae{bottom:431.058400pt;}
.y19{bottom:434.967600pt;}
.y175{bottom:436.264000pt;}
.y48{bottom:441.981200pt;}
.y75{bottom:442.101200pt;}
.ybb{bottom:442.114533pt;}
.yf8{bottom:444.367867pt;}
.y1ad{bottom:444.391733pt;}
.y174{bottom:449.597067pt;}
.y1ac{bottom:457.725067pt;}
.y47{bottom:457.981200pt;}
.y74{bottom:458.101200pt;}
.yba{bottom:458.114533pt;}
.yf7{bottom:460.367867pt;}
.y173{bottom:462.930400pt;}
.y18{bottom:464.172933pt;}
.y1ab{bottom:471.058400pt;}
.y46{bottom:473.981200pt;}
.y73{bottom:474.101200pt;}
.yb9{bottom:474.114533pt;}
.y172{bottom:476.263733pt;}
.yf6{bottom:476.367867pt;}
.y17{bottom:477.506267pt;}
.y1aa{bottom:484.391733pt;}
.y171{bottom:489.597067pt;}
.y45{bottom:489.981200pt;}
.y72{bottom:490.101200pt;}
.yb8{bottom:490.114533pt;}
.y16{bottom:490.839600pt;}
.yf5{bottom:492.367867pt;}
.y1a9{bottom:497.725067pt;}
.yd9{bottom:499.934133pt;}
.y126{bottom:502.595600pt;}
.y170{bottom:502.930400pt;}
.y15{bottom:504.172933pt;}
.y44{bottom:505.981200pt;}
.y71{bottom:506.101200pt;}
.yb7{bottom:506.114533pt;}
.yf4{bottom:508.367867pt;}
.y123{bottom:510.531600pt;}
.y1a8{bottom:511.058400pt;}
.y121{bottom:511.854267pt;}
.ydb{bottom:512.030133pt;}
.y16f{bottom:516.263733pt;}
.y14{bottom:517.506267pt;}
.y43{bottom:521.981200pt;}
.y70{bottom:522.101200pt;}
.yb6{bottom:522.114533pt;}
.yf3{bottom:524.367867pt;}
.y1a7{bottom:524.391733pt;}
.y141{bottom:525.654933pt;}
.y16e{bottom:529.597067pt;}
.y13{bottom:530.839600pt;}
.y149{bottom:535.862933pt;}
.y117{bottom:536.057733pt;}
.y1a6{bottom:537.725067pt;}
.y42{bottom:537.981200pt;}
.y6f{bottom:538.101200pt;}
.yb5{bottom:538.114533pt;}
.yf2{bottom:540.367867pt;}
.y16d{bottom:542.930400pt;}
.y12{bottom:544.172933pt;}
.y1a5{bottom:551.058400pt;}
.y41{bottom:553.981200pt;}
.y6e{bottom:554.101200pt;}
.yb4{bottom:554.114533pt;}
.y16c{bottom:556.263733pt;}
.yf1{bottom:556.367867pt;}
.y11{bottom:557.506267pt;}
.y1a4{bottom:564.391733pt;}
.y116{bottom:567.801733pt;}
.y16b{bottom:569.597067pt;}
.y40{bottom:569.981200pt;}
.y6d{bottom:570.101200pt;}
.yb3{bottom:570.114533pt;}
.y10{bottom:570.839600pt;}
.yf0{bottom:572.367867pt;}
.y1a3{bottom:577.725067pt;}
.y16a{bottom:582.930400pt;}
.yf{bottom:584.172933pt;}
.ye3{bottom:585.809867pt;}
.y3f{bottom:585.981200pt;}
.y6c{bottom:586.101200pt;}
.yb2{bottom:586.114533pt;}
.yef{bottom:588.367867pt;}
.y1a2{bottom:591.058400pt;}
.y169{bottom:596.263733pt;}
.ye{bottom:597.506267pt;}
.y3e{bottom:601.981200pt;}
.y6b{bottom:602.101200pt;}
.yb1{bottom:602.114533pt;}
.yee{bottom:604.367867pt;}
.y1a1{bottom:604.391733pt;}
.y168{bottom:609.597067pt;}
.yd{bottom:610.839600pt;}
.y1a0{bottom:617.725067pt;}
.y3d{bottom:617.981200pt;}
.y6a{bottom:618.101200pt;}
.yb0{bottom:618.114533pt;}
.yed{bottom:620.367867pt;}
.y167{bottom:622.930400pt;}
.y115{bottom:630.916400pt;}
.y19f{bottom:631.058400pt;}
.ydd{bottom:631.098267pt;}
.y3c{bottom:633.981200pt;}
.y69{bottom:634.101200pt;}
.yaf{bottom:634.114533pt;}
.y166{bottom:636.263733pt;}
.yec{bottom:636.367867pt;}
.ye0{bottom:638.650267pt;}
.y19e{bottom:644.391733pt;}
.y165{bottom:649.597067pt;}
.y3b{bottom:649.981200pt;}
.y68{bottom:650.101200pt;}
.yae{bottom:650.114533pt;}
.y129{bottom:650.234533pt;}
.yeb{bottom:652.367867pt;}
.yc{bottom:654.167600pt;}
.y19d{bottom:657.725067pt;}
.y164{bottom:662.930400pt;}
.y3a{bottom:665.981200pt;}
.y67{bottom:666.101200pt;}
.yad{bottom:666.114533pt;}
.y128{bottom:666.234533pt;}
.yb{bottom:666.936000pt;}
.yea{bottom:668.367867pt;}
.y19c{bottom:671.058400pt;}
.y163{bottom:676.263733pt;}
.y39{bottom:681.981200pt;}
.y66{bottom:682.101200pt;}
.yac{bottom:682.114533pt;}
.y19b{bottom:684.391733pt;}
.y162{bottom:689.597067pt;}
.ya{bottom:691.106267pt;}
.yd7{bottom:696.851467pt;}
.y19a{bottom:697.725067pt;}
.y38{bottom:697.981200pt;}
.y65{bottom:698.101200pt;}
.yab{bottom:698.114533pt;}
.ye9{bottom:698.234533pt;}
.y140{bottom:700.641600pt;}
.y120{bottom:700.643600pt;}
.y145{bottom:701.398933pt;}
.y161{bottom:702.930400pt;}
.yd8{bottom:705.918133pt;}
.yd6{bottom:706.302133pt;}
.y148{bottom:710.102933pt;}
.y199{bottom:711.058400pt;}
.y125{bottom:711.982267pt;}
.y37{bottom:713.981200pt;}
.y64{bottom:714.101200pt;}
.yaa{bottom:714.114533pt;}
.ye8{bottom:714.234533pt;}
.y160{bottom:716.263733pt;}
.y9{bottom:721.772933pt;}
.y198{bottom:724.391733pt;}
.y15f{bottom:729.597067pt;}
.y63{bottom:730.101200pt;}
.ya9{bottom:730.114533pt;}
.y197{bottom:737.725067pt;}
.y8{bottom:740.100000pt;}
.y15e{bottom:742.930400pt;}
.y36{bottom:745.981200pt;}
.y62{bottom:746.101200pt;}
.ya8{bottom:746.114533pt;}
.y196{bottom:751.058400pt;}
.y7{bottom:751.106267pt;}
.y11a{bottom:755.279067pt;}
.y15d{bottom:756.263733pt;}
.ye7{bottom:761.809867pt;}
.y61{bottom:762.101200pt;}
.ya7{bottom:762.114533pt;}
.y195{bottom:764.391733pt;}
.y6{bottom:769.433333pt;}
.y15c{bottom:769.597067pt;}
.y194{bottom:777.725067pt;}
.y60{bottom:778.101200pt;}
.ya6{bottom:778.114533pt;}
.y15b{bottom:782.930400pt;}
.y5{bottom:783.004267pt;}
.y114{bottom:790.415067pt;}
.y193{bottom:791.058400pt;}
.y35{bottom:794.101200pt;}
.ya5{bottom:794.114533pt;}
.y15a{bottom:796.263733pt;}
.y192{bottom:804.391733pt;}
.y4{bottom:807.350400pt;}
.y34{bottom:810.101200pt;}
.ya4{bottom:810.114533pt;}
.y191{bottom:817.725067pt;}
.y159{bottom:825.984533pt;}
.y33{bottom:826.101200pt;}
.ya3{bottom:826.114533pt;}
.y190{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.ye6{bottom:841.809867pt;}
.y32{bottom:842.101200pt;}
.ya2{bottom:842.114533pt;}
.y113{bottom:844.271067pt;}
.y18f{bottom:844.391733pt;}
.y18e{bottom:857.725067pt;}
.ye2{bottom:857.809867pt;}
.y31{bottom:858.101200pt;}
.ya1{bottom:858.114533pt;}
.y18d{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y144{bottom:871.852267pt;}
.y13f{bottom:871.854267pt;}
.y30{bottom:874.101200pt;}
.y158{bottom:874.104533pt;}
.ya0{bottom:874.114533pt;}
.y147{bottom:874.508267pt;}
.yd5{bottom:877.523467pt;}
.y11f{bottom:883.192933pt;}
.y18c{bottom:884.391733pt;}
.ye1{bottom:886.586267pt;}
.ydc{bottom:886.594400pt;}
.y2f{bottom:890.101200pt;}
.y157{bottom:890.104533pt;}
.y9f{bottom:890.114533pt;}
.y18b{bottom:897.725067pt;}
.y87{bottom:899.822800pt;}
.y11b{bottom:899.844400pt;}
.y2e{bottom:906.101200pt;}
.y156{bottom:906.104533pt;}
.y9e{bottom:906.114533pt;}
.y18a{bottom:911.058400pt;}
.y2d{bottom:922.101200pt;}
.y155{bottom:922.104533pt;}
.y9d{bottom:922.114533pt;}
.y189{bottom:924.391733pt;}
.y2a{bottom:951.795067pt;}
.y86{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.216146pt;}
.h9{height:31.064700pt;}
.h8{height:31.083333pt;}
.h11{height:31.094033pt;}
.h7{height:31.104167pt;}
.hd{height:33.048177pt;}
.he{height:34.968750pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.hc{height:38.880208pt;}
.hf{height:40.640000pt;}
.h10{height:43.288357pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1c{left:77.351467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x46{left:89.733067pt;}
.xc{left:98.271467pt;}
.x3{left:111.491200pt;}
.x51{left:113.382400pt;}
.x6{left:117.170133pt;}
.x44{left:127.442133pt;}
.xd{left:128.644800pt;}
.x45{left:142.133067pt;}
.x4{left:143.608533pt;}
.x1a{left:148.355333pt;}
.x1d{left:163.418133pt;}
.x47{left:176.826400pt;}
.x1e{left:187.871467pt;}
.x5{left:189.223467pt;}
.x50{left:191.595867pt;}
.x27{left:195.020000pt;}
.x2b{left:196.428000pt;}
.x2d{left:198.622400pt;}
.x4b{left:199.930133pt;}
.x2c{left:211.225200pt;}
.x2e{left:213.532133pt;}
.x26{left:250.582667pt;}
.x38{left:252.464667pt;}
.x22{left:306.522800pt;}
.x3d{left:308.031467pt;}
.x49{left:313.511867pt;}
.x39{left:315.206000pt;}
.x1f{left:318.992133pt;}
.x24{left:320.122800pt;}
.x23{left:326.928133pt;}
.x4a{left:328.815467pt;}
.x3e{left:331.647467pt;}
.xa{left:404.481333pt;}
.xe{left:406.298133pt;}
.x16{left:408.776667pt;}
.x14{left:416.911467pt;}
.x15{left:419.631467pt;}
.x2f{left:425.192667pt;}
.x7{left:427.076800pt;}
.xf{left:436.538133pt;}
.x3b{left:439.558000pt;}
.x13{left:440.591467pt;}
.x21{left:441.829467pt;}
.x4c{left:449.380800pt;}
.x52{left:451.622400pt;}
.x3f{left:454.100800pt;}
.x30{left:455.432667pt;}
.x8{left:457.316800pt;}
.x4d{left:458.458133pt;}
.x40{left:460.148800pt;}
.x12{left:463.564800pt;}
.x41{left:464.682133pt;}
.x42{left:466.378133pt;}
.x11{left:469.644800pt;}
.x17{left:511.184667pt;}
.x10{left:525.938133pt;}
.x33{left:535.465600pt;}
.x35{left:539.874533pt;}
.x34{left:550.607867pt;}
.x19{left:589.770933pt;}
.x3c{left:617.574000pt;}
.x4f{left:618.714133pt;}
.x3a{left:622.107333pt;}
.x2{left:626.078800pt;}
.x20{left:633.072133pt;}
.x29{left:635.340000pt;}
.x28{left:636.470667pt;}
.x48{left:637.449067pt;}
.x25{left:638.746800pt;}
.x43{left:641.375467pt;}
.x18{left:643.752133pt;}
.x4e{left:645.167467pt;}
.x2a{left:650.454667pt;}
.x53{left:656.346667pt;}
.x31{left:657.322267pt;}
.x1b{left:662.649733pt;}
.x32{left:673.194667pt;}
.x36{left:682.216000pt;}
.x37{left:696.882133pt;}
}




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