
    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_5fd06fe456bf8b01fbf77c1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_ab7c72fb54dfad7a68f4290f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_764f44dad64874b24835d2e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_5b4600c214c6d5c4a4951344.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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_62a12c0305e281df0b6b6621.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765137;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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);}
.v5{vertical-align:-55.080000px;}
.v1{vertical-align:-52.560000px;}
.v2{vertical-align:-46.800000px;}
.v3{vertical-align:-9.720000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.720000px;}
.ls50{letter-spacing:-2.489760px;}
.ls61{letter-spacing:-2.346120px;}
.ls2e{letter-spacing:-2.202480px;}
.ls52{letter-spacing:-2.154600px;}
.ls6d{letter-spacing:-2.058840px;}
.ls30{letter-spacing:-1.867320px;}
.ls4e{letter-spacing:-1.771560px;}
.ls3a{letter-spacing:-1.675800px;}
.ls53{letter-spacing:-1.436400px;}
.ls20{letter-spacing:-1.404000px;}
.ls6f{letter-spacing:-1.340640px;}
.ls46{letter-spacing:-1.305720px;}
.ls37{letter-spacing:-1.292760px;}
.ls42{letter-spacing:-1.221480px;}
.ls32{letter-spacing:-1.197000px;}
.ls48{letter-spacing:-1.137240px;}
.ls54{letter-spacing:-0.972000px;}
.ls43{letter-spacing:-0.926640px;}
.ls64{letter-spacing:-0.884520px;}
.ls2f{letter-spacing:-0.861840px;}
.ls1b{letter-spacing:-0.855000px;}
.ls29{letter-spacing:-0.828000px;}
.ls22{letter-spacing:-0.792000px;}
.ls60{letter-spacing:-0.766080px;}
.ls38{letter-spacing:-0.718200px;}
.ls6c{letter-spacing:-0.670320px;}
.ls62{letter-spacing:-0.622440px;}
.ls58{letter-spacing:-0.547560px;}
.ls21{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.478800px;}
.ls33{letter-spacing:-0.430920px;}
.ls36{letter-spacing:-0.383040px;}
.ls4b{letter-spacing:-0.379080px;}
.ls3b{letter-spacing:-0.335160px;}
.ls1e{letter-spacing:-0.324000px;}
.ls35{letter-spacing:-0.287280px;}
.ls3f{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.252000px;}
.ls5e{letter-spacing:-0.239400px;}
.ls34{letter-spacing:-0.191520px;}
.ls47{letter-spacing:-0.168480px;}
.ls3d{letter-spacing:-0.143640px;}
.ls68{letter-spacing:-0.108000px;}
.ls3c{letter-spacing:-0.047880px;}
.ls1c{letter-spacing:0.000000px;}
.ls39{letter-spacing:0.047880px;}
.ls1a{letter-spacing:0.095760px;}
.ls17{letter-spacing:0.104040px;}
.ls55{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113760px;}
.ls67{letter-spacing:0.116640px;}
.ls70{letter-spacing:0.143640px;}
.ls4c{letter-spacing:0.168480px;}
.ls5a{letter-spacing:0.185400px;}
.ls51{letter-spacing:0.191520px;}
.ls41{letter-spacing:0.210600px;}
.ls5d{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.ls59{letter-spacing:0.256320px;}
.ls13{letter-spacing:0.299520px;}
.ls3e{letter-spacing:0.383040px;}
.ls6a{letter-spacing:0.430920px;}
.ls1d{letter-spacing:0.450000px;}
.lse{letter-spacing:0.478800px;}
.ls11{letter-spacing:0.505440px;}
.ls2a{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.631800px;}
.ls5f{letter-spacing:0.670320px;}
.ls2b{letter-spacing:0.684000px;}
.ls19{letter-spacing:0.718200px;}
.ls5c{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.828000px;}
.ls6b{letter-spacing:0.847476px;}
.lsd{letter-spacing:0.861840px;}
.ls27{letter-spacing:0.864000px;}
.ls18{letter-spacing:0.884520px;}
.ls25{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.926640px;}
.ls15{letter-spacing:0.968760px;}
.ls24{letter-spacing:0.972000px;}
.ls40{letter-spacing:1.010880px;}
.ls2c{letter-spacing:1.044000px;}
.ls57{letter-spacing:1.053000px;}
.ls2d{letter-spacing:1.080000px;}
.ls56{letter-spacing:1.134000px;}
.ls14{letter-spacing:1.137240px;}
.ls23{letter-spacing:1.152000px;}
.ls4d{letter-spacing:1.179360px;}
.ls6{letter-spacing:1.224000px;}
.ls12{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.ls65{letter-spacing:1.537080px;}
.ls10{letter-spacing:1.558440px;}
.ls26{letter-spacing:1.584000px;}
.ls4f{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls49{letter-spacing:1.728000px;}
.ls44{letter-spacing:1.811160px;}
.ls63{letter-spacing:1.836000px;}
.ls4a{letter-spacing:1.979640px;}
.lsb{letter-spacing:1.980000px;}
.ls28{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsa{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls6e{letter-spacing:2.872800px;}
.ls69{letter-spacing:21.687120px;}
.lsf{letter-spacing:56.247120px;}
.ls71{letter-spacing:60.927120px;}
.lsc{letter-spacing:70.287120px;}
.ls66{letter-spacing:74.594880px;}
.ls5b{letter-spacing:75.327120px;}
.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;}
}
.ws6a{word-spacing:-47.880000px;}
.ws6b{word-spacing:-18.738000px;}
.ws22{word-spacing:-18.630000px;}
.ws2d{word-spacing:-18.036000px;}
.ws1a{word-spacing:-16.902000px;}
.ws73{word-spacing:-16.665840px;}
.ws1b{word-spacing:-16.632000px;}
.ws2c{word-spacing:-15.930000px;}
.ws65{word-spacing:-15.225840px;}
.ws23{word-spacing:-15.163200px;}
.ws18{word-spacing:-15.034320px;}
.ws20{word-spacing:-14.994720px;}
.ws13{word-spacing:-14.986440px;}
.ws19{word-spacing:-14.938560px;}
.ws69{word-spacing:-14.842800px;}
.ws16{word-spacing:-14.699160px;}
.ws64{word-spacing:-14.603400px;}
.ws14{word-spacing:-14.507640px;}
.ws26{word-spacing:-14.362920px;}
.ws77{word-spacing:-14.316120px;}
.ws17{word-spacing:-14.268240px;}
.ws1d{word-spacing:-14.194440px;}
.ws25{word-spacing:-14.152320px;}
.ws12{word-spacing:-14.124600px;}
.ws66{word-spacing:-14.028840px;}
.ws15{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws27{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1c{word-spacing:-13.183560px;}
.ws7b{word-spacing:-13.167000px;}
.ws7a{word-spacing:-13.119120px;}
.ws11{word-spacing:-12.783960px;}
.ws6c{word-spacing:-12.762360px;}
.ws67{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.348000px;}
.ws24{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws1f{word-spacing:-12.256920px;}
.ws68{word-spacing:-12.169440px;}
.wsf{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws21{word-spacing:-12.046320px;}
.ws1e{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws29{word-spacing:-11.874240px;}
.ws2e{word-spacing:-11.709360px;}
.ws2b{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws2f{word-spacing:-11.161800px;}
.ws28{word-spacing:-11.156040px;}
.ws31{word-spacing:-11.012400px;}
.ws6d{word-spacing:-10.824840px;}
.ws2a{word-spacing:-10.820880px;}
.ws30{word-spacing:-10.677240px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws39{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.440000px;}
.ws54{word-spacing:-1.263600px;}
.ws3c{word-spacing:-1.152000px;}
.ws5e{word-spacing:-1.149120px;}
.ws5d{word-spacing:-1.053000px;}
.ws37{word-spacing:-0.972000px;}
.ws63{word-spacing:-0.957600px;}
.ws4f{word-spacing:-0.926640px;}
.ws38{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.864000px;}
.ws4e{word-spacing:-0.716040px;}
.ws6e{word-spacing:-0.670320px;}
.ws3f{word-spacing:-0.612000px;}
.ws52{word-spacing:-0.505440px;}
.ws61{word-spacing:-0.478800px;}
.ws62{word-spacing:-0.430920px;}
.ws4b{word-spacing:-0.383040px;}
.ws3e{word-spacing:-0.324000px;}
.ws5b{word-spacing:-0.294840px;}
.ws75{word-spacing:-0.239400px;}
.ws4d{word-spacing:-0.210600px;}
.ws57{word-spacing:-0.191520px;}
.ws53{word-spacing:-0.168480px;}
.ws74{word-spacing:-0.116640px;}
.ws59{word-spacing:-0.108000px;}
.ws60{word-spacing:-0.047880px;}
.ws4c{word-spacing:-0.042120px;}
.ws32{word-spacing:0.000000px;}
.ws5f{word-spacing:0.047880px;}
.ws5a{word-spacing:0.084240px;}
.ws76{word-spacing:0.108000px;}
.ws4a{word-spacing:0.143640px;}
.ws51{word-spacing:0.168480px;}
.ws42{word-spacing:0.191520px;}
.ws49{word-spacing:0.239400px;}
.ws33{word-spacing:0.252000px;}
.ws47{word-spacing:0.287280px;}
.ws35{word-spacing:0.324000px;}
.ws48{word-spacing:0.335160px;}
.ws44{word-spacing:0.383040px;}
.ws5c{word-spacing:0.421200px;}
.ws41{word-spacing:0.430920px;}
.ws43{word-spacing:0.478800px;}
.ws34{word-spacing:0.540000px;}
.ws70{word-spacing:0.622440px;}
.ws6f{word-spacing:0.766080px;}
.ws36{word-spacing:0.792000px;}
.ws3b{word-spacing:0.828000px;}
.ws45{word-spacing:1.292760px;}
.ws50{word-spacing:1.305720px;}
.ws79{word-spacing:1.340640px;}
.ws72{word-spacing:1.580040px;}
.ws46{word-spacing:1.675800px;}
.ws55{word-spacing:1.771560px;}
.ws40{word-spacing:1.867320px;}
.ws71{word-spacing:1.915200px;}
.ws78{word-spacing:2.058840px;}
.ws58{word-spacing:2.154600px;}
.ws56{word-spacing:2.489760px;}
._6{margin-left:-5.433120px;}
._8{margin-left:-4.212360px;}
._4{margin-left:-3.041280px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._3{width:3.708000px;}
._9{width:6.402240px;}
._a{width:61.089120px;}
._d{width:122.665680px;}
._5{width:293.164680px;}
._c{width:345.888720px;}
._b{width:381.925800px;}
._e{width:1038.384360px;}
._f{width:1097.750280px;}
._7{width:1852.716240px;}
.fc6{color:rgb(18,73,154);}
.fc5{color:rgb(12,100,171);}
.fc7{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:29.880000px;}
.fs9{font-size:33.120000px;}
.fs1{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fsa{font-size:42.840000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs7{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.y0{bottom:0.000000px;}
.y1b0{bottom:25.789260px;}
.y118{bottom:25.795020px;}
.y77{bottom:25.800150px;}
.y87{bottom:40.201650px;}
.y62{bottom:64.311540px;}
.y152{bottom:76.770000px;}
.y151{bottom:88.470000px;}
.y61{bottom:89.514150px;}
.y150{bottom:99.720000px;}
.y60{bottom:101.844150px;}
.y14f{bottom:111.870000px;}
.y11b{bottom:114.609000px;}
.y5f{bottom:115.254150px;}
.y14e{bottom:120.419400px;}
.yd8{bottom:123.993300px;}
.y5e{bottom:126.411540px;}
.y117{bottom:130.101600px;}
.y14d{bottom:132.119400px;}
.y1af{bottom:139.073340px;}
.yd7{bottom:145.660980px;}
.y5d{bottom:150.084150px;}
.y14c{bottom:153.044400px;}
.y116{bottom:156.431400px;}
.y162{bottom:157.866660px;}
.y5c{bottom:157.914000px;}
.yd6{bottom:160.695300px;}
.y1ae{bottom:160.942530px;}
.y14b{bottom:172.484400px;}
.y76{bottom:175.756350px;}
.y115{bottom:178.110600px;}
.y180{bottom:178.468650px;}
.y1ad{bottom:182.907480px;}
.yd5{bottom:183.198900px;}
.y14a{bottom:190.034400px;}
.y17f{bottom:190.173000px;}
.y161{bottom:190.927800px;}
.y75{bottom:190.966200px;}
.y114{bottom:193.144920px;}
.yd4{bottom:198.233220px;}
.y74{bottom:204.556200px;}
.y1ac{bottom:204.776670px;}
.y42{bottom:214.613280px;}
.y113{bottom:215.648520px;}
.y17e{bottom:219.567000px;}
.yd3{bottom:220.736820px;}
.y73{bottom:221.836350px;}
.yf4{bottom:225.766350px;}
.y1ab{bottom:228.716670px;}
.y112{bottom:230.587080px;}
.y17d{bottom:231.267000px;}
.yd2{bottom:235.675380px;}
.y72{bottom:237.136350px;}
.yf3{bottom:237.461550px;}
.y41{bottom:242.697600px;}
.y160{bottom:243.629130px;}
.y1aa{bottom:246.540000px;}
.y71{bottom:250.726350px;}
.y40{bottom:250.797750px;}
.y149{bottom:253.536600px;}
.y17c{bottom:254.163000px;}
.ya5{bottom:254.402550px;}
.yd1{bottom:258.178980px;}
.y111{bottom:258.761400px;}
.y20{bottom:263.376000px;}
.y70{bottom:264.766350px;}
.y148{bottom:265.231650px;}
.ya4{bottom:266.102550px;}
.y110{bottom:266.863740px;}
.yf2{bottom:267.755550px;}
.y17b{bottom:272.163000px;}
.yd0{bottom:273.213300px;}
.y15f{bottom:273.985050px;}
.y1f{bottom:275.076000px;}
.y1a9{bottom:276.052080px;}
.y6f{bottom:276.826350px;}
.yf1{bottom:279.455550px;}
.y10f{bottom:288.732930px;}
.y1d6{bottom:289.376850px;}
.y17a{bottom:290.073000px;}
.y1a8{bottom:291.086400px;}
.y5b{bottom:291.923040px;}
.y147{bottom:295.525650px;}
.y15e{bottom:295.674690px;}
.ya3{bottom:296.392500px;}
.yf0{bottom:300.380550px;}
.y1d5{bottom:301.077000px;}
.y1e{bottom:304.472550px;}
.y10e{bottom:306.101400px;}
.y146{bottom:307.225650px;}
.ya2{bottom:308.092500px;}
.y6e{bottom:310.188000px;}
.y1d{bottom:316.172550px;}
.y15d{bottom:316.646130px;}
.y3f{bottom:316.905000px;}
.yef{bottom:319.820550px;}
.ycf{bottom:320.443350px;}
.y6d{bottom:324.228150px;}
.y1e7{bottom:327.720300px;}
.y145{bottom:328.150650px;}
.ya1{bottom:329.016900px;}
.y1d4{bottom:330.473250px;}
.y15c{bottom:336.181170px;}
.y6c{bottom:336.288000px;}
.yee{bottom:337.370550px;}
.y10d{bottom:338.268450px;}
.y1c{bottom:339.070200px;}
.y1d3{bottom:342.173250px;}
.y1a7{bottom:344.701050px;}
.y144{bottom:347.590650px;}
.ya0{bottom:348.456900px;}
.y15b{bottom:351.119730px;}
.y6b{bottom:351.228150px;}
.yce{bottom:351.981840px;}
.y1b{bottom:357.070200px;}
.y1e6{bottom:360.781440px;}
.y6a{bottom:363.288000px;}
.y1d2{bottom:365.071050px;}
.y143{bottom:365.140800px;}
.y9f{bottom:366.006900px;}
.y15a{bottom:366.154050px;}
.y1a6{bottom:366.666000px;}
.y3e{bottom:366.936630px;}
.ycd{bottom:367.016160px;}
.y1a{bottom:374.980350px;}
.y69{bottom:378.228150px;}
.y1d1{bottom:383.071050px;}
.y1a5{bottom:388.355640px;}
.y68{bottom:390.288000px;}
.y10c{bottom:395.688540px;}
.y1d0{bottom:400.981050px;}
.y1e5{bottom:401.874450px;}
.y179{bottom:404.499000px;}
.y67{bottom:410.746200px;}
.y142{bottom:411.795000px;}
.y178{bottom:416.194050px;}
.y1a4{bottom:416.434200px;}
.y10b{bottom:417.102870px;}
.ycc{bottom:421.527540px;}
.y82{bottom:422.989050px;}
.y141{bottom:423.495000px;}
.y1a3{bottom:427.413960px;}
.y3d{bottom:429.611550px;}
.y5a{bottom:431.835150px;}
.y140{bottom:434.745000px;}
.y10a{bottom:435.644400px;}
.ycb{bottom:443.217180px;}
.y59{bottom:443.892000px;}
.y177{bottom:446.488050px;}
.y80{bottom:447.559050px;}
.y1a2{bottom:448.924050px;}
.y1cf{bottom:449.295450px;}
.y3c{bottom:451.573350px;}
.y13f{bottom:455.444400px;}
.y176{bottom:458.188050px;}
.y1ce{bottom:460.995450px;}
.y13e{bottom:467.144400px;}
.y1a1{bottom:467.465580px;}
.yca{bottom:471.391500px;}
.y7e{bottom:472.129050px;}
.y3b{bottom:473.262990px;}
.y175{bottom:479.113050px;}
.yc9{bottom:479.487300px;}
.y58{bottom:480.461400px;}
.y109{bottom:483.807690px;}
.y1a0{bottom:484.834050px;}
.y1e4{bottom:487.638900px;}
.y13d{bottom:489.149400px;}
.yed{bottom:489.319050px;}
.y1cd{bottom:490.391850px;}
.y159{bottom:492.891660px;}
.y9e{bottom:495.620700px;}
.y7c{bottom:496.789050px;}
.y174{bottom:498.553050px;}
.y108{bottom:498.746250px;}
.yec{bottom:501.021000px;}
.y3a{bottom:501.341550px;}
.y1cc{bottom:502.091850px;}
.yc8{bottom:504.241260px;}
.y13c{bottom:507.149400px;}
.y9d{bottom:507.320700px;}
.y39{bottom:512.321310px;}
.y173{bottom:516.103050px;}
.y19f{bottom:516.990120px;}
.y19{bottom:517.995000px;}
.y57{bottom:518.847600px;}
.y1e3{bottom:520.700040px;}
.y107{bottom:521.249850px;}
.y1cb{bottom:524.989650px;}
.y13b{bottom:525.059400px;}
.yc7{bottom:525.751350px;}
.y158{bottom:525.952800px;}
.y18{bottom:529.695150px;}
.yeb{bottom:530.415000px;}
.y38{bottom:533.831400px;}
.y106{bottom:536.284170px;}
.y9c{bottom:536.717100px;}
.y56{bottom:537.253200px;}
.y7b{bottom:537.660000px;}
.yea{bottom:542.115000px;}
.y1ca{bottom:542.989650px;}
.yc6{bottom:544.292880px;}
.y9b{bottom:548.417100px;}
.y55{bottom:549.310710px;}
.y37{bottom:552.372930px;}
.y105{bottom:554.466600px;}
.y17{bottom:559.984800px;}
.y1c9{bottom:560.899650px;}
.yc5{bottom:561.661350px;}
.y1e2{bottom:561.793050px;}
.ye9{bottom:563.040000px;}
.y194{bottom:564.417600px;}
.y66{bottom:568.704150px;}
.y36{bottom:569.741400px;}
.y9a{bottom:571.314900px;}
.y16{bottom:571.684800px;}
.y13a{bottom:574.267200px;}
.y193{bottom:576.112800px;}
.y65{bottom:580.674150px;}
.ye8{bottom:582.480000px;}
.y139{bottom:585.971400px;}
.y104{bottom:586.009080px;}
.y99{bottom:589.314900px;}
.y19e{bottom:590.725320px;}
.y15{bottom:592.609350px;}
.y64{bottom:592.644150px;}
.yc4{bottom:593.203140px;}
.ye7{bottom:600.030000px;}
.y35{bottom:600.651000px;}
.y103{bottom:601.043400px;}
.y63{bottom:604.704150px;}
.y192{bottom:606.406800px;}
.y98{bottom:607.224750px;}
.yc3{bottom:608.237460px;}
.y1c8{bottom:609.214050px;}
.y14{bottom:612.049350px;}
.y19d{bottom:614.665320px;}
.y138{bottom:615.365400px;}
.y34{bottom:615.589560px;}
.y191{bottom:618.106800px;}
.y1c7{bottom:620.914050px;}
.y54{bottom:623.557740px;}
.y137{bottom:627.065400px;}
.y13{bottom:629.599200px;}
.y33{bottom:630.623880px;}
.y19c{bottom:632.488650px;}
.y157{bottom:633.162990px;}
.y53{bottom:635.530350px;}
.y190{bottom:639.031800px;}
.y52{bottom:647.587200px;}
.y136{bottom:649.961400px;}
.y1c6{bottom:650.310450px;}
.y18f{bottom:658.471800px;}
.yc2{bottom:660.785760px;}
.y19b{bottom:662.000880px;}
.y1c5{bottom:662.010450px;}
.y51{bottom:665.365200px;}
.y156{bottom:666.427620px;}
.y135{bottom:667.961400px;}
.y1e1{bottom:668.103420px;}
.y18e{bottom:676.021800px;}
.y19a{bottom:677.035200px;}
.yc1{bottom:682.750710px;}
.y50{bottom:684.308550px;}
.y1c4{bottom:684.908250px;}
.y134{bottom:685.871400px;}
.y155{bottom:686.764650px;}
.y102{bottom:687.387330px;}
.y32{bottom:688.307310px;}
.y4f{bottom:696.278550px;}
.y1c3{bottom:702.908250px;}
.y1e0{bottom:703.738110px;}
.yc0{bottom:704.619900px;}
.y4e{bottom:708.340350px;}
.y101{bottom:709.076970px;}
.y31{bottom:709.817400px;}
.y1c2{bottom:720.818250px;}
.y1df{bottom:724.350450px;}
.y18d{bottom:725.229450px;}
.y4d{bottom:726.114990px;}
.ybf{bottom:726.489090px;}
.y97{bottom:727.011300px;}
.y100{bottom:730.132200px;}
.y30{bottom:731.231730px;}
.y133{bottom:731.632200px;}
.y18c{bottom:736.931250px;}
.y96{bottom:738.711300px;}
.y132{bottom:743.332200px;}
.y4c{bottom:743.984400px;}
.y12{bottom:744.918600px;}
.ybe{bottom:748.454040px;}
.y2f{bottom:752.646060px;}
.y131{bottom:754.582200px;}
.y11{bottom:756.618600px;}
.y4b{bottom:762.663750px;}
.yff{bottom:763.882200px;}
.y18b{bottom:766.325250px;}
.y95{bottom:769.001100px;}
.ybd{bottom:770.323230px;}
.y1de{bottom:772.461300px;}
.y2e{bottom:774.156150px;}
.y130{bottom:775.284000px;}
.y4a{bottom:775.533750px;}
.y18a{bottom:778.025250px;}
.yfe{bottom:778.375530px;}
.y94{bottom:780.701100px;}
.y199{bottom:784.129920px;}
.y10{bottom:786.015150px;}
.y12f{bottom:786.984000px;}
.y1dd{bottom:787.389060px;}
.ybc{bottom:787.691700px;}
.y2d{bottom:792.697680px;}
.y49{bottom:793.533750px;}
.ye6{bottom:793.894200px;}
.yfd{bottom:796.462200px;}
.yf{bottom:797.715150px;}
.y189{bottom:798.950250px;}
.y93{bottom:802.705350px;}
.ye5{bottom:805.598400px;}
.y12e{bottom:809.880000px;}
.y1dc{bottom:809.892660px;}
.y2c{bottom:810.066150px;}
.y48{bottom:810.633750px;}
.y154{bottom:813.622260px;}
.y188{bottom:818.390250px;}
.y198{bottom:819.501270px;}
.ye{bottom:819.719400px;}
.y92{bottom:820.705350px;}
.y47{bottom:822.693900px;}
.ybb{bottom:823.719300px;}
.y1db{bottom:824.926980px;}
.y12d{bottom:827.880000px;}
.ye4{bottom:834.992400px;}
.y187{bottom:835.940400px;}
.yd{bottom:837.719400px;}
.y91{bottom:838.615350px;}
.y197{bottom:839.299650px;}
.yba{bottom:841.539150px;}
.y2b{bottom:841.610760px;}
.y12c{bottom:845.790000px;}
.y153{bottom:846.683400px;}
.ye3{bottom:846.692400px;}
.yfc{bottom:847.287600px;}
.y1da{bottom:853.011300px;}
.yc{bottom:855.629550px;}
.y2a{bottom:856.645080px;}
.y43{bottom:859.263150px;}
.y1d9{bottom:861.107490px;}
.y86{bottom:861.840000px;}
.y1c1{bottom:862.939800px;}
.ye2{bottom:869.588400px;}
.yfb{bottom:870.509400px;}
.y1c0{bottom:874.639650px;}
.y1d8{bottom:882.797130px;}
.y186{bottom:885.148200px;}
.yac{bottom:886.929750px;}
.ye1{bottom:887.588400px;}
.y185{bottom:896.851050px;}
.y1d7{bottom:897.831450px;}
.yfa{bottom:898.351200px;}
.yab{bottom:898.629750px;}
.y12b{bottom:901.787430px;}
.y85{bottom:902.041650px;}
.y196{bottom:902.940060px;}
.y1bf{bottom:903.237150px;}
.ye0{bottom:905.498400px;}
.y1fd{bottom:910.912650px;}
.y29{bottom:911.407830px;}
.y1f1{bottom:916.403550px;}
.y1fc{bottom:925.946970px;}
.y184{bottom:926.245050px;}
.y12a{bottom:926.625180px;}
.y84{bottom:928.611480px;}
.yaa{bottom:928.919550px;}
.yb9{bottom:931.521990px;}
.y195{bottom:936.001200px;}
.y28{bottom:936.245580px;}
.y183{bottom:937.945050px;}
.y1f0{bottom:938.408550px;}
.ya9{bottom:940.619550px;}
.y1fb{bottom:944.129400px;}
.y83{bottom:947.239050px;}
.y129{bottom:948.039510px;}
.y27{bottom:957.659910px;}
.y1ef{bottom:957.848550px;}
.ya8{bottom:961.543950px;}
.y182{bottom:962.794050px;}
.yb8{bottom:962.823540px;}
.yf9{bottom:963.708360px;}
.y11a{bottom:966.420000px;}
.yb{bottom:970.948800px;}
.y128{bottom:970.997730px;}
.y81{bottom:971.809050px;}
.y1ee{bottom:975.398550px;}
.y1fa{bottom:976.280850px;}
.y26{bottom:979.170000px;}
.y181{bottom:980.614050px;}
.ya7{bottom:980.983950px;}
.ya{bottom:982.648800px;}
.yb7{bottom:984.513180px;}
.yf8{bottom:985.218450px;}
.y127{bottom:992.412060px;}
.y7f{bottom:996.378900px;}
.y172{bottom:997.305450px;}
.y1f9{bottom:998.030340px;}
.ya6{bottom:998.534100px;}
.yb6{bottom:999.547500px;}
.y25{bottom:1000.584330px;}
.y1b3{bottom:1002.319350px;}
.y1bc{bottom:1003.212750px;}
.y171{bottom:1004.775450px;}
.yf7{bottom:1006.632780px;}
.y126{bottom:1011.037380px;}
.y9{bottom:1012.045200px;}
.ydf{bottom:1012.777200px;}
.y1f8{bottom:1019.899530px;}
.y7d{bottom:1021.039050px;}
.y24{bottom:1021.196670px;}
.y8{bottom:1023.745200px;}
.yde{bottom:1024.477800px;}
.yf6{bottom:1028.142870px;}
.y1ed{bottom:1038.319200px;}
.y23{bottom:1039.020000px;}
.y1f7{bottom:1041.864480px;}
.y125{bottom:1042.175850px;}
.y7a{bottom:1045.609050px;}
.y46{bottom:1046.643000px;}
.y16e{bottom:1049.427900px;}
.yf5{bottom:1049.557200px;}
.y1ec{bottom:1050.021000px;}
.y124{bottom:1050.546000px;}
.y1b2{bottom:1050.633600px;}
.yb5{bottom:1052.139090px;}
.ydd{bottom:1053.772800px;}
.y169{bottom:1055.425800px;}
.y1b1{bottom:1062.333600px;}
.y1f6{bottom:1063.733670px;}
.y45{bottom:1064.643000px;}
.y79{bottom:1066.908600px;}
.y168{bottom:1067.130000px;}
.y22{bottom:1068.532080px;}
.y11c{bottom:1069.059150px;}
.y11e{bottom:1069.595670px;}
.y16d{bottom:1069.860690px;}
.y1eb{bottom:1079.415000px;}
.yb4{bottom:1081.022700px;}
.y44{bottom:1082.553150px;}
.y21{bottom:1083.566400px;}
.y78{bottom:1083.918600px;}
.y11d{bottom:1087.419000px;}
.y1f5{bottom:1087.673670px;}
.y16c{bottom:1090.197720px;}
.y1ea{bottom:1091.115000px;}
.y90{bottom:1091.518500px;}
.y119{bottom:1091.829000px;}
.y1b8{bottom:1092.622800px;}
.y167{bottom:1096.524000px;}
.yb3{bottom:1102.706520px;}
.y8f{bottom:1103.218350px;}
.y1b7{bottom:1104.322800px;}
.y1f4{bottom:1105.497000px;}
.y166{bottom:1108.224000px;}
.y1bb{bottom:1109.522970px;}
.y1e9{bottom:1113.120000px;}
.y120{bottom:1113.210000px;}
.y7{bottom:1120.800450px;}
.yb2{bottom:1123.761750px;}
.y1b6{bottom:1126.327800px;}
.y16b{bottom:1129.511670px;}
.y11f{bottom:1131.030000px;}
.y165{bottom:1131.120000px;}
.y1f3{bottom:1131.922830px;}
.y121{bottom:1131.923400px;}
.y8e{bottom:1132.614750px;}
.y6{bottom:1133.040450px;}
.yb1{bottom:1143.201030px;}
.y8d{bottom:1144.314750px;}
.y1b5{bottom:1144.327800px;}
.y1ba{bottom:1145.157660px;}
.y1f2{bottom:1146.957150px;}
.y1e8{bottom:1149.030000px;}
.y164{bottom:1149.120000px;}
.yb0{bottom:1158.235350px;}
.y1b4{bottom:1162.237800px;}
.y8c{bottom:1165.239150px;}
.y1b9{bottom:1165.770000px;}
.y163{bottom:1167.030000px;}
.y16a{bottom:1167.923400px;}
.y5{bottom:1170.076200px;}
.y3{bottom:1172.554800px;}
.yaf{bottom:1173.269670px;}
.yda{bottom:1180.194150px;}
.y2{bottom:1183.534950px;}
.y8b{bottom:1184.679150px;}
.yae{bottom:1188.208230px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.y8a{bottom:1202.229150px;}
.yd9{bottom:1202.289150px;}
.yad{bottom:1203.242550px;}
.ydc{bottom:1217.844570px;}
.y170{bottom:1217.845800px;}
.y1be{bottom:1217.846820px;}
.y1ff{bottom:1217.847390px;}
.y89{bottom:1217.850240px;}
.y123{bottom:1217.856030px;}
.ydb{bottom:1232.244480px;}
.y16f{bottom:1232.245710px;}
.y1bd{bottom:1232.246730px;}
.y1fe{bottom:1232.247300px;}
.y88{bottom:1232.250150px;}
.y122{bottom:1232.255940px;}
.h5{height:20.702988px;}
.h11{height:22.947891px;}
.he{height:31.179199px;}
.ha{height:33.174668px;}
.hb{height:35.419570px;}
.h2{height:38.412000px;}
.h13{height:42.045117px;}
.hf{height:43.929844px;}
.h8{height:44.942040px;}
.h9{height:44.945880px;}
.h1{height:48.015000px;}
.hc{height:49.937344px;}
.h4{height:51.087960px;}
.h6{height:51.099840px;}
.h7{height:57.618000px;}
.h3{height:60.690960px;}
.h10{height:88.200000px;}
.h12{height:235.170000px;}
.hd{height:726.840000px;}
.h0{height:1264.500000px;}
.w4{width:144.450000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x16{left:39.030000px;}
.x18{left:47.970000px;}
.x4{left:51.612450px;}
.xd{left:53.469000px;}
.x17{left:57.867000px;}
.x19{left:60.707250px;}
.x12{left:70.700400px;}
.xe{left:72.189000px;}
.x13{left:78.440400px;}
.xf{left:86.530140px;}
.x11{left:88.288650px;}
.x1b{left:90.000000px;}
.x15{left:97.776150px;}
.x10{left:100.819200px;}
.x14{left:115.113600px;}
.x1a{left:159.347250px;}
.x1{left:175.152900px;}
.x1e{left:231.386850px;}
.x6{left:232.916850px;}
.x5{left:251.636850px;}
.x1d{left:327.000000px;}
.x1c{left:328.530000px;}
.xa{left:332.634150px;}
.x7{left:334.164150px;}
.xc{left:336.207750px;}
.xb{left:337.709700px;}
.x1f{left:339.090450px;}
.x8{left:352.005210px;}
.x9{left:353.160540px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v5{vertical-align:-48.960000pt;}
.v1{vertical-align:-46.720000pt;}
.v2{vertical-align:-41.600000pt;}
.v3{vertical-align:-8.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.640000pt;}
.ls50{letter-spacing:-2.213120pt;}
.ls61{letter-spacing:-2.085440pt;}
.ls2e{letter-spacing:-1.957760pt;}
.ls52{letter-spacing:-1.915200pt;}
.ls6d{letter-spacing:-1.830080pt;}
.ls30{letter-spacing:-1.659840pt;}
.ls4e{letter-spacing:-1.574720pt;}
.ls3a{letter-spacing:-1.489600pt;}
.ls53{letter-spacing:-1.276800pt;}
.ls20{letter-spacing:-1.248000pt;}
.ls6f{letter-spacing:-1.191680pt;}
.ls46{letter-spacing:-1.160640pt;}
.ls37{letter-spacing:-1.149120pt;}
.ls42{letter-spacing:-1.085760pt;}
.ls32{letter-spacing:-1.064000pt;}
.ls48{letter-spacing:-1.010880pt;}
.ls54{letter-spacing:-0.864000pt;}
.ls43{letter-spacing:-0.823680pt;}
.ls64{letter-spacing:-0.786240pt;}
.ls2f{letter-spacing:-0.766080pt;}
.ls1b{letter-spacing:-0.760000pt;}
.ls29{letter-spacing:-0.736000pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls60{letter-spacing:-0.680960pt;}
.ls38{letter-spacing:-0.638400pt;}
.ls6c{letter-spacing:-0.595840pt;}
.ls62{letter-spacing:-0.553280pt;}
.ls58{letter-spacing:-0.486720pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.425600pt;}
.ls33{letter-spacing:-0.383040pt;}
.ls36{letter-spacing:-0.340480pt;}
.ls4b{letter-spacing:-0.336960pt;}
.ls3b{letter-spacing:-0.297920pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls35{letter-spacing:-0.255360pt;}
.ls3f{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.224000pt;}
.ls5e{letter-spacing:-0.212800pt;}
.ls34{letter-spacing:-0.170240pt;}
.ls47{letter-spacing:-0.149760pt;}
.ls3d{letter-spacing:-0.127680pt;}
.ls68{letter-spacing:-0.096000pt;}
.ls3c{letter-spacing:-0.042560pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls39{letter-spacing:0.042560pt;}
.ls1a{letter-spacing:0.085120pt;}
.ls17{letter-spacing:0.092480pt;}
.ls55{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101120pt;}
.ls67{letter-spacing:0.103680pt;}
.ls70{letter-spacing:0.127680pt;}
.ls4c{letter-spacing:0.149760pt;}
.ls5a{letter-spacing:0.164800pt;}
.ls51{letter-spacing:0.170240pt;}
.ls41{letter-spacing:0.187200pt;}
.ls5d{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.ls59{letter-spacing:0.227840pt;}
.ls13{letter-spacing:0.266240pt;}
.ls3e{letter-spacing:0.340480pt;}
.ls6a{letter-spacing:0.383040pt;}
.ls1d{letter-spacing:0.400000pt;}
.lse{letter-spacing:0.425600pt;}
.ls11{letter-spacing:0.449280pt;}
.ls2a{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.561600pt;}
.ls5f{letter-spacing:0.595840pt;}
.ls2b{letter-spacing:0.608000pt;}
.ls19{letter-spacing:0.638400pt;}
.ls5c{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls6b{letter-spacing:0.753312pt;}
.lsd{letter-spacing:0.766080pt;}
.ls27{letter-spacing:0.768000pt;}
.ls18{letter-spacing:0.786240pt;}
.ls25{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.823680pt;}
.ls15{letter-spacing:0.861120pt;}
.ls24{letter-spacing:0.864000pt;}
.ls40{letter-spacing:0.898560pt;}
.ls2c{letter-spacing:0.928000pt;}
.ls57{letter-spacing:0.936000pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls56{letter-spacing:1.008000pt;}
.ls14{letter-spacing:1.010880pt;}
.ls23{letter-spacing:1.024000pt;}
.ls4d{letter-spacing:1.048320pt;}
.ls6{letter-spacing:1.088000pt;}
.ls12{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls65{letter-spacing:1.366293pt;}
.ls10{letter-spacing:1.385280pt;}
.ls26{letter-spacing:1.408000pt;}
.ls4f{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls49{letter-spacing:1.536000pt;}
.ls44{letter-spacing:1.609920pt;}
.ls63{letter-spacing:1.632000pt;}
.ls4a{letter-spacing:1.759680pt;}
.lsb{letter-spacing:1.760000pt;}
.ls28{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsa{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls6e{letter-spacing:2.553600pt;}
.ls69{letter-spacing:19.277440pt;}
.lsf{letter-spacing:49.997440pt;}
.ls71{letter-spacing:54.157440pt;}
.lsc{letter-spacing:62.477440pt;}
.ls66{letter-spacing:66.306560pt;}
.ls5b{letter-spacing:66.957440pt;}
.ws6a{word-spacing:-42.560000pt;}
.ws6b{word-spacing:-16.656000pt;}
.ws22{word-spacing:-16.560000pt;}
.ws2d{word-spacing:-16.032000pt;}
.ws1a{word-spacing:-15.024000pt;}
.ws73{word-spacing:-14.814080pt;}
.ws1b{word-spacing:-14.784000pt;}
.ws2c{word-spacing:-14.160000pt;}
.ws65{word-spacing:-13.534080pt;}
.ws23{word-spacing:-13.478400pt;}
.ws18{word-spacing:-13.363840pt;}
.ws20{word-spacing:-13.328640pt;}
.ws13{word-spacing:-13.321280pt;}
.ws19{word-spacing:-13.278720pt;}
.ws69{word-spacing:-13.193600pt;}
.ws16{word-spacing:-13.065920pt;}
.ws64{word-spacing:-12.980800pt;}
.ws14{word-spacing:-12.895680pt;}
.ws26{word-spacing:-12.767040pt;}
.ws77{word-spacing:-12.725440pt;}
.ws17{word-spacing:-12.682880pt;}
.ws1d{word-spacing:-12.617280pt;}
.ws25{word-spacing:-12.579840pt;}
.ws12{word-spacing:-12.555200pt;}
.ws66{word-spacing:-12.470080pt;}
.ws15{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws27{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1c{word-spacing:-11.718720pt;}
.ws7b{word-spacing:-11.704000pt;}
.ws7a{word-spacing:-11.661440pt;}
.ws11{word-spacing:-11.363520pt;}
.ws6c{word-spacing:-11.344320pt;}
.ws67{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.976000pt;}
.ws24{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws1f{word-spacing:-10.895040pt;}
.ws68{word-spacing:-10.817280pt;}
.wsf{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws21{word-spacing:-10.707840pt;}
.ws1e{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws29{word-spacing:-10.554880pt;}
.ws2e{word-spacing:-10.408320pt;}
.ws2b{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws2f{word-spacing:-9.921600pt;}
.ws28{word-spacing:-9.916480pt;}
.ws31{word-spacing:-9.788800pt;}
.ws6d{word-spacing:-9.622080pt;}
.ws2a{word-spacing:-9.618560pt;}
.ws30{word-spacing:-9.490880pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws39{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.280000pt;}
.ws54{word-spacing:-1.123200pt;}
.ws3c{word-spacing:-1.024000pt;}
.ws5e{word-spacing:-1.021440pt;}
.ws5d{word-spacing:-0.936000pt;}
.ws37{word-spacing:-0.864000pt;}
.ws63{word-spacing:-0.851200pt;}
.ws4f{word-spacing:-0.823680pt;}
.ws38{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws4e{word-spacing:-0.636480pt;}
.ws6e{word-spacing:-0.595840pt;}
.ws3f{word-spacing:-0.544000pt;}
.ws52{word-spacing:-0.449280pt;}
.ws61{word-spacing:-0.425600pt;}
.ws62{word-spacing:-0.383040pt;}
.ws4b{word-spacing:-0.340480pt;}
.ws3e{word-spacing:-0.288000pt;}
.ws5b{word-spacing:-0.262080pt;}
.ws75{word-spacing:-0.212800pt;}
.ws4d{word-spacing:-0.187200pt;}
.ws57{word-spacing:-0.170240pt;}
.ws53{word-spacing:-0.149760pt;}
.ws74{word-spacing:-0.103680pt;}
.ws59{word-spacing:-0.096000pt;}
.ws60{word-spacing:-0.042560pt;}
.ws4c{word-spacing:-0.037440pt;}
.ws32{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.042560pt;}
.ws5a{word-spacing:0.074880pt;}
.ws76{word-spacing:0.096000pt;}
.ws4a{word-spacing:0.127680pt;}
.ws51{word-spacing:0.149760pt;}
.ws42{word-spacing:0.170240pt;}
.ws49{word-spacing:0.212800pt;}
.ws33{word-spacing:0.224000pt;}
.ws47{word-spacing:0.255360pt;}
.ws35{word-spacing:0.288000pt;}
.ws48{word-spacing:0.297920pt;}
.ws44{word-spacing:0.340480pt;}
.ws5c{word-spacing:0.374400pt;}
.ws41{word-spacing:0.383040pt;}
.ws43{word-spacing:0.425600pt;}
.ws34{word-spacing:0.480000pt;}
.ws70{word-spacing:0.553280pt;}
.ws6f{word-spacing:0.680960pt;}
.ws36{word-spacing:0.704000pt;}
.ws3b{word-spacing:0.736000pt;}
.ws45{word-spacing:1.149120pt;}
.ws50{word-spacing:1.160640pt;}
.ws79{word-spacing:1.191680pt;}
.ws72{word-spacing:1.404480pt;}
.ws46{word-spacing:1.489600pt;}
.ws55{word-spacing:1.574720pt;}
.ws40{word-spacing:1.659840pt;}
.ws71{word-spacing:1.702400pt;}
.ws78{word-spacing:1.830080pt;}
.ws58{word-spacing:1.915200pt;}
.ws56{word-spacing:2.213120pt;}
._6{margin-left:-4.829440pt;}
._8{margin-left:-3.744320pt;}
._4{margin-left:-2.703360pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._3{width:3.296000pt;}
._9{width:5.690880pt;}
._a{width:54.301440pt;}
._d{width:109.036160pt;}
._5{width:260.590827pt;}
._c{width:307.456640pt;}
._b{width:339.489600pt;}
._e{width:923.008320pt;}
._f{width:975.778027pt;}
._7{width:1646.858880pt;}
.fs4{font-size:26.560000pt;}
.fs9{font-size:29.440000pt;}
.fs1{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fsa{font-size:38.080000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs7{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.y0{bottom:0.000000pt;}
.y1b0{bottom:22.923787pt;}
.y118{bottom:22.928907pt;}
.y77{bottom:22.933467pt;}
.y87{bottom:35.734800pt;}
.y62{bottom:57.165813pt;}
.y152{bottom:68.240000pt;}
.y151{bottom:78.640000pt;}
.y61{bottom:79.568133pt;}
.y150{bottom:88.640000pt;}
.y60{bottom:90.528133pt;}
.y14f{bottom:99.440000pt;}
.y11b{bottom:101.874667pt;}
.y5f{bottom:102.448133pt;}
.y14e{bottom:107.039467pt;}
.yd8{bottom:110.216267pt;}
.y5e{bottom:112.365813pt;}
.y117{bottom:115.645867pt;}
.y14d{bottom:117.439467pt;}
.y1af{bottom:123.620747pt;}
.yd7{bottom:129.476427pt;}
.y5d{bottom:133.408133pt;}
.y14c{bottom:136.039467pt;}
.y116{bottom:139.050133pt;}
.y162{bottom:140.325920pt;}
.y5c{bottom:140.368000pt;}
.yd6{bottom:142.840267pt;}
.y1ae{bottom:143.060027pt;}
.y14b{bottom:153.319467pt;}
.y76{bottom:156.227867pt;}
.y115{bottom:158.320533pt;}
.y180{bottom:158.638800pt;}
.y1ad{bottom:162.584427pt;}
.yd5{bottom:162.843467pt;}
.y14a{bottom:168.919467pt;}
.y17f{bottom:169.042667pt;}
.y161{bottom:169.713600pt;}
.y75{bottom:169.747733pt;}
.y114{bottom:171.684373pt;}
.yd4{bottom:176.207307pt;}
.y74{bottom:181.827733pt;}
.y1ac{bottom:182.023707pt;}
.y42{bottom:190.767360pt;}
.y113{bottom:191.687573pt;}
.y17e{bottom:195.170667pt;}
.yd3{bottom:196.210507pt;}
.y73{bottom:197.187867pt;}
.yf4{bottom:200.681200pt;}
.y1ab{bottom:203.303707pt;}
.y112{bottom:204.966293pt;}
.y17d{bottom:205.570667pt;}
.yd2{bottom:209.489227pt;}
.y72{bottom:210.787867pt;}
.yf3{bottom:211.076933pt;}
.y41{bottom:215.731200pt;}
.y160{bottom:216.559227pt;}
.y1aa{bottom:219.146667pt;}
.y71{bottom:222.867867pt;}
.y40{bottom:222.931333pt;}
.y149{bottom:225.365867pt;}
.y17c{bottom:225.922667pt;}
.ya5{bottom:226.135600pt;}
.yd1{bottom:229.492427pt;}
.y111{bottom:230.010133pt;}
.y20{bottom:234.112000pt;}
.y70{bottom:235.347867pt;}
.y148{bottom:235.761467pt;}
.ya4{bottom:236.535600pt;}
.y110{bottom:237.212213pt;}
.yf2{bottom:238.004933pt;}
.y17b{bottom:241.922667pt;}
.yd0{bottom:242.856267pt;}
.y15f{bottom:243.542267pt;}
.y1f{bottom:244.512000pt;}
.y1a9{bottom:245.379627pt;}
.y6f{bottom:246.067867pt;}
.yf1{bottom:248.404933pt;}
.y10f{bottom:256.651493pt;}
.y1d6{bottom:257.223867pt;}
.y17a{bottom:257.842667pt;}
.y1a8{bottom:258.743467pt;}
.y5b{bottom:259.487147pt;}
.y147{bottom:262.689467pt;}
.y15e{bottom:262.821947pt;}
.ya3{bottom:263.460000pt;}
.yf0{bottom:267.004933pt;}
.y1d5{bottom:267.624000pt;}
.y1e{bottom:270.642267pt;}
.y10e{bottom:272.090133pt;}
.y146{bottom:273.089467pt;}
.ya2{bottom:273.860000pt;}
.y6e{bottom:275.722667pt;}
.y1d{bottom:281.042267pt;}
.y15d{bottom:281.463227pt;}
.y3f{bottom:281.693333pt;}
.yef{bottom:284.284933pt;}
.ycf{bottom:284.838533pt;}
.y6d{bottom:288.202800pt;}
.y1e7{bottom:291.306933pt;}
.y145{bottom:291.689467pt;}
.ya1{bottom:292.459467pt;}
.y1d4{bottom:293.754000pt;}
.y15c{bottom:298.827707pt;}
.y6c{bottom:298.922667pt;}
.yee{bottom:299.884933pt;}
.y10d{bottom:300.683067pt;}
.y1c{bottom:301.395733pt;}
.y1d3{bottom:304.154000pt;}
.y1a7{bottom:306.400933pt;}
.y144{bottom:308.969467pt;}
.ya0{bottom:309.739467pt;}
.y15b{bottom:312.106427pt;}
.y6b{bottom:312.202800pt;}
.yce{bottom:312.872747pt;}
.y1b{bottom:317.395733pt;}
.y1e6{bottom:320.694613pt;}
.y6a{bottom:322.922667pt;}
.y1d2{bottom:324.507600pt;}
.y143{bottom:324.569600pt;}
.y9f{bottom:325.339467pt;}
.y15a{bottom:325.470267pt;}
.y1a6{bottom:325.925333pt;}
.y3e{bottom:326.165893pt;}
.ycd{bottom:326.236587pt;}
.y1a{bottom:333.315867pt;}
.y69{bottom:336.202800pt;}
.y1d1{bottom:340.507600pt;}
.y1a5{bottom:345.205013pt;}
.y68{bottom:346.922667pt;}
.y10c{bottom:351.723147pt;}
.y1d0{bottom:356.427600pt;}
.y1e5{bottom:357.221733pt;}
.y179{bottom:359.554667pt;}
.y67{bottom:365.107733pt;}
.y142{bottom:366.040000pt;}
.y178{bottom:369.950267pt;}
.y1a4{bottom:370.163733pt;}
.y10b{bottom:370.758107pt;}
.ycc{bottom:374.691147pt;}
.y82{bottom:375.990267pt;}
.y141{bottom:376.440000pt;}
.y1a3{bottom:379.923520pt;}
.y3d{bottom:381.876933pt;}
.y5a{bottom:383.853467pt;}
.y140{bottom:386.440000pt;}
.y10a{bottom:387.239467pt;}
.ycb{bottom:393.970827pt;}
.y59{bottom:394.570667pt;}
.y177{bottom:396.878267pt;}
.y80{bottom:397.830267pt;}
.y1a2{bottom:399.043600pt;}
.y1cf{bottom:399.373733pt;}
.y3c{bottom:401.398533pt;}
.y13f{bottom:404.839467pt;}
.y176{bottom:407.278267pt;}
.y1ce{bottom:409.773733pt;}
.y13e{bottom:415.239467pt;}
.y1a1{bottom:415.524960pt;}
.yca{bottom:419.014667pt;}
.y7e{bottom:419.670267pt;}
.y3b{bottom:420.678213pt;}
.y175{bottom:425.878267pt;}
.yc9{bottom:426.210933pt;}
.y58{bottom:427.076800pt;}
.y109{bottom:430.051280pt;}
.y1a0{bottom:430.963600pt;}
.y1e4{bottom:433.456800pt;}
.y13d{bottom:434.799467pt;}
.yed{bottom:434.950267pt;}
.y1cd{bottom:435.903867pt;}
.y159{bottom:438.125920pt;}
.y9e{bottom:440.551733pt;}
.y7c{bottom:441.590267pt;}
.y174{bottom:443.158267pt;}
.y108{bottom:443.330000pt;}
.yec{bottom:445.352000pt;}
.y3a{bottom:445.636933pt;}
.y1cc{bottom:446.303867pt;}
.yc8{bottom:448.214453pt;}
.y13c{bottom:450.799467pt;}
.y9d{bottom:450.951733pt;}
.y39{bottom:455.396720pt;}
.y173{bottom:458.758267pt;}
.y19f{bottom:459.546773pt;}
.y19{bottom:460.440000pt;}
.y57{bottom:461.197867pt;}
.y1e3{bottom:462.844480pt;}
.y107{bottom:463.333200pt;}
.y1cb{bottom:466.657467pt;}
.y13b{bottom:466.719467pt;}
.yc7{bottom:467.334533pt;}
.y158{bottom:467.513600pt;}
.y18{bottom:470.840133pt;}
.yeb{bottom:471.480000pt;}
.y38{bottom:474.516800pt;}
.y106{bottom:476.697040pt;}
.y9c{bottom:477.081867pt;}
.y56{bottom:477.558400pt;}
.y7b{bottom:477.920000pt;}
.yea{bottom:481.880000pt;}
.y1ca{bottom:482.657467pt;}
.yc6{bottom:483.815893pt;}
.y9b{bottom:487.481867pt;}
.y55{bottom:488.276187pt;}
.y37{bottom:490.998160pt;}
.y105{bottom:492.859200pt;}
.y17{bottom:497.764267pt;}
.y1c9{bottom:498.577467pt;}
.yc5{bottom:499.254533pt;}
.y1e2{bottom:499.371600pt;}
.ye9{bottom:500.480000pt;}
.y194{bottom:501.704533pt;}
.y66{bottom:505.514800pt;}
.y36{bottom:506.436800pt;}
.y9a{bottom:507.835467pt;}
.y16{bottom:508.164267pt;}
.y13a{bottom:510.459733pt;}
.y193{bottom:512.100267pt;}
.y65{bottom:516.154800pt;}
.ye8{bottom:517.760000pt;}
.y139{bottom:520.863467pt;}
.y104{bottom:520.896960pt;}
.y99{bottom:523.835467pt;}
.y19e{bottom:525.089173pt;}
.y15{bottom:526.763867pt;}
.y64{bottom:526.794800pt;}
.yc4{bottom:527.291680pt;}
.ye7{bottom:533.360000pt;}
.y35{bottom:533.912000pt;}
.y103{bottom:534.260800pt;}
.y63{bottom:537.514800pt;}
.y192{bottom:539.028267pt;}
.y98{bottom:539.755333pt;}
.yc3{bottom:540.655520pt;}
.y1c8{bottom:541.523600pt;}
.y14{bottom:544.043867pt;}
.y19d{bottom:546.369173pt;}
.y138{bottom:546.991467pt;}
.y34{bottom:547.190720pt;}
.y191{bottom:549.428267pt;}
.y1c7{bottom:551.923600pt;}
.y54{bottom:554.273547pt;}
.y137{bottom:557.391467pt;}
.y13{bottom:559.643733pt;}
.y33{bottom:560.554560pt;}
.y19c{bottom:562.212133pt;}
.y157{bottom:562.811547pt;}
.y53{bottom:564.915867pt;}
.y190{bottom:568.028267pt;}
.y52{bottom:575.633067pt;}
.y136{bottom:577.743467pt;}
.y1c6{bottom:578.053733pt;}
.y18f{bottom:585.308267pt;}
.yc2{bottom:587.365120pt;}
.y19b{bottom:588.445227pt;}
.y1c5{bottom:588.453733pt;}
.y51{bottom:591.435733pt;}
.y156{bottom:592.380107pt;}
.y135{bottom:593.743467pt;}
.y1e1{bottom:593.869707pt;}
.y18e{bottom:600.908267pt;}
.y19a{bottom:601.809067pt;}
.yc1{bottom:606.889520pt;}
.y50{bottom:608.274267pt;}
.y1c4{bottom:608.807333pt;}
.y134{bottom:609.663467pt;}
.y155{bottom:610.457467pt;}
.y102{bottom:611.010960pt;}
.y32{bottom:611.828720pt;}
.y4f{bottom:618.914267pt;}
.y1c3{bottom:624.807333pt;}
.y1e0{bottom:625.544987pt;}
.yc0{bottom:626.328800pt;}
.y4e{bottom:629.635867pt;}
.y101{bottom:630.290640pt;}
.y31{bottom:630.948800pt;}
.y1c2{bottom:640.727333pt;}
.y1df{bottom:643.867067pt;}
.y18d{bottom:644.648400pt;}
.y4d{bottom:645.435547pt;}
.ybf{bottom:645.768080pt;}
.y97{bottom:646.232267pt;}
.y100{bottom:649.006400pt;}
.y30{bottom:649.983760pt;}
.y133{bottom:650.339733pt;}
.y18c{bottom:655.050000pt;}
.y96{bottom:656.632267pt;}
.y132{bottom:660.739733pt;}
.y4c{bottom:661.319467pt;}
.y12{bottom:662.149867pt;}
.ybe{bottom:665.292480pt;}
.y2f{bottom:669.018720pt;}
.y131{bottom:670.739733pt;}
.y11{bottom:672.549867pt;}
.y4b{bottom:677.923333pt;}
.yff{bottom:679.006400pt;}
.y18b{bottom:681.178000pt;}
.y95{bottom:683.556533pt;}
.ybd{bottom:684.731760pt;}
.y1de{bottom:686.632267pt;}
.y2e{bottom:688.138800pt;}
.y130{bottom:689.141333pt;}
.y4a{bottom:689.363333pt;}
.y18a{bottom:691.578000pt;}
.yfe{bottom:691.889360pt;}
.y94{bottom:693.956533pt;}
.y199{bottom:697.004373pt;}
.y10{bottom:698.680133pt;}
.y12f{bottom:699.541333pt;}
.y1dd{bottom:699.901387pt;}
.ybc{bottom:700.170400pt;}
.y2d{bottom:704.620160pt;}
.y49{bottom:705.363333pt;}
.ye6{bottom:705.683733pt;}
.yfd{bottom:707.966400pt;}
.yf{bottom:709.080133pt;}
.y189{bottom:710.178000pt;}
.y93{bottom:713.515867pt;}
.ye5{bottom:716.087467pt;}
.y12e{bottom:719.893333pt;}
.y1dc{bottom:719.904587pt;}
.y2c{bottom:720.058800pt;}
.y48{bottom:720.563333pt;}
.y154{bottom:723.219787pt;}
.y188{bottom:727.458000pt;}
.y198{bottom:728.445573pt;}
.ye{bottom:728.639467pt;}
.y92{bottom:729.515867pt;}
.y47{bottom:731.283467pt;}
.ybb{bottom:732.194933pt;}
.y1db{bottom:733.268427pt;}
.y12d{bottom:735.893333pt;}
.ye4{bottom:742.215467pt;}
.y187{bottom:743.058133pt;}
.yd{bottom:744.639467pt;}
.y91{bottom:745.435867pt;}
.y197{bottom:746.044133pt;}
.yba{bottom:748.034800pt;}
.y2b{bottom:748.098453pt;}
.y12c{bottom:751.813333pt;}
.y153{bottom:752.607467pt;}
.ye3{bottom:752.615467pt;}
.yfc{bottom:753.144533pt;}
.y1da{bottom:758.232267pt;}
.yc{bottom:760.559600pt;}
.y2a{bottom:761.462293pt;}
.y43{bottom:763.789467pt;}
.y1d9{bottom:765.428880pt;}
.y86{bottom:766.080000pt;}
.y1c1{bottom:767.057600pt;}
.ye2{bottom:772.967467pt;}
.yfb{bottom:773.786133pt;}
.y1c0{bottom:777.457467pt;}
.y1d8{bottom:784.708560pt;}
.y186{bottom:786.798400pt;}
.yac{bottom:788.382000pt;}
.ye1{bottom:788.967467pt;}
.y185{bottom:797.200933pt;}
.y1d7{bottom:798.072400pt;}
.yfa{bottom:798.534400pt;}
.yab{bottom:798.782000pt;}
.y12b{bottom:801.588827pt;}
.y85{bottom:801.814800pt;}
.y196{bottom:802.613387pt;}
.y1bf{bottom:802.877467pt;}
.ye0{bottom:804.887467pt;}
.y1fd{bottom:809.700133pt;}
.y29{bottom:810.140293pt;}
.y1f1{bottom:814.580933pt;}
.y1fc{bottom:823.063973pt;}
.y184{bottom:823.328933pt;}
.y12a{bottom:823.666827pt;}
.y84{bottom:825.432427pt;}
.yaa{bottom:825.706267pt;}
.yb9{bottom:828.019547pt;}
.y195{bottom:832.001067pt;}
.y28{bottom:832.218293pt;}
.y183{bottom:833.728933pt;}
.y1f0{bottom:834.140933pt;}
.ya9{bottom:836.106267pt;}
.y1fb{bottom:839.226133pt;}
.y83{bottom:841.990267pt;}
.y129{bottom:842.701787pt;}
.y27{bottom:851.253253pt;}
.y1ef{bottom:851.420933pt;}
.ya8{bottom:854.705733pt;}
.y182{bottom:855.816933pt;}
.yb8{bottom:855.843147pt;}
.yf9{bottom:856.629653pt;}
.y11a{bottom:859.040000pt;}
.yb{bottom:863.065600pt;}
.y128{bottom:863.109093pt;}
.y81{bottom:863.830267pt;}
.y1ee{bottom:867.020933pt;}
.y1fa{bottom:867.805200pt;}
.y26{bottom:870.373333pt;}
.y181{bottom:871.656933pt;}
.ya7{bottom:871.985733pt;}
.ya{bottom:873.465600pt;}
.yb7{bottom:875.122827pt;}
.yf8{bottom:875.749733pt;}
.y127{bottom:882.144053pt;}
.y7f{bottom:885.670133pt;}
.y172{bottom:886.493733pt;}
.y1f9{bottom:887.138080pt;}
.ya6{bottom:887.585867pt;}
.yb6{bottom:888.486667pt;}
.y25{bottom:889.408293pt;}
.y1b3{bottom:890.950533pt;}
.y1bc{bottom:891.744667pt;}
.y171{bottom:893.133733pt;}
.yf7{bottom:894.784693pt;}
.y126{bottom:898.699893pt;}
.y9{bottom:899.595733pt;}
.ydf{bottom:900.246400pt;}
.y1f8{bottom:906.577360pt;}
.y7d{bottom:907.590267pt;}
.y24{bottom:907.730373pt;}
.y8{bottom:909.995733pt;}
.yde{bottom:910.646933pt;}
.yf6{bottom:913.904773pt;}
.y1ed{bottom:922.950400pt;}
.y23{bottom:923.573333pt;}
.y1f7{bottom:926.101760pt;}
.y125{bottom:926.378533pt;}
.y7a{bottom:929.430267pt;}
.y46{bottom:930.349333pt;}
.y16e{bottom:932.824800pt;}
.yf5{bottom:932.939733pt;}
.y1ec{bottom:933.352000pt;}
.y124{bottom:933.818667pt;}
.y1b2{bottom:933.896533pt;}
.yb5{bottom:935.234747pt;}
.ydd{bottom:936.686933pt;}
.y169{bottom:938.156267pt;}
.y1b1{bottom:944.296533pt;}
.y1f6{bottom:945.541040pt;}
.y45{bottom:946.349333pt;}
.y79{bottom:948.363200pt;}
.y168{bottom:948.560000pt;}
.y22{bottom:949.806293pt;}
.y11c{bottom:950.274800pt;}
.y11e{bottom:950.751707pt;}
.y16d{bottom:950.987280pt;}
.y1eb{bottom:959.480000pt;}
.yb4{bottom:960.909067pt;}
.y44{bottom:962.269467pt;}
.y21{bottom:963.170133pt;}
.y78{bottom:963.483200pt;}
.y11d{bottom:966.594667pt;}
.y1f5{bottom:966.821040pt;}
.y16c{bottom:969.064640pt;}
.y1ea{bottom:969.880000pt;}
.y90{bottom:970.238667pt;}
.y119{bottom:970.514667pt;}
.y1b8{bottom:971.220267pt;}
.y167{bottom:974.688000pt;}
.yb3{bottom:980.183573pt;}
.y8f{bottom:980.638533pt;}
.y1b7{bottom:981.620267pt;}
.y1f4{bottom:982.664000pt;}
.y166{bottom:985.088000pt;}
.y1bb{bottom:986.242640pt;}
.y1e9{bottom:989.440000pt;}
.y120{bottom:989.520000pt;}
.y7{bottom:996.267067pt;}
.yb2{bottom:998.899333pt;}
.y1b6{bottom:1001.180267pt;}
.y16b{bottom:1004.010373pt;}
.y11f{bottom:1005.360000pt;}
.y165{bottom:1005.440000pt;}
.y1f3{bottom:1006.153627pt;}
.y121{bottom:1006.154133pt;}
.y8e{bottom:1006.768667pt;}
.y6{bottom:1007.147067pt;}
.yb1{bottom:1016.178693pt;}
.y8d{bottom:1017.168667pt;}
.y1b5{bottom:1017.180267pt;}
.y1ba{bottom:1017.917920pt;}
.y1f2{bottom:1019.517467pt;}
.y1e8{bottom:1021.360000pt;}
.y164{bottom:1021.440000pt;}
.yb0{bottom:1029.542533pt;}
.y1b4{bottom:1033.100267pt;}
.y8c{bottom:1035.768133pt;}
.y1b9{bottom:1036.240000pt;}
.y163{bottom:1037.360000pt;}
.y16a{bottom:1038.154133pt;}
.y5{bottom:1040.067733pt;}
.y3{bottom:1042.270933pt;}
.yaf{bottom:1042.906373pt;}
.yda{bottom:1049.061467pt;}
.y2{bottom:1052.031067pt;}
.y8b{bottom:1053.048133pt;}
.yae{bottom:1056.185093pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.y8a{bottom:1068.648133pt;}
.yd9{bottom:1068.701467pt;}
.yad{bottom:1069.548933pt;}
.ydc{bottom:1082.528507pt;}
.y170{bottom:1082.529600pt;}
.y1be{bottom:1082.530507pt;}
.y1ff{bottom:1082.531013pt;}
.y89{bottom:1082.533547pt;}
.y123{bottom:1082.538693pt;}
.ydb{bottom:1095.328427pt;}
.y16f{bottom:1095.329520pt;}
.y1bd{bottom:1095.330427pt;}
.y1fe{bottom:1095.330933pt;}
.y88{bottom:1095.333467pt;}
.y122{bottom:1095.338613pt;}
.h5{height:18.402656pt;}
.h11{height:20.398125pt;}
.he{height:27.714844pt;}
.ha{height:29.488594pt;}
.hb{height:31.484062pt;}
.h2{height:34.144000pt;}
.h13{height:37.373437pt;}
.hf{height:39.048750pt;}
.h8{height:39.948480pt;}
.h9{height:39.951893pt;}
.h1{height:42.680000pt;}
.hc{height:44.388750pt;}
.h4{height:45.411520pt;}
.h6{height:45.422080pt;}
.h7{height:51.216000pt;}
.h3{height:53.947520pt;}
.h10{height:78.400000pt;}
.h12{height:209.040000pt;}
.hd{height:646.080000pt;}
.h0{height:1124.000000pt;}
.w4{width:128.400000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x16{left:34.693333pt;}
.x18{left:42.640000pt;}
.x4{left:45.877733pt;}
.xd{left:47.528000pt;}
.x17{left:51.437333pt;}
.x19{left:53.962000pt;}
.x12{left:62.844800pt;}
.xe{left:64.168000pt;}
.x13{left:69.724800pt;}
.xf{left:76.915680pt;}
.x11{left:78.478800pt;}
.x1b{left:80.000000pt;}
.x15{left:86.912133pt;}
.x10{left:89.617067pt;}
.x14{left:102.323200pt;}
.x1a{left:141.642000pt;}
.x1{left:155.691467pt;}
.x1e{left:205.677200pt;}
.x6{left:207.037200pt;}
.x5{left:223.677200pt;}
.x1d{left:290.666667pt;}
.x1c{left:292.026667pt;}
.xa{left:295.674800pt;}
.x7{left:297.034800pt;}
.xc{left:298.851333pt;}
.xb{left:300.186400pt;}
.x1f{left:301.413733pt;}
.x8{left:312.893520pt;}
.x9{left:313.920480pt;}
.x3{left:585.317600pt;}
.x2{left:698.878667pt;}
}




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