
    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_8ebd393086616837ae4a9d00.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_a9c57915724211a123df3b0b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_31ab20b9350601b44deaf452.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_16a1d95efd37589a0faaf076.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_5b4ed05024c653eaf20b6ee2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926270;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_a5b3dac972f77e5a60bbc369.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_feca30bc2e648216419f8783.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_6cba6092607c0f713dfd3059.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_de162941439d59b9a44a1648.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_f4bbdba98f8004ed0b031979.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_1780e1bdbb3c61af1159595c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-15.442800px;}
.v3{vertical-align:-4.054800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:19.945200px;}
.v1{vertical-align:21.619200px;}
.ls64{letter-spacing:-2.640000px;}
.ls63{letter-spacing:-1.380000px;}
.ls17{letter-spacing:-0.780000px;}
.ls48{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.420000px;}
.ls4c{letter-spacing:-0.336000px;}
.ls39{letter-spacing:-0.300000px;}
.ls3a{letter-spacing:-0.240000px;}
.ls85{letter-spacing:-0.192000px;}
.ls86{letter-spacing:-0.096000px;}
.ls19{letter-spacing:-0.060000px;}
.ls2c{letter-spacing:-0.048000px;}
.ls18{letter-spacing:-0.045000px;}
.ls16{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006000px;}
.ls52{letter-spacing:0.048000px;}
.ls3c{letter-spacing:0.060000px;}
.ls49{letter-spacing:0.096000px;}
.ls1a{letter-spacing:0.120000px;}
.ls70{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.180000px;}
.ls67{letter-spacing:0.192000px;}
.ls36{letter-spacing:0.230400px;}
.ls32{letter-spacing:0.240000px;}
.ls80{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls4b{letter-spacing:0.336000px;}
.ls15{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.384000px;}
.ls37{letter-spacing:0.420000px;}
.ls61{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.480000px;}
.ls47{letter-spacing:0.528000px;}
.ls35{letter-spacing:0.540000px;}
.ls71{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.600000px;}
.ls30{letter-spacing:0.609000px;}
.ls6f{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.660000px;}
.ls50{letter-spacing:0.672000px;}
.ls3{letter-spacing:0.720000px;}
.ls77{letter-spacing:0.768000px;}
.lse{letter-spacing:0.780000px;}
.ls6c{letter-spacing:0.816000px;}
.ls23{letter-spacing:0.840000px;}
.ls83{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.900000px;}
.ls62{letter-spacing:0.912000px;}
.lsb{letter-spacing:0.960000px;}
.ls7e{letter-spacing:1.008000px;}
.ls1f{letter-spacing:1.020000px;}
.ls68{letter-spacing:1.056000px;}
.lsa{letter-spacing:1.080000px;}
.ls78{letter-spacing:1.104000px;}
.ls33{letter-spacing:1.140000px;}
.ls6e{letter-spacing:1.152000px;}
.ls41{letter-spacing:1.200000px;}
.ls4a{letter-spacing:1.248000px;}
.ls31{letter-spacing:1.260000px;}
.ls4f{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.320000px;}
.ls51{letter-spacing:1.344000px;}
.ls69{letter-spacing:1.392000px;}
.ls10{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.500000px;}
.ls13{letter-spacing:1.560000px;}
.ls73{letter-spacing:1.584000px;}
.ls26{letter-spacing:1.620000px;}
.ls81{letter-spacing:1.632000px;}
.ls57{letter-spacing:1.680000px;}
.ls76{letter-spacing:1.728000px;}
.ls34{letter-spacing:1.740000px;}
.ls74{letter-spacing:1.776000px;}
.ls1e{letter-spacing:1.800000px;}
.ls7f{letter-spacing:1.824000px;}
.ls22{letter-spacing:1.860000px;}
.ls8{letter-spacing:1.920000px;}
.ls11{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.040000px;}
.ls3d{letter-spacing:2.100000px;}
.lsf{letter-spacing:2.160000px;}
.ls4e{letter-spacing:2.220000px;}
.ls7a{letter-spacing:2.256000px;}
.ls55{letter-spacing:2.280000px;}
.ls75{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.340000px;}
.ls25{letter-spacing:2.400000px;}
.ls2a{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.580000px;}
.ls6d{letter-spacing:2.592000px;}
.ls14{letter-spacing:2.640000px;}
.ls60{letter-spacing:2.700000px;}
.ls58{letter-spacing:2.760000px;}
.ls79{letter-spacing:2.784000px;}
.ls27{letter-spacing:2.820000px;}
.ls6b{letter-spacing:2.832000px;}
.ls53{letter-spacing:2.880000px;}
.ls40{letter-spacing:2.940000px;}
.ls20{letter-spacing:3.000000px;}
.ls12{letter-spacing:3.060000px;}
.ls65{letter-spacing:3.072000px;}
.ls44{letter-spacing:3.180000px;}
.ls42{letter-spacing:3.240000px;}
.ls82{letter-spacing:3.264000px;}
.ls5e{letter-spacing:3.300000px;}
.ls7b{letter-spacing:3.408000px;}
.ls9{letter-spacing:3.480000px;}
.ls66{letter-spacing:3.504000px;}
.ls5c{letter-spacing:3.540000px;}
.ls6a{letter-spacing:3.552000px;}
.ls2f{letter-spacing:3.600000px;}
.ls2e{letter-spacing:3.660000px;}
.ls72{letter-spacing:3.744000px;}
.ls4d{letter-spacing:3.780000px;}
.ls84{letter-spacing:3.792000px;}
.ls21{letter-spacing:3.840000px;}
.ls43{letter-spacing:4.020000px;}
.ls7c{letter-spacing:4.128000px;}
.ls28{letter-spacing:4.320000px;}
.ls5{letter-spacing:4.440000px;}
.ls24{letter-spacing:4.500000px;}
.ls2d{letter-spacing:4.920000px;}
.ls3e{letter-spacing:5.220000px;}
.ls3b{letter-spacing:5.760000px;}
.ls5f{letter-spacing:6.240000px;}
.ls5d{letter-spacing:6.720000px;}
.ls5a{letter-spacing:6.840000px;}
.ls45{letter-spacing:6.960000px;}
.ls46{letter-spacing:7.500000px;}
.ls59{letter-spacing:7.740000px;}
.ls56{letter-spacing:9.480000px;}
.ls3f{letter-spacing:10.140000px;}
.ls5b{letter-spacing:11.760000px;}
.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;}
}
.ws67{word-spacing:-23.520000px;}
.wsb{word-spacing:-18.840000px;}
.ws63{word-spacing:-18.000000px;}
.ws62{word-spacing:-17.520000px;}
.wsd{word-spacing:-17.400000px;}
.ws38{word-spacing:-17.100000px;}
.ws4d{word-spacing:-16.920000px;}
.ws4c{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.wse{word-spacing:-16.620000px;}
.ws66{word-spacing:-16.140000px;}
.wsf{word-spacing:-16.080000px;}
.ws65{word-spacing:-15.900000px;}
.wsc{word-spacing:-15.780000px;}
.ws64{word-spacing:-15.600000px;}
.ws7f{word-spacing:-15.504000px;}
.wsa{word-spacing:-15.480000px;}
.ws4b{word-spacing:-15.420000px;}
.ws85{word-spacing:-15.408000px;}
.ws34{word-spacing:-15.360000px;}
.ws35{word-spacing:-15.240000px;}
.ws4e{word-spacing:-15.180000px;}
.ws9{word-spacing:-15.120000px;}
.ws36{word-spacing:-15.060000px;}
.ws37{word-spacing:-15.000000px;}
.ws83{word-spacing:-14.784000px;}
.ws81{word-spacing:-13.776000px;}
.ws84{word-spacing:-13.440000px;}
.ws10{word-spacing:-13.344000px;}
.ws82{word-spacing:-13.296000px;}
.ws86{word-spacing:-13.056000px;}
.ws69{word-spacing:-12.912000px;}
.ws88{word-spacing:-12.432000px;}
.ws87{word-spacing:-12.288000px;}
.ws80{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.508400px;}
.ws68{word-spacing:-9.360000px;}
.ws18{word-spacing:-3.840000px;}
.ws2f{word-spacing:-3.660000px;}
.ws76{word-spacing:-3.600000px;}
.ws89{word-spacing:-3.504000px;}
.ws73{word-spacing:-3.180000px;}
.ws78{word-spacing:-2.940000px;}
.ws3{word-spacing:-2.886000px;}
.ws53{word-spacing:-2.880000px;}
.ws7c{word-spacing:-2.700000px;}
.ws3e{word-spacing:-2.640000px;}
.ws58{word-spacing:-2.580000px;}
.ws6b{word-spacing:-2.520000px;}
.ws96{word-spacing:-2.448000px;}
.ws23{word-spacing:-2.400000px;}
.ws56{word-spacing:-2.340000px;}
.ws55{word-spacing:-2.220000px;}
.ws54{word-spacing:-2.160000px;}
.ws3b{word-spacing:-2.100000px;}
.ws1c{word-spacing:-2.040000px;}
.ws57{word-spacing:-1.920000px;}
.ws39{word-spacing:-1.860000px;}
.ws9b{word-spacing:-1.776000px;}
.ws2c{word-spacing:-1.740000px;}
.ws97{word-spacing:-1.728000px;}
.wsa0{word-spacing:-1.632000px;}
.ws51{word-spacing:-1.620000px;}
.ws27{word-spacing:-1.560000px;}
.ws17{word-spacing:-1.440000px;}
.ws8f{word-spacing:-1.392000px;}
.ws60{word-spacing:-1.344000px;}
.ws30{word-spacing:-1.320000px;}
.ws5f{word-spacing:-1.296000px;}
.ws26{word-spacing:-1.260000px;}
.ws4a{word-spacing:-1.248000px;}
.ws91{word-spacing:-1.152000px;}
.ws2b{word-spacing:-1.140000px;}
.ws95{word-spacing:-1.104000px;}
.ws14{word-spacing:-1.080000px;}
.ws1d{word-spacing:-1.020000px;}
.ws7e{word-spacing:-1.008000px;}
.ws16{word-spacing:-0.960000px;}
.ws29{word-spacing:-0.900000px;}
.ws33{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.840000px;}
.ws9d{word-spacing:-0.816000px;}
.ws1a{word-spacing:-0.780000px;}
.ws92{word-spacing:-0.768000px;}
.ws7{word-spacing:-0.720000px;}
.ws5d{word-spacing:-0.660000px;}
.wsa5{word-spacing:-0.624000px;}
.ws8a{word-spacing:-0.576000px;}
.ws7a{word-spacing:-0.540000px;}
.ws44{word-spacing:-0.528000px;}
.ws13{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.432000px;}
.ws71{word-spacing:-0.420000px;}
.ws9a{word-spacing:-0.384000px;}
.ws19{word-spacing:-0.360000px;}
.ws90{word-spacing:-0.336000px;}
.ws9c{word-spacing:-0.288000px;}
.ws2a{word-spacing:-0.240000px;}
.ws31{word-spacing:-0.180000px;}
.ws46{word-spacing:-0.144000px;}
.ws11{word-spacing:-0.120000px;}
.ws99{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.045000px;}
.ws3a{word-spacing:0.060000px;}
.ws9e{word-spacing:0.240000px;}
.ws6e{word-spacing:0.300000px;}
.ws3c{word-spacing:0.360000px;}
.ws8b{word-spacing:0.384000px;}
.wsa3{word-spacing:0.432000px;}
.ws6f{word-spacing:0.480000px;}
.ws3f{word-spacing:0.540000px;}
.ws40{word-spacing:0.600000px;}
.ws98{word-spacing:0.672000px;}
.ws52{word-spacing:0.720000px;}
.ws7b{word-spacing:0.780000px;}
.ws8e{word-spacing:0.912000px;}
.ws61{word-spacing:0.960000px;}
.ws5a{word-spacing:1.020000px;}
.ws79{word-spacing:1.080000px;}
.ws12{word-spacing:1.140000px;}
.ws21{word-spacing:1.320000px;}
.ws70{word-spacing:1.380000px;}
.wsa1{word-spacing:1.392000px;}
.ws94{word-spacing:1.440000px;}
.ws5b{word-spacing:1.500000px;}
.ws77{word-spacing:1.560000px;}
.ws6d{word-spacing:1.620000px;}
.wsa4{word-spacing:1.632000px;}
.ws5c{word-spacing:1.680000px;}
.ws24{word-spacing:1.740000px;}
.ws41{word-spacing:1.800000px;}
.ws5{word-spacing:1.860000px;}
.ws8c{word-spacing:2.016000px;}
.ws32{word-spacing:2.100000px;}
.ws25{word-spacing:2.160000px;}
.ws2d{word-spacing:2.580000px;}
.ws47{word-spacing:2.592000px;}
.ws9f{word-spacing:2.832000px;}
.ws93{word-spacing:3.168000px;}
.ws75{word-spacing:3.240000px;}
.ws8d{word-spacing:3.264000px;}
.ws6a{word-spacing:3.420000px;}
.ws5e{word-spacing:3.456000px;}
.ws2e{word-spacing:3.480000px;}
.ws6c{word-spacing:3.660000px;}
.wsa2{word-spacing:3.696000px;}
.ws3d{word-spacing:3.780000px;}
.ws45{word-spacing:3.888000px;}
.ws1b{word-spacing:3.900000px;}
.ws42{word-spacing:3.936000px;}
.ws48{word-spacing:3.984000px;}
.ws22{word-spacing:4.320000px;}
.ws43{word-spacing:4.464000px;}
.ws72{word-spacing:4.620000px;}
.ws59{word-spacing:4.680000px;}
.ws28{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws6{word-spacing:4.980000px;}
.ws49{word-spacing:5.232000px;}
.ws74{word-spacing:7.620000px;}
.ws1f{word-spacing:300.528000px;}
.ws20{word-spacing:304.512000px;}
.ws50{word-spacing:477.216000px;}
.ws4f{word-spacing:530.304000px;}
.ws1e{word-spacing:786.480000px;}
._1b{margin-left:-2898.144000px;}
._30{margin-left:-2874.336000px;}
._4{margin-left:-7.440000px;}
._38{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.939608px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.050000px;}
._5{width:1.059608px;}
._b{width:2.310000px;}
._9{width:3.600000px;}
._6{width:4.650000px;}
._7{width:5.880000px;}
._a{width:7.020000px;}
._8{width:8.760000px;}
._12{width:62.304000px;}
._e{width:91.728000px;}
._10{width:109.152000px;}
._15{width:165.168000px;}
._20{width:170.352000px;}
._29{width:176.979608px;}
._1e{width:183.264000px;}
._2b{width:186.570000px;}
._26{width:187.680000px;}
._19{width:204.822000px;}
._2c{width:220.704000px;}
._27{width:222.150000px;}
._33{width:224.787608px;}
._32{width:225.888000px;}
._17{width:231.132000px;}
._23{width:255.843608px;}
._22{width:277.436392px;}
._1f{width:279.696000px;}
._25{width:281.910000px;}
._1c{width:306.768000px;}
._24{width:343.299608px;}
._13{width:374.307608px;}
._14{width:387.600000px;}
._f{width:391.824000px;}
._31{width:398.976000px;}
._d{width:416.928000px;}
._18{width:437.088000px;}
._16{width:455.100000px;}
._11{width:460.758000px;}
._2e{width:475.782000px;}
._2f{width:492.240000px;}
._28{width:510.480000px;}
._2a{width:513.939608px;}
._1d{width:515.328000px;}
._1a{width:541.011608px;}
._35{width:556.179608px;}
._36{width:577.386000px;}
._2d{width:605.952000px;}
._21{width:630.150000px;}
._37{width:673.536000px;}
._34{width:764.928000px;}
._c{width:771.792000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.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;}
.y2f{bottom:47.777250px;}
.y17e{bottom:80.263500px;}
.ye1{bottom:83.141400px;}
.y12a{bottom:83.635350px;}
.yec{bottom:84.381900px;}
.y1f{bottom:88.026750px;}
.yc0{bottom:91.253850px;}
.y11d{bottom:92.205900px;}
.y13c{bottom:95.121900px;}
.y17d{bottom:95.263500px;}
.ye0{bottom:98.885400px;}
.yeb{bottom:100.125900px;}
.y6f{bottom:100.942500px;}
.y129{bottom:101.635350px;}
.y8c{bottom:102.280950px;}
.y1e{bottom:103.023000px;}
.y11c{bottom:108.453900px;}
.ybf{bottom:109.253850px;}
.y13b{bottom:110.121900px;}
.y17c{bottom:110.263500px;}
.yea{bottom:115.869900px;}
.y6e{bottom:117.442500px;}
.y8b{bottom:118.528950px;}
.y128{bottom:119.635350px;}
.y11b{bottom:124.701900px;}
.y13a{bottom:125.121900px;}
.y17b{bottom:125.263500px;}
.ybe{bottom:127.253850px;}
.ye9{bottom:131.613900px;}
.y6d{bottom:133.942500px;}
.y8a{bottom:134.776950px;}
.y127{bottom:137.635350px;}
.y139{bottom:140.121900px;}
.y17a{bottom:140.263500px;}
.ybd{bottom:145.253850px;}
.ye8{bottom:147.357900px;}
.y6c{bottom:150.442500px;}
.y89{bottom:151.024950px;}
.y138{bottom:155.121900px;}
.y179{bottom:155.263500px;}
.y126{bottom:155.635350px;}
.y11a{bottom:156.213900px;}
.y2a{bottom:160.095450px;}
.ybc{bottom:163.253850px;}
.y6b{bottom:166.690500px;}
.y88{bottom:167.272950px;}
.y137{bottom:170.121900px;}
.y178{bottom:170.263500px;}
.y125{bottom:173.635350px;}
.y29{bottom:178.095450px;}
.ybb{bottom:181.253850px;}
.y6a{bottom:183.190500px;}
.y87{bottom:183.520950px;}
.y136{bottom:185.121900px;}
.y177{bottom:185.263500px;}
.y119{bottom:191.109000px;}
.y124{bottom:191.635350px;}
.y28{bottom:196.095450px;}
.yba{bottom:199.253850px;}
.y69{bottom:199.438500px;}
.y86{bottom:199.768950px;}
.y135{bottom:200.121900px;}
.y176{bottom:200.263500px;}
.y123{bottom:209.635350px;}
.y118{bottom:210.609000px;}
.y27{bottom:214.095450px;}
.y134{bottom:215.121900px;}
.y175{bottom:215.263500px;}
.y68{bottom:215.686500px;}
.y85{bottom:216.016950px;}
.yb9{bottom:217.253850px;}
.y122{bottom:227.635350px;}
.y117{bottom:230.109000px;}
.y133{bottom:230.121900px;}
.y174{bottom:230.263500px;}
.y26{bottom:232.095450px;}
.y67{bottom:232.186500px;}
.y84{bottom:232.264950px;}
.yb8{bottom:235.253850px;}
.y173{bottom:245.263500px;}
.y121{bottom:245.635350px;}
.y66{bottom:248.434500px;}
.y25{bottom:250.095450px;}
.yb7{bottom:253.253850px;}
.y172{bottom:260.263500px;}
.y132{bottom:263.230350px;}
.y120{bottom:263.635350px;}
.y83{bottom:263.776950px;}
.y65{bottom:264.682500px;}
.y24{bottom:268.095450px;}
.yb6{bottom:271.253850px;}
.y171{bottom:275.263500px;}
.y116{bottom:277.598700px;}
.y64{bottom:281.182500px;}
.y107{bottom:281.785350px;}
.y23{bottom:286.095450px;}
.yb5{bottom:289.253850px;}
.y170{bottom:290.263500px;}
.y115{bottom:293.342700px;}
.y63{bottom:297.430500px;}
.y82{bottom:298.675350px;}
.y11f{bottom:299.230350px;}
.y106{bottom:299.785350px;}
.y22{bottom:304.095450px;}
.y16f{bottom:305.263500px;}
.yb4{bottom:307.253850px;}
.y114{bottom:309.086700px;}
.y62{bottom:313.678500px;}
.y131{bottom:317.770350px;}
.y105{bottom:317.785350px;}
.y16e{bottom:320.263500px;}
.y21{bottom:322.095450px;}
.y113{bottom:324.830700px;}
.yb3{bottom:325.253850px;}
.y61{bottom:329.926500px;}
.y16d{bottom:335.263500px;}
.y130{bottom:335.365350px;}
.y104{bottom:335.785350px;}
.y2c{bottom:340.095450px;}
.y112{bottom:340.574700px;}
.yb2{bottom:343.253850px;}
.y60{bottom:346.426500px;}
.y16c{bottom:350.263500px;}
.y81{bottom:353.770350px;}
.y103{bottom:353.785350px;}
.y111{bottom:356.318700px;}
.y20{bottom:357.690450px;}
.y2b{bottom:358.095450px;}
.yb1{bottom:361.253850px;}
.y5f{bottom:362.926500px;}
.y16b{bottom:365.263500px;}
.y12f{bottom:371.365350px;}
.y80{bottom:371.770350px;}
.y102{bottom:371.785350px;}
.y110{bottom:372.062700px;}
.y5e{bottom:379.174500px;}
.yb0{bottom:379.253850px;}
.y16a{bottom:380.263500px;}
.y10f{bottom:387.806700px;}
.y7f{bottom:389.770350px;}
.y101{bottom:389.785350px;}
.y169{bottom:395.263500px;}
.y5d{bottom:395.674500px;}
.yaf{bottom:397.253850px;}
.y7e{bottom:407.770350px;}
.y100{bottom:407.785350px;}
.y168{bottom:410.263500px;}
.y5c{bottom:412.174500px;}
.yae{bottom:415.253850px;}
.y167{bottom:425.263500px;}
.y7d{bottom:425.770350px;}
.yff{bottom:425.785350px;}
.y5b{bottom:428.674500px;}
.yad{bottom:433.253850px;}
.y1d{bottom:435.517950px;}
.y166{bottom:440.263500px;}
.y12e{bottom:443.365350px;}
.y7c{bottom:443.770350px;}
.yfe{bottom:443.785350px;}
.y5a{bottom:445.174500px;}
.yac{bottom:451.253850px;}
.y165{bottom:455.263500px;}
.y59{bottom:461.422500px;}
.y7b{bottom:461.770350px;}
.yfd{bottom:461.785350px;}
.ydf{bottom:461.918850px;}
.y1c{bottom:462.862950px;}
.yab{bottom:469.253850px;}
.y164{bottom:470.263500px;}
.y58{bottom:477.670500px;}
.y7a{bottom:479.770350px;}
.yfc{bottom:479.785350px;}
.yde{bottom:479.918850px;}
.y1b{bottom:480.862950px;}
.y163{bottom:485.263500px;}
.yaa{bottom:487.253850px;}
.y57{bottom:493.918500px;}
.y12d{bottom:497.365350px;}
.y79{bottom:497.770350px;}
.yfb{bottom:497.785350px;}
.ydd{bottom:497.918850px;}
.y1a{bottom:498.862950px;}
.y162{bottom:500.263500px;}
.ya9{bottom:505.253850px;}
.y56{bottom:510.166500px;}
.y161{bottom:515.263500px;}
.y78{bottom:515.770350px;}
.yfa{bottom:515.785350px;}
.y19{bottom:516.862950px;}
.ya8{bottom:523.253850px;}
.y55{bottom:526.666500px;}
.y160{bottom:530.263500px;}
.ydc{bottom:533.513850px;}
.y77{bottom:533.770350px;}
.yf9{bottom:533.785350px;}
.y18{bottom:534.862950px;}
.ya7{bottom:541.253850px;}
.ye7{bottom:544.125900px;}
.y15f{bottom:545.263500px;}
.y76{bottom:551.770350px;}
.y17{bottom:552.862950px;}
.y54{bottom:558.178500px;}
.ya6{bottom:559.253850px;}
.ye6{bottom:559.869900px;}
.y15e{bottom:560.263500px;}
.yf8{bottom:569.380350px;}
.ydb{bottom:569.768850px;}
.y75{bottom:569.770350px;}
.y16{bottom:570.862950px;}
.y15d{bottom:575.263500px;}
.ye5{bottom:575.613900px;}
.ya5{bottom:577.253850px;}
.yda{bottom:587.768850px;}
.y74{bottom:587.770350px;}
.y15{bottom:588.862950px;}
.y15c{bottom:590.263500px;}
.ye4{bottom:591.357900px;}
.y53{bottom:593.080350px;}
.ya4{bottom:595.253850px;}
.y15b{bottom:605.263500px;}
.yd9{bottom:605.768850px;}
.y73{bottom:605.770350px;}
.y14{bottom:606.862950px;}
.ye3{bottom:607.101900px;}
.y52{bottom:612.580350px;}
.ya3{bottom:613.253850px;}
.y15a{bottom:620.263500px;}
.yd8{bottom:623.768850px;}
.y72{bottom:623.770350px;}
.yf7{bottom:623.920350px;}
.y13{bottom:624.862950px;}
.ya2{bottom:631.253850px;}
.y159{bottom:635.263500px;}
.y12c{bottom:641.365350px;}
.yd7{bottom:641.768850px;}
.y71{bottom:641.770350px;}
.yf6{bottom:641.920350px;}
.y12{bottom:642.862950px;}
.ya1{bottom:649.253850px;}
.y158{bottom:650.263500px;}
.y10e{bottom:657.676950px;}
.y51{bottom:659.635350px;}
.yd6{bottom:659.768850px;}
.y45{bottom:659.770350px;}
.yf5{bottom:659.920350px;}
.y11{bottom:660.862950px;}
.y157{bottom:665.263500px;}
.ya0{bottom:667.253850px;}
.y10d{bottom:673.420950px;}
.y50{bottom:677.635350px;}
.yd5{bottom:677.768850px;}
.y44{bottom:677.770350px;}
.yf4{bottom:677.920350px;}
.y10{bottom:678.862950px;}
.y156{bottom:680.263500px;}
.y9f{bottom:685.253850px;}
.y10c{bottom:689.164950px;}
.y155{bottom:695.263500px;}
.y4f{bottom:695.635350px;}
.yd4{bottom:695.768850px;}
.y43{bottom:695.770350px;}
.yf3{bottom:695.920350px;}
.yf{bottom:696.862950px;}
.y9e{bottom:703.253850px;}
.y154{bottom:710.263500px;}
.y4e{bottom:713.635350px;}
.yd3{bottom:713.768850px;}
.y42{bottom:713.770350px;}
.yf2{bottom:713.920350px;}
.y9d{bottom:721.253850px;}
.y153{bottom:725.263500px;}
.y4d{bottom:731.635350px;}
.yd2{bottom:731.768850px;}
.y41{bottom:731.770350px;}
.yf1{bottom:731.920350px;}
.y9c{bottom:739.253850px;}
.y152{bottom:740.263500px;}
.ye{bottom:742.017300px;}
.y4c{bottom:749.635350px;}
.yd1{bottom:749.768850px;}
.y40{bottom:749.770350px;}
.yf0{bottom:749.920350px;}
.yd{bottom:754.468050px;}
.y151{bottom:755.263500px;}
.y9b{bottom:757.253850px;}
.y4b{bottom:767.635350px;}
.yd0{bottom:767.768850px;}
.y3f{bottom:767.770350px;}
.yef{bottom:767.920350px;}
.y150{bottom:770.263500px;}
.y9a{bottom:775.253850px;}
.y14f{bottom:785.263500px;}
.y4a{bottom:785.635350px;}
.ycf{bottom:785.768850px;}
.y3e{bottom:785.770350px;}
.yee{bottom:785.920350px;}
.yc{bottom:790.044300px;}
.y99{bottom:793.253850px;}
.yb{bottom:799.683600px;}
.y14e{bottom:800.263500px;}
.y49{bottom:803.635350px;}
.yce{bottom:803.768850px;}
.y3d{bottom:803.770350px;}
.y98{bottom:811.253850px;}
.y14d{bottom:815.263500px;}
.ya{bottom:817.044300px;}
.yed{bottom:821.515350px;}
.y48{bottom:821.635350px;}
.ycd{bottom:821.768850px;}
.y3c{bottom:821.770350px;}
.y97{bottom:829.253850px;}
.y14c{bottom:830.263500px;}
.y9{bottom:830.544300px;}
.y47{bottom:839.635350px;}
.ycc{bottom:839.768850px;}
.y3b{bottom:839.770350px;}
.y8{bottom:840.183600px;}
.y14b{bottom:845.263500px;}
.y7{bottom:857.544300px;}
.ycb{bottom:857.768850px;}
.y3a{bottom:857.770350px;}
.y14a{bottom:860.263500px;}
.y96{bottom:864.094500px;}
.y46{bottom:875.230350px;}
.y149{bottom:875.263500px;}
.yca{bottom:875.768850px;}
.y39{bottom:875.770350px;}
.y95{bottom:879.700500px;}
.y6{bottom:887.830950px;}
.y148{bottom:890.263500px;}
.yc9{bottom:893.768850px;}
.y38{bottom:893.770350px;}
.y94{bottom:894.057600px;}
.y147{bottom:905.263500px;}
.y93{bottom:911.652600px;}
.yc8{bottom:911.768850px;}
.y37{bottom:911.770350px;}
.y146{bottom:920.263500px;}
.y92{bottom:929.652600px;}
.yc7{bottom:929.768850px;}
.y36{bottom:929.770350px;}
.y5{bottom:934.005000px;}
.y145{bottom:935.263500px;}
.yc6{bottom:947.768850px;}
.y35{bottom:947.770350px;}
.y144{bottom:950.263500px;}
.y143{bottom:965.263500px;}
.y12b{bottom:965.365350px;}
.y91{bottom:965.502600px;}
.yc5{bottom:965.768850px;}
.y34{bottom:965.770350px;}
.y4{bottom:970.465500px;}
.y142{bottom:980.263500px;}
.y90{bottom:983.502600px;}
.yc4{bottom:983.768850px;}
.y33{bottom:983.770350px;}
.y10b{bottom:983.785350px;}
.y141{bottom:995.263500px;}
.y8f{bottom:1001.502600px;}
.yc3{bottom:1001.768850px;}
.y32{bottom:1001.770350px;}
.y10a{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y140{bottom:1010.263500px;}
.yc2{bottom:1019.768850px;}
.y31{bottom:1019.770350px;}
.y109{bottom:1019.785350px;}
.y13f{bottom:1025.263500px;}
.y8e{bottom:1037.367600px;}
.yc1{bottom:1037.768850px;}
.y30{bottom:1037.770350px;}
.y108{bottom:1037.785350px;}
.y13e{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y13d{bottom:1132.413900px;}
.ye2{bottom:1132.418700px;}
.y17f{bottom:1132.423500px;}
.y11e{bottom:1132.425900px;}
.y8d{bottom:1132.444950px;}
.y70{bottom:1132.474500px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.683105px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.h11{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h14{height:37.520508px;}
.hd{height:41.689453px;}
.h12{height:42.117188px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.h9{height:43.740234px;}
.h13{height:44.958872px;}
.h15{height:47.381836px;}
.h5{height:49.138634px;}
.h10{height:52.646484px;}
.h16{height:54.266484px;}
.h3{height:56.786133px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.xf{left:78.661350px;}
.x1e{left:94.183800px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x23{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x1a{left:115.660350px;}
.x1c{left:118.015350px;}
.x25{left:123.307050px;}
.x3{left:125.433000px;}
.x6{left:131.816400px;}
.x1b{left:146.095350px;}
.x19{left:192.775350px;}
.x1f{left:198.673800px;}
.x18{left:211.105350px;}
.x5{left:212.876400px;}
.x1d{left:214.510350px;}
.x10{left:308.269350px;}
.x11{left:452.833350px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x14{left:478.350300px;}
.x7{left:480.476400px;}
.x24{left:482.591400px;}
.xe{left:491.105400px;}
.x22{left:503.858400px;}
.x15{left:512.370300px;}
.xd{left:525.275400px;}
.x20{left:556.996200px;}
.x21{left:596.100600px;}
.x13{left:663.492300px;}
.x2{left:693.365400px;}
.x12{left:735.049350px;}
.x17{left:756.429300px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v3{vertical-align:-3.604267pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:17.729067pt;}
.v1{vertical-align:19.217067pt;}
.ls64{letter-spacing:-2.346667pt;}
.ls63{letter-spacing:-1.226667pt;}
.ls17{letter-spacing:-0.693333pt;}
.ls48{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.373333pt;}
.ls4c{letter-spacing:-0.298667pt;}
.ls39{letter-spacing:-0.266667pt;}
.ls3a{letter-spacing:-0.213333pt;}
.ls85{letter-spacing:-0.170667pt;}
.ls86{letter-spacing:-0.085333pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls2c{letter-spacing:-0.042667pt;}
.ls18{letter-spacing:-0.040000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005333pt;}
.ls52{letter-spacing:0.042667pt;}
.ls3c{letter-spacing:0.053333pt;}
.ls49{letter-spacing:0.085333pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls70{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.160000pt;}
.ls67{letter-spacing:0.170667pt;}
.ls36{letter-spacing:0.204800pt;}
.ls32{letter-spacing:0.213333pt;}
.ls80{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls4b{letter-spacing:0.298667pt;}
.ls15{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.341333pt;}
.ls37{letter-spacing:0.373333pt;}
.ls61{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls47{letter-spacing:0.469333pt;}
.ls35{letter-spacing:0.480000pt;}
.ls71{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls30{letter-spacing:0.541333pt;}
.ls6f{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.586667pt;}
.ls50{letter-spacing:0.597333pt;}
.ls3{letter-spacing:0.640000pt;}
.ls77{letter-spacing:0.682667pt;}
.lse{letter-spacing:0.693333pt;}
.ls6c{letter-spacing:0.725333pt;}
.ls23{letter-spacing:0.746667pt;}
.ls83{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls62{letter-spacing:0.810667pt;}
.lsb{letter-spacing:0.853333pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls68{letter-spacing:0.938667pt;}
.lsa{letter-spacing:0.960000pt;}
.ls78{letter-spacing:0.981333pt;}
.ls33{letter-spacing:1.013333pt;}
.ls6e{letter-spacing:1.024000pt;}
.ls41{letter-spacing:1.066667pt;}
.ls4a{letter-spacing:1.109333pt;}
.ls31{letter-spacing:1.120000pt;}
.ls4f{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls51{letter-spacing:1.194667pt;}
.ls69{letter-spacing:1.237333pt;}
.ls10{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.333333pt;}
.ls13{letter-spacing:1.386667pt;}
.ls73{letter-spacing:1.408000pt;}
.ls26{letter-spacing:1.440000pt;}
.ls81{letter-spacing:1.450667pt;}
.ls57{letter-spacing:1.493333pt;}
.ls76{letter-spacing:1.536000pt;}
.ls34{letter-spacing:1.546667pt;}
.ls74{letter-spacing:1.578667pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls7f{letter-spacing:1.621333pt;}
.ls22{letter-spacing:1.653333pt;}
.ls8{letter-spacing:1.706667pt;}
.ls11{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.813333pt;}
.ls3d{letter-spacing:1.866667pt;}
.lsf{letter-spacing:1.920000pt;}
.ls4e{letter-spacing:1.973333pt;}
.ls7a{letter-spacing:2.005333pt;}
.ls55{letter-spacing:2.026667pt;}
.ls75{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.080000pt;}
.ls25{letter-spacing:2.133333pt;}
.ls2a{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.293333pt;}
.ls6d{letter-spacing:2.304000pt;}
.ls14{letter-spacing:2.346667pt;}
.ls60{letter-spacing:2.400000pt;}
.ls58{letter-spacing:2.453333pt;}
.ls79{letter-spacing:2.474667pt;}
.ls27{letter-spacing:2.506667pt;}
.ls6b{letter-spacing:2.517333pt;}
.ls53{letter-spacing:2.560000pt;}
.ls40{letter-spacing:2.613333pt;}
.ls20{letter-spacing:2.666667pt;}
.ls12{letter-spacing:2.720000pt;}
.ls65{letter-spacing:2.730667pt;}
.ls44{letter-spacing:2.826667pt;}
.ls42{letter-spacing:2.880000pt;}
.ls82{letter-spacing:2.901333pt;}
.ls5e{letter-spacing:2.933333pt;}
.ls7b{letter-spacing:3.029333pt;}
.ls9{letter-spacing:3.093333pt;}
.ls66{letter-spacing:3.114667pt;}
.ls5c{letter-spacing:3.146667pt;}
.ls6a{letter-spacing:3.157333pt;}
.ls2f{letter-spacing:3.200000pt;}
.ls2e{letter-spacing:3.253333pt;}
.ls72{letter-spacing:3.328000pt;}
.ls4d{letter-spacing:3.360000pt;}
.ls84{letter-spacing:3.370667pt;}
.ls21{letter-spacing:3.413333pt;}
.ls43{letter-spacing:3.573333pt;}
.ls7c{letter-spacing:3.669333pt;}
.ls28{letter-spacing:3.840000pt;}
.ls5{letter-spacing:3.946667pt;}
.ls24{letter-spacing:4.000000pt;}
.ls2d{letter-spacing:4.373333pt;}
.ls3e{letter-spacing:4.640000pt;}
.ls3b{letter-spacing:5.120000pt;}
.ls5f{letter-spacing:5.546667pt;}
.ls5d{letter-spacing:5.973333pt;}
.ls5a{letter-spacing:6.080000pt;}
.ls45{letter-spacing:6.186667pt;}
.ls46{letter-spacing:6.666667pt;}
.ls59{letter-spacing:6.880000pt;}
.ls56{letter-spacing:8.426667pt;}
.ls3f{letter-spacing:9.013333pt;}
.ls5b{letter-spacing:10.453333pt;}
.ws67{word-spacing:-20.906667pt;}
.wsb{word-spacing:-16.746667pt;}
.ws63{word-spacing:-16.000000pt;}
.ws62{word-spacing:-15.573333pt;}
.wsd{word-spacing:-15.466667pt;}
.ws38{word-spacing:-15.200000pt;}
.ws4d{word-spacing:-15.040000pt;}
.ws4c{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.wse{word-spacing:-14.773333pt;}
.ws66{word-spacing:-14.346667pt;}
.wsf{word-spacing:-14.293333pt;}
.ws65{word-spacing:-14.133333pt;}
.wsc{word-spacing:-14.026667pt;}
.ws64{word-spacing:-13.866667pt;}
.ws7f{word-spacing:-13.781333pt;}
.wsa{word-spacing:-13.760000pt;}
.ws4b{word-spacing:-13.706667pt;}
.ws85{word-spacing:-13.696000pt;}
.ws34{word-spacing:-13.653333pt;}
.ws35{word-spacing:-13.546667pt;}
.ws4e{word-spacing:-13.493333pt;}
.ws9{word-spacing:-13.440000pt;}
.ws36{word-spacing:-13.386667pt;}
.ws37{word-spacing:-13.333333pt;}
.ws83{word-spacing:-13.141333pt;}
.ws81{word-spacing:-12.245333pt;}
.ws84{word-spacing:-11.946667pt;}
.ws10{word-spacing:-11.861333pt;}
.ws82{word-spacing:-11.818667pt;}
.ws86{word-spacing:-11.605333pt;}
.ws69{word-spacing:-11.477333pt;}
.ws88{word-spacing:-11.050667pt;}
.ws87{word-spacing:-10.922667pt;}
.ws80{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.340800pt;}
.ws68{word-spacing:-8.320000pt;}
.ws18{word-spacing:-3.413333pt;}
.ws2f{word-spacing:-3.253333pt;}
.ws76{word-spacing:-3.200000pt;}
.ws89{word-spacing:-3.114667pt;}
.ws73{word-spacing:-2.826667pt;}
.ws78{word-spacing:-2.613333pt;}
.ws3{word-spacing:-2.565333pt;}
.ws53{word-spacing:-2.560000pt;}
.ws7c{word-spacing:-2.400000pt;}
.ws3e{word-spacing:-2.346667pt;}
.ws58{word-spacing:-2.293333pt;}
.ws6b{word-spacing:-2.240000pt;}
.ws96{word-spacing:-2.176000pt;}
.ws23{word-spacing:-2.133333pt;}
.ws56{word-spacing:-2.080000pt;}
.ws55{word-spacing:-1.973333pt;}
.ws54{word-spacing:-1.920000pt;}
.ws3b{word-spacing:-1.866667pt;}
.ws1c{word-spacing:-1.813333pt;}
.ws57{word-spacing:-1.706667pt;}
.ws39{word-spacing:-1.653333pt;}
.ws9b{word-spacing:-1.578667pt;}
.ws2c{word-spacing:-1.546667pt;}
.ws97{word-spacing:-1.536000pt;}
.wsa0{word-spacing:-1.450667pt;}
.ws51{word-spacing:-1.440000pt;}
.ws27{word-spacing:-1.386667pt;}
.ws17{word-spacing:-1.280000pt;}
.ws8f{word-spacing:-1.237333pt;}
.ws60{word-spacing:-1.194667pt;}
.ws30{word-spacing:-1.173333pt;}
.ws5f{word-spacing:-1.152000pt;}
.ws26{word-spacing:-1.120000pt;}
.ws4a{word-spacing:-1.109333pt;}
.ws91{word-spacing:-1.024000pt;}
.ws2b{word-spacing:-1.013333pt;}
.ws95{word-spacing:-0.981333pt;}
.ws14{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.906667pt;}
.ws7e{word-spacing:-0.896000pt;}
.ws16{word-spacing:-0.853333pt;}
.ws29{word-spacing:-0.800000pt;}
.ws33{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.746667pt;}
.ws9d{word-spacing:-0.725333pt;}
.ws1a{word-spacing:-0.693333pt;}
.ws92{word-spacing:-0.682667pt;}
.ws7{word-spacing:-0.640000pt;}
.ws5d{word-spacing:-0.586667pt;}
.wsa5{word-spacing:-0.554667pt;}
.ws8a{word-spacing:-0.512000pt;}
.ws7a{word-spacing:-0.480000pt;}
.ws44{word-spacing:-0.469333pt;}
.ws13{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.384000pt;}
.ws71{word-spacing:-0.373333pt;}
.ws9a{word-spacing:-0.341333pt;}
.ws19{word-spacing:-0.320000pt;}
.ws90{word-spacing:-0.298667pt;}
.ws9c{word-spacing:-0.256000pt;}
.ws2a{word-spacing:-0.213333pt;}
.ws31{word-spacing:-0.160000pt;}
.ws46{word-spacing:-0.128000pt;}
.ws11{word-spacing:-0.106667pt;}
.ws99{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.040000pt;}
.ws3a{word-spacing:0.053333pt;}
.ws9e{word-spacing:0.213333pt;}
.ws6e{word-spacing:0.266667pt;}
.ws3c{word-spacing:0.320000pt;}
.ws8b{word-spacing:0.341333pt;}
.wsa3{word-spacing:0.384000pt;}
.ws6f{word-spacing:0.426667pt;}
.ws3f{word-spacing:0.480000pt;}
.ws40{word-spacing:0.533333pt;}
.ws98{word-spacing:0.597333pt;}
.ws52{word-spacing:0.640000pt;}
.ws7b{word-spacing:0.693333pt;}
.ws8e{word-spacing:0.810667pt;}
.ws61{word-spacing:0.853333pt;}
.ws5a{word-spacing:0.906667pt;}
.ws79{word-spacing:0.960000pt;}
.ws12{word-spacing:1.013333pt;}
.ws21{word-spacing:1.173333pt;}
.ws70{word-spacing:1.226667pt;}
.wsa1{word-spacing:1.237333pt;}
.ws94{word-spacing:1.280000pt;}
.ws5b{word-spacing:1.333333pt;}
.ws77{word-spacing:1.386667pt;}
.ws6d{word-spacing:1.440000pt;}
.wsa4{word-spacing:1.450667pt;}
.ws5c{word-spacing:1.493333pt;}
.ws24{word-spacing:1.546667pt;}
.ws41{word-spacing:1.600000pt;}
.ws5{word-spacing:1.653333pt;}
.ws8c{word-spacing:1.792000pt;}
.ws32{word-spacing:1.866667pt;}
.ws25{word-spacing:1.920000pt;}
.ws2d{word-spacing:2.293333pt;}
.ws47{word-spacing:2.304000pt;}
.ws9f{word-spacing:2.517333pt;}
.ws93{word-spacing:2.816000pt;}
.ws75{word-spacing:2.880000pt;}
.ws8d{word-spacing:2.901333pt;}
.ws6a{word-spacing:3.040000pt;}
.ws5e{word-spacing:3.072000pt;}
.ws2e{word-spacing:3.093333pt;}
.ws6c{word-spacing:3.253333pt;}
.wsa2{word-spacing:3.285333pt;}
.ws3d{word-spacing:3.360000pt;}
.ws45{word-spacing:3.456000pt;}
.ws1b{word-spacing:3.466667pt;}
.ws42{word-spacing:3.498667pt;}
.ws48{word-spacing:3.541333pt;}
.ws22{word-spacing:3.840000pt;}
.ws43{word-spacing:3.968000pt;}
.ws72{word-spacing:4.106667pt;}
.ws59{word-spacing:4.160000pt;}
.ws28{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws6{word-spacing:4.426667pt;}
.ws49{word-spacing:4.650667pt;}
.ws74{word-spacing:6.773333pt;}
.ws1f{word-spacing:267.136000pt;}
.ws20{word-spacing:270.677333pt;}
.ws50{word-spacing:424.192000pt;}
.ws4f{word-spacing:471.381333pt;}
.ws1e{word-spacing:699.093333pt;}
._1b{margin-left:-2576.128000pt;}
._30{margin-left:-2554.965333pt;}
._4{margin-left:-6.613333pt;}
._38{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.501874pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.933333pt;}
._5{width:0.941874pt;}
._b{width:2.053333pt;}
._9{width:3.200000pt;}
._6{width:4.133333pt;}
._7{width:5.226667pt;}
._a{width:6.240000pt;}
._8{width:7.786667pt;}
._12{width:55.381333pt;}
._e{width:81.536000pt;}
._10{width:97.024000pt;}
._15{width:146.816000pt;}
._20{width:151.424000pt;}
._29{width:157.315207pt;}
._1e{width:162.901333pt;}
._2b{width:165.840000pt;}
._26{width:166.826667pt;}
._19{width:182.064000pt;}
._2c{width:196.181333pt;}
._27{width:197.466667pt;}
._33{width:199.811207pt;}
._32{width:200.789333pt;}
._17{width:205.450667pt;}
._23{width:227.416540pt;}
._22{width:246.610126pt;}
._1f{width:248.618667pt;}
._25{width:250.586667pt;}
._1c{width:272.682667pt;}
._24{width:305.155207pt;}
._13{width:332.717874pt;}
._14{width:344.533333pt;}
._f{width:348.288000pt;}
._31{width:354.645333pt;}
._d{width:370.602667pt;}
._18{width:388.522667pt;}
._16{width:404.533333pt;}
._11{width:409.562667pt;}
._2e{width:422.917333pt;}
._2f{width:437.546667pt;}
._28{width:453.760000pt;}
._2a{width:456.835207pt;}
._1d{width:458.069333pt;}
._1a{width:480.899207pt;}
._35{width:494.381874pt;}
._36{width:513.232000pt;}
._2d{width:538.624000pt;}
._21{width:560.133333pt;}
._37{width:598.698667pt;}
._34{width:679.936000pt;}
._c{width:686.037333pt;}
.fs5{font-size:24.000000pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.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;}
.y2f{bottom:42.468667pt;}
.y17e{bottom:71.345333pt;}
.ye1{bottom:73.903467pt;}
.y12a{bottom:74.342533pt;}
.yec{bottom:75.006133pt;}
.y1f{bottom:78.246000pt;}
.yc0{bottom:81.114533pt;}
.y11d{bottom:81.960800pt;}
.y13c{bottom:84.552800pt;}
.y17d{bottom:84.678667pt;}
.ye0{bottom:87.898133pt;}
.yeb{bottom:89.000800pt;}
.y6f{bottom:89.726667pt;}
.y129{bottom:90.342533pt;}
.y8c{bottom:90.916400pt;}
.y1e{bottom:91.576000pt;}
.y11c{bottom:96.403467pt;}
.ybf{bottom:97.114533pt;}
.y13b{bottom:97.886133pt;}
.y17c{bottom:98.012000pt;}
.yea{bottom:102.995467pt;}
.y6e{bottom:104.393333pt;}
.y8b{bottom:105.359067pt;}
.y128{bottom:106.342533pt;}
.y11b{bottom:110.846133pt;}
.y13a{bottom:111.219467pt;}
.y17b{bottom:111.345333pt;}
.ybe{bottom:113.114533pt;}
.ye9{bottom:116.990133pt;}
.y6d{bottom:119.060000pt;}
.y8a{bottom:119.801733pt;}
.y127{bottom:122.342533pt;}
.y139{bottom:124.552800pt;}
.y17a{bottom:124.678667pt;}
.ybd{bottom:129.114533pt;}
.ye8{bottom:130.984800pt;}
.y6c{bottom:133.726667pt;}
.y89{bottom:134.244400pt;}
.y138{bottom:137.886133pt;}
.y179{bottom:138.012000pt;}
.y126{bottom:138.342533pt;}
.y11a{bottom:138.856800pt;}
.y2a{bottom:142.307067pt;}
.ybc{bottom:145.114533pt;}
.y6b{bottom:148.169333pt;}
.y88{bottom:148.687067pt;}
.y137{bottom:151.219467pt;}
.y178{bottom:151.345333pt;}
.y125{bottom:154.342533pt;}
.y29{bottom:158.307067pt;}
.ybb{bottom:161.114533pt;}
.y6a{bottom:162.836000pt;}
.y87{bottom:163.129733pt;}
.y136{bottom:164.552800pt;}
.y177{bottom:164.678667pt;}
.y119{bottom:169.874667pt;}
.y124{bottom:170.342533pt;}
.y28{bottom:174.307067pt;}
.yba{bottom:177.114533pt;}
.y69{bottom:177.278667pt;}
.y86{bottom:177.572400pt;}
.y135{bottom:177.886133pt;}
.y176{bottom:178.012000pt;}
.y123{bottom:186.342533pt;}
.y118{bottom:187.208000pt;}
.y27{bottom:190.307067pt;}
.y134{bottom:191.219467pt;}
.y175{bottom:191.345333pt;}
.y68{bottom:191.721333pt;}
.y85{bottom:192.015067pt;}
.yb9{bottom:193.114533pt;}
.y122{bottom:202.342533pt;}
.y117{bottom:204.541333pt;}
.y133{bottom:204.552800pt;}
.y174{bottom:204.678667pt;}
.y26{bottom:206.307067pt;}
.y67{bottom:206.388000pt;}
.y84{bottom:206.457733pt;}
.yb8{bottom:209.114533pt;}
.y173{bottom:218.012000pt;}
.y121{bottom:218.342533pt;}
.y66{bottom:220.830667pt;}
.y25{bottom:222.307067pt;}
.yb7{bottom:225.114533pt;}
.y172{bottom:231.345333pt;}
.y132{bottom:233.982533pt;}
.y120{bottom:234.342533pt;}
.y83{bottom:234.468400pt;}
.y65{bottom:235.273333pt;}
.y24{bottom:238.307067pt;}
.yb6{bottom:241.114533pt;}
.y171{bottom:244.678667pt;}
.y116{bottom:246.754400pt;}
.y64{bottom:249.940000pt;}
.y107{bottom:250.475867pt;}
.y23{bottom:254.307067pt;}
.yb5{bottom:257.114533pt;}
.y170{bottom:258.012000pt;}
.y115{bottom:260.749067pt;}
.y63{bottom:264.382667pt;}
.y82{bottom:265.489200pt;}
.y11f{bottom:265.982533pt;}
.y106{bottom:266.475867pt;}
.y22{bottom:270.307067pt;}
.y16f{bottom:271.345333pt;}
.yb4{bottom:273.114533pt;}
.y114{bottom:274.743733pt;}
.y62{bottom:278.825333pt;}
.y131{bottom:282.462533pt;}
.y105{bottom:282.475867pt;}
.y16e{bottom:284.678667pt;}
.y21{bottom:286.307067pt;}
.y113{bottom:288.738400pt;}
.yb3{bottom:289.114533pt;}
.y61{bottom:293.268000pt;}
.y16d{bottom:298.012000pt;}
.y130{bottom:298.102533pt;}
.y104{bottom:298.475867pt;}
.y2c{bottom:302.307067pt;}
.y112{bottom:302.733067pt;}
.yb2{bottom:305.114533pt;}
.y60{bottom:307.934667pt;}
.y16c{bottom:311.345333pt;}
.y81{bottom:314.462533pt;}
.y103{bottom:314.475867pt;}
.y111{bottom:316.727733pt;}
.y20{bottom:317.947067pt;}
.y2b{bottom:318.307067pt;}
.yb1{bottom:321.114533pt;}
.y5f{bottom:322.601333pt;}
.y16b{bottom:324.678667pt;}
.y12f{bottom:330.102533pt;}
.y80{bottom:330.462533pt;}
.y102{bottom:330.475867pt;}
.y110{bottom:330.722400pt;}
.y5e{bottom:337.044000pt;}
.yb0{bottom:337.114533pt;}
.y16a{bottom:338.012000pt;}
.y10f{bottom:344.717067pt;}
.y7f{bottom:346.462533pt;}
.y101{bottom:346.475867pt;}
.y169{bottom:351.345333pt;}
.y5d{bottom:351.710667pt;}
.yaf{bottom:353.114533pt;}
.y7e{bottom:362.462533pt;}
.y100{bottom:362.475867pt;}
.y168{bottom:364.678667pt;}
.y5c{bottom:366.377333pt;}
.yae{bottom:369.114533pt;}
.y167{bottom:378.012000pt;}
.y7d{bottom:378.462533pt;}
.yff{bottom:378.475867pt;}
.y5b{bottom:381.044000pt;}
.yad{bottom:385.114533pt;}
.y1d{bottom:387.127067pt;}
.y166{bottom:391.345333pt;}
.y12e{bottom:394.102533pt;}
.y7c{bottom:394.462533pt;}
.yfe{bottom:394.475867pt;}
.y5a{bottom:395.710667pt;}
.yac{bottom:401.114533pt;}
.y165{bottom:404.678667pt;}
.y59{bottom:410.153333pt;}
.y7b{bottom:410.462533pt;}
.yfd{bottom:410.475867pt;}
.ydf{bottom:410.594533pt;}
.y1c{bottom:411.433733pt;}
.yab{bottom:417.114533pt;}
.y164{bottom:418.012000pt;}
.y58{bottom:424.596000pt;}
.y7a{bottom:426.462533pt;}
.yfc{bottom:426.475867pt;}
.yde{bottom:426.594533pt;}
.y1b{bottom:427.433733pt;}
.y163{bottom:431.345333pt;}
.yaa{bottom:433.114533pt;}
.y57{bottom:439.038667pt;}
.y12d{bottom:442.102533pt;}
.y79{bottom:442.462533pt;}
.yfb{bottom:442.475867pt;}
.ydd{bottom:442.594533pt;}
.y1a{bottom:443.433733pt;}
.y162{bottom:444.678667pt;}
.ya9{bottom:449.114533pt;}
.y56{bottom:453.481333pt;}
.y161{bottom:458.012000pt;}
.y78{bottom:458.462533pt;}
.yfa{bottom:458.475867pt;}
.y19{bottom:459.433733pt;}
.ya8{bottom:465.114533pt;}
.y55{bottom:468.148000pt;}
.y160{bottom:471.345333pt;}
.ydc{bottom:474.234533pt;}
.y77{bottom:474.462533pt;}
.yf9{bottom:474.475867pt;}
.y18{bottom:475.433733pt;}
.ya7{bottom:481.114533pt;}
.ye7{bottom:483.667467pt;}
.y15f{bottom:484.678667pt;}
.y76{bottom:490.462533pt;}
.y17{bottom:491.433733pt;}
.y54{bottom:496.158667pt;}
.ya6{bottom:497.114533pt;}
.ye6{bottom:497.662133pt;}
.y15e{bottom:498.012000pt;}
.yf8{bottom:506.115867pt;}
.ydb{bottom:506.461200pt;}
.y75{bottom:506.462533pt;}
.y16{bottom:507.433733pt;}
.y15d{bottom:511.345333pt;}
.ye5{bottom:511.656800pt;}
.ya5{bottom:513.114533pt;}
.yda{bottom:522.461200pt;}
.y74{bottom:522.462533pt;}
.y15{bottom:523.433733pt;}
.y15c{bottom:524.678667pt;}
.ye4{bottom:525.651467pt;}
.y53{bottom:527.182533pt;}
.ya4{bottom:529.114533pt;}
.y15b{bottom:538.012000pt;}
.yd9{bottom:538.461200pt;}
.y73{bottom:538.462533pt;}
.y14{bottom:539.433733pt;}
.ye3{bottom:539.646133pt;}
.y52{bottom:544.515867pt;}
.ya3{bottom:545.114533pt;}
.y15a{bottom:551.345333pt;}
.yd8{bottom:554.461200pt;}
.y72{bottom:554.462533pt;}
.yf7{bottom:554.595867pt;}
.y13{bottom:555.433733pt;}
.ya2{bottom:561.114533pt;}
.y159{bottom:564.678667pt;}
.y12c{bottom:570.102533pt;}
.yd7{bottom:570.461200pt;}
.y71{bottom:570.462533pt;}
.yf6{bottom:570.595867pt;}
.y12{bottom:571.433733pt;}
.ya1{bottom:577.114533pt;}
.y158{bottom:578.012000pt;}
.y10e{bottom:584.601733pt;}
.y51{bottom:586.342533pt;}
.yd6{bottom:586.461200pt;}
.y45{bottom:586.462533pt;}
.yf5{bottom:586.595867pt;}
.y11{bottom:587.433733pt;}
.y157{bottom:591.345333pt;}
.ya0{bottom:593.114533pt;}
.y10d{bottom:598.596400pt;}
.y50{bottom:602.342533pt;}
.yd5{bottom:602.461200pt;}
.y44{bottom:602.462533pt;}
.yf4{bottom:602.595867pt;}
.y10{bottom:603.433733pt;}
.y156{bottom:604.678667pt;}
.y9f{bottom:609.114533pt;}
.y10c{bottom:612.591067pt;}
.y155{bottom:618.012000pt;}
.y4f{bottom:618.342533pt;}
.yd4{bottom:618.461200pt;}
.y43{bottom:618.462533pt;}
.yf3{bottom:618.595867pt;}
.yf{bottom:619.433733pt;}
.y9e{bottom:625.114533pt;}
.y154{bottom:631.345333pt;}
.y4e{bottom:634.342533pt;}
.yd3{bottom:634.461200pt;}
.y42{bottom:634.462533pt;}
.yf2{bottom:634.595867pt;}
.y9d{bottom:641.114533pt;}
.y153{bottom:644.678667pt;}
.y4d{bottom:650.342533pt;}
.yd2{bottom:650.461200pt;}
.y41{bottom:650.462533pt;}
.yf1{bottom:650.595867pt;}
.y9c{bottom:657.114533pt;}
.y152{bottom:658.012000pt;}
.ye{bottom:659.570933pt;}
.y4c{bottom:666.342533pt;}
.yd1{bottom:666.461200pt;}
.y40{bottom:666.462533pt;}
.yf0{bottom:666.595867pt;}
.yd{bottom:670.638267pt;}
.y151{bottom:671.345333pt;}
.y9b{bottom:673.114533pt;}
.y4b{bottom:682.342533pt;}
.yd0{bottom:682.461200pt;}
.y3f{bottom:682.462533pt;}
.yef{bottom:682.595867pt;}
.y150{bottom:684.678667pt;}
.y9a{bottom:689.114533pt;}
.y14f{bottom:698.012000pt;}
.y4a{bottom:698.342533pt;}
.ycf{bottom:698.461200pt;}
.y3e{bottom:698.462533pt;}
.yee{bottom:698.595867pt;}
.yc{bottom:702.261600pt;}
.y99{bottom:705.114533pt;}
.yb{bottom:710.829867pt;}
.y14e{bottom:711.345333pt;}
.y49{bottom:714.342533pt;}
.yce{bottom:714.461200pt;}
.y3d{bottom:714.462533pt;}
.y98{bottom:721.114533pt;}
.y14d{bottom:724.678667pt;}
.ya{bottom:726.261600pt;}
.yed{bottom:730.235867pt;}
.y48{bottom:730.342533pt;}
.ycd{bottom:730.461200pt;}
.y3c{bottom:730.462533pt;}
.y97{bottom:737.114533pt;}
.y14c{bottom:738.012000pt;}
.y9{bottom:738.261600pt;}
.y47{bottom:746.342533pt;}
.ycc{bottom:746.461200pt;}
.y3b{bottom:746.462533pt;}
.y8{bottom:746.829867pt;}
.y14b{bottom:751.345333pt;}
.y7{bottom:762.261600pt;}
.ycb{bottom:762.461200pt;}
.y3a{bottom:762.462533pt;}
.y14a{bottom:764.678667pt;}
.y96{bottom:768.084000pt;}
.y46{bottom:777.982533pt;}
.y149{bottom:778.012000pt;}
.yca{bottom:778.461200pt;}
.y39{bottom:778.462533pt;}
.y95{bottom:781.956000pt;}
.y6{bottom:789.183067pt;}
.y148{bottom:791.345333pt;}
.yc9{bottom:794.461200pt;}
.y38{bottom:794.462533pt;}
.y94{bottom:794.717867pt;}
.y147{bottom:804.678667pt;}
.y93{bottom:810.357867pt;}
.yc8{bottom:810.461200pt;}
.y37{bottom:810.462533pt;}
.y146{bottom:818.012000pt;}
.y92{bottom:826.357867pt;}
.yc7{bottom:826.461200pt;}
.y36{bottom:826.462533pt;}
.y5{bottom:830.226667pt;}
.y145{bottom:831.345333pt;}
.yc6{bottom:842.461200pt;}
.y35{bottom:842.462533pt;}
.y144{bottom:844.678667pt;}
.y143{bottom:858.012000pt;}
.y12b{bottom:858.102533pt;}
.y91{bottom:858.224533pt;}
.yc5{bottom:858.461200pt;}
.y34{bottom:858.462533pt;}
.y4{bottom:862.636000pt;}
.y142{bottom:871.345333pt;}
.y90{bottom:874.224533pt;}
.yc4{bottom:874.461200pt;}
.y33{bottom:874.462533pt;}
.y10b{bottom:874.475867pt;}
.y141{bottom:884.678667pt;}
.y8f{bottom:890.224533pt;}
.yc3{bottom:890.461200pt;}
.y32{bottom:890.462533pt;}
.y10a{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y140{bottom:898.012000pt;}
.yc2{bottom:906.461200pt;}
.y31{bottom:906.462533pt;}
.y109{bottom:906.475867pt;}
.y13f{bottom:911.345333pt;}
.y8e{bottom:922.104533pt;}
.yc1{bottom:922.461200pt;}
.y30{bottom:922.462533pt;}
.y108{bottom:922.475867pt;}
.y13e{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y13d{bottom:1006.590133pt;}
.ye2{bottom:1006.594400pt;}
.y17f{bottom:1006.598667pt;}
.y11e{bottom:1006.600800pt;}
.y8d{bottom:1006.617733pt;}
.y70{bottom:1006.644000pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.496094pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.h11{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h14{height:33.351562pt;}
.hd{height:37.057292pt;}
.h12{height:37.437500pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.h9{height:38.880208pt;}
.h13{height:39.963442pt;}
.h15{height:42.117188pt;}
.h5{height:43.678785pt;}
.h10{height:46.796875pt;}
.h16{height:48.236875pt;}
.h3{height:50.476562pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.xf{left:69.921200pt;}
.x1e{left:83.718933pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x23{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x1a{left:102.809200pt;}
.x1c{left:104.902533pt;}
.x25{left:109.606267pt;}
.x3{left:111.496000pt;}
.x6{left:117.170133pt;}
.x1b{left:129.862533pt;}
.x19{left:171.355867pt;}
.x1f{left:176.598933pt;}
.x18{left:187.649200pt;}
.x5{left:189.223467pt;}
.x1d{left:190.675867pt;}
.x10{left:274.017200pt;}
.x11{left:402.518533pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x14{left:425.200267pt;}
.x7{left:427.090133pt;}
.x24{left:428.970133pt;}
.xe{left:436.538133pt;}
.x22{left:447.874133pt;}
.x15{left:455.440267pt;}
.xd{left:466.911467pt;}
.x20{left:495.107733pt;}
.x21{left:529.867200pt;}
.x13{left:589.770933pt;}
.x2{left:616.324800pt;}
.x12{left:653.377200pt;}
.x17{left:672.381600pt;}
}




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