
    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_1066bdba924e2d58e0ecf88c.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_3973bd19867c40173d4799e2.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_719a74480b9325d4d3f2c57f.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_a58b29f8830755e1022e7daa.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;}
.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);}
.v4{vertical-align:-69.480360px;}
.v2{vertical-align:-55.080000px;}
.v3{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.573600px;}
.v1{vertical-align:66.781320px;}
.ls4e{letter-spacing:-2.489760px;}
.ls76{letter-spacing:-2.346120px;}
.ls65{letter-spacing:-2.298240px;}
.ls37{letter-spacing:-2.202480px;}
.ls50{letter-spacing:-2.154600px;}
.ls64{letter-spacing:-2.106720px;}
.ls63{letter-spacing:-1.963080px;}
.ls78{letter-spacing:-1.915200px;}
.ls33{letter-spacing:-1.867320px;}
.ls4c{letter-spacing:-1.771560px;}
.ls74{letter-spacing:-1.723680px;}
.ls72{letter-spacing:-1.627920px;}
.ls73{letter-spacing:-1.580040px;}
.ls51{letter-spacing:-1.436400px;}
.ls22{letter-spacing:-1.404000px;}
.ls46{letter-spacing:-1.305720px;}
.ls45{letter-spacing:-1.221480px;}
.ls77{letter-spacing:-1.197000px;}
.ls3a{letter-spacing:-1.137240px;}
.ls79{letter-spacing:-1.005480px;}
.ls52{letter-spacing:-0.972000px;}
.ls42{letter-spacing:-0.926640px;}
.ls71{letter-spacing:-0.909720px;}
.ls35{letter-spacing:-0.900000px;}
.ls6a{letter-spacing:-0.884520px;}
.ls30{letter-spacing:-0.861840px;}
.ls1d{letter-spacing:-0.855000px;}
.ls2a{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.792000px;}
.ls49{letter-spacing:-0.758160px;}
.ls62{letter-spacing:-0.718200px;}
.ls5f{letter-spacing:-0.670320px;}
.ls2e{letter-spacing:-0.612000px;}
.ls56{letter-spacing:-0.547560px;}
.ls23{letter-spacing:-0.540000px;}
.ls60{letter-spacing:-0.526680px;}
.ls32{letter-spacing:-0.478800px;}
.ls43{letter-spacing:-0.430920px;}
.ls39{letter-spacing:-0.383040px;}
.ls48{letter-spacing:-0.379080px;}
.ls38{letter-spacing:-0.335160px;}
.ls20{letter-spacing:-0.324000px;}
.ls31{letter-spacing:-0.287280px;}
.ls3c{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.252000px;}
.ls68{letter-spacing:-0.191520px;}
.ls47{letter-spacing:-0.168480px;}
.ls57{letter-spacing:-0.143640px;}
.ls36{letter-spacing:-0.047880px;}
.ls1e{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.047880px;}
.ls1c{letter-spacing:0.095760px;}
.ls19{letter-spacing:0.104040px;}
.ls53{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.113760px;}
.lsd{letter-spacing:0.143280px;}
.ls6d{letter-spacing:0.143640px;}
.ls4a{letter-spacing:0.168480px;}
.ls4f{letter-spacing:0.191520px;}
.ls3d{letter-spacing:0.210600px;}
.ls70{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.299520px;}
.ls61{letter-spacing:0.383040px;}
.ls6f{letter-spacing:0.430920px;}
.ls1f{letter-spacing:0.450000px;}
.ls5c{letter-spacing:0.459648px;}
.ls6c{letter-spacing:0.478800px;}
.ls17{letter-spacing:0.505440px;}
.ls2b{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.622440px;}
.ls13{letter-spacing:0.631800px;}
.ls2c{letter-spacing:0.684000px;}
.ls1b{letter-spacing:0.718200px;}
.ls5d{letter-spacing:0.756000px;}
.ls5b{letter-spacing:0.766080px;}
.ls5{letter-spacing:0.792000px;}
.ls44{letter-spacing:0.810000px;}
.lsa{letter-spacing:0.828000px;}
.ls5a{letter-spacing:0.861840px;}
.ls28{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.884520px;}
.ls27{letter-spacing:0.900000px;}
.ls67{letter-spacing:0.909720px;}
.ls41{letter-spacing:0.926640px;}
.ls66{letter-spacing:0.957600px;}
.ls12{letter-spacing:0.968760px;}
.ls26{letter-spacing:0.972000px;}
.ls40{letter-spacing:1.010880px;}
.ls2d{letter-spacing:1.044000px;}
.ls55{letter-spacing:1.053000px;}
.ls2f{letter-spacing:1.080000px;}
.ls54{letter-spacing:1.134000px;}
.ls10{letter-spacing:1.137240px;}
.ls25{letter-spacing:1.152000px;}
.ls34{letter-spacing:1.170000px;}
.ls4b{letter-spacing:1.179360px;}
.ls75{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls18{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.ls11{letter-spacing:1.558440px;}
.ls8{letter-spacing:1.584000px;}
.ls4d{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls3b{letter-spacing:1.728000px;}
.ls3e{letter-spacing:1.811160px;}
.ls69{letter-spacing:1.836000px;}
.ls3f{letter-spacing:1.979640px;}
.lsc{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsb{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.lse{letter-spacing:4.143600px;}
.ls15{letter-spacing:4.485600px;}
.ls16{letter-spacing:5.224680px;}
.ls59{letter-spacing:30.687120px;}
.ls6b{letter-spacing:56.557800px;}
.ls6e{letter-spacing:131.935680px;}
.ls5e{letter-spacing:167.599440px;}
.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:-18.738000px;}
.ws1f{word-spacing:-18.630000px;}
.ws30{word-spacing:-18.036000px;}
.ws1e{word-spacing:-16.902000px;}
.ws6e{word-spacing:-16.665840px;}
.ws20{word-spacing:-16.632000px;}
.ws2f{word-spacing:-15.930000px;}
.ws8c{word-spacing:-15.896160px;}
.ws90{word-spacing:-15.608880px;}
.ws22{word-spacing:-15.163200px;}
.ws6c{word-spacing:-15.034320px;}
.ws21{word-spacing:-14.994720px;}
.ws14{word-spacing:-14.986440px;}
.ws1a{word-spacing:-14.938560px;}
.ws75{word-spacing:-14.842800px;}
.ws16{word-spacing:-14.699160px;}
.ws70{word-spacing:-14.603400px;}
.ws17{word-spacing:-14.507640px;}
.ws29{word-spacing:-14.362920px;}
.ws77{word-spacing:-14.316120px;}
.ws6d{word-spacing:-14.268240px;}
.ws23{word-spacing:-14.194440px;}
.ws28{word-spacing:-14.152320px;}
.ws15{word-spacing:-14.124600px;}
.ws8f{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws2a{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1d{word-spacing:-13.183560px;}
.ws18{word-spacing:-13.119120px;}
.ws6f{word-spacing:-13.023360px;}
.ws12{word-spacing:-12.852000px;}
.ws1b{word-spacing:-12.783960px;}
.ws7e{word-spacing:-12.762360px;}
.ws8e{word-spacing:-12.640320px;}
.ws19{word-spacing:-12.510000px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws13{word-spacing:-12.348000px;}
.ws26{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws24{word-spacing:-12.256920px;}
.ws11{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws1c{word-spacing:-12.046320px;}
.ws25{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws2c{word-spacing:-11.874240px;}
.ws31{word-spacing:-11.709360px;}
.ws27{word-spacing:-11.583000px;}
.ws2e{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws32{word-spacing:-11.161800px;}
.ws2b{word-spacing:-11.156040px;}
.ws34{word-spacing:-11.012400px;}
.ws10{word-spacing:-10.944000px;}
.ws7f{word-spacing:-10.824840px;}
.ws2d{word-spacing:-10.820880px;}
.ws33{word-spacing:-10.677240px;}
.wsf{word-spacing:-10.656000px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws84{word-spacing:-2.906280px;}
.ws82{word-spacing:-2.283840px;}
.ws83{word-spacing:-2.244960px;}
.ws79{word-spacing:-1.820880px;}
.ws7c{word-spacing:-1.757160px;}
.ws3c{word-spacing:-1.584000px;}
.ws3f{word-spacing:-1.440000px;}
.ws68{word-spacing:-1.340640px;}
.ws59{word-spacing:-1.263600px;}
.ws44{word-spacing:-1.170000px;}
.ws41{word-spacing:-1.152000px;}
.ws61{word-spacing:-1.053000px;}
.ws3a{word-spacing:-0.972000px;}
.ws4e{word-spacing:-0.926640px;}
.ws3b{word-spacing:-0.900000px;}
.ws3d{word-spacing:-0.864000px;}
.ws53{word-spacing:-0.810000px;}
.ws6a{word-spacing:-0.751680px;}
.ws62{word-spacing:-0.718200px;}
.ws55{word-spacing:-0.716040px;}
.ws42{word-spacing:-0.612000px;}
.ws43{word-spacing:-0.574560px;}
.ws4c{word-spacing:-0.505440px;}
.ws66{word-spacing:-0.478800px;}
.ws65{word-spacing:-0.383040px;}
.ws40{word-spacing:-0.324000px;}
.ws5f{word-spacing:-0.294840px;}
.ws4d{word-spacing:-0.210600px;}
.ws48{word-spacing:-0.191520px;}
.ws58{word-spacing:-0.168480px;}
.ws7b{word-spacing:-0.129240px;}
.ws5d{word-spacing:-0.108000px;}
.ws67{word-spacing:-0.095760px;}
.ws6b{word-spacing:-0.090360px;}
.ws8b{word-spacing:-0.049320px;}
.ws64{word-spacing:-0.047880px;}
.ws54{word-spacing:-0.042120px;}
.ws35{word-spacing:0.000000px;}
.ws63{word-spacing:0.047880px;}
.ws5e{word-spacing:0.084240px;}
.ws47{word-spacing:0.143640px;}
.ws57{word-spacing:0.168480px;}
.ws80{word-spacing:0.239400px;}
.ws36{word-spacing:0.252000px;}
.ws4f{word-spacing:0.287280px;}
.ws38{word-spacing:0.324000px;}
.ws4a{word-spacing:0.335160px;}
.ws4b{word-spacing:0.383040px;}
.ws85{word-spacing:0.397440px;}
.ws60{word-spacing:0.421200px;}
.ws50{word-spacing:0.430920px;}
.ws49{word-spacing:0.478800px;}
.ws45{word-spacing:0.526680px;}
.ws37{word-spacing:0.540000px;}
.ws81{word-spacing:0.574560px;}
.ws39{word-spacing:0.792000px;}
.ws3e{word-spacing:0.828000px;}
.ws46{word-spacing:0.900000px;}
.ws69{word-spacing:1.019880px;}
.ws96{word-spacing:1.197000px;}
.ws51{word-spacing:1.244880px;}
.ws56{word-spacing:1.305720px;}
.ws91{word-spacing:1.723680px;}
.ws5a{word-spacing:1.771560px;}
.ws89{word-spacing:1.867320px;}
.ws8a{word-spacing:1.915200px;}
.ws52{word-spacing:1.963080px;}
.ws97{word-spacing:2.010960px;}
.ws95{word-spacing:2.025360px;}
.ws5c{word-spacing:2.154600px;}
.ws78{word-spacing:2.440440px;}
.ws94{word-spacing:2.488320px;}
.ws5b{word-spacing:2.489760px;}
.ws86{word-spacing:2.552040px;}
.ws92{word-spacing:3.110760px;}
.ws87{word-spacing:3.213360px;}
.ws72{word-spacing:3.557520px;}
.ws88{word-spacing:4.179960px;}
.ws71{word-spacing:5.329080px;}
.ws76{word-spacing:5.367960px;}
.ws8d{word-spacing:6.749640px;}
.ws74{word-spacing:6.797520px;}
.ws73{word-spacing:8.569080px;}
.ws93{word-spacing:11.058840px;}
.ws7a{word-spacing:12.207960px;}
._8{margin-left:-5.938920px;}
._9{margin-left:-4.831560px;}
._3{margin-left:-3.030480px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._b{width:3.774600px;}
._a{width:4.928040px;}
._c{width:10.835280px;}
._4{width:52.560000px;}
._5{width:56.342520px;}
._6{width:219.138480px;}
._7{width:1852.701120px;}
.fc7{color:rgb(12,100,171);}
.fc5{color:rgb(18,73,154);}
.fc6{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);}
.fs8{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:60.120000px;}
.y0{bottom:0.000000px;}
.y1b2{bottom:25.796490px;}
.y88{bottom:25.800150px;}
.y156{bottom:25.803780px;}
.y98{bottom:40.201650px;}
.yfa{bottom:59.010150px;}
.yd0{bottom:61.744800px;}
.y40{bottom:63.755190px;}
.y155{bottom:68.010150px;}
.y187{bottom:69.419850px;}
.y134{bottom:71.638350px;}
.ycf{bottom:73.449000px;}
.y3f{bottom:75.812040px;}
.yf9{bottom:80.880150px;}
.y186{bottom:81.120000px;}
.y133{bottom:83.340000px;}
.y1b1{bottom:88.555200px;}
.y154{bottom:89.880150px;}
.y3e{bottom:100.736550px;}
.yf8{bottom:102.840000px;}
.yce{bottom:102.843000px;}
.y1c{bottom:109.711350px;}
.y1b0{bottom:110.515200px;}
.y185{bottom:111.409800px;}
.y153{bottom:111.840000px;}
.y132{bottom:112.734000px;}
.y33{bottom:114.150030px;}
.ycd{bottom:114.543000px;}
.y1b{bottom:121.411350px;}
.y184{bottom:123.109800px;}
.y131{bottom:124.434000px;}
.yf7{bottom:124.710000px;}
.y3d{bottom:126.292350px;}
.y1af{bottom:132.385200px;}
.y152{bottom:133.710000px;}
.y32{bottom:136.019220px;}
.ycc{bottom:137.439000px;}
.y3c{bottom:138.349200px;}
.yf6{bottom:142.080000px;}
.y183{bottom:144.034200px;}
.y130{bottom:145.359000px;}
.y1ae{bottom:149.755200px;}
.y151{bottom:151.080000px;}
.y1a{bottom:151.701150px;}
.ycb{bottom:155.439000px;}
.y3b{bottom:157.914000px;}
.y31{bottom:159.959220px;}
.y19{bottom:163.401150px;}
.y182{bottom:163.474200px;}
.y12f{bottom:164.799000px;}
.yca{bottom:173.349000px;}
.yf5{bottom:174.238500px;}
.y87{bottom:175.756350px;}
.y30{bottom:177.782550px;}
.y181{bottom:181.024200px;}
.y1ad{bottom:181.917720px;}
.y12e{bottom:182.349000px;}
.y150{bottom:183.242100px;}
.y18{bottom:184.325550px;}
.y86{bottom:190.966200px;}
.y17{bottom:203.765550px;}
.y85{bottom:204.556200px;}
.y2f{bottom:207.294480px;}
.y16{bottom:221.315400px;}
.y84{bottom:221.836350px;}
.y2e{bottom:222.328800px;}
.yc9{bottom:223.450350px;}
.yf4{bottom:228.271080px;}
.y12d{bottom:233.343600px;}
.yc8{bottom:235.145400px;}
.y83{bottom:237.136350px;}
.y14f{bottom:238.184400px;}
.y1ac{bottom:238.918860px;}
.yf3{bottom:243.305400px;}
.y12c{bottom:245.047800px;}
.y82{bottom:250.726350px;}
.y160{bottom:253.460400px;}
.yf2{bottom:256.445550px;}
.y14e{bottom:260.144400px;}
.y1ab{bottom:260.333190px;}
.yf1{bottom:264.545400px;}
.y81{bottom:264.766350px;}
.y15f{bottom:265.160400px;}
.yc7{bottom:265.439400px;}
.y12b{bottom:274.441800px;}
.y80{bottom:276.826350px;}
.yc6{bottom:277.139400px;}
.y1aa{bottom:278.874720px;}
.y14d{bottom:282.014400px;}
.y12a{bottom:286.141800px;}
.yf0{bottom:286.416930px;}
.y2d{bottom:288.766200px;}
.y3a{bottom:291.923040px;}
.y15e{bottom:294.556650px;}
.yc5{bottom:298.064400px;}
.y15{bottom:298.218600px;}
.y14c{bottom:299.384400px;}
.y1a9{bottom:302.814720px;}
.yef{bottom:303.785400px;}
.y2c{bottom:303.976200px;}
.y15d{bottom:306.256650px;}
.y129{bottom:309.037800px;}
.y14{bottom:309.918750px;}
.y7f{bottom:310.188000px;}
.y2b{bottom:316.666200px;}
.yc4{bottom:317.504400px;}
.y1a8{bottom:320.638050px;}
.y7e{bottom:324.228150px;}
.y128{bottom:327.037800px;}
.y15c{bottom:328.261050px;}
.y14b{bottom:330.929730px;}
.y2a{bottom:331.876200px;}
.yc3{bottom:335.054550px;}
.yee{bottom:335.947950px;}
.y7d{bottom:336.288000px;}
.y13{bottom:339.315150px;}
.y29{bottom:344.566200px;}
.y127{bottom:344.947800px;}
.y14a{bottom:345.964050px;}
.y15b{bottom:346.261050px;}
.y1a7{bottom:350.152050px;}
.y12{bottom:351.015150px;}
.y7c{bottom:351.228150px;}
.y28{bottom:359.776200px;}
.y7b{bottom:363.288000px;}
.y15a{bottom:364.171050px;}
.y1a6{bottom:365.186370px;}
.y27{bottom:372.466200px;}
.y11{bottom:373.912800px;}
.y7a{bottom:378.228150px;}
.yed{bottom:385.895430px;}
.y26{bottom:388.036200px;}
.y79{bottom:390.288000px;}
.y1f7{bottom:391.856700px;}
.y10{bottom:391.912800px;}
.y126{bottom:393.262200px;}
.y1d8{bottom:394.591350px;}
.yec{bottom:400.929750px;}
.y25{bottom:401.536200px;}
.y125{bottom:404.966400px;}
.y1d7{bottom:406.291200px;}
.yf{bottom:409.822800px;}
.y24{bottom:410.716200px;}
.y78{bottom:410.746200px;}
.y149{bottom:412.397550px;}
.y1f6{bottom:413.726550px;}
.ya7{bottom:414.637800px;}
.y1a5{bottom:419.578050px;}
.y180{bottom:422.313000px;}
.y93{bottom:422.989050px;}
.yeb{bottom:423.431190px;}
.ya6{bottom:426.339600px;}
.y39{bottom:431.835150px;}
.y17f{bottom:434.013000px;}
.y148{bottom:434.357550px;}
.y124{bottom:434.360400px;}
.y1f5{bottom:435.686550px;}
.y1d6{bottom:436.581150px;}
.yea{bottom:438.369750px;}
.y1a4{bottom:441.448050px;}
.y38{bottom:443.892000px;}
.y123{bottom:446.060400px;}
.y91{bottom:447.558900px;}
.y1d5{bottom:448.281150px;}
.ya5{bottom:455.733600px;}
.y147{bottom:456.227550px;}
.y1f4{bottom:457.556700px;}
.ye9{bottom:460.865430px;}
.y1a3{bottom:463.408200px;}
.y17e{bottom:463.409400px;}
.ya4{bottom:467.433600px;}
.y122{bottom:468.956400px;}
.y1d4{bottom:469.205550px;}
.y8f{bottom:472.129050px;}
.y146{bottom:473.597550px;}
.y1f3{bottom:474.926550px;}
.y17d{bottom:475.109400px;}
.ye8{bottom:475.899750px;}
.y37{bottom:480.461400px;}
.y23{bottom:481.510350px;}
.y1a2{bottom:485.278050px;}
.ye{bottom:486.726150px;}
.y121{bottom:486.956400px;}
.ya3{bottom:488.358600px;}
.y1d3{bottom:488.645550px;}
.ye7{bottom:494.079750px;}
.y8d{bottom:496.789050px;}
.y17c{bottom:498.007200px;}
.yd{bottom:498.426150px;}
.y1a1{bottom:502.648050px;}
.y120{bottom:504.866400px;}
.y145{bottom:505.762800px;}
.y1d2{bottom:506.195550px;}
.y1f2{bottom:507.091170px;}
.ya2{bottom:507.798600px;}
.y22{bottom:509.140350px;}
.y17b{bottom:516.007200px;}
.y36{bottom:518.847600px;}
.ya1{bottom:525.348750px;}
.ye6{bottom:526.238940px;}
.yc{bottom:527.822550px;}
.y17a{bottom:533.917050px;}
.y1a0{bottom:534.807870px;}
.y21{bottom:536.770350px;}
.y35{bottom:537.253200px;}
.yb{bottom:539.522550px;}
.y8c{bottom:541.260000px;}
.y34{bottom:549.313200px;}
.y11f{bottom:553.180950px;}
.y20{bottom:560.080350px;}
.ya{bottom:561.526950px;}
.y1f1{bottom:561.602550px;}
.y1d1{bottom:564.337350px;}
.y11e{bottom:564.876000px;}
.y77{bottom:568.704150px;}
.y144{bottom:572.316000px;}
.y1f{bottom:575.650350px;}
.y1d0{bottom:576.037350px;}
.y9{bottom:579.526950px;}
.ye5{bottom:579.888480px;}
.y76{bottom:580.674150px;}
.y1f0{bottom:583.472700px;}
.y179{bottom:584.018400px;}
.y19f{bottom:587.583600px;}
.y1e{bottom:589.150350px;}
.yc2{bottom:590.637750px;}
.y75{bottom:592.644150px;}
.y143{bottom:594.276000px;}
.ye4{bottom:594.922800px;}
.y11d{bottom:595.170000px;}
.y178{bottom:595.718400px;}
.y8{bottom:597.436950px;}
.y1d{bottom:598.330200px;}
.yc1{bottom:602.341950px;}
.y74{bottom:604.704150px;}
.y1ef{bottom:605.432550px;}
.y1cf{bottom:605.433750px;}
.y11c{bottom:606.870000px;}
.y19e{bottom:609.453600px;}
.y142{bottom:616.146000px;}
.y1ce{bottom:617.133750px;}
.ye3{bottom:617.424240px;}
.y73{bottom:623.557740px;}
.y177{bottom:626.008050px;}
.y1ee{bottom:627.302700px;}
.y11b{bottom:628.875000px;}
.y19d{bottom:631.139280px;}
.yc0{bottom:631.735950px;}
.ye2{bottom:632.362800px;}
.y141{bottom:633.516000px;}
.y72{bottom:635.530350px;}
.y176{bottom:637.708050px;}
.y1cd{bottom:640.031550px;}
.ybf{bottom:643.435950px;}
.y1ed{bottom:644.672550px;}
.ye1{bottom:645.502800px;}
.y19c{bottom:646.173600px;}
.y4e{bottom:646.644750px;}
.y11a{bottom:646.875000px;}
.y71{bottom:647.587200px;}
.ye0{bottom:653.602800px;}
.y1cc{bottom:658.031550px;}
.y4d{bottom:658.339800px;}
.y175{bottom:658.632600px;}
.y19b{bottom:664.353600px;}
.y119{bottom:664.785000px;}
.y70{bottom:665.365200px;}
.y140{bottom:665.673150px;}
.ybe{bottom:666.331950px;}
.y64{bottom:670.222200px;}
.ydf{bottom:670.972800px;}
.y1cb{bottom:675.941550px;}
.y1ec{bottom:676.838340px;}
.y174{bottom:678.072600px;}
.y6f{bottom:684.308550px;}
.ybd{bottom:684.331950px;}
.y4c{bottom:688.633800px;}
.y173{bottom:695.622600px;}
.y6e{bottom:696.278550px;}
.y19a{bottom:696.511950px;}
.y63{bottom:697.852200px;}
.y4b{bottom:700.333800px;}
.ybc{bottom:702.241950px;}
.yde{bottom:703.130310px;}
.y6d{bottom:708.340350px;}
.y13f{bottom:719.298750px;}
.y4a{bottom:721.258800px;}
.y118{bottom:722.033400px;}
.y62{bottom:725.482200px;}
.y6c{bottom:726.114990px;}
.y1eb{bottom:730.619550px;}
.y117{bottom:733.728600px;}
.y49{bottom:740.698800px;}
.y13e{bottom:741.168750px;}
.y6b{bottom:743.984400px;}
.y172{bottom:746.617200px;}
.y1bf{bottom:747.484350px;}
.y61{bottom:748.792200px;}
.y199{bottom:750.544530px;}
.ybb{bottom:752.343150px;}
.y1ea{bottom:752.579550px;}
.ydd{bottom:757.438200px;}
.y48{bottom:758.248800px;}
.y171{bottom:758.317050px;}
.y60{bottom:759.142200px;}
.y1be{bottom:759.184350px;}
.y6a{bottom:762.663750px;}
.y13d{bottom:763.128750px;}
.y116{bottom:764.022600px;}
.yba{bottom:764.038200px;}
.y198{bottom:765.578850px;}
.y1e9{bottom:774.270840px;}
.y69{bottom:775.533750px;}
.y115{bottom:775.722600px;}
.y197{bottom:778.718850px;}
.ydc{bottom:779.129640px;}
.y13c{bottom:784.998750px;}
.y196{bottom:786.818850px;}
.y170{bottom:787.713450px;}
.y1e8{bottom:789.209400px;}
.y1bd{bottom:789.474150px;}
.y68{bottom:793.533750px;}
.ydb{bottom:794.068200px;}
.yb9{bottom:794.332200px;}
.y114{bottom:796.647600px;}
.y16f{bottom:799.413450px;}
.y1bc{bottom:801.174150px;}
.y1e7{bottom:802.349550px;}
.y13b{bottom:802.368750px;}
.yb8{bottom:806.032200px;}
.yda{bottom:807.208200px;}
.y195{bottom:808.688850px;}
.y1e6{bottom:810.449400px;}
.y67{bottom:810.633750px;}
.yd9{bottom:815.308200px;}
.y113{bottom:816.087600px;}
.y5e{bottom:818.848470px;}
.y16e{bottom:820.337850px;}
.y66{bottom:822.693900px;}
.y1bb{bottom:823.178700px;}
.y194{bottom:826.058850px;}
.yb7{bottom:826.957200px;}
.y1e5{bottom:827.819550px;}
.yd8{bottom:832.678350px;}
.y112{bottom:833.637600px;}
.y5d{bottom:833.787030px;}
.y13a{bottom:834.534000px;}
.y16d{bottom:839.777850px;}
.y1ba{bottom:841.178700px;}
.yb6{bottom:846.397200px;}
.y5c{bottom:848.821350px;}
.y16c{bottom:857.328000px;}
.y193{bottom:858.213150px;}
.y1b9{bottom:859.088700px;}
.y65{bottom:859.263150px;}
.y1e4{bottom:859.983240px;}
.y5b{bottom:863.855670px;}
.yb5{bottom:863.947200px;}
.yd7{bottom:864.844650px;}
.y97{bottom:865.440000px;}
.y5a{bottom:878.794230px;}
.y5f{bottom:882.671400px;}
.y111{bottom:882.845400px;}
.y59{bottom:893.828550px;}
.y110{bottom:894.547200px;}
.y139{bottom:901.087200px;}
.y96{bottom:905.641650px;}
.y16b{bottom:908.322450px;}
.y58{bottom:908.862870px;}
.y1e3{bottom:912.735030px;}
.y192{bottom:913.143480px;}
.yb4{bottom:914.941800px;}
.yd6{bottom:918.889200px;}
.y16a{bottom:920.022450px;}
.y138{bottom:923.047200px;}
.y1ca{bottom:923.484150px;}
.y57{bottom:923.801430px;}
.y10f{bottom:923.941200px;}
.yb3{bottom:926.643600px;}
.y1e2{bottom:927.769350px;}
.y191{bottom:928.177800px;}
.y95{bottom:932.211330px;}
.y1c9{bottom:935.184150px;}
.y10e{bottom:935.641200px;}
.y56{bottom:938.835750px;}
.y1e1{bottom:940.819350px;}
.yd5{bottom:940.849200px;}
.y190{bottom:941.317800px;}
.y137{bottom:944.917200px;}
.y1e0{bottom:948.919350px;}
.y18f{bottom:949.417800px;}
.y169{bottom:949.419000px;}
.y94{bottom:950.838900px;}
.yb2{bottom:956.037600px;}
.y10d{bottom:956.566200px;}
.y168{bottom:961.119000px;}
.y136{bottom:962.287200px;}
.y55{bottom:962.466870px;}
.yd4{bottom:962.719200px;}
.y1c8{bottom:965.473950px;}
.yb1{bottom:967.737600px;}
.y1df{bottom:970.605030px;}
.y47{bottom:970.948800px;}
.y18e{bottom:971.287800px;}
.y92{bottom:975.408900px;}
.y10c{bottom:976.006200px;}
.y1c7{bottom:977.173950px;}
.y54{bottom:977.405430px;}
.yd3{bottom:980.089350px;}
.y46{bottom:982.653000px;}
.y167{bottom:984.016800px;}
.y1de{bottom:985.639350px;}
.y18d{bottom:988.657800px;}
.yb0{bottom:988.662600px;}
.y53{bottom:992.439750px;}
.y10b{bottom:993.556200px;}
.y135{bottom:994.449600px;}
.y1c6{bottom:998.098350px;}
.y90{bottom:999.978900px;}
.y166{bottom:1002.016800px;}
.y1dd{bottom:1003.819500px;}
.yaf{bottom:1008.102600px;}
.yd2{bottom:1011.631680px;}
.y45{bottom:1012.047000px;}
.y52{bottom:1016.067420px;}
.y1c5{bottom:1017.538350px;}
.y165{bottom:1019.926800px;}
.y18c{bottom:1020.821640px;}
.y44{bottom:1023.747000px;}
.y8e{bottom:1024.639050px;}
.yae{bottom:1025.652600px;}
.yd1{bottom:1026.666000px;}
.y51{bottom:1031.005980px;}
.y1c4{bottom:1035.088500px;}
.y1dc{bottom:1035.976080px;}
.y10a{bottom:1042.764150px;}
.y50{bottom:1046.040300px;}
.y43{bottom:1046.643000px;}
.y8b{bottom:1049.209050px;}
.yad{bottom:1050.419850px;}
.y104{bottom:1051.072950px;}
.y109{bottom:1054.467000px;}
.ya0{bottom:1058.689500px;}
.yac{bottom:1062.123000px;}
.y42{bottom:1064.643000px;}
.y8a{bottom:1070.508750px;}
.y103{bottom:1072.942800px;}
.y18b{bottom:1074.866190px;}
.y9f{bottom:1080.559500px;}
.y164{bottom:1081.642200px;}
.y41{bottom:1082.553150px;}
.y4f{bottom:1083.446550px;}
.y108{bottom:1083.861000px;}
.y1c3{bottom:1084.296150px;}
.y89{bottom:1087.518750px;}
.y1db{bottom:1091.409150px;}
.yab{bottom:1091.517000px;}
.y163{bottom:1093.342200px;}
.y102{bottom:1094.812800px;}
.y107{bottom:1095.561000px;}
.y1c2{bottom:1095.996150px;}
.y18a{bottom:1096.831140px;}
.y9e{bottom:1102.429350px;}
.yaa{bottom:1103.217000px;}
.y1da{bottom:1113.279150px;}
.y189{bottom:1118.700330px;}
.y106{bottom:1120.410000px;}
.y7{bottom:1120.800450px;}
.y162{bottom:1122.738600px;}
.y9d{bottom:1124.389500px;}
.y1c1{bottom:1125.392550px;}
.ya9{bottom:1128.066000px;}
.y6{bottom:1133.040450px;}
.y101{bottom:1134.143040px;}
.y161{bottom:1134.438600px;}
.y1d9{bottom:1135.149300px;}
.y188{bottom:1136.068800px;}
.y1c0{bottom:1137.092550px;}
.y105{bottom:1138.230000px;}
.ya8{bottom:1145.886000px;}
.y1f9{bottom:1148.039850px;}
.y1b5{bottom:1148.373000px;}
.y1fb{bottom:1153.760010px;}
.y9c{bottom:1155.529500px;}
.y1b8{bottom:1156.070520px;}
.y100{bottom:1162.312800px;}
.y9b{bottom:1163.899500px;}
.y157{bottom:1167.030000px;}
.y1b4{bottom:1167.210000px;}
.yfd{bottom:1167.255000px;}
.y1f8{bottom:1167.479850px;}
.y5{bottom:1170.076200px;}
.y1b7{bottom:1171.009080px;}
.y3{bottom:1172.554800px;}
.yfc{bottom:1180.194150px;}
.y2{bottom:1183.534950px;}
.y1b3{bottom:1185.030000px;}
.y1fa{bottom:1185.923400px;}
.y1b6{bottom:1186.043400px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.yfb{bottom:1202.289150px;}
.y1fd{bottom:1217.847390px;}
.yff{bottom:1217.848260px;}
.y9a{bottom:1217.850240px;}
.y159{bottom:1217.850270px;}
.y1fc{bottom:1232.247300px;}
.yfe{bottom:1232.248170px;}
.y99{bottom:1232.250150px;}
.y158{bottom:1232.250180px;}
.h15{height:20.702988px;}
.h5{height:24.943359px;}
.he{height:29.183730px;}
.h11{height:31.179199px;}
.h14{height:33.174668px;}
.h7{height:35.419570px;}
.h2{height:38.412000px;}
.h6{height:41.655410px;}
.h12{height:43.929844px;}
.h8{height:44.942040px;}
.ha{height:44.945880px;}
.hd{height:46.933594px;}
.h1{height:48.015000px;}
.hf{height:49.937344px;}
.h4{height:51.087960px;}
.h9{height:57.618000px;}
.h3{height:60.690960px;}
.h13{height:88.200000px;}
.hc{height:113.701114px;}
.hb{height:113.714914px;}
.h10{height:723.240000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:39.030000px;}
.x16{left:47.970000px;}
.x4{left:51.612450px;}
.xf{left:53.469000px;}
.x15{left:57.867000px;}
.x17{left:60.707250px;}
.xb{left:72.230400px;}
.xd{left:78.484200px;}
.x10{left:86.530140px;}
.xc{left:88.288650px;}
.x19{left:90.000000px;}
.x13{left:97.776150px;}
.x11{left:100.819200px;}
.x12{left:115.113600px;}
.x18{left:159.347250px;}
.x1{left:175.152900px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x1b{left:324.750000px;}
.x8{left:332.634150px;}
.x7{left:334.164150px;}
.x1c{left:337.674150px;}
.x9{left:339.474150px;}
.xa{left:352.005210px;}
.xe{left:409.209750px;}
.x1a{left:476.580000px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v4{vertical-align:-61.760320pt;}
.v2{vertical-align:-48.960000pt;}
.v3{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.176533pt;}
.v1{vertical-align:59.361173pt;}
.ls4e{letter-spacing:-2.213120pt;}
.ls76{letter-spacing:-2.085440pt;}
.ls65{letter-spacing:-2.042880pt;}
.ls37{letter-spacing:-1.957760pt;}
.ls50{letter-spacing:-1.915200pt;}
.ls64{letter-spacing:-1.872640pt;}
.ls63{letter-spacing:-1.744960pt;}
.ls78{letter-spacing:-1.702400pt;}
.ls33{letter-spacing:-1.659840pt;}
.ls4c{letter-spacing:-1.574720pt;}
.ls74{letter-spacing:-1.532160pt;}
.ls72{letter-spacing:-1.447040pt;}
.ls73{letter-spacing:-1.404480pt;}
.ls51{letter-spacing:-1.276800pt;}
.ls22{letter-spacing:-1.248000pt;}
.ls46{letter-spacing:-1.160640pt;}
.ls45{letter-spacing:-1.085760pt;}
.ls77{letter-spacing:-1.064000pt;}
.ls3a{letter-spacing:-1.010880pt;}
.ls79{letter-spacing:-0.893760pt;}
.ls52{letter-spacing:-0.864000pt;}
.ls42{letter-spacing:-0.823680pt;}
.ls71{letter-spacing:-0.808640pt;}
.ls35{letter-spacing:-0.800000pt;}
.ls6a{letter-spacing:-0.786240pt;}
.ls30{letter-spacing:-0.766080pt;}
.ls1d{letter-spacing:-0.760000pt;}
.ls2a{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls49{letter-spacing:-0.673920pt;}
.ls62{letter-spacing:-0.638400pt;}
.ls5f{letter-spacing:-0.595840pt;}
.ls2e{letter-spacing:-0.544000pt;}
.ls56{letter-spacing:-0.486720pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls60{letter-spacing:-0.468160pt;}
.ls32{letter-spacing:-0.425600pt;}
.ls43{letter-spacing:-0.383040pt;}
.ls39{letter-spacing:-0.340480pt;}
.ls48{letter-spacing:-0.336960pt;}
.ls38{letter-spacing:-0.297920pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls31{letter-spacing:-0.255360pt;}
.ls3c{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls68{letter-spacing:-0.170240pt;}
.ls47{letter-spacing:-0.149760pt;}
.ls57{letter-spacing:-0.127680pt;}
.ls36{letter-spacing:-0.042560pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.042560pt;}
.ls1c{letter-spacing:0.085120pt;}
.ls19{letter-spacing:0.092480pt;}
.ls53{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101120pt;}
.lsd{letter-spacing:0.127360pt;}
.ls6d{letter-spacing:0.127680pt;}
.ls4a{letter-spacing:0.149760pt;}
.ls4f{letter-spacing:0.170240pt;}
.ls3d{letter-spacing:0.187200pt;}
.ls70{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.266240pt;}
.ls61{letter-spacing:0.340480pt;}
.ls6f{letter-spacing:0.383040pt;}
.ls1f{letter-spacing:0.400000pt;}
.ls5c{letter-spacing:0.408576pt;}
.ls6c{letter-spacing:0.425600pt;}
.ls17{letter-spacing:0.449280pt;}
.ls2b{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.553280pt;}
.ls13{letter-spacing:0.561600pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls1b{letter-spacing:0.638400pt;}
.ls5d{letter-spacing:0.672000pt;}
.ls5b{letter-spacing:0.680960pt;}
.ls5{letter-spacing:0.704000pt;}
.ls44{letter-spacing:0.720000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls5a{letter-spacing:0.766080pt;}
.ls28{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.786240pt;}
.ls27{letter-spacing:0.800000pt;}
.ls67{letter-spacing:0.808640pt;}
.ls41{letter-spacing:0.823680pt;}
.ls66{letter-spacing:0.851200pt;}
.ls12{letter-spacing:0.861120pt;}
.ls26{letter-spacing:0.864000pt;}
.ls40{letter-spacing:0.898560pt;}
.ls2d{letter-spacing:0.928000pt;}
.ls55{letter-spacing:0.936000pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls54{letter-spacing:1.008000pt;}
.ls10{letter-spacing:1.010880pt;}
.ls25{letter-spacing:1.024000pt;}
.ls34{letter-spacing:1.040000pt;}
.ls4b{letter-spacing:1.048320pt;}
.ls75{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls18{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.385280pt;}
.ls8{letter-spacing:1.408000pt;}
.ls4d{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls3b{letter-spacing:1.536000pt;}
.ls3e{letter-spacing:1.609920pt;}
.ls69{letter-spacing:1.632000pt;}
.ls3f{letter-spacing:1.759680pt;}
.lsc{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.lse{letter-spacing:3.683200pt;}
.ls15{letter-spacing:3.987200pt;}
.ls16{letter-spacing:4.644160pt;}
.ls59{letter-spacing:27.277440pt;}
.ls6b{letter-spacing:50.273600pt;}
.ls6e{letter-spacing:117.276160pt;}
.ls5e{letter-spacing:148.977280pt;}
.ws7d{word-spacing:-16.656000pt;}
.ws1f{word-spacing:-16.560000pt;}
.ws30{word-spacing:-16.032000pt;}
.ws1e{word-spacing:-15.024000pt;}
.ws6e{word-spacing:-14.814080pt;}
.ws20{word-spacing:-14.784000pt;}
.ws2f{word-spacing:-14.160000pt;}
.ws8c{word-spacing:-14.129920pt;}
.ws90{word-spacing:-13.874560pt;}
.ws22{word-spacing:-13.478400pt;}
.ws6c{word-spacing:-13.363840pt;}
.ws21{word-spacing:-13.328640pt;}
.ws14{word-spacing:-13.321280pt;}
.ws1a{word-spacing:-13.278720pt;}
.ws75{word-spacing:-13.193600pt;}
.ws16{word-spacing:-13.065920pt;}
.ws70{word-spacing:-12.980800pt;}
.ws17{word-spacing:-12.895680pt;}
.ws29{word-spacing:-12.767040pt;}
.ws77{word-spacing:-12.725440pt;}
.ws6d{word-spacing:-12.682880pt;}
.ws23{word-spacing:-12.617280pt;}
.ws28{word-spacing:-12.579840pt;}
.ws15{word-spacing:-12.555200pt;}
.ws8f{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws2a{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1d{word-spacing:-11.718720pt;}
.ws18{word-spacing:-11.661440pt;}
.ws6f{word-spacing:-11.576320pt;}
.ws12{word-spacing:-11.424000pt;}
.ws1b{word-spacing:-11.363520pt;}
.ws7e{word-spacing:-11.344320pt;}
.ws8e{word-spacing:-11.235840pt;}
.ws19{word-spacing:-11.120000pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws13{word-spacing:-10.976000pt;}
.ws26{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws24{word-spacing:-10.895040pt;}
.ws11{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.707840pt;}
.ws25{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws2c{word-spacing:-10.554880pt;}
.ws31{word-spacing:-10.408320pt;}
.ws27{word-spacing:-10.296000pt;}
.ws2e{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws32{word-spacing:-9.921600pt;}
.ws2b{word-spacing:-9.916480pt;}
.ws34{word-spacing:-9.788800pt;}
.ws10{word-spacing:-9.728000pt;}
.ws7f{word-spacing:-9.622080pt;}
.ws2d{word-spacing:-9.618560pt;}
.ws33{word-spacing:-9.490880pt;}
.wsf{word-spacing:-9.472000pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws84{word-spacing:-2.583360pt;}
.ws82{word-spacing:-2.030080pt;}
.ws83{word-spacing:-1.995520pt;}
.ws79{word-spacing:-1.618560pt;}
.ws7c{word-spacing:-1.561920pt;}
.ws3c{word-spacing:-1.408000pt;}
.ws3f{word-spacing:-1.280000pt;}
.ws68{word-spacing:-1.191680pt;}
.ws59{word-spacing:-1.123200pt;}
.ws44{word-spacing:-1.040000pt;}
.ws41{word-spacing:-1.024000pt;}
.ws61{word-spacing:-0.936000pt;}
.ws3a{word-spacing:-0.864000pt;}
.ws4e{word-spacing:-0.823680pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws53{word-spacing:-0.720000pt;}
.ws6a{word-spacing:-0.668160pt;}
.ws62{word-spacing:-0.638400pt;}
.ws55{word-spacing:-0.636480pt;}
.ws42{word-spacing:-0.544000pt;}
.ws43{word-spacing:-0.510720pt;}
.ws4c{word-spacing:-0.449280pt;}
.ws66{word-spacing:-0.425600pt;}
.ws65{word-spacing:-0.340480pt;}
.ws40{word-spacing:-0.288000pt;}
.ws5f{word-spacing:-0.262080pt;}
.ws4d{word-spacing:-0.187200pt;}
.ws48{word-spacing:-0.170240pt;}
.ws58{word-spacing:-0.149760pt;}
.ws7b{word-spacing:-0.114880pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws67{word-spacing:-0.085120pt;}
.ws6b{word-spacing:-0.080320pt;}
.ws8b{word-spacing:-0.043840pt;}
.ws64{word-spacing:-0.042560pt;}
.ws54{word-spacing:-0.037440pt;}
.ws35{word-spacing:0.000000pt;}
.ws63{word-spacing:0.042560pt;}
.ws5e{word-spacing:0.074880pt;}
.ws47{word-spacing:0.127680pt;}
.ws57{word-spacing:0.149760pt;}
.ws80{word-spacing:0.212800pt;}
.ws36{word-spacing:0.224000pt;}
.ws4f{word-spacing:0.255360pt;}
.ws38{word-spacing:0.288000pt;}
.ws4a{word-spacing:0.297920pt;}
.ws4b{word-spacing:0.340480pt;}
.ws85{word-spacing:0.353280pt;}
.ws60{word-spacing:0.374400pt;}
.ws50{word-spacing:0.383040pt;}
.ws49{word-spacing:0.425600pt;}
.ws45{word-spacing:0.468160pt;}
.ws37{word-spacing:0.480000pt;}
.ws81{word-spacing:0.510720pt;}
.ws39{word-spacing:0.704000pt;}
.ws3e{word-spacing:0.736000pt;}
.ws46{word-spacing:0.800000pt;}
.ws69{word-spacing:0.906560pt;}
.ws96{word-spacing:1.064000pt;}
.ws51{word-spacing:1.106560pt;}
.ws56{word-spacing:1.160640pt;}
.ws91{word-spacing:1.532160pt;}
.ws5a{word-spacing:1.574720pt;}
.ws89{word-spacing:1.659840pt;}
.ws8a{word-spacing:1.702400pt;}
.ws52{word-spacing:1.744960pt;}
.ws97{word-spacing:1.787520pt;}
.ws95{word-spacing:1.800320pt;}
.ws5c{word-spacing:1.915200pt;}
.ws78{word-spacing:2.169280pt;}
.ws94{word-spacing:2.211840pt;}
.ws5b{word-spacing:2.213120pt;}
.ws86{word-spacing:2.268480pt;}
.ws92{word-spacing:2.765120pt;}
.ws87{word-spacing:2.856320pt;}
.ws72{word-spacing:3.162240pt;}
.ws88{word-spacing:3.715520pt;}
.ws71{word-spacing:4.736960pt;}
.ws76{word-spacing:4.771520pt;}
.ws8d{word-spacing:5.999680pt;}
.ws74{word-spacing:6.042240pt;}
.ws73{word-spacing:7.616960pt;}
.ws93{word-spacing:9.830080pt;}
.ws7a{word-spacing:10.851520pt;}
._8{margin-left:-5.279040pt;}
._9{margin-left:-4.294720pt;}
._3{margin-left:-2.693760pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._b{width:3.355200pt;}
._a{width:4.380480pt;}
._c{width:9.631360pt;}
._4{width:46.720000pt;}
._5{width:50.082240pt;}
._6{width:194.789760pt;}
._7{width:1646.845440pt;}
.fs8{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.440000pt;}
.y0{bottom:0.000000pt;}
.y1b2{bottom:22.930213pt;}
.y88{bottom:22.933467pt;}
.y156{bottom:22.936693pt;}
.y98{bottom:35.734800pt;}
.yfa{bottom:52.453467pt;}
.yd0{bottom:54.884267pt;}
.y40{bottom:56.671280pt;}
.y155{bottom:60.453467pt;}
.y187{bottom:61.706533pt;}
.y134{bottom:63.678533pt;}
.ycf{bottom:65.288000pt;}
.y3f{bottom:67.388480pt;}
.yf9{bottom:71.893467pt;}
.y186{bottom:72.106667pt;}
.y133{bottom:74.080000pt;}
.y1b1{bottom:78.715733pt;}
.y154{bottom:79.893467pt;}
.y3e{bottom:89.543600pt;}
.yf8{bottom:91.413333pt;}
.yce{bottom:91.416000pt;}
.y1c{bottom:97.521200pt;}
.y1b0{bottom:98.235733pt;}
.y185{bottom:99.030933pt;}
.y153{bottom:99.413333pt;}
.y132{bottom:100.208000pt;}
.y33{bottom:101.466693pt;}
.ycd{bottom:101.816000pt;}
.y1b{bottom:107.921200pt;}
.y184{bottom:109.430933pt;}
.y131{bottom:110.608000pt;}
.yf7{bottom:110.853333pt;}
.y3d{bottom:112.259867pt;}
.y1af{bottom:117.675733pt;}
.y152{bottom:118.853333pt;}
.y32{bottom:120.905973pt;}
.ycc{bottom:122.168000pt;}
.y3c{bottom:122.977067pt;}
.yf6{bottom:126.293333pt;}
.y183{bottom:128.030400pt;}
.y130{bottom:129.208000pt;}
.y1ae{bottom:133.115733pt;}
.y151{bottom:134.293333pt;}
.y1a{bottom:134.845467pt;}
.ycb{bottom:138.168000pt;}
.y3b{bottom:140.368000pt;}
.y31{bottom:142.185973pt;}
.y19{bottom:145.245467pt;}
.y182{bottom:145.310400pt;}
.y12f{bottom:146.488000pt;}
.yca{bottom:154.088000pt;}
.yf5{bottom:154.878667pt;}
.y87{bottom:156.227867pt;}
.y30{bottom:158.028933pt;}
.y181{bottom:160.910400pt;}
.y1ad{bottom:161.704640pt;}
.y12e{bottom:162.088000pt;}
.y150{bottom:162.881867pt;}
.y18{bottom:163.844933pt;}
.y86{bottom:169.747733pt;}
.y17{bottom:181.124933pt;}
.y85{bottom:181.827733pt;}
.y2f{bottom:184.261760pt;}
.y16{bottom:196.724800pt;}
.y84{bottom:197.187867pt;}
.y2e{bottom:197.625600pt;}
.yc9{bottom:198.622533pt;}
.yf4{bottom:202.907627pt;}
.y12d{bottom:207.416533pt;}
.yc8{bottom:209.018133pt;}
.y83{bottom:210.787867pt;}
.y14f{bottom:211.719467pt;}
.y1ac{bottom:212.372320pt;}
.yf3{bottom:216.271467pt;}
.y12c{bottom:217.820267pt;}
.y82{bottom:222.867867pt;}
.y160{bottom:225.298133pt;}
.yf2{bottom:227.951600pt;}
.y14e{bottom:231.239467pt;}
.y1ab{bottom:231.407280pt;}
.yf1{bottom:235.151467pt;}
.y81{bottom:235.347867pt;}
.y15f{bottom:235.698133pt;}
.yc7{bottom:235.946133pt;}
.y12b{bottom:243.948267pt;}
.y80{bottom:246.067867pt;}
.yc6{bottom:246.346133pt;}
.y1aa{bottom:247.888640pt;}
.y14d{bottom:250.679467pt;}
.y12a{bottom:254.348267pt;}
.yf0{bottom:254.592827pt;}
.y2d{bottom:256.681067pt;}
.y3a{bottom:259.487147pt;}
.y15e{bottom:261.828133pt;}
.yc5{bottom:264.946133pt;}
.y15{bottom:265.083200pt;}
.y14c{bottom:266.119467pt;}
.y1a9{bottom:269.168640pt;}
.yef{bottom:270.031467pt;}
.y2c{bottom:270.201067pt;}
.y15d{bottom:272.228133pt;}
.y129{bottom:274.700267pt;}
.y14{bottom:275.483333pt;}
.y7f{bottom:275.722667pt;}
.y2b{bottom:281.481067pt;}
.yc4{bottom:282.226133pt;}
.y1a8{bottom:285.011600pt;}
.y7e{bottom:288.202800pt;}
.y128{bottom:290.700267pt;}
.y15c{bottom:291.787600pt;}
.y14b{bottom:294.159760pt;}
.y2a{bottom:295.001067pt;}
.yc3{bottom:297.826267pt;}
.yee{bottom:298.620400pt;}
.y7d{bottom:298.922667pt;}
.y13{bottom:301.613467pt;}
.y29{bottom:306.281067pt;}
.y127{bottom:306.620267pt;}
.y14a{bottom:307.523600pt;}
.y15b{bottom:307.787600pt;}
.y1a7{bottom:311.246267pt;}
.y12{bottom:312.013467pt;}
.y7c{bottom:312.202800pt;}
.y28{bottom:319.801067pt;}
.y7b{bottom:322.922667pt;}
.y15a{bottom:323.707600pt;}
.y1a6{bottom:324.610107pt;}
.y27{bottom:331.081067pt;}
.y11{bottom:332.366933pt;}
.y7a{bottom:336.202800pt;}
.yed{bottom:343.018160pt;}
.y26{bottom:344.921067pt;}
.y79{bottom:346.922667pt;}
.y1f7{bottom:348.317067pt;}
.y10{bottom:348.366933pt;}
.y126{bottom:349.566400pt;}
.y1d8{bottom:350.747867pt;}
.yec{bottom:356.382000pt;}
.y25{bottom:356.921067pt;}
.y125{bottom:359.970133pt;}
.y1d7{bottom:361.147733pt;}
.yf{bottom:364.286933pt;}
.y24{bottom:365.081067pt;}
.y78{bottom:365.107733pt;}
.y149{bottom:366.575600pt;}
.y1f6{bottom:367.756933pt;}
.ya7{bottom:368.566933pt;}
.y1a5{bottom:372.958267pt;}
.y180{bottom:375.389333pt;}
.y93{bottom:375.990267pt;}
.yeb{bottom:376.383280pt;}
.ya6{bottom:378.968533pt;}
.y39{bottom:383.853467pt;}
.y17f{bottom:385.789333pt;}
.y148{bottom:386.095600pt;}
.y124{bottom:386.098133pt;}
.y1f5{bottom:387.276933pt;}
.y1d6{bottom:388.072133pt;}
.yea{bottom:389.662000pt;}
.y1a4{bottom:392.398267pt;}
.y38{bottom:394.570667pt;}
.y123{bottom:396.498133pt;}
.y91{bottom:397.830133pt;}
.y1d5{bottom:398.472133pt;}
.ya5{bottom:405.096533pt;}
.y147{bottom:405.535600pt;}
.y1f4{bottom:406.717067pt;}
.ye9{bottom:409.658160pt;}
.y1a3{bottom:411.918400pt;}
.y17e{bottom:411.919467pt;}
.ya4{bottom:415.496533pt;}
.y122{bottom:416.850133pt;}
.y1d4{bottom:417.071600pt;}
.y8f{bottom:419.670267pt;}
.y146{bottom:420.975600pt;}
.y1f3{bottom:422.156933pt;}
.y17d{bottom:422.319467pt;}
.ye8{bottom:423.022000pt;}
.y37{bottom:427.076800pt;}
.y23{bottom:428.009200pt;}
.y1a2{bottom:431.358267pt;}
.ye{bottom:432.645467pt;}
.y121{bottom:432.850133pt;}
.ya3{bottom:434.096533pt;}
.y1d3{bottom:434.351600pt;}
.ye7{bottom:439.182000pt;}
.y8d{bottom:441.590267pt;}
.y17c{bottom:442.673067pt;}
.yd{bottom:443.045467pt;}
.y1a1{bottom:446.798267pt;}
.y120{bottom:448.770133pt;}
.y145{bottom:449.566933pt;}
.y1d2{bottom:449.951600pt;}
.y1f2{bottom:450.747707pt;}
.ya2{bottom:451.376533pt;}
.y22{bottom:452.569200pt;}
.y17b{bottom:458.673067pt;}
.y36{bottom:461.197867pt;}
.ya1{bottom:466.976667pt;}
.ye6{bottom:467.767947pt;}
.yc{bottom:469.175600pt;}
.y17a{bottom:474.592933pt;}
.y1a0{bottom:475.384773pt;}
.y21{bottom:477.129200pt;}
.y35{bottom:477.558400pt;}
.yb{bottom:479.575600pt;}
.y8c{bottom:481.120000pt;}
.y34{bottom:488.278400pt;}
.y11f{bottom:491.716400pt;}
.y20{bottom:497.849200pt;}
.ya{bottom:499.135067pt;}
.y1f1{bottom:499.202267pt;}
.y1d1{bottom:501.633200pt;}
.y11e{bottom:502.112000pt;}
.y77{bottom:505.514800pt;}
.y144{bottom:508.725333pt;}
.y1f{bottom:511.689200pt;}
.y1d0{bottom:512.033200pt;}
.y9{bottom:515.135067pt;}
.ye5{bottom:515.456427pt;}
.y76{bottom:516.154800pt;}
.y1f0{bottom:518.642400pt;}
.y179{bottom:519.127467pt;}
.y19f{bottom:522.296533pt;}
.y1e{bottom:523.689200pt;}
.yc2{bottom:525.011333pt;}
.y75{bottom:526.794800pt;}
.y143{bottom:528.245333pt;}
.ye4{bottom:528.820267pt;}
.y11d{bottom:529.040000pt;}
.y178{bottom:529.527467pt;}
.y8{bottom:531.055067pt;}
.y1d{bottom:531.849067pt;}
.yc1{bottom:535.415067pt;}
.y74{bottom:537.514800pt;}
.y1ef{bottom:538.162267pt;}
.y1cf{bottom:538.163333pt;}
.y11c{bottom:539.440000pt;}
.y19e{bottom:541.736533pt;}
.y142{bottom:547.685333pt;}
.y1ce{bottom:548.563333pt;}
.ye3{bottom:548.821547pt;}
.y73{bottom:554.273547pt;}
.y177{bottom:556.451600pt;}
.y1ee{bottom:557.602400pt;}
.y11b{bottom:559.000000pt;}
.y19d{bottom:561.012693pt;}
.yc0{bottom:561.543067pt;}
.ye2{bottom:562.100267pt;}
.y141{bottom:563.125333pt;}
.y72{bottom:564.915867pt;}
.y176{bottom:566.851600pt;}
.y1cd{bottom:568.916933pt;}
.ybf{bottom:571.943067pt;}
.y1ed{bottom:573.042267pt;}
.ye1{bottom:573.780267pt;}
.y19c{bottom:574.376533pt;}
.y4e{bottom:574.795333pt;}
.y11a{bottom:575.000000pt;}
.y71{bottom:575.633067pt;}
.ye0{bottom:580.980267pt;}
.y1cc{bottom:584.916933pt;}
.y4d{bottom:585.190933pt;}
.y175{bottom:585.451200pt;}
.y19b{bottom:590.536533pt;}
.y119{bottom:590.920000pt;}
.y70{bottom:591.435733pt;}
.y140{bottom:591.709467pt;}
.ybe{bottom:592.295067pt;}
.y64{bottom:595.753067pt;}
.ydf{bottom:596.420267pt;}
.y1cb{bottom:600.836933pt;}
.y1ec{bottom:601.634080pt;}
.y174{bottom:602.731200pt;}
.y6f{bottom:608.274267pt;}
.ybd{bottom:608.295067pt;}
.y4c{bottom:612.118933pt;}
.y173{bottom:618.331200pt;}
.y6e{bottom:618.914267pt;}
.y19a{bottom:619.121733pt;}
.y63{bottom:620.313067pt;}
.y4b{bottom:622.518933pt;}
.ybc{bottom:624.215067pt;}
.yde{bottom:625.004720pt;}
.y6d{bottom:629.635867pt;}
.y13f{bottom:639.376667pt;}
.y4a{bottom:641.118933pt;}
.y118{bottom:641.807467pt;}
.y62{bottom:644.873067pt;}
.y6c{bottom:645.435547pt;}
.y1eb{bottom:649.439600pt;}
.y117{bottom:652.203200pt;}
.y49{bottom:658.398933pt;}
.y13e{bottom:658.816667pt;}
.y6b{bottom:661.319467pt;}
.y172{bottom:663.659733pt;}
.y1bf{bottom:664.430533pt;}
.y61{bottom:665.593067pt;}
.y199{bottom:667.150693pt;}
.ybb{bottom:668.749467pt;}
.y1ea{bottom:668.959600pt;}
.ydd{bottom:673.278400pt;}
.y48{bottom:673.998933pt;}
.y171{bottom:674.059600pt;}
.y60{bottom:674.793067pt;}
.y1be{bottom:674.830533pt;}
.y6a{bottom:677.923333pt;}
.y13d{bottom:678.336667pt;}
.y116{bottom:679.131200pt;}
.yba{bottom:679.145067pt;}
.y198{bottom:680.514533pt;}
.y1e9{bottom:688.240747pt;}
.y69{bottom:689.363333pt;}
.y115{bottom:689.531200pt;}
.y197{bottom:692.194533pt;}
.ydc{bottom:692.559680pt;}
.y13c{bottom:697.776667pt;}
.y196{bottom:699.394533pt;}
.y170{bottom:700.189733pt;}
.y1e8{bottom:701.519467pt;}
.y1bd{bottom:701.754800pt;}
.y68{bottom:705.363333pt;}
.ydb{bottom:705.838400pt;}
.yb9{bottom:706.073067pt;}
.y114{bottom:708.131200pt;}
.y16f{bottom:710.589733pt;}
.y1bc{bottom:712.154800pt;}
.y1e7{bottom:713.199600pt;}
.y13b{bottom:713.216667pt;}
.yb8{bottom:716.473067pt;}
.yda{bottom:717.518400pt;}
.y195{bottom:718.834533pt;}
.y1e6{bottom:720.399467pt;}
.y67{bottom:720.563333pt;}
.yd9{bottom:724.718400pt;}
.y113{bottom:725.411200pt;}
.y5e{bottom:727.865307pt;}
.y16e{bottom:729.189200pt;}
.y66{bottom:731.283467pt;}
.y1bb{bottom:731.714400pt;}
.y194{bottom:734.274533pt;}
.yb7{bottom:735.073067pt;}
.y1e5{bottom:735.839600pt;}
.yd8{bottom:740.158533pt;}
.y112{bottom:741.011200pt;}
.y5d{bottom:741.144027pt;}
.y13a{bottom:741.808000pt;}
.y16d{bottom:746.469200pt;}
.y1ba{bottom:747.714400pt;}
.yb6{bottom:752.353067pt;}
.y5c{bottom:754.507867pt;}
.y16c{bottom:762.069333pt;}
.y193{bottom:762.856133pt;}
.y1b9{bottom:763.634400pt;}
.y65{bottom:763.789467pt;}
.y1e4{bottom:764.429547pt;}
.y5b{bottom:767.871707pt;}
.yb5{bottom:767.953067pt;}
.yd7{bottom:768.750800pt;}
.y97{bottom:769.280000pt;}
.y5a{bottom:781.150427pt;}
.y5f{bottom:784.596800pt;}
.y111{bottom:784.751467pt;}
.y59{bottom:794.514267pt;}
.y110{bottom:795.153067pt;}
.y139{bottom:800.966400pt;}
.y96{bottom:805.014800pt;}
.y16b{bottom:807.397733pt;}
.y58{bottom:807.878107pt;}
.y1e3{bottom:811.320027pt;}
.y192{bottom:811.683093pt;}
.yb4{bottom:813.281600pt;}
.yd6{bottom:816.790400pt;}
.y16a{bottom:817.797733pt;}
.y138{bottom:820.486400pt;}
.y1ca{bottom:820.874800pt;}
.y57{bottom:821.156827pt;}
.y10f{bottom:821.281067pt;}
.yb3{bottom:823.683200pt;}
.y1e2{bottom:824.683867pt;}
.y191{bottom:825.046933pt;}
.y95{bottom:828.632293pt;}
.y1c9{bottom:831.274800pt;}
.y10e{bottom:831.681067pt;}
.y56{bottom:834.520667pt;}
.y1e1{bottom:836.283867pt;}
.yd5{bottom:836.310400pt;}
.y190{bottom:836.726933pt;}
.y137{bottom:839.926400pt;}
.y1e0{bottom:843.483867pt;}
.y18f{bottom:843.926933pt;}
.y169{bottom:843.928000pt;}
.y94{bottom:845.190133pt;}
.yb2{bottom:849.811200pt;}
.y10d{bottom:850.281067pt;}
.y168{bottom:854.328000pt;}
.y136{bottom:855.366400pt;}
.y55{bottom:855.526107pt;}
.yd4{bottom:855.750400pt;}
.y1c8{bottom:858.199067pt;}
.yb1{bottom:860.211200pt;}
.y1df{bottom:862.760027pt;}
.y47{bottom:863.065600pt;}
.y18e{bottom:863.366933pt;}
.y92{bottom:867.030133pt;}
.y10c{bottom:867.561067pt;}
.y1c7{bottom:868.599067pt;}
.y54{bottom:868.804827pt;}
.yd3{bottom:871.190533pt;}
.y46{bottom:873.469333pt;}
.y167{bottom:874.681600pt;}
.y1de{bottom:876.123867pt;}
.y18d{bottom:878.806933pt;}
.yb0{bottom:878.811200pt;}
.y53{bottom:882.168667pt;}
.y10b{bottom:883.161067pt;}
.y135{bottom:883.955200pt;}
.y1c6{bottom:887.198533pt;}
.y90{bottom:888.870133pt;}
.y166{bottom:890.681600pt;}
.y1dd{bottom:892.284000pt;}
.yaf{bottom:896.091200pt;}
.yd2{bottom:899.228160pt;}
.y45{bottom:899.597333pt;}
.y52{bottom:903.171040pt;}
.y1c5{bottom:904.478533pt;}
.y165{bottom:906.601600pt;}
.y18c{bottom:907.397013pt;}
.y44{bottom:909.997333pt;}
.y8e{bottom:910.790267pt;}
.yae{bottom:911.691200pt;}
.yd1{bottom:912.592000pt;}
.y51{bottom:916.449760pt;}
.y1c4{bottom:920.078667pt;}
.y1dc{bottom:920.867627pt;}
.y10a{bottom:926.901467pt;}
.y50{bottom:929.813600pt;}
.y43{bottom:930.349333pt;}
.y8b{bottom:932.630267pt;}
.yad{bottom:933.706533pt;}
.y104{bottom:934.287067pt;}
.y109{bottom:937.304000pt;}
.ya0{bottom:941.057333pt;}
.yac{bottom:944.109333pt;}
.y42{bottom:946.349333pt;}
.y8a{bottom:951.563333pt;}
.y103{bottom:953.726933pt;}
.y18b{bottom:955.436613pt;}
.y9f{bottom:960.497333pt;}
.y164{bottom:961.459733pt;}
.y41{bottom:962.269467pt;}
.y4f{bottom:963.063600pt;}
.y108{bottom:963.432000pt;}
.y1c3{bottom:963.818800pt;}
.y89{bottom:966.683333pt;}
.y1db{bottom:970.141467pt;}
.yab{bottom:970.237333pt;}
.y163{bottom:971.859733pt;}
.y102{bottom:973.166933pt;}
.y107{bottom:973.832000pt;}
.y1c2{bottom:974.218800pt;}
.y18a{bottom:974.961013pt;}
.y9e{bottom:979.937200pt;}
.yaa{bottom:980.637333pt;}
.y1da{bottom:989.581467pt;}
.y189{bottom:994.400293pt;}
.y106{bottom:995.920000pt;}
.y7{bottom:996.267067pt;}
.y162{bottom:997.989867pt;}
.y9d{bottom:999.457333pt;}
.y1c1{bottom:1000.348933pt;}
.ya9{bottom:1002.725333pt;}
.y6{bottom:1007.147067pt;}
.y101{bottom:1008.127147pt;}
.y161{bottom:1008.389867pt;}
.y1d9{bottom:1009.021600pt;}
.y188{bottom:1009.838933pt;}
.y1c0{bottom:1010.748933pt;}
.y105{bottom:1011.760000pt;}
.ya8{bottom:1018.565333pt;}
.y1f9{bottom:1020.479867pt;}
.y1b5{bottom:1020.776000pt;}
.y1fb{bottom:1025.564453pt;}
.y9c{bottom:1027.137333pt;}
.y1b8{bottom:1027.618240pt;}
.y100{bottom:1033.166933pt;}
.y9b{bottom:1034.577333pt;}
.y157{bottom:1037.360000pt;}
.y1b4{bottom:1037.520000pt;}
.yfd{bottom:1037.560000pt;}
.y1f8{bottom:1037.759867pt;}
.y5{bottom:1040.067733pt;}
.y1b7{bottom:1040.896960pt;}
.y3{bottom:1042.270933pt;}
.yfc{bottom:1049.061467pt;}
.y2{bottom:1052.031067pt;}
.y1b3{bottom:1053.360000pt;}
.y1fa{bottom:1054.154133pt;}
.y1b6{bottom:1054.260800pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.yfb{bottom:1068.701467pt;}
.y1fd{bottom:1082.531013pt;}
.yff{bottom:1082.531787pt;}
.y9a{bottom:1082.533547pt;}
.y159{bottom:1082.533573pt;}
.y1fc{bottom:1095.330933pt;}
.yfe{bottom:1095.331707pt;}
.y99{bottom:1095.333467pt;}
.y158{bottom:1095.333493pt;}
.h15{height:18.402656pt;}
.h5{height:22.171875pt;}
.he{height:25.941094pt;}
.h11{height:27.714844pt;}
.h14{height:29.488594pt;}
.h7{height:31.484062pt;}
.h2{height:34.144000pt;}
.h6{height:37.027031pt;}
.h12{height:39.048750pt;}
.h8{height:39.948480pt;}
.ha{height:39.951893pt;}
.hd{height:41.718750pt;}
.h1{height:42.680000pt;}
.hf{height:44.388750pt;}
.h4{height:45.411520pt;}
.h9{height:51.216000pt;}
.h3{height:53.947520pt;}
.h13{height:78.400000pt;}
.hc{height:101.067657pt;}
.hb{height:101.079923pt;}
.h10{height:642.880000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:34.693333pt;}
.x16{left:42.640000pt;}
.x4{left:45.877733pt;}
.xf{left:47.528000pt;}
.x15{left:51.437333pt;}
.x17{left:53.962000pt;}
.xb{left:64.204800pt;}
.xd{left:69.763733pt;}
.x10{left:76.915680pt;}
.xc{left:78.478800pt;}
.x19{left:80.000000pt;}
.x13{left:86.912133pt;}
.x11{left:89.617067pt;}
.x12{left:102.323200pt;}
.x18{left:141.642000pt;}
.x1{left:155.691467pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x1b{left:288.666667pt;}
.x8{left:295.674800pt;}
.x7{left:297.034800pt;}
.x1c{left:300.154800pt;}
.x9{left:301.754800pt;}
.xa{left:312.893520pt;}
.xe{left:363.742000pt;}
.x1a{left:423.626667pt;}
.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; }
  