
    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_cd1b2d6f4289a023155c2c4b.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_a13ed6b8a5891f669a0eccc9.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_97421e75f840f41cb2dfd7f8.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_75d1bed5c3dd80a0fd997843.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_bb5ad83e6385776200329d44.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_55ee6be8be3a70d0be07f4a2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_729e9e93249e77f54b1f3b79.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2cdd162b70ad0bfb24032064.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_991add3d95562bcf02c2b6e3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3d514bc6e7060880a32a7736.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_411270c657238b6682ad98ec.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a33226ad10fb6d6f7789d335.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f1cff70126f612299ef9aaa2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_96f72500eb2f8c963ca389ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2861644e1de15d463e9bd318.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-4.054800px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v3{vertical-align:4.054800px;}
.v5{vertical-align:7.125000px;}
.v4{vertical-align:15.925200px;}
.v1{vertical-align:19.903200px;}
.ls18{letter-spacing:-0.780000px;}
.ls5a{letter-spacing:-0.420000px;}
.ls33{letter-spacing:-0.300000px;}
.ls6d{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.120000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls85{letter-spacing:-0.048000px;}
.ls17{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.000600px;}
.ls49{letter-spacing:0.001200px;}
.ls5b{letter-spacing:0.001800px;}
.ls48{letter-spacing:0.005400px;}
.ls5c{letter-spacing:0.009000px;}
.ls44{letter-spacing:0.027600px;}
.ls4a{letter-spacing:0.033600px;}
.ls4b{letter-spacing:0.036000px;}
.ls61{letter-spacing:0.048000px;}
.ls34{letter-spacing:0.060000px;}
.ls75{letter-spacing:0.096000px;}
.ls1e{letter-spacing:0.120000px;}
.ls5d{letter-spacing:0.120764px;}
.ls6c{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.180000px;}
.ls7f{letter-spacing:0.192000px;}
.ls2{letter-spacing:0.240000px;}
.ls53{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls54{letter-spacing:0.330000px;}
.ls73{letter-spacing:0.336000px;}
.ls2d{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.420000px;}
.ls40{letter-spacing:0.432000px;}
.ls3e{letter-spacing:0.442800px;}
.ls41{letter-spacing:0.459000px;}
.ls52{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.480000px;}
.ls57{letter-spacing:0.504600px;}
.ls42{letter-spacing:0.526200px;}
.ls28{letter-spacing:0.540000px;}
.ls82{letter-spacing:0.576000px;}
.ls22{letter-spacing:0.600000px;}
.ls51{letter-spacing:0.604200px;}
.ls50{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.660000px;}
.ls78{letter-spacing:0.672000px;}
.ls43{letter-spacing:0.676800px;}
.ls20{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.732000px;}
.ls4e{letter-spacing:0.760800px;}
.ls7a{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.780000px;}
.ls4d{letter-spacing:0.792000px;}
.ls70{letter-spacing:0.816000px;}
.ls4{letter-spacing:0.840000px;}
.ls3d{letter-spacing:0.843000px;}
.ls7d{letter-spacing:0.864000px;}
.ls14{letter-spacing:0.900000px;}
.ls6f{letter-spacing:0.912000px;}
.lsd{letter-spacing:0.960000px;}
.ls4f{letter-spacing:0.967200px;}
.ls6e{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.020000px;}
.ls5{letter-spacing:1.080000px;}
.ls77{letter-spacing:1.104000px;}
.ls1{letter-spacing:1.140000px;}
.ls21{letter-spacing:1.200000px;}
.ls16{letter-spacing:1.260000px;}
.ls7e{letter-spacing:1.296000px;}
.ls56{letter-spacing:1.296600px;}
.ls4c{letter-spacing:1.299000px;}
.lsb{letter-spacing:1.320000px;}
.ls26{letter-spacing:1.380000px;}
.ls81{letter-spacing:1.392000px;}
.ls7{letter-spacing:1.440000px;}
.ls80{letter-spacing:1.488000px;}
.ls24{letter-spacing:1.500000px;}
.ls83{letter-spacing:1.536000px;}
.ls0{letter-spacing:1.560000px;}
.ls38{letter-spacing:1.620000px;}
.ls79{letter-spacing:1.632000px;}
.ls11{letter-spacing:1.680000px;}
.ls7c{letter-spacing:1.728000px;}
.ls27{letter-spacing:1.740000px;}
.ls84{letter-spacing:1.776000px;}
.ls15{letter-spacing:1.800000px;}
.ls76{letter-spacing:1.824000px;}
.ls31{letter-spacing:1.860000px;}
.ls47{letter-spacing:1.872000px;}
.ls8{letter-spacing:1.920000px;}
.lsc{letter-spacing:1.980000px;}
.ls67{letter-spacing:2.040000px;}
.ls2a{letter-spacing:2.100000px;}
.ls13{letter-spacing:2.160000px;}
.ls55{letter-spacing:2.169600px;}
.ls12{letter-spacing:2.220000px;}
.ls72{letter-spacing:2.256000px;}
.ls30{letter-spacing:2.280000px;}
.ls5e{letter-spacing:2.340000px;}
.ls6{letter-spacing:2.400000px;}
.ls9{letter-spacing:2.460000px;}
.ls5f{letter-spacing:2.580000px;}
.ls6b{letter-spacing:2.592000px;}
.ls69{letter-spacing:2.700000px;}
.ls66{letter-spacing:2.760000px;}
.ls2c{letter-spacing:2.820000px;}
.ls65{letter-spacing:2.940000px;}
.ls2f{letter-spacing:3.000000px;}
.ls74{letter-spacing:3.072000px;}
.ls46{letter-spacing:3.119400px;}
.ls3b{letter-spacing:3.120000px;}
.ls68{letter-spacing:3.240000px;}
.ls60{letter-spacing:3.300000px;}
.ls35{letter-spacing:3.360000px;}
.ls32{letter-spacing:3.480000px;}
.ls63{letter-spacing:3.540000px;}
.ls23{letter-spacing:3.600000px;}
.ls1f{letter-spacing:3.720000px;}
.ls25{letter-spacing:3.840000px;}
.ls7b{letter-spacing:3.984000px;}
.ls2b{letter-spacing:4.320000px;}
.ls37{letter-spacing:4.440000px;}
.ls36{letter-spacing:4.560000px;}
.ls1d{letter-spacing:4.680000px;}
.ls71{letter-spacing:4.800000px;}
.lse{letter-spacing:4.860000px;}
.ls58{letter-spacing:5.280000px;}
.ls64{letter-spacing:5.340000px;}
.ls62{letter-spacing:5.520000px;}
.lsa{letter-spacing:5.580000px;}
.ls39{letter-spacing:5.820000px;}
.ls3a{letter-spacing:7.080000px;}
.ls59{letter-spacing:8.280000px;}
.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;}
}
.ws56{word-spacing:-18.360000px;}
.ws33{word-spacing:-17.100000px;}
.ws3e{word-spacing:-16.980000px;}
.ws1{word-spacing:-16.680000px;}
.ws74{word-spacing:-16.620000px;}
.ws9{word-spacing:-16.380000px;}
.ws3a{word-spacing:-16.320000px;}
.wsa{word-spacing:-16.260000px;}
.ws55{word-spacing:-16.020000px;}
.ws3f{word-spacing:-15.960000px;}
.ws3d{word-spacing:-15.480000px;}
.wsc{word-spacing:-15.360000px;}
.ws67{word-spacing:-15.095550px;}
.ws6d{word-spacing:-15.060000px;}
.wsb{word-spacing:-15.000000px;}
.ws80{word-spacing:-13.728000px;}
.wsd{word-spacing:-13.344000px;}
.ws82{word-spacing:-12.960000px;}
.ws81{word-spacing:-12.864000px;}
.ws61{word-spacing:-12.750000px;}
.ws65{word-spacing:-12.529200px;}
.ws0{word-spacing:-12.510000px;}
.ws7e{word-spacing:-12.336000px;}
.ws7d{word-spacing:-12.144000px;}
.ws7f{word-spacing:-12.096000px;}
.ws57{word-spacing:-12.000000px;}
.ws35{word-spacing:-10.872000px;}
.ws39{word-spacing:-9.792000px;}
.ws3b{word-spacing:-9.612000px;}
.ws54{word-spacing:-9.540000px;}
.ws34{word-spacing:-9.432000px;}
.ws3c{word-spacing:-9.288000px;}
.ws38{word-spacing:-9.036000px;}
.ws36{word-spacing:-9.000000px;}
.ws37{word-spacing:-8.820000px;}
.ws5f{word-spacing:-7.200000px;}
.ws5b{word-spacing:-3.360000px;}
.ws3{word-spacing:-2.886000px;}
.ws93{word-spacing:-2.640000px;}
.ws1b{word-spacing:-2.220000px;}
.ws43{word-spacing:-2.100000px;}
.ws49{word-spacing:-1.920000px;}
.ws91{word-spacing:-1.872000px;}
.ws97{word-spacing:-1.776000px;}
.ws71{word-spacing:-1.380000px;}
.ws27{word-spacing:-1.200000px;}
.ws84{word-spacing:-1.008000px;}
.ws85{word-spacing:-0.864000px;}
.ws1f{word-spacing:-0.780000px;}
.ws44{word-spacing:-0.720000px;}
.ws8d{word-spacing:-0.672000px;}
.ws42{word-spacing:-0.600000px;}
.ws46{word-spacing:-0.540000px;}
.ws83{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.420000px;}
.ws4c{word-spacing:-0.360000px;}
.ws87{word-spacing:-0.336000px;}
.ws72{word-spacing:-0.300000px;}
.ws6b{word-spacing:-0.277758px;}
.ws59{word-spacing:-0.180000px;}
.ws8a{word-spacing:-0.144000px;}
.ws6c{word-spacing:-0.120764px;}
.ws15{word-spacing:-0.120000px;}
.ws4b{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws1c{word-spacing:0.120000px;}
.ws63{word-spacing:0.144000px;}
.ws4a{word-spacing:0.180000px;}
.ws78{word-spacing:0.240000px;}
.ws98{word-spacing:0.336000px;}
.ws4e{word-spacing:0.360000px;}
.ws13{word-spacing:0.420000px;}
.ws18{word-spacing:0.720000px;}
.ws24{word-spacing:0.840000px;}
.ws69{word-spacing:0.960000px;}
.ws48{word-spacing:1.020000px;}
.ws95{word-spacing:1.056000px;}
.ws6f{word-spacing:1.140000px;}
.ws23{word-spacing:1.200000px;}
.ws62{word-spacing:1.248000px;}
.ws2e{word-spacing:1.260000px;}
.ws86{word-spacing:1.296000px;}
.ws58{word-spacing:1.320000px;}
.ws89{word-spacing:1.344000px;}
.ws8c{word-spacing:1.392000px;}
.ws68{word-spacing:1.440000px;}
.ws5d{word-spacing:1.488000px;}
.ws12{word-spacing:1.560000px;}
.ws6a{word-spacing:1.680000px;}
.ws28{word-spacing:1.740000px;}
.ws20{word-spacing:1.800000px;}
.ws40{word-spacing:1.860000px;}
.ws90{word-spacing:1.872000px;}
.ws8b{word-spacing:1.920000px;}
.ws2b{word-spacing:1.980000px;}
.ws2a{word-spacing:2.040000px;}
.ws1a{word-spacing:2.100000px;}
.ws2f{word-spacing:2.160000px;}
.ws5c{word-spacing:2.220000px;}
.ws29{word-spacing:2.280000px;}
.ws92{word-spacing:2.304000px;}
.ws50{word-spacing:2.400000px;}
.ws32{word-spacing:2.496000px;}
.ws99{word-spacing:2.544000px;}
.ws47{word-spacing:2.580000px;}
.ws7c{word-spacing:2.592000px;}
.ws53{word-spacing:2.640000px;}
.ws22{word-spacing:2.760000px;}
.ws21{word-spacing:2.880000px;}
.ws26{word-spacing:3.000000px;}
.ws8e{word-spacing:3.024000px;}
.ws70{word-spacing:3.060000px;}
.ws5e{word-spacing:3.072000px;}
.ws96{word-spacing:3.168000px;}
.wsf{word-spacing:3.240000px;}
.ws31{word-spacing:3.300000px;}
.ws94{word-spacing:3.312000px;}
.ws25{word-spacing:3.360000px;}
.ws10{word-spacing:3.420000px;}
.ws14{word-spacing:3.480000px;}
.ws52{word-spacing:3.600000px;}
.ws8f{word-spacing:3.648000px;}
.ws30{word-spacing:3.660000px;}
.ws2d{word-spacing:3.720000px;}
.ws11{word-spacing:3.780000px;}
.ws1e{word-spacing:3.840000px;}
.ws88{word-spacing:3.888000px;}
.ws41{word-spacing:3.900000px;}
.ws73{word-spacing:3.936000px;}
.ws6e{word-spacing:3.960000px;}
.ws7b{word-spacing:3.984000px;}
.ws77{word-spacing:4.020000px;}
.ws16{word-spacing:4.080000px;}
.ws4f{word-spacing:4.140000px;}
.ws17{word-spacing:4.200000px;}
.ws8{word-spacing:4.260000px;}
.ws6{word-spacing:4.320000px;}
.wse{word-spacing:4.440000px;}
.ws7{word-spacing:4.500000px;}
.ws1d{word-spacing:4.620000px;}
.ws76{word-spacing:4.740000px;}
.ws19{word-spacing:4.800000px;}
.ws75{word-spacing:4.860000px;}
.ws5{word-spacing:4.920000px;}
.ws4{word-spacing:4.980000px;}
.ws79{word-spacing:5.460000px;}
.ws7a{word-spacing:5.520000px;}
.ws45{word-spacing:5.700000px;}
.ws5a{word-spacing:5.820000px;}
.ws4d{word-spacing:5.940000px;}
.ws51{word-spacing:7.080000px;}
.ws60{word-spacing:155.328000px;}
.ws64{word-spacing:166.992000px;}
.ws66{word-spacing:789.898950px;}
._b{margin-left:-2898.147000px;}
._c{margin-left:-2874.339000px;}
._3{margin-left:-12.358800px;}
._5{margin-left:-7.980000px;}
._a{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.549000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._8{width:1.029000px;}
._6{width:2.700000px;}
._7{width:4.320000px;}
._9{width:5.700000px;}
._d{width:6.840000px;}
._27{width:10.753843px;}
._25{width:94.715478px;}
._26{width:96.124339px;}
._1a{width:140.976000px;}
._17{width:153.408000px;}
._f{width:155.568000px;}
._15{width:158.976000px;}
._23{width:165.888000px;}
._1e{width:175.008000px;}
._24{width:177.648000px;}
._12{width:183.408000px;}
._13{width:186.576000px;}
._16{width:191.136000px;}
._1c{width:192.576000px;}
._20{width:194.544000px;}
._19{width:203.136000px;}
._21{width:215.136000px;}
._1b{width:216.576000px;}
._18{width:218.886000px;}
._14{width:221.136000px;}
._22{width:233.136000px;}
._1f{width:245.136000px;}
._11{width:251.136000px;}
._1d{width:262.176000px;}
._10{width:280.176000px;}
._e{width:1113.984000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:28.800000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:50.116800px;}
.fsa{font-size:51.000000px;}
.fsd{font-size:55.551600px;}
.fs6{font-size:60.000000px;}
.fse{font-size:60.382200px;}
.fs3{font-size:63.000000px;}
.fsb{font-size:75.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y12a{bottom:83.247750px;}
.y93{bottom:83.578350px;}
.y153{bottom:83.635350px;}
.yfb{bottom:83.661150px;}
.y61{bottom:83.770350px;}
.yde{bottom:83.912100px;}
.y91{bottom:84.053850px;}
.yac{bottom:84.948600px;}
.y18{bottom:88.026750px;}
.y161{bottom:89.121900px;}
.y117{bottom:92.698050px;}
.y129{bottom:98.988000px;}
.y149{bottom:98.991750px;}
.yfa{bottom:99.405150px;}
.yab{bottom:100.692600px;}
.y152{bottom:101.635350px;}
.y60{bottom:101.770350px;}
.ydd{bottom:101.912100px;}
.y90{bottom:102.070350px;}
.y17{bottom:103.023000px;}
.y160{bottom:104.121900px;}
.y116{bottom:108.946050px;}
.yf9{bottom:115.149150px;}
.y15f{bottom:119.121900px;}
.y151{bottom:119.635350px;}
.y5f{bottom:119.770350px;}
.ydc{bottom:119.912100px;}
.y8f{bottom:120.070350px;}
.y141{bottom:122.325000px;}
.y115{bottom:125.194050px;}
.y145{bottom:126.953700px;}
.y15e{bottom:134.121900px;}
.y150{bottom:137.635350px;}
.y5e{bottom:137.770350px;}
.ydb{bottom:137.912100px;}
.y8e{bottom:138.070350px;}
.y114{bottom:141.442050px;}
.y15d{bottom:149.121900px;}
.y14f{bottom:155.635350px;}
.y5d{bottom:155.770350px;}
.yda{bottom:155.912100px;}
.y8d{bottom:156.070350px;}
.y148{bottom:159.165600px;}
.y2a{bottom:160.804050px;}
.y15c{bottom:164.121900px;}
.y136{bottom:167.962350px;}
.y113{bottom:170.446050px;}
.y14e{bottom:173.635350px;}
.y5c{bottom:173.770350px;}
.yd9{bottom:173.912100px;}
.y8c{bottom:174.070350px;}
.y29{bottom:178.804050px;}
.y15b{bottom:179.121900px;}
.y144{bottom:185.839350px;}
.y14d{bottom:191.635350px;}
.y121{bottom:191.866950px;}
.yd8{bottom:191.912100px;}
.y8b{bottom:192.070350px;}
.y143{bottom:193.853100px;}
.y15a{bottom:194.121900px;}
.y28{bottom:196.804050px;}
.y112{bottom:199.450050px;}
.y5b{bottom:209.365350px;}
.yd7{bottom:209.912100px;}
.y8a{bottom:210.070350px;}
.y13b{bottom:211.185150px;}
.y27{bottom:214.804050px;}
.y14c{bottom:227.230350px;}
.yf7{bottom:227.920350px;}
.yd6{bottom:227.922600px;}
.y89{bottom:228.070350px;}
.y111{bottom:228.454050px;}
.y26{bottom:232.804050px;}
.y110{bottom:244.702050px;}
.y5a{bottom:245.230350px;}
.yf6{bottom:245.920350px;}
.yd5{bottom:245.922600px;}
.y88{bottom:246.070350px;}
.y25{bottom:250.804050px;}
.y10f{bottom:260.950050px;}
.y13c{bottom:263.206388px;}
.yf5{bottom:263.920350px;}
.yd4{bottom:263.922600px;}
.y87{bottom:264.070350px;}
.y24{bottom:268.804050px;}
.y10e{bottom:277.198050px;}
.y14b{bottom:281.770350px;}
.yf4{bottom:281.920350px;}
.yd3{bottom:281.922600px;}
.y86{bottom:282.070350px;}
.y23{bottom:286.804050px;}
.y195{bottom:290.263500px;}
.y159{bottom:299.365350px;}
.y59{bottom:299.770350px;}
.yf3{bottom:299.920350px;}
.yd2{bottom:299.922600px;}
.y85{bottom:300.070350px;}
.y22{bottom:304.804050px;}
.y194{bottom:305.263500px;}
.y10d{bottom:306.202050px;}
.y10b{bottom:306.209850px;}
.y13d{bottom:315.202568px;}
.y58{bottom:317.770350px;}
.yf2{bottom:317.920350px;}
.yd1{bottom:317.922600px;}
.y84{bottom:318.070350px;}
.y193{bottom:320.263500px;}
.y10c{bottom:322.702050px;}
.y10a{bottom:322.709850px;}
.y21{bottom:322.804050px;}
.y192{bottom:335.263500px;}
.y158{bottom:335.365350px;}
.y57{bottom:335.770350px;}
.yf1{bottom:335.920350px;}
.yd0{bottom:335.922600px;}
.y83{bottom:336.070350px;}
.y20{bottom:340.804050px;}
.y191{bottom:350.263500px;}
.y109{bottom:351.713850px;}
.y56{bottom:353.770350px;}
.yf0{bottom:353.920350px;}
.ycf{bottom:353.922600px;}
.y82{bottom:354.070350px;}
.y1f{bottom:358.804050px;}
.y190{bottom:365.263500px;}
.y13e{bottom:367.223807px;}
.y101{bottom:369.498600px;}
.yfe{bottom:369.510600px;}
.y55{bottom:371.770350px;}
.yef{bottom:371.920350px;}
.yce{bottom:371.922600px;}
.y81{bottom:372.070350px;}
.y1e{bottom:376.804050px;}
.y18f{bottom:380.263500px;}
.y108{bottom:380.717850px;}
.yae{bottom:385.464600px;}
.y147{bottom:386.359005px;}
.y54{bottom:389.770350px;}
.yee{bottom:389.920350px;}
.ycd{bottom:389.922600px;}
.y80{bottom:390.070350px;}
.y1d{bottom:394.804050px;}
.y18e{bottom:395.263500px;}
.y142{bottom:400.912350px;}
.y138{bottom:402.319800px;}
.y53{bottom:407.770350px;}
.yed{bottom:407.920350px;}
.ycc{bottom:407.922600px;}
.y7f{bottom:408.070350px;}
.y18d{bottom:410.263500px;}
.y1c{bottom:412.804050px;}
.y107{bottom:413.109000px;}
.y13f{bottom:419.219987px;}
.y146{bottom:419.592750px;}
.y18c{bottom:425.263500px;}
.y157{bottom:425.365350px;}
.y52{bottom:425.770350px;}
.yec{bottom:425.920350px;}
.ycb{bottom:425.922600px;}
.y7e{bottom:426.070350px;}
.y1b{bottom:430.804050px;}
.y106{bottom:432.609000px;}
.y18b{bottom:440.263500px;}
.y51{bottom:443.770350px;}
.yeb{bottom:443.920350px;}
.yca{bottom:443.922600px;}
.y7d{bottom:444.070350px;}
.y1a{bottom:448.804050px;}
.y18a{bottom:455.263500px;}
.y123{bottom:455.893200px;}
.y50{bottom:461.770350px;}
.yea{bottom:461.920350px;}
.y7c{bottom:462.070350px;}
.y2c{bottom:466.804050px;}
.y189{bottom:470.263500px;}
.y140{bottom:471.216167px;}
.yc9{bottom:479.517600px;}
.y4f{bottom:479.770350px;}
.ye9{bottom:479.920350px;}
.y7b{bottom:480.070350px;}
.y19{bottom:484.399050px;}
.y2b{bottom:484.804050px;}
.y188{bottom:485.263500px;}
.y105{bottom:492.913200px;}
.y156{bottom:497.365350px;}
.yc8{bottom:497.517600px;}
.y4e{bottom:497.770350px;}
.ye8{bottom:497.920350px;}
.y7a{bottom:498.070350px;}
.y187{bottom:500.263500px;}
.y104{bottom:508.657200px;}
.y186{bottom:515.263500px;}
.y4d{bottom:515.770350px;}
.ye7{bottom:515.920350px;}
.y103{bottom:524.401200px;}
.y185{bottom:530.263500px;}
.y79{bottom:533.665350px;}
.y4c{bottom:533.770350px;}
.yc7{bottom:533.772600px;}
.ye6{bottom:533.920350px;}
.y184{bottom:545.263500px;}
.y120{bottom:547.933500px;}
.y78{bottom:551.665350px;}
.y4b{bottom:551.770350px;}
.yc6{bottom:551.772600px;}
.y122{bottom:551.843400px;}
.ye5{bottom:551.920350px;}
.y183{bottom:560.263500px;}
.y16{bottom:561.514200px;}
.y4a{bottom:569.770350px;}
.yc5{bottom:569.772600px;}
.ye4{bottom:569.920350px;}
.y11f{bottom:570.470100px;}
.y182{bottom:575.263500px;}
.y128{bottom:577.740000px;}
.y118{bottom:585.602100px;}
.y49{bottom:587.770350px;}
.yc4{bottom:587.772600px;}
.y77{bottom:587.920350px;}
.y15{bottom:588.859200px;}
.y181{bottom:590.263500px;}
.y127{bottom:593.484000px;}
.y180{bottom:605.263500px;}
.y48{bottom:605.770350px;}
.yc3{bottom:605.772600px;}
.y76{bottom:605.920350px;}
.y14{bottom:606.859200px;}
.y126{bottom:609.228000px;}
.y17f{bottom:620.263500px;}
.y155{bottom:623.365350px;}
.y47{bottom:623.770350px;}
.yc2{bottom:623.772600px;}
.y75{bottom:623.920350px;}
.y13{bottom:624.859200px;}
.y100{bottom:627.810600px;}
.yfd{bottom:627.822600px;}
.y135{bottom:632.334000px;}
.y17e{bottom:635.263500px;}
.y137{bottom:636.244050px;}
.ye3{bottom:641.515350px;}
.y46{bottom:641.770350px;}
.yc1{bottom:641.772600px;}
.y74{bottom:641.920350px;}
.y12{bottom:642.859200px;}
.y17d{bottom:650.263500px;}
.y119{bottom:651.650100px;}
.y134{bottom:654.537300px;}
.ye2{bottom:659.515350px;}
.y45{bottom:659.770350px;}
.yc0{bottom:659.772600px;}
.y73{bottom:659.920350px;}
.y11{bottom:660.859200px;}
.y17c{bottom:665.263500px;}
.y12b{bottom:669.405300px;}
.yaf{bottom:673.531200px;}
.yad{bottom:673.536600px;}
.y44{bottom:677.770350px;}
.ybf{bottom:677.772600px;}
.y72{bottom:677.920350px;}
.y10{bottom:678.859200px;}
.y17b{bottom:680.263500px;}
.y94{bottom:693.728100px;}
.y17a{bottom:695.263500px;}
.y43{bottom:695.770350px;}
.ybe{bottom:695.772600px;}
.y71{bottom:695.920350px;}
.yf{bottom:696.859200px;}
.y179{bottom:710.263500px;}
.y12c{bottom:712.353300px;}
.y42{bottom:713.770350px;}
.ybd{bottom:713.772600px;}
.yaa{bottom:713.785350px;}
.y70{bottom:713.920350px;}
.ye{bottom:714.859200px;}
.y11a{bottom:717.698100px;}
.y178{bottom:725.263500px;}
.y41{bottom:731.770350px;}
.ya9{bottom:731.785350px;}
.y6f{bottom:731.920350px;}
.yd{bottom:732.859200px;}
.y177{bottom:740.263500px;}
.y125{bottom:744.206700px;}
.ybc{bottom:749.367600px;}
.y40{bottom:749.770350px;}
.ya8{bottom:749.785350px;}
.y6e{bottom:749.920350px;}
.yc{bottom:750.859200px;}
.y176{bottom:755.263500px;}
.y12d{bottom:755.313300px;}
.y3f{bottom:767.770350px;}
.ya7{bottom:767.785350px;}
.y6d{bottom:767.920350px;}
.y175{bottom:770.263500px;}
.y11b{bottom:783.746100px;}
.ybb{bottom:785.232600px;}
.y174{bottom:785.263500px;}
.y3e{bottom:785.770350px;}
.ya6{bottom:785.785350px;}
.y6c{bottom:785.920350px;}
.y124{bottom:788.466900px;}
.yb{bottom:796.014000px;}
.y12e{bottom:798.285300px;}
.y173{bottom:800.263500px;}
.y3d{bottom:803.770350px;}
.ya5{bottom:803.785350px;}
.y6b{bottom:803.920350px;}
.ya{bottom:811.057500px;}
.y172{bottom:815.263500px;}
.y3c{bottom:821.770350px;}
.ya4{bottom:821.785350px;}
.y6a{bottom:821.920350px;}
.y13a{bottom:825.377400px;}
.y9{bottom:826.683000px;}
.y171{bottom:830.263500px;}
.y3b{bottom:839.770350px;}
.yba{bottom:839.772600px;}
.ya3{bottom:839.785350px;}
.y69{bottom:839.920350px;}
.y8{bottom:840.183600px;}
.y12f{bottom:841.245300px;}
.y170{bottom:845.263500px;}
.y11c{bottom:849.818100px;}
.y7{bottom:853.683600px;}
.y3a{bottom:857.770350px;}
.yb9{bottom:857.772600px;}
.ya2{bottom:857.785350px;}
.y68{bottom:857.920350px;}
.y16f{bottom:860.263500px;}
.y139{bottom:861.370050px;}
.y16e{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.yb8{bottom:875.772600px;}
.ya1{bottom:875.785350px;}
.y67{bottom:875.920350px;}
.y130{bottom:884.217300px;}
.yff{bottom:885.270600px;}
.yfc{bottom:885.279300px;}
.y6{bottom:887.830950px;}
.y16d{bottom:890.263500px;}
.y38{bottom:893.770350px;}
.yb7{bottom:893.772600px;}
.ya0{bottom:893.785350px;}
.y66{bottom:893.920350px;}
.y16c{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.yb6{bottom:911.772600px;}
.y9f{bottom:911.785350px;}
.y65{bottom:911.920350px;}
.y11d{bottom:915.866100px;}
.y16b{bottom:920.263500px;}
.y131{bottom:927.189300px;}
.y36{bottom:929.770350px;}
.yb5{bottom:929.772600px;}
.y9e{bottom:929.785350px;}
.y64{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y16a{bottom:935.263500px;}
.y154{bottom:947.365350px;}
.y97{bottom:947.515350px;}
.y35{bottom:947.770350px;}
.yb4{bottom:947.772600px;}
.y9d{bottom:947.785350px;}
.y63{bottom:947.920350px;}
.y169{bottom:950.263500px;}
.y168{bottom:965.263500px;}
.y96{bottom:965.515350px;}
.y34{bottom:965.770350px;}
.yb3{bottom:965.772600px;}
.y9c{bottom:965.785350px;}
.y132{bottom:970.149300px;}
.y4{bottom:970.465200px;}
.y167{bottom:980.263500px;}
.y11e{bottom:981.914100px;}
.y62{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.yb2{bottom:983.772600px;}
.y9b{bottom:983.785350px;}
.y166{bottom:995.263500px;}
.y32{bottom:1001.770350px;}
.yb1{bottom:1001.772600px;}
.ye1{bottom:1001.777100px;}
.y9a{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y165{bottom:1010.263500px;}
.y133{bottom:1013.121300px;}
.y31{bottom:1019.770350px;}
.ye0{bottom:1019.777100px;}
.y99{bottom:1019.785350px;}
.y164{bottom:1025.263500px;}
.yf8{bottom:1037.365350px;}
.yb0{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.ydf{bottom:1037.777100px;}
.y98{bottom:1037.785350px;}
.y163{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y102{bottom:1132.398600px;}
.y162{bottom:1132.413900px;}
.y92{bottom:1132.418700px;}
.y14a{bottom:1132.419750px;}
.y196{bottom:1132.423500px;}
.y95{bottom:1132.424100px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h7{height:28.412109px;}
.h2{height:30.597656px;}
.hb{height:32.783203px;}
.h6{height:32.805176px;}
.h13{height:33.328125px;}
.h10{height:33.351562px;}
.h1d{height:34.822366px;}
.he{height:34.968750px;}
.hd{height:34.992188px;}
.h17{height:35.436035px;}
.h1a{height:35.918737px;}
.h14{height:35.936137px;}
.h19{height:35.966737px;}
.h15{height:35.967338px;}
.h1b{height:35.982337px;}
.h1f{height:38.598597px;}
.hf{height:41.660156px;}
.hc{height:41.689453px;}
.h20{height:41.955015px;}
.ha{height:43.681641px;}
.h8{height:43.710938px;}
.h9{height:43.740234px;}
.h11{height:44.916872px;}
.h12{height:44.958872px;}
.h5{height:45.865723px;}
.h21{height:49.080015px;}
.h18{height:52.111816px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1e{height:411.297000px;}
.h1c{height:417.901500px;}
.h16{height:471.475500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:616.011000px;}
.w4{width:616.536000px;}
.w3{width:640.224000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:10.595100px;}
.x3c{left:12.545100px;}
.x3a{left:25.377450px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1a{left:99.922200px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x33{left:115.716000px;}
.x45{left:123.307350px;}
.x39{left:127.558500px;}
.x6{left:131.816400px;}
.xd{left:144.710400px;}
.x2d{left:149.082000px;}
.x38{left:152.935945px;}
.x31{left:155.708700px;}
.x37{left:165.703200px;}
.x32{left:169.172700px;}
.x1b{left:171.838200px;}
.x2b{left:172.900500px;}
.x2a{left:184.672500px;}
.x41{left:190.175400px;}
.x3b{left:193.390950px;}
.x2c{left:198.400500px;}
.x2f{left:205.720350px;}
.x5{left:212.876400px;}
.x3{left:223.540500px;}
.x35{left:228.359250px;}
.x16{left:232.360350px;}
.x1c{left:237.602700px;}
.x1d{left:252.626700px;}
.x19{left:276.226200px;}
.x40{left:284.605200px;}
.x1e{left:316.386150px;}
.x1f{left:333.414150px;}
.x3d{left:368.045700px;}
.x20{left:395.589600px;}
.x21{left:399.813600px;}
.x34{left:405.671100px;}
.x18{left:414.982200px;}
.x29{left:420.928500px;}
.xa{left:455.041500px;}
.xe{left:457.070400px;}
.x12{left:478.345350px;}
.x7{left:480.476400px;}
.x43{left:482.598600px;}
.xf{left:491.120400px;}
.x22{left:498.959100px;}
.x46{left:503.899350px;}
.x13{left:512.365350px;}
.x8{left:514.496400px;}
.x42{left:574.880400px;}
.x23{left:577.748250px;}
.x17{left:579.430500px;}
.x24{left:592.772250px;}
.x25{left:656.543550px;}
.x11{left:663.492300px;}
.x3e{left:669.049050px;}
.x26{left:673.571550px;}
.x36{left:688.443900px;}
.x2{left:693.365400px;}
.x3f{left:695.463836px;}
.x30{left:697.596300px;}
.x44{left:722.610600px;}
.x10{left:729.282150px;}
.x27{left:735.747000px;}
.x28{left:739.971000px;}
.x47{left:744.758400px;}
.x15{left:750.537300px;}
.x14{left:777.057300px;}
@media print{
.v2{vertical-align:-3.604267pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v3{vertical-align:3.604267pt;}
.v5{vertical-align:6.333333pt;}
.v4{vertical-align:14.155733pt;}
.v1{vertical-align:17.691733pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls5a{letter-spacing:-0.373333pt;}
.ls33{letter-spacing:-0.266667pt;}
.ls6d{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls85{letter-spacing:-0.042667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.000533pt;}
.ls49{letter-spacing:0.001067pt;}
.ls5b{letter-spacing:0.001600pt;}
.ls48{letter-spacing:0.004800pt;}
.ls5c{letter-spacing:0.008000pt;}
.ls44{letter-spacing:0.024533pt;}
.ls4a{letter-spacing:0.029867pt;}
.ls4b{letter-spacing:0.032000pt;}
.ls61{letter-spacing:0.042667pt;}
.ls34{letter-spacing:0.053333pt;}
.ls75{letter-spacing:0.085333pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls5d{letter-spacing:0.107346pt;}
.ls6c{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls7f{letter-spacing:0.170667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls53{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls54{letter-spacing:0.293333pt;}
.ls73{letter-spacing:0.298667pt;}
.ls2d{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.373333pt;}
.ls40{letter-spacing:0.384000pt;}
.ls3e{letter-spacing:0.393600pt;}
.ls41{letter-spacing:0.408000pt;}
.ls52{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.426667pt;}
.ls57{letter-spacing:0.448533pt;}
.ls42{letter-spacing:0.467733pt;}
.ls28{letter-spacing:0.480000pt;}
.ls82{letter-spacing:0.512000pt;}
.ls22{letter-spacing:0.533333pt;}
.ls51{letter-spacing:0.537067pt;}
.ls50{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.586667pt;}
.ls78{letter-spacing:0.597333pt;}
.ls43{letter-spacing:0.601600pt;}
.ls20{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.650667pt;}
.ls4e{letter-spacing:0.676267pt;}
.ls7a{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls4d{letter-spacing:0.704000pt;}
.ls70{letter-spacing:0.725333pt;}
.ls4{letter-spacing:0.746667pt;}
.ls3d{letter-spacing:0.749333pt;}
.ls7d{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.800000pt;}
.ls6f{letter-spacing:0.810667pt;}
.lsd{letter-spacing:0.853333pt;}
.ls4f{letter-spacing:0.859733pt;}
.ls6e{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.906667pt;}
.ls5{letter-spacing:0.960000pt;}
.ls77{letter-spacing:0.981333pt;}
.ls1{letter-spacing:1.013333pt;}
.ls21{letter-spacing:1.066667pt;}
.ls16{letter-spacing:1.120000pt;}
.ls7e{letter-spacing:1.152000pt;}
.ls56{letter-spacing:1.152533pt;}
.ls4c{letter-spacing:1.154667pt;}
.lsb{letter-spacing:1.173333pt;}
.ls26{letter-spacing:1.226667pt;}
.ls81{letter-spacing:1.237333pt;}
.ls7{letter-spacing:1.280000pt;}
.ls80{letter-spacing:1.322667pt;}
.ls24{letter-spacing:1.333333pt;}
.ls83{letter-spacing:1.365333pt;}
.ls0{letter-spacing:1.386667pt;}
.ls38{letter-spacing:1.440000pt;}
.ls79{letter-spacing:1.450667pt;}
.ls11{letter-spacing:1.493333pt;}
.ls7c{letter-spacing:1.536000pt;}
.ls27{letter-spacing:1.546667pt;}
.ls84{letter-spacing:1.578667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls76{letter-spacing:1.621333pt;}
.ls31{letter-spacing:1.653333pt;}
.ls47{letter-spacing:1.664000pt;}
.ls8{letter-spacing:1.706667pt;}
.lsc{letter-spacing:1.760000pt;}
.ls67{letter-spacing:1.813333pt;}
.ls2a{letter-spacing:1.866667pt;}
.ls13{letter-spacing:1.920000pt;}
.ls55{letter-spacing:1.928533pt;}
.ls12{letter-spacing:1.973333pt;}
.ls72{letter-spacing:2.005333pt;}
.ls30{letter-spacing:2.026667pt;}
.ls5e{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls9{letter-spacing:2.186667pt;}
.ls5f{letter-spacing:2.293333pt;}
.ls6b{letter-spacing:2.304000pt;}
.ls69{letter-spacing:2.400000pt;}
.ls66{letter-spacing:2.453333pt;}
.ls2c{letter-spacing:2.506667pt;}
.ls65{letter-spacing:2.613333pt;}
.ls2f{letter-spacing:2.666667pt;}
.ls74{letter-spacing:2.730667pt;}
.ls46{letter-spacing:2.772800pt;}
.ls3b{letter-spacing:2.773333pt;}
.ls68{letter-spacing:2.880000pt;}
.ls60{letter-spacing:2.933333pt;}
.ls35{letter-spacing:2.986667pt;}
.ls32{letter-spacing:3.093333pt;}
.ls63{letter-spacing:3.146667pt;}
.ls23{letter-spacing:3.200000pt;}
.ls1f{letter-spacing:3.306667pt;}
.ls25{letter-spacing:3.413333pt;}
.ls7b{letter-spacing:3.541333pt;}
.ls2b{letter-spacing:3.840000pt;}
.ls37{letter-spacing:3.946667pt;}
.ls36{letter-spacing:4.053333pt;}
.ls1d{letter-spacing:4.160000pt;}
.ls71{letter-spacing:4.266667pt;}
.lse{letter-spacing:4.320000pt;}
.ls58{letter-spacing:4.693333pt;}
.ls64{letter-spacing:4.746667pt;}
.ls62{letter-spacing:4.906667pt;}
.lsa{letter-spacing:4.960000pt;}
.ls39{letter-spacing:5.173333pt;}
.ls3a{letter-spacing:6.293333pt;}
.ls59{letter-spacing:7.360000pt;}
.ws56{word-spacing:-16.320000pt;}
.ws33{word-spacing:-15.200000pt;}
.ws3e{word-spacing:-15.093333pt;}
.ws1{word-spacing:-14.826667pt;}
.ws74{word-spacing:-14.773333pt;}
.ws9{word-spacing:-14.560000pt;}
.ws3a{word-spacing:-14.506667pt;}
.wsa{word-spacing:-14.453333pt;}
.ws55{word-spacing:-14.240000pt;}
.ws3f{word-spacing:-14.186667pt;}
.ws3d{word-spacing:-13.760000pt;}
.wsc{word-spacing:-13.653333pt;}
.ws67{word-spacing:-13.418267pt;}
.ws6d{word-spacing:-13.386667pt;}
.wsb{word-spacing:-13.333333pt;}
.ws80{word-spacing:-12.202667pt;}
.wsd{word-spacing:-11.861333pt;}
.ws82{word-spacing:-11.520000pt;}
.ws81{word-spacing:-11.434667pt;}
.ws61{word-spacing:-11.333333pt;}
.ws65{word-spacing:-11.137067pt;}
.ws0{word-spacing:-11.120000pt;}
.ws7e{word-spacing:-10.965333pt;}
.ws7d{word-spacing:-10.794667pt;}
.ws7f{word-spacing:-10.752000pt;}
.ws57{word-spacing:-10.666667pt;}
.ws35{word-spacing:-9.664000pt;}
.ws39{word-spacing:-8.704000pt;}
.ws3b{word-spacing:-8.544000pt;}
.ws54{word-spacing:-8.480000pt;}
.ws34{word-spacing:-8.384000pt;}
.ws3c{word-spacing:-8.256000pt;}
.ws38{word-spacing:-8.032000pt;}
.ws36{word-spacing:-8.000000pt;}
.ws37{word-spacing:-7.840000pt;}
.ws5f{word-spacing:-6.400000pt;}
.ws5b{word-spacing:-2.986667pt;}
.ws3{word-spacing:-2.565333pt;}
.ws93{word-spacing:-2.346667pt;}
.ws1b{word-spacing:-1.973333pt;}
.ws43{word-spacing:-1.866667pt;}
.ws49{word-spacing:-1.706667pt;}
.ws91{word-spacing:-1.664000pt;}
.ws97{word-spacing:-1.578667pt;}
.ws71{word-spacing:-1.226667pt;}
.ws27{word-spacing:-1.066667pt;}
.ws84{word-spacing:-0.896000pt;}
.ws85{word-spacing:-0.768000pt;}
.ws1f{word-spacing:-0.693333pt;}
.ws44{word-spacing:-0.640000pt;}
.ws8d{word-spacing:-0.597333pt;}
.ws42{word-spacing:-0.533333pt;}
.ws46{word-spacing:-0.480000pt;}
.ws83{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws4c{word-spacing:-0.320000pt;}
.ws87{word-spacing:-0.298667pt;}
.ws72{word-spacing:-0.266667pt;}
.ws6b{word-spacing:-0.246896pt;}
.ws59{word-spacing:-0.160000pt;}
.ws8a{word-spacing:-0.128000pt;}
.ws6c{word-spacing:-0.107346pt;}
.ws15{word-spacing:-0.106667pt;}
.ws4b{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.106667pt;}
.ws63{word-spacing:0.128000pt;}
.ws4a{word-spacing:0.160000pt;}
.ws78{word-spacing:0.213333pt;}
.ws98{word-spacing:0.298667pt;}
.ws4e{word-spacing:0.320000pt;}
.ws13{word-spacing:0.373333pt;}
.ws18{word-spacing:0.640000pt;}
.ws24{word-spacing:0.746667pt;}
.ws69{word-spacing:0.853333pt;}
.ws48{word-spacing:0.906667pt;}
.ws95{word-spacing:0.938667pt;}
.ws6f{word-spacing:1.013333pt;}
.ws23{word-spacing:1.066667pt;}
.ws62{word-spacing:1.109333pt;}
.ws2e{word-spacing:1.120000pt;}
.ws86{word-spacing:1.152000pt;}
.ws58{word-spacing:1.173333pt;}
.ws89{word-spacing:1.194667pt;}
.ws8c{word-spacing:1.237333pt;}
.ws68{word-spacing:1.280000pt;}
.ws5d{word-spacing:1.322667pt;}
.ws12{word-spacing:1.386667pt;}
.ws6a{word-spacing:1.493333pt;}
.ws28{word-spacing:1.546667pt;}
.ws20{word-spacing:1.600000pt;}
.ws40{word-spacing:1.653333pt;}
.ws90{word-spacing:1.664000pt;}
.ws8b{word-spacing:1.706667pt;}
.ws2b{word-spacing:1.760000pt;}
.ws2a{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.866667pt;}
.ws2f{word-spacing:1.920000pt;}
.ws5c{word-spacing:1.973333pt;}
.ws29{word-spacing:2.026667pt;}
.ws92{word-spacing:2.048000pt;}
.ws50{word-spacing:2.133333pt;}
.ws32{word-spacing:2.218667pt;}
.ws99{word-spacing:2.261333pt;}
.ws47{word-spacing:2.293333pt;}
.ws7c{word-spacing:2.304000pt;}
.ws53{word-spacing:2.346667pt;}
.ws22{word-spacing:2.453333pt;}
.ws21{word-spacing:2.560000pt;}
.ws26{word-spacing:2.666667pt;}
.ws8e{word-spacing:2.688000pt;}
.ws70{word-spacing:2.720000pt;}
.ws5e{word-spacing:2.730667pt;}
.ws96{word-spacing:2.816000pt;}
.wsf{word-spacing:2.880000pt;}
.ws31{word-spacing:2.933333pt;}
.ws94{word-spacing:2.944000pt;}
.ws25{word-spacing:2.986667pt;}
.ws10{word-spacing:3.040000pt;}
.ws14{word-spacing:3.093333pt;}
.ws52{word-spacing:3.200000pt;}
.ws8f{word-spacing:3.242667pt;}
.ws30{word-spacing:3.253333pt;}
.ws2d{word-spacing:3.306667pt;}
.ws11{word-spacing:3.360000pt;}
.ws1e{word-spacing:3.413333pt;}
.ws88{word-spacing:3.456000pt;}
.ws41{word-spacing:3.466667pt;}
.ws73{word-spacing:3.498667pt;}
.ws6e{word-spacing:3.520000pt;}
.ws7b{word-spacing:3.541333pt;}
.ws77{word-spacing:3.573333pt;}
.ws16{word-spacing:3.626667pt;}
.ws4f{word-spacing:3.680000pt;}
.ws17{word-spacing:3.733333pt;}
.ws8{word-spacing:3.786667pt;}
.ws6{word-spacing:3.840000pt;}
.wse{word-spacing:3.946667pt;}
.ws7{word-spacing:4.000000pt;}
.ws1d{word-spacing:4.106667pt;}
.ws76{word-spacing:4.213333pt;}
.ws19{word-spacing:4.266667pt;}
.ws75{word-spacing:4.320000pt;}
.ws5{word-spacing:4.373333pt;}
.ws4{word-spacing:4.426667pt;}
.ws79{word-spacing:4.853333pt;}
.ws7a{word-spacing:4.906667pt;}
.ws45{word-spacing:5.066667pt;}
.ws5a{word-spacing:5.173333pt;}
.ws4d{word-spacing:5.280000pt;}
.ws51{word-spacing:6.293333pt;}
.ws60{word-spacing:138.069333pt;}
.ws64{word-spacing:148.437333pt;}
.ws66{word-spacing:702.132400pt;}
._b{margin-left:-2576.130667pt;}
._c{margin-left:-2554.968000pt;}
._3{margin-left:-10.985600pt;}
._5{margin-left:-7.093333pt;}
._a{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.154667pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._8{width:0.914667pt;}
._6{width:2.400000pt;}
._7{width:3.840000pt;}
._9{width:5.066667pt;}
._d{width:6.080000pt;}
._27{width:9.558972pt;}
._25{width:84.191536pt;}
._26{width:85.443857pt;}
._1a{width:125.312000pt;}
._17{width:136.362667pt;}
._f{width:138.282667pt;}
._15{width:141.312000pt;}
._23{width:147.456000pt;}
._1e{width:155.562667pt;}
._24{width:157.909333pt;}
._12{width:163.029333pt;}
._13{width:165.845333pt;}
._16{width:169.898667pt;}
._1c{width:171.178667pt;}
._20{width:172.928000pt;}
._19{width:180.565333pt;}
._21{width:191.232000pt;}
._1b{width:192.512000pt;}
._18{width:194.565333pt;}
._14{width:196.565333pt;}
._22{width:207.232000pt;}
._1f{width:217.898667pt;}
._11{width:223.232000pt;}
._1d{width:233.045333pt;}
._10{width:249.045333pt;}
._e{width:990.208000pt;}
.fs9{font-size:25.600000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:44.548267pt;}
.fsa{font-size:45.333333pt;}
.fsd{font-size:49.379200pt;}
.fs6{font-size:53.333333pt;}
.fse{font-size:53.673067pt;}
.fs3{font-size:56.000000pt;}
.fsb{font-size:66.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y12a{bottom:73.998000pt;}
.y93{bottom:74.291867pt;}
.y153{bottom:74.342533pt;}
.yfb{bottom:74.365467pt;}
.y61{bottom:74.462533pt;}
.yde{bottom:74.588533pt;}
.y91{bottom:74.714533pt;}
.yac{bottom:75.509867pt;}
.y18{bottom:78.246000pt;}
.y161{bottom:79.219467pt;}
.y117{bottom:82.398267pt;}
.y129{bottom:87.989333pt;}
.y149{bottom:87.992667pt;}
.yfa{bottom:88.360133pt;}
.yab{bottom:89.504533pt;}
.y152{bottom:90.342533pt;}
.y60{bottom:90.462533pt;}
.ydd{bottom:90.588533pt;}
.y90{bottom:90.729200pt;}
.y17{bottom:91.576000pt;}
.y160{bottom:92.552800pt;}
.y116{bottom:96.840933pt;}
.yf9{bottom:102.354800pt;}
.y15f{bottom:105.886133pt;}
.y151{bottom:106.342533pt;}
.y5f{bottom:106.462533pt;}
.ydc{bottom:106.588533pt;}
.y8f{bottom:106.729200pt;}
.y141{bottom:108.733333pt;}
.y115{bottom:111.283600pt;}
.y145{bottom:112.847733pt;}
.y15e{bottom:119.219467pt;}
.y150{bottom:122.342533pt;}
.y5e{bottom:122.462533pt;}
.ydb{bottom:122.588533pt;}
.y8e{bottom:122.729200pt;}
.y114{bottom:125.726267pt;}
.y15d{bottom:132.552800pt;}
.y14f{bottom:138.342533pt;}
.y5d{bottom:138.462533pt;}
.yda{bottom:138.588533pt;}
.y8d{bottom:138.729200pt;}
.y148{bottom:141.480533pt;}
.y2a{bottom:142.936933pt;}
.y15c{bottom:145.886133pt;}
.y136{bottom:149.299867pt;}
.y113{bottom:151.507600pt;}
.y14e{bottom:154.342533pt;}
.y5c{bottom:154.462533pt;}
.yd9{bottom:154.588533pt;}
.y8c{bottom:154.729200pt;}
.y29{bottom:158.936933pt;}
.y15b{bottom:159.219467pt;}
.y144{bottom:165.190533pt;}
.y14d{bottom:170.342533pt;}
.y121{bottom:170.548400pt;}
.yd8{bottom:170.588533pt;}
.y8b{bottom:170.729200pt;}
.y143{bottom:172.313867pt;}
.y15a{bottom:172.552800pt;}
.y28{bottom:174.936933pt;}
.y112{bottom:177.288933pt;}
.y5b{bottom:186.102533pt;}
.yd7{bottom:186.588533pt;}
.y8a{bottom:186.729200pt;}
.y13b{bottom:187.720133pt;}
.y27{bottom:190.936933pt;}
.y14c{bottom:201.982533pt;}
.yf7{bottom:202.595867pt;}
.yd6{bottom:202.597867pt;}
.y89{bottom:202.729200pt;}
.y111{bottom:203.070267pt;}
.y26{bottom:206.936933pt;}
.y110{bottom:217.512933pt;}
.y5a{bottom:217.982533pt;}
.yf6{bottom:218.595867pt;}
.yd5{bottom:218.597867pt;}
.y88{bottom:218.729200pt;}
.y25{bottom:222.936933pt;}
.y10f{bottom:231.955600pt;}
.y13c{bottom:233.961234pt;}
.yf5{bottom:234.595867pt;}
.yd4{bottom:234.597867pt;}
.y87{bottom:234.729200pt;}
.y24{bottom:238.936933pt;}
.y10e{bottom:246.398267pt;}
.y14b{bottom:250.462533pt;}
.yf4{bottom:250.595867pt;}
.yd3{bottom:250.597867pt;}
.y86{bottom:250.729200pt;}
.y23{bottom:254.936933pt;}
.y195{bottom:258.012000pt;}
.y159{bottom:266.102533pt;}
.y59{bottom:266.462533pt;}
.yf3{bottom:266.595867pt;}
.yd2{bottom:266.597867pt;}
.y85{bottom:266.729200pt;}
.y22{bottom:270.936933pt;}
.y194{bottom:271.345333pt;}
.y10d{bottom:272.179600pt;}
.y10b{bottom:272.186533pt;}
.y13d{bottom:280.180061pt;}
.y58{bottom:282.462533pt;}
.yf2{bottom:282.595867pt;}
.yd1{bottom:282.597867pt;}
.y84{bottom:282.729200pt;}
.y193{bottom:284.678667pt;}
.y10c{bottom:286.846267pt;}
.y10a{bottom:286.853200pt;}
.y21{bottom:286.936933pt;}
.y192{bottom:298.012000pt;}
.y158{bottom:298.102533pt;}
.y57{bottom:298.462533pt;}
.yf1{bottom:298.595867pt;}
.yd0{bottom:298.597867pt;}
.y83{bottom:298.729200pt;}
.y20{bottom:302.936933pt;}
.y191{bottom:311.345333pt;}
.y109{bottom:312.634533pt;}
.y56{bottom:314.462533pt;}
.yf0{bottom:314.595867pt;}
.ycf{bottom:314.597867pt;}
.y82{bottom:314.729200pt;}
.y1f{bottom:318.936933pt;}
.y190{bottom:324.678667pt;}
.y13e{bottom:326.421162pt;}
.y101{bottom:328.443200pt;}
.yfe{bottom:328.453867pt;}
.y55{bottom:330.462533pt;}
.yef{bottom:330.595867pt;}
.yce{bottom:330.597867pt;}
.y81{bottom:330.729200pt;}
.y1e{bottom:334.936933pt;}
.y18f{bottom:338.012000pt;}
.y108{bottom:338.415867pt;}
.yae{bottom:342.635200pt;}
.y147{bottom:343.430227pt;}
.y54{bottom:346.462533pt;}
.yee{bottom:346.595867pt;}
.ycd{bottom:346.597867pt;}
.y80{bottom:346.729200pt;}
.y1d{bottom:350.936933pt;}
.y18e{bottom:351.345333pt;}
.y142{bottom:356.366533pt;}
.y138{bottom:357.617600pt;}
.y53{bottom:362.462533pt;}
.yed{bottom:362.595867pt;}
.ycc{bottom:362.597867pt;}
.y7f{bottom:362.729200pt;}
.y18d{bottom:364.678667pt;}
.y1c{bottom:366.936933pt;}
.y107{bottom:367.208000pt;}
.y13f{bottom:372.639988pt;}
.y146{bottom:372.971333pt;}
.y18c{bottom:378.012000pt;}
.y157{bottom:378.102533pt;}
.y52{bottom:378.462533pt;}
.yec{bottom:378.595867pt;}
.ycb{bottom:378.597867pt;}
.y7e{bottom:378.729200pt;}
.y1b{bottom:382.936933pt;}
.y106{bottom:384.541333pt;}
.y18b{bottom:391.345333pt;}
.y51{bottom:394.462533pt;}
.yeb{bottom:394.595867pt;}
.yca{bottom:394.597867pt;}
.y7d{bottom:394.729200pt;}
.y1a{bottom:398.936933pt;}
.y18a{bottom:404.678667pt;}
.y123{bottom:405.238400pt;}
.y50{bottom:410.462533pt;}
.yea{bottom:410.595867pt;}
.y7c{bottom:410.729200pt;}
.y2c{bottom:414.936933pt;}
.y189{bottom:418.012000pt;}
.y140{bottom:418.858815pt;}
.yc9{bottom:426.237867pt;}
.y4f{bottom:426.462533pt;}
.ye9{bottom:426.595867pt;}
.y7b{bottom:426.729200pt;}
.y19{bottom:430.576933pt;}
.y2b{bottom:430.936933pt;}
.y188{bottom:431.345333pt;}
.y105{bottom:438.145067pt;}
.y156{bottom:442.102533pt;}
.yc8{bottom:442.237867pt;}
.y4e{bottom:442.462533pt;}
.ye8{bottom:442.595867pt;}
.y7a{bottom:442.729200pt;}
.y187{bottom:444.678667pt;}
.y104{bottom:452.139733pt;}
.y186{bottom:458.012000pt;}
.y4d{bottom:458.462533pt;}
.ye7{bottom:458.595867pt;}
.y103{bottom:466.134400pt;}
.y185{bottom:471.345333pt;}
.y79{bottom:474.369200pt;}
.y4c{bottom:474.462533pt;}
.yc7{bottom:474.464533pt;}
.ye6{bottom:474.595867pt;}
.y184{bottom:484.678667pt;}
.y120{bottom:487.052000pt;}
.y78{bottom:490.369200pt;}
.y4b{bottom:490.462533pt;}
.yc6{bottom:490.464533pt;}
.y122{bottom:490.527467pt;}
.ye5{bottom:490.595867pt;}
.y183{bottom:498.012000pt;}
.y16{bottom:499.123733pt;}
.y4a{bottom:506.462533pt;}
.yc5{bottom:506.464533pt;}
.ye4{bottom:506.595867pt;}
.y11f{bottom:507.084533pt;}
.y182{bottom:511.345333pt;}
.y128{bottom:513.546667pt;}
.y118{bottom:520.535200pt;}
.y49{bottom:522.462533pt;}
.yc4{bottom:522.464533pt;}
.y77{bottom:522.595867pt;}
.y15{bottom:523.430400pt;}
.y181{bottom:524.678667pt;}
.y127{bottom:527.541333pt;}
.y180{bottom:538.012000pt;}
.y48{bottom:538.462533pt;}
.yc3{bottom:538.464533pt;}
.y76{bottom:538.595867pt;}
.y14{bottom:539.430400pt;}
.y126{bottom:541.536000pt;}
.y17f{bottom:551.345333pt;}
.y155{bottom:554.102533pt;}
.y47{bottom:554.462533pt;}
.yc2{bottom:554.464533pt;}
.y75{bottom:554.595867pt;}
.y13{bottom:555.430400pt;}
.y100{bottom:558.053867pt;}
.yfd{bottom:558.064533pt;}
.y135{bottom:562.074667pt;}
.y17e{bottom:564.678667pt;}
.y137{bottom:565.550267pt;}
.ye3{bottom:570.235867pt;}
.y46{bottom:570.462533pt;}
.yc1{bottom:570.464533pt;}
.y74{bottom:570.595867pt;}
.y12{bottom:571.430400pt;}
.y17d{bottom:578.012000pt;}
.y119{bottom:579.244533pt;}
.y134{bottom:581.810933pt;}
.ye2{bottom:586.235867pt;}
.y45{bottom:586.462533pt;}
.yc0{bottom:586.464533pt;}
.y73{bottom:586.595867pt;}
.y11{bottom:587.430400pt;}
.y17c{bottom:591.345333pt;}
.y12b{bottom:595.026933pt;}
.yaf{bottom:598.694400pt;}
.yad{bottom:598.699200pt;}
.y44{bottom:602.462533pt;}
.ybf{bottom:602.464533pt;}
.y72{bottom:602.595867pt;}
.y10{bottom:603.430400pt;}
.y17b{bottom:604.678667pt;}
.y94{bottom:616.647200pt;}
.y17a{bottom:618.012000pt;}
.y43{bottom:618.462533pt;}
.ybe{bottom:618.464533pt;}
.y71{bottom:618.595867pt;}
.yf{bottom:619.430400pt;}
.y179{bottom:631.345333pt;}
.y12c{bottom:633.202933pt;}
.y42{bottom:634.462533pt;}
.ybd{bottom:634.464533pt;}
.yaa{bottom:634.475867pt;}
.y70{bottom:634.595867pt;}
.ye{bottom:635.430400pt;}
.y11a{bottom:637.953867pt;}
.y178{bottom:644.678667pt;}
.y41{bottom:650.462533pt;}
.ya9{bottom:650.475867pt;}
.y6f{bottom:650.595867pt;}
.yd{bottom:651.430400pt;}
.y177{bottom:658.012000pt;}
.y125{bottom:661.517067pt;}
.ybc{bottom:666.104533pt;}
.y40{bottom:666.462533pt;}
.ya8{bottom:666.475867pt;}
.y6e{bottom:666.595867pt;}
.yc{bottom:667.430400pt;}
.y176{bottom:671.345333pt;}
.y12d{bottom:671.389600pt;}
.y3f{bottom:682.462533pt;}
.ya7{bottom:682.475867pt;}
.y6d{bottom:682.595867pt;}
.y175{bottom:684.678667pt;}
.y11b{bottom:696.663200pt;}
.ybb{bottom:697.984533pt;}
.y174{bottom:698.012000pt;}
.y3e{bottom:698.462533pt;}
.ya6{bottom:698.475867pt;}
.y6c{bottom:698.595867pt;}
.y124{bottom:700.859467pt;}
.yb{bottom:707.568000pt;}
.y12e{bottom:709.586933pt;}
.y173{bottom:711.345333pt;}
.y3d{bottom:714.462533pt;}
.ya5{bottom:714.475867pt;}
.y6b{bottom:714.595867pt;}
.ya{bottom:720.940000pt;}
.y172{bottom:724.678667pt;}
.y3c{bottom:730.462533pt;}
.ya4{bottom:730.475867pt;}
.y6a{bottom:730.595867pt;}
.y13a{bottom:733.668800pt;}
.y9{bottom:734.829333pt;}
.y171{bottom:738.012000pt;}
.y3b{bottom:746.462533pt;}
.yba{bottom:746.464533pt;}
.ya3{bottom:746.475867pt;}
.y69{bottom:746.595867pt;}
.y8{bottom:746.829867pt;}
.y12f{bottom:747.773600pt;}
.y170{bottom:751.345333pt;}
.y11c{bottom:755.393867pt;}
.y7{bottom:758.829867pt;}
.y3a{bottom:762.462533pt;}
.yb9{bottom:762.464533pt;}
.ya2{bottom:762.475867pt;}
.y68{bottom:762.595867pt;}
.y16f{bottom:764.678667pt;}
.y139{bottom:765.662267pt;}
.y16e{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.yb8{bottom:778.464533pt;}
.ya1{bottom:778.475867pt;}
.y67{bottom:778.595867pt;}
.y130{bottom:785.970933pt;}
.yff{bottom:786.907200pt;}
.yfc{bottom:786.914933pt;}
.y6{bottom:789.183067pt;}
.y16d{bottom:791.345333pt;}
.y38{bottom:794.462533pt;}
.yb7{bottom:794.464533pt;}
.ya0{bottom:794.475867pt;}
.y66{bottom:794.595867pt;}
.y16c{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.yb6{bottom:810.464533pt;}
.y9f{bottom:810.475867pt;}
.y65{bottom:810.595867pt;}
.y11d{bottom:814.103200pt;}
.y16b{bottom:818.012000pt;}
.y131{bottom:824.168267pt;}
.y36{bottom:826.462533pt;}
.yb5{bottom:826.464533pt;}
.y9e{bottom:826.475867pt;}
.y64{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y16a{bottom:831.345333pt;}
.y154{bottom:842.102533pt;}
.y97{bottom:842.235867pt;}
.y35{bottom:842.462533pt;}
.yb4{bottom:842.464533pt;}
.y9d{bottom:842.475867pt;}
.y63{bottom:842.595867pt;}
.y169{bottom:844.678667pt;}
.y168{bottom:858.012000pt;}
.y96{bottom:858.235867pt;}
.y34{bottom:858.462533pt;}
.yb3{bottom:858.464533pt;}
.y9c{bottom:858.475867pt;}
.y132{bottom:862.354933pt;}
.y4{bottom:862.635733pt;}
.y167{bottom:871.345333pt;}
.y11e{bottom:872.812533pt;}
.y62{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.yb2{bottom:874.464533pt;}
.y9b{bottom:874.475867pt;}
.y166{bottom:884.678667pt;}
.y32{bottom:890.462533pt;}
.yb1{bottom:890.464533pt;}
.ye1{bottom:890.468533pt;}
.y9a{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y165{bottom:898.012000pt;}
.y133{bottom:900.552267pt;}
.y31{bottom:906.462533pt;}
.ye0{bottom:906.468533pt;}
.y99{bottom:906.475867pt;}
.y164{bottom:911.345333pt;}
.yf8{bottom:922.102533pt;}
.yb0{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.ydf{bottom:922.468533pt;}
.y98{bottom:922.475867pt;}
.y163{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y102{bottom:1006.576533pt;}
.y162{bottom:1006.590133pt;}
.y92{bottom:1006.594400pt;}
.y14a{bottom:1006.595333pt;}
.y196{bottom:1006.598667pt;}
.y95{bottom:1006.599200pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:25.255208pt;}
.h2{height:27.197917pt;}
.hb{height:29.140625pt;}
.h6{height:29.160156pt;}
.h13{height:29.625000pt;}
.h10{height:29.645833pt;}
.h1d{height:30.953215pt;}
.he{height:31.083333pt;}
.hd{height:31.104167pt;}
.h17{height:31.498698pt;}
.h1a{height:31.927767pt;}
.h14{height:31.943233pt;}
.h19{height:31.970433pt;}
.h15{height:31.970967pt;}
.h1b{height:31.984300pt;}
.h1f{height:34.309864pt;}
.hf{height:37.031250pt;}
.hc{height:37.057292pt;}
.h20{height:37.293347pt;}
.ha{height:38.828125pt;}
.h8{height:38.854167pt;}
.h9{height:38.880208pt;}
.h11{height:39.926108pt;}
.h12{height:39.963442pt;}
.h5{height:40.769531pt;}
.h21{height:43.626680pt;}
.h18{height:46.321615pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1e{height:365.597333pt;}
.h1c{height:371.468000pt;}
.h16{height:419.089333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:547.565333pt;}
.w4{width:548.032000pt;}
.w3{width:569.088000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:9.417867pt;}
.x3c{left:11.151200pt;}
.x3a{left:22.557733pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1a{left:88.819733pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x33{left:102.858667pt;}
.x45{left:109.606533pt;}
.x39{left:113.385333pt;}
.x6{left:117.170133pt;}
.xd{left:128.631467pt;}
.x2d{left:132.517333pt;}
.x38{left:135.943062pt;}
.x31{left:138.407733pt;}
.x37{left:147.291733pt;}
.x32{left:150.375733pt;}
.x1b{left:152.745067pt;}
.x2b{left:153.689333pt;}
.x2a{left:164.153333pt;}
.x41{left:169.044800pt;}
.x3b{left:171.903067pt;}
.x2c{left:176.356000pt;}
.x2f{left:182.862533pt;}
.x5{left:189.223467pt;}
.x3{left:198.702667pt;}
.x35{left:202.986000pt;}
.x16{left:206.542533pt;}
.x1c{left:211.202400pt;}
.x1d{left:224.557067pt;}
.x19{left:245.534400pt;}
.x40{left:252.982400pt;}
.x1e{left:281.232133pt;}
.x1f{left:296.368133pt;}
.x3d{left:327.151733pt;}
.x20{left:351.635200pt;}
.x21{left:355.389867pt;}
.x34{left:360.596533pt;}
.x18{left:368.873067pt;}
.x29{left:374.158667pt;}
.xa{left:404.481333pt;}
.xe{left:406.284800pt;}
.x12{left:425.195867pt;}
.x7{left:427.090133pt;}
.x43{left:428.976533pt;}
.xf{left:436.551467pt;}
.x22{left:443.519200pt;}
.x46{left:447.910533pt;}
.x13{left:455.435867pt;}
.x8{left:457.330133pt;}
.x42{left:511.004800pt;}
.x23{left:513.554000pt;}
.x17{left:515.049333pt;}
.x24{left:526.908667pt;}
.x25{left:583.594267pt;}
.x11{left:589.770933pt;}
.x3e{left:594.710267pt;}
.x26{left:598.730267pt;}
.x36{left:611.950133pt;}
.x2{left:616.324800pt;}
.x3f{left:618.190076pt;}
.x30{left:620.085600pt;}
.x44{left:642.320533pt;}
.x10{left:648.250800pt;}
.x27{left:653.997333pt;}
.x28{left:657.752000pt;}
.x47{left:662.007467pt;}
.x15{left:667.144267pt;}
.x14{left:690.717600pt;}
}




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