
    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_a7fc099ab16904551d93ded2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_6fe09c95a6b10aa3cc77abed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.151000;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_3c7b363c18a440caf01bf1ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982000;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_07953d3a2536523de998bc0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_6fe09c95a6b10aa3cc77abed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_3c04f1fabc5d547e23777675.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_a7fc099ab16904551d93ded2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_99b136887b5f829afb163edd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f6a8b9f5e09a27c8a5a58bfa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_edc682e1ae944ddaaed2dcf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.915000;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;}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,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);}
.v2{vertical-align:-19.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.928000px;}
.v3{vertical-align:19.500000px;}
.v4{vertical-align:21.510000px;}
.v5{vertical-align:34.017000px;}
.ls4{letter-spacing:-1.887000px;}
.ls5{letter-spacing:-0.969000px;}
.ls2{letter-spacing:-0.765000px;}
.ls7{letter-spacing:-0.594025px;}
.ls6{letter-spacing:-0.585000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.009900px;}
.ls1{letter-spacing:10.232700px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.263000px;}
.ws1{word-spacing:-14.098500px;}
.ws94{word-spacing:-13.209000px;}
.ws93{word-spacing:-12.291000px;}
.ws2f{word-spacing:-8.459100px;}
.ws2{word-spacing:-6.507000px;}
.wsee{word-spacing:-3.825000px;}
.wse5{word-spacing:-3.366000px;}
.wse0{word-spacing:-3.009000px;}
.wsda{word-spacing:-2.499000px;}
.wse1{word-spacing:-2.091000px;}
.wsf5{word-spacing:-2.040000px;}
.wsed{word-spacing:-1.887000px;}
.wsce{word-spacing:-1.632000px;}
.ws81{word-spacing:-1.345500px;}
.wsba{word-spacing:-1.287000px;}
.wscc{word-spacing:-1.275000px;}
.wsbb{word-spacing:-1.228500px;}
.ws8c{word-spacing:-1.170000px;}
.ws82{word-spacing:-1.111500px;}
.ws6b{word-spacing:-1.053000px;}
.ws38{word-spacing:-0.994500px;}
.wsc8{word-spacing:-0.969000px;}
.ws8f{word-spacing:-0.877500px;}
.ws91{word-spacing:-0.819000px;}
.ws7f{word-spacing:-0.760500px;}
.ws34{word-spacing:-0.643500px;}
.ws3b{word-spacing:-0.585000px;}
.ws77{word-spacing:-0.526500px;}
.wsd2{word-spacing:-0.510000px;}
.ws2d{word-spacing:-0.468000px;}
.wse4{word-spacing:-0.459000px;}
.ws11{word-spacing:-0.409500px;}
.ws4f{word-spacing:-0.292500px;}
.ws2c{word-spacing:-0.234000px;}
.wse3{word-spacing:-0.153000px;}
.wsbf{word-spacing:-0.117000px;}
.ws72{word-spacing:-0.058500px;}
.wsd4{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.wsf6{word-spacing:0.051000px;}
.wsb7{word-spacing:0.058500px;}
.ws2b{word-spacing:0.117000px;}
.wsbc{word-spacing:0.175500px;}
.wsfe{word-spacing:0.306000px;}
.wsbd{word-spacing:0.409500px;}
.wsd3{word-spacing:0.510000px;}
.wsef{word-spacing:0.561000px;}
.ws55{word-spacing:0.585000px;}
.ws86{word-spacing:0.643500px;}
.ws37{word-spacing:0.760500px;}
.wse8{word-spacing:0.765000px;}
.ws2e{word-spacing:0.810000px;}
.wsac{word-spacing:0.819000px;}
.ws44{word-spacing:0.877500px;}
.wsa3{word-spacing:0.969000px;}
.ws65{word-spacing:0.994500px;}
.ws7d{word-spacing:1.053000px;}
.wse2{word-spacing:1.071000px;}
.ws39{word-spacing:1.111500px;}
.ws8e{word-spacing:1.228500px;}
.ws57{word-spacing:1.345500px;}
.ws45{word-spacing:1.404000px;}
.ws1d{word-spacing:1.462500px;}
.ws5a{word-spacing:1.521000px;}
.ws66{word-spacing:1.579500px;}
.wsfd{word-spacing:1.632000px;}
.ws20{word-spacing:1.638000px;}
.wsc7{word-spacing:1.683000px;}
.ws46{word-spacing:1.696500px;}
.wsad{word-spacing:1.813500px;}
.wsa{word-spacing:1.872000px;}
.ws1f{word-spacing:1.930500px;}
.ws35{word-spacing:1.989000px;}
.wsf1{word-spacing:2.040000px;}
.ws26{word-spacing:2.047500px;}
.wsd8{word-spacing:2.091000px;}
.ws9{word-spacing:2.106000px;}
.ws41{word-spacing:2.164500px;}
.ws54{word-spacing:2.223000px;}
.ws30{word-spacing:2.281500px;}
.ws70{word-spacing:2.340000px;}
.wsc1{word-spacing:2.397000px;}
.ws51{word-spacing:2.398500px;}
.wsd5{word-spacing:2.448000px;}
.ws8b{word-spacing:2.457000px;}
.ws6a{word-spacing:2.515500px;}
.ws3e{word-spacing:2.632500px;}
.ws83{word-spacing:2.691000px;}
.ws3f{word-spacing:2.749500px;}
.ws87{word-spacing:2.808000px;}
.ws6f{word-spacing:2.866500px;}
.ws68{word-spacing:2.925000px;}
.ws19{word-spacing:2.983500px;}
.ws25{word-spacing:3.042000px;}
.ws4e{word-spacing:3.100500px;}
.ws3a{word-spacing:3.159000px;}
.ws36{word-spacing:3.217500px;}
.wscf{word-spacing:3.315000px;}
.ws56{word-spacing:3.334500px;}
.wsb2{word-spacing:3.393000px;}
.ws64{word-spacing:3.451500px;}
.wse6{word-spacing:3.468000px;}
.wsb1{word-spacing:3.510000px;}
.wsa0{word-spacing:3.627000px;}
.ws42{word-spacing:3.685500px;}
.ws15{word-spacing:3.744000px;}
.ws6c{word-spacing:3.802500px;}
.wsf0{word-spacing:3.825000px;}
.ws3c{word-spacing:3.861000px;}
.wsdc{word-spacing:3.876000px;}
.ws67{word-spacing:3.919500px;}
.wsdb{word-spacing:3.927000px;}
.wsd{word-spacing:3.978000px;}
.wsfc{word-spacing:4.029000px;}
.wsf{word-spacing:4.036500px;}
.ws4c{word-spacing:4.095000px;}
.wsc0{word-spacing:4.153500px;}
.wsaf{word-spacing:4.212000px;}
.ws12{word-spacing:4.270500px;}
.ws75{word-spacing:4.329000px;}
.ws6{word-spacing:4.387500px;}
.ws79{word-spacing:4.446000px;}
.wsb3{word-spacing:4.504500px;}
.ws89{word-spacing:4.621500px;}
.wsc6{word-spacing:4.641000px;}
.wsb5{word-spacing:4.680000px;}
.ws8d{word-spacing:4.738500px;}
.ws28{word-spacing:4.797000px;}
.ws16{word-spacing:4.914000px;}
.ws3d{word-spacing:4.972500px;}
.wscb{word-spacing:4.998000px;}
.ws32{word-spacing:5.031000px;}
.ws7c{word-spacing:5.089500px;}
.wse{word-spacing:5.148000px;}
.wsde{word-spacing:5.253000px;}
.ws1b{word-spacing:5.310000px;}
.ws4a{word-spacing:5.323500px;}
.wsec{word-spacing:5.355000px;}
.ws85{word-spacing:5.382000px;}
.ws73{word-spacing:5.440500px;}
.ws7a{word-spacing:5.499000px;}
.wse9{word-spacing:5.508000px;}
.ws90{word-spacing:5.557500px;}
.wsc{word-spacing:5.674500px;}
.ws53{word-spacing:5.733000px;}
.ws24{word-spacing:5.791500px;}
.wsc4{word-spacing:5.814000px;}
.ws33{word-spacing:5.908500px;}
.ws52{word-spacing:5.967000px;}
.ws84{word-spacing:6.025500px;}
.ws23{word-spacing:6.084000px;}
.ws76{word-spacing:6.201000px;}
.ws59{word-spacing:6.259500px;}
.ws18{word-spacing:6.318000px;}
.wsc9{word-spacing:6.324000px;}
.wsc5{word-spacing:6.375000px;}
.ws13{word-spacing:6.376500px;}
.wsdd{word-spacing:6.426000px;}
.ws6d{word-spacing:6.493500px;}
.wsb6{word-spacing:6.552000px;}
.ws1e{word-spacing:6.669000px;}
.ws5{word-spacing:6.727500px;}
.ws4b{word-spacing:6.844500px;}
.wsd9{word-spacing:6.885000px;}
.ws88{word-spacing:6.903000px;}
.wsa1{word-spacing:6.961500px;}
.wsf7{word-spacing:6.987000px;}
.ws58{word-spacing:7.020000px;}
.wsc3{word-spacing:7.089000px;}
.ws78{word-spacing:7.137000px;}
.wscd{word-spacing:7.140000px;}
.wsb0{word-spacing:7.195500px;}
.wsd0{word-spacing:7.242000px;}
.ws49{word-spacing:7.254000px;}
.ws5b{word-spacing:7.312500px;}
.wsb8{word-spacing:7.429500px;}
.wsfa{word-spacing:7.446000px;}
.ws74{word-spacing:7.488000px;}
.ws14{word-spacing:7.546500px;}
.wsfb{word-spacing:7.548000px;}
.ws21{word-spacing:7.605000px;}
.wsb4{word-spacing:7.663500px;}
.wsd1{word-spacing:7.701000px;}
.wseb{word-spacing:7.752000px;}
.ws69{word-spacing:7.839000px;}
.ws7{word-spacing:7.897500px;}
.ws71{word-spacing:7.956000px;}
.wsbe{word-spacing:8.073000px;}
.ws80{word-spacing:8.131500px;}
.ws1c{word-spacing:8.190000px;}
.ws9f{word-spacing:8.248500px;}
.wsa2{word-spacing:8.307000px;}
.ws60{word-spacing:8.365500px;}
.ws7b{word-spacing:8.424000px;}
.ws10{word-spacing:8.482500px;}
.ws22{word-spacing:8.599500px;}
.wsf8{word-spacing:8.721000px;}
.ws1a{word-spacing:8.833500px;}
.wsf2{word-spacing:8.874000px;}
.ws6e{word-spacing:9.243000px;}
.wsd6{word-spacing:9.282000px;}
.wsb{word-spacing:9.301500px;}
.ws8{word-spacing:9.418500px;}
.wsca{word-spacing:9.486000px;}
.ws2a{word-spacing:9.535500px;}
.ws7e{word-spacing:9.652500px;}
.ws5d{word-spacing:9.711000px;}
.wse7{word-spacing:9.894000px;}
.ws5c{word-spacing:10.003500px;}
.ws31{word-spacing:10.062000px;}
.wsf9{word-spacing:10.200000px;}
.ws5f{word-spacing:10.237500px;}
.ws4d{word-spacing:10.413000px;}
.ws63{word-spacing:10.530000px;}
.ws43{word-spacing:11.056500px;}
.ws29{word-spacing:11.232000px;}
.wsae{word-spacing:12.285000px;}
.wsc2{word-spacing:12.954000px;}
.ws61{word-spacing:12.987000px;}
.wsea{word-spacing:13.362000px;}
.ws40{word-spacing:13.572000px;}
.ws5e{word-spacing:13.923000px;}
.ws8a{word-spacing:14.449500px;}
.ws50{word-spacing:14.508000px;}
.ws48{word-spacing:14.859000px;}
.wsdf{word-spacing:15.912000px;}
.ws27{word-spacing:16.906500px;}
.ws47{word-spacing:17.140500px;}
.wsb9{word-spacing:17.491500px;}
.ws62{word-spacing:18.018000px;}
.ws4{word-spacing:18.837000px;}
.ws17{word-spacing:20.884500px;}
.wsf4{word-spacing:21.879000px;}
.wsd7{word-spacing:26.112000px;}
.wsf3{word-spacing:32.691000px;}
.wsa7{word-spacing:172.673250px;}
.wsa6{word-spacing:185.448750px;}
.wsa8{word-spacing:198.224250px;}
.wsab{word-spacing:203.426250px;}
.wsa5{word-spacing:206.699550px;}
.wsa4{word-spacing:226.575150px;}
.wsa9{word-spacing:259.730250px;}
.ws9c{word-spacing:262.903800px;}
.ws92{word-spacing:263.473050px;}
.wsaa{word-spacing:306.089250px;}
.ws9d{word-spacing:317.967750px;}
.ws96{word-spacing:367.948050px;}
.ws9b{word-spacing:380.570250px;}
.ws97{word-spacing:495.477750px;}
.ws95{word-spacing:546.986550px;}
.ws9a{word-spacing:552.097800px;}
.ws9e{word-spacing:560.193750px;}
.ws98{word-spacing:583.321500px;}
.ws99{word-spacing:644.559750px;}
._37{margin-left:-15.614100px;}
._55{margin-left:-7.956000px;}
._17{margin-left:-5.655900px;}
._51{margin-left:-3.809700px;}
._3{margin-left:-1.917600px;}
._6{width:1.922700px;}
._1{width:4.148100px;}
._5{width:5.760000px;}
._7{width:8.124300px;}
._2{width:9.438900px;}
._54{width:31.156800px;}
._52{width:33.075000px;}
._53{width:36.813300px;}
._50{width:55.739400px;}
._c{width:135.735750px;}
._b{width:137.652600px;}
._d{width:149.487600px;}
._16{width:151.333500px;}
._2a{width:161.287500px;}
._34{width:164.124450px;}
._4a{width:166.473000px;}
._36{width:173.607600px;}
._13{width:175.013100px;}
._18{width:176.891400px;}
._26{width:178.343850px;}
._1c{width:181.181400px;}
._12{width:186.837750px;}
._25{width:188.776650px;}
._2d{width:204.176400px;}
._1b{width:205.775550px;}
._2b{width:207.652950px;}
._1d{width:209.083050px;}
._20{width:210.960000px;}
._11{width:216.627450px;}
._10{width:218.531250px;}
._3f{width:229.462500px;}
._39{width:241.332750px;}
._48{width:243.142500px;}
._3c{width:247.124250px;}
._f{width:248.343000px;}
._4d{width:252.642750px;}
._3e{width:273.197250px;}
._9{width:282.390600px;}
._19{width:288.758850px;}
._45{width:296.169750px;}
._29{width:417.597000px;}
._43{width:424.469250px;}
._3d{width:430.482300px;}
._38{width:447.534000px;}
._14{width:459.171000px;}
._4b{width:461.352150px;}
._3b{width:464.385750px;}
._41{width:467.734350px;}
._40{width:473.949750px;}
._3a{width:476.778000px;}
._49{width:486.726750px;}
._4e{width:491.986050px;}
._28{width:513.384000px;}
._42{width:517.479750px;}
._23{width:526.235250px;}
._4c{width:530.153250px;}
._a{width:532.276500px;}
._46{width:540.659250px;}
._4f{width:543.438750px;}
._44{width:545.325750px;}
._27{width:558.745500px;}
._24{width:567.292350px;}
._33{width:587.486250px;}
._8{width:589.936350px;}
._47{width:607.851750px;}
._31{width:609.161250px;}
._30{width:627.011250px;}
._15{width:638.814750px;}
._e{width:664.169850px;}
._22{width:673.421250px;}
._32{width:677.195250px;}
._1f{width:699.840000px;}
._2c{width:704.582250px;}
._1a{width:712.539000px;}
._2f{width:731.000250px;}
._2e{width:768.740250px;}
._21{width:774.503250px;}
._1e{width:781.082250px;}
._35{width:858.921300px;}
._0{width:1011.655200px;}
._4{width:1017.289200px;}
.fc1{color:rgb(30,60,117);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.000000px;}
.fs7{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs4{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs3{font-size:58.500000px;}
.fsb{font-size:59.402469px;}
.fs2{font-size:67.500000px;}
.fs8{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:31.922250px;}
.y26{bottom:63.779550px;}
.y132{bottom:64.770000px;}
.y1c1{bottom:64.770150px;}
.y93{bottom:64.770750px;}
.y5b{bottom:75.029550px;}
.y25{bottom:77.226600px;}
.y191{bottom:81.796950px;}
.y131{bottom:81.841950px;}
.y1f5{bottom:81.891000px;}
.y92{bottom:81.973200px;}
.yfc{bottom:81.987450px;}
.yc6{bottom:82.021950px;}
.y1c0{bottom:82.025250px;}
.y12d{bottom:82.058100px;}
.y175{bottom:82.232100px;}
.y5a{bottom:86.279550px;}
.y59{bottom:97.529550px;}
.y190{bottom:98.823750px;}
.y130{bottom:98.914050px;}
.y91{bottom:99.175650px;}
.yfb{bottom:99.204300px;}
.y1bf{bottom:99.280650px;}
.y12c{bottom:99.345450px;}
.y174{bottom:99.694350px;}
.y1f4{bottom:103.850700px;}
.y24{bottom:104.015850px;}
.yc5{bottom:104.111850px;}
.y58{bottom:108.779550px;}
.y18f{bottom:115.850550px;}
.y12f{bottom:115.986000px;}
.y90{bottom:116.378100px;}
.yfa{bottom:116.421000px;}
.y1be{bottom:116.535900px;}
.y12b{bottom:116.632800px;}
.y1f3{bottom:120.971700px;}
.yc4{bottom:121.362900px;}
.y23{bottom:121.721400px;}
.y173{bottom:121.995150px;}
.y18e{bottom:132.877500px;}
.y12e{bottom:133.058100px;}
.y8f{bottom:133.580550px;}
.yf9{bottom:133.637550px;}
.y12a{bottom:133.920300px;}
.y1f2{bottom:138.092550px;}
.yc3{bottom:138.614100px;}
.y1bd{bottom:138.629850px;}
.y22{bottom:139.426950px;}
.y172{bottom:139.457400px;}
.y18d{bottom:149.904300px;}
.y8e{bottom:150.783000px;}
.yf8{bottom:150.854250px;}
.y129{bottom:151.207650px;}
.yc2{bottom:155.865150px;}
.y1bc{bottom:155.885100px;}
.y171{bottom:156.919500px;}
.y21{bottom:157.132500px;}
.y1f1{bottom:160.052250px;}
.y18c{bottom:166.931100px;}
.y8d{bottom:167.985450px;}
.yf7{bottom:168.071100px;}
.yc1{bottom:173.116350px;}
.y170{bottom:174.381600px;}
.y20{bottom:174.838050px;}
.y57{bottom:176.229750px;}
.y1f0{bottom:177.173100px;}
.y1bb{bottom:177.979050px;}
.y18b{bottom:183.958050px;}
.y8c{bottom:185.187900px;}
.yf6{bottom:185.287650px;}
.y128{bottom:185.503500px;}
.y56{bottom:188.979750px;}
.y157{bottom:189.931800px;}
.yc0{bottom:190.367400px;}
.y16f{bottom:191.843850px;}
.y1ef{bottom:194.294100px;}
.y1ba{bottom:195.234300px;}
.y1f{bottom:197.382300px;}
.y18a{bottom:200.984850px;}
.y8b{bottom:202.390350px;}
.yf5{bottom:202.504350px;}
.ybf{bottom:207.618600px;}
.y16e{bottom:209.305950px;}
.y1ee{bottom:211.415100px;}
.y156{bottom:211.685550px;}
.y1b9{bottom:212.489550px;}
.y55{bottom:215.071950px;}
.y1e{bottom:215.087850px;}
.y189{bottom:218.011800px;}
.y8a{bottom:219.592650px;}
.yf4{bottom:219.721050px;}
.y127{bottom:224.638050px;}
.ybe{bottom:224.869650px;}
.y16d{bottom:226.768050px;}
.y1b8{bottom:229.744800px;}
.y54{bottom:232.080450px;}
.y1d{bottom:232.793400px;}
.y1ed{bottom:233.374650px;}
.y155{bottom:233.439300px;}
.y188{bottom:235.038600px;}
.y89{bottom:236.795250px;}
.yf3{bottom:236.937900px;}
.y126{bottom:241.925400px;}
.ybd{bottom:242.120850px;}
.y16c{bottom:244.230300px;}
.y1b7{bottom:247.000050px;}
.y53{bottom:249.088950px;}
.y1ec{bottom:250.495650px;}
.y1c{bottom:250.498950px;}
.y187{bottom:252.065400px;}
.y88{bottom:253.997550px;}
.yf2{bottom:254.154450px;}
.y154{bottom:255.192900px;}
.y125{bottom:259.212750px;}
.y16b{bottom:261.692400px;}
.y52{bottom:266.097450px;}
.y1eb{bottom:267.616500px;}
.y1b{bottom:268.204500px;}
.y186{bottom:269.092350px;}
.y1b6{bottom:269.094150px;}
.yf1{bottom:271.371150px;}
.ybc{bottom:276.380400px;}
.y124{bottom:276.500250px;}
.y153{bottom:276.946650px;}
.y16a{bottom:279.154500px;}
.y51{bottom:283.105950px;}
.y1ea{bottom:284.737500px;}
.y1a{bottom:285.910050px;}
.y185{bottom:286.119150px;}
.y1b5{bottom:286.349400px;}
.yf0{bottom:288.587850px;}
.y87{bottom:288.794700px;}
.y123{bottom:293.787600px;}
.y169{bottom:296.616750px;}
.y152{bottom:298.700400px;}
.y1e9{bottom:301.858500px;}
.y184{bottom:303.146100px;}
.y1b4{bottom:303.604650px;}
.y19{bottom:303.615600px;}
.y50{bottom:304.953150px;}
.yef{bottom:305.804550px;}
.y86{bottom:305.997150px;}
.y122{bottom:311.074950px;}
.y168{bottom:314.078850px;}
.ybb{bottom:315.478800px;}
.y183{bottom:320.172900px;}
.y151{bottom:320.454150px;}
.y4f{bottom:321.961650px;}
.yee{bottom:323.021250px;}
.y85{bottom:323.199600px;}
.y1e8{bottom:323.818200px;}
.y1b3{bottom:325.698600px;}
.y18{bottom:326.159850px;}
.y121{bottom:328.362300px;}
.y167{bottom:331.540950px;}
.yba{bottom:332.729850px;}
.y4e{bottom:338.970150px;}
.yed{bottom:340.237950px;}
.y84{bottom:340.402050px;}
.y1e7{bottom:340.939050px;}
.y182{bottom:342.038550px;}
.y150{bottom:342.207900px;}
.y1b2{bottom:342.953850px;}
.y17{bottom:343.865400px;}
.y120{bottom:345.649650px;}
.y166{bottom:349.003200px;}
.yb9{bottom:349.981050px;}
.y4d{bottom:355.978650px;}
.yec{bottom:357.454650px;}
.y83{bottom:357.604500px;}
.y1e6{bottom:358.060050px;}
.y181{bottom:359.065350px;}
.y16{bottom:361.570950px;}
.y14f{bottom:363.961650px;}
.y165{bottom:366.465300px;}
.yb8{bottom:367.232100px;}
.y11f{bottom:367.775700px;}
.y4c{bottom:372.987150px;}
.yeb{bottom:374.671350px;}
.y82{bottom:374.806800px;}
.y1e5{bottom:375.180900px;}
.y180{bottom:376.092150px;}
.y1b1{bottom:377.217600px;}
.y15{bottom:379.276500px;}
.y164{bottom:383.927400px;}
.yb7{bottom:384.483300px;}
.y11e{bottom:385.063050px;}
.y14e{bottom:385.715400px;}
.y4b{bottom:389.995650px;}
.yea{bottom:391.888050px;}
.y81{bottom:392.009250px;}
.y17f{bottom:393.119100px;}
.y14{bottom:396.982050px;}
.y1e4{bottom:397.140600px;}
.y163{bottom:401.389650px;}
.yb6{bottom:401.734350px;}
.y11d{bottom:402.350400px;}
.y4a{bottom:407.004150px;}
.y14d{bottom:407.469150px;}
.ye9{bottom:409.104750px;}
.y80{bottom:409.211700px;}
.y17e{bottom:410.145900px;}
.y1e3{bottom:414.261450px;}
.y13{bottom:414.687600px;}
.y1b0{bottom:416.320050px;}
.y162{bottom:418.851750px;}
.yb5{bottom:418.985550px;}
.y11c{bottom:419.637750px;}
.y14c{bottom:424.477650px;}
.ye8{bottom:426.321450px;}
.y7f{bottom:426.414150px;}
.y17d{bottom:427.172850px;}
.y49{bottom:428.851350px;}
.y1e2{bottom:431.382450px;}
.y12{bottom:432.393150px;}
.y1af{bottom:433.575300px;}
.yb4{bottom:436.236600px;}
.y161{bottom:436.313850px;}
.y11b{bottom:436.925250px;}
.ye7{bottom:443.538150px;}
.y7e{bottom:443.616600px;}
.y17c{bottom:444.199650px;}
.y48{bottom:445.859850px;}
.y14b{bottom:446.231400px;}
.y1e1{bottom:448.503450px;}
.y148{bottom:448.603950px;}
.y11{bottom:450.098700px;}
.y160{bottom:453.776100px;}
.y11a{bottom:454.212600px;}
.yb3{bottom:458.326500px;}
.ye6{bottom:460.754850px;}
.y7d{bottom:460.819050px;}
.y17b{bottom:461.226450px;}
.y47{bottom:462.868350px;}
.y10{bottom:467.804250px;}
.y1ae{bottom:467.839050px;}
.y14a{bottom:467.985150px;}
.y1e0{bottom:470.463150px;}
.y15f{bottom:471.238200px;}
.y119{bottom:471.499950px;}
.yb2{bottom:475.577700px;}
.ye5{bottom:477.971550px;}
.y7c{bottom:478.021500px;}
.y17a{bottom:478.253400px;}
.y46{bottom:479.877000px;}
.y1df{bottom:487.584000px;}
.y15e{bottom:488.700300px;}
.y149{bottom:489.738900px;}
.yf{bottom:490.348500px;}
.yb1{bottom:492.828750px;}
.y118{bottom:493.626000px;}
.ye4{bottom:495.188250px;}
.y179{bottom:495.280200px;}
.y45{bottom:496.885500px;}
.y1de{bottom:504.705000px;}
.y1ad{bottom:506.941650px;}
.ye{bottom:508.054050px;}
.yb0{bottom:510.079950px;}
.y117{bottom:510.913350px;}
.y15d{bottom:511.001250px;}
.y147{bottom:511.492650px;}
.y178{bottom:512.307150px;}
.ye3{bottom:512.404950px;}
.y7b{bottom:512.818650px;}
.y44{bottom:513.893850px;}
.y1ac{bottom:524.196900px;}
.yd{bottom:525.759600px;}
.y1dd{bottom:526.664550px;}
.yaf{bottom:527.331000px;}
.y116{bottom:528.200850px;}
.y15c{bottom:528.463350px;}
.y177{bottom:529.333950px;}
.ye2{bottom:529.621650px;}
.y7a{bottom:530.020950px;}
.y43{bottom:530.902350px;}
.y146{bottom:533.246400px;}
.yc{bottom:543.465150px;}
.y1dc{bottom:543.785550px;}
.yae{bottom:544.582050px;}
.y115{bottom:545.488200px;}
.y15b{bottom:545.925450px;}
.y176{bottom:546.360750px;}
.y20f{bottom:546.708900px;}
.y79{bottom:547.223400px;}
.y42{bottom:547.911000px;}
.ye1{bottom:551.677050px;}
.y145{bottom:555.000150px;}
.y1ab{bottom:558.460650px;}
.y1db{bottom:560.906550px;}
.yb{bottom:561.170700px;}
.yad{bottom:561.833250px;}
.y114{bottom:562.775550px;}
.y15a{bottom:563.387700px;}
.y20e{bottom:563.717400px;}
.y78{bottom:564.425850px;}
.ye0{bottom:568.893750px;}
.y41{bottom:569.758200px;}
.y144{bottom:576.753900px;}
.y1da{bottom:578.027400px;}
.ya{bottom:578.876250px;}
.yac{bottom:579.084450px;}
.y113{bottom:580.062900px;}
.y20d{bottom:580.725900px;}
.y77{bottom:581.628300px;}
.ydf{bottom:586.110450px;}
.y40{bottom:586.766700px;}
.yab{bottom:596.335500px;}
.y112{bottom:597.350250px;}
.y1aa{bottom:597.563100px;}
.y20c{bottom:597.734400px;}
.y143{bottom:598.507650px;}
.y76{bottom:598.830750px;}
.y1d9{bottom:599.987100px;}
.yde{bottom:603.327150px;}
.y3f{bottom:603.775200px;}
.yaa{bottom:613.586700px;}
.y9{bottom:613.590300px;}
.y111{bottom:614.637600px;}
.y1a9{bottom:614.818350px;}
.y75{bottom:616.033200px;}
.y1d8{bottom:617.108100px;}
.y20b{bottom:619.581600px;}
.y142{bottom:620.261400px;}
.ydd{bottom:620.543850px;}
.y3e{bottom:620.783700px;}
.ya9{bottom:630.837750px;}
.y110{bottom:631.924950px;}
.y1a8{bottom:632.073600px;}
.y74{bottom:633.235650px;}
.y1d7{bottom:634.228950px;}
.y20a{bottom:636.590100px;}
.ydc{bottom:637.760550px;}
.y3d{bottom:637.792200px;}
.y141{bottom:642.015150px;}
.ya8{bottom:648.088950px;}
.y10f{bottom:649.212300px;}
.y1a7{bottom:649.328850px;}
.y73{bottom:650.438100px;}
.y8{bottom:653.407350px;}
.y209{bottom:653.598600px;}
.y3c{bottom:654.800700px;}
.ydb{bottom:654.977250px;}
.y1d6{bottom:656.188650px;}
.y140{bottom:663.768750px;}
.ya7{bottom:665.340000px;}
.y10e{bottom:666.499650px;}
.y1a6{bottom:666.584100px;}
.y208{bottom:670.607100px;}
.y7{bottom:671.112900px;}
.yda{bottom:672.193950px;}
.y72{bottom:672.479250px;}
.y1d5{bottom:673.309500px;}
.y10d{bottom:683.787000px;}
.y1a5{bottom:683.839350px;}
.y13f{bottom:685.522500px;}
.ya6{bottom:687.429900px;}
.y207{bottom:687.615600px;}
.y3b{bottom:688.817700px;}
.y6{bottom:688.818450px;}
.yd9{bottom:689.410650px;}
.y71{bottom:689.681700px;}
.y1d4{bottom:690.430500px;}
.y10c{bottom:701.074350px;}
.y1a4{bottom:701.094600px;}
.ya5{bottom:704.681100px;}
.yd8{bottom:706.627350px;}
.y70{bottom:706.884150px;}
.y13e{bottom:707.276250px;}
.y1d3{bottom:707.551500px;}
.y206{bottom:709.462800px;}
.y10b{bottom:718.361700px;}
.ya4{bottom:721.932150px;}
.y1a3{bottom:723.188550px;}
.yd7{bottom:723.844050px;}
.y6f{bottom:724.086600px;}
.y205{bottom:726.471300px;}
.y13d{bottom:729.030000px;}
.y1d2{bottom:729.511200px;}
.y3a{bottom:735.591000px;}
.y10a{bottom:735.649050px;}
.ya3{bottom:739.183200px;}
.y1a2{bottom:740.443950px;}
.yd6{bottom:741.060750px;}
.y6e{bottom:741.288900px;}
.y204{bottom:743.479950px;}
.y1d1{bottom:746.632050px;}
.y39{bottom:749.091000px;}
.y13c{bottom:750.783750px;}
.y109{bottom:752.936400px;}
.ya2{bottom:756.434400px;}
.y1a1{bottom:757.699200px;}
.yd5{bottom:758.277450px;}
.y6d{bottom:758.491350px;}
.y203{bottom:760.488300px;}
.y38{bottom:762.591000px;}
.y1d0{bottom:763.753050px;}
.y108{bottom:770.223750px;}
.y13b{bottom:772.537500px;}
.ya1{bottom:773.685450px;}
.y1a0{bottom:774.954300px;}
.yd4{bottom:775.494150px;}
.y6c{bottom:775.693800px;}
.y1cf{bottom:780.873900px;}
.y202{bottom:782.335650px;}
.y107{bottom:787.511100px;}
.ya0{bottom:790.936650px;}
.y19f{bottom:792.209700px;}
.yd3{bottom:792.710850px;}
.y6b{bottom:792.896250px;}
.y13a{bottom:794.291250px;}
.y201{bottom:799.344150px;}
.y1ce{bottom:802.833600px;}
.y106{bottom:804.798450px;}
.y9f{bottom:808.187850px;}
.y19e{bottom:809.464800px;}
.yd2{bottom:809.927550px;}
.y6a{bottom:810.098700px;}
.y30{bottom:812.049450px;}
.y139{bottom:816.045000px;}
.y200{bottom:816.352500px;}
.y1cd{bottom:819.954600px;}
.y105{bottom:822.085950px;}
.y9e{bottom:825.438900px;}
.y19d{bottom:826.720050px;}
.yd1{bottom:827.144250px;}
.y69{bottom:827.301150px;}
.y2f{bottom:830.424450px;}
.y1cc{bottom:837.075450px;}
.y138{bottom:837.798750px;}
.y1ff{bottom:838.199850px;}
.y2e{bottom:839.049450px;}
.y104{bottom:839.373300px;}
.y9d{bottom:842.689950px;}
.y19c{bottom:843.975300px;}
.yd0{bottom:844.360950px;}
.y68{bottom:844.503600px;}
.y1cb{bottom:854.196300px;}
.y1fe{bottom:855.208350px;}
.y103{bottom:856.660650px;}
.y2d{bottom:857.424450px;}
.y137{bottom:859.552500px;}
.y9c{bottom:859.941150px;}
.y19b{bottom:861.230550px;}
.ycf{bottom:861.577650px;}
.y67{bottom:861.706050px;}
.y2c{bottom:870.924450px;}
.y1fd{bottom:872.216850px;}
.y102{bottom:873.948000px;}
.y1ca{bottom:876.156000px;}
.y9b{bottom:877.192200px;}
.y19a{bottom:878.485800px;}
.yce{bottom:878.794350px;}
.y66{bottom:878.908500px;}
.y2b{bottom:879.549450px;}
.y136{bottom:881.306250px;}
.y1fc{bottom:889.225350px;}
.y101{bottom:891.235350px;}
.y1c9{bottom:893.276850px;}
.y9a{bottom:894.443400px;}
.y199{bottom:895.741050px;}
.ycd{bottom:896.011050px;}
.y65{bottom:896.110950px;}
.y2a{bottom:897.924450px;}
.y135{bottom:903.060000px;}
.y1fb{bottom:906.233850px;}
.y1c8{bottom:910.397850px;}
.y99{bottom:911.694450px;}
.y198{bottom:912.996300px;}
.ycc{bottom:913.227750px;}
.y64{bottom:913.313250px;}
.y134{bottom:924.813750px;}
.y100{bottom:925.531200px;}
.y1c7{bottom:927.518850px;}
.y1fa{bottom:928.081050px;}
.y98{bottom:928.945650px;}
.y197{bottom:930.251550px;}
.ycb{bottom:930.444450px;}
.y63{bottom:930.515850px;}
.y36{bottom:942.049200px;}
.y1c6{bottom:944.639700px;}
.y1f9{bottom:945.089550px;}
.y97{bottom:946.196850px;}
.y133{bottom:946.567500px;}
.y196{bottom:947.506800px;}
.yca{bottom:947.661150px;}
.y62{bottom:947.718150px;}
.y29{bottom:953.453250px;}
.y35{bottom:959.057700px;}
.y1f8{bottom:962.098050px;}
.y96{bottom:963.447900px;}
.yff{bottom:964.665900px;}
.y195{bottom:964.762050px;}
.yc9{bottom:964.877850px;}
.y61{bottom:964.920600px;}
.y1c5{bottom:966.599400px;}
.y34{bottom:976.066200px;}
.y1f7{bottom:979.106550px;}
.y95{bottom:980.698950px;}
.yfe{bottom:981.953250px;}
.y194{bottom:982.017300px;}
.yc8{bottom:982.094550px;}
.y60{bottom:982.123050px;}
.y1c4{bottom:983.720400px;}
.y28{bottom:985.853250px;}
.y159{bottom:990.112500px;}
.y33{bottom:993.074700px;}
.yfd{bottom:999.240600px;}
.y193{bottom:999.272700px;}
.yc7{bottom:999.311250px;}
.y5f{bottom:999.325500px;}
.y1c3{bottom:1000.841250px;}
.y1f6{bottom:1000.953750px;}
.y158{bottom:1007.121000px;}
.y32{bottom:1010.083200px;}
.y94{bottom:1014.958650px;}
.y192{bottom:1016.527800px;}
.y5e{bottom:1016.527950px;}
.y1c2{bottom:1017.962250px;}
.y27{bottom:1018.253100px;}
.y31{bottom:1027.091700px;}
.y4{bottom:1075.346550px;}
.y5d{bottom:1082.484150px;}
.y3{bottom:1092.355050px;}
.y37{bottom:1092.815250px;}
.y5c{bottom:1099.492650px;}
.y2{bottom:1139.917950px;}
.y1{bottom:1150.417950px;}
.hb{height:20.736000px;}
.h2{height:27.648000px;}
.h10{height:29.952000px;}
.hc{height:34.560000px;}
.h13{height:35.751000px;}
.hf{height:36.864000px;}
.h11{height:39.168000px;}
.h4{height:39.792000px;}
.h9{height:41.670000px;}
.h3{height:44.448000px;}
.h8{height:44.928000px;}
.hd{height:46.456800px;}
.h5{height:46.912500px;}
.h12{height:48.466800px;}
.h7{height:54.171000px;}
.h15{height:55.006687px;}
.h6{height:62.505000px;}
.h14{height:73.185000px;}
.ha{height:82.944000px;}
.he{height:83.340000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.039500px;}
.xb{left:91.039500px;}
.xd{left:97.411500px;}
.x10{left:103.795350px;}
.x9{left:110.551350px;}
.xc{left:176.078850px;}
.xe{left:182.450850px;}
.xf{left:257.841900px;}
.x1{left:271.038000px;}
.xa{left:272.125500px;}
.x7{left:288.669450px;}
.x4{left:355.816350px;}
.x5{left:459.211500px;}
.x6{left:484.723350px;}
.x2{left:636.979800px;}
.x3{left:671.061150px;}
.x11{left:680.607750px;}
.x12{left:738.905100px;}
.x13{left:753.105900px;}
.x14{left:787.605450px;}
@media print{
.v2{vertical-align:-17.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.602667pt;}
.v3{vertical-align:17.333333pt;}
.v4{vertical-align:19.120000pt;}
.v5{vertical-align:30.237333pt;}
.ls4{letter-spacing:-1.677333pt;}
.ls5{letter-spacing:-0.861333pt;}
.ls2{letter-spacing:-0.680000pt;}
.ls7{letter-spacing:-0.528022pt;}
.ls6{letter-spacing:-0.520000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.008800pt;}
.ls1{letter-spacing:9.095733pt;}
.ws0{word-spacing:-14.456000pt;}
.ws1{word-spacing:-12.532000pt;}
.ws94{word-spacing:-11.741333pt;}
.ws93{word-spacing:-10.925333pt;}
.ws2f{word-spacing:-7.519200pt;}
.ws2{word-spacing:-5.784000pt;}
.wsee{word-spacing:-3.400000pt;}
.wse5{word-spacing:-2.992000pt;}
.wse0{word-spacing:-2.674667pt;}
.wsda{word-spacing:-2.221333pt;}
.wse1{word-spacing:-1.858667pt;}
.wsf5{word-spacing:-1.813333pt;}
.wsed{word-spacing:-1.677333pt;}
.wsce{word-spacing:-1.450667pt;}
.ws81{word-spacing:-1.196000pt;}
.wsba{word-spacing:-1.144000pt;}
.wscc{word-spacing:-1.133333pt;}
.wsbb{word-spacing:-1.092000pt;}
.ws8c{word-spacing:-1.040000pt;}
.ws82{word-spacing:-0.988000pt;}
.ws6b{word-spacing:-0.936000pt;}
.ws38{word-spacing:-0.884000pt;}
.wsc8{word-spacing:-0.861333pt;}
.ws8f{word-spacing:-0.780000pt;}
.ws91{word-spacing:-0.728000pt;}
.ws7f{word-spacing:-0.676000pt;}
.ws34{word-spacing:-0.572000pt;}
.ws3b{word-spacing:-0.520000pt;}
.ws77{word-spacing:-0.468000pt;}
.wsd2{word-spacing:-0.453333pt;}
.ws2d{word-spacing:-0.416000pt;}
.wse4{word-spacing:-0.408000pt;}
.ws11{word-spacing:-0.364000pt;}
.ws4f{word-spacing:-0.260000pt;}
.ws2c{word-spacing:-0.208000pt;}
.wse3{word-spacing:-0.136000pt;}
.wsbf{word-spacing:-0.104000pt;}
.ws72{word-spacing:-0.052000pt;}
.wsd4{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.wsf6{word-spacing:0.045333pt;}
.wsb7{word-spacing:0.052000pt;}
.ws2b{word-spacing:0.104000pt;}
.wsbc{word-spacing:0.156000pt;}
.wsfe{word-spacing:0.272000pt;}
.wsbd{word-spacing:0.364000pt;}
.wsd3{word-spacing:0.453333pt;}
.wsef{word-spacing:0.498667pt;}
.ws55{word-spacing:0.520000pt;}
.ws86{word-spacing:0.572000pt;}
.ws37{word-spacing:0.676000pt;}
.wse8{word-spacing:0.680000pt;}
.ws2e{word-spacing:0.720000pt;}
.wsac{word-spacing:0.728000pt;}
.ws44{word-spacing:0.780000pt;}
.wsa3{word-spacing:0.861333pt;}
.ws65{word-spacing:0.884000pt;}
.ws7d{word-spacing:0.936000pt;}
.wse2{word-spacing:0.952000pt;}
.ws39{word-spacing:0.988000pt;}
.ws8e{word-spacing:1.092000pt;}
.ws57{word-spacing:1.196000pt;}
.ws45{word-spacing:1.248000pt;}
.ws1d{word-spacing:1.300000pt;}
.ws5a{word-spacing:1.352000pt;}
.ws66{word-spacing:1.404000pt;}
.wsfd{word-spacing:1.450667pt;}
.ws20{word-spacing:1.456000pt;}
.wsc7{word-spacing:1.496000pt;}
.ws46{word-spacing:1.508000pt;}
.wsad{word-spacing:1.612000pt;}
.wsa{word-spacing:1.664000pt;}
.ws1f{word-spacing:1.716000pt;}
.ws35{word-spacing:1.768000pt;}
.wsf1{word-spacing:1.813333pt;}
.ws26{word-spacing:1.820000pt;}
.wsd8{word-spacing:1.858667pt;}
.ws9{word-spacing:1.872000pt;}
.ws41{word-spacing:1.924000pt;}
.ws54{word-spacing:1.976000pt;}
.ws30{word-spacing:2.028000pt;}
.ws70{word-spacing:2.080000pt;}
.wsc1{word-spacing:2.130667pt;}
.ws51{word-spacing:2.132000pt;}
.wsd5{word-spacing:2.176000pt;}
.ws8b{word-spacing:2.184000pt;}
.ws6a{word-spacing:2.236000pt;}
.ws3e{word-spacing:2.340000pt;}
.ws83{word-spacing:2.392000pt;}
.ws3f{word-spacing:2.444000pt;}
.ws87{word-spacing:2.496000pt;}
.ws6f{word-spacing:2.548000pt;}
.ws68{word-spacing:2.600000pt;}
.ws19{word-spacing:2.652000pt;}
.ws25{word-spacing:2.704000pt;}
.ws4e{word-spacing:2.756000pt;}
.ws3a{word-spacing:2.808000pt;}
.ws36{word-spacing:2.860000pt;}
.wscf{word-spacing:2.946667pt;}
.ws56{word-spacing:2.964000pt;}
.wsb2{word-spacing:3.016000pt;}
.ws64{word-spacing:3.068000pt;}
.wse6{word-spacing:3.082667pt;}
.wsb1{word-spacing:3.120000pt;}
.wsa0{word-spacing:3.224000pt;}
.ws42{word-spacing:3.276000pt;}
.ws15{word-spacing:3.328000pt;}
.ws6c{word-spacing:3.380000pt;}
.wsf0{word-spacing:3.400000pt;}
.ws3c{word-spacing:3.432000pt;}
.wsdc{word-spacing:3.445333pt;}
.ws67{word-spacing:3.484000pt;}
.wsdb{word-spacing:3.490667pt;}
.wsd{word-spacing:3.536000pt;}
.wsfc{word-spacing:3.581333pt;}
.wsf{word-spacing:3.588000pt;}
.ws4c{word-spacing:3.640000pt;}
.wsc0{word-spacing:3.692000pt;}
.wsaf{word-spacing:3.744000pt;}
.ws12{word-spacing:3.796000pt;}
.ws75{word-spacing:3.848000pt;}
.ws6{word-spacing:3.900000pt;}
.ws79{word-spacing:3.952000pt;}
.wsb3{word-spacing:4.004000pt;}
.ws89{word-spacing:4.108000pt;}
.wsc6{word-spacing:4.125333pt;}
.wsb5{word-spacing:4.160000pt;}
.ws8d{word-spacing:4.212000pt;}
.ws28{word-spacing:4.264000pt;}
.ws16{word-spacing:4.368000pt;}
.ws3d{word-spacing:4.420000pt;}
.wscb{word-spacing:4.442667pt;}
.ws32{word-spacing:4.472000pt;}
.ws7c{word-spacing:4.524000pt;}
.wse{word-spacing:4.576000pt;}
.wsde{word-spacing:4.669333pt;}
.ws1b{word-spacing:4.720000pt;}
.ws4a{word-spacing:4.732000pt;}
.wsec{word-spacing:4.760000pt;}
.ws85{word-spacing:4.784000pt;}
.ws73{word-spacing:4.836000pt;}
.ws7a{word-spacing:4.888000pt;}
.wse9{word-spacing:4.896000pt;}
.ws90{word-spacing:4.940000pt;}
.wsc{word-spacing:5.044000pt;}
.ws53{word-spacing:5.096000pt;}
.ws24{word-spacing:5.148000pt;}
.wsc4{word-spacing:5.168000pt;}
.ws33{word-spacing:5.252000pt;}
.ws52{word-spacing:5.304000pt;}
.ws84{word-spacing:5.356000pt;}
.ws23{word-spacing:5.408000pt;}
.ws76{word-spacing:5.512000pt;}
.ws59{word-spacing:5.564000pt;}
.ws18{word-spacing:5.616000pt;}
.wsc9{word-spacing:5.621333pt;}
.wsc5{word-spacing:5.666667pt;}
.ws13{word-spacing:5.668000pt;}
.wsdd{word-spacing:5.712000pt;}
.ws6d{word-spacing:5.772000pt;}
.wsb6{word-spacing:5.824000pt;}
.ws1e{word-spacing:5.928000pt;}
.ws5{word-spacing:5.980000pt;}
.ws4b{word-spacing:6.084000pt;}
.wsd9{word-spacing:6.120000pt;}
.ws88{word-spacing:6.136000pt;}
.wsa1{word-spacing:6.188000pt;}
.wsf7{word-spacing:6.210667pt;}
.ws58{word-spacing:6.240000pt;}
.wsc3{word-spacing:6.301333pt;}
.ws78{word-spacing:6.344000pt;}
.wscd{word-spacing:6.346667pt;}
.wsb0{word-spacing:6.396000pt;}
.wsd0{word-spacing:6.437333pt;}
.ws49{word-spacing:6.448000pt;}
.ws5b{word-spacing:6.500000pt;}
.wsb8{word-spacing:6.604000pt;}
.wsfa{word-spacing:6.618667pt;}
.ws74{word-spacing:6.656000pt;}
.ws14{word-spacing:6.708000pt;}
.wsfb{word-spacing:6.709333pt;}
.ws21{word-spacing:6.760000pt;}
.wsb4{word-spacing:6.812000pt;}
.wsd1{word-spacing:6.845333pt;}
.wseb{word-spacing:6.890667pt;}
.ws69{word-spacing:6.968000pt;}
.ws7{word-spacing:7.020000pt;}
.ws71{word-spacing:7.072000pt;}
.wsbe{word-spacing:7.176000pt;}
.ws80{word-spacing:7.228000pt;}
.ws1c{word-spacing:7.280000pt;}
.ws9f{word-spacing:7.332000pt;}
.wsa2{word-spacing:7.384000pt;}
.ws60{word-spacing:7.436000pt;}
.ws7b{word-spacing:7.488000pt;}
.ws10{word-spacing:7.540000pt;}
.ws22{word-spacing:7.644000pt;}
.wsf8{word-spacing:7.752000pt;}
.ws1a{word-spacing:7.852000pt;}
.wsf2{word-spacing:7.888000pt;}
.ws6e{word-spacing:8.216000pt;}
.wsd6{word-spacing:8.250667pt;}
.wsb{word-spacing:8.268000pt;}
.ws8{word-spacing:8.372000pt;}
.wsca{word-spacing:8.432000pt;}
.ws2a{word-spacing:8.476000pt;}
.ws7e{word-spacing:8.580000pt;}
.ws5d{word-spacing:8.632000pt;}
.wse7{word-spacing:8.794667pt;}
.ws5c{word-spacing:8.892000pt;}
.ws31{word-spacing:8.944000pt;}
.wsf9{word-spacing:9.066667pt;}
.ws5f{word-spacing:9.100000pt;}
.ws4d{word-spacing:9.256000pt;}
.ws63{word-spacing:9.360000pt;}
.ws43{word-spacing:9.828000pt;}
.ws29{word-spacing:9.984000pt;}
.wsae{word-spacing:10.920000pt;}
.wsc2{word-spacing:11.514667pt;}
.ws61{word-spacing:11.544000pt;}
.wsea{word-spacing:11.877333pt;}
.ws40{word-spacing:12.064000pt;}
.ws5e{word-spacing:12.376000pt;}
.ws8a{word-spacing:12.844000pt;}
.ws50{word-spacing:12.896000pt;}
.ws48{word-spacing:13.208000pt;}
.wsdf{word-spacing:14.144000pt;}
.ws27{word-spacing:15.028000pt;}
.ws47{word-spacing:15.236000pt;}
.wsb9{word-spacing:15.548000pt;}
.ws62{word-spacing:16.016000pt;}
.ws4{word-spacing:16.744000pt;}
.ws17{word-spacing:18.564000pt;}
.wsf4{word-spacing:19.448000pt;}
.wsd7{word-spacing:23.210667pt;}
.wsf3{word-spacing:29.058667pt;}
.wsa7{word-spacing:153.487333pt;}
.wsa6{word-spacing:164.843333pt;}
.wsa8{word-spacing:176.199333pt;}
.wsab{word-spacing:180.823333pt;}
.wsa5{word-spacing:183.732933pt;}
.wsa4{word-spacing:201.400133pt;}
.wsa9{word-spacing:230.871333pt;}
.ws9c{word-spacing:233.692267pt;}
.ws92{word-spacing:234.198267pt;}
.wsaa{word-spacing:272.079333pt;}
.ws9d{word-spacing:282.638000pt;}
.ws96{word-spacing:327.064933pt;}
.ws9b{word-spacing:338.284667pt;}
.ws97{word-spacing:440.424667pt;}
.ws95{word-spacing:486.210267pt;}
.ws9a{word-spacing:490.753600pt;}
.ws9e{word-spacing:497.950000pt;}
.ws98{word-spacing:518.508000pt;}
.ws99{word-spacing:572.942000pt;}
._37{margin-left:-13.879200pt;}
._55{margin-left:-7.072000pt;}
._17{margin-left:-5.027467pt;}
._51{margin-left:-3.386400pt;}
._3{margin-left:-1.704533pt;}
._6{width:1.709067pt;}
._1{width:3.687200pt;}
._5{width:5.120000pt;}
._7{width:7.221600pt;}
._2{width:8.390133pt;}
._54{width:27.694933pt;}
._52{width:29.400000pt;}
._53{width:32.722933pt;}
._50{width:49.546133pt;}
._c{width:120.654000pt;}
._b{width:122.357867pt;}
._d{width:132.877867pt;}
._16{width:134.518667pt;}
._2a{width:143.366667pt;}
._34{width:145.888400pt;}
._4a{width:147.976000pt;}
._36{width:154.317867pt;}
._13{width:155.567200pt;}
._18{width:157.236800pt;}
._26{width:158.527867pt;}
._1c{width:161.050133pt;}
._12{width:166.078000pt;}
._25{width:167.801467pt;}
._2d{width:181.490133pt;}
._1b{width:182.911600pt;}
._2b{width:184.580400pt;}
._1d{width:185.851600pt;}
._20{width:187.520000pt;}
._11{width:192.557733pt;}
._10{width:194.250000pt;}
._3f{width:203.966667pt;}
._39{width:214.518000pt;}
._48{width:216.126667pt;}
._3c{width:219.666000pt;}
._f{width:220.749333pt;}
._4d{width:224.571333pt;}
._3e{width:242.842000pt;}
._9{width:251.013867pt;}
._19{width:256.674533pt;}
._45{width:263.262000pt;}
._29{width:371.197333pt;}
._43{width:377.306000pt;}
._3d{width:382.650933pt;}
._38{width:397.808000pt;}
._14{width:408.152000pt;}
._4b{width:410.090800pt;}
._3b{width:412.787333pt;}
._41{width:415.763867pt;}
._40{width:421.288667pt;}
._3a{width:423.802667pt;}
._49{width:432.646000pt;}
._4e{width:437.320933pt;}
._28{width:456.341333pt;}
._42{width:459.982000pt;}
._23{width:467.764667pt;}
._4c{width:471.247333pt;}
._a{width:473.134667pt;}
._46{width:480.586000pt;}
._4f{width:483.056667pt;}
._44{width:484.734000pt;}
._27{width:496.662667pt;}
._24{width:504.259867pt;}
._33{width:522.210000pt;}
._8{width:524.387867pt;}
._47{width:540.312667pt;}
._31{width:541.476667pt;}
._30{width:557.343333pt;}
._15{width:567.835333pt;}
._e{width:590.373200pt;}
._22{width:598.596667pt;}
._32{width:601.951333pt;}
._1f{width:622.080000pt;}
._2c{width:626.295333pt;}
._1a{width:633.368000pt;}
._2f{width:649.778000pt;}
._2e{width:683.324667pt;}
._21{width:688.447333pt;}
._1e{width:694.295333pt;}
._35{width:763.485600pt;}
._0{width:899.249067pt;}
._4{width:904.257067pt;}
.fs6{font-size:24.000000pt;}
.fs7{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs4{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs3{font-size:52.000000pt;}
.fsb{font-size:52.802195pt;}
.fs2{font-size:60.000000pt;}
.fs8{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:28.375333pt;}
.y26{bottom:56.692933pt;}
.y132{bottom:57.573333pt;}
.y1c1{bottom:57.573467pt;}
.y93{bottom:57.574000pt;}
.y5b{bottom:66.692933pt;}
.y25{bottom:68.645867pt;}
.y191{bottom:72.708400pt;}
.y131{bottom:72.748400pt;}
.y1f5{bottom:72.792000pt;}
.y92{bottom:72.865067pt;}
.yfc{bottom:72.877733pt;}
.yc6{bottom:72.908400pt;}
.y1c0{bottom:72.911333pt;}
.y12d{bottom:72.940533pt;}
.y175{bottom:73.095200pt;}
.y5a{bottom:76.692933pt;}
.y59{bottom:86.692933pt;}
.y190{bottom:87.843333pt;}
.y130{bottom:87.923600pt;}
.y91{bottom:88.156133pt;}
.yfb{bottom:88.181600pt;}
.y1bf{bottom:88.249467pt;}
.y12c{bottom:88.307067pt;}
.y174{bottom:88.617200pt;}
.y1f4{bottom:92.311733pt;}
.y24{bottom:92.458533pt;}
.yc5{bottom:92.543867pt;}
.y58{bottom:96.692933pt;}
.y18f{bottom:102.978267pt;}
.y12f{bottom:103.098667pt;}
.y90{bottom:103.447200pt;}
.yfa{bottom:103.485333pt;}
.y1be{bottom:103.587467pt;}
.y12b{bottom:103.673600pt;}
.y1f3{bottom:107.530400pt;}
.yc4{bottom:107.878133pt;}
.y23{bottom:108.196800pt;}
.y173{bottom:108.440133pt;}
.y18e{bottom:118.113333pt;}
.y12e{bottom:118.273867pt;}
.y8f{bottom:118.738267pt;}
.yf9{bottom:118.788933pt;}
.y12a{bottom:119.040267pt;}
.y1f2{bottom:122.748933pt;}
.yc3{bottom:123.212533pt;}
.y1bd{bottom:123.226533pt;}
.y22{bottom:123.935067pt;}
.y172{bottom:123.962133pt;}
.y18d{bottom:133.248267pt;}
.y8e{bottom:134.029333pt;}
.yf8{bottom:134.092667pt;}
.y129{bottom:134.406800pt;}
.yc2{bottom:138.546800pt;}
.y1bc{bottom:138.564533pt;}
.y171{bottom:139.484000pt;}
.y21{bottom:139.673333pt;}
.y1f1{bottom:142.268667pt;}
.y18c{bottom:148.383200pt;}
.y8d{bottom:149.320400pt;}
.yf7{bottom:149.396533pt;}
.yc1{bottom:153.881200pt;}
.y170{bottom:155.005867pt;}
.y20{bottom:155.411600pt;}
.y57{bottom:156.648667pt;}
.y1f0{bottom:157.487200pt;}
.y1bb{bottom:158.203600pt;}
.y18b{bottom:163.518267pt;}
.y8c{bottom:164.611467pt;}
.yf6{bottom:164.700133pt;}
.y128{bottom:164.892000pt;}
.y56{bottom:167.982000pt;}
.y157{bottom:168.828267pt;}
.yc0{bottom:169.215467pt;}
.y16f{bottom:170.527867pt;}
.y1ef{bottom:172.705867pt;}
.y1ba{bottom:173.541600pt;}
.y1f{bottom:175.450933pt;}
.y18a{bottom:178.653200pt;}
.y8b{bottom:179.902533pt;}
.yf5{bottom:180.003867pt;}
.ybf{bottom:184.549867pt;}
.y16e{bottom:186.049733pt;}
.y1ee{bottom:187.924533pt;}
.y156{bottom:188.164933pt;}
.y1b9{bottom:188.879600pt;}
.y55{bottom:191.175067pt;}
.y1e{bottom:191.189200pt;}
.y189{bottom:193.788267pt;}
.y8a{bottom:195.193467pt;}
.yf4{bottom:195.307600pt;}
.y127{bottom:199.678267pt;}
.ybe{bottom:199.884133pt;}
.y16d{bottom:201.571600pt;}
.y1b8{bottom:204.217600pt;}
.y54{bottom:206.293733pt;}
.y1d{bottom:206.927467pt;}
.y1ed{bottom:207.444133pt;}
.y155{bottom:207.501600pt;}
.y188{bottom:208.923200pt;}
.y89{bottom:210.484667pt;}
.yf3{bottom:210.611467pt;}
.y126{bottom:215.044800pt;}
.ybd{bottom:215.218533pt;}
.y16c{bottom:217.093600pt;}
.y1b7{bottom:219.555600pt;}
.y53{bottom:221.412400pt;}
.y1ec{bottom:222.662800pt;}
.y1c{bottom:222.665733pt;}
.y187{bottom:224.058133pt;}
.y88{bottom:225.775600pt;}
.yf2{bottom:225.915067pt;}
.y154{bottom:226.838133pt;}
.y125{bottom:230.411333pt;}
.y16b{bottom:232.615467pt;}
.y52{bottom:236.531067pt;}
.y1eb{bottom:237.881333pt;}
.y1b{bottom:238.404000pt;}
.y186{bottom:239.193200pt;}
.y1b6{bottom:239.194800pt;}
.yf1{bottom:241.218800pt;}
.ybc{bottom:245.671467pt;}
.y124{bottom:245.778000pt;}
.y153{bottom:246.174800pt;}
.y16a{bottom:248.137333pt;}
.y51{bottom:251.649733pt;}
.y1ea{bottom:253.100000pt;}
.y1a{bottom:254.142267pt;}
.y185{bottom:254.328133pt;}
.y1b5{bottom:254.532800pt;}
.yf0{bottom:256.522533pt;}
.y87{bottom:256.706400pt;}
.y123{bottom:261.144533pt;}
.y169{bottom:263.659333pt;}
.y152{bottom:265.511467pt;}
.y1e9{bottom:268.318667pt;}
.y184{bottom:269.463200pt;}
.y1b4{bottom:269.870800pt;}
.y19{bottom:269.880533pt;}
.y50{bottom:271.069467pt;}
.yef{bottom:271.826267pt;}
.y86{bottom:271.997467pt;}
.y122{bottom:276.511067pt;}
.y168{bottom:279.181200pt;}
.ybb{bottom:280.425600pt;}
.y183{bottom:284.598133pt;}
.y151{bottom:284.848133pt;}
.y4f{bottom:286.188133pt;}
.yee{bottom:287.130000pt;}
.y85{bottom:287.288533pt;}
.y1e8{bottom:287.838400pt;}
.y1b3{bottom:289.509867pt;}
.y18{bottom:289.919867pt;}
.y121{bottom:291.877600pt;}
.y167{bottom:294.703067pt;}
.yba{bottom:295.759867pt;}
.y4e{bottom:301.306800pt;}
.yed{bottom:302.433733pt;}
.y84{bottom:302.579600pt;}
.y1e7{bottom:303.056933pt;}
.y182{bottom:304.034267pt;}
.y150{bottom:304.184800pt;}
.y1b2{bottom:304.847867pt;}
.y17{bottom:305.658133pt;}
.y120{bottom:307.244133pt;}
.y166{bottom:310.225067pt;}
.yb9{bottom:311.094267pt;}
.y4d{bottom:316.425467pt;}
.yec{bottom:317.737467pt;}
.y83{bottom:317.870667pt;}
.y1e6{bottom:318.275600pt;}
.y181{bottom:319.169200pt;}
.y16{bottom:321.396400pt;}
.y14f{bottom:323.521467pt;}
.y165{bottom:325.746933pt;}
.yb8{bottom:326.428533pt;}
.y11f{bottom:326.911733pt;}
.y4c{bottom:331.544133pt;}
.yeb{bottom:333.041200pt;}
.y82{bottom:333.161600pt;}
.y1e5{bottom:333.494133pt;}
.y180{bottom:334.304133pt;}
.y1b1{bottom:335.304533pt;}
.y15{bottom:337.134667pt;}
.y164{bottom:341.268800pt;}
.yb7{bottom:341.762933pt;}
.y11e{bottom:342.278267pt;}
.y14e{bottom:342.858133pt;}
.y4b{bottom:346.662800pt;}
.yea{bottom:348.344933pt;}
.y81{bottom:348.452667pt;}
.y17f{bottom:349.439200pt;}
.y14{bottom:352.872933pt;}
.y1e4{bottom:353.013867pt;}
.y163{bottom:356.790800pt;}
.yb6{bottom:357.097200pt;}
.y11d{bottom:357.644800pt;}
.y4a{bottom:361.781467pt;}
.y14d{bottom:362.194800pt;}
.ye9{bottom:363.648667pt;}
.y80{bottom:363.743733pt;}
.y17e{bottom:364.574133pt;}
.y1e3{bottom:368.232400pt;}
.y13{bottom:368.611200pt;}
.y1b0{bottom:370.062267pt;}
.y162{bottom:372.312667pt;}
.yb5{bottom:372.431600pt;}
.y11c{bottom:373.011333pt;}
.y14c{bottom:377.313467pt;}
.ye8{bottom:378.952400pt;}
.y7f{bottom:379.034800pt;}
.y17d{bottom:379.709200pt;}
.y49{bottom:381.201200pt;}
.y1e2{bottom:383.451067pt;}
.y12{bottom:384.349467pt;}
.y1af{bottom:385.400267pt;}
.yb4{bottom:387.765867pt;}
.y161{bottom:387.834533pt;}
.y11b{bottom:388.378000pt;}
.ye7{bottom:394.256133pt;}
.y7e{bottom:394.325867pt;}
.y17c{bottom:394.844133pt;}
.y48{bottom:396.319867pt;}
.y14b{bottom:396.650133pt;}
.y1e1{bottom:398.669733pt;}
.y148{bottom:398.759067pt;}
.y11{bottom:400.087733pt;}
.y160{bottom:403.356533pt;}
.y11a{bottom:403.744533pt;}
.yb3{bottom:407.401333pt;}
.ye6{bottom:409.559867pt;}
.y7d{bottom:409.616933pt;}
.y17b{bottom:409.979067pt;}
.y47{bottom:411.438533pt;}
.y10{bottom:415.826000pt;}
.y1ae{bottom:415.856933pt;}
.y14a{bottom:415.986800pt;}
.y1e0{bottom:418.189467pt;}
.y15f{bottom:418.878400pt;}
.y119{bottom:419.111067pt;}
.yb2{bottom:422.735733pt;}
.ye5{bottom:424.863600pt;}
.y7c{bottom:424.908000pt;}
.y17a{bottom:425.114133pt;}
.y46{bottom:426.557333pt;}
.y1df{bottom:433.408000pt;}
.y15e{bottom:434.400267pt;}
.y149{bottom:435.323467pt;}
.yf{bottom:435.865333pt;}
.yb1{bottom:438.070000pt;}
.y118{bottom:438.778667pt;}
.ye4{bottom:440.167333pt;}
.y179{bottom:440.249067pt;}
.y45{bottom:441.676000pt;}
.y1de{bottom:448.626667pt;}
.y1ad{bottom:450.614800pt;}
.ye{bottom:451.603600pt;}
.yb0{bottom:453.404400pt;}
.y117{bottom:454.145200pt;}
.y15d{bottom:454.223333pt;}
.y147{bottom:454.660133pt;}
.y178{bottom:455.384133pt;}
.ye3{bottom:455.471067pt;}
.y7b{bottom:455.838800pt;}
.y44{bottom:456.794533pt;}
.y1ac{bottom:465.952800pt;}
.yd{bottom:467.341867pt;}
.y1dd{bottom:468.146267pt;}
.yaf{bottom:468.738667pt;}
.y116{bottom:469.511867pt;}
.y15c{bottom:469.745200pt;}
.y177{bottom:470.519067pt;}
.ye2{bottom:470.774800pt;}
.y7a{bottom:471.129733pt;}
.y43{bottom:471.913200pt;}
.y146{bottom:473.996800pt;}
.yc{bottom:483.080133pt;}
.y1dc{bottom:483.364933pt;}
.yae{bottom:484.072933pt;}
.y115{bottom:484.878400pt;}
.y15b{bottom:485.267067pt;}
.y176{bottom:485.654000pt;}
.y20f{bottom:485.963467pt;}
.y79{bottom:486.420800pt;}
.y42{bottom:487.032000pt;}
.ye1{bottom:490.379600pt;}
.y145{bottom:493.333467pt;}
.y1ab{bottom:496.409467pt;}
.y1db{bottom:498.583600pt;}
.yb{bottom:498.818400pt;}
.yad{bottom:499.407333pt;}
.y114{bottom:500.244933pt;}
.y15a{bottom:500.789067pt;}
.y20e{bottom:501.082133pt;}
.y78{bottom:501.711867pt;}
.ye0{bottom:505.683333pt;}
.y41{bottom:506.451733pt;}
.y144{bottom:512.670133pt;}
.y1da{bottom:513.802133pt;}
.ya{bottom:514.556667pt;}
.yac{bottom:514.741733pt;}
.y113{bottom:515.611467pt;}
.y20d{bottom:516.200800pt;}
.y77{bottom:517.002933pt;}
.ydf{bottom:520.987067pt;}
.y40{bottom:521.570400pt;}
.yab{bottom:530.076000pt;}
.y112{bottom:530.978000pt;}
.y1aa{bottom:531.167200pt;}
.y20c{bottom:531.319467pt;}
.y143{bottom:532.006800pt;}
.y76{bottom:532.294000pt;}
.y1d9{bottom:533.321867pt;}
.yde{bottom:536.290800pt;}
.y3f{bottom:536.689067pt;}
.yaa{bottom:545.410400pt;}
.y9{bottom:545.413600pt;}
.y111{bottom:546.344533pt;}
.y1a9{bottom:546.505200pt;}
.y75{bottom:547.585067pt;}
.y1d8{bottom:548.540533pt;}
.y20b{bottom:550.739200pt;}
.y142{bottom:551.343467pt;}
.ydd{bottom:551.594533pt;}
.y3e{bottom:551.807733pt;}
.ya9{bottom:560.744667pt;}
.y110{bottom:561.711067pt;}
.y1a8{bottom:561.843200pt;}
.y74{bottom:562.876133pt;}
.y1d7{bottom:563.759067pt;}
.y20a{bottom:565.857867pt;}
.ydc{bottom:566.898267pt;}
.y3d{bottom:566.926400pt;}
.y141{bottom:570.680133pt;}
.ya8{bottom:576.079067pt;}
.y10f{bottom:577.077600pt;}
.y1a7{bottom:577.181200pt;}
.y73{bottom:578.167200pt;}
.y8{bottom:580.806533pt;}
.y209{bottom:580.976533pt;}
.y3c{bottom:582.045067pt;}
.ydb{bottom:582.202000pt;}
.y1d6{bottom:583.278800pt;}
.y140{bottom:590.016667pt;}
.ya7{bottom:591.413333pt;}
.y10e{bottom:592.444133pt;}
.y1a6{bottom:592.519200pt;}
.y208{bottom:596.095200pt;}
.y7{bottom:596.544800pt;}
.yda{bottom:597.505733pt;}
.y72{bottom:597.759333pt;}
.y1d5{bottom:598.497333pt;}
.y10d{bottom:607.810667pt;}
.y1a5{bottom:607.857200pt;}
.y13f{bottom:609.353333pt;}
.ya6{bottom:611.048800pt;}
.y207{bottom:611.213867pt;}
.y3b{bottom:612.282400pt;}
.y6{bottom:612.283067pt;}
.yd9{bottom:612.809467pt;}
.y71{bottom:613.050400pt;}
.y1d4{bottom:613.716000pt;}
.y10c{bottom:623.177200pt;}
.y1a4{bottom:623.195200pt;}
.ya5{bottom:626.383200pt;}
.yd8{bottom:628.113200pt;}
.y70{bottom:628.341467pt;}
.y13e{bottom:628.690000pt;}
.y1d3{bottom:628.934667pt;}
.y206{bottom:630.633600pt;}
.y10b{bottom:638.543733pt;}
.ya4{bottom:641.717467pt;}
.y1a3{bottom:642.834267pt;}
.yd7{bottom:643.416933pt;}
.y6f{bottom:643.632533pt;}
.y205{bottom:645.752267pt;}
.y13d{bottom:648.026667pt;}
.y1d2{bottom:648.454400pt;}
.y3a{bottom:653.858667pt;}
.y10a{bottom:653.910267pt;}
.ya3{bottom:657.051733pt;}
.y1a2{bottom:658.172400pt;}
.yd6{bottom:658.720667pt;}
.y6e{bottom:658.923467pt;}
.y204{bottom:660.871067pt;}
.y1d1{bottom:663.672933pt;}
.y39{bottom:665.858667pt;}
.y13c{bottom:667.363333pt;}
.y109{bottom:669.276800pt;}
.ya2{bottom:672.386133pt;}
.y1a1{bottom:673.510400pt;}
.yd5{bottom:674.024400pt;}
.y6d{bottom:674.214533pt;}
.y203{bottom:675.989600pt;}
.y38{bottom:677.858667pt;}
.y1d0{bottom:678.891600pt;}
.y108{bottom:684.643333pt;}
.y13b{bottom:686.700000pt;}
.ya1{bottom:687.720400pt;}
.y1a0{bottom:688.848267pt;}
.yd4{bottom:689.328133pt;}
.y6c{bottom:689.505600pt;}
.y1cf{bottom:694.110133pt;}
.y202{bottom:695.409467pt;}
.y107{bottom:700.009867pt;}
.ya0{bottom:703.054800pt;}
.y19f{bottom:704.186400pt;}
.yd3{bottom:704.631867pt;}
.y6b{bottom:704.796667pt;}
.y13a{bottom:706.036667pt;}
.y201{bottom:710.528133pt;}
.y1ce{bottom:713.629867pt;}
.y106{bottom:715.376400pt;}
.y9f{bottom:718.389200pt;}
.y19e{bottom:719.524267pt;}
.yd2{bottom:719.935600pt;}
.y6a{bottom:720.087733pt;}
.y30{bottom:721.821733pt;}
.y139{bottom:725.373333pt;}
.y200{bottom:725.646667pt;}
.y1cd{bottom:728.848533pt;}
.y105{bottom:730.743067pt;}
.y9e{bottom:733.723467pt;}
.y19d{bottom:734.862267pt;}
.yd1{bottom:735.239333pt;}
.y69{bottom:735.378800pt;}
.y2f{bottom:738.155067pt;}
.y1cc{bottom:744.067067pt;}
.y138{bottom:744.710000pt;}
.y1ff{bottom:745.066533pt;}
.y2e{bottom:745.821733pt;}
.y104{bottom:746.109600pt;}
.y9d{bottom:749.057733pt;}
.y19c{bottom:750.200267pt;}
.yd0{bottom:750.543067pt;}
.y68{bottom:750.669867pt;}
.y1cb{bottom:759.285600pt;}
.y1fe{bottom:760.185200pt;}
.y103{bottom:761.476133pt;}
.y2d{bottom:762.155067pt;}
.y137{bottom:764.046667pt;}
.y9c{bottom:764.392133pt;}
.y19b{bottom:765.538267pt;}
.ycf{bottom:765.846800pt;}
.y67{bottom:765.960933pt;}
.y2c{bottom:774.155067pt;}
.y1fd{bottom:775.303867pt;}
.y102{bottom:776.842667pt;}
.y1ca{bottom:778.805333pt;}
.y9b{bottom:779.726400pt;}
.y19a{bottom:780.876267pt;}
.yce{bottom:781.150533pt;}
.y66{bottom:781.252000pt;}
.y2b{bottom:781.821733pt;}
.y136{bottom:783.383333pt;}
.y1fc{bottom:790.422533pt;}
.y101{bottom:792.209200pt;}
.y1c9{bottom:794.023867pt;}
.y9a{bottom:795.060800pt;}
.y199{bottom:796.214267pt;}
.ycd{bottom:796.454267pt;}
.y65{bottom:796.543067pt;}
.y2a{bottom:798.155067pt;}
.y135{bottom:802.720000pt;}
.y1fb{bottom:805.541200pt;}
.y1c8{bottom:809.242533pt;}
.y99{bottom:810.395067pt;}
.y198{bottom:811.552267pt;}
.ycc{bottom:811.758000pt;}
.y64{bottom:811.834000pt;}
.y134{bottom:822.056667pt;}
.y100{bottom:822.694400pt;}
.y1c7{bottom:824.461200pt;}
.y1fa{bottom:824.960933pt;}
.y98{bottom:825.729467pt;}
.y197{bottom:826.890267pt;}
.ycb{bottom:827.061733pt;}
.y63{bottom:827.125200pt;}
.y36{bottom:837.377067pt;}
.y1c6{bottom:839.679733pt;}
.y1f9{bottom:840.079600pt;}
.y97{bottom:841.063867pt;}
.y133{bottom:841.393333pt;}
.y196{bottom:842.228267pt;}
.yca{bottom:842.365467pt;}
.y62{bottom:842.416133pt;}
.y29{bottom:847.514000pt;}
.y35{bottom:852.495733pt;}
.y1f8{bottom:855.198267pt;}
.y96{bottom:856.398133pt;}
.yff{bottom:857.480800pt;}
.y195{bottom:857.566267pt;}
.yc9{bottom:857.669200pt;}
.y61{bottom:857.707200pt;}
.y1c5{bottom:859.199467pt;}
.y34{bottom:867.614400pt;}
.y1f7{bottom:870.316933pt;}
.y95{bottom:871.732400pt;}
.yfe{bottom:872.847333pt;}
.y194{bottom:872.904267pt;}
.yc8{bottom:872.972933pt;}
.y60{bottom:872.998267pt;}
.y1c4{bottom:874.418133pt;}
.y28{bottom:876.314000pt;}
.y159{bottom:880.100000pt;}
.y33{bottom:882.733067pt;}
.yfd{bottom:888.213867pt;}
.y193{bottom:888.242400pt;}
.yc7{bottom:888.276667pt;}
.y5f{bottom:888.289333pt;}
.y1c3{bottom:889.636667pt;}
.y1f6{bottom:889.736667pt;}
.y158{bottom:895.218667pt;}
.y32{bottom:897.851733pt;}
.y94{bottom:902.185467pt;}
.y192{bottom:903.580267pt;}
.y5e{bottom:903.580400pt;}
.y1c2{bottom:904.855333pt;}
.y27{bottom:905.113867pt;}
.y31{bottom:912.970400pt;}
.y4{bottom:955.863600pt;}
.y5d{bottom:962.208133pt;}
.y3{bottom:970.982267pt;}
.y37{bottom:971.391333pt;}
.y5c{bottom:977.326800pt;}
.y2{bottom:1013.260400pt;}
.y1{bottom:1022.593733pt;}
.hb{height:18.432000pt;}
.h2{height:24.576000pt;}
.h10{height:26.624000pt;}
.hc{height:30.720000pt;}
.h13{height:31.778667pt;}
.hf{height:32.768000pt;}
.h11{height:34.816000pt;}
.h4{height:35.370667pt;}
.h9{height:37.040000pt;}
.h3{height:39.509333pt;}
.h8{height:39.936000pt;}
.hd{height:41.294933pt;}
.h5{height:41.700000pt;}
.h12{height:43.081600pt;}
.h7{height:48.152000pt;}
.h15{height:48.894832pt;}
.h6{height:55.560000pt;}
.h14{height:65.053333pt;}
.ha{height:73.728000pt;}
.he{height:74.080000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.590667pt;}
.xb{left:80.924000pt;}
.xd{left:86.588000pt;}
.x10{left:92.262533pt;}
.x9{left:98.267867pt;}
.xc{left:156.514533pt;}
.xe{left:162.178533pt;}
.xf{left:229.192800pt;}
.x1{left:240.922667pt;}
.xa{left:241.889333pt;}
.x7{left:256.595067pt;}
.x4{left:316.281200pt;}
.x5{left:408.188000pt;}
.x6{left:430.865200pt;}
.x2{left:566.204267pt;}
.x3{left:596.498800pt;}
.x11{left:604.984667pt;}
.x12{left:656.804533pt;}
.x13{left:669.427467pt;}
.x14{left:700.093733pt;}
}




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