
    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_629b7c1631aa01a0b3769b20.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6041febf80efa45b98d4c505.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_04973b4682b5a1632733f1ee.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_f62407ce159707a48515769b.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_3894789db53ceb839ec0acc5.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_e2c5da5f22ffd8dd001de004.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f5e93cc15cb5bac7d980f7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fe64d3d8d348e9027d08f584.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_092ee2a33353b714ce914a53.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:15.909000px;}
.v1{vertical-align:21.619200px;}
.ls9{letter-spacing:-0.780000px;}
.ls4d{letter-spacing:-0.600000px;}
.ls50{letter-spacing:-0.384000px;}
.ls53{letter-spacing:-0.300000px;}
.ls35{letter-spacing:-0.240000px;}
.ls31{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.120000px;}
.ls82{letter-spacing:-0.096000px;}
.ls32{letter-spacing:-0.060000px;}
.ls83{letter-spacing:-0.048000px;}
.lsa{letter-spacing:-0.045000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls0{letter-spacing:0.006000px;}
.ls44{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.069600px;}
.ls4b{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.120000px;}
.ls63{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls6f{letter-spacing:0.192000px;}
.lse{letter-spacing:0.240000px;}
.ls70{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.300000px;}
.ls49{letter-spacing:0.336000px;}
.ls29{letter-spacing:0.360000px;}
.ls4a{letter-spacing:0.384000px;}
.ls47{letter-spacing:0.420000px;}
.ls24{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls81{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.600000px;}
.ls7a{letter-spacing:0.624000px;}
.ls19{letter-spacing:0.660000px;}
.ls6d{letter-spacing:0.672000px;}
.ls5{letter-spacing:0.720000px;}
.ls76{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.780000px;}
.ls68{letter-spacing:0.816000px;}
.ls41{letter-spacing:0.840000px;}
.ls66{letter-spacing:0.864000px;}
.ls3a{letter-spacing:0.900000px;}
.lsb{letter-spacing:0.960000px;}
.ls69{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.020000px;}
.ls6e{letter-spacing:1.056000px;}
.ls1c{letter-spacing:1.080000px;}
.ls8e{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.140000px;}
.ls64{letter-spacing:1.152000px;}
.ls54{letter-spacing:1.200000px;}
.ls6b{letter-spacing:1.248000px;}
.ls20{letter-spacing:1.260000px;}
.ls8b{letter-spacing:1.296000px;}
.ls17{letter-spacing:1.320000px;}
.ls5f{letter-spacing:1.344000px;}
.ls3f{letter-spacing:1.380000px;}
.ls5a{letter-spacing:1.392000px;}
.ls1f{letter-spacing:1.440000px;}
.ls7f{letter-spacing:1.488000px;}
.ls16{letter-spacing:1.500000px;}
.ls67{letter-spacing:1.536000px;}
.ls2e{letter-spacing:1.560000px;}
.ls8d{letter-spacing:1.584000px;}
.ls1e{letter-spacing:1.620000px;}
.ls7b{letter-spacing:1.632000px;}
.ls23{letter-spacing:1.680000px;}
.ls60{letter-spacing:1.728000px;}
.ls1a{letter-spacing:1.740000px;}
.ls7d{letter-spacing:1.776000px;}
.ls15{letter-spacing:1.800000px;}
.ls65{letter-spacing:1.824000px;}
.ls2d{letter-spacing:1.860000px;}
.ls5e{letter-spacing:1.872000px;}
.ls10{letter-spacing:1.920000px;}
.ls3c{letter-spacing:1.980000px;}
.ls40{letter-spacing:2.040000px;}
.ls6c{letter-spacing:2.064000px;}
.ls1d{letter-spacing:2.100000px;}
.ls77{letter-spacing:2.112000px;}
.ls4{letter-spacing:2.160000px;}
.ls86{letter-spacing:2.208000px;}
.ls1b{letter-spacing:2.220000px;}
.ls75{letter-spacing:2.256000px;}
.ls45{letter-spacing:2.280000px;}
.ls79{letter-spacing:2.304000px;}
.ls3e{letter-spacing:2.340000px;}
.ls27{letter-spacing:2.400000px;}
.ls62{letter-spacing:2.448000px;}
.ls37{letter-spacing:2.460000px;}
.ls5b{letter-spacing:2.496000px;}
.ls39{letter-spacing:2.520000px;}
.ls7e{letter-spacing:2.544000px;}
.ls30{letter-spacing:2.640000px;}
.ls5d{letter-spacing:2.688000px;}
.ls36{letter-spacing:2.700000px;}
.ls7c{letter-spacing:2.736000px;}
.ls25{letter-spacing:2.760000px;}
.ls71{letter-spacing:2.784000px;}
.ls4f{letter-spacing:2.820000px;}
.lsf{letter-spacing:2.880000px;}
.ls8c{letter-spacing:2.928000px;}
.ls7{letter-spacing:2.940000px;}
.ls6a{letter-spacing:2.976000px;}
.ls52{letter-spacing:3.000000px;}
.ls26{letter-spacing:3.060000px;}
.ls5c{letter-spacing:3.072000px;}
.ls43{letter-spacing:3.120000px;}
.ls87{letter-spacing:3.168000px;}
.ls21{letter-spacing:3.240000px;}
.ls3{letter-spacing:3.300000px;}
.ls4c{letter-spacing:3.360000px;}
.ls89{letter-spacing:3.408000px;}
.ls22{letter-spacing:3.420000px;}
.ls4e{letter-spacing:3.540000px;}
.ls72{letter-spacing:3.552000px;}
.ls48{letter-spacing:3.600000px;}
.ls38{letter-spacing:3.660000px;}
.ls61{letter-spacing:3.696000px;}
.ls73{letter-spacing:3.744000px;}
.ls78{letter-spacing:3.792000px;}
.ls14{letter-spacing:3.840000px;}
.ls8f{letter-spacing:3.888000px;}
.ls2f{letter-spacing:3.900000px;}
.ls2c{letter-spacing:4.020000px;}
.ls55{letter-spacing:4.080000px;}
.ls74{letter-spacing:4.176000px;}
.ls28{letter-spacing:4.200000px;}
.ls34{letter-spacing:4.260000px;}
.ls8a{letter-spacing:4.368000px;}
.ls51{letter-spacing:4.380000px;}
.ls3d{letter-spacing:4.440000px;}
.ls88{letter-spacing:4.560000px;}
.ls80{letter-spacing:4.656000px;}
.ls46{letter-spacing:4.800000px;}
.ls84{letter-spacing:4.896000px;}
.ls85{letter-spacing:4.992000px;}
.ls58{letter-spacing:5.160000px;}
.ls57{letter-spacing:5.400000px;}
.ls56{letter-spacing:7.260000px;}
.ls59{letter-spacing:7.620000px;}
.ls3b{letter-spacing:8.100000px;}
.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;}
}
.ws57{word-spacing:-17.460000px;}
.ws6d{word-spacing:-17.100000px;}
.ws21{word-spacing:-16.920000px;}
.ws1{word-spacing:-16.680000px;}
.ws58{word-spacing:-16.020000px;}
.ws85{word-spacing:-15.744000px;}
.ws83{word-spacing:-15.600000px;}
.ws84{word-spacing:-15.552000px;}
.ws55{word-spacing:-15.360000px;}
.ws6b{word-spacing:-15.240000px;}
.wsb{word-spacing:-15.180000px;}
.ws59{word-spacing:-15.120000px;}
.ws6c{word-spacing:-15.060000px;}
.ws56{word-spacing:-15.000000px;}
.ws66{word-spacing:-14.880000px;}
.ws6e{word-spacing:-14.688000px;}
.ws87{word-spacing:-14.304000px;}
.wsa2{word-spacing:-14.256000px;}
.ws88{word-spacing:-13.920000px;}
.ws80{word-spacing:-13.872000px;}
.ws7f{word-spacing:-13.824000px;}
.wsa3{word-spacing:-13.776000px;}
.ws89{word-spacing:-13.632000px;}
.ws86{word-spacing:-13.536000px;}
.ws7e{word-spacing:-13.440000px;}
.ws3{word-spacing:-13.344000px;}
.ws82{word-spacing:-13.152000px;}
.wsa4{word-spacing:-12.768000px;}
.ws2{word-spacing:-12.510000px;}
.ws81{word-spacing:-12.480000px;}
.wsa1{word-spacing:-12.288000px;}
.ws6f{word-spacing:-12.240000px;}
.ws4a{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.508400px;}
.ws68{word-spacing:-7.200000px;}
.ws9f{word-spacing:-4.656000px;}
.wsb2{word-spacing:-3.888000px;}
.ws9b{word-spacing:-3.792000px;}
.wsa9{word-spacing:-3.168000px;}
.ws95{word-spacing:-3.120000px;}
.ws5{word-spacing:-2.886000px;}
.ws7a{word-spacing:-2.700000px;}
.ws96{word-spacing:-2.640000px;}
.ws97{word-spacing:-2.400000px;}
.ws72{word-spacing:-2.340000px;}
.ws9c{word-spacing:-2.304000px;}
.ws71{word-spacing:-2.280000px;}
.ws1c{word-spacing:-2.220000px;}
.wsa7{word-spacing:-2.208000px;}
.ws4d{word-spacing:-2.160000px;}
.ws8c{word-spacing:-2.064000px;}
.ws8a{word-spacing:-1.920000px;}
.ws52{word-spacing:-1.860000px;}
.ws92{word-spacing:-1.824000px;}
.wsb0{word-spacing:-1.776000px;}
.wsa6{word-spacing:-1.728000px;}
.ws16{word-spacing:-1.680000px;}
.ws1b{word-spacing:-1.560000px;}
.ws98{word-spacing:-1.536000px;}
.ws9e{word-spacing:-1.488000px;}
.ws90{word-spacing:-1.392000px;}
.ws7c{word-spacing:-1.344000px;}
.ws74{word-spacing:-1.320000px;}
.ws22{word-spacing:-1.080000px;}
.ws18{word-spacing:-1.020000px;}
.ws4e{word-spacing:-0.960000px;}
.ws65{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.540000px;}
.ws2e{word-spacing:-0.480000px;}
.ws50{word-spacing:-0.420000px;}
.ws3f{word-spacing:-0.384000px;}
.ws23{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.288000px;}
.ws7d{word-spacing:-0.240000px;}
.ws15{word-spacing:-0.180000px;}
.ws20{word-spacing:-0.120000px;}
.wsae{word-spacing:-0.096000px;}
.ws69{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsaa{word-spacing:0.048000px;}
.ws26{word-spacing:0.060000px;}
.ws8b{word-spacing:0.096000px;}
.ws43{word-spacing:0.120000px;}
.ws51{word-spacing:0.180000px;}
.ws1e{word-spacing:0.240000px;}
.wsb1{word-spacing:0.288000px;}
.ws5b{word-spacing:0.300000px;}
.ws5d{word-spacing:0.360000px;}
.ws9{word-spacing:0.420000px;}
.wsa{word-spacing:0.480000px;}
.ws94{word-spacing:0.528000px;}
.ws45{word-spacing:0.540000px;}
.ws1f{word-spacing:0.600000px;}
.wsab{word-spacing:0.624000px;}
.ws27{word-spacing:0.660000px;}
.ws4b{word-spacing:0.672000px;}
.ws77{word-spacing:0.720000px;}
.ws62{word-spacing:0.840000px;}
.ws4f{word-spacing:0.900000px;}
.ws33{word-spacing:0.912000px;}
.ws40{word-spacing:0.960000px;}
.ws61{word-spacing:1.020000px;}
.ws12{word-spacing:1.200000px;}
.ws9a{word-spacing:1.248000px;}
.ws7b{word-spacing:1.296000px;}
.ws25{word-spacing:1.320000px;}
.wsaf{word-spacing:1.344000px;}
.ws2d{word-spacing:1.380000px;}
.ws8f{word-spacing:1.392000px;}
.ws13{word-spacing:1.440000px;}
.ws2a{word-spacing:1.500000px;}
.ws53{word-spacing:1.560000px;}
.ws41{word-spacing:1.584000px;}
.ws91{word-spacing:1.632000px;}
.ws3e{word-spacing:1.680000px;}
.ws34{word-spacing:1.740000px;}
.ws44{word-spacing:1.800000px;}
.wse{word-spacing:1.860000px;}
.ws76{word-spacing:1.920000px;}
.ws17{word-spacing:1.980000px;}
.ws5e{word-spacing:2.100000px;}
.ws47{word-spacing:2.160000px;}
.ws10{word-spacing:2.400000px;}
.ws60{word-spacing:2.460000px;}
.ws2b{word-spacing:2.520000px;}
.ws3d{word-spacing:2.544000px;}
.ws31{word-spacing:2.580000px;}
.ws8e{word-spacing:2.592000px;}
.ws1a{word-spacing:2.640000px;}
.wsa5{word-spacing:2.688000px;}
.ws2c{word-spacing:2.700000px;}
.wsf{word-spacing:2.820000px;}
.ws99{word-spacing:2.832000px;}
.ws46{word-spacing:2.880000px;}
.ws9d{word-spacing:2.928000px;}
.ws54{word-spacing:2.940000px;}
.ws6a{word-spacing:3.024000px;}
.wsa8{word-spacing:3.072000px;}
.ws2f{word-spacing:3.120000px;}
.wsac{word-spacing:3.168000px;}
.ws19{word-spacing:3.180000px;}
.ws30{word-spacing:3.240000px;}
.ws8d{word-spacing:3.264000px;}
.wsa0{word-spacing:3.312000px;}
.ws11{word-spacing:3.360000px;}
.ws48{word-spacing:3.420000px;}
.ws38{word-spacing:3.480000px;}
.wsc{word-spacing:3.540000px;}
.ws5f{word-spacing:3.600000px;}
.ws49{word-spacing:3.648000px;}
.ws24{word-spacing:3.660000px;}
.ws70{word-spacing:3.720000px;}
.ws1d{word-spacing:3.840000px;}
.ws3c{word-spacing:3.888000px;}
.ws75{word-spacing:3.900000px;}
.ws42{word-spacing:3.936000px;}
.ws64{word-spacing:3.960000px;}
.ws39{word-spacing:3.984000px;}
.ws3a{word-spacing:4.032000px;}
.ws3b{word-spacing:4.080000px;}
.ws35{word-spacing:4.260000px;}
.ws14{word-spacing:4.320000px;}
.ws36{word-spacing:4.380000px;}
.ws7{word-spacing:4.440000px;}
.ws63{word-spacing:4.500000px;}
.ws32{word-spacing:4.560000px;}
.ws73{word-spacing:4.620000px;}
.ws37{word-spacing:4.680000px;}
.ws5c{word-spacing:4.740000px;}
.ws5a{word-spacing:4.800000px;}
.ws28{word-spacing:4.860000px;}
.ws6{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws78{word-spacing:5.460000px;}
.ws79{word-spacing:5.520000px;}
.ws93{word-spacing:5.856000px;}
.ws4c{word-spacing:160.704000px;}
.ws67{word-spacing:459.744000px;}
._9{margin-left:-2898.096000px;}
._a{margin-left:-2874.288000px;}
._b{margin-left:-8.661000px;}
._4{margin-left:-7.620000px;}
._c{margin-left:-6.459000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.020000px;}
._5{width:1.161000px;}
._8{width:3.120000px;}
._6{width:4.260000px;}
._7{width:5.940000px;}
._d{width:7.140000px;}
._26{width:8.544000px;}
._e{width:76.992000px;}
._12{width:89.424000px;}
._14{width:95.520000px;}
._11{width:97.440000px;}
._13{width:104.016000px;}
._1a{width:120.720000px;}
._20{width:134.736000px;}
._22{width:144.048000px;}
._1c{width:160.992000px;}
._21{width:167.376000px;}
._19{width:170.736000px;}
._17{width:172.032000px;}
._16{width:178.704000px;}
._1f{width:233.712000px;}
._18{width:236.832000px;}
._15{width:271.008000px;}
._24{width:497.712000px;}
._23{width:507.072000px;}
._1b{width:558.720000px;}
._25{width:674.592000px;}
._10{width:818.928000px;}
._f{width:853.488000px;}
._1e{width:1319.424000px;}
._1d{width:1669.056000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.000000px;}
.fsa{font-size:28.800000px;}
.fs5{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y15c{bottom:77.121900px;}
.ye1{bottom:83.582700px;}
.y6b{bottom:83.628600px;}
.y142{bottom:83.635350px;}
.yef{bottom:83.691750px;}
.y64{bottom:83.770350px;}
.yd8{bottom:83.779200px;}
.y95{bottom:84.070350px;}
.y98{bottom:84.086400px;}
.ydd{bottom:84.192750px;}
.y119{bottom:84.315300px;}
.yc4{bottom:84.393600px;}
.ybb{bottom:85.255650px;}
.y25{bottom:88.026750px;}
.y133{bottom:88.066200px;}
.y15b{bottom:92.121900px;}
.y19d{bottom:95.263500px;}
.yca{bottom:96.204600px;}
.yd7{bottom:99.523200px;}
.y97{bottom:99.830400px;}
.ydc{bottom:99.936750px;}
.yc3{bottom:100.137600px;}
.yba{bottom:100.999650px;}
.y6a{bottom:101.628600px;}
.y141{bottom:101.635350px;}
.y63{bottom:101.770350px;}
.y94{bottom:102.070350px;}
.y24{bottom:103.023000px;}
.y132{bottom:104.566200px;}
.y15a{bottom:107.121900px;}
.y118{bottom:109.827300px;}
.y19c{bottom:110.263500px;}
.yc9{bottom:111.948600px;}
.y96{bottom:115.574400px;}
.ydb{bottom:115.680750px;}
.yc2{bottom:115.881600px;}
.yb9{bottom:116.743650px;}
.y69{bottom:119.628600px;}
.y140{bottom:119.635350px;}
.y62{bottom:119.770350px;}
.y93{bottom:120.070350px;}
.y159{bottom:122.121900px;}
.yc0{bottom:125.212500px;}
.y19b{bottom:125.263500px;}
.y131{bottom:126.084000px;}
.y117{bottom:126.327300px;}
.yc8{bottom:127.692600px;}
.yc1{bottom:131.625600px;}
.y158{bottom:137.121900px;}
.y68{bottom:137.635350px;}
.y61{bottom:137.770350px;}
.y92{bottom:138.070350px;}
.ye4{bottom:138.830550px;}
.y19a{bottom:140.263500px;}
.ybf{bottom:140.956500px;}
.y130{bottom:142.584000px;}
.y116{bottom:142.827300px;}
.y157{bottom:152.121900px;}
.ye3{bottom:154.574550px;}
.y199{bottom:155.263500px;}
.y67{bottom:155.635350px;}
.y60{bottom:155.770350px;}
.ybe{bottom:156.700500px;}
.y12f{bottom:159.084000px;}
.y12d{bottom:159.087900px;}
.y115{bottom:159.327300px;}
.y29{bottom:159.811950px;}
.y156{bottom:167.121900px;}
.y198{bottom:170.263500px;}
.ye2{bottom:170.318550px;}
.ybd{bottom:172.444500px;}
.y66{bottom:173.635350px;}
.y91{bottom:173.665350px;}
.y5f{bottom:173.770350px;}
.y12e{bottom:175.584000px;}
.y12c{bottom:175.587900px;}
.y114{bottom:175.827300px;}
.y28{bottom:177.811950px;}
.y155{bottom:182.121900px;}
.y111{bottom:184.335300px;}
.y197{bottom:185.263500px;}
.y13f{bottom:191.635350px;}
.y5e{bottom:191.770350px;}
.y12b{bottom:191.835900px;}
.y27{bottom:195.811950px;}
.y154{bottom:197.121900px;}
.y196{bottom:200.263500px;}
.y110{bottom:200.835300px;}
.y113{bottom:204.831300px;}
.y12a{bottom:208.335900px;}
.y65{bottom:209.230350px;}
.y13e{bottom:209.635350px;}
.y5d{bottom:209.770350px;}
.y90{bottom:209.920350px;}
.y153{bottom:212.121900px;}
.y2b{bottom:213.811950px;}
.y195{bottom:215.263500px;}
.y10f{bottom:217.335300px;}
.y112{bottom:221.331300px;}
.y129{bottom:224.835900px;}
.y127{bottom:224.839950px;}
.y152{bottom:227.121900px;}
.y13d{bottom:227.635350px;}
.y5c{bottom:227.770350px;}
.y8f{bottom:227.920350px;}
.y194{bottom:230.263500px;}
.y26{bottom:231.406950px;}
.y2a{bottom:231.811950px;}
.y10e{bottom:233.835300px;}
.y128{bottom:241.335900px;}
.y126{bottom:241.339950px;}
.y151{bottom:242.121900px;}
.y193{bottom:245.263500px;}
.y13c{bottom:245.635350px;}
.y5b{bottom:245.770350px;}
.y8e{bottom:245.920350px;}
.y10d{bottom:250.335300px;}
.y150{bottom:257.121900px;}
.y123{bottom:257.587950px;}
.y192{bottom:260.263500px;}
.y13b{bottom:263.635350px;}
.y5a{bottom:263.770350px;}
.y8d{bottom:263.920350px;}
.y10c{bottom:266.835300px;}
.y14f{bottom:272.121900px;}
.y125{bottom:274.087950px;}
.y122{bottom:274.099650px;}
.y191{bottom:275.263500px;}
.y13a{bottom:281.635350px;}
.y59{bottom:281.770350px;}
.y8c{bottom:281.920350px;}
.y14e{bottom:287.121900px;}
.y190{bottom:290.263500px;}
.y124{bottom:290.587950px;}
.y121{bottom:290.599650px;}
.y10b{bottom:295.839300px;}
.y139{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.y8b{bottom:299.920350px;}
.y14d{bottom:302.121900px;}
.y18f{bottom:305.263500px;}
.y120{bottom:306.847650px;}
.y23{bottom:307.760250px;}
.y10a{bottom:312.339300px;}
.y6e{bottom:317.365350px;}
.y138{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.y8a{bottom:317.920350px;}
.y18e{bottom:320.263500px;}
.y11f{bottom:323.347650px;}
.y109{bottom:328.839300px;}
.y22{bottom:335.105250px;}
.y14c{bottom:335.232600px;}
.y18d{bottom:335.263500px;}
.y137{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.y89{bottom:335.920350px;}
.y11e{bottom:339.847650px;}
.y108{bottom:345.339300px;}
.y18c{bottom:350.263500px;}
.y21{bottom:353.105250px;}
.y6d{bottom:353.230350px;}
.y136{bottom:353.635350px;}
.y55{bottom:353.770350px;}
.y88{bottom:353.920350px;}
.y11d{bottom:356.347650px;}
.y107{bottom:361.839300px;}
.y18b{bottom:365.263500px;}
.y20{bottom:371.105250px;}
.y54{bottom:371.770350px;}
.y87{bottom:371.920350px;}
.y102{bottom:378.855300px;}
.y18a{bottom:380.263500px;}
.y11c{bottom:385.351650px;}
.y1f{bottom:389.105250px;}
.y135{bottom:389.230350px;}
.y53{bottom:389.770350px;}
.y14b{bottom:389.772600px;}
.y86{bottom:389.920350px;}
.y106{bottom:390.843300px;}
.y189{bottom:395.263500px;}
.y101{bottom:395.355300px;}
.y1e{bottom:407.105250px;}
.y52{bottom:407.770350px;}
.y14a{bottom:407.772600px;}
.y85{bottom:407.920350px;}
.y188{bottom:410.263500px;}
.y100{bottom:411.855300px;}
.y11b{bottom:414.355650px;}
.y105{bottom:419.847300px;}
.y1d{bottom:425.105250px;}
.y187{bottom:425.263500px;}
.y51{bottom:425.770350px;}
.y149{bottom:425.772600px;}
.y84{bottom:425.920350px;}
.yff{bottom:428.355300px;}
.y104{bottom:432.351300px;}
.y186{bottom:440.263500px;}
.yfb{bottom:440.859300px;}
.y1c{bottom:443.105250px;}
.y148{bottom:443.367600px;}
.y50{bottom:443.770350px;}
.y83{bottom:443.920350px;}
.yfe{bottom:444.855300px;}
.y11a{bottom:446.740350px;}
.yee{bottom:448.491750px;}
.y103{bottom:448.851300px;}
.ye0{bottom:453.062700px;}
.y185{bottom:455.263500px;}
.yfa{bottom:457.359300px;}
.y1b{bottom:461.105250px;}
.yfd{bottom:461.355300px;}
.y4f{bottom:461.770350px;}
.y82{bottom:461.920350px;}
.yed{bottom:464.235750px;}
.ydf{bottom:468.806700px;}
.y184{bottom:470.263500px;}
.yf9{bottom:473.859300px;}
.yfc{bottom:477.855300px;}
.y1a{bottom:479.105250px;}
.y147{bottom:479.367600px;}
.y4e{bottom:479.770350px;}
.y81{bottom:479.920350px;}
.y183{bottom:485.263500px;}
.yc7{bottom:490.149450px;}
.yf8{bottom:490.359300px;}
.y19{bottom:497.105250px;}
.y4d{bottom:497.770350px;}
.y80{bottom:497.920350px;}
.y182{bottom:500.263500px;}
.yc6{bottom:505.893450px;}
.yf7{bottom:506.859300px;}
.y18{bottom:515.105250px;}
.y181{bottom:515.263500px;}
.y146{bottom:515.365350px;}
.y4c{bottom:515.770350px;}
.y7f{bottom:515.920350px;}
.yc5{bottom:521.637450px;}
.y180{bottom:530.263500px;}
.y17{bottom:533.105250px;}
.y4b{bottom:533.770350px;}
.y7e{bottom:533.920350px;}
.yf6{bottom:535.863300px;}
.y17f{bottom:545.263500px;}
.y16{bottom:551.105250px;}
.y4a{bottom:551.770350px;}
.y7d{bottom:551.920350px;}
.yf5{bottom:552.363300px;}
.y17e{bottom:560.263500px;}
.y15{bottom:569.105250px;}
.y145{bottom:569.365350px;}
.y49{bottom:569.770350px;}
.y7c{bottom:569.920350px;}
.y17d{bottom:575.263500px;}
.yf4{bottom:581.367300px;}
.y14{bottom:587.105250px;}
.y48{bottom:587.770350px;}
.y7b{bottom:587.920350px;}
.yb6{bottom:587.935350px;}
.y17c{bottom:590.263500px;}
.yf3{bottom:593.871300px;}
.y13{bottom:605.105250px;}
.y17b{bottom:605.263500px;}
.y47{bottom:605.770350px;}
.y7a{bottom:605.920350px;}
.yb5{bottom:605.935350px;}
.yf2{bottom:610.371300px;}
.y17a{bottom:620.263500px;}
.y12{bottom:623.105250px;}
.y46{bottom:623.770350px;}
.y79{bottom:623.920350px;}
.yb4{bottom:623.935350px;}
.y179{bottom:635.263500px;}
.y45{bottom:641.770350px;}
.y78{bottom:641.920350px;}
.yb3{bottom:641.935350px;}
.yf1{bottom:642.760350px;}
.y178{bottom:650.263500px;}
.y11{bottom:656.240250px;}
.y144{bottom:659.365350px;}
.y44{bottom:659.770350px;}
.y77{bottom:659.920350px;}
.yb2{bottom:659.935350px;}
.y177{bottom:665.263500px;}
.y43{bottom:677.770350px;}
.y76{bottom:677.920350px;}
.yb1{bottom:677.935350px;}
.y176{bottom:680.263500px;}
.y10{bottom:681.568050px;}
.y175{bottom:695.263500px;}
.y42{bottom:695.770350px;}
.y75{bottom:695.920350px;}
.yb0{bottom:695.935350px;}
.y174{bottom:710.263500px;}
.yf{bottom:713.283600px;}
.y41{bottom:713.770350px;}
.y74{bottom:713.920350px;}
.yaf{bottom:713.935350px;}
.y173{bottom:725.263500px;}
.ye{bottom:730.644150px;}
.y40{bottom:731.770350px;}
.y73{bottom:731.920350px;}
.yae{bottom:731.935350px;}
.y172{bottom:740.263500px;}
.yd{bottom:740.283600px;}
.y3f{bottom:749.770350px;}
.y72{bottom:749.920350px;}
.yad{bottom:749.935350px;}
.y171{bottom:755.263500px;}
.yc{bottom:757.644150px;}
.yb{bottom:767.283600px;}
.y3e{bottom:767.770350px;}
.y71{bottom:767.920350px;}
.yac{bottom:767.935350px;}
.y170{bottom:770.263500px;}
.ya{bottom:784.644150px;}
.y16f{bottom:785.263500px;}
.y3d{bottom:785.770350px;}
.yd6{bottom:785.785350px;}
.y70{bottom:785.920350px;}
.yab{bottom:785.935350px;}
.y16e{bottom:800.263500px;}
.y3c{bottom:803.770350px;}
.yd5{bottom:803.785350px;}
.y9e{bottom:803.920350px;}
.yaa{bottom:803.935350px;}
.y9{bottom:814.930800px;}
.y16d{bottom:815.263500px;}
.y6f{bottom:821.515350px;}
.y3b{bottom:821.770350px;}
.yd4{bottom:821.785350px;}
.y9d{bottom:821.920350px;}
.ya9{bottom:821.935350px;}
.y16c{bottom:830.263500px;}
.y143{bottom:839.365350px;}
.y3a{bottom:839.770350px;}
.yd3{bottom:839.785350px;}
.y9c{bottom:839.920350px;}
.ya8{bottom:839.935350px;}
.y16b{bottom:845.263500px;}
.y39{bottom:857.770350px;}
.yd2{bottom:857.785350px;}
.y9b{bottom:857.920350px;}
.ya7{bottom:857.935350px;}
.y16a{bottom:860.263500px;}
.y8{bottom:861.082800px;}
.y169{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.yd1{bottom:875.785350px;}
.y9a{bottom:875.920350px;}
.ya6{bottom:875.935350px;}
.y168{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.yd0{bottom:893.785350px;}
.ycd{bottom:893.920350px;}
.y7{bottom:897.543600px;}
.y167{bottom:905.263500px;}
.y99{bottom:911.515350px;}
.ya5{bottom:911.530350px;}
.y36{bottom:911.770350px;}
.ycf{bottom:911.785350px;}
.ycc{bottom:911.920350px;}
.y166{bottom:920.263500px;}
.yb8{bottom:929.515350px;}
.y35{bottom:929.770350px;}
.yea{bottom:929.772600px;}
.yce{bottom:929.785350px;}
.y6{bottom:934.004400px;}
.y165{bottom:935.263500px;}
.ycb{bottom:947.515350px;}
.y34{bottom:947.770350px;}
.ye9{bottom:947.772600px;}
.ya4{bottom:947.785350px;}
.y164{bottom:950.263500px;}
.y163{bottom:965.263500px;}
.yda{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.ye8{bottom:965.772600px;}
.ya3{bottom:965.785350px;}
.y5{bottom:970.465200px;}
.y162{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.ye7{bottom:983.772600px;}
.ya2{bottom:983.785350px;}
.y161{bottom:995.263500px;}
.y31{bottom:1001.770350px;}
.ye6{bottom:1001.772600px;}
.ya1{bottom:1001.785350px;}
.y4{bottom:1006.926000px;}
.y160{bottom:1010.263500px;}
.y30{bottom:1019.770350px;}
.yec{bottom:1019.772600px;}
.ya0{bottom:1019.785350px;}
.y15f{bottom:1025.263500px;}
.ye5{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.yeb{bottom:1037.772600px;}
.y9f{bottom:1037.785350px;}
.y15e{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.y15d{bottom:1132.413900px;}
.y6c{bottom:1132.418700px;}
.yf0{bottom:1132.419750px;}
.y134{bottom:1132.421100px;}
.ybc{bottom:1132.421700px;}
.yd9{bottom:1132.423200px;}
.y19e{bottom:1132.423500px;}
.yde{bottom:1132.428750px;}
.yb7{bottom:1132.430400px;}
.y2d{bottom:1136.089500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h14{height:20.010937px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h8{height:32.805176px;}
.h10{height:33.351562px;}
.h4{height:34.945312px;}
.hf{height:34.992188px;}
.h11{height:35.919938px;}
.h13{height:35.951138px;}
.h12{height:35.966738px;}
.he{height:41.689453px;}
.ha{height:43.681641px;}
.hc{height:43.718034px;}
.hb{height:43.740234px;}
.h6{height:49.138634px;}
.h3{height:56.786133px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:70.582650px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x42{left:99.920100px;}
.x4b{left:102.047400px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xc{left:110.555400px;}
.x4a{left:123.307350px;}
.x4{left:125.433150px;}
.x7{left:131.816400px;}
.x1c{left:133.515300px;}
.x32{left:135.219300px;}
.x3c{left:141.555300px;}
.x48{left:190.145400px;}
.x19{left:198.877650px;}
.x6{left:212.876400px;}
.x12{left:232.360350px;}
.x39{left:235.983300px;}
.x2f{left:238.287300px;}
.x2a{left:240.615300px;}
.x21{left:242.595300px;}
.x1b{left:295.947300px;}
.x1d{left:297.267300px;}
.x33{left:302.823300px;}
.x22{left:304.935300px;}
.x3a{left:318.471300px;}
.x2e{left:322.791300px;}
.x43{left:325.268100px;}
.x44{left:342.272100px;}
.x41{left:348.128100px;}
.x23{left:392.271300px;}
.x35{left:394.035300px;}
.x2b{left:396.135300px;}
.x2d{left:397.299300px;}
.x2c{left:399.303300px;}
.x36{left:401.487300px;}
.x1e{left:408.927300px;}
.x34{left:413.475300px;}
.xa{left:455.041500px;}
.xd{left:457.070400px;}
.x13{left:478.345350px;}
.x8{left:480.476400px;}
.x25{left:483.003300px;}
.x1f{left:488.607300px;}
.xe{left:491.090400px;}
.x24{left:494.271300px;}
.x45{left:503.852100px;}
.x14{left:512.365350px;}
.x26{left:515.787300px;}
.x3b{left:516.807300px;}
.x46{left:520.856100px;}
.xf{left:525.260400px;}
.x49{left:574.821600px;}
.x30{left:580.407300px;}
.x27{left:584.787300px;}
.x37{left:590.799300px;}
.x31{left:592.299300px;}
.x29{left:594.963300px;}
.x28{left:597.111300px;}
.x20{left:603.927300px;}
.x3f{left:652.179300px;}
.x3d{left:655.011300px;}
.x3e{left:660.339300px;}
.x11{left:663.492300px;}
.x38{left:666.675300px;}
.x40{left:677.175300px;}
.x47{left:682.436100px;}
.x2{left:693.365400px;}
.x17{left:721.715400px;}
.x10{left:728.391600px;}
.x18{left:743.863350px;}
.x15{left:749.651400px;}
.x1a{left:760.515300px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:14.141333pt;}
.v1{vertical-align:19.217067pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls4d{letter-spacing:-0.533333pt;}
.ls50{letter-spacing:-0.341333pt;}
.ls53{letter-spacing:-0.266667pt;}
.ls35{letter-spacing:-0.213333pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.106667pt;}
.ls82{letter-spacing:-0.085333pt;}
.ls32{letter-spacing:-0.053333pt;}
.ls83{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:-0.040000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls0{letter-spacing:0.005333pt;}
.ls44{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.061867pt;}
.ls4b{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls63{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls6f{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.213333pt;}
.ls70{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.266667pt;}
.ls49{letter-spacing:0.298667pt;}
.ls29{letter-spacing:0.320000pt;}
.ls4a{letter-spacing:0.341333pt;}
.ls47{letter-spacing:0.373333pt;}
.ls24{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls81{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls7a{letter-spacing:0.554667pt;}
.ls19{letter-spacing:0.586667pt;}
.ls6d{letter-spacing:0.597333pt;}
.ls5{letter-spacing:0.640000pt;}
.ls76{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls68{letter-spacing:0.725333pt;}
.ls41{letter-spacing:0.746667pt;}
.ls66{letter-spacing:0.768000pt;}
.ls3a{letter-spacing:0.800000pt;}
.lsb{letter-spacing:0.853333pt;}
.ls69{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.906667pt;}
.ls6e{letter-spacing:0.938667pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls8e{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls64{letter-spacing:1.024000pt;}
.ls54{letter-spacing:1.066667pt;}
.ls6b{letter-spacing:1.109333pt;}
.ls20{letter-spacing:1.120000pt;}
.ls8b{letter-spacing:1.152000pt;}
.ls17{letter-spacing:1.173333pt;}
.ls5f{letter-spacing:1.194667pt;}
.ls3f{letter-spacing:1.226667pt;}
.ls5a{letter-spacing:1.237333pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls7f{letter-spacing:1.322667pt;}
.ls16{letter-spacing:1.333333pt;}
.ls67{letter-spacing:1.365333pt;}
.ls2e{letter-spacing:1.386667pt;}
.ls8d{letter-spacing:1.408000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls7b{letter-spacing:1.450667pt;}
.ls23{letter-spacing:1.493333pt;}
.ls60{letter-spacing:1.536000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls7d{letter-spacing:1.578667pt;}
.ls15{letter-spacing:1.600000pt;}
.ls65{letter-spacing:1.621333pt;}
.ls2d{letter-spacing:1.653333pt;}
.ls5e{letter-spacing:1.664000pt;}
.ls10{letter-spacing:1.706667pt;}
.ls3c{letter-spacing:1.760000pt;}
.ls40{letter-spacing:1.813333pt;}
.ls6c{letter-spacing:1.834667pt;}
.ls1d{letter-spacing:1.866667pt;}
.ls77{letter-spacing:1.877333pt;}
.ls4{letter-spacing:1.920000pt;}
.ls86{letter-spacing:1.962667pt;}
.ls1b{letter-spacing:1.973333pt;}
.ls75{letter-spacing:2.005333pt;}
.ls45{letter-spacing:2.026667pt;}
.ls79{letter-spacing:2.048000pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls27{letter-spacing:2.133333pt;}
.ls62{letter-spacing:2.176000pt;}
.ls37{letter-spacing:2.186667pt;}
.ls5b{letter-spacing:2.218667pt;}
.ls39{letter-spacing:2.240000pt;}
.ls7e{letter-spacing:2.261333pt;}
.ls30{letter-spacing:2.346667pt;}
.ls5d{letter-spacing:2.389333pt;}
.ls36{letter-spacing:2.400000pt;}
.ls7c{letter-spacing:2.432000pt;}
.ls25{letter-spacing:2.453333pt;}
.ls71{letter-spacing:2.474667pt;}
.ls4f{letter-spacing:2.506667pt;}
.lsf{letter-spacing:2.560000pt;}
.ls8c{letter-spacing:2.602667pt;}
.ls7{letter-spacing:2.613333pt;}
.ls6a{letter-spacing:2.645333pt;}
.ls52{letter-spacing:2.666667pt;}
.ls26{letter-spacing:2.720000pt;}
.ls5c{letter-spacing:2.730667pt;}
.ls43{letter-spacing:2.773333pt;}
.ls87{letter-spacing:2.816000pt;}
.ls21{letter-spacing:2.880000pt;}
.ls3{letter-spacing:2.933333pt;}
.ls4c{letter-spacing:2.986667pt;}
.ls89{letter-spacing:3.029333pt;}
.ls22{letter-spacing:3.040000pt;}
.ls4e{letter-spacing:3.146667pt;}
.ls72{letter-spacing:3.157333pt;}
.ls48{letter-spacing:3.200000pt;}
.ls38{letter-spacing:3.253333pt;}
.ls61{letter-spacing:3.285333pt;}
.ls73{letter-spacing:3.328000pt;}
.ls78{letter-spacing:3.370667pt;}
.ls14{letter-spacing:3.413333pt;}
.ls8f{letter-spacing:3.456000pt;}
.ls2f{letter-spacing:3.466667pt;}
.ls2c{letter-spacing:3.573333pt;}
.ls55{letter-spacing:3.626667pt;}
.ls74{letter-spacing:3.712000pt;}
.ls28{letter-spacing:3.733333pt;}
.ls34{letter-spacing:3.786667pt;}
.ls8a{letter-spacing:3.882667pt;}
.ls51{letter-spacing:3.893333pt;}
.ls3d{letter-spacing:3.946667pt;}
.ls88{letter-spacing:4.053333pt;}
.ls80{letter-spacing:4.138667pt;}
.ls46{letter-spacing:4.266667pt;}
.ls84{letter-spacing:4.352000pt;}
.ls85{letter-spacing:4.437333pt;}
.ls58{letter-spacing:4.586667pt;}
.ls57{letter-spacing:4.800000pt;}
.ls56{letter-spacing:6.453333pt;}
.ls59{letter-spacing:6.773333pt;}
.ls3b{letter-spacing:7.200000pt;}
.ws57{word-spacing:-15.520000pt;}
.ws6d{word-spacing:-15.200000pt;}
.ws21{word-spacing:-15.040000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws58{word-spacing:-14.240000pt;}
.ws85{word-spacing:-13.994667pt;}
.ws83{word-spacing:-13.866667pt;}
.ws84{word-spacing:-13.824000pt;}
.ws55{word-spacing:-13.653333pt;}
.ws6b{word-spacing:-13.546667pt;}
.wsb{word-spacing:-13.493333pt;}
.ws59{word-spacing:-13.440000pt;}
.ws6c{word-spacing:-13.386667pt;}
.ws56{word-spacing:-13.333333pt;}
.ws66{word-spacing:-13.226667pt;}
.ws6e{word-spacing:-13.056000pt;}
.ws87{word-spacing:-12.714667pt;}
.wsa2{word-spacing:-12.672000pt;}
.ws88{word-spacing:-12.373333pt;}
.ws80{word-spacing:-12.330667pt;}
.ws7f{word-spacing:-12.288000pt;}
.wsa3{word-spacing:-12.245333pt;}
.ws89{word-spacing:-12.117333pt;}
.ws86{word-spacing:-12.032000pt;}
.ws7e{word-spacing:-11.946667pt;}
.ws3{word-spacing:-11.861333pt;}
.ws82{word-spacing:-11.690667pt;}
.wsa4{word-spacing:-11.349333pt;}
.ws2{word-spacing:-11.120000pt;}
.ws81{word-spacing:-11.093333pt;}
.wsa1{word-spacing:-10.922667pt;}
.ws6f{word-spacing:-10.880000pt;}
.ws4a{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.340800pt;}
.ws68{word-spacing:-6.400000pt;}
.ws9f{word-spacing:-4.138667pt;}
.wsb2{word-spacing:-3.456000pt;}
.ws9b{word-spacing:-3.370667pt;}
.wsa9{word-spacing:-2.816000pt;}
.ws95{word-spacing:-2.773333pt;}
.ws5{word-spacing:-2.565333pt;}
.ws7a{word-spacing:-2.400000pt;}
.ws96{word-spacing:-2.346667pt;}
.ws97{word-spacing:-2.133333pt;}
.ws72{word-spacing:-2.080000pt;}
.ws9c{word-spacing:-2.048000pt;}
.ws71{word-spacing:-2.026667pt;}
.ws1c{word-spacing:-1.973333pt;}
.wsa7{word-spacing:-1.962667pt;}
.ws4d{word-spacing:-1.920000pt;}
.ws8c{word-spacing:-1.834667pt;}
.ws8a{word-spacing:-1.706667pt;}
.ws52{word-spacing:-1.653333pt;}
.ws92{word-spacing:-1.621333pt;}
.wsb0{word-spacing:-1.578667pt;}
.wsa6{word-spacing:-1.536000pt;}
.ws16{word-spacing:-1.493333pt;}
.ws1b{word-spacing:-1.386667pt;}
.ws98{word-spacing:-1.365333pt;}
.ws9e{word-spacing:-1.322667pt;}
.ws90{word-spacing:-1.237333pt;}
.ws7c{word-spacing:-1.194667pt;}
.ws74{word-spacing:-1.173333pt;}
.ws22{word-spacing:-0.960000pt;}
.ws18{word-spacing:-0.906667pt;}
.ws4e{word-spacing:-0.853333pt;}
.ws65{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.480000pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws50{word-spacing:-0.373333pt;}
.ws3f{word-spacing:-0.341333pt;}
.ws23{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.256000pt;}
.ws7d{word-spacing:-0.213333pt;}
.ws15{word-spacing:-0.160000pt;}
.ws20{word-spacing:-0.106667pt;}
.wsae{word-spacing:-0.085333pt;}
.ws69{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.042667pt;}
.ws26{word-spacing:0.053333pt;}
.ws8b{word-spacing:0.085333pt;}
.ws43{word-spacing:0.106667pt;}
.ws51{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.213333pt;}
.wsb1{word-spacing:0.256000pt;}
.ws5b{word-spacing:0.266667pt;}
.ws5d{word-spacing:0.320000pt;}
.ws9{word-spacing:0.373333pt;}
.wsa{word-spacing:0.426667pt;}
.ws94{word-spacing:0.469333pt;}
.ws45{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.533333pt;}
.wsab{word-spacing:0.554667pt;}
.ws27{word-spacing:0.586667pt;}
.ws4b{word-spacing:0.597333pt;}
.ws77{word-spacing:0.640000pt;}
.ws62{word-spacing:0.746667pt;}
.ws4f{word-spacing:0.800000pt;}
.ws33{word-spacing:0.810667pt;}
.ws40{word-spacing:0.853333pt;}
.ws61{word-spacing:0.906667pt;}
.ws12{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.109333pt;}
.ws7b{word-spacing:1.152000pt;}
.ws25{word-spacing:1.173333pt;}
.wsaf{word-spacing:1.194667pt;}
.ws2d{word-spacing:1.226667pt;}
.ws8f{word-spacing:1.237333pt;}
.ws13{word-spacing:1.280000pt;}
.ws2a{word-spacing:1.333333pt;}
.ws53{word-spacing:1.386667pt;}
.ws41{word-spacing:1.408000pt;}
.ws91{word-spacing:1.450667pt;}
.ws3e{word-spacing:1.493333pt;}
.ws34{word-spacing:1.546667pt;}
.ws44{word-spacing:1.600000pt;}
.wse{word-spacing:1.653333pt;}
.ws76{word-spacing:1.706667pt;}
.ws17{word-spacing:1.760000pt;}
.ws5e{word-spacing:1.866667pt;}
.ws47{word-spacing:1.920000pt;}
.ws10{word-spacing:2.133333pt;}
.ws60{word-spacing:2.186667pt;}
.ws2b{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.261333pt;}
.ws31{word-spacing:2.293333pt;}
.ws8e{word-spacing:2.304000pt;}
.ws1a{word-spacing:2.346667pt;}
.wsa5{word-spacing:2.389333pt;}
.ws2c{word-spacing:2.400000pt;}
.wsf{word-spacing:2.506667pt;}
.ws99{word-spacing:2.517333pt;}
.ws46{word-spacing:2.560000pt;}
.ws9d{word-spacing:2.602667pt;}
.ws54{word-spacing:2.613333pt;}
.ws6a{word-spacing:2.688000pt;}
.wsa8{word-spacing:2.730667pt;}
.ws2f{word-spacing:2.773333pt;}
.wsac{word-spacing:2.816000pt;}
.ws19{word-spacing:2.826667pt;}
.ws30{word-spacing:2.880000pt;}
.ws8d{word-spacing:2.901333pt;}
.wsa0{word-spacing:2.944000pt;}
.ws11{word-spacing:2.986667pt;}
.ws48{word-spacing:3.040000pt;}
.ws38{word-spacing:3.093333pt;}
.wsc{word-spacing:3.146667pt;}
.ws5f{word-spacing:3.200000pt;}
.ws49{word-spacing:3.242667pt;}
.ws24{word-spacing:3.253333pt;}
.ws70{word-spacing:3.306667pt;}
.ws1d{word-spacing:3.413333pt;}
.ws3c{word-spacing:3.456000pt;}
.ws75{word-spacing:3.466667pt;}
.ws42{word-spacing:3.498667pt;}
.ws64{word-spacing:3.520000pt;}
.ws39{word-spacing:3.541333pt;}
.ws3a{word-spacing:3.584000pt;}
.ws3b{word-spacing:3.626667pt;}
.ws35{word-spacing:3.786667pt;}
.ws14{word-spacing:3.840000pt;}
.ws36{word-spacing:3.893333pt;}
.ws7{word-spacing:3.946667pt;}
.ws63{word-spacing:4.000000pt;}
.ws32{word-spacing:4.053333pt;}
.ws73{word-spacing:4.106667pt;}
.ws37{word-spacing:4.160000pt;}
.ws5c{word-spacing:4.213333pt;}
.ws5a{word-spacing:4.266667pt;}
.ws28{word-spacing:4.320000pt;}
.ws6{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws78{word-spacing:4.853333pt;}
.ws79{word-spacing:4.906667pt;}
.ws93{word-spacing:5.205333pt;}
.ws4c{word-spacing:142.848000pt;}
.ws67{word-spacing:408.661333pt;}
._9{margin-left:-2576.085333pt;}
._a{margin-left:-2554.922667pt;}
._b{margin-left:-7.698667pt;}
._4{margin-left:-6.773333pt;}
._c{margin-left:-5.741333pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.906667pt;}
._5{width:1.032000pt;}
._8{width:2.773333pt;}
._6{width:3.786667pt;}
._7{width:5.280000pt;}
._d{width:6.346667pt;}
._26{width:7.594667pt;}
._e{width:68.437333pt;}
._12{width:79.488000pt;}
._14{width:84.906667pt;}
._11{width:86.613333pt;}
._13{width:92.458667pt;}
._1a{width:107.306667pt;}
._20{width:119.765333pt;}
._22{width:128.042667pt;}
._1c{width:143.104000pt;}
._21{width:148.778667pt;}
._19{width:151.765333pt;}
._17{width:152.917333pt;}
._16{width:158.848000pt;}
._1f{width:207.744000pt;}
._18{width:210.517333pt;}
._15{width:240.896000pt;}
._24{width:442.410667pt;}
._23{width:450.730667pt;}
._1b{width:496.640000pt;}
._25{width:599.637333pt;}
._10{width:727.936000pt;}
._f{width:758.656000pt;}
._1e{width:1172.821333pt;}
._1d{width:1483.605333pt;}
.fs6{font-size:24.000000pt;}
.fsa{font-size:25.600000pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y15c{bottom:68.552800pt;}
.ye1{bottom:74.295733pt;}
.y6b{bottom:74.336533pt;}
.y142{bottom:74.342533pt;}
.yef{bottom:74.392667pt;}
.y64{bottom:74.462533pt;}
.yd8{bottom:74.470400pt;}
.y95{bottom:74.729200pt;}
.y98{bottom:74.743467pt;}
.ydd{bottom:74.838000pt;}
.y119{bottom:74.946933pt;}
.yc4{bottom:75.016533pt;}
.ybb{bottom:75.782800pt;}
.y25{bottom:78.246000pt;}
.y133{bottom:78.281067pt;}
.y15b{bottom:81.886133pt;}
.y19d{bottom:84.678667pt;}
.yca{bottom:85.515200pt;}
.yd7{bottom:88.465067pt;}
.y97{bottom:88.738133pt;}
.ydc{bottom:88.832667pt;}
.yc3{bottom:89.011200pt;}
.yba{bottom:89.777467pt;}
.y6a{bottom:90.336533pt;}
.y141{bottom:90.342533pt;}
.y63{bottom:90.462533pt;}
.y94{bottom:90.729200pt;}
.y24{bottom:91.576000pt;}
.y132{bottom:92.947733pt;}
.y15a{bottom:95.219467pt;}
.y118{bottom:97.624267pt;}
.y19c{bottom:98.012000pt;}
.yc9{bottom:99.509867pt;}
.y96{bottom:102.732800pt;}
.ydb{bottom:102.827333pt;}
.yc2{bottom:103.005867pt;}
.yb9{bottom:103.772133pt;}
.y69{bottom:106.336533pt;}
.y140{bottom:106.342533pt;}
.y62{bottom:106.462533pt;}
.y93{bottom:106.729200pt;}
.y159{bottom:108.552800pt;}
.yc0{bottom:111.300000pt;}
.y19b{bottom:111.345333pt;}
.y131{bottom:112.074667pt;}
.y117{bottom:112.290933pt;}
.yc8{bottom:113.504533pt;}
.yc1{bottom:117.000533pt;}
.y158{bottom:121.886133pt;}
.y68{bottom:122.342533pt;}
.y61{bottom:122.462533pt;}
.y92{bottom:122.729200pt;}
.ye4{bottom:123.404933pt;}
.y19a{bottom:124.678667pt;}
.ybf{bottom:125.294667pt;}
.y130{bottom:126.741333pt;}
.y116{bottom:126.957600pt;}
.y157{bottom:135.219467pt;}
.ye3{bottom:137.399600pt;}
.y199{bottom:138.012000pt;}
.y67{bottom:138.342533pt;}
.y60{bottom:138.462533pt;}
.ybe{bottom:139.289333pt;}
.y12f{bottom:141.408000pt;}
.y12d{bottom:141.411467pt;}
.y115{bottom:141.624267pt;}
.y29{bottom:142.055067pt;}
.y156{bottom:148.552800pt;}
.y198{bottom:151.345333pt;}
.ye2{bottom:151.394267pt;}
.ybd{bottom:153.284000pt;}
.y66{bottom:154.342533pt;}
.y91{bottom:154.369200pt;}
.y5f{bottom:154.462533pt;}
.y12e{bottom:156.074667pt;}
.y12c{bottom:156.078133pt;}
.y114{bottom:156.290933pt;}
.y28{bottom:158.055067pt;}
.y155{bottom:161.886133pt;}
.y111{bottom:163.853600pt;}
.y197{bottom:164.678667pt;}
.y13f{bottom:170.342533pt;}
.y5e{bottom:170.462533pt;}
.y12b{bottom:170.520800pt;}
.y27{bottom:174.055067pt;}
.y154{bottom:175.219467pt;}
.y196{bottom:178.012000pt;}
.y110{bottom:178.520267pt;}
.y113{bottom:182.072267pt;}
.y12a{bottom:185.187467pt;}
.y65{bottom:185.982533pt;}
.y13e{bottom:186.342533pt;}
.y5d{bottom:186.462533pt;}
.y90{bottom:186.595867pt;}
.y153{bottom:188.552800pt;}
.y2b{bottom:190.055067pt;}
.y195{bottom:191.345333pt;}
.y10f{bottom:193.186933pt;}
.y112{bottom:196.738933pt;}
.y129{bottom:199.854133pt;}
.y127{bottom:199.857733pt;}
.y152{bottom:201.886133pt;}
.y13d{bottom:202.342533pt;}
.y5c{bottom:202.462533pt;}
.y8f{bottom:202.595867pt;}
.y194{bottom:204.678667pt;}
.y26{bottom:205.695067pt;}
.y2a{bottom:206.055067pt;}
.y10e{bottom:207.853600pt;}
.y128{bottom:214.520800pt;}
.y126{bottom:214.524400pt;}
.y151{bottom:215.219467pt;}
.y193{bottom:218.012000pt;}
.y13c{bottom:218.342533pt;}
.y5b{bottom:218.462533pt;}
.y8e{bottom:218.595867pt;}
.y10d{bottom:222.520267pt;}
.y150{bottom:228.552800pt;}
.y123{bottom:228.967067pt;}
.y192{bottom:231.345333pt;}
.y13b{bottom:234.342533pt;}
.y5a{bottom:234.462533pt;}
.y8d{bottom:234.595867pt;}
.y10c{bottom:237.186933pt;}
.y14f{bottom:241.886133pt;}
.y125{bottom:243.633733pt;}
.y122{bottom:243.644133pt;}
.y191{bottom:244.678667pt;}
.y13a{bottom:250.342533pt;}
.y59{bottom:250.462533pt;}
.y8c{bottom:250.595867pt;}
.y14e{bottom:255.219467pt;}
.y190{bottom:258.012000pt;}
.y124{bottom:258.300400pt;}
.y121{bottom:258.310800pt;}
.y10b{bottom:262.968267pt;}
.y139{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.y8b{bottom:266.595867pt;}
.y14d{bottom:268.552800pt;}
.y18f{bottom:271.345333pt;}
.y120{bottom:272.753467pt;}
.y23{bottom:273.564667pt;}
.y10a{bottom:277.634933pt;}
.y6e{bottom:282.102533pt;}
.y138{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.y8a{bottom:282.595867pt;}
.y18e{bottom:284.678667pt;}
.y11f{bottom:287.420133pt;}
.y109{bottom:292.301600pt;}
.y22{bottom:297.871333pt;}
.y14c{bottom:297.984533pt;}
.y18d{bottom:298.012000pt;}
.y137{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.y89{bottom:298.595867pt;}
.y11e{bottom:302.086800pt;}
.y108{bottom:306.968267pt;}
.y18c{bottom:311.345333pt;}
.y21{bottom:313.871333pt;}
.y6d{bottom:313.982533pt;}
.y136{bottom:314.342533pt;}
.y55{bottom:314.462533pt;}
.y88{bottom:314.595867pt;}
.y11d{bottom:316.753467pt;}
.y107{bottom:321.634933pt;}
.y18b{bottom:324.678667pt;}
.y20{bottom:329.871333pt;}
.y54{bottom:330.462533pt;}
.y87{bottom:330.595867pt;}
.y102{bottom:336.760267pt;}
.y18a{bottom:338.012000pt;}
.y11c{bottom:342.534800pt;}
.y1f{bottom:345.871333pt;}
.y135{bottom:345.982533pt;}
.y53{bottom:346.462533pt;}
.y14b{bottom:346.464533pt;}
.y86{bottom:346.595867pt;}
.y106{bottom:347.416267pt;}
.y189{bottom:351.345333pt;}
.y101{bottom:351.426933pt;}
.y1e{bottom:361.871333pt;}
.y52{bottom:362.462533pt;}
.y14a{bottom:362.464533pt;}
.y85{bottom:362.595867pt;}
.y188{bottom:364.678667pt;}
.y100{bottom:366.093600pt;}
.y11b{bottom:368.316133pt;}
.y105{bottom:373.197600pt;}
.y1d{bottom:377.871333pt;}
.y187{bottom:378.012000pt;}
.y51{bottom:378.462533pt;}
.y149{bottom:378.464533pt;}
.y84{bottom:378.595867pt;}
.yff{bottom:380.760267pt;}
.y104{bottom:384.312267pt;}
.y186{bottom:391.345333pt;}
.yfb{bottom:391.874933pt;}
.y1c{bottom:393.871333pt;}
.y148{bottom:394.104533pt;}
.y50{bottom:394.462533pt;}
.y83{bottom:394.595867pt;}
.yfe{bottom:395.426933pt;}
.y11a{bottom:397.102533pt;}
.yee{bottom:398.659333pt;}
.y103{bottom:398.978933pt;}
.ye0{bottom:402.722400pt;}
.y185{bottom:404.678667pt;}
.yfa{bottom:406.541600pt;}
.y1b{bottom:409.871333pt;}
.yfd{bottom:410.093600pt;}
.y4f{bottom:410.462533pt;}
.y82{bottom:410.595867pt;}
.yed{bottom:412.654000pt;}
.ydf{bottom:416.717067pt;}
.y184{bottom:418.012000pt;}
.yf9{bottom:421.208267pt;}
.yfc{bottom:424.760267pt;}
.y1a{bottom:425.871333pt;}
.y147{bottom:426.104533pt;}
.y4e{bottom:426.462533pt;}
.y81{bottom:426.595867pt;}
.y183{bottom:431.345333pt;}
.yc7{bottom:435.688400pt;}
.yf8{bottom:435.874933pt;}
.y19{bottom:441.871333pt;}
.y4d{bottom:442.462533pt;}
.y80{bottom:442.595867pt;}
.y182{bottom:444.678667pt;}
.yc6{bottom:449.683067pt;}
.yf7{bottom:450.541600pt;}
.y18{bottom:457.871333pt;}
.y181{bottom:458.012000pt;}
.y146{bottom:458.102533pt;}
.y4c{bottom:458.462533pt;}
.y7f{bottom:458.595867pt;}
.yc5{bottom:463.677733pt;}
.y180{bottom:471.345333pt;}
.y17{bottom:473.871333pt;}
.y4b{bottom:474.462533pt;}
.y7e{bottom:474.595867pt;}
.yf6{bottom:476.322933pt;}
.y17f{bottom:484.678667pt;}
.y16{bottom:489.871333pt;}
.y4a{bottom:490.462533pt;}
.y7d{bottom:490.595867pt;}
.yf5{bottom:490.989600pt;}
.y17e{bottom:498.012000pt;}
.y15{bottom:505.871333pt;}
.y145{bottom:506.102533pt;}
.y49{bottom:506.462533pt;}
.y7c{bottom:506.595867pt;}
.y17d{bottom:511.345333pt;}
.yf4{bottom:516.770933pt;}
.y14{bottom:521.871333pt;}
.y48{bottom:522.462533pt;}
.y7b{bottom:522.595867pt;}
.yb6{bottom:522.609200pt;}
.y17c{bottom:524.678667pt;}
.yf3{bottom:527.885600pt;}
.y13{bottom:537.871333pt;}
.y17b{bottom:538.012000pt;}
.y47{bottom:538.462533pt;}
.y7a{bottom:538.595867pt;}
.yb5{bottom:538.609200pt;}
.yf2{bottom:542.552267pt;}
.y17a{bottom:551.345333pt;}
.y12{bottom:553.871333pt;}
.y46{bottom:554.462533pt;}
.y79{bottom:554.595867pt;}
.yb4{bottom:554.609200pt;}
.y179{bottom:564.678667pt;}
.y45{bottom:570.462533pt;}
.y78{bottom:570.595867pt;}
.yb3{bottom:570.609200pt;}
.yf1{bottom:571.342533pt;}
.y178{bottom:578.012000pt;}
.y11{bottom:583.324667pt;}
.y144{bottom:586.102533pt;}
.y44{bottom:586.462533pt;}
.y77{bottom:586.595867pt;}
.yb2{bottom:586.609200pt;}
.y177{bottom:591.345333pt;}
.y43{bottom:602.462533pt;}
.y76{bottom:602.595867pt;}
.yb1{bottom:602.609200pt;}
.y176{bottom:604.678667pt;}
.y10{bottom:605.838267pt;}
.y175{bottom:618.012000pt;}
.y42{bottom:618.462533pt;}
.y75{bottom:618.595867pt;}
.yb0{bottom:618.609200pt;}
.y174{bottom:631.345333pt;}
.yf{bottom:634.029867pt;}
.y41{bottom:634.462533pt;}
.y74{bottom:634.595867pt;}
.yaf{bottom:634.609200pt;}
.y173{bottom:644.678667pt;}
.ye{bottom:649.461467pt;}
.y40{bottom:650.462533pt;}
.y73{bottom:650.595867pt;}
.yae{bottom:650.609200pt;}
.y172{bottom:658.012000pt;}
.yd{bottom:658.029867pt;}
.y3f{bottom:666.462533pt;}
.y72{bottom:666.595867pt;}
.yad{bottom:666.609200pt;}
.y171{bottom:671.345333pt;}
.yc{bottom:673.461467pt;}
.yb{bottom:682.029867pt;}
.y3e{bottom:682.462533pt;}
.y71{bottom:682.595867pt;}
.yac{bottom:682.609200pt;}
.y170{bottom:684.678667pt;}
.ya{bottom:697.461467pt;}
.y16f{bottom:698.012000pt;}
.y3d{bottom:698.462533pt;}
.yd6{bottom:698.475867pt;}
.y70{bottom:698.595867pt;}
.yab{bottom:698.609200pt;}
.y16e{bottom:711.345333pt;}
.y3c{bottom:714.462533pt;}
.yd5{bottom:714.475867pt;}
.y9e{bottom:714.595867pt;}
.yaa{bottom:714.609200pt;}
.y9{bottom:724.382933pt;}
.y16d{bottom:724.678667pt;}
.y6f{bottom:730.235867pt;}
.y3b{bottom:730.462533pt;}
.yd4{bottom:730.475867pt;}
.y9d{bottom:730.595867pt;}
.ya9{bottom:730.609200pt;}
.y16c{bottom:738.012000pt;}
.y143{bottom:746.102533pt;}
.y3a{bottom:746.462533pt;}
.yd3{bottom:746.475867pt;}
.y9c{bottom:746.595867pt;}
.ya8{bottom:746.609200pt;}
.y16b{bottom:751.345333pt;}
.y39{bottom:762.462533pt;}
.yd2{bottom:762.475867pt;}
.y9b{bottom:762.595867pt;}
.ya7{bottom:762.609200pt;}
.y16a{bottom:764.678667pt;}
.y8{bottom:765.406933pt;}
.y169{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.yd1{bottom:778.475867pt;}
.y9a{bottom:778.595867pt;}
.ya6{bottom:778.609200pt;}
.y168{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.yd0{bottom:794.475867pt;}
.ycd{bottom:794.595867pt;}
.y7{bottom:797.816533pt;}
.y167{bottom:804.678667pt;}
.y99{bottom:810.235867pt;}
.ya5{bottom:810.249200pt;}
.y36{bottom:810.462533pt;}
.ycf{bottom:810.475867pt;}
.ycc{bottom:810.595867pt;}
.y166{bottom:818.012000pt;}
.yb8{bottom:826.235867pt;}
.y35{bottom:826.462533pt;}
.yea{bottom:826.464533pt;}
.yce{bottom:826.475867pt;}
.y6{bottom:830.226133pt;}
.y165{bottom:831.345333pt;}
.ycb{bottom:842.235867pt;}
.y34{bottom:842.462533pt;}
.ye9{bottom:842.464533pt;}
.ya4{bottom:842.475867pt;}
.y164{bottom:844.678667pt;}
.y163{bottom:858.012000pt;}
.yda{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.ye8{bottom:858.464533pt;}
.ya3{bottom:858.475867pt;}
.y5{bottom:862.635733pt;}
.y162{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.ye7{bottom:874.464533pt;}
.ya2{bottom:874.475867pt;}
.y161{bottom:884.678667pt;}
.y31{bottom:890.462533pt;}
.ye6{bottom:890.464533pt;}
.ya1{bottom:890.475867pt;}
.y4{bottom:895.045333pt;}
.y160{bottom:898.012000pt;}
.y30{bottom:906.462533pt;}
.yec{bottom:906.464533pt;}
.ya0{bottom:906.475867pt;}
.y15f{bottom:911.345333pt;}
.ye5{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.yeb{bottom:922.464533pt;}
.y9f{bottom:922.475867pt;}
.y15e{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.y15d{bottom:1006.590133pt;}
.y6c{bottom:1006.594400pt;}
.yf0{bottom:1006.595333pt;}
.y134{bottom:1006.596533pt;}
.ybc{bottom:1006.597067pt;}
.yd9{bottom:1006.598400pt;}
.y19e{bottom:1006.598667pt;}
.yde{bottom:1006.603333pt;}
.yb7{bottom:1006.604800pt;}
.y2d{bottom:1009.857333pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h14{height:17.787500pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h8{height:29.160156pt;}
.h10{height:29.645833pt;}
.h4{height:31.062500pt;}
.hf{height:31.104167pt;}
.h11{height:31.928833pt;}
.h13{height:31.956567pt;}
.h12{height:31.970433pt;}
.he{height:37.057292pt;}
.ha{height:38.828125pt;}
.hc{height:38.860475pt;}
.hb{height:38.880208pt;}
.h6{height:43.678785pt;}
.h3{height:50.476562pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:62.740133pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x42{left:88.817867pt;}
.x4b{left:90.708800pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xc{left:98.271467pt;}
.x4a{left:109.606533pt;}
.x4{left:111.496133pt;}
.x7{left:117.170133pt;}
.x1c{left:118.680267pt;}
.x32{left:120.194933pt;}
.x3c{left:125.826933pt;}
.x48{left:169.018133pt;}
.x19{left:176.780133pt;}
.x6{left:189.223467pt;}
.x12{left:206.542533pt;}
.x39{left:209.762933pt;}
.x2f{left:211.810933pt;}
.x2a{left:213.880267pt;}
.x21{left:215.640267pt;}
.x1b{left:263.064267pt;}
.x1d{left:264.237600pt;}
.x33{left:269.176267pt;}
.x22{left:271.053600pt;}
.x3a{left:283.085600pt;}
.x2e{left:286.925600pt;}
.x43{left:289.127200pt;}
.x44{left:304.241867pt;}
.x41{left:309.447200pt;}
.x23{left:348.685600pt;}
.x35{left:350.253600pt;}
.x2b{left:352.120267pt;}
.x2d{left:353.154933pt;}
.x2c{left:354.936267pt;}
.x36{left:356.877600pt;}
.x1e{left:363.490933pt;}
.x34{left:367.533600pt;}
.xa{left:404.481333pt;}
.xd{left:406.284800pt;}
.x13{left:425.195867pt;}
.x8{left:427.090133pt;}
.x25{left:429.336267pt;}
.x1f{left:434.317600pt;}
.xe{left:436.524800pt;}
.x24{left:439.352267pt;}
.x45{left:447.868533pt;}
.x14{left:455.435867pt;}
.x26{left:458.477600pt;}
.x3b{left:459.384267pt;}
.x46{left:462.983200pt;}
.xf{left:466.898133pt;}
.x49{left:510.952533pt;}
.x30{left:515.917600pt;}
.x27{left:519.810933pt;}
.x37{left:525.154933pt;}
.x31{left:526.488267pt;}
.x29{left:528.856267pt;}
.x28{left:530.765600pt;}
.x20{left:536.824267pt;}
.x3f{left:579.714933pt;}
.x3d{left:582.232267pt;}
.x3e{left:586.968267pt;}
.x11{left:589.770933pt;}
.x38{left:592.600267pt;}
.x40{left:601.933600pt;}
.x47{left:606.609867pt;}
.x2{left:616.324800pt;}
.x17{left:641.524800pt;}
.x10{left:647.459200pt;}
.x18{left:661.211867pt;}
.x15{left:666.356800pt;}
.x1a{left:676.013600pt;}
}




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