
    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_4797c955e2d5e309e6a94404.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_446c8f7554700235e69c8bb0.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_1ee5418553c832d59fee61f8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9d731ce58ba565233d4bfeb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b7a21043174cee25fb428de3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_733c1f83ed099658141cf46b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b411c7bebba7a83ce53faabd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.933594;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_26f7656a766dd3b7c8cf3b82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925293;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_fce1ee61f2d37744c1b3d719.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-28.263000px;}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.730000px;}
.v6{vertical-align:-9.357600px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v7{vertical-align:22.610400px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls9a{letter-spacing:-2.640000px;}
.lse{letter-spacing:-1.899000px;}
.lsd{letter-spacing:-0.780000px;}
.lsf{letter-spacing:-0.495000px;}
.ls36{letter-spacing:-0.300000px;}
.ls9b{letter-spacing:-0.288000px;}
.ls40{letter-spacing:-0.240000px;}
.ls6d{letter-spacing:-0.180000px;}
.ls4d{letter-spacing:-0.120000px;}
.ls35{letter-spacing:-0.060000px;}
.ls9c{letter-spacing:-0.048000px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005076px;}
.ls0{letter-spacing:0.005676px;}
.ls69{letter-spacing:0.007800px;}
.ls6c{letter-spacing:0.008400px;}
.ls5b{letter-spacing:0.044280px;}
.ls8e{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.060000px;}
.ls46{letter-spacing:0.069960px;}
.ls59{letter-spacing:0.096000px;}
.ls2f{letter-spacing:0.120000px;}
.ls6e{letter-spacing:0.139920px;}
.ls85{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.154560px;}
.ls34{letter-spacing:0.180000px;}
.ls83{letter-spacing:0.192000px;}
.ls15{letter-spacing:0.240000px;}
.ls3e{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.300000px;}
.ls62{letter-spacing:0.302880px;}
.ls60{letter-spacing:0.303480px;}
.ls7d{letter-spacing:0.336000px;}
.ls10{letter-spacing:0.360000px;}
.ls81{letter-spacing:0.384000px;}
.ls1e{letter-spacing:0.420000px;}
.ls53{letter-spacing:0.425760px;}
.ls8b{letter-spacing:0.432000px;}
.ls64{letter-spacing:0.464760px;}
.ls63{letter-spacing:0.465480px;}
.ls66{letter-spacing:0.470400px;}
.ls9{letter-spacing:0.480000px;}
.ls72{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.540000px;}
.ls4e{letter-spacing:0.559680px;}
.ls82{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.600000px;}
.ls8d{letter-spacing:0.624000px;}
.ls4c{letter-spacing:0.637200px;}
.ls5d{letter-spacing:0.657600px;}
.ls7{letter-spacing:0.660000px;}
.ls79{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.739800px;}
.ls93{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.811200px;}
.ls7a{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.840000px;}
.ls98{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.900000px;}
.ls55{letter-spacing:0.903000px;}
.ls94{letter-spacing:0.912000px;}
.ls33{letter-spacing:0.960000px;}
.ls8c{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.ls86{letter-spacing:1.056000px;}
.ls4b{letter-spacing:1.073400px;}
.ls1c{letter-spacing:1.080000px;}
.ls5c{letter-spacing:1.086000px;}
.ls7e{letter-spacing:1.104000px;}
.ls31{letter-spacing:1.140000px;}
.ls8a{letter-spacing:1.152000px;}
.ls22{letter-spacing:1.200000px;}
.ls4f{letter-spacing:1.224300px;}
.ls87{letter-spacing:1.248000px;}
.ls2c{letter-spacing:1.260000px;}
.ls7c{letter-spacing:1.296000px;}
.ls51{letter-spacing:1.296480px;}
.ls12{letter-spacing:1.320000px;}
.ls97{letter-spacing:1.344000px;}
.ls3{letter-spacing:1.380000px;}
.ls4a{letter-spacing:1.389600px;}
.ls7f{letter-spacing:1.392000px;}
.ls3a{letter-spacing:1.440000px;}
.ls90{letter-spacing:1.488000px;}
.ls2a{letter-spacing:1.500000px;}
.ls54{letter-spacing:1.511400px;}
.ls23{letter-spacing:1.560000px;}
.ls41{letter-spacing:1.617000px;}
.ls25{letter-spacing:1.620000px;}
.ls7b{letter-spacing:1.632000px;}
.ls1d{letter-spacing:1.680000px;}
.ls47{letter-spacing:1.707480px;}
.ls56{letter-spacing:1.740000px;}
.ls1f{letter-spacing:1.800000px;}
.ls14{letter-spacing:1.860000px;}
.ls2e{letter-spacing:1.920000px;}
.ls5e{letter-spacing:1.980000px;}
.ls84{letter-spacing:2.016000px;}
.ls19{letter-spacing:2.040000px;}
.ls80{letter-spacing:2.064000px;}
.ls3d{letter-spacing:2.100000px;}
.ls99{letter-spacing:2.112000px;}
.ls58{letter-spacing:2.153760px;}
.ls2b{letter-spacing:2.160000px;}
.ls8f{letter-spacing:2.208000px;}
.ls20{letter-spacing:2.220000px;}
.ls89{letter-spacing:2.256000px;}
.ls43{letter-spacing:2.280000px;}
.ls28{letter-spacing:2.340000px;}
.ls92{letter-spacing:2.352000px;}
.ls49{letter-spacing:2.400000px;}
.ls26{letter-spacing:2.460000px;}
.ls88{letter-spacing:2.496000px;}
.ls32{letter-spacing:2.520000px;}
.ls37{letter-spacing:2.580000px;}
.ls6f{letter-spacing:2.640000px;}
.ls38{letter-spacing:2.700000px;}
.lsa{letter-spacing:2.760000px;}
.ls45{letter-spacing:2.820000px;}
.ls95{letter-spacing:2.832000px;}
.ls3b{letter-spacing:2.880000px;}
.ls44{letter-spacing:2.940000px;}
.ls71{letter-spacing:3.000000px;}
.ls5{letter-spacing:3.060000px;}
.ls73{letter-spacing:3.120000px;}
.ls76{letter-spacing:3.180000px;}
.ls75{letter-spacing:3.240000px;}
.lsb{letter-spacing:3.300000px;}
.ls1a{letter-spacing:3.360000px;}
.ls77{letter-spacing:3.420000px;}
.ls39{letter-spacing:3.480000px;}
.ls50{letter-spacing:3.540000px;}
.ls24{letter-spacing:3.600000px;}
.ls2d{letter-spacing:3.660000px;}
.ls57{letter-spacing:3.720000px;}
.ls29{letter-spacing:3.780000px;}
.ls8{letter-spacing:3.840000px;}
.ls30{letter-spacing:4.080000px;}
.ls91{letter-spacing:4.128000px;}
.ls42{letter-spacing:4.140000px;}
.ls96{letter-spacing:4.176000px;}
.ls3c{letter-spacing:4.200000px;}
.ls5a{letter-spacing:4.440000px;}
.ls3f{letter-spacing:4.560000px;}
.ls74{letter-spacing:4.980000px;}
.ls70{letter-spacing:5.280000px;}
.ls61{letter-spacing:5.460000px;}
.ls1b{letter-spacing:5.760000px;}
.ls78{letter-spacing:6.240000px;}
.ls5f{letter-spacing:10.560000px;}
.ls67{letter-spacing:230.384904px;}
.ls6b{letter-spacing:256.707504px;}
.ls68{letter-spacing:256.708104px;}
.ls6a{letter-spacing:297.277248px;}
.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;}
}
.ws29{word-spacing:-18.840000px;}
.ws43{word-spacing:-17.940000px;}
.ws3d{word-spacing:-17.880000px;}
.ws67{word-spacing:-17.760000px;}
.ws77{word-spacing:-17.640000px;}
.ws5b{word-spacing:-17.220000px;}
.ws68{word-spacing:-17.160000px;}
.ws8c{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws5c{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.500000px;}
.ws7d{word-spacing:-16.440000px;}
.ws7a{word-spacing:-16.200000px;}
.ws5d{word-spacing:-16.140000px;}
.ws3c{word-spacing:-16.080000px;}
.ws7c{word-spacing:-16.020000px;}
.ws14{word-spacing:-15.900000px;}
.wsf{word-spacing:-15.780000px;}
.ws3e{word-spacing:-15.660000px;}
.ws10{word-spacing:-15.540000px;}
.ws3b{word-spacing:-15.480000px;}
.ws12{word-spacing:-15.420000px;}
.wse{word-spacing:-15.360000px;}
.ws11{word-spacing:-15.300000px;}
.ws6a{word-spacing:-15.240000px;}
.ws2a{word-spacing:-15.180000px;}
.ws7b{word-spacing:-15.120000px;}
.ws5a{word-spacing:-15.060000px;}
.ws3f{word-spacing:-15.000000px;}
.ws45{word-spacing:-14.940000px;}
.ws9a{word-spacing:-14.496000px;}
.wsa0{word-spacing:-14.112000px;}
.ws4{word-spacing:-13.344000px;}
.wsa2{word-spacing:-13.200000px;}
.ws9d{word-spacing:-12.720000px;}
.wsa1{word-spacing:-12.624000px;}
.ws9e{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.510000px;}
.ws9c{word-spacing:-12.432000px;}
.ws99{word-spacing:-12.240000px;}
.ws9f{word-spacing:-12.192000px;}
.ws6c{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws41{word-spacing:-9.969300px;}
.ws9b{word-spacing:-9.360000px;}
.ws40{word-spacing:-9.304680px;}
.ws69{word-spacing:-8.884920px;}
.ws42{word-spacing:-8.814960px;}
.ws44{word-spacing:-8.745000px;}
.ws1{word-spacing:-7.293330px;}
.ws75{word-spacing:-5.280000px;}
.ws33{word-spacing:-4.560000px;}
.ws4a{word-spacing:-4.200000px;}
.ws20{word-spacing:-3.780000px;}
.ws21{word-spacing:-3.660000px;}
.ws8e{word-spacing:-2.940000px;}
.ws6{word-spacing:-2.886000px;}
.ws50{word-spacing:-2.880000px;}
.ws47{word-spacing:-2.820000px;}
.ws49{word-spacing:-2.760000px;}
.ws34{word-spacing:-2.700000px;}
.wsa6{word-spacing:-2.640000px;}
.ws51{word-spacing:-2.580000px;}
.wsa8{word-spacing:-2.496000px;}
.wsb0{word-spacing:-2.400000px;}
.ws4d{word-spacing:-2.280000px;}
.wsa9{word-spacing:-2.256000px;}
.ws1f{word-spacing:-2.220000px;}
.wsaf{word-spacing:-2.208000px;}
.wsad{word-spacing:-2.160000px;}
.ws98{word-spacing:-2.064000px;}
.ws46{word-spacing:-2.040000px;}
.ws4e{word-spacing:-1.920000px;}
.ws95{word-spacing:-1.680000px;}
.ws1a{word-spacing:-1.560000px;}
.ws4b{word-spacing:-1.440000px;}
.ws5f{word-spacing:-1.380000px;}
.ws4f{word-spacing:-1.260000px;}
.wsb9{word-spacing:-1.200000px;}
.wsb4{word-spacing:-1.152000px;}
.ws94{word-spacing:-1.104000px;}
.ws2b{word-spacing:-1.080000px;}
.wsa7{word-spacing:-1.056000px;}
.ws4c{word-spacing:-1.020000px;}
.ws37{word-spacing:-0.960000px;}
.wsb5{word-spacing:-0.912000px;}
.ws81{word-spacing:-0.900000px;}
.ws93{word-spacing:-0.864000px;}
.ws32{word-spacing:-0.840000px;}
.ws62{word-spacing:-0.780000px;}
.ws55{word-spacing:-0.720000px;}
.wsb8{word-spacing:-0.624000px;}
.ws60{word-spacing:-0.600000px;}
.wsa3{word-spacing:-0.576000px;}
.ws76{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.528000px;}
.ws48{word-spacing:-0.480000px;}
.wsac{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.300000px;}
.ws39{word-spacing:-0.288000px;}
.ws57{word-spacing:-0.240000px;}
.wsa4{word-spacing:-0.192000px;}
.ws53{word-spacing:-0.180000px;}
.wsa5{word-spacing:-0.144000px;}
.ws73{word-spacing:-0.120000px;}
.ws97{word-spacing:-0.096000px;}
.ws36{word-spacing:-0.060000px;}
.wsb1{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsb3{word-spacing:0.048000px;}
.ws19{word-spacing:0.060000px;}
.ws52{word-spacing:0.120000px;}
.ws65{word-spacing:0.144000px;}
.ws3a{word-spacing:0.240000px;}
.wsb2{word-spacing:0.288000px;}
.ws18{word-spacing:0.360000px;}
.ws16{word-spacing:0.480000px;}
.ws8d{word-spacing:0.600000px;}
.ws23{word-spacing:0.660000px;}
.ws91{word-spacing:0.720000px;}
.ws59{word-spacing:0.780000px;}
.ws83{word-spacing:0.840000px;}
.ws2f{word-spacing:1.140000px;}
.ws2c{word-spacing:1.200000px;}
.ws8a{word-spacing:1.260000px;}
.wsb7{word-spacing:1.344000px;}
.wsb6{word-spacing:1.392000px;}
.ws63{word-spacing:1.440000px;}
.ws58{word-spacing:1.500000px;}
.ws17{word-spacing:1.560000px;}
.ws1e{word-spacing:1.740000px;}
.ws25{word-spacing:2.160000px;}
.ws82{word-spacing:2.220000px;}
.ws96{word-spacing:2.256000px;}
.ws24{word-spacing:2.280000px;}
.ws56{word-spacing:2.340000px;}
.ws66{word-spacing:2.352000px;}
.ws35{word-spacing:2.400000px;}
.wsab{word-spacing:2.448000px;}
.ws1b{word-spacing:2.460000px;}
.ws22{word-spacing:2.520000px;}
.ws8b{word-spacing:2.580000px;}
.ws92{word-spacing:2.592000px;}
.ws88{word-spacing:2.640000px;}
.ws85{word-spacing:2.760000px;}
.ws30{word-spacing:2.820000px;}
.wsaa{word-spacing:2.832000px;}
.wsc{word-spacing:2.880000px;}
.wsae{word-spacing:3.072000px;}
.ws1d{word-spacing:3.120000px;}
.ws28{word-spacing:3.240000px;}
.ws78{word-spacing:3.264000px;}
.ws80{word-spacing:3.420000px;}
.ws9{word-spacing:3.480000px;}
.ws84{word-spacing:3.660000px;}
.wsb{word-spacing:3.780000px;}
.wsa{word-spacing:3.840000px;}
.ws54{word-spacing:3.900000px;}
.ws64{word-spacing:3.936000px;}
.ws26{word-spacing:3.960000px;}
.ws38{word-spacing:3.984000px;}
.ws7f{word-spacing:4.020000px;}
.ws72{word-spacing:4.080000px;}
.ws86{word-spacing:4.140000px;}
.ws7e{word-spacing:4.320000px;}
.ws89{word-spacing:4.380000px;}
.ws2d{word-spacing:4.440000px;}
.ws2e{word-spacing:4.500000px;}
.wsd{word-spacing:4.560000px;}
.ws87{word-spacing:4.800000px;}
.ws27{word-spacing:4.860000px;}
.ws7{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws74{word-spacing:5.160000px;}
.ws90{word-spacing:5.460000px;}
.ws8f{word-spacing:5.520000px;}
.ws61{word-spacing:6.120000px;}
.ws6d{word-spacing:165.120000px;}
.ws71{word-spacing:165.936000px;}
.ws6e{word-spacing:166.032000px;}
.ws70{word-spacing:169.104000px;}
.ws6b{word-spacing:184.896000px;}
.ws5e{word-spacing:450.912000px;}
.ws6f{word-spacing:963.072000px;}
._d{margin-left:-2898.096000px;}
._1f{margin-left:-2874.288000px;}
._34{margin-left:-17.130000px;}
._6{margin-left:-10.458660px;}
._4{margin-left:-8.243358px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.170000px;}
._7{width:1.020000px;}
._a{width:2.400000px;}
._f{width:4.140000px;}
._8{width:5.160000px;}
._9{width:6.480000px;}
._b{width:7.500000px;}
._c{width:8.883000px;}
._e{width:10.434000px;}
._11{width:89.424000px;}
._10{width:134.016000px;}
._13{width:158.889000px;}
._23{width:181.104000px;}
._30{width:201.936000px;}
._21{width:209.376000px;}
._24{width:210.480000px;}
._32{width:211.488000px;}
._25{width:213.408000px;}
._33{width:218.784000px;}
._2f{width:220.224000px;}
._2d{width:221.622000px;}
._12{width:230.880000px;}
._29{width:234.480000px;}
._2b{width:235.878000px;}
._17{width:238.752000px;}
._14{width:240.672000px;}
._31{width:242.784000px;}
._1b{width:244.656000px;}
._1c{width:252.672000px;}
._18{width:267.360000px;}
._1a{width:269.049000px;}
._16{width:298.992000px;}
._1e{width:310.992000px;}
._15{width:320.304000px;}
._1d{width:344.304000px;}
._19{width:391.632000px;}
._28{width:443.568000px;}
._2c{width:649.344000px;}
._2e{width:652.416000px;}
._27{width:779.952000px;}
._26{width:783.024000px;}
._20{width:804.144000px;}
._22{width:909.744000px;}
._2a{width:985.728000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.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;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y114{bottom:83.635350px;}
.y66{bottom:83.770350px;}
.y7c{bottom:83.912100px;}
.y91{bottom:84.511650px;}
.yef{bottom:85.456500px;}
.y2d{bottom:88.026750px;}
.y134{bottom:89.121900px;}
.yea{bottom:92.969100px;}
.ybc{bottom:92.991150px;}
.y90{bottom:100.255650px;}
.yee{bottom:101.200500px;}
.y113{bottom:101.635350px;}
.y65{bottom:101.770350px;}
.y7b{bottom:101.912100px;}
.y2c{bottom:103.023000px;}
.y133{bottom:104.121900px;}
.ye9{bottom:109.217100px;}
.ybb{bottom:109.239150px;}
.y8f{bottom:115.999650px;}
.yed{bottom:116.944500px;}
.y132{bottom:119.121900px;}
.y112{bottom:119.635350px;}
.y64{bottom:119.770350px;}
.y7a{bottom:119.912100px;}
.y96{bottom:119.920350px;}
.ye8{bottom:125.465100px;}
.yba{bottom:125.487150px;}
.yec{bottom:132.688500px;}
.y131{bottom:134.121900px;}
.y111{bottom:137.635350px;}
.y63{bottom:137.770350px;}
.y79{bottom:137.912100px;}
.y95{bottom:137.920350px;}
.y172{bottom:140.263500px;}
.ye7{bottom:141.713100px;}
.y130{bottom:149.121900px;}
.yb9{bottom:154.491150px;}
.y171{bottom:155.263500px;}
.y110{bottom:155.635350px;}
.y62{bottom:155.770350px;}
.y78{bottom:155.912100px;}
.y94{bottom:155.920350px;}
.ye6{bottom:157.961100px;}
.y12f{bottom:164.121900px;}
.y29{bottom:169.128750px;}
.y170{bottom:170.263500px;}
.yb8{bottom:170.991150px;}
.y10f{bottom:173.635350px;}
.y61{bottom:173.770350px;}
.yaa{bottom:173.912100px;}
.y77{bottom:173.920350px;}
.ye5{bottom:174.209100px;}
.y12e{bottom:179.121900px;}
.y16f{bottom:185.263500px;}
.y28{bottom:187.128750px;}
.ye4{bottom:190.457100px;}
.y10e{bottom:191.635350px;}
.y60{bottom:191.770350px;}
.ya9{bottom:191.912100px;}
.y76{bottom:191.920350px;}
.y12d{bottom:194.121900px;}
.y16e{bottom:200.263500px;}
.yb7{bottom:203.380350px;}
.y27{bottom:205.128750px;}
.ye3{bottom:206.705100px;}
.y12c{bottom:209.121900px;}
.y10d{bottom:209.635350px;}
.y5f{bottom:209.770350px;}
.ya8{bottom:209.912100px;}
.y75{bottom:209.920350px;}
.y16d{bottom:215.263500px;}
.yb6{bottom:222.880350px;}
.y26{bottom:223.128750px;}
.y12b{bottom:224.121900px;}
.y10c{bottom:227.635350px;}
.y5e{bottom:227.770350px;}
.ya7{bottom:227.912100px;}
.y74{bottom:227.920350px;}
.y16c{bottom:230.263500px;}
.ye2{bottom:238.216800px;}
.y12a{bottom:239.121900px;}
.y25{bottom:241.128750px;}
.yb5{bottom:242.380350px;}
.y16b{bottom:245.263500px;}
.y10b{bottom:245.635350px;}
.y5d{bottom:245.770350px;}
.ya6{bottom:245.912100px;}
.y73{bottom:245.920350px;}
.y129{bottom:254.121900px;}
.y24{bottom:259.128750px;}
.y16a{bottom:260.263500px;}
.yb4{bottom:261.880350px;}
.y93{bottom:263.515350px;}
.y10a{bottom:263.635350px;}
.y5c{bottom:263.770350px;}
.ya5{bottom:263.912100px;}
.y72{bottom:263.920350px;}
.ye1{bottom:266.249400px;}
.y128{bottom:269.121900px;}
.y169{bottom:275.263500px;}
.y23{bottom:277.128750px;}
.yb3{bottom:281.380350px;}
.y109{bottom:281.635350px;}
.y5b{bottom:281.770350px;}
.ya4{bottom:281.912100px;}
.y71{bottom:281.920350px;}
.y127{bottom:284.121900px;}
.y168{bottom:290.263500px;}
.ye0{bottom:291.761400px;}
.y2b{bottom:295.128750px;}
.y126{bottom:299.121900px;}
.y108{bottom:299.635350px;}
.y5a{bottom:299.770350px;}
.ya3{bottom:299.912100px;}
.y70{bottom:299.920350px;}
.y167{bottom:305.263500px;}
.ydf{bottom:308.009400px;}
.y22{bottom:312.725850px;}
.y2a{bottom:313.128750px;}
.y125{bottom:314.121900px;}
.y107{bottom:317.635350px;}
.y59{bottom:317.770350px;}
.y6f{bottom:317.920350px;}
.y166{bottom:320.263500px;}
.yde{bottom:324.257400px;}
.yc0{bottom:326.019150px;}
.y124{bottom:329.121900px;}
.y165{bottom:335.263500px;}
.y106{bottom:335.635350px;}
.y58{bottom:335.770350px;}
.y6e{bottom:335.920350px;}
.ydd{bottom:340.505400px;}
.ybf{bottom:341.763150px;}
.y123{bottom:344.121900px;}
.y164{bottom:350.263500px;}
.y105{bottom:353.635350px;}
.y57{bottom:353.770350px;}
.y6d{bottom:353.920350px;}
.ydc{bottom:356.753400px;}
.ybe{bottom:357.507150px;}
.y122{bottom:359.121900px;}
.y163{bottom:365.263500px;}
.ya2{bottom:371.515350px;}
.y104{bottom:371.635350px;}
.y56{bottom:371.770350px;}
.y6c{bottom:371.920350px;}
.ydb{bottom:373.001400px;}
.ybd{bottom:373.251150px;}
.y121{bottom:374.121900px;}
.y162{bottom:380.263500px;}
.y120{bottom:389.121900px;}
.yda{bottom:389.249400px;}
.y103{bottom:389.635350px;}
.y55{bottom:389.770350px;}
.y6b{bottom:389.920350px;}
.y21{bottom:390.964200px;}
.y161{bottom:395.263500px;}
.y11f{bottom:404.121900px;}
.yd9{bottom:405.497400px;}
.y102{bottom:407.635350px;}
.y54{bottom:407.770350px;}
.y6a{bottom:407.920350px;}
.y160{bottom:410.263500px;}
.y20{bottom:418.309200px;}
.y11e{bottom:419.121900px;}
.y15f{bottom:425.263500px;}
.y101{bottom:425.635350px;}
.y53{bottom:425.770350px;}
.y11d{bottom:434.121900px;}
.y1f{bottom:436.309200px;}
.yd8{bottom:437.009100px;}
.y15e{bottom:440.263500px;}
.y100{bottom:443.230350px;}
.y69{bottom:443.515350px;}
.y52{bottom:443.770350px;}
.y11c{bottom:449.121900px;}
.y1e{bottom:454.309200px;}
.y15d{bottom:455.263500px;}
.y51{bottom:461.770350px;}
.y11b{bottom:464.121900px;}
.yd7{bottom:465.019500px;}
.y15c{bottom:470.263500px;}
.y1d{bottom:472.309200px;}
.yff{bottom:479.635350px;}
.y50{bottom:479.770350px;}
.y15b{bottom:485.263500px;}
.yd6{bottom:488.404200px;}
.y1c{bottom:490.309200px;}
.y11a{bottom:497.230350px;}
.yfe{bottom:497.635350px;}
.y4f{bottom:497.770350px;}
.y15a{bottom:500.263500px;}
.yd5{bottom:507.904200px;}
.y1b{bottom:508.309200px;}
.y159{bottom:515.263500px;}
.yfd{bottom:515.635350px;}
.y4e{bottom:515.770350px;}
.y1a{bottom:526.309200px;}
.yd4{bottom:527.404200px;}
.y158{bottom:530.263500px;}
.yfc{bottom:533.635350px;}
.y4d{bottom:533.770350px;}
.y19{bottom:544.309200px;}
.y157{bottom:545.263500px;}
.yd3{bottom:546.904200px;}
.yfb{bottom:551.635350px;}
.y4c{bottom:551.770350px;}
.y156{bottom:560.263500px;}
.y18{bottom:562.309200px;}
.yd2{bottom:566.404200px;}
.yfa{bottom:569.635350px;}
.y4b{bottom:569.770350px;}
.y8e{bottom:569.920350px;}
.y155{bottom:575.263500px;}
.y17{bottom:580.309200px;}
.yd1{bottom:585.904200px;}
.ya1{bottom:587.365350px;}
.yf9{bottom:587.635350px;}
.y4a{bottom:587.770350px;}
.y8d{bottom:587.920350px;}
.y154{bottom:590.263500px;}
.y16{bottom:598.309200px;}
.y153{bottom:605.263500px;}
.yd0{bottom:605.404200px;}
.yf8{bottom:605.635350px;}
.y49{bottom:605.770350px;}
.y8c{bottom:605.920350px;}
.y15{bottom:616.309200px;}
.y152{bottom:620.263500px;}
.ya0{bottom:623.230350px;}
.y119{bottom:623.365350px;}
.yf7{bottom:623.635350px;}
.y48{bottom:623.770350px;}
.y8b{bottom:623.920350px;}
.ycf{bottom:624.910350px;}
.y14{bottom:634.309200px;}
.y151{bottom:635.263500px;}
.yf6{bottom:641.635350px;}
.y47{bottom:641.770350px;}
.y8a{bottom:641.920350px;}
.y150{bottom:650.263500px;}
.y13{bottom:652.309200px;}
.y118{bottom:659.365350px;}
.yf5{bottom:659.635350px;}
.y46{bottom:659.770350px;}
.y89{bottom:659.920350px;}
.y14f{bottom:665.263500px;}
.y12{bottom:670.309200px;}
.ycc{bottom:677.635350px;}
.y45{bottom:677.770350px;}
.y88{bottom:677.920350px;}
.y14e{bottom:680.263500px;}
.y11{bottom:688.309200px;}
.y14d{bottom:695.263500px;}
.ycb{bottom:695.635350px;}
.y44{bottom:695.770350px;}
.y87{bottom:695.920350px;}
.y10{bottom:706.309200px;}
.y14c{bottom:710.263500px;}
.yca{bottom:713.635350px;}
.y43{bottom:713.770350px;}
.y86{bottom:713.920350px;}
.y14b{bottom:725.263500px;}
.y117{bottom:731.365350px;}
.yc9{bottom:731.635350px;}
.y42{bottom:731.770350px;}
.y85{bottom:731.920350px;}
.y14a{bottom:740.263500px;}
.yc8{bottom:749.635350px;}
.y41{bottom:749.770350px;}
.yb2{bottom:749.912100px;}
.y84{bottom:749.920350px;}
.yf{bottom:751.467300px;}
.y149{bottom:755.263500px;}
.ye{bottom:763.918050px;}
.yc7{bottom:767.635350px;}
.y40{bottom:767.770350px;}
.y83{bottom:767.920350px;}
.y148{bottom:770.263500px;}
.y147{bottom:785.263500px;}
.y68{bottom:785.365350px;}
.yc6{bottom:785.635350px;}
.y3f{bottom:785.770350px;}
.y82{bottom:785.920350px;}
.yd{bottom:795.633600px;}
.y146{bottom:800.263500px;}
.yc5{bottom:803.635350px;}
.y3e{bottom:803.770350px;}
.y81{bottom:803.920350px;}
.yc{bottom:814.558950px;}
.y145{bottom:815.263500px;}
.y67{bottom:821.230350px;}
.yc4{bottom:821.635350px;}
.y3d{bottom:821.770350px;}
.y80{bottom:821.920350px;}
.yb{bottom:822.633600px;}
.y144{bottom:830.263500px;}
.y116{bottom:839.365350px;}
.yc3{bottom:839.635350px;}
.y3c{bottom:839.770350px;}
.y7f{bottom:839.920350px;}
.ya{bottom:841.558950px;}
.y143{bottom:845.263500px;}
.y9{bottom:849.633600px;}
.yf4{bottom:857.635350px;}
.y3b{bottom:857.770350px;}
.yb1{bottom:857.920350px;}
.y142{bottom:860.263500px;}
.y8{bottom:868.558950px;}
.yc2{bottom:875.230350px;}
.y141{bottom:875.263500px;}
.y7e{bottom:875.515350px;}
.yf3{bottom:875.635350px;}
.y3a{bottom:875.770350px;}
.yb0{bottom:875.920350px;}
.y7{bottom:876.633600px;}
.y140{bottom:890.263500px;}
.yf2{bottom:893.635350px;}
.y39{bottom:893.770350px;}
.y9f{bottom:893.777100px;}
.yaf{bottom:893.920350px;}
.y6{bottom:895.558950px;}
.y13f{bottom:905.263500px;}
.y38{bottom:911.770350px;}
.y9e{bottom:911.777100px;}
.yae{bottom:911.920350px;}
.y13e{bottom:920.263500px;}
.y5{bottom:924.280950px;}
.yf1{bottom:929.230350px;}
.y37{bottom:929.770350px;}
.y9d{bottom:929.777100px;}
.yad{bottom:929.920350px;}
.y13d{bottom:935.263500px;}
.y36{bottom:947.770350px;}
.y9c{bottom:947.777100px;}
.yac{bottom:947.920350px;}
.y13c{bottom:950.263500px;}
.y13b{bottom:965.263500px;}
.y115{bottom:965.365350px;}
.y35{bottom:965.770350px;}
.y9b{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y13a{bottom:980.263500px;}
.yab{bottom:983.515350px;}
.y34{bottom:983.770350px;}
.y9a{bottom:983.777100px;}
.y139{bottom:995.263500px;}
.y33{bottom:1001.770350px;}
.y99{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.y138{bottom:1010.263500px;}
.yce{bottom:1019.763600px;}
.y32{bottom:1019.770350px;}
.y98{bottom:1019.777100px;}
.y137{bottom:1025.263500px;}
.ycd{bottom:1037.763600px;}
.y31{bottom:1037.770350px;}
.y97{bottom:1037.777100px;}
.y136{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y135{bottom:1132.413900px;}
.y7d{bottom:1132.418700px;}
.y92{bottom:1132.421700px;}
.y173{bottom:1132.423500px;}
.yf0{bottom:1132.432500px;}
.yc1{bottom:1132.443150px;}
.yeb{bottom:1132.445100px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.h11{height:34.453125px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h17{height:42.040697px;}
.h18{height:42.041297px;}
.hd{height:43.066406px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.hc{height:43.717434px;}
.ha{height:43.740234px;}
.h19{height:44.686406px;}
.h14{height:52.550871px;}
.h16{height:52.551471px;}
.h15{height:52.577871px;}
.h13{height:53.337715px;}
.h12{height:53.370715px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1c{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x20{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.570400px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.x1b{left:198.877050px;}
.x1d{left:211.390350px;}
.x5{left:212.876400px;}
.x17{left:441.021300px;}
.xa{left:455.041500px;}
.xd{left:457.130400px;}
.x12{left:478.345350px;}
.x7{left:480.471000px;}
.x21{left:482.579250px;}
.xf{left:491.150400px;}
.x1f{left:503.858400px;}
.x13{left:512.365350px;}
.x8{left:514.491000px;}
.xe{left:525.320400px;}
.x18{left:550.725300px;}
.x19{left:563.745300px;}
.x15{left:591.655950px;}
.x1e{left:596.095350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x1a{left:700.761300px;}
.x22{left:721.702800px;}
.x10{left:728.391600px;}
.x14{left:749.651400px;}
@media print{
.v5{vertical-align:-25.122667pt;}
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.426667pt;}
.v6{vertical-align:-8.317867pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v7{vertical-align:20.098133pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls9a{letter-spacing:-2.346667pt;}
.lse{letter-spacing:-1.688000pt;}
.lsd{letter-spacing:-0.693333pt;}
.lsf{letter-spacing:-0.440000pt;}
.ls36{letter-spacing:-0.266667pt;}
.ls9b{letter-spacing:-0.256000pt;}
.ls40{letter-spacing:-0.213333pt;}
.ls6d{letter-spacing:-0.160000pt;}
.ls4d{letter-spacing:-0.106667pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls9c{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.004512pt;}
.ls0{letter-spacing:0.005045pt;}
.ls69{letter-spacing:0.006933pt;}
.ls6c{letter-spacing:0.007467pt;}
.ls5b{letter-spacing:0.039360pt;}
.ls8e{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.053333pt;}
.ls46{letter-spacing:0.062187pt;}
.ls59{letter-spacing:0.085333pt;}
.ls2f{letter-spacing:0.106667pt;}
.ls6e{letter-spacing:0.124373pt;}
.ls85{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.137387pt;}
.ls34{letter-spacing:0.160000pt;}
.ls83{letter-spacing:0.170667pt;}
.ls15{letter-spacing:0.213333pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls62{letter-spacing:0.269227pt;}
.ls60{letter-spacing:0.269760pt;}
.ls7d{letter-spacing:0.298667pt;}
.ls10{letter-spacing:0.320000pt;}
.ls81{letter-spacing:0.341333pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls53{letter-spacing:0.378453pt;}
.ls8b{letter-spacing:0.384000pt;}
.ls64{letter-spacing:0.413120pt;}
.ls63{letter-spacing:0.413760pt;}
.ls66{letter-spacing:0.418133pt;}
.ls9{letter-spacing:0.426667pt;}
.ls72{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.480000pt;}
.ls4e{letter-spacing:0.497493pt;}
.ls82{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls8d{letter-spacing:0.554667pt;}
.ls4c{letter-spacing:0.566400pt;}
.ls5d{letter-spacing:0.584533pt;}
.ls7{letter-spacing:0.586667pt;}
.ls79{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.657600pt;}
.ls93{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.721067pt;}
.ls7a{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.746667pt;}
.ls98{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls55{letter-spacing:0.802667pt;}
.ls94{letter-spacing:0.810667pt;}
.ls33{letter-spacing:0.853333pt;}
.ls8c{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls86{letter-spacing:0.938667pt;}
.ls4b{letter-spacing:0.954133pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls5c{letter-spacing:0.965333pt;}
.ls7e{letter-spacing:0.981333pt;}
.ls31{letter-spacing:1.013333pt;}
.ls8a{letter-spacing:1.024000pt;}
.ls22{letter-spacing:1.066667pt;}
.ls4f{letter-spacing:1.088267pt;}
.ls87{letter-spacing:1.109333pt;}
.ls2c{letter-spacing:1.120000pt;}
.ls7c{letter-spacing:1.152000pt;}
.ls51{letter-spacing:1.152427pt;}
.ls12{letter-spacing:1.173333pt;}
.ls97{letter-spacing:1.194667pt;}
.ls3{letter-spacing:1.226667pt;}
.ls4a{letter-spacing:1.235200pt;}
.ls7f{letter-spacing:1.237333pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls90{letter-spacing:1.322667pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls54{letter-spacing:1.343467pt;}
.ls23{letter-spacing:1.386667pt;}
.ls41{letter-spacing:1.437333pt;}
.ls25{letter-spacing:1.440000pt;}
.ls7b{letter-spacing:1.450667pt;}
.ls1d{letter-spacing:1.493333pt;}
.ls47{letter-spacing:1.517760pt;}
.ls56{letter-spacing:1.546667pt;}
.ls1f{letter-spacing:1.600000pt;}
.ls14{letter-spacing:1.653333pt;}
.ls2e{letter-spacing:1.706667pt;}
.ls5e{letter-spacing:1.760000pt;}
.ls84{letter-spacing:1.792000pt;}
.ls19{letter-spacing:1.813333pt;}
.ls80{letter-spacing:1.834667pt;}
.ls3d{letter-spacing:1.866667pt;}
.ls99{letter-spacing:1.877333pt;}
.ls58{letter-spacing:1.914453pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls8f{letter-spacing:1.962667pt;}
.ls20{letter-spacing:1.973333pt;}
.ls89{letter-spacing:2.005333pt;}
.ls43{letter-spacing:2.026667pt;}
.ls28{letter-spacing:2.080000pt;}
.ls92{letter-spacing:2.090667pt;}
.ls49{letter-spacing:2.133333pt;}
.ls26{letter-spacing:2.186667pt;}
.ls88{letter-spacing:2.218667pt;}
.ls32{letter-spacing:2.240000pt;}
.ls37{letter-spacing:2.293333pt;}
.ls6f{letter-spacing:2.346667pt;}
.ls38{letter-spacing:2.400000pt;}
.lsa{letter-spacing:2.453333pt;}
.ls45{letter-spacing:2.506667pt;}
.ls95{letter-spacing:2.517333pt;}
.ls3b{letter-spacing:2.560000pt;}
.ls44{letter-spacing:2.613333pt;}
.ls71{letter-spacing:2.666667pt;}
.ls5{letter-spacing:2.720000pt;}
.ls73{letter-spacing:2.773333pt;}
.ls76{letter-spacing:2.826667pt;}
.ls75{letter-spacing:2.880000pt;}
.lsb{letter-spacing:2.933333pt;}
.ls1a{letter-spacing:2.986667pt;}
.ls77{letter-spacing:3.040000pt;}
.ls39{letter-spacing:3.093333pt;}
.ls50{letter-spacing:3.146667pt;}
.ls24{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:3.253333pt;}
.ls57{letter-spacing:3.306667pt;}
.ls29{letter-spacing:3.360000pt;}
.ls8{letter-spacing:3.413333pt;}
.ls30{letter-spacing:3.626667pt;}
.ls91{letter-spacing:3.669333pt;}
.ls42{letter-spacing:3.680000pt;}
.ls96{letter-spacing:3.712000pt;}
.ls3c{letter-spacing:3.733333pt;}
.ls5a{letter-spacing:3.946667pt;}
.ls3f{letter-spacing:4.053333pt;}
.ls74{letter-spacing:4.426667pt;}
.ls70{letter-spacing:4.693333pt;}
.ls61{letter-spacing:4.853333pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls78{letter-spacing:5.546667pt;}
.ls5f{letter-spacing:9.386667pt;}
.ls67{letter-spacing:204.786581pt;}
.ls6b{letter-spacing:228.184448pt;}
.ls68{letter-spacing:228.184981pt;}
.ls6a{letter-spacing:264.246443pt;}
.ws29{word-spacing:-16.746667pt;}
.ws43{word-spacing:-15.946667pt;}
.ws3d{word-spacing:-15.893333pt;}
.ws67{word-spacing:-15.786667pt;}
.ws77{word-spacing:-15.680000pt;}
.ws5b{word-spacing:-15.306667pt;}
.ws68{word-spacing:-15.253333pt;}
.ws8c{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws5c{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.666667pt;}
.ws7d{word-spacing:-14.613333pt;}
.ws7a{word-spacing:-14.400000pt;}
.ws5d{word-spacing:-14.346667pt;}
.ws3c{word-spacing:-14.293333pt;}
.ws7c{word-spacing:-14.240000pt;}
.ws14{word-spacing:-14.133333pt;}
.wsf{word-spacing:-14.026667pt;}
.ws3e{word-spacing:-13.920000pt;}
.ws10{word-spacing:-13.813333pt;}
.ws3b{word-spacing:-13.760000pt;}
.ws12{word-spacing:-13.706667pt;}
.wse{word-spacing:-13.653333pt;}
.ws11{word-spacing:-13.600000pt;}
.ws6a{word-spacing:-13.546667pt;}
.ws2a{word-spacing:-13.493333pt;}
.ws7b{word-spacing:-13.440000pt;}
.ws5a{word-spacing:-13.386667pt;}
.ws3f{word-spacing:-13.333333pt;}
.ws45{word-spacing:-13.280000pt;}
.ws9a{word-spacing:-12.885333pt;}
.wsa0{word-spacing:-12.544000pt;}
.ws4{word-spacing:-11.861333pt;}
.wsa2{word-spacing:-11.733333pt;}
.ws9d{word-spacing:-11.306667pt;}
.wsa1{word-spacing:-11.221333pt;}
.ws9e{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.120000pt;}
.ws9c{word-spacing:-11.050667pt;}
.ws99{word-spacing:-10.880000pt;}
.ws9f{word-spacing:-10.837333pt;}
.ws6c{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws41{word-spacing:-8.861600pt;}
.ws9b{word-spacing:-8.320000pt;}
.ws40{word-spacing:-8.270827pt;}
.ws69{word-spacing:-7.897707pt;}
.ws42{word-spacing:-7.835520pt;}
.ws44{word-spacing:-7.773333pt;}
.ws1{word-spacing:-6.482960pt;}
.ws75{word-spacing:-4.693333pt;}
.ws33{word-spacing:-4.053333pt;}
.ws4a{word-spacing:-3.733333pt;}
.ws20{word-spacing:-3.360000pt;}
.ws21{word-spacing:-3.253333pt;}
.ws8e{word-spacing:-2.613333pt;}
.ws6{word-spacing:-2.565333pt;}
.ws50{word-spacing:-2.560000pt;}
.ws47{word-spacing:-2.506667pt;}
.ws49{word-spacing:-2.453333pt;}
.ws34{word-spacing:-2.400000pt;}
.wsa6{word-spacing:-2.346667pt;}
.ws51{word-spacing:-2.293333pt;}
.wsa8{word-spacing:-2.218667pt;}
.wsb0{word-spacing:-2.133333pt;}
.ws4d{word-spacing:-2.026667pt;}
.wsa9{word-spacing:-2.005333pt;}
.ws1f{word-spacing:-1.973333pt;}
.wsaf{word-spacing:-1.962667pt;}
.wsad{word-spacing:-1.920000pt;}
.ws98{word-spacing:-1.834667pt;}
.ws46{word-spacing:-1.813333pt;}
.ws4e{word-spacing:-1.706667pt;}
.ws95{word-spacing:-1.493333pt;}
.ws1a{word-spacing:-1.386667pt;}
.ws4b{word-spacing:-1.280000pt;}
.ws5f{word-spacing:-1.226667pt;}
.ws4f{word-spacing:-1.120000pt;}
.wsb9{word-spacing:-1.066667pt;}
.wsb4{word-spacing:-1.024000pt;}
.ws94{word-spacing:-0.981333pt;}
.ws2b{word-spacing:-0.960000pt;}
.wsa7{word-spacing:-0.938667pt;}
.ws4c{word-spacing:-0.906667pt;}
.ws37{word-spacing:-0.853333pt;}
.wsb5{word-spacing:-0.810667pt;}
.ws81{word-spacing:-0.800000pt;}
.ws93{word-spacing:-0.768000pt;}
.ws32{word-spacing:-0.746667pt;}
.ws62{word-spacing:-0.693333pt;}
.ws55{word-spacing:-0.640000pt;}
.wsb8{word-spacing:-0.554667pt;}
.ws60{word-spacing:-0.533333pt;}
.wsa3{word-spacing:-0.512000pt;}
.ws76{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.469333pt;}
.ws48{word-spacing:-0.426667pt;}
.wsac{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws39{word-spacing:-0.256000pt;}
.ws57{word-spacing:-0.213333pt;}
.wsa4{word-spacing:-0.170667pt;}
.ws53{word-spacing:-0.160000pt;}
.wsa5{word-spacing:-0.128000pt;}
.ws73{word-spacing:-0.106667pt;}
.ws97{word-spacing:-0.085333pt;}
.ws36{word-spacing:-0.053333pt;}
.wsb1{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.042667pt;}
.ws19{word-spacing:0.053333pt;}
.ws52{word-spacing:0.106667pt;}
.ws65{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.213333pt;}
.wsb2{word-spacing:0.256000pt;}
.ws18{word-spacing:0.320000pt;}
.ws16{word-spacing:0.426667pt;}
.ws8d{word-spacing:0.533333pt;}
.ws23{word-spacing:0.586667pt;}
.ws91{word-spacing:0.640000pt;}
.ws59{word-spacing:0.693333pt;}
.ws83{word-spacing:0.746667pt;}
.ws2f{word-spacing:1.013333pt;}
.ws2c{word-spacing:1.066667pt;}
.ws8a{word-spacing:1.120000pt;}
.wsb7{word-spacing:1.194667pt;}
.wsb6{word-spacing:1.237333pt;}
.ws63{word-spacing:1.280000pt;}
.ws58{word-spacing:1.333333pt;}
.ws17{word-spacing:1.386667pt;}
.ws1e{word-spacing:1.546667pt;}
.ws25{word-spacing:1.920000pt;}
.ws82{word-spacing:1.973333pt;}
.ws96{word-spacing:2.005333pt;}
.ws24{word-spacing:2.026667pt;}
.ws56{word-spacing:2.080000pt;}
.ws66{word-spacing:2.090667pt;}
.ws35{word-spacing:2.133333pt;}
.wsab{word-spacing:2.176000pt;}
.ws1b{word-spacing:2.186667pt;}
.ws22{word-spacing:2.240000pt;}
.ws8b{word-spacing:2.293333pt;}
.ws92{word-spacing:2.304000pt;}
.ws88{word-spacing:2.346667pt;}
.ws85{word-spacing:2.453333pt;}
.ws30{word-spacing:2.506667pt;}
.wsaa{word-spacing:2.517333pt;}
.wsc{word-spacing:2.560000pt;}
.wsae{word-spacing:2.730667pt;}
.ws1d{word-spacing:2.773333pt;}
.ws28{word-spacing:2.880000pt;}
.ws78{word-spacing:2.901333pt;}
.ws80{word-spacing:3.040000pt;}
.ws9{word-spacing:3.093333pt;}
.ws84{word-spacing:3.253333pt;}
.wsb{word-spacing:3.360000pt;}
.wsa{word-spacing:3.413333pt;}
.ws54{word-spacing:3.466667pt;}
.ws64{word-spacing:3.498667pt;}
.ws26{word-spacing:3.520000pt;}
.ws38{word-spacing:3.541333pt;}
.ws7f{word-spacing:3.573333pt;}
.ws72{word-spacing:3.626667pt;}
.ws86{word-spacing:3.680000pt;}
.ws7e{word-spacing:3.840000pt;}
.ws89{word-spacing:3.893333pt;}
.ws2d{word-spacing:3.946667pt;}
.ws2e{word-spacing:4.000000pt;}
.wsd{word-spacing:4.053333pt;}
.ws87{word-spacing:4.266667pt;}
.ws27{word-spacing:4.320000pt;}
.ws7{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws74{word-spacing:4.586667pt;}
.ws90{word-spacing:4.853333pt;}
.ws8f{word-spacing:4.906667pt;}
.ws61{word-spacing:5.440000pt;}
.ws6d{word-spacing:146.773333pt;}
.ws71{word-spacing:147.498667pt;}
.ws6e{word-spacing:147.584000pt;}
.ws70{word-spacing:150.314667pt;}
.ws6b{word-spacing:164.352000pt;}
.ws5e{word-spacing:400.810667pt;}
.ws6f{word-spacing:856.064000pt;}
._d{margin-left:-2576.085333pt;}
._1f{margin-left:-2554.922667pt;}
._34{margin-left:-15.226667pt;}
._6{margin-left:-9.296587pt;}
._4{margin-left:-7.327429pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.040000pt;}
._7{width:0.906667pt;}
._a{width:2.133333pt;}
._f{width:3.680000pt;}
._8{width:4.586667pt;}
._9{width:5.760000pt;}
._b{width:6.666667pt;}
._c{width:7.896000pt;}
._e{width:9.274667pt;}
._11{width:79.488000pt;}
._10{width:119.125333pt;}
._13{width:141.234667pt;}
._23{width:160.981333pt;}
._30{width:179.498667pt;}
._21{width:186.112000pt;}
._24{width:187.093333pt;}
._32{width:187.989333pt;}
._25{width:189.696000pt;}
._33{width:194.474667pt;}
._2f{width:195.754667pt;}
._2d{width:196.997333pt;}
._12{width:205.226667pt;}
._29{width:208.426667pt;}
._2b{width:209.669333pt;}
._17{width:212.224000pt;}
._14{width:213.930667pt;}
._31{width:215.808000pt;}
._1b{width:217.472000pt;}
._1c{width:224.597333pt;}
._18{width:237.653333pt;}
._1a{width:239.154667pt;}
._16{width:265.770667pt;}
._1e{width:276.437333pt;}
._15{width:284.714667pt;}
._1d{width:306.048000pt;}
._19{width:348.117333pt;}
._28{width:394.282667pt;}
._2c{width:577.194667pt;}
._2e{width:579.925333pt;}
._27{width:693.290667pt;}
._26{width:696.021333pt;}
._20{width:714.794667pt;}
._22{width:808.661333pt;}
._2a{width:876.202667pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.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;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y114{bottom:74.342533pt;}
.y66{bottom:74.462533pt;}
.y7c{bottom:74.588533pt;}
.y91{bottom:75.121467pt;}
.yef{bottom:75.961333pt;}
.y2d{bottom:78.246000pt;}
.y134{bottom:79.219467pt;}
.yea{bottom:82.639200pt;}
.ybc{bottom:82.658800pt;}
.y90{bottom:89.116133pt;}
.yee{bottom:89.956000pt;}
.y113{bottom:90.342533pt;}
.y65{bottom:90.462533pt;}
.y7b{bottom:90.588533pt;}
.y2c{bottom:91.576000pt;}
.y133{bottom:92.552800pt;}
.ye9{bottom:97.081867pt;}
.ybb{bottom:97.101467pt;}
.y8f{bottom:103.110800pt;}
.yed{bottom:103.950667pt;}
.y132{bottom:105.886133pt;}
.y112{bottom:106.342533pt;}
.y64{bottom:106.462533pt;}
.y7a{bottom:106.588533pt;}
.y96{bottom:106.595867pt;}
.ye8{bottom:111.524533pt;}
.yba{bottom:111.544133pt;}
.yec{bottom:117.945333pt;}
.y131{bottom:119.219467pt;}
.y111{bottom:122.342533pt;}
.y63{bottom:122.462533pt;}
.y79{bottom:122.588533pt;}
.y95{bottom:122.595867pt;}
.y172{bottom:124.678667pt;}
.ye7{bottom:125.967200pt;}
.y130{bottom:132.552800pt;}
.yb9{bottom:137.325467pt;}
.y171{bottom:138.012000pt;}
.y110{bottom:138.342533pt;}
.y62{bottom:138.462533pt;}
.y78{bottom:138.588533pt;}
.y94{bottom:138.595867pt;}
.ye6{bottom:140.409867pt;}
.y12f{bottom:145.886133pt;}
.y29{bottom:150.336667pt;}
.y170{bottom:151.345333pt;}
.yb8{bottom:151.992133pt;}
.y10f{bottom:154.342533pt;}
.y61{bottom:154.462533pt;}
.yaa{bottom:154.588533pt;}
.y77{bottom:154.595867pt;}
.ye5{bottom:154.852533pt;}
.y12e{bottom:159.219467pt;}
.y16f{bottom:164.678667pt;}
.y28{bottom:166.336667pt;}
.ye4{bottom:169.295200pt;}
.y10e{bottom:170.342533pt;}
.y60{bottom:170.462533pt;}
.ya9{bottom:170.588533pt;}
.y76{bottom:170.595867pt;}
.y12d{bottom:172.552800pt;}
.y16e{bottom:178.012000pt;}
.yb7{bottom:180.782533pt;}
.y27{bottom:182.336667pt;}
.ye3{bottom:183.737867pt;}
.y12c{bottom:185.886133pt;}
.y10d{bottom:186.342533pt;}
.y5f{bottom:186.462533pt;}
.ya8{bottom:186.588533pt;}
.y75{bottom:186.595867pt;}
.y16d{bottom:191.345333pt;}
.yb6{bottom:198.115867pt;}
.y26{bottom:198.336667pt;}
.y12b{bottom:199.219467pt;}
.y10c{bottom:202.342533pt;}
.y5e{bottom:202.462533pt;}
.ya7{bottom:202.588533pt;}
.y74{bottom:202.595867pt;}
.y16c{bottom:204.678667pt;}
.ye2{bottom:211.748267pt;}
.y12a{bottom:212.552800pt;}
.y25{bottom:214.336667pt;}
.yb5{bottom:215.449200pt;}
.y16b{bottom:218.012000pt;}
.y10b{bottom:218.342533pt;}
.y5d{bottom:218.462533pt;}
.ya6{bottom:218.588533pt;}
.y73{bottom:218.595867pt;}
.y129{bottom:225.886133pt;}
.y24{bottom:230.336667pt;}
.y16a{bottom:231.345333pt;}
.yb4{bottom:232.782533pt;}
.y93{bottom:234.235867pt;}
.y10a{bottom:234.342533pt;}
.y5c{bottom:234.462533pt;}
.ya5{bottom:234.588533pt;}
.y72{bottom:234.595867pt;}
.ye1{bottom:236.666133pt;}
.y128{bottom:239.219467pt;}
.y169{bottom:244.678667pt;}
.y23{bottom:246.336667pt;}
.yb3{bottom:250.115867pt;}
.y109{bottom:250.342533pt;}
.y5b{bottom:250.462533pt;}
.ya4{bottom:250.588533pt;}
.y71{bottom:250.595867pt;}
.y127{bottom:252.552800pt;}
.y168{bottom:258.012000pt;}
.ye0{bottom:259.343467pt;}
.y2b{bottom:262.336667pt;}
.y126{bottom:265.886133pt;}
.y108{bottom:266.342533pt;}
.y5a{bottom:266.462533pt;}
.ya3{bottom:266.588533pt;}
.y70{bottom:266.595867pt;}
.y167{bottom:271.345333pt;}
.ydf{bottom:273.786133pt;}
.y22{bottom:277.978533pt;}
.y2a{bottom:278.336667pt;}
.y125{bottom:279.219467pt;}
.y107{bottom:282.342533pt;}
.y59{bottom:282.462533pt;}
.y6f{bottom:282.595867pt;}
.y166{bottom:284.678667pt;}
.yde{bottom:288.228800pt;}
.yc0{bottom:289.794800pt;}
.y124{bottom:292.552800pt;}
.y165{bottom:298.012000pt;}
.y106{bottom:298.342533pt;}
.y58{bottom:298.462533pt;}
.y6e{bottom:298.595867pt;}
.ydd{bottom:302.671467pt;}
.ybf{bottom:303.789467pt;}
.y123{bottom:305.886133pt;}
.y164{bottom:311.345333pt;}
.y105{bottom:314.342533pt;}
.y57{bottom:314.462533pt;}
.y6d{bottom:314.595867pt;}
.ydc{bottom:317.114133pt;}
.ybe{bottom:317.784133pt;}
.y122{bottom:319.219467pt;}
.y163{bottom:324.678667pt;}
.ya2{bottom:330.235867pt;}
.y104{bottom:330.342533pt;}
.y56{bottom:330.462533pt;}
.y6c{bottom:330.595867pt;}
.ydb{bottom:331.556800pt;}
.ybd{bottom:331.778800pt;}
.y121{bottom:332.552800pt;}
.y162{bottom:338.012000pt;}
.y120{bottom:345.886133pt;}
.yda{bottom:345.999467pt;}
.y103{bottom:346.342533pt;}
.y55{bottom:346.462533pt;}
.y6b{bottom:346.595867pt;}
.y21{bottom:347.523733pt;}
.y161{bottom:351.345333pt;}
.y11f{bottom:359.219467pt;}
.yd9{bottom:360.442133pt;}
.y102{bottom:362.342533pt;}
.y54{bottom:362.462533pt;}
.y6a{bottom:362.595867pt;}
.y160{bottom:364.678667pt;}
.y20{bottom:371.830400pt;}
.y11e{bottom:372.552800pt;}
.y15f{bottom:378.012000pt;}
.y101{bottom:378.342533pt;}
.y53{bottom:378.462533pt;}
.y11d{bottom:385.886133pt;}
.y1f{bottom:387.830400pt;}
.yd8{bottom:388.452533pt;}
.y15e{bottom:391.345333pt;}
.y100{bottom:393.982533pt;}
.y69{bottom:394.235867pt;}
.y52{bottom:394.462533pt;}
.y11c{bottom:399.219467pt;}
.y1e{bottom:403.830400pt;}
.y15d{bottom:404.678667pt;}
.y51{bottom:410.462533pt;}
.y11b{bottom:412.552800pt;}
.yd7{bottom:413.350667pt;}
.y15c{bottom:418.012000pt;}
.y1d{bottom:419.830400pt;}
.yff{bottom:426.342533pt;}
.y50{bottom:426.462533pt;}
.y15b{bottom:431.345333pt;}
.yd6{bottom:434.137067pt;}
.y1c{bottom:435.830400pt;}
.y11a{bottom:441.982533pt;}
.yfe{bottom:442.342533pt;}
.y4f{bottom:442.462533pt;}
.y15a{bottom:444.678667pt;}
.yd5{bottom:451.470400pt;}
.y1b{bottom:451.830400pt;}
.y159{bottom:458.012000pt;}
.yfd{bottom:458.342533pt;}
.y4e{bottom:458.462533pt;}
.y1a{bottom:467.830400pt;}
.yd4{bottom:468.803733pt;}
.y158{bottom:471.345333pt;}
.yfc{bottom:474.342533pt;}
.y4d{bottom:474.462533pt;}
.y19{bottom:483.830400pt;}
.y157{bottom:484.678667pt;}
.yd3{bottom:486.137067pt;}
.yfb{bottom:490.342533pt;}
.y4c{bottom:490.462533pt;}
.y156{bottom:498.012000pt;}
.y18{bottom:499.830400pt;}
.yd2{bottom:503.470400pt;}
.yfa{bottom:506.342533pt;}
.y4b{bottom:506.462533pt;}
.y8e{bottom:506.595867pt;}
.y155{bottom:511.345333pt;}
.y17{bottom:515.830400pt;}
.yd1{bottom:520.803733pt;}
.ya1{bottom:522.102533pt;}
.yf9{bottom:522.342533pt;}
.y4a{bottom:522.462533pt;}
.y8d{bottom:522.595867pt;}
.y154{bottom:524.678667pt;}
.y16{bottom:531.830400pt;}
.y153{bottom:538.012000pt;}
.yd0{bottom:538.137067pt;}
.yf8{bottom:538.342533pt;}
.y49{bottom:538.462533pt;}
.y8c{bottom:538.595867pt;}
.y15{bottom:547.830400pt;}
.y152{bottom:551.345333pt;}
.ya0{bottom:553.982533pt;}
.y119{bottom:554.102533pt;}
.yf7{bottom:554.342533pt;}
.y48{bottom:554.462533pt;}
.y8b{bottom:554.595867pt;}
.ycf{bottom:555.475867pt;}
.y14{bottom:563.830400pt;}
.y151{bottom:564.678667pt;}
.yf6{bottom:570.342533pt;}
.y47{bottom:570.462533pt;}
.y8a{bottom:570.595867pt;}
.y150{bottom:578.012000pt;}
.y13{bottom:579.830400pt;}
.y118{bottom:586.102533pt;}
.yf5{bottom:586.342533pt;}
.y46{bottom:586.462533pt;}
.y89{bottom:586.595867pt;}
.y14f{bottom:591.345333pt;}
.y12{bottom:595.830400pt;}
.ycc{bottom:602.342533pt;}
.y45{bottom:602.462533pt;}
.y88{bottom:602.595867pt;}
.y14e{bottom:604.678667pt;}
.y11{bottom:611.830400pt;}
.y14d{bottom:618.012000pt;}
.ycb{bottom:618.342533pt;}
.y44{bottom:618.462533pt;}
.y87{bottom:618.595867pt;}
.y10{bottom:627.830400pt;}
.y14c{bottom:631.345333pt;}
.yca{bottom:634.342533pt;}
.y43{bottom:634.462533pt;}
.y86{bottom:634.595867pt;}
.y14b{bottom:644.678667pt;}
.y117{bottom:650.102533pt;}
.yc9{bottom:650.342533pt;}
.y42{bottom:650.462533pt;}
.y85{bottom:650.595867pt;}
.y14a{bottom:658.012000pt;}
.yc8{bottom:666.342533pt;}
.y41{bottom:666.462533pt;}
.yb2{bottom:666.588533pt;}
.y84{bottom:666.595867pt;}
.yf{bottom:667.970933pt;}
.y149{bottom:671.345333pt;}
.ye{bottom:679.038267pt;}
.yc7{bottom:682.342533pt;}
.y40{bottom:682.462533pt;}
.y83{bottom:682.595867pt;}
.y148{bottom:684.678667pt;}
.y147{bottom:698.012000pt;}
.y68{bottom:698.102533pt;}
.yc6{bottom:698.342533pt;}
.y3f{bottom:698.462533pt;}
.y82{bottom:698.595867pt;}
.yd{bottom:707.229867pt;}
.y146{bottom:711.345333pt;}
.yc5{bottom:714.342533pt;}
.y3e{bottom:714.462533pt;}
.y81{bottom:714.595867pt;}
.yc{bottom:724.052400pt;}
.y145{bottom:724.678667pt;}
.y67{bottom:729.982533pt;}
.yc4{bottom:730.342533pt;}
.y3d{bottom:730.462533pt;}
.y80{bottom:730.595867pt;}
.yb{bottom:731.229867pt;}
.y144{bottom:738.012000pt;}
.y116{bottom:746.102533pt;}
.yc3{bottom:746.342533pt;}
.y3c{bottom:746.462533pt;}
.y7f{bottom:746.595867pt;}
.ya{bottom:748.052400pt;}
.y143{bottom:751.345333pt;}
.y9{bottom:755.229867pt;}
.yf4{bottom:762.342533pt;}
.y3b{bottom:762.462533pt;}
.yb1{bottom:762.595867pt;}
.y142{bottom:764.678667pt;}
.y8{bottom:772.052400pt;}
.yc2{bottom:777.982533pt;}
.y141{bottom:778.012000pt;}
.y7e{bottom:778.235867pt;}
.yf3{bottom:778.342533pt;}
.y3a{bottom:778.462533pt;}
.yb0{bottom:778.595867pt;}
.y7{bottom:779.229867pt;}
.y140{bottom:791.345333pt;}
.yf2{bottom:794.342533pt;}
.y39{bottom:794.462533pt;}
.y9f{bottom:794.468533pt;}
.yaf{bottom:794.595867pt;}
.y6{bottom:796.052400pt;}
.y13f{bottom:804.678667pt;}
.y38{bottom:810.462533pt;}
.y9e{bottom:810.468533pt;}
.yae{bottom:810.595867pt;}
.y13e{bottom:818.012000pt;}
.y5{bottom:821.583067pt;}
.yf1{bottom:825.982533pt;}
.y37{bottom:826.462533pt;}
.y9d{bottom:826.468533pt;}
.yad{bottom:826.595867pt;}
.y13d{bottom:831.345333pt;}
.y36{bottom:842.462533pt;}
.y9c{bottom:842.468533pt;}
.yac{bottom:842.595867pt;}
.y13c{bottom:844.678667pt;}
.y13b{bottom:858.012000pt;}
.y115{bottom:858.102533pt;}
.y35{bottom:858.462533pt;}
.y9b{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y13a{bottom:871.345333pt;}
.yab{bottom:874.235867pt;}
.y34{bottom:874.462533pt;}
.y9a{bottom:874.468533pt;}
.y139{bottom:884.678667pt;}
.y33{bottom:890.462533pt;}
.y99{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.y138{bottom:898.012000pt;}
.yce{bottom:906.456533pt;}
.y32{bottom:906.462533pt;}
.y98{bottom:906.468533pt;}
.y137{bottom:911.345333pt;}
.ycd{bottom:922.456533pt;}
.y31{bottom:922.462533pt;}
.y97{bottom:922.468533pt;}
.y136{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y135{bottom:1006.590133pt;}
.y7d{bottom:1006.594400pt;}
.y92{bottom:1006.597067pt;}
.y173{bottom:1006.598667pt;}
.yf0{bottom:1006.606667pt;}
.yc1{bottom:1006.616133pt;}
.yeb{bottom:1006.617867pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.h11{height:30.625000pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h17{height:37.369508pt;}
.h18{height:37.370042pt;}
.hd{height:38.281250pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.hc{height:38.859942pt;}
.ha{height:38.880208pt;}
.h19{height:39.721250pt;}
.h14{height:46.711885pt;}
.h16{height:46.712419pt;}
.h15{height:46.735885pt;}
.h13{height:47.411302pt;}
.h12{height:47.440635pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1c{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x20{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.284800pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.x1b{left:176.779600pt;}
.x1d{left:187.902533pt;}
.x5{left:189.223467pt;}
.x17{left:392.018933pt;}
.xa{left:404.481333pt;}
.xd{left:406.338133pt;}
.x12{left:425.195867pt;}
.x7{left:427.085333pt;}
.x21{left:428.959333pt;}
.xf{left:436.578133pt;}
.x1f{left:447.874133pt;}
.x13{left:455.435867pt;}
.x8{left:457.325333pt;}
.xe{left:466.951467pt;}
.x18{left:489.533600pt;}
.x19{left:501.106933pt;}
.x15{left:525.916400pt;}
.x1e{left:529.862533pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1a{left:622.898933pt;}
.x22{left:641.513600pt;}
.x10{left:647.459200pt;}
.x14{left:666.356800pt;}
}




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