
    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_d08e85ab47709f69c543638b.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_a94e4243b472a76dab60d0bc.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_68176018a3d9592e573cce66.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_033f8db37fadfb3e55ae478a.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_235445646160abe0695304ae.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_438cbca9cc005a9603154a6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_39cd1998a8bc6f6e3b618dc8.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_fe6f31d0b9078d1be017d219.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_526aa553af792da1d9c28b2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.810000;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_86e3494118e24da72845a37f.woff2')format("woff");}.ffa{font-family:ffa;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:-21.701400px;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls73{letter-spacing:-2.640000px;}
.ls16{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.315000px;}
.ls35{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.144000px;}
.ls58{letter-spacing:-0.120000px;}
.ls4f{letter-spacing:-0.096000px;}
.ls19{letter-spacing:-0.060000px;}
.ls5f{letter-spacing:-0.048000px;}
.ls15{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls69{letter-spacing:0.048000px;}
.lse{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.120000px;}
.ls5b{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.192000px;}
.ls26{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.300000px;}
.ls6d{letter-spacing:0.336000px;}
.ls2c{letter-spacing:0.360000px;}
.ls6f{letter-spacing:0.384000px;}
.ls30{letter-spacing:0.420000px;}
.ls7c{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.540000px;}
.ls3a{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.600000px;}
.ls59{letter-spacing:0.624000px;}
.ls2d{letter-spacing:0.660000px;}
.ls38{letter-spacing:0.672000px;}
.ls28{letter-spacing:0.720000px;}
.ls70{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.780000px;}
.ls4d{letter-spacing:0.816000px;}
.lsd{letter-spacing:0.840000px;}
.ls21{letter-spacing:0.900000px;}
.ls6e{letter-spacing:0.912000px;}
.ls8{letter-spacing:0.960000px;}
.ls77{letter-spacing:1.008000px;}
.ls1a{letter-spacing:1.020000px;}
.ls71{letter-spacing:1.056000px;}
.ls31{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.140000px;}
.ls3d{letter-spacing:1.152000px;}
.ls46{letter-spacing:1.200000px;}
.ls6b{letter-spacing:1.248000px;}
.ls4e{letter-spacing:1.260000px;}
.ls6c{letter-spacing:1.296000px;}
.ls37{letter-spacing:1.320000px;}
.ls3b{letter-spacing:1.344000px;}
.ls25{letter-spacing:1.380000px;}
.ls2f{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.500000px;}
.ls45{letter-spacing:1.560000px;}
.ls41{letter-spacing:1.620000px;}
.ls68{letter-spacing:1.632000px;}
.lsf{letter-spacing:1.680000px;}
.ls43{letter-spacing:1.740000px;}
.ls75{letter-spacing:1.776000px;}
.ls3f{letter-spacing:1.800000px;}
.ls40{letter-spacing:1.860000px;}
.ls34{letter-spacing:1.920000px;}
.ls5a{letter-spacing:1.968000px;}
.ls9{letter-spacing:1.980000px;}
.ls72{letter-spacing:2.016000px;}
.ls11{letter-spacing:2.040000px;}
.ls76{letter-spacing:2.064000px;}
.ls14{letter-spacing:2.100000px;}
.ls24{letter-spacing:2.160000px;}
.ls32{letter-spacing:2.220000px;}
.ls7a{letter-spacing:2.256000px;}
.ls1e{letter-spacing:2.280000px;}
.ls1c{letter-spacing:2.340000px;}
.ls78{letter-spacing:2.352000px;}
.ls5e{letter-spacing:2.400000px;}
.ls2a{letter-spacing:2.460000px;}
.ls1d{letter-spacing:2.520000px;}
.lsc{letter-spacing:2.580000px;}
.ls42{letter-spacing:2.640000px;}
.ls2b{letter-spacing:2.700000px;}
.ls53{letter-spacing:2.736000px;}
.lsa{letter-spacing:2.760000px;}
.ls3e{letter-spacing:2.820000px;}
.ls22{letter-spacing:2.880000px;}
.ls7d{letter-spacing:2.928000px;}
.ls5{letter-spacing:2.940000px;}
.ls54{letter-spacing:3.000000px;}
.ls7b{letter-spacing:3.024000px;}
.ls44{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.120000px;}
.ls23{letter-spacing:3.180000px;}
.ls64{letter-spacing:3.240000px;}
.ls39{letter-spacing:3.264000px;}
.ls13{letter-spacing:3.360000px;}
.ls79{letter-spacing:3.456000px;}
.ls4a{letter-spacing:3.540000px;}
.ls4b{letter-spacing:3.600000px;}
.ls62{letter-spacing:3.660000px;}
.ls63{letter-spacing:3.720000px;}
.ls74{letter-spacing:3.744000px;}
.ls1f{letter-spacing:3.780000px;}
.ls60{letter-spacing:3.840000px;}
.ls6a{letter-spacing:3.888000px;}
.ls67{letter-spacing:3.900000px;}
.ls1b{letter-spacing:4.140000px;}
.ls20{letter-spacing:4.320000px;}
.ls47{letter-spacing:4.380000px;}
.ls33{letter-spacing:4.440000px;}
.ls51{letter-spacing:4.500000px;}
.ls27{letter-spacing:4.620000px;}
.ls49{letter-spacing:4.980000px;}
.ls7e{letter-spacing:5.040000px;}
.ls56{letter-spacing:5.700000px;}
.ls5d{letter-spacing:6.240000px;}
.ls66{letter-spacing:6.360000px;}
.ls61{letter-spacing:6.480000px;}
.ls50{letter-spacing:7.440000px;}
.ls55{letter-spacing:7.740000px;}
.ls5c{letter-spacing:7.800000px;}
.ls57{letter-spacing:8.460000px;}
.ls4c{letter-spacing:8.520000px;}
.ls48{letter-spacing:9.360000px;}
.ls52{letter-spacing:9.480000px;}
.ls0{letter-spacing:59.532876px;}
.ls65{letter-spacing:401.184000px;}
.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;}
}
.ws7d{word-spacing:-413.184000px;}
.ws2f{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws56{word-spacing:-23.460000px;}
.ws4b{word-spacing:-19.500000px;}
.ws31{word-spacing:-19.440000px;}
.ws87{word-spacing:-19.200000px;}
.ws70{word-spacing:-18.660000px;}
.ws33{word-spacing:-18.540000px;}
.ws5e{word-spacing:-17.820000px;}
.ws16{word-spacing:-17.760000px;}
.ws4a{word-spacing:-17.520000px;}
.ws6f{word-spacing:-17.400000px;}
.ws6{word-spacing:-17.040000px;}
.ws6c{word-spacing:-16.920000px;}
.ws6d{word-spacing:-16.860000px;}
.ws3{word-spacing:-16.680000px;}
.ws6b{word-spacing:-16.560000px;}
.ws18{word-spacing:-16.440000px;}
.ws61{word-spacing:-16.320000px;}
.ws7b{word-spacing:-16.200000px;}
.ws55{word-spacing:-16.140000px;}
.ws32{word-spacing:-16.080000px;}
.ws19{word-spacing:-16.020000px;}
.ws6a{word-spacing:-15.960000px;}
.ws99{word-spacing:-15.744000px;}
.ws62{word-spacing:-15.720000px;}
.ws5{word-spacing:-15.600000px;}
.ws86{word-spacing:-15.540000px;}
.ws7c{word-spacing:-15.420000px;}
.ws17{word-spacing:-15.360000px;}
.ws6e{word-spacing:-15.300000px;}
.ws2d{word-spacing:-15.264000px;}
.ws1a{word-spacing:-15.180000px;}
.ws4{word-spacing:-15.120000px;}
.ws30{word-spacing:-15.000000px;}
.ws5f{word-spacing:-14.940000px;}
.ws63{word-spacing:-14.760000px;}
.ws60{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.344000px;}
.ws88{word-spacing:-13.296000px;}
.ws8a{word-spacing:-13.152000px;}
.ws9a{word-spacing:-13.008000px;}
.ws2c{word-spacing:-12.672000px;}
.ws2e{word-spacing:-12.576000px;}
.ws7{word-spacing:-12.510000px;}
.ws9b{word-spacing:-12.432000px;}
.ws5d{word-spacing:-12.000000px;}
.ws47{word-spacing:-11.904000px;}
.ws1{word-spacing:-10.210662px;}
.ws89{word-spacing:-9.360000px;}
.ws3d{word-spacing:-8.928000px;}
.ws38{word-spacing:-7.824000px;}
.ws3f{word-spacing:-7.680000px;}
.ws2{word-spacing:-7.293330px;}
.ws3b{word-spacing:-6.240000px;}
.ws37{word-spacing:-3.984000px;}
.ws39{word-spacing:-3.744000px;}
.ws76{word-spacing:-3.660000px;}
.ws36{word-spacing:-3.264000px;}
.wsa{word-spacing:-2.886000px;}
.ws22{word-spacing:-2.700000px;}
.ws97{word-spacing:-2.640000px;}
.ws15{word-spacing:-2.220000px;}
.ws75{word-spacing:-1.920000px;}
.ws74{word-spacing:-1.860000px;}
.ws7a{word-spacing:-1.440000px;}
.wsa7{word-spacing:-1.344000px;}
.wsa9{word-spacing:-1.152000px;}
.ws3a{word-spacing:-1.104000px;}
.wsb{word-spacing:-1.080000px;}
.ws26{word-spacing:-1.020000px;}
.wsa5{word-spacing:-0.864000px;}
.ws8c{word-spacing:-0.840000px;}
.ws21{word-spacing:-0.720000px;}
.ws8d{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.576000px;}
.ws13{word-spacing:-0.480000px;}
.wsa4{word-spacing:-0.432000px;}
.ws84{word-spacing:-0.420000px;}
.ws67{word-spacing:-0.360000px;}
.ws82{word-spacing:-0.300000px;}
.ws94{word-spacing:-0.288000px;}
.ws72{word-spacing:-0.240000px;}
.ws3e{word-spacing:-0.192000px;}
.ws24{word-spacing:-0.180000px;}
.ws8b{word-spacing:-0.120000px;}
.ws71{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws1b{word-spacing:0.060000px;}
.ws9e{word-spacing:0.096000px;}
.ws53{word-spacing:0.180000px;}
.ws85{word-spacing:0.240000px;}
.ws50{word-spacing:0.300000px;}
.ws81{word-spacing:0.360000px;}
.ws59{word-spacing:0.420000px;}
.ws98{word-spacing:0.432000px;}
.ws41{word-spacing:0.480000px;}
.ws9f{word-spacing:0.528000px;}
.ws45{word-spacing:0.540000px;}
.wsa3{word-spacing:0.624000px;}
.ws42{word-spacing:0.660000px;}
.ws96{word-spacing:0.720000px;}
.ws58{word-spacing:0.780000px;}
.ws20{word-spacing:0.840000px;}
.ws51{word-spacing:0.900000px;}
.ws95{word-spacing:0.912000px;}
.ws23{word-spacing:1.020000px;}
.ws27{word-spacing:1.080000px;}
.ws43{word-spacing:1.140000px;}
.ws29{word-spacing:1.260000px;}
.wsa8{word-spacing:1.392000px;}
.wsa2{word-spacing:1.488000px;}
.ws1e{word-spacing:1.500000px;}
.ws5b{word-spacing:1.560000px;}
.ws66{word-spacing:1.680000px;}
.ws1c{word-spacing:1.800000px;}
.ws79{word-spacing:1.860000px;}
.wsa1{word-spacing:1.920000px;}
.ws90{word-spacing:1.980000px;}
.ws93{word-spacing:2.016000px;}
.ws2b{word-spacing:2.040000px;}
.ws12{word-spacing:2.220000px;}
.ws8e{word-spacing:2.280000px;}
.ws57{word-spacing:2.340000px;}
.ws69{word-spacing:2.400000px;}
.ws9c{word-spacing:2.448000px;}
.ws4f{word-spacing:2.520000px;}
.ws5c{word-spacing:2.640000px;}
.ws9d{word-spacing:2.688000px;}
.ws40{word-spacing:2.760000px;}
.wsa0{word-spacing:2.784000px;}
.ws4d{word-spacing:2.820000px;}
.ws54{word-spacing:2.880000px;}
.ws49{word-spacing:2.940000px;}
.ws4e{word-spacing:3.060000px;}
.wsf{word-spacing:3.120000px;}
.wsa6{word-spacing:3.264000px;}
.ws68{word-spacing:3.360000px;}
.ws14{word-spacing:3.420000px;}
.ws1f{word-spacing:3.480000px;}
.ws83{word-spacing:3.504000px;}
.ws2a{word-spacing:3.540000px;}
.ws4c{word-spacing:3.600000px;}
.ws44{word-spacing:3.660000px;}
.wsd{word-spacing:3.720000px;}
.ws64{word-spacing:3.744000px;}
.ws46{word-spacing:3.792000px;}
.ws65{word-spacing:3.840000px;}
.ws28{word-spacing:3.900000px;}
.ws34{word-spacing:3.936000px;}
.ws35{word-spacing:3.984000px;}
.ws77{word-spacing:4.080000px;}
.ws8f{word-spacing:4.200000px;}
.ws48{word-spacing:4.500000px;}
.ws73{word-spacing:4.560000px;}
.ws25{word-spacing:4.620000px;}
.wse{word-spacing:4.680000px;}
.ws1d{word-spacing:4.740000px;}
.ws5a{word-spacing:4.800000px;}
.wsc{word-spacing:4.920000px;}
.ws10{word-spacing:4.980000px;}
.ws92{word-spacing:5.460000px;}
.ws91{word-spacing:5.520000px;}
.ws11{word-spacing:5.580000px;}
.ws78{word-spacing:6.300000px;}
.ws52{word-spacing:7.200000px;}
.ws7f{word-spacing:281.184000px;}
.ws80{word-spacing:282.096000px;}
.ws7e{word-spacing:425.232000px;}
._d{margin-left:-2898.231000px;}
._13{margin-left:-2874.423000px;}
._1e{margin-left:-401.184000px;}
._2{margin-left:-9.368400px;}
._9{margin-left:-8.115000px;}
._5{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._6{width:1.209600px;}
._8{width:3.096000px;}
._c{width:4.106400px;}
._7{width:5.250000px;}
._a{width:6.600000px;}
._b{width:7.920000px;}
._12{width:9.864000px;}
._f{width:11.201400px;}
._11{width:38.166000px;}
._e{width:43.824000px;}
._10{width:63.840000px;}
._20{width:342.390000px;}
._1f{width:437.232000px;}
._18{width:477.888000px;}
._17{width:493.872000px;}
._16{width:496.560000px;}
._1d{width:501.888000px;}
._1b{width:504.528000px;}
._14{width:512.544000px;}
._1c{width:517.872000px;}
._1a{width:520.512000px;}
._15{width:523.728000px;}
._19{width:525.888000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.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;}
.y30{bottom:47.777250px;}
.ydf{bottom:82.928850px;}
.y182{bottom:83.129700px;}
.ydd{bottom:83.236050px;}
.y17f{bottom:83.650350px;}
.yc8{bottom:83.737350px;}
.y114{bottom:83.770350px;}
.y64{bottom:83.912100px;}
.y1e4{bottom:86.121900px;}
.y2d{bottom:88.026750px;}
.y149{bottom:88.112100px;}
.y190{bottom:92.146950px;}
.y104{bottom:92.174700px;}
.yde{bottom:98.672850px;}
.y181{bottom:98.873700px;}
.ydc{bottom:98.980050px;}
.y1e3{bottom:101.121900px;}
.y1b9{bottom:101.635350px;}
.y17e{bottom:101.650350px;}
.yc7{bottom:101.737350px;}
.y113{bottom:101.770350px;}
.y63{bottom:101.912100px;}
.y2c{bottom:103.023000px;}
.y148{bottom:106.112100px;}
.y18f{bottom:108.394950px;}
.y103{bottom:108.422700px;}
.y180{bottom:114.617700px;}
.ydb{bottom:114.724050px;}
.y1e2{bottom:116.121900px;}
.y1b8{bottom:119.635350px;}
.y17d{bottom:119.650350px;}
.yc6{bottom:119.737350px;}
.y112{bottom:119.770350px;}
.y62{bottom:119.912100px;}
.y147{bottom:124.112100px;}
.y18e{bottom:124.642950px;}
.y102{bottom:124.670700px;}
.y1e1{bottom:131.121900px;}
.y1b7{bottom:137.635350px;}
.y17c{bottom:137.650350px;}
.yc5{bottom:137.737350px;}
.y111{bottom:137.770350px;}
.y61{bottom:137.912100px;}
.y18d{bottom:140.890950px;}
.y101{bottom:140.918700px;}
.y146{bottom:142.112100px;}
.y1e0{bottom:146.121900px;}
.y1b6{bottom:155.635350px;}
.y17b{bottom:155.650350px;}
.yc4{bottom:155.737350px;}
.y110{bottom:155.770350px;}
.y96{bottom:155.777100px;}
.y60{bottom:155.912100px;}
.y18c{bottom:157.138950px;}
.y100{bottom:157.166700px;}
.y145{bottom:160.112100px;}
.y1df{bottom:161.121900px;}
.y27{bottom:163.920000px;}
.y18b{bottom:173.386950px;}
.yff{bottom:173.414700px;}
.y1b5{bottom:173.635350px;}
.y17a{bottom:173.650350px;}
.yc3{bottom:173.737350px;}
.y10f{bottom:173.770350px;}
.y95{bottom:173.777100px;}
.y5f{bottom:173.920350px;}
.y1de{bottom:176.121900px;}
.y144{bottom:178.112100px;}
.y26{bottom:181.920000px;}
.yfe{bottom:189.662700px;}
.y1dd{bottom:191.121900px;}
.y1b4{bottom:191.635350px;}
.y179{bottom:191.650350px;}
.yc2{bottom:191.737350px;}
.y10e{bottom:191.770350px;}
.y94{bottom:191.777100px;}
.y5e{bottom:191.920350px;}
.y143{bottom:196.112100px;}
.y25{bottom:199.920000px;}
.y18a{bottom:204.898950px;}
.yfd{bottom:205.910700px;}
.y1dc{bottom:206.121900px;}
.y1b3{bottom:209.635350px;}
.y178{bottom:209.650350px;}
.yc1{bottom:209.737350px;}
.y10d{bottom:209.770350px;}
.y93{bottom:209.777100px;}
.y5d{bottom:209.920350px;}
.y142{bottom:214.112100px;}
.y24{bottom:217.920000px;}
.y1db{bottom:221.121900px;}
.yfc{bottom:222.158700px;}
.y1b2{bottom:227.635350px;}
.y177{bottom:227.650350px;}
.yc0{bottom:227.737350px;}
.y10c{bottom:227.770350px;}
.y92{bottom:227.777100px;}
.y5c{bottom:227.920350px;}
.y141{bottom:232.112100px;}
.y23{bottom:235.920000px;}
.y1da{bottom:236.121900px;}
.y189{bottom:239.794050px;}
.y1b1{bottom:245.635350px;}
.y176{bottom:245.650350px;}
.ybf{bottom:245.737350px;}
.y10b{bottom:245.770350px;}
.y91{bottom:245.777100px;}
.y5b{bottom:245.920350px;}
.y140{bottom:250.112100px;}
.y1d9{bottom:251.121900px;}
.yfb{bottom:251.162700px;}
.y22{bottom:253.920000px;}
.y188{bottom:259.294050px;}
.y1b0{bottom:263.635350px;}
.y175{bottom:263.650350px;}
.ybe{bottom:263.737350px;}
.y10a{bottom:263.770350px;}
.y90{bottom:263.777100px;}
.y5a{bottom:263.920350px;}
.y1d8{bottom:266.121900px;}
.yfa{bottom:267.662700px;}
.y13f{bottom:268.112100px;}
.y21{bottom:271.920000px;}
.y187{bottom:278.794050px;}
.y1d7{bottom:281.121900px;}
.y1af{bottom:281.635350px;}
.y174{bottom:281.650350px;}
.ybd{bottom:281.737350px;}
.y109{bottom:281.770350px;}
.y8f{bottom:281.777100px;}
.y59{bottom:281.920350px;}
.y13e{bottom:286.112100px;}
.y2b{bottom:289.515000px;}
.y20{bottom:289.920000px;}
.y1d6{bottom:296.121900px;}
.y1ae{bottom:299.635350px;}
.y173{bottom:299.650350px;}
.ybc{bottom:299.737350px;}
.y108{bottom:299.770350px;}
.y8e{bottom:299.777100px;}
.y58{bottom:299.920350px;}
.yf9{bottom:300.047100px;}
.y13d{bottom:304.112100px;}
.y1f{bottom:307.920000px;}
.y1d5{bottom:311.121900px;}
.y1ad{bottom:317.635350px;}
.y172{bottom:317.650350px;}
.ybb{bottom:317.737350px;}
.y107{bottom:317.770350px;}
.y8d{bottom:317.777100px;}
.y57{bottom:317.920350px;}
.y13c{bottom:322.112100px;}
.y186{bottom:324.826650px;}
.y2a{bottom:325.380000px;}
.y1e{bottom:325.920000px;}
.y1d4{bottom:326.121900px;}
.y1ac{bottom:335.635350px;}
.y171{bottom:335.650350px;}
.yba{bottom:335.737350px;}
.y106{bottom:335.770350px;}
.y8c{bottom:335.777100px;}
.y56{bottom:335.920350px;}
.y13b{bottom:340.112100px;}
.y185{bottom:340.570650px;}
.y1d3{bottom:341.121900px;}
.y1d{bottom:343.920000px;}
.yf8{bottom:344.312100px;}
.y1ab{bottom:353.635350px;}
.y170{bottom:353.650350px;}
.yb9{bottom:353.737350px;}
.ye5{bottom:353.770350px;}
.y8b{bottom:353.777100px;}
.y55{bottom:353.920350px;}
.y1d2{bottom:356.121900px;}
.y184{bottom:356.314650px;}
.y13a{bottom:358.112100px;}
.y1c{bottom:361.920000px;}
.yf7{bottom:362.312100px;}
.y1d1{bottom:371.121900px;}
.y1aa{bottom:371.635350px;}
.y16f{bottom:371.650350px;}
.yb8{bottom:371.737350px;}
.ye4{bottom:371.770350px;}
.y8a{bottom:371.777100px;}
.y54{bottom:371.920350px;}
.y139{bottom:376.112100px;}
.y1b{bottom:379.920000px;}
.yf6{bottom:380.312100px;}
.y1d0{bottom:386.121900px;}
.y1a9{bottom:389.635350px;}
.y16e{bottom:389.650350px;}
.yb7{bottom:389.737350px;}
.ye3{bottom:389.770350px;}
.y89{bottom:389.777100px;}
.y138{bottom:394.112100px;}
.y1a{bottom:397.920000px;}
.yf5{bottom:398.312100px;}
.y1cf{bottom:401.121900px;}
.y53{bottom:407.515350px;}
.y1a8{bottom:407.635350px;}
.y16d{bottom:407.650350px;}
.yb6{bottom:407.737350px;}
.ye2{bottom:407.770350px;}
.y88{bottom:407.777100px;}
.y137{bottom:412.112100px;}
.y19{bottom:415.920000px;}
.y1ce{bottom:416.121900px;}
.yf4{bottom:416.312100px;}
.y1a7{bottom:425.635350px;}
.y16c{bottom:425.650350px;}
.yb5{bottom:425.737350px;}
.ye1{bottom:425.770350px;}
.y87{bottom:425.777100px;}
.y136{bottom:430.112100px;}
.y1cd{bottom:431.121900px;}
.y18{bottom:433.920000px;}
.yf3{bottom:434.312100px;}
.y20e{bottom:440.263500px;}
.y1a6{bottom:443.635350px;}
.y16b{bottom:443.650350px;}
.yb4{bottom:443.737350px;}
.y52{bottom:443.770350px;}
.y86{bottom:443.777100px;}
.y214{bottom:443.912100px;}
.y1cc{bottom:446.121900px;}
.y135{bottom:448.112100px;}
.y17{bottom:451.920000px;}
.yf2{bottom:452.312100px;}
.y20d{bottom:455.263500px;}
.y1cb{bottom:461.121900px;}
.y1a5{bottom:461.230350px;}
.y16a{bottom:461.650350px;}
.yb3{bottom:461.737350px;}
.y51{bottom:461.770350px;}
.y85{bottom:461.777100px;}
.y213{bottom:461.912100px;}
.y134{bottom:466.112100px;}
.y16{bottom:469.920000px;}
.y20c{bottom:470.263500px;}
.yf1{bottom:470.312100px;}
.y1ca{bottom:476.121900px;}
.y169{bottom:479.650350px;}
.yb2{bottom:479.737350px;}
.y50{bottom:479.770350px;}
.y84{bottom:479.777100px;}
.y212{bottom:479.912100px;}
.y133{bottom:484.112100px;}
.y20b{bottom:485.263500px;}
.y15{bottom:487.920000px;}
.yf0{bottom:488.312100px;}
.y1c9{bottom:491.121900px;}
.y1a4{bottom:497.635350px;}
.y168{bottom:497.650350px;}
.yb1{bottom:497.737350px;}
.y4f{bottom:497.770350px;}
.y83{bottom:497.777100px;}
.y20a{bottom:500.263500px;}
.y132{bottom:502.112100px;}
.y29{bottom:505.920000px;}
.y1c8{bottom:506.121900px;}
.yef{bottom:506.312100px;}
.y209{bottom:515.263500px;}
.y1a3{bottom:515.635350px;}
.y167{bottom:515.650350px;}
.y4e{bottom:515.770350px;}
.y82{bottom:515.777100px;}
.y211{bottom:515.912100px;}
.y131{bottom:520.112100px;}
.y1c7{bottom:521.121900px;}
.y14{bottom:523.517100px;}
.y28{bottom:523.920000px;}
.yee{bottom:524.312100px;}
.y208{bottom:530.263500px;}
.yb0{bottom:533.230500px;}
.y1a2{bottom:533.635350px;}
.y166{bottom:533.650350px;}
.y4d{bottom:533.770350px;}
.y81{bottom:533.777100px;}
.y210{bottom:533.914350px;}
.y1c6{bottom:536.121900px;}
.y130{bottom:538.112100px;}
.yed{bottom:542.312100px;}
.y207{bottom:545.263500px;}
.yaf{bottom:548.230500px;}
.y1c5{bottom:551.121900px;}
.y1a1{bottom:551.635350px;}
.y165{bottom:551.650350px;}
.y4c{bottom:551.770350px;}
.y80{bottom:551.777100px;}
.y12f{bottom:556.112100px;}
.y206{bottom:560.263500px;}
.yec{bottom:560.312100px;}
.y1c4{bottom:566.121900px;}
.y20f{bottom:569.509350px;}
.y1a0{bottom:569.635350px;}
.y164{bottom:569.650350px;}
.y4b{bottom:569.770350px;}
.y7f{bottom:569.777100px;}
.y205{bottom:575.263500px;}
.yeb{bottom:578.312100px;}
.yae{bottom:579.343200px;}
.y1c3{bottom:581.121900px;}
.y19f{bottom:587.635350px;}
.y163{bottom:587.650350px;}
.y4a{bottom:587.770350px;}
.y7e{bottom:587.777100px;}
.y204{bottom:590.263500px;}
.y12e{bottom:590.952750px;}
.y1c2{bottom:596.121900px;}
.yea{bottom:596.312100px;}
.yad{bottom:596.938200px;}
.y13{bottom:597.514200px;}
.y203{bottom:605.263500px;}
.y19e{bottom:605.635350px;}
.y49{bottom:605.770350px;}
.y7d{bottom:605.777100px;}
.y12d{bottom:606.558750px;}
.y1c1{bottom:611.121900px;}
.y202{bottom:620.263500px;}
.y12c{bottom:620.920350px;}
.y162{bottom:623.245350px;}
.y19d{bottom:623.635350px;}
.y48{bottom:623.770350px;}
.y7c{bottom:623.777100px;}
.y12{bottom:624.859200px;}
.y1c0{bottom:626.121900px;}
.ye9{bottom:631.805250px;}
.yac{bottom:632.688750px;}
.y201{bottom:635.263500px;}
.y12b{bottom:638.515350px;}
.y19c{bottom:641.635350px;}
.y47{bottom:641.770350px;}
.y7b{bottom:641.777100px;}
.y11{bottom:642.859200px;}
.ye8{bottom:646.805250px;}
.yab{bottom:647.688750px;}
.y200{bottom:650.263500px;}
.y1bf{bottom:659.245350px;}
.y19b{bottom:659.635350px;}
.y46{bottom:659.770350px;}
.y7a{bottom:659.777100px;}
.y10{bottom:660.859200px;}
.yaa{bottom:662.688750px;}
.y1ff{bottom:665.263500px;}
.y12a{bottom:674.770350px;}
.y19a{bottom:677.635350px;}
.ya9{bottom:677.688750px;}
.y45{bottom:677.770350px;}
.y79{bottom:677.777100px;}
.y161{bottom:677.785350px;}
.ye7{bottom:677.920350px;}
.yf{bottom:678.859200px;}
.y1fe{bottom:680.263500px;}
.ya8{bottom:692.688750px;}
.y129{bottom:692.770350px;}
.y1fd{bottom:695.263500px;}
.ye6{bottom:695.515350px;}
.y199{bottom:695.635350px;}
.y44{bottom:695.770350px;}
.y78{bottom:695.777100px;}
.y160{bottom:695.785350px;}
.ye{bottom:696.859200px;}
.ya7{bottom:707.688750px;}
.y1fc{bottom:710.263500px;}
.y128{bottom:710.770350px;}
.y198{bottom:713.635350px;}
.y43{bottom:713.770350px;}
.y77{bottom:713.777100px;}
.y15f{bottom:713.785350px;}
.y14c{bottom:713.920350px;}
.yd{bottom:714.859200px;}
.ya6{bottom:722.688750px;}
.y1fb{bottom:725.263500px;}
.y127{bottom:728.770350px;}
.y1be{bottom:731.380350px;}
.y197{bottom:731.635350px;}
.yda{bottom:731.767350px;}
.y42{bottom:731.770350px;}
.y76{bottom:731.777100px;}
.y15e{bottom:731.785350px;}
.y14b{bottom:731.920350px;}
.yc{bottom:732.859200px;}
.ya5{bottom:737.688750px;}
.y1fa{bottom:740.263500px;}
.y196{bottom:749.635350px;}
.yd9{bottom:749.767350px;}
.y41{bottom:749.770350px;}
.y75{bottom:749.777100px;}
.y15d{bottom:749.785350px;}
.yb{bottom:750.859200px;}
.ya4{bottom:752.688750px;}
.y1f9{bottom:755.263500px;}
.y126{bottom:764.263500px;}
.y1bd{bottom:767.380350px;}
.y14a{bottom:767.515350px;}
.y195{bottom:767.635350px;}
.ya3{bottom:767.688750px;}
.yd8{bottom:767.767350px;}
.y40{bottom:767.770350px;}
.y74{bottom:767.777100px;}
.y15c{bottom:767.785350px;}
.y1f8{bottom:770.263500px;}
.y125{bottom:779.263500px;}
.y1f7{bottom:785.263500px;}
.y194{bottom:785.635350px;}
.yd7{bottom:785.767350px;}
.y3f{bottom:785.770350px;}
.y73{bottom:785.777100px;}
.y15b{bottom:785.785350px;}
.y124{bottom:794.263500px;}
.ya{bottom:796.017450px;}
.y1f6{bottom:800.263500px;}
.ya2{bottom:800.792700px;}
.y193{bottom:803.635350px;}
.yd6{bottom:803.767350px;}
.y3e{bottom:803.770350px;}
.y72{bottom:803.777100px;}
.y15a{bottom:803.785350px;}
.y9{bottom:808.468200px;}
.y123{bottom:809.263500px;}
.y1f5{bottom:815.263500px;}
.yd5{bottom:821.767350px;}
.y3d{bottom:821.770350px;}
.y71{bottom:821.777100px;}
.y159{bottom:821.785350px;}
.y122{bottom:824.263500px;}
.y1f4{bottom:830.263500px;}
.ya1{bottom:836.547000px;}
.y192{bottom:839.230350px;}
.y121{bottom:839.263500px;}
.yd4{bottom:839.767350px;}
.y3c{bottom:839.770350px;}
.y70{bottom:839.777100px;}
.y158{bottom:839.785350px;}
.y1f3{bottom:845.263500px;}
.y8{bottom:845.608950px;}
.ya0{bottom:851.547000px;}
.y120{bottom:854.263500px;}
.yd3{bottom:857.767350px;}
.y3b{bottom:857.770350px;}
.y6f{bottom:857.777100px;}
.y157{bottom:857.785350px;}
.y7{bottom:859.108950px;}
.y1f2{bottom:860.263500px;}
.y9f{bottom:866.547000px;}
.y11f{bottom:869.263500px;}
.y1f1{bottom:875.263500px;}
.y1bc{bottom:875.380350px;}
.yd2{bottom:875.767350px;}
.y3a{bottom:875.770350px;}
.y6e{bottom:875.777100px;}
.y156{bottom:875.785350px;}
.y9e{bottom:881.547000px;}
.y11e{bottom:884.263500px;}
.y6{bottom:887.830950px;}
.y1f0{bottom:890.263500px;}
.yd1{bottom:893.767350px;}
.y39{bottom:893.770350px;}
.y6d{bottom:893.777100px;}
.y155{bottom:893.785350px;}
.y9d{bottom:896.547000px;}
.y11d{bottom:899.263500px;}
.y1ef{bottom:905.263500px;}
.yd0{bottom:911.767350px;}
.y38{bottom:911.770350px;}
.y6c{bottom:911.777100px;}
.y154{bottom:911.785350px;}
.y11c{bottom:914.263500px;}
.y1ee{bottom:920.263500px;}
.y11b{bottom:929.263500px;}
.y1bb{bottom:929.380350px;}
.y9c{bottom:929.637600px;}
.ycf{bottom:929.767350px;}
.y37{bottom:929.770350px;}
.y6b{bottom:929.777100px;}
.y153{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1ed{bottom:935.263500px;}
.y11a{bottom:944.263500px;}
.yce{bottom:947.767350px;}
.y36{bottom:947.770350px;}
.y6a{bottom:947.777100px;}
.y152{bottom:947.785350px;}
.y1ec{bottom:950.263500px;}
.y119{bottom:959.263500px;}
.y1eb{bottom:965.263500px;}
.y9b{bottom:965.502600px;}
.ycd{bottom:965.767350px;}
.y35{bottom:965.770350px;}
.y69{bottom:965.777100px;}
.y151{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y118{bottom:974.263500px;}
.y1ea{bottom:980.263500px;}
.y9a{bottom:983.502600px;}
.ycc{bottom:983.767350px;}
.y34{bottom:983.770350px;}
.y68{bottom:983.777100px;}
.y150{bottom:983.785350px;}
.y117{bottom:989.263500px;}
.y1e9{bottom:995.263500px;}
.y99{bottom:1001.502600px;}
.ycb{bottom:1001.767350px;}
.y33{bottom:1001.770350px;}
.y67{bottom:1001.777100px;}
.y14f{bottom:1001.785350px;}
.y116{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y1e8{bottom:1010.263500px;}
.yca{bottom:1019.767350px;}
.y32{bottom:1019.770350px;}
.y66{bottom:1019.777100px;}
.y14e{bottom:1019.785350px;}
.y1e7{bottom:1025.263500px;}
.y98{bottom:1037.367600px;}
.y115{bottom:1037.371200px;}
.y1ba{bottom:1037.380350px;}
.yc9{bottom:1037.767350px;}
.y31{bottom:1037.770350px;}
.y65{bottom:1037.777100px;}
.y14d{bottom:1037.785350px;}
.y1e6{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1e5{bottom:1132.413900px;}
.y97{bottom:1132.418700px;}
.ye0{bottom:1132.424850px;}
.y183{bottom:1132.433700px;}
.y191{bottom:1132.438950px;}
.y105{bottom:1132.454700px;}
.y2f{bottom:1136.092500px;}
.y2e{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h7{height:28.393066px;}
.h2{height:30.577148px;}
.he{height:32.761230px;}
.hd{height:32.805176px;}
.h13{height:33.328125px;}
.h12{height:33.351562px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.h16{height:41.680453px;}
.hc{height:41.689453px;}
.h11{height:42.117188px;}
.h9{height:43.681641px;}
.ha{height:43.718034px;}
.h8{height:43.740234px;}
.h14{height:47.381836px;}
.hb{height:52.646484px;}
.h15{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x25{left:99.921000px;}
.x3{left:106.299150px;}
.xc{left:110.555400px;}
.x17{left:120.755850px;}
.x16{left:123.307350px;}
.x18{left:126.775650px;}
.x5{left:131.811000px;}
.x14{left:138.435300px;}
.x13{left:148.020300px;}
.x15{left:155.520300px;}
.x2a{left:190.145400px;}
.x4{left:212.876400px;}
.x19{left:214.315650px;}
.x26{left:216.381000px;}
.x27{left:221.064000px;}
.x12{left:224.175300px;}
.x29{left:228.732150px;}
.x11{left:232.365300px;}
.x20{left:249.213000px;}
.x21{left:265.497000px;}
.xa{left:455.041500px;}
.xd{left:457.100400px;}
.x22{left:472.701000px;}
.x1a{left:478.386150px;}
.x6{left:480.501000px;}
.x2c{left:482.598600px;}
.xe{left:491.120400px;}
.x1f{left:503.858400px;}
.x1b{left:512.421150px;}
.x7{left:514.521000px;}
.x1d{left:525.640350px;}
.x8{left:549.756000px;}
.x2b{left:574.820400px;}
.x28{left:579.410400px;}
.x1e{left:595.270350px;}
.x10{left:663.492300px;}
.x23{left:688.737000px;}
.x24{left:690.693000px;}
.x2{left:693.365400px;}
.x2d{left:722.622450px;}
.xf{left:729.282150px;}
.x2e{left:744.758850px;}
.x1c{left:750.541950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls73{letter-spacing:-2.346667pt;}
.ls16{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.280000pt;}
.ls35{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.128000pt;}
.ls58{letter-spacing:-0.106667pt;}
.ls4f{letter-spacing:-0.085333pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls5f{letter-spacing:-0.042667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls69{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.106667pt;}
.ls5b{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.170667pt;}
.ls26{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.266667pt;}
.ls6d{letter-spacing:0.298667pt;}
.ls2c{letter-spacing:0.320000pt;}
.ls6f{letter-spacing:0.341333pt;}
.ls30{letter-spacing:0.373333pt;}
.ls7c{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.480000pt;}
.ls3a{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls59{letter-spacing:0.554667pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls38{letter-spacing:0.597333pt;}
.ls28{letter-spacing:0.640000pt;}
.ls70{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.693333pt;}
.ls4d{letter-spacing:0.725333pt;}
.lsd{letter-spacing:0.746667pt;}
.ls21{letter-spacing:0.800000pt;}
.ls6e{letter-spacing:0.810667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls77{letter-spacing:0.896000pt;}
.ls1a{letter-spacing:0.906667pt;}
.ls71{letter-spacing:0.938667pt;}
.ls31{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:1.013333pt;}
.ls3d{letter-spacing:1.024000pt;}
.ls46{letter-spacing:1.066667pt;}
.ls6b{letter-spacing:1.109333pt;}
.ls4e{letter-spacing:1.120000pt;}
.ls6c{letter-spacing:1.152000pt;}
.ls37{letter-spacing:1.173333pt;}
.ls3b{letter-spacing:1.194667pt;}
.ls25{letter-spacing:1.226667pt;}
.ls2f{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.333333pt;}
.ls45{letter-spacing:1.386667pt;}
.ls41{letter-spacing:1.440000pt;}
.ls68{letter-spacing:1.450667pt;}
.lsf{letter-spacing:1.493333pt;}
.ls43{letter-spacing:1.546667pt;}
.ls75{letter-spacing:1.578667pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls40{letter-spacing:1.653333pt;}
.ls34{letter-spacing:1.706667pt;}
.ls5a{letter-spacing:1.749333pt;}
.ls9{letter-spacing:1.760000pt;}
.ls72{letter-spacing:1.792000pt;}
.ls11{letter-spacing:1.813333pt;}
.ls76{letter-spacing:1.834667pt;}
.ls14{letter-spacing:1.866667pt;}
.ls24{letter-spacing:1.920000pt;}
.ls32{letter-spacing:1.973333pt;}
.ls7a{letter-spacing:2.005333pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls1c{letter-spacing:2.080000pt;}
.ls78{letter-spacing:2.090667pt;}
.ls5e{letter-spacing:2.133333pt;}
.ls2a{letter-spacing:2.186667pt;}
.ls1d{letter-spacing:2.240000pt;}
.lsc{letter-spacing:2.293333pt;}
.ls42{letter-spacing:2.346667pt;}
.ls2b{letter-spacing:2.400000pt;}
.ls53{letter-spacing:2.432000pt;}
.lsa{letter-spacing:2.453333pt;}
.ls3e{letter-spacing:2.506667pt;}
.ls22{letter-spacing:2.560000pt;}
.ls7d{letter-spacing:2.602667pt;}
.ls5{letter-spacing:2.613333pt;}
.ls54{letter-spacing:2.666667pt;}
.ls7b{letter-spacing:2.688000pt;}
.ls44{letter-spacing:2.720000pt;}
.ls4{letter-spacing:2.773333pt;}
.ls23{letter-spacing:2.826667pt;}
.ls64{letter-spacing:2.880000pt;}
.ls39{letter-spacing:2.901333pt;}
.ls13{letter-spacing:2.986667pt;}
.ls79{letter-spacing:3.072000pt;}
.ls4a{letter-spacing:3.146667pt;}
.ls4b{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.253333pt;}
.ls63{letter-spacing:3.306667pt;}
.ls74{letter-spacing:3.328000pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls60{letter-spacing:3.413333pt;}
.ls6a{letter-spacing:3.456000pt;}
.ls67{letter-spacing:3.466667pt;}
.ls1b{letter-spacing:3.680000pt;}
.ls20{letter-spacing:3.840000pt;}
.ls47{letter-spacing:3.893333pt;}
.ls33{letter-spacing:3.946667pt;}
.ls51{letter-spacing:4.000000pt;}
.ls27{letter-spacing:4.106667pt;}
.ls49{letter-spacing:4.426667pt;}
.ls7e{letter-spacing:4.480000pt;}
.ls56{letter-spacing:5.066667pt;}
.ls5d{letter-spacing:5.546667pt;}
.ls66{letter-spacing:5.653333pt;}
.ls61{letter-spacing:5.760000pt;}
.ls50{letter-spacing:6.613333pt;}
.ls55{letter-spacing:6.880000pt;}
.ls5c{letter-spacing:6.933333pt;}
.ls57{letter-spacing:7.520000pt;}
.ls4c{letter-spacing:7.573333pt;}
.ls48{letter-spacing:8.320000pt;}
.ls52{letter-spacing:8.426667pt;}
.ls0{letter-spacing:52.918112pt;}
.ls65{letter-spacing:356.608000pt;}
.ws7d{word-spacing:-367.274667pt;}
.ws2f{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws56{word-spacing:-20.853333pt;}
.ws4b{word-spacing:-17.333333pt;}
.ws31{word-spacing:-17.280000pt;}
.ws87{word-spacing:-17.066667pt;}
.ws70{word-spacing:-16.586667pt;}
.ws33{word-spacing:-16.480000pt;}
.ws5e{word-spacing:-15.840000pt;}
.ws16{word-spacing:-15.786667pt;}
.ws4a{word-spacing:-15.573333pt;}
.ws6f{word-spacing:-15.466667pt;}
.ws6{word-spacing:-15.146667pt;}
.ws6c{word-spacing:-15.040000pt;}
.ws6d{word-spacing:-14.986667pt;}
.ws3{word-spacing:-14.826667pt;}
.ws6b{word-spacing:-14.720000pt;}
.ws18{word-spacing:-14.613333pt;}
.ws61{word-spacing:-14.506667pt;}
.ws7b{word-spacing:-14.400000pt;}
.ws55{word-spacing:-14.346667pt;}
.ws32{word-spacing:-14.293333pt;}
.ws19{word-spacing:-14.240000pt;}
.ws6a{word-spacing:-14.186667pt;}
.ws99{word-spacing:-13.994667pt;}
.ws62{word-spacing:-13.973333pt;}
.ws5{word-spacing:-13.866667pt;}
.ws86{word-spacing:-13.813333pt;}
.ws7c{word-spacing:-13.706667pt;}
.ws17{word-spacing:-13.653333pt;}
.ws6e{word-spacing:-13.600000pt;}
.ws2d{word-spacing:-13.568000pt;}
.ws1a{word-spacing:-13.493333pt;}
.ws4{word-spacing:-13.440000pt;}
.ws30{word-spacing:-13.333333pt;}
.ws5f{word-spacing:-13.280000pt;}
.ws63{word-spacing:-13.120000pt;}
.ws60{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.861333pt;}
.ws88{word-spacing:-11.818667pt;}
.ws8a{word-spacing:-11.690667pt;}
.ws9a{word-spacing:-11.562667pt;}
.ws2c{word-spacing:-11.264000pt;}
.ws2e{word-spacing:-11.178667pt;}
.ws7{word-spacing:-11.120000pt;}
.ws9b{word-spacing:-11.050667pt;}
.ws5d{word-spacing:-10.666667pt;}
.ws47{word-spacing:-10.581333pt;}
.ws1{word-spacing:-9.076144pt;}
.ws89{word-spacing:-8.320000pt;}
.ws3d{word-spacing:-7.936000pt;}
.ws38{word-spacing:-6.954667pt;}
.ws3f{word-spacing:-6.826667pt;}
.ws2{word-spacing:-6.482960pt;}
.ws3b{word-spacing:-5.546667pt;}
.ws37{word-spacing:-3.541333pt;}
.ws39{word-spacing:-3.328000pt;}
.ws76{word-spacing:-3.253333pt;}
.ws36{word-spacing:-2.901333pt;}
.wsa{word-spacing:-2.565333pt;}
.ws22{word-spacing:-2.400000pt;}
.ws97{word-spacing:-2.346667pt;}
.ws15{word-spacing:-1.973333pt;}
.ws75{word-spacing:-1.706667pt;}
.ws74{word-spacing:-1.653333pt;}
.ws7a{word-spacing:-1.280000pt;}
.wsa7{word-spacing:-1.194667pt;}
.wsa9{word-spacing:-1.024000pt;}
.ws3a{word-spacing:-0.981333pt;}
.wsb{word-spacing:-0.960000pt;}
.ws26{word-spacing:-0.906667pt;}
.wsa5{word-spacing:-0.768000pt;}
.ws8c{word-spacing:-0.746667pt;}
.ws21{word-spacing:-0.640000pt;}
.ws8d{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws13{word-spacing:-0.426667pt;}
.wsa4{word-spacing:-0.384000pt;}
.ws84{word-spacing:-0.373333pt;}
.ws67{word-spacing:-0.320000pt;}
.ws82{word-spacing:-0.266667pt;}
.ws94{word-spacing:-0.256000pt;}
.ws72{word-spacing:-0.213333pt;}
.ws3e{word-spacing:-0.170667pt;}
.ws24{word-spacing:-0.160000pt;}
.ws8b{word-spacing:-0.106667pt;}
.ws71{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.053333pt;}
.ws9e{word-spacing:0.085333pt;}
.ws53{word-spacing:0.160000pt;}
.ws85{word-spacing:0.213333pt;}
.ws50{word-spacing:0.266667pt;}
.ws81{word-spacing:0.320000pt;}
.ws59{word-spacing:0.373333pt;}
.ws98{word-spacing:0.384000pt;}
.ws41{word-spacing:0.426667pt;}
.ws9f{word-spacing:0.469333pt;}
.ws45{word-spacing:0.480000pt;}
.wsa3{word-spacing:0.554667pt;}
.ws42{word-spacing:0.586667pt;}
.ws96{word-spacing:0.640000pt;}
.ws58{word-spacing:0.693333pt;}
.ws20{word-spacing:0.746667pt;}
.ws51{word-spacing:0.800000pt;}
.ws95{word-spacing:0.810667pt;}
.ws23{word-spacing:0.906667pt;}
.ws27{word-spacing:0.960000pt;}
.ws43{word-spacing:1.013333pt;}
.ws29{word-spacing:1.120000pt;}
.wsa8{word-spacing:1.237333pt;}
.wsa2{word-spacing:1.322667pt;}
.ws1e{word-spacing:1.333333pt;}
.ws5b{word-spacing:1.386667pt;}
.ws66{word-spacing:1.493333pt;}
.ws1c{word-spacing:1.600000pt;}
.ws79{word-spacing:1.653333pt;}
.wsa1{word-spacing:1.706667pt;}
.ws90{word-spacing:1.760000pt;}
.ws93{word-spacing:1.792000pt;}
.ws2b{word-spacing:1.813333pt;}
.ws12{word-spacing:1.973333pt;}
.ws8e{word-spacing:2.026667pt;}
.ws57{word-spacing:2.080000pt;}
.ws69{word-spacing:2.133333pt;}
.ws9c{word-spacing:2.176000pt;}
.ws4f{word-spacing:2.240000pt;}
.ws5c{word-spacing:2.346667pt;}
.ws9d{word-spacing:2.389333pt;}
.ws40{word-spacing:2.453333pt;}
.wsa0{word-spacing:2.474667pt;}
.ws4d{word-spacing:2.506667pt;}
.ws54{word-spacing:2.560000pt;}
.ws49{word-spacing:2.613333pt;}
.ws4e{word-spacing:2.720000pt;}
.wsf{word-spacing:2.773333pt;}
.wsa6{word-spacing:2.901333pt;}
.ws68{word-spacing:2.986667pt;}
.ws14{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.093333pt;}
.ws83{word-spacing:3.114667pt;}
.ws2a{word-spacing:3.146667pt;}
.ws4c{word-spacing:3.200000pt;}
.ws44{word-spacing:3.253333pt;}
.wsd{word-spacing:3.306667pt;}
.ws64{word-spacing:3.328000pt;}
.ws46{word-spacing:3.370667pt;}
.ws65{word-spacing:3.413333pt;}
.ws28{word-spacing:3.466667pt;}
.ws34{word-spacing:3.498667pt;}
.ws35{word-spacing:3.541333pt;}
.ws77{word-spacing:3.626667pt;}
.ws8f{word-spacing:3.733333pt;}
.ws48{word-spacing:4.000000pt;}
.ws73{word-spacing:4.053333pt;}
.ws25{word-spacing:4.106667pt;}
.wse{word-spacing:4.160000pt;}
.ws1d{word-spacing:4.213333pt;}
.ws5a{word-spacing:4.266667pt;}
.wsc{word-spacing:4.373333pt;}
.ws10{word-spacing:4.426667pt;}
.ws92{word-spacing:4.853333pt;}
.ws91{word-spacing:4.906667pt;}
.ws11{word-spacing:4.960000pt;}
.ws78{word-spacing:5.600000pt;}
.ws52{word-spacing:6.400000pt;}
.ws7f{word-spacing:249.941333pt;}
.ws80{word-spacing:250.752000pt;}
.ws7e{word-spacing:377.984000pt;}
._d{margin-left:-2576.205333pt;}
._13{margin-left:-2555.042667pt;}
._1e{margin-left:-356.608000pt;}
._2{margin-left:-8.327467pt;}
._9{margin-left:-7.213333pt;}
._5{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._6{width:1.075200pt;}
._8{width:2.752000pt;}
._c{width:3.650133pt;}
._7{width:4.666667pt;}
._a{width:5.866667pt;}
._b{width:7.040000pt;}
._12{width:8.768000pt;}
._f{width:9.956800pt;}
._11{width:33.925333pt;}
._e{width:38.954667pt;}
._10{width:56.746667pt;}
._20{width:304.346667pt;}
._1f{width:388.650667pt;}
._18{width:424.789333pt;}
._17{width:438.997333pt;}
._16{width:441.386667pt;}
._1d{width:446.122667pt;}
._1b{width:448.469333pt;}
._14{width:455.594667pt;}
._1c{width:460.330667pt;}
._1a{width:462.677333pt;}
._15{width:465.536000pt;}
._19{width:467.456000pt;}
.fs5{font-size:23.320000pt;}
.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;}
.y30{bottom:42.468667pt;}
.ydf{bottom:73.714533pt;}
.y182{bottom:73.893067pt;}
.ydd{bottom:73.987600pt;}
.y17f{bottom:74.355867pt;}
.yc8{bottom:74.433200pt;}
.y114{bottom:74.462533pt;}
.y64{bottom:74.588533pt;}
.y1e4{bottom:76.552800pt;}
.y2d{bottom:78.246000pt;}
.y149{bottom:78.321867pt;}
.y190{bottom:81.908400pt;}
.y104{bottom:81.933067pt;}
.yde{bottom:87.709200pt;}
.y181{bottom:87.887733pt;}
.ydc{bottom:87.982267pt;}
.y1e3{bottom:89.886133pt;}
.y1b9{bottom:90.342533pt;}
.y17e{bottom:90.355867pt;}
.yc7{bottom:90.433200pt;}
.y113{bottom:90.462533pt;}
.y63{bottom:90.588533pt;}
.y2c{bottom:91.576000pt;}
.y148{bottom:94.321867pt;}
.y18f{bottom:96.351067pt;}
.y103{bottom:96.375733pt;}
.y180{bottom:101.882400pt;}
.ydb{bottom:101.976933pt;}
.y1e2{bottom:103.219467pt;}
.y1b8{bottom:106.342533pt;}
.y17d{bottom:106.355867pt;}
.yc6{bottom:106.433200pt;}
.y112{bottom:106.462533pt;}
.y62{bottom:106.588533pt;}
.y147{bottom:110.321867pt;}
.y18e{bottom:110.793733pt;}
.y102{bottom:110.818400pt;}
.y1e1{bottom:116.552800pt;}
.y1b7{bottom:122.342533pt;}
.y17c{bottom:122.355867pt;}
.yc5{bottom:122.433200pt;}
.y111{bottom:122.462533pt;}
.y61{bottom:122.588533pt;}
.y18d{bottom:125.236400pt;}
.y101{bottom:125.261067pt;}
.y146{bottom:126.321867pt;}
.y1e0{bottom:129.886133pt;}
.y1b6{bottom:138.342533pt;}
.y17b{bottom:138.355867pt;}
.yc4{bottom:138.433200pt;}
.y110{bottom:138.462533pt;}
.y96{bottom:138.468533pt;}
.y60{bottom:138.588533pt;}
.y18c{bottom:139.679067pt;}
.y100{bottom:139.703733pt;}
.y145{bottom:142.321867pt;}
.y1df{bottom:143.219467pt;}
.y27{bottom:145.706667pt;}
.y18b{bottom:154.121733pt;}
.yff{bottom:154.146400pt;}
.y1b5{bottom:154.342533pt;}
.y17a{bottom:154.355867pt;}
.yc3{bottom:154.433200pt;}
.y10f{bottom:154.462533pt;}
.y95{bottom:154.468533pt;}
.y5f{bottom:154.595867pt;}
.y1de{bottom:156.552800pt;}
.y144{bottom:158.321867pt;}
.y26{bottom:161.706667pt;}
.yfe{bottom:168.589067pt;}
.y1dd{bottom:169.886133pt;}
.y1b4{bottom:170.342533pt;}
.y179{bottom:170.355867pt;}
.yc2{bottom:170.433200pt;}
.y10e{bottom:170.462533pt;}
.y94{bottom:170.468533pt;}
.y5e{bottom:170.595867pt;}
.y143{bottom:174.321867pt;}
.y25{bottom:177.706667pt;}
.y18a{bottom:182.132400pt;}
.yfd{bottom:183.031733pt;}
.y1dc{bottom:183.219467pt;}
.y1b3{bottom:186.342533pt;}
.y178{bottom:186.355867pt;}
.yc1{bottom:186.433200pt;}
.y10d{bottom:186.462533pt;}
.y93{bottom:186.468533pt;}
.y5d{bottom:186.595867pt;}
.y142{bottom:190.321867pt;}
.y24{bottom:193.706667pt;}
.y1db{bottom:196.552800pt;}
.yfc{bottom:197.474400pt;}
.y1b2{bottom:202.342533pt;}
.y177{bottom:202.355867pt;}
.yc0{bottom:202.433200pt;}
.y10c{bottom:202.462533pt;}
.y92{bottom:202.468533pt;}
.y5c{bottom:202.595867pt;}
.y141{bottom:206.321867pt;}
.y23{bottom:209.706667pt;}
.y1da{bottom:209.886133pt;}
.y189{bottom:213.150267pt;}
.y1b1{bottom:218.342533pt;}
.y176{bottom:218.355867pt;}
.ybf{bottom:218.433200pt;}
.y10b{bottom:218.462533pt;}
.y91{bottom:218.468533pt;}
.y5b{bottom:218.595867pt;}
.y140{bottom:222.321867pt;}
.y1d9{bottom:223.219467pt;}
.yfb{bottom:223.255733pt;}
.y22{bottom:225.706667pt;}
.y188{bottom:230.483600pt;}
.y1b0{bottom:234.342533pt;}
.y175{bottom:234.355867pt;}
.ybe{bottom:234.433200pt;}
.y10a{bottom:234.462533pt;}
.y90{bottom:234.468533pt;}
.y5a{bottom:234.595867pt;}
.y1d8{bottom:236.552800pt;}
.yfa{bottom:237.922400pt;}
.y13f{bottom:238.321867pt;}
.y21{bottom:241.706667pt;}
.y187{bottom:247.816933pt;}
.y1d7{bottom:249.886133pt;}
.y1af{bottom:250.342533pt;}
.y174{bottom:250.355867pt;}
.ybd{bottom:250.433200pt;}
.y109{bottom:250.462533pt;}
.y8f{bottom:250.468533pt;}
.y59{bottom:250.595867pt;}
.y13e{bottom:254.321867pt;}
.y2b{bottom:257.346667pt;}
.y20{bottom:257.706667pt;}
.y1d6{bottom:263.219467pt;}
.y1ae{bottom:266.342533pt;}
.y173{bottom:266.355867pt;}
.ybc{bottom:266.433200pt;}
.y108{bottom:266.462533pt;}
.y8e{bottom:266.468533pt;}
.y58{bottom:266.595867pt;}
.yf9{bottom:266.708533pt;}
.y13d{bottom:270.321867pt;}
.y1f{bottom:273.706667pt;}
.y1d5{bottom:276.552800pt;}
.y1ad{bottom:282.342533pt;}
.y172{bottom:282.355867pt;}
.ybb{bottom:282.433200pt;}
.y107{bottom:282.462533pt;}
.y8d{bottom:282.468533pt;}
.y57{bottom:282.595867pt;}
.y13c{bottom:286.321867pt;}
.y186{bottom:288.734800pt;}
.y2a{bottom:289.226667pt;}
.y1e{bottom:289.706667pt;}
.y1d4{bottom:289.886133pt;}
.y1ac{bottom:298.342533pt;}
.y171{bottom:298.355867pt;}
.yba{bottom:298.433200pt;}
.y106{bottom:298.462533pt;}
.y8c{bottom:298.468533pt;}
.y56{bottom:298.595867pt;}
.y13b{bottom:302.321867pt;}
.y185{bottom:302.729467pt;}
.y1d3{bottom:303.219467pt;}
.y1d{bottom:305.706667pt;}
.yf8{bottom:306.055200pt;}
.y1ab{bottom:314.342533pt;}
.y170{bottom:314.355867pt;}
.yb9{bottom:314.433200pt;}
.ye5{bottom:314.462533pt;}
.y8b{bottom:314.468533pt;}
.y55{bottom:314.595867pt;}
.y1d2{bottom:316.552800pt;}
.y184{bottom:316.724133pt;}
.y13a{bottom:318.321867pt;}
.y1c{bottom:321.706667pt;}
.yf7{bottom:322.055200pt;}
.y1d1{bottom:329.886133pt;}
.y1aa{bottom:330.342533pt;}
.y16f{bottom:330.355867pt;}
.yb8{bottom:330.433200pt;}
.ye4{bottom:330.462533pt;}
.y8a{bottom:330.468533pt;}
.y54{bottom:330.595867pt;}
.y139{bottom:334.321867pt;}
.y1b{bottom:337.706667pt;}
.yf6{bottom:338.055200pt;}
.y1d0{bottom:343.219467pt;}
.y1a9{bottom:346.342533pt;}
.y16e{bottom:346.355867pt;}
.yb7{bottom:346.433200pt;}
.ye3{bottom:346.462533pt;}
.y89{bottom:346.468533pt;}
.y138{bottom:350.321867pt;}
.y1a{bottom:353.706667pt;}
.yf5{bottom:354.055200pt;}
.y1cf{bottom:356.552800pt;}
.y53{bottom:362.235867pt;}
.y1a8{bottom:362.342533pt;}
.y16d{bottom:362.355867pt;}
.yb6{bottom:362.433200pt;}
.ye2{bottom:362.462533pt;}
.y88{bottom:362.468533pt;}
.y137{bottom:366.321867pt;}
.y19{bottom:369.706667pt;}
.y1ce{bottom:369.886133pt;}
.yf4{bottom:370.055200pt;}
.y1a7{bottom:378.342533pt;}
.y16c{bottom:378.355867pt;}
.yb5{bottom:378.433200pt;}
.ye1{bottom:378.462533pt;}
.y87{bottom:378.468533pt;}
.y136{bottom:382.321867pt;}
.y1cd{bottom:383.219467pt;}
.y18{bottom:385.706667pt;}
.yf3{bottom:386.055200pt;}
.y20e{bottom:391.345333pt;}
.y1a6{bottom:394.342533pt;}
.y16b{bottom:394.355867pt;}
.yb4{bottom:394.433200pt;}
.y52{bottom:394.462533pt;}
.y86{bottom:394.468533pt;}
.y214{bottom:394.588533pt;}
.y1cc{bottom:396.552800pt;}
.y135{bottom:398.321867pt;}
.y17{bottom:401.706667pt;}
.yf2{bottom:402.055200pt;}
.y20d{bottom:404.678667pt;}
.y1cb{bottom:409.886133pt;}
.y1a5{bottom:409.982533pt;}
.y16a{bottom:410.355867pt;}
.yb3{bottom:410.433200pt;}
.y51{bottom:410.462533pt;}
.y85{bottom:410.468533pt;}
.y213{bottom:410.588533pt;}
.y134{bottom:414.321867pt;}
.y16{bottom:417.706667pt;}
.y20c{bottom:418.012000pt;}
.yf1{bottom:418.055200pt;}
.y1ca{bottom:423.219467pt;}
.y169{bottom:426.355867pt;}
.yb2{bottom:426.433200pt;}
.y50{bottom:426.462533pt;}
.y84{bottom:426.468533pt;}
.y212{bottom:426.588533pt;}
.y133{bottom:430.321867pt;}
.y20b{bottom:431.345333pt;}
.y15{bottom:433.706667pt;}
.yf0{bottom:434.055200pt;}
.y1c9{bottom:436.552800pt;}
.y1a4{bottom:442.342533pt;}
.y168{bottom:442.355867pt;}
.yb1{bottom:442.433200pt;}
.y4f{bottom:442.462533pt;}
.y83{bottom:442.468533pt;}
.y20a{bottom:444.678667pt;}
.y132{bottom:446.321867pt;}
.y29{bottom:449.706667pt;}
.y1c8{bottom:449.886133pt;}
.yef{bottom:450.055200pt;}
.y209{bottom:458.012000pt;}
.y1a3{bottom:458.342533pt;}
.y167{bottom:458.355867pt;}
.y4e{bottom:458.462533pt;}
.y82{bottom:458.468533pt;}
.y211{bottom:458.588533pt;}
.y131{bottom:462.321867pt;}
.y1c7{bottom:463.219467pt;}
.y14{bottom:465.348533pt;}
.y28{bottom:465.706667pt;}
.yee{bottom:466.055200pt;}
.y208{bottom:471.345333pt;}
.yb0{bottom:473.982667pt;}
.y1a2{bottom:474.342533pt;}
.y166{bottom:474.355867pt;}
.y4d{bottom:474.462533pt;}
.y81{bottom:474.468533pt;}
.y210{bottom:474.590533pt;}
.y1c6{bottom:476.552800pt;}
.y130{bottom:478.321867pt;}
.yed{bottom:482.055200pt;}
.y207{bottom:484.678667pt;}
.yaf{bottom:487.316000pt;}
.y1c5{bottom:489.886133pt;}
.y1a1{bottom:490.342533pt;}
.y165{bottom:490.355867pt;}
.y4c{bottom:490.462533pt;}
.y80{bottom:490.468533pt;}
.y12f{bottom:494.321867pt;}
.y206{bottom:498.012000pt;}
.yec{bottom:498.055200pt;}
.y1c4{bottom:503.219467pt;}
.y20f{bottom:506.230533pt;}
.y1a0{bottom:506.342533pt;}
.y164{bottom:506.355867pt;}
.y4b{bottom:506.462533pt;}
.y7f{bottom:506.468533pt;}
.y205{bottom:511.345333pt;}
.yeb{bottom:514.055200pt;}
.yae{bottom:514.971733pt;}
.y1c3{bottom:516.552800pt;}
.y19f{bottom:522.342533pt;}
.y163{bottom:522.355867pt;}
.y4a{bottom:522.462533pt;}
.y7e{bottom:522.468533pt;}
.y204{bottom:524.678667pt;}
.y12e{bottom:525.291333pt;}
.y1c2{bottom:529.886133pt;}
.yea{bottom:530.055200pt;}
.yad{bottom:530.611733pt;}
.y13{bottom:531.123733pt;}
.y203{bottom:538.012000pt;}
.y19e{bottom:538.342533pt;}
.y49{bottom:538.462533pt;}
.y7d{bottom:538.468533pt;}
.y12d{bottom:539.163333pt;}
.y1c1{bottom:543.219467pt;}
.y202{bottom:551.345333pt;}
.y12c{bottom:551.929200pt;}
.y162{bottom:553.995867pt;}
.y19d{bottom:554.342533pt;}
.y48{bottom:554.462533pt;}
.y7c{bottom:554.468533pt;}
.y12{bottom:555.430400pt;}
.y1c0{bottom:556.552800pt;}
.ye9{bottom:561.604667pt;}
.yac{bottom:562.390000pt;}
.y201{bottom:564.678667pt;}
.y12b{bottom:567.569200pt;}
.y19c{bottom:570.342533pt;}
.y47{bottom:570.462533pt;}
.y7b{bottom:570.468533pt;}
.y11{bottom:571.430400pt;}
.ye8{bottom:574.938000pt;}
.yab{bottom:575.723333pt;}
.y200{bottom:578.012000pt;}
.y1bf{bottom:585.995867pt;}
.y19b{bottom:586.342533pt;}
.y46{bottom:586.462533pt;}
.y7a{bottom:586.468533pt;}
.y10{bottom:587.430400pt;}
.yaa{bottom:589.056667pt;}
.y1ff{bottom:591.345333pt;}
.y12a{bottom:599.795867pt;}
.y19a{bottom:602.342533pt;}
.ya9{bottom:602.390000pt;}
.y45{bottom:602.462533pt;}
.y79{bottom:602.468533pt;}
.y161{bottom:602.475867pt;}
.ye7{bottom:602.595867pt;}
.yf{bottom:603.430400pt;}
.y1fe{bottom:604.678667pt;}
.ya8{bottom:615.723333pt;}
.y129{bottom:615.795867pt;}
.y1fd{bottom:618.012000pt;}
.ye6{bottom:618.235867pt;}
.y199{bottom:618.342533pt;}
.y44{bottom:618.462533pt;}
.y78{bottom:618.468533pt;}
.y160{bottom:618.475867pt;}
.ye{bottom:619.430400pt;}
.ya7{bottom:629.056667pt;}
.y1fc{bottom:631.345333pt;}
.y128{bottom:631.795867pt;}
.y198{bottom:634.342533pt;}
.y43{bottom:634.462533pt;}
.y77{bottom:634.468533pt;}
.y15f{bottom:634.475867pt;}
.y14c{bottom:634.595867pt;}
.yd{bottom:635.430400pt;}
.ya6{bottom:642.390000pt;}
.y1fb{bottom:644.678667pt;}
.y127{bottom:647.795867pt;}
.y1be{bottom:650.115867pt;}
.y197{bottom:650.342533pt;}
.yda{bottom:650.459867pt;}
.y42{bottom:650.462533pt;}
.y76{bottom:650.468533pt;}
.y15e{bottom:650.475867pt;}
.y14b{bottom:650.595867pt;}
.yc{bottom:651.430400pt;}
.ya5{bottom:655.723333pt;}
.y1fa{bottom:658.012000pt;}
.y196{bottom:666.342533pt;}
.yd9{bottom:666.459867pt;}
.y41{bottom:666.462533pt;}
.y75{bottom:666.468533pt;}
.y15d{bottom:666.475867pt;}
.yb{bottom:667.430400pt;}
.ya4{bottom:669.056667pt;}
.y1f9{bottom:671.345333pt;}
.y126{bottom:679.345333pt;}
.y1bd{bottom:682.115867pt;}
.y14a{bottom:682.235867pt;}
.y195{bottom:682.342533pt;}
.ya3{bottom:682.390000pt;}
.yd8{bottom:682.459867pt;}
.y40{bottom:682.462533pt;}
.y74{bottom:682.468533pt;}
.y15c{bottom:682.475867pt;}
.y1f8{bottom:684.678667pt;}
.y125{bottom:692.678667pt;}
.y1f7{bottom:698.012000pt;}
.y194{bottom:698.342533pt;}
.yd7{bottom:698.459867pt;}
.y3f{bottom:698.462533pt;}
.y73{bottom:698.468533pt;}
.y15b{bottom:698.475867pt;}
.y124{bottom:706.012000pt;}
.ya{bottom:707.571067pt;}
.y1f6{bottom:711.345333pt;}
.ya2{bottom:711.815733pt;}
.y193{bottom:714.342533pt;}
.yd6{bottom:714.459867pt;}
.y3e{bottom:714.462533pt;}
.y72{bottom:714.468533pt;}
.y15a{bottom:714.475867pt;}
.y9{bottom:718.638400pt;}
.y123{bottom:719.345333pt;}
.y1f5{bottom:724.678667pt;}
.yd5{bottom:730.459867pt;}
.y3d{bottom:730.462533pt;}
.y71{bottom:730.468533pt;}
.y159{bottom:730.475867pt;}
.y122{bottom:732.678667pt;}
.y1f4{bottom:738.012000pt;}
.ya1{bottom:743.597333pt;}
.y192{bottom:745.982533pt;}
.y121{bottom:746.012000pt;}
.yd4{bottom:746.459867pt;}
.y3c{bottom:746.462533pt;}
.y70{bottom:746.468533pt;}
.y158{bottom:746.475867pt;}
.y1f3{bottom:751.345333pt;}
.y8{bottom:751.652400pt;}
.ya0{bottom:756.930667pt;}
.y120{bottom:759.345333pt;}
.yd3{bottom:762.459867pt;}
.y3b{bottom:762.462533pt;}
.y6f{bottom:762.468533pt;}
.y157{bottom:762.475867pt;}
.y7{bottom:763.652400pt;}
.y1f2{bottom:764.678667pt;}
.y9f{bottom:770.264000pt;}
.y11f{bottom:772.678667pt;}
.y1f1{bottom:778.012000pt;}
.y1bc{bottom:778.115867pt;}
.yd2{bottom:778.459867pt;}
.y3a{bottom:778.462533pt;}
.y6e{bottom:778.468533pt;}
.y156{bottom:778.475867pt;}
.y9e{bottom:783.597333pt;}
.y11e{bottom:786.012000pt;}
.y6{bottom:789.183067pt;}
.y1f0{bottom:791.345333pt;}
.yd1{bottom:794.459867pt;}
.y39{bottom:794.462533pt;}
.y6d{bottom:794.468533pt;}
.y155{bottom:794.475867pt;}
.y9d{bottom:796.930667pt;}
.y11d{bottom:799.345333pt;}
.y1ef{bottom:804.678667pt;}
.yd0{bottom:810.459867pt;}
.y38{bottom:810.462533pt;}
.y6c{bottom:810.468533pt;}
.y154{bottom:810.475867pt;}
.y11c{bottom:812.678667pt;}
.y1ee{bottom:818.012000pt;}
.y11b{bottom:826.012000pt;}
.y1bb{bottom:826.115867pt;}
.y9c{bottom:826.344533pt;}
.ycf{bottom:826.459867pt;}
.y37{bottom:826.462533pt;}
.y6b{bottom:826.468533pt;}
.y153{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1ed{bottom:831.345333pt;}
.y11a{bottom:839.345333pt;}
.yce{bottom:842.459867pt;}
.y36{bottom:842.462533pt;}
.y6a{bottom:842.468533pt;}
.y152{bottom:842.475867pt;}
.y1ec{bottom:844.678667pt;}
.y119{bottom:852.678667pt;}
.y1eb{bottom:858.012000pt;}
.y9b{bottom:858.224533pt;}
.ycd{bottom:858.459867pt;}
.y35{bottom:858.462533pt;}
.y69{bottom:858.468533pt;}
.y151{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y118{bottom:866.012000pt;}
.y1ea{bottom:871.345333pt;}
.y9a{bottom:874.224533pt;}
.ycc{bottom:874.459867pt;}
.y34{bottom:874.462533pt;}
.y68{bottom:874.468533pt;}
.y150{bottom:874.475867pt;}
.y117{bottom:879.345333pt;}
.y1e9{bottom:884.678667pt;}
.y99{bottom:890.224533pt;}
.ycb{bottom:890.459867pt;}
.y33{bottom:890.462533pt;}
.y67{bottom:890.468533pt;}
.y14f{bottom:890.475867pt;}
.y116{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y1e8{bottom:898.012000pt;}
.yca{bottom:906.459867pt;}
.y32{bottom:906.462533pt;}
.y66{bottom:906.468533pt;}
.y14e{bottom:906.475867pt;}
.y1e7{bottom:911.345333pt;}
.y98{bottom:922.104533pt;}
.y115{bottom:922.107733pt;}
.y1ba{bottom:922.115867pt;}
.yc9{bottom:922.459867pt;}
.y31{bottom:922.462533pt;}
.y65{bottom:922.468533pt;}
.y14d{bottom:922.475867pt;}
.y1e6{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1e5{bottom:1006.590133pt;}
.y97{bottom:1006.594400pt;}
.ye0{bottom:1006.599867pt;}
.y183{bottom:1006.607733pt;}
.y191{bottom:1006.612400pt;}
.y105{bottom:1006.626400pt;}
.y2f{bottom:1009.860000pt;}
.y2e{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h7{height:25.238281pt;}
.h2{height:27.179688pt;}
.he{height:29.121094pt;}
.hd{height:29.160156pt;}
.h13{height:29.625000pt;}
.h12{height:29.645833pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.h16{height:37.049292pt;}
.hc{height:37.057292pt;}
.h11{height:37.437500pt;}
.h9{height:38.828125pt;}
.ha{height:38.860475pt;}
.h8{height:38.880208pt;}
.h14{height:42.117188pt;}
.hb{height:46.796875pt;}
.h15{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x25{left:88.818667pt;}
.x3{left:94.488133pt;}
.xc{left:98.271467pt;}
.x17{left:107.338533pt;}
.x16{left:109.606533pt;}
.x18{left:112.689467pt;}
.x5{left:117.165333pt;}
.x14{left:123.053600pt;}
.x13{left:131.573600pt;}
.x15{left:138.240267pt;}
.x2a{left:169.018133pt;}
.x4{left:189.223467pt;}
.x19{left:190.502800pt;}
.x26{left:192.338667pt;}
.x27{left:196.501333pt;}
.x12{left:199.266933pt;}
.x29{left:203.317467pt;}
.x11{left:206.546933pt;}
.x20{left:221.522667pt;}
.x21{left:235.997333pt;}
.xa{left:404.481333pt;}
.xd{left:406.311467pt;}
.x22{left:420.178667pt;}
.x1a{left:425.232133pt;}
.x6{left:427.112000pt;}
.x2c{left:428.976533pt;}
.xe{left:436.551467pt;}
.x1f{left:447.874133pt;}
.x1b{left:455.485467pt;}
.x7{left:457.352000pt;}
.x1d{left:467.235867pt;}
.x8{left:488.672000pt;}
.x2b{left:510.951467pt;}
.x28{left:515.031467pt;}
.x1e{left:529.129200pt;}
.x10{left:589.770933pt;}
.x23{left:612.210667pt;}
.x24{left:613.949333pt;}
.x2{left:616.324800pt;}
.x2d{left:642.331067pt;}
.xf{left:648.250800pt;}
.x2e{left:662.007867pt;}
.x1c{left:667.148400pt;}
}




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