
    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_df4f71b9f2968531508fa0d8.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_2d34f757bcc4ca1498fc7e43.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_603f3234a428c6ea735a018f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_b54f6a6c286e1de900ea7ce5.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_584367319384e616b3e0b8bb.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_7c1d9f0dc5c01b48297f7295.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_25027545b74296d5214d5ed8.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_3e9ed8020d4cb5bc7e38f6fe.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_0b74ca9b71fff837e254881e.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_430d3d54138ddd44915ba093.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:22.562400px;}
.v1{vertical-align:30.381600px;}
.ls37{letter-spacing:-8.160000px;}
.ls57{letter-spacing:-7.740000px;}
.ls58{letter-spacing:-6.900000px;}
.ls55{letter-spacing:-6.300000px;}
.ls4c{letter-spacing:-5.520000px;}
.ls5e{letter-spacing:-5.100000px;}
.ls59{letter-spacing:-4.620000px;}
.ls5d{letter-spacing:-3.780000px;}
.ls16{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.450000px;}
.ls35{letter-spacing:-0.420000px;}
.ls36{letter-spacing:-0.240000px;}
.ls56{letter-spacing:-0.180000px;}
.ls26{letter-spacing:-0.120000px;}
.ls25{letter-spacing:-0.060000px;}
.ls76{letter-spacing:-0.048000px;}
.ls15{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls4d{letter-spacing:0.048000px;}
.ls39{letter-spacing:0.060000px;}
.ls71{letter-spacing:0.096000px;}
.ls2e{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.240000px;}
.ls75{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls68{letter-spacing:0.384000px;}
.ls4{letter-spacing:0.420000px;}
.ls6b{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.540000px;}
.ls3d{letter-spacing:0.600000px;}
.ls67{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.660000px;}
.ls64{letter-spacing:0.672000px;}
.lsf{letter-spacing:0.720000px;}
.ls6e{letter-spacing:0.768000px;}
.ls41{letter-spacing:0.780000px;}
.ls3b{letter-spacing:0.840000px;}
.ls73{letter-spacing:0.864000px;}
.ls51{letter-spacing:0.900000px;}
.ls70{letter-spacing:0.912000px;}
.ls27{letter-spacing:0.960000px;}
.ls63{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.020000px;}
.ls66{letter-spacing:1.056000px;}
.ls3a{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.104000px;}
.ls33{letter-spacing:1.140000px;}
.ls23{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.260000px;}
.ls72{letter-spacing:1.296000px;}
.ls10{letter-spacing:1.320000px;}
.ls24{letter-spacing:1.380000px;}
.ls38{letter-spacing:1.440000px;}
.ls34{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.536000px;}
.ls2d{letter-spacing:1.560000px;}
.ls31{letter-spacing:1.620000px;}
.ls8{letter-spacing:1.680000px;}
.ls2f{letter-spacing:1.740000px;}
.ls14{letter-spacing:1.800000px;}
.ls6c{letter-spacing:1.824000px;}
.ls3f{letter-spacing:1.860000px;}
.ls53{letter-spacing:1.920000px;}
.ls42{letter-spacing:1.980000px;}
.ls3{letter-spacing:2.040000px;}
.ls9{letter-spacing:2.100000px;}
.ls69{letter-spacing:2.112000px;}
.ls19{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.220000px;}
.ls21{letter-spacing:2.280000px;}
.ls6d{letter-spacing:2.304000px;}
.lsc{letter-spacing:2.340000px;}
.ls54{letter-spacing:2.400000px;}
.ls49{letter-spacing:2.460000px;}
.ls28{letter-spacing:2.520000px;}
.ls62{letter-spacing:2.544000px;}
.ls12{letter-spacing:2.580000px;}
.ls6f{letter-spacing:2.592000px;}
.ls32{letter-spacing:2.640000px;}
.ls4b{letter-spacing:2.700000px;}
.ls43{letter-spacing:2.760000px;}
.ls20{letter-spacing:2.820000px;}
.ls2c{letter-spacing:2.880000px;}
.lse{letter-spacing:2.940000px;}
.ls1b{letter-spacing:3.000000px;}
.ls1e{letter-spacing:3.060000px;}
.ls30{letter-spacing:3.120000px;}
.ls6{letter-spacing:3.180000px;}
.ls1f{letter-spacing:3.240000px;}
.ls29{letter-spacing:3.300000px;}
.ls3e{letter-spacing:3.420000px;}
.ls46{letter-spacing:3.600000px;}
.ls45{letter-spacing:3.660000px;}
.ls4f{letter-spacing:3.720000px;}
.ls4a{letter-spacing:3.840000px;}
.ls5f{letter-spacing:3.900000px;}
.lsd{letter-spacing:3.960000px;}
.ls3c{letter-spacing:4.140000px;}
.ls60{letter-spacing:4.200000px;}
.ls2a{letter-spacing:4.260000px;}
.ls2b{letter-spacing:4.500000px;}
.ls13{letter-spacing:4.680000px;}
.ls4e{letter-spacing:4.860000px;}
.ls5a{letter-spacing:5.040000px;}
.ls74{letter-spacing:5.160000px;}
.ls44{letter-spacing:5.220000px;}
.ls1d{letter-spacing:5.340000px;}
.ls50{letter-spacing:5.460000px;}
.ls48{letter-spacing:5.580000px;}
.ls52{letter-spacing:5.640000px;}
.ls5c{letter-spacing:5.760000px;}
.ls47{letter-spacing:6.540000px;}
.ls22{letter-spacing:7.260000px;}
.ls61{letter-spacing:9.180000px;}
.ls5b{letter-spacing:10.680000px;}
.ls0{letter-spacing:59.533476px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws75{word-spacing:-22.440000px;}
.ws5b{word-spacing:-19.860000px;}
.ws8{word-spacing:-19.680000px;}
.ws5c{word-spacing:-18.720000px;}
.ws40{word-spacing:-18.660000px;}
.ws31{word-spacing:-18.300000px;}
.ws60{word-spacing:-17.880000px;}
.ws42{word-spacing:-17.460000px;}
.ws74{word-spacing:-17.340000px;}
.ws13{word-spacing:-16.800000px;}
.ws3{word-spacing:-16.680000px;}
.ws5a{word-spacing:-16.260000px;}
.ws5f{word-spacing:-16.080000px;}
.ws61{word-spacing:-15.780000px;}
.ws7{word-spacing:-15.720000px;}
.ws30{word-spacing:-15.660000px;}
.ws5e{word-spacing:-15.600000px;}
.ws6{word-spacing:-15.420000px;}
.ws62{word-spacing:-15.360000px;}
.ws2f{word-spacing:-15.240000px;}
.ws5d{word-spacing:-15.120000px;}
.ws73{word-spacing:-15.060000px;}
.ws5{word-spacing:-15.000000px;}
.ws80{word-spacing:-14.112000px;}
.ws83{word-spacing:-13.824000px;}
.ws81{word-spacing:-13.536000px;}
.ws41{word-spacing:-13.500000px;}
.ws82{word-spacing:-13.440000px;}
.ws9{word-spacing:-13.344000px;}
.ws4{word-spacing:-12.510000px;}
.ws1c{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.210662px;}
.ws2{word-spacing:-7.293330px;}
.ws57{word-spacing:-6.996000px;}
.ws6b{word-spacing:-5.640000px;}
.ws7b{word-spacing:-5.040000px;}
.ws85{word-spacing:-4.200000px;}
.wsb{word-spacing:-2.886000px;}
.ws16{word-spacing:-2.820000px;}
.ws38{word-spacing:-2.520000px;}
.wsc{word-spacing:-2.331000px;}
.ws18{word-spacing:-2.280000px;}
.ws17{word-spacing:-2.220000px;}
.ws8f{word-spacing:-1.824000px;}
.ws7c{word-spacing:-1.740000px;}
.ws35{word-spacing:-1.560000px;}
.ws8a{word-spacing:-1.536000px;}
.ws3c{word-spacing:-1.500000px;}
.ws90{word-spacing:-1.440000px;}
.ws96{word-spacing:-1.296000px;}
.ws63{word-spacing:-1.260000px;}
.ws2d{word-spacing:-1.200000px;}
.ws6c{word-spacing:-1.080000px;}
.ws88{word-spacing:-1.056000px;}
.ws91{word-spacing:-0.912000px;}
.ws55{word-spacing:-0.840000px;}
.ws19{word-spacing:-0.480000px;}
.ws89{word-spacing:-0.384000px;}
.ws64{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.240000px;}
.ws6a{word-spacing:-0.180000px;}
.ws53{word-spacing:-0.120000px;}
.ws66{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws97{word-spacing:0.048000px;}
.ws39{word-spacing:0.060000px;}
.ws8c{word-spacing:0.096000px;}
.ws15{word-spacing:0.120000px;}
.ws50{word-spacing:0.180000px;}
.ws29{word-spacing:0.300000px;}
.ws3f{word-spacing:0.336000px;}
.ws93{word-spacing:0.384000px;}
.ws47{word-spacing:0.480000px;}
.ws98{word-spacing:0.600000px;}
.ws36{word-spacing:0.660000px;}
.ws1a{word-spacing:0.672000px;}
.ws3d{word-spacing:0.720000px;}
.ws3b{word-spacing:0.900000px;}
.ws23{word-spacing:0.960000px;}
.ws26{word-spacing:1.080000px;}
.ws8b{word-spacing:1.152000px;}
.ws68{word-spacing:1.320000px;}
.ws3e{word-spacing:1.380000px;}
.ws24{word-spacing:1.500000px;}
.ws94{word-spacing:1.536000px;}
.ws76{word-spacing:1.680000px;}
.ws4d{word-spacing:1.800000px;}
.ws4b{word-spacing:1.860000px;}
.ws3a{word-spacing:1.920000px;}
.ws59{word-spacing:2.112000px;}
.ws27{word-spacing:2.160000px;}
.ws52{word-spacing:2.220000px;}
.ws8d{word-spacing:2.448000px;}
.ws69{word-spacing:2.460000px;}
.ws7a{word-spacing:2.520000px;}
.ws8e{word-spacing:2.544000px;}
.ws48{word-spacing:2.760000px;}
.ws14{word-spacing:2.820000px;}
.ws6d{word-spacing:2.880000px;}
.ws71{word-spacing:2.940000px;}
.ws70{word-spacing:3.000000px;}
.ws49{word-spacing:3.060000px;}
.ws92{word-spacing:3.072000px;}
.ws7f{word-spacing:3.120000px;}
.ws7d{word-spacing:3.360000px;}
.ws4a{word-spacing:3.420000px;}
.ws2c{word-spacing:3.480000px;}
.ws95{word-spacing:3.504000px;}
.ws2e{word-spacing:3.660000px;}
.ws2a{word-spacing:3.720000px;}
.ws77{word-spacing:3.780000px;}
.ws37{word-spacing:3.840000px;}
.ws79{word-spacing:3.900000px;}
.ws87{word-spacing:3.936000px;}
.ws54{word-spacing:3.960000px;}
.ws56{word-spacing:3.984000px;}
.wsd{word-spacing:4.020000px;}
.ws7e{word-spacing:4.140000px;}
.ws11{word-spacing:4.200000px;}
.ws65{word-spacing:4.320000px;}
.ws72{word-spacing:4.380000px;}
.ws25{word-spacing:4.500000px;}
.ws4f{word-spacing:4.560000px;}
.ws4e{word-spacing:4.620000px;}
.ws2b{word-spacing:4.740000px;}
.ws51{word-spacing:4.800000px;}
.ws58{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.wsf{word-spacing:4.980000px;}
.ws78{word-spacing:5.100000px;}
.ws84{word-spacing:5.460000px;}
.ws4c{word-spacing:5.520000px;}
.ws67{word-spacing:6.300000px;}
.ws12{word-spacing:6.720000px;}
.ws6f{word-spacing:6.900000px;}
.ws6e{word-spacing:7.740000px;}
.ws86{word-spacing:8.100000px;}
.ws28{word-spacing:8.160000px;}
.ws43{word-spacing:214.032000px;}
.ws32{word-spacing:333.552000px;}
.ws46{word-spacing:414.240000px;}
.ws45{word-spacing:415.104000px;}
.ws34{word-spacing:450.240000px;}
.ws33{word-spacing:474.240000px;}
.ws1b{word-spacing:476.112000px;}
.ws20{word-spacing:492.768000px;}
.ws22{word-spacing:504.768000px;}
.ws21{word-spacing:535.296000px;}
.ws44{word-spacing:587.376000px;}
.ws1f{word-spacing:726.096000px;}
.ws1e{word-spacing:1088.016000px;}
.ws1d{word-spacing:1112.016000px;}
._a{margin-left:-2898.096000px;}
._1d{margin-left:-2874.288000px;}
._4{margin-left:-7.500000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.994110px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.020000px;}
._7{width:1.380000px;}
._8{width:3.096000px;}
._23{width:4.140000px;}
._6{width:5.220000px;}
._9{width:7.260000px;}
._2{width:59.560614px;}
._26{width:210.336000px;}
._b{width:228.624000px;}
._c{width:235.248000px;}
._d{width:291.072000px;}
._25{width:314.256000px;}
._1f{width:355.354110px;}
._29{width:427.638000px;}
._21{width:474.240000px;}
._1c{width:492.768000px;}
._1e{width:498.240000px;}
._15{width:559.296000px;}
._20{width:564.864000px;}
._1a{width:571.296000px;}
._16{width:631.498110px;}
._22{width:647.530110px;}
._24{width:651.408000px;}
._2a{width:699.408000px;}
._1b{width:746.074110px;}
._28{width:777.648000px;}
._27{width:908.304000px;}
._17{width:1100.016000px;}
._11{width:1220.016000px;}
._18{width:1234.752000px;}
._19{width:1269.360000px;}
._13{width:1272.048000px;}
._14{width:1277.376000px;}
._10{width:1293.408000px;}
._e{width:1301.328000px;}
._f{width:1326.624000px;}
._12{width:1719.312000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsb{font-size:27.984000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{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;}
.yee{bottom:83.554950px;}
.y116{bottom:83.785350px;}
.y4a{bottom:83.885550px;}
.y14a{bottom:83.912100px;}
.y169{bottom:83.920350px;}
.y9c{bottom:87.749400px;}
.y1f{bottom:88.029450px;}
.ya3{bottom:91.465650px;}
.ye7{bottom:91.524900px;}
.yed{bottom:99.298950px;}
.y49{bottom:99.629550px;}
.yea{bottom:100.255650px;}
.y182{bottom:101.628600px;}
.y115{bottom:101.785350px;}
.y149{bottom:101.912100px;}
.y168{bottom:101.920350px;}
.y1e{bottom:103.023000px;}
.ye6{bottom:107.772900px;}
.yec{bottom:115.042950px;}
.ye9{bottom:115.999650px;}
.y9b{bottom:116.753400px;}
.y181{bottom:119.628600px;}
.y114{bottom:119.785350px;}
.y148{bottom:119.912100px;}
.y167{bottom:119.920350px;}
.ya2{bottom:120.469650px;}
.ye5{bottom:124.020900px;}
.y9a{bottom:133.001400px;}
.ya1{bottom:136.717650px;}
.y180{bottom:137.628600px;}
.y113{bottom:137.785350px;}
.y147{bottom:137.912100px;}
.y166{bottom:137.920350px;}
.y1ad{bottom:140.121900px;}
.ye4{bottom:140.268900px;}
.y1de{bottom:143.912100px;}
.y99{bottom:149.249400px;}
.ya0{bottom:152.965650px;}
.y1ac{bottom:155.121900px;}
.y17f{bottom:155.628600px;}
.y112{bottom:155.785350px;}
.y146{bottom:155.912100px;}
.y165{bottom:155.920350px;}
.y2a{bottom:160.839450px;}
.y1dd{bottom:161.912100px;}
.y98{bottom:165.497400px;}
.y1ab{bottom:170.121900px;}
.ye3{bottom:171.780900px;}
.y17e{bottom:173.628600px;}
.y111{bottom:173.785350px;}
.y145{bottom:173.912100px;}
.y164{bottom:173.920350px;}
.y29{bottom:178.839450px;}
.y1dc{bottom:179.912100px;}
.y97{bottom:181.745400px;}
.y9f{bottom:184.477650px;}
.y1aa{bottom:185.121900px;}
.y17d{bottom:191.628600px;}
.y110{bottom:191.785350px;}
.y144{bottom:191.912100px;}
.y163{bottom:191.920350px;}
.y28{bottom:196.839450px;}
.y96{bottom:197.993400px;}
.y1a9{bottom:200.121900px;}
.ye2{bottom:206.680350px;}
.y17c{bottom:209.628600px;}
.y10f{bottom:209.785350px;}
.y143{bottom:209.912100px;}
.y162{bottom:209.920350px;}
.y95{bottom:214.241400px;}
.y27{bottom:214.839450px;}
.y1a8{bottom:215.121900px;}
.y1db{bottom:215.912100px;}
.y9e{bottom:219.370350px;}
.ye1{bottom:226.180350px;}
.y17b{bottom:227.223600px;}
.y10e{bottom:227.785350px;}
.y142{bottom:227.912100px;}
.y161{bottom:227.920350px;}
.y1a7{bottom:230.121900px;}
.y94{bottom:230.489400px;}
.y26{bottom:232.839450px;}
.y1da{bottom:233.912100px;}
.y1a6{bottom:245.121900px;}
.y10d{bottom:245.785350px;}
.y141{bottom:245.912100px;}
.y160{bottom:245.920350px;}
.y93{bottom:246.737400px;}
.y25{bottom:250.839450px;}
.y1d9{bottom:251.912100px;}
.y1a5{bottom:260.121900px;}
.y92{bottom:262.985400px;}
.y17a{bottom:263.628600px;}
.y10c{bottom:263.785350px;}
.y140{bottom:263.912100px;}
.y15f{bottom:263.920350px;}
.ya5{bottom:265.141650px;}
.y24{bottom:268.839450px;}
.y1d8{bottom:269.912100px;}
.y1a4{bottom:275.121900px;}
.ya4{bottom:280.885650px;}
.y179{bottom:281.628600px;}
.y10b{bottom:281.785350px;}
.y13f{bottom:281.912100px;}
.y15e{bottom:281.920350px;}
.ye0{bottom:284.770350px;}
.y23{bottom:286.839450px;}
.y1d7{bottom:287.912100px;}
.yb6{bottom:287.952750px;}
.y1a3{bottom:290.121900px;}
.y91{bottom:294.497400px;}
.y178{bottom:299.628600px;}
.y10a{bottom:299.785350px;}
.y13e{bottom:299.912100px;}
.y15d{bottom:299.920350px;}
.ydf{bottom:302.770350px;}
.yb5{bottom:303.558750px;}
.y22{bottom:304.839450px;}
.y1a2{bottom:305.121900px;}
.y1d6{bottom:305.912100px;}
.y177{bottom:317.628600px;}
.y109{bottom:317.785350px;}
.y13d{bottom:317.912100px;}
.yb4{bottom:317.920350px;}
.y1a1{bottom:320.121900px;}
.y4b{bottom:320.192700px;}
.yde{bottom:320.770350px;}
.y21{bottom:322.839450px;}
.y1d5{bottom:323.912100px;}
.y90{bottom:329.412600px;}
.y1a0{bottom:335.121900px;}
.yb3{bottom:335.515350px;}
.y176{bottom:335.650350px;}
.y108{bottom:335.785350px;}
.y13c{bottom:335.912100px;}
.y15c{bottom:335.920350px;}
.ydd{bottom:338.770350px;}
.y2c{bottom:340.839450px;}
.y1d4{bottom:341.912100px;}
.y19f{bottom:350.121900px;}
.y175{bottom:353.650350px;}
.y107{bottom:353.785350px;}
.y13b{bottom:353.912100px;}
.y15b{bottom:353.920350px;}
.ydc{bottom:356.770350px;}
.y20{bottom:358.434450px;}
.y2b{bottom:358.839450px;}
.y19e{bottom:365.121900px;}
.yb2{bottom:371.365350px;}
.y174{bottom:371.650350px;}
.y106{bottom:371.785350px;}
.y8f{bottom:371.787600px;}
.y13a{bottom:371.912100px;}
.y15a{bottom:371.920350px;}
.y6d{bottom:372.072600px;}
.ydb{bottom:374.770350px;}
.y1d3{bottom:377.912100px;}
.y19d{bottom:380.121900px;}
.yb1{bottom:389.365350px;}
.y173{bottom:389.650350px;}
.y105{bottom:389.785350px;}
.y8e{bottom:389.787600px;}
.y139{bottom:389.912100px;}
.y159{bottom:389.920350px;}
.y6c{bottom:390.072600px;}
.yda{bottom:392.770350px;}
.y19c{bottom:395.121900px;}
.y1d2{bottom:395.912100px;}
.y172{bottom:407.650350px;}
.y104{bottom:407.785350px;}
.y8d{bottom:407.787600px;}
.y138{bottom:407.912100px;}
.y158{bottom:407.920350px;}
.y6b{bottom:408.072600px;}
.y19b{bottom:410.121900px;}
.yd9{bottom:410.770350px;}
.y1d1{bottom:413.912100px;}
.y19a{bottom:425.121900px;}
.yb0{bottom:425.230350px;}
.y171{bottom:425.650350px;}
.y103{bottom:425.785350px;}
.y8c{bottom:425.787600px;}
.y137{bottom:425.912100px;}
.y157{bottom:425.920350px;}
.y6a{bottom:426.072600px;}
.yd8{bottom:428.770350px;}
.y1d0{bottom:431.912100px;}
.y1d{bottom:435.514200px;}
.y199{bottom:440.121900px;}
.y102{bottom:443.785350px;}
.y8b{bottom:443.787600px;}
.y136{bottom:443.912100px;}
.y156{bottom:443.920350px;}
.y69{bottom:444.072600px;}
.yd7{bottom:446.770350px;}
.y1cf{bottom:449.912100px;}
.y198{bottom:455.121900px;}
.y170{bottom:461.245350px;}
.y101{bottom:461.785350px;}
.y8a{bottom:461.787600px;}
.y135{bottom:461.912100px;}
.y155{bottom:461.920350px;}
.y68{bottom:462.072600px;}
.y1c{bottom:462.859200px;}
.yd6{bottom:464.770350px;}
.y197{bottom:470.121900px;}
.yaf{bottom:479.770350px;}
.y100{bottom:479.785350px;}
.y89{bottom:479.787600px;}
.y134{bottom:479.912100px;}
.y154{bottom:479.920350px;}
.y67{bottom:480.072600px;}
.y1b{bottom:480.859200px;}
.yd5{bottom:482.770350px;}
.y196{bottom:485.121900px;}
.y1ce{bottom:485.912100px;}
.yae{bottom:497.770350px;}
.yff{bottom:497.785350px;}
.y88{bottom:497.787600px;}
.y133{bottom:497.912100px;}
.y153{bottom:497.920350px;}
.y66{bottom:498.072600px;}
.y1a{bottom:498.859200px;}
.y195{bottom:500.121900px;}
.yd4{bottom:500.770350px;}
.y1cd{bottom:503.912100px;}
.y194{bottom:515.121900px;}
.yad{bottom:515.770350px;}
.yfe{bottom:515.785350px;}
.y87{bottom:515.787600px;}
.y132{bottom:515.912100px;}
.y152{bottom:515.920350px;}
.y65{bottom:516.072600px;}
.y19{bottom:516.859200px;}
.yd3{bottom:518.770350px;}
.y1cc{bottom:521.912100px;}
.y193{bottom:530.121900px;}
.yac{bottom:533.770350px;}
.yfd{bottom:533.785350px;}
.y86{bottom:533.787600px;}
.y131{bottom:533.912100px;}
.y151{bottom:533.920350px;}
.y64{bottom:534.072600px;}
.y18{bottom:534.859200px;}
.yd2{bottom:536.770350px;}
.y1cb{bottom:539.914350px;}
.y192{bottom:545.121900px;}
.yab{bottom:551.770350px;}
.yfc{bottom:551.785350px;}
.y85{bottom:551.787600px;}
.y130{bottom:551.912100px;}
.y150{bottom:551.920350px;}
.y63{bottom:552.072600px;}
.y17{bottom:552.859200px;}
.yd1{bottom:554.770350px;}
.y191{bottom:560.121900px;}
.yaa{bottom:569.770350px;}
.yfb{bottom:569.785350px;}
.y84{bottom:569.787600px;}
.y12f{bottom:569.912100px;}
.y14f{bottom:569.920350px;}
.y62{bottom:570.072600px;}
.y16{bottom:570.859200px;}
.yd0{bottom:572.770350px;}
.y190{bottom:575.121900px;}
.y1ca{bottom:575.914350px;}
.ya9{bottom:587.770350px;}
.yfa{bottom:587.785350px;}
.y83{bottom:587.787600px;}
.y12e{bottom:587.912100px;}
.y14e{bottom:587.920350px;}
.y61{bottom:588.072600px;}
.y15{bottom:588.859200px;}
.y18f{bottom:590.121900px;}
.ycf{bottom:590.770350px;}
.y1c9{bottom:593.914350px;}
.ya8{bottom:605.770350px;}
.yf9{bottom:605.785350px;}
.y82{bottom:605.787600px;}
.y12d{bottom:605.912100px;}
.y60{bottom:606.072600px;}
.y14{bottom:606.859200px;}
.yce{bottom:608.770350px;}
.y18e{bottom:623.232600px;}
.y14d{bottom:623.515350px;}
.ya7{bottom:623.770350px;}
.yf8{bottom:623.785350px;}
.y81{bottom:623.787600px;}
.y12c{bottom:623.935350px;}
.y5f{bottom:624.072600px;}
.y13{bottom:624.859200px;}
.ycd{bottom:626.770350px;}
.y1c8{bottom:629.509350px;}
.y14c{bottom:641.515350px;}
.y46{bottom:641.770350px;}
.yf7{bottom:641.785350px;}
.y80{bottom:641.787600px;}
.y12b{bottom:641.935350px;}
.y5e{bottom:642.072600px;}
.y12{bottom:642.859200px;}
.ycc{bottom:644.770350px;}
.y14b{bottom:659.515350px;}
.y45{bottom:659.770350px;}
.yf6{bottom:659.785350px;}
.y7f{bottom:659.787600px;}
.y12a{bottom:659.935350px;}
.y11{bottom:660.859200px;}
.ycb{bottom:662.770350px;}
.y1c7{bottom:665.265900px;}
.y5d{bottom:677.667600px;}
.y44{bottom:677.770350px;}
.y18d{bottom:677.772600px;}
.yf5{bottom:677.785350px;}
.y7e{bottom:677.787600px;}
.y129{bottom:677.935350px;}
.y10{bottom:678.859200px;}
.y1c6{bottom:680.265900px;}
.yca{bottom:680.770350px;}
.y1c5{bottom:695.265900px;}
.y18c{bottom:695.367600px;}
.y43{bottom:695.770350px;}
.yf4{bottom:695.785350px;}
.y7d{bottom:695.787600px;}
.y128{bottom:695.935350px;}
.yf{bottom:696.859200px;}
.yc9{bottom:698.770350px;}
.y1c4{bottom:710.265900px;}
.y42{bottom:713.770350px;}
.y16f{bottom:713.785350px;}
.y7c{bottom:713.787600px;}
.y5c{bottom:713.922600px;}
.y127{bottom:713.935350px;}
.yc8{bottom:716.770350px;}
.y1c3{bottom:725.265900px;}
.y18b{bottom:731.367600px;}
.yf3{bottom:731.380350px;}
.y41{bottom:731.770350px;}
.y16e{bottom:731.785350px;}
.y7b{bottom:731.787600px;}
.y5b{bottom:731.922600px;}
.y126{bottom:731.935350px;}
.yc7{bottom:734.770350px;}
.y1c2{bottom:740.265900px;}
.ye{bottom:742.017300px;}
.yf2{bottom:749.380350px;}
.y40{bottom:749.770350px;}
.y16d{bottom:749.785350px;}
.y7a{bottom:749.787600px;}
.y5a{bottom:749.922600px;}
.yc6{bottom:752.770350px;}
.yd{bottom:754.468050px;}
.y1c1{bottom:755.265900px;}
.yf1{bottom:767.380350px;}
.y125{bottom:767.530350px;}
.y3f{bottom:767.770350px;}
.y18a{bottom:767.772600px;}
.y16c{bottom:767.785350px;}
.y79{bottom:767.787600px;}
.y59{bottom:767.922600px;}
.y1c0{bottom:770.265900px;}
.yc5{bottom:770.770350px;}
.y1bf{bottom:785.265900px;}
.y124{bottom:785.530350px;}
.y3e{bottom:785.770350px;}
.y189{bottom:785.772600px;}
.y16b{bottom:785.785350px;}
.y58{bottom:785.922600px;}
.yc4{bottom:788.770350px;}
.yc{bottom:791.608950px;}
.y1be{bottom:800.265900px;}
.yf0{bottom:803.230350px;}
.y188{bottom:803.367600px;}
.y78{bottom:803.382600px;}
.y3d{bottom:803.770350px;}
.y16a{bottom:803.785350px;}
.y57{bottom:803.922600px;}
.yb{bottom:805.108950px;}
.yc3{bottom:806.770350px;}
.ya{bottom:813.183600px;}
.y1bd{bottom:815.265900px;}
.y48{bottom:821.365350px;}
.y77{bottom:821.382600px;}
.y3c{bottom:821.770350px;}
.y123{bottom:821.785350px;}
.y56{bottom:821.922600px;}
.yc2{bottom:824.770350px;}
.y9{bottom:826.683600px;}
.y1bc{bottom:830.265900px;}
.y76{bottom:839.382600px;}
.y3b{bottom:839.770350px;}
.y187{bottom:839.772600px;}
.y122{bottom:839.785350px;}
.y55{bottom:839.922600px;}
.y8{bottom:840.183600px;}
.yc1{bottom:842.770350px;}
.y1bb{bottom:845.265900px;}
.y47{bottom:857.230350px;}
.y186{bottom:857.367600px;}
.y75{bottom:857.382600px;}
.y3a{bottom:857.770350px;}
.y121{bottom:857.785350px;}
.y54{bottom:857.922600px;}
.y7{bottom:859.108950px;}
.y1ba{bottom:860.265900px;}
.yc0{bottom:860.770350px;}
.y1b9{bottom:875.265900px;}
.y39{bottom:875.770350px;}
.y120{bottom:875.785350px;}
.ybf{bottom:878.770350px;}
.y6{bottom:887.830950px;}
.y1b8{bottom:890.265900px;}
.y74{bottom:893.247600px;}
.y53{bottom:893.517600px;}
.y38{bottom:893.770350px;}
.y185{bottom:893.772600px;}
.y11f{bottom:893.785350px;}
.ybe{bottom:896.770350px;}
.y1b7{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.y184{bottom:911.772600px;}
.y11e{bottom:911.785350px;}
.ybd{bottom:914.770350px;}
.y1b6{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y52{bottom:929.772600px;}
.y11d{bottom:929.785350px;}
.ybc{bottom:932.770350px;}
.y5{bottom:934.004400px;}
.y1b5{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y51{bottom:947.772600px;}
.y11c{bottom:947.785350px;}
.y73{bottom:947.787600px;}
.y1b4{bottom:950.265900px;}
.ybb{bottom:950.770350px;}
.y1b3{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y50{bottom:965.772600px;}
.y11b{bottom:965.785350px;}
.y72{bottom:965.787600px;}
.yba{bottom:968.770350px;}
.y4{bottom:970.465200px;}
.y1b2{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y4f{bottom:983.772600px;}
.y11a{bottom:983.785350px;}
.y71{bottom:983.787600px;}
.yb9{bottom:986.770350px;}
.y1b1{bottom:995.265900px;}
.y32{bottom:1001.770350px;}
.y4e{bottom:1001.772600px;}
.y119{bottom:1001.785350px;}
.y70{bottom:1001.787600px;}
.yb8{bottom:1004.770350px;}
.y3{bottom:1006.926000px;}
.y1b0{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y183{bottom:1019.772600px;}
.y118{bottom:1019.785350px;}
.y6f{bottom:1019.787600px;}
.y1af{bottom:1025.265900px;}
.y4d{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.y117{bottom:1037.785350px;}
.y6e{bottom:1037.787600px;}
.yb7{bottom:1040.263500px;}
.y1ae{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.yef{bottom:1132.414950px;}
.yeb{bottom:1132.418700px;}
.y4c{bottom:1132.424700px;}
.ye8{bottom:1132.428900px;}
.ya6{bottom:1132.441650px;}
.y9d{bottom:1132.457400px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h7{height:32.805176px;}
.hb{height:32.815976px;}
.h10{height:33.351562px;}
.hf{height:34.945312px;}
.he{height:34.992188px;}
.h11{height:37.520508px;}
.h14{height:41.680453px;}
.hd{height:41.689453px;}
.h12{height:42.006361px;}
.h13{height:42.949219px;}
.h9{height:43.681641px;}
.ha{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x15{left:99.921300px;}
.x23{left:102.047400px;}
.x4{left:106.299150px;}
.xb{left:110.570400px;}
.x1e{left:112.998000px;}
.x1b{left:123.850350px;}
.x3{left:125.427900px;}
.x6{left:131.816400px;}
.x1a{left:170.245350px;}
.x17{left:180.682350px;}
.x18{left:182.834550px;}
.x1c{left:187.630350px;}
.x22{left:194.285400px;}
.x20{left:198.871200px;}
.x5{left:212.876400px;}
.x19{left:219.025350px;}
.x1f{left:221.808000px;}
.x1d{left:229.525350px;}
.x9{left:455.041500px;}
.xc{left:457.085400px;}
.x13{left:478.345350px;}
.x7{left:480.491400px;}
.x24{left:482.567400px;}
.xe{left:491.120400px;}
.x12{left:512.365350px;}
.xd{left:525.290400px;}
.x21{left:591.940350px;}
.x14{left:612.910350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x25{left:721.717650px;}
.x10{left:728.388000px;}
.xf{left:744.636000px;}
.x16{left:749.577300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:20.055467pt;}
.v1{vertical-align:27.005867pt;}
.ls37{letter-spacing:-7.253333pt;}
.ls57{letter-spacing:-6.880000pt;}
.ls58{letter-spacing:-6.133333pt;}
.ls55{letter-spacing:-5.600000pt;}
.ls4c{letter-spacing:-4.906667pt;}
.ls5e{letter-spacing:-4.533333pt;}
.ls59{letter-spacing:-4.106667pt;}
.ls5d{letter-spacing:-3.360000pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.400000pt;}
.ls35{letter-spacing:-0.373333pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls56{letter-spacing:-0.160000pt;}
.ls26{letter-spacing:-0.106667pt;}
.ls25{letter-spacing:-0.053333pt;}
.ls76{letter-spacing:-0.042667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls4d{letter-spacing:0.042667pt;}
.ls39{letter-spacing:0.053333pt;}
.ls71{letter-spacing:0.085333pt;}
.ls2e{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.213333pt;}
.ls75{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls68{letter-spacing:0.341333pt;}
.ls4{letter-spacing:0.373333pt;}
.ls6b{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.480000pt;}
.ls3d{letter-spacing:0.533333pt;}
.ls67{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.586667pt;}
.ls64{letter-spacing:0.597333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls6e{letter-spacing:0.682667pt;}
.ls41{letter-spacing:0.693333pt;}
.ls3b{letter-spacing:0.746667pt;}
.ls73{letter-spacing:0.768000pt;}
.ls51{letter-spacing:0.800000pt;}
.ls70{letter-spacing:0.810667pt;}
.ls27{letter-spacing:0.853333pt;}
.ls63{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:0.906667pt;}
.ls66{letter-spacing:0.938667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.981333pt;}
.ls33{letter-spacing:1.013333pt;}
.ls23{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.120000pt;}
.ls72{letter-spacing:1.152000pt;}
.ls10{letter-spacing:1.173333pt;}
.ls24{letter-spacing:1.226667pt;}
.ls38{letter-spacing:1.280000pt;}
.ls34{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.365333pt;}
.ls2d{letter-spacing:1.386667pt;}
.ls31{letter-spacing:1.440000pt;}
.ls8{letter-spacing:1.493333pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls14{letter-spacing:1.600000pt;}
.ls6c{letter-spacing:1.621333pt;}
.ls3f{letter-spacing:1.653333pt;}
.ls53{letter-spacing:1.706667pt;}
.ls42{letter-spacing:1.760000pt;}
.ls3{letter-spacing:1.813333pt;}
.ls9{letter-spacing:1.866667pt;}
.ls69{letter-spacing:1.877333pt;}
.ls19{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:1.973333pt;}
.ls21{letter-spacing:2.026667pt;}
.ls6d{letter-spacing:2.048000pt;}
.lsc{letter-spacing:2.080000pt;}
.ls54{letter-spacing:2.133333pt;}
.ls49{letter-spacing:2.186667pt;}
.ls28{letter-spacing:2.240000pt;}
.ls62{letter-spacing:2.261333pt;}
.ls12{letter-spacing:2.293333pt;}
.ls6f{letter-spacing:2.304000pt;}
.ls32{letter-spacing:2.346667pt;}
.ls4b{letter-spacing:2.400000pt;}
.ls43{letter-spacing:2.453333pt;}
.ls20{letter-spacing:2.506667pt;}
.ls2c{letter-spacing:2.560000pt;}
.lse{letter-spacing:2.613333pt;}
.ls1b{letter-spacing:2.666667pt;}
.ls1e{letter-spacing:2.720000pt;}
.ls30{letter-spacing:2.773333pt;}
.ls6{letter-spacing:2.826667pt;}
.ls1f{letter-spacing:2.880000pt;}
.ls29{letter-spacing:2.933333pt;}
.ls3e{letter-spacing:3.040000pt;}
.ls46{letter-spacing:3.200000pt;}
.ls45{letter-spacing:3.253333pt;}
.ls4f{letter-spacing:3.306667pt;}
.ls4a{letter-spacing:3.413333pt;}
.ls5f{letter-spacing:3.466667pt;}
.lsd{letter-spacing:3.520000pt;}
.ls3c{letter-spacing:3.680000pt;}
.ls60{letter-spacing:3.733333pt;}
.ls2a{letter-spacing:3.786667pt;}
.ls2b{letter-spacing:4.000000pt;}
.ls13{letter-spacing:4.160000pt;}
.ls4e{letter-spacing:4.320000pt;}
.ls5a{letter-spacing:4.480000pt;}
.ls74{letter-spacing:4.586667pt;}
.ls44{letter-spacing:4.640000pt;}
.ls1d{letter-spacing:4.746667pt;}
.ls50{letter-spacing:4.853333pt;}
.ls48{letter-spacing:4.960000pt;}
.ls52{letter-spacing:5.013333pt;}
.ls5c{letter-spacing:5.120000pt;}
.ls47{letter-spacing:5.813333pt;}
.ls22{letter-spacing:6.453333pt;}
.ls61{letter-spacing:8.160000pt;}
.ls5b{letter-spacing:9.493333pt;}
.ls0{letter-spacing:52.918645pt;}
.ws0{word-spacing:-31.284267pt;}
.ws75{word-spacing:-19.946667pt;}
.ws5b{word-spacing:-17.653333pt;}
.ws8{word-spacing:-17.493333pt;}
.ws5c{word-spacing:-16.640000pt;}
.ws40{word-spacing:-16.586667pt;}
.ws31{word-spacing:-16.266667pt;}
.ws60{word-spacing:-15.893333pt;}
.ws42{word-spacing:-15.520000pt;}
.ws74{word-spacing:-15.413333pt;}
.ws13{word-spacing:-14.933333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws5a{word-spacing:-14.453333pt;}
.ws5f{word-spacing:-14.293333pt;}
.ws61{word-spacing:-14.026667pt;}
.ws7{word-spacing:-13.973333pt;}
.ws30{word-spacing:-13.920000pt;}
.ws5e{word-spacing:-13.866667pt;}
.ws6{word-spacing:-13.706667pt;}
.ws62{word-spacing:-13.653333pt;}
.ws2f{word-spacing:-13.546667pt;}
.ws5d{word-spacing:-13.440000pt;}
.ws73{word-spacing:-13.386667pt;}
.ws5{word-spacing:-13.333333pt;}
.ws80{word-spacing:-12.544000pt;}
.ws83{word-spacing:-12.288000pt;}
.ws81{word-spacing:-12.032000pt;}
.ws41{word-spacing:-12.000000pt;}
.ws82{word-spacing:-11.946667pt;}
.ws9{word-spacing:-11.861333pt;}
.ws4{word-spacing:-11.120000pt;}
.ws1c{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.076144pt;}
.ws2{word-spacing:-6.482960pt;}
.ws57{word-spacing:-6.218667pt;}
.ws6b{word-spacing:-5.013333pt;}
.ws7b{word-spacing:-4.480000pt;}
.ws85{word-spacing:-3.733333pt;}
.wsb{word-spacing:-2.565333pt;}
.ws16{word-spacing:-2.506667pt;}
.ws38{word-spacing:-2.240000pt;}
.wsc{word-spacing:-2.072000pt;}
.ws18{word-spacing:-2.026667pt;}
.ws17{word-spacing:-1.973333pt;}
.ws8f{word-spacing:-1.621333pt;}
.ws7c{word-spacing:-1.546667pt;}
.ws35{word-spacing:-1.386667pt;}
.ws8a{word-spacing:-1.365333pt;}
.ws3c{word-spacing:-1.333333pt;}
.ws90{word-spacing:-1.280000pt;}
.ws96{word-spacing:-1.152000pt;}
.ws63{word-spacing:-1.120000pt;}
.ws2d{word-spacing:-1.066667pt;}
.ws6c{word-spacing:-0.960000pt;}
.ws88{word-spacing:-0.938667pt;}
.ws91{word-spacing:-0.810667pt;}
.ws55{word-spacing:-0.746667pt;}
.ws19{word-spacing:-0.426667pt;}
.ws89{word-spacing:-0.341333pt;}
.ws64{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.213333pt;}
.ws6a{word-spacing:-0.160000pt;}
.ws53{word-spacing:-0.106667pt;}
.ws66{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws97{word-spacing:0.042667pt;}
.ws39{word-spacing:0.053333pt;}
.ws8c{word-spacing:0.085333pt;}
.ws15{word-spacing:0.106667pt;}
.ws50{word-spacing:0.160000pt;}
.ws29{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.298667pt;}
.ws93{word-spacing:0.341333pt;}
.ws47{word-spacing:0.426667pt;}
.ws98{word-spacing:0.533333pt;}
.ws36{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.597333pt;}
.ws3d{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.800000pt;}
.ws23{word-spacing:0.853333pt;}
.ws26{word-spacing:0.960000pt;}
.ws8b{word-spacing:1.024000pt;}
.ws68{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.226667pt;}
.ws24{word-spacing:1.333333pt;}
.ws94{word-spacing:1.365333pt;}
.ws76{word-spacing:1.493333pt;}
.ws4d{word-spacing:1.600000pt;}
.ws4b{word-spacing:1.653333pt;}
.ws3a{word-spacing:1.706667pt;}
.ws59{word-spacing:1.877333pt;}
.ws27{word-spacing:1.920000pt;}
.ws52{word-spacing:1.973333pt;}
.ws8d{word-spacing:2.176000pt;}
.ws69{word-spacing:2.186667pt;}
.ws7a{word-spacing:2.240000pt;}
.ws8e{word-spacing:2.261333pt;}
.ws48{word-spacing:2.453333pt;}
.ws14{word-spacing:2.506667pt;}
.ws6d{word-spacing:2.560000pt;}
.ws71{word-spacing:2.613333pt;}
.ws70{word-spacing:2.666667pt;}
.ws49{word-spacing:2.720000pt;}
.ws92{word-spacing:2.730667pt;}
.ws7f{word-spacing:2.773333pt;}
.ws7d{word-spacing:2.986667pt;}
.ws4a{word-spacing:3.040000pt;}
.ws2c{word-spacing:3.093333pt;}
.ws95{word-spacing:3.114667pt;}
.ws2e{word-spacing:3.253333pt;}
.ws2a{word-spacing:3.306667pt;}
.ws77{word-spacing:3.360000pt;}
.ws37{word-spacing:3.413333pt;}
.ws79{word-spacing:3.466667pt;}
.ws87{word-spacing:3.498667pt;}
.ws54{word-spacing:3.520000pt;}
.ws56{word-spacing:3.541333pt;}
.wsd{word-spacing:3.573333pt;}
.ws7e{word-spacing:3.680000pt;}
.ws11{word-spacing:3.733333pt;}
.ws65{word-spacing:3.840000pt;}
.ws72{word-spacing:3.893333pt;}
.ws25{word-spacing:4.000000pt;}
.ws4f{word-spacing:4.053333pt;}
.ws4e{word-spacing:4.106667pt;}
.ws2b{word-spacing:4.213333pt;}
.ws51{word-spacing:4.266667pt;}
.ws58{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.wsf{word-spacing:4.426667pt;}
.ws78{word-spacing:4.533333pt;}
.ws84{word-spacing:4.853333pt;}
.ws4c{word-spacing:4.906667pt;}
.ws67{word-spacing:5.600000pt;}
.ws12{word-spacing:5.973333pt;}
.ws6f{word-spacing:6.133333pt;}
.ws6e{word-spacing:6.880000pt;}
.ws86{word-spacing:7.200000pt;}
.ws28{word-spacing:7.253333pt;}
.ws43{word-spacing:190.250667pt;}
.ws32{word-spacing:296.490667pt;}
.ws46{word-spacing:368.213333pt;}
.ws45{word-spacing:368.981333pt;}
.ws34{word-spacing:400.213333pt;}
.ws33{word-spacing:421.546667pt;}
.ws1b{word-spacing:423.210667pt;}
.ws20{word-spacing:438.016000pt;}
.ws22{word-spacing:448.682667pt;}
.ws21{word-spacing:475.818667pt;}
.ws44{word-spacing:522.112000pt;}
.ws1f{word-spacing:645.418667pt;}
.ws1e{word-spacing:967.125333pt;}
.ws1d{word-spacing:988.458667pt;}
._a{margin-left:-2576.085333pt;}
._1d{margin-left:-2554.922667pt;}
._4{margin-left:-6.666667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.550320pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.906667pt;}
._7{width:1.226667pt;}
._8{width:2.752000pt;}
._23{width:3.680000pt;}
._6{width:4.640000pt;}
._9{width:6.453333pt;}
._2{width:52.942768pt;}
._26{width:186.965333pt;}
._b{width:203.221333pt;}
._c{width:209.109333pt;}
._d{width:258.730667pt;}
._25{width:279.338667pt;}
._1f{width:315.870320pt;}
._29{width:380.122667pt;}
._21{width:421.546667pt;}
._1c{width:438.016000pt;}
._1e{width:442.880000pt;}
._15{width:497.152000pt;}
._20{width:502.101333pt;}
._1a{width:507.818667pt;}
._16{width:561.331653pt;}
._22{width:575.582320pt;}
._24{width:579.029333pt;}
._2a{width:621.696000pt;}
._1b{width:663.176987pt;}
._28{width:691.242667pt;}
._27{width:807.381333pt;}
._17{width:977.792000pt;}
._11{width:1084.458667pt;}
._18{width:1097.557333pt;}
._19{width:1128.320000pt;}
._13{width:1130.709333pt;}
._14{width:1135.445333pt;}
._10{width:1149.696000pt;}
._e{width:1156.736000pt;}
._f{width:1179.221333pt;}
._12{width:1528.277333pt;}
.fs5{font-size:23.320000pt;}
.fsb{font-size:24.874667pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{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;}
.yee{bottom:74.271067pt;}
.y116{bottom:74.475867pt;}
.y4a{bottom:74.564933pt;}
.y14a{bottom:74.588533pt;}
.y169{bottom:74.595867pt;}
.y9c{bottom:77.999467pt;}
.y1f{bottom:78.248400pt;}
.ya3{bottom:81.302800pt;}
.ye7{bottom:81.355467pt;}
.yed{bottom:88.265733pt;}
.y49{bottom:88.559600pt;}
.yea{bottom:89.116133pt;}
.y182{bottom:90.336533pt;}
.y115{bottom:90.475867pt;}
.y149{bottom:90.588533pt;}
.y168{bottom:90.595867pt;}
.y1e{bottom:91.576000pt;}
.ye6{bottom:95.798133pt;}
.yec{bottom:102.260400pt;}
.ye9{bottom:103.110800pt;}
.y9b{bottom:103.780800pt;}
.y181{bottom:106.336533pt;}
.y114{bottom:106.475867pt;}
.y148{bottom:106.588533pt;}
.y167{bottom:106.595867pt;}
.ya2{bottom:107.084133pt;}
.ye5{bottom:110.240800pt;}
.y9a{bottom:118.223467pt;}
.ya1{bottom:121.526800pt;}
.y180{bottom:122.336533pt;}
.y113{bottom:122.475867pt;}
.y147{bottom:122.588533pt;}
.y166{bottom:122.595867pt;}
.y1ad{bottom:124.552800pt;}
.ye4{bottom:124.683467pt;}
.y1de{bottom:127.921867pt;}
.y99{bottom:132.666133pt;}
.ya0{bottom:135.969467pt;}
.y1ac{bottom:137.886133pt;}
.y17f{bottom:138.336533pt;}
.y112{bottom:138.475867pt;}
.y146{bottom:138.588533pt;}
.y165{bottom:138.595867pt;}
.y2a{bottom:142.968400pt;}
.y1dd{bottom:143.921867pt;}
.y98{bottom:147.108800pt;}
.y1ab{bottom:151.219467pt;}
.ye3{bottom:152.694133pt;}
.y17e{bottom:154.336533pt;}
.y111{bottom:154.475867pt;}
.y145{bottom:154.588533pt;}
.y164{bottom:154.595867pt;}
.y29{bottom:158.968400pt;}
.y1dc{bottom:159.921867pt;}
.y97{bottom:161.551467pt;}
.y9f{bottom:163.980133pt;}
.y1aa{bottom:164.552800pt;}
.y17d{bottom:170.336533pt;}
.y110{bottom:170.475867pt;}
.y144{bottom:170.588533pt;}
.y163{bottom:170.595867pt;}
.y28{bottom:174.968400pt;}
.y96{bottom:175.994133pt;}
.y1a9{bottom:177.886133pt;}
.ye2{bottom:183.715867pt;}
.y17c{bottom:186.336533pt;}
.y10f{bottom:186.475867pt;}
.y143{bottom:186.588533pt;}
.y162{bottom:186.595867pt;}
.y95{bottom:190.436800pt;}
.y27{bottom:190.968400pt;}
.y1a8{bottom:191.219467pt;}
.y1db{bottom:191.921867pt;}
.y9e{bottom:194.995867pt;}
.ye1{bottom:201.049200pt;}
.y17b{bottom:201.976533pt;}
.y10e{bottom:202.475867pt;}
.y142{bottom:202.588533pt;}
.y161{bottom:202.595867pt;}
.y1a7{bottom:204.552800pt;}
.y94{bottom:204.879467pt;}
.y26{bottom:206.968400pt;}
.y1da{bottom:207.921867pt;}
.y1a6{bottom:217.886133pt;}
.y10d{bottom:218.475867pt;}
.y141{bottom:218.588533pt;}
.y160{bottom:218.595867pt;}
.y93{bottom:219.322133pt;}
.y25{bottom:222.968400pt;}
.y1d9{bottom:223.921867pt;}
.y1a5{bottom:231.219467pt;}
.y92{bottom:233.764800pt;}
.y17a{bottom:234.336533pt;}
.y10c{bottom:234.475867pt;}
.y140{bottom:234.588533pt;}
.y15f{bottom:234.595867pt;}
.ya5{bottom:235.681467pt;}
.y24{bottom:238.968400pt;}
.y1d8{bottom:239.921867pt;}
.y1a4{bottom:244.552800pt;}
.ya4{bottom:249.676133pt;}
.y179{bottom:250.336533pt;}
.y10b{bottom:250.475867pt;}
.y13f{bottom:250.588533pt;}
.y15e{bottom:250.595867pt;}
.ye0{bottom:253.129200pt;}
.y23{bottom:254.968400pt;}
.y1d7{bottom:255.921867pt;}
.yb6{bottom:255.958000pt;}
.y1a3{bottom:257.886133pt;}
.y91{bottom:261.775467pt;}
.y178{bottom:266.336533pt;}
.y10a{bottom:266.475867pt;}
.y13e{bottom:266.588533pt;}
.y15d{bottom:266.595867pt;}
.ydf{bottom:269.129200pt;}
.yb5{bottom:269.830000pt;}
.y22{bottom:270.968400pt;}
.y1a2{bottom:271.219467pt;}
.y1d6{bottom:271.921867pt;}
.y177{bottom:282.336533pt;}
.y109{bottom:282.475867pt;}
.y13d{bottom:282.588533pt;}
.yb4{bottom:282.595867pt;}
.y1a1{bottom:284.552800pt;}
.y4b{bottom:284.615733pt;}
.yde{bottom:285.129200pt;}
.y21{bottom:286.968400pt;}
.y1d5{bottom:287.921867pt;}
.y90{bottom:292.811200pt;}
.y1a0{bottom:297.886133pt;}
.yb3{bottom:298.235867pt;}
.y176{bottom:298.355867pt;}
.y108{bottom:298.475867pt;}
.y13c{bottom:298.588533pt;}
.y15c{bottom:298.595867pt;}
.ydd{bottom:301.129200pt;}
.y2c{bottom:302.968400pt;}
.y1d4{bottom:303.921867pt;}
.y19f{bottom:311.219467pt;}
.y175{bottom:314.355867pt;}
.y107{bottom:314.475867pt;}
.y13b{bottom:314.588533pt;}
.y15b{bottom:314.595867pt;}
.ydc{bottom:317.129200pt;}
.y20{bottom:318.608400pt;}
.y2b{bottom:318.968400pt;}
.y19e{bottom:324.552800pt;}
.yb2{bottom:330.102533pt;}
.y174{bottom:330.355867pt;}
.y106{bottom:330.475867pt;}
.y8f{bottom:330.477867pt;}
.y13a{bottom:330.588533pt;}
.y15a{bottom:330.595867pt;}
.y6d{bottom:330.731200pt;}
.ydb{bottom:333.129200pt;}
.y1d3{bottom:335.921867pt;}
.y19d{bottom:337.886133pt;}
.yb1{bottom:346.102533pt;}
.y173{bottom:346.355867pt;}
.y105{bottom:346.475867pt;}
.y8e{bottom:346.477867pt;}
.y139{bottom:346.588533pt;}
.y159{bottom:346.595867pt;}
.y6c{bottom:346.731200pt;}
.yda{bottom:349.129200pt;}
.y19c{bottom:351.219467pt;}
.y1d2{bottom:351.921867pt;}
.y172{bottom:362.355867pt;}
.y104{bottom:362.475867pt;}
.y8d{bottom:362.477867pt;}
.y138{bottom:362.588533pt;}
.y158{bottom:362.595867pt;}
.y6b{bottom:362.731200pt;}
.y19b{bottom:364.552800pt;}
.yd9{bottom:365.129200pt;}
.y1d1{bottom:367.921867pt;}
.y19a{bottom:377.886133pt;}
.yb0{bottom:377.982533pt;}
.y171{bottom:378.355867pt;}
.y103{bottom:378.475867pt;}
.y8c{bottom:378.477867pt;}
.y137{bottom:378.588533pt;}
.y157{bottom:378.595867pt;}
.y6a{bottom:378.731200pt;}
.yd8{bottom:381.129200pt;}
.y1d0{bottom:383.921867pt;}
.y1d{bottom:387.123733pt;}
.y199{bottom:391.219467pt;}
.y102{bottom:394.475867pt;}
.y8b{bottom:394.477867pt;}
.y136{bottom:394.588533pt;}
.y156{bottom:394.595867pt;}
.y69{bottom:394.731200pt;}
.yd7{bottom:397.129200pt;}
.y1cf{bottom:399.921867pt;}
.y198{bottom:404.552800pt;}
.y170{bottom:409.995867pt;}
.y101{bottom:410.475867pt;}
.y8a{bottom:410.477867pt;}
.y135{bottom:410.588533pt;}
.y155{bottom:410.595867pt;}
.y68{bottom:410.731200pt;}
.y1c{bottom:411.430400pt;}
.yd6{bottom:413.129200pt;}
.y197{bottom:417.886133pt;}
.yaf{bottom:426.462533pt;}
.y100{bottom:426.475867pt;}
.y89{bottom:426.477867pt;}
.y134{bottom:426.588533pt;}
.y154{bottom:426.595867pt;}
.y67{bottom:426.731200pt;}
.y1b{bottom:427.430400pt;}
.yd5{bottom:429.129200pt;}
.y196{bottom:431.219467pt;}
.y1ce{bottom:431.921867pt;}
.yae{bottom:442.462533pt;}
.yff{bottom:442.475867pt;}
.y88{bottom:442.477867pt;}
.y133{bottom:442.588533pt;}
.y153{bottom:442.595867pt;}
.y66{bottom:442.731200pt;}
.y1a{bottom:443.430400pt;}
.y195{bottom:444.552800pt;}
.yd4{bottom:445.129200pt;}
.y1cd{bottom:447.921867pt;}
.y194{bottom:457.886133pt;}
.yad{bottom:458.462533pt;}
.yfe{bottom:458.475867pt;}
.y87{bottom:458.477867pt;}
.y132{bottom:458.588533pt;}
.y152{bottom:458.595867pt;}
.y65{bottom:458.731200pt;}
.y19{bottom:459.430400pt;}
.yd3{bottom:461.129200pt;}
.y1cc{bottom:463.921867pt;}
.y193{bottom:471.219467pt;}
.yac{bottom:474.462533pt;}
.yfd{bottom:474.475867pt;}
.y86{bottom:474.477867pt;}
.y131{bottom:474.588533pt;}
.y151{bottom:474.595867pt;}
.y64{bottom:474.731200pt;}
.y18{bottom:475.430400pt;}
.yd2{bottom:477.129200pt;}
.y1cb{bottom:479.923867pt;}
.y192{bottom:484.552800pt;}
.yab{bottom:490.462533pt;}
.yfc{bottom:490.475867pt;}
.y85{bottom:490.477867pt;}
.y130{bottom:490.588533pt;}
.y150{bottom:490.595867pt;}
.y63{bottom:490.731200pt;}
.y17{bottom:491.430400pt;}
.yd1{bottom:493.129200pt;}
.y191{bottom:497.886133pt;}
.yaa{bottom:506.462533pt;}
.yfb{bottom:506.475867pt;}
.y84{bottom:506.477867pt;}
.y12f{bottom:506.588533pt;}
.y14f{bottom:506.595867pt;}
.y62{bottom:506.731200pt;}
.y16{bottom:507.430400pt;}
.yd0{bottom:509.129200pt;}
.y190{bottom:511.219467pt;}
.y1ca{bottom:511.923867pt;}
.ya9{bottom:522.462533pt;}
.yfa{bottom:522.475867pt;}
.y83{bottom:522.477867pt;}
.y12e{bottom:522.588533pt;}
.y14e{bottom:522.595867pt;}
.y61{bottom:522.731200pt;}
.y15{bottom:523.430400pt;}
.y18f{bottom:524.552800pt;}
.ycf{bottom:525.129200pt;}
.y1c9{bottom:527.923867pt;}
.ya8{bottom:538.462533pt;}
.yf9{bottom:538.475867pt;}
.y82{bottom:538.477867pt;}
.y12d{bottom:538.588533pt;}
.y60{bottom:538.731200pt;}
.y14{bottom:539.430400pt;}
.yce{bottom:541.129200pt;}
.y18e{bottom:553.984533pt;}
.y14d{bottom:554.235867pt;}
.ya7{bottom:554.462533pt;}
.yf8{bottom:554.475867pt;}
.y81{bottom:554.477867pt;}
.y12c{bottom:554.609200pt;}
.y5f{bottom:554.731200pt;}
.y13{bottom:555.430400pt;}
.ycd{bottom:557.129200pt;}
.y1c8{bottom:559.563867pt;}
.y14c{bottom:570.235867pt;}
.y46{bottom:570.462533pt;}
.yf7{bottom:570.475867pt;}
.y80{bottom:570.477867pt;}
.y12b{bottom:570.609200pt;}
.y5e{bottom:570.731200pt;}
.y12{bottom:571.430400pt;}
.ycc{bottom:573.129200pt;}
.y14b{bottom:586.235867pt;}
.y45{bottom:586.462533pt;}
.yf6{bottom:586.475867pt;}
.y7f{bottom:586.477867pt;}
.y12a{bottom:586.609200pt;}
.y11{bottom:587.430400pt;}
.ycb{bottom:589.129200pt;}
.y1c7{bottom:591.347467pt;}
.y5d{bottom:602.371200pt;}
.y44{bottom:602.462533pt;}
.y18d{bottom:602.464533pt;}
.yf5{bottom:602.475867pt;}
.y7e{bottom:602.477867pt;}
.y129{bottom:602.609200pt;}
.y10{bottom:603.430400pt;}
.y1c6{bottom:604.680800pt;}
.yca{bottom:605.129200pt;}
.y1c5{bottom:618.014133pt;}
.y18c{bottom:618.104533pt;}
.y43{bottom:618.462533pt;}
.yf4{bottom:618.475867pt;}
.y7d{bottom:618.477867pt;}
.y128{bottom:618.609200pt;}
.yf{bottom:619.430400pt;}
.yc9{bottom:621.129200pt;}
.y1c4{bottom:631.347467pt;}
.y42{bottom:634.462533pt;}
.y16f{bottom:634.475867pt;}
.y7c{bottom:634.477867pt;}
.y5c{bottom:634.597867pt;}
.y127{bottom:634.609200pt;}
.yc8{bottom:637.129200pt;}
.y1c3{bottom:644.680800pt;}
.y18b{bottom:650.104533pt;}
.yf3{bottom:650.115867pt;}
.y41{bottom:650.462533pt;}
.y16e{bottom:650.475867pt;}
.y7b{bottom:650.477867pt;}
.y5b{bottom:650.597867pt;}
.y126{bottom:650.609200pt;}
.yc7{bottom:653.129200pt;}
.y1c2{bottom:658.014133pt;}
.ye{bottom:659.570933pt;}
.yf2{bottom:666.115867pt;}
.y40{bottom:666.462533pt;}
.y16d{bottom:666.475867pt;}
.y7a{bottom:666.477867pt;}
.y5a{bottom:666.597867pt;}
.yc6{bottom:669.129200pt;}
.yd{bottom:670.638267pt;}
.y1c1{bottom:671.347467pt;}
.yf1{bottom:682.115867pt;}
.y125{bottom:682.249200pt;}
.y3f{bottom:682.462533pt;}
.y18a{bottom:682.464533pt;}
.y16c{bottom:682.475867pt;}
.y79{bottom:682.477867pt;}
.y59{bottom:682.597867pt;}
.y1c0{bottom:684.680800pt;}
.yc5{bottom:685.129200pt;}
.y1bf{bottom:698.014133pt;}
.y124{bottom:698.249200pt;}
.y3e{bottom:698.462533pt;}
.y189{bottom:698.464533pt;}
.y16b{bottom:698.475867pt;}
.y58{bottom:698.597867pt;}
.yc4{bottom:701.129200pt;}
.yc{bottom:703.652400pt;}
.y1be{bottom:711.347467pt;}
.yf0{bottom:713.982533pt;}
.y188{bottom:714.104533pt;}
.y78{bottom:714.117867pt;}
.y3d{bottom:714.462533pt;}
.y16a{bottom:714.475867pt;}
.y57{bottom:714.597867pt;}
.yb{bottom:715.652400pt;}
.yc3{bottom:717.129200pt;}
.ya{bottom:722.829867pt;}
.y1bd{bottom:724.680800pt;}
.y48{bottom:730.102533pt;}
.y77{bottom:730.117867pt;}
.y3c{bottom:730.462533pt;}
.y123{bottom:730.475867pt;}
.y56{bottom:730.597867pt;}
.yc2{bottom:733.129200pt;}
.y9{bottom:734.829867pt;}
.y1bc{bottom:738.014133pt;}
.y76{bottom:746.117867pt;}
.y3b{bottom:746.462533pt;}
.y187{bottom:746.464533pt;}
.y122{bottom:746.475867pt;}
.y55{bottom:746.597867pt;}
.y8{bottom:746.829867pt;}
.yc1{bottom:749.129200pt;}
.y1bb{bottom:751.347467pt;}
.y47{bottom:761.982533pt;}
.y186{bottom:762.104533pt;}
.y75{bottom:762.117867pt;}
.y3a{bottom:762.462533pt;}
.y121{bottom:762.475867pt;}
.y54{bottom:762.597867pt;}
.y7{bottom:763.652400pt;}
.y1ba{bottom:764.680800pt;}
.yc0{bottom:765.129200pt;}
.y1b9{bottom:778.014133pt;}
.y39{bottom:778.462533pt;}
.y120{bottom:778.475867pt;}
.ybf{bottom:781.129200pt;}
.y6{bottom:789.183067pt;}
.y1b8{bottom:791.347467pt;}
.y74{bottom:793.997867pt;}
.y53{bottom:794.237867pt;}
.y38{bottom:794.462533pt;}
.y185{bottom:794.464533pt;}
.y11f{bottom:794.475867pt;}
.ybe{bottom:797.129200pt;}
.y1b7{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.y184{bottom:810.464533pt;}
.y11e{bottom:810.475867pt;}
.ybd{bottom:813.129200pt;}
.y1b6{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y52{bottom:826.464533pt;}
.y11d{bottom:826.475867pt;}
.ybc{bottom:829.129200pt;}
.y5{bottom:830.226133pt;}
.y1b5{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y51{bottom:842.464533pt;}
.y11c{bottom:842.475867pt;}
.y73{bottom:842.477867pt;}
.y1b4{bottom:844.680800pt;}
.ybb{bottom:845.129200pt;}
.y1b3{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y50{bottom:858.464533pt;}
.y11b{bottom:858.475867pt;}
.y72{bottom:858.477867pt;}
.yba{bottom:861.129200pt;}
.y4{bottom:862.635733pt;}
.y1b2{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y4f{bottom:874.464533pt;}
.y11a{bottom:874.475867pt;}
.y71{bottom:874.477867pt;}
.yb9{bottom:877.129200pt;}
.y1b1{bottom:884.680800pt;}
.y32{bottom:890.462533pt;}
.y4e{bottom:890.464533pt;}
.y119{bottom:890.475867pt;}
.y70{bottom:890.477867pt;}
.yb8{bottom:893.129200pt;}
.y3{bottom:895.045333pt;}
.y1b0{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y183{bottom:906.464533pt;}
.y118{bottom:906.475867pt;}
.y6f{bottom:906.477867pt;}
.y1af{bottom:911.347467pt;}
.y4d{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.y117{bottom:922.475867pt;}
.y6e{bottom:922.477867pt;}
.yb7{bottom:924.678667pt;}
.y1ae{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.yef{bottom:1006.591067pt;}
.yeb{bottom:1006.594400pt;}
.y4c{bottom:1006.599733pt;}
.ye8{bottom:1006.603467pt;}
.ya6{bottom:1006.614800pt;}
.y9d{bottom:1006.628800pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h7{height:29.160156pt;}
.hb{height:29.169756pt;}
.h10{height:29.645833pt;}
.hf{height:31.062500pt;}
.he{height:31.104167pt;}
.h11{height:33.351562pt;}
.h14{height:37.049292pt;}
.hd{height:37.057292pt;}
.h12{height:37.338988pt;}
.h13{height:38.177083pt;}
.h9{height:38.828125pt;}
.ha{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x15{left:88.818933pt;}
.x23{left:90.708800pt;}
.x4{left:94.488133pt;}
.xb{left:98.284800pt;}
.x1e{left:100.442667pt;}
.x1b{left:110.089200pt;}
.x3{left:111.491467pt;}
.x6{left:117.170133pt;}
.x1a{left:151.329200pt;}
.x17{left:160.606533pt;}
.x18{left:162.519600pt;}
.x1c{left:166.782533pt;}
.x22{left:172.698133pt;}
.x20{left:176.774400pt;}
.x5{left:189.223467pt;}
.x19{left:194.689200pt;}
.x1f{left:197.162667pt;}
.x1d{left:204.022533pt;}
.x9{left:404.481333pt;}
.xc{left:406.298133pt;}
.x13{left:425.195867pt;}
.x7{left:427.103467pt;}
.x24{left:428.948800pt;}
.xe{left:436.551467pt;}
.x12{left:455.435867pt;}
.xd{left:466.924800pt;}
.x21{left:526.169200pt;}
.x14{left:544.809200pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x25{left:641.526800pt;}
.x10{left:647.456000pt;}
.xf{left:661.898667pt;}
.x16{left:666.290933pt;}
}




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